fluids-1.0.22/0000755000175000017500000000000014302004506012402 5ustar nileshnileshfluids-1.0.22/tests/0000755000175000017500000000000014302004506013544 5ustar nileshnileshfluids-1.0.22/tests/test_packed_tower.py0000644000175000017500000000741714302004506017635 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids.packed_tower import (dP_demister_dry_Setekleiv_Svendsen, Stichlmair_dry, dP_demister_wet_ElDessouky, separation_demister_ElDessouky, Robbins, dP_demister_dry_Setekleiv_Svendsen_lit, Stichlmair_wet, voidage_experimental, Stichlmair_flood, specific_area_mesh) from fluids.numerics import assert_close, assert_close1d import pytest def test_packed_tower(): dP = dP_demister_dry_Setekleiv_Svendsen(S=250.0, voidage=.983, vs=1.2, rho=10.0, mu=3E-5, L=1.0) assert_close(dP, 320.3280788941329) dP = dP_demister_dry_Setekleiv_Svendsen_lit(S=250.0, voidage=.983, vs=1.2, rho=10.0, mu=3E-5, L=1.0) assert_close(dP, 209.083848658307) dP = voidage_experimental(m=126.0, rho=8000.0, D=1.0, H=1.0) assert_close(dP, 0.9799464771704212) S = specific_area_mesh(voidage=.934, d=3e-4) assert_close(S, 879.9999999999994) def test_Stichlmair(): dP_dry = Stichlmair_dry(Vg=0.4, rhog=5., mug=5E-5, voidage=0.68, specific_area=260., C1=32., C2=7.0, C3=1.0) assert_close(dP_dry, 236.80904286559885) dP_wet = Stichlmair_wet(Vg=0.4, Vl = 5E-3, rhog=5., rhol=1200., mug=5E-5, voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.) assert_close(dP_wet, 539.8768237253518) Vg = Stichlmair_flood(Vl = 5E-3, rhog=5., rhol=1200., mug=5E-5, voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.) assert_close(Vg, 0.6394323542687361) def test_dP_demister_wet_ElDessouky(): # Point from their figure 8 rho = 176.35 V = 6. dw = 0.32 dP_orig = 3.88178*rho**0.375798*V**0.81317*dw**-1.56114147 # 689.4685604448499, compares with maybe 690 Pa/m from figure voidage = 1.0-rho/7999. dP = dP_demister_wet_ElDessouky(V, voidage, dw/1000.) assert_close(dP_orig, dP) assert_close(dP, 689.4685604448499) # Test length multiplier assert_close(dP*10, dP_demister_wet_ElDessouky(V, voidage, dw/1000., 10)) def test_separation_demister_ElDessouky(): # Point from their figure 6 dw = 0.2 rho = 208.16 d_p = 5 V = 1.35 eta1 = 17.5047*dw**-0.28264*rho**0.099625*V**0.106878*d_p**0.383197 eta1 /=100. # Convert to a 0-1 basis. voidage = 1-rho/7999. eta = separation_demister_ElDessouky(V, voidage, dw/1000., d_p/1000.) assert_close(eta1, eta) assert_close(eta, 0.8983693041263305) assert 1 == separation_demister_ElDessouky(1.35, 0.92, 0.0002, 0.005) def test_Robbins(): dP = Robbins(Fpd=24.0, L=12.2, G=2.03, rhol=1000., rhog=1.1853, mul=0.001, H=2.0) assert_close(dP, 619.6624593438099) fluids-1.0.22/tests/manual_runner.py0000644000175000017500000000510214302004506016762 0ustar nileshnilesh#!/usr/bin/env python3 # -*- coding: utf-8 -*- import sys import fluids.numerics try: import test_drag except: print('run this from the tests directory') exit() #import test_numerics import test_numerics_special import test_control_valve import test_geometry import test_two_phase import test_two_phase_voidage import test_separator import test_saltation import test_piping import test_packed_bed import test_packed_tower import test_compressible import test_core import test_particle_size_distribution import test_safety_valve import test_open_flow import test_filters import test_flow_meter import test_atmosphere import test_pump import test_friction import test_fittings import test_jet_pump import test_mixing import test_nrlmsise00_full to_test = [#test_numerics, #test_numerics_special, test_drag, test_control_valve, test_two_phase, test_two_phase_voidage, test_separator, test_piping, test_packed_bed, test_compressible, test_core, test_safety_valve, test_open_flow, test_filters, test_flow_meter, test_atmosphere, test_pump, test_friction, test_fittings, test_packed_tower, test_saltation, test_mixing, test_nrlmsise00_full] #to_test.append([test_particle_size_distribution, test_jet_pump, test_geometry]) if fluids.numerics.is_micropython or fluids.numerics.is_ironpython: skip_marks = ['slow', 'fuzz', 'scipy', 'numpy', 'f2py', 'pytz', 'numba'] else: skip_marks = ['slow', 'fuzz'] # pytz loads but doesn't work right in ironpython skip_marks_set = set(skip_marks) if len(sys.argv) >= 2: #print(sys.argv) # Run modules specified by user to_test = [globals()[i] for i in sys.argv[1:]] for mod in to_test: print(mod) for s in dir(mod): skip = False obj = getattr(mod, s) if callable(obj) and hasattr(obj, '__name__') and obj.__name__.startswith('test'): try: for bad in skip_marks: if bad in obj.__dict__: skip = True if 'pytestmark' in obj.__dict__: marked_names = [i.name for i in obj.__dict__['pytestmark']] for mark_name in marked_names: if mark_name in skip_marks_set: skip = True except Exception as e: #print(e) pass if not skip: try: #print(obj) obj() except Exception as e: print('FAILED TEST %s with error:' %s) print(e) fluids-1.0.22/tests/test_two_phase.py0000644000175000017500000006320514302004506017154 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from math import log, log10 from fluids.two_phase_voidage import * from fluids.two_phase import * from fluids.numerics import assert_close, assert_close1d import pytest try: from random import uniform except: pass def log_uniform(low, high): return 10**uniform(log10(low), log10(high)) def test_Beggs_Brill(): kwargs = dict(m=1.163125, x=0.30370768404083825, rhol=613.8, rhog=141.3, sigma=0.028, D=0.077927, angle=90.0, mul=0.0005, mug=2E-5, P=119E5, roughness=1.8E-6, L=100.0, acceleration=True) dP = Beggs_Brill(**kwargs) assert_close(dP, 384066.2949427367) kwargs['angle'] = 45 dP = Beggs_Brill(**kwargs) assert_close(dP, 289002.94186339306) kwargs['x'] = 0.6 dP = Beggs_Brill(**kwargs) assert_close(dP, 220672.4414664162) kwargs['x'] = 0.9 dP = Beggs_Brill(**kwargs) assert_close(dP, 240589.47045109692) kwargs['angle'] = 0 dP = Beggs_Brill(**kwargs) assert_close(dP, 4310.718513863349) kwargs['x'] = 1e-7 dP = Beggs_Brill(**kwargs) assert_close(dP, 1386.362401988662) kwargs['angle'] = -15 dP = Beggs_Brill(**kwargs) assert_close(dP, -154405.0395988586) kwargs['m'] = 100 kwargs['x'] = 0.3 kwargs['angle'] = 0 dP = Beggs_Brill(**kwargs) assert_close(dP, 15382421.32990976) kwargs['angle'] = 10 dP = Beggs_Brill(**kwargs) assert_close(dP, 15439041.350531114) kwargs = {'rhol': 2250.004745138356, 'rhog': 58.12314177331951, 'L': 111.74530635808999, 'sigma': 0.5871528902653206, 'P': 9587894383.375906, 'm': 0.005043652829299738, 'roughness': 0.07803567727862296, 'x': 0.529765332332195, 'mug': 1.134544741297285e-06, 'mul': 0.12943468582774414, 'D': 1.9772420342193617, 'angle': -77.18096944813536} dP = Beggs_Brill(**kwargs) # Check this calculation works - S gets too large, overflows in this region @pytest.mark.fuzz @pytest.mark.slow def test_fuzz_Beggs_Brill(): for i in range(250): m = log_uniform(1e-5, 100) x = uniform(0, 1) rhol = log_uniform(100, 4000) rhog = log_uniform(0.01, 200) sigma = log_uniform(1e-3, 1) D = log_uniform(1e-5, 5) angle = uniform(-90, 90) mul = log_uniform(1e-5, 1) mug = log_uniform(5e-7, 1e-3) P = log_uniform(1E8, 1e10) roughness = log_uniform(1e-5, D-1e-10) L = uniform(0, 1000) kwargs = dict(m=m, x=x, rhol=rhol, rhog=rhog, sigma=sigma, D=D, angle=angle, mul=mul, mug=mug, P=P, roughness=roughness, L=L) Beggs_Brill(**kwargs) def test_Friedel(): kwargs = dict(m=10, x=0.9, rhol=950., rhog=1.4, mul=1E-3, mug=1E-5, sigma=0.02, D=0.3, roughness=0., L=1.) dP = Friedel(**kwargs) dP_expect = 274.21322116878406 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Friedel(**kwargs) assert_close(dP, dP_expect*10) # Example 4 in [6]_: dP = Friedel(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, roughness=0., L=1.) assert_close(dP, 738.6500525002241) # 730 is the result in [1]_; they use the Blassius equation instead for friction # the multiplier was calculated to be 38.871 vs 38.64 in [6]_ def test_Gronnerud(): kwargs = dict(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) dP = Gronnerud(**kwargs) dP_expect = 384.125411444741 assert_close(dP, 384.125411444741) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Gronnerud(**kwargs) assert_close(dP, dP_expect*10) dP = Gronnerud(m=5, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 26650.676132410194) def test_Chisholm(): # Gamma < 28, G< 600 dP = Chisholm(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 1084.1489922923736) # Gamma < 28, G > 600 dP = Chisholm(m=2, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 7081.89630764668) # Gamma <= 9.5, G_tp <= 500 dP = Chisholm(m=.6, x=0.1, rhol=915., rhog=30, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 222.36274920522493) # Gamma <= 9.5, G_tp < 1900: dP = Chisholm(m=2, x=0.1, rhol=915., rhog=30, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 1107.9944943816388) # Gamma <= 9.5, G_tp > 1900: dP = Chisholm(m=5, x=0.1, rhol=915., rhog=30, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 3414.1123536958203) dP = Chisholm(m=1, x=0.1, rhol=915., rhog=0.1, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 8743.742915625126) # Roughness correction kwargs = dict(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=1E-4, L=1, rough_correction=True) dP = Chisholm(**kwargs) dP_expect = 846.6778299960783 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Chisholm(**kwargs) assert_close(dP, dP_expect*10) def test_Baroczy_Chisholm(): # Gamma < 28, G< 600 dP = Baroczy_Chisholm(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 1084.1489922923736) # Gamma <= 9.5, G_tp > 1900: dP = Baroczy_Chisholm(m=5, x=0.1, rhol=915., rhog=30, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 3414.1123536958203) kwargs = dict(m=1, x=0.1, rhol=915., rhog=0.1, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) dP = Baroczy_Chisholm(**kwargs) dP_expect = 8743.742915625126 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Baroczy_Chisholm(**kwargs) assert_close(dP, dP_expect*10) def test_Muller_Steinhagen_Heck(): kwargs = dict(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) dP = Muller_Steinhagen_Heck(**kwargs) dP_expect = 793.4465457435081 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Muller_Steinhagen_Heck(**kwargs) assert_close(dP, dP_expect*10) def test_Lombardi_Pedrocchi(): kwargs = dict(m=0.6, x=0.1, rhol=915., rhog=2.67, sigma=0.045, D=0.05, L=1.0) dP = Lombardi_Pedrocchi(**kwargs) dP_expect = 1567.328374498781 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Lombardi_Pedrocchi(**kwargs) assert_close(dP, dP_expect*10) def test_Theissing(): dP = Theissing(m=0.6, x=.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 497.6156370699528) # Test x=1, x=0 dP = Theissing(m=0.6, x=1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 4012.248776469056) kwargs = dict(m=0.6, x=0, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) dP = Theissing(**kwargs) dP_expect = 19.00276790390895 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Theissing(**kwargs) assert_close(dP, dP_expect*10) def test_Jung_Radermacher(): kwargs = dict(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) dP = Jung_Radermacher(**kwargs) dP_expect = 552.068612372557 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Jung_Radermacher(**kwargs) assert_close(dP, dP_expect*10) def test_Tran(): kwargs = dict(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, roughness=0.0, L=1.0) dP = Tran(**kwargs) dP_expect = 423.2563312951231 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Tran(**kwargs) assert_close(dP, dP_expect*10) def test_Chen_Friedel(): dP = Chen_Friedel(m=.0005, x=0.9, rhol=950., rhog=1.4, mul=1E-3, mug=1E-5, sigma=0.02, D=0.003, roughness=0.0, L=1.0) assert_close(dP, 6249.247540588871) kwargs = dict(m=.1, x=0.9, rhol=950., rhog=1.4, mul=1E-3, mug=1E-5, sigma=0.02, D=0.03, roughness=0.0, L=1.0) dP = Chen_Friedel(**kwargs) dP_expect = 3541.7714973093725 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Chen_Friedel(**kwargs) assert_close(dP, dP_expect*10) def test_Zhang_Webb(): kwargs = dict(m=0.6, x=0.1, rhol=915., mul=180E-6, P=2E5, Pc=4055000, D=0.05, roughness=0.0, L=1.0) dP = Zhang_Webb(**kwargs) dP_expect = 712.0999804205619 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Zhang_Webb(**kwargs) assert_close(dP, dP_expect*10) def test_Bankoff(): kwargs = dict(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) dP = Bankoff(**kwargs) dP_expect = 4746.059442453398 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Bankoff(**kwargs) assert_close(dP, dP_expect*10) def test_Xu_Fang(): kwargs = dict(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, roughness=0.0, L=1.0) dP = Xu_Fang(**kwargs) dP_expect = 604.0595632116267 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Xu_Fang(**kwargs) assert_close(dP, dP_expect*10) def test_Yu_France(): kwargs = dict(m=0.6, x=.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) dP = Yu_France(**kwargs) dP_expect = 1146.983322553957 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Yu_France(**kwargs) assert_close(dP, dP_expect*10) def test_Wang_Chiang_Lu(): dP = Wang_Chiang_Lu(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 448.29981978639154) kwargs = dict(m=0.1, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) dP = Wang_Chiang_Lu(**kwargs) dP_expect = 3.3087255464765417 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Wang_Chiang_Lu(**kwargs) assert_close(dP, dP_expect*10) def test_Hwang_Kim(): kwargs = dict(m=0.0005, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.003, roughness=0.0, L=1.0) dP = Hwang_Kim(**kwargs) dP_expect = 798.302774184557 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Hwang_Kim(**kwargs) assert_close(dP, dP_expect*10) def test_Zhang_Hibiki_Mishima(): dP = Zhang_Hibiki_Mishima(m=0.0005, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.003, roughness=0.0, L=1.0) assert_close(dP, 444.9718476894804) dP = Zhang_Hibiki_Mishima(m=0.0005, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.003, roughness=0.0, L=1, flowtype='adiabatic gas') assert_close(dP, 1109.1976111277042) kwargs = dict(m=0.0005, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.003, roughness=0.0, L=1, flowtype='flow boiling') dP = Zhang_Hibiki_Mishima(**kwargs) dP_expect = 770.0975665928916 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Zhang_Hibiki_Mishima(**kwargs) assert_close(dP, dP_expect*10) with pytest.raises(Exception): Zhang_Hibiki_Mishima(m=0.0005, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.003, roughness=0.0, L=1, flowtype='BADMETHOD') def test_Kim_Mudawar(): # turbulent-turbulent dP = Kim_Mudawar(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1.0) assert_close(dP, 840.4137796786074) # Re_l >= Re_c and Re_g < Re_c dP = Kim_Mudawar(m=0.6, x=0.001, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1.0) assert_close(dP, 68.61594310455612) # Re_l < Re_c and Re_g >= Re_c: dP = Kim_Mudawar(m=0.6, x=0.99, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1.0) assert_close(dP, 5381.335846128011) # laminar-laminar dP = Kim_Mudawar(m=0.1, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.5, L=1.0) assert_close(dP, 0.005121833671658875) # Test friction Re < 20000 kwargs = dict(m=0.1, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1.0) dP = Kim_Mudawar(**kwargs) dP_expect = 33.74875494223592 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Kim_Mudawar(**kwargs) assert_close(dP, dP_expect*10) def test_Lockhart_Martinelli(): dP = Lockhart_Martinelli(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, L=1.0) assert_close(dP, 716.4695654888484) # laminar-laminar dP = Lockhart_Martinelli(m=0.1, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=1, L=1.0) assert_close(dP, 9.06478815533121e-06) # Liquid laminar, gas turbulent dP = Lockhart_Martinelli(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=2, L=1.0) assert_close(dP, 8.654579552636214e-06) # Gas laminar, liquid turbulent kwargs = dict(m=0.6, x=0.05, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=2, L=1.0) dP = Lockhart_Martinelli(**kwargs) dP_expect = 4.56627076018814e-06 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Lockhart_Martinelli(**kwargs) assert_close(dP, dP_expect*10) def test_Mishima_Hibiki(): kwargs = dict(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, roughness=0.0, L=1.0) dP = Mishima_Hibiki(**kwargs) dP_expect = 732.4268200606265 assert_close(dP, dP_expect) # Internal consistency for length dependence kwargs['L'] *= 10 dP = Mishima_Hibiki(**kwargs) assert_close(dP, dP_expect*10) def test_two_phase_dP(): # TODO; Delete two_phase_dP method calls # Case 0 assert ['Lombardi_Pedrocchi'] == two_phase_dP_methods(10, 0.7, 1000, 0.1, rhog=1.2, sigma=0.02) # Case 5 assert ['Zhang_Webb'] == two_phase_dP_methods(10, 0.7, 1000, 0.1, mul=1E-3, P=1E5, Pc=1E6,) # Case 1,2 expect = ['Jung_Radermacher', 'Muller_Steinhagen_Heck', 'Baroczy_Chisholm', 'Yu_France', 'Wang_Chiang_Lu', 'Theissing', 'Chisholm rough', 'Chisholm', 'Gronnerud', 'Lockhart_Martinelli', 'Bankoff'] assert sorted(expect) == sorted(two_phase_dP_methods(10, 0.7, 1000, 0.1, rhog=1.2, mul=1E-3, mug=1E-6)) # Case 3, 4; drags in 5, 1, 2 expect = ['Zhang_Hibiki_Mishima adiabatic gas', 'Kim_Mudawar', 'Friedel', 'Jung_Radermacher', 'Hwang_Kim', 'Muller_Steinhagen_Heck', 'Baroczy_Chisholm', 'Tran', 'Yu_France', 'Zhang_Hibiki_Mishima flow boiling', 'Xu_Fang', 'Wang_Chiang_Lu', 'Theissing', 'Chisholm rough', 'Chisholm', 'Mishima_Hibiki', 'Gronnerud', 'Chen_Friedel', 'Lombardi_Pedrocchi', 'Zhang_Hibiki_Mishima', 'Lockhart_Martinelli', 'Bankoff'] assert sorted(expect) == sorted(two_phase_dP_methods(10, 0.7, 1000, 0.1, rhog=1.2, mul=1E-3, mug=1E-6, sigma=0.014,)) assert 24 == len(two_phase_dP_methods(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1, angle=30.0, roughness=1e-4, P=1e5, Pc=1e6)) kwargs = dict(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1, angle=30.0, roughness=1e-4, P=1e5, Pc=1e6) for m in two_phase_dP_methods(**kwargs): two_phase_dP(Method=m, **kwargs) # Final method attempt Lombardi_Pedrocchi dP = two_phase_dP(m=0.6, x=0.1, rhol=915., rhog=2.67, sigma=0.045, D=0.05, L=1.0) assert_close(dP, 1567.328374498781) # Second method attempt Zhang_Webb dP = two_phase_dP(m=0.6, x=0.1, rhol=915., mul=180E-6, P=2E5, Pc=4055000, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 712.0999804205619) # Second choice, for no sigma; Chisholm dP = two_phase_dP(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 1084.1489922923736) # Preferred choice, Kim_Mudawar dP = two_phase_dP(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1.0) assert_close(dP, 840.4137796786074) # Case where i = 4 dP = two_phase_dP(Method='Friedel', m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, roughness=0.0, L=1.0) assert_close(dP, 738.6500525002243) # Case where i = 1 dP = two_phase_dP(Method='Lockhart_Martinelli', m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, L=1.0) assert_close(dP, 716.4695654888484) # Case where i = 101, 'Chisholm rough' dP = two_phase_dP(Method='Chisholm rough', m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=1E-4, L=1.0) assert_close(dP, 846.6778299960783) # Case where i = 102: dP = two_phase_dP(Method='Zhang_Hibiki_Mishima adiabatic gas', m=0.0005, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.003, roughness=0.0, L=1.0) assert_close(dP, 1109.1976111277042) # Case where i = 103: dP = two_phase_dP(Method='Zhang_Hibiki_Mishima flow boiling', m=0.0005, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.003, roughness=0.0, L=1.0) assert_close(dP, 770.0975665928916) # Don't give enough information: with pytest.raises(Exception): two_phase_dP(m=0.6, x=0.1, rhol=915., D=0.05, L=1.0) with pytest.raises(Exception): two_phase_dP(m=0.6, x=0.1, rhol=915., rhog=2.67, sigma=0.045, D=0.05, L=1, Method='BADMETHOD') def test_two_phase_dP_acceleration(): m = 1.0 D = 0.1 xi = 0.37263067757947943 xo = 0.5570214522041096 rho_li = 827.1015716377739 rho_lo = 827.05 rho_gi = 3.9190921750559062 rho_go = 3.811717994431281 alpha_i = homogeneous(x=xi, rhol=rho_li, rhog=rho_gi) alpha_o = homogeneous(x=xo, rhol=rho_lo, rhog=rho_go) dP = two_phase_dP_acceleration(m=m, D=D, xi=xi, xo=xo, alpha_i=alpha_i, alpha_o=alpha_o, rho_li=rho_li, rho_gi=rho_gi, rho_go=rho_go, rho_lo=rho_lo) assert_close(dP, 824.0280564053887) def test_two_phase_dP_dz_acceleration(): dP_dz = two_phase_dP_dz_acceleration(m=1.0, D=0.1, x=0.372, rhol=827.1, rhog=3.919, dv_dP_l=-5e-12, dv_dP_g=-4e-7, dx_dP=-2e-7, dP_dL=120.0, dA_dL=0.0001) assert_close(dP_dz, 20.137876617489034) def test_two_phase_dP_gravitational(): dP = two_phase_dP_gravitational(angle=90.0, z=2.0, alpha_i=0.9685, rho_li=1518., rho_gi=2.6) assert_close(dP, 987.237416829999) dP = two_phase_dP_gravitational(angle=90, z=2, alpha_i=0.9685, rho_li=1518., rho_gi=2.6, alpha_o=0.968, rho_lo=1517.9, rho_go=2.59) assert_close(dP, 994.5416058829999) def test_two_phase_dP_dz_gravitational(): dP_dz = two_phase_dP_dz_gravitational(angle=90.0, alpha=0.9685, rhol=1518., rhog=2.6) assert_close(dP_dz, 493.6187084149995) def test_Taitel_Dukler_regime(): from fluids.two_phase import Taitel_Dukler_regime regime = Taitel_Dukler_regime(m=1.0, x=0.05, rhol=600.12, rhog=80.67, mul=180E-6, mug=14E-6, D=0.02, roughness=0.0, angle=0.0)[0] assert regime == 'bubbly' regime = Taitel_Dukler_regime(m=1, x=0.05, rhol=600.12, rhog=80.67, mul=180E-6, mug=14E-6, D=0.021, roughness=0.0, angle=0)[0] assert regime == 'intermittent' regime = Taitel_Dukler_regime(m=.06, x=0.5, rhol=900.12, rhog=90.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, angle=0)[0] assert regime == 'stratified smooth' regime = Taitel_Dukler_regime(m=.07, x=0.5, rhol=900.12, rhog=90.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, angle=0)[0] assert regime == 'stratified wavy' regime, X, T, F, K = Taitel_Dukler_regime(m=0.6, x=0.112, rhol=915.12, rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, angle=0) assert regime == 'annular' assert_close(F, 0.9902249725092789) assert_close(K, 271.86280111125365) assert_close(T, 0.04144054776101148) assert_close(X, 0.4505119305984412) Dukler_XA_Xs = [0.0033181, 0.005498, 0.00911, 0.015096, 0.031528, 0.05224, 0.08476, 0.14045, 0.22788, 0.36203, 0.5515, 0.9332, 1.3919, 1.7179, 2.4055, 3.3683, 4.717, 7.185, 10.06, 13.507, 18.134, 23.839, 31.339, 40.341, 52.48] Dukler_XA_As = [1.6956, 1.5942, 1.4677, 1.3799, 1.1936, 1.076, 0.9108, 0.771, 0.6258, 0.4973, 0.37894, 0.23909, 0.17105, 0.14167, 0.09515, 0.06391, 0.042921, 0.023869, 0.016031, 0.010323, 0.006788, 0.0041042, 0.0026427, 0.0016662, 0.0010396] Dukler_XD_Xs = [1.7917, 2.9688, 4.919, 14.693, 24.346, 40.341, 131.07, 217.18, 352.37, 908.3, 1473.7, 3604] Dukler_XD_Ds = [1.2318, 1.1581, 1.0662, 0.904, 0.8322, 0.7347, 0.5728, 0.4952, 0.41914, 0.30028, 0.25417, 0.16741] Dukler_XC_Xs = [0.01471, 0.017582, 0.020794, 0.024853, 0.028483, 0.040271, 0.06734, 0.10247, 0.15111, 0.21596, 0.33933, 0.5006, 0.701, 1.149, 1.714, 2.5843, 4.0649, 6.065, 8.321, 11.534, 20.817, 28.865, 37.575, 50.48] Dukler_XC_Cs = [1.9554, 2.1281, 2.3405, 2.5742, 2.8012, 3.2149, 4.0579, 4.8075, 5.403, 5.946, 6.21, 6.349, 6.224, 6.168, 5.618, 4.958, 4.1523, 3.6646, 3.0357, 2.6505, 1.8378, 1.5065, 1.2477, 1.0555] @pytest.mark.scipy def test_Taitel_Dukler_splines(): from scipy.interpolate import splrep, splev import numpy as np from fluids.two_phase import Dukler_XA_tck, Dukler_XC_tck, Dukler_XD_tck Dukler_XA_tck2 = splrep(np.log10(Dukler_XA_Xs), np.log10(Dukler_XA_As), s=5e-3, k=3) [assert_close1d(i, j) for i, j in zip(Dukler_XA_tck[:-1], Dukler_XA_tck2[:-1])] # XA_interp = UnivariateSpline(np.log10(Dukler_XA_Xs), np.log10(Dukler_XA_As), s=5e-3, k=3) # , ext='const' # XA_interp_obj = lambda x: 10**float(splev(log10(x), Dukler_XA_tck)) Dukler_XD_tck2 = splrep(np.log10(Dukler_XD_Xs), np.log10(Dukler_XD_Ds), s=1e-2, k=3) [assert_close1d(i, j) for i, j in zip(Dukler_XD_tck[:-1], Dukler_XD_tck[:-1])] # XD_interp = UnivariateSpline(np.log10(Dukler_XD_Xs), np.log10(Dukler_XD_Ds), s=1e-2, k=3) # , ext='const' # XD_interp_obj = lambda x: 10**float(splev(log10(x), Dukler_XD_tck)) Dukler_XC_tck2 = splrep(np.log10(Dukler_XC_Xs), np.log10(Dukler_XC_Cs), s=1e-3, k=3) [assert_close1d(i, j) for i, j in zip(Dukler_XC_tck[:-1], Dukler_XC_tck2[:-1])] # XC_interp = UnivariateSpline(np.log10(Dukler_XC_Xs), np.log10(Dukler_XC_Cs), s=1e-3, k=3) # ext='const' # XC_interp_obj = lambda x: 10**float(splev(log10(x), Dukler_XC_tck)) # Curves look great to 1E-4! Also to 1E4. def plot_Taitel_Dukler_splines(): import numpy as np import matplotlib.pyplot as plt from fluids.two_phase import XA_interp_obj, XC_interp_obj, XD_interp_obj Xs = np.logspace(np.log10(1e-5), np.log10(1e5), 1000) A_Xs = np.logspace(np.log10(1e-5), np.log10(1e5), 1000) C_Xs = np.logspace(np.log10(1e-5), np.log10(1e5), 1000) D_Xs = np.logspace(np.log10(1e-5), np.log10(1e5)) A = [XA_interp_obj(X) for X in A_Xs] C = [XC_interp_obj(X) for X in C_Xs] D = [XD_interp_obj(X) for X in D_Xs] fig, ax1 = plt.subplots() ax1.loglog(C_Xs, C) ax1.set_ylim(1, 10**4) ax1.set_ylim(.01, 10**4) ax1.loglog(Dukler_XC_Xs, Dukler_XC_Cs, 'x') ax2 = ax1.twinx() ax2.loglog(A_Xs, A) ax2.loglog(D_Xs, D) ax2.loglog(Dukler_XD_Xs, Dukler_XD_Ds, '.') ax2.loglog(Dukler_XA_Xs, Dukler_XA_As, '+') ax2.set_ylim(1e-3, 10) fig.tight_layout() plt.show() return plt def test_Mandhane_Gregory_Aziz_regime(): from fluids.two_phase import Mandhane_Gregory_Aziz_regime regime = Mandhane_Gregory_Aziz_regime(m=0.6, x=0.112, rhol=915.12, rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.065, D=0.05)[0] assert regime == 'slug' regime = Mandhane_Gregory_Aziz_regime(m=6, x=0.112, rhol=915.12, rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.065, D=0.05)[0] assert regime == 'annular mist' regime = Mandhane_Gregory_Aziz_regime(m=.05, x=0.112, rhol=915.12, rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.065, D=0.05)[0] assert regime == 'stratified' regime = Mandhane_Gregory_Aziz_regime(m=.005, x=0.95, rhol=915.12, rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.065, D=0.01)[0] assert regime == 'wave' fluids-1.0.22/tests/test_particle_size_distribution.py0000644000175000017500000010004714302004506022613 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2018 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' import fluids from fluids import * from math import * from fluids.numerics import assert_close, assert_close1d, assert_close2d, isclose, linspace, logspace import pytest from fluids.particle_size_distribution import * try: from random import uniform except: pass def test_ASTM_E11_sieves(): sieves = ASTM_E11_sieves.values() tot = sum([i.d_wire for i in sieves]) assert_close(tot, 0.105963384) tot = sum([i.opening for i in sieves]) assert_close(tot, 0.9876439999999999) assert len(ASTM_E11_sieves) == 56 # Test but do not validate these properties tot = 0.0 for attr in ['Y_variation_avg', 'X_variation_max', 'max_opening', 'd_wire', 'd_wire_min', 'd_wire_max', 'opening', 'opening_inch']: tot += sum(getattr(i, attr) for i in sieves) def test_ISO_3310_2_sieves(): sieves = ISO_3310_1_sieves.values() tot = sum([i.d_wire for i in sieves]) assert_close(tot, 0.17564599999999997) tot = sum([i.opening for i in sieves]) assert_close(tot, 1.5205579999999994) assert len(ISO_3310_1_sieves) == 99 # Test but do not validate these properties tot = 0.0 for attr in ['Y_variation_avg', 'X_variation_max', 'd_wire', 'd_wire_min', 'd_wire_max', 'opening']: tot += sum(getattr(i, attr) for i in sieves) for l in [ISO_3310_1_R20_3, ISO_3310_1_R20, ISO_3310_1_R10, ISO_3310_1_R40_3]: for i in l: assert i.designation in ISO_3310_1_sieves def test_ParticleSizeDistribution_basic(): ds = [240, 360, 450, 562.5, 703, 878, 1097, 1371, 1713, 2141, 2676, 3345, 4181, 5226, 6532] numbers = [65, 119, 232, 410, 629, 849, 990, 981, 825, 579, 297, 111, 21, 1] number_fractions = [0.010640039286298903, 0.01947945653953184, 0.03797675560648224, 0.06711409395973154, 0.102962841708954, 0.13897528237027337, 0.16205598297593715, 0.160582746767065, 0.13504665247994763, 0.09477819610410869, 0.048616794892781146, 0.01816991324275659, 0.0034375511540350305, 0.0001636929120969062] length_fractions = [0.0022265080273913248, 0.005405749400984079, 0.013173675010801534, 0.02909808308708846, 0.05576732372469186, 0.09403390879219536, 0.1370246122004729, 0.16966553692650058, 0.17831420382670332, 0.15641421494054603, 0.10028800800464328, 0.046849963047687335, 0.011078803825079166, 0.0006594091852147985] area_fractions = [0.0003643458522227456, 0.0011833425086503686, 0.0036047198267710797, 0.009951607879295004, 0.023826910138492176, 0.05018962198499494, 0.09139246506396961, 0.1414069073893575, 0.18572285033413602, 0.20362023102799823, 0.16318760564859225, 0.09528884410476045, 0.028165197280747324, 0.0020953509600122053] fractions = [4.8560356399310335e-05, 0.00021291794698947167, 0.0008107432330218852, 0.0027975134942445257, 0.00836789808490677, 0.02201901107895143, 0.05010399231412809, 0.0968727835386488, 0.15899879607747244, 0.2178784903712532, 0.21825921197532888, 0.159302671180342, 0.05885464261922434, 0.0054727677290887945] fraction_cdf = [4.856035639931034e-05, 0.0002614783033887821, 0.0010722215364106676, 0.003869735030655194, 0.012237633115561966, 0.0342566441945134, 0.0843606365086415, 0.18123342004729032, 0.34023221612476284, 0.5581107064960161, 0.7763699184713451, 0.9356725896516871, 0.9945272322709114, 1.0000000000000002] area_cdf = [0.00036434585222274563, 0.0015476883608731143, 0.005152408187644195, 0.015104016066939202, 0.038930926205431385, 0.08912054819042634, 0.18051301325439598, 0.3219199206437535, 0.5076427709778896, 0.7112630020058879, 0.8744506076544801, 0.9697394517592406, 0.9979046490399879, 1.0] length_cdf = [0.0022265080273913248, 0.007632257428375404, 0.020805932439176937, 0.0499040155262654, 0.10567133925095726, 0.1997052480431526, 0.3367298602436255, 0.506395397170126, 0.6847096009968294, 0.8411238159373755, 0.9414118239420188, 0.9882617869897061, 0.9993405908147853, 1.0000000000000002] number_cdf = [0.010640039286298902, 0.030119495825830737, 0.06809625143231296, 0.13521034539204452, 0.2381731871009985, 0.3771484694712718, 0.5392044524472088, 0.6997871992142738, 0.8348338516942214, 0.9296120477983301, 0.9782288426911112, 0.9963987559338677, 0.9998363070879027, 0.9999999999999997] opts = [ {'fractions': numbers, 'cdf': False, 'order': 0}, {'fractions': number_fractions, 'cdf': False, 'order': 0}, {'fractions': length_fractions, 'cdf': False, 'order': 1}, {'fractions': area_fractions, 'cdf': False, 'order': 2}, {'fractions': fractions, 'cdf': False, 'order': 3}, {'fractions': fraction_cdf, 'cdf': True, 'order': 3}, {'fractions': area_cdf, 'cdf': True, 'order': 2}, {'fractions': length_cdf, 'cdf': True, 'order': 1}, {'fractions': number_cdf, 'cdf': True, 'order': 0}] for opt in opts: asme_e799 = ParticleSizeDistribution(ds=ds, **opt) d10 = asme_e799.mean_size(1, 0) assert_close(d10, 1459.3725650679328) d21 = asme_e799.mean_size(2, 1) assert_close(d21, 1857.7888572055529) d20 = asme_e799.mean_size(2, 0) assert_close(d20, 1646.5740462835831) d32 = asme_e799.mean_size(3, 2) assert_close(d32, 2269.3210317450453) # This one is rounded to 2280 in ASME - weird d31 = asme_e799.mean_size(3, 1) assert_close(d31, 2053.2703977309357) # This one is rounded to 2060 in ASME - weird d30 = asme_e799.mean_size(3, 0) assert_close(d30, 1832.39665294744) d43 = asme_e799.mean_size(4, 3) assert_close(d43, 2670.751954612969) # The others are, rounded to the nearest 10, correct. # There's something weird about the end points of some intermediate values of # D3 and D4. Likely just rounding issues. vol_percents_exp = [0.005, 0.021, 0.081, 0.280, 0.837, 2.202, 5.010, 9.687, 15.900, 21.788, 21.826, 15.930, 5.885, 0.547] assert vol_percents_exp == [round(i*100, 3) for i in asme_e799.fractions] assert_close1d(asme_e799.fractions, fractions) assert_close1d(asme_e799.number_fractions, number_fractions) # i, i distributions d00 = asme_e799.mean_size(0, 0) assert_close(d00, 1278.7057976023061) d11 = asme_e799.mean_size(1, 1) assert_close(d11, 1654.6665309027303) d22 = asme_e799.mean_size(2, 2) assert_close(d22, 2054.3809583432208) d33 = asme_e799.mean_size(3, 3) assert_close(d33, 2450.886241250387) d44 = asme_e799.mean_size(4, 4) assert_close(d44, 2826.0471682278476) vssa = asme_e799.vssa assert_close(vssa, 0.0026656187302839165) def test_pdf_lognormal(): import scipy.stats pdf = pdf_lognormal(d=1E-4, d_characteristic=1E-5, s=1.1) assert_close(pdf, 405.5420921156425, rtol=1E-12) pdf_sp = scipy.stats.lognorm.pdf(x=1E-4/1E-5, s=1.1)/1E-5 assert_close(pdf_sp, pdf) assert 0.0 == pdf_lognormal(d=0, d_characteristic=1E-5, s=1.1) # Check we can get down almost to zero pdf = pdf_lognormal(d=3.7E-24, d_characteristic=1E-5, s=1.1) assert_close(pdf, 4.842842147909424e-301, atol=1e-200) def test_cdf_lognormal(): import scipy.stats cdf = cdf_lognormal(d=1E-4, d_characteristic=1E-5, s=1.1) assert_close(cdf, 0.98183698757981763) cdf_sp = scipy.stats.lognorm.cdf(x=1E-4/1E-5, s=1.1) assert_close(cdf, cdf_sp) assert cdf_lognormal(d=1e300, d_characteristic=1E-5, s=1.1) == 1.0 assert cdf_lognormal(d=0, d_characteristic=1E-5, s=1.1) == 0.0 def test_pdf_lognormal_basis_integral(): ans = pdf_lognormal_basis_integral(d=1E-4, d_characteristic=1E-5, s=1.1, n=-2) assert_close(ans, 56228306549.263626) # Some things: ans = pdf_lognormal_basis_integral(d=1E-100, d_characteristic=1E-5, s=1.1, n=-2) ans2 = pdf_lognormal_basis_integral(d=1E-120, d_characteristic=1E-5, s=1.1, n=-2) assert_close(ans, ans2, rtol=1E-12) # Couldn't get the limit for pdf_lognormal_basis_integral when d = 0 # # with Sympy Or wolfram @pytest.mark.scipy @pytest.mark.fuzz @pytest.mark.slow def test_pdf_lognormal_basis_integral_fuzz(): from scipy.integrate import quad # The actual integral testing analytical_vales = [] numerical_values = [] for n in [-3, -2, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0]: # Errors at -2 (well, prevision loss anyway) for d_max in [1e-3, 1e-2, 2e-2, 3e-2, 4e-2, 5e-2, 6e-2, 7e-2, 8e-2, 1e-1]: d_max = d_max/100 # Make d smaller analytical = (pdf_lognormal_basis_integral(d_max, d_characteristic=1E-5, s=1.1, n=n) - pdf_lognormal_basis_integral(1e-20, d_characteristic=1E-5, s=1.1, n=n)) to_int = lambda d : d**n*pdf_lognormal(d, d_characteristic=1E-5, s=1.1) points = logspace(log10(d_max/1000), log10(d_max*.999), 40) numerical = quad(to_int, 1e-9, d_max, points=points)[0] # points=points analytical_vales.append(analytical) numerical_values.append(numerical) assert_close1d(analytical_vales, numerical_values, rtol=2E-6) def test_cdf_Gates_Gaudin_Schuhman(): ''' d, d_max, n, m = symbols('d, d_max, n, m') expr = (d/d_max)**n pdf = diff(expr, d) ''' cdf = cdf_Gates_Gaudin_Schuhman(d=2E-4, d_characteristic=1E-3, m=2.3) assert_close(cdf, 0.024681354508800397) cdf = cdf_Gates_Gaudin_Schuhman(d=1.01e-3, d_characteristic=1E-3, m=2.3) assert_close(cdf, 1) def test_pdf_Gates_Gaudin_Schuhman(): pdf = pdf_Gates_Gaudin_Schuhman(d=2E-4, d_characteristic=1E-3, m=2.3) assert_close(pdf, 283.8355768512045) pdf = pdf_Gates_Gaudin_Schuhman(d=2E-3, d_characteristic=1E-3, m=2.3) assert_close(pdf, 0) def test_pdf_Gates_Gaudin_Schuhman_basis_integral(): ans = pdf_Gates_Gaudin_Schuhman_basis_integral(d=0, d_characteristic=1e-3, m=2.3, n=5) assert_close(ans, 0) ans = pdf_Gates_Gaudin_Schuhman_basis_integral(d=1e-3, d_characteristic=1e-3, m=2.3, n=5) assert_close(ans, 3.1506849315068495e-16) @pytest.mark.scipy @pytest.mark.slow @pytest.mark.fuzz def test_pdf_Gates_Gaudin_Schuhman_basis_integral_fuzz(): from scipy.integrate import quad '''Note: Test takes 10x longer with the quad/points. ''' analytical_vales = [] numerical_values = [] for n in [-1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0]: # Errors at -2 (well, prevision loss anyway) for d_max in [1e-3, 1e-2, 2e-2, 3e-2, 4e-2, 5e-2, 6e-2, 7e-2, 8e-2, 1e-1]: d_max = d_max/100 # d cannot be larger than d_max analytical = (pdf_Gates_Gaudin_Schuhman_basis_integral(d_max, 1E-3, 2.3, n) - pdf_Gates_Gaudin_Schuhman_basis_integral(1E-20, 1E-3, 2.3, n)) to_int = lambda d : d**n*pdf_Gates_Gaudin_Schuhman(d, 1E-3, 2.3) numerical = quad(to_int, 1E-20, d_max)[0] # points=points analytical_vales.append(analytical) numerical_values.append(numerical) # The precision here is amazing actually, 1e-14 passes # assert_close1d(analytical, numerical, rtol=1E-7) assert_close1d(analytical_vales, numerical_values, rtol=1E-7) def test_cdf_Rosin_Rammler(): cdf = cdf_Rosin_Rammler(5E-2, 200.0, 2.0) assert_close(cdf, 0.3934693402873667) def test_pdf_Rosin_Rammler(): ''' from sympy import * d, k, n = symbols('d, k, n') model = 1 - exp(-k*d**n) print(latex(diff(model, d))) ''' from scipy.integrate import quad pdf = pdf_Rosin_Rammler(1E-3, 200.0, 2.0) assert_close(pdf, 0.3999200079994667) # quad to_quad = lambda d: pdf_Rosin_Rammler(d, 200.0, 2.0) cdf_int = quad(to_quad, 0, 5e-2)[0] cdf_known = cdf_Rosin_Rammler(5E-2, 200, 2) assert_close(cdf_int, cdf_known) assert_close(1, quad(to_quad, 0, 5)[0]) assert 0 == pdf_Rosin_Rammler(0, 200, 2) def test_pdf_Rosin_Rammler_basis_integral(): ans = pdf_Rosin_Rammler_basis_integral(5E-2, 200.0, 2.0, 3) assert_close(ans, -0.00045239898439007338) # Test no error pdf_Rosin_Rammler_basis_integral(0, 200, 2, 3) @pytest.mark.slow @pytest.mark.fuzz def test_pdf_Rosin_Rammler_basis_integral_fuzz(): from scipy.integrate import quad for n in [1.0, 2.0, 3.0]: # Lower d_maxes have for d_max in [ 1e-3, 1e-2, 2e-2, 3e-2, 4e-2, 5e-2, 6e-2, 7e-2, 8e-2, 1e-1]: analytical = (pdf_Rosin_Rammler_basis_integral(d_max, 200, 2, n) - pdf_Rosin_Rammler_basis_integral(1E-20, 200, 2, n)) to_int = lambda d : d**n*pdf_Rosin_Rammler(d, 200, 2) points = logspace(log10(d_max/2000), log10(d_max*.999), 30) numerical = quad(to_int, 1E-20, d_max, points=points)[0] assert_close(analytical, numerical, rtol=1E-5) def testPSDLognormal_meshes(): a = PSDLognormal(s=0.5, d_characteristic=5E-6) ds_expect = [5.011872336272722e-07, 6.309573444801932e-07, 7.943282347242815e-07, 1e-06] ds = a.ds_discrete(d_max=1e-6, method='R10', pts=4) assert_close1d(ds_expect, ds) ds = a.ds_discrete(d_min=1e-6, method='R10', pts=4) assert_close1d(ds, [1e-06, 1.2589254117941672e-06, 1.5848931924611134e-06, 1.9952623149688796e-06]) @pytest.mark.fuzz @pytest.mark.slow def test_PSDLognormal_mean_sizes_numerical(): '''Takes like 1 second. Should not run normally. Not how things should be done, just a proof of concept. ''' # ISO standard example, done numerically a = PSDLognormal(s=0.5, d_characteristic=5E-6) ds = a.ds_discrete(d_max=1, pts=1E5) fractions = a.fractions_discrete(ds) disc = ParticleSizeDistribution(ds=ds, fractions=fractions, order=3) d20 = disc.mean_size(2, 0) assert_close(d20, 3.033E-6, rtol=0, atol=1E-9) d10 = disc.mean_size(1, 0) assert_close(d10, 2.676E-6, rtol=0, atol=1E-9) d21 = disc.mean_size(2, 1) assert_close(d21, 3.436E-6, rtol=0, atol=1E-9) d32 = disc.mean_size(3, 2) # Does match, need 6E6 pts to get the last digit to round right assert_close(d32, 4.412E-6, rtol=0, atol=1E-9) d43 = disc.mean_size(4, 3) assert_close(d43, 5.666E-6, rtol=0, atol=1E-9) d33 = disc.mean_size(3.0, 3.0) assert_close(d33, 5.000E-6, rtol=0, atol=1E-9) d00 = disc.mean_size(0.0, 0.0) assert_close(d00, 2.362E-6, rtol=0, atol=1E-9) @pytest.mark.skipif(fluids.numerics.IS_PYPY, reason="numerical issues with adaptive integrator") # Custom integrator can't handle this @pytest.mark.slow def test_PSDCustom_mean_sizes_numerical(): import scipy.stats distribution = scipy.stats.lognorm(s=0.5, scale=5E-6) disc = PSDCustom(distribution) d20 = disc.mean_size(2, 0) assert_close(d20, 3.0326532985631672e-06, rtol=1E-8) d10 = disc.mean_size(1, 0) assert_close(d10, 2.6763071425949508e-06, rtol=1E-8) d21 = disc.mean_size(2, 1) assert_close(d21, 3.4364463939548618e-06, rtol=1E-8) d32 = disc.mean_size(3, 2) assert_close(d32, 4.4124845129229773e-06, rtol=1E-8) d43 = disc.mean_size(4, 3) assert_close(d43, 5.6657422653341318e-06, rtol=1E-3) def test_PSDLognormal_mean_sizes_analytical(): disc = PSDLognormal(s=0.5, d_characteristic=5E-6) d20 = disc.mean_size(2, 0) assert_close(d20, 3.033E-6, rtol=0, atol=1E-9) assert_close(d20, 3.0326532985631672e-06, rtol=1E-12) assert_close(d20, disc.mean_size_ISO(2, 0), rtol=1E-12) d10 = disc.mean_size(1, 0) assert_close(d10, 2.676E-6, rtol=0, atol=1E-9) assert_close(d10, 2.6763071425949508e-06, rtol=1E-12) assert_close(d10, disc.mean_size_ISO(1, 0), rtol=1E-12) d21 = disc.mean_size(2, 1) assert_close(d21, 3.436E-6, rtol=0, atol=1E-9) assert_close(d21, 3.4364463939548618e-06, rtol=1E-12) assert_close(d21, disc.mean_size_ISO(1, 1), rtol=1E-12) d32 = disc.mean_size(3, 2) assert_close(d32, 4.412E-6, rtol=0, atol=1E-9) assert_close(d32, 4.4124845129229773e-06, rtol=1E-12) assert_close(d32, disc.mean_size_ISO(1, 2), rtol=1E-12) d43 = disc.mean_size(4, 3) assert_close(d43, 5.666E-6, rtol=0, atol=1E-9) assert_close(d43, 5.6657422653341318e-06, rtol=1E-12) assert_close(d43, disc.mean_size_ISO(1, 3), rtol=1E-12) assert_close(disc.vssa, 1359778.1436801916) # There guys - need more work d33 = disc.mean_size(3.0, 3.0) assert_close(d33, 5.000E-6, rtol=0, atol=1E-6) # d00 = disc.mean_size(0.0, 0.0) assert_close(d00, 2.362E-6, rtol=1e-4) def test_PSDLognormal_ds_discrete(): ds_discrete_expect = [2.4920844782646124e-07, 5.870554386661556e-07, 1.3829149496067687e-06, 3.2577055451375563e-06, 7.674112874286059e-06, 1.8077756749742233e-05, 4.258541598963051e-05, 0.0001003176268004454] dist = PSDLognormal(s=0.5, d_characteristic=5E-6) # Test the defaults assert_close1d(dist.ds_discrete(pts=8), ds_discrete_expect, rtol=1e-4) ds_discrete_expect = [1e-07, 1.389495494373139e-07, 1.9306977288832497e-07, 2.6826957952797275e-07, 3.727593720314938e-07, 5.179474679231213e-07, 7.196856730011514e-07, 1e-06] # Test end and minimum points assert_close1d(dist.ds_discrete(d_min=1e-7, d_max=1e-6, pts=8), ds_discrete_expect, rtol=1e-12) def test_PSDLognormal_ds_discrete(): # Test the cdf discrete dist = PSDLognormal(s=0.5, d_characteristic=5E-6) ds = dist.ds_discrete(d_min=1e-7, d_max=1e-6, pts=8) ans = dist.fractions_discrete(ds) fractions_expect = [2.55351295663786e-15, 3.831379657981415e-13, 3.762157252396037e-11, 2.41392961175535e-09, 1.01281244724305e-07, 2.7813750147487326e-06, 5.004382447515443e-05, 0.00059054208024234] assert_close1d(fractions_expect, ans, rtol=1e-3) def test_PSDLognormal_dn(): disc = PSDLognormal(s=0.5, d_characteristic=5E-6) # Test input of 1 ans = disc.dn(1) # The answer can vary quite a lot near the end, so it is safest just to # compare with the reverse, plugging it back to cdf assert_close(disc.cdf(ans), 1, rtol=1E-12) # assert_close(ans, 0.0002964902595794474) # Test zero input assert_close(disc.dn(0), 0) # Test 50% input ans = disc.dn(.5) assert_close(ans, 5.0e-06, rtol=1E-6) with pytest.raises(Exception): disc.dn(1.5) with pytest.raises(Exception): disc.dn(-.5) # Other orders of n - there is no comparison data for this yet!! assert_close(disc.pdf(1E-5), disc.pdf(1E-5, 3)) assert_close(disc.pdf(1E-5, 2), 13468.122877854335) assert_close(disc.pdf(1E-5, 1), 4628.2482296943508) assert_close(disc.pdf(1E-5, 0), 1238.6613794833427) # Some really large s tests - found some issues with this dist = PSDLognormal(s=4, d_characteristic=5E-6) assert_close(dist.dn(1e-15), 8.220922763476676e-20, rtol=1e-1) assert_close(dist.dn(.99999999), 28055.285560763594) assert_close(dist.dn(1e-9), 1.904197766691136e-16, rtol=1e-4) assert_close(dist.dn(1-1e-9), 131288.88851649483, rtol=1e-4) def test_PSDLognormal_dn_order_0_1_2(): '''Simple point to test where the order of n should be 0 Yes, the integrals need this many points (which makes them slow) to get the right accuracy. They've been tested and reduced already quite a bit. ''' from scipy.integrate import quad # test 2, 0 -> 2, 0 disc = PSDLognormal(s=0.5, d_characteristic=5E-6) to_int = lambda d: d**2*disc.pdf(d=d, n=0) points = [5E-6*i for i in logspace(log10(.1), log10(50), 8)] ans_numerical = (quad(to_int, 1E-7, 5E-3, points=points)[0])**0.5 ans_analytical = 3.0326532985631672e-06 # The integral is able to give over to decimals! assert_close(ans_numerical, ans_analytical, rtol=1E-10) # test 2, 1 -> 1, 1 integrated pdf to_int = lambda d: d*disc.pdf(d=d, n=1) ans_numerical = (quad(to_int, 1E-7, 5E-3, points=points)[0])**1 ans_analytical = 3.4364463939548618e-06 assert_close(ans_numerical, ans_analytical, rtol=1E-10) # test 3, 2 -> 1, 2 integrated pdf to_int = lambda d: d*disc.pdf(d=d, n=2) ans_numerical = (quad(to_int, 1E-7, 5E-3, points=points)[0])**1 ans_analytical = 4.4124845129229773e-06 assert_close(ans_numerical, ans_analytical, rtol=1E-8) def test_PSDLognormal_cdf_orders(): # Test cdf of different orders a bunch disc = PSDLognormal(s=0.5, d_characteristic=5E-6) # 16 x 4 = 64 points # had 1e-7 here too as a diameter but too many numerical issues, too sensitive to rounding # errors ds = [2E-6, 3E-6, 4E-6, 5E-6, 6E-6, 7E-6, 1E-5, 2E-5, 3E-5, 5E-5, 7E-5, 1E-4, 2E-4, 4E-4, 1E-3] ans_expect = [[ 0.36972511868508068, 0.68379899882263917, 0.8539928088656249, 0.93319279873114203, 0.96888427729983861, 0.98510775165387254, 0.99805096305713792, 0.9999903391682271, 0.99999981474719135, 0.99999999948654394, 0.99999999999391231, 0.99999999999996592, 1.0, 1.0, 1.0], [ 0.20254040832522924, 0.49136307673913149, 0.71011232639847854, 0.84134474606854293, 0.91381737643345484, 0.95283088619207579, 0.99149043874391107, 0.99991921875653167, 0.99999771392273817, 0.99999998959747816, 0.99999999982864851, 0.99999999999863987, 1.0, 1.0, 1.0000000000000002], [ 0.091334595732478097, 0.30095658738958564, 0.52141804648990697, 0.69146246127401301, 0.80638264936531323, 0.87959096325267294, 0.9703723506333426, 0.999467162897961, 0.99997782059383122, 0.99999983475152954, 0.99999999622288382, 0.99999999995749711, 0.99999999999999833, 1.0000000000000002, 1.0000000000000002], [ 0.033432418408916864, 0.15347299656473007, 0.3276949357115424, 0.5, 0.64231108623683952, 0.74950869138681098, 0.91717148099830148, 0.99721938213769046, 0.99983050191355338, 0.99999793935660408, 0.99999993474010451, 0.99999999896020164, 0.99999999999991951, 1.0, 1.0]] calc = [] for n in range(0, 4): calc.append([disc.cdf(i, n=n) for i in ds]) assert_close2d(ans_expect, calc, rtol=1E-9) def test_PSDLognormal_cdf_vs_pdf(): from scipy.integrate import quad # test PDF against CDF disc = PSDLognormal(s=0.5, d_characteristic=5E-6) ans_calc = [] ans_expect = [] for i in range(5): # Pick a random start start = uniform(0, 1) end = uniform(start, 1) d_start = disc.dn(start) d_end = disc.dn(end) delta = disc.cdf(d_end) - disc.cdf(d_start) delta_numerical = quad(disc.pdf, d_start, d_end)[0] ans_calc.append(delta_numerical) ans_expect.append(delta) assert_close1d(ans_calc, ans_expect) def test_PSD_lognormal_truncated(): psd = PSDLognormal(s=0.5, d_characteristic=5E-6, d_max=1e-5, d_min=1e-6, order=3) assert_close(psd.dn(1), 1e-5) assert_close(psd.dn(0), 1e-6) assert_close(psd.cdf(psd.dn(0.5)), 0.5) # No longer at d_characteristic # Check the cdf limits of the truncated distribution ds = [1e-8, 1e-7, 1e-6, 2e-6, 5e-6, 9e-6, 1e-5, 1e-4, 1e-3] ans = psd.fractions_discrete(ds) ans_expect = [0.0, 0.0, 0.0, 0.03577517221380477, 0.5090598176028703, 0.41473614196545805, 0.04042886821786684, 0.0, 0.0] assert sum(ans) == 1 assert_close1d(ans, ans_expect) pdfs = [psd.pdf(i) for i in ds] pdfs_expect = [0.0, 0.0, 4896.6230234795203, 81190.803665720552, 174110.24040947447, 48468.576095204902, 33302.599459012476, 0.0, 0.0] assert_close1d(pdfs, pdfs_expect) # Check the mean_size calculations - this is right assert_close(psd.mean_size(3, 2), 4.1817574249337556e-06) @pytest.mark.fuzz @pytest.mark.slow def test_PSD_lognormal_truncated_mean_size(): from scipy.integrate import quad psd = PSDLognormal(s=0.5, d_characteristic=5E-6, d_max=1e-5, d_min=1e-6, order=3) def psd_mean_size_numeric_truncated(psd, p, q): pow1 = q - psd.order to_int = lambda d : d**pow1*psd.pdf(d) denominator = quad(to_int, psd.d_min, psd.d_max)[0] # denominator = self._pdf_basis_integral_definite(d_min=self.d_minimum, d_max=self.d_excessive, n=pow1) root_power = p - q pow3 = p - psd.order # numerator = self._pdf_basis_integral_definite(d_min=self.d_minimum, d_max=self.d_excessive, n=pow3) to_int = lambda d : d**pow3*psd.pdf(d) numerator = quad(to_int, psd.d_min, psd.d_max)[0] return (numerator/denominator)**(1.0/(root_power)) # It really works! for p in range(-3, 4): for q in range(-3, 4): if p != q: assert_close(psd.mean_size(p, q), psd_mean_size_numeric_truncated(psd, p, q)) @pytest.mark.slow def test_PSD_PSDlognormal_area_length_count(): '''Compare the average difference between the analytical values for a lognormal distribution with those of a discretized form of it.Note simply adding more points did not tend to help reduce the error. For the particle count case, 700 points has the lowest error. fractions_discrete is still the slowest part. ''' import numpy as np dist = PSDLognormal(s=0.5, d_characteristic=5E-6) ds = dist.ds_discrete(pts=700, d_min=2E-7, d_max=1E-4) fractions = dist.fractions_discrete(ds) psd = ParticleSizeDistribution(ds=ds, fractions=fractions, order=3) # Trim a few at the start and end ans = np.array(psd.number_fractions)[5:-5]/np.array(dist.fractions_discrete(ds, n=0))[5:-5] avg_err = sum(np.abs(ans - 1.0))/len(ans) assert 5E-4 > avg_err ans = np.array(psd.length_fractions)[5:-5]/np.array(dist.fractions_discrete(ds, n=1))[5:-5] avg_err = sum(np.abs(ans - 1.0))/len(ans) assert 1E-4 > avg_err ans = np.array(psd.area_fractions)[5:-5]/np.array(dist.fractions_discrete(ds, n=2))[5:-5] avg_err = sum(np.abs(ans - 1.0))/len(ans) assert 1E-4 > avg_err def test_PSDInterpolated_pchip(): '''For this test, ds is the same length as fractions, and we begin the series with the zero point. Half the test is spend on the `dn` solver tests, and the other half is just that these tests are slow. ''' import numpy as np ds = [360, 450, 562.5, 703, 878, 1097, 1371, 1713, 2141, 2676, 3345, 4181, 5226, 6532] ds = np.array(ds)/1e6 numbers = [65, 119, 232, 410, 629, 849, 990, 981, 825, 579, 297, 111, 21, 1] dist = ParticleSizeDistribution(ds=ds, fractions=numbers, order=0) psd = PSDInterpolated(dist.Dis, dist.fractions) assert len(psd.fractions) == len(psd.ds) assert len(psd.fractions) == 15 # test fractions_discrete vs input assert_close1d(psd.fractions_discrete(ds), dist.fractions) # test cdf_discrete assert_close1d(psd.cdf_discrete(ds), psd.fraction_cdf[1:]) # test that dn solves backwards for exactly the right value - slow cumulative_fractions = np.cumsum(dist.fractions) ds_for_fractions = np.array([psd.dn(f) for f in cumulative_fractions]) assert_close1d(ds, ds_for_fractions) # test _pdf test_pdf = psd._pdf(1e-3) assert_close(test_pdf, 106.28284463095554) # test _cdf test_cdf = psd._cdf(1e-3) assert_close(test_cdf, 0.02278897476363087) # test _pdf_basis_integral test_int = psd._pdf_basis_integral(1e-3, 2) assert_close(test_int, 1.509707233427664e-08) # Check that the 0 point is created and the points and fractions are the same assert_close1d(psd.ds, [0] + ds.tolist()) assert_close1d(psd.fractions, [0] + dist.fractions) # test mean_size test_mean = psd.mean_size(3, 2) assert_close(test_mean, 0.002211577679574544) def test_PSDInterpolated_discrete_range_pts(): import numpy as np ds = [360, 450, 562.5, 703, 878, 1097, 1371, 1713, 2141, 2676, 3345, 4181, 5226, 6532] ds = [i*1e-6 for i in ds] numbers = [65, 119, 232, 410, 629, 849, 990, 981, 825, 579, 297, 111, 21, 1] psd = ParticleSizeDistribution(ds=ds, fractions=numbers, order=0) # test fractions_discrete vs input assert_close1d(psd.fractions_discrete(ds), psd.fractions) # test cdf_discrete assert_close1d(psd.cdf_discrete(ds), psd.interpolated.fraction_cdf[1:]) # test that dn solves backwards for exactly the right value cumulative_fractions = np.cumsum(psd.fractions) ds_for_fractions = np.array([psd.dn(f) for f in cumulative_fractions]) assert_close1d(ds, ds_for_fractions) # test _pdf test_pdf = psd.pdf(1e-3) assert_close(test_pdf, 106.28284463095554) # test _cdf test_cdf = psd.cdf(1e-3) assert_close(test_cdf, 0.02278897476363087) # test _pdf_basis_integral test_int = psd._pdf_basis_integral(1e-3, 2) assert_close(test_int, 1.509707233427664e-08) assert not isclose(psd.mean_size(3, 2), psd.interpolated.mean_size(3, 2)) def test_PSDInterpolated_discrete(): import numpy as np ds = 1E-6*np.array([240, 360, 450, 562.5, 703, 878, 1097, 1371, 1713, 2141, 2676, 3345, 4181, 5226, 6532]) numbers = [65, 119, 232, 410, 629, 849, 990, 981, 825, 579, 297, 111, 21, 1] psd = ParticleSizeDistribution(ds=ds, fractions=numbers, order=0) dn_05 = psd.dn(0.5) assert_close(dn_05, 0.002526452452632658) assert_close(psd.cdf(dn_05), 0.5, rtol=1e-4) assert_close(psd.cdf(0.002, 4), 0.18010145594167873, rtol=5e-3) assert_close(psd.pdf(0.002, 2), 466.42761174380007, rtol=5e-3) assert_close(psd.pdf(0.002526452452632658), 408.4774528377241, rtol=1e-2) assert_close(psd.mean_size(1, 0), psd.interpolated.mean_size(1, 0), rtol=0.05) assert_close(psd.cdf(100), 1) assert_close(psd.cdf(psd.dn(1)), 1) def test_psd_spacing(): ans_log = psd_spacing(d_min=1, d_max=10, pts=4, method='logarithmic') ans_log_expect = [1.0, 2.154434690031884, 4.641588833612778, 10.0] assert_close1d(ans_log, ans_log_expect) ans_lin = psd_spacing(d_min=0, d_max=10, pts=4, method='linear') ans_lin_expect = [0.0, 3.3333333333333335, 6.666666666666667, 10.0] assert_close1d(ans_lin, ans_lin_expect) with pytest.raises(Exception): psd_spacing(d_min=0, d_max=10, pts=8, method='R5') with pytest.raises(Exception): psd_spacing(d_min=5e-5, d_max=5e-4, method='BADMETHOD') # This example from an iso standard, ISO 9276-2 2014 ans_R5 = psd_spacing(d_max=25, pts=8, method='R5') ans_R5_expect = [0.9952679263837426, 1.5773933612004825, 2.499999999999999, 3.9622329811527823, 6.279716078773949, 9.95267926383743, 15.77393361200483, 25] assert_close1d(ans_R5, ans_R5_expect) ans_R5_reversed = psd_spacing(d_min=0.9952679263837426, pts=8, method='R5') assert_close1d(ans_R5_reversed, ans_R5_expect) ans_R5_float = psd_spacing(d_max=25, pts=8, method='R5.00000001') assert_close1d(ans_R5_float, ans_R5_expect) ans = psd_spacing(d_min=5e-5, d_max=1e-3, method='ISO 3310-1') ans_expect = [5e-05, 5.3e-05, 5.6e-05, 6.3e-05, 7.1e-05, 7.5e-05, 8e-05, 9e-05, 0.0001, 0.000106, 0.000112, 0.000125, 0.00014, 0.00015, 0.00016, 0.00018, 0.0002, 0.000212, 0.000224, 0.00025, 0.00028, 0.0003, 0.000315, 0.000355, 0.0004, 0.000425, 0.00045, 0.0005, 0.00056, 0.0006, 0.00063, 0.00071, 0.0008, 0.00085, 0.0009, 0.001] assert_close1d(ans, ans_expect) assert [] == psd_spacing(d_min=0, d_max=1e-6, method='ISO 3310-1') assert [] == psd_spacing(d_min=1, d_max=1e2, method='ISO 3310-1') assert psd_spacing(d_min=5e-5, d_max=1e-3, method='ISO 3310-1 R20') assert psd_spacing(d_min=5e-5, d_max=1e-3, method='ISO 3310-1 R20/3') assert psd_spacing(d_min=5e-5, d_max=1e-3, method='ISO 3310-1 R40/3') assert psd_spacing(d_min=0e-5, d_max=1e-3, method='ISO 3310-1 R10') ds = psd_spacing(d_min=1e-5, d_max=1e-4, method='ASTM E11') ds_expect = [2e-05, 2.5e-05, 3.2e-05, 3.8e-05, 4.5e-05, 5.3e-05, 6.3e-05, 7.5e-05, 9e-05] assert_close1d(ds, ds_expect)fluids-1.0.22/tests/gsod/0000755000175000017500000000000014302004506014500 5ustar nileshnileshfluids-1.0.22/tests/gsod/1974/0000755000175000017500000000000014302004506015104 5ustar nileshnileshfluids-1.0.22/tests/gsod/1974/724050-13743.op0000644000175000017500000014327214302004506016675 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19740101 42.8 23 35.8 23 1018.7 23 1016.3 23 6.0 23 6.8 23 14.0 22.0 48.9* 35.6 0.51G 999.9 110000 724050 13743 19740102 35.8 23 20.3 23 1034.4 23 1031.9 23 11.0 23 8.1 23 14.0 999.9 50.0 30.0* 0.01G 999.9 000000 724050 13743 19740103 35.7 23 26.9 23 1029.9 23 1027.5 23 7.3 23 4.1 23 6.0 999.9 42.8 30.2 0.12G 999.9 010000 724050 13743 19740104 38.3 22 31.6 21 1022.4 22 1020.0 22 8.0 22 6.3 22 11.1 999.9 41.9* 33.8 0.35G 999.9 110000 724050 13743 19740105 35.0 24 23.6 24 1025.5 24 1023.1 24 10.7 24 6.1 24 9.9 999.9 42.8 32.0* 0.16G 999.9 000000 724050 13743 19740106 37.9 23 27.9 23 1017.7 23 1015.3 23 7.7 23 3.8 23 7.0 999.9 39.9* 33.8 0.00G 999.9 010000 724050 13743 19740107 40.6 23 31.8 23 1014.3 23 1011.9 23 6.1 23 3.8 23 8.9 999.9 48.9* 34.9* 0.00I 999.9 100000 724050 13743 19740108 35.8 24 17.0 24 1026.1 24 1023.7 24 11.8 24 8.2 24 9.9 999.9 48.2 30.0* 0.00I 999.9 000000 724050 13743 19740109 35.5 24 24.8 24 1023.1 24 1020.6 24 6.1 24 5.6 24 9.9 999.9 43.0* 30.2 0.35G 999.9 111000 724050 13743 19740110 38.6 24 33.5 24 1022.3 24 1019.9 24 4.0 24 4.4 24 8.9 999.9 42.8 36.0* 0.12G 999.9 110000 724050 13743 19740111 40.3 23 36.0 23 1013.1 23 1010.7 23 2.9 23 4.9 23 8.9 999.9 47.8* 35.6 0.39G 999.9 110000 724050 13743 19740112 38.5 24 23.5 24 1021.8 24 1019.4 24 13.0 24 12.0 24 19.8 28.9 48.2 31.1* 0.16G 999.9 000000 724050 13743 19740113 26.2 24 7.3 24 1036.9 24 1034.5 24 14.6 24 7.9 24 14.0 999.9 39.2 23.0 0.00G 999.9 000000 724050 13743 19740114 29.9 24 12.2 24 1033.4 24 1031.0 24 12.5 24 7.2 24 16.9 999.9 36.9* 23.0 0.00I 999.9 000000 724050 13743 19740115 37.3 24 24.3 24 1016.7 24 1014.3 24 10.9 24 5.7 24 9.9 999.9 50.9* 26.6 0.00I 999.9 000000 724050 13743 19740116 46.1 24 36.6 24 1011.2 24 1008.8 24 9.8 24 6.3 24 9.9 999.9 61.9* 28.4 0.00I 999.9 000000 724050 13743 19740117 52.3 23 36.6 23 1015.8 23 1013.4 23 9.9 23 8.4 22 11.8 999.9 64.4 35.6 0.00I 999.9 000000 724050 13743 19740118 35.8 23 22.7 23 1030.7 23 1028.3 23 13.0 23 7.9 23 10.9 999.9 41.0* 32.0* 0.00I 999.9 000000 724050 13743 19740119 45.8 24 37.1 24 1019.8 24 1017.4 24 8.9 24 7.9 24 9.9 999.9 52.0* 35.6 0.04G 999.9 010000 724050 13743 19740120 43.2 24 30.2 24 1024.3 24 1021.9 24 9.4 24 7.0 24 8.9 999.9 53.6 41.0 0.01G 999.9 000000 724050 13743 19740121 44.5 23 37.8 23 1017.1 23 1014.7 23 5.4 23 5.5 23 8.9 999.9 52.9* 39.2 0.55G 999.9 110000 724050 13743 19740122 48.1 23 40.8 23 1019.3 23 1016.9 23 9.5 23 4.9 23 8.0 999.9 61.9* 39.2 0.83G 999.9 100000 724050 13743 19740123 52.6 22 42.0 22 1016.5 22 1014.1 22 10.9 22 4.6 22 9.9 999.9 70.9* 39.2 0.00G 999.9 000000 724050 13743 19740124 48.1 24 35.2 24 1024.8 24 1022.4 24 9.5 24 8.8 24 14.0 999.9 71.6 39.2 0.12G 999.9 010000 724050 13743 19740125 42.3 24 36.2 24 1027.6 24 1025.0 24 6.5 24 2.8 24 5.8 999.9 53.6 39.2 0.35G 999.9 110000 724050 13743 19740126 42.5 24 37.6 24 1027.2 24 1024.7 24 6.2 24 4.3 24 7.0 999.9 48.2 35.6 0.04G 999.9 110000 724050 13743 19740127 57.9 24 47.3 24 1013.6 24 1011.2 24 8.7 24 9.9 24 16.9 24.9 73.9* 35.6 0.02G 999.9 110000 724050 13743 19740128 52.7 24 44.1 24 1014.1 24 1011.7 24 10.6 24 4.4 24 9.9 25.8 75.2 41.9* 0.01G 999.9 110000 724050 13743 19740129 54.6 24 40.3 24 1013.9 24 1011.5 24 14.9 24 7.8 24 11.8 17.9 62.6 42.8 0.12G 999.9 000000 724050 13743 19740130 50.7 24 36.0 24 1017.4 24 1014.9 24 12.1 24 3.3 24 8.9 999.9 62.6 39.2 0.00G 999.9 000000 724050 13743 19740131 50.7 23 38.2 23 1012.7 23 1010.3 23 9.9 23 7.4 23 15.9 999.9 68.0* 37.4 0.00I 999.9 100000 724050 13743 19740201 47.7 24 12.4 24 1017.8 24 1015.4 24 15.6 24 9.6 24 16.9 23.9 68.0 28.4 0.00I 999.9 000000 724050 13743 19740202 41.8 24 29.5 24 1011.1 24 1008.7 24 10.0 24 5.5 24 11.8 999.9 51.8 30.0* 0.01G 999.9 010000 724050 13743 19740203 34.8 23 30.0 23 1010.7 23 1008.3 23 3.5 23 9.0 23 11.8 999.9 48.2 32.0* 0.04G 999.9 111000 724050 13743 19740204 32.9 24 21.7 24 1013.9 24 1011.5 24 10.1 24 10.4 24 12.8 25.8 39.9* 27.1* 0.08G 999.9 000000 724050 13743 19740205 28.7 24 7.6 24 1022.8 24 1020.4 24 14.2 24 12.0 24 17.9 21.0 41.0 21.0* 0.00G 999.9 000000 724050 13743 19740206 32.7 22 12.6 22 1025.5 22 1023.1 22 11.7 22 5.3 22 9.9 999.9 37.9* 21.2 99.99 999.9 110000 724050 13743 19740207 39.0 23 32.2 22 1010.8 23 1008.4 23 3.9 22 5.3 23 15.9 999.9 48.9* 30.2 0.24G 999.9 110000 724050 13743 19740208 30.9 24 20.3 24 1012.0 24 1009.6 24 7.0 24 11.3 24 15.0 999.9 50.0 26.1* 0.16G 999.9 001000 724050 13743 19740209 27.0 24 14.7 24 1013.7 24 1011.3 24 11.8 24 8.6 24 15.0 999.9 35.6 21.0* 0.16G 3.9 001000 724050 13743 19740210 27.2 24 13.1 24 1019.7 24 1017.5 24 12.3 24 7.0 24 11.8 18.8 36.0* 19.4 0.00G 2.0 000000 724050 13743 19740211 33.8 24 16.9 24 1013.3 24 1010.9 24 14.6 24 11.1 24 18.8 28.0 37.4 19.4 99.99 999.9 011000 724050 13743 19740212 38.4 24 19.7 24 1017.3 24 1014.9 24 15.8 24 5.4 24 8.9 999.9 52.9* 29.1* 0.00I 999.9 000000 724050 13743 19740213 48.5 24 30.1 24 1013.1 24 1010.7 24 14.5 24 7.2 24 14.0 999.9 66.9* 30.2 0.00I 999.9 000000 724050 13743 19740214 50.5 24 41.1 24 1013.6 24 1011.2 24 9.8 24 6.3 24 11.8 999.9 66.2 37.4 0.01G 999.9 010000 724050 13743 19740215 36.5 24 18.6 24 1024.2 24 1021.8 24 14.5 24 9.8 24 12.8 999.9 55.4 31.1* 99.99 999.9 001000 724050 13743 19740216 33.0 24 20.1 24 1020.7 24 1018.3 24 10.7 24 6.3 24 9.9 999.9 41.0 30.0* 99.99 999.9 001000 724050 13743 19740217 38.9 24 25.7 24 1006.7 24 1004.3 24 9.4 24 12.2 24 16.9 22.9 50.0* 30.2 0.12G 999.9 110000 724050 13743 19740218 37.8 23 15.9 23 1014.1 23 1011.8 23 14.1 23 8.5 23 15.9 22.0 51.8 26.1* 0.08G 999.9 000000 724050 13743 19740219 43.5 24 31.6 24 1006.8 24 1004.4 24 11.3 24 5.0 24 10.9 999.9 54.0* 28.4 0.00G 999.9 010000 724050 13743 19740220 49.5 24 35.1 24 1003.2 24 1000.8 24 13.0 24 10.7 24 19.8 30.9 56.8* 35.6 0.28G 999.9 110000 724050 13743 19740221 44.6 24 25.4 24 1025.4 24 1023.0 24 13.0 24 4.4 24 8.9 999.9 57.2 30.0 0.01G 999.9 000000 724050 13743 19740222 58.4 24 44.1 24 1005.8 24 1003.1 23 13.0 24 12.2 24 24.9 35.9 73.9* 46.9* 0.01G 999.9 010000 724050 13743 19740223 49.0 24 21.3 24 1008.0 24 1005.6 24 15.6 24 14.9 24 19.8 31.9 63.0* 39.0* 0.00G 999.9 000000 724050 13743 19740224 39.9 24 19.8 24 1022.0 24 1019.6 24 15.6 24 7.9 24 10.9 999.9 55.0 32.0 0.00I 999.9 000000 724050 13743 19740225 38.4 24 25.8 24 1014.6 24 1012.2 24 9.3 24 11.2 24 18.8 28.0 48.9 32.0 0.08G 999.9 111000 724050 13743 19740226 30.7 23 8.6 23 1025.2 23 1022.8 23 15.1 23 13.5 23 17.9 28.9 42.1 21.0 0.00I 999.9 000000 724050 13743 19740227 35.9 21 14.6 21 1030.1 21 1027.7 21 12.9 21 6.5 21 11.8 999.9 51.1* 21.0 0.00I 999.9 000000 724050 13743 19740228 46.7 24 22.7 24 1023.0 24 1020.6 24 13.6 24 8.5 24 15.9 25.8 66.0* 23.0 0.00I 999.9 000000 724050 13743 19740301 55.2 24 29.7 24 1016.4 24 1014.0 24 14.9 24 12.2 24 19.8 29.9 66.9 48.0* 99.99 999.9 010000 724050 13743 19740302 48.5 24 33.7 24 1018.7 24 1016.2 24 9.5 24 4.6 24 8.0 999.9 61.0 41.0 0.16G 999.9 010000 724050 13743 19740303 53.8 24 43.1 24 1017.2 24 1014.8 24 6.1 24 5.2 24 8.9 999.9 71.1* 41.0 0.00I 999.9 000000 724050 13743 19740304 66.9 21 47.9 21 1012.8 21 1010.4 21 13.7 21 9.2 21 17.9 26.8 79.0* 44.1 0.00I 999.9 000000 724050 13743 19740305 69.4 23 45.6 22 1008.6 23 1006.2 23 14.4 23 13.2 22 17.9 25.8 80.1 57.9 0.00I 999.9 000000 724050 13743 19740306 55.5 24 39.0 24 1018.6 24 1016.2 24 11.2 24 4.3 24 8.9 999.9 72.0 44.1 99.99 999.9 010000 724050 13743 19740307 54.5 23 48.9 23 1016.7 23 1014.1 23 5.5 23 3.3 23 5.8 999.9 71.1* 37.0 0.24G 999.9 110000 724050 13743 19740308 60.6 23 48.5 23 1020.2 23 1017.8 23 11.0 23 6.6 23 14.0 999.9 72.0 46.0 0.12G 999.9 000000 724050 13743 19740309 46.7 22 36.0 22 1022.5 22 1020.1 22 7.4 22 7.8 22 11.8 999.9 70.0 42.1 0.20G 999.9 110000 724050 13743 19740310 53.3 24 37.1 24 1017.6 24 1015.2 24 10.4 24 10.9 24 44.9 999.9 62.1 42.1 0.01G 999.9 110000 724050 13743 19740311 45.7 23 15.3 23 1027.0 23 1024.5 23 16.1 23 7.7 23 12.8 999.9 62.1 37.0 0.00I 999.9 000000 724050 13743 19740312 41.7 23 30.8 23 1016.9 23 1014.5 23 9.6 23 6.1 23 10.9 999.9 52.0 35.1 0.16G 999.9 111000 724050 13743 19740313 37.0 23 11.8 23 1016.6 23 1014.2 23 15.8 23 13.1 23 19.8 25.8 50.0 25.0 0.00I 999.9 000000 724050 13743 19740314 40.1 23 13.4 23 1020.5 23 1018.1 23 16.1 23 11.5 23 15.0 999.9 55.0* 25.0 0.00I 999.9 000000 724050 13743 19740315 45.5 24 18.6 24 1022.5 24 1020.1 24 14.0 24 5.2 24 9.9 999.9 62.1* 28.9 0.00I 999.9 000000 724050 13743 19740316 54.1 24 40.1 24 1011.5 24 1009.1 24 11.0 24 10.0 24 15.0 22.0 63.0 48.0* 0.01G 999.9 110000 724050 13743 19740317 44.8 24 22.5 24 1005.6 24 1003.2 24 14.9 24 15.3 24 22.9 34.0 59.0 37.9 0.28G 999.9 000000 724050 13743 19740318 47.5 24 18.7 24 1009.3 24 1007.0 24 16.2 24 12.6 24 16.9 28.0 57.9* 37.9 0.00G 999.9 000000 724050 13743 19740319 51.5 23 34.3 23 1006.2 23 1003.8 23 10.6 23 4.1 23 11.8 999.9 61.0* 39.0 0.01G 999.9 000000 724050 13743 19740320 51.2 21 30.9 21 1012.7 21 1010.3 21 10.9 21 8.2 21 999.9 999.9 62.1 39.9 99.99 999.9 010000 724050 13743 19740321 46.2 24 36.1 24 1006.7 24 1004.3 24 10.0 24 7.9 24 18.8 34.0 59.0* 39.0 0.94G 999.9 110010 724050 13743 19740322 42.6 23 19.8 23 1017.0 23 1014.6 23 14.8 23 9.2 23 14.0 999.9 61.0 33.1 0.00I 999.9 000000 724050 13743 19740323 47.1 23 29.7 23 1020.6 23 1018.1 23 14.6 23 6.5 23 8.9 999.9 63.0* 33.1 0.00I 999.9 000000 724050 13743 19740324 51.3 23 37.5 23 1013.0 23 1010.6 23 10.7 23 10.6 23 17.9 31.9 63.0 35.1 99.99 999.9 010000 724050 13743 19740325 34.3 22 6.6 22 1030.2 22 1027.8 22 12.9 22 9.6 22 14.0 999.9 55.9 27.1* 0.00I 999.9 000000 724050 13743 19740326 41.6 23 19.9 23 1025.5 23 1023.1 23 13.8 23 9.2 23 19.8 22.0 64.0* 26.1 0.00I 999.9 000000 724050 13743 19740327 51.8 24 29.5 24 1023.2 24 1020.8 24 13.0 24 9.1 24 15.0 999.9 64.9 42.1* 0.00I 999.9 000000 724050 13743 19740328 50.5 23 36.0 23 1018.9 23 1016.5 23 9.3 23 6.6 23 12.8 999.9 63.0* 41.0 0.00I 999.9 000000 724050 13743 19740329 43.3 24 32.2 24 1016.4 24 1014.0 24 9.3 24 10.7 24 15.0 999.9 64.9 39.9* 99.99 999.9 110000 724050 13743 19740330 42.7 23 38.8 22 1000.6 23 998.2 23 4.0 23 10.3 23 17.9 25.8 46.9 39.0 1.22G 999.9 110010 724050 13743 19740331 45.8 24 35.1 24 997.8 24 995.4 24 15.5 24 11.0 24 22.0 34.0 52.0 39.9 0.94G 999.9 010000 724050 13743 19740401 47.8 24 34.0 24 1012.0 24 1009.6 24 11.5 24 6.4 24 16.9 22.9 60.1* 39.0 0.01G 999.9 010000 724050 13743 19740402 54.6 24 42.2 24 1007.3 24 1004.9 24 10.5 24 5.5 24 15.0 999.9 75.0* 39.0 0.02G 999.9 010000 724050 13743 19740403 60.1 22 44.6 22 1014.1 22 1011.7 22 12.6 22 5.0 22 9.9 999.9 77.0* 45.0 0.00I 999.9 000000 724050 13743 19740404 67.2 23 58.1 23 1009.0 23 1006.6 23 13.6 23 11.3 23 19.8 28.9 77.0 63.0* 0.04G 999.9 010000 724050 13743 19740405 62.5 24 53.3 24 1006.9 24 1004.5 24 12.1 24 11.9 24 15.9 22.9 71.1 53.1 0.24G 999.9 010000 724050 13743 19740406 47.5 23 28.6 23 1010.7 23 1008.3 23 15.4 23 12.4 23 19.8 25.8 66.9 44.1 99.99 999.9 011000 724050 13743 19740407 48.7 23 26.6 23 1019.6 23 1017.2 23 15.4 23 10.1 23 16.9 25.8 64.9* 33.1 0.00I 999.9 000000 724050 13743 19740408 54.8 23 37.9 23 1015.5 23 1013.0 23 11.8 23 8.2 23 12.8 999.9 66.0 52.0* 99.99 999.9 110000 724050 13743 19740409 47.7 23 41.9 23 1006.7 23 1004.2 23 9.0 23 11.2 23 19.8 28.0 57.0 39.9* 1.22G 999.9 110010 724050 13743 19740410 43.6 23 23.0 23 1018.2 23 1015.8 23 14.8 23 14.3 23 17.9 25.8 57.0* 34.0 0.08G 999.9 000000 724050 13743 19740411 50.2 24 30.7 24 1029.1 24 1026.7 24 13.0 24 5.1 24 9.9 999.9 63.0* 34.0 0.00G 999.9 000000 724050 13743 19740412 56.2 18 41.7 18 1025.3 18 1022.9 18 12.5 18 8.2 18 14.0 19.8 73.9* 34.0 0.00I 999.9 000000 724050 13743 19740413 65.7 17 54.4 17 1017.0 17 1014.6 17 13.5 17 8.4 17 14.0 999.9 75.0 46.0 0.04G 999.9 010000 724050 13743 19740414 64.6 22 57.4 22 1012.1 22 1009.7 22 11.0 22 6.5 22 15.9 22.0 78.1* 52.0 0.20G 999.9 110000 724050 13743 19740415 66.3 24 46.4 24 1005.0 24 1002.6 24 14.1 24 12.2 23 15.0 22.9 80.1 52.0 0.00G 999.9 000000 724050 13743 19740416 55.0 22 32.9 22 1015.1 22 1012.7 22 13.4 22 10.9 22 15.0 23.9 71.1 46.0 0.00I 999.9 000000 724050 13743 19740417 55.6 24 32.0 24 1020.2 24 1017.8 24 14.8 24 4.0 24 5.8 999.9 69.1* 41.0 0.00I 999.9 000000 724050 13743 19740418 60.0 24 34.9 24 1017.7 24 1015.3 24 13.4 24 6.9 24 12.8 18.8 73.9* 41.0 0.00I 999.9 000000 724050 13743 19740419 58.5 23 41.4 23 1017.7 23 1015.2 23 12.3 23 7.7 23 16.9 999.9 75.0 44.1 99.99 999.9 010000 724050 13743 19740420 52.3 23 32.1 23 1028.5 23 1026.0 23 13.6 23 4.2 23 5.8 999.9 66.9* 37.0 0.00I 999.9 000000 724050 13743 19740421 60.7 23 40.0 23 1026.9 23 1024.5 23 13.8 23 9.7 23 12.8 17.9 78.1* 37.0 0.00I 999.9 000000 724050 13743 19740422 69.4 24 50.9 24 1016.4 24 1014.0 24 13.0 24 11.6 24 15.9 26.8 80.1* 46.9 99.99 999.9 010000 724050 13743 19740423 66.4 24 47.6 24 1006.2 24 1003.8 24 13.6 24 11.1 24 19.8 25.8 80.1 60.1 0.35G 999.9 110000 724050 13743 19740424 50.6 24 31.8 24 1013.2 24 1010.8 24 15.9 24 11.8 24 16.9 28.0 55.9* 46.0 0.28G 999.9 010000 724050 13743 19740425 52.5 24 30.3 24 1021.8 24 1019.4 24 16.4 24 11.7 24 16.9 19.8 63.0* 44.1 0.00G 999.9 010000 724050 13743 19740426 59.8 24 33.3 24 1021.2 24 1018.7 24 16.1 24 6.7 24 11.8 999.9 75.0* 44.1 0.00I 999.9 000000 724050 13743 19740427 62.8 23 37.3 23 1024.3 23 1021.9 23 16.3 23 4.8 23 8.9 999.9 75.0 46.0 0.00I 999.9 000000 724050 13743 19740428 65.0 23 44.5 23 1024.0 23 1021.6 23 16.8 23 7.1 23 10.9 999.9 84.9* 48.0 0.00I 999.9 000000 724050 13743 19740429 76.1 24 54.0 24 1018.2 24 1015.8 24 13.4 24 7.5 24 11.8 999.9 90.0 50.0 0.00I 999.9 000000 724050 13743 19740430 75.6 23 56.5 23 1014.0 23 1011.6 23 11.3 22 5.9 23 9.9 999.9 91.0 60.1 0.00I 999.9 000000 724050 13743 19740501 72.5 23 47.7 23 1013.3 23 1010.7 23 15.5 22 12.2 22 15.9 22.9 88.0 60.1 0.00I 999.9 000000 724050 13743 19740502 57.0 23 32.6 23 1022.1 23 1019.7 23 16.7 23 8.2 23 15.0 999.9 77.0 50.0 99.99 999.9 010000 724050 13743 19740503 55.1 22 48.8 22 1011.7 22 1009.3 22 7.4 22 6.4 22 14.0 999.9 72.0* 46.9 0.51G 999.9 110000 724050 13743 19740504 62.2 23 38.7 23 1014.9 23 1012.5 23 16.2 23 11.5 23 15.0 999.9 73.0 46.9 0.00I 999.9 000000 724050 13743 19740505 54.3 24 30.8 24 1018.6 24 1016.3 24 13.2 24 8.1 24 11.8 999.9 68.0 46.9 99.99 999.9 010000 724050 13743 19740506 53.3 23 45.1 23 1009.8 23 1007.4 23 8.0 23 5.9 23 14.0 999.9 69.1* 43.0 0.12G 999.9 110000 724050 13743 19740507 52.8 24 30.7 24 1013.9 24 1011.5 24 13.3 24 9.1 24 15.0 999.9 69.1 41.0 0.00I 999.9 000000 724050 13743 19740508 54.6 23 37.3 23 1019.1 23 1016.7 23 10.3 23 6.4 23 11.8 17.9 68.0* 39.0 0.00I 999.9 000000 724050 13743 19740509 59.5 24 50.4 24 1015.0 24 1012.6 24 10.3 24 5.8 24 9.9 999.9 70.0 55.0* 0.43G 999.9 110010 724050 13743 19740510 66.5 24 55.8 24 1011.8 24 1009.4 24 7.4 24 5.3 24 8.9 999.9 75.9* 54.0 0.00I 999.9 100000 724050 13743 19740511 63.0 23 49.6 23 1016.2 23 1013.8 23 6.2 23 7.0 23 11.8 999.9 75.9 53.1 0.00I 999.9 000000 724050 13743 19740512 64.8 24 59.5 24 1006.2 24 1003.8 24 4.6 24 8.6 24 23.9 32.8 75.0 53.1 0.12G 999.9 110010 724050 13743 19740513 60.1 24 44.3 24 1008.8 24 1006.4 24 14.4 24 8.6 24 14.0 21.0 72.0 52.0 1.30G 999.9 010000 724050 13743 19740514 65.0 23 51.3 23 1016.7 23 1014.3 23 12.1 23 6.3 23 12.8 999.9 80.1* 52.0* 0.00G 999.9 000000 724050 13743 19740515 73.4 23 59.0 23 1013.2 23 1010.8 23 13.1 23 12.0 22 15.9 22.0 84.9* 51.1 0.00I 999.9 000000 724050 13743 19740516 76.5 24 63.0 24 1016.6 24 1014.2 24 9.7 24 4.9 22 9.9 19.8 86.0* 68.0* 99.99 999.9 010010 724050 13743 19740517 79.2 24 66.8 24 1015.3 24 1012.9 24 7.3 24 7.1 24 9.9 999.9 91.0* 64.9 0.00I 999.9 000000 724050 13743 19740518 75.2 24 62.7 24 1016.3 24 1013.9 24 10.2 24 7.1 23 14.0 999.9 91.9 64.0 99.99 999.9 010000 724050 13743 19740519 66.4 24 57.0 24 1020.3 24 1017.9 24 7.6 24 6.4 24 10.9 999.9 78.1 62.1 0.02G 999.9 010000 724050 13743 19740520 64.5 23 49.3 23 1024.1 23 1021.7 23 12.5 23 5.8 23 9.9 999.9 75.9* 53.1 99.99 999.9 010100 724050 13743 19740521 66.8 23 53.6 23 1023.9 23 1021.5 23 13.9 23 7.3 23 10.9 999.9 78.1* 53.1 0.00I 999.9 000000 724050 13743 19740522 72.3 22 59.8 22 1015.8 22 1013.5 22 8.0 22 8.1 22 14.0 999.9 86.0* 55.0 0.00I 999.9 000000 724050 13743 19740523 73.7 23 65.0 23 1009.4 23 1007.1 23 7.4 23 7.4 23 12.8 18.8 87.1 61.0 0.75G 999.9 110010 724050 13743 19740524 70.5 23 60.2 23 1012.6 23 1010.2 23 11.8 23 6.7 23 15.0 22.0 82.0* 61.0 0.12G 999.9 010000 724050 13743 19740525 69.5 24 49.9 24 1013.1 24 1010.7 24 15.7 24 8.3 24 15.9 21.0 82.9 57.9 0.00I 999.9 000000 724050 13743 19740526 64.4 24 43.2 24 1015.3 24 1012.8 24 16.4 24 6.8 24 11.8 999.9 75.9 55.9 0.00I 999.9 000000 724050 13743 19740527 62.5 24 50.0 24 1013.3 24 1010.9 24 10.8 24 4.5 24 9.9 999.9 73.0 55.9 0.01G 999.9 010000 724050 13743 19740528 63.5 24 42.5 24 1017.6 24 1015.2 24 15.9 24 8.1 24 12.8 19.8 75.0* 50.0 0.00I 999.9 000000 724050 13743 19740529 68.7 24 55.2 24 1012.0 24 1009.6 24 8.9 24 9.0 24 12.8 18.8 80.1* 50.0 0.08G 999.9 010000 724050 13743 19740530 72.0 24 65.2 24 1007.4 24 1005.0 24 6.3 24 5.0 24 14.0 999.9 81.0 61.0 0.28G 999.9 010010 724050 13743 19740531 69.2 23 63.4 23 1014.2 23 1011.8 23 2.8 23 6.7 23 9.9 999.9 79.0 64.0 0.51G 999.9 100000 724050 13743 19740601 71.4 23 65.9 23 1012.8 23 1010.4 23 6.9 23 7.0 23 14.0 999.9 75.9 64.0 0.08G 999.9 110000 724050 13743 19740602 63.2 24 59.2 24 1016.3 24 1013.9 24 4.9 24 8.4 24 15.0 999.9 77.0 59.0 1.46G 999.9 110000 724050 13743 19740603 66.4 22 56.5 22 1020.1 22 1017.7 22 9.0 22 7.0 22 9.9 999.9 77.0* 59.0 1.14G 999.9 110000 724050 13743 19740604 69.1 23 57.7 23 1023.3 23 1020.9 23 9.9 23 5.8 23 10.9 999.9 81.0* 55.9 0.00G 999.9 100000 724050 13743 19740605 70.2 23 57.3 23 1024.0 23 1021.6 23 11.9 23 6.0 23 11.8 999.9 81.0 57.0 0.00I 999.9 000000 724050 13743 19740606 70.7 23 56.2 21 1021.3 23 1018.9 23 14.4 23 4.8 23 8.9 999.9 81.0 59.0 0.00I 999.9 000000 724050 13743 19740607 66.2 22 55.9 21 1020.7 22 1018.3 22 8.2 22 9.9 22 15.0 999.9 81.0 60.1 0.00I 999.9 000000 724050 13743 19740608 70.2 24 63.9 24 1019.1 24 1016.7 24 4.6 24 9.0 24 12.8 999.9 81.0* 60.1 0.04G 999.9 110000 724050 13743 19740609 75.2 24 66.6 24 1016.3 24 1013.8 24 5.4 24 4.8 23 8.9 999.9 87.1* 64.0 0.00I 999.9 000000 724050 13743 19740610 80.3 23 70.4 23 1010.0 23 1007.6 23 6.8 23 6.6 23 11.8 19.8 91.9* 64.0 0.00I 999.9 000000 724050 13743 19740611 77.8 23 57.5 23 1009.8 23 1007.4 23 15.0 23 10.5 22 15.9 17.9 93.0 69.1 0.00I 999.9 000010 724050 13743 19740612 72.7 22 55.9 22 1012.2 22 1009.8 22 13.0 22 6.7 22 9.9 999.9 84.9 64.0 0.00I 999.9 000000 724050 13743 19740613 69.8 24 48.3 24 1017.2 24 1014.8 24 15.9 24 5.6 24 12.8 999.9 81.0 55.9 0.00I 999.9 000000 724050 13743 19740614 73.2 24 56.4 24 1019.0 24 1016.6 24 10.6 24 6.0 24 9.9 999.9 82.0 55.9 99.99 999.9 010000 724050 13743 19740615 73.8 24 59.6 24 1016.0 24 1013.7 24 7.6 24 7.7 24 15.0 999.9 84.9 60.1* 0.00I 999.9 000000 724050 13743 19740616 72.3 24 63.5 24 1009.2 24 1006.8 24 7.5 24 6.7 24 10.9 999.9 84.9 66.0* 0.47G 999.9 010010 724050 13743 19740617 70.5 24 55.7 24 1008.5 24 1006.1 24 16.4 24 7.0 24 15.9 999.9 79.0* 59.0 0.12G 999.9 010000 724050 13743 19740618 70.7 24 52.6 24 1014.5 24 1012.1 24 14.9 24 6.2 24 11.8 999.9 81.0* 59.0 0.00G 999.9 000000 724050 13743 19740619 74.2 24 57.8 24 1019.0 24 1016.6 24 9.0 24 7.9 23 15.0 21.0 87.1* 60.1 0.00I 999.9 000000 724050 13743 19740620 79.4 24 66.6 24 1015.0 24 1012.5 24 8.3 24 7.4 24 12.8 999.9 88.0* 61.0 99.99 999.9 010010 724050 13743 19740621 79.0 24 68.3 24 1007.8 24 1005.4 24 9.0 24 9.4 24 15.0 23.9 89.1* 70.0 99.99 999.9 010010 724050 13743 19740622 78.6 24 65.6 24 1003.0 24 1000.7 24 10.4 24 7.3 24 17.9 999.9 90.0 69.1 0.04G 999.9 010000 724050 13743 19740623 69.4 23 64.5 23 1003.9 23 1001.5 23 5.8 23 8.3 23 15.0 24.9 90.0 64.0* 0.75G 999.9 110010 724050 13743 19740624 67.7 24 57.0 24 1009.0 24 1006.6 24 14.9 24 9.8 24 15.0 999.9 75.9 61.0 0.01G 999.9 010000 724050 13743 19740625 69.0 24 57.6 24 1010.5 24 1008.2 24 12.3 24 8.5 23 11.8 999.9 75.9 61.0 0.00G 999.9 010000 724050 13743 19740626 67.9 23 59.3 23 1014.9 23 1012.5 23 11.0 23 6.3 23 11.8 17.9 77.0 62.1 0.04G 999.9 010000 724050 13743 19740627 68.2 23 61.1 23 1019.0 23 1016.6 23 5.4 23 5.9 23 11.8 19.8 79.0* 62.1 0.39G 999.9 110000 724050 13743 19740628 64.4 22 57.1 22 1019.0 22 1016.5 22 9.4 21 11.2 22 15.9 17.9 75.9 61.0 0.08G 999.9 110000 724050 13743 19740629 64.4 23 57.9 23 1018.6 23 1016.2 23 11.4 23 5.7 23 9.9 999.9 77.0* 55.0 0.12G 999.9 100000 724050 13743 19740630 72.4 24 60.9 24 1016.2 24 1013.8 24 8.3 24 7.2 23 12.8 999.9 84.9* 55.0 0.00G 999.9 000000 724050 13743 19740701 78.5 23 64.3 23 1011.7 23 1009.3 23 6.8 23 7.3 23 10.9 999.9 88.0 60.1 0.20A 999.9 010010 724050 13743 19740702 76.7 24 65.3 24 1017.8 24 1015.4 24 6.5 24 5.3 24 8.9 999.9 90.0 64.0 0.12G 999.9 000000 724050 13743 19740703 82.4 24 69.4 24 1019.1 24 1016.7 24 4.7 24 6.2 24 9.9 15.0 93.9* 64.0 0.00G 999.9 000000 724050 13743 19740704 83.8 24 71.7 24 1017.9 24 1015.5 24 5.6 24 5.8 24 12.8 999.9 93.9 72.0 0.00I 999.9 000000 724050 13743 19740705 81.5 24 67.9 24 1016.0 24 1013.5 24 15.0 24 9.2 24 11.8 999.9 93.9 73.0 13.11G 999.9 010000 724050 13743 19740706 78.5 24 68.8 24 1018.0 24 1015.5 24 11.3 24 5.9 24 10.9 999.9 87.1 72.0 0.00G 999.9 000000 724050 13743 19740707 80.6 24 68.0 24 1020.5 24 1018.1 24 5.0 24 4.1 24 8.0 999.9 91.0* 72.0 0.00I 999.9 100000 724050 13743 19740708 82.9 24 67.1 24 1018.5 24 1016.1 24 4.7 24 5.0 24 10.9 999.9 98.1 70.0 0.00I 999.9 000000 724050 13743 19740709 85.0 24 66.7 24 1015.3 24 1012.9 24 4.1 24 4.9 24 8.9 999.9 96.1* 70.0 0.00I 999.9 000000 724050 13743 19740710 85.5 24 68.6 24 1011.2 24 1008.8 24 2.7 24 7.6 24 17.9 28.0 96.1 72.0 99.99 999.9 010010 724050 13743 19740711 78.2 23 61.1 23 1012.1 23 1009.7 23 13.1 23 9.2 23 14.0 17.9 93.9 73.0 0.04G 999.9 000000 724050 13743 19740712 75.2 23 50.1 23 1019.0 23 1016.4 23 16.8 23 9.1 23 11.8 19.8 84.0 63.0 0.00G 999.9 000000 724050 13743 19740713 75.6 24 53.3 24 1020.9 24 1018.4 24 17.0 24 4.9 24 8.9 999.9 88.0* 62.1 0.00I 999.9 000000 724050 13743 19740714 80.8 24 58.4 24 1016.0 24 1013.6 24 10.9 24 6.3 22 10.9 15.9 93.9* 62.1 0.00I 999.9 000000 724050 13743 19740715 84.2 24 65.7 24 1009.9 24 1007.6 24 7.4 24 5.9 24 10.9 999.9 93.9 66.0 0.00I 999.9 000000 724050 13743 19740716 81.1 23 60.7 23 1013.2 23 1010.9 23 4.5 23 7.9 23 10.9 999.9 91.9 71.1 0.00I 999.9 000000 724050 13743 19740717 77.7 24 56.3 24 1021.8 24 1019.4 24 13.4 24 5.7 24 8.9 999.9 88.0* 64.9 0.00I 999.9 000000 724050 13743 19740718 80.5 24 64.9 24 1022.4 24 1019.9 24 8.8 24 7.6 24 14.0 19.8 91.0* 61.0 0.39A 999.9 000000 724050 13743 19740719 83.0 24 70.2 24 1014.7 24 1012.3 24 3.7 24 6.9 24 14.0 22.9 91.9 73.0 0.02G 999.9 010000 724050 13743 19740720 78.8 24 57.5 24 1014.9 24 1012.5 24 13.9 24 8.2 24 12.8 19.8 93.0 70.0 0.00I 999.9 000000 724050 13743 19740721 75.1 24 50.8 24 1017.8 24 1015.4 24 16.9 24 6.1 24 9.9 999.9 86.0* 63.0 0.00I 999.9 000000 724050 13743 19740722 75.5 24 56.1 24 1017.9 24 1015.5 24 13.8 24 4.1 24 7.0 999.9 86.0 61.0 0.00I 999.9 000000 724050 13743 19740723 73.6 24 58.1 24 1018.9 24 1016.5 24 14.7 24 5.8 24 8.9 999.9 87.1 61.0 99.99 999.9 010000 724050 13743 19740724 73.0 24 64.5 24 1017.1 24 1014.7 24 8.2 24 5.3 24 9.9 999.9 87.1 68.0 0.08G 999.9 010000 724050 13743 19740725 73.6 21 65.6 21 1018.8 21 1016.4 21 2.9 21 5.3 21 8.0 999.9 79.0* 68.0 0.00G 999.9 100000 724050 13743 19740726 75.5 24 66.6 24 1018.7 24 1016.3 24 3.9 24 6.0 24 10.9 999.9 82.0 68.0 0.00I 999.9 000000 724050 13743 19740727 78.2 23 67.5 23 1016.9 23 1014.5 23 7.6 23 4.3 23 8.0 999.9 89.1* 68.0 99.99 999.9 010010 724050 13743 19740728 80.8 23 68.8 23 1014.8 23 1012.4 23 5.5 23 3.6 23 8.9 999.9 91.0* 68.0 0.01G 999.9 000000 724050 13743 19740729 81.7 23 69.5 23 1011.7 23 1009.3 23 5.1 22 6.4 23 11.8 999.9 91.0 70.0 0.00G 999.9 000000 724050 13743 19740730 76.2 24 64.8 24 1011.5 24 1009.1 24 8.7 24 5.4 23 22.0 28.9 91.0 64.9 0.91G 999.9 110010 724050 13743 19740731 80.3 24 61.0 24 1016.4 24 1014.0 24 13.3 24 5.2 24 8.9 999.9 89.1* 64.9 0.00I 999.9 000000 724050 13743 19740801 79.5 24 60.0 24 1018.3 24 1015.9 24 10.4 24 5.3 24 11.8 999.9 91.0* 66.0 0.00I 999.9 000000 724050 13743 19740802 79.0 24 70.2 24 1018.3 24 1015.9 24 7.6 24 5.8 24 15.0 26.8 91.0 66.0 99.99 999.9 110010 724050 13743 19740803 79.1 24 69.9 24 1018.8 24 1016.4 24 14.1 24 12.9 24 15.9 38.9 91.0 72.0 0.08G 999.9 010010 724050 13743 19740804 77.3 24 69.9 24 1018.0 24 1015.6 24 13.8 24 11.5 24 16.9 999.9 91.0 72.0 0.28G 999.9 010010 724050 13743 19740805 76.1 24 64.8 24 1016.5 24 1014.1 24 14.7 24 6.6 24 9.9 999.9 90.0 69.1 1.34G 999.9 010000 724050 13743 19740806 75.9 23 58.4 23 1020.5 23 1018.1 23 11.7 23 4.8 23 8.9 999.9 86.0 69.1 0.04G 999.9 000000 724050 13743 19740807 73.0 23 63.2 23 1022.6 23 1020.2 23 8.0 23 7.0 23 11.8 999.9 82.9 66.0 0.28G 999.9 110000 724050 13743 19740808 72.5 24 66.2 24 1023.1 24 1020.6 24 5.6 24 5.4 24 10.9 999.9 81.0 66.0 99.99 999.9 110000 724050 13743 19740809 74.7 24 68.8 24 1019.3 24 1016.9 24 5.0 24 4.9 24 9.9 999.9 82.9 66.9 0.08G 999.9 110010 724050 13743 19740810 72.7 24 65.1 24 1019.6 24 1017.2 24 7.7 24 8.8 24 12.8 999.9 82.9 69.1* 0.31G 999.9 110000 724050 13743 19740811 71.6 24 56.0 24 1024.2 24 1021.7 24 15.7 24 5.8 24 14.0 999.9 82.0* 60.1 0.00G 999.9 000000 724050 13743 19740812 70.9 24 58.8 24 1021.9 24 1019.5 24 13.8 24 5.3 24 9.9 999.9 82.9 60.1 0.39A 999.9 010000 724050 13743 19740813 77.8 24 65.1 24 1017.4 24 1014.9 24 8.8 24 4.9 24 8.9 999.9 89.1* 60.1 99.99 999.9 010000 724050 13743 19740814 80.6 24 68.7 24 1016.6 24 1014.2 24 5.6 24 5.9 24 9.9 999.9 91.9* 70.0 0.00I 999.9 000000 724050 13743 19740815 78.5 24 65.1 24 1020.9 24 1018.5 24 9.7 24 6.2 24 15.0 22.9 91.9 70.0 0.12G 999.9 010010 724050 13743 19740816 79.2 23 69.2 23 1021.6 23 1019.1 23 5.3 23 5.2 23 11.8 999.9 89.1* 70.0 0.00I 999.9 100000 724050 13743 19740817 78.5 24 71.1 24 1014.6 24 1012.2 24 4.6 24 7.2 24 22.0 34.0 89.1 70.0 99.99 999.9 010010 724050 13743 19740818 77.2 24 65.1 24 1012.9 24 1010.6 24 8.6 24 4.6 24 7.0 999.9 88.0 64.9 0.08G 999.9 000000 724050 13743 19740819 76.4 24 66.0 24 1016.3 24 1013.9 24 7.2 24 5.6 24 15.0 22.0 87.1 64.9 0.00G 999.9 010010 724050 13743 19740820 76.5 22 64.2 22 1020.8 22 1018.4 22 6.8 22 5.1 22 8.9 999.9 88.0* 66.9 1.34G 999.9 010000 724050 13743 19740821 78.2 23 63.5 23 1024.4 23 1022.0 23 9.5 23 8.8 23 12.8 17.9 88.0 66.9 0.01G 999.9 000000 724050 13743 19740822 78.4 24 68.8 24 1023.2 24 1020.7 24 7.7 24 7.1 24 11.8 999.9 88.0 71.1 0.00G 999.9 110000 724050 13743 19740823 79.0 22 71.3 22 1020.4 22 1018.0 22 7.3 22 4.4 22 8.0 999.9 88.0 72.0 0.28G 999.9 010010 724050 13743 19740824 79.5 24 69.1 24 1019.0 24 1016.6 24 7.1 24 6.3 24 9.9 999.9 90.0* 71.1 0.00G 999.9 000000 724050 13743 19740825 79.4 24 67.7 24 1020.0 24 1017.6 24 5.3 24 5.8 24 9.9 999.9 91.0 71.1 0.00I 999.9 000000 724050 13743 19740826 78.7 24 70.9 24 1019.6 24 1017.2 24 5.9 24 5.9 24 14.0 999.9 87.1 73.0 99.99 999.9 110010 724050 13743 19740827 79.3 24 70.9 24 1017.9 24 1015.5 24 6.1 24 6.0 24 29.9 999.9 88.0* 73.0 0.16G 999.9 110000 724050 13743 19740828 81.9 24 72.1 24 1014.4 24 1011.8 24 4.8 24 6.2 24 8.9 999.9 91.9* 73.9 0.00G 999.9 100000 724050 13743 19740829 80.9 24 71.2 24 1013.8 24 1011.4 24 10.6 24 6.9 24 17.9 25.8 91.9 72.0 0.04G 999.9 010010 724050 13743 19740830 81.9 24 71.0 24 1013.0 24 1010.6 24 12.9 24 8.9 24 14.0 25.8 93.0 72.0 99.99 999.9 010010 724050 13743 19740831 79.2 23 71.0 23 1014.6 23 1012.2 23 9.6 23 4.9 23 12.8 999.9 91.9 73.0 1.38G 999.9 010000 724050 13743 19740901 80.3 24 68.4 24 1014.2 24 1011.7 24 10.6 24 4.8 24 11.8 999.9 89.1* 71.1 0.00G 999.9 000000 724050 13743 19740902 77.5 22 65.4 22 1013.8 22 1011.4 22 12.3 22 6.5 22 12.8 999.9 90.0 69.1 0.00I 999.9 000000 724050 13743 19740903 77.4 24 69.9 24 1009.5 24 1007.1 24 8.4 24 11.7 24 19.8 29.9 88.0 64.9* 0.31G 999.9 010010 724050 13743 19740904 66.4 23 56.2 23 1014.5 23 1012.1 23 15.0 23 11.6 23 14.0 999.9 90.0 60.1 1.65G 999.9 010010 724050 13743 19740905 65.5 24 50.5 24 1024.3 24 1021.8 24 15.2 24 8.3 24 12.8 999.9 75.9 55.0 0.02G 999.9 000000 724050 13743 19740906 67.1 24 61.0 24 1024.6 24 1022.1 24 8.3 24 9.1 24 14.0 999.9 73.9 55.0 0.16G 999.9 110000 724050 13743 19740907 64.9 24 59.5 24 1021.0 24 1018.5 24 8.2 24 9.5 24 12.8 999.9 70.0* 60.1 1.18G 999.9 110000 724050 13743 19740908 70.4 24 61.6 24 1021.6 24 1019.3 24 9.2 24 4.0 24 7.0 999.9 77.0 60.1 0.24G 999.9 000000 724050 13743 19740909 71.3 24 63.3 24 1022.6 24 1020.1 24 8.0 24 3.1 24 5.8 999.9 81.0 63.0 0.00G 999.9 000000 724050 13743 19740910 74.2 24 65.6 24 1020.4 24 1018.0 24 10.4 24 3.9 24 7.0 999.9 82.0 63.0 0.00I 999.9 000000 724050 13743 19740911 75.7 24 68.7 24 1019.7 24 1017.3 24 7.4 24 4.5 24 8.9 999.9 82.9 68.0 0.28G 999.9 110000 724050 13743 19740912 78.8 24 71.1 24 1017.5 24 1015.0 24 5.7 24 5.4 24 12.8 999.9 90.0* 69.1 0.00I 999.9 100000 724050 13743 19740913 80.5 24 70.8 24 1015.5 24 1013.1 24 10.1 24 6.1 24 9.9 999.9 91.0 71.1 0.00I 999.9 000000 724050 13743 19740914 74.9 24 62.4 24 1016.2 24 1013.9 24 15.2 24 9.7 24 15.0 999.9 90.0 69.1 99.99 999.9 110000 724050 13743 19740915 66.7 24 54.0 24 1020.2 24 1017.8 24 12.8 24 5.8 24 9.9 999.9 77.0 55.9 0.00I 999.9 000000 724050 13743 19740916 69.8 23 54.7 23 1019.7 23 1017.3 23 12.8 23 5.8 23 14.0 999.9 81.0* 55.9 99.99 999.9 010000 724050 13743 19740917 73.1 24 60.5 24 1017.5 24 1015.1 24 9.7 24 5.1 24 8.9 999.9 82.0 59.0 99.99 999.9 010000 724050 13743 19740918 71.8 23 60.4 23 1014.5 23 1012.1 23 10.6 23 5.5 23 9.9 999.9 82.0* 63.0 0.00I 999.9 000000 724050 13743 19740919 74.8 24 63.4 24 1021.0 24 1018.6 24 6.7 24 4.3 24 7.0 999.9 84.0* 63.0 0.00I 999.9 000000 724050 13743 19740920 74.9 23 65.4 23 1020.8 23 1018.4 23 6.5 23 5.9 23 9.9 999.9 84.9 66.0 0.00I 999.9 100000 724050 13743 19740921 75.7 24 66.0 24 1014.4 24 1011.9 24 10.2 24 10.2 24 19.8 35.9 84.9 64.0* 99.99 999.9 010000 724050 13743 19740922 63.0 23 49.2 23 1018.7 23 1016.2 23 14.8 23 7.3 23 11.8 18.8 84.0 53.1 0.08G 999.9 000000 724050 13743 19740923 59.2 23 40.7 23 1024.2 23 1021.8 23 16.1 23 11.9 23 16.9 999.9 73.9 50.0 0.00G 999.9 000000 724050 13743 19740924 53.4 24 33.7 24 1030.1 24 1027.7 24 15.8 24 8.1 24 12.8 19.8 64.0* 45.0 0.00I 999.9 000000 724050 13743 19740925 58.9 24 44.5 24 1020.2 24 1017.8 24 14.3 24 4.9 24 9.9 999.9 71.1* 45.0 0.00I 999.9 000000 724050 13743 19740926 65.7 22 51.1 22 1012.3 22 1009.9 22 12.4 22 5.0 22 8.9 15.0 78.1 50.0 0.00I 999.9 000000 724050 13743 19740927 66.9 24 56.6 24 1015.3 24 1012.9 24 9.4 24 4.6 24 8.0 999.9 80.1 54.0 0.00I 999.9 000000 724050 13743 19740928 71.2 24 65.1 24 1015.6 24 1013.2 24 5.8 24 4.4 24 14.0 999.9 80.6* 55.0 0.71G 999.9 110000 724050 13743 19740929 75.4 24 66.6 24 1007.9 24 1005.5 24 8.2 24 9.8 24 19.8 30.9 84.0* 64.9 0.02G 999.9 100000 724050 13743 19740930 63.6 23 42.3 23 1012.7 23 1010.3 23 16.1 23 11.2 23 22.0 31.9 84.9 53.1 0.00G 999.9 000000 724050 13743 19741001 58.9 24 38.9 24 1017.4 24 1015.0 24 16.2 24 8.3 24 15.0 999.9 72.0 46.9 0.24A 999.9 000000 724050 13743 19741002 54.7 23 35.3 23 1022.2 23 1019.8 23 16.1 23 9.5 23 15.9 28.0 66.9 46.9 99.99 999.9 010000 724050 13743 19741003 45.3 24 25.9 24 1029.6 24 1027.2 24 15.9 24 11.8 24 17.9 26.8 60.1 36.0 0.00I 999.9 000000 724050 13743 19741004 47.1 23 25.8 23 1032.0 23 1029.5 23 16.1 23 7.2 23 9.9 999.9 62.1* 34.0 0.00I 999.9 000000 724050 13743 19741005 56.9 24 39.7 24 1031.1 24 1028.7 24 14.0 24 5.2 24 8.9 999.9 73.9* 34.0 0.00I 999.9 000000 724050 13743 19741006 62.3 24 47.1 24 1027.8 24 1025.4 24 13.7 24 5.1 24 7.0 999.9 78.1 44.1 0.00I 999.9 000000 724050 13743 19741007 63.4 24 50.5 24 1020.4 24 1018.0 24 11.5 24 8.1 24 15.9 999.9 79.0 48.9 0.00I 999.9 000000 724050 13743 19741008 55.5 24 35.6 24 1019.9 24 1017.5 24 15.9 24 9.1 24 15.0 999.9 77.0 46.0 0.00I 999.9 000000 724050 13743 19741009 54.0 24 37.5 23 1019.0 24 1016.6 24 11.5 24 3.6 24 7.0 999.9 66.9* 41.0 0.00I 999.9 000000 724050 13743 19741010 58.4 24 44.5 24 1019.6 24 1017.2 24 9.4 24 5.2 24 8.9 999.9 75.9* 41.0 0.00I 999.9 000000 724050 13743 19741011 63.0 23 47.6 23 1024.6 23 1022.2 23 10.5 23 4.1 23 7.0 999.9 77.0 46.0 0.00I 999.9 000000 724050 13743 19741012 64.4 23 54.8 23 1025.5 23 1023.0 23 6.1 23 4.4 23 8.0 999.9 75.9 50.0 0.00I 999.9 100000 724050 13743 19741013 66.4 24 56.8 24 1023.8 24 1021.4 24 6.2 24 5.6 24 9.9 999.9 77.0 57.0 0.00I 999.9 000000 724050 13743 19741014 66.5 24 59.0 24 1023.7 24 1021.3 24 3.9 24 6.1 24 8.9 999.9 75.9* 59.0 0.00I 999.9 100000 724050 13743 19741015 68.6 23 58.4 23 1018.6 23 1016.1 23 6.4 23 10.0 23 16.9 17.9 78.1* 62.1 99.99 999.9 010000 724050 13743 19741016 56.9 23 53.2 23 1013.8 23 1011.5 23 6.6 23 9.4 23 12.8 16.9 63.0* 54.0 1.10G 999.9 110000 724050 13743 19741017 56.3 23 48.1 23 1014.1 23 1011.8 23 13.4 23 7.9 23 14.0 999.9 70.0* 45.0 0.02G 999.9 000000 724050 13743 19741018 55.3 24 40.1 24 1015.5 24 1013.1 24 15.7 24 8.7 24 17.9 24.9 70.0 45.0 0.00G 999.9 000000 724050 13743 19741019 45.3 24 23.7 24 1020.9 24 1018.5 24 15.9 24 9.3 24 15.0 17.9 60.1 39.0 0.24A 999.9 000000 724050 13743 19741020 41.5 24 24.5 24 1021.8 24 1019.4 24 16.2 24 8.8 24 15.9 26.8 51.1 34.0 0.00I 999.9 000000 724050 13743 19741021 41.1 24 20.8 24 1034.5 24 1032.1 24 16.0 24 9.8 24 14.0 21.0 51.1* 30.0 0.00I 999.9 000000 724050 13743 19741022 46.7 24 30.7 24 1037.2 24 1034.7 24 14.7 24 5.3 24 8.0 999.9 64.0* 30.0 0.00I 999.9 000000 724050 13743 19741023 54.5 24 37.7 24 1028.0 24 1025.7 24 12.7 24 5.8 24 10.9 999.9 72.0 34.0 0.00I 999.9 000000 724050 13743 19741024 56.9 24 38.3 24 1025.7 24 1023.3 24 12.3 24 6.3 24 8.9 999.9 72.0 37.0 0.00I 999.9 000000 724050 13743 19741025 59.3 24 45.3 24 1022.5 24 1020.1 24 10.7 24 6.7 24 14.0 999.9 73.0* 45.0 0.00I 999.9 000000 724050 13743 19741026 61.0 24 41.9 24 1022.0 24 1019.6 24 15.5 24 7.5 24 12.8 999.9 73.0 51.1 0.00I 999.9 000000 724050 13743 19741027 55.3 23 36.4 23 1021.9 23 1019.4 23 15.1 23 5.4 22 12.8 999.9 73.0* 41.0 0.00I 999.9 000000 724050 13743 19741028 55.6 24 41.7 24 1024.1 24 1021.7 24 12.1 24 5.1 24 7.0 999.9 73.9 41.0 0.00I 999.9 000000 724050 13743 19741029 61.0 24 51.7 24 1026.5 24 1024.1 24 7.7 24 3.6 24 7.0 999.9 73.0* 42.1 0.00I 999.9 000000 724050 13743 19741030 64.8 24 57.2 24 1028.4 24 1025.9 24 5.4 24 4.0 24 8.0 999.9 78.1* 51.1 0.00I 999.9 000000 724050 13743 19741031 67.5 24 58.0 24 1025.4 24 1023.1 24 8.2 23 4.2 24 8.9 999.9 79.0 55.9 99.99 999.9 010000 724050 13743 19741101 67.2 24 56.8 24 1021.7 24 1019.3 24 6.9 24 4.2 24 14.0 999.9 86.0* 55.0 0.00I 999.9 000000 724050 13743 19741102 71.4 24 58.5 23 1021.1 24 1018.7 24 12.5 24 3.7 23 7.0 999.9 86.0 55.0 0.00I 999.9 000000 724050 13743 19741103 69.6 24 56.5 24 1019.2 24 1016.8 24 10.4 24 4.6 24 11.8 999.9 82.0 57.0 99.99 999.9 010000 724050 13743 19741104 68.8 24 55.5 23 1011.8 24 1009.4 24 10.5 24 7.5 24 15.9 22.0 84.0* 57.0 0.00I 999.9 000000 724050 13743 19741105 69.2 24 56.0 24 1009.0 24 1006.7 24 10.1 24 8.0 24 12.8 22.0 84.0 60.1 0.20G 999.9 110000 724050 13743 19741106 58.8 24 42.1 24 1016.9 24 1014.5 24 15.4 24 9.7 24 15.9 999.9 73.9 48.0 0.00I 999.9 000000 724050 13743 19741107 51.1 24 36.3 24 1021.1 24 1018.8 24 14.7 24 11.5 24 17.9 22.9 63.0 46.0 0.00I 999.9 000000 724050 13743 19741108 51.7 24 35.4 24 1021.8 24 1019.4 24 14.3 24 12.6 24 16.9 22.0 63.0* 43.0 0.00I 999.9 000000 724050 13743 19741109 54.4 24 35.1 24 1022.1 24 1019.7 24 13.9 24 8.4 23 9.9 999.9 66.0* 43.0 0.00I 999.9 000000 724050 13743 19741110 52.2 24 35.8 24 1023.1 24 1020.8 24 11.5 24 5.5 24 8.0 999.9 66.9 41.0 0.00I 999.9 000000 724050 13743 19741111 50.7 24 35.5 24 1019.4 24 1017.0 24 10.0 24 3.8 24 8.9 999.9 64.9 37.0 0.00I 999.9 000000 724050 13743 19741112 54.3 22 49.0 21 1008.9 22 1006.4 22 8.3 22 6.2 21 14.0 999.9 64.0 37.0 0.04G 999.9 110000 724050 13743 19741113 49.3 23 33.8 23 1007.8 23 1005.4 23 15.2 23 10.2 23 16.9 23.9 59.0 42.1 0.16G 999.9 010000 724050 13743 19741114 52.3 24 32.0 24 1015.7 24 1013.2 24 15.6 24 12.5 24 16.9 23.9 64.0* 42.1 0.00G 999.9 000000 724050 13743 19741115 42.4 24 28.3 24 1019.2 24 1016.8 24 13.6 24 10.4 24 17.9 28.0 64.9 35.1 0.20G 999.9 111000 724050 13743 19741116 42.0 24 24.2 24 1026.7 24 1024.3 24 15.6 24 6.2 24 9.9 17.9 53.1* 33.1 0.00G 999.9 010000 724050 13743 19741117 45.1 23 31.7 23 1024.9 23 1022.5 23 13.4 23 5.6 23 12.8 999.9 55.9* 33.1 99.99 999.9 010000 724050 13743 19741118 44.2 23 34.2 23 1023.6 23 1021.2 23 10.5 23 6.0 23 11.8 999.9 55.9 35.1 99.99 999.9 010000 724050 13743 19741119 45.9 23 41.4 23 1018.5 23 1016.1 23 5.4 23 5.5 23 8.9 999.9 54.0* 35.1 99.99 999.9 110000 724050 13743 19741120 53.9 24 50.5 24 1007.0 24 1004.6 24 3.5 24 8.6 24 17.9 24.9 59.0* 39.0 0.04G 999.9 110000 724050 13743 19741121 48.0 24 27.2 24 997.3 24 995.0 24 15.5 24 15.7 24 24.9 35.0 60.1 44.1 0.08G 999.9 010000 724050 13743 19741122 47.6 23 28.5 23 1010.9 23 1008.5 23 15.4 23 12.8 23 19.8 29.9 53.1* 43.0 0.00G 999.9 000000 724050 13743 19741123 43.0 24 29.6 24 1026.4 24 1024.0 24 10.5 24 5.5 24 11.8 999.9 54.0 32.0 0.00I 999.9 000000 724050 13743 19741124 50.3 24 35.7 24 1020.9 24 1018.5 24 12.7 24 8.6 24 14.0 999.9 66.9* 32.0 0.00I 999.9 000000 724050 13743 19741125 50.9 23 39.4 23 1012.8 23 1010.4 23 11.4 23 9.1 23 16.9 24.9 66.9 41.0* 99.99 999.9 110000 724050 13743 19741126 36.2 23 18.4 23 1022.4 23 1019.9 23 14.7 23 13.7 23 17.9 26.8 39.9* 30.9 0.24G 999.9 010000 724050 13743 19741127 32.8 24 16.6 24 1024.7 24 1022.3 24 14.6 24 6.3 24 12.8 999.9 41.0* 23.0 0.00G 999.9 000000 724050 13743 19741128 41.2 23 20.9 23 1016.7 23 1014.3 23 15.3 23 6.5 23 15.9 21.0 51.1* 23.0 0.00I 999.9 000000 724050 13743 19741129 41.3 24 22.0 24 1024.0 24 1021.6 24 15.6 24 7.4 24 11.8 999.9 52.0 32.0 0.94A 999.9 000000 724050 13743 19741130 37.2 24 23.7 24 1030.5 24 1028.0 24 15.4 24 6.0 24 9.9 999.9 50.0 30.0 0.00I 999.9 000000 724050 13743 19741201 44.6 24 36.2 24 1012.9 24 1010.5 24 8.4 24 18.9 24 31.9 46.8 57.0* 30.0 0.16G 999.9 110010 724050 13743 19741202 44.5 24 39.3 24 992.9 24 990.5 24 6.7 24 8.6 24 22.0 37.9 57.0 37.0 1.93G 999.9 110010 724050 13743 19741203 44.3 23 30.9 23 1002.1 23 999.7 23 15.3 23 12.1 23 22.0 35.0 51.1* 39.9 0.02G 999.9 010000 724050 13743 19741204 40.3 24 21.7 24 1017.6 24 1015.2 24 15.6 24 15.7 24 23.9 30.9 51.1 35.1 0.00G 999.9 000000 724050 13743 19741205 37.6 24 19.9 24 1026.9 24 1024.5 24 11.8 24 6.1 24 12.8 999.9 46.9 27.0 0.00G 999.9 000000 724050 13743 19741206 39.8 24 26.3 24 1027.0 24 1024.6 24 11.3 24 3.0 24 5.8 999.9 51.1* 27.0 0.00G 999.9 000000 724050 13743 19741207 40.2 24 29.6 24 1023.8 24 1021.4 24 9.6 24 3.1 23 5.8 999.9 52.0 28.0 0.00G 999.9 000000 724050 13743 19741208 55.1 24 50.1 24 1010.0 24 1007.6 24 10.2 24 6.9 24 15.9 22.9 63.0 33.1 0.94G 999.9 110000 724050 13743 19741209 43.0 23 29.4 23 1011.5 23 1009.1 23 14.3 23 10.4 23 17.9 25.8 63.0 35.1* 0.01G 999.9 011000 724050 13743 19741210 33.0 24 13.8 24 1017.9 24 1015.6 24 15.2 24 11.1 23 15.9 24.9 45.0 28.9 0.00I 999.9 000000 724050 13743 19741211 36.8 24 23.9 24 1019.5 24 1017.1 24 11.7 24 4.2 24 9.9 999.9 48.9* 24.1 0.00G 999.9 000000 724050 13743 19741212 47.0 24 32.9 24 1016.5 24 1014.2 24 11.9 24 6.0 24 12.8 999.9 55.0* 42.1* 0.00G 999.9 010000 724050 13743 19741213 45.9 24 35.1 24 1020.3 24 1017.9 24 10.0 24 4.8 24 8.0 999.9 55.9 35.1 0.00I 999.9 000000 724050 13743 19741214 46.5 24 35.5 24 1021.3 24 1018.9 24 10.6 24 9.6 24 15.9 23.9 54.0 35.1 0.08G 999.9 110000 724050 13743 19741215 38.7 24 30.6 24 1025.7 24 1023.3 24 10.1 24 4.5 24 8.9 999.9 52.0 33.1 0.01G 999.9 000000 724050 13743 19741216 47.7 24 42.4 24 1010.5 24 1008.2 24 6.6 24 8.9 24 15.9 999.9 54.0 33.1 0.98G 999.9 110000 724050 13743 19741217 45.0 24 31.9 24 1007.6 24 1005.2 24 13.1 24 6.8 24 12.8 999.9 54.0 37.0 0.51G 999.9 000000 724050 13743 19741218 40.0 24 22.1 24 1012.5 24 1010.1 24 15.0 24 10.0 24 15.9 19.8 45.0* 35.1 0.00G 999.9 000000 724050 13743 19741219 39.8 24 25.0 24 1015.2 24 1012.8 24 13.4 24 7.0 24 15.0 18.8 53.1* 33.1 0.01G 999.9 001000 724050 13743 19741220 43.0 23 25.8 23 1018.1 23 1015.7 23 15.7 23 7.4 22 11.8 19.8 54.0 33.1 0.00I 999.9 000000 724050 13743 19741221 41.9 24 32.2 24 1015.1 24 1012.7 24 9.4 24 2.9 24 7.0 999.9 48.0 35.1 99.99 999.9 011000 724050 13743 19741222 41.3 24 31.1 24 1017.3 24 1014.9 24 10.5 24 7.2 24 14.0 22.0 46.9* 33.1 99.99 999.9 110000 724050 13743 19741223 40.2 24 29.9 24 1025.7 24 1023.3 24 9.5 24 4.9 24 9.9 999.9 55.9* 30.0 0.00G 999.9 000000 724050 13743 19741224 49.5 24 38.3 24 1019.4 24 1017.0 24 13.6 24 4.5 24 8.0 999.9 60.1* 30.0 0.00G 999.9 000000 724050 13743 19741225 52.0 24 40.2 23 1010.3 24 1007.9 24 12.6 24 9.4 24 28.0 38.9 60.1 41.0 99.99 999.9 010000 724050 13743 19741226 38.9 23 20.1 23 1026.0 23 1023.6 23 15.2 23 11.0 23 16.9 22.0 45.0* 35.1 0.00I 999.9 000000 724050 13743 19741227 39.9 24 26.5 24 1026.2 24 1023.8 24 11.6 24 7.2 24 11.8 999.9 46.0 34.0 0.00G 999.9 010000 724050 13743 19741228 44.8 24 36.3 24 1021.1 24 1018.6 24 8.1 24 4.1 24 8.0 999.9 51.1* 34.0 0.08G 999.9 110000 724050 13743 19741229 43.3 24 37.9 24 1021.9 24 1019.5 24 6.0 24 4.6 24 9.9 999.9 52.0 37.0 0.00G 999.9 110000 724050 13743 19741230 52.2 22 43.3 22 1017.3 22 1015.0 22 10.2 22 6.4 22 17.9 24.9 62.1 37.0 0.00I 999.9 100000 724050 13743 19741231 41.1 24 29.9 24 1027.6 24 1025.2 24 10.5 24 5.9 24 14.0 999.9 62.1 35.1 0.00G 999.9 111000 fluids-1.0.22/tests/gsod/1989/0000755000175000017500000000000014302004506015112 5ustar nileshnileshfluids-1.0.22/tests/gsod/1989/724050-13743.op0000644000175000017500000014327214302004506016703 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19890101 37.8 24 30.1 24 1021.8 24 1019.4 24 7.2 24 8.6 24 12.0 999.9 54.0 30.0 0.26G 1.2 111000 724050 13743 19890102 37.2 24 35.9 24 1018.2 24 1015.7 24 2.7 24 6.3 24 8.9 999.9 42.1 33.1 0.26G 0.4 100000 724050 13743 19890103 37.8 24 29.2 24 1011.2 24 1008.8 24 8.2 24 6.5 24 11.1 999.9 45.0 32.0 0.00G 999.9 101000 724050 13743 19890104 31.5 22 22.6 22 1009.6 22 1007.2 22 8.8 22 12.7 22 22.0 25.1 45.0 27.1* 0.14G 0.8 111000 724050 13743 19890105 24.9 23 9.9 23 1023.5 23 1021.1 23 13.6 23 8.6 23 15.0 19.0 36.0* 19.0 0.00G 0.4 000000 724050 13743 19890106 33.3 23 29.7 23 1018.7 23 1016.3 23 5.4 23 6.7 23 9.9 999.9 36.0 19.0 0.60G 0.8 111000 724050 13743 19890107 33.8 24 32.9 24 1024.7 24 1022.3 24 2.6 24 8.8 24 12.0 999.9 36.0 30.9 0.04G 0.4 110000 724050 13743 19890108 39.4 24 39.2 24 1019.6 24 1017.2 24 1.4 24 7.6 24 15.0 999.9 50.0* 32.0 0.14G 999.9 110000 724050 13743 19890109 42.8 23 29.5 23 1024.1 23 1021.7 23 14.2 23 7.9 23 12.0 999.9 50.0 35.1 0.02G 999.9 111000 724050 13743 19890110 37.0 23 22.1 23 1032.8 23 1030.4 23 13.4 23 7.8 23 13.0 999.9 46.0 34.0 0.00D 999.9 000000 724050 13743 19890111 38.4 23 33.2 23 1034.0 23 1031.6 23 6.5 23 8.1 23 14.0 999.9 52.0 30.0 0.00G 999.9 100000 724050 13743 19890112 39.8 23 35.9 23 1029.3 23 1026.8 23 4.9 23 7.3 23 11.1 999.9 52.0 30.0 0.23G 999.9 110000 724050 13743 19890113 42.4 23 30.8 23 1022.2 23 1019.8 23 10.1 23 14.0 23 20.0 28.9 48.0 36.0* 0.01G 999.9 110000 724050 13743 19890114 31.8 23 19.6 23 1035.1 23 1032.6 23 13.9 22 8.3 23 13.0 999.9 48.0 24.1 0.00G 999.9 110000 724050 13743 19890115 38.8 24 37.5 24 1020.3 24 1017.9 24 4.5 24 8.9 24 20.0 999.9 44.1 24.1 0.66G 999.9 110000 724050 13743 19890116 42.5 24 32.2 24 1019.7 24 1017.3 24 7.7 24 9.6 24 18.1 27.0 46.9* 34.0 0.35G 999.9 110000 724050 13743 19890117 39.2 24 20.7 24 1023.2 24 1020.8 24 17.3 24 10.2 24 16.9 21.0 53.1* 28.9 0.00G 999.9 000000 724050 13743 19890118 41.0 23 26.7 23 1020.4 23 1017.9 23 13.6 23 7.8 23 14.0 999.9 54.0* 28.9 0.00G 999.9 000000 724050 13743 19890119 47.3 24 31.1 24 1015.7 24 1013.3 24 13.7 24 8.1 24 12.0 999.9 57.9* 30.9 0.00G 999.9 000000 724050 13743 19890120 42.0 24 29.6 24 1013.5 24 1011.1 24 13.3 24 9.9 24 21.0 31.1 59.0 34.0 0.00G 999.9 000000 724050 13743 19890121 31.0 24 7.4 24 1026.9 24 1024.4 24 16.5 24 14.9 24 21.0 28.9 52.0 24.1 0.00G 999.9 000000 724050 13743 19890122 30.0 21 10.6 21 1032.5 21 1030.1 21 15.6 21 7.2 21 8.9 999.9 43.0* 21.0 0.00G 999.9 000000 724050 13743 19890123 36.7 21 20.4 21 1026.4 21 1024.0 21 10.3 21 4.8 21 7.0 999.9 53.1* 21.9 0.00G 999.9 000000 724050 13743 19890124 42.5 23 27.4 23 1022.0 23 1019.6 23 8.0 23 5.1 23 8.0 999.9 62.1* 28.9 0.00G 999.9 000000 724050 13743 19890125 43.7 23 33.2 23 1026.6 23 1024.1 23 7.9 23 7.4 23 12.0 999.9 46.0* 30.0 0.00G 999.9 010000 724050 13743 19890126 40.5 23 35.9 23 1026.0 23 1023.6 23 5.7 23 8.1 23 15.0 999.9 46.9* 37.9 0.07G 999.9 110000 724050 13743 19890127 50.3 24 28.9 24 1014.4 24 1012.0 24 13.3 24 13.5 24 19.0 28.0 55.0 37.9 0.00D 999.9 010000 724050 13743 19890128 42.2 23 28.1 23 1025.0 23 1022.6 23 11.8 23 8.7 23 14.0 21.0 55.9 27.0 0.00G 999.9 000000 724050 13743 19890129 44.8 23 34.1 23 1020.3 23 1017.9 23 10.2 23 6.6 23 11.1 999.9 57.0* 30.9 0.00G 999.9 010000 724050 13743 19890130 46.9 22 44.7 22 1010.6 22 1008.2 22 7.4 22 6.1 22 12.0 999.9 59.0 36.0 0.19G 999.9 110000 724050 13743 19890131 47.2 21 32.8 21 1012.3 21 1009.9 21 14.9 21 11.4 21 18.1 28.9 57.0* 37.9 0.01G 999.9 000000 724050 13743 19890201 51.7 22 38.4 22 1010.0 22 1007.6 22 14.7 22 10.7 22 14.0 999.9 66.9* 37.9 0.00G 999.9 000000 724050 13743 19890202 51.1 23 41.9 23 1014.5 23 1012.1 23 9.1 23 6.7 23 12.0 999.9 68.0 41.0 0.00G 999.9 100000 724050 13743 19890203 47.3 22 45.0 22 1017.9 22 1015.5 22 5.3 22 9.4 22 18.1 999.9 60.1 42.1 0.16G 999.9 110000 724050 13743 19890204 31.4 24 18.9 24 1029.1 24 1026.7 24 14.6 24 13.3 24 20.0 24.1 48.0 25.0 0.42G 999.9 010000 724050 13743 19890205 30.2 24 19.4 24 1028.3 24 1025.9 24 9.3 24 6.5 24 9.9 999.9 34.0 25.0 0.01G 999.9 001000 724050 13743 19890206 35.1 21 29.4 21 1022.6 21 1020.1 21 6.7 21 7.0 21 12.0 999.9 46.9* 28.9 0.01G 999.9 111000 724050 13743 19890207 35.6 23 23.5 23 1022.8 23 1020.4 23 9.1 23 10.4 23 14.0 999.9 48.0 30.0 0.08G 999.9 111000 724050 13743 19890208 32.6 20 19.0 20 1026.3 20 1023.9 20 10.7 19 9.3 20 15.0 999.9 48.0 26.1 0.07G 999.9 000000 724050 13743 19890209 27.0 20 0.2 20 1029.7 20 1027.2 20 17.5 20 15.2 20 20.0 28.0 39.9 18.0 0.00G 999.9 000000 724050 13743 19890210 26.3 24 3.2 24 1027.2 24 1024.7 24 16.0 24 10.4 24 15.9 24.1 36.0* 18.0 0.00G 999.9 000000 724050 13743 19890211 33.9 24 14.3 24 1020.8 24 1018.4 24 13.4 24 8.2 24 14.0 19.0 50.0* 19.0 0.00G 999.9 000000 724050 13743 19890212 37.1 24 20.9 24 1018.9 24 1016.5 24 10.5 24 9.5 24 18.1 24.1 50.0 23.0 0.00G 999.9 000000 724050 13743 19890213 33.1 23 21.4 23 1031.4 23 1029.0 23 10.9 23 8.0 23 12.0 999.9 46.0 26.1 0.00G 999.9 111000 724050 13743 19890214 42.4 24 39.4 24 1025.7 24 1023.3 24 4.9 24 7.4 24 15.9 999.9 54.0 28.0 0.38G 999.9 110000 724050 13743 19890215 51.2 24 47.9 24 1025.4 24 1022.9 24 4.2 24 8.4 24 18.1 999.9 64.0* 36.0 0.04G 999.9 110000 724050 13743 19890216 47.9 23 40.7 23 1032.5 23 1030.1 23 8.1 23 11.9 23 17.1 999.9 64.9 43.0 0.22G 999.9 110000 724050 13743 19890217 34.3 23 15.1 23 1042.7 23 1040.3 23 12.5 23 10.9 23 15.9 999.9 52.0 28.9 0.07G 999.9 000000 724050 13743 19890218 31.3 20 16.0 20 1036.1 20 1033.7 20 11.9 20 8.0 20 9.9 999.9 37.0 28.9 0.00G 999.9 000000 724050 13743 19890219 33.7 24 24.1 24 1026.2 24 1023.8 24 11.8 24 7.0 24 9.9 999.9 45.0* 25.0 0.00G 999.9 001000 724050 13743 19890220 39.5 23 31.4 23 1023.8 23 1021.4 23 11.5 23 10.4 23 13.0 999.9 50.0* 25.0 0.00G 999.9 000000 724050 13743 19890221 42.7 21 41.2 21 1012.8 21 1010.4 21 5.3 21 10.1 21 15.9 999.9 53.1* 30.9 0.06G 999.9 110000 724050 13743 19890222 47.2 23 44.2 22 1008.8 23 1006.4 23 6.9 23 9.7 23 14.0 999.9 54.0 39.0 0.40G 999.9 110000 724050 13743 19890223 39.3 23 29.8 23 1016.5 23 1014.1 23 9.1 23 15.2 23 20.0 27.0 51.1 35.1 0.19G 999.9 101000 724050 13743 19890224 28.8 24 14.0 24 1021.0 24 1018.6 24 9.7 24 19.9 24 24.1 28.9 42.1 24.1 0.02G 999.9 001000 724050 13743 19890225 28.9 24 2.8 24 1021.3 24 1018.9 24 16.2 24 14.4 24 20.0 28.9 39.9* 19.9 0.00D 999.9 000000 724050 13743 19890226 34.3 24 24.2 24 1009.7 24 1007.3 24 8.2 24 8.8 24 13.0 999.9 41.0 19.9 0.09G 999.9 111000 724050 13743 19890227 39.0 24 23.8 24 1009.1 24 1006.7 24 15.5 24 9.4 24 15.9 27.0 43.0 30.0 0.04G 999.9 000000 724050 13743 19890228 37.0 24 28.6 24 1015.1 24 1012.7 24 8.9 24 7.9 24 12.0 999.9 45.0 34.0 0.03G 999.9 101000 724050 13743 19890301 37.4 24 23.4 24 1020.2 24 1017.8 24 8.6 24 10.3 24 17.1 22.0 48.0* 28.9 0.00D 999.9 100000 724050 13743 19890302 38.7 24 13.6 24 1025.3 24 1022.9 24 12.8 23 9.1 24 13.0 19.0 48.0 28.9 0.00G 999.9 000000 724050 13743 19890303 38.8 24 27.9 24 1022.3 24 1019.8 24 10.9 24 9.5 24 14.0 999.9 48.0 30.9 0.00G 999.9 000000 724050 13743 19890304 41.5 24 36.3 24 1022.9 24 1020.5 24 6.6 24 11.6 24 15.0 999.9 46.0 33.1 0.06G 999.9 110000 724050 13743 19890305 40.9 23 40.0 23 1020.0 23 1017.6 23 3.4 22 7.5 23 12.0 999.9 46.9* 39.0 0.18G 999.9 110000 724050 13743 19890306 39.3 24 37.9 24 1016.4 24 1014.0 24 4.2 24 12.3 24 19.0 20.0 48.9 32.0* 0.92G 999.9 111000 724050 13743 19890307 25.9 24 22.5 24 1023.8 24 1021.4 24 6.5 24 12.6 24 15.9 999.9 30.9* 23.0 0.03G 0.4 111000 724050 13743 19890308 24.1 24 16.7 24 1034.8 24 1032.4 24 11.4 24 13.5 24 15.9 999.9 30.2* 19.9 0.00D 0.4 001000 724050 13743 19890309 32.1 24 21.3 24 1033.2 24 1030.8 24 11.5 24 13.9 24 17.1 999.9 39.0* 19.9 0.00G 0.4 000000 724050 13743 19890310 36.5 24 20.5 24 1029.3 24 1026.9 24 11.8 24 9.4 24 13.0 19.0 48.0* 27.0 0.00G 999.9 000000 724050 13743 19890311 38.4 24 24.6 24 1025.8 24 1023.4 24 11.9 24 7.3 24 12.0 999.9 50.0* 28.9 0.00G 999.9 000000 724050 13743 19890312 43.5 24 32.0 24 1015.7 24 1013.3 24 11.8 24 9.8 24 19.0 21.0 55.9 28.9 0.00G 999.9 000000 724050 13743 19890313 37.9 24 23.0 24 1022.7 24 1020.3 24 12.2 24 10.0 24 14.0 999.9 55.9 30.9 0.00G 999.9 011000 724050 13743 19890314 39.6 24 36.9 24 1017.3 24 1014.9 24 4.7 24 6.0 24 8.9 999.9 45.0* 30.9 0.03G 999.9 111000 724050 13743 19890315 54.1 24 48.5 24 1009.4 24 1007.1 24 4.3 24 12.3 24 17.1 21.0 75.0* 37.0 0.00G 999.9 110000 724050 13743 19890316 55.1 24 31.3 24 1020.3 24 1017.9 24 13.7 24 12.4 24 20.0 27.0 75.0 43.0* 0.00D 999.9 010000 724050 13743 19890317 52.4 23 37.7 23 1025.7 23 1023.3 23 12.2 23 11.6 23 18.1 22.9 71.1* 41.0 0.00G 999.9 000000 724050 13743 19890318 63.5 24 50.4 24 1015.0 24 1012.6 24 11.2 24 14.3 24 20.0 32.1 81.0 41.0 0.00G 999.9 010010 724050 13743 19890319 43.1 22 25.5 22 1024.5 22 1022.1 22 14.3 22 15.7 22 26.0 32.1 59.0* 30.9 0.17G 999.9 000000 724050 13743 19890320 39.6 22 24.0 22 1028.6 22 1026.2 22 14.8 22 10.7 22 17.1 24.1 46.0 32.0 0.00G 999.9 010000 724050 13743 19890321 44.7 23 37.6 23 1015.0 23 1012.6 23 8.0 23 14.6 23 21.0 24.1 48.0 32.0 0.44G 999.9 110000 724050 13743 19890322 39.7 21 18.8 21 1026.6 21 1024.2 21 13.7 21 11.8 21 15.0 999.9 48.9 33.1 0.07G 999.9 000000 724050 13743 19890323 40.0 22 25.6 22 1032.9 22 1030.4 22 11.3 22 10.5 22 15.9 999.9 48.0 33.1 0.00G 999.9 010000 724050 13743 19890324 41.5 22 39.3 22 1023.2 22 1020.8 22 4.1 22 15.5 22 19.0 25.1 46.9 33.1 1.66G 999.9 110000 724050 13743 19890325 48.6 24 39.9 24 1018.5 24 1016.1 24 12.6 24 10.0 24 16.9 999.9 64.9* 37.0 0.01G 999.9 100000 724050 13743 19890326 57.5 23 46.0 23 1021.9 23 1019.5 23 9.0 23 5.6 23 11.1 999.9 71.1* 39.0 0.00G 999.9 000000 724050 13743 19890327 57.6 23 47.7 23 1024.9 23 1022.5 23 9.1 23 7.6 23 13.0 999.9 73.0* 44.1 0.00G 999.9 100000 724050 13743 19890328 67.8 24 53.9 24 1018.4 24 1016.0 24 11.3 24 13.3 24 15.9 999.9 81.0* 45.0 0.00G 999.9 000000 724050 13743 19890329 75.0 24 57.8 24 1011.9 24 1009.5 24 11.7 24 13.8 24 19.0 999.9 84.9 59.0 0.00G 999.9 000000 724050 13743 19890330 62.2 24 56.6 24 1011.2 24 1008.8 24 7.5 24 9.9 24 15.9 999.9 84.9 53.1 0.00G 999.9 110000 724050 13743 19890331 56.2 24 53.2 24 1001.7 24 999.3 24 4.5 24 10.7 24 27.0 35.9 66.9* 52.0 0.45G 999.9 110010 724050 13743 19890401 45.7 24 27.5 24 1012.6 24 1010.1 24 14.0 24 16.6 24 20.0 29.9 51.1* 37.0 0.03G 999.9 000000 724050 13743 19890402 45.3 23 27.9 23 1025.6 23 1023.2 23 12.3 23 8.7 23 15.0 999.9 57.0* 35.1 0.00G 999.9 000000 724050 13743 19890403 55.9 23 46.0 23 1018.2 23 1015.8 23 10.8 23 12.4 23 17.1 999.9 71.1* 35.1 0.15G 999.9 110000 724050 13743 19890404 66.7 22 54.9 22 1012.5 22 1010.1 22 12.3 22 16.1 22 25.1 35.0 77.0* 48.0 0.00D 999.9 000000 724050 13743 19890405 62.6 24 57.2 24 1013.5 24 1011.1 24 10.5 24 11.5 24 22.0 32.1 77.0 54.0* 0.00G 999.9 110000 724050 13743 19890406 52.7 23 41.3 23 1013.0 23 1010.6 23 9.9 23 10.8 23 18.1 24.1 68.0 50.0 0.61G 999.9 110000 724050 13743 19890407 45.2 21 34.8 21 1011.6 21 1009.2 21 10.4 21 9.3 21 15.0 999.9 57.0 39.0 0.03G 999.9 110000 724050 13743 19890408 45.0 23 35.1 23 1009.0 23 1006.6 23 10.5 23 11.4 23 17.1 21.0 51.1* 37.0 0.27G 999.9 110000 724050 13743 19890409 48.6 24 34.5 24 1011.0 24 1008.6 24 12.0 24 13.0 24 17.1 26.0 55.0* 37.0 0.03G 999.9 010000 724050 13743 19890410 46.7 21 23.1 21 1022.1 21 1019.7 21 13.5 21 10.9 21 17.1 27.0 55.9 42.1 0.00G 999.9 000000 724050 13743 19890411 43.3 24 15.4 24 1026.6 24 1024.2 24 15.4 24 9.6 24 14.0 999.9 52.0* 36.0 0.00G 999.9 000000 724050 13743 19890412 46.4 24 26.9 24 1027.0 24 1024.6 24 12.9 24 8.5 24 15.0 999.9 57.9* 36.0 0.00G 999.9 000000 724050 13743 19890413 49.6 23 32.1 23 1023.8 23 1021.4 23 12.0 23 10.3 23 15.9 22.9 62.1 36.0 0.00G 999.9 000000 724050 13743 19890414 51.5 23 28.2 23 1024.5 23 1022.1 23 12.1 23 8.1 23 17.1 999.9 63.0* 37.0 0.00G 999.9 000000 724050 13743 19890415 52.2 24 47.1 24 1017.8 24 1015.4 24 6.2 24 8.1 24 12.0 999.9 63.0 37.0 0.47G 999.9 110000 724050 13743 19890416 55.5 24 45.2 24 1013.9 24 1011.5 24 9.4 24 12.8 24 17.1 999.9 64.9* 48.0 0.13G 999.9 110000 724050 13743 19890417 58.4 24 42.6 24 1019.8 24 1017.3 24 11.5 24 8.9 24 15.0 19.0 75.9* 43.0 0.00G 999.9 000000 724050 13743 19890418 68.1 24 53.7 24 1013.8 24 1011.4 24 10.2 24 10.4 24 15.9 999.9 80.1 60.1* 0.00G 999.9 110010 724050 13743 19890419 58.9 24 50.2 24 1014.8 24 1012.4 24 8.8 24 10.6 24 15.9 17.1 62.1* 50.0 0.82G 999.9 110010 724050 13743 19890420 55.9 24 31.8 24 1020.6 24 1018.2 24 12.8 24 8.3 24 12.0 999.9 64.9 44.1 0.28G 999.9 000000 724050 13743 19890421 57.9 23 37.1 23 1017.5 23 1015.1 23 12.0 23 8.8 23 12.0 14.0 69.1 44.1 0.00G 999.9 000000 724050 13743 19890422 58.7 24 35.3 24 1015.1 24 1012.7 24 14.2 24 11.6 24 20.0 25.1 71.1 45.0 0.00G 999.9 000000 724050 13743 19890423 52.7 24 22.9 24 1016.8 24 1014.4 24 14.9 24 10.6 24 16.9 18.1 68.0 39.9 0.00G 999.9 000000 724050 13743 19890424 54.8 24 29.3 24 1016.7 24 1014.3 24 16.6 24 7.4 24 9.9 999.9 66.9* 39.9 0.00G 999.9 000000 724050 13743 19890425 61.5 22 38.9 22 1013.7 22 1011.3 22 12.1 22 6.6 22 9.9 999.9 78.1 44.1 0.00G 999.9 000000 724050 13743 19890426 64.0 22 47.4 22 1010.4 22 1008.0 22 9.0 22 6.9 22 14.0 999.9 79.0 46.9 0.00G 999.9 000000 724050 13743 19890427 66.1 23 50.6 23 1011.0 23 1008.6 23 8.3 23 5.6 23 8.9 999.9 79.0 53.1 0.00G 999.9 000000 724050 13743 19890428 63.2 23 41.8 23 1011.5 23 1009.1 23 10.6 23 10.1 23 15.9 999.9 78.1 55.0 0.00G 999.9 000000 724050 13743 19890429 57.6 24 48.8 24 1014.5 24 1012.1 24 9.3 24 8.7 24 13.0 999.9 69.1 53.1 0.88G 999.9 110010 724050 13743 19890430 63.5 24 58.5 24 1016.7 24 1014.3 24 4.2 24 6.6 24 9.9 999.9 77.0* 53.1 0.11G 999.9 110000 724050 13743 19890501 64.4 23 61.9 23 1016.1 23 1013.7 23 3.8 23 8.6 23 15.0 18.1 79.0 57.9 0.44G 999.9 110000 724050 13743 19890502 62.6 22 54.3 22 1006.8 22 1004.4 22 11.1 22 13.3 22 21.0 31.1 69.1 57.9 1.00G 999.9 110010 724050 13743 19890503 56.9 24 36.3 24 1015.6 24 1013.2 24 13.4 24 13.1 24 19.0 26.0 69.1 51.1 0.00G 999.9 000000 724050 13743 19890504 57.7 23 38.2 23 1022.0 23 1019.6 23 12.0 23 7.9 23 13.0 25.1 69.1* 46.0 0.00G 999.9 000000 724050 13743 19890505 59.6 23 53.5 23 1016.6 23 1014.2 23 6.5 23 12.9 23 17.1 24.1 70.0 46.0 0.49G 999.9 110000 724050 13743 19890506 63.1 24 55.6 24 1007.2 24 1004.8 24 11.0 24 12.3 24 25.1 35.0 75.0* 41.7 1.75G 999.9 110010 724050 13743 19890507 50.5 24 36.1 24 1011.1 24 1008.7 24 14.3 24 11.7 24 15.9 22.0 55.0* 44.1 0.36G 999.9 000000 724050 13743 19890508 53.2 24 35.9 24 1014.3 24 1011.9 24 16.3 24 11.0 24 15.0 20.0 66.9* 44.1 0.00G 999.9 010000 724050 13743 19890509 59.1 23 48.0 23 1017.4 23 1015.0 23 10.1 23 6.7 23 11.1 999.9 68.0 44.1 0.00G 999.9 010000 724050 13743 19890510 55.5 22 53.7 22 1008.3 22 1005.9 22 4.7 22 11.3 22 15.0 999.9 66.9 52.0 0.59G 999.9 110000 724050 13743 19890511 51.7 23 47.5 23 1007.5 23 1005.1 23 8.0 23 10.4 23 14.0 999.9 57.0 48.9 0.01G 999.9 110000 724050 13743 19890512 54.0 23 41.5 23 1010.6 23 1008.2 23 14.0 23 8.0 23 12.0 999.9 60.1* 45.0 0.00G 999.9 010000 724050 13743 19890513 55.3 24 47.5 24 1015.0 24 1012.6 24 8.2 24 6.9 24 13.0 999.9 66.9* 45.0 0.19G 999.9 110000 724050 13743 19890514 60.1 24 53.7 24 1017.4 24 1015.0 24 8.3 24 7.1 24 13.0 999.9 72.0* 45.0 0.01G 999.9 110000 724050 13743 19890515 59.5 24 56.0 24 1014.8 24 1012.4 24 6.6 24 5.3 24 9.9 999.9 72.0 54.0 0.20G 999.9 110000 724050 13743 19890516 58.7 24 56.6 24 1010.2 24 1007.8 24 4.3 24 9.3 24 14.0 999.9 64.0 54.0 0.35G 999.9 110010 724050 13743 19890517 63.9 24 57.2 24 1013.0 24 1010.6 24 8.5 24 13.1 24 18.1 999.9 77.0* 55.9 0.55G 999.9 110000 724050 13743 19890518 69.1 23 56.2 23 1020.5 23 1018.1 23 9.6 23 8.0 23 12.0 999.9 84.0 54.0 0.02G 999.9 100000 724050 13743 19890519 71.5 23 57.7 23 1022.8 23 1020.4 23 8.4 23 5.5 23 8.9 999.9 86.0 54.0 0.00G 999.9 100000 724050 13743 19890520 69.5 23 59.3 23 1017.3 23 1014.9 23 9.1 23 8.9 23 14.0 999.9 84.9 57.0 0.00G 999.9 100000 724050 13743 19890521 73.1 24 56.7 24 1013.7 24 1011.3 24 10.0 24 10.2 24 18.1 27.0 82.9 60.1 0.00G 999.9 000000 724050 13743 19890522 70.8 23 51.5 23 1015.7 23 1013.3 23 15.9 23 7.9 23 12.0 999.9 82.0 57.9 0.00G 999.9 000000 724050 13743 19890523 68.8 24 61.0 24 1010.4 24 1008.0 24 9.3 24 7.9 24 13.0 20.0 81.0 57.9 0.40G 999.9 110010 724050 13743 19890524 66.2 24 59.2 24 1006.5 24 1004.1 24 8.3 24 11.8 24 15.9 25.1 75.0 61.0 0.53G 999.9 110010 724050 13743 19890525 69.5 24 59.7 24 1012.1 24 1009.7 24 8.2 24 8.7 24 14.0 20.0 84.9* 57.9 0.00G 999.9 100000 724050 13743 19890526 76.2 24 67.2 24 1010.9 24 1008.5 24 8.4 24 10.0 24 13.0 999.9 84.9 57.9 0.00G 999.9 010000 724050 13743 19890527 74.4 22 65.0 22 1014.2 22 1011.8 22 9.7 22 8.5 22 20.0 31.1 87.1 63.0 0.20G 999.9 110010 724050 13743 19890528 65.1 24 41.6 24 1024.5 24 1022.1 24 17.9 24 11.6 24 20.0 26.0 82.0 54.0 0.19G 999.9 000000 724050 13743 19890529 65.7 24 51.3 24 1025.7 24 1023.3 24 15.3 24 8.8 24 15.0 999.9 75.9* 54.0 0.00G 999.9 000000 724050 13743 19890530 71.6 24 59.8 24 1021.2 24 1018.8 24 12.0 24 12.0 24 17.1 999.9 84.9* 55.0 0.00G 999.9 000000 724050 13743 19890531 78.5 24 67.9 24 1018.5 24 1016.1 24 7.3 24 9.9 24 14.0 999.9 87.1 63.0 0.00G 999.9 100000 724050 13743 19890601 81.2 23 70.6 23 1017.5 23 1015.1 23 6.2 23 9.0 23 14.0 19.0 93.0* 69.1 0.00G 999.9 100000 724050 13743 19890602 82.5 24 70.4 24 1014.6 24 1012.2 24 6.1 24 9.4 24 15.0 20.0 93.9 72.0 0.00G 999.9 100000 724050 13743 19890603 79.2 23 65.6 23 1015.1 23 1012.7 23 8.4 23 7.1 23 11.1 999.9 91.9 69.1 0.00G 999.9 000000 724050 13743 19890604 80.0 23 66.9 23 1010.6 23 1008.2 23 9.4 23 11.5 23 15.0 26.0 88.0 69.1 0.00G 999.9 000000 724050 13743 19890605 76.3 24 62.3 24 1013.9 24 1011.5 24 10.6 24 9.2 24 12.0 999.9 88.0 70.0 0.00G 999.9 000000 724050 13743 19890606 73.5 24 68.2 24 1010.5 24 1008.0 24 9.7 24 10.2 24 25.1 35.0 84.0 69.1 0.58G 999.9 010010 724050 13743 19890607 69.0 23 64.1 23 1012.8 23 1010.4 23 5.2 23 10.3 23 15.0 18.1 79.0 64.0 1.27G 999.9 110010 724050 13743 19890608 71.9 24 63.7 24 1013.8 24 1011.4 24 8.2 24 7.4 24 9.9 999.9 81.0* 64.0 0.10G 999.9 100000 724050 13743 19890609 74.3 24 70.3 24 1010.4 24 1008.0 24 7.9 24 9.7 24 15.9 24.1 82.9 66.0 0.73G 999.9 110010 724050 13743 19890610 75.1 24 61.8 24 1011.0 24 1008.6 24 11.4 24 11.2 24 17.1 22.9 81.0 66.0 0.01G 999.9 010010 724050 13743 19890611 70.0 24 50.6 24 1019.0 24 1016.7 24 13.7 24 12.2 24 17.1 22.9 82.0 60.1 0.00G 999.9 000000 724050 13743 19890612 69.8 24 56.7 24 1018.2 24 1015.8 24 14.9 24 8.6 24 14.0 999.9 78.1 60.1 0.00G 999.9 010000 724050 13743 19890613 73.6 24 67.8 24 1008.7 24 1006.3 24 8.1 24 10.6 24 15.9 22.0 81.0* 60.1 0.00G 999.9 110000 724050 13743 19890614 74.1 22 68.1 22 1011.6 22 1009.2 22 8.6 22 8.1 22 24.1 34.0 87.1* 66.9 0.02G 999.9 010010 724050 13743 19890615 76.0 24 70.5 24 1013.2 24 1010.8 24 8.8 24 8.2 24 18.1 27.0 88.0* 66.9 0.83G 999.9 110010 724050 13743 19890616 75.1 24 69.3 24 1015.0 24 1012.6 24 10.0 24 14.1 24 21.0 28.9 88.0 70.0 0.66G 999.9 010010 724050 13743 19890617 73.8 24 66.0 24 1018.4 24 1016.0 24 12.1 24 12.0 24 17.1 22.0 84.9 70.0 0.09G 999.9 010000 724050 13743 19890618 74.6 24 59.4 24 1020.8 24 1018.4 24 8.9 24 7.2 24 12.0 999.9 82.0 66.0 0.00G 999.9 100000 724050 13743 19890619 76.5 24 63.1 24 1020.3 24 1017.9 24 8.3 24 7.2 24 12.0 999.9 84.9 66.0 0.00G 999.9 010000 724050 13743 19890620 75.5 22 68.1 22 1019.9 22 1017.5 22 6.4 22 8.3 22 17.1 27.0 84.9 69.1 0.03G 999.9 110010 724050 13743 19890621 76.3 24 71.8 24 1020.9 24 1018.5 24 8.6 24 8.7 24 22.9 31.1 84.0 70.0 0.16G 999.9 010010 724050 13743 19890622 76.0 23 71.4 23 1021.1 23 1018.7 23 8.7 23 7.7 23 17.1 999.9 86.0* 71.1 0.20G 999.9 110000 724050 13743 19890623 76.8 24 72.9 24 1018.6 24 1016.2 24 6.9 24 5.9 24 19.0 26.0 86.0 72.0 0.04G 999.9 110010 724050 13743 19890624 76.4 24 71.7 24 1015.8 24 1013.4 24 5.9 24 6.9 24 15.0 999.9 84.9 72.0 1.32G 999.9 110000 724050 13743 19890625 78.2 24 71.0 24 1016.3 24 1013.9 24 7.9 24 5.3 24 8.9 999.9 88.0* 70.0 0.08G 999.9 100000 724050 13743 19890626 83.1 24 72.1 24 1013.5 24 1011.1 24 6.0 24 7.3 24 11.1 999.9 93.0* 70.0 0.00G 999.9 100000 724050 13743 19890627 84.6 24 72.7 24 1012.0 24 1009.6 24 4.3 24 7.5 24 12.0 999.9 93.9 75.0 0.00G 999.9 100000 724050 13743 19890628 79.8 24 70.6 24 1012.5 24 1010.1 24 6.3 24 8.7 24 20.0 27.0 95.0 73.0 0.00G 999.9 010000 724050 13743 19890629 75.6 24 61.9 24 1017.9 24 1015.5 24 11.8 24 10.8 24 14.0 20.0 84.9 69.1 0.00G 999.9 000000 724050 13743 19890630 72.1 22 52.4 22 1023.1 22 1020.7 22 15.4 22 6.7 22 12.0 999.9 82.0* 60.1 0.00C 999.9 000000 724050 13743 19890701 73.5 24 58.1 24 1020.9 24 1018.5 24 13.6 24 5.0 24 8.9 999.9 82.9 60.1 0.00G 999.9 000000 724050 13743 19890702 75.9 23 63.8 23 1019.2 23 1016.8 23 11.2 23 8.1 23 9.9 999.9 84.0 62.1 0.00G 999.9 000000 724050 13743 19890703 77.3 24 67.5 24 1018.3 24 1015.9 24 9.2 24 6.3 24 9.9 999.9 84.0 66.0 0.00G 999.9 000000 724050 13743 19890704 76.6 24 72.1 24 1018.4 24 1016.0 24 7.0 24 6.1 24 9.9 999.9 84.0 71.1 0.02G 999.9 110010 724050 13743 19890705 75.7 24 72.9 24 1018.4 24 1016.0 24 7.2 24 6.1 24 11.1 999.9 82.0 73.0 0.86G 999.9 110010 724050 13743 19890706 76.8 24 73.6 24 1019.5 24 1017.0 24 6.4 24 5.2 24 9.9 999.9 82.9 73.0 0.98G 999.9 110000 724050 13743 19890707 81.3 24 72.8 24 1016.6 24 1014.2 24 7.4 24 6.2 24 12.0 18.1 91.0* 72.0 0.02G 999.9 110000 724050 13743 19890708 81.9 22 67.6 22 1014.8 22 1012.4 22 7.2 22 7.9 22 12.0 19.0 91.0 72.0 0.00G 999.9 000000 724050 13743 19890709 77.5 23 65.1 23 1016.9 23 1014.5 23 11.5 23 6.6 23 15.0 999.9 87.1 68.0 0.00G 999.9 000000 724050 13743 19890710 81.3 24 71.8 24 1015.2 24 1012.8 24 5.7 24 8.5 24 14.0 20.0 91.9 68.0 0.00G 999.9 000000 724050 13743 19890711 87.8 24 73.8 24 1013.5 24 1011.1 24 4.4 24 7.8 24 13.0 14.0 95.0* 72.0 0.00G 999.9 000000 724050 13743 19890712 82.2 23 68.7 23 1015.6 23 1013.2 23 9.2 23 6.7 23 9.9 999.9 96.1 69.1 0.00G 999.9 010010 724050 13743 19890713 73.7 24 67.6 24 1011.7 24 1009.3 24 8.5 24 6.4 24 11.1 999.9 84.9 68.0* 0.02G 999.9 110000 724050 13743 19890714 73.2 24 63.6 24 1010.4 24 1008.0 24 9.2 24 8.7 24 12.0 15.9 82.9* 66.9 0.21G 999.9 110000 724050 13743 19890715 75.8 24 59.5 24 1018.3 24 1015.9 24 12.5 24 5.6 24 8.9 999.9 84.0 64.9 0.00G 999.9 000000 724050 13743 19890716 73.5 23 66.5 23 1017.8 23 1015.4 23 8.9 23 6.7 23 12.0 15.9 84.9 64.9 0.64G 999.9 110000 724050 13743 19890717 70.9 22 63.8 22 1015.3 22 1012.9 22 9.2 22 8.1 22 15.9 20.0 78.1* 66.0 0.38G 999.9 110000 724050 13743 19890718 74.4 24 66.1 24 1018.3 24 1015.9 24 7.9 24 5.0 24 8.9 999.9 82.9* 66.0 0.00G 999.9 100000 724050 13743 19890719 76.1 24 69.5 24 1016.1 24 1013.7 24 7.7 24 7.1 24 11.1 999.9 82.9 66.9 0.00G 999.9 100000 724050 13743 19890720 78.3 24 72.4 24 1009.9 24 1007.5 24 6.3 24 7.4 24 12.0 999.9 86.0* 70.0 0.68G 999.9 110010 724050 13743 19890721 79.9 24 73.2 24 1015.7 24 1013.3 24 6.9 24 6.5 24 11.1 999.9 87.1 71.1 0.00D 999.9 100000 724050 13743 19890722 82.4 24 74.6 24 1022.3 24 1019.9 24 7.8 24 5.4 24 8.9 999.9 90.0* 73.9 0.00G 999.9 100000 724050 13743 19890723 84.9 24 73.9 24 1024.3 24 1021.9 24 9.1 24 4.6 24 8.0 999.9 93.9* 75.9 0.00G 999.9 000000 724050 13743 19890724 84.1 23 73.7 23 1024.2 23 1021.7 23 4.7 23 3.8 23 7.0 999.9 93.9 75.9 0.00G 999.9 110000 724050 13743 19890725 82.0 23 73.3 23 1024.5 23 1022.1 23 5.1 23 6.8 23 9.9 999.9 93.0 75.9 0.21G 999.9 000000 724050 13743 19890726 80.2 21 73.4 21 1021.8 21 1019.3 21 4.3 21 6.4 21 15.0 25.1 93.9* 73.9* 0.00G 999.9 110010 724050 13743 19890727 81.2 17 71.8 17 1017.2 17 1014.8 17 4.4 17 6.4 17 14.0 19.0 93.9 72.0 1.19G 999.9 100000 724050 13743 19890728 80.7 21 70.1 21 1011.3 21 1008.9 21 6.0 21 7.9 21 13.0 18.1 91.9 72.0 0.22G 999.9 110010 724050 13743 19890729 74.9 23 57.3 23 1016.9 23 1014.5 23 10.0 23 8.6 23 15.0 999.9 89.1 64.9 0.02G 999.9 010000 724050 13743 19890730 72.8 24 61.9 24 1019.1 24 1016.7 24 7.7 24 5.5 24 11.1 999.9 82.9 64.9 0.00G 999.9 010000 724050 13743 19890731 70.4 23 66.9 23 1017.7 23 1015.3 23 6.1 23 9.1 23 13.0 999.9 80.1 64.9 0.06G 999.9 110000 724050 13743 19890801 72.1 20 66.7 20 1019.4 20 1017.0 20 5.2 20 5.9 20 9.9 999.9 81.0* 68.0 0.01G 999.9 110000 724050 13743 19890802 74.4 23 66.5 23 1018.1 23 1015.7 23 7.7 23 4.5 23 12.0 999.9 84.0 68.0 0.00G 999.9 010000 724050 13743 19890803 78.6 24 67.9 24 1014.6 24 1012.2 24 5.3 24 7.3 24 12.0 15.9 91.0* 68.0 0.00G 999.9 100000 724050 13743 19890804 83.9 24 70.6 24 1011.1 24 1008.7 24 4.9 24 7.7 24 14.0 17.1 93.9* 68.0 0.00G 999.9 000000 724050 13743 19890805 86.2 24 72.1 24 1007.4 24 1005.1 24 8.8 24 8.7 24 12.0 17.1 93.9 73.0 0.00G 999.9 000000 724050 13743 19890806 84.8 24 72.6 24 1005.9 24 1003.5 24 9.3 24 5.9 24 13.0 999.9 93.0 77.0 0.00G 999.9 000000 724050 13743 19890807 78.3 22 69.1 22 1005.8 22 1003.5 22 10.0 22 8.7 22 15.9 999.9 93.9 72.0 0.00G 999.9 010000 724050 13743 19890808 68.3 23 51.1 23 1013.4 23 1011.0 23 12.3 23 9.7 23 13.0 19.0 82.0 57.9 0.00G 999.9 010000 724050 13743 19890809 67.0 23 51.1 23 1021.6 23 1019.2 23 13.1 23 6.7 23 11.1 999.9 77.0 57.0 0.00G 999.9 000000 724050 13743 19890810 70.2 23 57.6 23 1024.6 23 1022.2 23 11.9 23 7.5 23 13.0 15.9 79.0 57.0 0.00G 999.9 000000 724050 13743 19890811 67.8 23 62.6 23 1021.5 23 1019.1 23 7.6 23 10.1 23 13.0 999.9 75.9 64.0 0.01G 999.9 110000 724050 13743 19890812 69.9 24 65.0 24 1020.2 24 1017.8 24 5.1 24 6.1 24 8.9 999.9 79.0* 64.9 0.01D 999.9 110000 724050 13743 19890813 76.7 22 68.8 22 1019.0 22 1016.6 22 7.1 22 4.4 22 8.0 999.9 84.0 66.0 0.00D 999.9 100000 724050 13743 19890814 77.2 24 70.3 24 1019.2 24 1016.8 24 5.7 24 4.9 24 8.9 999.9 84.9 70.0 0.00G 999.9 110000 724050 13743 19890815 76.0 23 70.3 23 1016.7 23 1014.3 23 7.6 23 5.3 23 14.0 999.9 84.9 71.1 0.00G 999.9 110000 724050 13743 19890816 80.2 22 68.4 22 1013.2 22 1010.8 22 7.1 21 5.8 22 8.0 999.9 90.0 71.1 0.00G 999.9 000000 724050 13743 19890817 79.2 23 68.6 23 1015.7 23 1013.3 23 4.3 23 6.2 23 17.1 26.0 91.0 71.1* 0.00G 999.9 110010 724050 13743 19890818 72.3 23 66.2 23 1021.6 23 1019.1 23 6.1 23 8.5 23 12.0 999.9 88.0 69.1 0.95G 999.9 110000 724050 13743 19890819 72.3 24 66.2 24 1020.1 24 1017.7 24 6.6 24 8.7 24 12.0 999.9 79.0* 66.9 0.03G 999.9 110000 724050 13743 19890820 77.2 23 69.7 23 1017.6 23 1015.2 23 6.5 23 8.2 23 12.0 999.9 87.1* 66.9 0.00G 999.9 100000 724050 13743 19890821 78.8 24 72.0 24 1015.7 24 1013.3 24 6.0 24 8.6 24 12.0 999.9 88.0 70.0 0.15G 999.9 110000 724050 13743 19890822 80.2 23 71.0 23 1015.9 23 1013.5 23 7.2 23 6.2 23 13.0 999.9 88.0* 72.0 0.14G 999.9 000000 724050 13743 19890823 82.8 22 71.8 22 1012.8 22 1010.4 22 7.6 22 8.7 22 13.0 999.9 91.9* 72.0 0.00G 999.9 010000 724050 13743 19890824 79.2 23 66.3 23 1014.1 23 1011.7 23 9.8 23 7.8 23 12.0 999.9 93.0 73.0 0.00G 999.9 000000 724050 13743 19890825 74.3 21 61.4 21 1017.9 21 1015.5 21 11.0 21 6.4 21 12.0 999.9 82.9* 66.0 0.00C 999.9 000000 724050 13743 19890826 73.6 23 65.3 23 1017.7 23 1015.3 23 9.7 23 5.9 23 8.9 999.9 82.9 62.1 0.00G 999.9 000000 724050 13743 19890827 74.8 22 67.8 22 1018.4 22 1016.0 22 6.0 22 4.8 22 8.0 999.9 82.9* 66.9 0.00G 999.9 100000 724050 13743 19890828 78.9 24 70.7 24 1019.4 24 1017.0 24 6.3 24 6.8 24 9.9 999.9 88.0* 72.0 0.00D 999.9 100000 724050 13743 19890829 80.1 24 73.7 24 1016.6 24 1014.2 24 5.6 24 7.9 24 11.1 999.9 88.0 72.0 0.00G 999.9 100000 724050 13743 19890830 82.0 23 69.8 23 1011.8 23 1009.4 23 7.2 23 8.7 23 13.0 999.9 91.9* 73.9 0.00G 999.9 110000 724050 13743 19890831 78.2 22 56.2 22 1016.6 22 1014.2 22 13.6 22 7.0 22 12.0 999.9 91.9 66.9 0.00C 999.9 000000 724050 13743 19890901 77.1 24 64.9 24 1015.1 24 1012.7 24 10.4 24 10.5 24 17.1 22.0 87.1 66.9 0.00G 999.9 000000 724050 13743 19890902 80.9 24 65.9 24 1012.9 24 1010.5 24 10.9 24 8.8 24 14.0 999.9 88.0* 69.1 0.00G 999.9 010000 724050 13743 19890903 72.1 24 52.6 24 1022.4 24 1020.0 24 16.6 24 9.6 24 14.0 999.9 89.1 63.0 0.00G 999.9 000000 724050 13743 19890904 68.9 23 54.9 23 1027.1 23 1024.7 23 18.7 23 9.1 23 17.1 20.0 80.1 60.1 0.00D 999.9 000000 724050 13743 19890905 68.9 24 57.5 24 1028.1 24 1025.7 24 14.8 24 8.9 24 13.0 999.9 79.0 60.1 0.00G 999.9 000000 724050 13743 19890906 71.7 24 63.0 24 1025.5 24 1023.1 24 10.0 24 7.0 24 9.9 999.9 81.0 61.0 0.00G 999.9 000000 724050 13743 19890907 72.6 24 62.3 24 1021.6 24 1019.2 24 7.9 24 6.1 24 12.0 999.9 82.0 66.0 0.00G 999.9 100000 724050 13743 19890908 73.7 24 62.4 24 1018.4 24 1016.0 24 6.4 24 5.4 24 9.9 999.9 84.0 64.9 0.00G 999.9 100000 724050 13743 19890909 77.0 24 67.2 24 1015.4 24 1013.0 24 5.9 24 6.5 24 9.9 999.9 89.1* 64.9 0.00G 999.9 000000 724050 13743 19890910 82.0 24 71.3 24 1013.0 24 1010.6 24 4.9 24 7.1 24 9.9 999.9 95.0 69.1 0.00G 999.9 100000 724050 13743 19890911 83.1 22 72.3 22 1013.8 22 1011.4 22 5.9 22 8.2 22 13.0 999.9 96.1 72.0 0.00G 999.9 100000 724050 13743 19890912 76.6 23 66.7 23 1018.3 23 1015.9 23 8.2 23 8.4 23 13.0 999.9 93.9 70.0 0.03G 999.9 110000 724050 13743 19890913 75.1 23 67.1 23 1020.5 23 1018.1 23 6.6 23 7.8 23 14.0 21.0 81.0 70.0 0.01G 999.9 110000 724050 13743 19890914 76.4 24 72.5 24 1017.1 24 1014.7 24 4.6 24 5.6 24 12.0 999.9 84.9 72.0 1.63G 999.9 110000 724050 13743 19890915 77.1 24 69.5 24 1013.8 24 1011.4 24 9.5 24 9.4 24 13.0 999.9 86.0 72.0 0.01G 999.9 100000 724050 13743 19890916 72.0 23 68.1 23 1015.5 23 1013.1 23 7.6 23 11.2 23 20.0 999.9 82.9 66.9 1.38G 999.9 110010 724050 13743 19890917 72.1 24 65.0 24 1014.7 24 1012.4 24 6.6 24 7.9 24 15.0 18.1 80.1* 66.0 0.46G 999.9 110000 724050 13743 19890918 67.6 24 58.8 24 1020.0 24 1017.6 24 9.2 24 10.6 24 13.0 999.9 80.1 60.1 0.00G 999.9 100000 724050 13743 19890919 65.9 24 62.2 24 1020.9 24 1018.5 24 6.3 24 14.4 24 19.0 24.1 75.0 60.1 0.03G 999.9 110000 724050 13743 19890920 68.2 23 66.9 22 1019.7 23 1017.3 23 5.0 23 7.7 23 9.9 999.9 77.0* 63.0 0.87G 999.9 110000 724050 13743 19890921 78.6 24 74.2 24 1021.3 24 1018.9 24 7.0 24 6.5 24 13.0 999.9 87.1 64.0 0.38G 999.9 110000 724050 13743 19890922 79.2 23 73.7 23 1013.7 22 1011.3 22 9.7 23 13.7 23 22.9 29.9 89.1 73.9 0.10G 999.9 110000 724050 13743 19890923 72.0 24 64.5 24 1007.5 24 1005.1 24 12.4 24 17.7 24 22.9 34.0 86.0 53.1* 0.06G 999.9 110010 724050 13743 19890924 54.4 24 38.9 24 1025.1 24 1022.7 24 18.7 24 9.3 24 16.9 22.0 64.9* 46.0 0.18G 999.9 000000 724050 13743 19890925 56.7 24 47.5 24 1026.8 24 1024.4 24 14.0 24 5.9 24 8.9 999.9 66.0 46.0 0.00G 999.9 010000 724050 13743 19890926 63.3 24 56.6 24 1015.6 24 1013.2 24 7.6 24 10.7 24 17.1 999.9 75.0* 48.0 1.51G 999.9 110000 724050 13743 19890927 58.3 24 40.4 24 1027.3 24 1024.9 24 18.0 24 11.1 24 16.9 22.0 73.0 48.9 1.01G 999.9 000000 724050 13743 19890928 56.0 23 45.8 23 1030.4 23 1028.0 23 13.0 23 6.4 23 12.0 999.9 66.9* 46.0 0.00G 999.9 100000 724050 13743 19890929 61.0 23 54.2 23 1021.7 23 1019.3 23 11.5 23 9.0 23 12.0 999.9 73.9* 46.0 0.00G 999.9 000000 724050 13743 19890930 65.8 24 56.4 24 1022.1 24 1019.7 24 10.7 24 8.4 24 9.9 999.9 73.9 52.0 0.00G 999.9 000000 724050 13743 19891001 62.8 23 59.0 23 1022.8 23 1020.5 23 7.2 23 7.3 22 11.1 999.9 70.0 57.9 0.00G 999.9 110000 724050 13743 19891002 68.2 24 66.3 24 1013.9 24 1011.5 24 5.3 24 5.8 24 8.0 999.9 75.0* 57.9 1.83G 999.9 110000 724050 13743 19891003 69.3 24 60.5 24 1012.4 24 1010.0 24 9.9 24 10.1 24 18.1 22.9 75.9 63.0 0.80G 999.9 100000 724050 13743 19891004 56.2 23 38.6 23 1017.3 23 1014.8 23 18.1 23 12.9 23 18.1 24.1 77.0 46.9 0.00G 999.9 000000 724050 13743 19891005 58.1 23 36.4 23 1017.0 23 1014.6 23 15.8 23 11.0 23 14.0 21.0 69.1* 46.0 0.00G 999.9 000000 724050 13743 19891006 61.0 23 52.2 23 1011.6 23 1009.2 23 11.7 23 8.8 23 12.0 999.9 71.1* 46.0 0.00G 999.9 000000 724050 13743 19891007 62.8 24 45.8 24 1013.2 24 1010.8 24 14.4 24 12.9 24 20.0 24.1 73.0 54.0 0.00G 999.9 010000 724050 13743 19891008 52.1 24 38.7 24 1016.0 24 1013.6 24 11.6 24 8.5 24 13.0 999.9 64.9 43.0 0.00G 999.9 010000 724050 13743 19891009 50.1 24 37.3 24 1019.6 24 1017.2 24 18.5 24 12.3 24 19.0 21.0 60.1 42.1 0.00G 999.9 000000 724050 13743 19891010 51.4 23 40.7 23 1022.8 23 1020.4 23 14.5 23 9.6 23 15.9 20.0 63.0 42.1 0.00G 999.9 000000 724050 13743 19891011 57.3 24 46.3 24 1020.2 24 1017.8 24 11.7 24 9.6 24 15.9 22.0 70.0* 43.0 0.00G 999.9 000000 724050 13743 19891012 61.3 23 51.1 23 1021.4 23 1019.0 23 10.0 23 9.0 23 16.9 22.0 77.0* 45.0 0.00G 999.9 100000 724050 13743 19891013 66.4 23 58.0 23 1019.9 23 1017.5 23 7.5 23 9.0 23 11.1 15.9 82.9* 48.9 0.00G 999.9 100000 724050 13743 19891014 67.3 24 62.9 24 1018.9 24 1016.5 24 5.0 24 7.4 24 13.0 999.9 82.9 55.0 0.00G 999.9 100000 724050 13743 19891015 68.8 24 63.3 24 1017.3 24 1014.9 24 5.5 24 8.3 24 12.0 999.9 82.0* 61.0 0.00G 999.9 100000 724050 13743 19891016 70.6 22 62.1 22 1017.4 22 1015.0 22 7.0 22 9.8 22 17.1 20.0 82.9* 61.0 0.00G 999.9 100000 724050 13743 19891017 69.6 24 65.6 24 1014.2 24 1011.8 24 8.1 24 12.1 24 20.0 27.0 82.9 61.0 0.30G 999.9 110000 724050 13743 19891018 60.8 24 59.9 24 1016.3 24 1013.9 24 4.2 24 10.9 24 19.0 22.9 71.1 52.0* 0.62G 999.9 110000 724050 13743 19891019 50.1 24 48.4 24 1015.7 24 1013.4 24 3.6 24 16.0 24 20.0 999.9 64.9 46.0 1.72G 999.9 110000 724050 13743 19891020 53.7 21 48.9 21 1010.6 21 1008.2 21 8.0 21 10.6 21 15.9 21.0 57.9 46.0 0.86G 999.9 110000 724050 13743 19891021 47.4 24 33.0 24 1012.6 24 1010.2 24 15.9 24 12.9 24 21.0 28.0 63.9 37.9 0.31G 999.9 000000 724050 13743 19891022 55.4 23 34.5 23 1020.4 23 1018.0 23 15.8 23 12.4 23 15.9 22.0 64.9* 37.9 0.00G 999.9 000000 724050 13743 19891023 54.1 23 37.7 23 1030.4 23 1028.0 23 15.3 23 7.0 23 11.1 999.9 69.1* 42.1 0.00G 999.9 000000 724050 13743 19891024 54.5 24 43.3 24 1031.1 24 1028.6 24 10.6 24 5.3 24 8.9 999.9 71.1* 42.1 0.00G 999.9 000000 724050 13743 19891025 55.3 23 43.3 23 1029.0 23 1026.5 23 9.5 23 4.1 23 7.0 999.9 72.0* 41.0 0.00G 999.9 000000 724050 13743 19891026 59.3 24 50.6 24 1028.1 24 1025.6 24 7.7 24 3.2 24 7.0 999.9 73.9 41.0 0.00G 999.9 100000 724050 13743 19891027 60.5 24 52.0 24 1027.9 24 1025.4 24 7.1 24 3.8 24 7.0 999.9 75.0 48.0 0.00G 999.9 100000 724050 13743 19891028 61.4 24 54.2 24 1026.0 24 1023.6 24 6.8 24 3.9 24 7.0 999.9 78.1* 48.0 0.00G 999.9 100000 724050 13743 19891029 61.5 24 56.9 24 1025.5 24 1023.1 24 4.2 24 4.4 24 8.0 999.9 78.1 51.1 0.00G 999.9 100000 724050 13743 19891030 59.8 24 56.1 24 1024.3 24 1021.9 24 4.7 24 5.2 24 8.9 999.9 73.9* 52.0 0.00G 999.9 100000 724050 13743 19891031 63.7 24 62.2 24 1016.3 24 1013.9 24 4.0 24 6.8 24 9.9 999.9 75.0 52.0 0.28G 999.9 110000 724050 13743 19891101 57.3 23 45.4 23 1018.6 23 1016.2 23 13.4 23 10.3 23 18.1 22.9 68.0 51.1 0.02G 999.9 110000 724050 13743 19891102 51.4 22 37.2 22 1023.1 22 1020.7 22 12.0 22 6.8 22 12.0 999.9 60.1 46.0 0.00G 999.9 010000 724050 13743 19891103 49.9 21 43.0 21 1017.2 21 1014.8 21 8.6 21 8.5 21 17.1 25.1 55.9 46.0 0.16G 999.9 110000 724050 13743 19891104 43.7 22 29.7 22 1025.3 22 1022.9 22 14.8 22 7.4 22 12.0 999.9 54.0 34.0 0.03G 999.9 000000 724050 13743 19891105 49.1 23 41.9 23 1024.7 23 1022.3 23 10.0 23 6.2 23 14.0 999.9 61.0* 34.0 0.00G 999.9 100000 724050 13743 19891106 55.8 24 48.8 24 1018.6 24 1016.1 24 9.0 24 11.7 24 16.9 999.9 61.0 39.9 99.99 999.9 010000 724050 13743 19891107 54.4 24 52.9 24 1015.5 24 1013.1 24 3.2 24 5.6 24 9.9 999.9 61.0 48.9 0.00G 999.9 100000 724050 13743 19891108 56.2 24 54.7 24 1010.8 24 1008.4 24 3.8 24 6.7 24 12.0 999.9 60.1 48.9 0.08G 999.9 110000 724050 13743 19891109 60.6 21 55.8 21 1003.4 21 1001.0 21 7.4 21 8.8 21 24.1 35.0 66.0 53.1 0.51G 999.9 110000 724050 13743 19891110 50.6 23 32.3 23 1009.0 23 1006.6 23 17.5 23 10.4 23 18.1 27.0 66.0 39.9 0.03G 999.9 000000 724050 13743 19891111 47.8 24 32.6 24 1017.1 24 1014.7 24 15.5 24 9.3 24 18.1 25.1 60.1* 35.1 0.00G 999.9 000000 724050 13743 19891112 58.0 24 37.9 24 1016.3 24 1013.9 24 14.7 24 9.4 24 20.0 28.9 66.0 52.0* 0.00G 999.9 000000 724050 13743 19891113 51.7 24 37.5 24 1026.7 24 1024.3 24 15.1 24 6.7 24 12.0 999.9 66.0 39.9 0.00G 999.9 000000 724050 13743 19891114 60.7 24 55.2 24 1019.9 24 1017.5 24 9.7 24 8.5 24 14.0 999.9 75.9* 39.9 0.00G 999.9 100000 724050 13743 19891115 64.9 23 58.7 23 1014.2 23 1011.7 23 9.3 23 11.1 23 14.0 999.9 75.9 52.0 0.06G 999.9 010000 724050 13743 19891116 60.3 23 49.6 23 999.1 23 996.7 23 14.5 23 16.3 23 26.0 40.0 73.9 48.9* 1.20G 999.9 010010 724050 13743 19891117 40.9 24 19.4 24 1013.9 24 1011.5 24 16.9 24 10.9 24 15.9 22.0 46.0* 35.1 0.59G 999.9 000000 724050 13743 19891118 40.5 23 23.9 23 1019.1 23 1016.7 23 16.3 23 10.5 23 18.1 28.0 53.1* 34.0 0.00G 999.9 000000 724050 13743 19891119 35.9 24 17.5 24 1028.1 24 1025.7 24 14.9 24 11.1 24 17.1 20.0 54.0 30.0 0.00G 999.9 000000 724050 13743 19891120 51.3 23 29.4 23 1008.4 23 1006.0 23 15.7 23 11.6 23 17.1 28.0 66.9* 30.0 0.00G 999.9 000000 724050 13743 19891121 45.1 24 22.8 24 1003.2 24 1000.8 24 17.7 24 20.8 24 31.1 45.1 66.9 36.0* 0.00G 999.9 000000 724050 13743 19891122 32.8 23 16.9 23 1019.2 23 1016.8 23 14.8 23 8.4 23 13.0 999.9 46.9 28.9 0.00G 999.9 101000 724050 13743 19891123 30.3 24 23.5 24 1014.9 24 1012.5 24 8.9 24 12.7 24 18.1 24.1 36.0 27.0 0.35G 3.9 101000 724050 13743 19891124 32.1 22 16.5 22 1024.2 22 1021.8 22 14.6 22 8.5 22 13.0 17.1 39.9 23.0 0.00D 2.0 000000 724050 13743 19891125 37.8 23 26.0 23 1022.7 23 1020.2 23 12.6 23 10.0 23 15.9 999.9 48.9* 23.0 0.00G 1.2 000000 724050 13743 19891126 48.2 24 37.5 24 1013.3 24 1010.9 24 10.4 24 8.6 24 13.0 18.1 60.1* 32.0 0.00G 999.9 010000 724050 13743 19891127 44.6 23 36.2 23 1021.4 23 1019.0 23 12.3 23 5.7 23 9.9 999.9 60.1 36.0 0.00G 999.9 110000 724050 13743 19891128 54.7 24 46.1 24 1011.2 24 1008.8 24 10.6 24 13.4 24 20.0 26.0 66.0* 36.0 0.01G 999.9 110000 724050 13743 19891129 42.7 23 24.4 23 1019.3 23 1016.9 23 14.1 23 15.4 23 20.0 27.0 66.0 34.0* 0.00G 999.9 000000 724050 13743 19891130 34.7 24 17.8 24 1018.8 24 1016.4 24 15.7 24 9.0 24 15.0 25.1 48.9* 26.1 0.00G 999.9 000000 724050 13743 19891201 39.5 24 23.6 24 1021.0 24 1018.6 24 13.9 24 7.4 24 14.0 999.9 50.0 26.1 0.00G 999.9 000000 724050 13743 19891202 38.2 24 29.1 24 1019.9 24 1017.5 24 10.9 24 7.9 24 15.9 19.0 53.1* 28.0 0.00G 999.9 000000 724050 13743 19891203 39.2 12 18.3 12 1007.5 11 1005.1 11 15.0 12 15.1 12 20.0 26.0 54.0 28.0 0.00G 999.9 000000 724050 13743 19891204 26.7 24 6.3 24 1014.1 24 1011.7 24 17.0 24 13.9 24 20.0 28.0 42.1 21.0 0.00G 999.9 000000 724050 13743 19891205 35.0 24 21.1 24 1007.1 24 1004.7 24 13.0 24 5.0 24 12.0 999.9 39.9* 21.0 0.00G 999.9 001000 724050 13743 19891206 38.7 24 33.4 24 1008.2 24 1005.9 24 7.9 24 4.8 24 8.0 999.9 48.9* 30.9 0.01G 999.9 010000 724050 13743 19891207 42.3 24 27.5 24 1017.5 24 1015.1 24 15.1 24 11.5 24 18.1 26.0 51.1 33.1 0.00D 999.9 000000 724050 13743 19891208 28.5 23 19.1 23 1029.4 23 1027.0 23 6.5 23 11.3 23 14.0 999.9 35.1* 24.1 0.14G 2.8 101000 724050 13743 19891209 24.3 24 14.5 24 1022.6 24 1020.2 24 12.8 24 12.2 24 15.0 999.9 33.1 21.0 0.18G 3.5 101000 724050 13743 19891210 26.9 24 13.1 24 1017.0 24 1014.6 24 13.2 24 8.2 24 15.9 999.9 35.1* 19.0 0.00G 3.5 000000 724050 13743 19891211 30.5 23 27.9 23 1016.5 23 1014.2 23 5.8 23 5.0 23 8.0 999.9 36.0 19.0 0.00G 2.0 100000 724050 13743 19891212 34.0 24 30.7 24 1017.6 24 1015.2 24 4.3 24 6.7 24 11.1 999.9 35.1 24.1 0.10G 2.0 101000 724050 13743 19891213 32.4 24 28.9 24 1013.8 24 1011.4 24 3.5 24 9.5 24 12.0 999.9 35.1 30.9 0.18G 5.9 101000 724050 13743 19891214 27.0 24 19.3 24 1018.6 24 1016.2 24 8.9 24 7.5 24 13.0 999.9 35.1 18.0 0.01G 4.7 100000 724050 13743 19891215 28.6 22 21.5 22 1017.8 22 1015.4 22 9.1 22 7.0 22 12.0 999.9 35.1* 18.0 0.00G 3.5 100000 724050 13743 19891216 24.1 24 9.6 24 1015.2 24 1012.8 24 16.3 24 13.7 24 20.0 28.9 37.9 17.1 0.04G 3.5 101000 724050 13743 19891217 18.6 24 3.2 24 1025.3 24 1022.9 24 14.5 24 8.4 24 14.0 999.9 26.1 14.0 0.00G 3.5 000000 724050 13743 19891218 21.2 24 5.3 24 1027.3 24 1024.9 24 15.4 24 8.6 24 14.0 999.9 27.1* 14.0 0.00G 3.1 000000 724050 13743 19891219 21.8 23 12.2 23 1026.5 23 1024.1 23 10.1 23 4.7 23 8.0 999.9 28.9 15.1 0.00G 2.8 101000 724050 13743 19891220 25.7 23 14.5 23 1021.1 23 1018.7 23 9.8 23 9.4 23 15.9 20.0 31.1* 15.1 0.00G 2.4 001000 724050 13743 19891221 23.9 23 9.0 23 1022.2 23 1019.8 23 13.0 23 8.7 23 18.1 999.9 30.9 17.1 0.00G 2.4 000000 724050 13743 19891222 12.0 22 -4.9 22 1031.9 22 1029.4 22 15.8 22 15.1 22 20.0 24.1 28.0 5.0 0.00G 2.0 000000 724050 13743 19891223 13.6 24 1.0 24 1035.5 24 1033.1 24 15.4 24 13.6 24 15.9 22.0 21.2* 5.0 0.00G 2.0 000000 724050 13743 19891224 16.7 24 3.7 24 1030.2 24 1027.8 24 16.5 24 14.6 24 18.1 999.9 23.2* 7.0 0.00G 2.0 000000 724050 13743 19891225 19.3 24 5.9 24 1019.7 24 1017.3 24 13.8 24 8.8 24 13.0 999.9 27.1* 10.0 0.00G 2.0 001000 724050 13743 19891226 29.4 22 17.7 22 1008.2 22 1005.8 22 9.6 22 10.0 22 20.0 27.0 39.0 10.9 0.02G 2.0 101000 724050 13743 19891227 19.2 24 3.4 24 1022.0 24 1019.6 24 13.4 23 10.1 24 18.1 24.1 39.0 12.9 0.00D 2.0 001000 724050 13743 19891228 30.0 24 20.9 24 1018.6 24 1016.2 24 13.3 24 6.2 24 11.1 999.9 43.0* 12.9 0.00G 1.6 001000 724050 13743 19891229 31.1 24 24.2 24 1025.4 24 1023.0 24 9.0 24 6.0 24 8.9 999.9 43.0 23.0 0.00G 0.8 000000 724050 13743 19891230 34.9 24 29.9 24 1022.1 24 1019.7 24 6.8 24 5.4 24 8.9 999.9 39.9 25.0 0.02G 0.4 110000 724050 13743 19891231 35.4 23 33.2 23 1017.2 23 1014.8 23 2.2 23 5.9 23 9.9 999.9 43.0* 32.0 0.20G 999.9 110000 fluids-1.0.22/tests/gsod/1976/0000755000175000017500000000000014302004506015106 5ustar nileshnileshfluids-1.0.22/tests/gsod/1976/724050-13743.op0000644000175000017500000014350514302004506016676 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19760101 40.8 24 32.9 24 1010.3 24 1007.8 24 11.8 24 13.8 24 16.9 22.9 46.0 35.1 2.13G 999.9 111000 724050 13743 19760102 34.3 24 23.5 24 1025.4 24 1023.0 24 17.4 24 5.5 24 8.9 999.9 45.0 30.0 0.00I 999.9 000000 724050 13743 19760103 40.7 23 33.8 23 1015.4 23 1013.0 23 9.4 23 9.6 23 16.9 25.8 46.9* 30.0 0.04G 999.9 110000 724050 13743 19760104 34.1 24 15.0 24 1017.7 24 1015.3 24 22.0 24 13.8 24 17.9 26.8 48.0 27.1* 0.31G 999.9 000000 724050 13743 19760105 24.0 23 7.0 23 1031.2 23 1028.7 23 21.2 23 10.4 23 15.0 19.8 37.9 18.0 0.00G 999.9 000000 724050 13743 19760106 27.6 24 12.8 24 1033.6 24 1031.2 24 17.8 24 5.0 24 10.9 999.9 37.9* 18.0 0.00I 999.9 000000 724050 13743 19760107 33.5 23 23.1 23 1023.6 23 1021.2 23 14.2 23 8.9 23 12.8 999.9 39.0* 19.0 0.04A 999.9 110000 724050 13743 19760108 36.7 24 30.2 24 1009.8 24 1007.4 24 7.6 24 9.2 24 18.8 24.9 39.9 27.1* 0.47D 999.9 111000 724050 13743 19760109 22.5 24 3.4 24 1024.0 24 1021.6 24 22.2 24 11.5 24 19.8 22.9 39.9 14.0 0.00I 999.9 000000 724050 13743 19760110 25.1 24 2.9 24 1031.7 24 1029.3 24 21.3 24 5.6 24 9.9 999.9 34.0* 14.0 0.00I 999.9 000000 724050 13743 19760111 33.5 24 19.8 24 1024.7 24 1022.3 24 14.1 24 4.7 24 8.0 999.9 37.0* 17.1 0.00A 999.9 011000 724050 13743 19760112 36.6 24 24.4 24 1018.4 24 1015.9 24 9.5 24 7.2 23 14.0 23.9 41.0 28.9 0.05B 999.9 010000 724050 13743 19760113 36.4 23 26.9 23 1022.5 23 1020.1 23 9.9 23 6.0 23 14.0 999.9 46.9* 27.0 99.99 999.9 010000 724050 13743 19760114 48.2 24 29.4 24 1013.0 24 1010.6 24 18.5 24 15.3 24 23.9 44.9 55.0 43.0* 0.08G 999.9 010000 724050 13743 19760115 37.7 23 12.5 23 1024.5 23 1022.1 23 21.0 23 7.7 23 14.0 15.9 54.0 28.9 0.00G 999.9 000000 724050 13743 19760116 38.9 24 22.1 24 1015.7 24 1013.3 24 19.5 24 6.2 24 11.8 999.9 46.0* 28.9 0.00I 999.9 000000 724050 13743 19760117 33.1 24 14.7 24 1010.9 24 1008.5 24 19.5 24 13.3 24 21.0 23.9 46.0 25.2* 0.00I 999.9 000000 724050 13743 19760118 18.6 24 -3.1 24 1025.3 24 1022.9 24 21.7 24 15.0 24 18.8 28.0 24.3* 10.9 0.24A 999.9 000000 724050 13743 19760119 21.0 24 1.8 24 1037.0 24 1034.5 24 16.9 24 6.4 24 10.9 999.9 31.1* 10.9 0.24A 999.9 000000 724050 13743 19760120 29.6 23 15.6 23 1027.0 23 1024.6 23 12.9 23 7.6 23 15.0 19.8 33.1* 12.0 99.99 999.9 011000 724050 13743 19760121 33.3 24 26.4 24 1015.5 24 1013.1 24 9.9 24 5.4 24 11.8 999.9 41.0* 27.0 0.02A 999.9 001000 724050 13743 19760122 32.2 23 12.6 23 1010.4 23 1008.0 23 21.1 23 15.3 23 19.8 29.9 37.0* 28.0 0.01G 999.9 000000 724050 13743 19760123 23.7 24 6.0 24 1017.2 24 1014.8 23 22.6 24 8.9 24 16.9 26.8 37.0 7.0 0.00G 999.9 000000 724050 13743 19760124 33.0 23 20.6 23 1009.8 23 1007.4 23 15.0 23 4.7 23 8.0 999.9 52.0* 17.1 0.00I 999.9 000000 724050 13743 19760125 35.8 24 26.2 24 1022.4 24 1020.0 24 6.3 24 5.9 24 9.9 999.9 53.1 23.0 0.00I 999.9 000000 724050 13743 19760126 41.6 23 38.1 23 1023.9 23 1021.5 23 1.4 23 4.8 23 8.9 999.9 52.0* 30.9 0.24G 999.9 110000 724050 13743 19760127 49.5 24 46.5 24 1019.2 24 1016.8 24 4.4 24 7.9 24 12.8 999.9 59.0 37.0 1.18G 999.9 110000 724050 13743 19760128 35.5 23 23.2 23 1017.9 23 1015.5 23 13.1 23 12.5 23 16.9 23.9 41.0* 29.1* 0.75G 999.9 111000 724050 13743 19760129 40.7 23 25.4 23 1010.9 23 1008.5 23 18.3 23 8.5 23 14.0 19.8 53.1* 30.0 0.00G 999.9 001000 724050 13743 19760130 37.9 24 24.9 24 1010.0 24 1007.6 24 15.9 24 6.5 24 10.9 999.9 54.0 33.1 99.99 999.9 001000 724050 13743 19760131 36.1 23 29.7 23 1015.1 23 1012.7 23 9.3 23 4.5 23 8.9 999.9 39.9 26.1 0.00B 999.9 000000 724050 13743 19760201 41.6 24 35.9 23 1006.1 24 1003.7 24 8.7 24 4.9 24 7.0 999.9 52.0* 33.1 0.12B 999.9 010000 724050 13743 19760202 28.5 22 16.2 22 999.1 22 996.7 22 12.3 22 15.6 22 26.8 37.9 52.0 10.9 0.59G 999.9 111000 724050 13743 19760203 26.2 23 12.0 23 1021.3 23 1019.0 23 17.3 23 3.4 23 5.8 999.9 39.0 10.9 0.00G 999.9 001000 724050 13743 19760204 34.8 23 25.5 23 1021.8 23 1019.4 23 11.5 23 3.5 23 5.8 999.9 51.1* 19.0 0.00I 999.9 000000 724050 13743 19760205 40.3 24 23.0 24 1027.5 24 1025.1 24 15.4 23 7.3 24 9.9 999.9 51.1 24.1 0.00I 999.9 000000 724050 13743 19760206 32.4 24 23.7 24 1016.3 24 1013.9 24 11.7 24 8.4 24 11.8 999.9 43.0 31.1* 0.02G 999.9 011000 724050 13743 19760207 28.4 24 10.3 24 1017.4 24 1014.9 24 17.2 24 10.7 24 15.9 22.9 34.0 23.0 0.00G 999.9 000000 724050 13743 19760208 36.2 22 13.4 22 1006.8 22 1004.4 22 20.8 22 9.9 22 12.8 24.9 46.0* 23.0 0.00I 999.9 000000 724050 13743 19760209 35.7 23 16.3 23 1015.7 23 1013.3 23 20.7 23 9.3 23 15.0 999.9 46.0 25.0 0.00A 999.9 000000 724050 13743 19760210 38.6 24 21.6 24 1019.3 24 1016.8 24 17.8 24 7.4 24 12.8 999.9 55.0* 27.0 0.00I 999.9 000000 724050 13743 19760211 53.7 24 30.5 24 1007.5 24 1005.1 24 17.0 24 11.0 24 18.8 28.0 60.1 46.9* 0.00A 999.9 010000 724050 13743 19760212 45.6 24 21.1 24 1023.7 24 1021.3 24 21.7 24 7.7 24 12.8 21.0 60.1 36.0 0.00I 999.9 000000 724050 13743 19760213 50.3 24 33.1 24 1019.5 24 1017.1 24 17.4 24 8.1 24 14.0 999.9 64.0* 36.0 0.00A 999.9 010000 724050 13743 19760214 49.2 24 30.5 24 1026.7 24 1024.3 24 14.5 24 8.7 24 15.0 999.9 66.0 39.0 0.08G 999.9 010000 724050 13743 19760215 41.4 24 26.4 24 1031.1 24 1028.7 24 18.6 24 10.1 24 22.0 35.0 57.0* 30.9 0.00G 999.9 000000 724050 13743 19760216 57.1 24 45.1 24 1016.4 24 1014.0 24 10.3 24 8.4 24 16.9 31.9 73.0* 46.0* 0.00I 999.9 000000 724050 13743 19760217 67.9 23 46.1 23 1010.0 23 1007.6 23 14.7 23 10.1 23 14.0 22.0 79.0* 45.0 0.00B 999.9 010000 724050 13743 19760218 62.7 24 42.7 24 1009.5 24 1007.0 24 17.2 24 8.9 24 16.9 26.8 79.0 46.0 99.99 999.9 010000 724050 13743 19760219 57.8 21 39.1 21 1005.5 21 1003.1 21 21.2 21 10.5 21 15.0 24.9 75.9 48.9 0.24G 999.9 010000 724050 13743 19760220 53.9 22 28.0 22 1017.3 22 1014.9 22 23.0 22 11.5 22 18.8 24.9 66.0 44.1 0.00G 999.9 000000 724050 13743 19760221 50.9 21 36.0 21 1024.0 21 1021.6 21 18.9 21 7.7 21 16.9 999.9 68.0* 39.0 0.00I 999.9 000000 724050 13743 19760222 58.2 23 46.7 21 1006.1 23 1003.8 23 13.1 23 11.6 22 17.9 29.9 69.1 39.0 0.20G 999.9 010000 724050 13743 19760223 37.2 24 13.9 24 1020.1 24 1017.7 24 22.0 24 13.7 24 17.9 26.8 45.0* 30.9 0.35G 999.9 000000 724050 13743 19760224 41.9 23 20.9 23 1027.9 23 1025.5 23 19.9 21 8.0 23 12.8 19.8 63.0* 30.0 0.00G 999.9 000000 724050 13743 19760225 52.3 22 32.2 22 1024.7 22 1022.3 22 18.8 22 6.2 22 10.9 999.9 66.9* 30.0 0.00I 999.9 000000 724050 13743 19760226 55.4 22 38.0 22 1021.4 22 1018.9 22 15.5 22 7.1 22 19.8 999.9 71.1 37.0 0.00I 999.9 000000 724050 13743 19760227 58.5 22 36.0 22 1017.9 22 1015.4 22 12.2 22 7.3 22 11.8 999.9 71.1* 45.0 0.00A 999.9 000000 724050 13743 19760228 57.6 22 33.8 22 1015.4 22 1013.0 22 17.6 22 6.1 22 15.9 999.9 73.9 44.1 0.00I 999.9 000000 724050 13743 19760229 56.1 23 34.5 23 1018.3 23 1015.9 23 15.5 23 6.4 23 16.9 28.0 77.0* 43.0 0.00I 999.9 000000 724050 13743 19760301 64.4 22 43.6 22 1016.9 22 1014.5 22 12.6 22 7.7 22 14.0 999.9 80.1* 43.0 0.00I 999.9 000000 724050 13743 19760302 50.2 23 42.9 23 1021.8 23 1019.3 23 6.2 23 6.9 23 12.8 999.9 61.0* 46.9* 0.00B 999.9 110000 724050 13743 19760303 46.6 22 41.9 22 1022.0 22 1019.6 22 3.9 22 6.8 22 9.9 999.9 51.1* 44.1* 0.00C 999.9 110000 724050 13743 19760304 49.5 23 44.1 23 1023.3 23 1020.9 23 3.5 23 5.2 23 11.8 999.9 55.9* 44.1* 0.00A 999.9 100000 724050 13743 19760305 59.0 24 50.0 24 1017.2 24 1014.9 24 8.1 24 8.8 24 24.9 32.8 82.9* 46.0 0.00I 999.9 100000 724050 13743 19760306 56.5 23 36.1 23 1016.2 23 1013.8 23 21.2 23 10.1 23 12.8 22.0 64.0* 46.9 0.01A 999.9 010000 724050 13743 19760307 47.4 22 18.0 22 1017.5 22 1015.1 22 21.7 22 7.7 22 15.9 22.0 64.0 32.0 0.00I 999.9 000000 724050 13743 19760308 49.4 22 24.4 22 1018.0 22 1015.6 22 20.6 22 5.9 22 9.9 999.9 63.0 39.9* 0.00I 999.9 000000 724050 13743 19760309 36.8 24 29.2 22 1015.9 23 1013.1 24 6.3 24 10.6 24 12.8 999.9 52.0 9999.9 0.16G 999.9 011000 724050 13743 19760310 35.3 22 27.1 22 1014.9 22 1012.5 22 11.7 22 8.5 22 15.0 999.9 45.0 30.9 0.43G 999.9 001000 724050 13743 19760311 44.4 22 29.7 22 1019.9 22 1017.5 22 9.3 22 9.4 22 16.9 25.8 53.1* 30.9 0.00G 999.9 000000 724050 13743 19760312 42.1 24 28.0 24 1027.8 24 1025.4 24 14.5 24 5.5 24 8.0 999.9 54.0 37.0 0.01A 999.9 011000 724050 13743 19760313 57.9 24 44.5 24 1007.5 24 1005.1 24 14.5 24 13.5 24 22.0 35.9 71.1* 45.0* 0.04G 999.9 010000 724050 13743 19760314 43.1 23 21.7 23 1018.9 23 1016.5 23 17.4 23 11.7 23 23.9 35.0 54.0* 34.0 0.00G 999.9 000000 724050 13743 19760315 49.2 24 28.2 24 1018.5 24 1016.1 24 15.2 23 5.9 24 9.9 999.9 62.1* 34.0 0.00I 999.9 000000 724050 13743 19760316 47.9 22 36.9 22 1006.5 22 1004.2 22 12.9 22 6.8 22 19.8 36.9 55.0* 44.1* 0.31A 999.9 110000 724050 13743 19760317 36.0 24 12.7 24 1008.2 24 1005.8 24 19.3 24 18.4 23 22.9 45.8 52.0 30.0 0.08A 999.9 010000 724050 13743 19760318 34.6 24 14.2 24 1022.4 24 1020.0 24 19.9 24 7.1 24 14.0 999.9 48.9* 24.1 0.00I 999.9 000000 724050 13743 19760319 53.6 24 33.5 24 1017.5 24 1015.1 24 17.6 24 8.9 24 17.9 24.9 72.0* 41.0* 0.00I 999.9 000000 724050 13743 19760320 61.4 24 39.7 24 1015.9 24 1013.5 24 17.8 24 8.0 24 15.0 999.9 78.1* 41.0 0.00I 999.9 000000 724050 13743 19760321 65.8 24 47.9 24 1006.9 24 1004.5 24 16.9 24 14.8 24 23.9 43.9 78.1 45.0 0.00B 999.9 010000 724050 13743 19760322 50.4 24 24.5 24 1022.3 24 1019.9 24 19.9 24 9.8 24 16.9 23.9 62.1* 42.1 0.02A 999.9 000000 724050 13743 19760323 47.1 24 26.7 24 1030.0 24 1027.6 24 17.2 24 3.9 24 8.9 999.9 61.0* 35.1 0.00I 999.9 000000 724050 13743 19760324 54.1 23 34.6 23 1027.1 23 1024.7 23 17.9 23 8.1 23 12.8 999.9 72.0* 35.1 0.00I 999.9 000000 724050 13743 19760325 57.3 23 41.1 23 1017.9 23 1015.5 23 16.2 23 8.5 23 14.0 999.9 73.0 42.1 0.08A 999.9 010000 724050 13743 19760326 59.5 24 43.4 24 1019.4 24 1017.1 24 12.1 24 4.8 24 8.9 999.9 73.0* 45.0 0.00I 999.9 000000 724050 13743 19760327 62.0 23 47.8 23 1015.2 23 1012.9 23 11.7 23 8.9 23 17.9 28.9 73.0 45.0 0.00I 999.9 000000 724050 13743 19760328 57.5 24 34.7 24 1017.3 24 1015.0 24 19.2 24 10.9 24 19.8 28.9 73.0 46.9 0.31G 999.9 010000 724050 13743 19760329 54.5 24 34.0 24 1023.5 24 1021.1 24 17.3 24 3.5 24 5.8 999.9 66.0 44.1 0.00G 999.9 000000 724050 13743 19760330 55.4 22 45.9 22 1019.6 22 1017.2 22 8.2 22 5.6 22 8.9 999.9 64.0 44.1 0.28G 999.9 110000 724050 13743 19760331 52.7 23 45.6 23 1018.0 23 1015.7 23 7.3 23 6.7 22 8.9 999.9 57.9 51.1 0.00G 999.9 110000 724050 13743 19760401 55.9 24 41.5 23 1009.5 24 1007.1 24 17.5 24 10.6 23 16.9 25.8 63.0 46.0 1.57G 999.9 110000 724050 13743 19760402 50.1 24 32.7 24 1011.7 24 1009.3 24 22.0 24 8.8 24 17.9 25.8 63.0 44.1 0.00G 999.9 010000 724050 13743 19760403 50.7 24 29.8 24 1016.7 24 1014.3 24 15.1 24 11.9 24 15.9 24.9 66.9* 39.9 0.00I 999.9 000000 724050 13743 19760404 53.5 24 41.6 24 1007.5 24 1005.1 24 14.1 24 5.2 24 16.9 999.9 66.9 39.9 0.00B 999.9 010000 724050 13743 19760405 48.1 23 25.0 23 1014.8 23 1012.4 23 19.9 23 10.6 23 15.9 28.9 62.1* 39.9 0.04G 999.9 000000 724050 13743 19760406 53.6 24 32.0 24 1012.9 24 1010.5 24 19.1 24 6.2 24 11.8 999.9 69.1* 36.9 0.00G 999.9 000000 724050 13743 19760407 58.7 23 32.1 23 1014.4 23 1011.9 23 22.5 23 8.9 23 14.0 999.9 70.0 37.0 0.00I 999.9 000000 724050 13743 19760408 53.8 24 31.5 24 1016.8 24 1014.4 24 17.8 24 6.3 24 14.0 17.9 64.9 46.9 0.00I 999.9 000000 724050 13743 19760409 47.3 24 22.5 23 1020.7 24 1018.2 24 19.8 24 13.0 24 16.9 23.9 63.0 37.9 0.00I 999.9 000000 724050 13743 19760410 49.3 23 19.8 23 1020.0 23 1017.6 23 22.0 23 8.5 23 11.8 999.9 68.0* 36.0 0.00I 999.9 000000 724050 13743 19760411 57.3 22 30.7 22 1013.0 22 1010.6 22 20.1 22 8.9 22 16.9 28.9 68.0 36.0 0.00I 999.9 000000 724050 13743 19760412 42.1 22 13.4 22 1025.3 22 1022.9 22 22.4 22 13.6 22 17.9 26.8 64.0 32.0 2.24A 999.9 000000 724050 13743 19760413 52.2 23 19.8 23 1024.0 23 1021.6 23 20.1 23 6.3 23 11.8 999.9 68.0* 32.0 0.00I 999.9 000000 724050 13743 19760414 57.0 23 28.8 23 1020.3 23 1017.9 23 15.2 23 4.9 23 9.9 999.9 73.9* 37.0 0.00I 999.9 000000 724050 13743 19760415 63.2 24 36.2 24 1021.4 24 1019.0 24 11.0 24 4.9 24 8.9 999.9 82.0* 37.9 0.00I 999.9 000000 724050 13743 19760416 70.1 24 48.9 24 1020.3 24 1017.9 24 10.9 24 5.5 24 14.0 19.8 90.0* 45.0 0.00I 999.9 000000 724050 13743 19760417 75.7 24 55.6 24 1022.6 24 1020.2 24 7.2 24 3.5 24 8.0 999.9 93.0* 55.0 0.00I 999.9 000000 724050 13743 19760418 76.9 23 55.1 23 1023.1 22 1020.7 22 7.0 23 4.0 22 10.9 999.9 95.0* 57.9 0.00I 999.9 000000 724050 13743 19760419 76.2 23 57.3 23 1019.3 23 1016.9 23 6.6 23 6.7 22 10.9 999.9 95.0 59.0 0.00I 999.9 000000 724050 13743 19760420 77.8 24 59.8 24 1013.8 24 1011.4 24 7.6 24 6.7 24 9.9 999.9 93.0 62.1 0.00I 999.9 000000 724050 13743 19760421 75.9 22 58.7 22 1012.8 22 1010.4 22 10.2 22 7.5 22 15.0 999.9 91.0 63.0 0.08G 999.9 000000 724050 13743 19760422 75.0 24 57.8 24 1011.2 24 1008.8 24 16.2 24 10.1 24 12.8 17.9 89.1 63.0 0.00G 999.9 010000 724050 13743 19760423 70.7 23 45.9 23 1014.2 23 1011.8 23 15.3 23 7.8 23 15.0 22.0 83.8 56.8 0.01G 999.9 000000 724050 13743 19760424 69.1 23 42.0 23 1016.1 23 1013.7 23 16.5 23 6.9 23 10.9 999.9 84.0 56.8 0.00G 999.9 000000 724050 13743 19760425 66.6 24 55.6 24 1004.9 24 1002.5 24 12.9 24 9.7 24 19.8 28.9 81.0 57.0 0.00B 999.9 010000 724050 13743 19760426 58.6 20 44.0 20 1003.1 20 1000.7 20 17.1 20 13.0 20 23.9 35.9 80.1 52.9 0.24G 999.9 010010 724050 13743 19760427 47.1 22 23.9 22 1018.2 22 1015.8 22 19.9 22 15.7 22 22.0 31.9 60.1 39.9 0.00G 999.9 000000 724050 13743 19760428 50.7 23 28.9 23 1021.4 23 1019.0 23 19.9 23 12.3 23 17.9 24.9 63.0 39.9 0.00I 999.9 000000 724050 13743 19760429 57.7 23 32.8 23 1020.7 23 1018.3 23 19.8 23 11.5 23 15.9 23.9 70.0* 42.1 0.00I 999.9 000000 724050 13743 19760430 61.5 20 39.6 20 1019.6 20 1017.2 20 16.0 20 5.1 20 11.8 999.9 75.0* 45.0 0.00I 999.9 000000 724050 13743 19760501 63.3 24 54.5 24 1012.5 24 1010.1 24 7.1 24 9.9 24 17.9 23.9 75.9 61.0* 0.08G 999.9 110000 724050 13743 19760502 64.6 24 52.1 23 1008.5 24 1006.1 24 10.1 24 6.7 24 10.9 999.9 75.0* 54.0 1.34G 999.9 110000 724050 13743 19760503 62.4 23 41.6 23 1010.3 23 1007.9 23 12.9 23 12.4 23 19.8 34.0 75.9 54.0 0.00G 999.9 000000 724050 13743 19760504 54.6 23 28.3 23 1021.8 23 1019.4 23 19.9 23 9.9 23 15.9 23.9 66.0 43.9 0.00I 999.9 000000 724050 13743 19760505 60.6 24 39.8 24 1022.2 24 1019.8 24 15.5 24 10.4 24 18.8 28.9 78.1* 44.1 0.00I 999.9 000000 724050 13743 19760506 70.9 23 50.5 23 1019.3 23 1016.9 23 14.9 23 12.8 22 15.9 19.8 81.0* 62.1* 0.00I 999.9 000000 724050 13743 19760507 72.1 24 58.3 24 1014.1 24 1011.7 24 13.8 24 11.6 24 15.9 22.0 81.9 62.1 0.01G 999.9 010000 724050 13743 19760508 57.6 24 32.0 24 1021.2 24 1018.8 24 15.9 24 13.1 24 22.0 29.9 81.0 46.9 0.00G 999.9 000000 724050 13743 19760509 57.3 24 32.4 24 1021.8 24 1019.3 24 19.5 24 5.5 23 12.8 999.9 70.0* 43.0 0.00I 999.9 000000 724050 13743 19760510 63.6 23 45.8 23 1020.1 23 1017.7 23 13.0 23 7.9 23 12.8 999.9 80.1* 43.0 99.99 999.9 010000 724050 13743 19760511 67.6 24 50.1 23 1014.5 24 1012.1 24 14.8 24 13.2 24 16.9 22.9 80.1 50.0 0.00I 999.9 000000 724050 13743 19760512 62.1 24 42.6 24 1013.1 24 1010.5 24 13.6 24 12.6 24 22.9 31.9 73.0 52.9 0.24G 999.9 010010 724050 13743 19760513 59.3 24 39.5 24 1021.8 24 1019.4 24 17.6 24 5.8 24 9.9 999.9 70.0 45.0 0.00G 999.9 000000 724050 13743 19760514 70.0 24 59.6 24 1019.9 24 1017.5 24 9.3 24 7.6 24 9.9 999.9 82.0* 62.1* 0.00B 999.9 110000 724050 13743 19760515 74.0 24 63.7 24 1017.7 24 1015.3 24 10.3 24 7.2 24 10.9 999.9 82.9 54.9 0.00A 999.9 010000 724050 13743 19760516 74.6 24 66.4 24 1014.8 24 1012.4 24 11.5 24 9.3 24 16.9 21.0 84.0 66.0 0.16C 999.9 010000 724050 13743 19760517 72.5 24 63.1 24 1010.4 24 1008.0 24 12.1 24 9.5 24 14.0 999.9 79.0 64.9 0.06D 999.9 010000 724050 13743 19760518 65.8 24 56.6 24 1003.9 24 1001.5 24 11.0 24 9.5 24 22.0 37.9 80.1 48.9* 0.08A 999.9 010010 724050 13743 19760519 52.5 23 33.9 23 1008.6 23 1006.3 23 17.1 23 14.7 23 24.9 35.9 73.9 43.0 0.31G 999.9 010000 724050 13743 19760520 65.2 24 40.3 24 1012.3 24 1009.9 24 21.7 24 10.7 24 19.8 28.0 84.0* 43.0 0.00G 999.9 000000 724050 13743 19760521 73.6 24 53.5 24 1009.9 24 1007.5 24 13.8 24 8.8 24 16.9 28.0 87.1* 50.0 0.00A 999.9 000000 724050 13743 19760522 69.8 23 41.3 23 1012.5 23 1010.1 23 21.4 23 9.5 23 14.0 19.8 87.1 56.8 0.00I 999.9 000000 724050 13743 19760523 65.9 24 44.7 24 1011.6 24 1009.2 24 17.5 23 8.0 24 12.8 999.9 79.0 55.9 0.00I 999.9 000000 724050 13743 19760524 64.3 24 45.1 24 1008.4 24 1006.0 24 14.2 24 7.2 24 10.9 999.9 75.0* 54.0 0.00I 999.9 000000 724050 13743 19760525 62.9 23 45.9 23 1010.9 23 1008.5 23 14.4 23 4.8 23 8.9 999.9 75.9 54.0 0.00I 999.9 000000 724050 13743 19760526 57.5 24 49.8 24 1018.1 24 1015.7 24 11.0 24 7.1 24 9.9 999.9 72.0 54.0 0.39G 999.9 010000 724050 13743 19760527 61.8 24 49.5 24 1022.7 24 1020.2 24 7.6 24 4.1 24 8.0 999.9 75.9* 50.0 0.12G 999.9 000000 724050 13743 19760528 66.9 23 50.8 23 1023.7 23 1021.2 23 9.2 23 6.7 23 14.0 21.0 79.0 50.0 0.00G 999.9 000000 724050 13743 19760529 66.3 24 55.2 24 1018.8 24 1016.4 24 8.1 24 8.7 24 15.0 19.8 79.9 54.0 0.12B 999.9 110000 724050 13743 19760530 69.3 24 62.4 23 1011.6 24 1009.3 24 8.7 24 6.2 24 10.9 999.9 78.1* 63.0 0.87G 999.9 110000 724050 13743 19760531 71.4 24 63.0 24 1012.3 24 1009.9 24 5.0 24 5.7 24 9.9 999.9 82.9* 64.9 0.00G 999.9 110000 724050 13743 19760601 75.3 21 63.4 21 1010.9 21 1008.5 21 11.6 21 7.6 21 15.9 18.8 87.1* 64.9 0.00A 999.9 000000 724050 13743 19760602 69.7 21 58.9 21 1013.3 21 1010.9 21 10.7 21 9.5 21 15.0 21.0 87.1 62.1* 0.00I 999.9 000000 724050 13743 19760603 64.6 23 48.4 23 1021.3 23 1018.9 23 16.1 23 9.5 23 12.8 22.0 73.9* 59.0 0.00I 999.9 000000 724050 13743 19760604 66.5 24 43.7 24 1025.4 24 1023.0 24 19.0 24 8.6 24 12.8 19.8 78.1* 54.0 0.00I 999.9 000000 724050 13743 19760605 67.2 24 41.5 24 1029.1 24 1026.7 24 21.1 24 8.5 23 15.9 26.8 78.1 54.0 0.00I 999.9 000000 724050 13743 19760606 66.8 24 46.2 24 1023.7 24 1021.4 24 18.4 24 5.2 24 11.8 999.9 80.1 52.9 0.00A 999.9 010010 724050 13743 19760607 71.6 24 52.3 24 1018.6 24 1016.2 24 12.4 24 7.4 24 12.8 999.9 87.1* 53.1 0.00A 999.9 000000 724050 13743 19760608 78.9 22 56.8 21 1014.4 22 1012.1 22 8.8 22 8.2 22 14.0 999.9 90.0* 57.0 0.00I 999.9 000000 724050 13743 19760609 80.6 24 56.4 24 1013.8 24 1011.5 24 8.1 24 5.9 24 11.8 999.9 93.9* 66.0 0.00I 999.9 000000 724050 13743 19760610 80.9 23 62.2 23 1015.3 23 1012.9 23 5.7 23 5.8 23 9.9 999.9 95.0 66.9 0.00I 999.9 000000 724050 13743 19760611 82.0 24 60.9 24 1010.5 24 1008.1 24 3.8 24 8.2 24 12.8 999.9 93.0 69.1 0.00I 999.9 000000 724050 13743 19760612 83.6 24 59.1 24 1010.6 24 1008.3 24 4.5 24 7.5 24 11.8 999.9 93.9 70.0 0.00I 999.9 000000 724050 13743 19760613 70.6 24 52.4 24 1023.4 24 1020.9 24 16.3 24 10.1 24 15.0 999.9 93.0 63.9 0.00I 999.9 000000 724050 13743 19760614 73.4 24 58.3 24 1022.5 24 1020.1 24 10.2 24 10.0 24 15.9 19.8 82.9* 64.0 0.00I 999.9 000000 724050 13743 19760615 80.4 24 66.6 24 1017.8 24 1015.4 24 4.5 24 10.4 24 14.0 999.9 90.0* 68.0 0.00I 999.9 000000 724050 13743 19760616 82.0 22 65.5 22 1014.4 22 1012.0 22 10.8 22 13.9 22 19.8 26.8 90.0 72.0 0.00A 999.9 000000 724050 13743 19760617 77.6 24 67.3 24 1016.6 24 1014.2 24 9.4 24 9.2 24 15.0 34.0 90.0 72.0 0.28G 999.9 010010 724050 13743 19760618 79.5 22 67.8 22 1019.9 22 1017.5 22 9.5 22 8.5 22 12.8 999.9 88.0* 72.0 0.00G 999.9 010000 724050 13743 19760619 79.3 22 67.8 22 1016.7 22 1014.3 22 11.1 22 8.9 22 17.9 22.0 89.1 72.9 0.12G 999.9 010000 724050 13743 19760620 78.7 24 67.1 24 1013.3 24 1010.9 24 13.1 24 10.7 24 22.0 35.9 88.9 73.0 0.00G 999.9 010000 724050 13743 19760621 77.2 24 67.3 24 1015.0 24 1012.6 24 10.3 24 11.5 24 19.8 28.0 87.1 73.9 0.08G 999.9 010000 724050 13743 19760622 79.2 24 66.5 24 1019.7 24 1017.3 24 13.7 24 9.9 24 14.0 999.9 87.1* 73.9 0.12G 999.9 000000 724050 13743 19760623 79.5 24 66.8 24 1022.0 24 1019.6 24 12.6 24 8.3 24 12.8 999.9 88.0* 73.9 0.00G 999.9 000000 724050 13743 19760624 81.1 24 66.1 24 1019.4 24 1017.0 24 15.5 24 9.8 24 15.9 22.0 89.1 72.9 0.00I 999.9 000000 724050 13743 19760625 82.2 22 65.9 22 1013.0 22 1010.6 22 15.6 22 10.9 22 15.0 22.0 91.0 73.0 0.00I 999.9 000000 724050 13743 19760626 80.2 24 63.1 24 1016.7 24 1014.3 24 13.6 24 8.1 24 10.9 999.9 93.0 73.9 0.02G 999.9 010000 724050 13743 19760627 81.9 23 59.6 23 1020.4 23 1017.9 23 13.8 23 5.7 23 10.9 999.9 93.0* 68.9 0.00G 999.9 000000 724050 13743 19760628 84.1 24 61.5 24 1018.0 24 1015.7 24 10.2 24 6.7 24 12.8 999.9 93.9* 69.1 0.00I 999.9 000000 724050 13743 19760629 83.2 23 64.9 23 1012.9 23 1010.5 23 7.1 23 8.0 23 14.0 999.9 95.0 72.0 0.00I 999.9 000000 724050 13743 19760630 81.6 24 66.3 24 1008.6 24 1006.3 24 7.6 24 11.1 24 16.9 24.9 91.9 73.9 0.00I 999.9 000000 724050 13743 19760701 77.3 24 61.2 24 1010.6 24 1008.3 24 12.6 24 6.9 24 11.8 16.9 90.0 68.9 0.08G 999.9 010000 724050 13743 19760702 77.1 24 53.3 24 1017.5 24 1015.1 24 14.7 24 8.4 24 14.0 18.8 88.0* 63.0 0.00G 999.9 000000 724050 13743 19760703 77.7 24 56.3 24 1017.9 24 1015.6 24 12.3 24 6.6 24 15.0 19.8 89.1 63.0 99.99 999.9 010010 724050 13743 19760704 73.7 24 57.1 24 1014.0 24 1011.6 24 6.7 24 7.3 24 11.8 999.9 89.1 64.9 0.01G 999.9 000000 724050 13743 19760705 76.2 24 57.2 24 1015.6 24 1013.2 24 8.5 24 6.0 24 15.0 999.9 86.0 64.9 0.04G 999.9 000000 724050 13743 19760706 78.2 24 58.6 24 1018.1 24 1015.8 24 5.4 24 7.3 24 12.8 999.9 89.1* 66.9 0.00G 999.9 000000 724050 13743 19760707 76.5 23 63.7 23 1015.7 23 1013.3 23 7.2 23 10.9 23 15.0 999.9 89.1 69.1 0.43G 999.9 010000 724050 13743 19760708 74.7 24 63.7 24 1015.3 24 1012.9 24 5.5 24 7.3 24 11.8 999.9 84.9 65.8 0.35G 999.9 010000 724050 13743 19760709 78.7 24 66.4 24 1016.6 24 1014.2 24 6.6 24 5.7 24 11.8 17.9 87.1* 66.0 0.00G 999.9 110010 724050 13743 19760710 78.7 24 64.6 24 1018.1 24 1015.7 24 10.4 24 4.3 24 8.9 15.9 88.0 68.0 0.00I 999.9 000000 724050 13743 19760711 75.7 24 69.4 24 1011.0 24 1008.6 24 5.9 24 7.4 24 15.0 25.8 89.1 68.0 0.20G 999.9 110010 724050 13743 19760712 78.7 23 64.5 23 1002.8 23 1000.4 23 15.7 23 11.7 22 22.0 35.0 89.1* 68.9 0.98G 999.9 010010 724050 13743 19760713 74.8 24 54.2 24 1005.0 24 1002.6 24 17.8 24 13.7 24 17.9 35.9 89.1 65.8 0.00G 999.9 000000 724050 13743 19760714 76.4 23 53.6 23 1008.7 23 1006.4 23 19.5 23 10.2 23 14.0 999.9 86.0 66.0 0.00I 999.9 000000 724050 13743 19760715 76.8 23 66.5 23 1010.6 23 1008.2 23 10.4 23 4.7 23 8.9 999.9 91.0* 68.0 0.55G 999.9 110010 724050 13743 19760716 79.4 24 69.3 24 1010.1 24 1007.7 24 8.9 24 5.6 24 15.0 19.8 91.0 68.0 0.51G 999.9 010010 724050 13743 19760717 76.0 23 62.4 23 1011.6 23 1009.2 23 10.9 23 7.6 23 12.8 999.9 91.0 70.0 0.75G 999.9 010000 724050 13743 19760718 75.4 24 55.2 23 1019.3 24 1016.9 24 18.3 24 5.7 24 11.8 999.9 84.9* 64.9 0.00G 999.9 000000 724050 13743 19760719 77.8 23 59.9 23 1023.9 23 1021.5 23 12.0 23 6.1 23 9.9 999.9 87.1* 64.9 0.00I 999.9 000000 724050 13743 19760720 79.7 24 62.6 24 1022.6 24 1020.2 24 7.7 24 8.2 24 11.8 999.9 91.0* 66.0 0.00I 999.9 000000 724050 13743 19760721 82.5 24 62.0 24 1017.1 24 1014.7 24 6.2 23 7.4 24 21.0 29.9 91.0 68.0 99.99 999.9 010000 724050 13743 19760722 78.8 23 65.7 23 1018.7 23 1016.3 23 3.2 23 6.9 22 14.0 999.9 91.9 73.9 0.00B 999.9 010000 724050 13743 19760723 76.0 22 70.2 22 1020.3 22 1017.9 22 3.6 22 6.3 22 9.9 999.9 84.0 70.9 0.00C 999.9 110000 724050 13743 19760724 83.2 23 74.2 23 1013.6 23 1011.2 23 8.6 23 8.2 23 14.0 999.9 91.9 71.1 0.01A 999.9 010000 724050 13743 19760725 77.9 23 62.0 23 1015.8 23 1013.4 23 16.5 23 10.5 23 14.0 999.9 93.0 70.9 0.02G 999.9 000000 724050 13743 19760726 74.7 24 58.4 24 1019.8 24 1017.4 24 19.5 24 6.5 24 9.9 999.9 84.9* 61.9 0.00G 999.9 000000 724050 13743 19760727 78.9 24 67.1 24 1014.9 24 1012.5 24 14.1 24 8.3 23 11.8 999.9 89.1 62.1 0.00I 999.9 000000 724050 13743 19760728 82.1 23 71.0 23 1013.6 23 1011.2 23 4.5 23 4.0 23 8.0 999.9 91.0* 70.0 0.00I 999.9 100000 724050 13743 19760729 83.6 22 74.7 22 1011.8 22 1009.5 22 4.5 22 6.5 22 10.9 999.9 91.9 73.0 0.00A 999.9 110010 724050 13743 19760730 79.8 23 73.2 23 1010.7 23 1008.3 23 9.8 23 5.2 23 9.9 999.9 91.9 73.0 0.51A 999.9 010010 724050 13743 19760731 81.8 23 73.1 23 1009.1 23 1006.7 23 4.1 23 6.4 23 11.8 999.9 89.1* 73.0 0.00A 999.9 100000 724050 13743 19760801 77.1 24 65.4 24 1008.8 24 1006.4 24 11.1 24 10.0 24 23.9 38.9 89.1 68.0 0.16A 999.9 010010 724050 13743 19760802 72.1 24 56.6 24 1016.9 24 1014.5 24 17.9 23 8.1 24 11.8 18.8 84.0 63.9 0.79A 999.9 000000 724050 13743 19760803 73.6 24 58.5 24 1024.0 24 1021.5 24 18.8 24 5.1 24 8.0 999.9 84.0* 63.0 0.00I 999.9 000000 724050 13743 19760804 74.5 24 61.2 24 1023.5 24 1021.1 24 11.8 24 4.6 24 8.0 999.9 84.9 63.0 0.00I 999.9 000000 724050 13743 19760805 77.7 23 64.2 23 1019.1 23 1016.7 23 10.0 23 8.2 23 11.8 19.8 88.0* 64.0 0.00I 999.9 000000 724050 13743 19760806 80.8 24 67.4 24 1015.4 24 1013.0 24 8.1 24 7.1 24 14.0 22.0 91.0* 66.0 0.02A 999.9 010000 724050 13743 19760807 78.2 24 71.2 24 1014.2 24 1011.8 24 6.0 24 7.8 24 9.9 999.9 91.9 71.1 0.02A 999.9 010000 724050 13743 19760808 74.9 24 72.7 24 1014.7 24 1012.3 24 5.9 24 4.9 24 9.9 999.9 80.1 72.0 0.20G 999.9 110010 724050 13743 19760809 72.9 24 70.4 24 1014.3 24 1011.9 24 6.5 24 9.9 24 15.0 999.9 77.0 70.0 1.06G 999.9 110000 724050 13743 19760810 74.8 23 63.5 23 1017.3 23 1014.9 23 9.0 23 9.3 23 15.0 999.9 82.9* 64.9 0.02G 999.9 010000 724050 13743 19760811 76.9 24 65.1 24 1023.3 24 1020.9 24 7.2 24 4.7 24 7.0 999.9 87.1* 64.9 0.00G 999.9 000000 724050 13743 19760812 79.0 24 69.9 24 1021.8 24 1019.3 24 5.9 24 6.6 24 11.8 999.9 91.0* 66.0 0.00I 999.9 000000 724050 13743 19760813 82.6 24 72.5 24 1015.2 24 1012.8 24 5.1 24 7.2 23 9.9 999.9 93.9* 69.1 0.00I 999.9 000000 724050 13743 19760814 80.3 24 70.6 24 1013.8 24 1011.4 24 6.2 24 6.0 24 17.9 29.9 93.9 70.9 0.02A 999.9 010010 724050 13743 19760815 75.3 24 73.1 24 1015.3 24 1012.9 24 5.6 24 7.0 24 15.0 25.8 91.0 70.9 0.47G 999.9 110010 724050 13743 19760816 73.7 20 64.2 20 1018.3 20 1015.9 20 15.1 20 8.2 20 12.8 999.9 87.1 66.9 0.31G 999.9 010000 724050 13743 19760817 72.9 24 57.0 24 1020.8 24 1018.3 24 17.8 24 9.0 24 14.0 999.9 82.9* 61.0 0.00G 999.9 000000 724050 13743 19760818 76.8 17 60.0 17 1020.3 17 1017.9 17 19.9 17 9.5 17 14.0 999.9 84.0 66.9 0.00I 999.9 000000 724050 13743 19760819 73.9 23 60.2 23 1024.9 23 1022.5 23 16.6 23 8.8 23 12.8 999.9 84.9 64.9 99.99 999.9 010000 724050 13743 19760820 71.5 24 59.3 24 1026.3 24 1023.9 24 15.5 24 5.4 24 9.9 999.9 82.9* 61.0 0.00I 999.9 000000 724050 13743 19760821 74.2 24 60.0 24 1022.3 24 1019.8 24 14.8 24 4.3 24 7.0 999.9 88.0* 60.1 0.00I 999.9 000000 724050 13743 19760822 78.0 23 65.7 23 1016.7 23 1014.3 23 12.8 23 4.7 23 8.0 999.9 91.0* 60.1 0.00I 999.9 000000 724050 13743 19760823 83.2 24 69.2 24 1015.7 24 1013.3 24 7.2 24 6.2 24 8.9 999.9 91.9 64.0 0.00I 999.9 000000 724050 13743 19760824 81.1 24 68.7 24 1019.9 24 1017.5 24 4.3 24 6.1 24 8.9 999.9 91.0 73.0 0.00I 999.9 000000 724050 13743 19760825 79.6 24 73.3 24 1022.7 24 1020.3 24 2.6 24 6.7 24 8.9 999.9 89.1 72.0 0.00I 999.9 100000 724050 13743 19760826 81.3 21 74.2 21 1020.7 21 1018.2 21 3.5 21 8.5 21 11.8 999.9 91.0* 72.0 0.00I 999.9 100000 724050 13743 19760827 79.7 21 72.6 21 1019.3 21 1016.9 21 4.8 21 8.5 21 11.8 999.9 93.0 75.0 99.99 999.9 010000 724050 13743 19760828 77.7 21 74.7 21 1018.9 21 1016.5 21 3.8 21 4.6 21 8.0 999.9 86.0 72.9 0.12A 999.9 100000 724050 13743 19760829 80.0 21 72.0 21 1016.4 21 1014.0 21 8.0 21 7.4 21 15.0 999.9 87.1* 73.0 0.00I 999.9 100000 724050 13743 19760830 70.0 24 49.9 24 1022.2 24 1019.6 24 22.2 24 12.3 24 16.9 999.9 90.0 57.9 0.00I 999.9 000000 724050 13743 19760831 69.3 24 51.5 24 1023.5 24 1021.1 24 20.1 24 6.1 24 8.0 999.9 80.1* 57.9 0.00I 999.9 000000 724050 13743 19760901 71.7 23 59.3 23 1020.2 23 1017.8 23 15.2 23 8.6 23 15.0 999.9 84.0* 59.0 0.71A 999.9 000000 724050 13743 19760902 72.0 24 65.7 24 1019.0 24 1016.7 24 9.9 24 6.9 24 9.9 999.9 84.9 60.1 0.07C 999.9 010000 724050 13743 19760903 68.7 21 62.2 21 1023.4 21 1021.0 21 9.4 21 8.6 21 14.0 999.9 77.0 63.9 0.02A 999.9 010000 724050 13743 19760904 72.5 20 65.4 20 1018.8 20 1016.3 20 5.6 20 7.8 20 12.8 999.9 82.0* 63.0 0.00I 999.9 100000 724050 13743 19760905 74.1 20 66.7 20 1013.0 20 1010.6 20 5.7 20 7.8 20 15.0 999.9 86.0 63.0 0.00I 999.9 100000 724050 13743 19760906 68.8 21 50.6 21 1018.9 21 1016.6 21 20.6 21 10.1 21 15.9 999.9 86.0 57.9 0.00I 999.9 000000 724050 13743 19760907 69.3 24 51.5 24 1022.8 24 1020.5 24 19.7 24 5.9 24 8.9 999.9 82.9* 54.9 0.00I 999.9 000000 724050 13743 19760908 76.0 24 58.1 24 1021.5 24 1019.1 24 17.6 24 6.3 24 11.8 999.9 91.9 55.0 0.00I 999.9 000000 724050 13743 19760909 79.6 24 63.7 24 1019.5 24 1017.1 24 11.4 24 4.0 24 9.9 999.9 93.0 61.0 0.00I 999.9 000000 724050 13743 19760910 73.5 22 61.5 22 1011.3 22 1008.9 22 11.4 22 9.6 22 16.9 26.8 91.9 64.9 0.35G 999.9 010000 724050 13743 19760911 65.0 22 46.6 22 1015.3 22 1012.9 22 22.1 22 8.1 22 14.0 999.9 80.1* 52.0 0.04G 999.9 000000 724050 13743 19760912 72.1 24 52.8 24 1020.5 24 1018.0 24 20.7 24 5.8 24 8.9 999.9 88.0* 52.0 0.00G 999.9 000000 724050 13743 19760913 74.5 23 61.4 23 1026.5 23 1024.1 23 15.9 23 4.8 23 9.9 999.9 91.0* 55.9 0.00I 999.9 000000 724050 13743 19760914 74.9 24 63.6 24 1026.1 24 1023.7 24 11.7 24 4.7 24 8.9 999.9 91.0 61.0 0.00I 999.9 000000 724050 13743 19760915 73.0 24 67.1 24 1021.7 24 1019.3 24 10.0 24 6.7 24 12.8 999.9 89.1 62.1 0.03B 999.9 110000 724050 13743 19760916 72.8 24 71.8 24 1016.5 24 1014.0 24 6.7 24 9.4 23 18.8 23.9 79.0 70.0 2.52G 999.9 110010 724050 13743 19760917 75.5 23 70.9 23 1015.3 23 1012.9 23 9.3 23 8.4 23 14.0 18.8 82.0* 70.0 3.35G 999.9 110010 724050 13743 19760918 71.2 24 62.8 24 1015.0 24 1012.6 24 9.9 24 7.3 24 12.8 19.8 82.9 61.9 0.00G 999.9 000000 724050 13743 19760919 71.3 23 60.3 23 1014.4 23 1012.0 23 10.3 23 6.7 23 12.8 999.9 81.0 61.0 0.00I 999.9 000000 724050 13743 19760920 71.4 24 62.4 24 1009.6 24 1007.2 24 7.4 24 7.1 24 14.0 18.8 82.9* 59.9 0.39A 999.9 000000 724050 13743 19760921 69.3 23 62.2 23 1003.7 23 1001.3 23 7.7 23 4.8 23 9.9 999.9 82.9 60.1 99.99 999.9 010000 724050 13743 19760922 62.6 24 45.2 24 1010.3 24 1007.9 24 20.1 24 9.4 24 15.0 19.8 73.0 52.9 0.02A 999.9 000000 724050 13743 19760923 62.6 24 50.2 24 1019.8 24 1017.4 24 17.4 24 7.9 24 16.9 24.9 78.1* 48.9 0.00G 999.9 000000 724050 13743 19760924 67.4 24 57.3 24 1020.2 24 1017.8 24 11.7 24 6.6 24 10.9 999.9 78.1 48.9 0.00G 999.9 000000 724050 13743 19760925 66.3 23 58.4 23 1019.2 23 1016.8 23 11.3 23 4.8 23 7.0 999.9 75.0 59.0 0.00G 999.9 000000 724050 13743 19760926 68.1 23 65.3 23 1016.7 23 1014.3 23 6.5 23 7.2 23 12.8 999.9 77.0 62.1 0.12G 999.9 110000 724050 13743 19760927 72.3 23 70.4 23 1009.5 23 1007.1 23 7.3 23 8.3 23 12.8 999.9 79.0* 64.0 0.08G 999.9 110000 724050 13743 19760928 68.8 20 59.8 20 1012.6 20 1010.2 20 16.8 20 10.5 20 15.9 999.9 79.0 63.0 0.12G 999.9 010000 724050 13743 19760929 61.9 24 52.6 24 1016.5 24 1014.1 24 13.4 24 5.2 24 8.0 999.9 73.9 57.9 0.00G 999.9 000000 724050 13743 19760930 61.3 23 58.2 23 1010.7 23 1008.3 23 5.6 23 9.8 23 17.9 999.9 66.9 57.9 0.04G 999.9 110000 724050 13743 19761001 61.6 24 61.2 24 1009.2 24 1006.9 24 2.9 24 11.2 24 15.0 999.9 64.0 57.9 0.59G 999.9 110000 724050 13743 19761002 61.1 24 60.6 24 1011.9 24 1009.5 24 3.4 24 12.8 24 19.8 999.9 64.0 60.1* 0.16G 999.9 110010 724050 13743 19761003 62.2 24 60.0 24 1012.8 24 1010.4 24 9.6 24 9.2 24 11.8 999.9 68.0* 59.0 1.73G 999.9 110000 724050 13743 19761004 66.1 23 60.6 23 1019.5 23 1017.1 23 11.2 23 7.7 23 12.8 999.9 73.9* 59.0 0.16G 999.9 010000 724050 13743 19761005 65.3 24 56.5 24 1021.7 24 1019.2 24 16.0 24 6.3 24 9.9 999.9 73.9 55.9 0.00G 999.9 000000 724050 13743 19761006 64.5 24 60.6 24 1018.9 24 1016.5 24 8.7 24 5.4 24 9.9 999.9 73.9 55.9 0.00I 999.9 100000 724050 13743 19761007 68.0 24 64.4 24 1018.2 24 1015.8 24 7.8 24 6.9 24 9.9 999.9 75.9* 59.0 0.00G 999.9 100000 724050 13743 19761008 69.8 23 67.1 23 1016.2 23 1013.8 23 8.4 23 6.3 23 8.0 999.9 77.9 62.1 0.01G 999.9 110000 724050 13743 19761009 69.6 24 65.1 24 1001.2 24 998.9 24 11.7 24 13.2 24 28.0 38.9 75.0 61.0* 0.83G 999.9 110000 724050 13743 19761010 56.3 24 41.7 24 1013.4 24 1011.0 24 21.3 24 10.4 24 17.9 23.9 75.0 50.0 0.04G 999.9 000000 724050 13743 19761011 54.5 23 41.1 23 1022.6 23 1020.2 23 20.3 23 8.1 23 11.8 999.9 64.0 46.9 0.00G 999.9 000000 724050 13743 19761012 52.8 24 41.3 24 1025.6 24 1023.2 24 15.3 24 4.0 24 8.0 999.9 64.0* 43.0 0.00G 999.9 000000 724050 13743 19761013 55.6 24 49.0 23 1016.3 24 1013.9 24 13.6 24 7.3 24 11.8 999.9 73.0* 43.0 0.00G 999.9 000000 724050 13743 19761014 60.9 23 40.9 23 1008.5 23 1006.1 23 16.7 23 11.3 23 17.9 28.0 73.9 45.0 0.00G 999.9 000000 724050 13743 19761015 56.5 23 42.6 23 1012.6 23 1010.2 23 19.9 23 8.7 23 17.9 23.9 75.0* 43.9 0.00G 999.9 000000 724050 13743 19761016 62.0 24 44.8 24 1014.2 24 1011.8 24 17.8 24 11.3 24 18.8 22.9 75.9 44.1 0.00G 999.9 000000 724050 13743 19761017 50.4 24 42.9 24 1020.7 24 1018.3 24 8.6 24 8.2 24 12.8 999.9 64.9 45.0* 0.08G 999.9 110000 724050 13743 19761018 46.0 23 35.8 23 1024.7 23 1022.3 23 14.5 23 10.3 23 15.0 999.9 55.0 38.8 0.04G 999.9 000000 724050 13743 19761019 45.5 21 34.0 21 1030.0 21 1027.6 21 18.2 21 6.7 21 10.9 999.9 55.9* 36.9 0.00G 999.9 000000 724050 13743 19761020 54.7 21 51.6 21 1018.6 21 1016.2 21 9.5 21 6.3 21 9.9 999.9 60.1* 53.1* 0.51G 999.9 110000 724050 13743 19761021 54.1 24 39.9 24 1008.2 24 1005.9 24 16.5 24 13.6 24 16.9 25.8 61.0 46.9 1.50G 999.9 110000 724050 13743 19761022 47.8 24 28.8 24 1018.5 24 1016.1 24 18.0 24 9.3 24 15.0 24.9 57.9 41.9 0.00G 999.9 000000 724050 13743 19761023 46.2 23 28.7 23 1027.3 23 1024.9 23 19.8 23 4.7 23 11.8 999.9 57.0* 36.0 0.00I 999.9 000000 724050 13743 19761024 50.1 24 45.0 24 1024.4 24 1022.0 24 11.0 24 7.1 24 9.9 999.9 57.9 36.0 0.08G 999.9 110000 724050 13743 19761025 55.3 24 53.8 24 1013.1 24 1010.7 24 3.9 24 5.1 24 8.0 999.9 60.1* 48.0 0.31G 999.9 110000 724050 13743 19761026 51.7 23 45.2 23 1010.0 23 1007.6 23 13.3 23 15.1 23 21.0 30.9 60.1 46.0* 1.77G 999.9 110000 724050 13743 19761027 40.6 22 24.8 22 1025.1 22 1022.7 22 19.9 22 13.6 22 21.0 999.9 59.0 34.9 0.02G 999.9 000000 724050 13743 19761028 39.5 23 23.6 23 1030.6 23 1028.2 23 19.9 23 9.1 23 12.8 999.9 46.9* 30.9 0.00G 999.9 000000 724050 13743 19761029 44.3 24 26.7 24 1026.4 24 1024.0 24 16.8 24 5.9 24 10.9 999.9 62.1* 29.8 0.00G 999.9 000000 724050 13743 19761030 47.0 23 37.4 23 1022.5 23 1020.1 23 12.2 23 4.0 23 8.0 999.9 63.0 30.0 99.99 999.9 010000 724050 13743 19761031 54.8 23 49.3 23 1010.8 23 1008.4 23 9.6 23 8.7 23 14.0 999.9 64.9 37.0 1.14G 999.9 110000 724050 13743 19761101 49.2 24 32.0 24 1018.7 24 1016.3 24 19.7 24 14.5 24 18.8 25.8 64.9 41.9 0.01G 999.9 000000 724050 13743 19761102 43.1 24 27.4 24 1026.4 24 1024.0 24 19.9 24 6.2 24 10.9 999.9 55.0 32.0 0.00G 999.9 000000 724050 13743 19761103 46.4 24 33.8 24 1019.7 24 1017.3 24 18.8 24 7.8 24 9.9 999.9 53.1* 32.0 0.00G 999.9 000000 724050 13743 19761104 50.8 23 38.5 23 1014.8 23 1012.5 23 12.7 23 5.0 23 9.9 999.9 61.0* 42.1 0.05B 999.9 010000 724050 13743 19761105 47.4 22 31.1 22 1015.5 22 1013.1 22 16.5 22 11.7 22 17.9 999.9 62.1 43.0 0.00G 999.9 000000 724050 13743 19761106 42.7 23 27.2 23 1020.1 23 1017.7 23 19.4 22 9.3 23 15.0 999.9 55.0* 34.0 0.00G 999.9 000000 724050 13743 19761107 48.0 24 33.1 24 1015.4 24 1013.0 24 15.1 24 7.7 24 14.0 999.9 61.0 34.0 0.00I 999.9 000000 724050 13743 19761108 41.3 23 22.0 23 1015.4 23 1013.0 23 18.8 23 13.7 23 18.8 28.0 62.1 34.9 0.00G 999.9 000000 724050 13743 19761109 35.2 21 16.5 21 1019.0 21 1016.6 21 19.9 21 10.7 21 16.9 999.9 46.0* 25.9 0.00G 999.9 000000 724050 13743 19761110 46.6 23 25.9 23 1008.6 23 1006.2 23 19.0 23 8.7 23 14.0 999.9 60.1* 26.1 0.00G 999.9 000000 724050 13743 19761111 42.7 20 29.5 20 1015.5 20 1013.1 20 19.9 20 6.4 20 11.8 15.9 60.1 32.9 0.00G 999.9 000000 724050 13743 19761112 39.5 23 29.9 23 1023.2 23 1020.8 23 9.7 23 7.7 23 11.8 999.9 52.0 33.1 0.12G 999.9 011000 724050 13743 19761113 39.6 17 23.0 17 1026.3 17 1023.9 17 19.2 17 10.5 17 12.8 22.0 46.0* 32.0 0.02G 999.9 000000 724050 13743 19761114 38.4 22 23.3 22 1023.5 22 1021.1 22 20.3 22 7.4 22 11.8 999.9 50.0 25.9 0.00G 999.9 000000 724050 13743 19761115 42.6 24 27.4 24 1018.1 24 1015.7 24 16.5 24 4.9 24 8.9 999.9 50.0 26.1 0.00G 999.9 011000 724050 13743 19761116 41.0 24 25.4 24 1021.6 24 1019.2 24 12.0 24 5.4 24 10.9 999.9 51.1* 30.9 0.02A 999.9 000000 724050 13743 19761117 38.5 24 27.5 24 1023.8 24 1021.4 24 9.4 24 5.2 24 11.8 999.9 50.9 27.0 0.00G 999.9 000000 724050 13743 19761118 47.4 24 30.8 24 1009.0 24 1006.6 24 12.2 24 10.1 23 16.9 29.9 57.9 27.0 0.00G 999.9 000000 724050 13743 19761119 51.6 24 32.8 24 1006.1 24 1003.7 24 16.6 24 7.9 24 15.0 18.8 73.9* 36.0 0.00G 999.9 000000 724050 13743 19761120 49.5 23 24.5 23 1008.3 23 1005.9 23 18.2 23 8.1 23 14.0 19.8 73.9 36.0 0.00G 999.9 000000 724050 13743 19761121 41.8 23 29.9 23 1006.3 23 1004.1 23 12.9 23 5.3 23 15.0 999.9 53.1 30.9 0.00G 999.9 010000 724050 13743 19761122 39.2 24 25.8 24 1009.8 24 1007.4 24 15.5 24 10.2 24 17.9 28.0 52.0 30.9 0.12G 999.9 010000 724050 13743 19761123 36.8 24 16.7 24 1020.6 24 1018.2 24 17.6 24 10.6 24 15.9 22.0 44.1 32.0 0.00G 999.9 000000 724050 13743 19761124 34.8 24 20.8 24 1021.7 24 1019.3 24 15.2 24 6.2 24 9.9 16.9 43.0 25.0 0.00G 999.9 000000 724050 13743 19761125 41.2 24 30.5 24 1019.8 24 1017.4 24 15.4 24 5.0 24 8.9 999.9 48.9* 25.0 0.02A 999.9 000000 724050 13743 19761126 49.8 24 38.1 24 1017.2 24 1014.9 24 14.5 24 9.3 24 15.9 999.9 63.0* 34.0 0.00G 999.9 000000 724050 13743 19761127 56.7 24 50.8 24 1013.6 24 1011.2 24 10.6 24 9.7 24 12.8 999.9 64.9* 39.0 0.08G 999.9 110000 724050 13743 19761128 54.0 23 53.3 23 1012.1 23 1009.7 23 5.3 23 6.4 23 8.9 999.9 64.9 47.8 0.01G 999.9 110000 724050 13743 19761129 44.1 22 41.3 22 1007.3 22 1005.0 22 6.5 22 11.6 22 16.9 999.9 59.0 34.0* 0.43G 999.9 111000 724050 13743 19761130 25.3 24 7.8 24 1025.4 24 1023.0 24 22.0 24 12.1 24 29.9 999.9 32.0* 18.0 0.12G 999.9 000000 724050 13743 19761201 27.5 24 12.4 24 1030.6 24 1028.2 24 18.7 24 7.6 24 12.8 999.9 37.0* 18.0 0.00G 999.9 000000 724050 13743 19761202 37.4 24 20.2 24 1020.5 24 1018.1 24 19.8 24 10.8 24 22.0 28.9 51.1* 33.1* 0.00G 999.9 000000 724050 13743 19761203 23.6 24 0.8 24 1030.2 24 1027.8 24 22.6 24 9.7 24 17.9 25.8 35.1* 15.1 0.00G 999.9 000000 724050 13743 19761204 28.8 23 15.5 23 1028.7 23 1026.2 23 19.2 23 7.7 23 11.8 999.9 41.0* 15.1 0.00G 999.9 000000 724050 13743 19761205 32.1 21 23.3 21 1031.1 21 1028.7 21 9.0 21 4.2 21 7.0 999.9 44.1* 21.0 0.00G 999.9 100000 724050 13743 19761206 34.3 23 27.1 23 1031.9 23 1029.4 23 6.9 23 3.9 23 8.9 999.9 46.9 23.0 0.00G 999.9 110000 724050 13743 19761207 46.3 24 43.9 24 1010.4 24 1008.0 24 7.1 24 6.9 24 15.0 999.9 54.0 41.0* 0.79G 999.9 110000 724050 13743 19761208 35.4 24 23.3 24 1012.0 24 1009.6 24 14.0 24 14.6 24 18.8 19.8 54.0 28.2* 0.43G 999.9 001000 724050 13743 19761209 30.7 23 14.2 23 1030.9 23 1028.4 23 19.2 23 7.8 23 17.9 999.9 42.1* 21.9 0.00G 999.9 000000 724050 13743 19761210 38.8 24 26.1 24 1033.4 24 1031.0 24 16.2 24 11.5 24 17.9 22.0 48.9* 21.9 0.00G 999.9 000000 724050 13743 19761211 46.6 24 40.7 24 1025.8 24 1023.5 24 11.2 24 6.9 24 15.0 999.9 50.0 33.1 0.00G 999.9 110000 724050 13743 19761212 43.9 23 42.5 23 1017.2 23 1014.8 23 4.1 23 4.2 23 8.0 999.9 50.0 41.0 0.20G 999.9 110000 724050 13743 19761213 41.5 24 23.6 24 1018.1 24 1015.7 24 14.7 24 14.5 24 24.9 37.9 54.0 31.1* 0.04G 999.9 100000 724050 13743 19761214 28.9 24 12.3 24 1032.8 24 1030.4 24 19.9 24 9.1 24 15.9 23.9 54.0 19.9 0.00G 999.9 000000 724050 13743 19761215 37.7 24 26.3 24 1021.2 24 1018.8 24 15.7 24 6.4 24 14.0 999.9 43.0* 19.9 0.00G 999.9 010000 724050 13743 19761216 43.0 24 32.6 24 1011.3 24 1008.9 24 6.8 23 4.0 24 7.0 999.9 48.0* 34.0 0.05B 999.9 010000 724050 13743 19761217 41.7 23 29.0 23 1005.9 23 1003.5 23 12.9 22 9.7 23 15.9 29.9 51.1* 29.1* 0.02G 999.9 010000 724050 13743 19761218 42.0 24 22.7 24 1018.3 24 1015.9 24 19.9 24 10.1 24 15.0 19.8 51.1 34.0 0.00G 999.9 000000 724050 13743 19761219 38.5 23 29.0 23 1021.3 23 1018.6 23 11.2 23 4.9 23 9.9 999.9 50.0* 29.8 0.00G 999.9 000000 724050 13743 19761220 46.5 24 41.9 24 1005.5 24 1003.1 24 11.3 24 8.6 23 15.0 23.9 53.1* 39.9 0.03B 999.9 010000 724050 13743 19761221 33.7 22 18.1 22 1002.7 22 1000.3 22 17.9 22 17.4 22 24.9 35.9 53.1 25.0 0.16G 999.9 010000 724050 13743 19761222 25.4 24 7.2 23 1022.1 23 1019.7 23 21.6 23 8.9 23 12.8 23.9 39.9 18.9 0.00G 999.9 000000 724050 13743 19761223 36.6 24 16.5 24 1013.3 24 1010.9 24 19.9 24 9.8 24 14.0 19.8 45.0* 19.0 0.00I 999.9 000000 724050 13743 19761224 28.3 23 8.9 23 1020.9 23 1018.5 23 19.9 23 10.9 23 19.8 28.9 46.9 18.0 99.99 999.9 001000 724050 13743 19761225 31.9 24 14.8 24 1019.6 24 1017.2 24 17.2 24 8.2 24 10.9 999.9 41.0* 18.0 0.00G 999.9 000000 724050 13743 19761226 38.2 24 29.7 24 1004.1 24 1001.7 24 11.0 24 8.2 23 16.9 25.8 42.1 26.1 0.35G 999.9 110000 724050 13743 19761227 32.2 24 15.5 24 1003.9 24 1001.5 24 18.9 24 11.3 24 23.9 37.9 42.1 27.0 0.02A 999.9 001000 724050 13743 19761228 38.1 24 22.4 24 997.6 24 995.2 24 18.2 24 5.3 24 8.9 999.9 50.0* 27.0 0.00G 999.9 000000 724050 13743 19761229 34.2 24 27.7 24 998.6 24 996.2 24 9.2 24 7.6 24 11.8 15.9 52.0 29.8 0.04G 999.9 101000 724050 13743 19761230 24.8 22 9.5 22 1012.0 22 1009.6 22 21.4 22 12.3 22 17.9 25.8 35.1 14.0 0.00I 999.9 000000 724050 13743 19761231 29.3 24 11.8 24 1007.0 24 1004.6 24 17.5 24 13.1 24 22.9 29.9 35.1 14.0 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/1953/0000755000175000017500000000000014302004506015101 5ustar nileshnileshfluids-1.0.22/tests/gsod/1953/724050-13743.op0000644000175000017500000014327214302004506016672 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19530101 38.2 24 33.1 24 1016.5 24 1015.5 24 5.9 24 8.0 24 19.0 999.9 45.3* 34.3* 99.99 999.9 111000 724050 13743 19530102 38.8 24 31.9 24 1017.5 24 1016.5 24 5.4 24 4.0 24 11.1 999.9 49.3* 31.3* 99.99 999.9 010000 724050 13743 19530103 40.4 24 36.9 24 998.8 24 997.8 24 4.1 24 3.5 24 9.9 999.9 45.3* 35.4* 99.99 999.9 110000 724050 13743 19530104 36.7 24 29.5 24 1003.9 24 1002.9 24 8.2 24 9.7 24 21.0 999.9 41.4* 30.4* 99.99 999.9 011000 724050 13743 19530105 30.6 24 18.5 24 1013.1 24 1012.1 24 9.2 24 4.8 24 8.9 999.9 35.4* 26.4* 0.00I 999.9 000000 724050 13743 19530106 34.0 24 19.1 24 1019.2 24 1018.2 24 9.7 24 4.9 24 8.9 999.9 38.3* 30.4* 0.00I 999.9 000000 724050 13743 19530107 35.6 24 31.3 24 1022.9 24 1021.9 24 5.1 24 3.7 24 7.0 999.9 39.4* 33.4* 99.99 999.9 011000 724050 13743 19530108 33.6 24 31.6 24 1024.1 24 1023.1 24 2.0 24 4.6 24 8.0 999.9 35.4* 32.4* 99.99 999.9 110000 724050 13743 19530109 38.7 24 37.8 24 1014.2 24 1013.2 24 1.7 24 6.7 24 13.0 999.9 41.4* 35.4* 99.99 999.9 110000 724050 13743 19530110 37.8 24 36.5 24 1010.8 24 1009.8 24 2.4 24 6.3 24 15.9 999.9 40.3* 34.3* 99.99 999.9 110000 724050 13743 19530111 39.1 24 38.2 24 1002.3 24 1001.3 24 2.3 24 3.7 24 9.9 999.9 40.3* 38.3* 99.99 999.9 111000 724050 13743 19530112 37.0 24 24.9 24 1011.5 24 1010.4 24 11.0 24 14.1 24 23.9 999.9 42.4* 33.4* 99.99 999.9 011000 724050 13743 19530113 38.9 24 21.5 24 1021.0 24 1020.0 24 10.9 24 4.7 24 11.1 999.9 48.4* 30.4* 0.00I 999.9 000000 724050 13743 19530114 43.7 24 31.7 24 1024.3 24 1023.4 24 4.7 24 0.8 24 8.0 999.9 61.3* 33.4* 0.00I 999.9 000000 724050 13743 19530115 49.9 24 38.5 24 1025.5 24 1024.5 24 6.7 24 1.5 24 6.0 999.9 63.3* 40.3* 0.00I 999.9 000000 724050 13743 19530116 56.1 24 44.2 24 1021.4 24 1020.4 24 8.9 24 6.6 24 15.9 999.9 69.3* 49.3* 0.00I 999.9 000000 724050 13743 19530117 36.7 24 24.6 24 1030.8 24 1029.8 24 11.2 24 8.1 24 15.9 999.9 51.3* 29.3* 0.00I 999.9 000000 724050 13743 19530118 41.8 24 37.2 24 1016.9 24 1015.9 24 5.4 24 2.9 24 6.0 999.9 50.4* 37.4* 99.99 999.9 110000 724050 13743 19530119 47.7 24 45.3 24 1012.9 24 1011.9 24 2.5 24 1.7 24 7.0 999.9 56.3* 43.3* 0.00I 999.9 100000 724050 13743 19530120 44.9 24 41.1 24 1012.2 24 1011.2 24 2.8 24 2.0 24 7.0 999.9 55.4* 40.3* 0.00I 999.9 100000 724050 13743 19530121 43.5 24 40.1 24 1012.3 24 1011.4 24 2.6 24 8.0 24 15.0 999.9 49.3* 40.3* 99.99 999.9 110000 724050 13743 19530122 43.1 24 36.3 24 1019.6 24 1018.6 24 6.2 24 4.9 24 11.1 999.9 50.4* 38.3* 99.99 999.9 110000 724050 13743 19530123 42.7 24 36.9 24 1021.7 24 1020.7 24 5.3 24 4.7 24 11.1 999.9 53.4* 36.3* 0.00I 999.9 100000 724050 13743 19530124 57.2 24 49.5 24 1000.7 24 999.7 24 8.7 24 6.9 24 16.9 999.9 66.4* 50.4* 99.99 999.9 110000 724050 13743 19530125 41.7 24 27.2 24 1001.2 24 1000.2 24 12.0 24 15.6 24 22.9 999.9 53.4* 36.3* 99.99 999.9 010000 724050 13743 19530126 33.6 24 16.2 24 1021.9 24 1020.9 24 13.0 24 11.9 24 19.0 999.9 40.3* 28.4* 0.00I 999.9 000000 724050 13743 19530127 37.6 24 21.3 24 1025.3 24 1024.3 24 10.4 24 5.1 24 8.9 999.9 45.3* 33.4* 0.00I 999.9 000000 724050 13743 19530128 48.1 24 39.3 24 1008.6 24 1007.6 24 10.4 24 9.2 24 21.0 999.9 52.3* 43.3* 99.99 999.9 010000 724050 13743 19530129 37.2 24 21.3 23 1015.1 24 1014.1 24 11.7 24 8.0 24 18.1 999.9 46.4* 29.3* 99.99 999.9 011000 724050 13743 19530130 36.2 24 18.6 24 1025.1 24 1024.0 24 10.2 24 7.4 24 15.9 999.9 48.4* 28.4* 0.00I 999.9 000000 724050 13743 19530131 48.7 24 31.2 24 1021.7 24 1020.7 24 10.9 24 9.2 24 13.0 999.9 57.4* 43.3* 0.00I 999.9 000000 724050 13743 19530201 48.8 24 36.5 24 1012.3 24 1011.3 24 11.4 24 11.0 24 20.0 999.9 54.3* 36.3* 99.99 999.9 010000 724050 13743 19530202 29.7 24 7.4 24 1026.3 24 1025.2 24 12.3 24 7.0 24 14.0 999.9 37.4* 22.5* 0.00I 999.9 000000 724050 13743 19530203 34.6 24 26.8 24 1015.7 24 1014.6 24 6.9 24 3.0 24 8.0 999.9 45.3* 29.3* 0.00I 999.9 100000 724050 13743 19530204 39.5 24 28.7 24 1014.1 24 1013.0 24 5.4 24 6.2 24 14.0 999.9 44.4* 35.4* 0.00I 999.9 000000 724050 13743 19530205 36.8 24 17.4 24 1023.3 24 1022.3 24 8.5 24 2.9 24 6.0 999.9 47.3* 27.3* 0.00I 999.9 000000 724050 13743 19530206 40.1 24 25.5 24 1022.1 24 1021.0 24 8.9 24 5.8 24 13.0 999.9 55.4* 31.3* 0.00I 999.9 000000 724050 13743 19530207 47.5 24 43.8 24 1014.3 24 1013.3 24 5.3 24 3.7 24 8.9 999.9 51.3* 43.3* 99.99 999.9 110000 724050 13743 19530208 46.5 24 29.8 24 1013.1 24 1012.1 24 9.4 24 9.2 24 16.9 999.9 50.4* 42.4* 0.00I 999.9 000000 724050 13743 19530209 43.1 24 22.1 24 1023.2 24 1022.2 24 12.8 24 8.1 24 16.9 999.9 53.4* 35.4* 0.00I 999.9 000000 724050 13743 19530210 39.6 24 19.9 24 1029.9 24 1028.9 24 13.5 24 9.8 24 13.0 999.9 47.3* 32.4* 0.00I 999.9 000000 724050 13743 19530211 36.7 24 20.5 24 1025.4 24 1024.4 24 9.0 24 2.7 24 7.0 999.9 41.4* 32.4* 99.99 999.9 111000 724050 13743 19530212 39.9 24 36.2 24 1003.9 24 1002.9 24 4.7 24 5.8 24 18.1 999.9 48.4* 32.4* 99.99 999.9 110000 724050 13743 19530213 41.4 24 27.0 24 1008.1 24 1007.1 24 11.1 24 9.1 24 18.1 999.9 46.4* 38.3* 0.00I 999.9 000000 724050 13743 19530214 38.6 24 22.9 24 1017.4 24 1016.4 24 10.8 24 5.6 24 9.9 999.9 51.3* 28.4* 0.00I 999.9 000000 724050 13743 19530215 41.9 24 37.5 24 1002.3 24 1001.3 24 6.8 24 8.7 24 22.0 999.9 44.4* 40.3* 99.99 999.9 110000 724050 13743 19530216 40.4 24 21.7 24 1009.3 24 1008.3 24 12.9 24 9.5 24 22.9 999.9 47.3* 34.3* 0.00I 999.9 000000 724050 13743 19530217 40.0 24 22.2 24 1013.2 24 1012.2 24 12.9 24 13.5 24 22.9 999.9 46.4* 31.3* 0.00I 999.9 000000 724050 13743 19530218 31.3 24 11.2 24 1027.8 24 1026.8 24 13.3 24 9.4 24 15.0 999.9 42.4* 24.4* 0.00I 999.9 000000 724050 13743 19530219 44.2 24 21.5 23 1028.4 24 1027.4 24 12.2 24 5.2 24 9.9 999.9 59.4* 35.4* 0.00I 999.9 000000 724050 13743 19530220 49.6 24 35.8 24 1027.7 24 1026.6 24 7.8 24 3.1 24 8.9 999.9 61.3* 40.3* 99.99 999.9 010000 724050 13743 19530221 62.0 24 54.1 24 1013.8 24 1012.8 24 9.1 24 11.3 24 16.9 999.9 73.4* 55.4* 99.99 999.9 110000 724050 13743 19530222 43.5 24 22.1 24 1024.4 24 1023.4 24 12.8 24 12.3 24 16.9 999.9 58.3* 37.4* 0.00I 999.9 000000 724050 13743 19530223 39.7 24 15.4 24 1030.4 24 1029.4 24 14.9 24 4.3 24 8.9 999.9 51.3* 31.3* 0.00I 999.9 000000 724050 13743 19530224 44.0 24 24.3 24 1025.3 24 1024.3 24 9.8 24 4.2 24 9.9 999.9 53.4* 35.4* 0.00I 999.9 000000 724050 13743 19530225 48.8 24 32.1 24 1015.4 24 1014.4 24 10.5 24 7.2 24 15.0 999.9 55.4* 44.4* 0.00I 999.9 000000 724050 13743 19530226 50.8 24 34.6 24 1005.8 24 1004.8 24 11.1 24 8.6 24 19.0 999.9 57.4* 44.4* 99.99 999.9 010000 724050 13743 19530227 50.7 24 28.4 24 1002.6 24 1001.6 24 14.9 24 10.6 24 20.0 999.9 62.4* 43.3* 0.00I 999.9 000000 724050 13743 19530228 44.6 24 17.8 24 1009.1 24 1008.1 24 14.2 24 14.3 24 22.9 999.9 54.3* 38.3* 0.00I 999.9 000000 724050 13743 19530301 38.4 24 16.5 24 1017.9 24 1016.9 24 12.8 24 7.3 24 22.9 999.9 44.4* 34.3* 0.00I 999.9 000000 724050 13743 19530302 28.5 24 15.8 24 1026.3 24 1025.3 24 7.0 24 6.1 24 9.9 999.9 39.4* 23.4* 99.99 999.9 101000 724050 13743 19530303 30.8 24 24.4 24 1027.2 24 1026.2 24 3.1 24 3.4 24 7.0 999.9 36.3* 26.4* 99.99 999.9 110000 724050 13743 19530304 42.8 24 40.7 24 1006.3 24 1005.3 24 5.1 24 6.2 24 14.0 999.9 55.4* 35.4* 99.99 999.9 110000 724050 13743 19530305 44.1 24 24.9 24 1009.9 24 1008.9 24 13.8 24 13.2 24 21.0 999.9 52.3* 35.4* 99.99 999.9 010000 724050 13743 19530306 46.1 24 26.3 24 1020.3 24 1019.3 24 13.5 24 5.7 24 20.0 999.9 65.3* 31.3* 0.00I 999.9 000000 724050 13743 19530307 42.8 24 22.7 23 1025.8 24 1024.8 24 14.5 24 11.0 24 22.0 999.9 57.4* 33.4* 0.00I 999.9 000000 724050 13743 19530308 31.9 24 21.0 24 1021.5 24 1020.5 24 9.2 24 7.0 24 12.0 999.9 38.3* 26.4* 99.99 999.9 101000 724050 13743 19530309 32.8 24 16.4 24 1027.3 24 1026.3 24 12.8 24 8.5 24 15.9 999.9 43.3* 26.4* 0.00I 999.9 000000 724050 13743 19530310 41.4 24 25.2 24 1026.6 24 1025.6 24 8.6 24 2.8 24 11.1 999.9 52.3* 34.3* 0.00I 999.9 000000 724050 13743 19530311 42.3 24 26.1 24 1033.4 24 1032.3 24 11.3 24 6.0 24 11.1 999.9 53.4* 31.3* 0.00I 999.9 000000 724050 13743 19530312 47.6 24 44.5 24 1030.5 24 1029.4 24 3.5 24 0.9 24 8.0 999.9 54.3* 42.4* 99.99 999.9 110000 724050 13743 19530313 56.8 24 51.8 24 1016.9 24 1015.9 24 6.9 24 3.5 24 8.0 999.9 68.4* 51.3* 99.99 999.9 110000 724050 13743 19530314 60.2 24 47.5 24 1019.8 24 1018.8 24 8.7 24 1.6 24 7.0 999.9 70.3* 46.4* 0.00I 999.9 000000 724050 13743 19530315 58.6 24 52.9 24 1015.0 24 1013.9 24 6.0 24 4.8 24 14.0 999.9 64.4* 54.3* 99.99 999.9 110000 724050 13743 19530316 55.6 24 42.3 24 1013.9 24 1012.9 24 11.2 24 7.8 24 16.9 999.9 64.4* 50.4* 99.99 999.9 010010 724050 13743 19530317 50.7 24 30.9 24 1018.6 24 1017.5 24 11.6 24 3.8 24 9.9 999.9 63.3* 41.4* 0.00I 999.9 000000 724050 13743 19530318 47.7 24 39.0 24 1014.2 24 1013.2 24 5.4 24 3.8 24 12.0 999.9 55.4* 40.3* 99.99 999.9 110000 724050 13743 19530319 53.8 24 40.1 24 1006.6 24 1005.5 24 7.8 24 5.5 24 15.9 999.9 64.4* 48.4* 99.99 999.9 110000 724050 13743 19530320 50.9 24 30.1 24 1015.5 24 1014.4 24 13.7 24 8.8 24 15.9 999.9 59.4* 40.3* 0.00I 999.9 000000 724050 13743 19530321 47.5 24 29.6 24 1025.8 24 1024.8 24 11.1 24 2.5 24 8.9 999.9 61.3* 35.4* 0.00I 999.9 000000 724050 13743 19530322 51.8 24 38.6 24 1028.0 24 1027.0 24 10.4 24 4.0 24 11.1 999.9 65.3* 40.3* 0.00I 999.9 100000 724050 13743 19530323 58.9 24 48.1 24 1022.6 24 1021.6 24 11.8 24 4.3 24 11.1 999.9 67.3* 52.3* 0.00I 999.9 000000 724050 13743 19530324 60.5 24 51.1 24 1011.1 24 1010.1 24 10.9 24 7.3 24 15.0 999.9 67.3* 51.3* 99.99 999.9 110000 724050 13743 19530325 50.9 24 43.6 24 1006.6 24 1005.6 24 6.6 24 5.2 24 18.1 999.9 59.4* 45.3* 99.99 999.9 110000 724050 13743 19530326 42.3 24 34.7 24 1005.1 24 1004.1 24 8.4 24 20.4 24 33.0 999.9 47.3* 37.4* 99.99 999.9 110000 724050 13743 19530327 44.6 24 28.6 24 1007.2 24 1006.2 24 14.2 24 12.9 24 16.9 999.9 51.3* 41.4* 99.99 999.9 010000 724050 13743 19530328 52.6 24 34.9 24 1006.5 24 1005.5 24 13.0 24 5.7 24 14.0 999.9 63.3* 46.4* 99.99 999.9 010000 724050 13743 19530329 49.4 24 35.0 24 1008.0 24 1007.0 24 11.5 24 10.4 24 16.9 999.9 55.4* 45.3* 0.00I 999.9 000000 724050 13743 19530330 46.5 24 29.8 24 1010.5 24 1009.5 24 14.7 24 17.4 24 21.0 999.9 53.4* 40.3* 0.00I 999.9 000000 724050 13743 19530331 50.4 24 31.3 24 1010.7 24 1009.7 24 12.7 24 9.0 24 18.1 999.9 67.3* 40.3* 0.00I 999.9 000000 724050 13743 19530401 55.7 24 42.6 24 1006.9 24 1005.9 24 6.4 24 4.1 24 12.0 999.9 69.3* 48.4* 99.99 999.9 010010 724050 13743 19530402 54.8 24 47.5 24 1005.6 24 1004.5 24 6.6 24 6.0 24 15.9 999.9 60.3* 49.3* 0.00I 999.9 100000 724050 13743 19530403 57.0 24 40.6 24 1014.0 24 1013.0 24 9.3 24 3.6 24 8.9 999.9 66.4* 50.4* 0.00I 999.9 000000 724050 13743 19530404 57.5 24 45.8 24 1012.3 24 1011.3 24 7.0 24 5.0 24 13.0 999.9 67.3* 49.3* 0.00I 999.9 100000 724050 13743 19530405 56.4 24 31.4 24 1014.4 24 1013.4 24 13.3 24 5.5 24 15.0 999.9 64.4* 44.4* 0.00I 999.9 000000 724050 13743 19530406 55.2 24 38.3 24 1013.2 24 1012.2 24 11.7 24 1.3 24 6.0 999.9 61.3* 49.3* 99.99 999.9 010000 724050 13743 19530407 56.4 24 52.1 24 1002.4 24 1001.4 24 6.2 24 6.4 24 15.9 999.9 59.4* 54.3* 99.99 999.9 110000 724050 13743 19530408 55.9 24 42.2 24 1012.4 24 1011.3 24 13.0 24 8.2 24 13.0 999.9 65.3* 50.4* 0.00I 999.9 000000 724050 13743 19530409 54.1 24 46.0 24 1014.6 24 1013.6 24 9.2 24 2.9 24 9.9 999.9 65.3* 46.4* 99.99 999.9 110000 724050 13743 19530410 60.5 24 51.8 24 1003.4 24 1002.3 24 6.2 24 4.5 24 9.9 999.9 80.2* 52.3* 99.99 999.9 110010 724050 13743 19530411 61.8 24 38.7 24 1007.5 24 1006.5 24 12.6 24 9.1 24 19.0 999.9 72.3* 52.3* 0.00I 999.9 000000 724050 13743 19530412 55.7 24 47.1 24 1007.0 24 1006.0 24 5.8 24 3.5 24 8.9 999.9 63.3* 49.3* 99.99 999.9 110000 724050 13743 19530413 48.4 24 45.1 24 1000.0 24 999.0 24 4.2 24 8.4 24 19.0 999.9 55.4* 41.4* 99.99 999.9 110000 724050 13743 19530414 45.7 24 26.9 24 1011.5 24 1010.4 24 13.7 24 17.6 24 26.0 999.9 53.4* 40.3* 0.00I 999.9 000000 724050 13743 19530415 49.6 24 24.9 24 1018.6 24 1017.6 24 13.4 24 4.8 24 14.0 999.9 60.3* 36.3* 0.00I 999.9 000000 724050 13743 19530416 53.5 24 39.0 24 1005.3 24 1004.3 24 11.3 24 8.7 24 19.0 999.9 60.3* 48.4* 99.99 999.9 110000 724050 13743 19530417 52.6 24 27.5 24 1011.1 24 1010.1 24 13.3 24 10.1 24 19.0 999.9 68.4* 40.3* 0.00I 999.9 000000 724050 13743 19530418 58.3 24 43.7 24 1009.5 24 1008.4 24 8.8 24 5.2 24 11.1 999.9 64.4* 53.4* 99.99 999.9 010000 724050 13743 19530419 48.6 24 36.3 24 1007.8 24 1006.8 24 11.2 24 11.3 24 15.9 999.9 58.3* 42.4* 99.99 999.9 110000 724050 13743 19530420 41.2 24 24.0 24 1008.8 24 1007.8 24 12.9 24 13.1 24 26.0 999.9 49.3* 33.4* 99.99 999.9 011000 724050 13743 19530421 43.8 24 25.3 24 1012.2 24 1011.2 24 14.7 24 13.5 24 22.0 999.9 53.4* 37.4* 0.00I 999.9 000000 724050 13743 19530422 52.5 24 30.2 24 1016.2 24 1015.2 24 12.2 24 6.1 24 15.9 999.9 71.2* 38.3* 0.00I 999.9 000000 724050 13743 19530423 68.0 24 45.4 24 1006.6 24 1005.6 24 13.4 24 10.5 24 15.0 999.9 80.2* 60.3* 0.00I 999.9 000000 724050 13743 19530424 64.9 24 40.7 24 1014.2 24 1013.2 24 11.4 24 4.5 24 9.9 999.9 73.4* 57.4* 0.00I 999.9 000000 724050 13743 19530425 68.0 24 45.5 24 1011.5 24 1010.5 24 14.4 24 10.1 24 15.0 999.9 87.3* 56.3* 0.00I 999.9 000000 724050 13743 19530426 72.7 24 59.2 24 1003.7 24 1002.7 24 11.5 24 7.6 24 15.0 999.9 80.2* 64.4* 99.99 999.9 110000 724050 13743 19530427 56.6 24 42.9 24 1005.2 24 1004.2 24 12.0 24 9.9 24 21.0 999.9 73.4* 50.4* 99.99 999.9 010000 724050 13743 19530428 53.4 24 34.4 24 1012.5 24 1011.5 24 14.9 24 11.0 24 16.9 999.9 63.3* 47.3* 99.99 999.9 010000 724050 13743 19530429 60.0 23 42.9 23 1015.8 23 1014.8 23 9.4 23 3.7 23 9.9 999.9 75.4* 53.4* 99.99 999.9 010000 724050 13743 19530430 60.7 24 51.5 24 1013.5 24 1012.5 24 7.6 24 3.6 24 9.9 999.9 71.2* 52.3* 99.99 999.9 010000 724050 13743 19530501 68.5 24 58.6 24 1002.9 24 1001.9 24 10.9 24 7.3 24 15.9 999.9 84.4* 60.3* 99.99 999.9 110000 724050 13743 19530502 66.1 24 55.6 24 1003.4 24 1002.3 24 8.9 24 4.5 24 8.9 999.9 75.4* 57.4* 99.99 999.9 110010 724050 13743 19530503 62.0 24 51.7 24 1016.4 24 1015.4 24 5.5 24 5.6 24 12.0 999.9 75.4* 53.4* 0.00I 999.9 100000 724050 13743 19530504 66.7 24 55.2 24 1024.0 24 1023.0 24 9.7 24 4.8 24 9.9 999.9 77.4* 55.4* 0.00I 999.9 000000 724050 13743 19530505 69.9 24 66.6 24 1017.1 24 1016.0 24 5.6 24 6.0 24 14.0 999.9 83.3* 65.3* 99.99 999.9 110010 724050 13743 19530506 70.6 24 66.5 24 1014.1 24 1013.1 24 6.3 24 1.3 24 8.9 999.9 82.4* 66.4* 99.99 999.9 110010 724050 13743 19530507 68.2 24 63.4 24 1010.3 24 1009.3 24 8.6 24 6.5 24 9.9 999.9 75.4* 65.3* 99.99 999.9 110000 724050 13743 19530508 65.2 24 57.3 24 1008.6 24 1007.6 24 10.4 24 4.9 24 16.9 999.9 74.3* 59.4* 99.99 999.9 110000 724050 13743 19530509 64.3 24 54.6 24 1011.4 24 1010.4 24 10.5 24 3.3 24 8.9 999.9 76.3* 57.4* 0.00I 999.9 000000 724050 13743 19530510 69.8 24 57.1 24 1013.7 24 1012.7 24 8.4 24 1.0 24 6.0 999.9 86.4* 56.3* 99.99 999.9 110000 724050 13743 19530511 75.0 24 59.4 24 1012.8 24 1011.8 24 7.7 24 1.0 24 7.0 999.9 90.3* 60.3* 0.00I 999.9 100000 724050 13743 19530512 77.2 24 61.1 24 1012.8 24 1011.8 24 7.7 24 1.2 24 5.1 999.9 90.3* 65.3* 0.00I 999.9 000000 724050 13743 19530513 78.1 24 63.2 24 1013.7 24 1012.7 24 8.6 24 2.3 24 5.1 999.9 90.3* 66.4* 0.00I 999.9 000000 724050 13743 19530514 72.9 24 66.2 24 1015.2 24 1014.2 24 6.8 24 3.5 24 15.0 999.9 81.3* 65.3* 99.99 999.9 110010 724050 13743 19530515 74.1 24 67.3 24 1012.8 24 1011.8 24 6.2 24 3.3 24 7.0 999.9 82.4* 68.4* 99.99 999.9 110000 724050 13743 19530516 71.9 24 65.6 24 1015.4 24 1014.4 24 4.7 24 1.1 24 5.1 999.9 79.3* 66.4* 99.99 999.9 010000 724050 13743 19530517 71.7 24 67.3 24 1011.7 24 1010.7 24 6.9 24 3.0 24 14.0 999.9 84.4* 66.4* 99.99 999.9 110010 724050 13743 19530518 76.4 24 65.9 24 1006.4 24 1005.4 24 11.9 24 5.9 24 15.0 999.9 85.3* 70.3* 0.00I 999.9 000000 724050 13743 19530519 67.5 24 60.6 24 1009.3 24 1008.2 24 6.0 24 1.5 24 7.0 999.9 76.3* 63.3* 99.99 999.9 110000 724050 13743 19530520 68.6 24 59.2 24 1011.8 24 1010.8 24 5.1 24 2.7 24 7.0 999.9 81.3* 62.4* 99.99 999.9 110000 724050 13743 19530521 70.2 24 60.8 24 1016.9 24 1015.9 24 7.8 24 3.3 24 9.9 999.9 78.3* 63.3* 0.00I 999.9 100000 724050 13743 19530522 70.7 24 65.0 24 1012.0 24 1011.0 24 8.0 24 6.1 24 9.9 999.9 81.3* 62.4* 99.99 999.9 110000 724050 13743 19530523 76.8 24 64.4 24 1008.1 24 1007.1 24 12.6 24 8.8 24 16.9 999.9 80.2* 74.3* 0.00I 999.9 000000 724050 13743 19530524 67.0 24 52.9 24 1017.0 24 1016.0 24 13.2 24 3.0 24 9.9 999.9 76.3* 57.4* 99.99 999.9 010000 724050 13743 19530525 69.8 24 61.7 24 1015.5 24 1014.5 24 6.8 24 1.8 24 7.0 999.9 77.4* 62.4* 99.99 999.9 110000 724050 13743 19530526 72.9 24 64.7 24 1006.3 24 1005.2 24 6.3 24 5.3 24 15.9 999.9 88.3* 65.3* 0.00I 999.9 100000 724050 13743 19530527 69.0 24 51.1 24 1010.9 24 1009.8 24 13.7 24 12.4 24 20.0 999.9 80.2* 62.4* 0.00I 999.9 000000 724050 13743 19530528 63.0 24 41.3 24 1021.4 24 1020.4 24 14.9 24 12.2 24 21.0 999.9 73.4* 53.4* 0.00I 999.9 000000 724050 13743 19530529 62.7 24 44.3 24 1024.0 24 1023.0 24 13.3 24 2.2 24 5.1 999.9 73.4* 50.4* 0.00I 999.9 000000 724050 13743 19530530 66.0 24 57.6 24 1012.1 24 1011.1 24 10.8 24 4.1 24 8.0 999.9 76.3* 60.3* 99.99 999.9 010010 724050 13743 19530531 56.8 24 54.7 24 1009.4 24 1008.3 24 5.7 24 4.9 24 8.9 999.9 62.4* 54.3* 99.99 999.9 110010 724050 13743 19530601 56.3 24 53.8 24 1009.5 24 1008.5 24 3.8 24 4.4 24 13.0 999.9 60.3* 55.4* 99.99 999.9 110010 724050 13743 19530602 64.2 24 49.9 24 1015.3 24 1014.2 24 11.0 24 4.3 24 11.1 999.9 78.3* 53.4* 0.00I 999.9 000000 724050 13743 19530603 69.5 24 51.7 23 1016.9 24 1015.9 24 11.1 24 2.7 24 8.9 999.9 81.3* 55.4* 0.00I 999.9 000000 724050 13743 19530604 72.5 24 57.4 24 1016.4 24 1015.4 24 9.8 24 2.9 24 9.9 999.9 88.3* 59.4* 0.00I 999.9 000000 724050 13743 19530605 79.2 24 61.8 24 1014.3 24 1013.2 24 10.1 24 5.5 24 8.0 999.9 90.3* 70.3* 0.00I 999.9 000000 724050 13743 19530606 81.0 24 64.3 24 1014.5 24 1013.5 24 13.0 24 5.6 24 8.9 999.9 93.4* 70.3* 0.00I 999.9 000000 724050 13743 19530607 75.5 24 70.0 24 1014.9 24 1013.9 24 11.1 24 4.4 24 7.0 999.9 86.4* 69.3* 99.99 999.9 010010 724050 13743 19530608 74.9 24 70.1 24 1018.0 24 1017.0 24 8.6 24 3.1 24 6.0 999.9 83.3* 69.3* 99.99 999.9 110000 724050 13743 19530609 79.8 24 72.4 24 1016.2 24 1015.2 24 9.3 24 6.1 24 15.0 999.9 91.2* 73.4* 0.00I 999.9 100000 724050 13743 19530610 79.0 24 62.6 24 1017.2 24 1016.2 24 13.1 24 4.5 24 8.9 999.9 86.4* 71.2* 0.00I 999.9 000000 724050 13743 19530611 74.1 24 56.6 24 1019.8 24 1018.8 24 12.0 24 4.6 24 12.0 999.9 81.3* 66.4* 0.00I 999.9 000000 724050 13743 19530612 69.3 24 58.9 24 1018.5 24 1017.5 24 7.4 24 3.2 24 9.9 999.9 77.4* 63.3* 99.99 999.9 010000 724050 13743 19530613 69.1 24 63.9 24 1012.0 24 1010.9 24 6.5 24 4.6 24 9.9 999.9 76.3* 65.3* 99.99 999.9 110110 724050 13743 19530614 61.2 24 57.4 24 1012.3 24 1011.2 24 4.1 24 6.6 24 9.9 999.9 66.4* 58.3* 99.99 999.9 110000 724050 13743 19530615 66.6 24 55.3 24 1016.7 24 1015.6 24 8.9 24 2.1 24 7.0 999.9 77.4* 57.4* 0.00I 999.9 000000 724050 13743 19530616 69.2 24 56.5 24 1016.8 24 1015.8 24 8.9 24 2.7 24 7.0 999.9 79.3* 60.3* 0.00I 999.9 000000 724050 13743 19530617 68.7 24 62.2 24 1012.2 24 1011.2 24 7.0 24 5.3 24 9.9 999.9 72.3* 65.3* 99.99 999.9 110000 724050 13743 19530618 70.4 24 62.7 24 1011.9 24 1010.8 24 6.0 24 3.1 24 9.9 999.9 80.2* 64.4* 99.99 999.9 110000 724050 13743 19530619 74.8 24 66.0 24 1013.4 24 1012.4 24 4.6 24 1.1 24 8.0 999.9 88.3* 64.4* 0.00I 999.9 100000 724050 13743 19530620 79.2 24 68.5 24 1013.8 24 1012.8 24 3.7 24 2.7 24 7.0 999.9 91.2* 69.3* 0.00I 999.9 100000 724050 13743 19530621 82.7 24 71.5 24 1013.0 24 1012.0 24 5.0 24 4.9 24 8.0 999.9 94.3* 72.3* 0.00I 999.9 000000 724050 13743 19530622 81.8 24 69.7 24 1012.9 24 1011.9 24 7.3 24 5.3 24 13.0 999.9 90.3* 75.4* 0.00I 999.9 000000 724050 13743 19530623 81.0 24 64.1 24 1015.1 24 1014.1 24 12.6 24 4.9 24 9.9 999.9 93.4* 70.3* 0.00I 999.9 000000 724050 13743 19530624 75.7 24 54.0 24 1019.3 24 1018.2 24 12.8 24 5.6 24 9.9 999.9 86.4* 65.3* 0.00I 999.9 000000 724050 13743 19530625 75.3 24 63.2 24 1020.5 24 1019.5 24 14.2 24 6.2 24 13.0 999.9 87.3* 64.4* 0.00I 999.9 000000 724050 13743 19530626 81.3 24 68.4 24 1019.6 24 1018.5 24 11.1 24 6.9 24 12.0 999.9 93.4* 73.4* 0.00I 999.9 000000 724050 13743 19530627 82.3 24 69.1 24 1020.8 24 1019.8 24 11.1 24 4.8 24 9.9 999.9 93.4* 76.3* 0.00I 999.9 000000 724050 13743 19530628 81.6 24 71.3 24 1020.9 24 1019.9 24 10.6 24 2.9 24 8.9 999.9 90.3* 74.3* 0.00I 999.9 000000 724050 13743 19530629 81.5 24 71.8 24 1019.6 24 1018.6 24 11.7 24 4.6 24 9.9 999.9 93.4* 73.4* 99.99 999.9 010010 724050 13743 19530630 85.2 24 70.6 24 1018.9 24 1017.9 24 10.5 24 4.3 24 12.0 999.9 94.3* 74.3* 0.00I 999.9 000000 724050 13743 19530701 85.2 24 69.5 24 1015.6 24 1014.5 24 10.0 24 4.7 24 14.0 999.9 95.4* 76.3* 0.00I 999.9 000000 724050 13743 19530702 86.6 24 71.5 24 1009.7 24 1008.7 24 9.7 24 4.8 24 15.9 999.9 97.3* 75.4* 0.00I 999.9 000000 724050 13743 19530703 81.9 24 68.9 24 1008.7 24 1007.7 24 12.1 24 6.4 24 26.0 999.9 93.4* 73.4* 99.99 999.9 010010 724050 13743 19530704 78.2 24 58.9 24 1015.9 24 1014.9 24 13.3 24 4.3 24 8.9 999.9 86.4* 68.4* 0.00I 999.9 000000 724050 13743 19530705 79.1 24 68.7 24 1016.3 24 1015.3 24 10.6 24 3.2 24 8.0 999.9 87.3* 71.2* 0.00I 999.9 000000 724050 13743 19530706 79.5 24 72.0 24 1012.2 24 1011.2 24 10.4 24 5.0 24 9.9 999.9 90.3* 72.3* 99.99 999.9 110000 724050 13743 19530707 84.0 24 69.4 24 1009.5 24 1008.5 24 12.8 24 2.9 24 8.9 999.9 92.3* 78.3* 0.00I 999.9 000000 724050 13743 19530708 80.3 24 69.6 24 1011.1 24 1010.1 24 9.4 24 3.3 24 6.0 999.9 89.2* 74.3* 99.99 999.9 010010 724050 13743 19530709 76.6 24 59.4 24 1012.5 24 1011.5 24 11.4 24 5.9 24 12.0 999.9 84.4* 69.3* 0.00I 999.9 000000 724050 13743 19530710 73.8 24 56.1 24 1018.9 24 1017.8 24 12.9 24 3.9 24 8.0 999.9 81.3* 65.3* 99.99 999.9 010000 724050 13743 19530711 72.4 24 55.3 24 1021.5 24 1020.5 24 11.8 24 2.9 24 8.0 999.9 82.4* 62.4* 0.00I 999.9 000000 724050 13743 19530712 73.1 24 56.8 24 1020.5 24 1019.5 24 12.9 24 2.9 24 7.0 999.9 83.3* 61.3* 0.00I 999.9 000000 724050 13743 19530713 74.6 24 58.2 24 1018.9 24 1017.9 24 11.8 24 2.8 24 8.0 999.9 85.3* 63.3* 0.00I 999.9 000000 724050 13743 19530714 75.5 24 59.8 24 1018.9 24 1017.9 24 12.7 24 4.3 24 9.9 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19530715 79.2 24 63.6 24 1020.3 24 1019.3 24 10.6 24 2.5 24 7.0 999.9 95.4* 67.3* 0.00I 999.9 000000 724050 13743 19530716 83.5 24 66.8 24 1022.0 24 1021.0 24 6.8 24 2.7 24 7.0 999.9 97.3* 72.3* 0.00I 999.9 000000 724050 13743 19530717 85.2 24 64.5 24 1020.2 24 1019.2 24 6.4 24 3.0 24 6.0 999.9 97.3* 72.3* 0.00I 999.9 000000 724050 13743 19530718 86.6 24 66.6 24 1015.6 24 1014.6 24 4.7 24 1.8 24 7.0 999.9 99.3* 74.3* 0.00I 999.9 000000 724050 13743 19530719 84.8 24 68.8 24 1013.2 24 1012.2 24 5.7 24 4.4 24 9.9 999.9 91.2* 76.3* 0.00I 999.9 000000 724050 13743 19530720 83.8 24 69.6 24 1014.0 24 1013.0 24 10.1 24 4.7 24 9.9 999.9 95.4* 75.4* 0.00I 999.9 000000 724050 13743 19530721 85.9 24 67.3 24 1013.9 24 1012.8 24 8.9 24 3.5 24 8.9 999.9 100.2* 76.3* 0.00I 999.9 000000 724050 13743 19530722 82.1 24 70.6 24 1012.6 24 1011.6 24 6.8 24 3.2 24 9.9 999.9 90.3* 75.4* 99.99 999.9 010010 724050 13743 19530723 78.8 24 72.1 24 1006.3 24 1005.3 24 10.7 24 7.8 24 15.0 999.9 88.3* 73.4* 99.99 999.9 010010 724050 13743 19530724 79.0 24 60.7 24 1013.8 24 1012.7 24 12.6 24 5.7 24 11.1 999.9 85.3* 68.4* 0.00I 999.9 000000 724050 13743 19530725 73.4 24 55.0 24 1024.0 24 1023.0 24 12.4 24 4.6 24 8.0 999.9 81.3* 63.3* 0.00I 999.9 000000 724050 13743 19530726 74.0 24 60.0 24 1025.0 24 1024.0 24 14.4 24 3.8 24 8.0 999.9 85.3* 63.3* 0.00I 999.9 000000 724050 13743 19530727 79.0 24 64.8 24 1020.0 24 1018.9 24 10.6 24 4.0 24 8.0 999.9 93.4* 69.3* 0.00I 999.9 000000 724050 13743 19530728 84.0 24 64.1 24 1016.3 24 1015.3 24 11.8 24 4.8 24 9.9 999.9 91.2* 76.3* 0.00I 999.9 000000 724050 13743 19530729 80.5 24 67.5 24 1018.0 24 1017.0 24 9.6 24 2.1 24 6.0 999.9 91.2* 69.3* 0.00I 999.9 000000 724050 13743 19530730 86.1 24 71.8 24 1017.0 24 1016.0 24 7.6 24 4.4 24 8.9 999.9 100.2* 78.3* 99.99 999.9 010000 724050 13743 19530731 83.0 24 69.7 24 1017.4 24 1016.3 24 8.6 24 3.7 24 13.0 999.9 90.3* 78.3* 99.99 999.9 010010 724050 13743 19530801 79.2 24 62.3 24 1017.5 24 1016.4 24 11.9 24 2.2 24 8.0 999.9 86.4* 69.3* 0.00I 999.9 000000 724050 13743 19530802 80.4 24 68.6 24 1014.4 24 1013.4 24 9.4 24 2.6 24 7.0 999.9 92.3* 72.3* 99.99 999.9 010000 724050 13743 19530803 72.1 24 61.4 24 1019.2 24 1018.1 24 9.2 24 6.2 24 12.0 999.9 88.3* 64.4* 99.99 999.9 110000 724050 13743 19530804 74.3 24 64.3 24 1018.8 24 1017.7 24 11.2 24 5.3 24 9.9 999.9 79.3* 71.2* 99.99 999.9 010000 724050 13743 19530805 81.3 24 72.5 24 1008.2 24 1007.1 24 9.2 24 6.2 24 9.9 999.9 93.4* 74.3* 99.99 999.9 110000 724050 13743 19530806 73.3 24 62.0 24 1015.3 24 1014.2 24 6.9 24 6.2 24 9.9 999.9 81.3* 68.4* 99.99 999.9 010000 724050 13743 19530807 72.4 24 64.9 24 1019.0 24 1018.0 24 9.1 24 3.9 24 8.0 999.9 78.3* 65.3* 0.00I 999.9 000000 724050 13743 19530808 74.5 24 69.5 24 1015.8 24 1014.7 24 9.8 24 4.5 24 9.9 999.9 81.3* 70.3* 99.99 999.9 010000 724050 13743 19530809 72.6 24 68.3 24 1011.1 24 1010.0 24 8.2 24 3.6 24 19.0 999.9 82.4* 68.4* 99.99 999.9 010010 724050 13743 19530810 73.2 24 60.9 24 1014.1 24 1013.1 24 13.3 24 4.8 24 12.0 999.9 84.4* 65.3* 0.00I 999.9 000000 724050 13743 19530811 77.2 24 62.3 24 1020.5 24 1019.5 24 7.5 24 1.9 24 6.0 999.9 87.3* 67.3* 0.00I 999.9 100000 724050 13743 19530812 76.8 24 64.3 24 1023.1 24 1022.1 24 8.0 24 2.5 24 7.0 999.9 89.2* 66.4* 0.00I 999.9 000000 724050 13743 19530813 77.0 24 68.7 24 1020.9 24 1019.9 24 8.1 24 2.1 24 6.0 999.9 87.3* 69.3* 0.00I 999.9 100000 724050 13743 19530814 76.3 24 69.5 24 1013.1 24 1012.1 24 9.8 24 7.5 24 16.9 999.9 83.3* 72.3* 99.99 999.9 010000 724050 13743 19530815 80.6 24 63.6 24 1013.4 24 1012.4 24 11.4 24 2.8 24 7.0 999.9 93.4* 68.4* 0.00I 999.9 000000 724050 13743 19530816 81.0 24 60.7 24 1016.5 24 1015.4 24 11.8 24 2.5 24 7.0 999.9 90.3* 71.2* 0.00I 999.9 000000 724050 13743 19530817 73.8 24 64.8 24 1016.3 24 1015.4 24 7.9 24 5.6 24 21.0 999.9 80.2* 68.4* 99.99 999.9 010010 724050 13743 19530818 73.7 24 54.5 24 1018.1 24 1017.1 24 13.5 24 5.4 24 11.1 999.9 80.2* 66.4* 0.00I 999.9 000000 724050 13743 19530819 70.2 24 53.9 24 1017.3 24 1016.3 24 13.3 24 2.1 24 8.0 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19530820 71.6 24 54.3 24 1017.8 24 1016.8 24 11.1 24 3.1 24 9.9 999.9 82.4* 60.3* 0.00I 999.9 000000 724050 13743 19530821 70.5 24 56.3 24 1021.1 24 1020.1 24 9.3 24 2.7 24 9.9 999.9 82.4* 60.3* 0.00I 999.9 000000 724050 13743 19530822 70.8 24 57.1 24 1023.3 24 1022.3 24 11.7 24 3.2 24 9.9 999.9 82.4* 60.3* 0.00I 999.9 000000 724050 13743 19530823 75.2 24 58.6 24 1017.9 24 1016.9 24 11.6 24 4.3 24 7.0 999.9 89.2* 66.4* 0.00I 999.9 000000 724050 13743 19530824 77.5 24 60.2 24 1015.9 24 1014.9 24 11.0 24 6.5 24 11.1 999.9 88.3* 68.4* 0.00I 999.9 000000 724050 13743 19530825 79.2 24 60.6 24 1019.4 24 1018.4 24 9.4 24 1.7 24 8.9 999.9 93.4* 66.4* 0.00I 999.9 000000 724050 13743 19530826 80.6 24 63.5 24 1020.0 24 1018.9 24 7.1 24 2.4 24 8.9 999.9 94.3* 68.4* 0.00I 999.9 000000 724050 13743 19530827 83.6 24 65.5 24 1018.4 24 1017.4 24 7.0 24 3.5 24 9.9 999.9 96.3* 72.3* 0.00I 999.9 000000 724050 13743 19530828 85.1 24 66.2 24 1016.5 24 1015.5 24 8.0 24 1.7 24 6.0 999.9 99.3* 72.3* 0.00I 999.9 000000 724050 13743 19530829 85.1 24 67.4 24 1014.5 24 1013.4 24 5.9 24 2.6 24 7.0 999.9 99.3* 73.4* 0.00I 999.9 000000 724050 13743 19530830 85.5 24 64.0 24 1014.6 24 1013.6 24 5.3 24 1.5 24 8.0 999.9 101.3* 73.4* 0.00I 999.9 000000 724050 13743 19530831 86.3 24 64.8 24 1014.5 24 1013.5 24 8.5 24 2.8 24 9.9 999.9 102.4* 72.3* 0.00I 999.9 000000 724050 13743 19530901 87.0 24 69.1 24 1016.3 24 1015.3 24 7.3 24 1.7 24 8.0 999.9 99.3* 75.4* 0.00I 999.9 000000 724050 13743 19530902 87.1 24 67.2 24 1014.6 24 1013.6 24 7.2 24 3.3 24 8.9 999.9 101.3* 75.4* 0.00I 999.9 000000 724050 13743 19530903 86.4 24 71.5 24 1012.7 24 1011.7 24 12.5 24 5.7 24 11.1 999.9 99.3* 76.3* 0.00I 999.9 000000 724050 13743 19530904 83.2 24 73.5 24 1013.9 24 1012.8 24 12.8 24 8.2 24 13.0 999.9 92.3* 76.3* 0.00I 999.9 000000 724050 13743 19530905 80.2 24 72.4 24 1011.7 24 1010.7 24 11.8 24 9.9 24 19.0 999.9 90.3* 71.2* 99.99 999.9 010010 724050 13743 19530906 64.4 24 62.4 24 1013.5 24 1012.5 24 6.3 24 11.1 24 16.9 999.9 71.2* 62.4* 99.99 999.9 110000 724050 13743 19530907 69.8 24 57.6 24 1012.2 24 1011.2 24 13.8 24 10.6 24 15.0 999.9 81.3* 63.3* 99.99 999.9 010000 724050 13743 19530908 70.5 24 54.6 24 1020.0 24 1018.9 24 13.5 24 8.0 24 15.9 999.9 78.3* 62.4* 0.00I 999.9 000000 724050 13743 19530909 68.0 24 49.2 24 1026.2 24 1025.2 24 14.4 24 4.3 24 9.9 999.9 76.3* 57.4* 0.00I 999.9 000000 724050 13743 19530910 66.1 24 50.5 24 1025.7 24 1024.7 24 10.8 24 2.0 24 8.0 999.9 78.3* 54.3* 0.00I 999.9 000000 724050 13743 19530911 66.3 24 53.3 24 1020.5 24 1019.5 24 10.3 24 2.6 24 9.9 999.9 78.3* 56.3* 0.00I 999.9 000000 724050 13743 19530912 70.5 24 60.6 24 1011.0 24 1010.0 24 13.1 24 8.0 24 14.0 999.9 84.4* 63.3* 99.99 999.9 010010 724050 13743 19530913 67.4 24 52.7 24 1009.0 24 1008.0 24 12.6 24 10.9 24 20.0 999.9 77.4* 62.4* 0.00I 999.9 000000 724050 13743 19530914 61.1 24 42.8 24 1015.4 24 1014.3 24 14.5 24 3.8 24 8.9 999.9 71.2* 51.3* 99.99 999.9 010000 724050 13743 19530915 69.8 24 56.0 24 1011.1 24 1010.1 24 11.8 24 4.3 24 13.0 999.9 86.4* 57.4* 99.99 999.9 010000 724050 13743 19530916 75.3 24 56.4 24 1008.2 24 1007.2 24 13.0 24 3.2 24 9.9 999.9 85.3* 62.4* 0.00I 999.9 000000 724050 13743 19530917 70.1 24 50.6 24 1014.1 24 1013.1 24 14.4 24 4.3 24 8.0 999.9 76.3* 62.4* 0.00I 999.9 000000 724050 13743 19530918 64.1 24 50.7 24 1020.9 24 1019.9 24 9.4 24 3.5 24 8.0 999.9 76.3* 53.4* 0.00I 999.9 000000 724050 13743 19530919 69.3 24 59.2 24 1020.3 24 1019.3 24 12.5 24 4.5 24 9.9 999.9 79.3* 63.3* 0.00I 999.9 000000 724050 13743 19530920 72.4 24 62.8 24 1013.4 24 1012.4 24 13.1 24 5.2 24 11.1 999.9 82.4* 64.4* 99.99 999.9 010000 724050 13743 19530921 70.9 24 63.1 24 1010.1 24 1009.1 24 10.3 24 5.3 24 22.0 999.9 84.4* 62.4* 99.99 999.9 010000 724050 13743 19530922 60.5 24 49.2 24 1021.1 24 1020.1 24 12.4 24 9.4 24 15.0 999.9 69.3* 54.3* 99.99 999.9 010000 724050 13743 19530923 59.2 24 43.3 24 1030.0 24 1028.9 24 14.9 24 4.4 24 11.1 999.9 66.4* 51.3* 0.00I 999.9 000000 724050 13743 19530924 58.1 24 45.4 24 1031.9 24 1030.9 24 8.9 24 2.4 24 8.9 999.9 71.2* 45.3* 0.00I 999.9 000000 724050 13743 19530925 63.3 24 53.7 24 1025.7 24 1024.7 24 11.3 24 2.8 24 9.9 999.9 76.3* 53.4* 0.00I 999.9 000000 724050 13743 19530926 69.7 24 61.2 24 1018.1 24 1017.0 24 11.5 24 4.1 24 9.9 999.9 80.2* 62.4* 0.00I 999.9 000000 724050 13743 19530927 70.9 24 64.1 24 1010.5 24 1009.4 24 12.4 24 4.7 24 11.1 999.9 77.4* 66.4* 0.00I 999.9 000000 724050 13743 19530928 68.5 24 56.7 24 1010.0 24 1009.0 24 11.9 24 5.4 24 11.1 999.9 78.3* 62.4* 0.00I 999.9 000000 724050 13743 19530929 69.8 24 53.3 24 1016.2 24 1015.2 24 11.2 24 2.4 24 6.0 999.9 90.3* 55.4* 0.00I 999.9 000000 724050 13743 19530930 74.7 24 58.1 24 1020.3 24 1019.3 24 11.9 24 4.6 24 12.0 999.9 89.2* 62.4* 0.00I 999.9 000000 724050 13743 19531001 72.6 24 58.3 24 1022.1 24 1021.1 24 10.4 24 6.4 24 12.0 999.9 80.2* 62.4* 0.00I 999.9 000000 724050 13743 19531002 64.8 24 48.3 24 1027.5 24 1026.5 24 9.9 24 3.8 24 8.9 999.9 77.4* 54.3* 0.00I 999.9 000000 724050 13743 19531003 63.9 24 51.3 24 1029.1 24 1028.0 24 7.6 24 2.4 24 9.9 999.9 79.3* 51.3* 0.00I 999.9 000000 724050 13743 19531004 64.9 24 56.6 24 1023.5 24 1022.5 24 8.6 24 3.6 24 8.9 999.9 79.3* 54.3* 0.00I 999.9 100000 724050 13743 19531005 68.3 24 59.8 24 1014.3 24 1013.3 24 9.7 24 2.3 24 6.0 999.9 79.3* 60.3* 0.00I 999.9 100000 724050 13743 19531006 62.5 24 57.3 24 1006.5 24 1005.5 24 6.2 24 6.7 24 12.0 999.9 69.3* 56.3* 99.99 999.9 110000 724050 13743 19531007 54.0 24 39.2 24 1016.2 24 1015.2 24 14.1 24 13.8 24 21.0 999.9 60.3* 46.4* 0.00I 999.9 000000 724050 13743 19531008 51.3 24 36.0 24 1025.7 24 1024.7 24 14.3 24 3.0 24 12.0 999.9 64.4* 39.4* 0.00I 999.9 000000 724050 13743 19531009 54.7 24 42.2 24 1021.7 24 1020.7 24 9.7 24 4.5 24 11.1 999.9 67.3* 45.3* 0.00I 999.9 000000 724050 13743 19531010 56.0 24 44.9 24 1015.5 24 1014.4 24 6.6 24 2.7 24 9.9 999.9 70.3* 44.4* 0.00I 999.9 100000 724050 13743 19531011 58.6 24 47.8 24 1012.0 24 1011.0 24 5.4 24 1.9 24 7.0 999.9 73.4* 47.3* 0.00I 999.9 000000 724050 13743 19531012 61.6 24 49.1 24 1013.6 24 1012.6 24 7.5 24 6.3 24 13.0 999.9 71.2* 53.4* 0.00I 999.9 000000 724050 13743 19531013 56.0 24 43.7 24 1027.1 24 1026.1 24 8.7 24 7.5 24 12.0 999.9 66.4* 46.4* 0.00I 999.9 000000 724050 13743 19531014 56.6 24 46.5 24 1029.2 24 1028.1 24 7.0 24 4.2 24 9.9 999.9 68.4* 47.3* 0.00I 999.9 000000 724050 13743 19531015 59.4 24 49.7 24 1021.3 24 1020.3 24 5.7 24 1.8 24 9.9 999.9 77.4* 47.3* 0.00I 999.9 000000 724050 13743 19531016 66.7 24 53.8 24 1015.7 24 1014.7 24 6.5 24 3.2 24 8.9 999.9 80.2* 55.4* 0.00I 999.9 000000 724050 13743 19531017 64.8 24 52.6 21 1021.6 24 1020.6 24 3.8 24 2.1 24 5.1 999.9 81.3* 53.4* 0.00I 999.9 000000 724050 13743 19531018 64.0 24 52.6 24 1025.5 24 1024.5 24 5.7 24 2.5 24 8.9 999.9 79.3* 53.4* 0.00I 999.9 000000 724050 13743 19531019 66.7 24 56.0 24 1024.0 24 1023.0 24 7.9 24 3.0 24 8.9 999.9 80.2* 57.4* 0.00I 999.9 000000 724050 13743 19531020 67.0 24 53.6 24 1020.9 24 1019.9 24 5.1 24 3.0 24 8.9 999.9 82.4* 52.3* 0.00I 999.9 000000 724050 13743 19531021 63.6 24 52.7 24 1023.1 24 1022.0 24 4.0 24 3.3 24 12.0 999.9 72.3* 54.3* 0.00I 999.9 000000 724050 13743 19531022 60.8 24 48.2 24 1024.1 24 1023.1 24 9.5 24 7.8 24 15.0 999.9 66.4* 55.4* 0.00I 999.9 000000 724050 13743 19531023 62.1 24 46.9 24 1012.3 24 1011.3 24 11.4 24 7.1 24 12.0 999.9 76.3* 52.3* 0.00I 999.9 000000 724050 13743 19531024 57.7 24 47.0 24 1005.7 24 1004.7 24 6.3 24 2.8 24 12.0 999.9 68.4* 50.4* 99.99 999.9 010000 724050 13743 19531025 59.4 24 47.5 24 1011.6 24 1010.6 24 12.4 24 6.4 24 9.9 999.9 70.3* 53.4* 99.99 999.9 010000 724050 13743 19531026 59.6 24 47.3 24 1017.9 24 1016.9 24 9.7 24 2.3 24 7.0 999.9 70.3* 50.4* 0.00I 999.9 000000 724050 13743 19531027 59.1 24 53.3 24 1017.6 24 1016.6 24 7.2 24 5.3 24 12.0 999.9 64.4* 54.3* 99.99 999.9 010000 724050 13743 19531028 63.6 24 59.6 24 1007.5 24 1006.5 24 5.8 24 4.7 24 15.0 999.9 69.3* 60.3* 99.99 999.9 110010 724050 13743 19531029 58.0 24 55.6 24 998.6 24 997.6 24 4.6 24 11.8 24 18.1 999.9 65.3* 55.4* 99.99 999.9 110010 724050 13743 19531030 57.3 24 40.8 24 1009.9 24 1008.9 24 12.2 24 13.1 24 21.0 999.9 68.4* 49.3* 99.99 999.9 010000 724050 13743 19531031 58.0 24 41.5 24 1019.3 24 1018.3 24 12.1 24 4.1 24 8.0 999.9 70.3* 47.3* 0.00I 999.9 000000 724050 13743 19531101 56.4 24 42.4 24 1019.6 24 1018.6 24 7.2 24 1.9 24 8.9 999.9 72.3* 45.3* 0.00I 999.9 000000 724050 13743 19531102 57.6 24 42.9 24 1020.9 24 1019.9 24 7.4 24 2.6 24 12.0 999.9 75.4* 44.4* 0.00I 999.9 000000 724050 13743 19531103 60.4 24 43.8 24 1019.2 24 1018.2 24 7.5 24 3.3 24 12.0 999.9 76.3* 47.3* 0.00I 999.9 000000 724050 13743 19531104 59.3 24 37.0 24 1018.6 24 1017.6 24 11.0 24 9.0 24 15.9 999.9 66.4* 53.4* 0.00I 999.9 000000 724050 13743 19531105 46.4 24 28.8 24 1026.0 24 1024.9 24 14.1 24 9.6 24 15.0 999.9 55.4* 41.4* 0.00I 999.9 000000 724050 13743 19531106 34.9 24 28.4 24 1026.7 24 1025.7 24 4.8 24 14.7 24 22.0 999.9 41.4* 30.4* 99.99 999.9 101000 724050 13743 19531107 35.4 24 28.7 24 1017.5 24 1016.5 24 9.4 24 16.7 24 26.0 999.9 44.4* 30.4* 99.99 999.9 001000 724050 13743 19531108 40.7 24 27.9 24 1021.5 24 1020.5 24 9.8 24 7.0 24 16.9 999.9 50.4* 32.4* 0.00I 999.9 000000 724050 13743 19531109 46.5 24 29.3 24 1022.0 24 1021.0 24 8.9 24 3.4 24 15.0 999.9 58.3* 35.4* 0.00I 999.9 000000 724050 13743 19531110 47.5 24 34.3 24 1024.9 24 1023.9 24 7.9 24 4.1 24 11.1 999.9 53.4* 42.4* 0.00I 999.9 000000 724050 13743 19531111 44.2 24 35.2 24 1023.4 24 1022.3 24 7.0 24 2.3 24 7.0 999.9 58.3* 34.3* 0.00I 999.9 000000 724050 13743 19531112 45.1 24 36.2 24 1025.5 24 1024.4 24 4.3 24 2.3 24 9.9 999.9 58.3* 35.4* 0.00I 999.9 000000 724050 13743 19531113 45.7 24 39.6 24 1030.6 24 1029.6 24 2.7 24 1.7 24 7.0 999.9 56.3* 36.3* 0.00I 999.9 100000 724050 13743 19531114 42.7 24 39.0 24 1028.6 24 1027.6 24 1.5 24 1.0 24 5.1 999.9 53.4* 36.3* 0.00I 999.9 100000 724050 13743 19531115 47.5 24 40.1 24 1020.0 24 1019.0 24 1.9 24 2.7 24 7.0 999.9 70.3* 36.3* 0.00I 999.9 100000 724050 13743 19531116 58.5 24 42.3 24 1017.1 24 1016.1 24 5.3 24 2.2 24 9.9 999.9 74.3* 45.3* 0.00I 999.9 000000 724050 13743 19531117 55.2 24 41.9 24 1019.6 24 1018.5 24 5.3 24 1.7 24 11.1 999.9 73.4* 40.3* 0.00I 999.9 000000 724050 13743 19531118 52.7 24 39.1 24 1023.0 24 1022.0 24 3.0 24 0.1 24 2.9 999.9 73.4* 40.3* 0.00I 999.9 000000 724050 13743 19531119 51.9 24 39.8 24 1024.4 24 1023.4 24 1.7 24 0.5 24 2.9 999.9 71.2* 40.3* 0.00I 999.9 000000 724050 13743 19531120 52.8 24 43.7 24 1023.6 24 1022.6 24 2.5 24 2.0 24 8.9 999.9 70.3* 39.4* 0.00I 999.9 000000 724050 13743 19531121 56.1 24 53.2 24 1021.7 24 1020.7 24 2.8 24 2.0 24 9.9 999.9 63.3* 47.3* 99.99 999.9 010000 724050 13743 19531122 61.6 24 58.9 24 1020.0 24 1018.9 24 3.1 24 2.9 24 14.0 999.9 70.3* 56.3* 0.00I 999.9 100000 724050 13743 19531123 62.0 24 54.7 24 1009.0 24 1007.9 24 10.9 24 9.9 24 15.0 999.9 69.3* 54.3* 99.99 999.9 010000 724050 13743 19531124 48.3 24 40.3 24 1008.4 24 1007.4 24 8.4 24 3.8 24 12.0 999.9 53.4* 43.3* 0.00I 999.9 000000 724050 13743 19531125 48.8 24 43.9 24 998.9 24 997.9 24 5.9 24 7.1 24 15.9 999.9 50.4* 45.3* 99.99 999.9 110000 724050 13743 19531126 41.6 24 26.8 24 1009.6 24 1008.5 24 14.9 24 8.7 24 15.0 999.9 47.3* 36.3* 0.00I 999.9 000000 724050 13743 19531127 38.3 24 28.9 24 1016.6 24 1015.6 24 10.4 24 5.1 24 12.0 999.9 44.4* 36.3* 99.99 999.9 011000 724050 13743 19531128 38.0 24 32.8 24 1020.8 24 1019.7 24 7.6 24 8.3 24 15.0 999.9 41.4* 35.4* 99.99 999.9 110000 724050 13743 19531129 38.1 24 26.6 24 1029.5 24 1028.4 24 12.2 24 7.5 24 12.0 999.9 46.4* 32.4* 0.00I 999.9 000000 724050 13743 19531130 43.4 24 29.3 24 1023.8 24 1022.8 24 10.2 24 7.2 24 9.9 999.9 51.3* 38.3* 0.00I 999.9 000000 724050 13743 19531201 43.1 24 32.3 24 1022.4 24 1021.3 24 9.4 24 10.4 24 22.0 999.9 46.4* 39.4* 0.00I 999.9 000000 724050 13743 19531202 41.9 24 31.5 24 1025.7 24 1024.7 24 11.8 24 9.5 24 13.0 999.9 50.4* 35.4* 0.00I 999.9 000000 724050 13743 19531203 40.9 24 30.9 24 1024.1 24 1023.1 24 4.8 24 3.6 24 9.9 999.9 58.3* 29.3* 0.00I 999.9 100000 724050 13743 19531204 51.6 24 42.3 24 1019.7 24 1018.6 24 7.8 24 10.2 24 18.1 999.9 61.3* 47.3* 99.99 999.9 010000 724050 13743 19531205 58.5 24 44.1 24 1019.0 24 1018.0 24 11.1 24 7.1 24 12.0 999.9 62.4* 50.4* 99.99 999.9 010000 724050 13743 19531206 46.7 24 39.4 24 1017.4 24 1016.4 24 5.5 24 2.0 24 14.0 999.9 55.4* 39.4* 99.99 999.9 110000 724050 13743 19531207 53.2 24 40.4 24 1013.8 24 1012.8 24 11.8 24 13.5 24 20.0 999.9 67.3* 44.4* 99.99 999.9 110000 724050 13743 19531208 46.0 24 30.5 24 1024.4 24 1023.3 24 11.3 24 5.3 24 11.1 999.9 61.3* 37.4* 0.00I 999.9 000000 724050 13743 19531209 51.5 24 40.3 24 1018.4 24 1017.4 24 9.1 24 7.8 24 12.0 999.9 57.4* 45.3* 99.99 999.9 010000 724050 13743 19531210 52.2 24 42.7 24 1006.6 24 1005.6 24 9.9 24 12.9 24 26.0 999.9 58.3* 45.3* 99.99 999.9 110000 724050 13743 19531211 42.6 24 27.8 24 1023.0 24 1022.0 24 11.9 24 6.4 24 11.1 999.9 51.3* 33.4* 0.00I 999.9 000000 724050 13743 19531212 44.5 24 39.2 24 1018.2 24 1017.2 24 6.5 24 4.5 24 14.0 999.9 45.3* 43.3* 99.99 999.9 110000 724050 13743 19531213 43.8 24 38.5 24 1013.8 24 1012.8 24 5.3 24 3.3 24 13.0 999.9 52.3* 38.3* 99.99 999.9 110000 724050 13743 19531214 45.1 24 41.2 24 998.8 24 997.8 24 6.1 24 9.4 24 22.0 999.9 52.3* 40.3* 99.99 999.9 110000 724050 13743 19531215 42.6 24 28.5 24 1006.3 24 1005.3 24 14.8 24 13.5 24 22.9 999.9 47.3* 39.4* 0.00I 999.9 000000 724050 13743 19531216 35.6 24 24.8 24 1017.0 24 1016.0 24 12.0 24 7.7 24 16.9 999.9 42.4* 31.3* 99.99 999.9 001000 724050 13743 19531217 26.6 24 10.5 24 1025.6 24 1024.5 24 14.3 24 15.9 24 22.0 999.9 33.4* 22.5* 0.00I 999.9 000000 724050 13743 19531218 24.2 24 8.7 24 1028.8 24 1027.8 24 13.7 24 11.3 24 22.0 999.9 31.3* 20.3* 0.00I 999.9 000000 724050 13743 19531219 26.6 24 9.0 24 1029.2 24 1028.2 24 14.9 24 10.1 24 22.0 999.9 37.4* 18.3* 0.00I 999.9 000000 724050 13743 19531220 39.4 24 22.6 24 1021.2 24 1020.2 24 14.6 24 7.7 24 8.9 999.9 55.4* 31.3* 0.00I 999.9 000000 724050 13743 19531221 44.7 24 26.6 24 1015.7 24 1014.7 24 11.7 24 6.9 24 9.9 999.9 51.3* 38.3* 0.00I 999.9 100000 724050 13743 19531222 50.0 24 47.2 24 1012.7 24 1011.7 24 3.7 24 8.1 24 13.0 999.9 56.3* 47.3* 99.99 999.9 110000 724050 13743 19531223 44.2 24 32.7 24 1018.7 24 1017.6 24 12.2 24 13.3 24 20.0 999.9 55.4* 35.4* 0.00I 999.9 000000 724050 13743 19531224 29.1 24 11.3 24 1028.3 24 1027.3 24 14.9 24 10.9 24 18.1 999.9 36.3* 20.3* 0.00I 999.9 000000 724050 13743 19531225 33.6 24 15.2 24 1019.9 24 1018.9 24 12.8 24 7.4 24 12.0 999.9 39.4* 28.4* 0.00I 999.9 000000 724050 13743 19531226 37.7 24 18.5 24 1011.3 24 1010.3 24 14.5 24 5.9 24 20.0 999.9 52.3* 29.3* 0.00I 999.9 000000 724050 13743 19531227 40.9 24 20.6 24 1019.9 24 1018.9 24 14.9 24 9.1 24 18.1 999.9 46.4* 37.4* 0.00I 999.9 000000 724050 13743 19531228 40.7 24 29.7 24 1018.4 24 1017.5 24 10.2 24 6.0 24 9.9 999.9 46.4* 37.4* 99.99 999.9 010000 724050 13743 19531229 40.9 24 35.5 24 1013.7 24 1012.7 24 2.7 24 0.8 24 5.1 999.9 46.4* 35.4* 0.00I 999.9 000000 724050 13743 19531230 40.1 24 37.8 24 1013.2 24 1012.2 24 2.0 24 2.3 24 7.0 999.9 46.4* 36.3* 0.00I 999.9 100000 724050 13743 19531231 40.3 24 25.5 24 1013.8 24 1012.8 24 11.7 24 11.4 24 29.9 999.9 45.3* 34.3* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1951/0000755000175000017500000000000014302004506015077 5ustar nileshnileshfluids-1.0.22/tests/gsod/1951/724050-13743.op0000644000175000017500000014327214302004506016670 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19510101 31.8 24 21.7 24 1027.3 24 1026.6 24 11.5 24 5.2 24 9.9 999.9 39.4* 24.4* 0.00I 999.9 000000 724050 13743 19510102 33.0 24 25.1 24 1026.5 24 1025.8 24 7.2 24 1.7 24 8.0 999.9 44.4* 25.3* 0.00I 999.9 000000 724050 13743 19510103 50.1 24 39.2 24 1017.5 24 1016.8 24 7.7 24 11.2 24 19.0 999.9 60.3* 41.4* 0.00I 999.9 000000 724050 13743 19510104 58.3 24 46.7 24 1009.9 24 1009.2 24 12.2 24 15.6 24 26.0 999.9 64.4* 45.3* 99.99 999.9 010000 724050 13743 19510105 40.3 24 25.8 24 1025.4 24 1024.7 24 11.5 24 6.7 24 20.0 999.9 49.3* 32.4* 0.00I 999.9 000000 724050 13743 19510106 43.0 24 30.7 24 1023.6 24 1022.9 24 10.8 24 7.3 24 15.9 999.9 55.4* 35.4* 0.00I 999.9 000000 724050 13743 19510107 42.7 24 36.9 24 1012.0 24 1011.3 24 5.6 24 5.5 24 16.9 999.9 51.3* 39.4* 99.99 999.9 110000 724050 13743 19510108 29.0 24 15.2 24 1011.2 24 1010.5 24 12.0 24 21.0 24 26.0 999.9 38.3* 23.4* 0.00I 999.9 100000 724050 13743 19510109 24.4 24 8.9 24 1024.7 24 1024.1 24 13.0 24 9.3 24 20.0 999.9 35.4* 18.3* 0.00I 999.9 000000 724050 13743 19510110 32.5 24 17.2 24 1024.4 24 1023.8 24 8.1 24 5.3 24 11.1 999.9 44.4* 23.4* 0.00I 999.9 000000 724050 13743 19510111 41.7 24 24.5 24 1015.5 24 1014.8 24 7.7 24 8.9 24 15.0 999.9 49.3* 38.3* 99.99 999.9 010000 724050 13743 19510112 38.2 24 24.0 24 1022.7 24 1022.0 24 10.8 24 5.6 24 15.0 999.9 45.3* 29.3* 0.00I 999.9 000000 724050 13743 19510113 33.6 24 22.3 24 1029.2 24 1028.5 24 8.5 24 7.0 24 12.0 999.9 40.3* 27.3* 0.00I 999.9 000000 724050 13743 19510114 33.5 24 27.3 24 1023.8 24 1023.1 24 6.1 24 5.8 24 13.0 999.9 35.4* 30.4* 99.99 999.9 111000 724050 13743 19510115 44.0 24 36.6 24 998.1 24 997.4 24 8.3 24 13.1 24 26.0 999.9 50.4* 37.4* 99.99 999.9 110000 724050 13743 19510116 38.3 24 23.2 24 1009.5 24 1008.8 24 13.8 24 16.6 24 32.1 999.9 40.3* 35.4* 99.99 999.9 001000 724050 13743 19510117 37.6 24 20.9 24 1017.7 24 1017.0 24 10.5 24 6.9 24 14.0 999.9 55.4* 29.3* 0.00I 999.9 000000 724050 13743 19510118 52.3 24 31.5 24 1013.4 24 1012.8 24 11.0 24 8.1 24 9.9 999.9 65.3* 46.4* 0.00I 999.9 000000 724050 13743 19510119 55.6 24 42.9 24 1015.2 24 1014.5 24 10.9 24 5.7 24 9.9 999.9 69.3* 44.4* 0.00I 999.9 000000 724050 13743 19510120 56.4 24 45.2 24 1016.1 24 1015.4 24 11.4 24 7.9 24 16.9 999.9 68.4* 44.4* 0.00I 999.9 000000 724050 13743 19510121 50.5 24 36.3 24 1013.6 24 1013.0 24 14.5 24 19.8 24 36.9 999.9 63.3* 35.4* 99.99 999.9 010000 724050 13743 19510122 28.1 24 13.9 24 1031.7 24 1031.0 24 13.5 24 12.1 24 22.0 999.9 34.3* 22.5* 0.00I 999.9 000000 724050 13743 19510123 32.1 24 22.7 24 1031.8 24 1031.1 24 8.8 24 5.2 24 15.9 999.9 49.3* 23.4* 0.00I 999.9 000000 724050 13743 19510124 46.7 24 41.6 24 1015.2 24 1014.5 24 7.6 24 5.5 24 13.0 999.9 51.3* 40.3* 99.99 999.9 110000 724050 13743 19510125 39.6 24 28.4 24 1014.0 24 1013.3 24 10.0 24 10.7 24 16.9 999.9 46.4* 34.3* 0.00I 999.9 000000 724050 13743 19510126 29.8 24 15.7 24 1015.6 24 1014.9 24 9.6 24 16.0 24 23.9 999.9 34.3* 24.4* 0.00I 999.9 000000 724050 13743 19510127 33.2 24 18.2 24 1017.9 24 1017.2 24 8.4 24 7.6 24 25.1 999.9 48.4* 24.4* 0.00I 999.9 000000 724050 13743 19510128 40.2 24 30.2 24 1020.9 24 1020.2 24 3.6 24 2.5 24 9.9 999.9 47.3* 33.4* 99.99 999.9 010000 724050 13743 19510129 44.6 24 39.2 24 1020.2 24 1019.6 24 4.2 24 6.3 24 14.0 999.9 54.3* 36.3* 99.99 999.9 110000 724050 13743 19510130 30.1 24 22.4 24 1029.0 24 1028.4 24 7.1 24 9.6 24 16.9 999.9 36.3* 26.4* 99.99 999.9 111000 724050 13743 19510131 24.3 24 19.0 24 1031.1 24 1030.5 24 5.8 24 7.4 24 12.0 999.9 27.3* 21.4* 99.99 999.9 111000 724050 13743 19510201 32.4 24 31.8 24 1012.6 24 1011.9 24 1.4 24 5.0 24 12.0 999.9 43.3* 27.3* 99.99 999.9 111000 724050 13743 19510202 27.5 24 17.5 24 1021.4 24 1020.7 24 12.3 24 19.0 24 28.0 999.9 45.3* 20.3* 0.00I 999.9 000000 724050 13743 19510203 17.3 24 2.8 24 1034.2 24 1033.5 24 12.0 24 11.8 24 16.9 999.9 23.4* 13.5* 0.00I 999.9 000000 724050 13743 19510204 22.5 24 9.4 24 1024.3 24 1023.6 24 9.2 24 6.0 24 11.1 999.9 33.4* 15.4* 0.00I 999.9 000000 724050 13743 19510205 33.6 24 20.5 24 1023.6 24 1022.9 24 8.3 24 4.8 24 20.0 999.9 41.4* 28.4* 0.00I 999.9 000000 724050 13743 19510206 34.7 24 25.8 24 1028.8 24 1028.2 24 5.2 24 3.0 24 13.0 999.9 47.3* 25.3* 0.00I 999.9 100000 724050 13743 19510207 41.8 24 36.7 24 1008.9 24 1008.2 24 7.0 24 14.7 24 28.0 999.9 55.4* 27.3* 99.99 999.9 111000 724050 13743 19510208 16.7 24 5.0 24 1018.3 24 1017.6 24 12.8 24 23.6 24 27.0 999.9 24.4* 11.3* 0.00I 999.9 000000 724050 13743 19510209 18.8 24 5.9 24 1032.9 24 1032.3 24 8.4 24 10.4 24 26.0 999.9 25.3* 15.4* 99.99 999.9 001000 724050 13743 19510210 24.0 24 13.5 24 1038.0 24 1037.3 24 7.0 24 7.4 24 13.0 999.9 31.3* 20.3* 99.99 999.9 001000 724050 13743 19510211 30.4 24 22.4 24 1030.7 24 1030.0 24 11.7 24 4.3 24 9.9 999.9 42.4* 24.4* 99.99 999.9 001000 724050 13743 19510212 42.1 24 32.9 24 1019.3 24 1018.6 24 8.1 24 2.4 24 8.0 999.9 65.3* 30.4* 0.00I 999.9 000000 724050 13743 19510213 50.2 24 39.9 24 1021.1 24 1020.4 24 5.7 24 1.9 24 8.9 999.9 72.3* 35.4* 0.00I 999.9 100000 724050 13743 19510214 51.3 24 43.5 24 1026.0 24 1025.3 24 5.4 24 4.8 24 22.0 999.9 69.3* 39.4* 99.99 999.9 110000 724050 13743 19510215 34.1 24 25.3 24 1038.3 24 1037.7 24 7.9 24 10.3 24 15.9 999.9 37.4* 30.4* 0.00I 999.9 000000 724050 13743 19510216 34.4 24 26.1 24 1037.8 24 1037.1 24 8.5 24 5.8 24 8.0 999.9 43.3* 27.3* 0.00I 999.9 000000 724050 13743 19510217 39.2 24 35.8 24 1028.0 24 1027.0 24 5.4 24 3.2 24 8.9 999.9 45.3* 36.3* 99.99 999.9 110000 724050 13743 19510218 40.2 24 35.4 24 1025.0 24 1023.9 24 3.4 24 3.0 24 8.9 999.9 52.3* 32.4* 0.00I 999.9 100000 724050 13743 19510219 41.3 24 37.5 24 1023.9 24 1022.8 24 4.1 24 2.7 24 8.0 999.9 47.3* 36.3* 99.99 999.9 110000 724050 13743 19510220 42.9 24 41.7 24 1020.4 24 1019.4 24 1.5 24 2.4 24 7.0 999.9 45.3* 40.3* 99.99 999.9 110000 724050 13743 19510221 45.7 24 44.6 24 1006.5 24 1005.5 24 2.8 24 8.4 24 22.0 999.9 48.4* 44.4* 99.99 999.9 110000 724050 13743 19510222 45.9 24 34.5 24 1013.3 24 1012.3 24 12.8 24 21.2 24 26.0 999.9 52.3* 42.4* 0.00I 999.9 000000 724050 13743 19510223 41.2 24 25.8 24 1022.2 24 1021.1 24 14.8 24 18.4 24 26.0 999.9 47.3* 35.4* 0.00I 999.9 000000 724050 13743 19510224 40.3 24 23.2 24 1022.1 24 1021.1 24 14.7 24 16.9 24 22.0 999.9 50.4* 32.4* 0.00I 999.9 000000 724050 13743 19510225 48.0 24 26.4 24 1017.9 24 1016.9 24 14.9 24 14.2 24 18.1 999.9 60.3* 39.4* 0.00I 999.9 000000 724050 13743 19510226 56.6 24 32.1 24 1014.4 24 1013.4 24 10.7 24 4.0 24 13.0 999.9 69.3* 48.4* 0.00I 999.9 000000 724050 13743 19510227 57.5 24 34.1 24 1008.7 24 1007.7 24 10.5 24 12.7 24 27.0 999.9 68.4* 46.4* 0.00I 999.9 000000 724050 13743 19510228 48.5 24 27.5 24 1017.7 24 1016.7 24 12.4 24 11.1 24 18.1 999.9 58.3* 42.4* 0.00I 999.9 000000 724050 13743 19510301 42.6 24 36.1 24 1021.0 24 1020.0 24 6.8 24 2.9 24 9.9 999.9 46.4* 40.3* 99.99 999.9 010000 724050 13743 19510302 47.9 24 33.4 24 1020.5 24 1019.5 24 6.5 24 4.3 24 18.1 999.9 64.4* 34.3* 0.00I 999.9 100000 724050 13743 19510303 43.5 24 31.1 24 1023.9 24 1022.8 24 7.2 24 8.7 24 15.9 999.9 57.4* 39.4* 99.99 999.9 110000 724050 13743 19510304 43.2 24 41.0 24 1017.5 24 1016.5 24 5.8 24 7.6 24 14.0 999.9 48.4* 40.3* 99.99 999.9 110000 724050 13743 19510305 48.6 24 39.5 24 1023.5 24 1022.5 24 7.2 24 2.5 24 8.0 999.9 59.4* 41.4* 99.99 999.9 110000 724050 13743 19510306 46.4 24 34.5 24 1026.7 24 1025.7 24 7.1 24 5.0 24 15.9 999.9 60.3* 35.4* 0.00I 999.9 100000 724050 13743 19510307 55.7 24 45.5 24 1012.8 24 1011.8 24 8.5 24 7.9 24 9.9 999.9 69.3* 48.4* 99.99 999.9 110010 724050 13743 19510308 50.8 24 33.7 24 1012.1 24 1011.0 24 9.5 24 7.6 24 18.1 999.9 58.3* 41.4* 0.00I 999.9 000000 724050 13743 19510309 44.3 24 25.1 24 1020.6 24 1019.6 24 11.4 24 13.3 24 26.0 999.9 49.3* 38.3* 0.00I 999.9 000000 724050 13743 19510310 34.4 24 17.2 24 1029.7 24 1028.7 24 13.5 24 19.3 24 23.9 999.9 44.4* 27.3* 0.00I 999.9 000000 724050 13743 19510311 37.0 24 16.9 24 1024.7 24 1023.7 24 14.9 24 15.6 24 22.9 999.9 46.4* 28.4* 0.00I 999.9 000000 724050 13743 19510312 42.0 24 28.0 24 1019.6 24 1018.5 24 14.2 24 7.4 24 12.0 999.9 53.4* 32.4* 0.00I 999.9 000000 724050 13743 19510313 40.4 24 35.5 24 1013.0 24 1011.9 24 6.5 24 7.1 24 22.0 999.9 47.3* 34.3* 99.99 999.9 110000 724050 13743 19510314 41.2 24 38.5 24 999.5 24 998.5 24 6.6 24 11.8 24 26.0 999.9 46.4* 37.4* 99.99 999.9 110000 724050 13743 19510315 38.5 24 30.3 24 1003.7 24 1002.7 24 8.0 24 7.7 24 12.0 999.9 46.4* 33.4* 99.99 999.9 110000 724050 13743 19510316 42.2 24 30.2 24 1007.5 24 1006.5 24 13.5 24 11.6 24 21.0 999.9 48.4* 36.3* 0.00I 999.9 000000 724050 13743 19510317 41.4 24 26.9 24 1015.6 24 1014.6 24 12.9 24 11.8 24 22.9 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19510318 41.1 24 31.2 24 1021.9 24 1020.9 24 7.6 24 4.7 24 8.9 999.9 45.3* 34.3* 99.99 999.9 110000 724050 13743 19510319 42.1 24 38.9 24 1022.9 24 1021.9 24 4.8 24 5.4 24 14.0 999.9 46.4* 39.4* 99.99 999.9 110000 724050 13743 19510320 42.9 24 30.2 24 1015.8 24 1014.8 24 10.7 24 17.4 24 29.9 999.9 50.4* 32.4* 99.99 999.9 110000 724050 13743 19510321 45.6 24 27.5 24 1015.9 24 1014.9 24 10.4 24 5.0 24 16.9 999.9 58.3* 37.4* 0.00I 999.9 000000 724050 13743 19510322 37.4 24 20.6 24 1014.8 24 1013.8 24 12.1 24 15.6 24 22.9 999.9 52.3* 28.4* 99.99 999.9 011000 724050 13743 19510323 48.0 24 28.1 24 1015.3 24 1014.3 24 11.8 24 8.7 24 16.9 999.9 70.3* 35.4* 0.00I 999.9 000000 724050 13743 19510324 59.4 24 38.5 24 1005.0 24 1004.0 24 14.2 24 16.7 24 35.9 999.9 67.3* 44.4* 99.99 999.9 010000 724050 13743 19510325 41.1 24 22.0 24 1016.0 24 1014.9 24 14.8 24 9.0 24 16.9 999.9 51.3* 34.3* 0.00I 999.9 000000 724050 13743 19510326 40.9 24 17.9 24 1021.8 24 1020.8 24 14.9 24 13.5 24 21.0 999.9 47.3* 33.4* 0.00I 999.9 000000 724050 13743 19510327 42.9 24 23.2 24 1025.4 24 1024.4 24 10.6 24 5.4 24 15.9 999.9 60.3* 30.4* 0.00I 999.9 000000 724050 13743 19510328 50.9 24 37.6 24 1022.4 24 1021.4 24 9.8 24 7.6 24 14.0 999.9 57.4* 45.3* 99.99 999.9 010000 724050 13743 19510329 60.5 24 53.5 24 1015.8 24 1014.7 24 8.7 24 8.9 24 15.0 999.9 71.2* 55.4* 99.99 999.9 010000 724050 13743 19510330 63.0 24 58.5 24 1006.4 24 1005.4 24 9.5 24 10.9 24 18.1 999.9 68.4* 55.4* 99.99 999.9 010000 724050 13743 19510331 52.5 24 33.9 24 1010.5 24 1009.5 24 14.9 24 7.6 24 15.0 999.9 62.4* 43.3* 0.00I 999.9 000000 724050 13743 19510401 58.3 24 34.4 24 1009.9 24 1008.9 24 11.5 24 7.2 24 15.9 999.9 73.4* 49.3* 0.00I 999.9 000000 724050 13743 19510402 53.2 24 40.2 24 1008.2 24 1007.2 24 7.8 24 8.6 24 15.9 999.9 68.4* 42.4* 99.99 999.9 110000 724050 13743 19510403 44.1 24 36.3 24 1002.6 24 1001.5 24 6.1 24 18.3 24 28.0 999.9 49.3* 40.3* 99.99 999.9 110000 724050 13743 19510404 45.5 24 30.0 24 1008.5 24 1007.5 24 10.4 24 8.5 24 16.9 999.9 52.3* 40.3* 0.00I 999.9 000000 724050 13743 19510405 49.3 24 33.1 24 1012.3 24 1011.3 24 11.3 24 10.8 24 26.0 999.9 58.3* 41.4* 99.99 999.9 010000 724050 13743 19510406 53.0 24 31.5 24 1015.5 24 1014.5 24 13.8 24 4.8 24 9.9 999.9 67.3* 40.3* 0.00I 999.9 000000 724050 13743 19510407 57.1 24 36.3 24 1010.8 24 1009.7 24 11.8 24 4.1 24 9.9 999.9 74.3* 44.4* 0.00I 999.9 000000 724050 13743 19510408 54.8 24 43.0 24 1005.1 24 1004.1 24 9.2 24 5.1 24 9.9 999.9 63.3* 48.4* 99.99 999.9 010000 724050 13743 19510409 53.3 24 43.5 24 1006.0 24 1004.9 24 9.3 24 3.4 24 15.0 999.9 60.3* 49.3* 99.99 999.9 010000 724050 13743 19510410 51.5 24 45.4 24 1005.1 24 1004.1 24 7.2 24 6.2 24 22.0 999.9 57.4* 48.4* 99.99 999.9 110000 724050 13743 19510411 54.0 24 34.3 24 1010.1 24 1009.1 24 12.4 24 6.8 24 18.1 999.9 69.3* 41.4* 0.00I 999.9 000000 724050 13743 19510412 58.8 24 47.6 24 1004.8 24 1003.8 24 8.9 24 8.6 24 16.9 999.9 65.3* 52.3* 99.99 999.9 110010 724050 13743 19510413 51.5 24 36.9 24 1002.0 24 1001.0 24 12.7 24 8.2 24 18.1 999.9 60.3* 43.3* 0.00I 999.9 000000 724050 13743 19510414 54.5 24 34.5 24 1002.3 24 1001.3 24 13.5 24 14.0 24 23.9 999.9 60.3* 48.4* 0.00I 999.9 000000 724050 13743 19510415 58.0 24 36.0 24 1004.4 24 1003.4 24 12.3 24 9.4 24 25.1 999.9 74.3* 45.3* 0.00I 999.9 000000 724050 13743 19510416 54.4 24 35.9 24 1008.0 24 1007.0 24 8.8 24 6.3 24 15.9 999.9 64.4* 45.3* 99.99 999.9 010000 724050 13743 19510417 46.4 24 26.3 24 1013.8 24 1012.8 24 14.2 24 14.8 24 23.9 999.9 51.3* 41.4* 0.00I 999.9 000000 724050 13743 19510418 46.7 24 24.6 24 1019.4 24 1018.3 24 14.3 24 7.9 24 18.1 999.9 61.3* 36.3* 0.00I 999.9 000000 724050 13743 19510419 56.9 24 42.8 24 1012.1 24 1011.1 24 11.5 24 10.8 24 16.9 999.9 66.4* 49.3* 99.99 999.9 010000 724050 13743 19510420 53.4 24 30.3 24 1018.9 24 1017.9 24 12.7 24 13.6 24 26.0 999.9 63.3* 41.4* 0.00I 999.9 000000 724050 13743 19510421 54.1 24 33.4 24 1026.6 24 1025.6 24 10.1 24 3.2 24 12.0 999.9 70.3* 40.3* 0.00I 999.9 000000 724050 13743 19510422 58.4 24 46.6 24 1023.0 24 1022.0 24 11.3 24 10.7 24 15.9 999.9 65.3* 52.3* 99.99 999.9 010000 724050 13743 19510423 57.6 24 40.0 24 1021.5 24 1020.5 24 11.7 24 12.9 24 19.0 999.9 64.4* 48.4* 99.99 999.9 010000 724050 13743 19510424 56.4 24 35.6 24 1027.4 24 1026.4 24 8.7 24 4.0 24 12.0 999.9 70.3* 42.4* 0.00I 999.9 100000 724050 13743 19510425 63.3 24 45.6 24 1023.2 24 1022.2 24 11.8 24 8.6 24 14.0 999.9 81.3* 50.4* 0.00I 999.9 000000 724050 13743 19510426 72.1 24 55.6 24 1017.7 24 1016.7 24 12.6 24 10.1 24 15.9 999.9 84.4* 65.3* 99.99 999.9 010010 724050 13743 19510427 60.3 24 44.7 24 1026.6 24 1025.6 24 11.2 24 7.8 24 14.0 999.9 70.3* 50.4* 99.99 999.9 010000 724050 13743 19510428 59.5 24 41.6 24 1025.6 24 1024.6 24 13.7 24 8.7 24 16.9 999.9 71.2* 52.3* 0.00I 999.9 000000 724050 13743 19510429 68.4 24 56.4 24 1014.4 24 1013.4 24 9.4 24 8.0 24 16.9 999.9 86.4* 59.4* 99.99 999.9 110010 724050 13743 19510430 69.7 24 60.6 24 1014.3 24 1013.3 24 10.0 24 5.2 24 12.0 999.9 80.2* 62.4* 0.00I 999.9 000000 724050 13743 19510501 64.7 24 47.2 24 1024.0 24 1023.0 24 10.0 24 5.3 24 12.0 999.9 75.4* 54.3* 0.00I 999.9 100000 724050 13743 19510502 69.0 24 48.2 24 1016.2 24 1015.2 24 12.1 24 9.7 24 20.0 999.9 88.3* 55.4* 0.00I 999.9 000000 724050 13743 19510503 70.2 24 47.1 24 1006.6 24 1005.6 24 13.0 24 5.1 24 13.0 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19510504 58.7 24 44.9 24 1004.3 24 1003.3 24 8.0 24 5.9 24 14.0 999.9 69.3* 49.3* 99.99 999.9 010010 724050 13743 19510505 55.1 24 44.4 24 1004.4 24 1003.4 24 9.7 24 5.4 24 9.9 999.9 61.3* 52.3* 99.99 999.9 010000 724050 13743 19510506 55.1 24 47.6 24 1009.0 24 1007.9 24 8.1 24 3.9 24 13.0 999.9 64.4* 51.3* 99.99 999.9 110000 724050 13743 19510507 58.6 24 41.4 24 1009.1 24 1008.1 24 12.8 24 9.3 24 20.0 999.9 69.3* 50.4* 0.00I 999.9 000000 724050 13743 19510508 63.6 24 40.6 24 1013.2 24 1012.2 24 13.0 24 8.8 24 22.0 999.9 77.4* 52.3* 0.00I 999.9 000000 724050 13743 19510509 68.7 24 46.1 24 1014.6 24 1013.6 24 12.1 24 4.4 24 14.0 999.9 82.4* 53.4* 0.00I 999.9 000000 724050 13743 19510510 69.8 24 51.5 24 1014.5 24 1013.4 24 8.5 24 3.7 24 15.0 999.9 77.4* 60.3* 0.00I 999.9 000000 724050 13743 19510511 62.8 24 57.4 24 1009.2 24 1008.2 24 6.2 24 5.2 24 16.9 999.9 74.3* 57.4* 99.99 999.9 110010 724050 13743 19510512 58.7 24 49.1 24 1007.3 24 1006.3 24 10.6 24 9.3 24 16.9 999.9 61.3* 53.4* 99.99 999.9 110010 724050 13743 19510513 59.9 24 44.4 24 1018.6 24 1017.5 24 11.1 24 5.6 24 19.0 999.9 73.4* 47.3* 0.00I 999.9 000000 724050 13743 19510514 60.6 24 38.7 24 1030.8 24 1029.8 24 10.4 24 3.1 24 8.9 999.9 74.3* 45.3* 0.00I 999.9 000000 724050 13743 19510515 65.9 24 45.4 24 1030.7 24 1029.7 24 10.6 24 1.8 24 7.0 999.9 85.3* 49.3* 0.00I 999.9 000000 724050 13743 19510516 72.7 24 52.1 24 1021.8 24 1020.8 24 11.3 24 4.6 24 14.0 999.9 90.3* 56.3* 0.00I 999.9 000000 724050 13743 19510517 75.0 24 57.6 24 1016.8 24 1015.8 24 8.3 24 2.9 24 8.0 999.9 90.3* 61.3* 0.00I 999.9 000000 724050 13743 19510518 62.5 24 50.9 24 1020.9 24 1019.9 24 6.5 24 7.3 24 13.0 999.9 79.3* 56.3* 0.00I 999.9 000000 724050 13743 19510519 58.3 24 52.1 24 1022.4 24 1021.3 24 4.1 24 7.5 24 14.0 999.9 63.3* 54.3* 99.99 999.9 110000 724050 13743 19510520 63.0 24 59.2 24 1017.9 24 1016.8 24 3.8 24 4.2 24 8.9 999.9 70.3* 58.3* 99.99 999.9 110000 724050 13743 19510521 70.2 24 61.5 24 1011.4 24 1010.4 24 5.7 24 2.5 24 8.0 999.9 80.2* 63.3* 99.99 999.9 110000 724050 13743 19510522 73.8 24 63.2 24 1008.8 24 1007.8 24 5.3 24 2.0 24 8.0 999.9 86.4* 63.3* 0.00I 999.9 100000 724050 13743 19510523 71.0 24 64.4 24 1000.6 24 999.6 24 5.8 24 5.8 24 19.0 999.9 80.2* 56.3* 99.99 999.9 110010 724050 13743 19510524 60.6 24 47.2 24 1002.7 24 1001.6 24 12.1 24 15.2 24 19.0 999.9 71.2* 54.3* 99.99 999.9 010000 724050 13743 19510525 65.5 24 49.2 24 1007.8 24 1006.8 24 11.6 24 3.3 24 8.9 999.9 80.2* 53.4* 0.00I 999.9 000000 724050 13743 19510526 74.1 24 57.5 24 1009.0 24 1008.0 24 10.3 24 3.1 24 7.0 999.9 84.4* 63.3* 0.00I 999.9 000000 724050 13743 19510527 69.1 24 53.4 24 1004.0 24 1003.0 24 11.9 24 6.5 24 16.9 999.9 77.4* 63.3* 99.99 999.9 010000 724050 13743 19510528 62.2 24 50.5 24 1002.0 24 1001.0 24 12.6 24 5.4 24 16.9 999.9 67.3* 57.4* 99.99 999.9 010000 724050 13743 19510529 61.6 24 52.6 24 1004.2 24 1003.2 24 11.6 24 5.5 24 14.0 999.9 69.3* 54.3* 99.99 999.9 010000 724050 13743 19510530 67.1 24 52.1 24 1012.0 24 1011.0 24 12.2 24 9.1 24 13.0 999.9 80.2* 56.3* 99.99 999.9 010000 724050 13743 19510531 75.0 24 54.6 24 1017.5 24 1016.4 24 11.8 24 5.5 24 15.9 999.9 87.3* 64.4* 0.00I 999.9 000000 724050 13743 19510601 77.6 24 57.7 24 1019.4 24 1018.4 24 9.4 24 2.0 24 9.9 999.9 91.2* 63.3* 0.00I 999.9 000000 724050 13743 19510602 80.9 24 62.0 24 1014.8 24 1013.7 24 9.1 24 4.8 24 8.0 999.9 97.3* 68.4* 0.00I 999.9 000000 724050 13743 19510603 82.9 24 69.5 24 1013.7 24 1012.7 24 6.4 24 3.7 24 12.0 999.9 92.3* 72.3* 0.00I 999.9 100000 724050 13743 19510604 76.3 24 66.3 24 1014.7 24 1013.7 24 9.6 24 6.0 24 23.9 999.9 91.2* 67.3* 99.99 999.9 110010 724050 13743 19510605 68.2 24 63.9 24 1015.4 24 1014.4 24 5.7 24 5.1 24 13.0 999.9 70.3* 64.4* 99.99 999.9 110000 724050 13743 19510606 66.8 24 55.2 24 1016.8 24 1015.7 24 9.4 24 3.4 24 9.9 999.9 76.3* 57.4* 99.99 999.9 110000 724050 13743 19510607 70.2 24 55.7 24 1015.4 24 1014.4 24 7.1 24 2.2 24 8.0 999.9 83.3* 61.3* 99.99 999.9 010000 724050 13743 19510608 67.7 24 62.9 24 1014.1 24 1013.1 24 5.1 24 4.6 24 16.9 999.9 72.3* 65.3* 99.99 999.9 110000 724050 13743 19510609 67.0 24 61.3 24 1013.5 24 1012.5 24 6.7 24 4.7 24 8.0 999.9 72.3* 64.4* 99.99 999.9 010000 724050 13743 19510610 63.9 24 61.5 24 1007.5 24 1006.5 24 5.9 24 5.5 24 12.0 999.9 69.3* 61.3* 99.99 999.9 110000 724050 13743 19510611 62.0 24 53.6 24 1011.9 24 1010.9 24 10.6 24 6.3 24 9.9 999.9 73.4* 55.4* 99.99 999.9 110000 724050 13743 19510612 65.6 24 56.5 24 1017.6 24 1016.6 24 10.6 24 3.9 24 8.9 999.9 78.3* 58.3* 0.00I 999.9 000000 724050 13743 19510613 62.9 24 58.0 24 1017.1 24 1016.3 24 6.7 24 4.9 24 11.1 999.9 68.4* 58.3* 99.99 999.9 110000 724050 13743 19510614 68.8 24 60.7 24 1010.6 24 1009.6 24 6.6 24 5.9 24 19.0 999.9 78.3* 60.3* 0.00I 999.9 100000 724050 13743 19510615 69.3 24 54.5 24 1011.9 24 1010.9 24 10.8 24 4.7 24 14.0 999.9 79.3* 59.4* 0.00I 999.9 000000 724050 13743 19510616 72.0 24 52.9 24 1013.3 24 1012.3 24 12.4 24 2.1 24 7.0 999.9 84.4* 59.4* 0.00I 999.9 000000 724050 13743 19510617 72.3 24 58.5 24 1015.9 24 1014.9 24 11.8 24 4.0 24 14.0 999.9 82.4* 62.4* 0.00I 999.9 000000 724050 13743 19510618 69.9 24 61.7 24 1017.3 24 1016.3 24 7.8 24 3.2 24 8.9 999.9 76.3* 64.4* 0.00I 999.9 100000 724050 13743 19510619 70.5 24 61.1 24 1018.3 24 1017.2 24 8.0 24 2.9 24 8.9 999.9 81.3* 59.4* 0.00I 999.9 100000 724050 13743 19510620 73.6 24 65.1 24 1015.8 24 1014.8 24 9.2 24 4.5 24 8.9 999.9 84.4* 65.3* 0.00I 999.9 100000 724050 13743 19510621 77.5 24 67.9 24 1013.1 24 1012.1 24 8.8 24 2.6 24 7.0 999.9 89.2* 69.3* 0.00I 999.9 100000 724050 13743 19510622 76.7 24 71.1 24 1013.4 24 1012.4 24 8.4 24 3.6 24 12.0 999.9 85.3* 70.3* 99.99 999.9 110010 724050 13743 19510623 79.4 24 70.9 24 1012.3 24 1011.2 24 9.1 24 3.2 24 8.9 999.9 92.3* 70.3* 99.99 999.9 110000 724050 13743 19510624 84.7 24 73.5 24 1015.1 24 1014.0 24 5.0 24 1.6 24 6.0 999.9 94.3* 74.3* 0.00I 999.9 100000 724050 13743 19510625 83.9 24 69.7 24 1014.0 24 1013.0 24 7.5 24 6.1 24 16.9 999.9 89.2* 77.4* 0.00I 999.9 100000 724050 13743 19510626 76.6 24 60.5 24 1015.3 24 1014.3 24 10.3 24 4.9 24 9.9 999.9 85.3* 66.4* 0.00I 999.9 000000 724050 13743 19510627 77.7 24 69.8 24 1011.3 24 1010.3 24 8.2 24 5.1 24 9.9 999.9 90.3* 72.3* 99.99 999.9 110010 724050 13743 19510628 80.0 24 70.8 24 1010.9 23 1009.9 23 9.7 24 4.7 24 9.9 999.9 92.3* 72.3* 99.99 999.9 010000 724050 13743 19510629 77.3 24 71.4 24 1011.4 24 1010.4 24 9.0 24 3.5 24 15.0 999.9 84.4* 71.2* 99.99 999.9 110000 724050 13743 19510630 78.2 24 72.4 24 1010.0 24 1009.0 24 10.0 24 4.0 24 12.0 999.9 90.3* 72.3* 99.99 999.9 110010 724050 13743 19510701 76.9 24 67.9 24 1008.4 24 1007.4 24 10.0 24 5.4 24 15.9 999.9 87.3* 70.3* 99.99 999.9 110000 724050 13743 19510702 76.1 24 61.0 24 1015.8 24 1014.7 24 12.0 24 2.6 24 8.9 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19510703 76.4 24 62.2 24 1018.5 24 1017.5 24 10.9 24 3.3 24 8.0 999.9 86.4* 65.3* 0.00I 999.9 000000 724050 13743 19510704 76.8 24 67.3 24 1012.9 24 1012.0 24 9.7 24 5.4 24 11.1 999.9 87.3* 69.3* 0.00I 999.9 000000 724050 13743 19510705 77.9 24 62.8 24 1006.7 24 1005.7 24 11.1 24 14.0 24 29.9 999.9 85.3* 71.2* 0.00I 999.9 000000 724050 13743 19510706 71.1 24 49.9 24 1015.5 24 1014.5 24 13.8 24 12.4 24 22.9 999.9 82.4* 62.4* 0.00I 999.9 000000 724050 13743 19510707 76.2 24 56.7 24 1017.8 24 1016.8 24 11.1 24 2.4 24 8.9 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19510708 76.8 24 57.0 24 1018.2 24 1017.2 24 11.8 24 3.4 24 12.0 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19510709 77.0 24 62.0 24 1016.7 24 1015.6 24 11.6 24 6.5 24 15.0 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19510710 79.1 24 64.1 24 1016.7 24 1015.7 24 10.0 24 6.1 24 8.9 999.9 90.3* 70.3* 0.00I 999.9 000000 724050 13743 19510711 79.2 24 64.4 24 1017.7 24 1016.6 24 11.8 24 3.3 24 8.0 999.9 89.2* 68.4* 0.00I 999.9 000000 724050 13743 19510712 81.4 24 69.8 24 1014.9 24 1013.9 24 10.5 24 4.8 24 8.9 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19510713 77.5 24 71.3 24 1015.6 24 1014.6 24 7.2 24 4.2 24 9.9 999.9 84.4* 73.4* 99.99 999.9 110010 724050 13743 19510714 79.4 24 67.5 24 1017.8 24 1016.8 24 7.5 24 2.8 24 8.0 999.9 87.3* 73.4* 99.99 999.9 010000 724050 13743 19510715 79.1 24 72.2 24 1016.8 24 1015.8 24 5.5 24 3.1 24 9.9 999.9 87.3* 73.4* 99.99 999.9 110010 724050 13743 19510716 82.1 24 73.6 24 1015.5 24 1014.5 24 6.6 24 2.7 24 7.0 999.9 92.3* 73.4* 0.00I 999.9 100000 724050 13743 19510717 79.8 24 72.3 24 1014.1 24 1013.1 24 6.2 24 3.1 24 13.0 999.9 89.2* 73.4* 99.99 999.9 010010 724050 13743 19510718 78.0 24 71.8 24 1015.4 24 1014.4 24 4.4 24 3.2 24 8.9 999.9 84.4* 72.3* 99.99 999.9 110010 724050 13743 19510719 76.8 24 70.8 24 1011.0 24 1010.0 24 6.5 24 4.7 24 15.0 999.9 90.3* 70.3* 99.99 999.9 110000 724050 13743 19510720 74.2 24 60.3 24 1011.8 24 1010.7 24 11.5 24 3.8 24 9.9 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19510721 75.7 24 61.4 24 1018.9 24 1017.9 24 10.6 24 2.9 24 9.9 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19510722 82.4 24 70.0 24 1017.4 24 1016.4 24 12.0 24 7.2 24 9.9 999.9 94.3* 75.4* 0.00I 999.9 000000 724050 13743 19510723 85.6 24 74.8 24 1015.4 24 1014.4 24 9.0 24 3.4 24 8.0 999.9 93.4* 79.3* 99.99 999.9 010010 724050 13743 19510724 77.6 24 73.2 24 1016.5 24 1015.3 24 5.4 24 3.3 24 8.0 999.9 82.4* 72.3* 99.99 999.9 110000 724050 13743 19510725 77.2 24 68.2 24 1017.3 24 1016.3 24 6.5 24 2.8 24 8.9 999.9 86.4* 71.2* 99.99 999.9 110000 724050 13743 19510726 78.2 24 68.8 24 1017.2 24 1016.2 24 6.8 24 2.2 24 8.0 999.9 88.3* 69.3* 0.00I 999.9 100000 724050 13743 19510727 83.4 24 69.3 24 1014.9 24 1013.9 24 6.0 24 3.2 24 9.9 999.9 96.3* 73.4* 0.00I 999.9 100000 724050 13743 19510728 82.9 24 72.7 24 1012.4 24 1011.4 24 6.8 24 4.3 24 11.1 999.9 92.3* 68.4* 99.99 999.9 010010 724050 13743 19510729 74.8 24 68.3 24 1014.4 24 1013.4 24 6.0 24 3.8 24 8.9 999.9 84.4* 68.4* 99.99 999.9 010010 724050 13743 19510730 78.3 24 69.2 24 1016.2 24 1015.2 24 6.4 24 1.9 24 7.0 999.9 90.3* 70.3* 0.00I 999.9 100000 724050 13743 19510731 81.3 24 71.2 24 1014.2 24 1013.2 24 7.3 24 3.2 24 8.9 999.9 93.4* 72.3* 0.00I 999.9 100000 724050 13743 19510801 82.0 24 72.6 24 1010.8 24 1009.8 24 7.0 24 4.6 24 8.9 999.9 88.3* 76.3* 99.99 999.9 010000 724050 13743 19510802 76.1 24 59.9 24 1015.5 24 1014.5 24 12.0 24 5.4 24 9.9 999.9 84.4* 66.4* 0.00I 999.9 000000 724050 13743 19510803 74.2 24 68.7 24 1011.1 24 1010.1 24 7.2 24 5.1 24 9.9 999.9 83.3* 69.3* 99.99 999.9 110010 724050 13743 19510804 72.5 24 59.4 24 1013.9 24 1012.8 24 11.4 24 6.6 24 12.0 999.9 79.3* 66.4* 0.00I 999.9 000000 724050 13743 19510805 68.7 24 49.6 24 1020.6 24 1019.6 24 13.4 24 4.8 24 11.1 999.9 79.3* 58.3* 0.00I 999.9 000000 724050 13743 19510806 68.2 24 56.6 24 1020.6 24 1019.6 24 11.9 24 3.2 24 9.9 999.9 78.3* 59.4* 0.00I 999.9 000000 724050 13743 19510807 69.9 24 65.1 24 1012.6 24 1011.6 24 7.2 24 3.1 24 7.0 999.9 77.4* 64.4* 99.99 999.9 010000 724050 13743 19510808 77.5 24 70.9 24 1006.9 24 1005.9 24 4.8 24 3.0 24 8.9 999.9 89.2* 71.2* 99.99 999.9 110000 724050 13743 19510809 81.0 24 72.6 24 1009.1 24 1008.1 24 4.9 24 3.7 24 8.9 999.9 92.3* 71.2* 0.00I 999.9 100000 724050 13743 19510810 81.5 24 75.9 24 1012.0 24 1011.0 24 4.3 24 4.3 24 9.9 999.9 89.2* 76.3* 0.00I 999.9 100000 724050 13743 19510811 80.5 24 73.4 24 1014.9 24 1013.9 24 5.6 24 2.0 24 7.0 999.9 91.2* 73.4* 0.00I 999.9 000000 724050 13743 19510812 79.6 24 75.1 24 1015.6 24 1014.5 24 7.0 24 4.0 24 9.9 999.9 88.3* 73.4* 99.99 999.9 110010 724050 13743 19510813 78.7 24 70.6 24 1017.6 24 1016.6 24 7.1 24 6.8 24 12.0 999.9 87.3* 71.2* 0.00I 999.9 000010 724050 13743 19510814 79.9 24 72.2 24 1018.9 24 1017.9 24 3.6 24 2.4 24 8.9 999.9 90.3* 72.3* 0.00I 999.9 100000 724050 13743 19510815 80.5 24 73.5 24 1017.1 24 1016.0 24 4.9 24 6.0 24 9.9 999.9 89.2* 74.3* 0.00I 999.9 100000 724050 13743 19510816 82.5 24 71.8 24 1011.9 24 1010.9 24 8.8 24 5.6 24 11.1 999.9 94.3* 74.3* 0.00I 999.9 000000 724050 13743 19510817 81.4 24 67.5 24 1010.9 24 1009.9 24 10.0 24 6.6 24 9.9 999.9 88.3* 72.3* 0.00I 999.9 000000 724050 13743 19510818 76.9 24 63.0 24 1014.3 24 1013.3 24 7.8 24 4.2 24 8.9 999.9 82.4* 69.3* 0.00I 999.9 000000 724050 13743 19510819 75.5 24 64.9 24 1016.6 24 1015.5 24 8.9 24 3.2 24 9.9 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19510820 78.7 24 67.8 24 1016.3 24 1015.3 24 8.7 24 6.2 24 8.9 999.9 89.2* 71.2* 0.00I 999.9 100000 724050 13743 19510821 80.6 24 69.6 24 1012.9 24 1011.9 24 8.2 24 8.1 24 14.0 999.9 94.3* 73.4* 0.00I 999.9 000000 724050 13743 19510822 76.8 24 62.0 24 1013.4 24 1012.4 24 10.9 24 8.8 24 15.9 999.9 85.3* 72.3* 0.00I 999.9 000000 724050 13743 19510823 73.1 24 54.9 24 1019.4 24 1018.3 24 12.4 24 4.7 24 9.9 999.9 81.3* 64.4* 0.00I 999.9 000000 724050 13743 19510824 69.1 24 50.5 24 1022.0 24 1021.0 24 14.1 24 6.7 24 11.1 999.9 77.4* 58.3* 0.00I 999.9 000000 724050 13743 19510825 70.3 24 55.3 24 1020.7 24 1019.7 24 12.9 24 6.7 24 13.0 999.9 81.3* 60.3* 0.00I 999.9 000000 724050 13743 19510826 72.1 24 56.7 24 1018.5 24 1017.5 24 11.7 24 2.8 24 8.9 999.9 86.4* 60.3* 0.00I 999.9 000000 724050 13743 19510827 71.7 24 62.7 24 1015.5 24 1014.5 24 8.5 24 2.5 24 8.0 999.9 78.3* 66.4* 99.99 999.9 010000 724050 13743 19510828 72.0 24 68.2 24 1014.0 24 1013.0 24 5.0 24 3.7 24 8.9 999.9 76.3* 69.3* 99.99 999.9 010000 724050 13743 19510829 75.7 24 65.5 24 1016.1 24 1015.1 24 5.2 24 3.8 24 12.0 999.9 87.3* 67.3* 0.00I 999.9 000000 724050 13743 19510830 77.2 24 64.1 24 1015.6 24 1014.7 24 6.9 24 1.4 24 6.0 999.9 93.4* 65.3* 0.00I 999.9 000000 724050 13743 19510831 78.0 24 66.6 24 1013.1 24 1012.1 24 5.3 24 3.1 24 9.9 999.9 89.2* 67.3* 0.00I 999.9 000000 724050 13743 19510901 79.9 24 70.9 24 1009.9 24 1008.9 24 10.6 24 7.0 24 11.1 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19510902 78.6 24 73.5 24 1011.8 24 1010.7 24 9.2 24 4.7 24 12.0 999.9 90.3* 71.2* 99.99 999.9 110010 724050 13743 19510903 73.2 24 70.3 24 1013.8 24 1012.7 24 3.0 24 2.2 24 7.0 999.9 81.3* 69.3* 99.99 999.9 110000 724050 13743 19510904 73.1 24 61.5 24 1017.6 24 1016.6 24 8.1 24 4.5 24 8.9 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19510905 70.7 24 61.2 24 1019.5 24 1018.4 24 7.2 24 2.6 24 8.9 999.9 81.3* 62.4* 0.00I 999.9 000000 724050 13743 19510906 70.4 24 63.0 24 1015.5 24 1014.5 24 9.6 24 9.1 24 16.9 999.9 75.4* 67.3* 99.99 999.9 010000 724050 13743 19510907 71.5 24 60.5 24 1011.3 24 1010.2 24 12.1 24 9.4 24 23.9 999.9 78.3* 66.4* 0.00I 999.9 000000 724050 13743 19510908 64.5 24 46.2 24 1019.4 24 1018.4 24 14.3 24 10.9 24 15.9 999.9 75.4* 56.3* 0.00I 999.9 000000 724050 13743 19510909 65.6 24 50.3 24 1019.4 24 1018.3 24 11.6 24 2.0 24 7.0 999.9 79.3* 55.4* 0.00I 999.9 000000 724050 13743 19510910 68.2 24 55.7 24 1018.5 24 1017.5 24 12.2 24 4.6 24 9.9 999.9 81.3* 57.4* 0.00I 999.9 000000 724050 13743 19510911 72.2 24 62.6 24 1017.1 24 1016.0 24 12.9 24 6.8 24 14.0 999.9 81.3* 67.3* 0.00I 999.9 000000 724050 13743 19510912 75.3 24 67.5 24 1019.6 24 1018.6 24 7.3 24 2.4 24 8.0 999.9 87.3* 66.4* 0.00I 999.9 100000 724050 13743 19510913 75.3 24 69.9 24 1017.9 24 1016.8 24 7.8 24 6.1 24 8.9 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19510914 74.1 24 67.9 24 1015.7 24 1014.6 24 11.1 24 8.3 24 12.0 999.9 85.3* 69.3* 99.99 999.9 010000 724050 13743 19510915 72.5 24 61.9 24 1016.5 24 1015.5 24 9.7 24 7.1 24 14.0 999.9 80.2* 68.4* 99.99 999.9 010000 724050 13743 19510916 70.2 24 59.6 24 1017.0 24 1015.9 24 8.3 24 2.4 24 7.0 999.9 82.4* 60.3* 0.00I 999.9 100000 724050 13743 19510917 69.6 24 57.4 24 1015.8 24 1014.7 24 9.0 24 5.2 24 9.9 999.9 76.3* 64.4* 0.00I 999.9 000000 724050 13743 19510918 67.3 24 54.6 24 1015.2 24 1014.1 24 8.7 24 4.0 24 9.9 999.9 75.4* 62.4* 0.00I 999.9 000000 724050 13743 19510919 68.1 24 55.2 24 1017.5 24 1016.5 24 9.3 24 1.8 24 8.9 999.9 82.4* 57.4* 0.00I 999.9 000000 724050 13743 19510920 70.5 24 56.9 24 1021.7 24 1020.7 24 9.7 24 2.4 24 8.0 999.9 83.3* 59.4* 0.00I 999.9 000000 724050 13743 19510921 71.5 24 58.9 24 1023.0 24 1022.0 24 9.7 24 4.2 24 9.9 999.9 85.3* 60.3* 0.00I 999.9 000000 724050 13743 19510922 72.4 24 63.3 24 1019.2 24 1018.2 24 8.8 24 8.5 24 16.9 999.9 83.3* 64.4* 0.00I 999.9 100000 724050 13743 19510923 74.6 24 63.1 24 1015.6 24 1014.6 24 11.0 24 10.2 24 15.9 999.9 78.3* 70.3* 99.99 999.9 010000 724050 13743 19510924 64.8 24 48.3 24 1022.4 24 1021.4 24 11.4 24 5.0 24 12.0 999.9 76.3* 53.4* 0.00I 999.9 000000 724050 13743 19510925 71.3 24 62.7 24 1015.9 24 1014.9 24 8.5 24 5.3 24 12.0 999.9 84.4* 62.4* 99.99 999.9 010000 724050 13743 19510926 67.8 24 52.9 24 1019.7 24 1018.7 24 12.6 24 6.5 24 9.9 999.9 76.3* 60.3* 0.00I 999.9 000000 724050 13743 19510927 68.9 24 61.4 24 1016.5 24 1015.5 24 9.1 24 5.7 24 11.1 999.9 81.3* 60.3* 99.99 999.9 010000 724050 13743 19510928 67.0 24 47.4 24 1015.9 24 1014.9 24 12.4 24 13.3 24 26.0 999.9 75.4* 60.3* 0.00I 999.9 000000 724050 13743 19510929 56.0 24 37.6 24 1027.0 24 1026.0 24 14.7 24 6.9 24 15.9 999.9 66.4* 45.3* 0.00I 999.9 000000 724050 13743 19510930 55.9 24 43.2 24 1026.6 24 1025.6 24 11.8 24 3.4 24 9.9 999.9 69.3* 44.4* 0.00I 999.9 000000 724050 13743 19511001 65.7 24 54.1 24 1018.8 24 1017.8 24 11.8 24 5.5 24 12.0 999.9 77.4* 60.3* 0.00I 999.9 000000 724050 13743 19511002 70.9 24 60.1 24 1012.7 24 1011.6 24 9.3 24 4.4 24 9.9 999.9 85.3* 60.3* 0.00I 999.9 000000 724050 13743 19511003 70.7 24 61.9 24 1011.5 24 1010.5 24 10.0 24 5.3 24 15.0 999.9 80.2* 62.4* 0.00I 999.9 100000 724050 13743 19511004 71.4 24 63.5 24 1010.0 24 1008.9 24 7.3 24 12.2 24 16.9 999.9 79.3* 67.3* 0.00I 999.9 000000 724050 13743 19511005 77.0 24 61.7 24 1008.7 24 1007.6 24 13.1 24 8.8 24 12.0 999.9 93.4* 65.3* 0.00I 999.9 000000 724050 13743 19511006 77.4 24 60.0 24 1011.0 24 1010.0 24 8.9 24 4.7 24 12.0 999.9 88.3* 71.2* 0.00I 999.9 000000 724050 13743 19511007 67.0 24 56.4 24 1014.1 24 1013.0 24 7.5 24 5.7 24 20.0 999.9 76.3* 61.3* 99.99 999.9 010010 724050 13743 19511008 60.9 24 46.4 24 1014.4 24 1013.4 24 11.4 24 12.7 24 22.9 999.9 64.4* 56.3* 99.99 999.9 010010 724050 13743 19511009 54.1 24 37.5 24 1020.2 24 1019.2 24 11.2 24 4.2 24 9.9 999.9 60.3* 46.4* 0.00I 999.9 000000 724050 13743 19511010 51.2 24 39.9 24 1021.4 24 1020.3 24 8.9 24 8.6 24 14.0 999.9 58.3* 44.4* 0.00I 999.9 000000 724050 13743 19511011 52.8 24 43.8 24 1016.1 24 1015.0 24 8.9 24 10.5 24 14.0 999.9 56.3* 48.4* 99.99 999.9 010000 724050 13743 19511012 53.4 24 43.0 24 1022.3 24 1021.3 24 8.8 24 3.7 24 14.0 999.9 66.4* 43.3* 0.00I 999.9 000000 724050 13743 19511013 53.9 24 43.1 24 1031.6 24 1030.6 24 11.1 24 4.8 24 8.9 999.9 65.3* 44.4* 0.00I 999.9 000000 724050 13743 19511014 55.6 24 45.6 24 1034.3 24 1033.3 24 8.7 24 4.2 24 8.0 999.9 69.3* 44.4* 0.00I 999.9 000000 724050 13743 19511015 61.4 24 53.5 24 1027.7 24 1026.7 24 9.5 24 4.9 24 8.0 999.9 75.4* 52.3* 0.00I 999.9 000000 724050 13743 19511016 63.4 24 54.4 24 1025.2 24 1024.2 24 8.7 24 4.2 24 9.9 999.9 75.4* 54.3* 0.00I 999.9 100000 724050 13743 19511017 63.7 24 54.5 24 1025.8 24 1024.8 24 9.7 24 5.1 24 12.0 999.9 75.4* 54.3* 0.00I 999.9 000000 724050 13743 19511018 64.4 24 56.8 24 1025.3 24 1024.3 24 7.4 24 8.4 24 13.0 999.9 69.3* 58.3* 0.00I 999.9 000000 724050 13743 19511019 62.4 24 56.5 24 1021.3 24 1020.3 24 5.8 24 4.8 24 8.9 999.9 66.4* 59.4* 0.00I 999.9 000000 724050 13743 19511020 57.0 24 45.0 24 1021.8 24 1020.8 24 11.3 24 5.7 24 16.9 999.9 62.4* 52.3* 99.99 999.9 010000 724050 13743 19511021 57.9 24 51.9 24 1025.0 24 1024.0 24 5.8 24 2.6 24 7.0 999.9 65.3* 52.3* 99.99 999.9 010000 724050 13743 19511022 61.1 24 55.8 24 1027.7 24 1026.7 24 7.4 24 3.1 24 12.0 999.9 66.4* 56.3* 99.99 999.9 010000 724050 13743 19511023 63.6 24 55.4 24 1026.6 24 1025.6 24 10.9 24 3.6 24 7.0 999.9 74.3* 57.4* 0.00I 999.9 000000 724050 13743 19511024 66.9 24 62.1 24 1019.2 24 1018.2 24 8.0 24 6.1 24 12.0 999.9 72.3* 63.3* 99.99 999.9 010000 724050 13743 19511025 58.5 24 43.6 24 1023.3 24 1022.3 24 14.1 24 10.4 24 21.0 999.9 66.4* 51.3* 99.99 999.9 010000 724050 13743 19511026 54.6 24 44.0 24 1026.8 24 1025.8 24 7.7 24 1.3 24 5.1 999.9 70.3* 43.3* 0.00I 999.9 000000 724050 13743 19511027 60.9 24 47.1 24 1016.6 24 1015.6 24 9.0 24 3.5 24 9.9 999.9 75.4* 51.3* 0.00I 999.9 000000 724050 13743 19511028 60.7 24 53.9 24 1006.4 24 1005.4 24 5.1 24 3.6 24 21.0 999.9 66.4* 55.4* 99.99 999.9 110000 724050 13743 19511029 53.9 24 35.3 24 1014.8 24 1013.8 24 12.5 24 10.4 24 19.0 999.9 61.3* 46.4* 0.00I 999.9 000000 724050 13743 19511030 53.6 24 43.5 24 1019.3 24 1018.3 24 7.4 24 4.2 24 8.0 999.9 60.3* 49.3* 99.99 999.9 010000 724050 13743 19511031 61.1 24 54.5 24 1015.2 24 1014.2 24 7.0 24 5.1 24 8.9 999.9 70.3* 56.3* 0.00I 999.9 000000 724050 13743 19511101 48.3 24 44.0 24 1012.5 24 1011.5 24 7.7 24 12.3 24 20.0 999.9 66.4* 42.4* 99.99 999.9 010000 724050 13743 19511102 41.2 24 36.7 24 1018.0 24 1017.0 24 6.1 24 7.0 24 12.0 999.9 44.4* 40.3* 99.99 999.9 010000 724050 13743 19511103 39.5 24 34.6 24 1007.1 24 1006.0 24 7.4 24 12.1 24 22.0 999.9 42.4* 35.4* 99.99 999.9 011000 724050 13743 19511104 37.4 24 24.0 24 1015.5 24 1014.5 24 12.3 24 6.6 24 19.0 999.9 52.3* 28.4* 0.00I 999.9 000000 724050 13743 19511105 38.3 24 20.9 24 1027.9 24 1026.9 24 11.9 24 8.3 24 12.0 999.9 45.3* 31.3* 0.00I 999.9 000000 724050 13743 19511106 38.7 24 25.1 24 1035.2 24 1034.2 24 7.7 24 6.6 24 14.0 999.9 47.3* 31.3* 0.00I 999.9 000000 724050 13743 19511107 57.9 24 53.1 24 1009.2 24 1008.2 24 8.2 24 9.3 24 16.9 999.9 68.4* 43.3* 99.99 999.9 110000 724050 13743 19511108 42.4 24 28.9 24 1012.5 24 1011.5 24 11.1 24 10.1 24 21.0 999.9 49.3* 37.4* 0.00I 999.9 000000 724050 13743 19511109 41.7 24 25.4 24 1025.4 24 1024.4 24 11.1 24 5.2 24 12.0 999.9 51.3* 35.4* 0.00I 999.9 000000 724050 13743 19511110 46.8 24 30.9 24 1024.6 24 1023.6 24 7.5 24 1.9 24 6.0 999.9 62.4* 38.3* 0.00I 999.9 000000 724050 13743 19511111 48.7 24 36.0 24 1021.1 24 1020.1 24 6.5 24 2.5 24 8.9 999.9 69.3* 37.4* 0.00I 999.9 000000 724050 13743 19511112 46.2 24 34.2 24 1024.8 24 1023.8 24 6.6 24 2.5 24 6.0 999.9 58.3* 35.4* 0.00I 999.9 000000 724050 13743 19511113 50.2 24 45.4 24 1020.2 24 1019.2 24 5.4 24 0.7 24 6.0 999.9 56.3* 47.3* 99.99 999.9 010000 724050 13743 19511114 63.6 24 59.1 24 1009.4 24 1008.4 24 8.9 24 9.3 24 16.9 999.9 73.4* 55.4* 99.99 999.9 010000 724050 13743 19511115 58.9 24 53.5 24 1011.9 24 1010.9 24 6.9 24 3.9 24 7.0 999.9 68.4* 54.3* 0.00I 999.9 100000 724050 13743 19511116 60.5 24 54.4 24 1007.2 24 1006.1 24 6.2 24 7.4 24 22.9 999.9 72.3* 53.4* 99.99 999.9 010000 724050 13743 19511117 46.6 24 32.2 24 1011.5 24 1010.5 24 11.6 24 15.0 24 22.9 999.9 50.4* 42.4* 99.99 999.9 010000 724050 13743 19511118 35.8 24 19.0 24 1016.4 24 1015.3 24 14.7 24 14.6 24 22.9 999.9 39.4* 32.4* 0.00I 999.9 000000 724050 13743 19511119 30.9 24 17.5 24 1020.0 24 1019.0 24 14.6 24 14.8 24 22.0 999.9 38.3* 25.3* 0.00I 999.9 000000 724050 13743 19511120 31.7 24 18.7 24 1026.0 24 1025.0 24 12.8 24 14.2 24 22.0 999.9 38.3* 26.4* 0.00I 999.9 000000 724050 13743 19511121 32.0 24 17.8 24 1032.2 24 1031.2 24 10.7 24 5.3 24 12.0 999.9 40.3* 24.4* 0.00I 999.9 000000 724050 13743 19511122 38.3 24 24.3 24 1029.2 24 1028.2 24 7.7 24 5.1 24 8.9 999.9 47.3* 33.4* 99.99 999.9 010000 724050 13743 19511123 53.5 24 38.4 24 1021.9 24 1020.9 24 8.1 24 7.3 24 14.0 999.9 65.3* 41.4* 0.00I 999.9 000000 724050 13743 19511124 54.8 24 46.0 24 1017.6 24 1016.6 24 8.3 24 9.6 24 16.9 999.9 61.3* 45.3* 99.99 999.9 010000 724050 13743 19511125 36.3 24 25.1 24 1029.8 24 1028.8 24 9.4 24 9.3 24 16.9 999.9 45.3* 30.4* 99.99 999.9 010000 724050 13743 19511126 40.6 24 34.3 24 1013.5 24 1012.5 24 7.7 24 9.6 24 23.9 999.9 58.3* 32.4* 99.99 999.9 110000 724050 13743 19511127 40.1 24 25.7 24 1020.3 24 1019.3 24 13.3 24 15.2 24 23.9 999.9 43.3* 37.4* 0.00I 999.9 000000 724050 13743 19511128 32.4 24 16.4 24 1026.5 24 1025.5 24 8.4 24 3.1 24 9.9 999.9 44.4* 23.4* 0.00I 999.9 000000 724050 13743 19511129 38.0 24 27.6 24 1025.9 24 1024.9 24 5.6 24 4.7 24 12.0 999.9 49.3* 29.3* 0.00I 999.9 000000 724050 13743 19511130 40.2 24 31.1 24 1025.9 24 1024.9 24 5.4 24 2.2 24 8.9 999.9 55.4* 31.3* 0.00I 999.9 000000 724050 13743 19511201 43.5 24 33.4 24 1023.4 24 1022.4 24 5.3 24 1.5 24 7.0 999.9 61.3* 31.3* 0.00I 999.9 000000 724050 13743 19511202 45.1 24 35.1 24 1022.1 24 1021.1 24 4.5 24 0.1 24 2.9 999.9 64.4* 32.4* 0.00I 999.9 000000 724050 13743 19511203 44.6 24 39.7 24 1026.2 24 1025.2 24 2.8 24 2.5 24 7.0 999.9 59.4* 36.3* 0.00I 999.9 100000 724050 13743 19511204 54.1 24 49.3 24 1019.9 24 1018.9 24 6.4 24 4.4 24 12.0 999.9 63.3* 48.4* 99.99 999.9 010000 724050 13743 19511205 58.5 24 56.1 24 1010.5 24 1009.5 24 5.1 24 8.1 24 16.9 999.9 62.4* 55.4* 99.99 999.9 110000 724050 13743 19511206 58.1 24 49.6 24 1014.4 24 1013.4 24 8.5 24 5.1 24 8.9 999.9 69.3* 50.4* 99.99 999.9 010000 724050 13743 19511207 61.0 24 53.2 24 1020.1 24 1019.1 24 9.9 24 9.2 24 15.0 999.9 72.3* 53.4* 0.00I 999.9 000000 724050 13743 19511208 63.5 24 60.0 24 1020.3 24 1019.3 24 7.0 24 4.5 24 12.0 999.9 67.3* 59.4* 99.99 999.9 010000 724050 13743 19511209 59.4 24 55.4 24 1015.3 24 1014.3 24 7.0 24 6.7 24 22.0 999.9 67.3* 51.3* 99.99 999.9 110000 724050 13743 19511210 44.4 24 32.2 24 1019.7 24 1018.7 24 9.8 24 15.6 24 23.9 999.9 50.4* 40.3* 0.00I 999.9 000000 724050 13743 19511211 38.8 24 26.9 24 1014.2 24 1013.2 24 7.6 24 3.9 24 8.9 999.9 46.4* 33.4* 0.00I 999.9 000000 724050 13743 19511212 38.1 24 27.2 24 1003.6 24 1002.6 24 10.4 24 7.8 24 18.1 999.9 42.4* 35.4* 0.00I 999.9 000000 724050 13743 19511213 32.1 24 15.1 24 1013.3 24 1012.3 24 13.1 24 10.8 24 20.0 999.9 35.4* 29.3* 0.00I 999.9 000000 724050 13743 19511214 27.2 24 15.8 24 1025.3 24 1024.4 24 9.2 24 2.3 24 7.0 999.9 32.4* 25.3* 99.99 999.9 011000 724050 13743 19511215 35.5 24 28.1 24 1006.5 24 1005.5 24 8.9 24 13.5 24 26.0 999.9 44.4* 28.4* 99.99 999.9 010000 724050 13743 19511216 18.4 24 3.6 24 1029.2 24 1028.2 24 12.3 24 16.2 24 22.9 999.9 27.3* 13.5* 0.00I 999.9 000000 724050 13743 19511217 18.9 24 0.4 24 1036.2 24 1035.1 24 11.8 24 3.3 24 9.9 999.9 28.4* 12.4* 0.00I 999.9 000000 724050 13743 19511218 28.2 24 20.9 24 1017.1 24 1016.0 24 7.4 24 3.4 24 8.9 999.9 34.3* 23.4* 99.99 999.9 011000 724050 13743 19511219 28.5 24 19.0 24 1020.4 24 1019.4 24 12.6 24 11.2 24 18.1 999.9 37.4* 25.3* 0.00I 999.9 000000 724050 13743 19511220 25.8 24 19.7 24 1025.4 24 1024.4 24 4.7 24 3.1 24 7.0 999.9 31.3* 22.5* 99.99 999.9 111000 724050 13743 19511221 46.4 24 43.6 24 1001.9 24 1000.9 24 6.4 24 6.1 24 12.0 999.9 60.3* 31.3* 99.99 999.9 110000 724050 13743 19511222 38.3 24 23.8 24 1012.9 24 1012.0 24 13.7 24 9.5 24 16.9 999.9 52.3* 31.3* 0.00I 999.9 000000 724050 13743 19511223 32.9 24 20.6 24 1026.6 24 1025.7 24 7.9 24 2.7 24 12.0 999.9 45.3* 26.4* 0.00I 999.9 000000 724050 13743 19511224 41.4 24 24.9 24 1027.1 24 1026.1 24 11.4 24 4.1 24 12.0 999.9 50.4* 35.4* 0.00I 999.9 000000 724050 13743 19511225 34.8 24 26.7 24 1029.6 24 1028.6 24 4.6 24 1.5 24 8.0 999.9 40.3* 30.4* 99.99 999.9 010000 724050 13743 19511226 38.6 24 33.8 24 1018.6 24 1017.6 24 5.2 24 6.2 24 21.0 999.9 47.3* 35.4* 99.99 999.9 110000 724050 13743 19511227 31.3 24 17.0 24 1030.3 24 1029.3 24 12.0 24 12.6 24 21.0 999.9 35.4* 29.3* 0.00I 999.9 000000 724050 13743 19511228 27.3 24 15.4 24 1032.5 24 1031.5 24 8.6 24 2.9 24 9.9 999.9 35.4* 20.3* 0.00I 999.9 000000 724050 13743 19511229 39.3 24 24.8 24 1022.9 24 1021.9 24 9.3 24 7.0 24 13.0 999.9 49.3* 34.3* 0.00I 999.9 000000 724050 13743 19511230 48.6 24 45.4 24 1013.9 24 1012.9 24 5.7 24 6.0 24 12.0 999.9 53.4* 46.4* 99.99 999.9 010000 724050 13743 19511231 48.7 24 44.3 24 1018.1 24 1017.1 24 4.6 24 3.0 24 6.0 999.9 53.4* 44.4* 99.99 999.9 010000 fluids-1.0.22/tests/gsod/1987/0000755000175000017500000000000014302004506015110 5ustar nileshnileshfluids-1.0.22/tests/gsod/1987/724050-13743.op0000644000175000017500000014327214302004506016701 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19870101 34.5 23 30.3 23 1022.9 23 1020.4 23 7.4 23 6.6 23 13.0 999.9 46.0 30.9 0.00G 999.9 111000 724050 13743 19870102 37.8 23 32.8 23 1005.9 23 1003.6 23 7.0 23 10.8 23 15.0 999.9 44.1 30.9 0.71G 999.9 111000 724050 13743 19870103 39.2 24 24.1 24 1015.2 24 1012.8 24 13.9 24 10.7 24 15.9 22.0 44.1 30.9 0.03G 999.9 000000 724050 13743 19870104 35.3 24 20.7 24 1024.2 24 1021.8 24 13.3 24 7.3 24 9.9 999.9 44.1 27.0 0.00G 999.9 000000 724050 13743 19870105 33.4 23 16.4 23 1026.2 23 1023.8 23 13.3 23 8.3 23 9.9 999.9 44.1 27.0 0.00G 999.9 000000 724050 13743 19870106 33.2 23 24.9 23 1025.5 23 1023.1 23 9.6 23 5.3 23 8.9 999.9 43.0* 25.0 0.00G 999.9 100000 724050 13743 19870107 42.2 23 27.1 23 1012.0 23 1009.6 23 12.1 23 10.1 23 19.0 25.1 54.0* 25.0 0.00D 999.9 000000 724050 13743 19870108 41.4 23 24.1 23 1018.7 23 1016.3 23 14.3 23 9.9 23 15.9 22.0 55.9 36.0 0.00D 999.9 000000 724050 13743 19870109 36.7 21 24.0 21 1021.2 21 1018.8 21 11.3 21 6.6 21 12.0 999.9 44.1 28.0 0.00G 999.9 000000 724050 13743 19870110 38.5 24 33.8 24 1013.0 24 1010.6 24 6.4 24 6.2 24 8.0 999.9 44.1 28.0 0.06G 999.9 110000 724050 13743 19870111 39.1 23 28.7 23 1002.1 23 999.7 23 10.5 23 11.3 23 21.0 29.9 43.0* 36.0 0.08G 999.9 100000 724050 13743 19870112 37.8 24 22.3 24 1005.6 24 1003.3 24 15.1 24 10.9 24 18.1 29.9 45.0* 30.9 0.00G 999.9 000000 724050 13743 19870113 41.6 23 24.6 23 1013.6 23 1011.4 23 14.9 23 10.5 23 15.9 21.0 48.9* 30.9 0.00G 999.9 000000 724050 13743 19870114 43.0 24 28.6 24 1017.6 24 1015.2 24 11.2 24 6.3 24 8.9 999.9 54.0* 34.0 0.00G 999.9 000000 724050 13743 19870115 51.0 21 42.0 20 1013.1 21 1010.7 21 9.9 21 6.5 21 12.0 999.9 60.1* 34.0 0.03G 999.9 010000 724050 13743 19870116 47.1 23 35.4 23 1020.5 23 1018.1 23 12.9 23 7.6 23 11.1 999.9 60.1 39.9 0.00D 999.9 000000 724050 13743 19870117 35.3 24 19.9 24 1027.0 24 1024.6 24 12.8 24 8.8 24 13.0 999.9 53.1 28.0 0.00G 999.9 000000 724050 13743 19870118 33.8 23 25.3 23 1021.4 23 1019.0 23 8.2 23 6.9 23 9.9 999.9 39.0 28.0 0.54G 999.9 110000 724050 13743 19870119 37.1 24 34.7 24 1008.1 24 1005.7 24 5.2 24 7.0 24 14.0 17.1 39.0* 30.9 0.70G 999.9 111000 724050 13743 19870120 39.5 23 28.4 23 1014.6 23 1012.2 23 15.6 23 8.8 23 17.1 19.0 42.1 36.0 0.26G 999.9 000000 724050 13743 19870121 37.2 14 27.1 14 1017.9 14 1015.5 14 10.8 14 6.2 14 11.1 999.9 42.1 36.0 0.00G 999.9 000000 724050 13743 19870122 31.6 21 25.4 21 1009.3 21 1006.9 21 5.8 21 10.0 21 21.0 28.0 42.1 25.2* 0.05G 9.8 101000 724050 13743 19870123 27.4 21 15.8 21 999.8 21 997.5 21 11.9 19 10.0 21 18.1 24.1 34.0 22.1* 0.38G 10.2 101000 724050 13743 19870124 18.6 24 -1.3 24 1017.2 24 1014.8 24 14.9 24 7.6 24 11.1 999.9 33.1 10.9 0.00G 9.8 000000 724050 13743 19870125 17.2 21 2.7 21 1024.0 21 1021.6 21 9.1 21 5.3 21 8.0 999.9 28.0 10.9 0.06G 10.6 101000 724050 13743 19870126 20.9 22 15.9 22 1013.1 22 1010.7 22 4.1 22 11.5 22 18.1 999.9 27.1* 14.0 0.92G 18.5 101000 724050 13743 19870127 19.1 22 3.3 22 1019.9 22 1017.5 22 12.9 22 7.4 22 13.0 999.9 28.9 9.0 0.06G 17.3 000000 724050 13743 19870128 17.8 23 7.4 23 1020.0 23 1017.6 23 7.8 23 3.5 23 8.9 999.9 32.0* 7.0 0.00G 13.0 100000 724050 13743 19870129 28.9 21 16.3 21 1024.2 21 1021.8 21 8.5 21 6.5 21 9.9 999.9 39.0* 7.0 0.00G 10.2 100000 724050 13743 19870130 34.3 24 27.5 24 1011.5 24 1009.1 24 6.1 24 6.7 24 9.9 999.9 39.9* 28.9 0.13G 9.4 111000 724050 13743 19870131 37.1 23 24.7 23 1006.4 23 1004.0 23 10.7 23 13.4 23 26.0 42.0 42.1 28.9 0.00D 7.9 101000 724050 13743 19870201 33.7 23 21.0 23 1015.4 23 1013.0 23 14.7 23 9.7 23 17.1 26.0 42.1 28.9 0.00G 5.9 011000 724050 13743 19870202 40.0 23 29.9 23 1006.5 23 1004.1 23 10.4 23 6.5 23 9.9 999.9 52.0* 28.9 0.05G 5.5 010000 724050 13743 19870203 39.2 23 32.0 23 1006.9 23 1004.5 23 8.5 22 7.6 23 21.0 31.1 53.1 28.9 0.01G 2.4 100000 724050 13743 19870204 42.8 23 26.3 23 1020.0 23 1017.6 23 13.1 23 10.0 22 14.0 999.9 53.1 28.9 0.00G 1.6 000000 724050 13743 19870205 36.9 24 17.7 23 1030.6 24 1028.2 24 16.7 24 9.2 24 21.0 999.9 46.9 30.0 0.00G 0.4 000000 724050 13743 19870206 35.5 24 22.9 24 1026.9 24 1024.5 24 11.7 24 5.4 24 8.9 999.9 48.9* 27.0 0.00G 999.9 000000 724050 13743 19870207 41.1 23 27.5 23 1014.8 23 1012.4 23 11.3 23 7.0 23 14.0 999.9 52.0 27.0 0.00G 999.9 000000 724050 13743 19870208 39.7 23 28.4 23 1005.3 23 1002.9 23 11.1 23 9.1 23 21.0 22.0 55.0* 28.9 0.00G 999.9 010000 724050 13743 19870209 31.6 23 13.8 23 1007.5 23 1005.1 23 15.6 23 22.4 23 28.0 38.1 55.9 24.1 0.00G 999.9 011000 724050 13743 19870210 33.6 24 7.4 24 1019.7 24 1017.2 24 15.7 24 11.3 24 21.0 28.9 46.9* 24.1 0.00G 999.9 000000 724050 13743 19870211 37.3 21 24.1 21 1021.3 21 1018.9 21 13.0 21 6.2 21 12.0 999.9 48.9* 25.0 0.00G 999.9 000000 724050 13743 19870212 37.4 19 30.4 19 1011.4 19 1008.8 19 8.9 19 4.2 19 13.0 22.0 48.9 26.1 0.00H 999.9 110000 724050 13743 19870213 40.5 20 21.7 20 1014.2 20 1011.8 20 14.7 20 13.5 20 19.0 25.1 44.1* 33.1 0.14G 999.9 000000 724050 13743 19870214 35.0 20 18.1 20 1016.0 20 1013.6 20 14.2 20 7.3 20 9.9 999.9 45.0 28.0 0.00G 999.9 001000 724050 13743 19870215 28.5 24 11.5 24 1019.6 24 1017.2 24 13.6 24 10.1 24 15.0 999.9 37.9 24.1 0.00G 999.9 000000 724050 13743 19870216 21.7 24 2.9 24 1024.7 24 1022.3 24 11.3 24 8.9 24 15.0 19.0 30.0 16.0 0.00G 999.9 000000 724050 13743 19870217 34.0 24 14.6 24 1016.8 24 1014.4 24 11.6 24 10.7 24 15.9 20.0 42.1* 16.0 0.00G 999.9 000000 724050 13743 19870218 38.3 24 18.7 24 1017.2 24 1014.8 24 11.8 24 8.2 24 12.0 999.9 46.0* 30.9 0.00G 999.9 000000 724050 13743 19870219 35.7 24 11.2 24 1025.3 24 1022.9 24 14.9 24 8.1 24 12.0 999.9 46.9 26.1 0.00G 999.9 000000 724050 13743 19870220 35.9 23 17.1 23 1030.1 23 1027.7 23 12.1 23 6.7 23 11.1 999.9 48.0 26.1 0.00G 999.9 000000 724050 13743 19870221 38.4 22 18.6 22 1025.1 22 1022.7 22 10.7 22 5.2 22 8.9 999.9 46.9 26.1 0.00G 999.9 000000 724050 13743 19870222 37.0 24 24.7 24 1020.5 24 1018.1 24 9.8 24 4.3 24 9.9 999.9 46.0 28.9 0.00G 999.9 000000 724050 13743 19870223 37.1 21 30.7 21 1009.1 21 1006.7 21 5.3 20 12.5 21 24.1 33.0 48.0 28.9 1.48G 8.3 111010 724050 13743 19870224 39.5 22 22.8 22 1024.1 22 1021.7 22 12.6 22 10.6 22 18.1 25.1 46.0* 33.1 0.67G 3.5 000000 724050 13743 19870225 38.0 23 18.2 23 1029.1 23 1026.7 23 14.2 23 8.1 23 12.0 999.9 46.0 30.0 0.00G 0.8 000000 724050 13743 19870226 35.9 24 17.9 24 1033.2 24 1030.7 24 14.5 24 6.3 24 11.1 999.9 44.1 28.0 0.00D 0.4 000000 724050 13743 19870227 36.9 23 22.9 23 1033.8 23 1031.3 23 14.7 23 7.1 23 8.9 999.9 45.0 28.0 0.00G 0.4 000000 724050 13743 19870228 37.2 24 30.5 24 1029.6 24 1027.2 24 8.9 24 6.6 24 9.9 999.9 42.1 33.1 0.00G 999.9 110000 724050 13743 19870301 54.2 24 47.2 23 1007.1 24 1004.7 24 7.8 24 10.1 24 21.0 28.0 73.9* 33.1 0.74G 999.9 110000 724050 13743 19870302 52.2 24 34.7 24 1006.5 24 1004.1 24 17.1 24 10.7 24 21.0 25.1 73.9 46.0 0.06G 999.9 000000 724050 13743 19870303 47.5 24 24.8 24 1018.1 24 1015.7 24 16.7 24 8.6 24 18.1 999.9 55.9 39.0 0.00G 999.9 000000 724050 13743 19870304 37.0 24 18.6 24 1028.1 24 1025.6 24 16.1 24 14.9 24 25.1 999.9 55.9 33.1* 0.00G 999.9 000000 724050 13743 19870305 34.3 24 16.7 24 1032.5 24 1030.0 24 15.4 24 7.8 24 14.0 999.9 44.1* 26.1 0.00G 999.9 000000 724050 13743 19870306 40.0 23 25.1 23 1033.4 23 1030.9 23 11.9 23 6.3 23 11.1 999.9 55.0* 26.1 0.00G 999.9 000000 724050 13743 19870307 52.0 24 34.3 24 1025.8 24 1023.3 24 10.4 23 7.3 24 13.0 999.9 73.9* 28.0 0.00G 999.9 000000 724050 13743 19870308 57.7 24 39.7 24 1015.4 24 1013.0 24 10.6 24 7.2 24 11.1 999.9 75.0 36.0 0.00G 999.9 000000 724050 13743 19870309 56.5 24 49.0 24 1004.4 24 1002.0 24 9.1 24 7.8 24 14.0 999.9 72.0 42.1 0.00G 999.9 110000 724050 13743 19870310 32.7 24 17.7 24 1018.7 24 1016.3 24 11.5 24 17.7 24 22.9 29.9 60.1 24.1 0.06G 999.9 111000 724050 13743 19870311 30.4 22 9.5 22 1030.5 22 1028.1 22 13.0 22 9.7 22 999.9 999.9 37.9* 24.1 0.01G 999.9 000000 724050 13743 19870312 37.5 22 24.9 22 1028.1 22 1025.7 22 14.8 22 5.6 22 9.9 999.9 48.0* 24.1 0.00G 999.9 000000 724050 13743 19870313 39.6 24 28.0 24 1023.1 24 1020.7 24 9.6 24 11.1 24 15.9 999.9 48.9 32.0 0.00G 999.9 100000 724050 13743 19870314 39.2 24 15.5 24 1022.5 24 1020.0 24 11.6 24 7.5 24 13.0 999.9 48.0* 28.9 0.00G 999.9 000000 724050 13743 19870315 40.5 22 29.3 22 1021.4 22 1019.0 22 8.9 22 8.7 22 13.0 999.9 48.9 28.9 0.00G 999.9 110000 724050 13743 19870316 39.1 23 30.9 23 1024.0 23 1021.6 23 4.6 23 5.4 23 13.0 19.0 48.9* 34.0 0.34G 999.9 111000 724050 13743 19870317 40.9 24 15.5 24 1023.5 24 1021.1 24 16.5 24 11.5 24 18.1 24.1 54.0* 32.0 0.11G 999.9 000000 724050 13743 19870318 47.3 24 15.9 24 1021.7 24 1019.2 24 16.5 24 8.4 24 14.0 999.9 60.1* 32.0 0.00G 999.9 000000 724050 13743 19870319 46.3 22 24.8 22 1016.4 22 1014.0 22 14.9 22 6.1 22 9.9 999.9 60.1 33.1 0.00G 999.9 000000 724050 13743 19870320 48.1 24 26.0 24 1012.4 24 1010.0 24 15.3 24 8.3 24 11.1 999.9 60.1* 35.1 0.00G 999.9 000000 724050 13743 19870321 47.2 22 29.1 22 1011.2 22 1008.8 22 15.6 22 11.9 22 25.1 31.1 61.0 35.1 0.00G 999.9 000000 724050 13743 19870322 50.9 23 30.7 23 1011.1 23 1008.8 23 12.4 23 10.9 23 15.0 22.0 57.9* 39.9 0.00G 999.9 000000 724050 13743 19870323 50.8 24 34.6 24 1017.6 24 1015.2 24 15.0 24 6.2 24 9.9 999.9 63.0* 37.9 0.00G 999.9 000000 724050 13743 19870324 54.1 20 39.1 20 1017.6 20 1015.2 20 11.7 20 5.3 20 9.9 999.9 68.0* 37.9 0.00G 999.9 000000 724050 13743 19870325 54.4 24 36.9 24 1018.0 24 1015.6 24 13.0 24 8.6 24 15.0 22.0 69.1 41.0 0.00G 999.9 000000 724050 13743 19870326 59.7 22 44.3 22 1012.4 22 1010.1 22 12.0 22 7.9 22 14.0 999.9 71.1* 44.1 0.00G 999.9 010000 724050 13743 19870327 58.3 22 44.4 22 1014.4 22 1011.9 22 9.3 22 7.4 22 9.9 999.9 71.1 48.0 0.00G 999.9 000000 724050 13743 19870328 60.1 24 52.6 24 1012.9 24 1010.5 24 7.2 24 7.7 24 12.0 999.9 69.1 48.0 0.11G 999.9 110000 724050 13743 19870329 58.8 24 49.9 24 1020.2 24 1017.8 24 8.9 24 9.2 24 18.1 999.9 70.0* 50.0 0.02G 999.9 100000 724050 13743 19870330 56.9 23 49.7 23 1014.7 23 1012.3 23 7.1 23 11.6 23 18.1 20.0 70.0 50.0 0.07G 999.9 110000 724050 13743 19870331 55.7 22 49.6 22 999.4 22 997.0 22 9.1 22 12.8 22 20.0 35.0 64.0 41.0* 0.70G 999.9 110000 724050 13743 19870401 37.9 23 17.7 23 1015.9 23 1013.6 23 16.7 23 11.7 23 21.0 28.0 64.0 28.9 0.52G 999.9 000000 724050 13743 19870402 50.0 23 29.4 23 1013.2 23 1010.9 23 12.5 23 13.8 23 20.0 26.0 66.0* 28.9 0.00G 999.9 010000 724050 13743 19870403 42.0 22 32.1 22 1019.4 22 1017.1 22 11.0 22 11.2 22 19.0 999.9 48.9* 37.0 0.00G 999.9 010000 724050 13743 19870404 50.7 24 45.7 24 1003.0 24 1000.7 24 7.9 24 12.3 24 21.0 26.0 57.0 37.0 0.85G 999.9 110000 724050 13743 19870405 39.4 24 32.9 24 1007.5 24 1005.1 24 9.4 24 8.0 24 13.0 999.9 57.0 35.1 0.02G 999.9 111000 724050 13743 19870406 39.5 23 35.5 23 1008.0 23 1005.7 23 6.7 23 5.8 23 8.0 999.9 46.9* 35.1 0.10G 999.9 111000 724050 13743 19870407 50.7 23 42.4 23 1006.0 23 1003.7 23 10.6 23 8.4 23 14.0 19.0 59.0* 35.1 0.01G 999.9 110000 724050 13743 19870408 55.1 24 40.9 24 1007.1 24 1004.8 24 11.0 24 10.9 24 15.0 20.0 63.0* 45.0 0.00G 999.9 000000 724050 13743 19870409 53.5 24 34.9 24 1009.7 24 1007.4 24 15.4 24 7.6 24 11.1 999.9 64.0 43.0 0.00G 999.9 000000 724050 13743 19870410 58.9 23 35.5 23 1010.7 23 1008.4 23 13.2 23 6.3 23 9.9 999.9 73.0* 43.0 0.00G 999.9 000000 724050 13743 19870411 62.8 24 39.5 24 1009.5 24 1007.2 24 14.2 24 8.7 24 19.0 26.0 78.1 45.0 0.00G 999.9 010000 724050 13743 19870412 59.6 23 48.3 23 1009.8 23 1007.5 23 9.3 23 5.9 23 11.1 999.9 78.3 48.0 0.00G 999.9 110000 724050 13743 19870413 58.7 22 43.1 22 1014.5 22 1012.2 22 12.7 22 11.2 22 17.1 24.1 70.0 48.0 0.02G 999.9 000000 724050 13743 19870414 54.9 22 45.2 21 1024.3 22 1022.0 22 10.0 22 7.0 22 11.1 999.9 66.0 45.0 0.00G 999.9 100000 724050 13743 19870415 54.0 23 40.9 23 1019.9 23 1017.6 23 11.0 23 9.5 23 12.0 999.9 66.0 45.0 0.00G 999.9 010000 724050 13743 19870416 49.7 21 47.3 21 1011.4 21 1009.1 21 7.1 21 14.1 21 21.0 27.0 55.9 48.0 0.16G 999.9 110000 724050 13743 19870417 53.6 22 52.5 22 1004.2 22 1001.9 22 5.3 22 14.9 22 20.0 24.1 62.1 48.0 0.68G 999.9 110010 724050 13743 19870418 59.0 24 55.4 24 1010.2 24 1007.9 24 6.7 24 10.7 24 15.0 999.9 68.0* 50.0 0.02G 999.9 110000 724050 13743 19870419 62.1 24 57.6 24 1016.8 24 1014.4 24 5.8 24 9.7 24 12.0 999.9 70.0* 55.0 0.00G 999.9 110000 724050 13743 19870420 62.0 24 57.7 24 1018.8 24 1016.5 24 6.7 24 8.2 24 14.0 999.9 72.0 55.9 0.02G 999.9 100000 724050 13743 19870421 65.0 21 58.3 21 1017.8 21 1015.5 21 8.1 21 8.4 21 14.0 19.0 78.1* 55.9 0.00G 999.9 100000 724050 13743 19870422 67.7 23 59.1 23 1015.0 23 1012.7 23 7.9 23 6.1 23 18.1 22.9 84.0* 54.0 0.00G 999.9 100000 724050 13743 19870423 54.1 23 51.6 23 1020.1 23 1017.8 23 5.4 23 8.5 23 15.9 999.9 59.0* 50.0 0.00G 999.9 110000 724050 13743 19870424 56.2 21 55.5 21 1014.3 21 1012.0 21 3.7 21 8.2 21 14.0 999.9 59.0 50.0 0.19G 999.9 110000 724050 13743 19870425 50.7 22 48.3 22 1018.6 22 1016.2 22 6.0 22 13.7 22 19.0 26.0 60.1 46.0 0.22G 999.9 110000 724050 13743 19870426 52.0 24 35.6 24 1023.5 24 1021.2 24 16.5 24 11.6 24 20.0 26.0 63.0* 42.1 0.02G 999.9 000000 724050 13743 19870427 52.9 24 34.6 24 1022.8 24 1020.5 24 13.9 24 7.2 24 14.0 999.9 63.0 41.0 0.00G 999.9 000000 724050 13743 19870428 53.5 24 38.9 24 1014.5 24 1012.2 24 14.5 24 10.8 24 20.0 28.9 64.0 41.0 0.00G 999.9 010000 724050 13743 19870429 55.7 24 35.8 24 1010.3 24 1008.0 24 12.4 24 11.7 24 22.9 33.0 77.0* 39.9 0.02G 999.9 010000 724050 13743 19870430 63.7 20 35.0 20 1005.6 20 1003.3 20 15.2 20 15.2 20 19.0 28.0 77.0 55.9* 0.00G 999.9 010000 724050 13743 19870501 57.8 24 36.1 24 1014.0 24 1011.6 24 14.8 24 7.0 24 12.0 999.9 69.1* 45.0 0.00G 999.9 000000 724050 13743 19870502 61.6 24 48.1 23 1011.9 24 1009.5 24 11.9 24 6.1 24 12.0 999.9 71.1 45.0 0.00G 999.9 000000 724050 13743 19870503 64.7 24 56.3 24 1014.2 24 1011.8 24 9.4 24 6.8 24 12.0 999.9 78.1* 52.0 0.00G 999.9 110010 724050 13743 19870504 52.0 24 49.8 24 1021.0 24 1018.6 24 5.7 24 13.9 24 19.0 22.0 79.0 48.0 1.37G 999.9 110010 724050 13743 19870505 52.1 24 41.7 24 1024.1 24 1021.7 24 12.6 24 9.2 24 12.0 999.9 62.1 42.1 0.43G 999.9 100000 724050 13743 19870506 59.6 23 42.3 23 1018.1 23 1015.7 23 11.9 23 7.7 23 13.0 18.1 75.0* 42.1 0.00G 999.9 100000 724050 13743 19870507 65.1 20 45.2 20 1014.3 20 1011.9 20 10.6 20 6.8 20 12.0 999.9 80.1* 45.0 0.00D 999.9 000000 724050 13743 19870508 64.1 22 42.1 22 1016.6 22 1014.2 22 11.3 22 11.5 22 17.1 18.1 80.1 53.1 0.01G 999.9 010000 724050 13743 19870509 63.8 23 38.7 23 1019.3 23 1016.9 23 13.1 23 7.7 23 14.0 19.0 78.1* 48.9 0.00D 999.9 000000 724050 13743 19870510 69.0 24 50.9 24 1016.7 24 1014.3 24 12.0 24 8.4 24 12.0 999.9 86.0* 48.9 0.00G 999.9 000000 724050 13743 19870511 72.0 21 54.8 21 1016.6 21 1014.2 21 9.1 21 7.1 21 12.0 999.9 89.1* 53.1 0.00G 999.9 100000 724050 13743 19870512 73.5 22 60.1 22 1013.9 22 1011.5 22 9.4 22 10.0 22 19.0 25.1 89.1 59.0 0.00H 999.9 110010 724050 13743 19870513 64.1 24 51.2 24 1023.5 24 1021.1 24 10.8 24 12.5 24 15.9 22.0 69.1* 59.0 0.17G 999.9 110000 724050 13743 19870514 58.7 24 49.3 24 1026.3 24 1023.8 24 10.5 23 8.0 24 13.0 999.9 66.9* 54.0 0.00G 999.9 000000 724050 13743 19870515 66.9 22 63.9 22 1017.1 22 1014.7 22 6.1 22 9.8 22 14.0 999.9 75.9* 54.0 0.12G 999.9 110010 724050 13743 19870516 63.2 24 45.5 24 1020.7 24 1018.3 24 13.3 24 8.9 24 12.0 999.9 75.9 53.1 0.30G 999.9 000000 724050 13743 19870517 66.3 23 55.7 23 1018.2 23 1015.8 23 13.8 23 8.2 23 11.1 999.9 82.0* 53.1 0.00G 999.9 000000 724050 13743 19870518 75.7 24 63.4 24 1014.3 24 1011.9 24 7.1 24 6.8 24 15.9 999.9 91.0 53.1 0.00G 999.9 100000 724050 13743 19870519 64.8 24 61.2 24 1016.2 24 1013.8 24 6.4 22 10.7 24 17.1 999.9 91.0 57.0* 0.01G 999.9 110000 724050 13743 19870520 54.3 22 53.7 22 1021.7 22 1019.3 22 5.1 22 12.1 22 13.0 999.9 71.1 52.0 0.26G 999.9 110000 724050 13743 19870521 61.2 23 58.5 23 1024.4 23 1022.0 23 5.0 23 8.6 23 13.0 999.9 73.9* 51.1 0.07G 999.9 110000 724050 13743 19870522 68.5 19 64.2 19 1024.2 19 1021.8 19 6.9 19 7.0 19 12.0 999.9 78.1* 55.0 0.06G 999.9 110000 724050 13743 19870523 76.0 24 67.7 24 1021.0 24 1018.6 24 8.7 24 8.7 24 17.1 999.9 89.1 59.0 0.00G 999.9 110010 724050 13743 19870524 75.4 22 67.2 22 1019.4 22 1017.0 22 5.0 22 6.2 22 14.0 999.9 89.1 66.9 0.35G 999.9 100010 724050 13743 19870525 68.0 24 62.3 24 1022.7 24 1020.3 24 6.0 24 9.0 24 11.1 999.9 86.0 62.1 0.00G 999.9 110000 724050 13743 19870526 63.6 22 58.1 22 1025.7 22 1023.2 22 9.5 22 8.2 22 11.1 999.9 69.1 59.0 0.00G 999.9 010000 724050 13743 19870527 66.3 24 57.6 24 1026.1 24 1023.7 24 12.1 24 7.6 24 9.9 999.9 73.0* 59.0 0.00G 999.9 000000 724050 13743 19870528 72.2 24 63.6 24 1024.2 24 1021.8 24 8.8 24 6.6 24 9.9 999.9 84.9* 62.1 0.00G 999.9 000000 724050 13743 19870529 80.4 23 68.4 23 1020.0 23 1017.6 23 4.6 23 6.9 23 11.1 999.9 96.1* 64.9 0.00G 999.9 100000 724050 13743 19870530 84.2 22 69.5 22 1018.0 22 1015.6 22 3.9 22 7.1 22 19.0 999.9 97.0 69.1 0.00G 999.9 100010 724050 13743 19870531 81.0 24 71.8 24 1016.0 24 1013.6 23 5.3 24 7.9 24 12.0 999.9 97.0 73.0 0.00G 999.9 110010 724050 13743 19870601 79.5 22 68.7 22 1016.1 22 1013.7 22 7.0 22 7.4 22 15.0 27.0 90.0 70.0 0.00G 999.9 110010 724050 13743 19870602 76.6 24 65.8 24 1015.3 24 1012.9 24 8.0 24 9.4 24 13.0 999.9 89.1 68.0 0.06G 999.9 110010 724050 13743 19870603 77.6 23 70.2 23 1017.0 23 1014.6 23 4.9 23 7.5 23 12.0 999.9 89.1 68.0 0.04G 999.9 110000 724050 13743 19870604 71.0 22 68.9 22 1017.8 22 1015.4 22 3.9 22 7.0 22 15.0 21.0 87.1 66.0* 0.07G 999.9 110010 724050 13743 19870605 69.9 22 59.9 22 1019.3 22 1016.9 22 11.4 22 7.4 22 12.0 999.9 79.0* 61.0 0.78G 999.9 100000 724050 13743 19870606 72.4 21 48.3 21 1020.5 21 1018.1 21 16.3 21 9.7 21 20.0 24.1 80.1 61.0 0.00G 999.9 000000 724050 13743 19870607 73.9 24 56.1 24 1021.6 24 1019.2 24 12.4 24 8.2 24 15.0 19.0 88.0* 60.1 0.00G 999.9 000000 724050 13743 19870608 80.1 21 63.4 21 1017.2 21 1014.7 21 10.5 21 10.5 21 14.0 21.0 91.0 60.1 0.00G 999.9 000000 724050 13743 19870609 79.3 23 64.5 23 1013.9 23 1011.5 23 7.3 23 8.4 23 14.0 18.1 91.9 66.9 0.00G 999.9 010000 724050 13743 19870610 67.3 21 48.6 21 1019.2 21 1016.8 21 13.0 21 12.6 21 18.1 24.1 84.0 55.9 0.00C 999.9 000000 724050 13743 19870611 69.0 24 51.7 24 1022.2 24 1019.8 24 14.7 24 7.4 24 15.0 20.0 79.0* 55.9 0.00G 999.9 000000 724050 13743 19870612 73.2 24 65.0 24 1015.1 24 1012.7 24 9.0 24 10.4 24 13.0 999.9 82.0 55.9 0.02G 999.9 110010 724050 13743 19870613 76.3 24 70.7 24 1011.5 24 1009.2 24 6.7 24 7.9 24 21.0 39.0 87.1 68.0 0.33G 999.9 110110 724050 13743 19870614 74.2 23 69.7 23 1011.9 23 1009.5 23 6.1 23 6.2 23 12.0 999.9 88.0 66.0 1.19G 999.9 110000 724050 13743 19870615 81.2 22 70.9 22 1011.4 22 1009.1 22 5.8 22 8.7 22 12.0 18.1 93.9* 66.0 0.00G 999.9 100000 724050 13743 19870616 80.8 23 65.2 22 1011.3 23 1008.9 23 9.8 23 8.2 23 12.0 999.9 93.9 71.1 0.00G 999.9 000000 724050 13743 19870617 78.3 22 64.6 22 1014.7 22 1012.3 22 10.1 22 6.9 22 11.1 999.9 86.0 69.1 0.00G 999.9 000000 724050 13743 19870618 76.1 21 63.5 21 1020.6 21 1018.1 21 10.6 21 8.3 21 13.0 999.9 87.1 64.9 0.00G 999.9 000000 724050 13743 19870619 76.8 24 64.7 24 1018.1 24 1015.6 24 10.1 24 9.6 24 12.0 999.9 88.0* 64.9 0.00G 999.9 000000 724050 13743 19870620 81.5 24 72.6 24 1012.9 24 1010.5 24 6.5 24 8.4 24 25.1 34.0 91.0* 66.0 0.00G 999.9 110010 724050 13743 19870621 76.9 23 73.3 23 1010.1 23 1007.7 23 4.2 23 6.9 23 22.9 28.9 91.9 72.0 0.19G 999.9 110010 724050 13743 19870622 80.2 24 75.0 24 1008.5 24 1006.1 24 7.1 24 8.0 24 22.9 31.1 91.0* 72.0 0.04G 999.9 110010 724050 13743 19870623 80.3 23 72.7 23 1007.7 23 1005.3 23 6.7 23 8.7 23 15.0 22.0 91.0 73.9 0.29G 999.9 110000 724050 13743 19870624 76.9 23 61.6 23 1013.8 23 1011.4 23 12.2 23 10.5 23 15.9 999.9 89.1 66.9 0.00G 999.9 110000 724050 13743 19870625 77.8 24 61.7 24 1013.0 24 1010.6 24 10.2 24 5.8 24 11.1 999.9 89.1 66.9 0.00D 999.9 000000 724050 13743 19870626 75.8 24 68.3 24 1010.4 24 1008.0 24 7.3 24 8.7 24 15.9 28.9 89.1 66.9 0.00G 999.9 110010 724050 13743 19870627 74.7 23 66.1 23 1007.7 23 1005.3 23 7.4 22 6.9 23 999.9 999.9 86.0 68.0 0.91G 999.9 110010 724050 13743 19870628 71.8 24 52.0 24 1013.4 24 1011.0 24 17.1 24 8.5 24 15.9 17.1 86.0 59.0 0.02G 999.9 010000 724050 13743 19870629 75.4 23 59.8 23 1018.8 23 1016.4 23 13.6 23 8.6 23 17.1 22.0 88.0* 59.0 0.00G 999.9 000000 724050 13743 19870630 81.3 24 65.3 24 1018.2 24 1015.8 24 12.2 24 11.5 24 15.0 999.9 91.9* 62.1 0.00G 999.9 000000 724050 13743 19870701 79.8 22 69.5 22 1017.0 22 1014.6 22 9.1 22 7.3 22 11.1 999.9 91.9 71.1 0.00G 999.9 010010 724050 13743 19870702 78.8 23 72.5 23 1014.6 23 1012.2 23 8.3 23 9.7 23 18.1 20.0 90.0 71.1 0.04G 999.9 110000 724050 13743 19870703 80.4 22 71.6 22 1013.8 22 1011.5 22 9.6 22 7.8 22 12.0 999.9 91.0 73.0 0.00G 999.9 010000 724050 13743 19870704 79.1 23 72.0 23 1013.3 23 1010.9 23 10.7 23 10.5 23 15.9 22.9 91.0 73.0 0.00G 999.9 010010 724050 13743 19870705 79.7 23 68.2 23 1014.8 23 1012.4 23 11.5 23 7.1 23 11.1 999.9 88.0 73.9 0.00G 999.9 100010 724050 13743 19870706 78.0 23 65.5 23 1018.9 23 1016.5 23 9.1 23 5.7 23 9.9 999.9 89.1 72.0 0.00G 999.9 000000 724050 13743 19870707 78.8 23 70.6 23 1017.8 23 1015.4 23 6.0 23 6.6 23 11.1 999.9 90.0* 72.0 0.00G 999.9 100000 724050 13743 19870708 85.6 24 73.4 24 1016.3 24 1013.9 24 5.5 24 7.0 24 11.1 999.9 97.0* 73.0 0.00G 999.9 100010 724050 13743 19870709 86.7 21 71.8 21 1016.3 21 1013.9 21 7.8 21 6.8 21 11.1 999.9 97.0 77.0 0.00G 999.9 000000 724050 13743 19870710 84.4 24 71.4 24 1015.4 24 1013.0 24 6.2 24 7.5 24 12.0 14.0 96.1 77.0 0.04G 999.9 010010 724050 13743 19870711 85.0 24 70.7 24 1014.7 24 1012.3 24 6.2 24 6.4 24 27.0 47.0 98.1* 75.0* 0.00G 999.9 010110 724050 13743 19870712 79.7 24 71.8 24 1014.1 24 1011.5 24 6.6 24 5.1 23 15.0 29.9 99.0 73.9 1.73G 999.9 110010 724050 13743 19870713 79.9 24 71.7 24 1012.4 24 1010.0 24 5.4 24 5.4 24 9.9 999.9 93.0 72.0 0.01G 999.9 100000 724050 13743 19870714 80.8 24 72.7 24 1007.7 24 1005.3 24 6.9 24 8.9 24 17.1 28.0 91.0 72.0 0.00G 999.9 110000 724050 13743 19870715 70.9 23 52.1 23 1014.5 23 1012.1 23 17.5 23 9.3 23 13.0 999.9 87.1 60.1 0.08G 999.9 000000 724050 13743 19870716 73.0 24 57.8 24 1017.6 24 1015.2 24 13.2 24 5.7 24 12.0 999.9 79.0 60.1 0.00G 999.9 010000 724050 13743 19870717 74.9 24 59.5 24 1024.4 24 1022.0 24 9.2 24 4.5 24 8.9 999.9 84.9* 64.0 0.00G 999.9 100000 724050 13743 19870718 77.1 24 63.2 24 1023.5 24 1021.1 24 10.9 24 6.9 24 9.9 999.9 90.0* 64.0 0.00D 999.9 000000 724050 13743 19870719 82.6 24 66.2 24 1020.2 24 1017.8 24 6.7 24 5.6 24 9.9 999.9 93.9* 66.9 0.00G 999.9 000000 724050 13743 19870720 86.2 24 68.7 24 1020.4 24 1018.0 24 5.1 24 6.8 24 13.0 15.0 96.1 71.1 0.00G 999.9 000000 724050 13743 19870721 91.2 24 70.3 24 1019.0 24 1016.6 24 5.1 24 8.7 23 13.0 18.1 100.0* 75.9 0.00G 999.9 000000 724050 13743 19870722 90.0 24 68.3 24 1018.9 24 1016.5 24 10.4 24 7.7 24 11.1 999.9 100.0 81.0 0.00G 999.9 000000 724050 13743 19870723 89.5 23 69.4 23 1017.9 23 1015.5 23 11.7 23 5.4 23 8.9 999.9 99.0* 77.0 0.00G 999.9 000000 724050 13743 19870724 86.3 23 73.3 23 1019.1 23 1016.7 23 8.3 23 7.7 23 11.1 999.9 100.0 77.0 0.00G 999.9 100000 724050 13743 19870725 86.8 24 72.1 24 1019.2 24 1016.8 24 5.8 24 6.3 24 11.1 999.9 98.1* 75.0 0.25G 999.9 110010 724050 13743 19870726 87.3 23 72.0 23 1014.6 23 1012.2 23 4.9 23 7.6 23 12.0 999.9 99.0 75.0 0.00D 999.9 000000 724050 13743 19870727 84.3 23 66.2 23 1013.0 23 1010.6 23 12.1 23 6.2 23 9.9 999.9 96.1 77.0 0.00G 999.9 000000 724050 13743 19870728 81.4 24 60.3 24 1012.1 24 1009.7 24 15.5 24 8.1 23 15.0 22.0 95.0 72.0 0.02G 999.9 010010 724050 13743 19870729 79.4 23 58.1 23 1015.2 23 1012.8 23 17.1 23 5.2 23 8.0 999.9 91.0 68.0 0.00G 999.9 000000 724050 13743 19870730 80.9 24 65.3 24 1015.7 24 1013.2 24 11.9 24 7.9 24 18.1 22.9 93.0* 68.0 0.00G 999.9 000000 724050 13743 19870731 82.0 24 69.1 24 1014.4 24 1012.0 24 7.6 24 7.4 24 15.9 20.0 93.9* 72.0 0.00G 999.9 110010 724050 13743 19870801 78.9 23 71.7 23 1014.6 23 1012.2 23 4.4 23 6.3 23 11.1 999.9 95.0 73.0 0.42G 999.9 110010 724050 13743 19870802 80.0 23 72.3 23 1013.8 23 1011.4 23 5.0 23 8.3 23 11.1 999.9 89.1* 73.9 0.00G 999.9 100000 724050 13743 19870803 85.3 23 71.5 23 1009.6 23 1007.3 23 8.7 23 8.3 23 14.0 999.9 97.0* 73.9 0.00D 999.9 100000 724050 13743 19870804 87.9 24 69.7 24 1008.7 24 1006.3 24 7.4 24 6.3 24 11.1 999.9 98.1 77.0 0.00G 999.9 000000 724050 13743 19870805 83.1 23 73.6 23 1008.3 23 1005.9 23 4.8 23 6.4 23 12.0 999.9 99.0 73.9* 0.00G 999.9 110010 724050 13743 19870806 76.2 20 69.9 20 1014.3 20 1011.9 20 6.2 20 10.0 20 13.0 999.9 95.0 73.0 1.13G 999.9 110000 724050 13743 19870807 76.5 24 68.4 24 1019.0 24 1016.6 24 8.7 24 6.0 24 11.1 999.9 84.0* 71.1 0.00G 999.9 000000 724050 13743 19870808 81.0 23 72.7 23 1016.5 23 1014.1 23 4.9 23 7.1 23 11.1 999.9 90.0* 71.1 0.00G 999.9 100000 724050 13743 19870809 83.5 24 75.0 24 1012.4 24 1010.0 24 4.9 24 8.2 24 25.1 32.1 91.9* 75.0 0.00G 999.9 110010 724050 13743 19870810 82.9 21 72.2 21 1008.6 21 1006.2 21 7.5 21 7.6 21 13.0 999.9 93.0 70.0 0.02G 999.9 110010 724050 13743 19870811 77.1 24 58.6 24 1015.9 24 1013.5 24 15.0 24 10.0 24 17.1 22.9 93.0 68.0 0.00G 999.9 000000 724050 13743 19870812 77.3 24 62.4 24 1017.4 24 1015.0 24 12.2 24 5.7 24 9.9 999.9 86.0 68.0 0.00G 999.9 000000 724050 13743 19870813 75.2 23 61.5 23 1020.7 23 1018.3 23 13.4 23 7.0 23 13.0 999.9 86.0 66.0 0.00G 999.9 000000 724050 13743 19870814 75.0 23 62.6 23 1022.2 23 1019.8 23 14.9 23 6.0 23 9.9 999.9 84.0 64.0 0.00G 999.9 000000 724050 13743 19870815 79.4 24 68.8 24 1021.0 24 1018.6 24 10.2 24 6.3 24 12.0 999.9 90.0* 64.0 0.00G 999.9 100000 724050 13743 19870816 79.5 23 71.3 23 1017.6 23 1015.2 23 10.7 23 5.8 23 9.9 999.9 90.0 71.1 0.27G 999.9 110000 724050 13743 19870817 83.4 24 75.0 24 1013.5 24 1011.1 24 9.6 24 6.0 24 8.9 999.9 93.9* 72.0 0.13G 999.9 000000 724050 13743 19870818 86.1 23 69.1 22 1013.1 23 1010.7 23 8.5 23 7.6 23 14.0 999.9 95.0 75.0 0.00G 999.9 000000 724050 13743 19870819 79.6 18 64.3 18 1015.2 18 1012.8 18 11.2 18 6.2 17 9.9 999.9 96.1 75.9 0.00G 999.9 010000 724050 13743 19870820 78.8 20 61.4 20 1018.0 20 1015.6 20 11.5 20 8.1 20 12.0 19.0 90.0* 70.0 0.00G 999.9 000000 724050 13743 19870821 78.1 24 51.9 24 1023.4 24 1021.0 24 14.6 24 5.7 24 9.9 999.9 90.0 64.9 0.00G 999.9 000000 724050 13743 19870822 76.6 23 66.6 23 1018.2 23 1015.8 23 8.3 23 9.6 23 14.0 999.9 89.1 64.9 0.14G 999.9 110010 724050 13743 19870823 75.3 23 56.9 23 1016.5 23 1014.1 23 13.0 23 10.5 23 18.1 20.0 82.0* 68.0 0.02G 999.9 110000 724050 13743 19870824 70.2 24 46.4 24 1023.6 24 1021.2 24 19.7 24 7.6 24 12.0 999.9 82.0 57.9 0.00G 999.9 000000 724050 13743 19870825 69.2 24 53.2 24 1024.4 24 1022.0 24 14.1 24 5.0 24 8.9 999.9 80.1 57.9 0.00D 999.9 010000 724050 13743 19870826 71.1 24 54.1 24 1024.0 24 1021.5 24 10.9 24 5.2 24 8.0 18.1 75.9 62.1 0.00G 999.9 010000 724050 13743 19870827 78.5 22 67.6 22 1017.7 22 1015.3 22 6.1 22 9.0 22 14.0 20.0 99.0* 68.0 0.14G 999.9 110000 724050 13743 19870828 78.2 22 71.6 22 1016.0 22 1013.6 22 4.7 22 6.0 22 9.9 999.9 100.0 69.1 0.02G 999.9 110010 724050 13743 19870829 77.7 23 64.7 23 1017.0 23 1014.6 23 10.5 23 8.3 23 14.0 21.0 84.0* 70.0 0.33G 999.9 100000 724050 13743 19870830 72.0 23 52.9 23 1023.2 23 1020.8 23 17.6 23 7.2 23 15.0 999.9 84.0 62.1 0.00G 999.9 000000 724050 13743 19870831 72.9 24 61.2 24 1020.1 24 1017.7 24 14.1 24 9.1 24 14.0 999.9 82.0 62.1 0.00G 999.9 000000 724050 13743 19870901 74.0 22 56.8 22 1016.1 22 1013.7 22 12.6 22 9.0 22 14.0 15.0 81.0 64.9 0.00G 999.9 110000 724050 13743 19870902 70.4 24 48.7 24 1018.3 24 1015.9 24 15.6 24 5.6 24 9.9 999.9 84.0* 57.0 0.00G 999.9 000000 724050 13743 19870903 72.3 24 54.2 24 1020.9 24 1018.5 24 12.1 24 7.6 24 9.9 999.9 84.9 57.0 0.00G 999.9 000000 724050 13743 19870904 70.2 24 54.6 24 1026.4 24 1024.0 24 12.0 24 7.1 24 11.1 999.9 82.0 62.1 0.00D 999.9 000000 724050 13743 19870905 68.0 23 57.6 23 1026.2 23 1023.8 23 11.3 23 8.3 23 11.1 999.9 79.0 62.1 0.00G 999.9 110000 724050 13743 19870906 69.6 22 67.5 22 1022.0 22 1019.6 22 4.8 22 7.4 22 12.0 999.9 78.1* 62.1 0.77G 999.9 110000 724050 13743 19870907 76.1 24 72.1 24 1018.4 24 1016.0 24 6.4 24 5.0 24 8.0 999.9 82.9 66.0 0.54G 999.9 110000 724050 13743 19870908 74.9 18 72.1 18 1013.3 18 1010.9 18 8.3 18 7.3 18 12.0 999.9 82.9 70.0 0.11G 999.9 110000 724050 13743 19870909 77.3 16 68.3 16 1011.7 16 1009.3 16 7.1 16 7.1 16 13.0 999.9 84.9 69.1 0.04G 999.9 000000 724050 13743 19870910 76.6 22 67.5 22 1016.5 22 1014.1 22 4.3 22 4.2 22 7.0 999.9 86.0 69.1 0.00G 999.9 100000 724050 13743 19870911 76.2 21 67.9 21 1018.6 21 1016.2 21 4.5 21 4.8 21 8.0 999.9 84.9 69.1 0.00C 999.9 100000 724050 13743 19870912 75.2 23 70.9 23 1017.8 23 1015.4 23 5.1 23 5.6 23 15.0 21.0 84.9 69.1 0.77G 999.9 110010 724050 13743 19870913 74.4 24 71.9 24 1014.1 24 1011.7 24 6.9 24 7.5 24 15.9 999.9 82.9 71.1 1.88G 999.9 110010 724050 13743 19870914 76.0 23 66.6 23 1015.7 23 1013.3 23 7.4 23 5.4 23 9.9 999.9 84.9* 69.1 0.01G 999.9 100000 724050 13743 19870915 75.3 23 65.2 23 1018.1 23 1015.7 23 6.6 23 5.6 23 11.1 999.9 87.1 66.9 0.00G 999.9 100000 724050 13743 19870916 74.9 23 67.2 23 1016.5 23 1014.1 23 5.6 23 4.5 23 12.0 999.9 86.0 66.9 0.00G 999.9 100000 724050 13743 19870917 76.3 23 70.8 23 1011.9 23 1009.5 23 5.1 23 6.1 23 13.0 999.9 86.0 66.9 0.00G 999.9 110010 724050 13743 19870918 74.9 21 65.6 21 1006.5 21 1004.1 21 8.8 20 6.5 21 13.0 999.9 86.0 69.1 0.17G 999.9 110010 724050 13743 19870919 67.3 24 62.5 24 1011.9 24 1009.5 24 5.6 24 7.9 24 11.1 999.9 86.0 63.0 0.00G 999.9 110000 724050 13743 19870920 63.8 23 61.2 23 1014.2 23 1011.8 23 5.4 23 7.5 23 9.9 999.9 73.9 62.1 0.25G 999.9 110000 724050 13743 19870921 67.9 24 61.1 24 1014.7 24 1012.3 24 8.1 24 4.9 24 8.0 999.9 75.0 62.1 0.19G 999.9 110000 724050 13743 19870922 68.1 24 60.2 24 1014.6 24 1012.3 24 8.7 24 5.1 24 13.0 999.9 75.9 63.0 0.00G 999.9 110000 724050 13743 19870923 65.0 24 52.1 24 1013.9 24 1011.5 24 13.5 24 9.3 24 15.0 20.0 77.0 57.0 0.02G 999.9 000000 724050 13743 19870924 67.9 24 51.3 24 1012.6 24 1010.2 24 13.8 23 8.5 24 11.1 999.9 77.0* 57.0 0.00G 999.9 000000 724050 13743 19870925 65.9 24 49.6 24 1014.2 24 1011.8 24 15.3 24 9.0 24 14.0 999.9 78.1 61.0 0.00D 999.9 000000 724050 13743 19870926 62.5 24 48.0 24 1020.1 24 1017.7 24 17.0 24 6.1 24 11.1 15.0 75.0* 51.1 0.00G 999.9 000000 724050 13743 19870927 68.2 24 56.5 24 1023.3 24 1020.9 24 12.9 24 4.3 24 7.0 999.9 80.1* 51.1 0.00G 999.9 000000 724050 13743 19870928 69.8 24 60.2 24 1025.5 24 1023.1 24 7.8 24 5.8 24 11.1 999.9 82.0* 60.1 0.00G 999.9 100000 724050 13743 19870929 70.1 24 62.3 24 1020.6 24 1018.2 24 8.1 24 7.9 24 12.0 999.9 82.0 60.1 0.00G 999.9 100000 724050 13743 19870930 68.2 24 59.5 24 1007.3 24 1004.9 24 8.6 24 8.6 24 12.0 999.9 80.1 61.0 0.37G 999.9 110000 724050 13743 19871001 60.7 24 44.1 24 1007.8 24 1005.5 24 16.4 24 12.0 24 19.0 25.1 75.0 53.1 0.17G 999.9 000000 724050 13743 19871002 59.4 23 44.9 23 1014.4 23 1012.1 23 15.8 23 11.3 23 20.0 28.9 73.0* 46.9 0.00G 999.9 000000 724050 13743 19871003 57.3 21 49.0 21 1014.2 21 1012.0 21 10.9 20 10.8 21 15.9 20.0 73.0 46.9 0.05G 999.9 110010 724050 13743 19871004 49.7 24 31.1 24 1018.2 24 1015.9 24 15.7 24 12.4 24 19.0 28.0 64.9 43.0 0.42G 999.9 000000 724050 13743 19871005 54.5 24 41.0 24 1017.7 24 1015.4 24 18.3 24 6.1 24 9.9 999.9 68.0 42.1 0.00G 999.9 000000 724050 13743 19871006 58.7 23 49.9 23 1011.5 23 1009.2 23 12.5 23 8.0 23 9.9 999.9 68.0 42.1 0.00G 999.9 000000 724050 13743 19871007 58.8 23 48.9 23 1007.8 23 1005.5 23 10.6 23 8.8 23 18.1 999.9 70.0 50.0 0.39G 999.9 110010 724050 13743 19871008 52.4 23 38.1 23 1016.3 23 1014.0 23 16.0 23 9.1 23 15.9 22.9 66.0 43.0 0.00D 999.9 000000 724050 13743 19871009 50.9 23 36.6 23 1029.2 23 1026.8 23 13.8 23 6.0 23 12.0 999.9 61.0* 39.9 0.00G 999.9 000000 724050 13743 19871010 57.9 21 49.0 21 1028.2 21 1025.9 21 11.2 21 5.4 21 9.9 999.9 71.1* 39.9 0.00G 999.9 000000 724050 13743 19871011 59.1 23 53.0 23 1022.5 23 1020.2 23 8.8 23 6.4 23 15.0 999.9 71.1 48.9 0.00G 999.9 000000 724050 13743 19871012 49.7 24 36.9 24 1020.9 24 1018.5 24 13.2 24 11.8 24 15.0 999.9 66.9 44.1 0.02G 999.9 010000 724050 13743 19871013 49.9 23 32.8 23 1021.0 23 1018.7 23 16.7 23 10.5 23 15.0 21.0 59.0* 41.0 0.00D 999.9 000000 724050 13743 19871014 50.2 24 34.2 24 1027.2 24 1024.8 24 16.8 24 7.0 24 11.1 999.9 60.1* 39.0 0.00G 999.9 000000 724050 13743 19871015 51.5 24 37.6 24 1025.7 24 1023.3 24 11.8 24 4.2 24 6.0 999.9 68.0* 37.0 0.00D 999.9 000000 724050 13743 19871016 57.4 23 43.7 23 1024.2 23 1021.9 23 8.7 23 2.9 23 8.0 999.9 73.0 37.0 0.00D 999.9 100000 724050 13743 19871017 56.5 24 49.7 24 1022.0 24 1019.7 24 6.4 24 4.5 24 11.1 999.9 73.9 44.1 0.00G 999.9 100000 724050 13743 19871018 59.8 24 49.8 24 1019.1 24 1016.8 24 8.0 24 5.4 24 9.9 999.9 70.0* 46.9 0.00G 999.9 100000 724050 13743 19871019 58.7 23 49.2 23 1019.8 23 1017.5 23 7.7 23 4.2 23 9.9 999.9 72.0 46.9 0.00G 999.9 100000 724050 13743 19871020 59.9 24 52.3 24 1018.0 24 1015.6 24 6.0 24 7.1 24 9.9 999.9 72.0* 46.9 0.00G 999.9 100000 724050 13743 19871021 57.8 24 45.2 24 1015.7 24 1013.4 24 9.9 24 9.5 24 18.1 28.0 73.0 50.0 0.01G 999.9 110000 724050 13743 19871022 47.1 23 27.6 23 1025.6 23 1023.2 23 16.5 23 7.4 23 15.9 999.9 61.0 39.0 0.00C 999.9 000000 724050 13743 19871023 51.3 24 34.5 24 1027.5 24 1025.2 24 13.4 23 10.8 24 15.0 999.9 64.9* 39.0 0.00G 999.9 000000 724050 13743 19871024 55.2 23 38.0 23 1028.6 23 1026.3 23 10.4 23 5.9 23 9.9 999.9 70.0* 41.0 0.00G 999.9 000000 724050 13743 19871025 56.2 24 39.5 24 1025.1 24 1022.8 24 14.8 24 11.9 24 20.0 26.0 72.0 43.0 0.00G 999.9 000000 724050 13743 19871026 47.4 24 31.4 24 1025.1 24 1022.8 24 15.4 24 6.4 24 11.1 999.9 59.0 37.0 0.00G 999.9 000000 724050 13743 19871027 45.4 24 39.4 24 1017.3 24 1015.0 24 8.0 24 4.7 24 17.1 26.0 59.0 37.0 0.08G 999.9 110000 724050 13743 19871028 52.4 24 39.2 24 1012.8 24 1010.5 24 13.6 24 12.1 24 15.0 20.0 59.0* 37.9 1.56G 999.9 110000 724050 13743 19871029 47.5 24 31.7 24 1019.6 24 1017.3 24 15.8 24 7.6 24 14.0 999.9 59.0 36.0 0.00G 999.9 000000 724050 13743 19871030 50.8 23 38.6 23 1023.6 23 1021.3 23 12.9 23 6.1 23 13.0 999.9 64.9* 36.0 0.00G 999.9 000000 724050 13743 19871031 57.6 23 46.5 23 1026.3 23 1024.0 23 12.4 23 5.6 23 8.9 999.9 71.1* 39.0 0.00G 999.9 000000 724050 13743 19871101 54.9 24 45.7 24 1032.7 24 1030.2 24 7.8 24 4.0 24 6.0 999.9 71.1 45.0 0.00G 999.9 100000 724050 13743 19871102 55.9 24 47.7 24 1029.7 24 1027.3 24 6.4 24 3.5 24 8.0 999.9 68.0* 45.0 0.00G 999.9 100000 724050 13743 19871103 59.2 23 50.9 23 1024.6 23 1022.2 23 6.5 23 6.6 23 9.9 999.9 72.0* 46.9 0.00G 999.9 100000 724050 13743 19871104 61.3 22 53.1 22 1014.8 21 1012.4 21 6.9 22 7.0 22 12.0 999.9 73.9* 50.0 0.00G 999.9 100000 724050 13743 19871105 60.6 24 45.0 24 1007.6 24 1005.2 24 11.5 24 9.9 24 22.0 31.1 77.0 51.1 0.00G 999.9 100000 724050 13743 19871106 46.3 23 20.9 23 1019.8 23 1017.4 23 17.5 23 13.8 23 21.0 28.0 54.0* 35.1 0.00C 999.9 000000 724050 13743 19871107 44.5 23 26.2 23 1023.8 23 1021.4 23 12.1 23 7.3 23 11.1 999.9 62.1* 35.1 0.00D 999.9 000000 724050 13743 19871108 55.5 24 40.9 24 1022.7 24 1020.2 24 5.0 24 5.9 24 9.9 999.9 71.1* 36.0 0.00G 999.9 000000 724050 13743 19871109 63.6 23 47.8 23 1020.2 23 1017.8 23 10.7 23 10.5 23 15.0 999.9 73.0 48.0 0.00G 999.9 010000 724050 13743 19871110 49.6 23 45.2 23 1019.5 23 1017.1 23 4.0 23 12.7 23 19.0 25.1 72.0 37.0* 0.49G 999.9 111000 724050 13743 19871111 31.6 23 30.5 23 1015.7 23 1013.3 23 2.8 23 16.5 23 22.0 28.0 36.0* 28.9 1.21G 10.6 111010 724050 13743 19871112 37.8 23 25.4 23 1014.8 23 1012.4 23 16.3 22 11.8 23 19.0 24.1 48.9* 28.9 0.56G 6.7 101000 724050 13743 19871113 41.3 22 31.1 22 1016.0 22 1013.6 22 10.2 22 7.2 22 11.1 999.9 54.0* 30.0 0.00G 3.5 100000 724050 13743 19871114 46.1 24 37.4 24 1018.1 24 1015.7 24 8.3 24 4.5 24 8.9 999.9 64.0* 30.0 0.00G 1.6 000000 724050 13743 19871115 48.6 23 41.4 23 1029.7 23 1027.3 23 7.5 23 4.6 23 8.0 999.9 68.0 35.1 0.00G 999.9 100000 724050 13743 19871116 47.5 21 43.0 21 1034.6 21 1032.2 21 7.6 21 4.1 21 8.0 999.9 64.0 37.9 0.00G 999.9 100000 724050 13743 19871117 58.5 24 53.0 24 1026.2 24 1023.8 24 12.1 24 7.6 24 14.0 26.0 68.0* 37.9 0.00G 999.9 110000 724050 13743 19871118 62.5 23 53.7 23 1017.5 23 1015.1 23 11.2 23 10.1 23 20.0 999.9 69.1 51.1 0.23G 999.9 110000 724050 13743 19871119 49.3 22 32.4 22 1025.1 22 1022.7 21 13.8 22 8.5 22 14.0 20.0 68.0 43.0 0.00G 999.9 000000 724050 13743 19871120 46.5 21 33.2 21 1011.1 21 1008.7 21 14.1 21 10.5 21 18.1 28.0 54.0 39.9* 0.00G 999.9 010000 724050 13743 19871121 30.5 22 14.1 22 1014.8 22 1012.4 22 15.1 22 16.2 22 22.9 34.0 50.0 27.1* 0.00G 999.9 000000 724050 13743 19871122 30.4 23 15.2 23 1025.6 23 1023.1 23 16.5 23 9.3 23 15.0 26.0 39.0* 24.1 0.00G 999.9 000000 724050 13743 19871123 38.2 23 22.1 23 1026.4 23 1024.0 23 14.7 23 6.1 23 8.9 999.9 55.0* 24.1 0.00G 999.9 000000 724050 13743 19871124 52.2 23 41.4 23 1027.4 23 1025.0 23 12.1 23 7.3 23 12.0 999.9 59.0* 46.9* 0.00D 999.9 010000 724050 13743 19871125 53.0 23 46.8 23 1027.4 23 1025.0 23 9.3 23 5.1 23 12.0 999.9 64.9 44.1 0.00G 999.9 100000 724050 13743 19871126 56.6 22 51.2 22 1023.4 22 1021.0 22 9.3 22 5.8 22 9.9 999.9 68.0* 44.1 0.00C 999.9 000000 724050 13743 19871127 44.9 23 40.0 23 1029.2 23 1026.8 23 8.9 23 12.3 23 15.0 999.9 71.1 39.9 0.08G 999.9 110000 724050 13743 19871128 42.0 22 41.0 22 1027.3 22 1024.9 22 4.1 22 11.3 22 13.0 999.9 48.0 38.1 0.49G 999.9 110000 724050 13743 19871129 51.8 20 51.3 20 1013.3 20 1010.9 20 4.0 20 8.6 20 14.0 999.9 61.0* 39.0 1.18G 999.9 110000 724050 13743 19871130 48.3 23 41.8 23 1003.2 23 1000.8 23 11.6 23 9.5 23 15.9 22.0 62.1 45.0 0.25G 999.9 110000 724050 13743 19871201 42.5 24 33.2 24 1002.2 24 999.8 24 12.9 24 6.8 24 8.9 999.9 50.0 36.0 0.00G 999.9 010000 724050 13743 19871202 42.3 24 28.9 24 1008.4 24 1006.0 24 17.0 23 9.4 24 14.0 24.1 48.9 36.0 0.00G 999.9 010000 724050 13743 19871203 36.4 24 25.7 24 1015.7 24 1013.3 24 11.8 24 6.3 24 13.0 999.9 45.0 28.9 0.00G 999.9 010000 724050 13743 19871204 40.2 24 36.7 24 1002.7 24 1000.3 24 7.5 24 8.3 24 19.0 22.9 45.0 28.9 0.28G 999.9 111000 724050 13743 19871205 37.3 23 24.2 23 1011.9 23 1009.5 23 16.2 23 14.6 23 21.0 28.9 43.0 32.0 0.04G 999.9 000000 724050 13743 19871206 39.3 23 25.8 23 1020.7 23 1018.3 23 14.8 23 11.5 23 17.1 25.1 44.1 32.0 0.00G 999.9 000000 724050 13743 19871207 37.4 23 23.7 23 1029.7 23 1027.3 23 14.1 23 7.3 23 12.0 999.9 48.0* 28.9 0.00G 999.9 000000 724050 13743 19871208 39.8 22 31.0 22 1029.4 22 1026.9 22 10.9 22 5.3 22 8.9 999.9 50.0* 28.9 0.00G 999.9 000000 724050 13743 19871209 48.1 24 38.3 24 1019.8 24 1017.4 24 11.3 24 9.4 24 17.1 999.9 64.0* 34.0 0.00G 999.9 010000 724050 13743 19871210 51.4 24 47.2 24 1012.1 24 1009.7 24 8.2 24 6.0 24 11.1 999.9 64.0 39.0 0.00G 999.9 110000 724050 13743 19871211 46.8 23 38.4 23 1006.4 23 1003.9 23 10.2 23 9.2 23 14.0 999.9 57.9 42.1 0.52G 999.9 110000 724050 13743 19871212 47.4 23 35.9 23 1001.1 23 998.7 23 13.1 23 8.3 23 14.0 999.9 59.0* 37.0 0.05G 999.9 010000 724050 13743 19871213 46.0 23 25.2 23 1013.2 23 1010.8 23 14.5 23 8.8 23 14.0 20.0 60.1 37.0 0.00G 999.9 000000 724050 13743 19871214 39.9 22 26.9 22 1024.7 22 1022.3 22 12.6 22 6.4 22 14.0 999.9 50.0 37.0 0.00G 999.9 000000 724050 13743 19871215 41.2 23 39.6 23 1014.8 23 1012.4 23 5.1 23 6.4 23 12.0 999.9 45.0* 37.0 0.60G 999.9 111000 724050 13743 19871216 40.3 23 27.0 23 1003.5 23 1001.1 23 13.7 23 12.6 23 20.0 32.1 45.0 37.0 0.05G 999.9 100000 724050 13743 19871217 38.1 23 22.4 23 1014.6 23 1012.2 23 17.2 23 16.4 23 22.9 34.0 43.0 36.0 0.00G 999.9 000000 724050 13743 19871218 35.2 22 18.7 22 1026.3 21 1023.9 21 15.2 22 11.6 22 15.9 24.1 42.1 30.0 0.00C 999.9 000000 724050 13743 19871219 37.1 23 24.7 23 1024.4 23 1022.0 23 11.6 23 6.2 23 12.0 999.9 45.0* 30.0 0.00G 999.9 000000 724050 13743 19871220 45.2 21 39.0 21 1018.7 21 1016.3 21 8.3 21 6.3 21 15.0 999.9 60.1* 32.0 0.27G 999.9 110000 724050 13743 19871221 47.7 23 35.5 23 1017.2 23 1014.8 23 12.7 23 9.8 23 15.9 24.1 60.1 39.0 0.09G 999.9 000000 724050 13743 19871222 39.4 23 28.2 23 1019.4 23 1017.0 23 11.4 23 5.0 23 8.9 999.9 55.0 30.9 0.00G 999.9 100000 724050 13743 19871223 41.9 23 33.6 23 1020.1 23 1017.7 23 10.4 23 6.9 23 13.0 999.9 52.0* 30.9 0.03G 999.9 010000 724050 13743 19871224 43.6 24 35.6 24 1027.3 24 1024.9 24 10.7 24 6.3 24 14.0 999.9 53.1 34.0 0.00G 999.9 100000 724050 13743 19871225 52.5 24 49.8 24 1018.4 24 1016.0 24 7.4 24 8.6 24 15.0 999.9 57.9* 35.1 0.04G 999.9 110000 724050 13743 19871226 50.3 24 48.6 24 1017.6 24 1015.1 24 5.0 24 8.5 24 15.0 999.9 59.0 44.1 0.31G 999.9 110000 724050 13743 19871227 39.3 24 33.2 24 1026.7 24 1024.3 24 8.8 24 5.0 24 9.9 999.9 57.0 35.1 0.01G 999.9 000000 724050 13743 19871228 38.1 24 34.1 24 1022.6 24 1020.2 24 6.1 24 6.3 24 11.1 999.9 42.1 34.0 0.10G 999.9 111000 724050 13743 19871229 34.4 23 30.9 23 1011.3 23 1008.9 23 6.3 23 12.5 23 26.0 32.1 41.0 30.2* 0.47G 999.9 111000 724050 13743 19871230 26.6 23 9.4 23 1029.6 23 1027.1 23 16.8 23 13.9 23 24.1 31.1 36.0 21.0 0.01G 999.9 000000 724050 13743 19871231 34.8 23 19.8 23 1028.8 23 1026.4 23 13.4 23 8.5 23 19.0 999.9 46.9* 21.0 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/1941/0000755000175000017500000000000014302004506015076 5ustar nileshnileshfluids-1.0.22/tests/gsod/1941/724050-13743.op0000644000175000017500000014327214302004506016667 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19410101 42.0 24 33.8 24 1028.8 24 9999.9 0 3.8 24 1.9 24 8.9 999.9 49.3* 37.4* 99.99 999.9 010000 724050 13743 19410102 40.5 24 34.4 24 1024.6 24 9999.9 0 2.8 24 3.2 24 5.1 999.9 44.4* 38.3* 99.99 999.9 110000 724050 13743 19410103 43.3 24 40.0 24 1015.9 24 9999.9 0 2.6 24 5.1 24 9.9 999.9 45.3* 40.3* 99.99 999.9 110000 724050 13743 19410104 39.1 24 27.7 24 1009.2 24 9999.9 0 40.1 24 11.8 24 29.9 999.9 45.3* 32.4* 99.99 999.9 110000 724050 13743 19410105 25.5 24 5.5 24 1018.5 24 9999.9 0 99.4 24 19.5 24 34.0 999.9 30.4* 21.4* 0.00I 999.9 000000 724050 13743 19410106 28.9 24 12.7 24 1029.0 24 9999.9 0 53.5 24 12.4 24 21.0 999.9 39.4* 23.4* 0.00I 999.9 000000 724050 13743 19410107 32.1 24 17.5 24 1034.7 24 9999.9 0 37.6 24 4.9 24 8.9 999.9 39.4* 25.3* 0.00I 999.9 000000 724050 13743 19410108 27.5 24 19.4 24 1034.3 24 9999.9 0 4.8 24 0.9 24 5.1 999.9 40.3* 20.3* 0.00I 999.9 000000 724050 13743 19410109 31.1 24 22.6 24 1027.2 24 9999.9 0 3.1 24 2.5 24 8.0 999.9 40.3* 22.5* 0.00I 999.9 000000 724050 13743 19410110 37.2 24 23.8 24 1023.2 24 9999.9 0 26.1 24 11.0 24 21.0 999.9 40.3* 32.4* 99.99 999.9 010000 724050 13743 19410111 32.2 24 21.5 24 1016.8 24 9999.9 0 6.8 24 7.0 24 19.0 999.9 39.4* 26.4* 0.00I 999.9 000000 724050 13743 19410112 36.4 24 24.0 24 1015.8 24 9999.9 0 5.9 24 7.8 24 14.0 999.9 45.3* 27.3* 0.00I 999.9 000000 724050 13743 19410113 38.0 24 26.9 24 1016.0 24 9999.9 0 5.9 24 11.1 24 21.0 999.9 44.4* 29.3* 0.00I 999.9 000000 724050 13743 19410114 30.2 24 15.8 24 1026.1 24 9999.9 0 45.9 24 8.2 24 15.0 999.9 36.3* 22.5* 0.00I 999.9 000000 724050 13743 19410115 30.2 24 19.5 24 1025.6 24 9999.9 0 18.7 24 5.4 24 8.9 999.9 31.3* 27.3* 99.99 999.9 010000 724050 13743 19410116 31.2 24 28.8 24 1020.0 24 9999.9 0 1.9 24 8.3 24 13.0 999.9 36.3* 27.3* 99.99 999.9 110000 724050 13743 19410117 37.6 24 36.4 24 1009.2 24 9999.9 0 2.2 24 5.7 24 9.9 999.9 45.3* 35.4* 99.99 999.9 110000 724050 13743 19410118 42.9 24 41.1 24 1011.0 24 9999.9 0 2.7 24 2.0 24 8.9 999.9 46.4* 40.3* 0.00I 999.9 100000 724050 13743 19410119 36.4 24 23.4 24 1017.7 24 9999.9 0 53.2 24 15.6 24 26.0 999.9 44.4* 28.4* 0.00I 999.9 100000 724050 13743 19410120 28.0 24 8.8 24 1026.6 24 9999.9 0 45.9 24 15.0 24 23.9 999.9 34.3* 24.4* 0.00I 999.9 000000 724050 13743 19410121 28.5 24 16.2 24 1032.0 24 9999.9 0 4.3 24 6.2 24 14.0 999.9 38.3* 21.4* 0.00I 999.9 000000 724050 13743 19410122 36.5 24 25.6 24 1025.0 24 9999.9 0 4.6 24 6.4 24 13.0 999.9 52.3* 26.4* 0.00I 999.9 000000 724050 13743 19410123 48.9 24 42.1 23 1018.1 24 9999.9 0 5.9 24 7.7 24 13.0 999.9 53.4* 43.3* 99.99 999.9 110000 724050 13743 19410124 37.5 24 30.7 24 1023.2 24 9999.9 0 4.7 24 6.7 24 13.0 999.9 45.3* 34.3* 99.99 999.9 110000 724050 13743 19410125 35.3 24 28.9 24 1021.1 24 9999.9 0 5.8 24 11.5 24 21.0 999.9 36.3* 34.3* 99.99 999.9 110000 724050 13743 19410126 31.7 24 24.0 24 1028.6 24 9999.9 0 5.0 24 3.3 24 7.0 999.9 33.4* 30.4* 99.99 999.9 101000 724050 13743 19410127 33.8 24 32.7 24 1024.6 24 9999.9 0 1.9 24 5.4 24 9.9 999.9 35.4* 31.3* 99.99 999.9 111000 724050 13743 19410128 31.2 24 25.9 24 1023.4 24 9999.9 0 3.9 24 11.5 24 18.1 999.9 36.3* 27.3* 99.99 999.9 101000 724050 13743 19410129 30.7 24 22.2 24 1022.0 24 9999.9 0 6.3 24 8.1 24 22.9 999.9 37.4* 24.4* 0.00I 999.9 000000 724050 13743 19410130 32.8 24 21.8 24 1016.3 24 9999.9 0 29.0 24 6.4 24 12.0 999.9 40.3* 24.4* 0.00I 999.9 000000 724050 13743 19410131 37.2 24 25.6 24 1015.2 24 9999.9 0 48.8 24 9.1 24 18.1 999.9 41.4* 34.3* 99.99 999.9 001000 724050 13743 19410201 34.9 24 20.8 24 1020.7 24 9999.9 0 52.8 24 7.9 24 16.9 999.9 44.4* 26.4* 0.00I 999.9 000000 724050 13743 19410202 37.8 24 27.9 24 1011.5 24 9999.9 0 8.9 24 7.2 24 22.9 999.9 47.3* 32.4* 0.00I 999.9 000000 724050 13743 19410203 35.3 24 25.4 24 1014.1 24 9999.9 0 48.3 24 13.0 24 21.0 999.9 40.3* 31.3* 99.99 999.9 001000 724050 13743 19410204 30.2 24 16.1 24 1020.7 24 9999.9 0 61.3 24 15.4 24 20.0 999.9 36.3* 24.4* 0.00I 999.9 000000 724050 13743 19410205 31.4 24 16.7 24 1018.6 24 9999.9 0 5.9 24 3.9 24 8.0 999.9 41.4* 22.5* 0.00I 999.9 100000 724050 13743 19410206 34.1 24 21.8 24 1015.6 24 9999.9 0 4.3 24 4.1 24 14.0 999.9 53.4* 21.4* 0.00I 999.9 100000 724050 13743 19410207 44.4 24 34.9 24 1004.4 23 9999.9 0 4.5 24 7.9 24 14.0 999.9 47.3* 41.4* 99.99 999.9 110000 724050 13743 19410208 32.0 24 16.0 24 999.0 24 9999.9 0 52.7 24 13.6 23 26.0 999.9 41.4* 25.3* 0.00I 999.9 000000 724050 13743 19410209 30.4 24 15.1 24 1008.6 24 9999.9 0 64.7 24 10.6 24 19.0 999.9 38.3* 22.5* 0.00I 999.9 000000 724050 13743 19410210 29.7 24 14.1 24 1022.8 24 9999.9 0 18.6 24 7.3 24 13.0 999.9 38.3* 21.4* 0.00I 999.9 000000 724050 13743 19410211 31.8 24 20.8 24 1025.8 24 9999.9 0 4.7 24 3.1 24 8.9 999.9 49.3* 21.4* 0.00I 999.9 100000 724050 13743 19410212 35.5 24 22.0 24 1021.8 24 9999.9 0 4.5 24 1.8 24 9.9 999.9 54.3* 23.4* 0.00I 999.9 000000 724050 13743 19410213 34.2 24 29.1 24 1021.8 24 9999.9 0 2.4 24 2.7 24 7.0 999.9 43.3* 28.4* 0.00I 999.9 100000 724050 13743 19410214 43.4 24 42.6 24 1009.8 24 9999.9 0 1.4 24 4.9 24 9.9 999.9 46.4* 40.3* 99.99 999.9 110000 724050 13743 19410215 41.6 24 30.6 24 1010.0 24 9999.9 0 18.3 24 17.3 24 27.0 999.9 44.4* 37.4* 99.99 999.9 110000 724050 13743 19410216 35.3 24 20.3 24 1016.0 24 9999.9 0 72.5 24 13.5 24 22.9 999.9 38.3* 32.4* 99.99 999.9 001000 724050 13743 19410217 36.3 24 24.3 24 1004.1 24 9999.9 0 36.7 24 9.5 24 30.9 999.9 47.3* 31.3* 99.99 999.9 001000 724050 13743 19410218 29.5 24 7.4 24 1006.5 24 9999.9 0 95.6 24 22.6 24 34.0 999.9 39.4* 22.5* 99.99 999.9 001000 724050 13743 19410219 25.5 24 3.5 24 1018.1 24 9999.9 0 99.4 24 15.8 24 22.0 999.9 34.3* 19.4* 0.00I 999.9 000000 724050 13743 19410220 26.8 24 6.8 24 1019.7 24 9999.9 0 99.4 24 14.0 24 23.9 999.9 35.4* 22.5* 0.00I 999.9 000000 724050 13743 19410221 30.4 24 15.3 24 1016.4 24 9999.9 0 76.5 24 16.6 24 23.9 999.9 39.4* 25.3* 0.00I 999.9 000000 724050 13743 19410222 31.7 24 18.3 24 1014.6 24 9999.9 0 37.4 24 11.1 24 19.0 999.9 39.4* 27.3* 99.99 999.9 001000 724050 13743 19410223 32.3 24 14.2 24 1015.1 24 9999.9 0 49.5 24 19.2 24 28.0 999.9 41.4* 25.3* 0.00I 999.9 000000 724050 13743 19410224 33.2 24 13.8 24 1022.8 24 9999.9 0 65.1 24 12.7 24 21.0 999.9 42.4* 25.3* 0.00I 999.9 000000 724050 13743 19410225 37.4 24 19.5 24 1019.0 24 9999.9 0 24.7 24 3.8 24 14.0 999.9 52.3* 27.3* 0.00I 999.9 000000 724050 13743 19410226 35.6 24 19.4 24 1022.4 24 9999.9 0 80.3 24 8.5 24 15.9 999.9 40.3* 27.3* 0.00I 999.9 000000 724050 13743 19410227 33.8 24 17.3 24 1021.1 24 9999.9 0 6.8 24 3.8 24 9.9 999.9 39.4* 30.4* 0.00I 999.9 000000 724050 13743 19410228 28.4 24 20.5 24 1012.5 24 9999.9 0 11.0 24 11.0 24 19.0 999.9 35.4* 24.4* 99.99 999.9 001000 724050 13743 19410301 27.9 24 17.5 24 1011.6 24 9999.9 0 51.5 24 19.6 24 26.0 999.9 38.3* 21.4* 99.99 999.9 001000 724050 13743 19410302 35.2 24 14.9 24 1019.0 24 9999.9 0 72.7 24 12.9 24 22.0 999.9 48.4* 27.3* 0.00I 999.9 000000 724050 13743 19410303 50.4 24 25.7 24 1011.4 24 9999.9 0 61.1 24 9.6 24 15.9 999.9 66.4* 38.3* 0.00I 999.9 000000 724050 13743 19410304 50.2 24 35.9 23 1004.7 24 9999.9 0 26.5 24 17.6 24 30.9 999.9 59.4* 34.3* 99.99 999.9 010000 724050 13743 19410305 30.6 24 9.6 24 1023.1 24 9999.9 0 84.0 24 15.3 24 23.9 999.9 42.4* 22.5* 0.00I 999.9 000000 724050 13743 19410306 33.0 24 18.3 24 1025.7 24 9999.9 0 4.3 24 4.8 24 13.0 999.9 46.4* 21.4* 0.00I 999.9 000000 724050 13743 19410307 32.8 24 21.3 24 1027.9 24 9999.9 0 4.6 24 6.9 24 9.9 999.9 41.4* 28.4* 99.99 999.9 101000 724050 13743 19410308 32.6 24 30.1 24 1008.0 24 9999.9 0 1.5 24 9.3 24 14.0 999.9 35.4* 29.3* 99.99 999.9 111010 724050 13743 19410309 34.7 24 29.7 24 999.1 24 9999.9 0 48.3 24 9.4 24 22.9 999.9 39.4* 32.4* 99.99 999.9 111000 724050 13743 19410310 39.6 24 23.9 24 1013.9 24 9999.9 0 44.9 24 4.6 24 9.9 999.9 53.4* 27.3* 0.00I 999.9 000000 724050 13743 19410311 42.8 24 35.0 24 1013.1 24 9999.9 0 44.3 24 5.5 24 12.0 999.9 47.3* 40.3* 99.99 999.9 110000 724050 13743 19410312 41.5 24 26.1 24 1015.4 24 9999.9 0 68.5 24 10.0 24 22.0 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19410313 36.1 24 27.6 24 1021.6 24 9999.9 0 47.9 24 7.5 24 19.0 999.9 42.4* 32.4* 99.99 999.9 101000 724050 13743 19410314 35.4 24 22.0 24 1023.3 24 9999.9 0 37.9 24 8.6 24 16.9 999.9 46.4* 26.4* 0.00I 999.9 100000 724050 13743 19410315 39.4 24 22.9 24 1020.5 24 9999.9 0 5.5 24 3.7 24 9.9 999.9 55.4* 28.4* 0.00I 999.9 000000 724050 13743 19410316 48.9 24 33.6 24 1011.4 24 9999.9 0 29.3 24 5.6 24 13.0 999.9 60.3* 40.3* 99.99 999.9 010000 724050 13743 19410317 37.6 24 18.1 24 1010.0 24 9999.9 0 57.3 24 19.2 24 35.0 999.9 54.3* 26.4* 0.00I 999.9 000000 724050 13743 19410318 24.0 23 -4.1 23 1020.4 23 9999.9 0 91.5 23 20.4 23 999.9 999.9 31.3* 17.4* 0.00I 999.9 000000 724050 13743 19410319 31.3 24 7.8 24 1023.3 24 9999.9 0 99.4 24 17.4 24 29.9 999.9 45.3* 23.4* 0.00I 999.9 000000 724050 13743 19410320 42.9 24 20.0 24 1018.9 24 9999.9 0 40.3 24 5.4 24 13.0 999.9 57.4* 35.4* 0.00I 999.9 000000 724050 13743 19410321 44.1 24 23.9 24 1020.3 24 9999.9 0 27.7 24 4.3 24 15.9 999.9 58.3* 33.4* 0.00I 999.9 000000 724050 13743 19410322 42.7 24 21.1 24 1023.8 24 9999.9 0 79.9 24 6.5 24 15.0 999.9 57.4* 26.4* 0.00I 999.9 000000 724050 13743 19410323 43.6 24 26.9 24 1025.4 24 9999.9 0 24.9 24 3.2 24 8.9 999.9 59.4* 29.3* 0.00I 999.9 000000 724050 13743 19410324 46.5 24 38.8 24 1017.9 24 9999.9 0 7.9 24 4.2 24 9.9 999.9 51.3* 43.3* 99.99 999.9 110000 724050 13743 19410325 44.5 24 33.0 24 1013.6 24 9999.9 0 51.4 24 14.7 24 28.0 999.9 47.3* 39.4* 99.99 999.9 110000 724050 13743 19410326 41.8 24 23.1 24 1016.9 24 9999.9 0 68.8 24 10.4 24 22.9 999.9 55.4* 32.4* 0.00I 999.9 000000 724050 13743 19410327 45.2 24 27.7 24 1014.6 24 9999.9 0 52.1 24 4.2 24 8.0 999.9 56.3* 35.4* 0.00I 999.9 000000 724050 13743 19410328 48.8 24 27.7 24 1009.4 24 9999.9 0 4.8 24 6.0 24 11.1 999.9 56.3* 41.4* 99.99 999.9 010000 724050 13743 19410329 42.4 24 25.7 23 1009.6 24 9999.9 0 49.0 24 14.1 24 22.0 999.9 51.3* 32.4* 99.99 999.9 011000 724050 13743 19410330 36.0 24 16.0 24 1015.5 24 9999.9 0 57.5 24 18.2 24 28.0 999.9 48.4* 28.4* 0.00I 999.9 000000 724050 13743 19410331 44.1 24 24.2 24 1016.8 24 9999.9 0 28.7 24 3.7 24 9.9 999.9 62.4* 29.3* 0.00I 999.9 000000 724050 13743 19410401 49.8 24 38.5 24 1009.2 24 9999.9 0 12.1 24 3.3 24 15.0 999.9 57.4* 44.4* 99.99 999.9 110000 724050 13743 19410402 51.1 24 37.8 24 1008.7 24 9999.9 0 40.0 24 12.0 24 16.9 999.9 59.4* 43.3* 99.99 999.9 110000 724050 13743 19410403 49.3 24 29.3 24 1018.0 24 9999.9 0 99.4 24 6.5 24 12.0 999.9 60.3* 39.4* 0.00I 999.9 000000 724050 13743 19410404 48.6 24 34.5 24 1019.8 24 9999.9 0 29.7 24 4.9 24 12.0 999.9 57.4* 38.3* 0.00I 999.9 000000 724050 13743 19410405 51.5 24 47.6 24 1008.0 24 9999.9 0 5.1 24 8.1 24 14.0 999.9 58.3* 46.4* 99.99 999.9 110000 724050 13743 19410406 48.8 24 43.5 24 1007.7 24 9999.9 0 7.2 24 10.2 24 19.0 999.9 51.3* 47.3* 99.99 999.9 010000 724050 13743 19410407 50.7 24 37.8 24 1019.8 23 9999.9 0 27.9 24 3.9 24 8.9 999.9 66.4* 37.4* 99.99 999.9 110000 724050 13743 19410408 52.4 24 27.4 24 1020.5 24 9999.9 0 19.1 24 5.2 24 8.0 999.9 64.4* 41.4* 0.00I 999.9 000000 724050 13743 19410409 51.2 24 30.7 24 1019.2 24 9999.9 0 40.5 24 3.3 24 8.9 999.9 68.4* 36.3* 0.00I 999.9 000000 724050 13743 19410410 55.4 24 40.8 24 1019.0 24 9999.9 0 53.3 24 4.7 24 14.0 999.9 68.4* 45.3* 0.00I 999.9 000000 724050 13743 19410411 58.1 24 41.8 24 1022.2 24 9999.9 0 36.8 24 3.5 24 7.0 999.9 71.2* 46.4* 0.00I 999.9 000000 724050 13743 19410412 59.3 24 43.2 24 1026.8 24 9999.9 0 64.2 24 6.0 24 13.0 999.9 71.2* 48.4* 0.00I 999.9 000000 724050 13743 19410413 58.5 24 44.1 24 1026.5 24 9999.9 0 76.4 24 4.4 24 9.9 999.9 79.3* 43.3* 0.00I 999.9 000000 724050 13743 19410414 71.5 24 49.2 24 1018.3 24 9999.9 0 21.4 24 8.0 24 22.9 999.9 88.3* 59.4* 0.00I 999.9 000000 724050 13743 19410415 73.2 24 48.4 24 1015.6 24 9999.9 0 5.2 24 3.6 24 11.1 999.9 89.2* 55.4* 0.00I 999.9 000000 724050 13743 19410416 71.8 24 52.7 24 1015.5 24 9999.9 0 4.4 24 1.9 24 5.1 999.9 83.3* 60.3* 0.00I 999.9 000000 724050 13743 19410417 71.2 24 50.4 24 1013.7 24 9999.9 0 33.5 24 5.3 24 14.0 999.9 85.3* 55.4* 0.00I 999.9 000000 724050 13743 19410418 71.2 24 53.1 24 1014.3 24 9999.9 0 44.8 24 3.5 24 8.0 999.9 84.4* 61.3* 0.00I 999.9 000000 724050 13743 19410419 71.7 24 55.1 24 1015.6 24 9999.9 0 13.5 24 3.7 24 8.9 999.9 88.3* 58.3* 0.00I 999.9 000000 724050 13743 19410420 78.7 24 56.1 24 1011.4 24 9999.9 0 6.3 24 9.9 24 21.0 999.9 92.3* 69.3* 0.00I 999.9 000000 724050 13743 19410421 71.8 24 40.2 24 1014.6 24 9999.9 0 64.8 24 13.7 24 25.1 999.9 83.3* 61.3* 0.00I 999.9 000000 724050 13743 19410422 57.7 24 31.1 24 1025.9 24 9999.9 0 99.4 24 11.3 24 22.9 999.9 69.3* 48.4* 0.00I 999.9 000000 724050 13743 19410423 56.5 24 35.0 24 1027.3 24 9999.9 0 60.5 24 6.6 24 12.0 999.9 67.3* 50.4* 99.99 999.9 010000 724050 13743 19410424 55.0 24 49.0 24 1021.8 24 9999.9 0 19.4 24 3.2 24 8.9 999.9 62.4* 51.3* 99.99 999.9 110000 724050 13743 19410425 53.2 24 36.5 24 1026.3 24 9999.9 0 41.5 24 6.7 24 12.0 999.9 61.3* 42.4* 0.00I 999.9 100000 724050 13743 19410426 54.4 24 38.1 24 1026.1 24 9999.9 0 37.8 24 6.7 24 11.1 999.9 64.4* 46.4* 0.00I 999.9 000000 724050 13743 19410427 58.0 24 39.5 24 1022.2 24 9999.9 0 48.6 24 8.3 24 19.0 999.9 70.3* 48.4* 99.99 999.9 010000 724050 13743 19410428 62.8 24 36.0 24 1022.6 24 9999.9 0 76.6 24 6.0 24 13.0 999.9 77.4* 48.4* 0.00I 999.9 000000 724050 13743 19410429 64.4 24 42.3 24 1026.6 24 9999.9 0 36.1 24 2.7 24 11.1 999.9 82.4* 48.4* 0.00I 999.9 000000 724050 13743 19410430 67.9 24 43.7 24 1022.0 24 9999.9 0 21.2 24 3.8 24 14.0 999.9 86.4* 50.4* 0.00I 999.9 000000 724050 13743 19410501 70.2 24 46.0 24 1013.9 24 9999.9 0 25.2 24 5.9 24 15.0 999.9 84.4* 55.4* 99.99 999.9 010000 724050 13743 19410502 65.5 24 49.0 24 1010.4 24 9999.9 0 25.2 24 7.4 24 28.0 999.9 75.4* 53.4* 99.99 999.9 010000 724050 13743 19410503 54.2 24 26.4 24 1019.9 24 9999.9 0 99.4 24 8.4 24 19.0 999.9 66.4* 42.4* 0.00I 999.9 000000 724050 13743 19410504 57.7 24 33.7 24 1019.6 24 9999.9 0 60.9 24 3.6 24 8.9 999.9 75.4* 43.3* 0.00I 999.9 000000 724050 13743 19410505 71.9 24 39.8 24 1012.0 24 9999.9 0 56.9 24 8.0 24 22.0 999.9 89.2* 56.3* 0.00I 999.9 000000 724050 13743 19410506 70.7 24 53.8 24 1014.9 24 9999.9 0 10.5 24 5.0 24 12.0 999.9 83.3* 56.3* 0.00I 999.9 000000 724050 13743 19410507 68.5 24 57.3 24 1011.5 24 9999.9 0 33.6 24 7.0 24 14.0 999.9 78.3* 59.4* 0.00I 999.9 000000 724050 13743 19410508 71.9 24 55.8 24 1007.0 24 9999.9 0 52.4 24 8.2 24 15.9 999.9 80.2* 65.3* 99.99 999.9 110000 724050 13743 19410509 58.6 24 52.0 24 1007.5 24 9999.9 0 48.6 24 10.2 24 23.9 999.9 63.3* 52.3* 99.99 999.9 010000 724050 13743 19410510 58.9 24 44.0 24 1012.9 24 9999.9 0 72.7 24 18.1 24 22.9 999.9 66.4* 53.4* 0.00I 999.9 000000 724050 13743 19410511 57.4 24 32.7 24 1013.1 24 9999.9 0 87.9 24 10.0 24 18.1 999.9 67.3* 47.3* 0.00I 999.9 000000 724050 13743 19410512 58.9 24 28.7 24 1010.9 24 9999.9 0 99.4 24 8.7 24 16.9 999.9 67.3* 47.3* 0.00I 999.9 000000 724050 13743 19410513 55.9 24 34.1 24 1014.0 24 9999.9 0 44.0 24 3.1 24 8.9 999.9 70.3* 41.4* 0.00I 999.9 000000 724050 13743 19410514 60.0 24 39.2 24 1017.1 24 9999.9 0 48.1 24 3.6 24 9.9 999.9 76.3* 45.3* 0.00I 999.9 100000 724050 13743 19410515 63.7 24 46.2 24 1017.5 24 9999.9 0 4.9 24 2.7 24 9.9 999.9 74.3* 49.3* 99.99 999.9 010000 724050 13743 19410516 70.1 24 57.0 24 1010.5 24 9999.9 0 24.3 24 7.3 24 26.0 999.9 90.3* 57.4* 99.99 999.9 110010 724050 13743 19410517 73.8 24 59.8 24 1004.8 24 9999.9 0 65.0 24 9.5 24 19.0 999.9 85.3* 67.3* 99.99 999.9 010010 724050 13743 19410518 62.6 24 39.5 24 1013.2 24 9999.9 0 84.1 24 15.9 24 26.0 999.9 73.4* 52.3* 0.00I 999.9 000000 724050 13743 19410519 64.1 24 42.5 24 1018.7 24 9999.9 0 40.9 24 4.9 24 9.9 999.9 80.2* 48.4* 0.00I 999.9 000000 724050 13743 19410520 73.2 24 49.3 24 1018.8 24 9999.9 0 33.0 24 4.3 24 8.9 999.9 90.3* 56.3* 0.00I 999.9 000000 724050 13743 19410521 75.2 24 58.5 24 1020.4 24 9999.9 0 5.7 24 5.1 24 9.9 999.9 91.2* 62.4* 0.00I 999.9 000000 724050 13743 19410522 80.7 24 61.3 24 1018.2 24 9999.9 0 32.6 24 4.9 24 9.9 999.9 96.3* 66.4* 0.00I 999.9 000000 724050 13743 19410523 78.4 24 64.6 24 1015.6 24 9999.9 0 28.6 24 5.0 24 16.9 999.9 93.4* 68.4* 99.99 999.9 010010 724050 13743 19410524 68.2 24 44.3 24 1018.4 24 9999.9 0 91.7 24 16.2 24 27.0 999.9 73.4* 59.4* 99.99 999.9 010000 724050 13743 19410525 62.4 24 37.9 24 1026.4 24 9999.9 0 42.0 24 7.9 24 15.9 999.9 72.3* 49.3* 0.00I 999.9 000000 724050 13743 19410526 67.8 24 48.5 24 1021.0 24 9999.9 0 13.3 24 4.5 24 9.9 999.9 87.3* 52.3* 0.00I 999.9 000000 724050 13743 19410527 83.5 24 62.9 24 1017.9 24 9999.9 0 45.0 24 9.0 24 23.9 999.9 96.3* 73.4* 0.00I 999.9 000000 724050 13743 19410528 83.8 24 60.5 24 1020.6 24 9999.9 0 63.8 24 4.5 24 13.0 999.9 97.3* 69.3* 0.00I 999.9 000000 724050 13743 19410529 82.9 24 63.1 24 1017.7 24 9999.9 0 36.4 24 7.7 24 28.9 999.9 98.2* 71.2* 99.99 999.9 010000 724050 13743 19410530 63.6 24 57.1 23 1020.5 24 9999.9 0 32.8 24 4.3 24 9.9 999.9 74.3* 57.4* 99.99 999.9 110000 724050 13743 19410531 61.0 24 53.8 24 1020.5 24 9999.9 0 56.4 24 3.8 24 8.0 999.9 69.3* 53.4* 99.99 999.9 110000 724050 13743 19410601 67.1 24 60.8 24 1013.6 24 9999.9 0 12.4 24 4.3 24 8.9 999.9 81.3* 58.3* 99.99 999.9 110000 724050 13743 19410602 68.8 24 64.9 24 1013.7 23 9999.9 0 3.1 24 4.6 24 9.9 999.9 76.3* 64.4* 99.99 999.9 110000 724050 13743 19410603 63.6 24 57.6 24 1018.3 24 9999.9 0 26.6 24 3.1 24 6.0 999.9 67.3* 61.3* 99.99 999.9 010000 724050 13743 19410604 63.7 24 61.2 24 1008.2 24 9999.9 0 4.1 24 3.9 24 8.0 999.9 70.3* 59.4* 99.99 999.9 110000 724050 13743 19410605 64.8 24 61.4 24 1002.7 24 9999.9 0 4.8 24 8.9 24 21.0 999.9 69.3* 60.3* 99.99 999.9 110010 724050 13743 19410606 65.8 24 56.0 24 1016.5 24 9999.9 0 4.1 24 3.1 24 9.9 999.9 86.4* 53.4* 0.00I 999.9 100000 724050 13743 19410607 72.6 24 60.5 24 1020.6 24 9999.9 0 9.0 24 5.8 24 11.1 999.9 87.3* 59.4* 0.00I 999.9 000000 724050 13743 19410608 79.2 24 65.9 24 1015.7 24 9999.9 0 10.7 24 8.2 24 13.0 999.9 87.3* 73.4* 0.00I 999.9 000000 724050 13743 19410609 76.2 24 58.0 24 1015.0 24 9999.9 0 72.2 24 7.5 24 15.9 999.9 82.4* 68.4* 0.00I 999.9 000000 724050 13743 19410610 71.2 24 47.5 24 1014.1 24 9999.9 0 64.7 24 5.9 24 15.0 999.9 81.3* 64.4* 0.00I 999.9 000000 724050 13743 19410611 67.9 24 44.5 24 1014.6 24 9999.9 0 68.6 24 4.5 24 9.9 999.9 79.3* 54.3* 0.00I 999.9 000000 724050 13743 19410612 62.4 24 54.3 24 1018.2 24 9999.9 0 41.1 24 6.1 24 9.9 999.9 70.3* 58.3* 99.99 999.9 110000 724050 13743 19410613 65.7 24 62.9 24 1017.5 24 9999.9 0 4.7 24 2.7 24 7.0 999.9 75.4* 59.4* 99.99 999.9 110010 724050 13743 19410614 72.7 24 64.9 24 1012.5 24 9999.9 0 33.0 24 5.4 24 33.0 999.9 84.4* 65.3* 99.99 999.9 010010 724050 13743 19410615 69.1 24 64.2 23 1008.6 24 9999.9 0 28.5 24 2.9 24 12.0 999.9 80.2* 62.4* 99.99 999.9 010010 724050 13743 19410616 69.3 24 58.6 24 1010.0 24 9999.9 0 45.3 24 6.9 24 18.1 999.9 79.3* 60.3* 99.99 999.9 010000 724050 13743 19410617 67.7 24 57.9 24 1015.0 24 9999.9 0 22.0 24 4.9 24 21.0 999.9 78.3* 60.3* 99.99 999.9 010010 724050 13743 19410618 69.4 24 56.7 24 1017.5 24 9999.9 0 64.5 24 5.6 24 13.0 999.9 83.3* 58.3* 0.00I 999.9 000000 724050 13743 19410619 77.0 24 60.2 24 1021.6 24 9999.9 0 26.2 24 4.6 24 11.1 999.9 88.3* 65.3* 0.00I 999.9 000000 724050 13743 19410620 78.6 24 64.9 24 1023.1 24 9999.9 0 24.2 24 2.1 24 7.0 999.9 91.2* 66.4* 0.00I 999.9 000000 724050 13743 19410621 81.1 24 66.8 24 1022.0 24 9999.9 0 5.1 24 3.1 23 8.9 999.9 93.4* 68.4* 0.00I 999.9 000000 724050 13743 19410622 83.2 24 66.9 24 1019.1 24 9999.9 0 6.1 24 4.6 24 9.9 999.9 93.4* 73.4* 0.00I 999.9 000000 724050 13743 19410623 80.7 24 69.5 24 1014.9 24 9999.9 0 4.6 24 3.5 24 9.9 999.9 89.2* 74.3* 99.99 999.9 010000 724050 13743 19410624 70.5 24 64.5 24 1014.5 24 9999.9 0 5.2 24 5.2 24 22.9 999.9 80.2* 64.4* 99.99 999.9 110010 724050 13743 19410625 75.4 24 62.5 24 1017.2 24 9999.9 0 39.9 24 3.9 24 8.9 999.9 84.4* 65.3* 0.00I 999.9 000000 724050 13743 19410626 76.1 24 60.7 24 1022.3 24 9999.9 0 61.0 24 4.6 24 9.9 999.9 89.2* 62.4* 0.00I 999.9 000000 724050 13743 19410627 78.1 24 65.3 24 1019.5 24 9999.9 0 52.6 24 5.6 24 9.9 999.9 91.2* 65.3* 0.00I 999.9 000000 724050 13743 19410628 80.9 24 70.3 24 1016.9 24 9999.9 0 99.4 24 9.1 24 13.0 999.9 89.2* 75.4* 0.00I 999.9 000000 724050 13743 19410629 81.1 24 71.3 24 1013.1 24 9999.9 0 72.1 24 5.9 24 9.9 999.9 95.4* 74.3* 99.99 999.9 010000 724050 13743 19410630 80.6 24 71.8 24 1012.8 24 9999.9 0 25.9 24 4.9 24 12.0 999.9 90.3* 75.4* 0.00I 999.9 000010 724050 13743 19410701 83.1 24 73.7 23 1013.9 24 9999.9 0 53.6 24 6.4 24 17.1 999.9 96.3* 73.9* 0.00I 999.9 000000 724050 13743 19410702 86.5 24 75.4 24 1015.2 24 9999.9 0 87.7 24 6.5 24 28.0 999.9 99.3* 73.0* 99.99 999.9 010010 724050 13743 19410703 79.1 24 73.6 24 1017.1 24 1012.5 4 5.2 24 5.5 24 15.9 999.9 91.2* 73.0* 99.99 999.9 110010 724050 13743 19410704 67.5 24 65.7 24 1016.0 24 1013.6 23 2.8 24 11.9 24 17.1 999.9 75.0* 64.9* 99.99 999.9 110010 724050 13743 19410705 67.7 24 61.5 24 1020.4 24 1018.1 24 4.7 24 10.2 24 17.1 999.9 75.9* 63.0* 99.99 999.9 110000 724050 13743 19410706 71.1 24 66.9 24 1021.3 24 1018.9 24 7.4 24 10.6 24 15.9 999.9 77.0* 68.0* 99.99 999.9 110000 724050 13743 19410707 74.0 24 70.4 24 1016.7 24 1014.3 24 12.0 24 13.5 24 17.1 999.9 78.1* 71.1* 99.99 999.9 010000 724050 13743 19410708 76.9 24 70.1 24 1011.5 24 1009.1 24 13.2 24 12.0 24 19.0 999.9 84.9* 72.0* 99.99 999.9 010010 724050 13743 19410709 73.3 24 56.7 24 1013.8 24 1011.4 24 12.5 24 7.8 24 13.0 999.9 82.0* 64.0* 0.00I 999.9 000000 724050 13743 19410710 73.8 24 63.6 24 1014.7 24 1012.4 23 6.1 24 6.0 24 15.9 999.9 84.9* 64.0* 0.00I 999.9 000000 724050 13743 19410711 76.6 24 70.7 24 1012.5 24 1010.1 24 7.9 24 12.2 24 19.0 999.9 84.9* 71.1* 99.99 999.9 110000 724050 13743 19410712 77.5 24 71.5 24 1012.5 24 1010.2 24 7.4 24 5.9 24 17.1 999.9 88.0* 71.1* 99.99 999.9 110010 724050 13743 19410713 73.6 21 69.7 21 1016.6 21 1014.2 21 6.1 21 8.1 21 17.1 999.9 75.9* 70.0* 99.99 999.9 110010 724050 13743 19410714 75.0 24 67.0 24 1020.2 24 1017.8 24 7.8 24 11.1 24 17.1 999.9 80.1* 71.1* 0.00I 999.9 000000 724050 13743 19410715 72.7 24 60.9 24 1019.3 24 1016.9 24 12.6 24 10.7 24 15.0 999.9 82.0* 64.9* 0.00I 999.9 000000 724050 13743 19410716 73.7 23 65.7 23 1015.8 23 1013.5 23 9.9 23 7.1 23 12.0 999.9 82.0* 66.0* 0.00I 999.9 100000 724050 13743 19410717 76.7 24 70.4 24 1011.8 24 1009.4 24 9.0 24 9.3 24 17.1 999.9 86.0* 72.0* 99.99 999.9 110000 724050 13743 19410718 76.7 24 70.5 24 1013.2 24 1010.8 24 7.1 24 7.0 24 15.9 999.9 84.9* 71.1* 0.00I 999.9 100000 724050 13743 19410719 80.7 24 70.4 24 1009.7 24 1007.3 24 13.7 24 15.7 24 19.0 999.9 86.0* 75.9* 0.00I 999.9 000000 724050 13743 19410720 76.1 24 60.8 24 1017.2 24 1014.8 24 11.8 24 5.9 24 12.0 999.9 84.0* 66.9* 99.99 999.9 010000 724050 13743 19410721 73.9 24 61.7 24 1020.3 24 1018.0 24 9.1 24 8.7 24 12.0 999.9 81.0* 66.0* 99.99 999.9 010000 724050 13743 19410722 74.1 24 61.4 24 1020.8 24 1018.5 24 7.9 24 5.6 24 10.1 999.9 82.9* 64.0* 0.00I 999.9 100000 724050 13743 19410723 73.0 24 65.7 24 1019.2 24 1016.8 24 5.0 24 5.8 24 11.1 999.9 80.1* 66.0* 0.00I 999.9 100000 724050 13743 19410724 76.9 24 67.1 24 1017.7 24 1015.3 24 5.6 24 6.0 24 11.1 999.9 86.0* 71.1* 0.00I 999.9 100000 724050 13743 19410725 77.6 24 67.4 24 1015.6 24 1013.2 24 4.6 24 5.4 24 11.1 999.9 86.0* 69.1* 0.00I 999.9 100000 724050 13743 19410726 84.1 24 69.3 24 1012.8 24 1010.5 24 5.6 24 8.7 24 15.0 999.9 96.1* 73.0* 0.00I 999.9 000000 724050 13743 19410727 84.4 24 66.8 24 1016.2 24 1013.9 24 6.6 24 4.8 24 10.1 999.9 96.1* 73.0* 0.00I 999.9 000000 724050 13743 19410728 87.5 24 72.5 24 1013.8 24 1011.4 24 5.4 24 7.5 24 15.9 999.9 100.0* 77.0* 0.00I 999.9 000000 724050 13743 19410729 82.6 24 69.3 24 1011.5 24 1009.1 24 8.7 24 10.5 24 17.1 999.9 91.9* 79.0* 0.00I 999.9 000000 724050 13743 19410730 75.0 23 70.3 23 1010.4 23 1008.1 22 7.4 23 11.9 23 19.0 999.9 87.1* 71.1* 99.99 999.9 110010 724050 13743 19410731 80.8 24 73.5 24 1007.2 24 1004.8 24 5.4 24 4.9 24 13.0 999.9 90.0* 73.9* 0.00I 999.9 100000 724050 13743 19410801 83.7 24 70.5 24 1008.5 24 1006.1 24 9.7 24 8.1 24 15.9 999.9 91.9* 77.0* 0.00I 999.9 000000 724050 13743 19410802 81.5 24 67.5 24 1011.9 24 1009.5 24 8.7 24 9.4 24 19.0 999.9 89.1* 73.0* 0.00I 999.9 000000 724050 13743 19410803 79.6 24 59.6 24 1016.0 24 1013.6 24 11.7 24 9.1 24 14.0 999.9 89.1* 69.1* 0.00I 999.9 000000 724050 13743 19410804 78.5 24 61.7 24 1015.7 24 1013.3 24 8.5 24 6.3 24 12.0 999.9 88.0* 68.0* 0.00I 999.9 000000 724050 13743 19410805 80.4 24 64.9 24 1012.9 24 1010.5 24 8.2 24 5.3 24 10.1 999.9 91.9* 70.0* 0.00I 999.9 000000 724050 13743 19410806 79.3 24 64.1 24 1012.9 24 1010.5 24 6.4 24 10.3 24 15.9 999.9 87.1* 72.0* 0.00I 999.9 000000 724050 13743 19410807 77.2 24 58.4 24 1018.7 24 1016.3 24 8.5 24 5.7 24 13.0 999.9 86.0* 66.0* 0.00I 999.9 000000 724050 13743 19410808 78.3 24 61.9 24 1017.0 24 1014.6 24 10.3 24 5.9 24 10.1 999.9 91.0* 68.0* 0.00I 999.9 000000 724050 13743 19410809 82.2 24 63.9 24 1012.6 24 1010.3 24 6.5 24 5.2 24 13.0 999.9 97.0* 69.1* 0.00I 999.9 000000 724050 13743 19410810 81.9 24 61.7 24 1013.9 24 1011.5 24 10.1 24 10.1 24 15.9 999.9 89.1* 75.0* 0.00I 999.9 000000 724050 13743 19410811 76.1 24 56.6 24 1016.0 24 1013.6 24 14.6 24 8.1 24 15.0 999.9 86.0* 66.0* 0.00I 999.9 000000 724050 13743 19410812 78.9 24 68.7 24 1006.7 24 1004.3 24 8.5 24 10.0 24 17.1 999.9 87.1* 70.0* 99.99 999.9 110010 724050 13743 19410813 68.2 24 45.7 24 1015.6 24 1013.3 24 14.9 24 11.4 24 19.0 999.9 80.1* 60.1* 0.00I 999.9 000000 724050 13743 19410814 67.2 24 50.2 24 1020.8 24 1018.4 24 13.2 24 8.1 24 15.9 999.9 80.1* 55.9* 0.00I 999.9 000000 724050 13743 19410815 74.0 24 61.4 24 1016.8 24 1014.4 24 13.8 24 15.9 24 28.0 999.9 84.0* 66.9* 99.99 999.9 010000 724050 13743 19410816 76.5 24 67.1 24 1010.4 24 1008.2 23 6.7 24 8.6 24 17.1 999.9 84.9* 71.1* 99.99 999.9 010000 724050 13743 19410817 71.0 24 52.0 24 1015.1 24 1012.7 24 14.6 24 10.7 24 21.0 999.9 80.1* 62.1* 0.00I 999.9 000000 724050 13743 19410818 69.0 24 56.5 24 1017.1 24 1014.7 24 8.3 24 5.2 24 13.0 999.9 78.1* 59.0* 99.99 999.9 010000 724050 13743 19410819 73.3 24 65.9 24 1012.0 24 1009.4 23 6.2 24 9.3 24 15.0 999.9 84.0* 63.0* 99.99 999.9 110010 724050 13743 19410820 72.2 24 63.1 24 1013.9 24 1011.4 23 9.6 24 8.4 24 15.0 999.9 78.1* 66.9* 99.99 999.9 110000 724050 13743 19410821 70.7 24 57.1 24 1018.4 24 1016.0 24 9.7 24 5.4 24 13.0 999.9 82.9* 60.1* 0.00I 999.9 000000 724050 13743 19410822 71.1 24 61.8 24 1017.5 23 1015.2 24 6.8 24 5.5 24 13.0 999.9 80.1* 62.1* 99.99 999.9 010000 724050 13743 19410823 76.4 24 66.6 24 1014.7 24 1012.4 24 8.0 24 4.0 24 8.9 999.9 89.1* 66.9* 0.00I 999.9 000000 724050 13743 19410824 76.3 24 66.7 24 1016.9 24 1014.5 24 9.0 24 4.5 24 10.1 999.9 84.9* 70.0* 99.99 999.9 010010 724050 13743 19410825 76.9 24 71.0 24 1012.9 24 1010.5 24 9.7 24 10.3 24 17.1 999.9 84.0* 72.0* 99.99 999.9 010000 724050 13743 19410826 79.6 24 69.8 24 1009.7 24 1007.3 24 13.3 24 9.9 24 17.1 999.9 91.9* 72.0* 99.99 999.9 010000 724050 13743 19410827 73.6 24 60.1 24 1014.5 24 1012.2 24 13.7 24 11.3 24 20.0 999.9 79.0* 69.1* 99.99 999.9 010000 724050 13743 19410828 68.9 24 51.0 24 1023.1 24 1020.8 24 13.6 24 7.1 24 13.0 999.9 77.0* 59.0* 0.00I 999.9 000000 724050 13743 19410829 68.5 24 57.0 24 1026.2 24 1023.8 24 11.6 24 7.1 24 15.9 999.9 78.1* 59.0* 0.00I 999.9 100000 724050 13743 19410830 73.0 24 61.9 24 1023.5 24 1021.1 24 11.7 24 10.0 24 15.9 999.9 86.0* 63.0* 0.00I 999.9 100000 724050 13743 19410831 79.3 24 67.5 24 1018.6 24 1016.2 24 10.4 24 8.1 24 15.9 999.9 91.9* 68.0* 0.00I 999.9 000000 724050 13743 19410901 81.5 24 71.1 24 1013.9 24 1011.5 23 9.1 24 8.4 24 15.9 999.9 93.9* 72.0* 99.99 999.9 010010 724050 13743 19410902 76.8 24 62.2 24 1017.3 24 1014.9 24 12.3 24 8.5 24 18.1 999.9 82.9* 69.1* 0.00I 999.9 000000 724050 13743 19410903 72.1 24 63.7 24 1021.4 24 1019.0 24 8.1 24 5.5 24 10.1 999.9 75.9* 66.0* 99.99 999.9 010000 724050 13743 19410904 73.7 24 69.2 24 1020.5 24 1018.1 24 5.9 24 5.2 24 10.1 999.9 79.0* 70.0* 0.00I 999.9 100000 724050 13743 19410905 79.1 24 73.6 24 1013.9 24 1011.5 24 5.2 24 5.7 24 10.1 999.9 89.1* 73.9* 99.99 999.9 110000 724050 13743 19410906 76.5 24 64.1 24 1010.9 24 1008.5 24 11.8 24 9.5 24 15.9 999.9 87.1* 66.0* 99.99 999.9 010000 724050 13743 19410907 79.2 24 62.1 24 1011.8 24 1009.4 24 10.5 24 8.1 24 17.1 999.9 90.0* 68.0* 0.00I 999.9 000000 724050 13743 19410908 78.4 24 64.2 24 1016.1 24 1013.7 24 10.9 24 6.0 24 15.0 999.9 84.0* 71.1* 0.00I 999.9 000000 724050 13743 19410909 79.5 24 70.2 24 1019.7 24 1017.3 24 9.7 24 8.9 24 15.0 999.9 91.9* 71.1* 0.00I 999.9 000000 724050 13743 19410910 83.4 24 72.3 24 1019.9 24 1017.6 24 12.4 24 9.3 24 15.9 999.9 93.9* 75.0* 0.00I 999.9 000000 724050 13743 19410911 74.0 24 58.5 24 1020.9 24 1018.6 24 11.4 24 12.1 24 21.0 999.9 86.0* 68.0* 0.00I 999.9 000000 724050 13743 19410912 64.1 23 43.5 23 1024.4 23 1022.0 23 14.9 23 9.8 23 21.0 999.9 73.9* 55.0* 0.00I 999.9 000000 724050 13743 19410913 63.7 24 45.7 24 1026.7 24 1024.3 24 9.4 24 3.8 24 10.1 999.9 77.0* 51.1* 0.00I 999.9 100000 724050 13743 19410914 66.3 24 52.0 24 1028.2 24 1025.8 24 9.5 24 6.2 24 15.9 999.9 78.1* 55.0* 0.00I 999.9 000000 724050 13743 19410915 72.2 24 61.4 24 1024.1 24 1021.8 24 12.1 24 9.1 24 17.1 999.9 84.0* 62.1* 0.00I 999.9 000000 724050 13743 19410916 75.7 24 62.4 24 1021.1 24 1018.7 24 9.6 24 6.7 24 13.0 999.9 88.0* 66.0* 0.00I 999.9 000000 724050 13743 19410917 77.9 23 64.6 23 1019.5 23 1017.1 23 9.0 23 6.7 23 13.0 999.9 91.9* 66.0* 0.00I 999.9 000000 724050 13743 19410918 74.2 24 56.9 24 1021.0 24 1018.6 24 11.8 24 9.9 24 17.1 999.9 84.0* 64.0* 0.00I 999.9 000000 724050 13743 19410919 69.4 24 51.6 24 1022.4 24 1020.2 24 12.3 24 11.4 24 19.0 999.9 75.9* 62.1* 0.00I 999.9 000000 724050 13743 19410920 64.2 24 52.2 24 1026.9 24 1024.5 24 13.8 24 10.2 24 17.1 999.9 73.0* 55.9* 0.00I 999.9 000000 724050 13743 19410921 65.5 24 55.4 24 1026.4 24 1024.0 24 12.1 24 6.6 24 14.0 999.9 77.0* 55.9* 0.00I 999.9 100000 724050 13743 19410922 66.1 24 54.1 24 1022.7 24 1020.3 24 7.8 24 5.7 24 15.9 999.9 79.0* 54.0* 0.00I 999.9 100000 724050 13743 19410923 70.5 24 52.2 24 1014.2 24 1011.6 24 8.0 24 8.7 24 19.0 999.9 89.1* 55.9* 0.00I 999.9 000000 724050 13743 19410924 74.7 24 60.3 24 1015.3 24 1012.9 24 7.9 24 6.7 24 17.1 999.9 84.0* 66.0* 0.00I 999.9 000000 724050 13743 19410925 72.7 24 61.9 24 1013.1 24 1010.8 24 6.4 24 10.4 24 17.1 999.9 84.0* 64.9* 0.00I 999.9 100000 724050 13743 19410926 74.3 24 59.5 24 1014.2 24 1011.8 24 10.0 24 6.3 24 15.0 999.9 79.0* 68.0* 0.00I 999.9 000000 724050 13743 19410927 69.6 24 49.4 24 1022.2 24 1019.8 24 8.2 24 11.5 24 19.0 999.9 78.1* 62.1* 0.00I 999.9 000000 724050 13743 19410928 73.2 24 60.4 24 1022.4 24 1020.0 24 10.0 24 8.6 24 17.1 999.9 86.0* 64.9* 0.00I 999.9 100000 724050 13743 19410929 70.1 24 50.7 24 1022.0 24 1019.7 24 11.6 24 12.7 24 19.0 999.9 78.1* 63.0* 0.00I 999.9 000000 724050 13743 19410930 59.5 24 45.4 24 1026.4 24 1024.0 24 11.8 24 7.5 24 17.1 999.9 70.0* 52.0* 0.00I 999.9 000000 724050 13743 19411001 74.7 24 63.7 24 1017.5 24 1015.1 24 11.2 24 13.8 24 24.1 999.9 91.0* 68.0* 99.99 999.9 010000 724050 13743 19411002 71.6 24 62.8 24 1023.0 24 1020.6 24 6.3 24 9.2 24 15.0 999.9 75.9* 66.9* 99.99 999.9 010000 724050 13743 19411003 72.3 24 64.2 24 1022.9 24 1020.6 24 5.9 24 8.1 24 18.1 999.9 84.0* 66.0* 99.99 999.9 110000 724050 13743 19411004 80.5 24 65.5 24 1014.9 24 1012.5 24 10.1 24 8.9 24 17.1 999.9 89.1* 73.9* 0.00I 999.9 000000 724050 13743 19411005 81.6 24 68.9 24 1014.1 24 1011.7 24 11.4 24 7.6 24 17.1 999.9 96.1* 71.1* 0.00I 999.9 100000 724050 13743 19411006 82.7 24 67.7 24 1016.7 24 1014.3 24 8.5 24 6.3 24 14.0 999.9 93.0* 72.0* 0.00I 999.9 000000 724050 13743 19411007 81.6 24 67.4 24 1015.4 24 1013.1 24 9.2 24 7.7 24 19.0 999.9 93.0* 71.1* 0.00I 999.9 000000 724050 13743 19411008 79.1 24 54.6 24 1011.6 24 1009.2 24 13.8 24 10.8 24 18.1 999.9 86.0* 72.0* 0.00I 999.9 000000 724050 13743 19411009 65.1 24 46.0 24 1019.4 24 1017.0 24 12.8 24 8.4 24 14.0 999.9 73.9* 53.1* 0.00I 999.9 000000 724050 13743 19411010 64.0 24 52.3 24 1011.5 24 1009.2 24 11.2 24 13.8 24 22.0 999.9 70.0* 60.1* 99.99 999.9 110000 724050 13743 19411011 56.7 24 36.8 24 1019.7 24 1017.3 24 14.9 24 11.2 24 21.0 999.9 64.0* 48.9* 0.00I 999.9 000000 724050 13743 19411012 57.2 24 41.3 24 1021.9 24 1019.6 24 8.2 24 5.6 24 11.1 999.9 75.9* 43.0* 0.00I 999.9 100000 724050 13743 19411013 62.5 24 47.2 24 1025.5 24 1023.2 24 7.2 24 4.6 24 14.0 999.9 73.9* 51.1* 0.00I 999.9 000000 724050 13743 19411014 66.7 24 52.5 24 1022.9 24 1020.5 24 7.2 24 10.0 24 22.0 999.9 82.0* 54.0* 0.00I 999.9 100000 724050 13743 19411015 69.7 24 62.6 24 1017.3 24 1014.9 24 5.9 24 5.5 24 11.1 999.9 75.0* 66.0* 99.99 999.9 010000 724050 13743 19411016 63.5 23 43.1 23 1021.3 23 1018.9 23 12.2 23 11.0 23 17.1 999.9 73.0* 55.9* 0.00I 999.9 000000 724050 13743 19411017 54.0 24 37.1 24 1030.1 24 1027.7 24 7.0 24 5.6 24 11.1 999.9 64.0* 43.0* 0.00I 999.9 000000 724050 13743 19411018 58.7 24 48.0 24 1028.0 24 1025.6 24 5.7 24 5.9 24 14.0 999.9 70.0* 54.0* 99.99 999.9 010000 724050 13743 19411019 68.0 24 58.3 24 1021.2 24 1018.8 24 7.2 24 7.1 24 15.9 999.9 75.9* 61.0* 99.99 999.9 010000 724050 13743 19411020 64.9 24 53.4 24 1025.5 24 1023.1 24 6.2 24 6.8 24 14.0 999.9 69.1* 60.1* 0.00I 999.9 000000 724050 13743 19411021 66.3 23 55.6 23 1018.1 23 1015.8 23 6.4 23 7.8 23 10.1 999.9 81.0* 57.0* 0.00I 999.9 000000 724050 13743 19411022 64.5 24 47.8 24 1018.1 24 1015.7 24 13.8 24 8.8 24 14.0 999.9 75.0* 54.0* 0.00I 999.9 000000 724050 13743 19411023 61.0 24 49.8 24 1014.8 24 1012.5 24 5.0 24 9.8 24 22.0 999.9 77.0* 51.1* 99.99 999.9 110000 724050 13743 19411024 54.6 24 32.4 24 1019.7 24 1017.3 24 14.3 24 11.1 24 15.9 999.9 64.0* 46.0* 0.00I 999.9 000000 724050 13743 19411025 58.0 24 32.4 24 1014.4 24 1012.0 24 8.0 24 9.7 24 15.0 999.9 64.0* 55.0* 0.00I 999.9 000000 724050 13743 19411026 51.6 24 32.5 24 1021.8 24 1019.4 24 13.7 24 6.8 24 15.9 999.9 62.1* 37.9* 0.00I 999.9 100000 724050 13743 19411027 59.3 24 51.3 24 1015.9 24 1013.5 24 6.0 24 9.6 24 17.1 999.9 69.1* 55.0* 99.99 999.9 010000 724050 13743 19411028 60.4 24 51.1 24 1013.4 24 1011.0 24 9.0 24 10.5 24 19.0 999.9 64.0* 50.0* 99.99 999.9 010000 724050 13743 19411029 44.9 24 27.7 24 1031.8 24 1029.4 24 12.0 24 11.6 24 18.1 999.9 54.0* 37.9* 0.00I 999.9 000000 724050 13743 19411030 49.2 24 39.3 24 1032.4 24 1030.2 23 6.8 24 4.2 24 10.1 999.9 60.1* 41.0* 0.00I 999.9 000000 724050 13743 19411031 55.7 24 51.2 24 1023.4 24 1021.0 24 3.5 24 3.4 24 10.1 999.9 60.1* 52.0* 99.99 999.9 010000 724050 13743 19411101 63.2 22 60.7 22 1010.7 22 1008.3 22 3.7 22 8.9 22 20.0 999.9 70.0* 59.0* 99.99 999.9 110000 724050 13743 19411102 60.6 23 44.1 23 1005.4 23 1003.0 23 13.3 23 10.1 23 17.1 999.9 70.0* 48.9* 0.00I 999.9 000000 724050 13743 19411103 54.6 24 35.7 24 1014.0 24 1011.6 24 12.3 24 6.4 24 14.0 999.9 62.1* 43.0* 0.00I 999.9 000000 724050 13743 19411104 51.0 24 37.0 24 1017.3 24 1015.0 24 4.4 24 3.4 24 10.1 999.9 64.0* 39.0* 0.00I 999.9 100000 724050 13743 19411105 58.9 24 45.6 24 1015.3 24 1012.9 24 4.1 24 5.6 24 15.0 999.9 69.1* 52.0* 99.99 999.9 010000 724050 13743 19411106 60.7 24 55.8 23 1006.6 24 1004.2 24 6.4 24 7.5 24 15.9 999.9 69.1* 55.0* 99.99 999.9 110000 724050 13743 19411107 57.8 23 43.3 23 999.8 23 1000.3 23 13.3 23 11.1 23 17.1 999.9 66.9* 52.0* 0.00I 999.9 000000 724050 13743 19411108 48.5 24 32.2 24 1010.3 24 1008.0 24 9.9 24 7.4 24 10.1 999.9 53.1* 45.0* 0.00I 999.9 000000 724050 13743 19411109 46.0 24 30.6 24 1015.0 24 1012.6 24 9.7 24 11.5 24 17.1 999.9 50.0* 39.9* 99.99 999.9 010000 724050 13743 19411110 42.6 24 27.6 24 1021.1 24 1018.7 24 8.2 24 5.6 24 12.0 999.9 46.9* 39.9* 0.00I 999.9 000000 724050 13743 19411111 39.6 24 23.9 24 1021.3 24 1018.9 23 9.4 24 8.8 24 15.0 999.9 48.0* 32.0* 0.00I 999.9 000000 724050 13743 19411112 40.9 24 24.1 24 1021.2 24 1018.8 24 12.5 24 10.8 24 20.0 999.9 48.0* 37.0* 0.00I 999.9 000000 724050 13743 19411113 43.0 24 30.0 24 1023.8 24 1021.4 24 4.0 24 4.7 24 12.0 999.9 60.1* 30.0* 0.00I 999.9 100000 724050 13743 19411114 48.6 24 33.1 24 1021.6 24 1019.3 24 2.8 24 4.2 24 11.1 999.9 70.0* 32.0* 0.00I 999.9 100000 724050 13743 19411115 50.4 23 34.2 23 1016.1 23 1013.6 22 2.3 23 3.1 23 12.0 999.9 69.1* 36.0* 0.00I 999.9 100000 724050 13743 19411116 55.6 24 37.5 24 1011.3 24 1008.9 24 7.4 24 10.0 24 22.0 999.9 66.0* 44.1* 0.00I 999.9 000000 724050 13743 19411117 48.3 24 29.2 24 1025.0 24 1022.6 24 10.6 24 7.9 24 12.0 999.9 57.9* 39.9* 0.00I 999.9 000000 724050 13743 19411118 49.5 24 36.1 24 1029.1 24 1026.8 24 4.5 24 7.1 24 14.0 999.9 68.0* 37.9* 0.00I 999.9 100000 724050 13743 19411119 56.6 24 43.2 24 1026.2 24 1023.9 24 4.2 24 8.6 24 15.9 999.9 72.0* 46.9* 0.00I 999.9 000000 724050 13743 19411120 63.2 23 52.7 23 1017.8 23 1015.4 23 6.9 23 13.3 23 22.9 999.9 73.9* 55.9* 0.00I 999.9 000000 724050 13743 19411121 53.5 24 34.9 24 1015.0 24 1012.7 24 10.7 24 13.3 24 17.1 999.9 70.0* 43.0* 99.99 999.9 010000 724050 13743 19411122 40.1 24 24.1 24 1024.8 24 1022.5 24 8.5 24 6.4 24 12.0 999.9 50.0* 27.0* 0.00I 999.9 100000 724050 13743 19411123 44.5 24 39.6 24 1018.2 24 1015.9 24 3.7 24 6.4 24 12.0 999.9 51.1* 39.9* 99.99 999.9 111000 724050 13743 19411124 45.9 24 30.3 24 1022.8 24 1020.5 24 10.1 24 13.5 24 22.0 999.9 51.1* 42.1* 0.00I 999.9 100000 724050 13743 19411125 36.5 24 23.1 24 1031.0 24 1028.7 24 7.1 24 6.8 24 10.1 999.9 45.0* 28.9* 0.00I 999.9 000000 724050 13743 19411126 41.0 24 24.4 24 1021.9 24 1019.5 24 6.9 24 8.3 24 15.9 999.9 57.9* 30.9* 0.00I 999.9 000000 724050 13743 19411127 48.4 24 25.1 24 1023.8 24 1021.5 24 8.3 24 7.7 24 13.0 999.9 68.0* 33.1* 0.00I 999.9 000000 724050 13743 19411128 50.4 24 33.7 24 1028.5 24 1025.9 22 5.0 24 4.1 24 10.1 999.9 64.9* 36.0* 0.00I 999.9 000000 724050 13743 19411129 49.4 24 35.3 24 1030.2 24 1027.8 24 3.0 24 4.1 24 13.0 999.9 70.0* 35.1* 0.00I 999.9 100000 724050 13743 19411130 52.5 24 36.3 24 1022.2 24 1019.8 24 5.7 24 7.8 24 13.0 999.9 70.0* 37.9* 0.00I 999.9 000000 724050 13743 19411201 49.0 24 36.7 24 1024.6 24 1022.2 23 10.3 24 10.8 24 20.0 999.9 62.1* 43.0* 0.00I 999.9 000000 724050 13743 19411202 46.5 24 39.4 24 1023.1 24 1020.7 24 4.2 24 6.3 24 10.1 999.9 55.0* 41.0* 0.00I 999.9 000000 724050 13743 19411203 51.7 23 45.5 23 1024.0 23 1021.6 23 2.2 23 4.2 23 10.1 999.9 66.0* 43.0* 99.99 999.9 110000 724050 13743 19411204 49.9 24 46.2 24 1024.0 24 1021.6 24 1.5 24 3.4 24 14.0 999.9 57.9* 43.0* 0.00I 999.9 100000 724050 13743 19411205 58.9 24 56.3 24 1010.8 24 1008.5 24 3.5 24 8.3 24 13.0 999.9 66.0* 52.0* 99.99 999.9 110000 724050 13743 19411206 49.6 24 38.2 24 1012.3 24 1009.9 24 8.9 24 10.3 24 19.0 999.9 55.9* 44.1* 0.00I 999.9 100000 724050 13743 19411207 37.7 24 18.7 24 1018.8 24 1017.9 24 14.9 24 16.1 24 26.0 999.9 43.0* 32.0* 0.00I 999.9 000000 724050 13743 19411208 39.1 24 24.5 24 1012.5 24 1010.4 23 7.6 24 8.5 24 22.0 999.9 54.0* 30.9* 99.99 999.9 110000 724050 13743 19411209 40.5 24 24.6 24 1012.6 24 1010.3 24 14.3 24 11.5 24 19.0 999.9 46.9* 37.9* 0.00I 999.9 000000 724050 13743 19411210 37.3 24 25.7 24 1019.5 24 1017.1 24 6.1 24 6.3 24 11.1 999.9 52.0* 28.9* 0.00I 999.9 000000 724050 13743 19411211 32.5 24 14.9 24 1029.4 24 1027.1 24 13.3 24 12.6 24 26.0 999.9 43.0* 27.0* 0.00I 999.9 000000 724050 13743 19411212 33.1 24 16.9 24 1033.6 24 1031.2 24 7.2 24 9.8 24 14.0 999.9 36.0* 30.9* 0.00I 999.9 000000 724050 13743 19411213 33.9 23 30.9 23 1017.9 23 1018.4 23 3.0 23 13.6 23 19.0 999.9 37.0* 30.9* 99.99 999.9 111000 724050 13743 19411214 38.1 24 29.0 24 1008.6 24 1010.5 24 9.2 24 12.2 24 26.0 999.9 41.0* 34.0* 0.00I 999.9 100000 724050 13743 19411215 34.2 24 18.0 24 1020.5 24 1018.1 24 11.5 24 8.9 24 22.0 999.9 46.0* 25.0* 0.00I 999.9 000000 724050 13743 19411216 37.4 24 23.7 24 1020.2 24 1017.8 24 3.9 24 6.9 24 14.0 999.9 54.0* 28.0* 0.00I 999.9 000000 724050 13743 19411217 43.8 24 31.3 24 1016.7 24 1014.4 24 6.0 24 6.9 24 14.0 999.9 48.0* 35.1* 0.00I 999.9 000000 724050 13743 19411218 40.1 24 32.5 24 1018.8 24 1016.4 24 3.1 24 6.7 24 15.0 999.9 57.0* 30.0* 0.00I 999.9 100000 724050 13743 19411219 45.9 24 37.0 24 1017.6 24 1015.3 23 4.0 24 5.3 24 10.1 999.9 57.9* 36.0* 99.99 999.9 010000 724050 13743 19411220 44.8 24 31.3 24 1016.7 24 1014.4 24 11.2 24 13.9 24 35.0 999.9 48.9* 37.0* 99.99 999.9 010000 724050 13743 19411221 32.4 24 16.9 24 1031.6 24 1029.2 24 14.9 24 7.1 24 20.0 999.9 39.0* 27.0* 0.00I 999.9 000000 724050 13743 19411222 33.1 24 20.7 24 1031.6 24 1029.3 24 10.8 24 5.4 24 10.1 999.9 43.0* 27.0* 0.00I 999.9 000000 724050 13743 19411223 41.2 24 36.6 24 1021.4 24 1019.0 24 4.2 24 5.0 24 15.0 999.9 55.9* 35.1* 99.99 999.9 110000 724050 13743 19411224 58.9 24 49.6 24 1000.4 24 998.2 24 11.8 24 16.5 24 42.0 999.9 62.1* 53.1* 99.99 999.9 110010 724050 13743 19411225 47.8 24 34.9 24 1011.3 24 1008.9 24 14.3 24 9.7 24 17.1 999.9 50.0* 45.0* 0.00I 999.9 000000 724050 13743 19411226 45.3 24 39.8 24 1014.8 24 1012.5 23 5.2 24 4.1 24 10.1 999.9 54.0* 39.9* 99.99 999.9 110000 724050 13743 19411227 46.2 23 38.3 23 1017.7 23 1015.4 23 6.6 23 8.2 23 17.1 999.9 50.0* 39.9* 99.99 999.9 110000 724050 13743 19411228 37.3 24 26.0 24 1022.5 24 1020.1 24 4.9 24 7.0 24 12.0 999.9 41.0* 30.9* 0.00I 999.9 000000 724050 13743 19411229 37.3 24 24.7 24 1023.6 24 1021.2 24 8.2 24 10.7 24 15.9 999.9 39.9* 35.1* 0.00I 999.9 000000 724050 13743 19411230 31.0 24 18.9 24 1028.8 24 1026.5 24 10.4 24 10.3 24 15.0 999.9 36.0* 26.1* 0.00I 999.9 000000 724050 13743 19411231 34.7 24 23.7 24 1026.4 24 1024.1 24 7.7 24 6.5 24 10.1 999.9 42.1* 30.0* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1993/0000755000175000017500000000000014302004506015105 5ustar nileshnileshfluids-1.0.22/tests/gsod/1993/724050-13743.op0000644000175000017500000014327214302004506016676 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19930101 49.8 24 36.4 24 1020.9 24 1018.5 24 15.9 24 12.4 24 20.0 26.8 66.9 39.0* 0.00G 999.9 000000 724050 13743 19930102 33.6 24 17.8 24 1034.3 24 1031.9 24 19.7 24 8.8 24 14.0 22.0 39.9* 28.0 0.00G 999.9 000000 724050 13743 19930103 35.8 24 25.5 24 1036.0 24 1033.7 24 12.8 24 7.4 24 14.0 999.9 42.1* 28.0 0.00G 999.9 010000 724050 13743 19930104 48.4 24 40.9 24 1027.4 24 1025.1 24 12.9 24 10.8 24 14.0 19.8 64.9* 33.1 0.00G 999.9 000000 724050 13743 19930105 57.7 24 50.1 24 1014.7 24 1012.4 24 13.0 24 14.1 24 20.0 29.9 64.9 41.0 1.01G 999.9 110000 724050 13743 19930106 44.0 24 33.0 24 1024.1 24 1021.7 24 15.2 24 7.6 24 17.1 999.9 64.9 39.0 0.00D 999.9 000000 724050 13743 19930107 43.8 24 33.4 24 1023.1 24 1020.7 24 11.4 24 5.7 24 10.1 999.9 51.1 39.0 0.00G 999.9 000000 724050 13743 19930108 42.7 24 39.7 24 1017.5 24 1015.2 24 5.9 24 7.1 24 10.9 999.9 48.0 39.0 0.47G 999.9 110000 724050 13743 19930109 36.0 24 34.4 24 1023.7 24 1021.3 24 4.1 24 12.4 24 16.9 22.0 44.1 33.1 0.56G 999.9 111000 724050 13743 19930110 30.5 24 25.5 24 1032.1 24 1029.7 24 8.9 24 12.3 24 15.0 999.9 39.0 28.9 0.02G 0.4 111000 724050 13743 19930111 31.6 24 30.4 24 1032.4 24 1030.0 24 3.5 24 5.9 24 10.1 999.9 35.1* 28.9 0.02G 0.4 111000 724050 13743 19930112 37.8 24 37.4 24 1026.6 24 1024.3 24 2.0 24 5.7 24 8.0 999.9 43.0* 30.0 0.14G 999.9 110000 724050 13743 19930113 43.2 24 42.7 24 1015.2 24 1012.8 24 3.0 24 4.8 24 12.0 999.9 46.0* 35.1 0.16G 999.9 110000 724050 13743 19930114 42.1 24 27.9 24 1019.0 24 1016.6 24 13.5 24 11.2 24 15.9 19.8 46.9 39.9 0.13G 999.9 000000 724050 13743 19930115 39.1 24 28.0 24 1023.2 24 1020.9 24 11.7 24 5.8 24 10.1 999.9 45.0 37.0 0.00G 999.9 000000 724050 13743 19930116 37.6 24 31.7 24 1018.2 24 1015.8 24 8.4 24 6.8 24 10.1 999.9 43.0 36.0 0.00G 999.9 100000 724050 13743 19930117 38.9 24 28.9 24 1011.5 24 1009.1 24 8.7 24 7.7 24 12.0 999.9 48.9* 30.9 0.00G 999.9 000000 724050 13743 19930118 38.8 24 20.1 24 1023.1 24 1020.8 24 13.9 24 10.7 24 17.1 23.9 48.9 30.9 0.00G 999.9 000000 724050 13743 19930119 32.8 24 14.6 24 1035.7 24 1033.3 24 13.7 24 8.7 24 12.0 999.9 42.1 27.0 0.00G 999.9 000000 724050 13743 19930120 32.0 24 15.6 24 1038.3 24 1035.9 24 13.4 24 4.8 24 8.9 999.9 44.1* 21.9 0.00G 999.9 000000 724050 13743 19930121 32.9 24 24.3 24 1032.8 24 1030.4 24 9.7 24 4.4 24 8.0 999.9 44.1 21.9 0.00G 999.9 110000 724050 13743 19930122 40.8 24 39.7 24 1017.4 24 1015.0 24 4.9 24 6.2 24 11.8 999.9 45.0 27.0 0.49G 999.9 110000 724050 13743 19930123 43.0 24 34.0 24 1019.6 24 1017.3 24 11.9 24 7.1 24 12.0 999.9 50.0 36.0 0.01G 999.9 110000 724050 13743 19930124 45.6 24 37.8 24 1015.2 24 1012.8 24 13.9 24 11.2 24 18.1 24.9 57.9* 36.0 0.00G 999.9 010000 724050 13743 19930125 39.6 24 18.7 24 1023.5 24 1021.7 23 17.6 24 13.3 24 24.1 32.8 59.0 30.0 0.02G 999.9 010000 724050 13743 19930126 31.6 24 15.3 24 1030.3 24 1027.9 24 14.7 24 9.8 24 14.0 999.9 42.1 27.0 0.00G 999.9 000000 724050 13743 19930127 33.3 24 19.8 24 1017.6 24 1015.2 24 13.3 24 8.4 24 22.0 25.8 46.0* 24.1 0.00G 999.9 000000 724050 13743 19930128 34.9 24 22.3 24 1018.6 24 1016.2 24 12.3 24 8.1 24 15.0 21.0 46.0 24.1 0.00G 999.9 000000 724050 13743 19930129 41.7 24 23.7 24 1015.9 24 1013.6 24 15.5 24 13.5 24 22.0 32.8 46.9* 27.0 0.00G 999.9 010000 724050 13743 19930130 34.1 24 6.3 24 1024.9 24 1022.6 24 17.2 24 9.2 24 15.0 19.8 54.0* 21.9 0.00G 999.9 000000 724050 13743 19930131 47.0 24 13.8 24 1007.5 24 1005.1 24 17.0 24 10.5 24 15.9 21.0 61.0* 21.9 0.00G 999.9 000000 724050 13743 19930201 43.0 24 22.5 24 1006.0 24 1003.7 24 16.0 24 17.0 24 28.0 39.8 63.0 27.0* 0.00G 999.9 010000 724050 13743 19930202 22.6 24 -0.9 24 1024.7 24 1022.3 24 17.2 24 14.6 24 22.9 31.9 33.1* 16.0 0.00G 999.9 000000 724050 13743 19930203 35.1 24 6.4 24 1025.0 24 1022.6 24 15.7 24 5.4 24 11.1 999.9 57.0* 16.0 0.00G 999.9 000000 724050 13743 19930204 45.8 24 9.7 24 1022.9 24 1020.5 24 16.0 24 12.4 24 20.0 23.9 57.0 39.9* 0.00D 999.9 000000 724050 13743 19930205 40.4 24 19.5 24 1025.9 24 1023.5 24 14.8 24 8.9 24 15.0 999.9 57.0* 28.9 0.00G 999.9 000000 724050 13743 19930206 36.4 24 25.1 24 1019.0 24 1016.6 24 12.8 24 9.4 24 17.1 24.9 57.0 26.1* 0.00G 999.9 001000 724050 13743 19930207 23.8 24 11.5 24 1026.5 24 1024.1 24 13.5 24 8.0 24 12.0 999.9 41.0 18.0 0.00D 999.9 000000 724050 13743 19930208 35.1 24 25.3 24 1018.0 24 1015.6 24 9.4 24 8.2 24 20.0 999.9 48.9* 18.0 0.00G 999.9 000000 724050 13743 19930209 34.6 24 17.9 24 1027.1 24 1024.7 24 13.8 24 8.9 24 12.0 999.9 48.9 26.1 0.00G 999.9 000000 724050 13743 19930210 39.2 24 31.2 24 1025.8 24 1023.4 24 9.3 24 5.8 24 10.1 999.9 55.0* 27.0 0.00G 999.9 100000 724050 13743 19930211 41.6 24 34.7 24 1022.6 24 1020.3 24 7.1 24 7.9 24 15.9 21.0 55.0 30.0 0.00G 999.9 100000 724050 13743 19930212 36.2 24 32.4 24 1018.3 24 1015.9 24 6.4 24 14.3 24 18.1 26.8 52.0 32.0 0.25G 0.4 111000 724050 13743 19930213 36.4 24 31.5 24 1001.0 24 998.7 24 10.1 24 9.5 24 17.1 25.8 43.0 33.1 0.66G 999.9 111000 724050 13743 19930214 38.1 24 21.4 24 1009.1 24 1006.8 24 15.5 24 13.7 24 15.9 26.8 43.0 33.1 0.01G 999.9 000000 724050 13743 19930215 38.2 24 23.9 24 1024.4 24 1022.0 24 13.3 24 5.5 24 10.1 999.9 46.0* 32.0 0.00G 999.9 000000 724050 13743 19930216 38.3 24 34.4 24 1020.1 24 1017.7 24 6.1 24 7.3 24 12.8 999.9 46.0 33.1 0.32G 999.9 111000 724050 13743 19930217 41.6 24 26.0 24 1015.7 24 1013.4 24 15.0 24 12.2 24 22.0 40.8 48.9 33.1 0.03G 999.9 100000 724050 13743 19930218 31.2 24 10.2 24 1019.6 24 1017.3 24 14.6 24 11.0 24 15.9 22.0 46.0 25.0 0.00G 999.9 000000 724050 13743 19930219 19.3 24 -1.7 24 1024.9 24 1022.5 24 16.8 24 13.6 24 20.0 22.0 35.1 10.9 0.00G 999.9 000000 724050 13743 19930220 28.7 24 9.8 24 1019.8 24 1017.4 24 13.0 24 5.2 24 8.0 999.9 37.9 10.9 0.00G 999.9 000000 724050 13743 19930221 32.6 24 26.3 24 1015.5 24 1013.2 24 6.9 24 7.0 24 12.0 999.9 39.9 24.1 0.00G 1.2 111000 724050 13743 19930222 42.0 24 37.1 24 1001.3 24 998.9 24 5.2 24 8.2 24 14.0 999.9 54.0* 30.0 0.64G 999.9 110000 724050 13743 19930223 35.4 24 16.8 24 1009.8 24 1007.4 24 13.6 24 12.8 24 18.1 22.9 55.9 29.8 0.00G 0.4 000000 724050 13743 19930224 28.4 24 6.6 24 1019.7 24 1017.4 24 15.9 24 12.0 24 17.1 23.9 37.0 24.1 0.00G 999.9 000000 724050 13743 19930225 24.5 24 5.7 24 1031.2 24 1028.8 24 13.7 24 8.2 24 14.0 999.9 32.0 18.0 0.00G 999.9 000000 724050 13743 19930226 27.4 24 19.3 24 1027.1 24 1024.7 24 4.8 24 8.2 24 11.8 999.9 32.0 25.0* 0.07G 3.1 101000 724050 13743 19930227 30.5 24 18.3 24 1023.9 24 1021.6 24 9.8 24 11.2 24 13.0 999.9 37.0* 25.0 0.06G 1.6 101000 724050 13743 19930228 29.8 24 9.8 24 1023.8 24 1021.5 24 10.9 24 9.0 24 14.0 999.9 37.9 21.9 0.00G 0.4 000000 724050 13743 19930301 35.3 24 12.4 24 1020.5 24 1018.2 24 12.1 24 8.8 24 12.0 15.0 50.0* 21.9 0.00G 999.9 000000 724050 13743 19930302 44.1 24 30.4 24 1012.5 24 1010.2 24 12.9 24 7.5 24 15.9 21.0 60.1* 26.1 0.00G 999.9 000000 724050 13743 19930303 47.4 24 36.7 24 1013.2 24 1010.9 24 10.2 24 6.1 24 12.0 999.9 61.0 30.9 0.00G 999.9 000000 724050 13743 19930304 41.0 24 38.7 24 1006.6 24 1004.3 24 3.9 24 18.1 24 33.0 47.8 54.0 38.8 0.52G 999.9 110000 724050 13743 19930305 40.3 24 37.9 24 1002.7 24 1000.3 24 7.4 24 7.6 24 14.0 21.0 48.9* 36.0 0.44G 999.9 111000 724050 13743 19930306 40.3 24 30.4 24 1010.9 24 1008.6 24 12.6 24 10.2 24 15.0 22.0 48.9 36.0 0.06G 999.9 010000 724050 13743 19930307 41.5 24 27.4 24 1016.5 24 1014.1 24 13.1 24 7.9 24 13.0 999.9 55.9* 30.0 0.00G 999.9 000000 724050 13743 19930308 47.1 24 35.2 24 1007.3 24 1005.0 24 13.9 24 7.8 24 22.9 28.9 59.0 30.0 0.00G 999.9 010010 724050 13743 19930309 45.2 24 28.0 24 1012.8 24 1010.5 24 15.1 24 10.7 24 15.9 23.9 60.1 36.0 0.08G 999.9 000000 724050 13743 19930310 39.6 24 29.0 24 1015.9 24 1013.6 24 10.1 24 7.4 24 12.0 999.9 51.1 32.0 0.14G 999.9 111000 724050 13743 19930311 41.4 24 27.8 24 1012.3 24 1009.9 24 14.7 24 11.0 24 15.9 24.9 44.1 32.0 0.01G 999.9 010000 724050 13743 19930312 36.1 24 19.4 24 1023.7 24 1021.4 24 13.8 24 6.8 24 13.0 15.9 45.0 28.0 0.00G 999.9 000000 724050 13743 19930313 34.1 24 31.0 24 1001.5 24 999.4 23 3.7 24 14.5 24 31.1 38.9 46.0 28.0 1.59G 3.9 111010 724050 13743 19930314 26.2 24 10.4 24 995.0 24 992.6 24 9.7 24 17.8 24 28.0 35.9 35.1 24.1 0.72G 4.7 101000 724050 13743 19930315 23.9 24 4.4 24 1030.9 24 1028.5 24 12.7 24 8.3 24 13.0 16.9 33.1* 15.1 0.00G 4.3 000000 724050 13743 19930316 34.7 24 21.7 24 1035.4 24 1033.0 24 12.7 24 12.4 24 17.1 21.0 45.0* 15.1 0.00G 999.9 000000 724050 13743 19930317 41.5 24 39.7 24 1025.1 24 1022.7 24 5.4 24 6.6 24 12.0 999.9 46.0 28.0 0.76G 0.8 110000 724050 13743 19930318 28.6 24 11.9 24 1030.3 24 1027.9 24 17.6 24 16.8 24 22.0 28.9 46.0 19.0 0.19G 0.4 000000 724050 13743 19930319 26.0 24 6.1 24 1039.9 24 1037.5 24 14.6 24 9.1 24 14.0 999.9 36.0* 18.0 0.00G 999.9 000000 724050 13743 19930320 34.5 24 23.1 24 1035.6 24 1033.2 24 12.8 24 6.7 24 10.1 999.9 44.1* 18.0 0.00G 999.9 000000 724050 13743 19930321 42.9 24 35.2 24 1028.4 24 1026.0 24 10.4 24 7.2 24 10.1 999.9 57.0* 28.9 0.10G 999.9 110000 724050 13743 19930322 47.2 24 40.0 24 1029.5 24 1027.1 24 8.7 24 6.0 24 11.1 999.9 57.0 36.0 0.00D 999.9 100000 724050 13743 19930323 44.2 24 39.1 24 1030.1 24 1027.7 24 6.2 24 7.8 24 11.8 999.9 55.9 39.9 0.03G 999.9 110000 724050 13743 19930324 48.6 24 45.2 24 1020.5 24 1018.1 24 5.4 24 7.7 24 10.1 999.9 60.1* 43.0 0.66G 999.9 110000 724050 13743 19930325 48.0 24 42.6 24 1023.2 24 1020.8 24 8.3 24 8.4 24 13.0 999.9 61.0 43.0 0.14G 999.9 110000 724050 13743 19930326 48.0 24 40.5 24 1023.8 24 1021.4 24 8.3 24 5.3 24 8.9 999.9 62.1* 37.0 0.00G 999.9 100000 724050 13743 19930327 47.1 24 44.8 24 1018.9 24 1016.5 24 6.8 24 8.1 24 18.8 999.9 63.0 37.0 0.12G 999.9 110000 724050 13743 19930328 51.9 24 51.3 24 1010.3 24 1007.9 24 3.1 24 7.1 24 11.1 999.9 57.9* 44.1 0.57G 999.9 110010 724050 13743 19930329 53.1 24 51.7 24 1008.1 24 1005.8 24 5.1 24 4.6 24 10.1 999.9 60.1 50.0 0.04G 999.9 110000 724050 13743 19930330 57.5 24 50.6 24 1007.4 24 1005.0 24 11.6 24 11.0 24 15.0 21.0 66.9* 50.0 0.12G 999.9 110000 724050 13743 19930331 56.3 24 48.6 24 1012.0 24 1009.6 24 12.3 24 6.5 24 15.9 999.9 69.1 46.0 0.00G 999.9 010000 724050 13743 19930401 55.7 24 52.4 24 1003.0 24 1000.6 24 6.7 24 7.6 24 14.0 999.9 69.1* 46.0 0.26G 999.9 110010 724050 13743 19930402 54.1 24 52.5 24 1003.2 24 1000.8 24 6.4 24 6.3 24 12.0 999.9 69.1 48.9 0.35G 999.9 110010 724050 13743 19930403 46.6 24 29.5 24 1016.2 24 1013.8 24 16.3 24 14.2 24 18.1 25.8 57.0 41.0 0.01G 999.9 010000 724050 13743 19930404 44.0 24 25.7 24 1023.0 24 1020.6 24 14.9 24 8.4 24 12.0 999.9 52.0 37.0 0.00G 999.9 000000 724050 13743 19930405 43.6 24 31.2 24 1023.7 24 1021.3 24 14.3 24 8.2 24 14.0 999.9 53.1 37.0 0.00G 999.9 000000 724050 13743 19930406 45.6 24 31.2 24 1021.1 24 1018.7 24 12.6 24 10.7 24 16.9 999.9 51.1* 39.9 0.00G 999.9 000000 724050 13743 19930407 48.8 24 30.4 24 1023.4 24 1021.0 24 15.7 24 7.6 24 12.0 999.9 61.0* 35.1 0.00G 999.9 000000 724050 13743 19930408 52.6 24 32.4 24 1021.6 24 1019.2 24 13.7 24 4.8 24 11.8 999.9 66.9* 35.1 0.00G 999.9 000000 724050 13743 19930409 53.2 24 43.1 24 1016.7 24 1014.4 24 11.6 24 6.6 24 12.0 999.9 66.9 39.0 0.00G 999.9 000000 724050 13743 19930410 55.4 24 54.7 24 1002.2 24 999.9 24 6.4 24 8.8 24 21.0 36.9 61.0 46.0 0.45G 999.9 110010 724050 13743 19930411 52.2 24 35.3 24 1007.7 24 1005.3 24 15.8 24 13.8 24 21.0 36.9 63.0* 43.0 0.18G 999.9 010000 724050 13743 19930412 54.3 24 44.6 24 1009.1 24 1006.8 24 14.0 24 8.5 24 15.0 24.9 64.0 43.0 0.08G 999.9 010010 724050 13743 19930413 52.6 24 39.9 24 1014.2 24 1011.8 24 13.0 24 10.0 24 14.0 18.8 64.0* 41.0 0.00D 999.9 000000 724050 13743 19930414 55.6 24 45.4 24 1015.5 24 1013.1 24 12.0 24 6.0 24 12.0 999.9 66.9 41.0 0.00G 999.9 000000 724050 13743 19930415 62.0 24 54.9 24 1013.7 24 1011.4 24 10.5 24 8.7 24 17.1 999.9 77.0* 46.0 0.00G 999.9 100000 724050 13743 19930416 64.9 24 61.2 24 1008.0 24 1005.6 24 9.7 24 13.1 24 18.1 22.9 79.0 51.1 0.00G 999.9 110010 724050 13743 19930417 56.4 24 44.4 24 1007.7 24 1005.3 24 16.4 24 12.1 24 17.1 22.9 66.9 48.0 0.11G 999.9 010000 724050 13743 19930418 52.4 24 33.8 24 1017.1 24 1014.7 24 15.4 24 9.5 24 17.1 21.0 64.9* 39.0 0.00G 999.9 000000 724050 13743 19930419 59.6 24 43.3 24 1016.6 24 1014.2 24 16.2 24 9.6 24 18.1 23.9 73.0 39.0 0.00G 999.9 000000 724050 13743 19930420 65.2 24 50.1 24 1014.1 24 1011.7 24 15.9 24 13.7 24 19.0 23.9 78.1* 46.9 0.00G 999.9 000000 724050 13743 19930421 62.2 24 56.0 24 1010.3 24 1008.0 24 12.7 24 9.7 24 17.1 999.9 78.1 55.9 0.00G 999.9 110000 724050 13743 19930422 46.1 24 41.5 24 1004.3 24 1002.0 24 9.7 24 14.6 24 21.0 28.9 64.9 39.0 1.12G 999.9 110010 724050 13743 19930423 53.7 24 25.3 24 1007.7 24 1005.4 24 14.5 24 15.0 24 22.0 35.9 64.9* 39.0 0.02G 999.9 000000 724050 13743 19930424 55.3 24 37.5 24 1018.7 24 1016.4 24 13.7 24 6.9 24 14.0 999.9 66.0 39.0 0.00G 999.9 010000 724050 13743 19930425 64.8 24 51.5 24 1016.6 24 1014.3 24 13.5 24 11.2 24 18.1 24.9 79.0* 39.0 0.00G 999.9 000000 724050 13743 19930426 64.5 24 57.9 24 1012.4 24 1010.0 24 11.3 24 12.0 24 21.0 29.9 81.0 51.1* 0.00G 999.9 110010 724050 13743 19930427 50.3 24 35.5 24 1022.8 24 1020.4 24 17.8 24 15.2 24 22.9 33.8 71.1 39.9 0.20G 999.9 000000 724050 13743 19930428 54.5 24 39.6 24 1027.6 24 1025.2 24 14.3 24 5.3 24 11.1 999.9 68.0* 39.9 0.00G 999.9 000000 724050 13743 19930429 57.3 24 42.9 24 1023.6 24 1021.2 24 17.4 24 4.9 24 12.0 999.9 73.0* 42.1 0.00G 999.9 000000 724050 13743 19930430 61.1 24 50.1 24 1018.8 24 1016.4 24 12.6 24 5.6 24 8.9 999.9 75.0* 45.0 0.00G 999.9 000000 724050 13743 19930501 65.2 24 52.9 24 1019.9 24 1017.5 24 11.5 24 5.1 24 10.1 999.9 80.1* 48.9 0.00G 999.9 000000 724050 13743 19930502 69.0 24 55.8 24 1021.2 24 1018.9 24 10.7 24 6.0 24 12.0 999.9 84.0* 53.1 0.00G 999.9 000000 724050 13743 19930503 67.3 24 56.0 24 1025.6 24 1023.2 24 10.0 24 9.1 24 13.0 18.8 84.0 57.0 0.00G 999.9 100000 724050 13743 19930504 64.9 24 59.6 24 1024.1 24 1021.7 24 8.0 24 8.7 24 13.0 999.9 75.0 57.9 0.00G 999.9 100000 724050 13743 19930505 67.3 24 63.9 24 1019.6 24 1017.2 24 10.0 24 8.4 24 28.0 39.8 77.0* 57.9 0.11G 999.9 010110 724050 13743 19930506 67.6 24 59.5 24 1017.9 24 1015.5 24 7.4 24 8.3 24 15.0 18.8 79.0 57.9 1.15G 999.9 110010 724050 13743 19930507 68.5 24 53.3 24 1018.2 24 1015.8 24 13.3 24 8.2 24 14.0 999.9 80.1 57.9 0.00G 999.9 000000 724050 13743 19930508 66.2 24 53.1 24 1022.9 24 1020.5 24 13.3 24 6.4 24 13.0 999.9 79.0 55.0 0.00G 999.9 000000 724050 13743 19930509 67.2 24 59.0 24 1022.6 24 1020.2 24 11.9 24 8.2 24 10.1 999.9 79.0* 55.0 0.00G 999.9 000000 724050 13743 19930510 71.2 24 61.4 24 1020.8 24 1018.4 24 9.7 24 6.8 24 10.1 999.9 82.9* 57.9 0.00G 999.9 000000 724050 13743 19930511 73.8 24 64.1 24 1016.4 24 1014.0 24 7.2 24 8.9 24 14.0 999.9 88.0* 61.0 0.00G 999.9 000000 724050 13743 19930512 75.8 24 60.5 24 1006.6 24 1004.3 24 8.3 24 8.3 24 33.8 46.8 89.1 62.1 0.00G 999.9 010010 724050 13743 19930513 65.8 24 61.8 24 1003.2 24 1000.8 24 7.9 24 8.4 24 14.0 19.8 82.0 61.0* 0.28G 999.9 110010 724050 13743 19930514 62.2 24 51.5 24 1007.2 24 1004.9 24 11.9 24 7.8 24 12.0 999.9 75.0 53.1 0.03G 999.9 010000 724050 13743 19930515 67.3 24 57.3 24 1009.3 24 1006.9 24 12.8 24 9.1 24 15.0 999.9 81.0* 53.1 0.00G 999.9 000000 724050 13743 19930516 71.1 24 62.5 24 1009.8 24 1007.4 24 8.8 24 8.6 24 22.9 46.8 82.9* 55.9 0.00G 999.9 110010 724050 13743 19930517 65.3 24 57.6 24 1013.3 24 1010.9 24 8.5 24 8.3 24 14.0 999.9 82.9 57.9 0.34G 999.9 110000 724050 13743 19930518 61.3 24 56.7 24 1012.4 24 1010.0 24 7.0 24 9.5 24 14.0 999.9 73.9 55.9 0.44G 999.9 110000 724050 13743 19930519 58.3 24 57.8 24 1006.0 24 1003.7 24 4.6 24 6.0 24 11.1 999.9 64.9 55.9 0.42G 999.9 110010 724050 13743 19930520 59.3 24 50.7 24 1007.0 24 1004.7 24 8.0 24 10.0 24 15.0 17.9 66.9* 53.1 0.17G 999.9 110000 724050 13743 19930521 58.5 24 40.4 24 1011.6 24 1009.2 24 16.8 24 9.1 24 14.0 15.9 66.9 48.0 0.01G 999.9 000000 724050 13743 19930522 60.3 24 43.7 24 1015.1 24 1012.7 24 13.9 24 10.2 24 14.0 999.9 69.1 48.0 0.00G 999.9 000000 724050 13743 19930523 62.3 24 47.3 24 1018.7 24 1016.3 24 14.4 24 7.0 24 12.0 999.9 73.9* 50.0 0.00G 999.9 000000 724050 13743 19930524 69.7 24 58.5 24 1015.7 24 1013.3 24 13.0 24 9.8 24 15.0 21.0 80.1* 50.0 0.00G 999.9 000000 724050 13743 19930525 74.0 24 63.2 24 1014.9 24 1012.5 24 10.6 24 10.3 24 15.0 22.9 82.0* 62.1 0.00G 999.9 000000 724050 13743 19930526 69.5 24 54.6 24 1018.5 24 1016.2 24 12.7 24 10.4 24 15.0 19.8 82.9 63.0 0.00G 999.9 010000 724050 13743 19930527 69.1 24 51.9 24 1020.5 24 1018.1 24 14.4 24 8.0 24 14.0 999.9 82.9* 54.0 0.00G 999.9 000000 724050 13743 19930528 74.2 24 62.9 24 1018.0 24 1015.6 24 11.8 24 10.7 24 15.9 22.0 86.0* 54.0 0.00G 999.9 000000 724050 13743 19930529 73.7 24 62.0 24 1015.0 24 1012.7 24 13.0 24 9.9 24 19.0 24.9 86.0 64.9 0.00G 999.9 000000 724050 13743 19930530 65.3 24 45.7 24 1019.8 24 1017.4 24 15.1 24 7.8 24 12.0 999.9 78.1 54.0 0.00G 999.9 000000 724050 13743 19930531 68.0 24 58.6 24 1010.8 24 1008.4 24 14.0 24 13.0 24 18.1 24.9 78.1 54.0 0.00G 999.9 010010 724050 13743 19930601 65.6 24 54.1 24 1008.9 24 1006.6 24 13.7 24 12.3 24 18.1 23.9 80.1 55.9 0.46G 999.9 110000 724050 13743 19930602 62.5 24 46.6 24 1014.5 24 1012.1 24 14.4 24 7.7 24 13.0 999.9 73.0 51.1 0.00G 999.9 010000 724050 13743 19930603 64.0 24 58.7 24 1012.6 24 1010.2 24 7.7 24 6.5 24 10.1 999.9 73.0* 51.1 0.33G 999.9 110000 724050 13743 19930604 67.3 24 62.5 24 1010.6 24 1008.3 24 7.9 24 7.5 24 14.0 999.9 73.9 57.0 0.00D 999.9 110000 724050 13743 19930605 66.5 24 64.4 24 1010.3 24 1007.9 24 5.9 24 7.2 24 10.9 999.9 81.0* 60.1 0.27G 999.9 110010 724050 13743 19930606 66.2 24 50.0 24 1016.1 24 1013.7 24 14.1 24 12.2 24 15.9 24.9 81.0 57.0 0.06G 999.9 000000 724050 13743 19930607 68.9 24 55.9 24 1018.4 24 1016.0 24 13.5 24 6.5 24 11.1 999.9 79.0* 55.9 0.00G 999.9 000000 724050 13743 19930608 73.0 24 69.0 24 1015.0 24 1012.6 24 7.1 24 6.7 24 14.0 999.9 82.9* 55.9 0.65G 999.9 110010 724050 13743 19930609 79.0 24 73.2 24 1013.2 24 1010.8 24 5.8 24 7.5 24 12.0 999.9 93.0* 64.9 0.40G 999.9 100000 724050 13743 19930610 79.9 24 67.6 24 1013.7 24 1011.3 24 11.5 24 8.8 24 18.1 22.9 93.0 68.0 0.08G 999.9 010010 724050 13743 19930611 80.2 24 65.5 24 1015.9 24 1013.5 24 12.6 24 10.5 24 22.0 26.8 93.9 68.0 0.00G 999.9 010000 724050 13743 19930612 73.0 24 60.4 24 1021.0 24 1018.6 24 11.5 24 8.4 24 14.0 999.9 87.1 66.0 0.00G 999.9 000000 724050 13743 19930613 68.7 24 59.9 24 1023.7 24 1021.3 24 14.7 24 8.4 24 12.0 999.9 77.0 61.0 0.00G 999.9 000000 724050 13743 19930614 70.0 24 55.5 24 1022.0 24 1019.7 24 15.7 24 6.4 24 15.9 999.9 80.1* 59.0 0.00G 999.9 000000 724050 13743 19930615 72.6 24 65.8 24 1018.0 24 1015.6 24 9.6 24 10.0 24 15.9 999.9 82.0 59.0 0.00G 999.9 100000 724050 13743 19930616 76.4 24 61.9 24 1020.0 24 1017.6 24 13.4 24 8.0 24 14.0 999.9 84.9* 66.0 0.00G 999.9 000000 724050 13743 19930617 77.0 24 63.0 24 1023.2 24 1020.8 24 10.0 24 5.6 24 10.1 999.9 87.1* 64.9 0.00G 999.9 000000 724050 13743 19930618 81.6 24 68.7 24 1022.0 24 1019.6 24 6.6 24 8.5 24 13.0 999.9 93.9* 64.9 0.00G 999.9 000000 724050 13743 19930619 84.3 24 72.3 24 1019.0 24 1016.6 24 5.7 24 7.3 24 13.0 15.9 96.1* 71.1 0.00G 999.9 010010 724050 13743 19930620 81.0 24 74.2 24 1018.9 24 1016.6 24 5.8 24 6.3 24 18.8 35.0 96.1 73.0 0.33G 999.9 110010 724050 13743 19930621 78.2 24 70.4 24 1015.3 24 1013.0 24 7.2 24 9.2 24 15.9 22.0 91.9 72.0 0.00G 999.9 100000 724050 13743 19930622 79.0 24 66.5 24 1010.4 24 1008.1 24 9.5 24 10.1 24 15.0 16.9 88.0* 72.0 0.00G 999.9 010000 724050 13743 19930623 77.8 24 54.6 24 1016.0 24 1013.6 24 12.8 24 10.9 24 15.9 17.9 89.1 66.9 0.00G 999.9 000000 724050 13743 19930624 74.6 24 50.8 24 1023.4 24 1021.1 24 16.7 24 6.0 24 12.0 999.9 87.1* 61.0 0.00G 999.9 000000 724050 13743 19930625 75.8 24 62.7 24 1024.0 24 1021.7 24 13.0 24 9.3 24 12.0 999.9 88.0 61.0 0.00G 999.9 000000 724050 13743 19930626 78.2 24 67.3 24 1018.6 24 1016.3 24 10.8 24 10.6 24 15.0 19.8 89.1 64.0 0.00G 999.9 000000 724050 13743 19930627 78.0 24 64.9 24 1015.1 24 1012.7 24 12.9 24 7.9 24 15.0 19.8 90.0 66.9 0.01G 999.9 010010 724050 13743 19930628 81.4 24 65.1 24 1012.8 24 1010.4 24 12.6 24 8.6 24 15.0 24.9 96.1 68.0 0.00D 999.9 000000 724050 13743 19930629 81.5 24 67.8 24 1012.5 24 1010.1 24 10.4 24 7.9 24 15.9 999.9 96.1 70.0 0.00G 999.9 010000 724050 13743 19930630 78.8 24 68.1 24 1014.4 24 1012.0 24 6.3 24 7.6 24 12.0 999.9 90.0 72.0 0.00G 999.9 100000 724050 13743 19930701 75.8 24 68.8 24 1016.9 24 1014.5 24 6.0 24 6.3 24 10.1 999.9 89.1 72.0 0.05G 999.9 110000 724050 13743 19930702 74.0 24 70.5 24 1016.8 24 1014.4 24 6.0 24 7.1 24 12.0 999.9 80.1* 71.1 0.11G 999.9 110000 724050 13743 19930703 79.1 24 74.6 24 1013.2 24 1010.9 24 4.0 24 5.6 24 19.8 25.8 90.0 71.1 0.18G 999.9 110010 724050 13743 19930704 82.3 24 73.3 24 1014.3 24 1011.9 24 7.8 24 5.1 24 8.0 999.9 95.0 72.0 0.30G 999.9 100010 724050 13743 19930705 86.4 24 75.6 24 1016.6 24 1014.2 24 5.7 24 4.2 24 10.1 999.9 96.1 72.0 0.00G 999.9 110010 724050 13743 19930706 85.2 24 77.4 24 1017.4 24 1015.0 24 5.3 24 7.9 24 12.0 999.9 96.1 75.9 0.02G 999.9 100000 724050 13743 19930707 86.5 24 75.8 24 1016.7 24 1014.4 24 6.3 24 7.0 24 18.8 25.8 98.1 75.9 0.06G 999.9 110010 724050 13743 19930708 89.1 24 74.2 24 1016.1 24 1013.7 24 6.5 24 7.5 24 12.0 999.9 100.0* 75.9 0.00D 999.9 100000 724050 13743 19930709 88.4 24 71.2 24 1016.2 24 1013.8 24 8.6 24 5.6 24 12.0 12.8 100.0 75.9 0.00G 999.9 000000 724050 13743 19930710 90.7 24 74.3 24 1015.7 24 1013.3 24 7.9 24 7.6 24 14.0 19.8 100.0 75.9 0.00G 999.9 100000 724050 13743 19930711 88.8 24 68.8 24 1014.5 24 1012.1 24 11.3 24 8.2 24 12.0 999.9 100.0 78.1 0.00G 999.9 000000 724050 13743 19930712 85.2 24 69.2 24 1010.5 24 1008.2 24 8.9 24 8.6 24 15.0 17.9 98.1 75.9 0.00G 999.9 000000 724050 13743 19930713 87.6 24 67.7 24 1014.7 24 1012.3 24 8.3 24 6.9 24 11.1 999.9 98.1* 75.9 0.00G 999.9 000000 724050 13743 19930714 85.4 24 74.8 24 1017.0 24 1014.7 24 7.6 24 7.2 24 12.0 999.9 98.1 78.1 0.06G 999.9 110010 724050 13743 19930715 82.1 24 71.2 24 1015.4 24 1013.1 24 7.6 24 7.9 24 14.0 19.8 97.0 75.9 0.21G 999.9 110010 724050 13743 19930716 80.2 24 57.9 24 1015.7 24 1013.4 24 16.1 24 8.7 24 13.0 15.9 93.0 70.0 0.00G 999.9 000000 724050 13743 19930717 79.5 24 56.5 24 1015.5 24 1013.2 24 17.8 24 8.3 24 13.0 999.9 91.0 68.0 0.00G 999.9 000000 724050 13743 19930718 79.3 24 62.2 24 1018.5 24 1016.1 24 17.0 24 7.1 24 12.0 999.9 90.0 68.0 0.00G 999.9 000000 724050 13743 19930719 79.5 24 70.8 24 1015.8 24 1013.4 24 9.4 24 10.1 24 14.0 999.9 90.0 68.0 0.00G 999.9 110000 724050 13743 19930720 83.3 24 72.6 24 1011.8 24 1009.5 24 6.4 24 9.0 24 18.8 24.9 96.1* 74.8 0.03G 999.9 110010 724050 13743 19930721 82.0 24 62.9 24 1015.0 24 1012.6 24 11.6 24 7.5 24 12.0 14.0 96.1 72.0 0.00G 999.9 000000 724050 13743 19930722 79.8 24 57.7 24 1016.7 24 1014.4 24 15.7 24 8.6 24 12.0 15.9 88.0 72.0 0.00G 999.9 000000 724050 13743 19930723 78.3 24 51.6 24 1016.9 24 1014.6 24 17.3 24 9.4 24 14.0 15.9 88.0 66.0 0.00G 999.9 000000 724050 13743 19930724 78.7 24 63.6 24 1017.9 24 1015.6 24 11.4 24 5.8 24 10.1 999.9 91.0 66.0 0.00G 999.9 000000 724050 13743 19930725 81.4 24 74.6 24 1018.1 24 1015.7 24 7.2 24 6.3 24 8.9 999.9 91.9 66.0 0.34G 999.9 110010 724050 13743 19930726 79.7 24 71.0 24 1018.4 24 1016.1 24 8.7 24 8.9 24 15.0 999.9 91.0 73.9 0.00D 999.9 110000 724050 13743 19930727 81.8 24 73.9 24 1013.6 24 1011.2 24 8.0 24 10.6 24 14.0 17.9 91.9* 73.9 0.00G 999.9 110000 724050 13743 19930728 86.9 24 71.6 24 1012.8 24 1010.4 24 9.9 24 7.0 24 12.0 15.9 99.0* 75.0 0.00G 999.9 000000 724050 13743 19930729 85.6 24 70.9 24 1010.1 24 1007.8 24 11.8 24 10.5 24 21.0 28.0 100.0 73.9 0.00G 999.9 010010 724050 13743 19930730 82.1 24 61.9 24 1009.7 24 1007.3 24 15.2 24 9.9 24 15.9 22.9 99.0 72.0 0.00G 999.9 000000 724050 13743 19930731 75.7 24 62.8 24 1013.4 24 1011.0 24 15.9 24 9.1 24 14.0 999.9 90.0 69.1 0.00G 999.9 000000 724050 13743 19930801 80.2 24 66.2 24 1013.1 24 1010.7 24 13.3 24 5.8 24 8.9 999.9 91.9* 69.1 0.00G 999.9 000000 724050 13743 19930802 81.3 24 69.9 24 1010.1 24 1007.8 24 11.1 24 7.5 24 14.0 19.8 95.0 69.1 0.00G 999.9 000010 724050 13743 19930803 82.6 24 70.3 24 1014.2 24 1011.8 24 9.8 24 6.9 24 12.0 999.9 96.1 72.0 0.00G 999.9 000000 724050 13743 19930804 80.6 24 69.0 24 1016.5 24 1014.1 24 10.3 24 8.3 24 26.8 32.8 91.0 71.1 0.00G 999.9 110010 724050 13743 19930805 75.6 24 63.4 24 1018.1 24 1015.7 24 11.3 24 6.8 24 12.0 999.9 93.0 66.9 0.00G 999.9 100000 724050 13743 19930806 70.7 24 65.9 24 1015.6 24 1013.2 24 6.9 24 9.9 24 19.8 22.9 86.0 64.9* 0.00G 999.9 110010 724050 13743 19930807 71.3 24 65.7 24 1016.7 24 1014.3 24 6.9 24 6.3 24 10.1 999.9 82.0* 64.9 0.71G 999.9 100000 724050 13743 19930808 75.2 24 65.5 24 1022.0 24 1019.7 24 8.3 24 5.4 24 8.9 999.9 86.0* 64.9 0.01G 999.9 100000 724050 13743 19930809 75.8 24 69.8 24 1024.9 24 1022.6 24 6.2 24 5.1 24 15.0 22.9 86.0 64.9 0.00G 999.9 110010 724050 13743 19930810 75.2 24 69.0 24 1024.3 24 1021.9 24 6.8 24 6.7 24 11.1 999.9 86.0 66.9 0.36G 999.9 100000 724050 13743 19930811 76.0 24 69.7 24 1021.8 24 1019.4 24 8.9 24 8.1 24 12.0 999.9 86.0 66.9 0.00G 999.9 000000 724050 13743 19930812 75.5 24 70.1 24 1018.7 24 1016.3 24 7.4 24 6.1 24 18.1 24.9 87.1* 64.0 0.49G 999.9 110010 724050 13743 19930813 78.6 24 74.0 24 1015.5 24 1013.1 24 5.9 24 5.5 24 15.0 24.9 89.1 66.0 0.25G 999.9 110000 724050 13743 19930814 80.1 24 73.0 24 1015.6 24 1013.2 24 6.6 24 5.3 24 11.1 999.9 91.9 71.1 0.03G 999.9 100000 724050 13743 19930815 82.1 24 71.7 24 1016.0 24 1013.6 24 8.5 24 4.9 24 11.1 999.9 93.0* 71.1 0.00G 999.9 100000 724050 13743 19930816 81.3 24 74.9 24 1015.8 24 1013.4 24 7.5 24 6.8 24 11.1 999.9 93.0 72.0 0.00G 999.9 100000 724050 13743 19930817 80.2 24 76.0 24 1012.4 24 1010.0 24 4.5 24 7.3 24 19.8 22.0 90.0 73.0 0.01G 999.9 110010 724050 13743 19930818 76.6 24 69.8 24 1014.0 24 1011.6 24 6.0 24 8.1 24 15.9 999.9 89.1 69.1 1.01G 999.9 110010 724050 13743 19930819 78.2 24 69.0 24 1017.4 24 1015.0 24 9.4 24 5.9 24 8.9 999.9 87.1 69.1 0.00G 999.9 000000 724050 13743 19930820 78.7 24 70.8 24 1013.6 24 1011.2 24 8.8 24 9.1 24 14.0 999.9 88.0* 70.0 0.00G 999.9 000000 724050 13743 19930821 80.1 24 67.5 24 1012.5 24 1010.1 24 9.2 24 9.2 24 14.0 999.9 88.0 71.1 0.02G 999.9 110010 724050 13743 19930822 74.1 24 58.2 24 1018.9 24 1016.5 24 17.4 24 6.5 24 10.1 999.9 86.0 62.1 0.00G 999.9 000000 724050 13743 19930823 75.4 24 65.1 24 1019.0 24 1016.6 24 12.1 24 7.5 24 14.0 999.9 84.9 62.1 0.00G 999.9 000000 724050 13743 19930824 77.9 24 69.0 24 1018.3 24 1016.0 24 9.7 24 10.7 24 14.0 999.9 88.0* 66.0 0.00G 999.9 000000 724050 13743 19930825 81.4 24 69.9 24 1019.1 24 1016.8 24 7.9 24 7.9 24 13.0 999.9 91.9* 70.0 0.00G 999.9 000000 724050 13743 19930826 84.5 24 75.7 24 1020.9 24 1018.5 24 4.2 24 5.2 24 10.1 999.9 95.0* 73.0 0.00G 999.9 100000 724050 13743 19930827 82.9 24 76.1 24 1018.9 24 1016.5 24 4.9 24 6.8 24 14.0 31.9 96.1 75.9 0.00G 999.9 110010 724050 13743 19930828 83.2 24 75.9 24 1014.9 24 1012.6 24 5.1 24 6.6 24 12.8 19.8 93.9 75.0 0.00G 999.9 100010 724050 13743 19930829 84.2 24 70.2 24 1016.1 24 1013.7 24 8.7 24 6.4 24 13.0 999.9 95.0 75.0 0.00G 999.9 000000 724050 13743 19930830 82.9 24 70.8 24 1018.0 24 1015.6 24 11.1 24 6.1 24 10.1 999.9 93.0 73.9 0.00G 999.9 100000 724050 13743 19930831 81.3 24 72.1 24 1016.6 24 1014.2 24 8.6 24 7.1 24 12.0 999.9 93.0 72.0 0.00G 999.9 100000 724050 13743 19930901 82.5 24 74.8 24 1014.0 24 1011.6 24 7.5 24 7.8 24 12.0 19.8 93.9* 72.0 0.00G 999.9 110000 724050 13743 19930902 82.7 24 75.1 24 1017.8 24 1015.4 24 6.8 24 8.1 24 15.9 999.9 93.9 75.0 0.00G 999.9 110000 724050 13743 19930903 86.1 24 76.4 24 1015.5 24 1013.1 24 11.0 24 14.0 24 22.0 29.9 95.0 75.0 0.00G 999.9 000000 724050 13743 19930904 80.9 24 73.9 24 1011.5 24 1009.1 24 12.0 24 8.9 24 13.0 18.8 96.1 75.0 0.17G 999.9 110000 724050 13743 19930905 77.2 24 68.3 24 1013.6 24 1011.3 24 9.9 24 6.6 24 10.1 999.9 86.0 69.1 0.01G 999.9 010000 724050 13743 19930906 77.3 24 67.5 24 1017.2 24 1014.9 24 9.3 24 5.1 24 8.9 999.9 87.1* 66.0 0.00G 999.9 100000 724050 13743 19930907 77.9 24 70.3 24 1017.5 24 1015.1 24 7.2 24 7.2 24 11.1 999.9 88.0 66.0 0.00G 999.9 100000 724050 13743 19930908 74.1 24 71.3 24 1015.8 24 1013.4 24 5.1 24 5.1 24 8.9 14.0 88.0 69.1 0.84G 999.9 110010 724050 13743 19930909 74.9 24 70.6 24 1012.3 24 1009.9 24 4.7 24 7.2 24 15.0 999.9 84.0* 68.0 0.00D 999.9 100000 724050 13743 19930910 77.5 24 65.0 24 1007.2 24 1004.8 24 8.5 24 10.4 24 16.9 22.9 84.0 68.0 0.12G 999.9 110010 724050 13743 19930911 67.0 24 41.5 24 1016.7 24 1014.4 24 17.4 24 10.6 24 15.9 21.0 84.0 59.0 0.00G 999.9 000000 724050 13743 19930912 66.4 24 48.5 24 1023.2 24 1020.8 24 13.0 24 6.6 24 14.0 19.8 79.0* 53.1 0.00G 999.9 000000 724050 13743 19930913 73.2 24 58.3 24 1025.2 24 1022.8 24 13.4 24 11.0 24 15.0 999.9 87.1 53.1 0.00G 999.9 000000 724050 13743 19930914 75.6 24 65.6 24 1023.8 24 1021.5 24 10.4 24 10.4 24 15.9 18.8 87.1 64.0 0.00G 999.9 000000 724050 13743 19930915 79.7 24 69.5 24 1018.1 24 1015.7 24 10.8 24 11.0 24 14.0 999.9 91.0* 66.9 0.00G 999.9 000000 724050 13743 19930916 72.1 24 69.6 24 1019.2 24 1016.8 24 6.7 24 8.3 24 16.9 999.9 91.9 68.0 0.14G 999.9 110000 724050 13743 19930917 65.4 24 64.6 24 1021.0 24 1018.7 24 3.6 24 9.3 24 12.0 999.9 73.9 63.9 0.48G 999.9 110000 724050 13743 19930918 67.3 24 64.5 24 1017.5 24 1015.1 24 6.1 24 6.6 24 11.1 999.9 75.0* 64.0 0.24G 999.9 110000 724050 13743 19930919 66.9 24 57.1 24 1018.7 24 1016.3 24 10.4 24 7.3 24 12.0 999.9 75.0 57.9 0.18G 999.9 100000 724050 13743 19930920 60.8 24 47.2 24 1022.6 24 1020.3 24 15.9 24 6.7 24 10.1 999.9 73.9 53.1 0.00G 999.9 000000 724050 13743 19930921 65.2 24 60.0 24 1018.1 24 1015.7 24 8.4 24 8.1 24 15.0 19.8 73.0* 53.1 0.19G 999.9 110010 724050 13743 19930922 66.9 24 61.2 24 1019.6 24 1017.2 24 5.8 24 8.1 24 12.0 999.9 73.9 60.1 0.18G 999.9 110000 724050 13743 19930923 66.8 24 62.4 24 1018.5 24 1016.1 24 6.6 24 7.3 24 11.8 999.9 75.9* 61.0 0.00G 999.9 100000 724050 13743 19930924 68.2 24 54.4 24 1018.0 24 1015.6 24 15.9 24 9.0 24 15.0 999.9 75.9 60.1 0.00G 999.9 000000 724050 13743 19930925 62.1 24 54.5 24 1019.9 24 1017.6 24 13.9 24 4.3 24 11.8 999.9 73.0 57.9* 0.00G 999.9 110000 724050 13743 19930926 67.1 24 63.1 24 1012.2 24 1009.8 24 5.6 24 10.1 24 18.1 22.0 84.0* 56.8 0.50G 999.9 110000 724050 13743 19930927 71.0 24 68.2 24 1009.4 24 1007.0 24 7.5 24 7.9 24 21.0 31.9 84.0 59.0 0.35G 999.9 110010 724050 13743 19930928 58.1 24 45.9 24 1014.5 24 1012.1 24 14.6 24 9.0 24 15.9 21.0 79.0 46.9 0.40G 999.9 010000 724050 13743 19930929 58.8 24 45.5 24 1019.4 24 1017.0 24 17.3 24 8.4 24 14.0 21.0 66.9 46.9 0.00G 999.9 000000 724050 13743 19930930 54.5 24 43.1 24 1022.2 24 1019.8 24 13.7 24 10.3 24 15.9 22.9 66.0 48.9 0.04G 999.9 010000 724050 13743 19931001 52.1 24 42.0 24 1025.3 24 1022.9 24 14.3 24 6.5 24 11.1 999.9 63.0* 41.0 0.00G 999.9 000000 724050 13743 19931002 60.5 24 50.1 24 1020.5 24 1018.1 24 15.0 24 9.9 24 14.0 999.9 73.0* 41.0 0.01G 999.9 010010 724050 13743 19931003 63.9 24 47.0 24 1017.7 24 1015.3 24 13.4 24 10.1 24 18.1 23.9 73.9 53.1 0.00D 999.9 010000 724050 13743 19931004 59.3 24 45.4 24 1016.2 24 1013.8 24 14.7 24 7.5 24 12.0 999.9 75.0* 48.0 0.00G 999.9 000000 724050 13743 19931005 61.0 24 42.8 24 1020.0 24 1017.6 24 17.2 24 8.9 24 15.0 999.9 75.0 48.0 0.00G 999.9 000000 724050 13743 19931006 56.4 24 43.5 24 1031.3 24 1029.0 24 13.5 24 5.4 24 12.0 999.9 68.0 45.0 0.00G 999.9 000000 724050 13743 19931007 60.3 24 53.0 24 1027.3 24 1025.0 24 11.2 24 6.8 24 12.0 999.9 73.0* 45.0 0.00G 999.9 000000 724050 13743 19931008 64.8 24 60.0 24 1018.5 24 1016.1 24 7.0 24 4.0 24 8.0 999.9 75.9 51.1 0.00G 999.9 100000 724050 13743 19931009 65.9 24 60.3 24 1009.5 24 1007.1 24 7.6 24 7.5 24 14.0 19.8 79.0* 57.0 0.00G 999.9 110000 724050 13743 19931010 56.9 24 47.1 24 1014.7 24 1012.3 24 12.2 24 11.8 24 17.1 23.9 80.1 45.0 0.18G 999.9 110000 724050 13743 19931011 48.6 24 34.4 24 1024.7 24 1022.3 24 15.7 24 10.2 24 12.0 999.9 66.0 39.9 0.01G 999.9 000000 724050 13743 19931012 52.8 24 48.0 24 1013.0 24 1010.6 24 11.1 24 11.5 24 20.0 21.0 60.1* 39.9 0.92G 999.9 110000 724050 13743 19931013 53.6 24 44.2 24 1017.3 24 1015.0 24 11.2 24 6.9 24 11.1 999.9 64.0 44.1 0.89G 999.9 000000 724050 13743 19931014 56.2 24 49.1 24 1024.8 24 1022.4 24 8.5 24 7.5 24 11.1 999.9 64.9 44.1 0.00G 999.9 010000 724050 13743 19931015 59.5 24 55.3 24 1026.0 24 1023.6 24 4.5 24 6.1 24 10.1 999.9 69.1* 51.1 0.00G 999.9 110000 724050 13743 19931016 58.3 24 54.9 24 1024.0 24 1021.7 24 4.6 24 4.9 24 8.0 999.9 69.1 51.1 0.00G 999.9 100000 724050 13743 19931017 62.4 24 60.3 24 1013.9 24 1011.6 24 6.6 24 5.4 24 8.9 999.9 69.1 51.1 0.00G 999.9 110000 724050 13743 19931018 64.2 24 54.1 24 1012.8 24 1010.5 24 13.8 24 8.1 24 12.0 999.9 71.1* 57.9 0.00G 999.9 000000 724050 13743 19931019 61.1 24 54.7 24 1022.2 24 1019.8 24 9.3 24 5.7 24 8.9 999.9 72.0 57.9 0.00G 999.9 010000 724050 13743 19931020 62.2 24 60.8 24 1021.1 24 1018.7 24 5.3 24 5.4 24 10.1 999.9 66.0 57.9 0.26G 999.9 110000 724050 13743 19931021 67.3 24 64.5 24 1017.0 24 1014.6 24 4.2 24 9.4 24 19.0 29.9 79.0 60.1 0.14G 999.9 110000 724050 13743 19931022 56.7 24 33.5 24 1024.5 24 1022.1 24 18.7 24 8.9 24 15.0 21.0 62.1* 50.0 0.28G 999.9 000000 724050 13743 19931023 52.4 24 36.4 24 1027.6 24 1025.2 24 17.2 24 6.5 24 8.0 999.9 63.0 43.0 0.00G 999.9 000000 724050 13743 19931024 51.9 24 42.5 24 1025.9 24 1023.6 24 11.0 24 6.8 24 11.1 999.9 64.9* 39.9 0.00G 999.9 100000 724050 13743 19931025 56.4 24 44.2 24 1021.0 24 1018.6 24 12.3 24 4.6 24 7.0 999.9 73.9 39.9 0.00G 999.9 000000 724050 13743 19931026 56.9 24 53.0 24 1020.7 24 1018.4 24 7.9 24 7.6 24 14.0 999.9 75.9 43.0 0.00G 999.9 110000 724050 13743 19931027 58.1 24 54.0 24 1013.3 24 1010.9 24 7.7 24 9.3 24 14.0 999.9 64.0* 51.1 0.06G 999.9 110000 724050 13743 19931028 54.2 24 39.3 24 1008.9 24 1006.5 24 12.5 24 8.7 24 15.0 22.9 64.9 48.9 0.10G 999.9 110010 724050 13743 19931029 51.1 24 39.0 24 1010.6 24 1008.2 24 10.6 24 7.1 24 11.1 999.9 66.0* 41.0* 0.00G 999.9 000000 724050 13743 19931030 52.4 24 47.7 24 1007.2 24 1004.8 24 6.7 24 7.9 24 15.9 999.9 66.0 41.0 0.32G 999.9 110000 724050 13743 19931031 46.8 24 46.3 24 1002.0 24 999.7 24 5.2 24 8.0 24 15.9 999.9 55.0 43.0* 0.35G 999.9 110000 724050 13743 19931101 43.9 24 32.8 24 1010.3 24 1007.9 24 14.5 24 13.0 24 22.0 35.9 50.0 41.0 0.06G 999.9 011000 724050 13743 19931102 41.5 24 27.4 24 1029.5 24 1027.1 24 18.6 24 7.5 24 14.0 18.8 51.1* 30.9 0.00G 999.9 000000 724050 13743 19931103 43.9 24 35.9 24 1025.6 24 1023.2 24 11.1 24 7.5 24 13.0 999.9 54.0 30.9 0.00G 999.9 010000 724050 13743 19931104 45.7 24 40.2 24 1021.6 24 1019.3 24 8.0 24 5.9 24 11.1 999.9 59.0* 35.1 0.00G 999.9 100000 724050 13743 19931105 55.6 24 53.8 24 1010.7 24 1008.4 24 6.6 24 9.2 24 13.0 999.9 60.1 35.1 0.11G 999.9 110000 724050 13743 19931106 52.2 24 46.4 24 1007.1 24 1004.7 24 9.2 24 8.4 24 14.0 999.9 62.1 46.0* 0.04G 999.9 110000 724050 13743 19931107 42.1 24 29.7 24 1019.3 24 1016.9 24 14.6 24 7.9 24 13.0 999.9 57.0 34.0 0.00D 999.9 000000 724050 13743 19931108 40.2 24 30.9 24 1030.7 24 1028.4 24 9.9 24 4.8 24 8.0 999.9 51.1* 30.9 0.00G 999.9 100000 724050 13743 19931109 42.1 24 35.6 24 1030.9 24 1028.6 24 8.5 24 3.8 24 7.0 999.9 53.1* 30.9 0.00G 999.9 100000 724050 13743 19931110 45.5 24 33.8 24 1026.9 24 1024.6 24 9.0 24 5.7 24 11.1 999.9 57.9* 34.0 0.00G 999.9 100000 724050 13743 19931111 44.6 24 36.8 24 1025.2 24 1022.8 24 8.3 24 6.9 24 12.0 999.9 59.0 33.1 0.00G 999.9 100000 724050 13743 19931112 54.9 24 38.2 24 1021.7 24 1019.4 24 11.2 24 8.1 24 14.0 999.9 66.9 33.1 0.00G 999.9 000000 724050 13743 19931113 51.6 24 46.4 24 1024.7 24 1022.3 24 7.7 24 4.4 24 8.0 999.9 69.1 45.0 0.00G 999.9 110000 724050 13743 19931114 61.8 24 58.3 24 1019.6 24 1017.2 24 8.0 24 8.5 24 14.0 999.9 75.9* 45.0 0.10G 999.9 110000 724050 13743 19931115 71.1 24 62.2 24 1015.5 24 1013.1 24 14.5 24 10.8 24 15.9 22.0 82.0 55.9 0.00G 999.9 000000 724050 13743 19931116 59.6 24 46.8 24 1026.1 24 1023.7 24 13.5 24 7.5 24 13.0 999.9 82.9 51.1 0.00G 999.9 000000 724050 13743 19931117 55.7 24 52.3 24 1022.7 24 1020.3 24 7.8 24 7.9 24 16.9 30.9 63.0 51.1 0.00G 999.9 110000 724050 13743 19931118 54.3 24 45.5 24 1020.0 24 1017.6 24 15.5 24 11.0 24 20.0 26.8 64.0 50.0 0.45G 999.9 110000 724050 13743 19931119 48.5 24 44.5 24 1017.0 24 1014.6 24 8.0 24 6.2 24 11.1 999.9 60.1 45.0 0.02G 999.9 110000 724050 13743 19931120 48.0 24 35.9 24 1007.5 24 1005.2 24 11.0 24 10.4 24 18.1 26.8 53.1 42.1* 0.00D 999.9 000000 724050 13743 19931121 39.8 24 22.3 24 1025.1 24 1022.8 24 14.7 24 7.2 24 12.0 999.9 51.1 30.0 0.00G 999.9 000000 724050 13743 19931122 45.2 24 33.5 24 1029.0 24 1026.6 24 14.3 24 6.7 24 10.1 999.9 60.1* 30.0 0.00G 999.9 000000 724050 13743 19931123 47.4 24 34.5 24 1027.5 24 1025.1 24 11.4 24 4.5 24 7.0 999.9 64.0 34.0 0.00G 999.9 000000 724050 13743 19931124 47.8 24 38.9 24 1020.6 24 1018.3 24 9.0 24 3.3 24 7.0 999.9 64.0 34.0 0.00G 999.9 100000 724050 13743 19931125 46.1 24 36.7 24 1027.5 24 1025.2 24 9.0 24 11.0 24 20.0 999.9 59.0 37.9 0.00G 999.9 010000 724050 13743 19931126 38.2 24 32.0 24 1033.1 24 1030.8 24 11.4 24 8.1 24 12.0 999.9 52.0 30.0 0.00G 999.9 000000 724050 13743 19931127 48.9 24 46.4 24 1025.8 24 1023.5 24 7.7 24 9.6 24 14.0 22.0 61.0* 30.0 0.00G 999.9 110000 724050 13743 19931128 57.7 24 53.7 24 1007.9 24 1005.5 24 9.9 24 10.5 24 18.8 33.8 63.0 43.0 4.03G 999.9 110010 724050 13743 19931129 41.8 24 26.2 24 1018.9 24 1016.5 24 17.3 24 7.9 24 15.0 22.9 63.0 34.0 2.24G 999.9 000000 724050 13743 19931130 40.4 24 26.4 24 1031.5 24 1029.1 24 12.1 24 8.5 24 13.0 999.9 46.9 33.1 0.00G 999.9 000000 724050 13743 19931201 37.9 24 29.0 24 1041.6 24 1039.2 24 10.9 24 6.5 24 8.0 999.9 46.9 30.0 0.00G 999.9 000000 724050 13743 19931202 44.3 24 38.0 24 1034.7 24 1032.3 24 10.1 24 5.9 24 8.0 999.9 53.1* 30.0 0.00G 999.9 000000 724050 13743 19931203 48.1 24 42.8 24 1025.7 24 1023.3 24 9.3 24 5.4 24 8.9 999.9 61.0* 39.9 0.00G 999.9 100000 724050 13743 19931204 49.1 24 48.1 24 1018.9 24 1016.5 24 6.0 24 6.8 24 12.0 999.9 62.1 39.9 0.18G 999.9 110000 724050 13743 19931205 53.3 24 51.2 24 998.1 24 995.7 24 6.5 24 12.4 24 33.0 42.0 62.1 48.0 2.54G 999.9 110000 724050 13743 19931206 44.2 24 35.8 24 1011.6 24 1009.2 24 15.1 24 8.7 24 18.1 25.8 62.1 36.0 0.23G 999.9 010010 724050 13743 19931207 46.2 24 34.2 24 1020.3 24 1018.0 24 13.9 24 8.1 24 13.0 999.9 51.1 36.0 0.00G 999.9 010000 724050 13743 19931208 44.0 24 34.9 24 1022.1 24 1019.7 24 11.3 24 5.3 24 8.0 999.9 51.1 35.1 0.00G 999.9 000000 724050 13743 19931209 41.6 24 36.9 24 1023.5 24 1021.1 24 8.5 24 5.3 24 8.9 999.9 51.1 34.0 0.00G 999.9 100000 724050 13743 19931210 46.0 24 42.1 24 1014.3 24 1011.9 24 9.9 24 10.2 24 17.1 19.8 53.1* 34.0 0.00G 999.9 110000 724050 13743 19931211 43.3 24 34.1 24 1003.5 24 1001.1 24 13.7 24 14.3 24 26.0 39.8 53.1 30.9* 0.02G 999.9 110000 724050 13743 19931212 29.0 24 8.2 24 1012.9 24 1010.5 24 18.8 24 16.5 24 25.1 32.8 51.1 23.0 0.00G 999.9 000000 724050 13743 19931213 38.8 24 16.0 24 1019.4 24 1017.0 24 16.1 24 9.8 24 12.0 999.9 53.1* 23.0 0.00G 999.9 000000 724050 13743 19931214 40.9 24 25.0 24 1014.2 24 1011.8 24 14.3 24 5.9 24 11.1 999.9 53.1 32.0 0.00G 999.9 000000 724050 13743 19931215 43.7 24 37.7 24 1003.6 24 1001.2 24 7.9 24 9.1 24 14.0 999.9 48.9 34.0 0.19G 999.9 110000 724050 13743 19931216 47.2 24 41.2 24 1007.8 24 1005.5 24 12.6 24 14.1 24 17.1 22.0 51.1* 42.1 0.44G 999.9 110000 724050 13743 19931217 37.8 24 27.9 24 1024.8 24 1022.4 24 12.6 24 8.0 24 15.0 21.0 51.1 30.9 0.00G 999.9 000000 724050 13743 19931218 37.7 24 32.2 24 1021.6 24 1019.2 24 10.9 24 6.8 24 10.1 999.9 45.0 30.9 0.00G 999.9 000000 724050 13743 19931219 45.2 24 35.7 24 1014.4 24 1012.0 24 12.4 24 9.6 24 17.1 22.9 50.0* 33.1 0.07G 999.9 110000 724050 13743 19931220 39.5 24 32.4 24 1018.5 24 1016.1 24 11.6 24 5.5 24 12.0 999.9 50.0 32.0 0.00D 999.9 100000 724050 13743 19931221 40.3 24 31.8 24 1003.5 24 1001.1 24 10.5 24 12.4 24 25.1 36.9 46.9 32.0 0.65G 999.9 110000 724050 13743 19931222 34.5 24 17.9 24 1011.7 24 1009.3 24 14.7 24 9.5 24 22.0 31.9 46.9 28.9 0.01G 999.9 000000 724050 13743 19931223 37.4 24 24.2 24 1014.7 24 1012.3 24 12.3 24 7.6 24 15.0 21.0 42.1* 28.9 0.00G 999.9 000000 724050 13743 19931224 33.1 24 25.0 24 1020.1 24 1017.7 24 10.1 24 6.3 24 11.1 999.9 43.0 27.0 0.00G 999.9 101000 724050 13743 19931225 33.4 24 25.5 24 1008.4 24 1006.1 24 8.1 24 6.3 24 13.0 18.8 37.0 18.0 0.00G 999.9 101000 724050 13743 19931226 27.5 24 9.8 24 1011.4 24 1009.0 24 16.6 24 12.3 24 18.1 32.8 37.0 18.0 0.02G 0.4 101000 724050 13743 19931227 25.1 24 10.7 24 1026.5 24 1024.1 24 13.8 24 8.2 24 11.1 999.9 32.0 18.0 0.00G 0.4 000000 724050 13743 19931228 23.9 24 16.8 24 1030.4 24 1028.0 24 6.6 24 8.3 24 13.0 999.9 27.0 21.9 0.10G 2.0 101000 724050 13743 19931229 23.0 24 16.6 24 1022.9 24 1020.5 24 6.0 24 7.3 24 10.1 999.9 25.0 19.9 0.17G 2.4 111000 724050 13743 19931230 24.2 24 9.1 24 1018.1 24 1015.8 24 13.4 24 11.3 24 20.0 25.8 28.0 19.9 0.02G 2.4 101000 724050 13743 19931231 23.4 24 9.9 24 1027.1 24 1024.7 24 15.5 24 5.6 24 10.1 999.9 34.0* 15.1 0.00G 1.2 000000 fluids-1.0.22/tests/gsod/2018/0000755000175000017500000000000014302004506015072 5ustar nileshnileshfluids-1.0.22/tests/gsod/2018/724050-13743.op0000644000175000017500000014327214302004506016663 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20180101 18.6 24 2.3 24 1031.7 24 1029.4 24 10.0 24 9.0 24 14.0 21.0 26.1 12.9 0.00G 999.9 000000 724050 13743 20180102 18.2 24 -2.1 24 1034.5 24 1032.1 24 10.0 24 9.0 24 17.1 22.9 26.1 12.9 0.00G 999.9 000000 724050 13743 20180103 23.0 24 7.0 24 1026.8 24 1024.5 24 10.0 24 2.8 24 7.0 999.9 35.1 12.9 0.00G 999.9 000000 724050 13743 20180104 26.4 24 14.8 24 1009.4 19 1007.3 24 7.3 24 14.7 24 24.1 38.1 35.1 12.9 0.09G 1.2 001000 724050 13743 20180105 16.8 24 -4.0 24 1017.0 24 1014.8 24 10.0 24 15.2 24 22.9 35.9 27.0 12.9 0.10G 1.2 000000 724050 13743 20180106 15.4 24 -6.3 24 1029.1 24 1026.4 24 10.0 24 11.3 24 19.0 28.0 21.0 10.9 0.00G 1.2 000000 724050 13743 20180107 15.3 24 -3.9 24 1036.5 24 1034.2 24 10.0 24 8.1 24 13.0 19.0 23.0 8.1 0.00G 999.9 000000 724050 13743 20180108 25.0 24 7.3 24 1026.2 24 1024.0 24 10.0 24 8.2 24 12.0 999.9 36.0 8.1 0.00G 999.9 011000 724050 13743 20180109 37.9 24 33.5 24 1022.7 21 1020.1 24 6.9 24 5.4 24 11.1 15.0 51.1 19.0 0.06G 999.9 110000 724050 13743 20180110 35.7 24 27.8 24 1030.1 24 1027.8 24 10.0 24 3.0 24 6.0 999.9 51.1 27.0 0.00G 999.9 000000 724050 13743 20180111 46.0 24 37.1 24 1027.4 20 1025.5 24 9.8 24 2.2 24 8.9 999.9 62.1 27.0 0.00G 999.9 000000 724050 13743 20180112 59.8 24 58.5 24 1013.3 18 1010.8 24 7.8 24 10.0 24 17.1 19.0 63.0* 55.9* 0.15G 999.9 110000 724050 13743 20180113 45.0 24 36.5 24 1015.5 16 1006.8 24 8.9 24 15.7 24 31.1 42.0 64.4* 28.0* 0.33G 999.9 110000 724050 13743 20180114 22.7 24 2.7 24 1035.5 24 1033.2 24 10.0 24 13.2 24 20.0 28.9 28.0* 17.1* 0.11G 999.9 000000 724050 13743 20180115 23.9 24 10.2 24 1036.1 23 1033.8 24 10.0 24 6.9 24 9.9 999.9 32.0 17.1 0.00G 999.9 000000 724050 13743 20180116 33.0 24 26.2 24 1031.1 19 1029.1 24 10.0 24 3.6 24 7.0 999.9 43.0 18.0 0.00G 999.9 000000 724050 13743 20180117 30.3 24 19.3 24 1028.0 21 1025.8 24 8.4 24 11.2 24 21.0 27.0 43.0 24.1 0.03G 999.9 001000 724050 13743 20180118 28.7 24 5.8 24 1022.5 24 1020.2 24 10.0 24 10.3 24 15.9 20.0 46.9 19.0 0.00I 999.9 000000 724050 13743 20180119 37.6 24 16.2 24 1019.4 24 1017.1 24 10.0 24 4.8 24 12.0 999.9 51.1 19.0 0.00G 999.9 000000 724050 13743 20180120 40.5 24 23.1 24 1016.5 24 1014.2 24 10.0 24 6.0 24 13.0 15.0 63.0 25.0 0.00G 999.9 000000 724050 13743 20180121 43.9 24 33.9 24 1020.8 24 1018.4 24 10.0 24 3.2 24 7.0 999.9 63.0 28.0 0.00G 999.9 000000 724050 13743 20180122 53.9 24 40.7 24 1019.8 24 1017.4 24 10.0 24 6.8 24 12.0 999.9 63.0* 48.0* 0.00G 999.9 000000 724050 13743 20180123 56.7 24 47.6 24 1008.7 22 1005.8 24 9.4 24 10.5 24 18.1 28.0 68.0 46.9 0.05G 999.9 010000 724050 13743 20180124 46.1 24 27.0 24 1015.5 24 1013.2 24 10.0 24 10.2 24 18.1 22.9 68.0 39.0 0.06G 999.9 000000 724050 13743 20180125 36.9 24 18.8 24 1028.5 24 1026.2 24 10.0 24 10.7 24 18.1 27.0 48.0 32.0 0.00G 999.9 000000 724050 13743 20180126 36.7 24 22.1 24 1037.4 24 1035.1 24 10.0 24 4.5 24 8.0 999.9 50.0 28.0 0.00G 999.9 000000 724050 13743 20180127 46.7 24 31.2 24 1032.4 24 1030.1 24 10.0 24 10.1 24 15.9 22.9 63.0 28.0 0.00G 999.9 000000 724050 13743 20180128 51.6 24 46.6 24 1025.0 15 1022.4 24 8.3 24 6.7 24 13.0 999.9 63.0 37.9 0.04G 999.9 010000 724050 13743 20180129 46.7 24 38.5 24 1020.2 19 1018.6 24 9.1 24 9.7 24 15.9 19.0 57.0 44.1 0.12G 999.9 010000 724050 13743 20180130 37.4 24 22.3 24 1018.5 24 1016.2 24 9.9 24 12.1 24 22.9 35.0 48.0 28.0 0.00G 999.9 011000 724050 13743 20180131 27.2 24 7.8 24 1026.3 24 1024.1 24 10.0 24 10.3 24 19.0 25.1 41.0 21.0 0.00G 999.9 000000 724050 13743 20180201 43.3 24 23.0 24 1016.0 24 1013.7 24 10.0 24 10.1 24 15.0 999.9 54.0 21.0 0.00G 999.9 000000 724050 13743 20180202 36.6 24 21.6 24 1019.5 23 1016.3 24 10.0 24 13.0 24 21.0 29.9 54.0 23.0 0.06G 999.9 010000 724050 13743 20180203 24.4 24 4.4 24 1031.8 24 1029.5 24 10.0 24 8.5 24 15.9 19.0 43.0 17.1 0.04G 999.9 000000 724050 13743 20180204 34.1 24 20.5 24 1025.1 17 1019.8 24 8.4 24 8.7 24 15.0 999.9 35.6* 33.1* 0.00G 999.9 011000 724050 13743 20180205 34.9 24 24.8 24 1016.6 24 1013.8 24 9.6 24 8.7 24 20.0 28.9 39.0 30.9 1.12G 999.9 010000 724050 13743 20180206 33.5 24 21.5 24 1027.4 23 1024.9 24 10.0 24 4.5 24 9.9 999.9 43.0 27.0 0.00G 999.9 000000 724050 13743 20180207 34.9 24 28.5 24 1027.1 21 1023.4 24 7.2 24 4.3 24 8.9 999.9 43.0 28.0 0.00G 999.9 010000 724050 13743 20180208 33.8 24 19.7 24 1027.3 24 1025.0 24 10.0 24 11.8 24 20.0 28.0 43.0 26.1 0.49G 999.9 000000 724050 13743 20180209 35.1 24 24.0 24 1032.4 24 1030.4 24 10.0 24 4.1 24 8.9 999.9 46.0 26.1 0.00G 999.9 000000 724050 13743 20180210 42.7 24 38.7 24 1025.6 19 1022.4 24 7.7 24 4.8 24 8.9 999.9 50.0 27.0 0.00G 999.9 110000 724050 13743 20180211 53.1 24 52.3 24 1014.6 12 1012.9 24 4.8 24 4.7 24 12.0 21.0 68.0 39.0 1.82G 999.9 110000 724050 13743 20180212 52.8 24 43.9 24 1024.4 22 1020.5 24 9.5 24 11.1 24 18.1 24.1 68.0 41.0 0.32G 999.9 010000 724050 13743 20180213 37.8 24 20.2 24 1040.4 24 1038.1 24 10.0 24 7.6 24 11.1 999.9 44.1* 33.1* 0.06G 999.9 010000 724050 13743 20180214 40.4 24 32.7 24 1030.8 24 1028.5 24 10.0 24 6.4 24 11.1 999.9 53.1 33.1 0.00G 999.9 000000 724050 13743 20180215 54.9 24 49.2 24 1015.0 24 1012.6 24 10.0 24 7.2 24 14.0 19.0 73.9 34.0 0.04G 999.9 010000 724050 13743 20180216 62.4 24 55.3 24 1007.0 24 1004.8 24 10.0 24 10.3 24 22.0 32.1 73.9 46.9 0.03G 999.9 010000 724050 13743 20180217 39.4 24 27.1 24 1025.3 21 1022.8 24 8.8 24 9.5 24 19.0 27.0 51.1* 33.8* 0.02G 999.9 011000 724050 13743 20180218 40.1 24 33.0 24 1025.4 21 1021.9 24 9.6 24 5.5 24 8.9 15.0 51.1 33.1 0.42G 999.9 010000 724050 13743 20180219 42.4 24 37.4 24 1031.5 20 1029.1 24 9.1 24 6.4 24 9.9 999.9 51.1 33.1 0.00G 999.9 010000 724050 13743 20180220 58.5 24 52.5 24 1027.4 22 1025.0 24 9.2 24 9.8 24 20.0 27.0 78.1 39.9 0.02G 999.9 000000 724050 13743 20180221 67.2 24 58.9 24 1026.5 24 1024.3 24 9.9 24 12.1 24 20.0 26.0 82.0 48.9 0.00G 999.9 000000 724050 13743 20180222 60.1 24 50.0 24 1030.2 24 1027.9 24 9.5 24 9.2 24 18.1 999.9 82.0 48.0 0.00G 999.9 010000 724050 13743 20180223 43.8 24 41.0 24 1032.8 15 1031.8 24 7.8 24 7.4 24 18.1 999.9 48.0* 41.0* 0.06G 999.9 010000 724050 13743 20180224 49.8 24 48.9 24 1022.1 16 1020.1 24 3.5 24 4.9 24 12.0 999.9 53.1 41.0 0.00G 999.9 110000 724050 13743 20180225 50.0 24 48.4 24 1017.4 18 1014.8 24 7.6 24 4.6 24 11.1 15.9 53.1 46.9 0.17G 999.9 010000 724050 13743 20180226 51.2 24 42.7 24 1020.9 23 1018.2 24 7.8 24 5.4 24 12.0 15.9 54.0 46.9 0.16G 999.9 100000 724050 13743 20180227 47.3 24 29.3 24 1028.6 24 1026.3 24 10.0 24 4.2 24 9.9 999.9 57.9 36.0 0.00G 999.9 000000 724050 13743 20180228 50.4 24 34.1 24 1020.8 24 1018.4 24 10.0 24 9.7 24 15.0 999.9 64.0 36.0 0.00G 999.9 000000 724050 13743 20180301 52.6 24 45.1 24 1010.0 24 1007.4 24 9.9 24 4.8 24 9.9 999.9 64.0 44.1 0.00G 999.9 010000 724050 13743 20180302 46.7 24 32.5 24 1004.3 21 1000.6 24 8.4 24 20.7 24 38.1 51.1 59.0 39.0 0.10G 999.9 110000 724050 13743 20180303 43.3 24 23.2 24 1017.8 24 1015.5 24 10.0 24 19.9 24 32.1 44.1 54.0 36.0 0.01G 999.9 000000 724050 13743 20180304 43.2 24 22.9 24 1023.4 24 1021.0 24 10.0 24 14.6 24 20.0 29.9 53.1 35.1 0.00G 999.9 000000 724050 13743 20180305 40.3 24 13.0 24 1021.3 24 1019.0 24 10.0 24 12.0 24 15.9 24.1 53.1 30.9 0.00G 999.9 000000 724050 13743 20180306 39.7 24 24.8 24 1017.6 24 1015.3 24 10.0 24 6.8 24 11.1 999.9 48.9 30.9 0.00G 999.9 000000 724050 13743 20180307 39.6 24 34.8 24 1007.6 15 1005.7 24 7.0 24 9.3 24 15.9 22.9 51.1 33.1 0.31G 999.9 011000 724050 13743 20180308 40.2 24 19.7 24 1010.7 24 1008.4 24 10.0 24 10.2 24 15.9 24.1 51.1 34.0 0.02G 999.9 000000 724050 13743 20180309 38.2 24 17.0 24 1012.6 24 1010.2 24 10.0 24 10.9 24 17.1 25.1 46.0 33.1 0.00G 999.9 000000 724050 13743 20180310 39.4 24 18.6 24 1017.0 24 1014.7 24 10.0 24 7.5 24 14.0 21.0 48.9 30.9 0.00G 999.9 000000 724050 13743 20180311 41.4 24 21.1 24 1019.4 24 1017.1 24 10.0 24 5.8 24 9.9 999.9 52.0 30.9 0.00G 999.9 000000 724050 13743 20180312 39.7 24 25.5 24 1014.4 24 1012.1 24 10.0 24 8.5 24 18.1 999.9 52.0 30.9 0.00G 999.9 000000 724050 13743 20180313 38.5 24 22.7 24 1010.2 22 1007.9 24 9.8 24 15.1 24 22.9 31.1 46.9 33.1 0.01G 999.9 001000 724050 13743 20180314 37.7 24 16.2 24 1010.4 24 1008.1 24 10.0 24 13.1 24 22.0 34.0 46.9 32.0 0.00G 999.9 000000 724050 13743 20180315 40.8 24 17.3 24 1007.9 24 1005.5 24 10.0 24 12.0 24 20.0 29.9 55.0 30.9 0.00G 999.9 000000 724050 13743 20180316 41.2 24 17.5 24 1011.2 24 1008.7 24 9.7 24 11.4 24 21.0 32.1 55.0 30.9 0.00G 999.9 001000 724050 13743 20180317 39.3 24 18.7 24 1015.6 24 1013.2 24 10.0 24 5.2 24 12.0 999.9 46.9 32.0 0.00G 999.9 010000 724050 13743 20180318 44.4 24 22.7 24 1013.5 24 1011.2 24 10.0 24 6.2 24 9.9 999.9 59.0 32.0 0.00G 999.9 000000 724050 13743 20180319 46.5 24 28.4 24 1012.7 24 1010.4 24 10.0 24 4.3 24 11.1 999.9 59.0 34.0 0.00G 999.9 000000 724050 13743 20180320 39.8 24 32.5 24 1010.2 19 1007.5 24 7.1 24 12.5 24 24.1 29.9 55.9 33.1 0.22G 3.1 011000 724050 13743 20180321 33.5 24 30.8 24 1005.6 7 1003.0 24 3.7 24 12.6 24 21.0 25.1 43.0 32.0 0.69G 3.1 111000 724050 13743 20180322 38.9 24 25.7 24 1013.7 23 1011.1 24 9.9 24 13.2 24 18.1 25.1 48.9 32.0 0.45G 1.2 001000 724050 13743 20180323 42.5 24 18.5 24 1020.1 24 1017.8 24 10.0 24 14.2 24 21.0 28.0 51.1 34.0 0.00G 2.0 000000 724050 13743 20180324 42.1 24 20.0 24 1022.3 24 1020.0 24 10.0 24 8.7 24 15.9 999.9 52.0 33.1 0.00G 999.9 000000 724050 13743 20180325 41.1 24 23.9 24 1024.8 24 1022.5 24 10.0 24 9.0 24 15.0 15.9 52.0 33.1 0.00G 999.9 000000 724050 13743 20180326 41.7 24 28.0 24 1036.7 24 1034.4 24 10.0 24 7.5 24 12.0 17.1 50.0 34.0 0.00G 999.9 000000 724050 13743 20180327 40.7 24 28.6 24 1034.3 24 1032.0 24 10.0 24 5.6 24 8.9 999.9 50.0 34.0 0.00G 999.9 010000 724050 13743 20180328 47.5 24 40.6 24 1019.6 24 1017.4 24 9.9 24 5.2 24 8.9 999.9 57.9 34.0 0.03G 999.9 010000 724050 13743 20180329 56.3 24 48.4 24 1014.4 23 1012.4 24 7.4 24 4.4 24 11.1 999.9 78.1 43.0 0.09G 999.9 010000 724050 13743 20180330 66.1 24 50.8 24 1008.5 24 1006.2 24 10.0 24 13.4 24 21.0 28.9 78.1 48.0 0.00G 999.9 000000 724050 13743 20180331 50.2 24 28.5 24 1023.8 24 1021.5 24 10.0 24 9.7 24 18.1 27.0 60.1* 41.0* 0.00G 999.9 000000 724050 13743 20180401 55.2 24 34.3 24 1017.9 24 1015.6 24 10.0 24 9.8 24 15.0 21.0 66.9 39.0 0.00G 999.9 000000 724050 13743 20180402 48.5 24 37.5 24 1018.0 22 1015.5 24 10.0 24 9.0 24 19.0 999.9 66.9 42.1 0.02G 999.9 010000 724050 13743 20180403 47.0 24 38.8 24 1019.0 24 1016.7 24 10.0 24 6.7 24 9.9 999.9 54.0 42.1 0.01B 999.9 010000 724050 13743 20180404 56.7 24 43.2 24 1005.7 24 1003.4 24 9.9 24 12.2 24 27.0 40.0 73.0 44.1 0.00H 999.9 010000 724050 13743 20180405 44.8 24 18.0 24 1020.2 24 1017.9 24 10.0 24 12.2 24 19.0 34.0 55.9* 35.1* 0.00G 999.9 000000 724050 13743 20180406 53.2 24 29.8 24 1015.4 24 1013.1 24 10.0 24 9.9 24 24.1 34.0 72.0 34.0 0.00G 999.9 000000 724050 13743 20180407 51.1 24 27.1 24 1010.7 24 1008.4 24 10.0 24 12.7 24 20.0 25.1 72.0 41.0 0.00G 999.9 010000 724050 13743 20180408 41.9 24 18.1 24 1014.3 24 1012.0 24 10.0 24 11.5 24 17.1 25.1 51.1* 35.1* 0.00G 999.9 000000 724050 13743 20180409 42.2 24 21.0 24 1021.4 24 1019.1 24 10.0 24 7.2 24 14.0 999.9 51.1 34.0 0.00G 999.9 000000 724050 13743 20180410 45.6 24 31.0 24 1022.4 22 1020.0 24 8.8 24 7.6 24 14.0 22.0 55.0 37.9 0.02G 999.9 010000 724050 13743 20180411 48.5 24 26.0 24 1022.2 24 1019.9 24 10.0 24 6.1 24 12.0 18.1 57.0 37.9 0.00G 999.9 000000 724050 13743 20180412 56.9 24 36.8 24 1017.4 24 1015.1 24 10.0 24 9.5 24 22.9 31.1 78.1 43.0 0.00G 999.9 000000 724050 13743 20180413 71.4 24 43.4 24 1013.3 24 1011.0 24 10.0 24 12.3 24 17.1 25.1 84.9* 61.0* 0.00G 999.9 000000 724050 13743 20180414 74.5 24 52.1 24 1013.4 24 1011.1 24 10.0 24 11.9 24 15.9 29.9 86.0 60.1 0.00G 999.9 000000 724050 13743 20180415 61.0 24 51.9 24 1014.7 20 1012.9 24 9.2 24 12.1 24 19.0 26.0 84.9 48.0 0.00G 999.9 010000 724050 13743 20180416 53.5 24 46.2 24 1004.1 17 1000.4 24 8.0 24 11.9 24 20.0 28.9 69.1 48.0 1.81G 999.9 010010 724050 13743 20180417 45.2 24 24.8 24 1008.6 24 1006.3 24 10.0 24 11.4 24 15.0 22.9 62.1 41.0 0.20G 999.9 000000 724050 13743 20180418 47.7 24 26.8 24 1011.8 24 1009.5 24 10.0 24 8.0 24 13.0 26.0 62.1 36.0 0.00G 999.9 000000 724050 13743 20180419 52.9 24 37.6 24 1008.8 23 1005.8 24 10.0 24 10.7 24 26.0 35.9 62.1 36.0 0.00G 999.9 010000 724050 13743 20180420 48.2 24 23.8 24 1024.2 24 1021.8 24 10.0 24 11.4 24 17.1 22.9 61.0 37.9 0.03G 999.9 000000 724050 13743 20180421 52.0 24 27.7 24 1030.0 24 1027.7 24 10.0 24 5.8 24 11.1 999.9 63.0 37.9 0.00G 999.9 000000 724050 13743 20180422 56.8 24 38.8 24 1028.7 24 1026.3 24 10.0 24 6.0 24 12.0 17.1 66.9 42.1 0.00G 999.9 000000 724050 13743 20180423 58.8 24 40.3 24 1029.4 24 1027.0 24 10.0 24 5.7 24 15.0 19.0 69.1 48.0 0.00G 999.9 000000 724050 13743 20180424 58.2 24 41.5 24 1025.1 23 1022.5 24 9.8 24 9.0 24 17.1 28.0 69.1 50.0 0.00G 999.9 010000 724050 13743 20180425 59.2 24 54.9 24 1008.0 13 1007.6 24 6.0 24 7.7 24 14.0 999.9 66.9 55.0 0.75G 999.9 010000 724050 13743 20180426 61.5 24 42.5 24 1009.6 24 1007.2 24 10.0 24 7.8 24 15.0 21.0 73.0 50.0 0.03G 999.9 010000 724050 13743 20180427 59.1 24 48.7 24 1009.1 15 1006.5 24 8.3 24 5.9 24 14.0 999.9 73.0 50.0 0.71G 999.9 010010 724050 13743 20180428 61.8 24 49.3 24 1008.0 21 1006.0 24 9.2 24 5.9 24 18.1 22.9 78.1 51.1 0.01G 999.9 010000 724050 13743 20180429 53.5 24 32.8 24 1017.2 24 1014.4 24 10.0 24 15.4 24 22.0 31.1 78.1 45.0 0.00G 999.9 010000 724050 13743 20180430 55.2 24 25.7 24 1021.5 24 1019.1 24 10.0 24 9.3 24 17.1 28.9 73.0 41.0 0.00G 999.9 000000 724050 13743 20180501 66.1 24 32.1 24 1020.4 24 1018.1 24 10.0 24 5.5 24 8.9 17.1 82.9 41.0 0.00G 999.9 000000 724050 13743 20180502 71.7 24 45.0 24 1020.1 24 1017.8 24 10.0 24 6.4 24 14.0 22.9 91.0 48.9 0.00G 999.9 000000 724050 13743 20180503 75.9 24 54.1 24 1017.8 24 1015.5 24 10.0 24 8.8 24 14.0 21.0 91.0 55.9 0.00G 999.9 000000 724050 13743 20180504 77.8 24 59.5 24 1014.5 24 1012.3 24 10.0 24 9.2 24 15.9 24.1 90.0 64.0 0.00G 999.9 000000 724050 13743 20180505 72.8 24 50.0 24 1017.8 22 1015.3 24 10.0 24 8.0 24 15.9 22.0 90.0 66.0 0.00G 999.9 010000 724050 13743 20180506 64.5 24 52.4 24 1014.7 22 1012.5 24 10.0 24 6.5 24 13.0 999.9 75.9 59.0 0.00G 999.9 010000 724050 13743 20180507 66.0 24 52.1 24 1016.4 24 1014.1 24 10.0 24 7.8 24 12.0 999.9 77.0 57.9 0.00G 999.9 000000 724050 13743 20180508 67.7 24 50.1 24 1022.0 24 1019.7 24 10.0 24 5.8 24 9.9 999.9 78.1 57.9 0.00G 999.9 000000 724050 13743 20180509 67.7 24 48.9 24 1020.9 24 1018.7 24 10.0 24 4.6 24 9.9 999.9 80.1 57.0 0.00G 999.9 000000 724050 13743 20180510 69.8 24 56.2 24 1015.1 23 1012.5 24 10.0 24 8.4 24 14.0 19.0 82.9 57.0 0.00G 999.9 010010 724050 13743 20180511 73.3 24 57.0 24 1014.7 24 1012.4 24 10.0 24 5.9 24 13.0 17.1 84.9 61.0 0.00G 999.9 000000 724050 13743 20180512 75.7 24 60.7 24 1016.5 24 1014.2 24 10.0 24 6.7 24 13.0 18.1 90.0 61.0 0.00G 999.9 010000 724050 13743 20180513 68.5 24 62.7 24 1017.3 17 1015.1 24 9.4 24 7.8 24 22.9 29.9 84.0* 62.6* 0.47G 999.9 010010 724050 13743 20180514 67.2 24 61.7 24 1015.9 15 1013.8 24 8.0 24 3.9 24 24.1 33.0 81.0 62.1 0.20G 999.9 110010 724050 13743 20180515 74.7 24 65.6 24 1013.3 24 1011.1 24 9.9 24 10.7 24 19.0 24.1 89.1 62.1 1.49G 999.9 010010 724050 13743 20180516 72.0 24 66.6 24 1015.5 12 1013.0 24 8.8 24 5.6 24 28.0 35.9 89.1 66.0 0.43G 999.9 010010 724050 13743 20180517 67.3 24 64.4 24 1015.3 9 1013.0 24 5.4 24 7.2 24 11.1 999.9 75.0 66.0 0.84G 999.9 010000 724050 13743 20180518 66.3 24 63.1 24 1019.1 12 1016.9 24 6.5 24 10.3 24 18.1 25.1 69.1 61.0 1.13G 999.9 010000 724050 13743 20180519 61.1 24 57.5 24 1021.3 14 1019.1 24 7.2 24 7.3 24 15.0 18.1 70.0 57.0 1.50G 999.9 110000 724050 13743 20180520 75.9 24 66.4 24 1016.5 20 1014.3 24 10.0 24 7.6 24 12.0 17.1 89.1 57.0 0.08G 999.9 010000 724050 13743 20180521 75.2 24 61.5 24 1020.1 24 1017.8 24 10.0 24 7.0 24 13.0 999.9 89.1 68.0 0.00G 999.9 000000 724050 13743 20180522 69.9 24 62.4 24 1019.4 20 1016.7 24 9.8 24 5.1 24 15.9 999.9 82.0 64.9 0.00G 999.9 010010 724050 13743 20180523 74.2 24 63.3 24 1015.5 22 1013.0 24 9.8 24 8.5 24 18.1 26.0 82.9 64.9 1.23G 999.9 010010 724050 13743 20180524 74.5 24 53.5 24 1020.4 24 1018.0 24 10.0 24 5.5 24 9.9 999.9 87.1 63.0 0.00G 999.9 000000 724050 13743 20180525 74.2 24 61.5 24 1018.0 24 1015.6 24 10.0 24 7.6 24 15.0 999.9 87.1 63.0 0.00G 999.9 000000 724050 13743 20180526 78.5 24 67.6 24 1011.6 24 1009.2 24 10.0 24 8.2 24 13.0 19.0 87.1 63.0 0.00G 999.9 010010 724050 13743 20180527 77.5 24 70.5 24 1012.4 21 1010.1 24 10.0 24 6.7 24 14.0 999.9 87.1 71.1 0.03G 999.9 010010 724050 13743 20180528 68.3 24 63.7 24 1017.4 20 1015.0 24 8.7 24 6.9 24 12.0 999.9 84.9 64.0 0.00G 999.9 010000 724050 13743 20180529 73.5 24 67.3 24 1016.2 18 1014.0 24 6.9 24 3.2 24 8.9 999.9 82.9 64.0 0.01G 999.9 100000 724050 13743 20180530 75.2 24 69.2 24 1016.3 18 1014.3 24 9.0 24 5.9 24 13.0 999.9 82.9 69.1 0.00G 999.9 100000 724050 13743 20180531 75.4 24 69.6 24 1014.4 15 1012.3 24 7.0 24 6.6 24 15.0 19.0 84.9* 69.8* 0.00G 999.9 110010 724050 13743 20180601 77.9 24 68.9 24 1009.4 19 1007.7 24 9.7 24 5.2 24 11.1 999.9 90.0 70.0 1.32G 999.9 010010 724050 13743 20180602 78.3 24 69.5 24 1007.7 20 1005.4 24 9.9 24 5.8 24 12.0 999.9 90.0 71.1 0.00G 999.9 010010 724050 13743 20180603 69.2 24 64.6 24 1009.9 8 1007.5 24 7.5 24 11.3 24 19.0 27.0 86.0 59.0 0.05G 999.9 010010 724050 13743 20180604 64.3 24 55.2 24 1010.0 19 1007.9 24 10.0 24 8.4 24 13.0 999.9 80.1 55.9 1.65G 999.9 010000 724050 13743 20180605 72.6 24 52.8 24 1008.6 24 1006.3 24 10.0 24 7.6 24 13.0 22.9 84.0 55.9 0.00G 999.9 000000 724050 13743 20180606 70.2 24 53.8 24 1009.9 24 1007.3 24 10.0 24 8.6 24 17.1 999.9 84.0 61.0 0.00G 999.9 000000 724050 13743 20180607 69.8 24 55.8 24 1017.7 24 1015.3 24 10.0 24 6.5 24 9.9 999.9 79.0 62.1 0.00G 999.9 000000 724050 13743 20180608 72.9 24 63.1 24 1020.8 24 1018.4 24 10.0 24 6.1 24 9.9 999.9 84.0 62.1 0.00G 999.9 000000 724050 13743 20180609 76.9 24 68.2 24 1019.1 18 1016.5 24 9.5 24 4.2 24 13.0 26.0 86.0 64.9 0.96G 999.9 010010 724050 13743 20180610 74.2 24 67.8 24 1015.3 18 1013.3 24 9.5 24 4.9 24 15.0 999.9 86.0 70.0 0.10G 999.9 010010 724050 13743 20180611 64.5 24 59.6 24 1015.2 16 1012.8 24 9.0 24 10.3 24 14.0 999.9 81.0 61.0 0.42G 999.9 010010 724050 13743 20180612 67.0 24 56.2 24 1021.9 23 1019.8 24 10.0 24 5.7 24 9.9 999.9 78.1* 57.2* 0.00I 999.9 000000 724050 13743 20180613 73.8 24 65.6 24 1015.2 19 1013.5 24 9.8 24 8.4 24 13.0 999.9 84.9 57.9 0.00G 999.9 010000 724050 13743 20180614 80.1 24 58.7 24 1012.4 24 1010.1 24 10.0 24 10.1 24 15.9 24.1 87.1 68.0 0.00G 999.9 000000 724050 13743 20180615 77.8 24 50.6 24 1015.0 24 1012.6 24 10.0 24 7.1 24 15.9 22.0 87.1 66.9 0.00G 999.9 000000 724050 13743 20180616 75.9 24 56.7 24 1017.2 24 1014.9 24 10.0 24 4.0 24 8.9 999.9 89.1 64.0 0.00G 999.9 000000 724050 13743 20180617 80.3 24 65.1 24 1017.7 24 1015.3 24 10.0 24 3.2 24 8.0 999.9 89.1 64.0 0.00G 999.9 000000 724050 13743 20180618 82.1 24 70.1 24 1016.9 24 1014.6 24 10.0 24 6.7 24 13.0 999.9 91.9 73.0 0.00G 999.9 000000 724050 13743 20180619 83.9 24 72.5 24 1011.1 20 1008.5 24 9.5 24 7.0 24 18.1 24.1 95.0 73.9 0.00G 999.9 010010 724050 13743 20180620 79.2 24 63.9 24 1011.3 23 1008.8 24 10.0 24 4.8 24 9.9 999.9 95.0 73.9 1.12G 999.9 010010 724050 13743 20180621 77.7 24 69.4 24 1008.3 23 1006.0 24 9.9 24 5.7 24 9.9 999.9 86.0 72.0 0.13G 999.9 010000 724050 13743 20180622 73.6 24 66.1 24 1010.8 20 1008.8 24 8.6 24 7.1 24 12.0 21.0 86.0 69.1 0.05G 999.9 010000 724050 13743 20180623 71.8 24 66.8 24 1010.3 13 1008.0 24 7.8 24 5.2 24 12.0 999.9 80.1* 66.2* 0.53G 999.9 010000 724050 13743 20180624 78.1 24 69.4 24 1010.6 22 1008.2 24 9.7 24 3.9 24 9.9 999.9 91.0 66.9 0.05G 999.9 010010 724050 13743 20180625 77.4 24 64.8 24 1016.2 24 1013.6 24 9.9 24 6.8 24 14.0 17.1 91.0 70.0 0.11G 999.9 010010 724050 13743 20180626 74.7 24 58.2 24 1021.9 24 1019.6 24 10.0 24 6.6 24 12.0 999.9 84.9 64.9 0.00G 999.9 000000 724050 13743 20180627 75.0 24 64.5 24 1017.6 20 1015.3 24 10.0 24 6.9 24 12.0 999.9 84.0 64.9 0.00G 999.9 010010 724050 13743 20180628 80.6 24 70.0 24 1010.3 21 1008.0 24 10.0 24 8.5 24 13.0 19.0 89.1 71.1 0.04G 999.9 000000 724050 13743 20180629 82.5 24 65.6 24 1015.1 24 1012.8 24 10.0 24 5.2 24 9.9 999.9 93.0 73.0 0.00G 999.9 000000 724050 13743 20180630 82.6 24 68.1 24 1018.0 24 1015.6 24 9.9 24 5.3 24 11.1 999.9 93.0 72.0 0.00G 999.9 000000 724050 13743 20180701 83.5 24 71.2 24 1017.8 24 1015.5 24 10.0 24 6.0 24 11.1 999.9 93.0 72.0 0.00G 999.9 000000 724050 13743 20180702 86.0 24 75.0 24 1017.5 24 1015.1 24 9.3 24 6.7 24 11.1 999.9 95.0 75.0 0.00G 999.9 000000 724050 13743 20180703 88.5 24 75.4 24 1020.0 23 1017.7 24 10.0 24 3.6 24 9.9 999.9 97.0 80.1 0.00G 999.9 010010 724050 13743 20180704 86.2 24 73.1 24 1023.7 24 1021.3 24 10.0 24 4.8 24 13.0 18.1 97.0 80.1 0.00G 999.9 000000 724050 13743 20180705 85.6 24 73.3 24 1024.5 23 1022.3 24 9.9 24 6.6 24 11.1 999.9 93.0 80.1 0.00G 999.9 000000 724050 13743 20180706 83.3 24 73.2 24 1020.0 23 1017.6 24 10.0 24 8.3 24 11.1 999.9 91.9 80.1 0.00G 999.9 010010 724050 13743 20180707 77.2 24 55.2 24 1024.3 24 1021.7 24 10.0 24 10.6 24 15.9 25.1 89.1 68.0 0.00G 999.9 010010 724050 13743 20180708 74.8 24 52.4 24 1026.8 24 1024.5 24 10.0 24 6.6 24 13.0 15.9 84.9 64.0 0.00G 999.9 000000 724050 13743 20180709 77.0 24 54.4 24 1024.0 24 1021.6 24 10.0 24 4.7 24 11.1 999.9 88.0 64.0 0.00G 999.9 000000 724050 13743 20180710 82.7 24 60.8 24 1016.7 24 1014.4 24 10.0 24 6.3 24 12.0 14.0 96.1 64.0 0.00G 999.9 000000 724050 13743 20180711 86.3 24 62.4 24 1013.7 24 1011.3 24 10.0 24 6.1 24 13.0 15.0 96.1 71.1 0.00G 999.9 000000 724050 13743 20180712 82.0 24 57.0 24 1019.4 24 1017.0 24 10.0 24 7.6 24 11.1 999.9 93.9 73.0 0.00G 999.9 000000 724050 13743 20180713 79.3 24 62.4 24 1022.9 24 1020.7 24 10.0 24 5.7 24 9.9 999.9 91.9 71.1 0.00G 999.9 000000 724050 13743 20180714 80.2 24 59.4 24 1021.4 24 1019.1 24 10.0 24 8.1 24 12.0 999.9 91.0 70.0 0.00G 999.9 000000 724050 13743 20180715 80.7 24 63.4 24 1017.2 24 1014.9 24 10.0 24 8.0 24 9.9 999.9 91.0 70.0 0.00G 999.9 000000 724050 13743 20180716 83.8 24 70.4 24 1015.5 23 1013.0 24 10.0 24 5.0 24 21.0 27.0 98.1 73.9 0.00G 999.9 010010 724050 13743 20180717 82.3 24 72.4 24 1011.9 22 1009.3 24 9.5 24 8.0 24 28.9 35.9 89.1* 73.4* 0.00G 999.9 110010 724050 13743 20180718 79.6 24 60.8 24 1013.1 24 1010.7 24 10.0 24 9.5 24 18.1 28.0 91.9 70.0 2.79G 999.9 000000 724050 13743 20180719 79.4 24 57.1 24 1017.5 24 1015.2 24 10.0 24 6.4 24 12.0 999.9 88.0 70.0 0.00G 999.9 000000 724050 13743 20180720 78.5 24 60.9 24 1019.1 24 1016.8 24 10.0 24 5.4 24 11.1 14.0 88.0 71.1 0.00G 999.9 000000 724050 13743 20180721 73.5 24 65.2 24 1015.9 16 1011.8 24 7.2 24 10.6 24 21.0 27.0 86.0 69.1 0.00G 999.9 010000 724050 13743 20180722 71.7 24 65.8 24 1008.4 14 1005.6 24 8.6 24 7.5 24 19.0 25.1 82.9 64.9 4.00G 999.9 110010 724050 13743 20180723 78.8 24 71.9 24 1013.4 19 1010.8 24 9.8 24 7.4 24 17.1 24.1 84.9 64.9 1.41G 999.9 010010 724050 13743 20180724 78.4 24 72.5 24 1016.6 13 1014.7 24 9.5 24 8.0 24 13.0 20.0 84.9 75.0 0.07G 999.9 010000 724050 13743 20180725 77.8 24 71.6 24 1014.5 17 1011.6 24 9.9 24 6.3 24 14.0 17.1 86.0 73.9 0.25G 999.9 010010 724050 13743 20180726 78.8 24 69.8 24 1013.1 15 1010.3 24 9.7 24 4.3 24 11.1 999.9 89.1 73.0 0.67G 999.9 010010 724050 13743 20180727 80.5 24 70.8 24 1014.6 21 1012.2 24 9.9 24 6.0 24 14.0 24.1 91.0 73.0 0.00G 999.9 010010 724050 13743 20180728 79.3 24 65.0 24 1016.2 24 1013.9 24 10.0 24 5.8 24 11.1 15.9 91.0 72.0 0.00G 999.9 000000 724050 13743 20180729 78.4 24 61.6 24 1019.0 24 1016.7 24 10.0 24 5.0 24 8.9 999.9 87.1 70.0 0.00G 999.9 000000 724050 13743 20180730 75.9 24 65.4 24 1019.5 20 1017.2 24 9.5 24 6.8 24 14.0 20.0 87.1 70.0 0.00G 999.9 010000 724050 13743 20180731 75.8 24 69.4 24 1018.6 11 1016.3 24 9.5 24 4.4 24 9.9 999.9 84.0 71.1 0.53G 999.9 010000 724050 13743 20180801 80.4 24 71.6 24 1016.9 21 1014.6 24 9.9 24 9.3 24 17.1 22.9 89.1 71.1 0.26G 999.9 010010 724050 13743 20180802 78.9 24 71.9 24 1018.8 15 1016.6 24 9.4 24 5.9 24 9.9 15.0 89.1 73.9 0.25G 999.9 110010 724050 13743 20180803 77.6 24 71.6 24 1020.1 20 1017.8 24 9.7 24 8.4 24 15.9 24.1 86.0 73.0 1.03G 999.9 010010 724050 13743 20180804 79.4 24 70.2 24 1020.0 16 1017.6 24 9.6 24 5.7 24 9.9 999.9 90.0 73.0 0.42G 999.9 010000 724050 13743 20180805 81.4 24 71.2 24 1021.3 23 1018.9 24 9.5 24 4.4 24 11.1 999.9 91.0 73.0 0.11G 999.9 010010 724050 13743 20180806 80.9 24 71.7 24 1019.7 23 1017.4 24 10.0 24 4.8 24 11.1 999.9 91.0 73.9 0.00G 999.9 010010 724050 13743 20180807 81.1 24 73.2 24 1016.4 20 1013.8 24 9.6 24 5.6 24 14.0 21.0 91.0 73.9 0.18G 999.9 010010 724050 13743 20180808 82.5 24 71.5 24 1013.2 24 1011.1 24 9.7 24 4.2 24 9.9 999.9 93.9 75.0 0.12G 999.9 000000 724050 13743 20180809 83.7 24 68.6 24 1011.5 24 1009.1 24 10.0 24 7.3 24 12.0 15.0 93.9 75.0 0.00G 999.9 010010 724050 13743 20180810 83.8 24 67.5 24 1012.6 24 1010.2 24 10.0 24 5.1 24 9.9 999.9 91.9 75.0 0.00G 999.9 000000 724050 13743 20180811 82.6 24 70.7 24 1012.6 24 1010.2 24 9.9 24 4.7 24 12.0 999.9 91.9 75.0 0.00G 999.9 010000 724050 13743 20180812 78.9 24 70.4 24 1015.4 18 1013.0 24 9.7 24 4.9 24 11.1 999.9 86.0* 73.9* 0.01G 999.9 010010 724050 13743 20180813 78.4 24 69.7 24 1015.4 22 1013.0 24 9.7 24 5.3 24 34.0 44.1 88.0 73.0 0.36G 999.9 010010 724050 13743 20180814 77.0 24 63.6 24 1013.7 24 1011.4 24 10.0 24 7.2 24 14.0 18.1 88.0 69.1 0.00G 999.9 000000 724050 13743 20180815 81.1 24 65.3 24 1015.7 24 1013.3 24 10.0 24 6.2 24 12.0 999.9 91.9 69.1 0.00G 999.9 000000 724050 13743 20180816 82.2 24 69.2 24 1018.1 13 1016.0 23 10.0 24 4.6 24 11.1 999.9 91.9 72.0 0.00G 999.9 000000 724050 13743 20180817 83.9 24 73.8 24 1017.6 21 1015.5 24 9.9 24 7.3 24 12.0 19.0 93.9 72.9 0.00G 999.9 010000 724050 13743 20180818 81.9 24 69.4 24 1012.9 23 1010.7 24 10.0 24 5.9 24 11.1 21.0 93.9 75.9 0.00G 999.9 010010 724050 13743 20180819 79.5 24 66.7 24 1012.6 21 1010.2 24 10.0 24 6.9 24 8.9 999.9 90.0 72.0 0.00G 999.9 000000 724050 13743 20180820 75.7 24 67.4 24 1017.9 19 1015.7 24 10.0 24 8.8 24 15.0 999.9 87.1 71.1 0.00G 999.9 010010 724050 13743 20180821 77.3 24 71.0 24 1016.2 8 1013.8 24 9.2 24 7.0 24 27.0 35.0 82.4* 73.0* 0.00G 999.9 110010 724050 13743 20180822 78.1 24 69.1 24 1009.8 22 1007.6 24 9.3 24 6.4 24 20.0 35.0 86.0 72.0 2.46G 999.9 010010 724050 13743 20180823 73.8 24 55.1 24 1016.1 24 1013.8 24 10.0 24 9.9 24 15.0 19.0 86.0 66.0 0.02G 999.9 000000 724050 13743 20180824 74.3 24 56.7 24 1022.2 24 1019.9 24 10.0 24 3.9 24 9.9 999.9 84.0 63.0 0.00G 999.9 000000 724050 13743 20180825 74.6 24 59.9 24 1024.0 24 1021.8 24 10.0 24 4.6 24 9.9 999.9 84.0 63.0 0.00G 999.9 000000 724050 13743 20180826 76.5 24 64.1 24 1021.7 24 1019.4 24 10.0 24 6.3 24 13.0 999.9 88.0 66.9 0.00G 999.9 000000 724050 13743 20180827 82.0 24 72.3 24 1019.4 24 1017.1 24 9.9 24 5.0 24 8.9 999.9 91.0 68.0 0.00G 999.9 000000 724050 13743 20180828 84.3 24 75.0 24 1018.9 24 1016.5 24 8.1 24 5.9 24 9.9 999.9 93.9 75.0 0.00G 999.9 000000 724050 13743 20180829 85.3 24 75.6 24 1017.4 24 1015.1 24 9.2 24 6.9 24 12.0 999.9 93.9 78.1 0.00G 999.9 000000 724050 13743 20180830 85.7 24 70.5 24 1017.2 24 1014.8 24 10.0 24 6.2 24 9.9 999.9 93.9 78.1 0.00G 999.9 000000 724050 13743 20180831 83.8 24 71.5 24 1019.9 21 1017.6 24 9.9 24 4.7 24 12.0 999.9 93.0 78.1 0.08G 999.9 010010 724050 13743 20180901 79.4 24 72.6 24 1022.9 12 1020.7 24 9.5 24 8.4 24 15.0 19.0 90.0 75.0 0.60G 999.9 010010 724050 13743 20180902 79.9 24 71.8 24 1023.4 20 1021.1 24 9.7 24 3.9 24 17.1 28.9 89.1* 73.4* 0.47G 999.9 010010 724050 13743 20180903 84.2 24 74.5 24 1023.8 24 1021.5 24 10.0 24 5.6 24 11.1 999.9 93.0 73.9 0.00G 999.9 000000 724050 13743 20180904 85.4 24 75.1 24 1023.7 23 1021.4 24 10.0 24 3.5 24 15.9 999.9 95.0 78.1 0.00G 999.9 010010 724050 13743 20180905 84.5 24 73.8 24 1023.0 24 1020.6 24 10.0 24 3.6 24 8.9 999.9 95.0 78.1 0.00G 999.9 000000 724050 13743 20180906 85.2 24 73.9 24 1021.1 24 1018.8 24 10.0 24 6.5 24 11.1 999.9 93.0 78.1 0.00G 999.9 000000 724050 13743 20180907 82.4 24 70.5 24 1019.8 21 1017.2 24 9.1 24 5.7 24 17.1 999.9 90.0* 73.0* 0.00G 999.9 010010 724050 13743 20180908 72.8 24 68.5 24 1017.7 14 1015.5 24 8.7 24 8.7 24 19.0 26.0 75.9* 66.0* 2.89G 999.9 010010 724050 13743 20180909 64.7 24 60.8 24 1017.9 14 1015.7 24 7.2 24 12.1 24 19.0 26.0 77.0 62.1 1.12G 999.9 010000 724050 13743 20180910 68.1 24 63.8 24 1017.5 21 1015.3 24 8.6 24 8.8 24 19.0 24.1 75.9 62.1 0.93G 999.9 010000 724050 13743 20180911 73.8 24 70.2 24 1018.8 15 1016.1 24 6.7 24 5.5 24 9.9 999.9 77.0 64.9 0.01G 999.9 110010 724050 13743 20180912 75.8 24 69.3 24 1021.7 21 1019.4 24 8.0 24 3.9 24 8.0 999.9 86.0 71.1 0.00G 999.9 010000 724050 13743 20180913 76.4 24 71.5 24 1022.0 19 1019.8 24 9.9 24 7.5 24 13.0 999.9 86.0 71.1 0.01G 999.9 010000 724050 13743 20180914 74.7 24 69.9 24 1020.7 15 1018.2 24 9.4 24 12.0 24 17.1 999.9 82.0 72.0 0.00G 999.9 010000 724050 13743 20180915 75.1 24 68.6 24 1020.7 15 1018.6 24 9.9 24 9.7 24 13.0 999.9 82.0* 70.0* 0.00G 999.9 010000 724050 13743 20180916 74.5 24 67.2 24 1021.3 16 1019.2 24 9.6 24 7.5 24 13.0 999.9 82.9 69.1 0.00G 999.9 000000 724050 13743 20180917 76.1 24 71.7 24 1019.1 13 1014.9 24 8.9 24 8.4 24 17.1 27.0 82.9 69.1 0.00G 999.9 010010 724050 13743 20180918 78.1 24 72.6 24 1009.5 12 1007.1 24 9.1 24 7.0 24 15.0 21.0 84.0 73.0 1.36G 999.9 010010 724050 13743 20180919 79.1 24 66.7 24 1012.3 24 1009.9 24 10.0 24 8.4 24 13.0 999.9 87.8* 73.0* 0.12G 999.9 000000 724050 13743 20180920 75.7 24 67.4 24 1019.6 20 1017.5 24 10.0 24 4.1 24 11.1 999.9 87.1 69.1 0.00G 999.9 000000 724050 13743 20180921 72.9 24 66.3 24 1021.5 18 1019.8 24 9.6 24 8.1 24 12.0 999.9 82.9 68.0 0.00G 999.9 010000 724050 13743 20180922 75.2 24 65.8 24 1018.8 24 1016.4 24 10.0 24 9.1 24 14.0 999.9 80.1 68.0 0.29G 999.9 010000 724050 13743 20180923 64.0 24 57.5 24 1022.6 18 1020.2 24 7.6 24 8.0 24 12.0 19.0 80.1 61.0 0.19G 999.9 010000 724050 13743 20180924 65.1 24 61.6 24 1025.6 18 1023.5 24 7.1 24 8.7 24 13.0 20.0 68.0 61.0 0.60G 999.9 010000 724050 13743 20180925 72.1 24 67.4 24 1023.2 13 1021.9 24 8.0 24 6.1 24 11.1 999.9 82.0 63.0 0.26G 999.9 010000 724050 13743 20180926 76.9 24 70.8 24 1015.7 18 1014.1 24 8.7 24 8.2 24 19.0 22.0 87.1 68.0 0.05G 999.9 110010 724050 13743 20180927 67.9 24 60.1 24 1018.5 20 1016.1 24 9.1 24 8.0 24 11.1 999.9 87.1 59.0 0.19G 999.9 010010 724050 13743 20180928 64.9 24 56.7 24 1017.9 15 1015.3 24 8.7 24 6.3 24 11.1 17.1 77.0 59.0 0.90G 999.9 010010 724050 13743 20180929 69.8 24 58.5 24 1022.4 24 1020.0 24 10.0 24 4.8 24 12.0 999.9 80.1 60.1 0.31G 999.9 000000 724050 13743 20180930 68.2 24 56.4 24 1026.3 24 1024.0 24 10.0 24 5.1 24 8.0 999.9 80.1 60.1 0.00G 999.9 000000 724050 13743 20181001 70.8 24 63.2 24 1025.5 24 1023.2 24 10.0 24 6.3 24 9.9 999.9 81.0 60.1 0.00G 999.9 000000 724050 13743 20181002 73.7 24 65.3 24 1021.8 24 1019.5 24 10.0 24 7.3 24 12.0 15.0 84.0 64.0 0.00G 999.9 000000 724050 13743 20181003 76.1 24 66.4 24 1017.6 24 1015.3 24 9.8 24 6.5 24 9.9 999.9 87.1 66.0 0.00G 999.9 000000 724050 13743 20181004 75.5 24 67.1 24 1016.5 23 1014.3 24 9.3 24 3.8 24 17.1 999.9 90.0 68.0 0.00G 999.9 000000 724050 13743 20181005 71.6 24 62.3 24 1018.6 21 1016.1 24 10.0 24 7.9 24 18.1 999.9 90.0 66.9 0.00G 999.9 000000 724050 13743 20181006 69.8 24 63.8 24 1021.8 23 1019.5 24 8.6 24 3.6 24 8.0 999.9 77.0 66.0 0.00G 999.9 000000 724050 13743 20181007 74.7 24 69.3 24 1022.5 21 1020.2 24 9.3 24 5.2 24 8.9 999.9 82.0 66.0 0.00G 999.9 000000 724050 13743 20181008 76.3 24 70.5 24 1025.7 24 1023.2 24 8.5 24 3.2 24 9.9 999.9 84.9 71.1 0.00G 999.9 100000 724050 13743 20181009 76.4 24 69.3 24 1025.6 17 1023.8 24 9.9 24 3.3 24 7.0 999.9 84.9 71.1 0.00G 999.9 010000 724050 13743 20181010 76.6 24 70.2 24 1019.2 20 1017.4 24 10.0 24 4.8 24 8.9 999.9 84.0 72.0 0.00G 999.9 010000 724050 13743 20181011 77.7 24 72.0 24 1009.3 15 1005.5 24 9.6 24 7.3 24 19.0 26.0 84.0 73.0 0.13G 999.9 010010 724050 13743 20181012 64.7 24 50.0 24 1006.3 23 1003.4 24 9.6 24 14.4 24 22.9 35.9 82.9 57.9 1.38G 999.9 010010 724050 13743 20181013 56.5 24 41.5 24 1013.0 24 1010.7 24 10.0 24 7.8 24 17.1 22.0 70.0 53.1 0.02G 999.9 010000 724050 13743 20181014 53.5 24 42.7 24 1023.0 24 1020.6 24 10.0 24 3.6 24 8.0 999.9 62.1 48.0 0.01A 999.9 010000 724050 13743 20181015 62.7 24 57.3 24 1019.1 20 1017.4 24 9.1 24 7.7 24 14.0 19.0 73.0 48.0 0.12G 999.9 010000 724050 13743 20181016 62.6 24 46.5 24 1020.1 24 1017.7 24 10.0 24 9.6 24 20.0 27.0 73.9 55.9 0.07G 999.9 000000 724050 13743 20181017 60.2 24 41.9 24 1018.6 23 1016.3 24 10.0 24 7.8 24 15.0 27.0 70.0 53.1 0.00G 999.9 010000 724050 13743 20181018 55.0 24 31.9 24 1027.4 24 1025.1 24 10.0 24 9.0 24 14.0 22.9 70.0 48.0 0.00G 999.9 000000 724050 13743 20181019 53.2 24 40.4 24 1026.6 24 1024.2 24 10.0 24 5.8 24 13.0 21.0 66.0 43.0 0.00G 999.9 000000 724050 13743 20181020 60.4 24 51.1 24 1010.1 24 1008.0 24 10.0 24 7.6 24 13.0 999.9 69.1 43.0 0.08G 999.9 010000 724050 13743 20181021 52.9 24 34.7 24 1015.1 24 1012.1 24 10.0 24 13.7 24 20.0 34.0 69.1 46.9 0.07G 999.9 010000 724050 13743 20181022 47.3 24 31.8 24 1025.2 24 1022.8 24 10.0 24 7.5 24 14.0 20.0 57.9 37.9 0.00G 999.9 000000 724050 13743 20181023 56.2 24 41.1 24 1019.0 24 1016.6 24 10.0 24 7.0 24 11.1 19.0 72.0 37.9 0.00G 999.9 000000 724050 13743 20181024 53.9 24 32.8 24 1021.8 24 1019.4 24 10.0 24 10.9 24 18.1 22.9 72.0 45.0 0.00G 999.9 000000 724050 13743 20181025 47.4 24 31.0 24 1023.3 24 1021.1 24 10.0 24 7.4 24 11.1 15.0 57.9 39.9 0.00G 999.9 000000 724050 13743 20181026 48.5 24 39.4 24 1018.7 24 1016.4 24 10.0 24 5.5 24 13.0 999.9 55.0 39.9 0.00G 999.9 010000 724050 13743 20181027 51.4 24 46.9 24 1004.4 17 1002.3 24 6.7 24 12.2 24 18.1 22.9 54.0 45.0 1.00G 999.9 010000 724050 13743 20181028 54.0 24 44.4 24 1008.9 24 1006.5 24 10.0 24 5.9 24 12.0 18.1 62.1 48.9 0.23G 999.9 010000 724050 13743 20181029 55.2 24 42.6 24 1011.1 24 1008.8 24 10.0 24 8.3 24 15.0 22.9 62.1 50.0 0.02G 999.9 010000 724050 13743 20181030 53.1 24 38.7 24 1020.2 24 1017.8 24 10.0 24 5.3 24 9.9 19.0 64.9 43.0 0.00G 999.9 000000 724050 13743 20181031 55.1 24 46.0 24 1018.7 24 1016.3 24 10.0 24 4.9 24 11.1 999.9 69.1 43.0 0.00G 999.9 000000 724050 13743 20181101 63.2 24 54.0 24 1012.5 24 1010.2 24 10.0 24 9.1 24 21.0 26.0 75.9 46.9 0.00G 999.9 000000 724050 13743 20181102 68.7 24 60.8 24 1005.6 21 1003.5 24 10.0 24 10.7 24 17.1 25.1 75.9 57.0 0.00G 999.9 010000 724050 13743 20181103 57.2 24 44.1 24 1013.1 22 1009.0 24 9.5 24 10.2 24 17.1 27.0 73.0 51.1 0.78G 999.9 010000 724050 13743 20181104 50.6 24 36.7 24 1031.2 24 1028.8 24 10.0 24 3.8 24 8.0 999.9 61.0 42.1 0.03G 999.9 000000 724050 13743 20181105 54.3 24 48.3 24 1024.8 20 1021.9 24 6.9 24 7.4 24 12.0 999.9 59.0 42.1 0.24G 999.9 010000 724050 13743 20181106 56.5 24 53.8 24 1014.3 15 1012.0 24 5.1 24 5.1 24 12.0 999.9 61.0 53.1 1.21G 999.9 010000 724050 13743 20181107 57.1 24 47.3 24 1016.7 24 1014.4 24 10.0 24 5.1 24 8.9 999.9 66.0 48.0 0.78G 999.9 100000 724050 13743 20181108 56.0 24 38.9 24 1022.9 24 1020.6 24 10.0 24 6.6 24 15.0 20.0 66.0 48.0 0.00G 999.9 000000 724050 13743 20181109 50.0 24 40.6 24 1024.8 17 1020.3 24 8.6 24 6.6 24 9.9 999.9 61.0 46.0 0.03G 999.9 010000 724050 13743 20181110 45.9 24 29.7 24 1018.8 23 1015.6 24 9.8 24 11.2 24 26.0 34.0 52.0 37.9 0.51G 999.9 000000 724050 13743 20181111 38.4 24 19.9 24 1029.6 24 1027.4 24 10.0 24 5.3 24 8.9 999.9 50.0 32.0 0.00G 999.9 000000 724050 13743 20181112 42.4 24 32.3 24 1028.9 24 1026.8 24 9.9 24 2.8 24 6.0 999.9 50.0 30.9 0.00G 999.9 010000 724050 13743 20181113 46.4 24 40.8 24 1019.8 17 1016.7 24 7.6 24 8.9 24 14.0 20.0 50.0 36.0 0.87G 999.9 010000 724050 13743 20181114 43.0 24 26.4 24 1028.7 24 1026.3 24 10.0 24 8.9 24 14.0 999.9 50.0 37.9 0.34G 999.9 000000 724050 13743 20181115 37.7 24 26.5 24 1028.4 17 1026.3 24 6.9 24 11.6 24 19.0 27.0 46.0 32.0 0.03G 1.2 111000 724050 13743 20181116 43.2 24 33.4 24 1012.1 16 1007.4 24 8.1 24 10.4 24 19.0 26.0 54.0 32.0 1.17G 999.9 010000 724050 13743 20181117 46.0 24 30.7 24 1022.7 24 1020.3 24 10.0 24 8.1 24 15.9 28.0 54.0 37.0 0.05G 999.9 000000 724050 13743 20181118 43.0 24 34.5 24 1027.1 24 1024.8 24 9.4 24 2.9 24 8.0 999.9 52.0 34.0 0.00G 999.9 000000 724050 13743 20181119 47.7 24 40.0 24 1020.0 24 1017.6 24 9.9 24 3.9 24 8.0 999.9 59.0 34.0 0.00G 999.9 000000 724050 13743 20181120 50.8 24 40.2 24 1014.4 24 1012.0 24 9.8 24 7.5 24 24.1 32.1 59.0 39.9 0.00G 999.9 010000 724050 13743 20181121 44.0 24 27.4 24 1021.1 24 1018.8 24 10.0 24 7.5 24 17.1 22.9 55.9 33.1 0.00G 999.9 000000 724050 13743 20181122 36.7 24 16.5 24 1029.4 24 1027.1 24 10.0 24 12.5 24 15.9 24.1 55.0 30.9 0.00G 999.9 000000 724050 13743 20181123 30.8 24 6.9 24 1035.3 24 1033.0 24 10.0 24 7.1 24 11.1 999.9 42.1 28.0 0.00G 999.9 000000 724050 13743 20181124 38.5 24 27.0 24 1021.6 18 1017.5 24 8.3 24 6.7 24 17.1 22.0 46.9 28.0 0.00G 999.9 010000 724050 13743 20181125 46.4 24 39.6 24 1010.8 24 1008.5 24 10.0 24 6.4 24 11.1 18.1 60.1 34.0 1.42G 999.9 000000 724050 13743 20181126 49.5 24 44.6 24 1008.2 19 1004.6 24 8.9 24 3.8 24 14.0 20.0 60.1 37.9 0.00G 999.9 010000 724050 13743 20181127 42.4 24 25.3 24 1003.9 24 1001.6 24 10.0 24 12.2 24 19.0 32.1 52.0 37.9 0.45G 999.9 000000 724050 13743 20181128 36.9 24 16.6 24 1008.1 24 1005.9 24 10.0 24 15.5 24 22.0 35.0 45.0 34.0 0.00G 999.9 000000 724050 13743 20181129 35.4 24 18.2 24 1018.0 24 1015.7 24 10.0 24 9.2 24 15.0 22.0 42.1 30.9 0.00G 999.9 000000 724050 13743 20181130 41.2 24 26.2 24 1017.8 24 1015.5 24 10.0 24 3.2 24 8.0 999.9 46.9 30.9 0.00G 999.9 010000 724050 13743 20181201 40.8 24 34.9 24 1021.2 18 1018.8 24 7.2 24 2.7 24 6.0 999.9 46.9 36.0 0.01G 999.9 010000 724050 13743 20181202 47.6 24 45.1 24 1009.5 14 1007.2 24 4.4 24 5.2 24 11.1 999.9 55.9 36.0 0.31G 999.9 110000 724050 13743 20181203 55.5 24 45.3 24 1006.3 23 1003.6 24 8.2 24 8.0 24 13.0 20.0 62.1 45.0 0.01G 999.9 000000 724050 13743 20181204 44.6 24 27.5 24 1015.1 24 1012.8 24 10.0 24 10.5 24 14.0 21.0 62.1 39.9 0.00G 999.9 000000 724050 13743 20181205 36.9 24 21.8 24 1019.1 24 1016.8 24 10.0 24 7.0 24 9.9 999.9 48.0 33.1 0.00G 999.9 000000 724050 13743 20181206 38.0 24 22.2 24 1024.9 24 1022.6 24 10.0 24 6.3 24 9.9 18.1 45.0 33.1 0.00G 999.9 000000 724050 13743 20181207 40.0 24 20.8 24 1027.7 24 1025.4 24 10.0 24 8.7 24 15.9 20.0 45.0 33.1 0.00G 999.9 000000 724050 13743 20181208 34.2 24 18.0 24 1033.4 24 1031.1 24 10.0 24 5.6 24 13.0 999.9 44.1 27.0 0.00G 999.9 000000 724050 13743 20181209 33.7 24 18.4 24 1031.5 24 1029.2 24 10.0 24 7.5 24 12.0 999.9 39.9 27.0 0.00G 999.9 000000 724050 13743 20181210 34.6 24 19.1 24 1021.1 24 1018.8 24 10.0 24 9.9 24 13.0 999.9 41.0 30.0 0.00G 999.9 000000 724050 13743 20181211 35.0 24 21.9 24 1021.2 24 1018.9 24 10.0 24 5.5 24 9.9 999.9 46.9 26.1 0.00G 999.9 000000 724050 13743 20181212 39.1 24 23.3 24 1020.5 24 1018.2 24 10.0 24 4.2 24 8.9 999.9 46.9 26.1 0.00G 999.9 000000 724050 13743 20181213 42.9 24 29.8 24 1024.4 24 1022.2 24 10.0 24 3.8 24 8.9 999.9 54.0 30.0 0.00G 999.9 000000 724050 13743 20181214 43.7 24 36.9 24 1028.9 24 1026.5 24 8.2 24 3.9 24 7.0 999.9 54.0 37.0 0.00G 999.9 010000 724050 13743 20181215 50.6 24 48.0 24 1020.1 12 1016.6 24 3.5 24 9.6 24 15.9 22.9 55.0 37.0 0.59G 999.9 010000 724050 13743 20181216 48.1 24 44.7 24 1012.0 11 1009.7 24 4.9 24 10.2 24 14.0 18.1 55.0 44.1 2.38G 999.9 010000 724050 13743 20181217 47.9 24 34.0 24 1012.1 24 1009.8 24 10.0 24 8.6 24 15.0 22.9 57.9 42.1 0.47G 999.9 000000 724050 13743 20181218 43.1 24 23.0 24 1018.5 24 1016.3 24 10.0 24 11.0 24 15.0 24.1 57.9 39.0 0.00G 999.9 000000 724050 13743 20181219 39.3 24 26.6 24 1021.8 24 1019.5 24 10.0 24 4.8 24 8.0 999.9 51.1 30.0 0.00G 999.9 000000 724050 13743 20181220 40.8 24 33.9 24 1016.9 23 1014.9 24 8.0 24 5.0 24 12.0 999.9 51.1 30.0 0.00G 999.9 010000 724050 13743 20181221 59.0 24 54.6 24 995.6 18 993.3 24 9.7 24 10.4 24 19.0 28.0 66.9 36.0 0.41G 999.9 010000 724050 13743 20181222 49.4 24 36.3 24 1001.2 24 998.9 24 10.0 24 12.6 24 19.0 28.0 66.9 44.1 0.12G 999.9 010000 724050 13743 20181223 43.7 24 28.9 24 1020.5 24 1018.1 24 10.0 24 6.5 24 14.0 18.1 53.1 37.0 0.00G 999.9 000000 724050 13743 20181224 44.7 24 30.3 24 1020.3 24 1018.0 24 10.0 24 6.9 24 17.1 25.1 48.9 37.0 0.02G 999.9 010000 724050 13743 20181225 40.2 24 21.1 24 1026.8 24 1024.5 24 10.0 24 7.3 24 12.0 999.9 48.0 34.0 0.00G 999.9 000000 724050 13743 20181226 37.7 24 25.4 24 1032.4 24 1030.1 24 10.0 24 3.4 24 8.0 999.9 46.9 30.9 0.00G 999.9 000000 724050 13743 20181227 41.3 24 30.6 24 1034.4 24 1032.1 24 10.0 24 4.1 24 8.0 999.9 53.1 30.9 0.00G 999.9 000000 724050 13743 20181228 48.1 24 43.8 24 1022.6 15 1019.2 24 5.2 24 4.5 24 11.1 999.9 57.0 33.1 0.47G 999.9 110000 724050 13743 20181229 50.8 24 42.8 24 1019.1 17 1014.7 24 6.7 24 6.0 24 15.0 20.0 57.9 42.1 0.56G 999.9 100000 724050 13743 20181230 43.1 24 31.0 24 1023.6 24 1021.3 24 10.0 24 5.1 24 13.0 999.9 57.9 39.9 0.00G 999.9 000000 724050 13743 20181231 43.5 24 38.4 24 1024.9 17 1021.5 24 7.9 24 2.5 24 6.0 999.9 48.9 39.0 0.00G 999.9 010000 fluids-1.0.22/tests/gsod/2018/722324-03071.op0000644000175000017500000014327214302004506016656 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20180101 18.3 24 7.6 24 9999.9 0 935.9 18 9.9 24 8.0 24 13.0 15.9 24.6 11.3 99.99 999.9 001000 722324 03071 20180102 20.7 24 11.3 24 9999.9 0 931.0 24 9.9 24 4.8 24 8.0 999.9 30.7 15.8 0.00G 999.9 001000 722324 03071 20180103 31.3 24 11.4 24 9999.9 0 930.6 24 10.0 24 5.4 24 13.0 15.9 56.3 18.9 0.00G 999.9 000000 722324 03071 20180104 40.4 24 13.0 24 9999.9 0 925.0 24 10.0 24 5.2 24 18.1 22.9 54.1 27.7 0.00G 999.9 010000 722324 03071 20180105 43.3 24 20.6 24 9999.9 0 924.4 24 10.0 24 2.7 24 9.9 999.9 64.4 27.5 0.00G 999.9 000000 722324 03071 20180106 48.4 24 27.5 24 9999.9 0 923.2 24 10.0 24 3.2 24 11.1 999.9 67.3 31.1 0.00G 999.9 000000 722324 03071 20180107 54.9 24 40.8 24 9999.9 0 916.5 24 9.7 24 11.2 24 22.0 28.9 71.6 50.4 0.00G 999.9 000000 722324 03071 20180108 48.7 24 29.1 24 9999.9 0 923.1 24 10.0 24 4.4 24 8.0 999.9 66.6 33.3 0.00G 999.9 000000 722324 03071 20180109 56.2 24 28.9 24 9999.9 0 919.6 24 10.0 24 5.7 24 9.9 14.0 77.4 44.2 0.00G 999.9 000000 722324 03071 20180110 60.5 24 35.0 24 9999.9 0 911.5 24 9.7 24 11.5 24 38.1 47.0 77.9 50.9 0.00G 999.9 010000 722324 03071 20180111 52.9 24 30.1 24 9999.9 0 913.7 24 9.6 24 16.4 24 24.1 34.0 57.0 43.9 0.00G 999.9 010000 722324 03071 20180112 41.3 24 16.8 24 9999.9 0 924.9 24 10.0 24 4.3 24 13.0 18.1 61.0 27.7 0.00G 999.9 000000 722324 03071 20180113 39.5 24 13.2 24 9999.9 0 929.8 24 10.0 24 6.2 24 9.9 15.0 57.0 25.5 0.00G 999.9 000000 722324 03071 20180114 43.1 24 16.3 24 9999.9 0 928.0 24 10.0 24 4.1 24 11.1 15.0 57.4 31.1 0.00G 999.9 000000 722324 03071 20180115 47.4 24 28.7 24 9999.9 0 924.6 24 9.5 24 5.9 24 27.0 35.0 64.4 36.9 0.00G 999.9 000000 722324 03071 20180116 28.4 24 3.9 24 9999.9 0 936.1 24 9.9 24 12.7 24 26.0 35.0 39.9 22.1 0.00G 999.9 000000 722324 03071 20180117 30.0 24 -0.4 24 9999.9 0 934.6 24 10.0 24 4.4 24 11.1 15.0 38.7 23.0 0.00G 999.9 000000 722324 03071 20180118 36.8 24 2.9 24 9999.9 0 928.7 24 10.0 24 6.9 24 11.1 15.0 51.8 27.9 0.00G 999.9 000000 722324 03071 20180119 43.6 24 18.5 24 9999.9 0 920.4 24 10.0 24 7.9 24 15.0 20.0 69.3 28.2 0.00G 999.9 000000 722324 03071 20180120 53.4 24 26.8 24 9999.9 0 914.6 24 10.0 24 7.2 24 15.0 24.1 78.4 34.9 0.00G 999.9 000000 722324 03071 20180121 55.5 24 30.4 24 9999.9 0 912.9 24 8.5 24 13.1 24 33.0 42.9 72.7 43.2 0.00G 999.9 000000 722324 03071 20180122 45.4 24 8.5 24 9999.9 0 919.6 24 10.0 24 10.1 24 19.0 29.9 57.4 32.0 0.00G 999.9 000000 722324 03071 20180123 42.3 24 7.5 24 9999.9 0 924.3 24 10.0 24 1.8 24 8.9 999.9 60.3 25.5 0.00G 999.9 000000 722324 03071 20180124 44.0 24 8.6 24 9999.9 0 928.8 24 10.0 24 2.7 24 11.1 14.0 61.9 26.4 0.00I 999.9 000000 722324 03071 20180125 46.0 24 14.9 24 9999.9 0 926.6 24 9.9 24 7.2 24 18.1 22.9 59.2 31.3 99.99 999.9 010000 722324 03071 20180126 52.7 24 37.2 24 9999.9 0 920.3 24 9.9 24 11.9 24 18.1 24.1 70.0 44.6 0.00I 999.9 000000 722324 03071 20180127 49.4 24 32.1 24 9999.9 0 924.2 24 9.4 24 7.4 24 15.0 18.1 64.6 33.1 0.00I 999.9 000000 722324 03071 20180128 44.6 24 15.2 24 9999.9 0 927.5 24 10.0 24 1.8 24 7.0 999.9 64.6 27.7 0.00I 999.9 000000 722324 03071 20180129 47.0 24 16.3 24 9999.9 0 931.9 24 10.0 24 3.3 24 9.9 999.9 62.4 31.8 0.00I 999.9 000000 722324 03071 20180130 51.2 24 18.6 24 9999.9 0 928.6 23 10.0 24 7.9 24 15.0 20.0 70.2 36.7 0.00I 999.9 000000 722324 03071 20180131 57.4 24 24.6 24 9999.9 0 918.8 21 10.0 24 10.2 24 15.0 20.0 77.0 40.5 0.00I 999.9 000000 722324 03071 20180201 53.9 24 24.1 24 9999.9 0 919.8 18 10.0 24 9.9 24 17.1 24.1 74.3 38.8 0.00I 999.9 000000 722324 03071 20180202 42.5 24 20.7 24 9999.9 0 929.2 24 10.0 24 6.8 24 9.9 14.0 55.0 29.5 0.00I 999.9 000000 722324 03071 20180203 54.0 24 29.9 24 9999.9 0 918.0 24 10.0 24 9.3 24 19.0 24.1 77.4 43.7 0.00I 999.9 000000 722324 03071 20180204 56.2 24 21.8 24 9999.9 0 915.6 24 10.0 24 5.2 24 11.1 999.9 73.2 38.3 0.00I 999.9 000000 722324 03071 20180205 42.9 24 21.8 24 9999.9 0 920.7 24 9.6 24 8.5 24 22.0 31.1 70.7 27.1 0.00I 999.9 000000 722324 03071 20180206 49.9 24 35.8 24 9999.9 0 917.5 24 9.0 24 7.6 24 13.0 18.1 68.9 41.4 0.00I 999.9 000000 722324 03071 20180207 39.1 24 22.1 24 9999.9 0 925.5 24 10.0 24 7.8 24 15.0 18.1 54.0 29.3 0.00I 999.9 000000 722324 03071 20180208 46.1 24 21.1 24 9999.9 0 928.0 24 10.0 24 5.3 24 13.0 17.1 67.1 32.2 0.00I 999.9 000000 722324 03071 20180209 56.1 24 28.3 24 9999.9 0 919.1 24 10.0 24 8.2 24 14.0 20.0 77.4 39.0 0.00I 999.9 000000 722324 03071 20180210 45.4 24 27.5 24 9999.9 0 914.8 24 10.0 24 8.2 24 15.9 21.0 73.0 28.0 0.00I 999.9 000000 722324 03071 20180211 34.6 24 15.5 24 9999.9 0 919.0 24 10.0 24 10.7 24 20.0 22.9 44.8 25.7 0.00I 999.9 000000 722324 03071 20180212 38.6 24 14.5 24 9999.9 0 924.8 24 10.0 24 5.9 24 14.0 20.0 55.9 30.2 0.00I 999.9 000000 722324 03071 20180213 47.8 24 27.5 24 9999.9 0 924.8 24 10.0 24 7.6 24 13.0 17.1 67.3 36.1 0.00I 999.9 000000 722324 03071 20180214 59.0 24 39.0 24 9999.9 0 923.8 24 10.0 24 4.4 24 13.0 18.1 83.5 47.5 0.00I 999.9 000000 722324 03071 20180215 65.8 24 49.4 24 9999.9 0 918.4 24 9.8 24 8.4 24 15.0 20.0 81.1 56.3 0.00I 999.9 000000 722324 03071 20180216 61.4 24 35.8 24 9999.9 0 922.1 24 10.0 24 10.0 24 20.0 25.1 79.7 49.5 0.00I 999.9 000000 722324 03071 20180217 52.2 24 33.5 24 9999.9 0 921.3 24 9.9 24 6.8 24 13.0 18.1 70.9 41.9 99.99 999.9 010000 722324 03071 20180218 58.2 24 39.8 24 9999.9 0 918.9 24 10.0 24 7.3 24 19.0 28.0 78.6 46.4 0.00I 999.9 000000 722324 03071 20180219 65.5 24 55.2 24 9999.9 0 911.2 24 7.3 24 10.8 24 22.9 28.9 77.9 59.0 99.99 999.9 010000 722324 03071 20180220 68.6 24 42.6 24 9999.9 0 911.3 24 10.0 24 11.6 24 19.0 27.0 76.5 56.8 0.00I 999.9 000000 722324 03071 20180221 37.5 24 25.5 24 9999.9 0 922.5 24 8.5 24 13.4 24 22.0 27.0 9999.9 26.2* 99.99 999.9 011000 722324 03071 20180222 32.5 24 29.5 24 9999.9 0 924.0 24 6.5 24 4.5 24 11.1 999.9 49.1 27.9 0.00I 999.9 000000 722324 03071 20180223 45.7 24 39.9 24 9999.9 0 920.5 24 6.3 24 3.8 24 9.9 999.9 65.8 39.6 0.00I 999.9 100000 722324 03071 20180224 55.7 24 38.7 24 9999.9 0 914.9 24 7.6 24 10.5 24 25.1 32.1 70.5 42.1 0.00I 999.9 100000 722324 03071 20180225 51.0 24 10.2 24 9999.9 0 917.8 24 10.0 24 6.6 24 18.1 25.1 72.1 28.8 0.00I 999.9 000000 722324 03071 20180226 50.2 24 6.9 24 9999.9 0 922.6 24 10.0 24 5.8 24 12.0 19.0 72.5 30.0 0.00I 999.9 000000 722324 03071 20180227 62.4 24 33.4 24 9999.9 0 917.4 23 10.0 24 6.6 24 15.0 19.0 78.8 47.3 0.00I 999.9 000000 722324 03071 20180228 69.0 24 40.0 24 9999.9 0 913.9 22 9.9 24 7.7 24 15.0 25.1 75.2 60.6 99.99 999.9 010000 722324 03071 20180301 56.4 24 27.8 24 9999.9 0 922.0 18 10.0 24 10.5 24 22.9 28.0 68.0 42.8 0.00I 999.9 000000 722324 03071 20180302 54.1 24 32.1 24 9999.9 0 925.0 24 10.0 24 5.9 24 13.0 18.1 73.8 37.6 0.00G 999.9 000000 722324 03071 20180303 62.8 24 42.0 24 9999.9 0 920.2 24 10.0 24 9.7 24 15.0 18.1 77.9 51.8 0.00G 999.9 000000 722324 03071 20180304 69.4 24 44.9 24 9999.9 0 916.3 24 9.8 24 11.3 24 19.0 27.0 85.5 60.4 0.00G 999.9 000000 722324 03071 20180305 64.4 24 10.4 21 9999.9 0 916.7 24 10.0 24 7.8 24 15.9 24.1 81.9 50.2 0.00G 999.9 000000 722324 03071 20180306 53.5 24 11.3 24 9999.9 0 920.9 24 10.0 24 3.5 24 12.0 999.9 70.5 35.2 0.00G 999.9 000000 722324 03071 20180307 50.6 24 7.5 24 9999.9 0 925.6 24 10.0 24 6.9 24 14.0 21.0 68.0 35.6 0.00G 999.9 000000 722324 03071 20180308 59.0 24 17.9 24 9999.9 0 921.1 24 10.0 24 9.9 24 19.0 24.1 73.2 48.6 0.00G 999.9 000000 722324 03071 20180309 62.6 24 31.1 24 9999.9 0 914.0 24 10.0 24 9.2 24 14.0 20.0 84.2 48.6 0.00G 999.9 000000 722324 03071 20180310 67.5 24 20.5 24 9999.9 0 911.7 24 10.0 24 7.2 24 15.9 22.9 87.1 47.3 0.00G 999.9 000000 722324 03071 20180311 64.3 24 20.8 24 9999.9 0 918.6 24 9.8 24 11.2 24 22.0 31.1 81.5 54.9 0.00G 999.9 000000 722324 03071 20180312 52.2 24 20.5 24 9999.9 0 927.7 24 10.0 24 5.1 24 9.9 15.0 62.8 45.9 0.00G 999.9 000000 722324 03071 20180313 52.8 24 21.4 24 9999.9 0 924.7 24 10.0 24 5.2 24 11.1 17.1 68.9 36.9 0.00G 999.9 000000 722324 03071 20180314 56.2 24 24.8 24 9999.9 0 924.6 24 10.0 24 8.9 24 17.1 22.9 72.1 40.5 0.00G 999.9 000000 722324 03071 20180315 61.4 24 34.6 24 9999.9 0 915.2 24 10.0 24 11.5 24 17.1 22.0 80.6 50.9 0.00G 999.9 000000 722324 03071 20180316 67.0 24 26.6 24 9999.9 0 912.7 24 10.0 24 11.0 24 19.0 26.0 81.9 49.1 0.00G 999.9 000000 722324 03071 20180317 65.9 24 20.7 24 9999.9 0 914.0 24 10.0 24 5.2 24 14.0 17.1 83.3 54.9 0.00G 999.9 000000 722324 03071 20180318 69.6 24 32.3 24 9999.9 0 912.8 24 10.0 24 9.0 24 25.1 32.1 81.5 60.1 0.00G 999.9 010000 722324 03071 20180319 63.6 24 13.1 24 9999.9 0 913.1 24 9.8 24 13.7 24 22.0 28.9 79.7 51.1 0.00G 999.9 000000 722324 03071 20180320 54.0 24 24.0 24 9999.9 0 919.5 24 10.0 24 4.5 24 13.0 19.0 71.8 35.6 0.00G 999.9 000000 722324 03071 20180321 61.9 24 22.6 24 9999.9 0 918.3 24 10.0 24 7.3 24 20.0 25.1 84.6 44.6 0.00G 999.9 000000 722324 03071 20180322 71.1 24 38.9 24 9999.9 0 920.0 24 10.0 24 10.3 24 17.1 21.0 92.5 55.6 0.00G 999.9 000000 722324 03071 20180323 73.0 24 50.1 24 9999.9 0 917.4 24 10.0 24 11.7 24 15.9 22.9 92.3 60.3 0.00G 999.9 000000 722324 03071 20180324 74.0 24 45.0 24 9999.9 0 915.5 24 10.0 24 6.9 24 14.0 18.1 91.8 57.7 0.00G 999.9 000000 722324 03071 20180325 76.5 24 37.2 24 9999.9 0 913.9 24 10.0 24 6.7 24 20.0 28.9 90.1 58.1 0.00G 999.9 000000 722324 03071 20180326 77.3 24 45.3 24 9999.9 0 912.0 24 9.8 24 7.1 24 14.0 17.1 87.1 67.1 0.00G 999.9 000000 722324 03071 20180327 67.1 24 44.9 24 9999.9 0 915.2 24 9.9 24 9.1 24 25.1 39.0 76.3 60.6 0.00G 999.9 010000 722324 03071 20180328 54.7 24 47.3 24 9999.9 0 915.7 24 9.2 24 8.1 24 22.0 29.9 69.3 45.5 0.34G 999.9 010000 722324 03071 20180329 60.4 24 33.4 24 9999.9 0 915.4 24 10.0 24 11.3 24 19.0 26.0 71.1 49.1 0.00G 999.9 000000 722324 03071 20180330 61.1 24 39.5 24 9999.9 0 923.1 23 10.0 24 9.7 24 17.1 24.1 77.9 47.7 0.00G 999.9 000000 722324 03071 20180331 71.2 24 42.2 24 9999.9 0 919.1 22 9.9 24 13.1 24 18.1 24.1 89.8* 58.6* 0.00G 999.9 000000 722324 03071 20180401 68.6 24 42.7 24 9999.9 0 916.1 20 10.0 24 6.7 24 19.0 24.1 86.2 55.8 0.00G 999.9 000000 722324 03071 20180402 56.1 24 38.7 24 9999.9 0 913.7 24 9.6 24 8.4 24 18.1 22.9 9999.9 43.9* 0.00G 999.9 000000 722324 03071 20180403 74.5 24 39.2 24 9999.9 0 910.4 24 9.2 24 12.8 24 24.1 32.1 87.4 66.4 0.00G 999.9 000000 722324 03071 20180404 54.6 24 13.9 24 9999.9 0 924.4 24 9.9 24 11.2 24 22.9 26.0 72.5 39.4 0.00G 999.9 000000 722324 03071 20180405 67.7 24 32.3 24 9999.9 0 917.5 24 9.8 24 8.8 24 15.0 18.1 91.2 52.3 0.00G 999.9 000000 722324 03071 20180406 74.3 24 42.1 24 9999.9 0 911.7 24 10.0 24 6.1 24 13.0 18.1 86.0 59.2 0.00G 999.9 000000 722324 03071 20180407 48.4 24 29.7 24 9999.9 0 918.1 24 9.3 24 12.1 24 24.1 31.1 9999.9 35.6* 0.00G 999.9 000000 722324 03071 20180408 56.4 24 30.4 24 9999.9 0 913.1 24 9.9 24 9.2 24 17.1 24.1 9999.9 38.7* 0.00G 999.9 000000 722324 03071 20180409 62.0 24 40.3 24 9999.9 0 914.9 24 9.5 24 9.8 24 19.0 24.1 91.6* 46.6* 0.00G 999.9 000000 722324 03071 20180410 60.1 24 39.8 24 9999.9 0 926.6 24 9.9 24 6.6 24 15.0 20.0 79.5 43.7 0.00G 999.9 000000 722324 03071 20180411 72.8 24 40.1 24 9999.9 0 919.6 24 9.9 24 10.8 24 17.1 25.1 93.4* 59.0* 0.00G 999.9 000000 722324 03071 20180412 78.4 24 42.1 24 9999.9 0 912.0 24 10.0 24 13.3 24 22.0 28.0 97.9 62.6 0.00G 999.9 000000 722324 03071 20180413 77.9 24 31.9 24 9999.9 0 907.2 24 7.5 24 18.3 24 32.1 42.9 93.2 66.6 0.00G 999.9 000000 722324 03071 20180414 55.7 24 24.4 23 9999.9 0 919.1 24 9.8 24 10.9 24 26.0 34.0 68.7 42.4 0.00G 999.9 000000 722324 03071 20180415 57.8 24 16.6 24 9999.9 0 922.8 24 10.0 24 3.9 24 12.0 17.1 79.2 41.0 0.00G 999.9 000000 722324 03071 20180416 68.2 24 19.0 24 9999.9 0 920.3 24 9.9 24 9.8 24 19.0 24.1 92.1 47.3 0.00G 999.9 000000 722324 03071 20180417 77.2 24 25.7 24 9999.9 0 914.3 24 9.5 24 12.3 24 21.0 27.0 95.9 61.7 0.00G 999.9 000000 722324 03071 20180418 72.8 24 11.3 24 9999.9 0 917.9 24 9.1 24 11.0 24 22.9 29.9 91.6 58.3 0.00G 999.9 000000 722324 03071 20180419 63.3 24 18.8 24 9999.9 0 925.4 24 9.3 24 8.2 24 19.0 24.1 78.3 48.2 0.00G 999.9 000000 722324 03071 20180420 65.5 24 32.3 24 9999.9 0 919.3 24 8.3 24 16.4 24 31.1 42.9 75.6 57.2 0.00G 999.9 000000 722324 03071 20180421 66.6 24 46.6 24 9999.9 0 915.1 24 9.0 24 15.6 24 31.1 40.0 79.2 51.1 0.00G 999.9 000000 722324 03071 20180422 59.3 24 39.7 24 9999.9 0 922.2 24 9.9 24 6.5 24 17.1 26.0 78.4 44.6 0.00G 999.9 000000 722324 03071 20180423 67.2 24 35.8 24 9999.9 0 921.0 24 9.2 24 5.0 24 9.9 14.0 87.1 49.1 0.00G 999.9 000000 722324 03071 20180424 76.1 24 39.9 24 9999.9 0 917.8 24 9.8 24 6.8 24 14.0 19.0 96.3 56.1 0.00G 999.9 000000 722324 03071 20180425 62.8 24 42.1 24 9999.9 0 922.0 24 9.5 24 12.5 24 19.0 26.0 9999.9 46.8* 0.00G 999.9 010000 722324 03071 20180426 61.6 24 38.8 24 9999.9 0 919.6 24 9.8 24 6.1 24 14.0 17.1 89.1 43.7 0.00G 999.9 000000 722324 03071 20180427 66.4 24 37.1 24 9999.9 0 922.0 24 8.8 24 8.2 24 18.1 29.9 83.3* 48.4* 0.00G 999.9 000000 722324 03071 20180428 69.5 24 34.7 24 9999.9 0 919.1 24 10.0 24 5.3 24 14.0 19.0 87.8 53.6 0.00G 999.9 000000 722324 03071 20180429 74.7 24 46.6 24 9999.9 0 917.6 24 10.0 24 13.1 24 22.0 27.0 88.3 62.1 0.00G 999.9 000000 722324 03071 20180430 73.5 24 53.5 24 9999.9 0 915.6 21 10.0 24 15.6 24 22.9 31.1 86.5 63.5 0.00G 999.9 000000 722324 03071 20180501 76.9 24 53.6 24 9999.9 0 912.8 18 10.0 24 14.0 24 24.1 31.1 90.3 67.8 0.00G 999.9 000000 722324 03071 20180502 82.0 24 51.5 24 9999.9 0 913.1 24 10.0 24 14.3 24 22.9 39.0 96.3 73.4 0.00G 999.9 000000 722324 03071 20180503 74.3 24 42.6 24 9999.9 0 915.7 24 9.4 24 6.8 24 22.9 31.1 87.6* 61.7* 0.15G 999.9 010010 722324 03071 20180504 74.5 24 36.8 24 9999.9 0 921.3 24 8.5 24 9.3 24 20.0 27.0 83.7 63.7 0.01G 999.9 010000 722324 03071 20180505 71.9 24 41.3 24 9999.9 0 924.3 24 8.4 24 3.0 24 11.1 15.0 90.1 54.3 0.00G 999.9 000000 722324 03071 20180506 77.3 24 36.0 24 9999.9 0 923.1 24 10.0 24 4.6 24 12.0 15.9 94.6 59.2 0.00G 999.9 000000 722324 03071 20180507 82.0 24 33.8 24 9999.9 0 922.2 24 9.9 24 10.3 24 18.1 27.0 96.1 68.0 0.00G 999.9 000000 722324 03071 20180508 83.3 24 38.1 24 9999.9 0 918.1 24 8.8 24 13.8 24 20.0 27.0 99.9 70.7 0.00G 999.9 000000 722324 03071 20180509 84.9 23 42.3 23 9999.9 0 915.2 23 9.9 23 13.2 23 19.0 25.1 99.0 69.8 0.00G 999.9 000000 722324 03071 20180510 83.7 24 49.3 24 9999.9 0 914.4 24 10.0 24 15.5 24 22.0 28.0 100.2 69.3 0.00G 999.9 000000 722324 03071 20180511 83.8 24 48.8 24 9999.9 0 912.6 24 10.0 24 15.5 24 22.9 29.9 103.3 70.0 0.00G 999.9 000000 722324 03071 20180512 85.0 24 51.2 24 9999.9 0 913.3 24 10.0 24 12.1 24 22.0 28.9 101.5 72.0 0.00G 999.9 000000 722324 03071 20180513 86.3 24 53.2 24 9999.9 0 915.4 24 10.0 24 9.4 24 21.0 26.0 101.5 73.9 0.00G 999.9 000000 722324 03071 20180514 82.1 24 57.0 24 9999.9 0 915.3 24 10.0 24 9.7 24 21.0 25.1 97.5 71.1 0.00G 999.9 000000 722324 03071 20180515 84.0 24 53.1 24 9999.9 0 915.3 24 9.8 24 9.6 24 18.1 25.1 106.7 69.1 0.00G 999.9 000000 722324 03071 20180516 81.7 24 53.0 24 9999.9 0 916.3 24 9.6 24 10.5 24 18.1 26.0 104.2 66.6 0.00G 999.9 000000 722324 03071 20180517 83.1 24 50.9 24 9999.9 0 914.4 24 10.0 24 9.8 24 21.0 28.0 102.4 68.0 0.00G 999.9 000000 722324 03071 20180518 85.0 24 46.7 24 9999.9 0 910.6 24 10.0 24 12.0 24 21.0 27.0 101.3 72.0 0.00G 999.9 000000 722324 03071 20180519 83.9 24 53.3 24 9999.9 0 910.9 24 10.0 24 8.7 24 18.1 22.9 95.0 70.7 0.00G 999.9 000000 722324 03071 20180520 74.4 24 60.5 24 9999.9 0 916.6 24 9.4 24 11.4 24 22.0 31.1 89.1 59.0 0.13G 999.9 010010 722324 03071 20180521 71.6 24 59.0 24 9999.9 0 919.2 24 9.5 24 8.7 24 15.9 22.0 87.8 62.1 0.20G 999.9 000000 722324 03071 20180522 77.8 24 59.3 24 9999.9 0 917.0 24 10.0 24 10.0 24 17.1 22.0 90.1 68.0 0.00G 999.9 000000 722324 03071 20180523 80.5 24 59.3 24 9999.9 0 917.2 24 10.0 24 12.7 24 18.1 24.1 92.5 70.7 0.00G 999.9 000000 722324 03071 20180524 80.9 24 58.1 24 9999.9 0 919.6 24 10.0 24 6.8 24 14.0 18.1 97.0 67.3 0.00G 999.9 000000 722324 03071 20180525 86.5 24 56.2 24 9999.9 0 917.6 24 10.0 24 7.9 24 13.0 17.1 105.1 73.0 0.00G 999.9 000000 722324 03071 20180526 90.7 24 48.7 24 9999.9 0 913.7 24 10.0 24 8.4 24 17.1 22.9 108.7 74.7 0.00G 999.9 000000 722324 03071 20180527 92.1 24 44.2 24 9999.9 0 911.4 24 10.0 24 8.4 24 19.0 24.1 106.9 77.0 0.00G 999.9 000000 722324 03071 20180528 90.5 24 51.7 24 9999.9 0 911.8 24 10.0 24 13.9 24 20.0 27.0 103.3 76.1 0.00G 999.9 000000 722324 03071 20180529 89.4 24 48.5 24 9999.9 0 911.0 24 10.0 24 9.3 24 15.9 21.0 106.2 73.8 0.00G 999.9 000000 722324 03071 20180530 92.2 24 43.6 24 9999.9 0 910.0 22 10.0 24 7.8 24 13.0 20.0 109.8 76.3 0.00G 999.9 000000 722324 03071 20180531 94.5 24 50.4 24 9999.9 0 911.4 22 10.0 24 7.2 24 17.1 25.1 112.8 76.6 0.00G 999.9 000000 722324 03071 20180601 92.8 24 56.5 24 9999.9 0 913.0 19 10.0 24 8.1 24 18.1 22.0 111.4 76.1 0.00G 999.9 000000 722324 03071 20180602 92.3 24 54.4 24 9999.9 0 914.9 24 9.9 24 11.4 24 21.0 28.0 106.7 75.7 0.00G 999.9 000000 722324 03071 20180603 85.5 24 53.6 24 9999.9 0 921.1 24 10.0 24 14.5 24 20.0 26.0 98.1 73.9 0.00G 999.9 000000 722324 03071 20180604 76.2 24 62.4 24 9999.9 0 920.6 24 9.5 24 10.2 24 32.1 42.9 91.8 65.3 0.02G 999.9 010010 722324 03071 20180605 86.8 24 59.4 24 9999.9 0 915.0 24 10.0 24 3.1 24 7.0 999.9 106.9 71.1 0.01G 999.9 000000 722324 03071 20180606 91.1 24 51.7 24 9999.9 0 913.2 24 10.0 24 8.8 24 17.1 27.0 107.8 76.3 0.00G 999.9 000000 722324 03071 20180607 91.7 24 49.3 24 9999.9 0 914.2 24 10.0 24 8.7 24 15.0 20.0 104.9 77.4 0.00G 999.9 000000 722324 03071 20180608 86.6 24 58.4 24 9999.9 0 917.9 24 9.8 24 13.6 24 20.0 32.1 101.1 71.1 0.00G 999.9 000000 722324 03071 20180609 87.4 24 56.9 24 9999.9 0 918.7 24 10.0 24 10.7 24 15.0 21.0 99.5 76.8 0.00G 999.9 000000 722324 03071 20180610 87.0 24 56.5 24 9999.9 0 915.0 24 10.0 24 10.3 24 15.9 22.0 100.2 75.4 0.00G 999.9 010010 722324 03071 20180611 87.8 24 55.5 24 9999.9 0 911.2 24 10.0 24 9.6 24 17.1 22.9 108.1 73.6 0.00G 999.9 000000 722324 03071 20180612 92.1 24 55.9 24 9999.9 0 913.1 24 9.8 24 11.7 24 17.1 22.0 106.2 78.3 0.00G 999.9 000000 722324 03071 20180613 87.6 24 59.9 24 9999.9 0 918.0 24 9.3 24 8.7 24 15.9 22.0 99.5 76.5 0.00G 999.9 010010 722324 03071 20180614 86.8 24 58.3 24 9999.9 0 917.7 24 10.0 24 10.6 24 15.9 21.0 98.1 75.4 0.00G 999.9 000000 722324 03071 20180615 85.9 24 59.5 24 9999.9 0 915.1 24 10.0 24 12.8 24 18.1 26.0 96.6 74.8 0.00G 999.9 000000 722324 03071 20180616 85.6 24 63.2 24 9999.9 0 912.7 24 10.0 24 15.0 24 21.0 28.0 96.3 75.7 0.00G 999.9 000000 722324 03071 20180617 73.6 24 68.6 24 9999.9 0 915.8 24 8.8 24 5.9 24 18.1 26.0 89.4 67.1 0.17G 999.9 010000 722324 03071 20180618 80.6 24 68.6 24 9999.9 0 917.1 24 10.0 24 4.9 24 22.0 28.9 97.9 70.7 0.00I 999.9 000000 722324 03071 20180619 83.3 24 67.7 24 9999.9 0 916.3 24 10.0 24 6.5 24 11.1 14.0 98.1 73.4 0.00G 999.9 000000 722324 03071 20180620 82.7 24 66.1 24 9999.9 0 914.9 24 10.0 24 9.3 24 17.1 22.0 95.2 72.5 0.00G 999.9 000000 722324 03071 20180621 86.8 24 64.8 24 9999.9 0 917.3 24 10.0 24 4.8 24 9.9 999.9 101.3 75.2 0.00G 999.9 000000 722324 03071 20180622 88.4 24 61.4 24 9999.9 0 915.9 24 10.0 24 9.6 24 17.1 22.9 100.6 75.6 0.00G 999.9 000000 722324 03071 20180623 91.3 24 61.1 24 9999.9 0 910.3 24 9.9 24 11.5 24 18.1 25.1 110.7 77.9 0.00G 999.9 000000 722324 03071 20180624 93.7 24 61.2 24 9999.9 0 910.3 24 9.9 24 12.7 24 20.0 29.9 109.0 79.3 0.00G 999.9 000000 722324 03071 20180625 90.3 24 61.7 24 9999.9 0 913.8 24 10.0 24 13.0 24 22.0 31.1 107.2 77.7 0.00G 999.9 000000 722324 03071 20180626 87.8 24 63.9 24 9999.9 0 917.6 24 9.9 24 12.2 24 19.0 24.1 99.5 75.7 0.00G 999.9 000000 722324 03071 20180627 88.5 24 63.0 24 9999.9 0 917.0 24 9.6 24 10.3 24 14.0 21.0 102.2 77.4 0.00G 999.9 000000 722324 03071 20180628 90.2 24 61.0 24 9999.9 0 916.4 22 10.0 24 10.6 24 18.1 22.0 102.2 78.4 0.00G 999.9 000000 722324 03071 20180629 90.0 24 63.1 24 9999.9 0 914.9 24 10.0 24 12.0 24 17.1 21.0 101.8 79.0 0.00G 999.9 000000 722324 03071 20180630 79.2 24 68.9 24 9999.9 0 915.5 21 9.2 24 11.7 24 31.1 42.9 95.0 70.2 0.03G 999.9 010010 722324 03071 20180701 87.0 24 62.2 24 9999.9 0 915.0 19 9.9 24 8.6 24 17.1 21.0 102.7 75.2 0.01G 999.9 000000 722324 03071 20180702 87.0 24 63.3 24 9999.9 0 917.3 24 9.9 24 8.3 24 18.1 21.0 100.0* 75.2* 0.00G 999.9 000000 722324 03071 20180703 85.3 24 62.8 24 9999.9 0 917.7 24 10.0 24 5.9 24 12.0 24.1 101.5 75.2 0.00G 999.9 000000 722324 03071 20180704 91.0 24 55.0 24 9999.9 0 918.3 24 10.0 24 8.1 24 13.0 20.0 102.7 78.6 0.00G 999.9 000000 722324 03071 20180705 84.6 24 62.9 24 9999.9 0 923.5 24 9.9 24 9.4 24 15.9 24.1 101.3 74.8 0.00G 999.9 000000 722324 03071 20180706 82.6 24 63.4 24 9999.9 0 927.3 24 10.0 24 5.3 24 15.9 21.0 97.7 71.2 0.00G 999.9 010010 722324 03071 20180707 79.3 24 66.2 24 9999.9 0 924.4 24 9.8 24 5.6 24 15.9 28.9 96.1 70.7 0.03G 999.9 010010 722324 03071 20180708 79.8 24 66.5 24 9999.9 0 922.6 24 10.0 24 3.5 24 18.1 28.0 92.3 70.7 0.01G 999.9 010000 722324 03071 20180709 81.2 24 64.5 24 9999.9 0 923.3 24 10.0 24 4.9 24 13.0 21.0 93.7 73.9 0.00G 999.9 000000 722324 03071 20180710 79.8 24 66.1 24 9999.9 0 923.9 24 10.0 24 5.1 24 13.0 18.1 94.1 72.5 0.00G 999.9 010000 722324 03071 20180711 84.5 24 60.6 24 9999.9 0 920.7 24 10.0 24 7.8 24 15.0 21.0 97.0 74.3 0.00G 999.9 000000 722324 03071 20180712 87.5 24 59.7 24 9999.9 0 920.0 24 10.0 24 8.8 24 13.0 17.1 99.5 76.1 0.00G 999.9 000000 722324 03071 20180713 88.2 24 59.2 24 9999.9 0 920.1 24 10.0 24 9.3 24 15.9 20.0 100.4 76.6 0.00G 999.9 000000 722324 03071 20180714 88.3 24 59.8 24 9999.9 0 920.2 24 10.0 24 9.4 24 13.0 20.0 101.3 76.1 0.00G 999.9 000000 722324 03071 20180715 89.2 24 60.1 24 9999.9 0 919.1 24 10.0 24 7.9 24 13.0 15.9 99.3 79.7 0.00G 999.9 000000 722324 03071 20180716 86.7 24 62.8 24 9999.9 0 919.5 24 9.5 24 6.5 24 13.0 19.0 101.1 74.1 0.00G 999.9 000000 722324 03071 20180717 88.8 24 57.0 24 9999.9 0 920.5 24 9.3 24 5.4 24 11.1 14.0 102.6 75.7 0.00G 999.9 000000 722324 03071 20180718 91.6 24 54.4 24 9999.9 0 919.2 24 10.0 24 6.4 24 11.1 15.0 107.2 77.9 0.00G 999.9 000000 722324 03071 20180719 94.5 24 51.2 24 9999.9 0 916.7 24 10.0 24 7.4 24 14.0 20.0 109.0 81.0 0.00G 999.9 000000 722324 03071 20180720 93.9 24 52.4 24 9999.9 0 917.1 24 9.5 24 7.8 24 11.1 17.1 107.1 79.0 0.00G 999.9 000000 722324 03071 20180721 92.8 24 53.7 24 9999.9 0 918.5 24 10.0 24 7.7 24 13.0 20.0 106.2 78.1 0.00G 999.9 000000 722324 03071 20180722 91.8 24 52.1 24 9999.9 0 918.6 24 10.0 24 6.1 24 11.1 17.1 107.6 74.3 0.00G 999.9 000000 722324 03071 20180723 94.1 24 52.3 24 9999.9 0 917.7 24 10.0 24 6.2 24 11.1 15.0 109.6 77.9 0.00G 999.9 000000 722324 03071 20180724 88.4 24 56.6 24 9999.9 0 921.6 24 9.8 24 10.5 24 20.0 27.0 107.1 75.2 0.00G 999.9 000000 722324 03071 20180725 90.0 24 58.9 24 9999.9 0 921.7 24 10.0 24 5.7 24 13.0 18.1 105.6 76.6 0.00G 999.9 000000 722324 03071 20180726 88.0 24 63.0 24 9999.9 0 919.7 24 9.9 24 7.3 24 12.0 17.1 98.8 77.9 0.00G 999.9 000000 722324 03071 20180727 87.3 24 55.6 24 9999.9 0 921.0 24 10.0 24 6.3 24 17.1 21.0 100.6 79.3 0.00G 999.9 000000 722324 03071 20180728 89.3 24 53.9 24 9999.9 0 921.0 24 10.0 24 5.8 24 11.1 15.0 102.0 78.8 0.00G 999.9 000000 722324 03071 20180729 90.7 24 53.2 24 9999.9 0 919.3 24 10.0 24 6.6 24 9.9 17.1 105.4 78.8 0.00G 999.9 000000 722324 03071 20180730 89.2 24 59.2 24 9999.9 0 918.3 22 9.9 24 9.2 24 17.1 22.9 102.6 81.7 0.00G 999.9 010000 722324 03071 20180731 81.5 24 64.2 24 9999.9 0 922.2 21 9.7 24 6.1 24 17.1 26.0 95.0 70.0 0.02G 999.9 010010 722324 03071 20180801 84.1 24 55.6 24 9999.9 0 921.6 19 10.0 24 5.2 24 11.1 15.9 99.3 70.2 0.01G 999.9 000000 722324 03071 20180802 87.5 24 53.1 24 9999.9 0 919.2 24 10.0 24 6.0 24 11.1 15.0 101.5 76.1 0.00G 999.9 010000 722324 03071 20180803 88.6 24 55.1 24 9999.9 0 918.0 24 10.0 24 10.9 24 17.1 25.1 99.9 77.5 0.00G 999.9 000000 722324 03071 20180804 87.5 24 56.9 24 9999.9 0 917.7 24 10.0 24 10.5 24 15.9 22.0 98.6 78.8 0.00G 999.9 000000 722324 03071 20180805 86.3 24 55.4 24 9999.9 0 919.5 24 10.0 24 11.0 24 17.1 28.0 96.4 76.1 0.00G 999.9 000000 722324 03071 20180806 83.3 24 60.3 24 9999.9 0 921.1 24 10.0 24 11.5 24 19.0 25.1 96.4 71.4 0.00G 999.9 000000 722324 03071 20180807 87.2 24 59.0 24 9999.9 0 919.4 24 10.0 24 8.7 24 14.0 19.0 100.4 74.7 0.00G 999.9 000000 722324 03071 20180808 88.3 24 60.5 24 9999.9 0 918.5 24 10.0 24 9.3 24 15.0 22.0 100.4 76.3 0.00G 999.9 000000 722324 03071 20180809 81.0 24 62.0 24 9999.9 0 920.5 24 9.2 24 6.7 24 24.1 32.1 97.2 67.6 0.00G 999.9 010010 722324 03071 20180810 80.5 24 63.3 24 9999.9 0 920.7 24 10.0 24 5.6 24 18.1 22.9 92.8 71.6 0.14G 999.9 010000 722324 03071 20180811 77.2 24 64.9 24 9999.9 0 920.6 24 10.0 24 3.1 24 9.9 999.9 92.3 70.2 0.00G 999.9 010000 722324 03071 20180812 74.6 24 66.7 24 9999.9 0 920.5 24 9.8 24 2.3 24 13.0 20.0 88.3 69.4 0.13G 999.9 010000 722324 03071 20180813 77.7 24 66.6 24 9999.9 0 918.8 24 9.9 24 3.4 24 15.9 20.0 95.0 69.6 0.01G 999.9 010000 722324 03071 20180814 80.6 24 67.6 24 9999.9 0 916.4 24 8.6 24 7.9 24 15.0 19.0 97.3 70.2 0.00G 999.9 000000 722324 03071 20180815 85.3 24 65.6 24 9999.9 0 916.9 24 10.0 24 7.6 24 15.9 19.0 99.9 73.4 0.00G 999.9 000000 722324 03071 20180816 87.1 24 64.8 24 9999.9 0 918.8 24 9.9 24 7.8 24 14.0 19.0 100.2 75.4 0.00G 999.9 000000 722324 03071 20180817 87.8 24 64.7 24 9999.9 0 920.2 24 9.2 24 6.3 24 13.0 19.0 101.7 77.4 0.00G 999.9 000000 722324 03071 20180818 90.6 24 61.5 24 9999.9 0 919.9 24 8.5 24 6.3 24 15.0 21.0 102.0* 79.0* 0.00G 999.9 000000 722324 03071 20180819 86.7 24 63.4 24 9999.9 0 916.4 24 9.3 24 5.6 24 17.1 26.0 102.9 72.7 0.00G 999.9 010000 722324 03071 20180820 84.7 24 64.2 24 9999.9 0 919.4 24 9.8 24 5.8 24 14.0 20.0 97.2 73.8 0.00G 999.9 010000 722324 03071 20180821 87.1 24 63.0 24 9999.9 0 921.8 24 10.0 24 6.1 24 12.0 19.0 99.9 75.2 0.00G 999.9 000000 722324 03071 20180822 87.3 24 60.2 24 9999.9 0 922.8 24 9.8 24 7.3 24 15.0 21.0 99.0 74.3 0.00G 999.9 000000 722324 03071 20180823 87.8 24 56.3 24 9999.9 0 920.6 24 10.0 24 8.4 24 15.9 22.9 102.4 75.2 0.00G 999.9 000000 722324 03071 20180824 89.9 24 57.2 24 9999.9 0 916.4 24 10.0 24 9.2 24 15.0 20.0 105.1 77.9 0.00G 999.9 000000 722324 03071 20180825 90.1 24 60.4 24 9999.9 0 917.2 24 9.9 24 9.3 24 15.0 20.0 101.7 78.1 0.00G 999.9 000000 722324 03071 20180826 87.6 24 59.7 24 9999.9 0 918.8 24 10.0 24 10.9 24 15.9 22.0 100.4 75.9 0.00G 999.9 000000 722324 03071 20180827 89.0 24 60.3 24 9999.9 0 916.3 24 10.0 24 10.9 24 15.0 22.0 104.5 77.2 0.00G 999.9 000000 722324 03071 20180828 84.9 24 64.2 24 9999.9 0 915.7 24 9.5 24 10.1 24 26.0 42.0 101.3 69.4 0.59G 999.9 010010 722324 03071 20180829 88.6 24 61.9 24 9999.9 0 917.4 24 10.0 24 9.5 24 13.0 18.1 100.0 77.0 0.00G 999.9 000000 722324 03071 20180830 88.0 24 61.1 24 9999.9 0 919.5 23 10.0 24 7.3 24 11.1 20.0 100.0 76.1 0.00G 999.9 000000 722324 03071 20180831 88.1 24 61.0 24 9999.9 0 917.8 22 10.0 24 8.6 24 14.0 22.0 100.2 75.7 0.00G 999.9 000000 722324 03071 20180901 87.2 24 60.2 24 9999.9 0 915.8 21 10.0 24 10.1 24 15.9 21.0 98.8 74.8 0.00G 999.9 000000 722324 03071 20180902 78.4 24 64.8 24 9999.9 0 916.9 24 9.7 24 5.9 24 15.9 27.0 94.1 69.3 0.02G 999.9 010010 722324 03071 20180903 78.3 24 66.3 24 9999.9 0 917.4 24 10.0 24 5.3 24 11.1 15.9 91.4 69.1 0.00G 999.9 000000 722324 03071 20180904 79.8 24 65.8 24 9999.9 0 917.6 24 10.0 24 6.9 24 15.9 22.9 93.7 71.2 0.00G 999.9 000000 722324 03071 20180905 79.0 24 68.1 24 9999.9 0 919.7 24 10.0 24 5.5 24 13.0 19.0 93.6 71.6 0.00G 999.9 000000 722324 03071 20180906 76.8 24 68.1 24 9999.9 0 922.6 24 9.4 24 6.7 24 14.0 20.0 86.2 70.3 0.00G 999.9 010000 722324 03071 20180907 71.4 24 68.8 24 9999.9 0 921.9 13 8.5 24 5.1 24 14.0 19.0 73.8 68.5 0.47G 999.9 010000 722324 03071 20180908 71.2 24 67.9 24 9999.9 0 9999.9 0 9.5 24 6.8 24 11.1 15.9 79.3 68.0 0.03G 999.9 010000 722324 03071 20180909 72.7 24 65.9 24 9999.9 0 9999.9 0 9.1 24 2.7 24 8.0 999.9 85.5 66.4 0.17G 999.9 000000 722324 03071 20180910 73.9 24 63.0 24 9999.9 0 9999.9 0 10.0 24 2.4 24 8.0 999.9 87.1 64.4 0.00G 999.9 000000 722324 03071 20180911 75.2 24 61.9 24 9999.9 0 918.9 24 10.0 24 3.5 24 8.9 999.9 87.8 64.0 0.00G 999.9 000000 722324 03071 20180912 76.3 24 61.9 24 9999.9 0 918.8 24 10.0 24 7.0 24 11.1 15.9 88.7 66.2 0.00G 999.9 000000 722324 03071 20180913 78.5 24 64.7 24 9999.9 0 919.0 24 10.0 24 7.1 24 12.0 20.0 91.0* 68.9* 0.00G 999.9 000000 722324 03071 20180914 78.9 24 66.0 24 9999.9 0 919.7 24 10.0 24 6.7 24 12.0 15.0 90.5 68.9 0.00G 999.9 000000 722324 03071 20180915 76.8 24 65.9 24 9999.9 0 920.3 24 10.0 24 6.7 24 15.0 22.9 86.4 68.9 0.00G 999.9 010000 722324 03071 20180916 74.8 24 67.6 24 9999.9 0 920.0 17 9.7 24 5.6 24 11.1 15.9 86.4 68.7 0.02G 999.9 010000 722324 03071 20180917 77.6 19 67.6 19 9999.9 0 919.1 16 9.8 19 5.4 19 13.0 17.1 85.5* 68.9* 0.16G 999.9 000000 722324 03071 20180918 78.5 24 68.3 24 9999.9 0 918.6 24 10.0 24 7.3 24 14.0 17.1 90.5 72.1 0.00G 999.9 000000 722324 03071 20180919 79.4 24 67.2 24 9999.9 0 916.6 24 10.0 24 11.0 24 18.1 22.0 90.0* 70.7* 0.00G 999.9 000000 722324 03071 20180920 78.0 24 65.8 24 9999.9 0 915.4 24 10.0 24 12.2 24 20.0 24.1 86.0* 71.6* 0.00G 999.9 000000 722324 03071 20180921 74.5 24 69.1 24 9999.9 0 916.1 24 8.3 24 6.6 24 17.1 27.0 81.5 66.6 0.03G 999.9 010000 722324 03071 20180922 67.5 24 57.6 24 9999.9 0 922.6 24 9.6 24 11.6 24 18.1 25.1 80.6 59.0 0.05G 999.9 010000 722324 03071 20180923 69.2 24 53.4 24 9999.9 0 920.0 24 10.0 24 3.0 24 8.0 999.9 87.8 53.8 0.00G 999.9 000000 722324 03071 20180924 72.7 24 50.1 24 9999.9 0 916.6 24 10.0 24 1.8 24 7.0 999.9 91.9 57.2 0.00G 999.9 000000 722324 03071 20180925 78.0 24 58.2 24 9999.9 0 915.3 24 10.0 24 5.3 24 8.9 999.9 97.7 65.3 0.00G 999.9 000000 722324 03071 20180926 68.0 24 57.7 24 9999.9 0 922.0 24 9.9 24 10.7 24 20.0 27.0 92.7 55.9 0.00G 999.9 010010 722324 03071 20180927 60.7 24 56.5 24 9999.9 0 922.6 24 7.2 24 3.9 24 8.9 999.9 78.4 55.6 0.18G 999.9 000000 722324 03071 20180928 73.3 24 62.4 24 9999.9 0 918.1 24 9.9 24 8.6 24 12.0 15.9 90.1 64.4 0.00G 999.9 000000 722324 03071 20180929 75.2 24 63.6 24 9999.9 0 920.6 24 9.6 24 7.4 24 13.0 17.1 87.4* 67.1* 0.00G 999.9 000000 722324 03071 20180930 76.9 24 63.0 24 9999.9 0 920.7 20 9.9 24 9.0 24 14.0 21.0 89.2 66.7 0.00G 999.9 000000 722324 03071 20181001 76.5 24 63.7 24 9999.9 0 921.1 20 9.9 24 9.6 24 15.0 21.0 87.3 68.5 0.00G 999.9 000000 722324 03071 20181002 77.6 24 65.3 24 9999.9 0 920.7 24 10.0 24 9.8 24 15.0 20.0 88.9 70.9 0.03G 999.9 000000 722324 03071 20181003 80.2 24 66.4 24 9999.9 0 917.7 24 10.0 24 11.4 24 15.0 21.0 94.1 72.5 0.00G 999.9 000000 722324 03071 20181004 81.1 24 66.9 24 9999.9 0 917.1 24 10.0 24 10.7 24 15.9 22.0 93.6 72.7 0.00G 999.9 000000 722324 03071 20181005 79.9 24 65.8 24 9999.9 0 916.1 24 10.0 24 10.6 24 17.1 22.9 92.5 70.7 0.00G 999.9 000000 722324 03071 20181006 73.4 24 66.9 24 9999.9 0 915.7 24 8.6 24 9.8 24 22.0 33.0 85.1 66.2 0.02G 999.9 010010 722324 03071 20181007 73.1 24 66.9 24 9999.9 0 913.7 24 10.0 24 11.6 24 22.9 28.0 80.2 67.3 99.99 999.9 010010 722324 03071 20181008 72.5 21 66.6 21 9999.9 0 910.6 21 10.0 21 14.3 21 20.0 27.0 76.3* 69.1* 0.00G 999.9 010000 722324 03071 20181009 65.3 24 56.1 24 9999.9 0 910.1 24 9.6 24 9.5 24 15.9 24.1 76.5 58.3 0.02G 999.9 010010 722324 03071 20181010 60.4 24 49.2 24 9999.9 0 916.0 24 10.0 24 4.9 24 8.9 15.0 74.3 49.1 0.02G 999.9 000000 722324 03071 20181011 63.7 24 55.7 24 9999.9 0 918.5 24 10.0 24 7.4 24 14.0 19.0 71.2 57.2 0.00G 999.9 000000 722324 03071 20181012 69.7 24 63.0 24 9999.9 0 916.9 24 8.8 24 6.5 24 12.0 17.1 83.8 63.7 0.00G 999.9 010000 722324 03071 20181013 66.2 24 61.9 24 9999.9 0 913.5 24 8.6 24 5.8 24 25.1 39.0 75.9 58.3 0.09G 999.9 010010 722324 03071 20181014 68.3 24 60.7 24 9999.9 0 913.1 24 10.0 24 4.8 24 19.0 27.0 83.7 54.9 0.13G 999.9 000000 722324 03071 20181015 42.3 24 35.0 24 9999.9 0 925.5 24 9.7 24 14.6 24 19.0 27.0 54.7 37.9 0.02G 999.9 010000 722324 03071 20181016 41.6 24 36.8 24 9999.9 0 927.5 24 7.6 24 9.1 24 17.1 21.0 43.7 38.7 0.00G 999.9 010010 722324 03071 20181017 45.7 24 45.5 24 9999.9 0 928.5 24 3.7 24 8.1 24 17.1 21.0 48.6 42.8 0.01G 999.9 010000 722324 03071 20181018 46.1 24 46.1 24 9999.9 0 929.4 24 4.4 24 7.1 24 14.0 21.0 50.9 44.6 0.01G 999.9 010000 722324 03071 20181019 54.9 24 52.7 24 9999.9 0 925.7 24 6.1 24 2.6 24 7.0 999.9 70.9 50.2 0.03G 999.9 010000 722324 03071 20181020 63.1 24 56.1 24 9999.9 0 926.0 24 10.0 24 4.9 24 12.0 15.0 68.5 58.5 0.01G 999.9 000000 722324 03071 20181021 57.2 24 46.7 24 9999.9 0 928.6 24 10.0 24 4.2 24 12.0 15.0 66.2 46.4 0.00G 999.9 010000 722324 03071 20181022 57.4 24 47.7 24 9999.9 0 923.2 24 10.0 24 3.9 24 11.1 14.0 66.9* 50.9* 0.00G 999.9 000000 722324 03071 20181023 58.5 24 56.0 24 9999.9 0 922.4 24 6.6 24 5.9 24 9.9 999.9 65.5 55.4 0.00G 999.9 100000 722324 03071 20181024 54.5 24 52.5 24 9999.9 0 919.5 24 6.8 24 7.6 24 15.0 20.0 62.6 48.9 0.13G 999.9 010000 722324 03071 20181025 58.0 24 54.1 24 9999.9 0 918.1 24 7.1 24 3.0 24 11.1 14.0 75.7 51.8 0.18G 999.9 000000 722324 03071 20181026 62.8 24 53.3 24 9999.9 0 918.2 24 9.5 24 1.7 24 7.0 999.9 80.8 50.0 0.01G 999.9 000000 722324 03071 20181027 66.7 24 51.6 24 9999.9 0 919.9 24 10.0 24 4.1 24 8.9 15.0 81.7 52.3 0.02G 999.9 000000 722324 03071 20181028 68.1 24 53.4 24 9999.9 0 921.4 24 9.9 24 4.9 24 9.9 14.0 84.2 54.5 0.00G 999.9 000000 722324 03071 20181029 68.2 24 55.3 24 9999.9 0 920.5 24 9.8 24 5.2 24 11.1 15.9 83.7 56.3 0.00G 999.9 000000 722324 03071 20181030 71.0 24 57.5 24 9999.9 0 915.2 23 9.5 24 8.7 24 14.0 19.0 84.2* 60.8* 0.00G 999.9 000000 722324 03071 20181031 57.4 24 50.6 24 9999.9 0 915.6 23 9.2 24 9.0 24 17.1 22.9 72.0 48.9 0.00G 999.9 010000 722324 03071 20181101 49.4 24 41.9 24 9999.9 0 917.9 19 10.0 24 5.1 24 9.9 15.0 65.5 39.2 0.03G 999.9 010000 722324 03071 20181102 54.0 24 40.8 24 9999.9 0 920.6 24 9.9 24 5.4 24 14.0 20.0 71.6 41.5 0.00G 999.9 000000 722324 03071 20181103 60.1 24 41.7 24 9999.9 0 914.0 24 10.0 24 7.7 24 11.1 17.1 77.4 48.4 0.00G 999.9 000000 722324 03071 20181104 54.3 24 42.6 24 9999.9 0 920.4 24 9.4 24 5.8 24 17.1 25.1 66.0 42.4 0.00G 999.9 000000 722324 03071 20181105 63.5 24 49.3 24 9999.9 0 912.6 24 9.8 24 8.2 24 13.0 18.1 82.4 55.0 0.00G 999.9 000000 722324 03071 20181106 64.8 24 46.5 24 9999.9 0 913.7 24 8.0 24 4.3 24 13.0 15.9 82.4 51.3 0.00G 999.9 000000 722324 03071 20181107 56.5 24 48.0 24 9999.9 0 916.8 24 7.3 24 4.7 24 9.9 999.9 74.8 51.8 0.00G 999.9 110000 722324 03071 20181108 51.0 24 48.1 24 9999.9 0 919.9 24 6.5 24 6.7 24 11.1 14.0 55.6 48.6 0.00G 999.9 000000 722324 03071 20181109 47.7 24 40.0 24 9999.9 0 926.1 24 9.5 24 11.4 24 15.9 21.0 55.6 41.9 0.00G 999.9 000000 722324 03071 20181110 46.2 24 32.3 24 9999.9 0 927.6 24 10.0 24 7.7 24 18.1 22.9 55.2 39.2 0.00G 999.9 000000 722324 03071 20181111 50.7 24 37.1 24 9999.9 0 918.0 24 10.0 24 6.9 24 13.0 19.0 70.7 40.1 0.00G 999.9 000000 722324 03071 20181112 44.4 24 36.5 24 9999.9 0 922.9 24 9.9 24 12.6 24 18.1 27.0 63.9 34.9 0.00G 999.9 010000 722324 03071 20181113 34.9 24 21.6 24 9999.9 0 934.2 24 10.0 24 8.5 24 15.0 22.9 50.2 25.2 0.00G 999.9 000000 722324 03071 20181114 40.1 24 22.0 24 9999.9 0 931.5 24 10.0 24 3.1 24 9.9 999.9 61.7 26.8 0.00G 999.9 000000 722324 03071 20181115 48.2 24 29.5 24 9999.9 0 925.0 24 10.0 24 3.3 24 9.9 999.9 68.9 32.9 0.00G 999.9 000000 722324 03071 20181116 52.0 24 31.7 24 9999.9 0 921.5 24 10.0 24 3.2 24 9.9 999.9 70.3 32.9 0.00G 999.9 000000 722324 03071 20181117 53.3 24 31.5 24 9999.9 0 918.5 24 10.0 24 6.7 24 11.1 14.0 67.5 38.5 0.00G 999.9 000000 722324 03071 20181118 41.1 24 32.5 24 9999.9 0 924.9 24 10.0 24 7.7 24 13.0 19.0 55.2 34.7 0.00G 999.9 000000 722324 03071 20181119 47.2 24 34.3 24 9999.9 0 923.0 24 9.8 24 2.4 24 6.0 999.9 65.7 32.5 0.00G 999.9 000000 722324 03071 20181120 46.5 24 33.1 24 9999.9 0 926.8 24 10.0 24 3.8 24 9.9 999.9 59.0 33.1 0.00G 999.9 000000 722324 03071 20181121 45.7 24 33.8 24 9999.9 0 926.0 24 10.0 24 4.0 24 8.0 999.9 55.8 35.1 0.00G 999.9 000000 722324 03071 20181122 46.0 24 40.4 24 9999.9 0 924.1 24 7.1 24 4.4 24 9.9 999.9 61.3 36.9 0.00G 999.9 100000 722324 03071 20181123 57.2 24 40.0 24 9999.9 0 916.4 24 9.3 24 11.3 24 22.9 28.9 72.9 49.3 0.00G 999.9 000000 722324 03071 20181124 57.0 24 29.8 24 9999.9 0 912.9 24 10.0 24 7.4 24 15.9 25.1 73.4 43.3 0.00G 999.9 000000 722324 03071 20181125 57.3 24 27.0 24 9999.9 0 914.1 24 9.1 24 11.5 24 22.9 32.1 68.9 48.6 0.00G 999.9 000000 722324 03071 20181126 42.0 24 23.6 24 9999.9 0 926.6 24 10.0 24 2.4 24 7.0 999.9 60.3 27.7 0.00G 999.9 000000 722324 03071 20181127 48.4 24 24.6 24 9999.9 0 922.8 24 10.0 24 5.5 24 11.1 15.0 68.9 33.3 0.00G 999.9 000000 722324 03071 20181128 55.5 24 34.4 24 9999.9 0 915.2 24 10.0 24 9.1 24 14.0 18.1 75.4 41.9 0.00G 999.9 000000 722324 03071 20181129 60.8 24 33.3 24 9999.9 0 912.2 24 10.0 24 6.5 24 13.0 17.1 82.4 45.7 0.00G 999.9 000000 722324 03071 20181130 62.9 24 39.4 24 9999.9 0 909.8 17 9.4 24 10.4 24 29.9 40.0 76.6 54.0 0.00G 999.9 000000 722324 03071 20181201 58.0 24 31.7 24 9999.9 0 909.1 24 10.0 24 15.3 24 22.0 31.1 67.5 48.4 0.00G 999.9 000000 722324 03071 20181202 52.4 24 30.1 24 9999.9 0 911.5 24 9.9 24 6.4 24 17.1 21.0 68.9 39.2 0.00G 999.9 000000 722324 03071 20181203 48.0 24 32.5 24 9999.9 0 919.5 24 9.8 24 2.8 24 11.1 14.0 63.0 34.2 0.00G 999.9 000000 722324 03071 20181204 44.3 24 33.1 24 9999.9 0 924.7 24 10.0 24 4.1 24 8.0 999.9 60.3 32.2 0.00G 999.9 000000 722324 03071 20181205 44.0 24 34.7 24 9999.9 0 926.4 24 10.0 24 7.5 24 19.0 24.1 57.7 33.4 0.00G 999.9 000000 722324 03071 20181206 48.4 24 41.4 24 9999.9 0 921.3 24 9.9 24 8.8 24 15.9 20.0 55.6 45.5 0.00G 999.9 000000 722324 03071 20181207 39.9 24 33.8 24 9999.9 0 925.8 24 7.6 24 7.8 24 13.0 999.9 46.9 36.1 0.00G 999.9 010000 722324 03071 20181208 37.4 24 36.1 24 9999.9 0 925.4 24 6.2 24 6.8 24 13.0 999.9 41.4 35.8 0.01G 999.9 010000 722324 03071 20181209 39.1 24 33.7 24 9999.9 0 927.5 24 7.7 24 2.6 24 7.0 999.9 52.3 30.0 0.00I 999.9 000000 722324 03071 20181210 40.5 24 34.2 24 9999.9 0 928.8 24 6.8 24 3.7 24 8.9 999.9 58.3 29.8 0.00G 999.9 000000 722324 03071 20181211 44.7 24 39.4 24 9999.9 0 924.8 24 7.4 24 7.0 24 17.1 21.0 58.1 35.6 0.00G 999.9 000000 722324 03071 20181212 51.1 24 44.2 24 9999.9 0 916.9 24 10.0 24 5.0 24 13.0 19.0 66.4 45.0 0.00G 999.9 000000 722324 03071 20181213 49.3 24 39.6 24 9999.9 0 913.1 24 7.9 24 13.7 24 27.0 38.1 62.8 34.9 0.00G 999.9 011000 722324 03071 20181214 42.2 24 19.0 24 9999.9 0 924.7 24 10.0 24 13.2 24 18.1 22.9 55.6 32.5 0.01G 999.9 000000 722324 03071 20181215 42.6 24 22.8 24 9999.9 0 925.6 24 10.0 24 4.3 24 12.0 15.9 66.0 27.0 0.00G 999.9 000000 722324 03071 20181216 49.1 24 28.0 24 9999.9 0 925.0 24 10.0 24 2.6 24 6.0 999.9 57.7 39.4 0.00G 999.9 000000 722324 03071 20181217 48.3 24 36.6 24 9999.9 0 925.3 24 10.0 24 1.6 24 7.0 999.9 56.7 41.4 0.00G 999.9 000000 722324 03071 20181218 45.6 24 38.1 24 9999.9 0 918.6 24 10.0 24 2.4 24 8.9 999.9 58.5 36.9 0.00G 999.9 010000 722324 03071 20181219 51.2 24 42.7 24 9999.9 0 913.4 24 9.5 24 5.3 24 12.0 999.9 66.7 41.0 0.06G 999.9 010000 722324 03071 20181220 49.1 24 31.4 24 9999.9 0 921.2 24 9.8 24 8.9 24 14.0 21.0 59.9 38.1 0.00G 999.9 000000 722324 03071 20181221 45.6 24 28.5 24 9999.9 0 919.5 24 10.0 24 4.7 24 17.1 22.0 70.3 30.7 0.00G 999.9 000000 722324 03071 20181222 59.6 24 28.9 24 9999.9 0 914.7 24 10.0 24 8.2 24 13.0 19.0 77.4 46.8 0.00G 999.9 000000 722324 03071 20181223 49.4 24 31.2 24 9999.9 0 924.5 24 10.0 24 6.7 24 15.0 22.9 66.7 34.7 0.00G 999.9 000000 722324 03071 20181224 47.2 24 34.7 24 9999.9 0 922.4 24 10.0 24 6.1 24 14.0 17.1 67.8 35.6 0.00G 999.9 000000 722324 03071 20181225 51.5 24 43.7 24 9999.9 0 916.9 24 7.4 24 5.7 24 14.0 21.0 65.5* 38.5* 0.00G 999.9 101000 722324 03071 20181226 59.6 24 53.7 24 9999.9 0 910.8 24 10.0 24 14.0 24 31.1 49.9 69.1 48.0 0.00G 999.9 010010 722324 03071 20181227 49.6 24 35.7 24 9999.9 0 909.4 24 10.0 24 13.2 24 22.0 31.1 55.4 43.9 0.05G 999.9 000000 722324 03071 20181228 36.7 24 27.0 24 9999.9 0 917.4 24 10.0 24 10.1 24 17.1 21.0 47.7 30.0 0.00G 999.9 000000 722324 03071 20181229 31.5 24 27.1 24 9999.9 0 924.9 24 8.3 24 7.7 24 12.0 15.0 35.1 29.1 0.00G 999.9 000000 722324 03071 20181230 37.1 24 29.7 24 9999.9 0 920.4 24 10.0 24 2.5 24 6.0 999.9 45.9 34.0 0.00G 999.9 000000 722324 03071 20181231 45.0 24 30.3 24 9999.9 0 911.2 24 10.0 24 10.1 24 18.1 25.1 61.7 37.0 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/1983/0000755000175000017500000000000014302004506015104 5ustar nileshnileshfluids-1.0.22/tests/gsod/1983/724050-13743.op0000644000175000017500000014327214302004506016675 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19830101 40.0 24 29.4 24 1024.6 24 1022.2 24 8.1 24 3.2 24 7.0 999.9 48.0* 33.1 0.00G 999.9 000000 724050 13743 19830102 40.9 24 32.4 24 1021.3 24 1018.9 24 7.2 24 2.6 24 4.9 999.9 48.0 34.0 0.00G 999.9 100000 724050 13743 19830103 41.4 24 23.2 24 1020.4 24 1018.0 24 12.8 24 7.9 24 11.8 999.9 48.0 35.1 0.00G 999.9 000000 724050 13743 19830104 35.6 24 16.8 24 1032.4 24 1030.0 24 14.4 24 6.9 24 10.9 999.9 45.0 27.0 0.00G 999.9 000000 724050 13743 19830105 35.9 24 28.5 24 1030.3 24 1027.9 24 9.4 24 5.1 24 8.9 999.9 42.1* 27.0 0.11G 999.9 110000 724050 13743 19830106 41.1 24 31.6 24 1018.8 24 1016.4 24 7.8 24 6.1 24 9.9 999.9 52.0* 30.0 0.07G 999.9 110000 724050 13743 19830107 46.0 23 31.6 23 1012.9 23 1010.5 23 10.7 23 7.4 23 14.0 17.9 61.0 33.1 0.00G 999.9 000000 724050 13743 19830108 43.6 23 22.8 23 1021.2 23 1018.8 23 14.3 23 7.8 23 15.9 22.9 61.0 34.0 0.00G 999.9 000000 724050 13743 19830109 41.0 24 27.6 24 1027.5 24 1025.1 24 11.4 24 6.2 24 9.9 999.9 46.9 34.0 0.00G 999.9 011000 724050 13743 19830110 46.3 24 42.1 24 1021.2 24 1018.8 24 4.2 24 7.1 23 9.9 999.9 53.1* 37.0 0.40G 999.9 110000 724050 13743 19830111 49.5 23 44.3 23 1005.4 23 1003.1 23 7.3 23 4.2 23 8.0 999.9 54.0 42.1 0.33G 999.9 110000 724050 13743 19830112 40.2 23 23.8 22 1009.1 23 1006.7 23 16.4 23 9.7 23 19.8 28.0 52.0 29.1* 0.05G 999.9 000000 724050 13743 19830113 31.5 24 12.7 24 1020.5 24 1018.1 24 20.0 24 9.0 24 15.9 22.9 44.1 25.0 0.00G 999.9 000000 724050 13743 19830114 37.3 24 20.8 24 1023.4 24 1021.0 24 14.8 24 5.7 24 12.8 999.9 46.9* 25.0 0.00G 999.9 000000 724050 13743 19830115 40.4 22 26.7 22 1009.6 22 1007.2 22 14.1 22 9.0 22 15.9 19.8 46.9 33.1 0.00G 999.9 011000 724050 13743 19830116 35.7 24 18.4 24 1007.8 24 1005.4 24 13.9 24 14.5 24 17.9 26.8 44.1 32.0 0.00G 999.9 001000 724050 13743 19830117 31.1 24 10.8 24 1011.1 24 1008.7 24 15.9 24 7.5 24 12.8 18.8 37.9 21.9 0.00G 999.9 000000 724050 13743 19830118 26.9 24 7.6 24 1017.5 24 1015.1 24 16.9 24 11.3 24 18.8 26.8 37.9 19.9 0.00G 999.9 001000 724050 13743 19830119 24.6 24 3.8 24 1026.0 24 1023.6 24 16.8 24 13.0 24 17.9 24.9 33.1* 18.0 0.00G 999.9 000000 724050 13743 19830120 25.1 22 2.9 22 1033.5 22 1031.1 22 19.9 22 9.9 22 15.0 22.9 35.1* 16.0 0.00G 999.9 000000 724050 13743 19830121 31.1 24 6.0 24 1032.9 24 1030.5 24 13.0 24 5.5 24 10.9 999.9 44.1* 16.0 0.00G 999.9 000000 724050 13743 19830122 34.8 23 19.0 23 1027.8 23 1025.4 23 8.7 23 6.1 23 9.9 999.9 44.1 23.0 0.00G 999.9 111000 724050 13743 19830123 38.4 24 33.3 24 1016.3 24 1013.9 24 4.0 24 6.9 24 11.8 999.9 42.1* 30.9 0.69G 999.9 111000 724050 13743 19830124 42.4 24 31.9 24 1011.0 24 1008.7 24 9.4 24 7.8 24 15.9 24.9 48.9 36.0 0.02G 999.9 110000 724050 13743 19830125 42.8 23 26.6 23 1017.6 23 1015.2 23 11.4 23 6.3 23 9.9 999.9 48.9 36.0 0.00G 999.9 000000 724050 13743 19830126 41.0 24 25.0 24 1022.0 24 1019.5 24 11.1 24 6.0 24 11.8 999.9 48.0 36.9 0.00G 999.9 000000 724050 13743 19830127 39.0 24 28.3 24 1024.4 24 1022.0 24 8.3 24 5.1 24 9.9 999.9 46.9* 33.1 0.00G 999.9 000000 724050 13743 19830128 37.4 24 24.1 24 1022.7 24 1020.3 24 9.9 24 11.9 24 14.0 999.9 46.9 30.9 0.00G 999.9 000000 724050 13743 19830129 36.7 24 24.3 23 1021.8 24 1019.4 24 9.0 24 4.3 24 8.9 999.9 48.9* 26.1 0.00G 999.9 000000 724050 13743 19830130 40.8 24 30.2 24 1015.8 24 1013.4 24 9.7 24 3.6 24 9.9 999.9 50.0 26.1 0.01G 999.9 011000 724050 13743 19830131 43.0 24 32.5 24 1017.3 24 1014.9 24 9.3 24 5.4 24 14.0 999.9 54.0* 30.9 0.01G 999.9 100000 724050 13743 19830201 41.0 22 27.5 22 1022.4 22 1020.0 22 10.3 22 4.1 22 7.0 999.9 55.0 30.9 0.00G 999.9 000000 724050 13743 19830202 46.8 24 37.7 24 1013.2 24 1010.8 24 8.1 24 7.9 24 18.8 28.0 62.1* 30.9 0.30G 999.9 110000 724050 13743 19830203 53.9 22 43.5 22 995.7 22 993.3 22 13.6 22 9.1 22 14.0 18.8 62.1 39.0 0.02G 999.9 010000 724050 13743 19830204 38.2 24 17.2 24 1008.9 24 1006.5 24 15.3 24 13.3 24 18.8 34.0 55.9 33.1* 0.00G 999.9 000000 724050 13743 19830205 30.6 23 10.2 23 1024.1 23 1021.7 23 17.6 23 11.1 23 18.8 25.8 41.0 24.1 0.00G 999.9 000000 724050 13743 19830206 33.0 24 20.1 24 1022.8 24 1020.3 24 8.6 24 4.8 24 11.8 999.9 37.9 24.1 0.07G 0.4 101000 724050 13743 19830207 35.3 24 27.5 24 1008.7 24 1006.3 24 6.7 24 10.2 24 15.0 19.8 45.0* 28.9 0.35G 1.2 111000 724050 13743 19830208 36.4 24 17.5 24 1014.1 24 1011.7 24 13.5 24 13.5 24 19.8 29.9 45.0 28.9 0.01G 999.9 000000 724050 13743 19830209 33.1 24 15.2 24 1019.5 24 1017.1 24 11.3 24 7.4 24 12.8 999.9 43.0* 24.1 0.00G 999.9 000000 724050 13743 19830210 31.4 20 15.2 20 1022.6 20 1020.2 20 9.9 20 5.3 20 8.9 999.9 39.9 24.1 0.00G 999.9 000000 724050 13743 19830211 24.9 23 19.5 23 1020.7 23 1018.3 23 1.7 23 13.5 23 22.0 28.0 37.0 19.2* 1.01G 13.8 101000 724050 13743 19830212 26.4 24 17.5 24 1024.1 24 1021.6 24 12.0 24 10.6 24 18.8 22.0 35.1 19.0 0.93G 16.1 101000 724050 13743 19830213 27.4 23 15.1 23 1031.8 23 1029.4 23 9.2 23 2.3 23 4.9 999.9 39.0* 16.0 0.00G 11.0 000000 724050 13743 19830214 33.0 24 20.6 24 1020.4 24 1018.0 24 8.7 24 7.2 24 12.8 999.9 42.1* 16.0 0.00G 9.1 000000 724050 13743 19830215 38.9 23 26.2 23 1013.5 23 1011.1 23 9.6 23 6.6 23 11.1 999.9 51.1* 27.0 0.00G 7.9 000000 724050 13743 19830216 40.8 24 31.9 24 1020.0 24 1017.6 24 5.3 24 2.2 24 8.9 999.9 52.0 27.0 0.00D 5.5 100000 724050 13743 19830217 40.5 23 32.9 23 1015.9 23 1013.5 23 4.2 23 3.5 23 9.9 999.9 51.1* 35.1 0.00G 3.9 100000 724050 13743 19830218 43.6 24 29.1 24 1016.7 24 1014.1 24 10.2 24 9.8 24 14.0 999.9 53.1 35.1 0.00G 1.6 000000 724050 13743 19830219 41.9 24 26.8 24 1019.5 24 1017.1 24 11.7 24 2.2 24 4.9 999.9 54.0* 30.9 0.00G 0.4 000000 724050 13743 19830220 41.2 24 24.9 24 1029.1 24 1026.7 24 13.0 24 2.9 24 5.8 999.9 54.0 28.9 0.00G 999.9 000000 724050 13743 19830221 43.6 24 29.9 24 1028.0 24 1025.6 24 12.3 24 4.5 24 7.0 999.9 60.1* 28.9 0.00G 999.9 100000 724050 13743 19830222 48.4 23 37.2 23 1019.7 23 1017.2 23 7.4 23 3.5 23 5.8 999.9 62.1* 32.0 0.00G 999.9 100000 724050 13743 19830223 47.3 23 41.4 23 1007.7 23 1005.3 23 3.8 23 5.4 23 14.0 999.9 63.0 37.0 0.17G 999.9 110000 724050 13743 19830224 43.0 23 29.7 23 1008.1 23 1005.7 23 11.5 23 6.8 23 11.8 999.9 55.0 35.1 0.01G 999.9 000000 724050 13743 19830225 41.9 22 28.5 21 1007.6 22 1005.2 22 11.0 22 4.7 22 11.8 999.9 48.9 35.1 0.00G 999.9 000000 724050 13743 19830226 35.4 24 19.5 24 1019.9 24 1017.5 24 14.7 24 13.8 24 16.9 25.8 48.0 28.9 0.02G 999.9 011000 724050 13743 19830227 37.5 23 15.0 23 1029.3 23 1026.9 23 18.4 23 5.6 23 10.9 15.9 51.1* 26.1 0.00G 999.9 000000 724050 13743 19830228 42.2 23 23.7 23 1024.5 23 1022.1 23 12.7 23 3.6 23 7.0 999.9 57.0* 26.1 0.00G 999.9 000000 724050 13743 19830301 46.3 23 34.4 23 1011.3 23 1008.9 23 8.5 23 10.1 22 16.9 999.9 57.0 30.9 0.16G 999.9 110000 724050 13743 19830302 53.9 24 33.0 24 1004.7 24 1002.4 24 11.7 24 14.8 24 19.8 28.0 64.0* 44.1 0.46G 999.9 110000 724050 13743 19830303 55.9 24 29.4 24 1012.5 24 1010.1 24 13.8 24 8.1 24 14.0 19.8 66.9* 45.0 0.00G 999.9 000000 724050 13743 19830304 58.0 22 39.1 22 1015.6 22 1013.2 22 12.1 22 5.0 22 12.8 999.9 82.0* 43.0 0.00G 999.9 000000 724050 13743 19830305 54.3 24 42.4 24 1020.2 24 1017.8 24 12.2 24 7.8 24 12.8 999.9 82.0 43.0 0.00G 999.9 000000 724050 13743 19830306 50.2 23 46.3 23 1023.9 23 1021.4 23 3.6 23 6.4 23 12.8 999.9 62.1 43.0 0.00G 999.9 110000 724050 13743 19830307 57.3 24 53.9 24 1014.0 24 1011.6 24 2.9 24 4.4 24 15.9 999.9 62.1* 44.1 0.27G 999.9 110000 724050 13743 19830308 44.9 23 42.1 23 1011.0 23 1008.6 23 4.8 23 10.8 23 16.9 25.8 62.1 42.1 0.56G 999.9 110010 724050 13743 19830309 44.8 24 41.5 24 1008.2 24 1005.9 24 5.4 24 5.9 24 14.0 17.9 48.0* 42.1 0.28G 999.9 110010 724050 13743 19830310 46.5 24 43.2 24 1005.0 24 1002.6 24 5.3 24 3.9 24 8.0 999.9 50.0* 42.1 0.15G 999.9 110000 724050 13743 19830311 46.7 23 36.6 23 1003.3 23 1000.9 23 11.5 23 9.4 23 15.9 21.0 51.1 43.0 0.01G 999.9 000000 724050 13743 19830312 44.3 24 29.2 24 999.8 24 997.4 24 14.3 24 17.3 24 22.9 34.0 48.9 39.9 0.00G 999.9 000000 724050 13743 19830313 46.9 24 20.6 24 1004.9 24 1002.5 24 17.4 24 13.6 24 21.0 30.9 62.1* 37.9 0.00G 999.9 000000 724050 13743 19830314 50.0 24 31.0 24 1008.4 24 1006.0 24 16.1 24 4.1 24 8.9 999.9 62.1 37.0 0.00G 999.9 010000 724050 13743 19830315 56.6 23 38.8 23 1007.2 23 1004.8 23 11.9 23 4.6 23 10.9 15.9 75.0* 37.0 0.00D 999.9 000000 724050 13743 19830316 50.7 23 30.0 23 1016.4 23 1014.0 23 15.9 23 8.9 23 11.8 19.8 75.9 39.9 0.00G 999.9 000000 724050 13743 19830317 47.2 24 37.0 24 1019.1 24 1016.7 24 12.6 24 9.6 24 15.0 999.9 57.0 39.9 0.00G 999.9 000000 724050 13743 19830318 49.9 24 44.7 24 1007.2 24 1004.9 24 6.3 24 15.1 24 17.9 25.8 55.9* 42.1 0.54G 999.9 110000 724050 13743 19830319 60.1 24 52.2 24 994.3 24 991.9 24 10.6 24 8.2 24 15.0 18.8 69.1 44.1 0.48G 999.9 110000 724050 13743 19830320 56.9 23 37.8 23 1004.9 23 1002.5 23 14.2 23 6.9 23 15.0 17.9 69.1 48.9 0.02G 999.9 010000 724050 13743 19830321 58.7 24 48.1 24 995.9 24 993.6 24 13.2 24 6.6 24 16.9 23.9 68.0* 48.9 0.85G 999.9 110010 724050 13743 19830322 43.4 24 22.9 24 1004.4 24 1002.0 24 18.4 24 12.2 24 16.9 24.9 52.0* 39.9 0.11G 999.9 000000 724050 13743 19830323 40.0 24 15.2 24 1016.5 24 1014.1 24 18.0 24 10.7 24 16.9 23.9 50.0* 33.1 0.00G 999.9 000000 724050 13743 19830324 36.7 23 14.9 23 1018.9 23 1016.5 23 14.9 23 5.4 23 8.9 14.0 50.0 30.0 0.00G 999.9 000000 724050 13743 19830325 38.6 24 12.1 24 1016.5 24 1014.1 24 14.0 24 12.8 24 15.9 19.8 50.0* 28.9 0.00G 999.9 000000 724050 13743 19830326 40.8 23 8.1 23 1028.5 23 1026.1 23 17.1 23 5.2 23 8.9 999.9 54.0* 28.9 0.00G 999.9 000000 724050 13743 19830327 45.2 24 32.3 24 1021.8 24 1019.4 24 10.2 23 6.9 24 15.0 19.8 55.0* 28.9 0.10G 999.9 110010 724050 13743 19830328 51.6 24 44.4 24 1006.3 24 1003.9 24 7.2 24 3.9 24 10.9 14.0 57.0 41.0 0.88G 999.9 110000 724050 13743 19830329 48.7 24 29.6 24 1016.9 24 1014.4 24 16.2 24 10.9 24 15.0 24.9 57.0 45.0 0.02G 999.9 000000 724050 13743 19830330 39.2 24 16.2 24 1025.0 24 1022.6 24 19.3 24 5.0 24 8.9 999.9 54.0 28.9 0.00G 999.9 000000 724050 13743 19830331 41.9 24 25.0 24 1018.6 24 1016.2 24 13.9 24 3.2 24 7.0 999.9 46.9 28.9 0.00G 999.9 000000 724050 13743 19830401 45.0 23 25.2 23 1012.8 23 1010.4 23 12.1 23 5.9 23 8.0 999.9 59.0* 34.0 0.00G 999.9 000000 724050 13743 19830402 47.6 23 34.3 23 1014.7 23 1012.3 23 11.6 23 4.4 23 15.0 16.9 60.1 34.0 0.00G 999.9 010010 724050 13743 19830403 53.8 23 46.0 23 1002.2 23 999.8 23 13.2 23 9.2 23 22.9 35.0 63.0 39.9 0.63G 999.9 110010 724050 13743 19830404 53.6 23 36.8 23 1013.6 23 1011.2 23 16.0 22 7.2 23 12.8 17.9 64.0 45.0 0.05G 999.9 000000 724050 13743 19830405 50.4 24 37.3 24 1021.7 24 1019.3 24 8.6 23 4.2 24 9.9 999.9 60.1 43.9 0.00G 999.9 010000 724050 13743 19830406 51.1 23 46.5 23 1019.4 23 1017.0 23 6.3 23 1.5 23 4.9 999.9 57.0 44.1 0.00G 999.9 110000 724050 13743 19830407 53.0 23 52.2 23 1018.9 23 1016.5 23 3.3 23 2.6 23 12.8 999.9 57.0* 48.9 0.27G 999.9 110000 724050 13743 19830408 57.0 24 57.0 24 1014.1 24 1011.7 24 1.4 24 1.5 24 4.9 999.9 62.1* 50.0 0.07G 999.9 110000 724050 13743 19830409 54.8 23 52.5 23 1014.5 23 1012.1 23 4.2 23 7.6 23 12.8 14.0 63.0 46.9* 0.64G 999.9 110000 724050 13743 19830410 48.1 23 44.3 23 1011.9 23 1009.5 23 7.9 23 8.0 23 11.8 999.9 60.1* 44.1 1.39G 999.9 110000 724050 13743 19830411 51.3 23 40.8 23 1007.2 23 1004.8 23 11.7 23 8.1 23 14.0 18.8 61.0 45.0 0.57G 999.9 110000 724050 13743 19830412 51.4 24 34.4 24 1015.9 24 1013.5 24 13.5 24 8.5 24 11.8 16.9 61.0* 42.1 0.51G 999.9 000000 724050 13743 19830413 51.0 24 35.5 24 1023.9 24 1021.5 24 13.3 24 4.0 24 8.9 999.9 61.0 41.0 0.00G 999.9 000000 724050 13743 19830414 52.3 23 41.5 23 1024.5 23 1022.1 23 12.6 23 7.5 23 14.0 19.8 63.0 41.0 0.00G 999.9 000000 724050 13743 19830415 56.6 24 51.1 24 1015.5 24 1013.1 24 8.5 24 9.7 24 15.9 22.9 64.0 41.0 0.44G 999.9 110000 724050 13743 19830416 49.8 24 36.6 24 1012.2 24 1009.8 24 11.5 24 13.8 24 19.8 24.9 62.1 44.1 1.55G 999.9 110000 724050 13743 19830417 45.5 23 26.9 23 1011.5 23 1009.1 23 15.1 23 6.8 23 24.9 34.0 57.9 35.1 0.00G 999.9 010000 724050 13743 19830418 41.6 23 25.0 23 1007.5 23 1005.2 23 14.4 23 7.4 23 12.8 999.9 57.9 34.0 0.04G 999.9 000000 724050 13743 19830419 40.7 24 22.3 24 1002.9 24 1000.6 24 14.9 24 13.1 24 17.9 28.0 48.9 34.0 0.00G 999.9 000000 724050 13743 19830420 41.1 24 22.6 24 1003.0 24 1000.6 24 13.4 24 15.7 24 19.8 31.9 52.0* 34.0 0.00G 999.9 011000 724050 13743 19830421 49.1 24 23.8 24 1011.1 24 1008.8 24 14.6 24 6.9 24 12.8 21.0 62.1* 33.1 0.00D 999.9 000000 724050 13743 19830422 54.8 21 31.8 21 1014.4 21 1012.0 21 13.3 21 4.6 21 9.9 15.9 68.0* 33.1 0.00G 999.9 000000 724050 13743 19830423 55.0 23 40.3 23 1013.5 23 1011.2 23 11.8 23 3.4 23 8.9 999.9 68.0 41.0 0.00G 999.9 010000 724050 13743 19830424 51.0 24 48.8 24 996.1 24 993.7 24 9.2 24 11.3 24 17.9 24.9 66.9 44.1 1.04G 999.9 110000 724050 13743 19830425 46.0 23 34.2 23 995.8 23 993.4 23 12.1 23 14.3 23 21.0 29.9 53.1 41.0 0.23G 999.9 110000 724050 13743 19830426 55.4 24 30.3 24 1007.4 24 1005.1 24 16.7 24 10.8 24 22.0 25.8 72.0* 41.0 0.09G 999.9 010000 724050 13743 19830427 63.8 22 43.2 22 1012.8 22 1010.4 22 13.7 22 4.4 22 8.0 999.9 81.0 46.9 0.00G 999.9 000000 724050 13743 19830428 71.8 23 48.0 23 1012.9 23 1010.5 23 11.6 22 5.1 23 12.8 19.8 88.0 50.0 0.00G 999.9 000000 724050 13743 19830429 69.3 20 50.7 20 1016.5 20 1014.1 20 10.3 20 5.0 20 8.9 999.9 88.0 55.9 0.00G 999.9 000000 724050 13743 19830430 72.9 24 55.9 24 1018.0 24 1015.6 24 10.8 23 11.6 24 17.9 24.9 82.0 54.0 0.00G 999.9 000000 724050 13743 19830501 73.0 24 58.0 24 1017.6 24 1015.2 24 11.9 24 10.4 24 15.0 22.0 81.0 66.0 0.00G 999.9 000000 724050 13743 19830502 74.2 24 59.7 23 1013.5 24 1011.1 24 11.4 24 11.8 23 15.9 23.9 82.0 66.0 0.00G 999.9 000000 724050 13743 19830503 76.2 24 60.4 24 1005.7 24 1003.3 24 10.3 24 12.7 24 18.8 26.8 82.0* 68.0 0.00G 999.9 000000 724050 13743 19830504 65.7 23 52.9 23 1002.6 23 1000.2 23 12.2 23 9.8 23 15.9 23.9 82.0 62.1 0.03G 999.9 010000 724050 13743 19830505 60.1 24 42.0 24 1010.0 24 1007.6 24 12.9 24 4.4 24 10.9 14.0 73.0* 48.0 0.00G 999.9 000000 724050 13743 19830506 60.5 23 33.3 23 1019.9 23 1017.5 23 17.3 23 6.2 23 10.9 999.9 73.0 46.0 0.00G 999.9 000000 724050 13743 19830507 63.9 23 45.8 23 1021.4 23 1019.0 23 14.9 23 7.6 23 14.0 19.8 77.0* 46.0 0.00G 999.9 000000 724050 13743 19830508 66.3 24 54.1 24 1011.3 24 1008.9 24 11.5 24 9.4 24 15.0 22.9 77.0 50.0 0.00G 999.9 010100 724050 13743 19830509 54.8 22 35.2 22 1017.4 22 1015.0 22 15.5 22 11.6 22 16.9 26.8 73.9 45.0 0.15G 999.9 010000 724050 13743 19830510 55.9 24 26.2 24 1023.5 24 1021.1 24 17.4 24 7.8 24 10.9 999.9 71.1* 43.0 0.00G 999.9 000000 724050 13743 19830511 61.6 24 32.2 24 1023.2 24 1020.8 24 16.2 24 4.2 24 9.9 999.9 73.9* 43.0 0.00G 999.9 000000 724050 13743 19830512 63.1 24 41.5 24 1022.6 24 1020.2 24 15.0 24 5.0 24 10.9 15.9 73.9 48.0 0.00G 999.9 000000 724050 13743 19830513 63.9 23 46.7 23 1020.8 23 1018.4 23 15.0 23 3.8 23 8.0 999.9 77.0* 48.0 0.00G 999.9 000000 724050 13743 19830514 69.4 24 57.3 24 1015.4 24 1013.0 24 8.9 24 3.1 24 8.9 999.9 80.1 50.0 0.00G 999.9 000000 724050 13743 19830515 73.8 23 64.2 23 1009.5 23 1007.2 23 8.1 23 5.7 23 14.0 38.9 84.9 57.9 0.00G 999.9 010010 724050 13743 19830516 63.0 24 57.5 24 1009.1 24 1006.7 24 5.9 24 8.7 24 19.8 29.9 86.0 51.1* 1.66G 999.9 110000 724050 13743 19830517 53.1 24 37.9 24 1021.7 24 1019.3 24 16.8 24 7.3 23 15.0 21.0 72.0 43.0 0.49G 999.9 010000 724050 13743 19830518 60.2 23 45.5 23 1028.3 23 1025.9 23 14.1 23 3.7 23 9.9 999.9 72.0* 43.0 0.00G 999.9 000000 724050 13743 19830519 61.6 23 49.1 23 1028.7 23 1026.3 23 10.4 23 7.8 23 15.9 999.9 72.0 48.9 0.00G 999.9 010000 724050 13743 19830520 67.7 23 61.4 23 1020.9 23 1018.5 23 8.6 23 7.2 23 12.8 19.8 78.1* 51.1 0.23G 999.9 110000 724050 13743 19830521 70.0 23 65.9 23 1018.3 23 1015.9 23 7.6 23 4.2 22 7.0 999.9 78.1 62.1 0.64G 999.9 110000 724050 13743 19830522 66.9 22 63.5 22 1014.5 22 1012.2 22 4.6 22 3.8 22 10.9 999.9 73.0 64.0 0.29G 999.9 110000 724050 13743 19830523 72.5 18 64.0 18 1008.7 18 1006.3 18 7.3 18 4.1 17 5.8 999.9 82.9* 64.0 0.24G 999.9 110000 724050 13743 19830524 69.8 23 54.7 23 1011.6 23 1009.2 23 14.3 23 8.3 23 15.0 19.8 82.9 65.8 0.00G 999.9 010010 724050 13743 19830525 65.7 23 49.9 23 1015.4 23 1013.0 23 16.6 23 4.5 23 8.9 999.9 75.0* 52.9 0.00G 999.9 000000 724050 13743 19830526 67.1 22 55.0 22 1012.0 22 1009.6 22 11.3 22 4.7 22 15.9 22.9 75.0 53.1 0.00D 999.9 010010 724050 13743 19830527 61.4 24 45.6 24 1015.2 24 1012.8 24 13.3 24 7.8 24 11.8 15.0 73.9 50.0 0.21G 999.9 010010 724050 13743 19830528 62.8 24 43.9 24 1018.7 24 1016.3 24 14.4 24 3.8 24 7.0 999.9 71.1* 50.0 0.00G 999.9 010000 724050 13743 19830529 65.2 23 58.4 23 1013.8 23 1011.4 23 8.3 23 5.9 23 8.9 999.9 72.0 54.0 0.34G 999.9 110000 724050 13743 19830530 69.6 24 62.5 24 1005.8 24 1003.4 24 5.9 24 3.1 24 5.8 999.9 75.9* 61.0 0.44G 999.9 110010 724050 13743 19830531 68.6 23 58.1 23 1005.0 23 1002.6 23 8.3 23 4.8 23 11.8 999.9 75.9 63.9 0.04G 999.9 100000 724050 13743 19830601 65.0 23 53.4 23 1009.8 23 1007.6 23 12.1 23 3.9 23 8.9 999.9 75.0 59.0 0.00G 999.9 010000 724050 13743 19830602 65.2 22 49.6 22 1016.1 22 1013.8 22 13.3 22 5.4 22 11.1 17.9 73.9* 55.0 0.03G 999.9 000000 724050 13743 19830603 69.1 23 57.2 23 1016.0 23 1013.8 23 9.3 23 4.0 23 8.0 999.9 79.0* 62.1 0.00G 999.9 110000 724050 13743 19830604 69.2 23 63.8 23 1007.5 23 1005.2 22 7.8 23 7.8 23 17.9 24.9 79.0 62.1 0.42G 999.9 110010 724050 13743 19830605 72.3 23 62.1 23 1011.2 23 1008.9 23 8.9 23 3.4 23 8.0 999.9 82.0* 62.1 0.13G 999.9 100010 724050 13743 19830606 73.8 23 65.2 23 1010.6 23 1008.3 23 8.2 23 5.7 23 11.8 21.0 82.9* 62.1 0.00G 999.9 010010 724050 13743 19830607 72.5 22 62.6 22 1008.8 22 1006.5 22 7.1 22 6.0 22 9.9 999.9 82.9 66.0 0.98G 999.9 110010 724050 13743 19830608 73.1 24 55.5 24 1011.0 24 1008.8 24 11.7 24 4.7 24 8.0 999.9 81.0* 65.8 0.01G 999.9 010000 724050 13743 19830609 70.2 22 54.8 22 1020.0 22 1017.7 22 13.5 22 6.3 22 10.9 999.9 81.0 63.9 0.00G 999.9 000000 724050 13743 19830610 68.6 22 55.6 22 1023.5 22 1021.2 22 9.9 22 5.0 22 8.9 999.9 79.0* 57.9 0.00D 999.9 000000 724050 13743 19830611 73.3 24 61.2 24 1023.4 24 1021.1 24 8.5 24 5.6 24 8.0 999.9 84.9* 57.9 0.00G 999.9 000000 724050 13743 19830612 77.0 24 64.5 24 1021.9 24 1019.8 24 7.5 24 5.0 24 8.0 999.9 87.1* 64.0 0.00G 999.9 010000 724050 13743 19830613 78.3 23 66.8 23 1019.9 23 1017.6 23 6.7 23 3.0 23 12.8 16.9 91.0* 66.0 0.04G 999.9 110010 724050 13743 19830614 80.3 24 67.3 24 1018.1 24 1015.8 24 5.1 24 2.0 24 7.0 999.9 91.9 68.0 0.04G 999.9 100000 724050 13743 19830615 81.0 24 69.1 24 1015.6 24 1013.3 24 4.4 24 4.1 24 5.8 999.9 93.0 70.0 0.00G 999.9 000000 724050 13743 19830616 80.4 24 68.1 24 1016.5 24 1014.2 24 7.0 24 4.7 24 7.0 999.9 91.0 72.0 0.00G 999.9 100000 724050 13743 19830617 80.8 24 67.8 24 1018.1 24 1015.8 24 7.7 24 3.9 24 8.0 999.9 90.0 72.0 0.00D 999.9 000000 724050 13743 19830618 79.5 24 67.8 23 1017.7 24 1015.4 24 9.3 23 4.4 24 8.9 999.9 90.0 72.0 0.00G 999.9 000000 724050 13743 19830619 76.9 24 70.1 24 1017.5 24 1015.2 24 5.8 24 3.2 24 11.8 999.9 88.0 72.0 1.22G 999.9 110010 724050 13743 19830620 75.8 23 69.2 23 1017.3 23 1015.0 23 6.2 23 4.0 23 9.9 15.0 84.9 72.0 0.32G 999.9 110000 724050 13743 19830621 71.5 24 67.4 23 1019.0 24 1016.8 24 4.7 24 7.6 24 14.0 17.9 84.0 68.0* 1.50G 999.9 110010 724050 13743 19830622 74.0 24 64.1 24 1022.8 24 1020.3 24 5.9 24 5.9 24 9.9 999.9 82.9* 68.0 0.04G 999.9 110000 724050 13743 19830623 75.6 23 60.1 23 1021.4 23 1019.1 23 11.6 23 2.4 23 5.8 999.9 84.9* 64.0 0.00G 999.9 000000 724050 13743 19830624 78.3 23 65.7 23 1015.8 23 1013.5 23 9.6 23 5.4 23 8.9 12.8 89.1 64.0 0.00D 999.9 000000 724050 13743 19830625 81.6 22 63.3 22 1011.9 22 1009.7 22 12.8 22 7.0 22 11.8 16.9 89.1 64.9 0.00G 999.9 000000 724050 13743 19830626 76.8 23 58.7 23 1017.9 23 1015.6 23 17.1 23 3.7 23 5.8 999.9 87.3 64.0 0.00G 999.9 000000 724050 13743 19830627 80.2 24 68.8 24 1017.1 24 1014.8 24 9.7 24 5.9 24 8.9 999.9 89.1* 64.0 0.00G 999.9 000000 724050 13743 19830628 84.3 23 74.5 23 1012.9 23 1010.6 23 5.5 23 6.9 23 8.9 999.9 90.0* 72.0 0.00G 999.9 100000 724050 13743 19830629 72.0 24 66.0 24 1015.1 24 1012.8 24 7.1 24 7.8 24 15.9 22.9 90.0 65.8 2.43G 999.9 110010 724050 13743 19830630 71.4 23 58.7 23 1021.0 23 1018.7 23 13.7 23 4.2 23 8.0 999.9 75.9 66.0 0.01G 999.9 000000 724050 13743 19830701 74.5 20 66.6 20 1018.5 20 1016.1 20 11.6 20 6.3 20 8.9 999.9 84.9* 66.0 0.00G 999.9 000000 724050 13743 19830702 81.8 24 73.0 24 1015.6 24 1013.2 24 8.2 24 4.2 24 7.0 999.9 93.0* 66.9 0.00G 999.9 100000 724050 13743 19830703 84.1 23 73.2 23 1017.6 23 1015.2 23 7.2 23 3.4 23 8.0 999.9 93.0 73.0 0.00G 999.9 100000 724050 13743 19830704 83.8 21 75.4 21 1016.7 21 1014.3 21 5.5 21 4.7 21 17.9 18.8 93.9 75.0 0.00G 999.9 110010 724050 13743 19830705 78.0 24 70.3 24 1012.6 24 1010.3 24 10.1 24 6.4 24 12.0 999.9 91.9 72.0 0.53G 999.9 010010 724050 13743 19830706 74.8 24 63.8 24 1014.7 24 1012.3 24 10.4 24 6.7 24 12.8 999.9 84.9 68.0 0.03G 999.9 000000 724050 13743 19830707 71.7 23 52.5 23 1023.6 23 1021.2 23 17.3 23 7.6 23 10.9 999.9 81.0* 61.9 0.00G 999.9 000000 724050 13743 19830708 72.9 22 57.4 22 1025.1 22 1022.7 22 17.9 22 3.2 22 5.8 999.9 82.9* 61.0 0.00D 999.9 000000 724050 13743 19830709 77.8 23 60.6 23 1018.0 23 1015.6 23 13.1 23 6.1 23 11.8 18.8 87.1* 61.0 0.00D 999.9 000000 724050 13743 19830710 77.8 24 55.7 24 1015.5 24 1013.1 24 15.7 24 6.6 24 11.8 999.9 87.1 66.0 0.00G 999.9 010000 724050 13743 19830711 75.0 24 58.0 24 1018.2 24 1015.8 24 15.9 24 3.1 24 7.0 999.9 84.9 63.9 0.00G 999.9 000000 724050 13743 19830712 79.7 24 63.5 24 1017.6 24 1015.2 24 9.7 24 2.6 24 7.0 999.9 93.0* 64.0 0.00G 999.9 000000 724050 13743 19830713 85.4 24 66.3 24 1016.3 24 1013.9 24 6.9 24 6.2 24 12.8 18.8 93.9 69.1 0.00G 999.9 000000 724050 13743 19830714 82.7 22 59.5 22 1017.6 22 1015.2 22 14.9 22 5.3 22 8.0 999.9 95.0 70.0 0.00G 999.9 000000 724050 13743 19830715 84.3 23 66.1 23 1014.2 23 1011.8 23 10.7 23 4.2 23 9.9 999.9 95.0* 70.0 0.00D 999.9 000000 724050 13743 19830716 89.9 23 70.3 22 1011.1 23 1008.7 23 4.7 23 8.0 23 14.0 19.8 96.1* 73.0 0.00G 999.9 000000 724050 13743 19830717 88.7 19 68.3 19 1011.4 19 1009.0 19 3.6 19 7.0 19 10.9 18.8 96.1 81.0 0.00D 999.9 000000 724050 13743 19830718 85.9 20 67.9 20 1012.7 20 1010.3 20 11.9 20 7.6 20 14.0 999.9 99.0 79.0 0.00D 999.9 010010 724050 13743 19830719 85.7 24 71.2 24 1014.8 24 1012.4 24 7.7 24 3.9 24 11.8 17.9 96.1 79.0 0.06G 999.9 010010 724050 13743 19830720 85.9 24 71.1 24 1015.3 24 1012.9 24 6.9 24 5.8 24 9.9 999.9 95.0* 77.0 0.00D 999.9 010000 724050 13743 19830721 83.2 24 73.1 24 1013.7 24 1011.2 24 7.8 24 4.8 24 15.0 23.9 96.1* 73.9 1.02G 999.9 110010 724050 13743 19830722 82.7 24 60.9 24 1011.4 24 1009.0 24 15.8 24 10.0 24 15.0 23.9 96.1 73.9 0.00G 999.9 010000 724050 13743 19830723 77.2 24 57.6 24 1012.9 24 1010.5 24 15.5 24 4.3 24 8.9 999.9 88.0 66.9* 0.00G 999.9 000000 724050 13743 19830724 82.3 21 67.3 21 1007.1 21 1004.7 21 12.3 21 6.9 21 12.8 18.8 93.0* 64.9 0.12G 999.9 000010 724050 13743 19830725 79.5 23 62.7 23 1011.3 23 1008.9 23 14.1 23 6.1 23 8.9 999.9 93.0 72.0 0.00G 999.9 000000 724050 13743 19830726 79.7 24 62.7 24 1014.9 24 1012.5 24 11.6 24 4.5 24 8.9 999.9 91.9* 68.0 0.00G 999.9 000000 724050 13743 19830727 81.5 24 62.5 23 1019.1 24 1016.7 24 12.2 24 2.2 24 7.0 999.9 91.9 68.0 0.00G 999.9 000000 724050 13743 19830728 83.0 23 64.7 23 1022.7 23 1020.2 23 11.1 23 8.1 23 9.9 17.9 93.0* 70.0 0.00D 999.9 000000 724050 13743 19830729 82.5 24 65.7 23 1024.5 24 1022.1 24 10.3 24 8.2 24 10.9 999.9 93.0 73.0 0.00G 999.9 000000 724050 13743 19830730 83.1 23 67.3 23 1022.4 23 1020.0 23 10.3 21 7.3 23 10.9 999.9 93.9 73.0 0.00D 999.9 000000 724050 13743 19830731 84.6 24 67.2 24 1019.5 24 1017.1 24 7.9 24 4.9 24 7.0 999.9 97.0* 73.9 0.00G 999.9 000000 724050 13743 19830801 83.9 24 70.0 24 1017.6 24 1015.2 24 9.8 24 6.5 24 16.9 18.8 97.0 73.9 0.09G 999.9 010010 724050 13743 19830802 83.0 21 67.6 20 1019.6 21 1017.2 21 13.1 21 5.6 21 12.0 999.9 93.0 74.8 0.20G 999.9 000000 724050 13743 19830803 85.1 23 72.1 23 1021.4 23 1018.8 23 8.1 23 4.3 22 8.0 999.9 95.0* 75.0 0.00G 999.9 100000 724050 13743 19830804 82.2 23 70.4 23 1019.7 23 1017.3 23 11.0 23 7.3 23 15.0 999.9 95.0 75.0 0.00D 999.9 000000 724050 13743 19830805 82.0 21 73.1 21 1019.2 21 1016.8 21 5.6 21 4.2 20 19.8 25.8 91.0 75.0 0.12G 999.9 110010 724050 13743 19830806 80.8 22 71.6 22 1016.4 22 1014.1 22 5.1 21 3.1 22 8.0 999.9 91.0 73.9 0.50G 999.9 110010 724050 13743 19830807 83.7 23 71.9 23 1013.4 23 1011.0 23 4.2 23 4.4 23 8.0 999.9 93.0* 75.0 0.00G 999.9 000000 724050 13743 19830808 83.6 23 72.2 23 1013.2 23 1010.8 23 4.7 23 4.8 23 8.9 999.9 93.9* 75.0 0.08G 999.9 100000 724050 13743 19830809 85.8 23 70.0 23 1010.8 23 1008.4 23 5.4 23 5.5 23 10.9 999.9 95.0 75.0 0.00G 999.9 000000 724050 13743 19830810 79.9 24 63.1 24 1015.9 24 1013.5 24 12.7 24 6.1 24 11.8 999.9 96.1 72.0 0.00D 999.9 000000 724050 13743 19830811 82.8 23 72.9 22 1012.5 23 1010.1 23 5.4 23 9.2 23 999.9 999.9 96.1* 72.0 0.00G 999.9 110010 724050 13743 19830812 73.7 24 64.4 24 1008.2 24 1005.8 24 10.9 24 8.5 24 14.0 21.0 78.1* 68.0 0.83G 999.9 010010 724050 13743 19830813 70.3 23 57.2 23 1017.5 23 1015.2 23 17.5 23 10.5 23 14.0 19.8 79.0 63.9 0.00G 999.9 000000 724050 13743 19830814 71.4 24 53.5 24 1022.2 24 1019.8 24 17.6 24 6.2 24 11.8 999.9 81.0* 59.9 0.00G 999.9 000000 724050 13743 19830815 73.0 24 56.4 23 1021.9 24 1019.5 24 17.4 24 4.0 24 8.0 999.9 84.0* 60.1 0.00D 999.9 000000 724050 13743 19830816 74.9 23 60.1 23 1021.8 23 1019.4 23 16.1 23 5.0 23 8.9 999.9 86.0* 62.1 0.00D 999.9 000000 724050 13743 19830817 78.5 21 64.0 21 1019.0 21 1016.6 21 11.5 21 5.8 21 8.9 999.9 89.1* 64.0 0.00G 999.9 000000 724050 13743 19830818 83.5 23 71.0 23 1013.3 23 1010.9 23 4.9 23 7.3 23 11.8 999.9 93.0* 66.9 0.11G 999.9 110000 724050 13743 19830819 85.3 23 69.9 23 1014.6 23 1012.2 23 5.2 23 5.8 23 8.9 999.9 93.9* 75.9 0.00D 999.9 000000 724050 13743 19830820 84.7 22 68.5 22 1014.0 22 1011.6 22 7.8 22 5.7 22 999.9 999.9 100.9* 73.9 0.00G 999.9 000000 724050 13743 19830821 86.0 23 59.5 23 1015.5 23 1013.1 23 15.8 23 5.5 23 9.9 999.9 100.9 72.9 0.00G 999.9 000000 724050 13743 19830822 84.8 22 67.6 22 1014.1 22 1011.7 22 11.6 22 7.0 22 12.8 19.8 99.0* 72.9 0.00G 999.9 000000 724050 13743 19830823 80.5 24 70.2 24 1016.6 24 1014.0 24 7.6 24 6.2 24 19.8 35.0 99.0 73.0 0.00G 999.9 110010 724050 13743 19830824 79.4 24 68.1 24 1023.9 24 1021.4 24 7.6 24 4.3 24 8.0 999.9 88.0 73.9 0.31G 999.9 100000 724050 13743 19830825 77.9 23 62.9 23 1026.7 23 1024.2 23 10.7 23 4.4 23 7.0 999.9 88.0 68.0 0.00G 999.9 000000 724050 13743 19830826 77.3 23 60.8 23 1023.9 23 1021.5 23 12.6 23 4.8 23 8.9 999.9 90.0* 66.0 0.00G 999.9 000000 724050 13743 19830827 81.2 23 65.0 23 1017.6 23 1015.2 23 11.2 23 6.0 23 7.0 999.9 95.0* 66.0 0.00G 999.9 000000 724050 13743 19830828 81.0 24 72.3 24 1013.5 24 1011.1 24 5.4 24 3.9 24 8.0 999.9 95.0 71.1 0.92G 999.9 110010 724050 13743 19830829 81.9 24 72.3 24 1011.9 24 1009.5 24 4.5 24 5.1 24 10.9 999.9 91.0* 75.9 0.94G 999.9 100000 724050 13743 19830830 81.0 24 67.8 24 1013.5 24 1011.2 24 8.3 24 4.6 24 10.9 999.9 91.0 72.0 0.00G 999.9 000000 724050 13743 19830831 78.6 24 69.6 24 1012.9 24 1010.5 24 6.6 24 6.7 24 15.9 21.0 90.0 72.0 0.00G 999.9 110000 724050 13743 19830901 77.1 21 65.3 21 1014.4 21 1011.9 21 10.4 21 4.5 21 7.0 999.9 86.0* 69.1 0.00G 999.9 010000 724050 13743 19830902 77.3 24 64.8 24 1018.1 24 1015.7 24 10.2 24 3.4 24 8.9 999.9 86.0 68.9 0.00D 999.9 100000 724050 13743 19830903 77.1 24 64.2 24 1016.5 24 1014.2 24 9.4 24 3.1 24 4.9 999.9 87.1* 66.9 0.00D 999.9 000000 724050 13743 19830904 80.7 19 67.5 19 1017.1 19 1014.7 19 9.6 19 5.7 19 10.9 999.9 87.1 72.0* 0.00G 999.9 000000 724050 13743 19830905 84.4 22 72.0 22 1014.6 22 1012.2 22 10.3 22 4.3 22 9.9 999.9 93.9 72.0 0.00D 999.9 000000 724050 13743 19830906 84.9 22 72.4 22 1012.5 22 1010.2 22 10.8 22 4.0 22 8.9 999.9 95.0* 75.9 0.00D 999.9 000000 724050 13743 19830907 86.3 24 70.3 24 1012.0 24 1009.6 24 10.5 24 5.1 24 10.9 999.9 96.1 75.9 0.00D 999.9 000000 724050 13743 19830908 80.2 23 56.8 23 1018.9 23 1016.5 23 14.5 23 6.4 23 8.0 999.9 95.0 68.0 0.00D 999.9 000000 724050 13743 19830909 76.7 22 59.6 22 1021.0 22 1018.5 22 13.2 22 3.8 22 9.9 999.9 90.0* 64.0 0.00G 999.9 000000 724050 13743 19830910 83.5 22 63.8 22 1017.2 22 1014.9 22 11.6 22 5.2 22 9.9 999.9 98.1* 64.0 0.00G 999.9 000000 724050 13743 19830911 84.8 24 66.4 24 1013.9 24 1011.6 24 9.7 24 3.3 24 7.0 999.9 98.1 69.1 0.00G 999.9 000000 724050 13743 19830912 84.5 21 68.0 21 1012.6 21 1010.1 21 7.4 21 3.2 21 15.9 999.9 98.1 73.0 0.00D 999.9 010000 724050 13743 19830913 71.9 24 65.9 24 1015.8 24 1013.2 24 5.3 24 6.5 24 14.0 999.9 78.1* 64.9* 0.11G 999.9 110010 724050 13743 19830914 68.8 24 56.1 24 1018.1 24 1015.7 24 13.5 24 9.5 24 14.0 999.9 77.0* 63.0 1.22G 999.9 000000 724050 13743 19830915 67.0 24 48.8 24 1023.2 24 1020.8 24 15.7 24 5.6 24 8.0 999.9 77.0 55.0* 0.00G 999.9 000000 724050 13743 19830916 66.6 23 50.4 23 1023.6 23 1021.2 23 14.8 23 5.1 23 8.9 999.9 75.9 55.9 0.00D 999.9 000000 724050 13743 19830917 72.2 23 60.2 23 1016.8 23 1014.4 23 13.4 23 6.0 23 8.9 999.9 82.0* 55.9 0.00G 999.9 000000 724050 13743 19830918 71.8 24 56.1 24 1019.8 24 1017.4 24 12.5 24 4.3 24 8.0 999.9 82.0 60.1 0.00G 999.9 000000 724050 13743 19830919 76.6 22 63.8 22 1020.8 22 1018.4 22 9.9 22 5.2 22 9.9 999.9 91.0* 60.1 0.00G 999.9 000000 724050 13743 19830920 79.2 21 66.0 21 1019.8 21 1017.4 21 7.6 21 6.5 21 14.0 19.8 91.9 66.9 0.00G 999.9 000000 724050 13743 19830921 76.0 22 67.2 22 1012.8 22 1010.5 22 6.9 22 11.1 22 16.9 22.0 90.0 64.0* 0.00G 999.9 110000 724050 13743 19830922 60.2 24 44.3 24 1015.6 24 1013.2 24 17.6 24 10.7 24 18.8 24.9 80.1 54.0 1.02G 999.9 110000 724050 13743 19830923 56.2 22 35.5 22 1024.3 22 1021.9 22 19.4 22 5.7 22 9.9 999.9 66.0 46.9 0.13G 999.9 010000 724050 13743 19830924 57.0 23 38.5 23 1031.9 23 1029.4 23 17.2 23 4.6 23 8.0 999.9 69.1* 46.0 0.00G 999.9 000000 724050 13743 19830925 59.2 24 44.4 24 1032.2 24 1029.8 24 15.9 24 2.2 24 7.0 999.9 71.1* 46.0 0.00G 999.9 000000 724050 13743 19830926 61.0 24 48.8 24 1027.8 24 1025.3 24 14.0 24 2.7 24 6.0 999.9 73.0* 46.9 0.00G 999.9 000000 724050 13743 19830927 65.5 23 51.9 23 1024.1 23 1021.7 23 10.2 23 4.1 23 8.0 999.9 81.0* 52.0 0.00G 999.9 000000 724050 13743 19830928 67.8 22 55.9 22 1024.4 22 1022.0 22 9.4 22 6.4 22 14.0 999.9 81.0 54.0 0.00G 999.9 000000 724050 13743 19830929 63.2 23 50.2 23 1026.4 23 1023.9 23 12.6 23 7.6 23 12.8 16.9 77.0 57.0 0.00G 999.9 000000 724050 13743 19830930 62.7 24 53.3 24 1020.2 24 1017.8 24 7.4 24 11.5 24 16.9 25.8 70.0 57.0 0.50G 999.9 110000 724050 13743 19831001 67.9 22 63.5 22 1022.8 22 1020.3 22 5.1 22 2.3 22 5.8 999.9 73.0* 64.0 0.06G 999.9 110000 724050 13743 19831002 64.8 23 58.9 23 1018.7 23 1016.3 23 6.4 23 2.8 23 7.0 999.9 75.0* 57.0 0.00G 999.9 110000 724050 13743 19831003 67.9 24 58.5 24 1017.5 24 1015.1 24 7.3 24 4.4 24 8.0 999.9 80.1* 56.8 0.00G 999.9 100000 724050 13743 19831004 68.9 23 60.3 23 1013.6 23 1011.2 23 6.4 23 4.9 23 8.9 999.9 84.0* 56.8 0.00D 999.9 100000 724050 13743 19831005 73.8 24 64.6 24 1009.4 24 1007.0 24 8.0 24 7.6 24 15.0 16.9 84.0 57.0 0.00G 999.9 000000 724050 13743 19831006 70.5 22 52.0 22 1014.6 22 1012.1 22 13.6 22 7.4 22 12.8 17.9 84.9 61.0 0.00D 999.9 000000 724050 13743 19831007 64.0 21 44.9 21 1023.3 21 1020.9 21 14.6 21 5.4 21 9.9 999.9 77.0 53.1 0.00D 999.9 000000 724050 13743 19831008 62.7 21 51.0 21 1025.9 21 1023.5 21 12.2 21 4.2 21 8.0 999.9 73.9* 50.9 0.00G 999.9 000000 724050 13743 19831009 64.5 21 52.5 21 1025.2 21 1022.7 21 10.9 21 4.6 21 7.0 999.9 75.9* 51.1 0.00G 999.9 000000 724050 13743 19831010 63.6 23 54.2 23 1028.7 23 1026.3 23 10.5 23 8.5 23 12.8 19.8 75.9 53.1 0.00D 999.9 000000 724050 13743 19831011 61.0 23 53.2 23 1029.6 23 1027.2 23 9.2 23 9.4 23 12.8 999.9 68.0 54.0 0.00G 999.9 110000 724050 13743 19831012 70.6 23 66.3 23 1020.2 23 1017.9 23 5.5 23 8.4 23 15.9 22.9 75.9* 64.9 1.16G 999.9 110000 724050 13743 19831013 75.4 23 70.3 23 1014.3 23 1011.9 23 7.4 22 7.1 23 14.0 15.9 80.1 68.0 0.03G 999.9 110000 724050 13743 19831014 62.9 22 47.1 22 1017.8 22 1015.4 22 16.9 22 9.3 22 15.0 17.9 80.1 51.1 0.61G 999.9 010010 724050 13743 19831015 58.8 24 42.9 24 1024.2 24 1021.8 24 13.7 24 5.5 24 10.9 15.9 71.1* 46.9 0.56G 999.9 000000 724050 13743 19831016 57.5 23 44.6 23 1026.7 23 1024.3 23 13.1 23 4.7 23 8.9 999.9 71.1 46.9 0.00G 999.9 000000 724050 13743 19831017 59.9 23 50.7 23 1024.7 23 1022.2 23 11.3 23 4.0 23 8.9 999.9 70.0* 48.9 0.00G 999.9 000000 724050 13743 19831018 63.2 23 56.1 23 1022.5 23 1020.1 23 8.9 23 4.6 23 8.0 999.9 71.1 51.1 0.00G 999.9 100000 724050 13743 19831019 59.4 20 52.9 20 1023.8 20 1021.4 20 8.3 20 7.8 20 14.0 16.9 71.1 54.0 0.08G 999.9 110000 724050 13743 19831020 55.7 22 48.0 22 1028.7 22 1026.3 22 8.5 22 8.2 22 15.0 999.9 63.0 53.1 0.10G 999.9 110000 724050 13743 19831021 52.2 19 45.6 19 1031.4 19 1029.0 19 8.7 17 9.5 19 12.8 17.9 57.0 48.9 0.23G 999.9 110000 724050 13743 19831022 52.7 22 41.1 22 1030.2 22 1027.7 22 14.1 22 7.6 22 9.9 999.9 62.1* 41.9 0.14G 999.9 000000 724050 13743 19831023 56.1 24 51.7 24 1019.6 24 1017.3 24 4.9 24 6.0 24 9.9 999.9 63.0* 42.1 1.39G 999.9 110000 724050 13743 19831024 62.1 23 58.2 23 1010.1 23 1007.7 23 5.2 23 7.0 23 8.9 999.9 64.9 53.1 1.38G 999.9 110000 724050 13743 19831025 53.7 23 49.8 23 1015.9 23 1013.5 23 4.8 23 10.0 23 15.0 999.9 64.9 50.0 0.35G 999.9 110000 724050 13743 19831026 52.9 20 43.7 20 1013.6 20 1011.2 20 9.6 20 6.3 20 11.8 18.8 60.1* 46.9 0.04G 999.9 110000 724050 13743 19831027 51.3 24 33.7 24 1015.4 24 1013.0 24 14.9 24 10.9 24 16.9 22.0 60.1 44.1 0.00G 999.9 000000 724050 13743 19831028 53.4 23 37.3 23 1020.1 23 1017.7 23 14.9 23 8.8 23 15.9 999.9 73.0* 39.9 0.00D 999.9 000000 724050 13743 19831029 60.7 21 38.6 21 1020.6 21 1018.2 21 15.3 21 11.2 21 15.9 19.8 73.9 55.0* 0.00G 999.9 000000 724050 13743 19831030 46.8 22 28.4 22 1035.8 22 1033.4 22 14.9 22 6.6 22 14.0 999.9 63.0 36.9 0.00G 999.9 000000 724050 13743 19831031 46.9 23 36.1 23 1034.6 23 1032.2 23 12.7 23 4.0 23 8.0 999.9 60.1* 36.9 0.00G 999.9 100000 724050 13743 19831101 52.4 23 40.6 23 1034.4 23 1032.0 23 13.1 23 4.1 23 8.9 999.9 64.0* 37.0 0.00G 999.9 000000 724050 13743 19831102 54.0 21 44.4 21 1030.6 21 1028.2 21 8.8 21 3.4 21 5.8 999.9 64.0 44.1 0.00C 999.9 100000 724050 13743 19831103 60.6 24 52.0 24 1018.8 24 1016.4 24 8.6 24 5.9 24 11.8 18.8 73.9* 44.1 0.04G 999.9 110000 724050 13743 19831104 49.7 23 34.5 23 1015.4 23 1013.0 23 15.4 23 11.1 22 16.9 22.0 75.0 39.9 0.19G 999.9 010000 724050 13743 19831105 43.5 21 31.3 21 1014.2 21 1011.8 21 12.7 20 5.6 21 10.9 999.9 51.1 37.9 0.00G 999.9 010000 724050 13743 19831106 43.4 22 35.0 22 1014.6 22 1012.1 22 13.3 22 7.0 22 12.8 19.8 53.1* 37.9 0.01G 999.9 010000 724050 13743 19831107 48.6 23 38.6 23 1018.6 23 1016.2 23 11.1 23 5.5 23 8.0 999.9 60.1* 37.9 0.00G 999.9 000000 724050 13743 19831108 54.1 23 41.2 23 1022.6 23 1020.2 23 9.4 23 2.8 23 7.0 999.9 66.9* 39.9 0.00D 999.9 100000 724050 13743 19831109 53.8 22 42.2 22 1022.6 22 1020.2 22 8.6 22 3.1 22 7.0 999.9 70.0* 41.0 0.00D 999.9 100000 724050 13743 19831110 56.0 24 51.6 24 1010.6 24 1008.2 24 5.0 24 6.8 24 16.9 999.9 70.0 50.0 0.04G 999.9 110000 724050 13743 19831111 55.9 24 49.0 24 996.6 24 994.2 24 8.8 24 7.5 24 15.0 28.0 62.1 46.9 0.97G 999.9 110000 724050 13743 19831112 44.1 23 26.6 23 1006.3 23 1003.9 23 17.6 23 14.7 23 19.8 34.0 57.9 39.9 0.23G 999.9 010000 724050 13743 19831113 40.8 24 24.0 24 1015.6 24 1013.2 24 14.8 24 6.8 24 12.8 999.9 48.0* 35.1 0.00G 999.9 000000 724050 13743 19831114 43.7 23 26.9 23 1016.3 23 1013.9 23 11.4 23 2.7 23 5.8 999.9 53.1* 34.9 0.00G 999.9 000000 724050 13743 19831115 42.7 24 35.4 24 1016.0 24 1013.6 24 7.2 24 4.9 24 10.9 999.9 53.1 35.1 0.10G 999.9 111000 724050 13743 19831116 47.2 24 42.3 24 1002.6 24 1000.2 24 7.0 24 5.4 24 9.9 999.9 54.0* 37.0 0.67G 999.9 110010 724050 13743 19831117 46.7 20 28.6 20 1007.2 20 1004.9 20 16.9 20 12.3 20 19.8 31.9 54.0 39.9 0.03G 999.9 000000 724050 13743 19831118 44.0 23 28.6 23 1018.4 23 1016.0 23 14.5 23 6.5 23 12.8 17.9 55.0* 33.1 0.00G 999.9 000000 724050 13743 19831119 53.4 23 40.0 23 1017.7 23 1015.3 23 11.4 23 3.8 22 8.9 999.9 63.0* 33.1 0.00G 999.9 000000 724050 13743 19831120 53.0 22 45.0 22 1013.6 22 1011.3 22 9.2 22 3.8 22 12.8 999.9 68.0* 41.0 0.00D 999.9 000000 724050 13743 19831121 59.0 22 43.3 22 1009.1 22 1006.8 22 14.1 22 9.9 22 17.9 24.9 68.0 41.0 0.97G 999.9 110000 724050 13743 19831122 53.5 21 39.4 21 1016.6 21 1014.1 21 15.1 21 6.6 21 12.8 999.9 73.0* 41.9 0.00G 999.9 000000 724050 13743 19831123 54.4 23 44.8 23 1017.0 23 1014.6 23 10.9 23 3.3 22 9.9 999.9 73.0 42.1 0.00D 999.9 000000 724050 13743 19831124 56.6 23 51.7 23 1012.4 23 1010.0 23 6.3 23 4.3 23 10.9 999.9 64.0 46.9 0.25G 999.9 110000 724050 13743 19831125 46.9 24 38.4 24 1006.2 24 1003.8 24 7.7 24 12.7 24 19.8 30.9 62.1 35.1 1.44G 999.9 111000 724050 13743 19831126 46.3 23 30.0 23 1018.4 23 1015.8 23 18.0 23 7.3 23 11.8 999.9 61.0* 35.1 0.19G 999.9 000000 724050 13743 19831127 49.9 23 36.1 23 1019.9 23 1017.5 23 14.8 23 3.1 23 7.0 999.9 64.9 36.0 0.00G 999.9 000000 724050 13743 19831128 53.2 23 44.3 23 1015.2 23 1012.8 23 8.0 23 5.3 23 8.9 999.9 64.9 37.9 0.20D 999.9 110000 724050 13743 19831129 54.3 16 43.2 16 1007.6 16 1005.1 16 13.8 16 7.9 16 14.0 999.9 64.9 44.1* 0.07G 999.9 110000 724050 13743 19831130 42.5 23 25.5 23 1017.5 23 1015.1 23 16.0 23 7.5 23 15.9 23.9 64.9 32.9 0.00G 999.9 000000 724050 13743 19831201 43.7 23 25.9 23 1020.4 23 1018.0 23 15.6 23 7.9 23 16.9 22.0 54.0 33.1 0.00D 999.9 000000 724050 13743 19831202 36.0 23 22.1 23 1025.0 23 1022.6 23 12.5 22 6.3 23 11.1 999.9 48.0 28.9 0.00D 999.9 000000 724050 13743 19831203 44.3 20 32.5 20 1019.2 20 1016.8 20 10.5 20 7.6 20 12.8 999.9 46.9 28.9 0.02G 999.9 011000 724050 13743 19831204 42.7 24 35.7 24 1011.5 24 1009.0 24 7.1 24 6.9 24 11.8 999.9 46.9 37.9 1.19G 999.9 111000 724050 13743 19831205 46.6 23 38.2 23 1016.0 23 1013.6 23 11.8 23 4.6 23 9.9 999.9 51.1 37.9 0.05G 999.9 000000 724050 13743 19831206 49.1 23 44.1 23 1008.4 23 1006.3 22 7.4 23 5.9 23 19.8 26.8 54.0* 39.9 0.47G 999.9 110000 724050 13743 19831207 43.1 23 23.7 22 1007.6 23 1005.2 23 18.1 23 17.0 22 24.9 37.9 55.0 37.9* 0.20G 999.9 010000 724050 13743 19831208 37.4 24 20.3 24 1020.3 24 1017.9 24 14.7 24 4.8 24 8.0 999.9 46.9 30.9 0.01G 999.9 001000 724050 13743 19831209 38.3 23 29.3 23 1027.2 23 1024.8 23 10.1 23 4.1 23 10.9 999.9 46.9* 30.0 0.00G 999.9 100000 724050 13743 19831210 47.0 20 35.7 20 1027.7 20 1025.2 20 10.0 20 3.6 20 7.0 999.9 57.0* 30.0 0.01G 999.9 010000 724050 13743 19831211 42.9 24 33.6 24 1032.5 24 1030.1 24 9.4 24 6.4 24 9.9 999.9 56.8 34.9 0.00G 999.9 000000 724050 13743 19831212 50.1 23 45.4 23 1017.1 23 1014.7 23 6.6 23 10.2 23 16.9 22.0 54.0* 35.1 0.04G 999.9 110000 724050 13743 19831213 49.9 24 46.0 24 1004.5 24 1002.1 24 4.9 24 10.9 24 16.9 22.9 54.0 47.8 1.22G 999.9 110000 724050 13743 19831214 50.1 20 43.3 20 1002.4 20 1000.0 20 12.9 20 8.5 20 15.9 26.8 59.0* 41.9 0.63G 999.9 000000 724050 13743 19831215 52.4 22 45.0 22 1007.5 22 1005.1 22 9.4 22 7.8 22 14.0 999.9 59.0 47.8 0.00G 999.9 000000 724050 13743 19831216 45.8 23 32.7 23 1018.7 23 1016.3 23 14.0 23 5.8 23 8.9 999.9 55.9 36.0 0.00D 999.9 000000 724050 13743 19831217 40.4 22 23.2 22 1030.2 22 1027.8 22 12.5 22 6.3 22 9.9 999.9 52.0 36.0 0.00G 999.9 000000 724050 13743 19831218 35.7 24 21.1 24 1033.8 24 1031.4 24 12.2 24 4.9 24 8.0 999.9 46.0 28.9 0.00G 999.9 000000 724050 13743 19831219 34.2 22 21.1 22 1027.9 22 1025.5 22 10.1 22 8.2 22 999.9 999.9 42.1 28.9 0.00G 999.9 000000 724050 13743 19831220 26.9 22 6.7 22 1034.1 22 1031.6 22 14.1 21 8.8 22 14.0 999.9 37.0 23.0 0.00G 999.9 000000 724050 13743 19831221 25.7 23 7.6 23 1040.6 23 1038.3 23 13.4 23 8.2 23 11.8 999.9 31.1* 21.9 0.00G 999.9 000000 724050 13743 19831222 37.9 24 33.4 24 1021.3 24 1018.9 24 4.2 24 6.3 24 9.9 999.9 44.1* 28.0 1.11G 999.9 111000 724050 13743 19831223 33.4 23 14.4 23 1021.3 23 1018.9 23 16.6 23 9.5 23 22.9 34.0 44.1 27.0 0.07G 999.9 100000 724050 13743 19831224 24.2 21 4.5 21 1012.3 21 1010.0 21 13.4 21 14.5 21 31.9 39.8 37.0 10.2* 0.00G 999.9 000000 724050 13743 19831225 8.0 23 -14.7 23 1019.0 23 1016.5 23 18.1 23 16.2 23 22.9 35.0 14.2* 3.0 0.00G 999.9 000000 724050 13743 19831226 12.4 24 -9.0 24 1025.3 24 1022.9 24 14.7 24 7.7 24 14.0 25.8 23.2* 3.0 0.00G 999.9 000000 724050 13743 19831227 24.8 23 7.2 23 1025.1 23 1022.7 23 14.1 23 4.9 23 8.9 999.9 34.0* 6.1 0.00D 999.9 000000 724050 13743 19831228 34.3 22 22.4 22 1017.7 22 1015.9 21 8.0 22 4.2 22 11.8 999.9 36.0* 19.0 0.00G 999.9 111000 724050 13743 19831229 35.0 22 27.9 22 1014.9 22 1012.5 22 8.2 21 9.4 22 15.9 21.0 37.0 30.2* 0.95G 999.9 100000 724050 13743 19831230 22.0 23 7.2 23 1031.9 23 1029.5 23 17.7 23 12.9 23 16.9 19.8 37.0 16.0 0.00G 999.9 000000 724050 13743 19831231 20.4 24 5.3 24 1039.1 24 1036.6 24 19.7 24 7.1 24 8.9 999.9 32.0* 12.0 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/1980/0000755000175000017500000000000014302004506015101 5ustar nileshnileshfluids-1.0.22/tests/gsod/1980/724050-13743.op0000644000175000017500000014350514302004506016671 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19800101 38.2 24 27.3 24 1013.5 24 1011.1 24 11.5 24 4.3 24 8.0 999.9 48.9 29.8 0.00D 999.9 000000 724050 13743 19800102 37.3 24 25.9 24 1013.1 24 1010.7 24 9.7 24 10.8 24 16.9 22.0 46.9 30.0 0.00G 999.9 000000 724050 13743 19800103 38.6 24 25.4 24 1020.7 24 1018.3 24 11.4 24 9.7 24 14.0 999.9 45.0 30.9 0.00G 999.9 000000 724050 13743 19800104 34.5 23 28.6 23 1024.2 23 1021.7 23 7.4 23 7.2 23 12.0 999.9 45.0 30.2* 0.08G 0.8 101000 724050 13743 19800105 30.5 23 28.2 23 1012.6 23 1010.2 23 2.0 23 12.7 23 15.9 21.0 37.9 29.8 0.28G 6.7 101000 724050 13743 19800106 29.0 24 18.3 23 1020.3 24 1017.9 24 15.0 24 7.1 24 10.9 999.9 35.1* 20.8 0.08G 5.9 101000 724050 13743 19800107 33.9 24 26.4 24 1017.9 24 1015.5 24 12.5 24 13.2 24 18.8 24.9 41.0* 21.0 0.02G 3.9 010000 724050 13743 19800108 39.3 24 25.1 24 1021.1 24 1018.7 24 14.9 24 7.2 24 10.9 999.9 43.0* 28.9 0.00D 2.0 000000 724050 13743 19800109 37.7 22 28.7 22 1027.0 22 1024.6 22 12.8 22 4.4 22 8.9 999.9 43.0 35.1 0.00D 999.9 000000 724050 13743 19800110 32.7 21 25.6 21 1035.9 21 1033.4 21 11.3 21 6.6 21 8.9 999.9 39.9 25.9 0.00D 999.9 000000 724050 13743 19800111 39.3 24 35.4 24 1026.0 24 1023.6 24 8.5 24 4.6 24 8.9 999.9 46.0* 26.1 0.04G 999.9 110000 724050 13743 19800112 43.4 22 27.3 22 1018.9 22 1016.5 22 16.3 22 11.9 21 19.8 28.9 52.0 36.0 0.51G 999.9 110000 724050 13743 19800113 33.0 22 16.2 22 1033.9 22 1031.4 22 17.4 22 7.4 22 14.0 999.9 52.0 29.8 0.00G 999.9 000000 724050 13743 19800114 38.5 22 33.8 22 1022.2 22 1019.8 22 9.3 22 8.7 22 12.8 999.9 46.0* 30.0 0.00G 999.9 110000 724050 13743 19800115 46.4 22 42.5 22 1021.5 22 1019.1 22 10.7 22 11.7 22 18.8 23.9 55.0 37.0 0.02G 999.9 110000 724050 13743 19800116 44.4 22 29.0 22 1026.2 22 1023.8 22 15.5 22 6.1 22 9.9 999.9 57.0* 36.9 0.00G 999.9 000000 724050 13743 19800117 42.8 24 32.5 24 1025.7 24 1023.3 24 11.8 24 4.6 24 8.9 999.9 56.8 36.9 0.00D 999.9 010000 724050 13743 19800118 43.6 23 41.5 23 1021.8 23 1019.3 23 6.6 23 4.1 23 8.0 999.9 45.0 37.0 0.04G 999.9 110000 724050 13743 19800119 43.1 23 35.2 23 1021.2 23 1018.8 23 13.5 23 9.2 23 15.0 22.9 46.9 36.9 0.91G 999.9 110000 724050 13743 19800120 41.1 24 28.0 24 1023.5 24 1021.1 24 12.1 24 8.7 24 15.9 22.0 48.0* 34.9 0.00G 999.9 000000 724050 13743 19800121 38.9 22 21.1 22 1020.3 22 1017.9 22 15.7 22 7.6 22 12.8 15.9 48.9 32.0 0.00G 999.9 000000 724050 13743 19800122 41.0 24 31.0 24 1012.4 24 1010.1 24 11.4 24 5.5 24 11.8 999.9 48.0 32.0 0.00G 999.9 110000 724050 13743 19800123 43.2 24 34.0 24 999.8 24 997.4 24 11.2 24 9.3 24 22.0 31.9 46.9 35.1 0.31G 999.9 111000 724050 13743 19800124 27.4 24 9.6 24 1005.7 24 1003.3 24 17.3 24 11.7 24 22.9 34.0 46.9 19.9 0.08G 999.9 001000 724050 13743 19800125 34.2 23 29.5 23 1003.2 23 1000.8 22 11.1 23 2.8 23 8.0 999.9 41.0* 19.9 0.00G 999.9 001000 724050 13743 19800126 38.9 24 24.3 24 1015.2 24 1012.8 24 14.2 24 8.1 24 14.0 999.9 46.0 30.9 0.00G 999.9 000000 724050 13743 19800127 34.0 24 17.6 24 1020.7 24 1018.3 24 14.9 24 5.8 24 9.9 999.9 45.0 29.8 0.00G 999.9 000000 724050 13743 19800128 37.5 22 21.2 22 1019.1 22 1016.7 22 12.7 22 5.1 22 12.8 999.9 42.1 30.0 0.00G 999.9 000000 724050 13743 19800129 36.4 22 21.5 22 1021.7 22 1019.2 22 11.7 22 8.0 22 12.8 999.9 44.1 33.1 0.00G 999.9 001000 724050 13743 19800130 27.1 24 10.7 24 1027.2 24 1024.8 24 15.6 23 11.1 24 17.9 28.9 39.9 20.8 0.00G 999.9 000000 724050 13743 19800131 27.9 23 16.8 23 1020.5 23 1018.1 23 9.1 23 9.2 23 15.9 23.9 34.0 21.0 0.12G 2.0 101000 724050 13743 19800201 23.6 24 8.2 24 1019.5 24 1017.1 24 15.7 24 16.2 24 21.0 29.9 30.0 18.0 0.04G 0.8 000000 724050 13743 19800202 24.9 24 7.4 24 1023.6 24 1021.2 24 18.2 24 15.6 24 23.9 29.9 33.1* 18.0 0.00G 999.9 000000 724050 13743 19800203 26.3 24 7.5 24 1025.8 24 1023.4 24 18.0 24 12.5 24 15.9 24.9 34.0* 19.0 0.00G 999.9 000000 724050 13743 19800204 29.6 24 10.0 24 1024.4 24 1022.0 24 15.3 23 11.9 24 15.0 21.0 37.0* 19.9 0.00D 999.9 000000 724050 13743 19800205 31.1 24 13.5 24 1026.8 24 1024.4 24 16.6 24 10.1 24 15.0 19.8 39.9* 23.0 0.00G 999.9 000000 724050 13743 19800206 31.7 24 21.3 24 1023.6 24 1021.2 24 9.2 24 5.4 24 11.8 999.9 39.9 23.0 0.01G 999.9 101000 724050 13743 19800207 32.0 24 22.1 24 1020.9 24 1018.4 24 10.6 24 12.7 24 16.9 24.9 42.1* 25.9 0.04G 999.9 001000 724050 13743 19800208 35.7 23 18.1 23 1029.0 23 1026.6 23 17.5 23 10.9 23 15.0 22.0 42.1 26.1 0.01G 999.9 000000 724050 13743 19800209 35.5 24 20.2 24 1024.6 24 1022.2 24 12.4 24 5.0 24 8.0 999.9 43.0 28.0 0.00G 999.9 001000 724050 13743 19800210 31.8 24 24.4 24 1014.4 24 1012.0 24 9.5 24 6.9 24 15.0 19.8 37.9 25.0 0.16G 2.8 101000 724050 13743 19800211 32.0 24 18.7 24 1016.8 24 1014.4 24 15.2 24 4.2 24 10.9 999.9 42.1* 23.9 0.01G 999.9 000000 724050 13743 19800212 35.3 24 17.4 24 1017.1 24 1014.7 24 18.1 24 8.4 24 16.9 22.9 42.1 24.1 0.00G 999.9 000000 724050 13743 19800213 33.7 22 15.2 22 1027.9 22 1025.5 22 16.0 22 5.9 22 9.9 14.0 42.1* 23.0 0.00G 999.9 000000 724050 13743 19800214 39.3 22 21.9 22 1026.0 22 1023.5 22 11.9 22 4.6 22 11.8 999.9 57.0* 23.0 0.00D 999.9 000000 724050 13743 19800215 42.5 24 27.6 24 1021.8 24 1019.4 24 12.2 24 5.7 24 10.9 999.9 57.9 27.0 0.00D 999.9 000000 724050 13743 19800216 40.4 22 31.9 22 1003.6 22 1001.2 22 7.8 22 7.1 22 18.8 28.0 46.9 36.0 0.08G 999.9 110000 724050 13743 19800217 29.9 24 11.4 24 1013.8 24 1011.4 24 18.6 24 13.7 24 19.8 26.8 46.9 23.0 0.00G 999.9 000000 724050 13743 19800218 29.1 24 11.4 24 1023.9 24 1021.5 24 17.8 24 7.1 24 10.9 999.9 41.0* 18.9 0.00G 999.9 000000 724050 13743 19800219 37.6 23 22.0 23 1024.1 23 1021.7 23 14.0 23 5.5 23 8.9 999.9 52.0* 19.0 0.00D 999.9 000000 724050 13743 19800220 44.6 21 29.4 21 1015.8 21 1013.5 21 11.5 21 3.3 21 8.0 999.9 61.0* 27.0 0.00D 999.9 000000 724050 13743 19800221 51.6 24 42.2 24 1012.7 24 1010.3 24 11.6 24 6.2 24 14.0 999.9 64.0* 33.1 0.04G 999.9 010000 724050 13743 19800222 47.6 24 42.4 24 1013.7 24 1011.3 24 6.3 24 4.9 24 9.9 999.9 64.9 42.1 0.28G 999.9 110000 724050 13743 19800223 48.8 24 45.2 24 1011.4 24 1009.0 24 4.4 24 5.1 24 8.9 999.9 57.0 43.0 0.01G 999.9 110000 724050 13743 19800224 51.8 24 42.4 24 1015.4 24 1013.0 24 9.6 24 3.7 24 8.9 999.9 61.0* 43.0 0.08G 999.9 110000 724050 13743 19800225 44.5 24 34.7 24 1015.0 24 1012.6 24 8.7 24 6.0 24 10.9 18.8 61.9 37.9 0.24G 999.9 111000 724050 13743 19800226 37.1 24 24.7 23 1012.5 24 1010.1 24 12.8 24 13.2 24 23.9 30.9 48.9 33.1* 0.02G 999.9 001000 724050 13743 19800227 34.4 23 13.4 23 1017.1 23 1014.7 23 18.1 22 9.8 23 15.9 22.0 45.0 27.9 0.00G 999.9 000000 724050 13743 19800228 33.0 24 20.9 24 1012.4 24 1010.0 24 10.7 24 7.1 24 15.9 22.9 45.0 28.0 0.12G 2.0 101000 724050 13743 19800229 26.4 24 14.8 24 1019.6 24 1017.2 24 16.4 24 9.6 24 16.9 23.9 35.1 18.9 0.08G 2.0 001000 724050 13743 19800301 18.6 23 3.3 23 1031.8 23 1029.4 23 16.6 23 10.8 23 15.9 999.9 28.9 14.0 0.00G 0.8 001000 724050 13743 19800302 20.3 23 12.2 23 1022.7 23 1020.3 23 11.2 23 15.3 23 17.9 22.0 24.3* 14.0 0.39G 5.9 001000 724050 13743 19800303 26.4 23 8.6 23 1019.7 23 1017.3 23 21.1 23 14.2 23 20.0 32.8 39.0* 14.9 0.08G 5.9 000000 724050 13743 19800304 34.6 23 18.7 23 1019.4 23 1017.0 23 15.3 23 2.5 23 8.9 999.9 51.1* 15.1 0.00G 2.0 000000 724050 13743 19800305 46.6 24 37.5 24 1013.2 24 1010.8 24 11.7 24 10.8 24 18.8 23.9 59.0* 39.9* 0.12G 999.9 110000 724050 13743 19800306 46.9 23 33.3 23 1019.4 23 1017.0 23 14.9 23 10.7 23 19.8 31.9 61.0 38.8 0.08G 999.9 000000 724050 13743 19800307 47.4 24 35.8 24 1022.2 24 1019.7 24 11.9 24 9.0 24 11.8 999.9 66.0* 38.8 0.00G 999.9 000000 724050 13743 19800308 62.8 24 54.6 24 1010.3 24 1007.9 24 12.2 24 13.3 24 17.9 25.8 73.0* 55.0* 0.00G 999.9 010000 724050 13743 19800309 54.0 21 40.6 21 1009.7 21 1007.3 21 13.6 21 11.2 21 19.8 28.0 73.0 45.9 0.00G 999.9 000000 724050 13743 19800310 49.4 24 36.8 24 1011.8 24 1009.4 24 11.6 24 6.2 24 17.9 999.9 64.0* 37.9 0.00G 999.9 100000 724050 13743 19800311 46.6 24 29.1 24 1006.9 24 1004.5 24 17.9 24 14.0 24 22.0 34.0 64.0 36.9 0.02G 999.9 010000 724050 13743 19800312 37.2 24 14.3 24 1021.2 24 1018.8 24 19.1 24 9.6 24 16.9 19.8 55.0 30.9 0.00G 999.9 000000 724050 13743 19800313 35.6 24 26.7 24 1020.0 24 1017.6 24 8.5 24 11.4 24 18.8 999.9 42.1 30.9 0.08G 999.9 111000 724050 13743 19800314 40.5 19 35.2 19 1007.3 19 1004.9 19 10.2 19 13.4 19 19.8 32.8 48.0 32.0 1.14G 999.9 111000 724050 13743 19800315 44.5 24 27.1 24 1024.8 24 1022.4 24 16.0 23 12.2 24 18.8 26.8 55.9* 34.0 0.08G 999.9 000000 724050 13743 19800316 48.2 24 29.1 24 1030.1 24 1027.7 24 18.1 24 4.6 24 9.9 999.9 63.0* 34.0 0.00G 999.9 000000 724050 13743 19800317 53.9 23 47.6 23 1021.2 23 1018.8 23 14.0 23 8.1 23 15.9 999.9 64.9 34.0 0.04C 999.9 010000 724050 13743 19800318 55.4 24 43.1 24 1013.0 24 1010.7 24 15.9 24 15.9 24 28.0 37.9 64.9 45.9 0.08G 999.9 110000 724050 13743 19800319 48.4 23 27.1 23 1028.4 23 1026.0 23 17.9 23 6.1 23 11.8 999.9 62.1 37.9 0.00G 999.9 000000 724050 13743 19800320 53.8 23 41.2 23 1022.0 23 1019.5 23 12.6 23 8.3 23 10.9 999.9 66.9* 37.9 0.00G 999.9 000000 724050 13743 19800321 60.5 22 57.1 22 1000.8 22 998.5 22 10.2 22 12.7 22 24.9 48.0 69.1* 45.0 0.87G 999.9 110000 724050 13743 19800322 43.5 24 29.5 24 1005.6 24 1003.1 24 18.8 24 20.8 24 28.0 43.9 46.9* 39.9 0.28G 999.9 010000 724050 13743 19800323 45.3 24 30.4 24 1020.3 24 1017.9 24 19.9 24 6.7 24 19.8 26.8 61.0* 34.0 0.00G 999.9 000000 724050 13743 19800324 49.2 23 41.7 23 1015.9 23 1013.5 23 15.3 23 2.3 23 11.8 12.8 61.0 43.0 0.00D 999.9 010000 724050 13743 19800325 51.8 23 46.6 23 1007.3 23 1004.9 23 7.2 23 8.1 23 15.9 24.9 57.0 43.0 0.20G 999.9 110000 724050 13743 19800326 45.9 24 33.0 24 1020.9 24 1018.5 24 12.8 24 9.4 24 14.0 18.8 60.1 37.9 0.00G 999.9 000000 724050 13743 19800327 48.5 24 33.5 24 1026.0 24 1023.6 24 14.4 24 5.8 24 9.9 999.9 62.1* 36.9 0.00D 999.9 000000 724050 13743 19800328 49.0 24 40.1 24 1027.9 24 1025.5 24 12.4 24 5.8 24 9.9 999.9 62.1 37.0 0.00G 999.9 110000 724050 13743 19800329 53.2 23 51.9 23 1016.4 23 1014.0 23 6.7 23 6.4 23 10.9 999.9 59.0 44.1 1.22G 999.9 110000 724050 13743 19800330 56.0 24 52.8 24 1011.7 24 1009.3 24 6.6 24 5.0 24 11.8 999.9 63.0* 48.9 0.04G 999.9 110000 724050 13743 19800331 49.6 24 48.2 24 1007.5 24 1005.1 24 5.3 24 10.5 24 15.0 22.0 63.0 46.9 0.47G 999.9 110000 724050 13743 19800401 48.3 24 39.4 24 1018.4 24 1016.0 24 14.3 24 8.0 24 12.8 999.9 60.1* 39.9 0.28G 999.9 010000 724050 13743 19800402 53.8 24 44.1 24 1020.8 24 1018.4 24 15.1 24 8.5 24 15.0 22.0 70.0* 39.9 0.00G 999.9 010000 724050 13743 19800403 59.1 22 47.1 22 1020.3 22 1017.9 22 11.7 22 6.7 22 10.9 999.9 71.1 43.0 0.00G 999.9 000000 724050 13743 19800404 62.1 24 52.4 24 1006.2 24 1003.8 24 9.2 24 10.2 24 22.0 35.0 73.9* 51.1 0.20G 999.9 110000 724050 13743 19800405 56.1 23 32.6 23 1008.9 23 1006.5 23 18.6 23 15.5 23 22.0 35.9 75.0 47.8 0.04G 999.9 000000 724050 13743 19800406 58.1 24 34.5 24 1020.3 24 1017.9 24 19.9 24 5.7 24 11.8 15.9 69.1* 43.9 0.00G 999.9 000000 724050 13743 19800407 59.2 23 41.7 23 1024.0 23 1021.6 23 17.5 23 8.6 23 15.9 17.9 70.0 44.1 0.00G 999.9 010000 724050 13743 19800408 63.1 23 51.7 23 1024.4 23 1022.0 23 14.1 23 9.5 23 18.8 30.9 73.0 50.0 0.00G 999.9 010000 724050 13743 19800409 64.6 24 57.3 24 1012.3 24 1009.9 24 12.2 24 10.5 24 16.9 24.9 73.9* 55.9 0.63G 999.9 110010 724050 13743 19800410 63.4 23 50.7 23 1008.5 23 1006.1 23 12.9 23 5.8 23 14.0 999.9 75.9 50.9 0.16G 999.9 010110 724050 13743 19800411 63.2 24 41.2 24 1016.2 24 1013.8 24 14.9 24 6.3 24 11.8 17.9 75.0* 50.9 0.00G 999.9 000000 724050 13743 19800412 64.6 23 46.8 23 1016.6 23 1014.2 23 12.8 23 8.1 23 16.9 23.9 75.9 51.1 0.00G 999.9 010000 724050 13743 19800413 62.4 24 47.5 24 1014.6 24 1012.2 24 13.6 24 8.8 24 14.0 19.8 75.0 54.0 0.00G 999.9 010000 724050 13743 19800414 60.4 23 51.6 23 1011.0 23 1008.6 23 7.7 23 10.6 23 19.8 26.8 72.0* 54.0 0.12G 999.9 110000 724050 13743 19800415 61.1 24 45.8 24 1002.0 24 999.6 24 13.7 24 12.6 24 25.8 35.0 72.0 54.0 0.28G 999.9 010000 724050 13743 19800416 52.6 24 31.0 24 1011.7 24 1009.3 24 16.8 24 12.7 24 19.8 28.9 64.0 48.9 0.00G 999.9 010000 724050 13743 19800417 46.1 22 22.5 22 1026.6 22 1024.2 22 19.9 22 8.8 22 15.0 15.9 60.1* 34.9 0.00G 999.9 000000 724050 13743 19800418 55.8 24 36.2 24 1023.2 24 1020.8 24 15.0 24 5.7 24 11.8 999.9 70.0* 35.1 0.00D 999.9 000000 724050 13743 19800419 61.1 23 44.0 23 1022.2 23 1019.8 23 13.5 23 5.4 23 11.8 999.9 75.9* 42.1 0.00G 999.9 000000 724050 13743 19800420 64.7 20 49.1 20 1019.2 20 1016.8 20 14.9 20 7.0 20 9.9 999.9 78.1* 48.0 0.00D 999.9 000000 724050 13743 19800421 67.3 21 47.3 21 1013.6 21 1011.2 21 14.2 21 8.2 21 14.0 15.9 80.1 54.0 0.00C 999.9 000000 724050 13743 19800422 62.2 21 38.6 21 1012.9 21 1010.5 21 18.0 21 7.3 21 14.0 999.9 75.0 50.9 0.00G 999.9 000000 724050 13743 19800423 63.4 24 40.7 24 1004.4 24 1002.0 24 15.4 24 6.4 24 12.8 999.9 73.9 50.9 0.00D 999.9 000000 724050 13743 19800424 66.3 23 46.4 23 1005.7 23 1003.3 23 12.4 23 6.0 23 23.9 31.9 79.0* 51.1 0.00D 999.9 010010 724050 13743 19800425 65.5 24 56.2 23 1007.4 24 1005.0 24 7.2 24 8.6 24 16.9 22.0 79.0 55.0 0.16G 999.9 110010 724050 13743 19800426 55.8 22 43.8 22 1014.3 22 1011.9 22 9.6 22 8.0 22 11.8 999.9 75.9 52.0 0.28G 999.9 110000 724050 13743 19800427 55.1 24 52.6 24 1011.0 24 1008.6 24 4.9 24 6.8 24 11.8 999.9 60.1* 52.0 0.55G 999.9 110010 724050 13743 19800428 57.4 23 55.5 23 1005.9 23 1003.5 23 5.1 23 8.5 23 12.8 999.9 60.1 53.1 0.71G 999.9 110010 724050 13743 19800429 59.5 24 52.9 24 1005.6 24 1003.3 24 10.4 24 7.1 24 14.0 999.9 69.1* 54.0 0.24G 999.9 010000 724050 13743 19800430 58.7 24 54.8 24 1005.6 24 1003.2 24 6.2 24 10.3 24 12.8 999.9 70.0 54.0 0.08G 999.9 110000 724050 13743 19800501 60.8 24 55.4 24 1007.7 24 1005.3 24 6.5 24 9.2 24 14.0 999.9 73.9* 54.9 0.28G 999.9 110000 724050 13743 19800502 65.7 24 55.7 24 1012.2 24 1009.8 24 9.3 24 6.1 24 11.8 999.9 75.0* 55.0 0.04G 999.9 100000 724050 13743 19800503 66.9 23 55.5 23 1012.8 23 1010.4 23 11.9 23 6.7 23 11.8 999.9 80.1* 55.9 0.16G 999.9 010010 724050 13743 19800504 72.1 24 49.5 24 1010.0 24 1007.6 24 18.4 24 8.4 24 14.0 15.9 82.9* 55.9 0.00G 999.9 000000 724050 13743 19800505 72.6 23 51.6 23 1007.3 23 1004.9 23 18.2 23 6.9 23 11.8 999.9 88.0* 56.8 0.00D 999.9 000000 724050 13743 19800506 74.1 22 56.1 22 1002.9 22 1000.6 22 12.3 22 6.6 22 15.0 21.0 89.1 57.0 0.00D 999.9 010010 724050 13743 19800507 72.0 23 55.4 23 1005.6 23 1003.3 23 12.8 23 8.2 23 14.0 19.8 86.0 61.0 0.00G 999.9 010000 724050 13743 19800508 58.9 24 49.0 24 1009.4 24 1007.0 24 10.3 24 8.3 24 14.0 19.8 82.0 52.9 0.12G 999.9 010000 724050 13743 19800509 55.0 23 39.3 23 1013.1 23 1010.7 23 15.3 23 9.1 23 14.0 18.8 64.0* 45.0 0.02G 999.9 000000 724050 13743 19800510 59.4 24 42.9 24 1016.6 24 1014.2 24 15.3 24 7.4 24 14.0 15.0 73.9* 45.0 0.00G 999.9 000000 724050 13743 19800511 66.4 24 53.3 24 1013.6 24 1011.2 24 13.0 24 10.0 24 14.0 22.9 75.9* 63.0* 0.02G 999.9 110000 724050 13743 19800512 73.6 24 65.7 24 1012.8 24 1010.4 24 8.0 24 5.3 24 8.0 999.9 87.1* 62.1 0.04G 999.9 100000 724050 13743 19800513 76.8 24 67.6 24 1009.6 24 1007.2 24 10.0 24 7.6 24 18.1 22.9 89.1* 64.9 0.00G 999.9 110010 724050 13743 19800514 75.3 24 60.2 24 1008.8 24 1006.4 24 17.6 23 10.4 24 19.8 25.8 90.0 68.0 0.08G 999.9 000000 724050 13743 19800515 62.6 22 44.8 22 1018.9 22 1016.5 22 15.9 21 9.8 22 15.9 25.8 81.0 52.0 0.00G 999.9 000000 724050 13743 19800516 64.1 22 43.0 22 1025.4 22 1023.0 22 16.0 22 6.4 22 11.8 999.9 73.9* 52.0 0.00D 999.9 000000 724050 13743 19800517 65.9 23 48.1 23 1028.4 23 1026.0 23 17.1 22 6.7 23 11.8 17.9 75.9 53.1 0.00D 999.9 000000 724050 13743 19800518 67.9 22 61.4 22 1020.8 22 1018.3 22 10.0 22 6.8 22 10.9 999.9 77.0* 57.0 0.98G 999.9 110000 724050 13743 19800519 72.7 23 67.4 23 1015.0 23 1012.6 23 9.8 23 5.2 23 24.9 41.0 82.0* 63.0 0.04G 999.9 110010 724050 13743 19800520 69.2 24 66.1 24 1014.1 24 1011.7 24 5.0 24 6.1 24 11.8 999.9 82.0 64.0 0.24G 999.9 110000 724050 13743 19800521 66.5 23 63.1 23 1012.6 23 1010.2 23 7.4 23 10.7 23 14.0 17.9 72.0 64.9 0.59G 999.9 110000 724050 13743 19800522 70.2 21 61.1 21 1018.0 21 1015.7 21 8.1 21 5.1 21 8.9 999.9 84.0* 59.9 0.16G 999.9 100000 724050 13743 19800523 73.7 24 66.4 23 1016.9 24 1014.5 24 5.9 24 5.9 24 11.8 999.9 84.0 60.1 0.00G 999.9 100000 724050 13743 19800524 74.0 22 70.4 22 1010.9 22 1008.4 21 5.1 22 4.8 21 9.9 999.9 82.9 64.9 0.00G 999.9 110010 724050 13743 19800525 74.2 23 68.4 23 1003.1 22 1000.7 23 6.8 23 6.0 23 11.8 999.9 82.9* 68.9 0.16G 999.9 110000 724050 13743 19800526 70.6 23 45.9 23 1009.6 23 1007.2 23 15.5 23 12.3 23 15.9 22.9 82.9 61.0 0.02G 999.9 000000 724050 13743 19800527 68.0 24 44.7 24 1016.1 24 1013.7 24 19.9 24 8.1 24 11.8 18.8 78.1 54.9 0.00G 999.9 000000 724050 13743 19800528 71.9 24 51.9 24 1018.3 24 1015.9 24 16.4 24 5.1 24 9.9 999.9 84.0* 55.0 0.00D 999.9 000000 724050 13743 19800529 74.6 24 60.8 24 1018.2 24 1015.7 23 11.5 24 5.6 24 8.0 999.9 84.0 60.1 0.00G 999.9 000000 724050 13743 19800530 74.7 23 61.8 23 1019.9 23 1017.5 23 9.7 23 6.3 23 8.9 999.9 84.0* 63.9 0.00D 999.9 000000 724050 13743 19800531 75.9 24 70.9 24 1018.4 24 1016.0 24 4.8 24 7.3 24 14.0 19.8 84.9 64.0 0.00G 999.9 110000 724050 13743 19800601 78.9 24 68.3 24 1015.4 24 1013.0 24 11.7 24 8.0 24 15.0 19.8 90.0* 68.9 0.00D 999.9 000000 724050 13743 19800602 79.8 23 71.4 23 1012.9 23 1010.5 23 7.7 23 8.9 23 14.0 16.9 90.0 69.1 0.01D 999.9 110010 724050 13743 19800603 80.6 24 72.5 24 1011.4 24 1009.0 24 6.7 24 7.6 24 14.0 18.8 90.0 73.0 0.00D 999.9 110010 724050 13743 19800604 73.3 21 59.0 21 1015.5 21 1013.1 21 13.7 21 11.5 21 15.9 22.9 89.1 63.9 0.20G 999.9 010000 724050 13743 19800605 71.1 23 49.3 23 1020.2 23 1017.8 23 14.9 23 8.6 23 11.8 16.9 80.1* 59.9 0.00G 999.9 000000 724050 13743 19800606 69.2 24 57.5 24 1019.4 24 1017.0 24 15.2 24 6.9 24 14.0 999.9 80.1 60.1 0.01G 999.9 110010 724050 13743 19800607 78.5 24 71.7 24 1013.1 24 1010.7 24 4.5 24 7.8 24 15.0 35.9 91.9* 62.1 0.55G 999.9 110110 724050 13743 19800608 79.6 23 68.5 23 1006.0 22 1003.6 22 9.8 23 11.5 23 22.0 31.9 91.9 72.0 0.12G 999.9 100000 724050 13743 19800609 66.0 24 44.9 24 1011.5 24 1009.2 24 19.4 24 12.5 24 18.8 28.0 84.9 52.0 0.00G 999.9 000000 724050 13743 19800610 67.0 24 55.2 24 1009.2 24 1006.8 24 15.0 24 8.8 24 17.9 34.0 77.0 61.0 0.02G 999.9 010010 724050 13743 19800611 66.3 23 46.4 23 1019.4 23 1017.0 23 19.7 23 6.8 23 10.9 999.9 74.8 55.9 0.08G 999.9 000000 724050 13743 19800612 66.0 24 46.3 24 1025.6 24 1023.2 24 17.3 24 5.1 24 11.8 999.9 75.0* 55.9 0.00G 999.9 000000 724050 13743 19800613 69.1 24 50.3 24 1024.9 24 1022.5 24 13.6 24 5.1 24 8.0 999.9 80.1* 56.8 0.00D 999.9 000000 724050 13743 19800614 73.1 24 55.0 24 1017.4 24 1015.0 24 14.7 24 4.0 24 8.0 999.9 86.0* 61.0 0.00D 999.9 000000 724050 13743 19800615 77.5 23 66.6 22 1010.3 23 1008.0 22 9.7 23 7.1 23 15.0 19.8 93.0* 68.0 0.00D 999.9 010010 724050 13743 19800616 70.5 23 64.7 23 1011.3 23 1008.9 23 10.2 23 6.2 23 11.8 18.8 73.9* 64.0* 0.35G 999.9 010010 724050 13743 19800617 66.2 23 50.8 23 1019.6 23 1017.2 23 16.7 23 7.3 23 10.9 999.9 78.1* 55.9 0.08G 999.9 000000 724050 13743 19800618 68.7 23 54.3 23 1018.4 23 1016.0 23 14.8 23 4.8 23 8.0 999.9 78.1* 59.0 0.00G 999.9 000000 724050 13743 19800619 71.4 23 58.5 23 1015.7 23 1013.3 23 14.5 23 4.9 23 8.9 999.9 82.9* 61.0 0.00D 999.9 000000 724050 13743 19800620 73.0 22 54.3 22 1013.2 22 1010.8 22 14.2 22 13.1 22 23.9 31.9 82.9 65.8 0.00D 999.9 000000 724050 13743 19800621 75.0 24 48.5 24 1018.8 24 1016.4 24 19.3 24 9.1 24 11.8 999.9 84.0* 63.9 0.00G 999.9 000000 724050 13743 19800622 76.9 23 56.8 23 1019.2 23 1016.8 23 18.7 23 4.6 23 8.0 999.9 88.0* 63.0 0.00G 999.9 000000 724050 13743 19800623 78.8 24 60.9 24 1020.2 24 1017.8 24 13.0 24 5.0 24 8.0 999.9 90.0* 63.0 0.00G 999.9 000000 724050 13743 19800624 81.0 24 66.4 24 1019.7 24 1017.3 24 9.4 24 8.3 24 14.0 999.9 91.0* 69.1 0.00G 999.9 000000 724050 13743 19800625 79.6 23 65.3 23 1019.4 23 1017.0 23 8.9 23 6.8 23 14.0 999.9 91.0 72.9 0.00G 999.9 000000 724050 13743 19800626 77.4 24 68.1 24 1015.3 24 1013.0 24 12.3 24 8.0 24 10.9 999.9 89.1 72.0 0.00G 999.9 000000 724050 13743 19800627 82.3 23 69.3 22 1012.6 23 1010.2 23 7.0 23 7.0 23 14.0 17.9 97.0* 68.0* 0.00G 999.9 100000 724050 13743 19800628 85.0 24 68.6 24 1013.6 24 1011.2 24 7.5 24 6.7 24 15.0 21.0 98.1 69.1 0.00G 999.9 000000 724050 13743 19800629 86.4 23 73.5 23 1009.0 23 1006.6 23 6.7 23 5.9 23 10.9 999.9 98.1 75.0 0.00D 999.9 110010 724050 13743 19800630 77.9 23 64.7 23 1007.2 23 1004.9 23 12.8 23 9.6 23 16.9 23.9 98.1 72.9 0.31G 999.9 110010 724050 13743 19800701 76.5 24 58.4 24 1016.6 24 1014.2 24 13.7 24 6.6 24 10.9 999.9 86.0* 65.8 0.00G 999.9 000000 724050 13743 19800702 82.9 22 65.8 22 1017.9 22 1015.5 22 10.8 22 9.5 22 14.0 18.8 95.0* 66.0 0.00D 999.9 000000 724050 13743 19800703 81.5 24 73.2 24 1015.4 24 1013.0 24 6.9 24 6.5 24 17.9 30.9 96.1 72.0 0.12G 999.9 110010 724050 13743 19800704 82.1 23 65.8 23 1016.2 23 1013.9 23 9.9 23 5.8 23 9.9 999.9 90.0* 72.9 0.00G 999.9 000000 724050 13743 19800705 82.7 23 69.9 23 1013.4 23 1011.0 23 8.4 23 5.2 23 15.0 21.0 93.0* 73.0 0.00D 999.9 010010 724050 13743 19800706 80.9 24 65.8 24 1011.5 24 1009.2 24 16.6 24 10.2 24 15.9 21.0 93.0 75.9 0.20G 999.9 000000 724050 13743 19800707 76.4 23 52.6 23 1019.2 23 1016.8 23 17.9 23 5.2 23 9.9 999.9 86.0 65.8 0.00G 999.9 000000 724050 13743 19800708 73.8 23 63.6 23 1015.9 23 1013.4 23 13.4 23 9.7 23 23.9 35.0 86.0 66.0 0.43G 999.9 110010 724050 13743 19800709 78.7 23 66.9 23 1015.1 23 1012.7 23 9.2 23 5.8 22 9.9 999.9 89.1* 68.9 0.51G 999.9 100000 724050 13743 19800710 81.9 21 70.3 21 1011.7 21 1009.4 21 11.5 21 7.8 21 10.9 999.9 89.1 69.1 0.01G 999.9 010000 724050 13743 19800711 83.0 23 68.8 23 1010.1 23 1007.7 23 7.3 23 6.2 23 9.9 21.0 91.9* 72.0 0.00D 999.9 100000 724050 13743 19800712 84.7 23 71.0 23 1009.9 23 1007.5 23 9.5 23 7.0 23 11.8 999.9 93.0* 72.0 0.00G 999.9 010000 724050 13743 19800713 79.6 21 59.3 21 1013.5 21 1011.1 21 17.8 21 7.2 21 9.9 999.9 93.0 70.9 0.01G 999.9 000000 724050 13743 19800714 80.4 24 61.9 24 1017.9 24 1015.5 24 16.1 24 4.8 24 8.9 15.0 91.0* 66.9 0.00G 999.9 000000 724050 13743 19800715 83.6 24 67.0 24 1017.8 24 1015.5 24 13.8 24 10.2 24 14.0 19.8 93.9* 66.9 0.00D 999.9 000000 724050 13743 19800716 89.7 24 75.4 24 1012.6 24 1010.2 24 7.0 24 9.3 24 11.8 999.9 102.9* 73.9 0.00D 999.9 000000 724050 13743 19800717 86.2 24 76.4 23 1009.9 24 1007.5 24 6.2 24 7.5 23 19.8 25.8 100.0* 78.1* 0.00D 999.9 110010 724050 13743 19800718 82.8 22 69.7 22 1014.9 22 1012.5 22 12.0 22 5.8 22 9.9 999.9 101.8 72.0 1.02G 999.9 000000 724050 13743 19800719 86.0 24 71.9 24 1019.6 24 1017.2 24 11.3 24 4.9 24 10.9 999.9 93.9 72.0 0.00G 999.9 000000 724050 13743 19800720 89.0 23 77.8 23 1019.0 23 1016.6 23 6.9 23 7.4 23 9.9 999.9 98.1* 77.0 0.00D 999.9 000000 724050 13743 19800721 90.0 23 76.9 23 1018.1 23 1015.7 23 10.5 23 7.5 23 28.0 999.9 100.0* 81.0 0.00D 999.9 010010 724050 13743 19800722 81.3 22 74.6 22 1016.2 22 1013.8 22 12.8 22 6.6 22 23.9 34.0 99.9 75.9 0.12G 999.9 010010 724050 13743 19800723 76.9 21 73.0 21 1014.2 21 1011.8 21 10.4 21 9.2 21 14.0 24.9 81.0* 74.8 1.38G 999.9 110010 724050 13743 19800724 79.3 23 67.1 23 1014.9 23 1012.5 23 13.1 23 7.9 23 10.9 999.9 84.9 72.9 0.04G 999.9 000000 724050 13743 19800725 80.5 24 66.3 24 1018.3 24 1015.8 24 13.5 24 6.3 24 10.9 15.0 90.0* 70.0 0.00G 999.9 000000 724050 13743 19800726 83.9 24 71.2 24 1016.4 24 1014.0 24 6.8 24 7.7 24 10.9 999.9 93.0* 70.0 0.00G 999.9 000000 724050 13743 19800727 83.0 24 69.1 24 1016.6 24 1014.2 24 12.7 24 10.6 24 12.8 999.9 93.0 74.8 0.00D 999.9 000000 724050 13743 19800728 81.9 21 70.0 21 1015.6 21 1013.1 21 16.3 21 10.6 21 14.0 18.8 90.0 75.0 0.00D 999.9 000000 724050 13743 19800729 83.0 24 72.2 24 1011.6 24 1009.2 24 12.1 24 9.0 24 14.0 18.8 90.0 77.0 0.04G 999.9 110000 724050 13743 19800730 84.2 24 68.3 24 1013.0 24 1010.6 24 5.4 24 8.1 24 12.8 18.8 91.9 75.9 0.00G 999.9 000000 724050 13743 19800731 84.5 24 71.4 24 1016.3 24 1013.9 24 4.9 24 5.9 24 11.8 999.9 91.9 75.9 0.00G 999.9 100000 724050 13743 19800801 86.3 23 73.0 23 1013.2 23 1010.8 23 6.7 23 9.7 23 29.9 52.8 98.1 75.9 0.00D 999.9 010010 724050 13743 19800802 85.3 23 69.6 23 1012.4 23 1010.1 23 14.1 23 7.0 22 11.1 999.9 98.1 75.0* 0.01G 999.9 000000 724050 13743 19800803 88.2 21 73.2 21 1008.8 21 1006.4 21 13.7 21 9.3 21 19.8 28.0 98.1 75.9 0.00G 999.9 010010 724050 13743 19800804 82.8 22 73.5 22 1013.0 22 1010.6 22 11.0 22 8.0 22 18.8 999.9 99.0 74.8 0.24G 999.9 010010 724050 13743 19800805 85.2 22 74.8 22 1016.8 22 1014.4 22 8.5 22 7.8 22 24.9 43.9 95.0 75.0 0.20G 999.9 010010 724050 13743 19800806 83.7 24 73.7 24 1020.1 24 1017.7 24 13.2 24 6.8 24 12.8 999.9 96.1 75.9 0.12G 999.9 010000 724050 13743 19800807 86.1 24 71.0 24 1020.8 24 1018.3 24 8.5 24 5.1 24 9.9 999.9 95.0* 75.9 0.00G 999.9 100000 724050 13743 19800808 88.0 23 72.1 23 1016.6 23 1014.2 23 6.9 23 7.4 23 14.0 999.9 100.0* 75.9 0.00D 999.9 100000 724050 13743 19800809 89.2 21 73.5 21 1012.0 21 1009.6 21 9.9 21 8.0 21 11.8 999.9 99.9 79.9 0.00G 999.9 000000 724050 13743 19800810 86.5 24 73.3 24 1013.1 24 1010.7 24 11.6 23 7.3 24 12.8 999.9 97.0 79.9 0.00D 999.9 000000 724050 13743 19800811 87.0 22 75.4 22 1013.8 22 1011.4 22 7.0 22 8.8 22 15.0 19.8 98.1* 77.0 0.01G 999.9 110010 724050 13743 19800812 85.9 24 71.8 24 1012.4 24 1010.0 24 8.4 24 8.5 24 15.9 23.9 99.9 79.0 0.00D 999.9 010010 724050 13743 19800813 82.9 23 64.2 23 1015.8 23 1013.4 23 14.3 23 9.3 23 11.8 999.9 93.0 72.9 0.00G 999.9 000000 724050 13743 19800814 83.9 23 67.7 23 1015.8 23 1013.3 23 9.5 23 8.3 23 14.0 21.0 97.0* 72.9 0.00G 999.9 100000 724050 13743 19800815 83.8 21 71.7 21 1012.9 21 1010.5 21 9.1 21 7.2 21 19.8 34.0 98.1 73.0 0.01G 999.9 110000 724050 13743 19800816 76.4 22 64.7 22 1014.1 22 1011.7 22 13.5 22 13.8 21 18.8 24.9 87.1 70.9 0.51G 999.9 110000 724050 13743 19800817 73.6 24 56.4 24 1022.8 24 1020.4 24 18.2 24 7.9 24 14.0 22.0 84.0 63.9 0.00G 999.9 000000 724050 13743 19800818 73.4 24 63.8 24 1021.2 24 1018.8 24 14.5 24 9.8 24 15.0 999.9 82.9 64.0 0.20G 999.9 110000 724050 13743 19800819 77.4 23 71.3 22 1017.7 23 1015.3 23 7.9 23 5.7 23 8.0 999.9 84.0* 66.9 0.01G 999.9 110000 724050 13743 19800820 79.3 24 70.3 24 1014.5 24 1012.1 24 9.3 24 8.1 24 12.8 999.9 86.0* 72.9 0.00D 999.9 000000 724050 13743 19800821 75.3 23 67.2 23 1015.2 23 1012.8 23 7.7 23 7.9 23 11.8 999.9 86.0 72.0 0.00D 999.9 100000 724050 13743 19800822 72.7 23 64.6 23 1015.6 23 1013.2 23 12.1 23 7.9 23 9.9 999.9 79.0* 65.8 0.00D 999.9 000000 724050 13743 19800823 76.0 23 66.4 23 1019.4 23 1017.0 23 11.8 23 7.1 23 9.9 999.9 86.0* 66.0 0.00D 999.9 000000 724050 13743 19800824 79.3 24 66.9 24 1020.6 24 1018.2 24 14.3 24 6.8 24 8.9 999.9 90.0 68.9 0.00D 999.9 010000 724050 13743 19800825 81.6 23 64.7 23 1020.8 23 1018.4 23 13.0 23 6.0 23 8.0 999.9 93.0 69.1 0.00D 999.9 000000 724050 13743 19800826 82.4 24 66.4 24 1021.0 24 1018.6 24 10.5 24 6.0 24 9.9 999.9 93.9* 70.0 0.00G 999.9 000000 724050 13743 19800827 84.1 24 66.3 24 1020.8 24 1018.4 24 10.7 24 6.3 24 8.9 14.0 97.0* 71.1 0.00D 999.9 000000 724050 13743 19800828 85.3 24 69.4 24 1021.6 24 1019.2 24 8.5 24 6.1 24 11.8 18.8 97.0 72.0 0.00D 999.9 000000 724050 13743 19800829 85.2 24 71.6 24 1022.7 24 1020.3 24 5.0 24 5.2 24 11.8 999.9 97.0 73.0 0.00D 999.9 000000 724050 13743 19800830 85.1 24 69.9 24 1021.6 24 1019.2 24 11.1 24 9.7 24 14.0 999.9 96.1 75.9 0.00D 999.9 000000 724050 13743 19800831 85.1 23 72.4 23 1019.2 23 1016.8 23 15.4 23 11.5 23 15.0 21.0 96.1 75.9 0.00D 999.9 000000 724050 13743 19800901 86.2 22 71.6 22 1018.4 22 1016.0 22 11.2 22 7.4 22 9.9 999.9 98.1* 77.0 0.00C 999.9 000000 724050 13743 19800902 88.9 23 72.3 23 1017.2 23 1014.8 23 10.2 23 8.7 23 12.8 18.8 100.0* 77.0 0.00D 999.9 000000 724050 13743 19800903 85.3 23 65.9 23 1020.6 23 1018.1 23 11.8 23 8.7 23 14.0 999.9 100.9 77.0 0.00D 999.9 000000 724050 13743 19800904 82.2 23 66.1 23 1023.6 23 1021.2 23 12.1 23 6.4 22 10.9 999.9 91.9 72.9 0.00G 999.9 000000 724050 13743 19800905 81.5 22 72.2 22 1022.1 22 1019.7 22 10.0 22 7.1 22 10.9 999.9 93.0 73.0 0.00D 999.9 110000 724050 13743 19800906 82.0 22 71.4 22 1019.3 22 1016.9 22 7.5 22 6.6 22 999.9 999.9 93.9* 74.8 0.00G 999.9 100010 724050 13743 19800907 80.2 24 64.7 24 1016.6 24 1014.2 24 10.7 24 9.3 24 15.0 21.0 93.9 72.0 0.04G 999.9 110010 724050 13743 19800908 78.2 22 55.6 22 1019.6 22 1017.2 22 14.6 22 7.1 22 9.9 999.9 87.1 68.9 0.00D 999.9 000000 724050 13743 19800909 78.7 24 60.7 24 1019.2 24 1016.8 24 14.0 24 7.7 24 15.0 22.9 91.9* 66.9 0.00D 999.9 000000 724050 13743 19800910 78.6 19 61.1 19 1015.9 19 1013.5 19 12.5 19 10.9 19 16.9 22.9 91.9 66.9 0.31G 999.9 110010 724050 13743 19800911 71.3 24 50.4 24 1018.8 24 1016.4 24 17.6 24 8.2 24 14.0 15.9 84.0* 59.0 0.00D 999.9 000000 724050 13743 19800912 75.0 23 57.4 23 1019.0 23 1016.6 23 13.7 23 5.5 23 10.9 999.9 90.0* 59.0 0.00D 999.9 000000 724050 13743 19800913 78.4 24 64.2 24 1021.6 24 1019.2 24 11.5 24 8.4 24 15.0 999.9 91.9* 62.1 0.00C 999.9 000000 724050 13743 19800914 79.7 24 68.2 24 1016.6 24 1014.2 24 8.1 24 8.8 24 37.9 55.9 93.9* 68.0 0.00D 999.9 110010 724050 13743 19800915 77.8 23 67.0 23 1011.0 23 1008.6 23 9.2 23 9.1 23 15.0 21.0 93.9 72.0 0.51G 999.9 000010 724050 13743 19800916 70.0 23 58.1 23 1017.6 23 1015.3 23 13.1 23 8.1 21 14.0 999.9 84.0 61.0 0.00G 999.9 000000 724050 13743 19800917 78.0 20 69.4 20 1014.4 20 1012.0 20 9.9 20 9.4 20 14.0 18.8 91.0* 61.0 0.00D 999.9 000000 724050 13743 19800918 77.5 22 69.7 22 1016.3 22 1013.9 22 7.5 22 7.2 21 10.9 999.9 91.0 70.9 0.08G 999.9 110000 724050 13743 19800919 75.2 23 63.4 22 1023.7 23 1021.3 23 10.0 23 6.0 23 10.9 999.9 84.0* 68.9 0.02G 999.9 000000 724050 13743 19800920 75.1 21 69.0 21 1023.3 21 1020.9 21 5.4 21 8.7 21 12.8 18.8 86.0 69.1 0.00G 999.9 100000 724050 13743 19800921 80.3 24 71.8 23 1017.5 24 1015.1 24 7.0 24 8.1 24 11.8 999.9 91.9* 70.0 0.00D 999.9 110000 724050 13743 19800922 83.2 22 72.3 22 1014.2 22 1011.8 22 11.8 22 6.9 22 10.9 999.9 93.0* 72.0 0.00G 999.9 110000 724050 13743 19800923 83.3 23 71.0 23 1011.3 23 1008.9 23 13.9 23 9.8 23 15.0 18.8 95.0 73.0 0.00D 999.9 010000 724050 13743 19800924 72.8 20 54.2 20 1018.8 20 1016.4 20 14.9 20 9.0 20 12.8 999.9 90.0 66.9 0.00G 999.9 000000 724050 13743 19800925 71.6 24 68.1 24 1018.2 24 1015.8 24 8.3 24 5.1 24 8.9 999.9 75.9 66.9 0.55G 999.9 110000 724050 13743 19800926 73.0 23 60.4 23 1016.8 23 1014.4 23 12.4 23 9.9 23 19.8 30.9 75.9 69.1 0.39G 999.9 110000 724050 13743 19800927 61.7 23 43.7 23 1025.3 23 1022.9 23 21.0 23 8.6 23 12.8 22.9 77.0 52.0 0.00G 999.9 000000 724050 13743 19800928 63.7 22 49.7 22 1024.4 22 1022.0 22 18.9 22 6.1 22 9.9 999.9 77.0* 52.0 0.00C 999.9 000000 724050 13743 19800929 66.6 24 55.5 24 1023.5 24 1021.1 24 14.8 24 6.6 24 11.8 15.0 79.0* 52.0 0.00D 999.9 000000 724050 13743 19800930 68.0 23 62.9 23 1019.1 23 1016.7 23 7.9 22 9.9 23 12.8 999.9 79.0 55.9 0.00G 999.9 110000 724050 13743 19801001 71.1 23 62.8 23 1012.6 23 1010.2 23 9.7 23 8.4 23 10.9 999.9 79.0* 62.1 0.00G 999.9 000000 724050 13743 19801002 72.1 23 67.2 23 1008.9 23 1006.5 23 7.9 23 7.4 23 11.8 999.9 82.9* 64.0 0.00G 999.9 110000 724050 13743 19801003 61.6 22 57.9 22 1010.5 22 1008.1 21 9.4 22 7.4 22 11.8 999.9 66.0* 59.9 0.31G 999.9 110000 724050 13743 19801004 59.3 23 51.2 23 1010.5 23 1008.1 23 14.4 23 6.8 23 11.8 999.9 66.9 52.9 0.28G 999.9 100000 724050 13743 19801005 59.1 23 43.4 23 1021.3 23 1018.9 23 15.1 23 7.7 23 10.9 999.9 66.9 53.1 0.00G 999.9 010000 724050 13743 19801006 59.1 24 40.7 24 1024.6 24 1022.2 24 15.8 24 9.4 23 11.8 999.9 66.9* 50.0 0.00G 999.9 010000 724050 13743 19801007 58.2 24 42.8 24 1020.5 24 1018.1 24 16.0 24 5.4 24 11.8 999.9 70.0* 48.9 0.00D 999.9 010000 724050 13743 19801008 62.5 23 50.8 23 1014.9 23 1012.5 23 12.2 23 6.0 23 12.8 999.9 75.9* 48.9 0.00G 999.9 000000 724050 13743 19801009 68.2 24 59.3 24 1011.1 24 1008.7 24 8.2 24 6.5 24 8.9 999.9 84.9* 51.1 0.00G 999.9 100000 724050 13743 19801010 63.4 24 50.2 24 1016.7 24 1014.3 24 11.8 24 8.7 24 12.8 999.9 84.9 57.9 0.00G 999.9 000000 724050 13743 19801011 63.3 24 56.3 24 1008.5 24 1006.1 24 9.0 24 5.1 24 8.9 999.9 75.0 56.8 0.00D 999.9 110000 724050 13743 19801012 59.6 23 38.4 23 1011.0 23 1008.6 23 18.1 23 12.8 23 19.8 29.9 75.9 50.9 0.00G 999.9 000000 724050 13743 19801013 54.6 23 34.3 23 1018.6 23 1016.2 23 19.9 22 12.0 23 22.0 28.9 64.9 46.9 0.00D 999.9 000000 724050 13743 19801014 51.8 23 33.8 23 1023.3 23 1020.9 23 17.7 23 8.8 23 12.8 21.0 64.0* 41.0 0.00G 999.9 000000 724050 13743 19801015 59.8 24 44.1 24 1022.2 24 1019.8 24 11.9 24 5.5 24 8.9 999.9 73.9* 41.0 0.00D 999.9 000000 724050 13743 19801016 63.6 23 53.5 23 1023.1 23 1020.7 23 8.3 23 5.0 23 8.9 999.9 79.0* 52.0 0.00D 999.9 100000 724050 13743 19801017 68.3 24 58.5 24 1022.2 24 1019.7 24 9.4 24 8.4 24 17.9 26.8 82.9* 52.0 0.00G 999.9 100000 724050 13743 19801018 73.1 23 65.9 23 1014.4 23 1012.0 23 10.8 23 13.3 23 23.9 32.8 82.9 57.0 0.01C 999.9 110010 724050 13743 19801019 65.7 24 57.1 24 1010.1 24 1007.7 24 13.2 24 6.3 24 11.8 999.9 81.0 62.1* 0.31G 999.9 110010 724050 13743 19801020 59.0 23 42.1 23 1012.1 23 1009.7 23 15.2 22 10.3 23 19.8 32.8 72.0 48.9 0.02G 999.9 010010 724050 13743 19801021 61.0 23 44.3 23 1014.6 23 1012.1 23 14.6 23 9.9 23 17.9 21.0 75.9* 48.9 0.00G 999.9 000000 724050 13743 19801022 61.9 22 46.1 22 1019.0 22 1016.6 22 15.0 22 6.4 22 11.8 999.9 75.9 50.0 0.00D 999.9 000000 724050 13743 19801023 53.7 23 36.3 23 1031.5 23 1029.1 23 16.3 23 9.0 23 16.9 999.9 70.0 46.9 0.00D 999.9 000000 724050 13743 19801024 53.1 21 39.9 21 1032.2 21 1029.8 21 15.3 21 9.1 21 15.0 19.8 62.1 45.9 0.00D 999.9 000000 724050 13743 19801025 57.6 24 52.8 24 1007.5 24 1005.1 24 8.8 23 13.6 24 28.0 35.9 63.0 46.0 1.50G 999.9 110000 724050 13743 19801026 49.1 24 27.6 24 1011.0 24 1008.6 24 17.3 24 16.1 24 24.9 35.9 63.0 45.0 0.12G 999.9 000000 724050 13743 19801027 47.8 23 29.1 23 1023.5 23 1021.1 23 17.2 22 10.5 23 22.9 999.9 55.9 39.9 0.00G 999.9 000000 724050 13743 19801028 57.0 23 48.8 23 1014.2 23 1011.8 23 8.4 23 9.1 23 15.0 18.8 64.0* 39.9 0.02G 999.9 010000 724050 13743 19801029 52.9 22 36.4 22 1020.7 22 1018.4 22 13.5 22 12.2 22 17.9 22.0 64.0 45.0 0.00D 999.9 010000 724050 13743 19801030 50.4 23 34.6 23 1026.0 23 1023.6 23 13.0 23 5.3 23 8.0 999.9 59.0* 43.0 0.00G 999.9 000000 724050 13743 19801031 49.4 24 39.2 24 1020.0 24 1017.6 24 11.5 24 7.2 24 12.8 999.9 66.0* 37.9 0.00D 999.9 100000 724050 13743 19801101 56.9 24 35.3 24 1013.5 24 1011.1 24 12.8 24 10.3 24 22.0 24.9 69.1* 37.9 0.00D 999.9 000000 724050 13743 19801102 49.7 24 29.3 24 1023.6 24 1021.2 24 17.0 24 11.6 24 18.8 19.8 69.1 43.0 0.00D 999.9 000000 724050 13743 19801103 48.3 23 36.8 23 1029.1 23 1026.7 23 10.0 22 7.1 23 14.0 999.9 61.0* 36.9 0.00G 999.9 100000 724050 13743 19801104 55.3 24 49.8 24 1018.7 24 1016.3 24 7.2 24 11.2 24 15.9 999.9 62.1 53.1* 0.00G 999.9 110010 724050 13743 19801105 55.2 23 43.7 23 1010.8 23 1008.4 23 10.9 23 8.9 22 15.9 999.9 60.1 46.9 0.35G 999.9 110000 724050 13743 19801106 49.0 24 31.5 24 1016.4 24 1014.0 24 15.6 24 7.7 24 13.0 18.8 61.0 36.9 0.00G 999.9 000000 724050 13743 19801107 56.9 21 40.6 21 1011.1 21 1008.7 21 14.9 21 10.1 21 16.9 23.9 72.0* 37.0 0.00G 999.9 000000 724050 13743 19801108 64.9 24 49.3 23 1006.4 24 1004.0 24 12.6 24 11.6 24 18.8 21.0 75.9 46.9 0.00C 999.9 000000 724050 13743 19801109 57.4 23 48.5 23 1011.4 23 1009.0 23 10.3 23 7.6 23 15.9 24.9 75.9 48.9 0.00D 999.9 110010 724050 13743 19801110 55.7 22 43.6 22 1009.8 22 1007.4 22 12.7 22 14.3 22 29.9 37.9 72.0 48.0* 0.16G 999.9 100000 724050 13743 19801111 43.4 24 21.9 24 1018.7 24 1016.3 24 19.5 24 18.1 24 24.9 37.9 48.9* 38.8 0.00G 999.9 000000 724050 13743 19801112 44.2 24 24.0 24 1021.7 24 1019.2 24 19.9 24 18.5 24 23.9 31.9 55.0* 36.9 0.00D 999.9 000000 724050 13743 19801113 50.4 24 29.3 24 1025.2 24 1022.8 24 18.0 24 8.4 24 12.8 999.9 62.1* 37.0 0.00G 999.9 000000 724050 13743 19801114 54.3 24 37.9 24 1019.3 24 1016.8 24 12.4 24 7.4 24 10.9 999.9 64.9* 41.0 0.00D 999.9 000000 724050 13743 19801115 55.6 24 45.4 24 1019.1 24 1016.7 24 6.7 24 6.9 24 12.8 999.9 64.9 45.0 0.00G 999.9 110000 724050 13743 19801116 45.2 23 36.0 23 1023.6 23 1021.2 23 9.9 23 11.7 23 18.8 22.0 57.9 37.9 0.04G 999.9 111000 724050 13743 19801117 38.2 24 26.0 24 1027.9 24 1025.5 24 13.1 24 7.8 24 15.0 999.9 51.1 34.0 0.02D 999.9 111000 724050 13743 19801118 39.9 24 35.1 24 1011.2 24 1008.8 24 9.3 24 13.7 24 22.9 30.9 46.0 34.0 0.91G 999.9 110000 724050 13743 19801119 41.0 23 27.9 23 1022.8 23 1020.4 23 16.5 23 11.0 23 17.9 24.9 48.9* 34.9 0.04G 999.9 000000 724050 13743 19801120 41.2 24 27.5 24 1028.5 24 1026.1 24 14.1 24 6.4 24 9.9 999.9 51.1* 32.9 0.00G 999.9 000000 724050 13743 19801121 42.7 23 31.8 23 1024.2 23 1021.8 23 9.9 22 6.8 23 15.9 26.8 55.9* 32.9 0.00D 999.9 100000 724050 13743 19801122 46.7 24 27.2 24 1027.2 24 1024.8 24 15.9 24 9.5 24 15.0 21.0 55.9 33.1 0.00C 999.9 000000 724050 13743 19801123 43.5 23 31.9 23 1030.7 23 1028.3 23 8.3 23 5.2 23 9.9 999.9 55.0 34.9 0.00D 999.9 110000 724050 13743 19801124 49.1 20 42.8 20 1022.9 20 1020.5 20 6.0 20 4.9 19 9.9 999.9 53.1 35.1 0.12G 999.9 110000 724050 13743 19801125 49.4 23 40.4 23 1020.2 23 1017.8 23 12.1 23 10.5 23 17.9 24.9 55.0* 44.1* 0.63G 999.9 100000 724050 13743 19801126 42.1 24 24.3 24 1030.7 24 1028.3 24 17.4 24 10.1 24 15.0 19.8 55.0 34.9 0.00G 999.9 000000 724050 13743 19801127 42.7 23 32.3 23 1025.9 23 1023.5 23 13.2 23 8.2 23 14.0 999.9 52.0 35.1 0.04D 999.9 111000 724050 13743 19801128 44.5 23 43.0 23 1008.7 23 1006.3 23 4.3 23 8.2 23 11.8 999.9 46.9 39.0 0.31G 999.9 110000 724050 13743 19801129 41.1 23 32.5 23 1006.0 23 1003.6 23 12.8 22 9.8 23 17.9 22.9 46.9 36.9 0.24G 999.9 010000 724050 13743 19801130 47.4 22 30.1 22 1017.4 22 1015.0 22 18.4 22 9.7 22 15.0 28.0 57.0* 37.0 0.00G 999.9 000000 724050 13743 19801201 52.6 24 37.5 24 1018.2 24 1015.8 24 17.5 22 9.2 24 16.9 999.9 66.0* 39.9 0.00G 999.9 000000 724050 13743 19801202 56.4 24 38.9 23 1015.3 24 1012.9 24 15.6 23 10.3 24 17.9 25.8 69.1* 43.0 0.00G 999.9 000000 724050 13743 19801203 44.7 23 22.2 23 1019.2 23 1016.8 23 18.7 23 19.9 23 30.9 42.9 69.1 36.0 0.04G 999.9 010000 724050 13743 19801204 38.1 24 12.3 24 1031.0 24 1028.6 24 19.9 24 13.0 24 19.8 28.0 46.0 32.9 0.00G 999.9 000000 724050 13743 19801205 40.3 22 15.9 22 1027.4 22 1025.0 22 17.9 22 7.2 22 10.9 999.9 51.1* 32.9 0.00D 999.9 000000 724050 13743 19801206 45.0 24 26.1 24 1025.2 24 1022.8 24 14.9 24 6.8 24 10.9 999.9 59.0 33.1 0.00D 999.9 000000 724050 13743 19801207 53.6 21 42.0 21 1024.1 21 1021.7 21 9.5 20 5.6 21 8.9 999.9 60.1 35.1 0.00D 999.9 010000 724050 13743 19801208 55.9 20 47.5 20 1018.8 20 1016.3 20 7.8 20 7.1 20 10.9 999.9 70.0 45.9 0.00D 999.9 100000 724050 13743 19801209 59.7 24 50.2 24 1011.7 24 1009.3 24 9.8 24 7.0 24 15.0 999.9 71.1 46.0 0.04G 999.9 110000 724050 13743 19801210 53.4 23 42.9 23 1013.4 23 1011.0 23 14.0 23 10.3 23 14.0 19.8 64.9* 48.0* 0.24G 999.9 000000 724050 13743 19801211 41.1 23 27.5 23 1020.8 23 1018.4 23 15.5 23 8.1 23 15.0 21.0 60.1 37.9 0.00G 999.9 000000 724050 13743 19801212 41.2 23 31.4 23 1021.1 23 1018.7 23 12.4 23 7.6 23 14.0 999.9 50.0* 34.9 0.00G 999.9 100000 724050 13743 19801213 49.0 24 36.2 24 1013.3 24 1010.9 24 13.9 23 8.6 24 15.0 23.9 57.9* 35.1 0.00D 999.9 000000 724050 13743 19801214 41.5 24 23.3 24 1017.5 24 1015.1 24 17.3 24 12.3 23 24.9 35.0 57.9 28.9 0.00D 999.9 000000 724050 13743 19801215 35.4 23 20.1 23 1022.2 23 1019.8 23 17.0 23 8.6 23 16.9 999.9 54.0 28.9 0.00D 999.9 000000 724050 13743 19801216 39.7 24 35.4 24 1011.2 24 1008.8 24 6.2 24 6.9 24 10.9 999.9 45.0 30.0 0.02G 999.9 111000 724050 13743 19801217 36.3 22 23.6 22 1014.9 22 1012.5 22 12.4 22 12.4 22 17.9 23.9 45.0 28.9 0.01G 999.9 100000 724050 13743 19801218 35.5 23 23.2 23 1016.6 23 1014.2 23 12.8 22 6.9 23 12.8 999.9 50.0* 27.0 0.00G 999.9 000000 724050 13743 19801219 44.8 23 30.8 22 1017.6 23 1015.2 23 14.5 23 10.6 23 22.9 35.0 51.1 28.0 0.00G 999.9 000000 724050 13743 19801220 24.0 23 4.6 23 1034.7 23 1032.3 23 16.9 23 16.2 23 21.0 26.8 33.1* 16.9 0.00G 999.9 000000 724050 13743 19801221 22.3 24 5.4 24 1040.4 24 1038.0 24 16.3 24 9.7 24 14.0 17.9 31.1* 16.0 0.00D 999.9 000000 724050 13743 19801222 25.7 23 9.9 23 1039.3 23 1036.9 23 11.1 23 5.2 23 7.0 999.9 34.0* 16.0 0.00G 999.9 000000 724050 13743 19801223 34.0 24 25.8 24 1027.3 24 1024.9 24 8.4 24 4.3 24 7.0 999.9 41.0* 18.0 0.08G 999.9 111000 724050 13743 19801224 33.5 24 32.4 24 1015.3 24 1012.9 24 1.9 24 6.0 24 9.9 999.9 42.1 29.8 0.08G 999.9 111000 724050 13743 19801225 21.2 22 5.6 22 1025.7 22 1023.2 22 21.2 22 18.1 22 25.8 38.9 39.9 11.8 0.16G 999.9 100000 724050 13743 19801226 19.4 22 5.1 22 1032.3 22 1029.8 22 14.6 22 8.1 22 14.0 999.9 29.1* 11.8 0.00G 999.9 000000 724050 13743 19801227 27.4 23 14.8 23 1032.4 23 1029.9 23 12.6 23 7.7 23 12.8 999.9 34.0* 12.0 0.00D 999.9 000000 724050 13743 19801228 36.6 23 27.5 23 1031.5 23 1029.1 23 6.9 23 12.0 23 15.0 26.8 39.9 21.0 0.00G 999.9 111000 724050 13743 19801229 44.3 24 40.5 24 1019.9 24 1017.5 24 4.0 24 11.3 24 15.9 999.9 54.0* 34.0 0.00G 999.9 110000 724050 13743 19801230 44.8 24 35.3 24 1013.0 24 1010.6 24 13.3 24 12.1 24 19.8 24.9 54.0 39.9 0.00G 999.9 000000 724050 13743 19801231 33.3 24 16.6 24 1016.9 24 1014.5 24 18.5 24 7.4 24 11.8 999.9 52.0 27.0 0.00D 999.9 001000 fluids-1.0.22/tests/gsod/1956/0000755000175000017500000000000014302004506015104 5ustar nileshnileshfluids-1.0.22/tests/gsod/1956/724050-13743.op0000644000175000017500000014350514302004506016674 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19560101 32.3 24 18.0 24 1018.5 24 1017.5 24 9.2 24 4.9 24 12.0 999.9 42.4* 23.4* 0.00I 999.9 000000 724050 13743 19560102 31.4 24 21.2 24 1029.2 24 1028.2 24 7.7 24 5.3 24 11.1 999.9 41.4* 22.5* 0.00I 999.9 000000 724050 13743 19560103 38.7 24 31.9 24 1019.8 24 1018.8 24 8.0 24 1.0 24 8.0 999.9 44.4* 34.3* 0.00I 999.9 000000 724050 13743 19560104 38.4 24 29.7 24 1014.6 24 1013.5 24 5.0 24 5.2 24 15.9 999.9 44.4* 30.4* 0.00I 999.9 000000 724050 13743 19560105 38.8 24 24.8 24 1014.5 24 1013.4 24 8.5 24 13.3 24 16.9 999.9 47.3* 32.4* 0.00I 999.9 000000 724050 13743 19560106 37.3 24 24.8 24 1016.2 24 1015.2 24 7.3 24 4.0 24 12.0 999.9 46.4* 30.4* 0.00I 999.9 000000 724050 13743 19560107 32.2 24 26.0 24 1014.7 24 1013.6 24 3.5 24 6.9 24 16.9 999.9 38.3* 28.4* 99.99 999.9 101000 724050 13743 19560108 27.9 24 13.6 24 1015.2 24 1014.2 24 14.4 24 18.2 24 22.9 999.9 33.4* 21.4* 0.00I 999.9 000000 724050 13743 19560109 27.0 24 19.7 24 1005.7 24 1004.7 24 8.9 24 18.8 24 25.1 999.9 31.3* 24.4* 99.99 999.9 111000 724050 13743 19560110 39.2 24 36.3 24 998.1 24 997.1 24 5.7 24 14.0 24 18.1 999.9 49.3* 31.3* 99.99 999.9 111000 724050 13743 19560111 44.7 24 40.7 24 1003.0 24 1002.0 24 7.0 24 12.2 24 15.0 999.9 48.4* 42.4* 99.99 999.9 010000 724050 13743 19560112 41.1 24 37.9 24 1006.1 24 1005.1 24 7.5 24 12.3 24 16.9 999.9 42.4* 39.4* 99.99 999.9 110000 724050 13743 19560113 38.7 24 30.3 24 1009.5 24 1008.5 24 10.8 24 16.8 24 20.0 999.9 43.3* 36.3* 99.99 999.9 011000 724050 13743 19560114 36.5 24 18.6 24 1009.4 24 1008.4 24 14.9 24 18.8 24 23.9 999.9 44.4* 32.4* 0.00I 999.9 000000 724050 13743 19560115 38.9 24 16.9 24 1005.9 24 1004.9 24 14.7 24 11.6 24 18.1 999.9 48.4* 32.4* 0.00I 999.9 000000 724050 13743 19560116 38.1 24 23.6 24 1001.3 24 1000.3 24 4.5 24 2.4 24 9.9 999.9 42.4* 33.4* 99.99 999.9 001000 724050 13743 19560117 34.3 24 26.9 24 1005.3 24 1004.3 24 6.1 24 15.5 24 22.9 999.9 39.4* 31.3* 99.99 999.9 101000 724050 13743 19560118 35.2 24 22.6 24 1019.4 24 1018.4 24 11.4 24 12.9 24 15.9 999.9 43.3* 30.4* 0.00I 999.9 000000 724050 13743 19560119 32.3 24 25.6 24 1018.0 24 1016.9 24 5.7 24 3.9 24 8.9 999.9 37.4* 30.4* 99.99 999.9 101000 724050 13743 19560120 32.6 24 28.6 24 1007.7 24 1006.7 24 4.5 24 4.9 24 9.9 999.9 38.3* 29.3* 99.99 999.9 111000 724050 13743 19560121 32.1 24 21.5 24 1018.7 24 1017.7 24 7.5 24 8.5 24 15.9 999.9 37.4* 25.3* 0.00I 999.9 000000 724050 13743 19560122 35.8 24 24.9 24 1023.0 24 1021.9 24 6.5 24 3.3 24 9.9 999.9 46.4* 29.3* 0.00I 999.9 000000 724050 13743 19560123 35.3 24 22.0 24 1017.0 24 1016.0 24 8.7 24 10.4 24 21.0 999.9 40.3* 28.4* 0.00I 999.9 000000 724050 13743 19560124 26.7 24 13.0 23 1016.6 24 1015.6 24 13.1 24 11.6 24 15.0 999.9 31.3* 21.4* 0.00I 999.9 000000 724050 13743 19560125 28.1 24 15.6 24 1019.7 24 1018.7 24 10.3 24 5.9 24 12.0 999.9 34.3* 23.4* 0.00I 999.9 000000 724050 13743 19560126 28.4 24 20.2 24 1021.0 24 1019.9 24 9.0 24 9.2 24 18.1 999.9 34.3* 23.4* 99.99 999.9 001000 724050 13743 19560127 28.8 24 16.1 24 1028.8 24 1027.7 24 8.2 24 9.3 24 15.0 999.9 34.3* 24.4* 0.00I 999.9 000000 724050 13743 19560128 28.8 24 18.2 24 1031.7 24 1030.7 24 5.1 24 2.4 24 8.9 999.9 40.3* 20.3* 0.00I 999.9 000000 724050 13743 19560129 37.3 24 31.6 24 1021.5 24 1020.5 24 4.6 24 8.7 24 9.9 999.9 45.3* 33.4* 99.99 999.9 110000 724050 13743 19560130 48.4 24 43.7 24 1010.3 24 1009.3 24 4.5 24 6.4 24 21.0 999.9 63.3* 41.4* 99.99 999.9 110000 724050 13743 19560131 35.0 24 20.2 24 1029.8 24 1028.7 24 12.8 24 15.0 24 23.9 999.9 40.3* 30.4* 0.00I 999.9 000000 724050 13743 19560201 32.4 24 19.2 24 1042.0 24 1041.0 24 9.2 24 4.1 24 9.9 999.9 41.4* 24.4* 0.00I 999.9 000000 724050 13743 19560202 35.4 24 30.1 24 1029.6 24 1028.6 24 4.9 24 4.8 24 9.9 999.9 44.4* 31.3* 99.99 999.9 111000 724050 13743 19560203 42.6 24 37.0 24 1023.6 24 1022.6 24 4.7 24 7.1 24 12.0 999.9 44.4* 40.3* 99.99 999.9 110000 724050 13743 19560204 35.0 24 27.3 24 1026.3 24 1025.2 24 5.1 24 6.7 24 9.9 999.9 39.4* 32.4* 99.99 999.9 110000 724050 13743 19560205 40.3 24 31.3 24 1017.0 24 1016.0 24 5.5 24 5.9 24 13.0 999.9 51.3* 34.3* 0.00I 999.9 100000 724050 13743 19560206 36.4 24 30.4 24 1023.1 24 1022.1 24 4.9 24 3.9 24 9.9 999.9 45.3* 33.4* 99.99 999.9 110000 724050 13743 19560207 41.9 24 32.5 24 1014.9 24 1013.9 24 9.6 24 11.4 24 21.0 999.9 52.3* 35.4* 99.99 999.9 110000 724050 13743 19560208 43.0 24 34.3 24 1027.2 24 1026.2 24 8.0 24 4.3 24 15.9 999.9 58.3* 32.4* 0.00I 999.9 000000 724050 13743 19560209 47.3 24 39.5 24 1018.1 24 1017.1 24 5.3 24 2.1 24 8.0 999.9 60.3* 39.4* 99.99 999.9 010000 724050 13743 19560210 47.7 24 39.3 24 1015.5 24 1014.5 24 6.9 24 5.5 24 13.0 999.9 57.4* 39.4* 0.00I 999.9 000000 724050 13743 19560211 43.5 24 38.2 24 1011.4 24 1010.4 24 4.5 24 8.0 24 11.1 999.9 50.4* 40.3* 99.99 999.9 110000 724050 13743 19560212 43.4 24 38.3 24 1008.8 24 1007.8 24 7.3 24 3.7 24 9.9 999.9 52.3* 38.3* 99.99 999.9 110000 724050 13743 19560213 42.0 24 31.4 24 1016.7 24 1015.7 24 10.4 24 5.0 24 9.9 999.9 48.4* 35.4* 99.99 999.9 001000 724050 13743 19560214 41.3 24 30.2 24 1021.1 24 1020.1 24 9.8 24 4.4 24 15.9 999.9 54.3* 30.4* 99.99 999.9 010000 724050 13743 19560215 52.5 24 42.8 24 1014.2 24 1013.2 24 9.4 24 5.4 24 12.0 999.9 61.3* 45.3* 99.99 999.9 010000 724050 13743 19560216 43.1 24 31.2 23 1023.4 24 1022.3 24 11.7 24 8.4 24 14.0 999.9 54.3* 34.3* 0.00I 999.9 000000 724050 13743 19560217 38.1 24 30.0 24 1019.7 24 1018.7 24 7.2 24 6.4 24 8.9 999.9 42.4* 35.4* 99.99 999.9 111000 724050 13743 19560218 46.3 24 41.4 24 1006.8 24 1005.8 24 6.3 24 9.6 24 28.9 999.9 63.3* 39.4* 99.99 999.9 110000 724050 13743 19560219 45.1 24 31.5 24 1017.8 24 1016.7 24 9.6 24 8.4 24 13.0 999.9 52.3* 40.3* 0.00I 999.9 000000 724050 13743 19560220 45.8 24 35.2 24 1011.7 24 1010.7 24 7.4 24 10.7 24 21.0 999.9 50.4* 43.3* 99.99 999.9 110000 724050 13743 19560221 36.4 24 20.5 24 1017.2 24 1016.2 24 14.9 24 11.8 24 23.9 999.9 40.3* 33.4* 99.99 999.9 001000 724050 13743 19560222 28.3 24 9.1 24 1018.9 24 1017.9 24 14.9 24 14.9 24 20.0 999.9 35.4* 21.4* 0.00I 999.9 000000 724050 13743 19560223 31.1 24 12.5 24 1020.5 24 1019.4 24 12.7 24 12.4 24 20.0 999.9 39.4* 25.3* 0.00I 999.9 000000 724050 13743 19560224 33.2 24 18.8 24 1022.5 24 1021.5 24 10.8 24 6.7 24 13.0 999.9 44.4* 24.4* 99.99 999.9 111000 724050 13743 19560225 53.8 24 47.3 24 999.4 24 998.4 24 9.1 24 14.0 24 29.9 999.9 65.3* 41.4* 99.99 999.9 010000 724050 13743 19560226 46.3 24 29.8 24 1010.2 24 1009.2 24 14.9 24 14.1 24 20.0 999.9 55.4* 40.3* 0.00I 999.9 000000 724050 13743 19560227 50.5 24 31.2 24 1010.2 24 1009.2 24 13.7 24 10.5 24 15.9 999.9 61.3* 44.4* 0.00I 999.9 000000 724050 13743 19560228 48.5 24 34.9 24 1000.6 24 999.6 24 12.5 24 15.0 24 26.0 999.9 56.3* 37.4* 99.99 999.9 010000 724050 13743 19560229 33.0 24 14.9 24 1020.1 24 1019.0 24 13.0 24 13.8 24 22.0 999.9 40.3* 26.4* 0.00I 999.9 000000 724050 13743 19560301 39.4 24 23.3 24 1023.7 24 1022.6 24 9.4 24 4.6 24 14.0 999.9 59.4* 26.4* 0.00I 999.9 000000 724050 13743 19560302 53.6 24 38.8 24 1009.1 24 1008.0 24 11.5 24 13.2 24 21.0 999.9 61.3* 49.3* 99.99 999.9 010010 724050 13743 19560303 52.0 24 33.8 24 1009.9 24 1008.9 24 14.5 24 5.9 24 12.0 999.9 65.3* 39.4* 0.00I 999.9 000000 724050 13743 19560304 50.4 24 34.6 24 1012.1 24 1011.1 24 14.0 24 12.2 24 21.0 999.9 60.3* 41.4* 99.99 999.9 010000 724050 13743 19560305 52.5 24 28.0 24 1015.7 24 1014.7 24 12.2 24 6.8 24 14.0 999.9 72.3* 40.3* 0.00I 999.9 000000 724050 13743 19560306 57.8 24 39.4 24 1008.7 24 1007.7 24 7.8 24 9.4 24 14.0 999.9 64.4* 52.3* 99.99 999.9 010000 724050 13743 19560307 50.6 24 46.2 24 1004.8 24 1003.8 24 2.8 24 4.6 24 14.0 999.9 63.3* 43.3* 99.99 999.9 110000 724050 13743 19560308 54.5 24 46.9 24 999.7 24 998.7 24 6.3 24 10.3 24 26.0 999.9 69.3* 40.3* 99.99 999.9 110000 724050 13743 19560309 41.2 24 18.8 24 1020.0 24 1019.0 24 14.9 24 9.7 24 14.0 999.9 55.4* 32.4* 0.00I 999.9 000000 724050 13743 19560310 52.6 24 30.7 24 1024.1 24 1023.1 24 13.1 24 7.1 24 14.0 999.9 65.3* 40.3* 0.00I 999.9 000000 724050 13743 19560311 54.5 24 45.6 24 1019.9 24 1018.9 24 9.4 24 7.5 24 12.0 999.9 65.3* 48.4* 99.99 999.9 110000 724050 13743 19560312 43.6 24 33.9 24 1023.7 24 1022.7 24 9.9 24 10.7 24 15.9 999.9 58.3* 36.3* 99.99 999.9 110000 724050 13743 19560313 36.1 24 34.4 24 1023.4 24 1022.4 24 3.5 24 7.2 24 9.9 999.9 37.4* 33.4* 99.99 999.9 111000 724050 13743 19560314 41.4 24 39.7 24 1014.4 24 1013.3 24 4.5 24 6.5 24 13.0 999.9 54.3* 37.4* 99.99 999.9 110000 724050 13743 19560315 41.6 24 27.8 24 1025.5 24 1024.5 24 11.5 24 9.1 24 16.9 999.9 50.4* 38.3* 0.00I 999.9 000000 724050 13743 19560316 36.9 24 32.0 24 1013.2 24 1012.2 24 4.6 24 5.6 24 12.0 999.9 39.4* 34.3* 99.99 999.9 111000 724050 13743 19560317 33.4 24 21.6 24 1011.0 24 1010.0 24 12.5 24 13.7 24 23.9 999.9 40.3* 27.3* 99.99 999.9 111000 724050 13743 19560318 34.3 24 26.4 24 1012.8 24 1011.8 24 7.2 24 8.6 24 14.0 999.9 36.3* 32.4* 99.99 999.9 111000 724050 13743 19560319 31.0 24 23.2 24 1016.0 24 1015.0 24 7.5 24 13.9 24 18.1 999.9 37.4* 27.3* 99.99 999.9 101000 724050 13743 19560320 33.6 24 13.9 24 1023.9 24 1022.9 24 14.9 24 10.2 24 15.0 999.9 42.4* 25.3* 0.00I 999.9 000000 724050 13743 19560321 39.5 24 13.7 24 1026.5 24 1025.5 24 14.9 24 8.0 24 11.1 999.9 49.3* 29.3* 0.00I 999.9 000000 724050 13743 19560322 42.9 24 23.6 24 1022.7 24 1021.6 24 8.1 24 2.9 24 9.9 999.9 60.3* 30.4* 0.00I 999.9 000000 724050 13743 19560323 50.4 24 32.1 24 1020.8 24 1019.8 24 14.1 24 6.1 24 13.0 999.9 60.3* 41.4* 0.00I 999.9 000000 724050 13743 19560324 45.8 24 31.4 24 1009.9 24 1008.9 24 11.5 24 12.6 24 22.0 999.9 54.3* 37.4* 99.99 999.9 010000 724050 13743 19560325 33.9 24 17.7 24 1021.3 24 1020.3 24 14.9 24 15.8 24 22.0 999.9 46.4* 26.4* 0.00I 999.9 000000 724050 13743 19560326 44.2 24 28.7 24 1011.2 24 1010.2 24 12.0 24 3.5 24 9.9 999.9 51.3* 39.4* 0.00I 999.9 000000 724050 13743 19560327 46.1 24 29.9 24 1016.3 24 1015.3 24 9.0 24 2.3 24 8.9 999.9 59.4* 33.4* 0.00I 999.9 000000 724050 13743 19560328 41.2 24 22.7 24 1024.6 24 1023.6 24 9.9 24 8.7 24 13.0 999.9 51.3* 36.3* 99.99 999.9 010000 724050 13743 19560329 36.8 24 32.0 24 1020.8 24 1019.8 24 5.5 24 3.6 24 8.9 999.9 39.4* 34.3* 99.99 999.9 111000 724050 13743 19560330 42.3 24 33.3 24 1009.0 24 1008.0 24 8.0 24 7.5 24 16.9 999.9 49.3* 36.3* 99.99 999.9 110000 724050 13743 19560331 43.4 24 28.1 24 1014.0 24 1013.0 24 12.7 24 10.0 24 18.1 999.9 50.4* 39.4* 0.00I 999.9 000000 724050 13743 19560401 45.2 24 26.6 24 1022.8 24 1021.8 24 10.7 24 3.7 24 13.0 999.9 61.3* 31.3* 0.00I 999.9 000000 724050 13743 19560402 52.9 24 38.9 24 1020.6 24 1019.6 24 9.5 24 2.4 24 9.9 999.9 64.4* 43.3* 0.00I 999.9 000000 724050 13743 19560403 58.2 24 52.9 24 1013.0 24 1012.0 24 4.1 24 3.4 24 8.9 999.9 72.3* 49.3* 99.99 999.9 110010 724050 13743 19560404 63.5 24 53.0 24 1005.2 24 1004.2 24 5.3 24 5.2 24 15.9 999.9 83.3* 51.3* 0.00I 999.9 100000 724050 13743 19560405 64.5 24 41.5 24 1010.7 24 1009.7 24 13.0 24 10.3 24 15.9 999.9 74.3* 55.4* 0.00I 999.9 000000 724050 13743 19560406 56.2 24 47.2 24 1011.6 24 1010.6 24 8.1 24 3.9 24 9.9 999.9 64.4* 50.4* 99.99 999.9 110000 724050 13743 19560407 50.7 24 49.2 24 1000.0 24 999.0 24 4.1 24 9.7 24 18.1 999.9 54.3* 43.3* 99.99 999.9 110000 724050 13743 19560408 41.7 24 29.2 24 1001.7 24 1000.7 24 11.8 24 15.6 24 22.9 999.9 45.3* 37.4* 99.99 999.9 110000 724050 13743 19560409 46.3 24 30.0 24 1011.4 24 1010.4 24 13.9 24 15.1 24 21.0 999.9 59.4* 37.4* 0.00I 999.9 000000 724050 13743 19560410 51.7 24 32.0 24 1015.3 24 1014.3 24 10.4 24 2.1 24 9.9 999.9 63.3* 40.3* 0.00I 999.9 000000 724050 13743 19560411 48.4 24 34.8 24 1010.9 24 1009.9 24 9.7 24 7.2 24 12.0 999.9 54.3* 43.3* 0.00I 999.9 000000 724050 13743 19560412 49.1 24 28.9 24 1010.7 24 1009.7 24 13.9 24 14.0 24 22.9 999.9 61.3* 40.3* 0.00I 999.9 000000 724050 13743 19560413 53.4 24 33.3 24 1009.9 24 1008.9 24 10.0 24 8.2 24 16.9 999.9 68.4* 42.4* 0.00I 999.9 000000 724050 13743 19560414 53.8 23 30.6 23 1010.9 23 1009.9 23 10.7 23 5.8 23 16.9 999.9 64.4* 41.4* 0.00I 999.9 000000 724050 13743 19560415 55.2 24 46.4 24 1000.1 24 999.1 24 8.0 24 8.8 24 16.9 999.9 64.4* 49.3* 99.99 999.9 110000 724050 13743 19560416 60.3 24 52.2 24 991.7 24 990.7 24 11.4 24 12.1 24 27.0 999.9 67.3* 49.3* 99.99 999.9 110000 724050 13743 19560417 49.6 24 31.2 24 1004.6 24 1003.6 24 14.3 24 10.7 24 18.1 999.9 54.3* 42.4* 0.00I 999.9 000000 724050 13743 19560418 46.3 24 30.6 24 1007.2 24 1006.2 24 12.2 24 7.3 24 15.9 999.9 54.3* 40.3* 99.99 999.9 010000 724050 13743 19560419 45.9 24 28.2 24 1012.8 24 1011.8 24 14.3 24 9.4 24 16.9 999.9 57.4* 39.4* 99.99 999.9 010000 724050 13743 19560420 49.1 24 30.5 24 1015.1 24 1014.1 24 11.3 24 7.7 24 19.0 999.9 54.3* 45.3* 99.99 999.9 010000 724050 13743 19560421 47.1 24 23.0 24 1020.2 24 1019.2 24 11.6 24 10.2 24 16.9 999.9 62.4* 34.3* 0.00I 999.9 000000 724050 13743 19560422 59.4 24 33.4 24 1009.8 24 1008.8 24 11.4 24 8.6 24 15.9 999.9 69.3* 52.3* 0.00I 999.9 000000 724050 13743 19560423 50.9 24 33.1 24 1013.1 24 1012.1 24 12.1 24 13.0 24 21.0 999.9 62.4* 45.3* 99.99 999.9 010000 724050 13743 19560424 43.0 24 31.6 24 1024.9 24 1023.9 24 8.9 24 3.5 24 14.0 999.9 50.4* 40.3* 99.99 999.9 110000 724050 13743 19560425 45.9 24 34.4 24 1030.3 24 1029.3 24 6.6 24 4.6 24 15.0 999.9 58.3* 36.3* 0.00I 999.9 100000 724050 13743 19560426 55.8 24 45.4 24 1021.7 24 1020.7 24 7.2 24 7.3 24 12.0 999.9 76.3* 46.4* 99.99 999.9 110000 724050 13743 19560427 60.4 24 48.9 24 1024.4 24 1023.4 24 5.3 24 6.5 24 15.9 999.9 72.3* 50.4* 0.00I 999.9 000000 724050 13743 19560428 71.0 24 59.3 24 1019.8 24 1018.8 24 7.4 24 9.3 24 19.0 999.9 87.3* 54.3* 0.00I 999.9 100000 724050 13743 19560429 77.4 24 62.4 24 1015.8 24 1014.8 24 13.5 24 11.9 24 18.1 999.9 87.3* 69.3* 0.00I 999.9 000000 724050 13743 19560430 74.9 24 54.4 24 1016.1 24 1015.0 24 13.2 24 8.7 24 20.0 999.9 80.2* 65.3* 0.00I 999.9 000000 724050 13743 19560501 57.9 24 39.7 24 1026.3 24 1025.3 24 12.4 24 8.0 24 14.0 999.9 67.3* 49.3* 0.00I 999.9 000000 724050 13743 19560502 52.8 24 44.7 24 1024.4 24 1023.4 24 8.9 24 3.9 24 7.0 999.9 60.3* 48.4* 99.99 999.9 110000 724050 13743 19560503 59.7 24 56.1 24 1016.1 24 1015.1 24 3.8 24 4.2 24 9.9 999.9 68.4* 53.4* 99.99 999.9 110000 724050 13743 19560504 64.8 24 58.7 24 1012.1 24 1011.1 24 4.3 24 5.7 24 23.9 999.9 81.3* 57.4* 0.00I 999.9 100000 724050 13743 19560505 57.2 24 38.1 24 1021.6 24 1020.6 24 12.6 24 6.5 24 15.9 999.9 68.4* 45.3* 0.00I 999.9 000000 724050 13743 19560506 67.0 24 53.4 24 1016.2 24 1015.2 24 11.2 24 8.6 24 13.0 999.9 88.3* 53.4* 0.00I 999.9 000000 724050 13743 19560507 67.5 24 59.7 24 1011.2 24 1010.2 24 6.2 24 5.4 24 15.0 999.9 81.3* 55.4* 99.99 999.9 110000 724050 13743 19560508 53.8 24 34.6 24 1024.6 24 1023.6 24 11.3 24 8.1 24 12.0 999.9 63.3* 45.3* 0.00I 999.9 100000 724050 13743 19560509 55.8 24 31.2 24 1029.3 24 1028.3 24 13.7 24 9.3 24 15.9 999.9 70.3* 45.3* 0.00I 999.9 000000 724050 13743 19560510 67.3 24 51.1 24 1019.1 24 1018.1 24 12.4 24 10.5 24 15.0 999.9 76.3* 62.4* 99.99 999.9 010000 724050 13743 19560511 66.3 24 55.1 24 1024.6 24 1023.6 24 8.0 24 7.0 24 15.0 999.9 74.3* 60.3* 99.99 999.9 010000 724050 13743 19560512 65.4 24 57.2 24 1019.0 24 1017.9 24 6.0 24 7.1 24 9.9 999.9 83.3* 56.3* 99.99 999.9 110000 724050 13743 19560513 79.5 24 64.4 24 1009.4 24 1008.4 24 8.2 24 5.0 24 12.0 999.9 95.4* 66.4* 0.00I 999.9 000000 724050 13743 19560514 82.4 24 64.3 24 1007.9 24 1006.9 24 10.9 24 4.5 24 12.0 999.9 93.4* 68.4* 0.00I 999.9 000000 724050 13743 19560515 70.2 24 49.7 24 1013.3 24 1012.3 24 11.7 24 8.3 24 16.9 999.9 87.3* 62.4* 0.00I 999.9 000000 724050 13743 19560516 64.7 24 47.1 24 1007.3 24 1006.3 24 12.2 24 12.6 24 26.0 999.9 73.4* 60.3* 99.99 999.9 010000 724050 13743 19560517 51.1 24 33.1 20 1018.3 24 1017.2 24 12.1 24 9.0 24 18.1 999.9 58.3* 41.4* 99.99 999.9 010000 724050 13743 19560518 57.8 24 46.4 24 1018.1 24 1017.1 24 10.7 24 7.4 24 14.0 999.9 69.3* 49.3* 99.99 999.9 010000 724050 13743 19560519 64.7 24 48.3 24 1021.4 24 1020.4 24 11.4 24 6.0 24 13.0 999.9 83.3* 49.3* 0.00I 999.9 000000 724050 13743 19560520 63.5 24 42.7 24 1022.6 24 1021.6 24 13.7 24 8.4 24 15.0 999.9 79.3* 54.3* 99.99 999.9 010010 724050 13743 19560521 62.4 24 48.0 24 1023.2 24 1022.2 24 11.7 24 6.2 24 12.0 999.9 78.3* 50.4* 0.00I 999.9 000000 724050 13743 19560522 69.9 24 55.0 24 1017.6 24 1016.6 24 10.4 24 9.9 24 21.0 999.9 83.3* 58.3* 99.99 999.9 010000 724050 13743 19560523 71.3 24 64.1 24 1007.8 24 1006.8 24 7.0 24 9.8 24 20.0 999.9 77.4* 66.4* 99.99 999.9 010000 724050 13743 19560524 60.4 24 38.7 24 1020.9 24 1019.9 24 10.8 24 10.6 24 15.9 999.9 73.4* 50.4* 0.00I 999.9 000000 724050 13743 19560525 55.8 24 36.6 24 1031.1 24 1030.1 24 11.0 24 5.0 24 12.0 999.9 66.4* 44.4* 0.00I 999.9 000000 724050 13743 19560526 60.2 24 42.4 24 1030.3 24 1029.3 24 14.8 24 9.6 24 15.0 999.9 73.4* 49.3* 0.00I 999.9 000000 724050 13743 19560527 63.9 24 58.5 24 1020.2 24 1019.2 24 7.5 24 9.8 24 15.0 999.9 68.4* 60.3* 99.99 999.9 110000 724050 13743 19560528 72.6 24 60.0 24 1014.7 24 1013.7 24 9.5 24 5.5 24 15.0 999.9 82.4* 66.4* 99.99 999.9 110000 724050 13743 19560529 63.9 24 43.9 24 1025.7 24 1024.7 24 12.6 24 6.2 24 13.0 999.9 75.4* 52.3* 0.00I 999.9 000000 724050 13743 19560530 66.0 24 53.9 24 1019.4 24 1018.4 24 9.8 24 9.8 24 26.0 999.9 85.3* 53.4* 99.99 999.9 010010 724050 13743 19560531 77.5 24 64.9 24 1012.2 24 1011.2 24 8.3 24 8.7 24 12.0 999.9 94.3* 67.3* 99.99 999.9 010000 724050 13743 19560601 75.0 24 63.9 24 1009.2 24 1008.2 24 9.2 24 6.1 24 16.9 999.9 86.4* 65.3* 99.99 999.9 110000 724050 13743 19560602 61.4 24 59.9 24 1013.9 24 1012.9 24 6.0 24 6.3 24 15.0 999.9 66.4* 56.3* 99.99 999.9 110000 724050 13743 19560603 60.8 24 52.4 24 1016.3 24 1015.3 24 10.1 24 7.6 24 15.9 999.9 71.2* 53.4* 99.99 999.9 110000 724050 13743 19560604 64.9 24 50.6 24 1022.9 24 1021.8 24 10.1 24 4.6 24 12.0 999.9 74.3* 55.4* 0.00I 999.9 000000 724050 13743 19560605 68.0 24 54.3 24 1020.8 24 1019.8 24 7.9 24 1.3 24 6.0 999.9 82.4* 56.3* 0.00I 999.9 000000 724050 13743 19560606 71.5 24 58.8 24 1017.9 24 1016.9 24 6.1 24 4.3 24 6.0 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19560607 71.9 24 56.1 24 1016.3 24 1015.3 24 5.5 24 3.5 24 11.1 999.9 82.4* 60.3* 0.00I 999.9 000000 724050 13743 19560608 74.6 24 57.9 24 1012.3 24 1011.3 24 7.2 24 1.3 24 8.0 999.9 91.2* 60.3* 0.00I 999.9 000000 724050 13743 19560609 71.8 24 61.1 24 1014.1 24 1013.1 24 6.9 24 6.3 24 13.0 999.9 80.2* 65.3* 99.99 999.9 010000 724050 13743 19560610 70.3 24 62.9 24 1018.2 24 1017.2 24 6.4 24 4.8 24 8.9 999.9 82.4* 64.4* 0.00I 999.9 000000 724050 13743 19560611 77.3 24 60.8 24 1018.9 24 1017.9 24 9.4 24 5.9 24 12.0 999.9 87.3* 67.3* 99.99 999.9 010000 724050 13743 19560612 78.0 24 56.4 24 1020.7 24 1019.7 24 10.3 24 2.3 24 9.9 999.9 91.2* 65.3* 0.00I 999.9 000000 724050 13743 19560613 82.6 24 63.4 24 1016.3 24 1015.3 24 8.6 24 4.0 24 12.0 999.9 98.2* 70.3* 0.00I 999.9 000000 724050 13743 19560614 86.1 24 64.8 24 1015.8 24 1014.8 24 7.7 24 2.5 24 8.9 999.9 98.2* 75.4* 0.00I 999.9 000000 724050 13743 19560615 84.9 24 68.2 24 1017.1 24 1016.1 24 7.0 24 3.6 24 7.0 999.9 96.3* 74.3* 0.00I 999.9 000000 724050 13743 19560616 83.7 24 66.6 24 1019.4 24 1018.4 24 8.8 24 2.4 24 8.9 999.9 92.3* 75.4* 0.00I 999.9 000000 724050 13743 19560617 82.5 24 68.7 24 1019.6 24 1018.6 24 10.9 24 5.1 24 16.9 999.9 92.3* 75.4* 99.99 999.9 010000 724050 13743 19560618 74.0 24 65.6 24 1018.7 24 1017.7 24 7.8 24 6.4 24 11.1 999.9 82.4* 65.3* 99.99 999.9 010000 724050 13743 19560619 66.2 24 52.0 24 1023.7 24 1022.7 24 12.4 24 6.5 24 11.1 999.9 74.3* 58.3* 0.00I 999.9 000000 724050 13743 19560620 62.9 24 54.0 24 1022.0 24 1021.0 24 13.4 24 7.9 24 12.0 999.9 67.3* 57.4* 99.99 999.9 010000 724050 13743 19560621 69.9 24 66.3 24 1013.3 24 1012.2 24 5.5 24 7.9 24 12.0 999.9 81.3* 65.3* 99.99 999.9 110000 724050 13743 19560622 80.9 24 70.8 24 1009.1 24 1008.1 24 5.8 24 5.5 24 23.9 999.9 92.3* 71.2* 99.99 999.9 010010 724050 13743 19560623 81.3 24 71.6 24 1010.2 24 1009.1 24 8.3 24 4.5 24 9.9 999.9 91.2* 73.4* 99.99 999.9 010000 724050 13743 19560624 82.4 24 69.8 24 1009.9 24 1008.8 24 11.0 24 5.9 24 15.9 999.9 91.2* 72.3* 99.99 999.9 010000 724050 13743 19560625 78.3 24 64.9 24 1009.3 24 1008.3 24 11.8 24 7.4 24 13.0 999.9 89.2* 66.4* 99.99 999.9 010010 724050 13743 19560626 80.2 24 65.4 24 1014.8 24 1013.8 24 8.3 24 3.0 24 8.9 999.9 90.3* 70.3* 0.00I 999.9 000000 724050 13743 19560627 81.4 24 71.1 24 1010.7 24 1009.7 24 9.6 24 7.7 24 12.0 999.9 92.3* 73.4* 99.99 999.9 010000 724050 13743 19560628 77.7 24 61.3 24 1011.7 24 1010.7 24 11.8 24 5.4 24 9.9 999.9 86.4* 68.4* 99.99 999.9 010000 724050 13743 19560629 74.4 24 52.4 24 1017.4 24 1016.4 24 13.5 24 8.2 24 15.9 999.9 83.3* 62.4* 0.00I 999.9 000000 724050 13743 19560630 76.1 24 61.3 24 1019.5 24 1018.5 24 12.3 24 6.5 24 13.0 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19560701 81.1 24 66.8 24 1016.4 24 1015.4 24 12.6 24 7.0 24 12.0 999.9 95.4* 70.3* 0.00I 999.9 100000 724050 13743 19560702 85.8 24 70.2 24 1013.4 24 1012.3 24 11.9 24 5.8 24 8.9 999.9 96.3* 77.4* 0.00I 999.9 000000 724050 13743 19560703 85.4 24 70.1 24 1014.6 24 1013.6 24 9.9 24 5.1 24 12.0 999.9 94.3* 74.3* 0.00I 999.9 000000 724050 13743 19560704 81.1 24 72.2 24 1016.4 24 1015.4 24 6.0 24 4.2 24 12.0 999.9 90.3* 74.3* 99.99 999.9 010010 724050 13743 19560705 76.4 24 72.6 24 1016.7 24 1015.7 24 4.2 24 4.2 24 9.9 999.9 82.4* 72.3* 99.99 999.9 110010 724050 13743 19560706 71.1 24 67.9 24 1016.4 24 1015.4 24 1.6 24 4.5 24 8.9 999.9 80.2* 65.3* 99.99 999.9 110000 724050 13743 19560707 77.2 24 66.8 24 1017.6 24 1016.6 24 5.3 24 4.1 24 8.9 999.9 87.3* 71.2* 99.99 999.9 110000 724050 13743 19560708 78.5 24 70.7 24 1014.6 24 1013.6 24 6.6 24 7.2 24 15.0 999.9 86.4* 72.3* 99.99 999.9 110000 724050 13743 19560709 78.6 24 71.6 24 1008.8 24 1007.8 24 12.7 24 9.6 24 14.0 999.9 85.3* 74.3* 99.99 999.9 010010 724050 13743 19560710 74.2 24 64.3 24 1011.0 24 1010.0 24 10.6 24 7.3 24 12.0 999.9 80.2* 69.3* 0.00I 999.9 000000 724050 13743 19560711 74.7 24 58.1 24 1015.6 24 1014.6 24 12.7 24 5.8 24 13.0 999.9 87.3* 63.3* 0.00I 999.9 000000 724050 13743 19560712 78.4 24 60.8 24 1017.1 24 1016.1 24 11.6 24 3.6 24 8.9 999.9 89.2* 67.3* 99.99 999.9 010000 724050 13743 19560713 78.7 24 66.1 24 1014.5 24 1013.5 24 12.1 24 9.1 24 15.0 999.9 84.4* 73.4* 99.99 999.9 010000 724050 13743 19560714 80.3 24 66.0 24 1010.4 24 1009.4 24 13.3 24 12.6 24 22.9 999.9 88.3* 74.3* 99.99 999.9 010000 724050 13743 19560715 75.1 24 59.8 24 1016.2 24 1015.2 24 14.4 24 6.7 24 15.9 999.9 84.4* 66.4* 0.00I 999.9 000000 724050 13743 19560716 80.1 24 66.2 24 1008.7 24 1007.6 24 11.0 24 5.2 24 15.0 999.9 91.2* 71.2* 0.00I 999.9 000000 724050 13743 19560717 78.6 24 66.1 24 1007.3 24 1006.3 24 8.8 24 5.9 24 9.9 999.9 84.4* 73.4* 99.99 999.9 010000 724050 13743 19560718 71.7 24 61.9 24 1014.8 24 1013.8 24 7.9 24 3.6 24 9.9 999.9 80.2* 65.3* 99.99 999.9 110010 724050 13743 19560719 75.1 24 62.6 24 1021.3 24 1020.3 24 9.0 24 6.1 24 15.0 999.9 84.4* 68.4* 0.00I 999.9 000000 724050 13743 19560720 73.0 24 68.6 24 1020.0 24 1019.0 24 8.7 24 6.1 24 12.0 999.9 76.3* 70.3* 99.99 999.9 110000 724050 13743 19560721 77.5 24 70.1 24 1016.5 24 1015.5 24 11.2 24 4.4 24 13.0 999.9 88.3* 70.3* 99.99 999.9 110000 724050 13743 19560722 78.1 24 71.4 24 1019.7 24 1018.7 24 5.8 24 4.2 24 9.9 999.9 89.2* 71.2* 99.99 999.9 110010 724050 13743 19560723 76.2 24 68.3 24 1020.3 24 1019.2 24 9.9 24 2.7 24 16.9 999.9 90.3* 67.3* 99.99 999.9 010010 724050 13743 19560724 72.8 24 69.4 24 1017.0 24 1016.0 24 8.4 24 3.4 24 9.9 999.9 78.3* 71.2* 99.99 999.9 010010 724050 13743 19560725 75.7 24 66.9 24 1014.0 24 1013.0 24 8.8 24 2.1 24 8.0 999.9 86.4* 68.4* 99.99 999.9 010000 724050 13743 19560726 80.0 24 68.0 24 1015.7 24 1014.7 24 6.8 24 2.0 24 8.9 999.9 90.3* 69.3* 0.00I 999.9 000000 724050 13743 19560727 81.7 24 71.8 24 1015.6 24 1014.5 24 8.4 24 3.7 24 8.0 999.9 92.3* 72.3* 99.99 999.9 010010 724050 13743 19560728 83.7 24 72.7 24 1013.5 24 1012.5 24 7.7 24 3.8 24 15.0 999.9 92.3* 77.4* 0.00I 999.9 000000 724050 13743 19560729 76.8 24 63.8 24 1013.6 24 1012.6 24 11.7 24 6.9 24 12.0 999.9 88.3* 70.3* 99.99 999.9 010000 724050 13743 19560730 69.5 24 53.6 24 1017.4 24 1016.4 24 13.5 24 5.0 24 11.1 999.9 77.4* 61.3* 0.00I 999.9 000000 724050 13743 19560731 71.1 24 56.4 24 1020.7 24 1019.7 24 10.9 24 2.2 24 12.0 999.9 82.4* 60.3* 0.00I 999.9 000000 724050 13743 19560801 76.7 24 63.5 24 1017.7 24 1016.6 24 8.9 24 0.4 24 5.1 999.9 86.4* 69.3* 99.99 999.9 010000 724050 13743 19560802 76.3 24 66.6 24 1017.6 24 1016.6 24 5.6 24 0.2 24 5.1 999.9 82.4* 71.2* 99.99 999.9 110000 724050 13743 19560803 73.1 24 60.8 24 1021.8 24 1020.8 24 8.6 24 1.7 24 7.0 999.9 82.4* 65.3* 0.00I 999.9 000000 724050 13743 19560804 71.5 24 59.6 24 1021.4 24 1020.4 24 10.8 24 5.3 24 12.0 999.9 77.4* 66.4* 0.00I 999.9 000000 724050 13743 19560805 74.6 24 66.2 24 1012.9 24 1011.8 24 9.5 24 8.0 24 11.1 999.9 82.4* 70.3* 99.99 999.9 010000 724050 13743 19560806 72.7 24 67.5 24 1008.8 24 1007.8 24 4.2 24 2.6 24 9.9 999.9 77.4* 69.3* 99.99 999.9 110000 724050 13743 19560807 73.0 24 66.5 24 1011.2 24 1010.2 24 7.4 24 5.4 24 11.1 999.9 76.3* 69.3* 99.99 999.9 010000 724050 13743 19560808 76.2 24 66.5 24 1016.0 24 1015.0 24 9.8 24 4.7 24 14.0 999.9 86.4* 68.4* 0.00I 999.9 000000 724050 13743 19560809 80.8 24 67.9 24 1018.3 24 1017.2 24 7.2 24 3.0 24 9.9 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19560810 83.1 24 68.1 24 1014.4 24 1013.4 24 10.6 24 6.2 24 12.0 999.9 91.2* 75.4* 0.00I 999.9 000000 724050 13743 19560811 79.9 24 64.8 24 1015.9 24 1014.9 24 12.6 24 2.4 24 9.9 999.9 89.2* 69.3* 0.00I 999.9 000000 724050 13743 19560812 80.3 24 68.6 24 1015.2 24 1014.2 24 9.4 24 5.8 24 11.1 999.9 90.3* 72.3* 99.99 999.9 010000 724050 13743 19560813 80.1 24 70.6 24 1016.6 24 1015.6 24 7.5 24 3.2 24 8.9 999.9 89.2* 71.2* 0.00I 999.9 000000 724050 13743 19560814 80.2 24 70.3 24 1014.1 24 1013.1 24 10.9 24 7.1 24 22.9 999.9 85.3* 72.3* 99.99 999.9 010000 724050 13743 19560815 78.8 24 66.1 24 1014.8 24 1013.8 24 9.9 24 3.5 24 12.0 999.9 88.3* 70.3* 0.00I 999.9 000000 724050 13743 19560816 79.6 24 65.2 24 1014.9 24 1013.8 24 8.8 24 1.7 24 8.0 999.9 93.4* 68.4* 0.00I 999.9 000000 724050 13743 19560817 80.8 24 65.8 24 1014.5 24 1013.5 24 9.1 24 3.6 24 11.1 999.9 92.3* 70.3* 0.00I 999.9 000000 724050 13743 19560818 82.9 24 69.0 24 1013.8 24 1012.7 24 7.8 24 3.7 24 9.9 999.9 94.3* 73.4* 99.99 999.9 010000 724050 13743 19560819 84.5 24 73.0 24 1010.9 24 1009.9 24 11.2 24 9.1 24 13.0 999.9 91.2* 77.4* 99.99 999.9 010000 724050 13743 19560820 73.2 24 65.4 24 1013.9 24 1012.8 24 6.9 24 7.7 24 15.9 999.9 84.4* 63.3* 99.99 999.9 010000 724050 13743 19560821 63.9 24 60.0 24 1012.6 24 1011.6 24 7.4 24 7.8 24 12.0 999.9 68.4* 61.3* 99.99 999.9 110000 724050 13743 19560822 67.9 24 57.8 24 1016.2 24 1015.1 24 8.1 24 1.7 24 8.9 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19560823 69.4 24 59.3 24 1016.8 24 1015.8 24 11.0 24 5.3 24 13.0 999.9 81.3* 60.3* 0.00I 999.9 000000 724050 13743 19560824 72.0 24 58.3 24 1013.3 24 1012.3 24 12.2 24 11.3 24 20.0 999.9 81.3* 66.4* 0.00I 999.9 000000 724050 13743 19560825 70.3 24 54.0 24 1021.3 24 1020.3 24 12.7 24 4.9 24 8.9 999.9 79.3* 59.4* 0.00I 999.9 000000 724050 13743 19560826 71.5 24 59.0 24 1018.9 24 1017.9 24 9.2 24 1.0 24 7.0 999.9 84.4* 61.3* 0.00I 999.9 000000 724050 13743 19560827 76.9 24 61.5 24 1015.0 24 1014.0 24 6.9 24 3.1 24 12.0 999.9 87.3* 68.4* 99.99 999.9 010010 724050 13743 19560828 79.2 24 66.5 24 1012.9 24 1011.9 24 9.3 24 4.8 24 8.9 999.9 93.4* 68.4* 0.00I 999.9 000000 724050 13743 19560829 80.7 24 67.3 24 1011.5 24 1010.5 24 10.4 24 5.5 24 11.1 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19560830 81.7 24 69.1 24 1011.4 24 1010.3 24 6.2 24 3.6 24 11.1 999.9 90.3* 71.2* 0.00I 999.9 000000 724050 13743 19560831 83.6 24 71.7 24 1013.5 24 1012.5 24 6.9 24 5.2 24 11.1 999.9 97.3* 75.4* 0.00I 999.9 000000 724050 13743 19560901 83.8 24 71.7 24 1015.7 24 1014.7 24 11.8 24 3.5 24 13.0 999.9 94.3* 74.3* 0.00I 999.9 000000 724050 13743 19560902 80.8 24 71.1 24 1016.2 24 1015.2 24 14.0 24 7.0 24 14.0 999.9 87.3* 77.4* 0.00I 999.9 000000 724050 13743 19560903 77.3 24 60.9 24 1021.8 24 1020.8 24 12.6 24 8.3 24 12.0 999.9 85.3* 71.2* 0.00I 999.9 000000 724050 13743 19560904 77.5 24 64.1 24 1023.0 24 1022.0 24 10.7 24 2.8 24 8.0 999.9 87.3* 69.3* 0.00I 999.9 000000 724050 13743 19560905 79.5 24 67.2 24 1022.7 24 1021.7 24 7.5 24 3.0 24 8.9 999.9 89.2* 73.4* 0.00I 999.9 100000 724050 13743 19560906 76.5 24 70.0 24 1019.2 24 1018.1 24 9.9 24 4.5 24 14.0 999.9 84.4* 71.2* 99.99 999.9 110000 724050 13743 19560907 71.1 24 63.3 24 1019.0 24 1018.0 24 11.6 24 4.8 24 13.0 999.9 74.3* 69.3* 99.99 999.9 110000 724050 13743 19560908 64.2 24 48.7 24 1025.3 24 1024.3 24 14.8 24 6.3 24 15.0 999.9 71.2* 56.3* 0.00I 999.9 000000 724050 13743 19560909 61.7 24 44.0 24 1028.2 24 1027.2 24 14.4 24 6.6 24 15.9 999.9 70.3* 53.4* 0.00I 999.9 000000 724050 13743 19560910 60.0 24 42.6 24 1026.6 24 1025.6 24 14.5 24 1.9 24 7.0 999.9 71.2* 49.3* 0.00I 999.9 000000 724050 13743 19560911 64.1 24 50.2 24 1019.4 24 1018.4 24 12.2 24 4.7 24 9.9 999.9 76.3* 56.3* 99.99 999.9 010000 724050 13743 19560912 70.5 24 58.6 24 1016.7 24 1015.7 24 8.8 24 2.7 24 8.0 999.9 84.4* 60.3* 0.00I 999.9 000000 724050 13743 19560913 74.5 24 64.2 24 1015.7 24 1014.6 24 6.9 24 3.8 24 8.9 999.9 89.2* 65.3* 0.00I 999.9 000000 724050 13743 19560914 79.6 24 64.8 24 1011.8 24 1010.8 24 9.6 24 7.1 24 15.0 999.9 91.2* 70.3* 0.00I 999.9 000000 724050 13743 19560915 73.7 24 64.9 24 1011.2 24 1010.2 24 8.3 24 2.6 24 8.9 999.9 80.2* 69.3* 99.99 999.9 010010 724050 13743 19560916 71.8 24 63.5 24 1010.8 24 1009.8 24 7.5 24 4.5 24 11.1 999.9 85.3* 62.4* 99.99 999.9 110000 724050 13743 19560917 76.1 24 65.3 24 1010.7 24 1009.7 24 12.6 24 5.2 24 14.0 999.9 87.3* 64.4* 99.99 999.9 010010 724050 13743 19560918 65.0 24 49.9 24 1014.7 24 1013.7 24 13.5 24 6.1 24 9.9 999.9 72.3* 57.4* 0.00I 999.9 000000 724050 13743 19560919 62.7 24 48.4 24 1013.4 24 1012.4 24 11.0 24 3.5 24 15.0 999.9 74.3* 52.3* 0.00I 999.9 000000 724050 13743 19560920 62.2 24 49.0 24 1009.9 24 1008.9 24 12.7 24 12.3 24 26.0 999.9 67.3* 57.4* 99.99 999.9 010000 724050 13743 19560921 55.3 24 34.6 24 1023.6 24 1022.6 24 14.5 24 4.5 24 9.9 999.9 66.4* 44.4* 0.00I 999.9 000000 724050 13743 19560922 61.8 24 50.3 24 1019.7 24 1018.7 24 12.4 24 6.0 24 8.9 999.9 75.4* 54.3* 99.99 999.9 010000 724050 13743 19560923 72.1 24 59.2 24 1013.9 24 1012.9 24 9.1 24 2.5 24 6.0 999.9 90.3* 59.4* 0.00I 999.9 000000 724050 13743 19560924 69.2 24 58.5 24 1014.3 24 1013.3 24 11.4 24 4.3 24 9.9 999.9 81.3* 63.3* 99.99 999.9 010000 724050 13743 19560925 62.5 24 50.5 24 1017.3 24 1016.3 24 11.1 24 2.7 24 7.0 999.9 74.3* 54.3* 0.00I 999.9 000000 724050 13743 19560926 59.9 24 48.0 24 1019.1 24 1018.1 24 9.6 24 8.9 24 16.9 999.9 65.3* 54.3* 99.99 999.9 010000 724050 13743 19560927 53.3 24 48.0 24 1019.3 24 1018.3 24 6.0 24 12.3 24 19.0 999.9 57.4* 48.4* 99.99 999.9 110000 724050 13743 19560928 55.0 24 52.0 24 1020.1 24 1019.1 24 6.3 24 8.7 24 13.0 999.9 58.3* 52.3* 99.99 999.9 110000 724050 13743 19560929 58.4 24 53.5 24 1023.6 24 1022.6 24 6.7 24 1.0 24 5.1 999.9 63.3* 53.4* 99.99 999.9 110000 724050 13743 19560930 64.7 24 57.7 24 1019.7 24 1018.7 24 8.4 24 2.4 24 8.0 999.9 76.3* 58.3* 0.00I 999.9 100000 724050 13743 19561001 63.7 24 51.8 24 1019.0 24 1017.9 24 12.9 24 4.9 24 11.1 999.9 70.3* 55.4* 0.00I 999.9 000000 724050 13743 19561002 63.3 24 52.8 24 1015.1 24 1014.0 24 7.1 24 2.5 24 8.9 999.9 78.3* 53.4* 0.00I 999.9 000000 724050 13743 19561003 69.4 24 58.5 24 1015.1 24 1014.1 24 9.5 24 0.6 24 8.0 999.9 80.2* 60.3* 0.00I 999.9 000000 724050 13743 19561004 66.6 24 59.3 24 1016.1 24 1015.1 24 7.6 24 2.5 24 7.0 999.9 73.4* 61.3* 99.99 999.9 110000 724050 13743 19561005 66.3 24 59.0 24 1019.4 24 1018.4 24 6.0 24 2.5 24 8.0 999.9 72.3* 62.4* 99.99 999.9 110000 724050 13743 19561006 59.2 24 53.5 24 1022.8 24 1021.8 24 6.2 24 1.2 24 5.1 999.9 64.4* 56.3* 99.99 999.9 110000 724050 13743 19561007 63.6 24 53.1 24 1010.7 24 1009.7 24 9.6 24 11.1 24 23.9 999.9 67.3* 60.3* 99.99 999.9 110000 724050 13743 19561008 58.4 24 42.5 24 1019.6 24 1018.6 24 13.7 24 5.8 24 15.0 999.9 70.3* 46.4* 0.00I 999.9 000000 724050 13743 19561009 62.1 24 47.1 24 1018.4 24 1017.4 24 14.5 24 7.4 24 15.0 999.9 71.2* 50.4* 0.00I 999.9 000000 724050 13743 19561010 54.1 24 37.5 24 1029.1 24 1028.1 24 14.9 24 4.8 24 9.9 999.9 64.4* 45.3* 0.00I 999.9 000000 724050 13743 19561011 50.1 24 31.9 24 1033.0 24 1032.0 24 13.5 24 3.5 24 8.0 999.9 60.3* 41.4* 0.00I 999.9 000000 724050 13743 19561012 51.1 24 39.0 24 1033.4 24 1032.4 24 11.5 24 2.0 24 8.0 999.9 65.3* 39.4* 0.00I 999.9 000000 724050 13743 19561013 55.6 24 45.7 24 1030.9 24 1029.9 24 10.4 24 1.6 24 6.0 999.9 69.3* 46.4* 0.00I 999.9 000000 724050 13743 19561014 58.5 24 48.8 24 1026.8 24 1025.7 24 8.7 24 1.0 24 8.0 999.9 75.4* 47.3* 0.00I 999.9 100000 724050 13743 19561015 62.2 24 50.6 24 1026.3 24 1025.3 24 9.0 24 0.5 24 4.1 999.9 79.3* 50.4* 0.00I 999.9 000000 724050 13743 19561016 63.2 24 52.1 24 1024.9 24 1023.9 24 6.9 24 0.7 24 6.0 999.9 75.4* 51.3* 0.00I 999.9 000000 724050 13743 19561017 65.1 24 52.0 24 1019.9 24 1018.9 24 7.5 24 6.7 24 15.9 999.9 73.4* 57.4* 0.00I 999.9 000000 724050 13743 19561018 66.8 24 56.2 24 1011.9 24 1010.9 24 6.0 24 8.3 24 12.0 999.9 76.3* 61.3* 99.99 999.9 110000 724050 13743 19561019 59.8 24 46.1 24 1026.1 24 1025.1 24 10.5 24 5.8 24 8.9 999.9 67.3* 53.4* 0.00I 999.9 000000 724050 13743 19561020 54.5 24 47.1 24 1030.3 24 1029.3 24 10.4 24 3.7 24 12.0 999.9 64.4* 45.3* 0.00I 999.9 000000 724050 13743 19561021 60.3 24 56.0 24 1024.1 24 1023.1 24 5.4 24 1.7 24 5.1 999.9 67.3* 55.4* 99.99 999.9 110000 724050 13743 19561022 61.7 24 60.3 24 1016.8 24 1015.8 24 4.2 24 5.7 24 9.9 999.9 64.4* 60.3* 99.99 999.9 110000 724050 13743 19561023 65.9 24 61.1 24 1012.2 24 1011.2 24 8.2 24 1.1 24 8.9 999.9 74.3* 60.3* 99.99 999.9 110000 724050 13743 19561024 63.8 24 59.7 24 1018.5 24 1017.5 24 9.5 24 2.9 24 8.0 999.9 67.3* 60.3* 99.99 999.9 010000 724050 13743 19561025 53.4 24 39.6 24 1031.7 24 1030.7 24 13.7 24 7.9 24 12.0 999.9 66.4* 45.3* 0.00I 999.9 000000 724050 13743 19561026 52.3 24 45.8 24 1029.2 24 1028.2 24 8.9 24 6.5 24 9.9 999.9 54.3* 50.4* 99.99 999.9 110000 724050 13743 19561027 56.8 24 55.8 24 1022.5 24 1021.5 24 2.7 24 5.8 24 9.9 999.9 59.4* 55.4* 99.99 999.9 110000 724050 13743 19561028 59.9 24 50.8 24 1027.2 24 1026.2 24 8.1 24 9.2 24 14.0 999.9 66.4* 54.3* 0.00I 999.9 100000 724050 13743 19561029 58.0 24 49.2 24 1030.6 24 1029.6 24 7.8 24 7.3 24 9.9 999.9 64.4* 51.3* 0.00I 999.9 000000 724050 13743 19561030 59.9 24 55.2 24 1026.6 24 1025.6 24 5.7 24 6.6 24 8.9 999.9 63.3* 58.3* 99.99 999.9 110000 724050 13743 19561031 67.9 24 64.9 24 1017.9 24 1016.8 24 7.6 24 5.5 24 8.0 999.9 75.4* 64.4* 99.99 999.9 110000 724050 13743 19561101 65.7 24 64.6 24 1016.6 24 1015.6 24 3.6 24 2.4 24 8.0 999.9 70.3* 62.4* 99.99 999.9 110000 724050 13743 19561102 65.5 24 65.0 24 1017.8 24 1016.8 24 4.0 24 1.8 24 8.0 999.9 68.4* 64.4* 99.99 999.9 110000 724050 13743 19561103 59.0 24 56.9 24 1026.7 24 1025.7 24 4.1 24 6.6 24 12.0 999.9 65.3* 54.3* 99.99 999.9 110000 724050 13743 19561104 56.3 24 50.3 24 1027.5 24 1026.4 24 5.9 24 4.1 24 8.9 999.9 62.4* 51.3* 0.00I 999.9 100000 724050 13743 19561105 58.3 24 50.3 24 1025.3 24 1024.3 24 8.3 24 2.6 24 6.0 999.9 67.3* 52.3* 0.00I 999.9 000000 724050 13743 19561106 55.6 24 39.4 24 1023.4 24 1022.4 24 7.6 24 0.4 24 4.1 999.9 70.3* 44.4* 0.00I 999.9 000000 724050 13743 19561107 56.0 24 41.6 24 1020.2 24 1019.2 24 8.9 24 2.1 24 7.0 999.9 70.3* 45.3* 0.00I 999.9 000000 724050 13743 19561108 59.2 24 47.5 24 1014.2 24 1013.1 24 10.3 24 4.7 24 15.0 999.9 64.4* 55.4* 99.99 999.9 010000 724050 13743 19561109 47.3 24 31.0 24 1014.4 24 1013.4 24 12.6 24 16.9 24 22.9 999.9 54.3* 43.3* 99.99 999.9 010000 724050 13743 19561110 44.0 24 28.0 24 1016.9 24 1015.8 24 13.0 24 8.5 24 14.0 999.9 46.4* 41.4* 99.99 999.9 010000 724050 13743 19561111 43.0 24 29.8 24 1019.4 24 1018.4 24 11.7 24 4.2 24 12.0 999.9 58.3* 32.4* 0.00I 999.9 000000 724050 13743 19561112 58.1 24 41.9 24 1007.6 24 1006.6 24 14.2 24 8.4 24 13.0 999.9 70.3* 53.4* 99.99 999.9 010000 724050 13743 19561113 47.3 24 27.6 24 1018.7 24 1017.7 24 14.9 24 10.2 24 20.0 999.9 55.4* 41.4* 0.00I 999.9 000000 724050 13743 19561114 51.4 24 31.4 24 1019.9 24 1018.9 24 14.6 24 5.2 24 8.9 999.9 70.3* 39.4* 0.00I 999.9 000000 724050 13743 19561115 60.2 24 36.3 24 1020.7 24 1019.7 24 14.5 24 6.7 24 12.0 999.9 74.3* 48.4* 0.00I 999.9 000000 724050 13743 19561116 61.5 24 51.1 24 1019.8 24 1018.8 24 14.3 24 8.4 24 13.0 999.9 66.4* 56.3* 99.99 999.9 110000 724050 13743 19561117 45.6 24 36.3 24 1026.1 24 1025.1 24 8.6 24 5.5 24 12.0 999.9 56.3* 38.3* 99.99 999.9 110000 724050 13743 19561118 41.8 24 34.0 24 1021.8 24 1020.8 24 9.6 24 8.5 24 12.0 999.9 50.4* 36.3* 99.99 999.9 110000 724050 13743 19561119 42.0 24 31.0 24 1028.9 24 1027.9 24 9.1 24 1.7 24 6.0 999.9 52.3* 33.4* 0.00I 999.9 000000 724050 13743 19561120 42.5 24 33.3 24 1026.8 24 1025.8 24 7.7 24 2.4 24 7.0 999.9 52.3* 34.3* 0.00I 999.9 000000 724050 13743 19561121 57.2 24 46.6 24 1013.1 24 1012.1 24 13.3 24 8.2 24 15.0 999.9 66.4* 49.3* 0.00I 999.9 000000 724050 13743 19561122 43.8 24 30.3 24 1007.4 24 1006.3 24 13.3 24 13.4 24 22.9 999.9 61.3* 36.3* 99.99 999.9 010000 724050 13743 19561123 32.1 24 14.4 24 1017.8 24 1016.8 24 14.9 24 8.6 24 15.9 999.9 35.4* 28.4* 0.00I 999.9 000000 724050 13743 19561124 28.1 24 15.2 24 1025.8 24 1024.8 24 13.0 24 4.4 24 14.0 999.9 35.4* 22.5* 0.00I 999.9 000000 724050 13743 19561125 29.8 24 20.7 24 1018.5 24 1017.5 24 7.0 24 1.4 24 5.1 999.9 37.4* 23.4* 99.99 999.9 101000 724050 13743 19561126 36.0 24 29.9 24 1011.1 24 1010.0 24 5.2 24 1.1 24 5.1 999.9 38.3* 33.4* 99.99 999.9 101000 724050 13743 19561127 38.1 24 27.1 24 1011.0 24 1010.0 24 10.3 24 4.8 24 16.9 999.9 45.3* 33.4* 0.00I 999.9 000000 724050 13743 19561128 36.7 24 21.3 24 1016.8 24 1015.8 24 12.9 24 4.7 24 12.0 999.9 45.3* 29.3* 0.00I 999.9 000000 724050 13743 19561129 42.5 24 27.0 24 1011.7 24 1010.7 24 11.9 24 6.7 24 13.0 999.9 50.4* 38.3* 0.00I 999.9 000000 724050 13743 19561130 35.6 24 18.1 24 1014.2 24 1013.2 24 14.9 24 7.2 24 9.9 999.9 40.3* 31.3* 0.00I 999.9 000000 724050 13743 19561201 35.1 24 21.7 24 1014.9 24 1013.9 24 11.6 24 1.8 24 8.9 999.9 42.4* 30.4* 99.99 999.9 001000 724050 13743 19561202 37.6 24 23.9 24 1013.9 24 1012.9 24 12.1 24 2.9 24 7.0 999.9 44.4* 32.4* 0.00I 999.9 000000 724050 13743 19561203 48.6 24 31.7 24 1009.5 24 1008.5 24 12.6 24 5.0 24 15.9 999.9 66.4* 38.3* 0.00I 999.9 000000 724050 13743 19561204 50.8 24 34.2 24 1020.9 24 1019.9 24 12.5 24 1.0 24 9.9 999.9 64.4* 38.3* 0.00I 999.9 000000 724050 13743 19561205 46.1 24 38.0 24 1028.2 24 1027.2 24 6.1 24 2.0 24 8.0 999.9 53.4* 38.3* 0.00I 999.9 000000 724050 13743 19561206 51.8 24 44.6 24 1021.2 24 1020.2 24 3.1 24 0.3 24 4.1 999.9 65.3* 45.3* 99.99 999.9 110000 724050 13743 19561207 58.4 24 50.1 24 1018.7 24 1017.6 24 5.8 24 3.4 24 9.9 999.9 72.3* 47.3* 0.00I 999.9 000000 724050 13743 19561208 63.8 24 52.5 24 1021.3 24 1020.2 24 10.9 24 2.9 24 8.0 999.9 70.3* 53.4* 0.00I 999.9 000000 724050 13743 19561209 52.1 24 48.2 24 1017.7 24 1016.6 24 6.1 24 6.3 24 19.0 999.9 63.3* 40.3* 99.99 999.9 110000 724050 13743 19561210 38.2 24 24.6 24 1024.3 24 1023.3 24 14.0 24 7.9 24 26.0 999.9 50.4* 31.3* 0.00I 999.9 000000 724050 13743 19561211 44.2 24 32.5 24 1020.3 24 1019.2 24 12.6 24 8.8 24 14.0 999.9 52.3* 40.3* 99.99 999.9 010000 724050 13743 19561212 51.2 24 44.7 24 1015.8 24 1014.8 24 8.4 24 6.3 24 9.9 999.9 55.4* 47.3* 99.99 999.9 010000 724050 13743 19561213 55.6 24 51.9 24 1018.9 24 1017.8 24 4.7 24 8.1 24 13.0 999.9 61.3* 51.3* 99.99 999.9 110000 724050 13743 19561214 41.1 24 39.7 24 1025.3 24 1024.3 24 2.7 24 8.9 24 12.0 999.9 48.4* 38.3* 99.99 999.9 110000 724050 13743 19561215 41.6 24 39.8 24 1024.1 24 1023.1 24 3.6 24 5.9 24 14.0 999.9 42.4* 40.3* 99.99 999.9 110000 724050 13743 19561216 43.5 24 41.6 24 1018.7 24 1017.7 24 2.7 24 1.0 24 6.0 999.9 50.4* 35.4* 99.99 999.9 110000 724050 13743 19561217 46.6 24 45.8 24 1020.8 24 1019.8 24 1.9 24 0.5 24 7.0 999.9 51.3* 40.3* 99.99 999.9 110000 724050 13743 19561218 47.5 24 40.2 24 1024.3 24 1023.3 24 7.6 24 7.4 24 22.9 999.9 50.4* 42.4* 99.99 999.9 110000 724050 13743 19561219 38.0 24 25.0 24 1032.4 24 1031.4 24 14.4 24 5.3 24 15.0 999.9 49.3* 28.4* 0.00I 999.9 000000 724050 13743 19561220 45.9 24 36.3 24 1022.7 24 1021.7 24 7.5 24 2.3 24 7.0 999.9 59.4* 36.3* 99.99 999.9 010000 724050 13743 19561221 53.9 24 50.6 24 1014.7 24 1013.7 24 3.1 24 0.1 24 2.9 999.9 63.3* 45.3* 99.99 999.9 110000 724050 13743 19561222 53.0 24 52.6 24 1014.9 24 1013.9 24 0.9 24 0.5 24 7.0 999.9 56.3* 48.4* 99.99 999.9 110000 724050 13743 19561223 49.0 24 48.5 24 1015.8 24 1014.8 24 2.3 24 4.7 24 9.9 999.9 54.3* 43.3* 99.99 999.9 110000 724050 13743 19561224 44.9 24 44.3 23 1008.9 24 1007.9 24 2.7 24 0.8 24 5.1 999.9 49.3* 42.4* 99.99 999.9 110000 724050 13743 19561225 42.9 24 29.8 24 1011.8 24 1010.8 24 14.4 24 14.3 24 22.9 999.9 51.3* 36.3* 99.99 999.9 110000 724050 13743 19561226 38.7 24 26.4 24 1019.2 24 1018.2 24 14.3 24 5.5 24 14.0 999.9 40.3* 36.3* 0.00I 999.9 000000 724050 13743 19561227 39.6 24 28.8 24 1011.7 24 1010.6 24 13.2 24 8.9 24 14.0 999.9 49.3* 32.4* 99.99 999.9 111000 724050 13743 19561228 43.1 24 33.7 24 1004.8 24 1003.7 24 10.1 24 1.7 24 9.9 999.9 50.4* 37.4* 0.00I 999.9 000000 724050 13743 19561229 39.6 24 32.4 24 997.5 24 996.5 24 10.1 24 11.8 24 29.9 999.9 44.4* 34.3* 99.99 999.9 001000 724050 13743 19561230 28.8 24 12.1 24 1007.8 24 1006.8 24 14.9 24 17.2 24 28.9 999.9 32.4* 24.4* 0.00I 999.9 000000 724050 13743 19561231 39.1 24 25.5 24 1003.9 24 1002.9 24 14.9 24 8.8 24 19.0 999.9 56.3* 25.3* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1945/0000755000175000017500000000000014302004506015102 5ustar nileshnileshfluids-1.0.22/tests/gsod/1945/724050-13743.op0000644000175000017500000014327214302004506016673 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19450101 46.3 24 43.3 24 1001.0 24 9999.9 0 2.7 24 10.9 24 22.0 999.9 57.4* 37.4* 99.99 999.9 110000 724050 13743 19450102 25.4 24 9.0 24 1020.9 24 9999.9 0 87.9 24 14.4 24 23.9 999.9 34.3* 19.4* 0.00I 999.9 000000 724050 13743 19450103 28.5 24 12.2 24 1029.4 24 9999.9 0 40.9 24 6.6 24 12.0 999.9 43.3* 19.4* 0.00I 999.9 000000 724050 13743 19450104 42.0 24 23.8 24 1024.4 24 9999.9 0 6.1 24 7.8 24 9.9 999.9 52.3* 35.4* 0.00I 999.9 000000 724050 13743 19450105 36.5 24 17.0 23 1022.5 24 9999.9 0 72.5 24 10.7 24 16.9 999.9 45.3* 29.3* 0.00I 999.9 000000 724050 13743 19450106 30.8 24 19.2 24 1024.5 24 9999.9 0 5.3 24 6.9 24 12.0 999.9 36.3* 28.4* 0.00I 999.9 000000 724050 13743 19450107 28.9 24 23.7 24 1015.1 24 9999.9 0 7.3 24 9.5 24 13.0 999.9 31.3* 25.3* 99.99 999.9 111000 724050 13743 19450108 30.9 24 28.8 24 1008.3 24 9999.9 0 2.5 24 6.0 24 7.0 999.9 34.3* 28.4* 99.99 999.9 110000 724050 13743 19450109 34.8 24 30.2 24 1011.0 24 9999.9 0 7.1 24 9.2 24 16.9 999.9 38.3* 29.3* 0.00I 999.9 100000 724050 13743 19450110 23.2 24 8.9 24 1022.5 24 9999.9 0 45.1 24 9.6 24 20.0 999.9 27.3* 18.3* 99.99 999.9 001000 724050 13743 19450111 23.9 24 14.5 24 1027.9 24 9999.9 0 4.3 24 6.9 24 13.0 999.9 30.4* 20.3* 99.99 999.9 001000 724050 13743 19450112 30.5 24 18.3 24 1023.6 24 9999.9 0 8.8 24 9.6 24 16.9 999.9 40.3* 23.4* 99.99 999.9 010000 724050 13743 19450113 40.1 24 37.7 24 1013.4 24 9999.9 0 2.6 24 7.3 24 13.0 999.9 42.4* 35.4* 99.99 999.9 111000 724050 13743 19450114 33.7 24 31.3 24 1013.0 24 9999.9 0 2.7 24 8.1 24 12.0 999.9 35.4* 31.3* 99.99 999.9 111000 724050 13743 19450115 32.1 24 29.7 24 1017.5 24 9999.9 0 2.2 24 6.2 24 9.9 999.9 34.3* 30.4* 99.99 999.9 111000 724050 13743 19450116 33.8 24 31.8 24 1012.0 24 9999.9 0 2.4 24 12.1 24 16.9 999.9 36.3* 30.4* 99.99 999.9 111000 724050 13743 19450117 33.2 24 23.3 24 1021.2 24 9999.9 0 52.5 24 16.3 24 20.0 999.9 38.3* 29.3* 0.00I 999.9 000000 724050 13743 19450118 29.8 24 11.3 24 1026.9 24 9999.9 0 49.2 24 10.0 24 13.0 999.9 37.4* 22.5* 0.00I 999.9 000000 724050 13743 19450119 32.7 24 15.6 24 1022.7 24 9999.9 0 3.5 24 5.3 24 8.9 999.9 41.4* 27.3* 99.99 999.9 011000 724050 13743 19450120 33.2 24 25.9 24 1021.2 24 9999.9 0 3.2 24 7.4 24 11.1 999.9 36.3* 29.3* 99.99 999.9 101000 724050 13743 19450121 29.1 24 17.9 24 1022.8 24 9999.9 0 15.8 24 5.3 24 8.9 999.9 38.3* 24.4* 0.00I 999.9 000000 724050 13743 19450122 33.6 24 29.9 24 1012.9 24 9999.9 0 1.1 24 2.7 24 8.0 999.9 38.3* 31.3* 99.99 999.9 110000 724050 13743 19450123 38.0 24 26.9 24 1005.1 24 9999.9 0 83.6 24 13.5 24 23.9 999.9 40.3* 35.4* 0.00I 999.9 000000 724050 13743 19450124 35.2 24 20.9 24 1002.3 24 9999.9 0 75.5 24 17.4 24 34.0 999.9 39.4* 30.4* 99.99 999.9 001000 724050 13743 19450125 19.2 24 -1.5 24 1014.8 24 9999.9 0 91.8 24 15.4 24 22.0 999.9 28.4* 12.4* 0.00I 999.9 000000 724050 13743 19450126 20.6 24 8.0 24 1016.6 24 9999.9 0 28.7 24 10.9 24 16.9 999.9 25.3* 16.3* 99.99 999.9 001000 724050 13743 19450127 25.6 24 7.5 24 1020.2 24 9999.9 0 65.0 24 11.2 24 16.9 999.9 36.3* 19.4* 0.00I 999.9 000000 724050 13743 19450128 33.7 24 13.6 24 1018.1 24 9999.9 0 28.3 24 6.4 24 8.9 999.9 39.4* 29.3* 0.00I 999.9 000000 724050 13743 19450129 34.8 24 23.3 24 1011.4 24 9999.9 0 33.3 24 12.9 24 22.0 999.9 38.3* 32.4* 99.99 999.9 010000 724050 13743 19450130 30.2 24 14.8 24 1018.6 24 9999.9 0 71.8 24 9.3 24 16.9 999.9 41.4* 21.4* 0.00I 999.9 000000 724050 13743 19450131 23.8 24 11.4 24 1020.0 24 9999.9 0 91.8 24 19.0 24 23.9 999.9 37.4* 15.4* 0.00I 999.9 000000 724050 13743 19450201 22.4 24 9.7 24 1021.6 24 9999.9 0 91.8 24 17.9 24 29.9 999.9 31.3* 17.4* 0.00I 999.9 000000 724050 13743 19450202 25.2 24 8.2 24 1021.0 24 9999.9 0 76.4 24 16.4 24 22.9 999.9 34.3* 19.4* 0.00I 999.9 000000 724050 13743 19450203 27.2 24 12.3 23 1022.3 24 9999.9 0 41.3 24 14.0 24 21.0 999.9 35.4* 20.3* 0.00I 999.9 000000 724050 13743 19450204 27.6 24 15.0 24 1025.1 24 9999.9 0 19.6 24 7.9 24 14.0 999.9 36.3* 17.4* 99.99 999.9 010000 724050 13743 19450205 37.9 24 26.7 24 1014.5 24 9999.9 0 5.6 24 12.1 24 21.0 999.9 41.4* 35.4* 99.99 999.9 010000 724050 13743 19450206 32.4 24 21.4 24 1022.5 24 9999.9 0 3.9 24 5.6 24 9.9 999.9 38.3* 26.4* 0.00I 999.9 000000 724050 13743 19450207 32.4 24 22.5 24 1020.6 24 9999.9 0 2.7 24 4.2 24 8.9 999.9 44.4* 22.5* 0.00I 999.9 000000 724050 13743 19450208 36.4 24 27.9 24 1011.5 24 9999.9 0 3.6 24 7.9 24 11.1 999.9 41.4* 32.4* 0.00I 999.9 100000 724050 13743 19450209 40.1 24 30.0 24 1010.3 24 9999.9 0 4.0 24 7.9 24 15.9 999.9 46.4* 35.4* 0.00I 999.9 000000 724050 13743 19450210 44.9 24 30.1 24 1012.6 24 9999.9 0 11.1 24 5.4 24 14.0 999.9 66.4* 31.3* 0.00I 999.9 000000 724050 13743 19450211 48.1 24 31.4 24 1014.1 24 9999.9 0 76.4 24 10.9 24 19.0 999.9 58.3* 39.4* 0.00I 999.9 000000 724050 13743 19450212 41.4 24 25.1 24 1019.8 24 9999.9 0 51.3 24 5.7 24 9.9 999.9 55.4* 28.4* 0.00I 999.9 000000 724050 13743 19450213 40.3 24 32.5 24 1013.2 24 9999.9 0 4.6 24 8.0 24 12.0 999.9 47.3* 35.4* 99.99 999.9 110000 724050 13743 19450214 37.9 24 32.7 24 1013.6 24 9999.9 0 4.0 24 10.6 24 21.0 999.9 45.3* 34.3* 99.99 999.9 110000 724050 13743 19450215 42.0 24 31.7 24 1020.5 24 9999.9 0 4.3 24 7.1 24 16.9 999.9 64.4* 31.3* 0.00I 999.9 000000 724050 13743 19450216 56.0 24 41.6 24 1013.4 24 9999.9 0 32.8 24 12.8 24 21.0 999.9 60.3* 50.4* 99.99 999.9 010000 724050 13743 19450217 38.0 24 27.1 24 1019.8 24 9999.9 0 35.6 24 8.5 24 14.0 999.9 48.4* 31.3* 99.99 999.9 111000 724050 13743 19450218 33.0 24 23.8 24 1022.1 24 9999.9 0 17.5 24 9.7 24 16.9 999.9 36.3* 30.4* 0.00I 999.9 000000 724050 13743 19450219 27.6 24 11.9 24 1032.8 24 9999.9 0 48.8 24 11.7 24 15.9 999.9 32.4* 20.3* 0.00I 999.9 000000 724050 13743 19450220 29.0 24 15.5 24 1030.8 24 9999.9 0 4.6 24 5.2 24 12.0 999.9 39.4* 20.3* 0.00I 999.9 000000 724050 13743 19450221 35.7 24 28.2 24 1025.9 24 9999.9 0 31.5 24 7.3 24 9.9 999.9 37.4* 34.3* 99.99 999.9 110000 724050 13743 19450222 40.6 24 39.2 24 1013.0 24 9999.9 0 2.4 24 6.0 24 11.1 999.9 55.4* 35.4* 99.99 999.9 110000 724050 13743 19450223 48.6 24 37.0 24 1014.3 24 9999.9 0 56.7 24 11.7 24 22.0 999.9 54.3* 40.3* 99.99 999.9 010000 724050 13743 19450224 44.6 24 26.9 24 1028.5 23 9999.9 0 87.9 24 10.5 24 22.9 999.9 54.3* 36.3* 0.00I 999.9 000000 724050 13743 19450225 45.8 24 26.0 24 1034.1 24 9999.9 0 20.4 24 6.1 24 9.9 999.9 57.4* 34.3* 0.00I 999.9 000000 724050 13743 19450226 46.4 24 37.0 24 1024.2 23 9999.9 0 50.8 24 7.9 24 9.9 999.9 50.4* 42.4* 99.99 999.9 110000 724050 13743 19450227 51.6 24 41.2 24 1011.8 24 9999.9 0 79.8 24 13.0 24 21.0 999.9 61.3* 42.4* 99.99 999.9 110000 724050 13743 19450228 33.1 24 25.2 24 1022.1 24 9999.9 0 28.3 24 9.6 24 21.0 999.9 42.4* 29.3* 99.99 999.9 111000 724050 13743 19450301 38.9 24 27.3 24 1022.0 24 9999.9 0 48.1 24 11.2 24 25.1 999.9 50.4* 33.4* 0.00I 999.9 100000 724050 13743 19450302 41.8 24 32.5 24 1020.8 24 9999.9 0 3.5 24 7.2 24 11.1 999.9 51.3* 33.4* 99.99 999.9 010000 724050 13743 19450303 56.9 24 48.5 24 1010.3 24 9999.9 0 5.3 24 10.1 24 13.0 999.9 63.3* 50.4* 99.99 999.9 010000 724050 13743 19450304 48.6 24 31.5 24 1019.7 24 9999.9 0 45.4 24 9.5 24 15.0 999.9 60.3* 41.4* 0.00I 999.9 000000 724050 13743 19450305 38.6 24 31.2 24 1024.5 24 9999.9 0 27.7 24 4.4 24 8.9 999.9 44.4* 32.4* 99.99 999.9 110000 724050 13743 19450306 49.9 24 46.4 24 1007.4 24 9999.9 0 7.2 24 8.2 24 14.0 999.9 62.4* 40.3* 99.99 999.9 110000 724050 13743 19450307 48.4 23 43.5 23 1010.0 23 9999.9 0 20.3 23 10.6 23 15.9 999.9 53.4* 43.3* 99.99 999.9 110000 724050 13743 19450308 41.2 24 24.7 24 1022.3 24 9999.9 0 80.2 24 9.5 24 15.9 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19450309 41.8 24 23.3 24 1022.2 24 9999.9 0 8.2 24 7.5 24 12.0 999.9 52.3* 35.4* 0.00I 999.9 000000 724050 13743 19450310 44.4 24 30.2 24 1018.5 24 9999.9 0 30.6 24 6.4 24 15.9 999.9 58.3* 34.3* 99.99 999.9 010000 724050 13743 19450311 44.0 23 29.9 23 1022.9 23 9999.9 0 91.5 23 8.7 23 19.0 999.9 52.3* 36.3* 0.00I 999.9 000000 724050 13743 19450312 44.2 24 33.6 24 1023.3 24 9999.9 0 14.1 24 8.6 24 13.0 999.9 59.4* 34.3* 0.00I 999.9 000000 724050 13743 19450313 48.6 24 29.9 24 1020.9 24 9999.9 0 64.4 24 9.6 24 20.0 999.9 60.3* 37.4* 99.99 999.9 010000 724050 13743 19450314 50.5 24 30.1 24 1021.7 24 9999.9 0 48.6 24 9.0 24 13.0 999.9 68.4* 37.4* 0.00I 999.9 000000 724050 13743 19450315 58.4 24 49.6 24 1018.8 24 9999.9 0 9.3 24 6.2 24 9.9 999.9 73.4* 48.4* 0.00I 999.9 100000 724050 13743 19450316 70.0 24 55.3 24 1014.7 24 9999.9 0 41.1 24 9.2 24 11.1 999.9 85.3* 60.3* 0.00I 999.9 000000 724050 13743 19450317 71.2 24 57.6 24 1015.0 24 9999.9 0 28.4 24 7.0 24 12.0 999.9 89.2* 54.3* 0.00I 999.9 000000 724050 13743 19450318 66.2 24 45.4 24 1022.2 24 9999.9 0 53.0 24 8.1 24 11.1 999.9 73.4* 58.3* 99.99 999.9 010000 724050 13743 19450319 64.6 24 48.3 24 1019.4 24 9999.9 0 40.8 24 9.3 24 12.0 999.9 86.4* 51.3* 99.99 999.9 010000 724050 13743 19450320 74.1 24 56.7 24 1009.4 24 9999.9 0 36.9 24 8.9 24 15.9 999.9 82.4* 61.3* 0.00I 999.9 000000 724050 13743 19450321 67.8 24 55.2 24 1000.5 24 9999.9 0 36.6 24 10.1 24 26.0 999.9 76.3* 60.3* 99.99 999.9 010000 724050 13743 19450322 45.6 24 36.6 24 1000.8 24 9999.9 0 76.1 24 15.4 24 22.0 999.9 57.4* 41.4* 99.99 999.9 010000 724050 13743 19450323 52.2 24 34.5 24 1007.7 24 9999.9 0 67.9 24 11.0 24 22.0 999.9 71.2* 41.4* 0.00I 999.9 000000 724050 13743 19450324 61.0 24 38.1 24 1011.7 24 9999.9 0 16.1 24 4.9 24 11.1 999.9 75.4* 48.4* 0.00I 999.9 000000 724050 13743 19450325 58.0 24 36.2 24 1020.5 24 9999.9 0 31.6 24 3.9 24 9.9 999.9 74.3* 42.4* 0.00I 999.9 000000 724050 13743 19450326 58.2 24 41.5 24 1020.2 24 9999.9 0 75.9 24 5.5 24 9.9 999.9 74.3* 43.3* 0.00I 999.9 000000 724050 13743 19450327 67.6 24 50.6 24 1016.1 24 9999.9 0 71.8 24 6.1 24 9.9 999.9 81.3* 58.3* 0.00I 999.9 000000 724050 13743 19450328 69.2 24 49.7 24 1019.3 24 9999.9 0 39.3 24 6.4 24 8.9 999.9 86.4* 54.3* 0.00I 999.9 000000 724050 13743 19450329 74.4 24 49.6 24 1017.3 24 9999.9 0 29.5 24 7.1 24 13.0 999.9 88.3* 60.3* 0.00I 999.9 000000 724050 13743 19450330 71.6 24 56.3 24 1015.3 24 9999.9 0 52.9 24 8.0 24 19.0 999.9 80.2* 65.3* 99.99 999.9 010000 724050 13743 19450331 68.3 24 56.6 24 1007.7 24 9999.9 0 41.4 24 11.8 24 29.9 999.9 83.3* 59.4* 0.00I 999.9 000000 724050 13743 19450401 61.1 24 41.3 24 1017.4 24 9999.9 0 72.0 24 9.6 24 26.0 999.9 74.3* 49.3* 0.00I 999.9 000000 724050 13743 19450402 65.3 24 54.8 24 1013.8 24 9999.9 0 40.8 24 9.5 24 13.0 999.9 74.3* 57.4* 99.99 999.9 010000 724050 13743 19450403 69.4 24 56.7 24 1012.4 23 9999.9 0 60.3 24 8.6 24 16.9 999.9 79.3* 61.3* 0.00I 999.9 000000 724050 13743 19450404 66.0 24 54.9 24 1018.5 24 9999.9 0 41.9 24 8.3 24 14.0 999.9 75.4* 57.4* 0.00I 999.9 000000 724050 13743 19450405 59.8 24 43.3 24 1012.8 24 9999.9 0 57.5 24 19.4 24 29.9 999.9 72.3* 47.3* 99.99 999.9 010000 724050 13743 19450406 47.0 24 20.7 24 1032.7 24 9999.9 0 76.0 24 8.9 24 16.9 999.9 58.3* 36.3* 0.00I 999.9 000000 724050 13743 19450407 50.5 24 29.7 24 1036.5 24 9999.9 0 40.3 24 7.8 24 13.0 999.9 64.4* 36.3* 0.00I 999.9 000000 724050 13743 19450408 54.8 24 40.7 24 1030.2 24 9999.9 0 51.4 24 4.8 24 9.9 999.9 70.3* 40.3* 0.00I 999.9 000000 724050 13743 19450409 61.2 24 44.7 24 1026.8 24 9999.9 0 48.0 24 6.2 24 9.9 999.9 75.4* 47.3* 0.00I 999.9 000000 724050 13743 19450410 61.5 24 44.2 24 1028.0 24 9999.9 0 44.5 24 7.1 24 9.9 999.9 75.4* 48.4* 0.00I 999.9 000000 724050 13743 19450411 60.1 24 53.8 24 1027.5 24 9999.9 0 24.9 24 6.7 24 9.9 999.9 70.3* 54.3* 99.99 999.9 110000 724050 13743 19450412 66.0 24 58.9 24 1024.3 24 9999.9 0 25.9 23 3.6 24 7.0 999.9 77.4* 60.3* 99.99 999.9 110000 724050 13743 19450413 70.1 24 57.6 24 1020.6 24 9999.9 0 59.5 24 6.9 24 14.0 999.9 87.3* 57.4* 0.00I 999.9 100000 724050 13743 19450414 72.9 24 58.0 24 1016.2 24 9999.9 0 21.3 24 7.9 24 15.0 999.9 87.3* 64.4* 99.99 999.9 010000 724050 13743 19450415 58.5 24 49.9 24 1020.1 24 9999.9 0 25.9 24 7.0 23 11.1 999.9 70.3* 51.3* 99.99 999.9 110000 724050 13743 19450416 53.5 24 49.4 24 1022.7 24 9999.9 0 5.4 24 6.4 24 9.9 999.9 56.3* 50.4* 99.99 999.9 110000 724050 13743 19450417 62.8 24 59.5 24 1014.9 24 9999.9 0 15.6 24 9.2 24 14.0 999.9 71.2* 54.3* 99.99 999.9 110010 724050 13743 19450418 61.8 24 44.7 24 1014.8 24 9999.9 0 52.6 24 9.8 24 15.9 999.9 75.4* 51.3* 99.99 999.9 010000 724050 13743 19450419 53.5 24 27.8 24 1023.6 24 9999.9 0 95.6 24 11.8 24 22.0 999.9 65.3* 44.4* 0.00I 999.9 000000 724050 13743 19450420 53.9 24 42.6 24 1021.2 24 9999.9 0 45.4 24 9.7 24 13.0 999.9 62.4* 48.4* 99.99 999.9 010000 724050 13743 19450421 58.5 23 45.8 23 1014.5 23 9999.9 0 17.3 23 8.4 23 22.9 999.9 75.4* 44.4* 99.99 999.9 010000 724050 13743 19450422 52.7 24 31.2 24 1021.1 24 9999.9 0 80.2 24 12.4 24 29.9 999.9 63.3* 42.4* 0.00I 999.9 000000 724050 13743 19450423 52.9 24 35.8 24 1020.9 24 9999.9 0 40.9 24 7.3 24 11.1 999.9 65.3* 44.4* 0.00I 999.9 000000 724050 13743 19450424 56.5 24 51.2 24 1011.9 24 9999.9 0 20.5 24 7.9 24 12.0 999.9 63.3* 51.3* 99.99 999.9 110000 724050 13743 19450425 62.4 24 60.0 23 1005.4 24 9999.9 0 14.8 24 6.3 24 12.0 999.9 69.3* 59.4* 99.99 999.9 110000 724050 13743 19450426 67.2 24 59.5 24 1002.8 24 9999.9 0 31.2 24 5.6 24 15.9 999.9 85.3* 54.3* 99.99 999.9 110010 724050 13743 19450427 57.3 24 37.5 24 1008.8 24 9999.9 0 95.6 24 19.0 24 26.0 999.9 67.3* 49.3* 0.00I 999.9 000000 724050 13743 19450428 51.7 24 31.5 24 1014.4 24 9999.9 0 72.7 24 12.8 24 16.9 999.9 62.4* 42.4* 0.00I 999.9 000000 724050 13743 19450429 53.5 24 38.7 24 1011.9 24 9999.9 0 40.8 24 6.7 24 9.9 999.9 64.4* 44.4* 0.00I 999.9 000000 724050 13743 19450430 56.0 24 38.5 24 1012.6 24 9999.9 0 61.1 24 10.3 24 16.9 999.9 64.4* 47.3* 0.00I 999.9 000000 724050 13743 19450501 51.8 24 37.8 23 1012.5 24 9999.9 0 56.4 24 13.7 24 26.0 999.9 56.3* 46.4* 99.99 999.9 010000 724050 13743 19450502 49.8 24 31.5 24 1016.2 24 9999.9 0 33.1 24 6.9 24 11.1 999.9 63.3* 36.3* 0.00I 999.9 000000 724050 13743 19450503 50.9 24 45.3 24 1010.5 24 9999.9 0 20.8 24 8.8 24 12.0 999.9 54.3* 48.4* 99.99 999.9 110000 724050 13743 19450504 53.1 24 46.7 24 1003.2 24 9999.9 0 32.4 24 6.7 24 13.0 999.9 59.4* 47.3* 99.99 999.9 110000 724050 13743 19450505 52.2 24 41.3 24 1004.6 24 9999.9 0 39.9 24 7.1 24 15.9 999.9 62.4* 43.3* 99.99 999.9 110000 724050 13743 19450506 52.6 24 39.8 24 1007.7 24 9999.9 0 48.9 24 8.4 24 15.9 999.9 59.4* 44.4* 0.00I 999.9 000000 724050 13743 19450507 60.1 24 42.9 24 1010.5 24 9999.9 0 43.3 24 5.6 24 9.9 999.9 79.3* 45.3* 0.00I 999.9 000000 724050 13743 19450508 65.0 24 48.2 24 1007.1 24 9999.9 0 71.8 24 12.2 24 22.9 999.9 70.3* 58.3* 99.99 999.9 010000 724050 13743 19450509 60.0 24 37.9 24 1017.6 24 9999.9 0 60.1 24 8.1 24 15.9 999.9 72.3* 51.3* 0.00I 999.9 000000 724050 13743 19450510 58.3 24 49.8 24 1010.6 24 9999.9 0 17.5 24 8.7 24 23.9 999.9 63.3* 54.3* 99.99 999.9 010000 724050 13743 19450511 53.1 24 33.5 24 1014.0 24 9999.9 0 99.4 24 15.2 24 26.0 999.9 64.4* 43.3* 0.00I 999.9 000000 724050 13743 19450512 59.0 24 41.7 24 1013.6 24 9999.9 0 52.1 24 7.7 24 15.9 999.9 76.3* 45.3* 0.00I 999.9 000000 724050 13743 19450513 69.1 24 56.5 24 1005.7 24 9999.9 0 45.2 24 7.6 24 12.0 999.9 79.3* 61.3* 99.99 999.9 010000 724050 13743 19450514 69.2 24 50.7 24 1010.8 24 9999.9 0 45.0 24 6.4 24 9.9 999.9 83.3* 55.4* 0.00I 999.9 000000 724050 13743 19450515 73.5 24 60.4 24 1010.4 23 9999.9 0 67.8 24 7.6 24 12.0 999.9 89.2* 62.4* 0.00I 999.9 100000 724050 13743 19450516 76.1 24 62.9 24 1011.1 24 9999.9 0 64.7 24 6.0 24 8.9 999.9 90.3* 64.4* 0.00I 999.9 000000 724050 13743 19450517 75.3 24 65.0 24 1010.8 24 9999.9 0 80.2 24 9.1 24 15.9 999.9 84.4* 63.3* 99.99 999.9 010010 724050 13743 19450518 69.0 24 61.4 24 1005.1 24 9999.9 0 37.1 24 6.4 24 14.0 999.9 80.2* 63.3* 99.99 999.9 110000 724050 13743 19450519 61.8 24 45.3 24 1009.9 24 9999.9 0 79.9 24 17.1 24 22.9 999.9 69.3* 56.3* 99.99 999.9 010000 724050 13743 19450520 62.1 24 37.5 24 1018.4 24 9999.9 0 99.4 24 6.1 24 14.0 999.9 73.4* 49.3* 0.00I 999.9 000000 724050 13743 19450521 67.3 24 49.2 24 1015.2 24 9999.9 0 95.6 24 10.0 24 14.0 999.9 86.4* 55.4* 0.00I 999.9 000000 724050 13743 19450522 75.5 24 61.2 24 1010.3 24 9999.9 0 83.9 24 12.2 24 29.9 999.9 87.3* 68.4* 99.99 999.9 010010 724050 13743 19450523 69.2 24 43.2 24 1016.9 24 9999.9 0 72.8 24 12.3 24 16.9 999.9 76.3* 60.3* 0.00I 999.9 000000 724050 13743 19450524 63.6 24 36.8 24 1020.8 24 9999.9 0 99.4 24 10.1 24 14.0 999.9 73.4* 53.4* 0.00I 999.9 000000 724050 13743 19450525 64.0 23 44.7 23 1021.3 23 9999.9 0 41.5 23 4.8 23 9.9 999.9 78.3* 53.4* 0.00I 999.9 000000 724050 13743 19450526 63.0 24 52.5 24 1020.2 24 9999.9 0 25.5 24 7.2 24 9.9 999.9 67.3* 59.4* 99.99 999.9 010000 724050 13743 19450527 62.2 24 59.5 24 1019.8 24 9999.9 0 4.1 24 8.2 24 13.0 999.9 67.3* 59.4* 99.99 999.9 110000 724050 13743 19450528 69.6 24 63.0 24 1016.6 24 9999.9 0 32.9 24 7.6 24 14.0 999.9 81.3* 62.4* 99.99 999.9 110010 724050 13743 19450529 73.7 24 58.8 24 1008.7 24 9999.9 0 72.4 24 8.3 24 12.0 999.9 80.2* 66.4* 0.00I 999.9 000010 724050 13743 19450530 69.9 24 46.9 24 1008.4 24 9999.9 0 61.1 24 10.7 24 19.0 999.9 78.3* 63.3* 99.99 999.9 010000 724050 13743 19450531 69.8 24 43.2 24 1009.7 24 9999.9 0 64.5 24 9.7 24 21.0 999.9 78.3* 62.4* 0.00I 999.9 000000 724050 13743 19450601 66.1 24 41.6 24 1012.5 24 9999.9 0 84.2 24 6.9 24 9.9 999.9 73.4* 57.4* 0.00I 999.9 000000 724050 13743 19450602 65.8 24 52.4 24 1007.2 24 9999.9 0 60.5 24 7.6 24 13.0 999.9 86.4* 56.3* 99.99 999.9 010000 724050 13743 19450603 70.3 24 59.2 24 1004.2 24 9999.9 0 56.8 24 11.6 24 26.0 999.9 77.4* 65.3* 99.99 999.9 110000 724050 13743 19450604 61.2 24 46.7 24 1011.6 24 9999.9 0 95.6 24 12.4 24 21.0 999.9 66.4* 56.3* 0.00I 999.9 000000 724050 13743 19450605 57.6 24 40.4 24 1016.9 24 9999.9 0 99.4 24 12.0 24 16.9 999.9 64.4* 52.3* 0.00I 999.9 000000 724050 13743 19450606 58.6 24 40.9 24 1021.0 24 9999.9 0 64.5 24 7.6 24 11.1 999.9 70.3* 48.4* 0.00I 999.9 000000 724050 13743 19450607 62.5 24 45.5 24 1020.3 24 9999.9 0 16.7 24 3.7 24 8.0 999.9 74.3* 50.4* 0.00I 999.9 100000 724050 13743 19450608 65.8 24 53.4 24 1017.0 24 9999.9 0 14.5 24 6.2 24 12.0 999.9 70.3* 60.3* 0.00I 999.9 000000 724050 13743 19450609 65.6 24 56.4 24 1015.9 24 9999.9 0 25.1 24 4.9 24 8.9 999.9 74.3* 56.3* 99.99 999.9 110000 724050 13743 19450610 71.3 24 64.5 24 1013.7 24 9999.9 0 32.8 24 5.2 24 7.0 999.9 82.4* 65.3* 99.99 999.9 110010 724050 13743 19450611 74.7 24 67.4 24 1012.8 24 9999.9 0 40.5 24 7.0 24 14.0 999.9 91.2* 66.4* 99.99 999.9 110010 724050 13743 19450612 78.5 24 66.2 24 1013.9 24 9999.9 0 72.5 24 6.9 24 13.0 999.9 88.3* 71.2* 0.00I 999.9 000000 724050 13743 19450613 78.7 24 68.2 24 1015.3 24 9999.9 0 41.3 24 5.2 24 11.1 999.9 92.3* 70.3* 99.99 999.9 010010 724050 13743 19450614 81.5 24 69.4 24 1018.1 24 9999.9 0 56.0 24 4.6 24 8.0 999.9 95.4* 70.3* 0.00I 999.9 000000 724050 13743 19450615 83.7 23 69.6 23 1018.7 23 9999.9 0 63.1 23 6.8 23 8.9 999.9 94.3* 74.3* 0.00I 999.9 000000 724050 13743 19450616 85.1 24 70.9 24 1016.9 24 9999.9 0 48.6 24 6.7 24 9.9 999.9 95.4* 73.4* 0.00I 999.9 000000 724050 13743 19450617 85.3 24 69.8 24 1015.7 24 9999.9 0 52.7 24 4.6 24 9.9 999.9 96.3* 75.4* 0.00I 999.9 000000 724050 13743 19450618 80.7 24 67.5 24 1013.9 24 9999.9 0 61.2 24 5.9 24 9.9 999.9 93.4* 71.2* 99.99 999.9 010000 724050 13743 19450619 73.2 24 67.1 24 1015.5 24 9999.9 0 26.3 24 6.4 24 14.0 999.9 78.3* 68.4* 99.99 999.9 010010 724050 13743 19450620 74.8 24 65.2 24 1015.5 24 9999.9 0 22.4 24 5.8 24 9.9 999.9 85.3* 68.4* 99.99 999.9 010000 724050 13743 19450621 79.1 24 66.7 24 1015.4 24 9999.9 0 40.2 24 6.1 24 9.9 999.9 92.3* 68.4* 0.00I 999.9 000000 724050 13743 19450622 74.1 24 63.4 24 1015.4 24 9999.9 0 33.1 24 9.5 24 16.9 999.9 83.3* 67.3* 99.99 999.9 110010 724050 13743 19450623 76.4 24 57.2 24 1015.8 24 9999.9 0 76.4 24 7.5 24 15.0 999.9 90.3* 62.4* 0.00I 999.9 000000 724050 13743 19450624 82.4 24 63.0 24 1013.1 24 9999.9 0 29.2 24 6.0 24 9.9 999.9 94.3* 71.2* 0.00I 999.9 000000 724050 13743 19450625 79.9 24 69.7 24 1010.1 24 9999.9 0 9.2 24 4.1 24 9.9 999.9 86.4* 72.3* 0.00I 999.9 000000 724050 13743 19450626 77.3 24 67.7 24 1006.5 24 9999.9 0 17.5 24 9.2 24 21.0 999.9 85.3* 71.2* 0.00I 999.9 000000 724050 13743 19450627 76.9 24 56.6 24 1013.4 24 9999.9 0 64.7 24 5.0 24 13.0 999.9 88.3* 63.3* 0.00I 999.9 000000 724050 13743 19450628 81.9 24 67.1 24 1012.1 24 9999.9 0 68.4 24 6.6 24 9.9 999.9 95.4* 71.2* 0.00I 999.9 000000 724050 13743 19450629 84.0 24 70.7 24 1011.9 24 9999.9 0 61.1 24 6.1 24 11.1 999.9 97.3* 71.2* 0.00I 999.9 000000 724050 13743 19450630 89.0 24 73.7 24 1013.7 24 9999.9 0 44.3 24 5.8 24 8.9 999.9 99.3* 79.3* 0.00I 999.9 000000 724050 13743 19450701 89.3 24 72.8 24 1014.2 24 9999.9 0 52.8 24 5.6 24 9.9 999.9 99.3* 78.3* 0.00I 999.9 000000 724050 13743 19450702 81.4 24 71.8 24 1013.2 24 9999.9 0 60.9 24 6.8 24 15.9 999.9 95.4* 72.3* 99.99 999.9 010010 724050 13743 19450703 74.0 24 59.4 24 1017.5 24 9999.9 0 17.2 24 10.1 24 14.0 999.9 82.4* 67.3* 0.00I 999.9 000000 724050 13743 19450704 74.7 24 59.8 24 1020.1 24 9999.9 0 8.2 24 4.4 24 9.9 999.9 86.4* 63.3* 0.00I 999.9 000000 724050 13743 19450705 76.9 24 68.0 24 1016.7 24 9999.9 0 8.9 24 8.6 24 15.9 999.9 87.3* 70.3* 99.99 999.9 010010 724050 13743 19450706 77.3 24 70.6 24 1012.9 24 9999.9 0 9.7 24 8.1 24 12.0 999.9 87.3* 73.4* 99.99 999.9 010000 724050 13743 19450707 78.3 24 61.7 24 1015.2 24 9999.9 0 9.7 24 7.2 24 13.0 999.9 87.3* 71.2* 0.00I 999.9 000000 724050 13743 19450708 77.9 24 60.6 24 1016.9 24 9999.9 0 7.5 24 5.3 24 11.1 999.9 91.2* 66.4* 0.00I 999.9 000000 724050 13743 19450709 76.1 24 67.6 24 1015.5 24 9999.9 0 8.3 24 6.5 24 12.0 999.9 91.2* 68.4* 99.99 999.9 010010 724050 13743 19450710 75.2 24 67.4 24 1009.8 24 9999.9 0 9.8 24 8.4 24 11.1 999.9 90.3* 67.3* 99.99 999.9 010010 724050 13743 19450711 73.0 24 49.0 24 1014.7 24 9999.9 0 13.8 24 10.4 24 15.9 999.9 77.4* 66.4* 99.99 999.9 010000 724050 13743 19450712 68.9 24 52.3 24 1020.6 24 9999.9 0 7.7 24 5.6 24 9.9 999.9 81.3* 55.4* 0.00I 999.9 000000 724050 13743 19450713 73.7 24 58.1 24 1019.9 24 9999.9 0 13.8 24 6.8 24 9.9 999.9 89.2* 61.3* 0.00I 999.9 000000 724050 13743 19450714 74.2 24 68.8 24 1016.8 24 9999.9 0 8.2 24 7.6 24 13.0 999.9 82.4* 70.3* 99.99 999.9 110000 724050 13743 19450715 74.3 24 71.2 24 1011.7 24 9999.9 0 8.5 24 10.6 24 15.9 999.9 75.4* 73.4* 99.99 999.9 010000 724050 13743 19450716 73.1 24 61.6 24 1017.5 24 9999.9 0 12.5 24 7.3 24 9.9 999.9 79.3* 69.3* 0.00I 999.9 000000 724050 13743 19450717 69.9 24 65.7 24 1022.5 24 9999.9 0 5.5 24 5.6 24 11.1 999.9 73.4* 67.3* 99.99 999.9 110000 724050 13743 19450718 70.5 24 67.2 24 1023.1 24 9999.9 0 4.8 24 5.5 24 12.0 999.9 79.3* 66.4* 99.99 999.9 110000 724050 13743 19450719 73.8 24 71.2 24 1023.0 24 9999.9 0 5.4 24 3.5 24 8.9 999.9 79.3* 70.3* 99.99 999.9 110010 724050 13743 19450720 76.8 24 70.5 24 1020.7 24 9999.9 0 7.3 24 2.8 24 7.0 999.9 87.3* 69.3* 0.00I 999.9 100000 724050 13743 19450721 78.4 24 71.7 24 1016.1 24 9999.9 0 6.1 24 4.7 24 12.0 999.9 88.3* 71.2* 0.00I 999.9 100000 724050 13743 19450722 75.8 24 71.1 24 1011.5 24 9999.9 0 5.1 24 3.6 24 9.9 999.9 88.3* 70.3* 99.99 999.9 110010 724050 13743 19450723 75.7 24 69.6 24 1009.6 24 9999.9 0 4.6 24 4.5 24 8.0 999.9 83.3* 71.2* 0.00I 999.9 100000 724050 13743 19450724 77.0 24 72.2 24 1012.3 24 9999.9 0 3.5 24 5.4 24 9.9 999.9 83.3* 73.4* 99.99 999.9 110000 724050 13743 19450725 78.1 24 71.7 24 1012.3 24 9999.9 0 6.6 24 4.2 24 9.9 999.9 89.2* 70.3* 0.00I 999.9 100000 724050 13743 19450726 83.5 24 75.9 24 1008.9 24 9999.9 0 5.3 24 6.2 24 8.9 999.9 92.3* 77.4* 0.00I 999.9 000000 724050 13743 19450727 78.3 24 70.5 24 1010.8 24 9999.9 0 7.0 24 7.3 24 13.0 999.9 86.4* 71.2* 99.99 999.9 010010 724050 13743 19450728 78.4 24 72.7 24 1010.6 24 9999.9 0 5.2 24 7.7 24 9.9 999.9 87.3* 73.4* 99.99 999.9 110000 724050 13743 19450729 74.9 24 72.3 24 1010.6 24 9999.9 0 8.3 24 7.5 24 9.9 999.9 80.2* 71.2* 99.99 999.9 010010 724050 13743 19450730 77.1 24 70.8 24 1018.4 23 9999.9 0 6.7 24 6.0 24 11.1 999.9 91.2* 70.3* 0.00I 999.9 000010 724050 13743 19450731 79.0 24 71.9 24 1021.5 24 9999.9 0 5.5 24 6.7 23 8.9 999.9 89.2* 73.4* 99.99 999.9 110010 724050 13743 19450801 76.1 24 69.0 24 1017.1 24 9999.9 0 6.3 24 5.8 24 9.9 999.9 88.3* 69.3* 99.99 999.9 010010 724050 13743 19450802 76.8 24 69.5 24 1014.8 24 9999.9 0 7.2 24 6.8 24 9.9 999.9 87.3* 71.2* 99.99 999.9 110000 724050 13743 19450803 79.1 24 72.1 24 1011.7 24 9999.9 0 6.1 24 5.2 24 8.9 999.9 91.2* 70.3* 99.99 999.9 010010 724050 13743 19450804 74.0 24 60.0 24 1015.3 24 9999.9 0 14.2 24 7.2 24 13.0 999.9 82.4* 64.4* 0.00I 999.9 000000 724050 13743 19450805 72.7 24 59.8 24 1019.6 24 9999.9 0 9.8 24 5.0 24 8.9 999.9 83.3* 64.4* 0.00I 999.9 000000 724050 13743 19450806 75.5 24 68.2 24 1012.7 24 9999.9 0 8.6 24 8.7 24 15.0 999.9 82.4* 71.2* 99.99 999.9 010000 724050 13743 19450807 78.3 24 68.3 24 1007.5 24 9999.9 0 8.4 24 7.7 24 16.9 999.9 86.4* 70.3* 99.99 999.9 010000 724050 13743 19450808 73.6 24 60.1 24 1012.9 24 9999.9 0 12.7 24 7.6 24 12.0 999.9 80.2* 67.3* 0.00I 999.9 000000 724050 13743 19450809 73.2 24 61.4 24 1018.5 24 9999.9 0 8.1 24 4.2 24 11.1 999.9 82.4* 63.3* 99.99 999.9 110010 724050 13743 19450810 73.0 24 62.0 24 1019.4 24 9999.9 0 8.6 24 3.0 24 8.0 999.9 86.4* 63.3* 0.00I 999.9 000000 724050 13743 19450811 77.2 24 64.3 24 1019.6 24 9999.9 0 7.2 24 5.5 24 8.9 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19450812 75.0 24 64.7 24 1020.9 24 9999.9 0 8.9 24 5.4 24 9.9 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19450813 76.7 24 68.2 24 1021.6 24 9999.9 0 9.1 24 5.7 24 8.9 999.9 88.3* 68.4* 0.00I 999.9 000000 724050 13743 19450814 79.0 24 70.9 24 1018.6 24 9999.9 0 46.1 24 4.9 24 8.9 999.9 88.3* 72.3* 0.00I 999.9 000000 724050 13743 19450815 80.7 24 72.1 24 1010.6 24 9999.9 0 24.2 24 9.4 24 19.0 999.9 91.2* 75.4* 99.99 999.9 010000 724050 13743 19450816 72.3 24 58.0 24 1014.2 24 9999.9 0 11.6 24 7.2 24 9.9 999.9 80.2* 64.4* 0.00I 999.9 000000 724050 13743 19450817 71.6 24 60.3 24 1013.3 24 9999.9 0 8.8 24 4.5 24 8.9 999.9 81.3* 64.4* 0.00I 999.9 000000 724050 13743 19450818 73.7 24 63.0 24 1014.3 24 9999.9 0 9.3 24 5.2 24 12.0 999.9 84.4* 67.3* 99.99 999.9 010000 724050 13743 19450819 75.1 22 62.8 22 1018.9 22 9999.9 0 5.2 22 4.8 22 8.9 999.9 86.4* 64.4* 0.00I 999.9 100000 724050 13743 19450820 75.2 24 64.4 24 1021.0 24 9999.9 0 4.1 24 3.7 24 8.9 999.9 86.4* 65.3* 0.00I 999.9 100000 724050 13743 19450821 76.6 24 66.0 24 1017.8 24 9999.9 0 6.9 24 3.6 24 8.0 999.9 89.2* 67.3* 0.00I 999.9 100000 724050 13743 19450822 80.9 24 67.4 24 1013.4 24 9999.9 0 6.8 24 4.4 24 12.0 999.9 95.4* 70.3* 0.00I 999.9 100000 724050 13743 19450823 72.1 24 65.1 24 1016.4 24 9999.9 0 5.3 24 8.3 24 14.0 999.9 82.4* 67.3* 99.99 999.9 110000 724050 13743 19450824 66.9 24 65.1 24 1016.8 24 9999.9 0 3.1 24 6.1 24 9.9 999.9 69.3* 64.4* 99.99 999.9 110000 724050 13743 19450825 69.0 24 62.9 24 1011.6 24 9999.9 0 5.2 24 6.8 24 9.9 999.9 81.3* 62.4* 99.99 999.9 110000 724050 13743 19450826 69.6 24 52.1 24 1011.1 24 9999.9 0 12.1 24 14.8 24 22.9 999.9 76.3* 61.3* 99.99 999.9 010000 724050 13743 19450827 67.1 24 46.9 24 1017.6 24 9999.9 0 12.6 24 9.1 24 11.1 999.9 78.3* 56.3* 0.00I 999.9 000000 724050 13743 19450828 72.1 24 57.0 24 1017.7 24 9999.9 0 7.1 24 3.3 24 8.9 999.9 90.3* 58.3* 0.00I 999.9 000000 724050 13743 19450829 80.3 24 65.1 24 1018.4 24 9999.9 0 7.2 24 5.4 24 9.9 999.9 97.3* 66.4* 0.00I 999.9 000000 724050 13743 19450830 82.9 24 68.8 24 1019.5 24 9999.9 0 6.7 24 4.1 24 7.0 999.9 96.3* 72.3* 0.00I 999.9 000000 724050 13743 19450831 79.5 24 68.5 24 1021.6 24 9999.9 0 8.7 24 6.5 24 15.9 999.9 91.2* 67.3* 99.99 999.9 010010 724050 13743 19450901 80.9 24 69.3 24 1017.2 24 9999.9 0 11.4 24 10.1 24 15.0 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19450902 76.5 24 66.4 24 1012.6 24 9999.9 0 9.2 24 8.9 24 19.0 999.9 83.3* 70.3* 99.99 999.9 010000 724050 13743 19450903 71.1 24 59.7 24 1021.1 24 9999.9 0 9.9 24 5.4 24 9.9 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19450904 69.9 24 61.4 23 1023.7 24 9999.9 0 8.6 24 6.4 24 9.9 999.9 79.3* 54.3* 0.00I 999.9 100000 724050 13743 19450905 71.0 24 61.5 24 1023.4 24 9999.9 0 8.4 24 3.9 24 8.9 999.9 82.4* 62.4* 0.00I 999.9 100000 724050 13743 19450906 73.0 24 66.7 24 1022.8 24 9999.9 0 7.9 24 6.7 24 8.9 999.9 81.3* 66.4* 99.99 999.9 110000 724050 13743 19450907 76.4 24 70.4 24 1020.7 24 9999.9 0 9.6 24 4.5 24 8.9 999.9 88.3* 71.2* 99.99 999.9 110000 724050 13743 19450908 77.6 24 70.5 24 1017.1 24 9999.9 0 7.5 24 4.0 24 8.9 999.9 89.2* 69.3* 0.00I 999.9 100000 724050 13743 19450909 78.1 24 72.5 24 1015.1 24 9999.9 0 6.5 24 4.5 24 12.0 999.9 88.3* 72.3* 99.99 999.9 110010 724050 13743 19450910 78.4 24 70.7 24 1012.3 24 9999.9 0 7.6 24 3.6 24 8.9 999.9 90.3* 70.3* 0.00I 999.9 100000 724050 13743 19450911 78.5 24 70.1 24 1006.3 24 9999.9 0 8.9 24 7.7 24 13.0 999.9 86.4* 73.4* 0.00I 999.9 100000 724050 13743 19450912 72.4 24 56.2 24 1011.8 24 9999.9 0 10.3 24 8.9 24 14.0 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19450913 70.4 24 57.3 24 1018.0 24 9999.9 0 6.4 24 3.7 24 9.9 999.9 83.3* 59.4* 0.00I 999.9 100000 724050 13743 19450914 78.3 24 70.1 24 1016.3 24 9999.9 0 9.0 24 8.7 24 14.0 999.9 90.3* 71.2* 99.99 999.9 010000 724050 13743 19450915 71.4 24 67.4 24 1015.7 24 9999.9 0 7.7 24 7.5 24 18.1 999.9 78.3* 67.3* 99.99 999.9 110000 724050 13743 19450916 67.6 24 56.9 24 1022.8 24 9999.9 0 8.5 24 7.9 24 9.9 999.9 71.2* 63.3* 0.00I 999.9 000000 724050 13743 19450917 59.7 24 55.7 24 1025.4 24 9999.9 0 4.2 24 10.7 24 15.9 999.9 65.3* 56.3* 99.99 999.9 110000 724050 13743 19450918 67.2 24 63.0 24 1016.2 24 9999.9 0 6.5 24 12.3 24 19.0 999.9 78.3* 58.3* 99.99 999.9 110000 724050 13743 19450919 67.3 24 58.3 24 1016.3 24 9999.9 0 9.4 24 9.2 24 15.0 999.9 72.3* 63.3* 0.00I 999.9 000000 724050 13743 19450920 69.1 24 60.9 24 1016.8 24 9999.9 0 4.7 24 4.7 24 9.9 999.9 81.3* 60.3* 0.00I 999.9 100000 724050 13743 19450921 73.9 24 63.4 24 1016.3 24 9999.9 0 8.0 24 5.0 24 13.0 999.9 84.4* 65.3* 99.99 999.9 110000 724050 13743 19450922 65.6 24 48.9 24 1024.9 24 9999.9 0 13.1 24 5.7 24 9.9 999.9 75.4* 54.3* 0.00I 999.9 000000 724050 13743 19450923 63.5 24 56.6 24 1026.5 24 9999.9 0 9.6 24 4.8 24 8.9 999.9 70.3* 58.3* 99.99 999.9 010000 724050 13743 19450924 70.6 24 67.0 24 1023.9 24 9999.9 0 5.7 24 3.2 24 7.0 999.9 81.3* 65.3* 99.99 999.9 110000 724050 13743 19450925 76.9 24 69.7 24 1021.7 24 9999.9 0 7.0 24 5.3 24 14.0 999.9 89.2* 68.4* 0.00I 999.9 000000 724050 13743 19450926 78.1 24 70.0 24 1021.9 24 9999.9 0 8.8 24 7.1 24 12.0 999.9 85.3* 71.2* 0.00I 999.9 000000 724050 13743 19450927 75.7 24 68.0 24 1024.3 24 9999.9 0 5.5 24 4.0 24 8.9 999.9 87.3* 69.3* 0.00I 999.9 000000 724050 13743 19450928 77.4 24 70.0 24 1023.9 24 9999.9 0 9.9 24 6.6 24 9.9 999.9 88.3* 70.3* 0.00I 999.9 000000 724050 13743 19450929 78.5 24 70.1 24 1021.4 24 9999.9 0 12.1 24 7.4 24 9.9 999.9 90.3* 72.3* 99.99 999.9 010010 724050 13743 19450930 57.7 24 48.9 24 1030.3 24 9999.9 0 11.2 24 9.9 24 15.9 999.9 74.3* 53.4* 99.99 999.9 010000 724050 13743 19451001 61.7 24 57.5 24 1027.6 24 9999.9 0 8.0 24 5.5 24 12.0 999.9 72.3* 54.3* 99.99 999.9 010000 724050 13743 19451002 67.7 24 60.3 24 1013.7 24 9999.9 0 9.8 24 13.2 24 16.9 999.9 70.3* 60.3* 99.99 999.9 010000 724050 13743 19451003 56.4 24 38.4 24 1020.7 24 9999.9 0 13.2 24 12.0 24 16.9 999.9 61.3* 50.4* 0.00I 999.9 000000 724050 13743 19451004 49.8 24 35.0 24 1030.7 24 9999.9 0 10.1 24 5.7 24 9.9 999.9 61.3* 37.4* 0.00I 999.9 000000 724050 13743 19451005 54.0 24 45.1 24 1024.9 24 9999.9 0 6.2 24 4.9 24 9.9 999.9 66.4* 44.4* 0.00I 999.9 000000 724050 13743 19451006 61.3 24 58.0 24 1017.0 24 9999.9 0 3.6 24 4.6 24 9.9 999.9 65.3* 58.3* 99.99 999.9 110000 724050 13743 19451007 64.7 24 57.9 24 1009.0 24 9999.9 0 6.9 24 6.0 24 20.0 999.9 71.2* 62.4* 99.99 999.9 110000 724050 13743 19451008 61.3 24 48.9 24 1008.6 24 9999.9 0 8.4 24 7.0 24 15.9 999.9 73.4* 50.4* 0.00I 999.9 000000 724050 13743 19451009 56.0 24 44.1 24 1009.5 24 9999.9 0 14.0 24 13.2 24 21.0 999.9 66.4* 48.4* 99.99 999.9 010000 724050 13743 19451010 50.3 24 36.8 24 1017.8 24 9999.9 0 11.3 24 8.6 24 12.0 999.9 57.4* 43.3* 0.00I 999.9 000000 724050 13743 19451011 50.1 24 36.1 24 1018.4 24 9999.9 0 10.9 24 6.3 24 9.9 999.9 63.3* 41.4* 0.00I 999.9 000000 724050 13743 19451012 53.2 24 43.0 24 1012.3 24 9999.9 0 4.8 24 4.2 24 9.9 999.9 70.3* 42.4* 0.00I 999.9 000000 724050 13743 19451013 55.4 24 39.8 24 1013.3 24 9999.9 0 11.1 24 10.1 24 23.9 999.9 61.3* 47.3* 0.00I 999.9 000000 724050 13743 19451014 49.3 24 38.0 24 1017.9 24 9999.9 0 8.8 24 7.8 24 19.0 999.9 55.4* 41.4* 0.00I 999.9 000000 724050 13743 19451015 46.2 24 35.2 24 1019.1 24 9999.9 0 9.7 24 9.4 24 15.9 999.9 55.4* 38.3* 0.00I 999.9 000000 724050 13743 19451016 51.8 24 37.3 24 1013.3 24 9999.9 0 8.7 24 8.3 24 16.9 999.9 67.3* 40.3* 0.00I 999.9 000000 724050 13743 19451017 58.4 24 45.8 24 1013.5 24 9999.9 0 6.6 24 4.2 24 11.1 999.9 76.3* 44.4* 0.00I 999.9 100000 724050 13743 19451018 63.9 24 49.1 24 1016.7 24 9999.9 0 7.6 24 4.6 24 9.9 999.9 81.3* 48.4* 0.00I 999.9 000000 724050 13743 19451019 66.3 24 49.6 24 1015.7 24 9999.9 0 7.6 24 6.7 24 12.0 999.9 81.3* 52.3* 0.00I 999.9 000000 724050 13743 19451020 64.1 24 47.6 24 1014.3 24 9999.9 0 9.6 24 7.6 24 13.0 999.9 71.2* 54.3* 0.00I 999.9 000000 724050 13743 19451021 59.5 24 46.0 24 1017.9 24 9999.9 0 5.6 24 4.2 24 22.9 999.9 77.4* 46.4* 0.00I 999.9 000000 724050 13743 19451022 65.9 24 56.9 24 1014.4 24 9999.9 0 7.8 24 6.0 24 9.9 999.9 78.3* 57.4* 0.00I 999.9 000000 724050 13743 19451023 63.1 24 59.2 24 1011.4 24 9999.9 0 3.5 24 4.3 24 9.9 999.9 70.3* 57.4* 99.99 999.9 010000 724050 13743 19451024 57.0 24 52.4 24 1014.3 24 9999.9 0 4.3 24 7.7 24 12.0 999.9 63.3* 53.4* 99.99 999.9 010000 724050 13743 19451025 55.4 24 50.9 24 1015.9 24 9999.9 0 4.9 24 3.6 24 8.0 999.9 57.4* 53.4* 99.99 999.9 110000 724050 13743 19451026 55.4 24 43.8 24 1012.8 24 9999.9 0 7.7 24 7.8 24 21.0 999.9 61.3* 50.4* 0.00I 999.9 100000 724050 13743 19451027 51.4 24 30.8 24 1021.8 24 9999.9 0 13.0 24 11.6 24 21.0 999.9 61.3* 44.4* 0.00I 999.9 000000 724050 13743 19451028 52.9 24 38.3 24 1025.6 24 9999.9 0 5.4 24 3.1 24 8.9 999.9 74.3* 39.4* 0.00I 999.9 000000 724050 13743 19451029 61.0 24 46.4 24 1024.9 24 9999.9 0 4.4 24 3.6 24 8.9 999.9 79.3* 45.3* 0.00I 999.9 000000 724050 13743 19451030 63.2 24 48.2 24 1021.9 24 9999.9 0 6.0 24 3.8 24 8.0 999.9 80.2* 49.3* 0.00I 999.9 000000 724050 13743 19451031 66.0 24 52.9 24 1014.0 24 9999.9 0 9.2 24 8.9 24 9.9 999.9 78.3* 56.3* 0.00I 999.9 000000 724050 13743 19451101 61.6 24 46.4 24 1013.9 24 9999.9 0 7.5 24 5.1 24 9.9 999.9 69.3* 56.3* 0.00I 999.9 000000 724050 13743 19451102 63.3 24 53.4 24 1011.8 24 9999.9 0 5.6 24 6.2 24 9.9 999.9 78.3* 55.4* 99.99 999.9 110000 724050 13743 19451103 64.9 24 55.1 24 1007.7 24 9999.9 0 5.6 24 8.0 24 16.9 999.9 71.2* 54.3* 99.99 999.9 010000 724050 13743 19451104 45.9 24 33.0 24 1013.1 24 9999.9 0 7.2 24 13.4 24 19.0 999.9 51.3* 41.4* 99.99 999.9 010000 724050 13743 19451105 41.9 24 25.0 24 1015.9 24 9999.9 0 6.8 24 9.3 24 14.0 999.9 52.3* 33.4* 0.00I 999.9 000000 724050 13743 19451106 50.8 24 34.8 24 1021.7 24 9999.9 0 4.3 24 3.3 24 8.0 999.9 71.2* 37.4* 0.00I 999.9 000000 724050 13743 19451107 58.5 24 45.2 24 1025.2 24 9999.9 0 6.2 24 5.9 24 9.9 999.9 73.4* 46.4* 0.00I 999.9 000000 724050 13743 19451108 63.4 24 48.1 24 1022.8 24 9999.9 0 7.3 24 8.2 24 11.1 999.9 75.4* 53.4* 0.00I 999.9 000000 724050 13743 19451109 67.2 24 57.5 24 1022.7 24 9999.9 0 9.4 24 8.7 24 9.9 999.9 77.4* 60.3* 0.00I 999.9 000000 724050 13743 19451110 58.7 24 50.0 24 1028.0 24 9999.9 0 6.9 24 8.5 24 16.9 999.9 69.3* 49.3* 99.99 999.9 010000 724050 13743 19451111 46.3 24 41.2 24 1032.5 24 9999.9 0 4.0 24 7.3 24 9.9 999.9 47.3* 44.4* 99.99 999.9 110000 724050 13743 19451112 52.0 24 50.1 24 1027.3 24 9999.9 0 1.4 24 3.8 24 8.0 999.9 60.3* 47.3* 99.99 999.9 110000 724050 13743 19451113 61.3 24 59.1 24 1019.1 24 9999.9 0 2.5 24 6.8 24 9.9 999.9 68.4* 56.3* 99.99 999.9 110000 724050 13743 19451114 57.0 24 50.4 24 1011.1 24 9999.9 0 6.4 24 11.7 24 22.0 999.9 66.4* 46.4* 99.99 999.9 110000 724050 13743 19451115 44.3 24 31.3 24 1015.5 24 9999.9 0 10.2 24 17.5 24 23.9 999.9 50.4* 39.4* 99.99 999.9 010000 724050 13743 19451116 45.9 24 25.3 24 1026.8 24 9999.9 0 8.6 24 7.2 24 9.9 999.9 61.3* 36.3* 0.00I 999.9 000000 724050 13743 19451117 53.0 24 31.6 24 1021.2 24 9999.9 0 7.7 24 8.2 24 12.0 999.9 66.4* 43.3* 0.00I 999.9 000000 724050 13743 19451118 60.0 24 43.9 24 1017.5 24 9999.9 0 9.8 24 9.8 24 19.0 999.9 63.3* 55.4* 99.99 999.9 010000 724050 13743 19451119 48.5 24 42.0 24 1016.1 24 9999.9 0 3.3 24 4.8 24 12.0 999.9 55.4* 40.3* 99.99 999.9 110000 724050 13743 19451120 47.4 24 34.0 24 1014.6 24 9999.9 0 8.6 24 16.0 24 23.9 999.9 51.3* 42.4* 99.99 999.9 110000 724050 13743 19451121 40.4 24 29.9 24 1022.3 24 9999.9 0 5.3 24 4.7 24 9.9 999.9 50.4* 30.4* 0.00I 999.9 000000 724050 13743 19451122 50.8 24 39.9 24 1007.6 24 9999.9 0 8.3 24 11.7 24 21.0 999.9 58.3* 47.3* 99.99 999.9 010000 724050 13743 19451123 37.2 24 21.1 24 1009.9 24 9999.9 0 11.6 24 9.3 24 16.9 999.9 46.4* 31.3* 0.00I 999.9 000000 724050 13743 19451124 33.2 24 17.5 24 1013.5 24 9999.9 0 10.5 24 9.7 24 15.9 999.9 42.4* 26.4* 0.00I 999.9 000000 724050 13743 19451125 40.3 24 23.4 24 1013.1 24 9999.9 0 7.9 24 6.3 24 16.9 999.9 47.3* 35.4* 0.00I 999.9 000000 724050 13743 19451126 39.7 24 27.2 24 1024.0 24 9999.9 0 5.3 24 4.4 24 8.9 999.9 49.3* 33.4* 0.00I 999.9 000000 724050 13743 19451127 38.8 24 29.8 24 1026.8 24 9999.9 0 3.6 24 4.4 24 9.9 999.9 52.3* 30.4* 99.99 999.9 110000 724050 13743 19451128 45.8 24 43.5 24 1013.5 24 9999.9 0 3.3 24 7.7 24 9.9 999.9 48.4* 44.4* 99.99 999.9 110000 724050 13743 19451129 42.1 24 38.9 24 1001.8 24 9999.9 0 5.9 24 11.1 24 21.0 999.9 48.4* 36.3* 99.99 999.9 110000 724050 13743 19451130 38.6 24 31.0 24 1008.5 24 9999.9 0 9.1 24 18.5 24 23.9 999.9 41.4* 36.3* 99.99 999.9 010000 724050 13743 19451201 36.6 24 26.2 24 1018.1 24 9999.9 0 9.8 24 14.8 24 22.9 999.9 43.3* 31.3* 0.00I 999.9 000000 724050 13743 19451202 37.2 24 25.0 24 1024.0 24 9999.9 0 6.3 24 5.8 24 8.9 999.9 48.4* 29.3* 0.00I 999.9 000000 724050 13743 19451203 40.5 24 31.4 24 1019.6 24 9999.9 0 5.7 24 5.6 24 9.9 999.9 44.4* 38.3* 99.99 999.9 010000 724050 13743 19451204 42.5 24 36.6 24 1016.6 24 9999.9 0 3.5 24 6.1 24 12.0 999.9 43.3* 40.3* 99.99 999.9 110000 724050 13743 19451205 34.3 24 26.1 24 1016.2 24 9999.9 0 5.3 24 10.7 24 15.0 999.9 40.3* 31.3* 99.99 999.9 110000 724050 13743 19451206 38.0 24 37.1 24 1006.3 24 9999.9 0 2.5 24 11.2 24 14.0 999.9 42.4* 34.3* 99.99 999.9 110000 724050 13743 19451207 42.5 24 36.7 24 1003.7 24 9999.9 0 6.6 24 12.8 24 19.0 999.9 47.3* 39.4* 99.99 999.9 110000 724050 13743 19451208 44.5 24 30.6 24 1013.0 24 9999.9 0 7.4 24 7.8 24 9.9 999.9 56.3* 38.3* 0.00I 999.9 000000 724050 13743 19451209 42.4 24 33.3 24 1014.5 24 9999.9 0 3.4 24 6.7 24 9.9 999.9 53.4* 34.3* 0.00I 999.9 000000 724050 13743 19451210 41.1 24 34.4 24 1007.0 24 9999.9 0 2.8 24 6.1 24 18.1 999.9 52.3* 30.4* 99.99 999.9 011000 724050 13743 19451211 30.2 24 18.7 24 1017.6 24 9999.9 0 8.5 24 13.0 24 23.9 999.9 33.4* 27.3* 0.00I 999.9 000000 724050 13743 19451212 26.2 24 12.1 24 1026.1 23 9999.9 0 8.9 24 10.1 24 14.0 999.9 30.4* 22.5* 0.00I 999.9 000000 724050 13743 19451213 25.8 24 14.1 24 1024.8 24 9999.9 0 6.1 24 6.7 24 8.9 999.9 29.3* 22.5* 99.99 999.9 001000 724050 13743 19451214 30.5 24 26.6 24 1011.7 24 9999.9 0 3.6 24 7.3 24 9.9 999.9 37.4* 25.3* 99.99 999.9 111000 724050 13743 19451215 32.5 24 23.1 24 1015.6 24 9999.9 0 6.2 24 10.3 24 15.9 999.9 35.4* 31.3* 0.00I 999.9 000000 724050 13743 19451216 25.6 24 12.0 24 1016.7 24 9999.9 0 8.1 24 12.1 24 21.0 999.9 29.3* 21.4* 99.99 999.9 001000 724050 13743 19451217 23.2 24 2.4 24 1026.4 24 9999.9 0 8.9 24 9.3 24 16.9 999.9 32.4* 16.3* 0.00I 999.9 000000 724050 13743 19451218 25.0 24 10.7 24 1029.6 24 9999.9 0 3.7 24 3.3 24 7.0 999.9 33.4* 17.4* 99.99 999.9 001000 724050 13743 19451219 26.5 24 23.7 24 1013.9 24 9999.9 0 1.6 24 9.0 24 15.9 999.9 32.4* 24.4* 99.99 999.9 001000 724050 13743 19451220 25.6 24 13.8 24 1014.2 24 9999.9 0 6.2 24 10.3 24 19.0 999.9 29.3* 21.4* 99.99 999.9 001000 724050 13743 19451221 23.5 24 10.3 24 1022.2 24 9999.9 0 5.8 24 9.9 24 19.0 999.9 27.3* 19.4* 0.00I 999.9 000000 724050 13743 19451222 25.2 24 15.1 24 1024.6 24 9999.9 0 3.3 24 5.0 24 8.9 999.9 31.3* 20.3* 0.00I 999.9 000000 724050 13743 19451223 22.9 23 13.3 23 1028.9 23 9999.9 0 6.7 23 12.0 23 19.0 999.9 29.3* 16.3* 0.00I 999.9 000000 724050 13743 19451224 22.9 24 9.8 24 1029.9 24 9999.9 0 6.9 24 6.2 24 12.0 999.9 36.3* 14.4* 0.00I 999.9 000000 724050 13743 19451225 33.6 24 28.5 24 1019.9 24 9999.9 0 4.3 24 6.4 24 9.9 999.9 50.4* 28.4* 99.99 999.9 111000 724050 13743 19451226 39.2 24 37.1 24 1004.1 24 9999.9 0 2.5 24 5.3 24 9.9 999.9 49.3* 36.3* 99.99 999.9 110000 724050 13743 19451227 37.8 24 25.9 24 1018.3 24 9999.9 0 9.2 24 10.8 24 22.9 999.9 40.3* 35.4* 0.00I 999.9 000000 724050 13743 19451228 34.3 24 30.8 24 1024.2 24 9999.9 0 2.2 24 3.5 24 7.0 999.9 36.3* 32.4* 99.99 999.9 111000 724050 13743 19451229 37.4 24 35.6 24 1012.9 24 9999.9 0 2.7 24 8.2 24 12.0 999.9 42.4* 34.3* 99.99 999.9 110000 724050 13743 19451230 38.2 24 36.5 24 1008.8 24 9999.9 0 3.0 24 6.0 24 9.9 999.9 43.3* 32.4* 99.99 999.9 110000 724050 13743 19451231 43.0 24 39.6 24 999.0 24 9999.9 0 4.0 24 7.9 24 16.9 999.9 45.3* 38.3* 99.99 999.9 110000 fluids-1.0.22/tests/gsod/2016/0000755000175000017500000000000014302004506015070 5ustar nileshnileshfluids-1.0.22/tests/gsod/2016/724050-13743.op0000644000175000017500000014350514302004506016660 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20160101 44.0 24 30.8 24 1020.6 24 1018.3 24 10.0 24 8.0 24 15.0 999.9 57.0 39.9 0.00G 999.9 000000 724050 13743 20160102 39.5 24 23.4 24 1020.2 24 1017.9 24 10.0 24 6.4 24 11.1 14.0 48.0 32.0 0.00G 999.9 000000 724050 13743 20160103 40.9 24 28.0 24 1013.9 24 1011.6 24 10.0 24 5.1 24 17.1 24.1 54.0 32.0 0.00G 999.9 000000 724050 13743 20160104 35.6 24 18.2 24 1017.8 24 1015.5 24 10.0 24 12.5 24 21.0 28.9 54.0 30.0 0.00G 999.9 000000 724050 13743 20160105 24.2 24 3.0 24 1034.3 24 1032.1 24 10.0 24 12.7 24 21.0 29.9 37.9 16.0 0.00G 999.9 000000 724050 13743 20160106 29.0 24 11.5 24 1036.0 24 1033.7 24 10.0 24 3.5 24 7.0 999.9 39.9 16.0 0.00G 999.9 000000 724050 13743 20160107 38.0 24 29.3 24 1027.8 22 1025.5 24 8.7 24 1.6 24 5.1 999.9 43.0 19.9 0.00G 999.9 000000 724050 13743 20160108 41.1 24 39.0 24 1021.9 17 1019.5 24 3.8 24 4.5 24 8.9 999.9 43.0 34.0 0.00G 999.9 010000 724050 13743 20160109 44.4 24 41.7 24 1019.9 16 1017.6 24 5.6 24 2.9 24 6.0 999.9 50.0 39.9 0.01G 999.9 010000 724050 13743 20160110 54.5 24 47.5 24 1002.2 21 1001.1 24 7.9 24 12.6 24 24.1 35.0 62.1 41.0 0.78G 999.9 010000 724050 13743 20160111 36.1 24 12.9 24 1014.6 24 1012.3 24 10.0 24 10.7 24 15.9 28.0 46.0* 28.9* 0.56G 999.9 000000 724050 13743 20160112 35.8 24 15.8 24 1014.4 24 1012.1 24 10.0 24 9.3 24 17.1 32.1 46.9 28.0 0.00G 999.9 000000 724050 13743 20160113 28.4 24 6.4 24 1019.0 24 1016.3 24 10.0 24 11.9 24 26.0 35.0 46.9 21.0 0.00G 999.9 011000 724050 13743 20160114 35.1 24 14.7 24 1016.1 24 1013.8 24 10.0 24 6.1 24 14.0 21.0 53.1 21.0 0.00G 999.9 000000 724050 13743 20160115 42.7 24 31.7 24 1012.1 23 1009.6 24 10.0 24 4.8 24 8.9 999.9 53.1 28.0 0.00G 999.9 010000 724050 13743 20160116 44.8 24 40.3 24 1002.4 19 999.4 24 7.6 24 7.6 24 15.0 22.0 53.1 34.0 0.33G 999.9 110000 724050 13743 20160117 37.3 24 28.3 24 1011.2 20 1008.7 24 8.7 24 6.6 24 12.0 999.9 53.1 32.0 0.01G 999.9 101000 724050 13743 20160118 26.4 24 9.9 24 1015.1 24 1012.8 24 9.9 24 13.4 24 22.0 28.9 37.9 18.0 0.05G 999.9 001000 724050 13743 20160119 19.6 24 -1.1 24 1025.2 24 1022.9 24 10.0 24 13.7 24 21.0 28.9 34.0 15.1 0.00G 999.9 000000 724050 13743 20160120 23.9 24 5.5 24 1026.9 24 1024.6 24 10.0 24 8.6 24 13.0 22.9 30.9 15.1 0.00G 1.2 001000 724050 13743 20160121 27.8 24 17.0 24 1024.3 22 1021.5 24 8.2 24 9.0 24 15.9 22.0 34.0 19.0 0.03G 1.2 001000 724050 13743 20160122 26.0 24 14.8 24 1025.3 23 1023.0 24 8.1 24 8.6 24 14.0 999.9 34.0 21.9 0.00G 3.1 101000 724050 13743 20160123 25.3 24 22.2 24 1006.2 11 1003.8 24 0.6 24 19.7 24 27.0 36.9 28.9 21.9 1.20G 18.1 101000 724050 13743 20160124 28.3 24 15.4 24 1016.2 21 1012.6 24 8.3 24 11.4 24 22.9 28.0 35.1 21.0 0.28G 16.9 001000 724050 13743 20160125 26.7 24 18.1 24 1023.6 24 1021.3 24 7.9 24 2.1 24 6.0 999.9 42.1 16.0 0.00G 11.8 000000 724050 13743 20160126 39.4 24 28.0 24 1019.9 24 1017.6 24 9.9 24 6.1 24 14.0 999.9 52.0 16.0 0.00G 5.9 010000 724050 13743 20160127 42.2 24 29.0 24 1019.2 24 1016.9 24 10.0 24 8.6 24 14.0 22.0 52.0 30.0 0.00G 3.9 010000 724050 13743 20160128 32.8 24 22.9 24 1017.1 24 1014.9 24 10.0 24 3.8 24 8.9 999.9 48.0 25.0 0.00G 3.1 000000 724050 13743 20160129 36.4 24 24.3 24 1005.0 24 1002.7 24 9.9 24 9.0 24 22.0 29.9 43.0 25.0 0.00G 3.1 001000 724050 13743 20160130 33.4 24 19.0 24 1018.0 24 1015.7 24 10.0 24 6.3 24 11.1 20.0 43.0 24.1 0.00G 3.1 000000 724050 13743 20160131 43.1 24 28.1 24 1014.7 24 1012.4 24 10.0 24 8.1 24 13.0 999.9 57.0 24.1 0.00G 2.0 000000 724050 13743 20160201 50.0 24 40.5 24 1011.1 23 1008.8 24 9.9 24 8.6 24 14.0 999.9 61.0 36.0 0.00G 3.1 010000 724050 13743 20160202 44.1 24 34.7 24 1023.2 24 1020.9 24 10.0 24 5.5 24 9.9 999.9 61.0 36.0 0.12G 999.9 000000 724050 13743 20160203 45.4 24 39.8 24 1020.4 21 1017.2 24 9.3 24 5.1 24 15.9 25.1 57.0 36.0 0.00G 999.9 010000 724050 13743 20160204 52.2 24 44.1 24 1016.8 18 1013.0 24 7.2 24 11.3 24 17.1 19.0 57.9 41.0 0.52G 999.9 110000 724050 13743 20160205 40.7 24 26.6 24 1022.6 24 1020.0 24 9.2 24 13.9 24 21.0 29.9 57.9 36.0 0.04G 999.9 011000 724050 13743 20160206 35.9 24 20.7 24 1029.6 24 1027.3 24 10.0 24 5.6 24 9.9 999.9 44.1 28.0 0.00I 999.9 000000 724050 13743 20160207 37.6 24 24.8 24 1022.1 24 1019.8 24 10.0 24 5.7 24 12.0 999.9 46.0 28.0 0.00G 999.9 000000 724050 13743 20160208 40.7 24 24.9 24 1009.2 24 1006.9 24 10.0 24 7.7 24 11.1 999.9 46.0 30.0 0.00G 999.9 000000 724050 13743 20160209 38.0 24 33.1 24 1003.1 15 1000.7 24 8.2 24 6.2 24 15.0 19.0 46.0 34.0 0.16G 999.9 011000 724050 13743 20160210 33.6 24 18.4 24 1007.6 24 1005.3 24 9.7 24 10.6 24 17.1 25.1 39.9 28.9 0.07G 999.9 001000 724050 13743 20160211 26.0 24 4.6 24 1017.8 24 1015.6 24 10.0 24 13.0 24 17.1 28.0 39.0 21.0 0.00G 999.9 000000 724050 13743 20160212 24.2 24 4.5 24 1024.5 24 1022.2 24 10.0 24 6.4 24 14.0 19.0 30.9 19.0 0.00G 999.9 000000 724050 13743 20160213 24.3 24 5.7 24 1021.4 20 1018.9 24 9.7 24 14.0 24 24.1 34.0 30.9 18.0 0.00G 999.9 001000 724050 13743 20160214 18.0 24 -3.1 24 1033.1 24 1030.8 24 10.0 24 8.4 24 14.0 25.1 28.0 12.9 0.00G 2.0 000000 724050 13743 20160215 23.8 24 16.9 24 1031.2 13 1028.1 24 4.9 24 6.0 24 14.0 999.9 28.9 12.9 0.14G 3.1 111000 724050 13743 20160216 40.1 24 35.5 24 1006.8 12 1007.1 24 5.9 24 8.8 24 22.0 35.0 53.1 19.9 0.37G 2.0 110000 724050 13743 20160217 40.6 24 30.2 24 1015.4 24 1013.1 24 10.0 24 6.6 24 14.0 19.0 53.1 30.0 0.66G 2.0 000000 724050 13743 20160218 36.7 24 18.1 24 1030.0 24 1027.4 24 10.0 24 9.7 24 17.1 24.1 48.9 30.9 0.00G 999.9 000000 724050 13743 20160219 32.9 24 14.4 24 1033.1 24 1031.3 24 10.0 24 6.6 24 14.0 17.1 42.1 26.1 0.00G 999.9 000000 724050 13743 20160220 46.8 24 30.8 24 1018.2 24 1015.9 24 10.0 24 10.2 24 15.9 999.9 64.9 26.1 0.00G 999.9 000000 724050 13743 20160221 50.7 24 44.0 24 1013.5 21 1010.9 24 8.8 24 6.4 24 11.1 999.9 64.9 39.9 0.00G 999.9 010000 724050 13743 20160222 47.9 24 38.5 24 1018.3 23 1015.5 24 9.4 24 6.9 24 15.0 999.9 57.0 41.0 0.09G 999.9 010000 724050 13743 20160223 43.3 24 37.2 24 1021.8 18 1018.8 24 6.9 24 7.6 24 13.0 20.0 53.1 39.9 0.07G 999.9 010000 724050 13743 20160224 47.9 24 46.2 24 1013.3 11 1007.4 24 4.6 24 8.3 24 28.0 35.9 64.9* 42.1* 0.50G 999.9 110110 724050 13743 20160225 51.7 24 37.1 24 995.7 24 993.4 24 9.7 24 14.6 24 21.0 28.0 64.9 42.1 1.05G 999.9 010010 724050 13743 20160226 38.8 24 18.9 24 1013.3 24 1011.0 24 10.0 24 15.1 24 21.0 35.0 45.0* 35.1* 0.00G 999.9 001000 724050 13743 20160227 35.9 24 16.3 24 1021.6 24 1019.3 24 10.0 24 7.5 24 14.0 21.0 46.9 27.0 0.00G 999.9 000000 724050 13743 20160228 45.1 24 28.9 24 1017.2 24 1014.8 24 10.0 24 7.4 24 15.9 22.0 64.9 27.0 0.00G 999.9 000000 724050 13743 20160229 57.3 24 33.3 24 1008.5 24 1006.2 24 10.0 24 12.3 24 20.0 32.1 64.0* 53.1* 0.00G 999.9 000000 724050 13743 20160301 52.2 24 33.9 24 1016.7 24 1014.4 24 10.0 24 5.5 24 15.0 21.0 64.9 39.9 0.00G 999.9 000000 724050 13743 20160302 48.3 24 31.5 24 1008.5 24 1006.2 24 9.8 24 16.8 24 31.1 38.1 64.9 36.0 0.10G 999.9 010000 724050 13743 20160303 34.5 24 15.3 24 1023.8 24 1021.5 24 10.0 24 6.6 24 14.0 21.0 41.0* 30.0* 0.00H 999.9 001000 724050 13743 20160304 36.0 24 29.1 24 1018.9 14 1016.9 24 7.1 24 9.6 24 14.0 20.0 42.1 28.9 0.07G 999.9 001000 724050 13743 20160305 39.2 24 23.9 24 1022.2 24 1020.0 24 10.0 24 7.9 24 17.1 21.0 45.0 32.0 0.05G 999.9 000000 724050 13743 20160306 41.7 24 30.1 24 1024.1 24 1021.8 24 9.5 24 3.8 24 8.0 999.9 52.0 35.1 0.00G 999.9 010000 724050 13743 20160307 46.9 24 34.7 24 1024.5 24 1022.1 24 9.7 24 9.0 24 15.9 20.0 66.0 36.0 0.00G 999.9 000000 724050 13743 20160308 58.8 24 39.9 24 1020.8 24 1018.5 24 9.9 24 4.2 24 11.1 20.0 79.0 36.0 0.00G 999.9 000000 724050 13743 20160309 61.3 24 42.0 24 1019.9 24 1017.5 24 10.0 24 5.5 24 11.1 999.9 79.0 46.0 0.00G 999.9 000000 724050 13743 20160310 65.6 24 51.1 24 1017.7 24 1015.4 24 10.0 24 9.6 24 17.1 22.0 79.0 46.9 0.00G 999.9 000000 724050 13743 20160311 68.3 24 51.4 24 1018.0 24 1015.7 24 10.0 24 9.2 24 19.0 27.0 79.0 57.0 0.00G 999.9 010000 724050 13743 20160312 56.4 24 40.4 24 1025.1 24 1022.8 24 10.0 24 4.3 24 11.1 999.9 73.0 50.0 0.00G 999.9 000000 724050 13743 20160313 55.3 24 47.2 24 1017.1 21 1014.6 24 9.8 24 5.9 24 14.0 999.9 60.8* 51.1* 0.00G 999.9 010000 724050 13743 20160314 50.5 24 47.6 24 1014.2 19 1011.7 24 7.0 24 8.7 24 12.0 999.9 53.1* 48.2* 0.45G 999.9 010000 724050 13743 20160315 51.6 24 45.8 24 1010.5 20 1008.3 24 9.4 24 6.8 24 14.0 999.9 64.9 46.9 0.03G 999.9 010000 724050 13743 20160316 59.8 24 51.7 24 1009.3 24 1007.0 24 9.6 24 3.9 24 9.9 999.9 73.9 46.9 0.01A 999.9 010000 724050 13743 20160317 58.7 24 43.8 24 1010.9 24 1008.5 24 10.0 24 5.4 24 13.0 21.0 73.9 48.9 0.00H 999.9 010000 724050 13743 20160318 58.3 24 27.1 24 1012.8 24 1010.5 24 10.0 24 9.3 24 19.0 33.0 69.1 48.0 0.00G 999.9 000000 724050 13743 20160319 48.2 24 29.6 24 1017.3 20 1015.3 24 9.8 24 9.3 24 15.0 21.0 66.9 37.9 0.00G 999.9 011000 724050 13743 20160320 39.9 24 31.9 24 1018.0 20 1015.7 24 9.9 24 8.5 24 12.0 999.9 57.0 37.9 0.13G 999.9 011000 724050 13743 20160321 42.9 24 26.0 24 1014.7 24 1012.3 24 10.0 24 10.0 24 20.0 28.9 53.1 37.0 0.00G 999.9 011000 724050 13743 20160322 47.0 24 26.0 24 1021.3 24 1019.0 24 10.0 24 7.3 24 14.0 22.0 62.1* 36.0* 0.00G 999.9 000000 724050 13743 20160323 60.6 24 35.0 24 1015.7 24 1013.4 24 10.0 24 11.1 24 15.9 999.9 75.0 54.0 0.00G 999.9 000000 724050 13743 20160324 63.2 24 41.6 24 1014.2 24 1011.9 24 10.0 24 9.1 24 19.0 27.0 77.0 50.0 0.00G 999.9 000000 724050 13743 20160325 66.4 24 51.9 24 1008.1 23 1005.6 24 10.0 24 12.8 24 19.0 27.0 77.0 50.0 0.00G 999.9 010000 724050 13743 20160326 50.7 24 33.3 24 1022.8 24 1020.4 24 10.0 24 8.8 24 19.0 24.1 72.0 41.0 0.03G 999.9 000000 724050 13743 20160327 53.2 24 44.0 24 1025.8 21 1023.4 24 9.8 24 6.1 24 8.9 999.9 62.1 41.0 0.00G 999.9 010000 724050 13743 20160328 54.9 24 45.3 24 1010.1 18 1009.0 24 8.3 24 8.7 24 25.1 36.9 70.0 48.0 0.34G 999.9 010000 724050 13743 20160329 54.2 24 30.5 24 1017.4 24 1015.1 24 10.0 24 15.3 24 22.0 29.9 70.0 46.9 0.32G 999.9 000000 724050 13743 20160330 51.6 24 27.1 24 1026.0 24 1023.7 24 10.0 24 7.3 24 15.0 999.9 63.0 41.0 0.00G 999.9 000000 724050 13743 20160331 61.5 24 46.2 24 1016.2 24 1014.0 24 10.0 24 15.1 24 22.0 32.1 73.9 41.0 0.00G 999.9 000000 724050 13743 20160401 70.9 24 59.3 24 1004.6 21 1002.5 24 9.8 24 13.5 24 19.0 25.1 82.9 54.0 0.00G 999.9 010000 724050 13743 20160402 61.0 24 46.5 24 1001.5 23 999.6 24 10.0 24 9.3 24 17.1 22.9 82.9 50.0 0.08G 999.9 010000 724050 13743 20160403 46.1 24 23.4 24 1009.7 24 1006.5 24 9.8 24 15.2 24 33.0 51.1 66.0 37.0 0.07G 999.9 011000 724050 13743 20160404 56.9 24 35.1 24 1011.5 24 1009.2 24 10.0 24 11.6 24 22.0 28.9 73.9 37.0 0.00G 999.9 010000 724050 13743 20160405 41.0 24 22.0 24 1023.6 24 1020.9 24 10.0 24 15.5 24 25.1 32.1 57.0* 30.9* 0.07G 999.9 001000 724050 13743 20160406 43.7 24 22.5 24 1026.3 24 1024.0 24 10.0 24 9.3 24 19.0 25.1 57.0 30.0 0.00G 999.9 000000 724050 13743 20160407 55.4 24 44.3 24 1005.9 20 1002.5 24 9.1 24 10.1 24 25.1 32.1 64.0* 51.1* 0.03G 999.9 010000 724050 13743 20160408 48.6 24 30.0 24 1005.7 24 1003.4 24 10.0 24 10.6 24 15.9 26.0 64.9 43.0 0.67G 999.9 000000 724050 13743 20160409 44.2 24 29.1 24 1009.0 21 1006.3 24 9.3 24 9.7 24 22.0 35.0 54.0 34.0 0.03G 999.9 011000 724050 13743 20160410 39.5 24 17.7 24 1025.9 24 1023.6 24 10.0 24 9.8 24 19.0 28.9 52.0 30.9 0.14G 999.9 000000 724050 13743 20160411 55.0 24 36.3 24 1021.9 24 1019.5 24 10.0 24 13.7 24 22.0 29.9 73.0* 46.0* 0.00G 999.9 010000 724050 13743 20160412 63.3 24 45.2 24 1016.6 24 1014.3 24 9.9 24 14.5 24 18.1 27.0 73.0 46.9 0.02G 999.9 010000 724050 13743 20160413 51.0 24 26.4 24 1027.5 24 1025.2 24 10.0 24 7.3 24 15.9 999.9 68.0 43.0 0.04G 999.9 000000 724050 13743 20160414 52.2 24 32.7 24 1026.8 24 1024.4 24 10.0 24 3.4 24 9.9 999.9 64.0 39.9 0.00G 999.9 000000 724050 13743 20160415 53.9 24 35.1 24 1028.9 24 1026.6 24 10.0 24 4.1 24 11.1 999.9 64.0 39.9 0.00G 999.9 000000 724050 13743 20160416 57.4 24 35.9 24 1029.6 24 1027.2 24 10.0 24 5.6 24 11.1 999.9 72.0 42.1 0.00G 999.9 000000 724050 13743 20160417 58.6 24 36.0 24 1030.1 24 1027.7 24 10.0 24 3.6 24 11.1 999.9 73.9 45.0 0.00G 999.9 000000 724050 13743 20160418 67.2 24 42.2 24 1024.1 24 1021.8 24 10.0 24 4.1 24 12.0 15.9 84.9 46.9 0.00G 999.9 000000 724050 13743 20160419 70.2 24 46.9 24 1018.0 24 1015.6 24 10.0 24 7.5 24 19.0 25.1 84.9 51.1 0.00G 999.9 000000 724050 13743 20160420 62.3 24 27.5 24 1023.7 24 1021.5 24 10.0 24 6.9 24 15.0 999.9 84.0 50.0 0.00G 999.9 000000 724050 13743 20160421 60.6 24 40.7 24 1020.8 24 1018.8 24 10.0 24 10.2 24 14.0 19.0 75.9 48.9 0.00G 999.9 000000 724050 13743 20160422 68.5 24 58.2 24 1014.0 24 1011.7 24 10.0 24 8.9 24 12.0 999.9 73.9* 64.0* 0.00G 999.9 010000 724050 13743 20160423 64.7 24 57.5 24 1011.2 20 1008.8 24 9.3 24 9.4 24 15.0 21.0 75.9 61.0 0.00G 999.9 010000 724050 13743 20160424 58.2 24 28.9 24 1018.1 24 1015.7 24 10.0 24 8.3 24 15.9 999.9 71.1 46.0 0.26G 999.9 000000 724050 13743 20160425 62.0 24 45.6 24 1015.8 24 1013.4 24 10.0 24 7.0 24 9.9 999.9 78.1 46.0 0.00G 999.9 000000 724050 13743 20160426 74.0 24 55.6 24 1007.7 24 1005.4 24 10.0 24 10.0 24 20.0 28.9 86.0 51.1 0.00G 999.9 000000 724050 13743 20160427 62.5 24 53.9 24 1010.3 24 1008.0 24 9.4 24 7.2 24 17.1 999.9 86.0 54.0 0.00G 999.9 010000 724050 13743 20160428 54.0 24 50.3 24 1014.7 15 1012.3 24 7.0 24 6.6 24 14.0 999.9 55.9* 50.0* 0.03G 999.9 010000 724050 13743 20160429 50.3 24 46.9 24 1017.0 18 1014.7 24 7.4 24 7.0 24 15.9 999.9 55.9 48.0 0.58G 999.9 010000 724050 13743 20160430 53.8 24 48.5 24 1022.0 14 1019.1 24 9.8 24 5.4 24 9.9 999.9 57.9 48.0 0.01G 999.9 010000 724050 13743 20160501 54.9 24 51.6 24 1019.9 18 1017.8 24 9.1 24 6.1 24 9.9 999.9 59.0 51.1 0.20G 999.9 010000 724050 13743 20160502 61.0 24 57.6 24 1014.4 19 1012.1 24 7.2 24 5.0 24 11.1 999.9 77.0 52.0 0.40G 999.9 010010 724050 13743 20160503 65.6 24 60.6 24 1009.3 18 1006.8 24 8.5 24 6.0 24 24.1 42.9 73.0 55.0 1.16G 999.9 110110 724050 13743 20160504 57.5 24 53.3 24 1006.4 19 1004.4 24 9.7 24 7.2 24 12.0 21.0 73.0 54.0 0.17G 999.9 010000 724050 13743 20160505 53.5 24 49.2 24 1004.8 15 1002.5 24 8.5 24 9.7 24 14.0 999.9 60.1 51.1 0.03G 999.9 010000 724050 13743 20160506 54.0 24 49.2 24 1004.8 19 1002.5 24 8.7 24 8.5 24 13.0 999.9 57.9 51.1 0.14G 999.9 010000 724050 13743 20160507 55.9 24 49.1 24 1007.5 15 1004.9 24 9.7 24 5.5 24 9.9 999.9 66.9 50.0 0.81G 999.9 010000 724050 13743 20160508 62.5 24 45.6 24 1007.9 24 1005.6 24 10.0 24 8.9 24 18.1 29.9 72.0 50.0 0.04G 999.9 010000 724050 13743 20160509 58.1 24 44.9 24 1017.6 24 1015.3 24 10.0 24 5.5 24 11.1 999.9 72.0 50.0 0.06B 999.9 010000 724050 13743 20160510 60.4 24 51.6 24 1022.1 24 1019.7 24 10.0 24 5.1 24 9.9 999.9 64.9 50.0 0.00H 999.9 010000 724050 13743 20160511 56.8 24 52.5 24 1022.0 12 1019.9 24 8.0 24 5.1 24 11.1 999.9 64.9 54.0 0.13G 999.9 010000 724050 13743 20160512 60.6 24 56.9 24 1019.8 18 1017.9 24 7.0 24 3.6 24 8.0 999.9 66.0 54.0 0.29G 999.9 000000 724050 13743 20160513 66.3 24 59.8 24 1012.8 16 1010.4 24 7.8 24 7.0 24 14.0 21.0 78.1 57.9 0.00G 999.9 010000 724050 13743 20160514 64.2 24 51.2 24 1009.6 22 1007.0 24 9.8 24 7.1 24 22.0 32.1 78.1 54.0 0.08G 999.9 010000 724050 13743 20160515 55.3 24 33.6 24 1012.9 24 1010.6 24 10.0 24 12.6 24 21.0 33.0 75.9 48.0 0.13G 999.9 000000 724050 13743 20160516 55.3 24 30.8 24 1021.7 24 1019.3 24 10.0 24 7.9 24 15.0 20.0 66.9 45.0 0.00G 999.9 000000 724050 13743 20160517 57.0 24 46.7 24 1023.2 19 1020.8 24 9.0 24 5.3 24 8.9 999.9 66.9 45.0 0.00G 999.9 010000 724050 13743 20160518 58.4 24 50.4 24 1019.9 21 1017.8 24 8.7 24 4.2 24 11.1 999.9 66.0 54.0 0.41G 999.9 010000 724050 13743 20160519 61.6 24 48.6 24 1019.8 24 1017.5 24 10.0 24 5.6 24 9.9 999.9 70.0 54.0 0.01G 999.9 010000 724050 13743 20160520 64.8 24 48.9 24 1023.1 24 1020.7 24 10.0 24 3.7 24 9.9 14.0 75.9 53.1 0.00I 999.9 000000 724050 13743 20160521 60.2 24 51.7 24 1018.5 20 1015.8 24 8.3 24 8.6 24 17.1 999.9 75.9 53.1 0.25G 999.9 010000 724050 13743 20160522 55.6 24 53.1 24 1011.8 11 1009.4 24 6.5 24 9.2 24 13.0 999.9 63.0 54.0 0.41G 999.9 010000 724050 13743 20160523 61.9 24 55.7 24 1013.4 22 1011.0 24 8.8 24 6.4 24 17.1 25.1 75.0 54.0 0.44G 999.9 010010 724050 13743 20160524 68.9 24 54.2 24 1015.0 24 1012.7 24 10.0 24 8.0 24 15.0 21.0 82.9 57.0 0.10G 999.9 010000 724050 13743 20160525 73.4 24 54.7 24 1019.4 24 1017.1 24 10.0 24 4.0 24 8.9 17.1 86.0 57.0 0.00G 999.9 000000 724050 13743 20160526 73.5 24 62.0 24 1019.0 24 1016.7 24 9.9 24 6.6 24 11.1 999.9 88.0 60.1 0.00G 999.9 000000 724050 13743 20160527 77.8 24 66.3 24 1017.7 24 1015.4 24 10.0 24 7.4 24 12.0 999.9 88.0 63.0 0.00G 999.9 000000 724050 13743 20160528 77.9 24 66.9 24 1019.8 24 1017.4 24 10.0 24 8.5 24 11.1 999.9 87.1 69.1 0.00G 999.9 000000 724050 13743 20160529 74.6 24 65.6 24 1020.2 23 1017.9 24 9.5 24 5.8 24 12.0 999.9 87.1 66.0 0.00G 999.9 010000 724050 13743 20160530 72.9 24 66.7 24 1016.1 19 1014.1 24 9.9 24 4.6 24 8.9 999.9 82.9 66.0 0.43G 999.9 010000 724050 13743 20160531 76.4 24 67.5 24 1014.5 18 1012.3 24 10.0 24 4.3 24 9.9 999.9 87.1 68.0 0.00G 999.9 000000 724050 13743 20160601 77.7 24 67.3 24 1016.6 24 1014.3 24 9.8 24 4.8 24 15.9 999.9 87.1 69.1 0.00G 999.9 000000 724050 13743 20160602 74.2 24 65.6 24 1018.1 24 1015.9 24 10.0 24 4.4 24 8.9 999.9 87.1 68.0 0.00G 999.9 000000 724050 13743 20160603 74.6 24 69.4 24 1016.8 19 1014.4 24 9.2 24 5.3 24 11.1 999.9 82.0 68.0 0.00G 999.9 010000 724050 13743 20160604 74.9 24 70.0 24 1015.7 19 1013.5 24 9.4 24 6.0 24 12.0 999.9 82.0 70.0 0.32G 999.9 000000 724050 13743 20160605 76.5 24 70.3 24 1009.3 18 1006.5 24 9.8 24 10.0 24 20.0 28.9 84.9 70.0 0.11G 999.9 010000 724050 13743 20160606 76.5 24 64.1 24 1006.9 24 1004.6 24 10.0 24 6.5 24 12.0 20.0 87.1 69.1 0.05G 999.9 000000 724050 13743 20160607 77.7 24 63.2 24 1002.6 24 1000.3 24 10.0 24 7.7 24 22.0 29.9 87.1 69.1 0.00G 999.9 010000 724050 13743 20160608 69.6 24 46.9 24 1007.2 24 1004.9 24 10.0 24 12.9 24 20.0 35.0 87.1 63.0 0.00G 999.9 000000 724050 13743 20160609 68.6 24 44.7 24 1013.8 24 1011.5 24 10.0 24 8.2 24 14.0 21.0 82.0 53.1 0.00G 999.9 000000 724050 13743 20160610 73.0 24 43.9 24 1017.2 24 1014.8 24 10.0 24 9.9 24 15.9 22.0 82.0 53.1 0.00G 999.9 000000 724050 13743 20160611 78.2 24 61.9 24 1015.6 24 1013.2 24 10.0 24 7.6 24 17.1 21.0 96.1 63.0 0.00G 999.9 000000 724050 13743 20160612 84.9 24 60.9 24 1009.4 24 1007.0 24 10.0 24 11.2 24 20.0 33.0 96.1 66.0 0.00G 999.9 000000 724050 13743 20160613 72.9 24 46.3 24 1012.8 24 1010.5 24 10.0 24 10.9 24 15.0 21.0 93.0 64.0 0.00G 999.9 000000 724050 13743 20160614 75.4 24 50.2 24 1013.7 24 1011.4 24 10.0 24 7.5 24 13.0 999.9 81.0 64.0 0.00G 999.9 000000 724050 13743 20160615 73.0 24 60.6 24 1014.8 24 1012.5 24 10.0 24 6.0 24 11.1 999.9 82.9 66.0 0.00G 999.9 010000 724050 13743 20160616 77.3 24 68.3 24 1007.6 22 1005.4 24 9.4 24 6.1 24 12.0 999.9 89.1 66.0 0.02G 999.9 010000 724050 13743 20160617 72.6 24 62.5 24 1010.9 18 1007.8 24 9.0 24 10.5 24 22.0 28.9 89.1 66.0 0.44G 999.9 010010 724050 13743 20160618 75.3 24 55.8 24 1021.9 24 1019.6 24 10.0 24 5.3 24 13.0 999.9 84.9 66.0 0.00G 999.9 000000 724050 13743 20160619 76.6 24 53.6 24 1026.6 24 1024.3 24 10.0 24 6.4 24 13.0 999.9 90.0 64.9 0.00G 999.9 000000 724050 13743 20160620 79.4 24 56.8 24 1022.3 24 1019.9 24 10.0 24 6.2 24 11.1 999.9 91.0 64.9 0.00G 999.9 000000 724050 13743 20160621 80.0 24 65.5 24 1013.1 20 1010.3 24 10.0 24 8.2 24 18.1 25.1 91.0 68.0 0.00G 999.9 110010 724050 13743 20160622 76.8 24 61.7 24 1012.2 24 1009.9 24 10.0 24 7.0 24 15.9 24.1 91.0 69.1 0.99G 999.9 000000 724050 13743 20160623 75.5 24 68.3 24 1012.7 21 1010.4 24 9.3 24 5.8 24 11.1 19.0 86.0 69.1 0.39G 999.9 010010 724050 13743 20160624 77.7 24 69.2 24 1013.5 23 1011.2 24 10.0 24 5.1 24 15.9 999.9 86.0 70.0 0.14G 999.9 000000 724050 13743 20160625 76.8 24 63.6 24 1020.1 24 1017.8 24 10.0 24 7.7 24 12.0 999.9 86.0 71.1 0.00G 999.9 000000 724050 13743 20160626 76.8 24 57.9 24 1022.8 24 1020.5 24 10.0 24 4.2 24 8.9 999.9 86.0 66.0 0.00G 999.9 000000 724050 13743 20160627 76.5 24 64.8 24 1018.6 23 1016.1 24 10.0 24 8.8 24 15.0 999.9 87.1 66.0 0.00G 999.9 010000 724050 13743 20160628 78.6 24 72.3 24 1013.2 18 1011.0 24 9.5 24 6.5 24 17.1 29.9 87.1 68.0 0.43G 999.9 010010 724050 13743 20160629 74.6 24 62.9 24 1013.5 20 1011.0 24 9.6 24 9.0 24 15.9 22.9 87.1 68.0 0.79G 999.9 010010 724050 13743 20160630 74.7 24 57.2 24 1016.9 24 1014.6 24 10.0 24 6.4 24 12.0 999.9 84.0 64.9 0.00G 999.9 000000 724050 13743 20160701 78.4 24 68.5 24 1014.6 23 1012.1 24 10.0 24 5.6 24 20.0 24.1 88.0 64.9 0.00G 999.9 010010 724050 13743 20160702 75.8 24 59.6 24 1016.8 22 1014.2 24 10.0 24 8.9 24 14.0 18.1 88.0 70.0 0.24G 999.9 000000 724050 13743 20160703 71.1 24 57.8 24 1020.1 24 1017.8 24 10.0 24 4.3 24 8.9 999.9 80.1 64.0 0.06G 999.9 010000 724050 13743 20160704 70.3 24 66.6 24 1018.7 18 1016.2 24 9.4 24 6.6 24 12.0 999.9 73.9 64.0 0.01G 999.9 010000 724050 13743 20160705 79.9 24 71.8 24 1011.1 17 1009.0 24 8.4 24 7.6 24 13.0 20.0 91.0* 73.0* 0.58G 999.9 010000 724050 13743 20160706 84.3 24 73.0 24 1011.9 22 1009.6 24 10.0 24 4.0 24 8.0 999.9 93.9* 77.0* 0.27G 999.9 000000 724050 13743 20160707 85.0 24 72.7 24 1010.0 24 1007.7 24 9.9 24 6.6 24 11.1 999.9 93.9 77.0 0.00G 999.9 000000 724050 13743 20160708 83.8 24 70.8 24 1009.5 23 1007.1 24 9.9 24 7.1 24 21.0 26.0 93.0 77.0 0.00G 999.9 010000 724050 13743 20160709 83.1 22 71.2 22 1009.1 22 1006.7 22 10.0 22 6.5 22 21.0 28.9 93.0 77.0 0.03G 999.9 010000 724050 13743 20160710 80.4 21 60.9 21 1013.4 21 1011.0 21 10.0 21 7.9 21 14.0 25.1 86.0 73.9 0.18G 999.9 000000 724050 13743 20160711 79.5 24 60.2 24 1017.9 24 1015.5 24 10.0 24 5.3 24 11.1 999.9 87.1* 71.1* 0.00G 999.9 000000 724050 13743 20160712 79.3 24 65.9 24 1018.8 24 1016.5 24 10.0 24 6.1 24 12.0 999.9 88.0 70.0 0.00G 999.9 000000 724050 13743 20160713 81.3 24 71.9 24 1016.7 24 1014.6 24 10.0 24 7.0 24 11.1 17.1 90.0 73.0 0.00G 999.9 000000 724050 13743 20160714 85.1 24 73.0 24 1013.5 24 1011.2 24 10.0 24 8.0 24 17.1 22.9 98.1 75.0 0.00G 999.9 000000 724050 13743 20160715 85.5 24 68.4 24 1013.2 24 1010.9 24 10.0 24 7.2 24 13.0 15.9 98.1 75.0 0.00G 999.9 000000 724050 13743 20160716 83.2 24 67.1 24 1016.1 23 1013.7 24 10.0 24 5.8 24 20.0 31.1 93.9 72.0 0.00G 999.9 010010 724050 13743 20160717 79.1 24 67.2 24 1019.9 24 1017.6 24 10.0 24 5.5 24 8.9 14.0 93.0 71.1 0.43G 999.9 010000 724050 13743 20160718 83.2 24 71.7 24 1020.0 24 1017.8 24 9.2 24 8.5 24 28.0 39.0 95.0 71.1 0.00G 999.9 010010 724050 13743 20160719 80.8 24 68.5 24 1019.7 24 1017.3 24 10.0 24 5.8 24 11.1 999.9 95.0 73.0 0.44G 999.9 000000 724050 13743 20160720 78.7 24 66.4 24 1021.4 22 1019.1 24 9.7 24 6.7 24 20.0 32.1 88.0* 69.8* 0.46G 999.9 010010 724050 13743 20160721 80.5 24 65.4 24 1021.3 24 1018.9 24 10.0 24 4.5 24 12.0 999.9 90.0 70.0 0.00G 999.9 000000 724050 13743 20160722 82.9 24 69.7 24 1016.7 24 1014.3 24 10.0 24 7.4 24 14.0 15.9 95.0 71.1 0.00G 999.9 000000 724050 13743 20160723 88.2 24 71.4 24 1013.2 24 1010.8 24 10.0 24 8.0 24 13.0 18.1 98.1 73.9 0.00G 999.9 000000 724050 13743 20160724 88.7 24 69.3 24 1014.4 24 1012.0 24 10.0 24 5.9 24 9.9 999.9 98.1 79.0 0.00G 999.9 010010 724050 13743 20160725 89.3 24 75.0 24 1013.5 24 1011.4 24 10.0 24 7.2 24 15.9 22.0 100.0 80.1 0.00G 999.9 010010 724050 13743 20160726 88.0 24 72.0 24 1013.4 24 1011.1 24 10.0 24 6.4 24 11.1 17.1 100.0 80.1 0.00G 999.9 010010 724050 13743 20160727 87.7 24 68.5 24 1013.7 24 1011.4 24 10.0 24 5.1 24 8.9 999.9 98.1 80.1 0.00G 999.9 000000 724050 13743 20160728 85.9 24 73.7 24 1012.1 22 1009.6 24 10.0 24 6.5 24 18.1 24.1 97.0 79.0 0.00G 999.9 010010 724050 13743 20160729 80.9 24 71.6 24 1011.6 13 1008.6 24 9.5 24 7.2 24 13.0 17.1 95.0 75.0 0.37G 999.9 010010 724050 13743 20160730 82.6 24 73.1 24 1013.9 22 1011.6 24 9.7 24 7.7 24 17.1 21.0 91.9 75.0 0.10G 999.9 010010 724050 13743 20160731 80.5 24 72.4 24 1015.0 20 1012.7 24 9.5 24 4.9 24 19.0 22.9 91.9 73.9 0.33G 999.9 010010 724050 13743 20160801 83.1 24 71.6 24 1015.9 24 1013.5 24 10.0 24 5.3 24 12.0 999.9 93.0 75.0 0.00G 999.9 000000 724050 13743 20160802 81.8 24 70.9 24 1016.9 24 1014.6 24 10.0 24 5.4 24 8.9 999.9 93.0 75.0 0.00G 999.9 000000 724050 13743 20160803 77.6 24 66.5 24 1019.7 20 1017.4 24 10.0 24 7.5 24 12.0 999.9 91.0 72.0 0.00G 999.9 000000 724050 13743 20160804 77.6 24 63.7 24 1020.1 24 1017.8 24 10.0 24 5.3 24 8.0 999.9 86.0 70.0 0.00G 999.9 000000 724050 13743 20160805 77.6 24 67.5 24 1017.2 22 1014.8 24 10.0 24 6.9 24 13.0 999.9 86.0 70.0 0.00G 999.9 000000 724050 13743 20160806 80.9 24 73.7 24 1010.2 23 1008.0 24 10.0 24 7.0 24 9.9 999.9 93.9 73.0 0.00G 999.9 010000 724050 13743 20160807 81.8 24 62.1 24 1012.5 24 1010.0 24 10.0 24 7.1 24 11.1 15.9 93.9 71.1 0.06G 999.9 000000 724050 13743 20160808 79.9 24 61.9 24 1016.5 24 1014.1 24 10.0 24 5.3 24 15.9 22.0 91.9 71.1 0.00G 999.9 000000 724050 13743 20160809 74.7 24 65.8 24 1021.3 22 1019.0 24 10.0 24 3.5 24 8.0 999.9 91.9 68.0 0.00G 999.9 010000 724050 13743 20160810 83.4 24 73.7 24 1021.3 19 1019.2 24 9.0 24 8.7 24 17.1 25.1 95.0 68.0 0.00G 999.9 000000 724050 13743 20160811 86.8 24 73.3 24 1019.5 24 1017.2 24 10.0 24 9.3 24 14.0 22.0 97.0 77.0 0.00G 999.9 010000 724050 13743 20160812 88.1 24 74.1 24 1015.0 24 1012.7 24 9.9 24 9.7 24 15.0 18.1 99.0 78.1 0.00G 999.9 000000 724050 13743 20160813 89.3 24 76.5 24 1013.1 24 1010.9 24 10.0 24 9.5 24 17.1 24.1 100.9 81.0 0.00G 999.9 000000 724050 13743 20160814 91.0 24 73.5 24 1015.1 24 1012.8 24 9.3 24 8.4 24 15.0 15.9 100.9 81.0 0.00G 999.9 000000 724050 13743 20160815 85.8 24 70.4 24 1020.4 24 1018.1 24 9.5 24 6.2 24 24.1 999.9 100.0 78.1 0.00G 999.9 000010 724050 13743 20160816 82.2 24 73.7 24 1020.9 19 1019.1 24 9.6 24 8.3 24 24.1 35.0 100.0 73.0 1.16G 999.9 010010 724050 13743 20160817 87.2 24 71.6 24 1018.3 24 1015.9 24 10.0 24 7.4 24 12.0 17.1 97.0 75.0 0.00G 999.9 000000 724050 13743 20160818 81.5 24 70.6 24 1016.5 23 1014.4 24 9.6 24 6.5 24 27.0 35.0 95.0 72.0 0.88G 999.9 010010 724050 13743 20160819 83.4 24 66.5 24 1014.8 24 1012.4 24 10.0 24 5.3 24 9.9 999.9 91.9 73.9 0.00G 999.9 000000 724050 13743 20160820 82.9 24 67.5 24 1012.7 24 1010.4 24 9.8 24 4.5 24 9.9 999.9 91.9 73.9 0.00G 999.9 000000 724050 13743 20160821 80.2 24 71.4 24 1010.0 21 1007.6 24 9.6 24 8.7 24 21.0 27.0 91.0 75.0 0.00G 999.9 110010 724050 13743 20160822 77.6 24 61.6 24 1016.0 24 1013.7 24 9.7 24 8.4 24 13.0 19.0 91.0 69.1 0.69G 999.9 010000 724050 13743 20160823 76.2 24 59.2 24 1025.1 24 1022.7 24 10.0 24 4.8 24 8.9 999.9 84.9 66.9 0.00G 999.9 000000 724050 13743 20160824 76.5 24 62.5 24 1025.0 24 1022.7 24 10.0 24 6.9 24 11.1 999.9 86.0 66.9 0.00G 999.9 000000 724050 13743 20160825 78.6 24 67.8 24 1019.7 24 1017.3 24 10.0 24 9.3 24 11.1 999.9 89.1 66.9 0.00G 999.9 000000 724050 13743 20160826 85.5 24 72.8 24 1017.1 24 1014.8 24 10.0 24 7.2 24 11.1 19.0 95.0 71.1 0.00G 999.9 000000 724050 13743 20160827 85.6 24 69.6 24 1020.1 24 1017.8 24 10.0 24 5.7 24 13.0 17.1 95.0 77.0 0.00G 999.9 000000 724050 13743 20160828 81.5 24 67.6 24 1022.8 24 1020.5 24 10.0 24 4.8 24 9.9 999.9 91.9 73.9 0.00G 999.9 000000 724050 13743 20160829 81.7 24 67.1 24 1020.9 24 1018.6 24 10.0 24 4.4 24 8.0 999.9 93.9 72.0 0.00G 999.9 000000 724050 13743 20160830 82.9 24 65.0 24 1019.5 24 1017.2 24 10.0 24 6.2 24 11.1 999.9 93.9 72.0 0.00G 999.9 000000 724050 13743 20160831 81.3 24 68.0 24 1015.5 24 1013.2 24 10.0 24 4.8 24 12.0 999.9 91.0 73.0 0.00G 999.9 000000 724050 13743 20160901 78.7 24 69.8 24 1011.6 22 1009.3 24 10.0 24 7.2 24 13.0 999.9 91.0 72.0 0.01G 999.9 010000 724050 13743 20160902 75.0 24 59.0 24 1017.5 24 1015.2 24 10.0 24 9.2 24 13.0 15.0 82.9 66.9 0.02G 999.9 010000 724050 13743 20160903 74.9 24 60.0 24 1018.4 24 1016.1 24 10.0 24 12.7 24 21.0 28.0 82.0 66.9 0.00G 999.9 000000 724050 13743 20160904 75.1 24 56.2 24 1022.4 24 1020.1 24 10.0 24 8.2 24 12.0 17.1 82.9 68.0 0.00G 999.9 000000 724050 13743 20160905 75.5 24 57.7 24 1022.8 24 1020.4 24 10.0 24 4.6 24 11.1 999.9 88.0 64.9 0.00G 999.9 000000 724050 13743 20160906 81.3 24 59.6 24 1018.0 24 1015.7 24 10.0 24 9.7 24 19.0 25.1 93.9 64.9 0.00G 999.9 000000 724050 13743 20160907 82.6 24 65.6 24 1016.5 24 1014.2 24 9.9 24 5.0 24 11.1 28.0 93.9 71.1 0.00G 999.9 010010 724050 13743 20160908 83.4 24 71.6 24 1014.2 23 1012.0 24 10.0 24 7.1 24 14.0 19.0 98.1 73.0 0.02G 999.9 000000 724050 13743 20160909 86.1 24 72.9 24 1013.4 24 1011.1 24 10.0 24 6.5 24 9.9 999.9 98.1 75.0 0.00G 999.9 000000 724050 13743 20160910 84.9 24 74.4 24 1015.0 24 1012.6 24 10.0 24 7.7 24 14.0 18.1 96.1 77.0 0.00G 999.9 000000 724050 13743 20160911 82.3 24 66.0 24 1015.7 24 1013.4 24 10.0 24 11.1 24 17.1 25.1 95.0 77.0 0.00G 999.9 000000 724050 13743 20160912 75.4 24 55.3 24 1022.1 24 1019.8 24 10.0 24 6.5 24 8.9 999.9 86.0 66.0 0.00G 999.9 000000 724050 13743 20160913 77.5 24 64.4 24 1022.0 24 1019.7 24 10.0 24 8.1 24 13.0 17.1 89.1 66.0 0.00G 999.9 000000 724050 13743 20160914 80.6 24 62.4 24 1019.0 24 1016.7 24 10.0 24 6.7 24 11.1 999.9 95.0 69.1 0.00G 999.9 000000 724050 13743 20160915 75.3 24 59.9 24 1021.7 24 1019.4 24 10.0 24 8.4 24 15.0 18.1 95.0 69.1 0.00G 999.9 000000 724050 13743 20160916 71.3 24 58.1 24 1024.5 24 1022.2 24 10.0 24 5.6 24 11.1 999.9 79.0 66.0 0.00G 999.9 000000 724050 13743 20160917 74.3 24 63.3 24 1022.5 24 1020.4 24 10.0 24 6.8 24 9.9 999.9 82.9 66.0 0.00G 999.9 000000 724050 13743 20160918 77.9 24 69.7 24 1017.8 22 1015.6 24 10.0 24 8.1 24 13.0 999.9 89.1 68.0 0.00G 999.9 000000 724050 13743 20160919 76.7 24 73.0 24 1016.1 15 1013.7 24 9.1 24 6.1 24 11.1 999.9 89.1 71.1 0.00G 999.9 010000 724050 13743 20160920 74.4 24 69.4 24 1019.0 22 1016.6 24 10.0 24 7.8 24 11.1 999.9 80.1 71.1 0.46G 999.9 000000 724050 13743 20160921 76.8 24 68.6 24 1020.2 24 1017.9 24 9.9 24 6.5 24 8.9 999.9 82.0 71.1 0.00G 999.9 000000 724050 13743 20160922 77.2 24 63.0 24 1020.2 24 1017.8 24 10.0 24 6.8 24 8.9 999.9 87.1 68.0 0.00G 999.9 000000 724050 13743 20160923 76.3 24 63.5 24 1017.4 24 1015.1 24 10.0 24 3.7 24 8.0 999.9 90.0 66.0 0.00G 999.9 000000 724050 13743 20160924 73.8 24 66.3 24 1017.2 23 1015.0 24 9.8 24 7.0 24 12.0 999.9 90.0 66.0 0.00G 999.9 000000 724050 13743 20160925 66.8 24 53.1 24 1021.7 24 1019.4 24 10.0 24 5.4 24 11.1 999.9 77.0 59.0 0.00G 999.9 000000 724050 13743 20160926 67.4 24 56.7 24 1020.2 23 1017.8 24 10.0 24 8.0 24 14.0 22.0 75.0 59.0 0.00G 999.9 000000 724050 13743 20160927 69.3 24 60.8 24 1014.5 21 1012.2 24 9.2 24 5.9 24 12.0 999.9 77.0 64.0 0.55G 999.9 010000 724050 13743 20160928 67.1 24 64.8 24 1014.5 13 1012.7 24 9.1 24 6.4 24 12.0 15.0 77.0 64.0 0.02G 999.9 010010 724050 13743 20160929 69.4 24 67.7 24 1019.3 16 1016.5 24 8.0 24 13.4 24 22.0 28.9 71.6* 66.9* 1.10G 999.9 010010 724050 13743 20160930 64.4 24 63.1 24 1020.8 18 1018.5 24 7.9 24 13.2 24 18.1 25.1 70.0 62.1 0.29G 999.9 010000 724050 13743 20161001 65.0 24 64.4 24 1019.5 18 1017.2 24 7.7 24 9.3 24 14.0 999.9 66.9 62.1 0.17G 999.9 010010 724050 13743 20161002 67.9 24 64.5 24 1017.9 17 1016.0 24 8.0 24 4.0 24 7.0 999.9 75.9 63.0 0.11G 999.9 010000 724050 13743 20161003 70.3 24 60.8 24 1016.9 24 1014.5 24 9.9 24 5.1 24 12.0 15.0 78.1 64.0 0.02G 999.9 000000 724050 13743 20161004 66.0 24 58.5 24 1022.0 24 1019.7 24 10.0 24 6.9 24 14.0 999.9 78.1 59.0 0.00G 999.9 000000 724050 13743 20161005 64.2 24 56.3 24 1025.5 24 1023.2 24 10.0 24 8.0 24 13.0 999.9 75.9 57.9 0.00G 999.9 000000 724050 13743 20161006 64.6 24 58.3 24 1025.4 21 1023.1 24 10.0 24 6.4 24 9.9 999.9 72.0 57.9 0.00G 999.9 000000 724050 13743 20161007 66.3 24 61.6 24 1023.8 23 1021.6 24 10.0 24 6.1 24 11.1 999.9 73.9 60.1 0.00G 999.9 000000 724050 13743 20161008 66.6 24 64.5 24 1018.3 22 1015.9 24 9.0 24 6.9 24 9.9 999.9 73.9 62.1 0.00G 999.9 010000 724050 13743 20161009 63.1 24 51.7 24 1016.3 23 1013.7 24 10.0 24 17.5 24 28.0 36.9 69.1 55.9 0.34G 999.9 010000 724050 13743 20161010 57.5 24 39.0 24 1025.2 24 1022.8 24 10.0 24 10.8 24 15.9 20.0 69.1 48.9 0.09G 999.9 000000 724050 13743 20161011 56.3 24 42.6 24 1030.0 24 1027.7 24 10.0 24 3.8 24 8.0 999.9 68.0 46.0 0.00G 999.9 000000 724050 13743 20161012 59.1 24 51.1 24 1027.1 24 1024.8 24 10.0 24 3.5 24 7.0 999.9 70.0 46.0 0.00G 999.9 000000 724050 13743 20161013 61.5 24 55.9 24 1020.6 21 1018.2 24 8.5 24 4.7 24 12.0 999.9 73.0 50.0 0.00G 999.9 100000 724050 13743 20161014 58.3 24 43.1 24 1026.7 24 1024.4 24 10.0 24 7.0 24 13.0 20.0 73.0 48.9 0.00G 999.9 000000 724050 13743 20161015 58.6 24 46.7 24 1028.7 24 1026.3 24 10.0 24 3.2 24 9.9 999.9 69.1 48.9 0.00G 999.9 000000 724050 13743 20161016 61.1 24 55.2 24 1023.3 24 1021.2 24 10.0 24 6.0 24 12.0 999.9 73.0 50.0 0.00G 999.9 000000 724050 13743 20161017 68.1 24 62.2 24 1016.2 24 1013.9 24 9.6 24 5.7 24 9.9 999.9 82.0 53.1 0.00G 999.9 000000 724050 13743 20161018 70.0 24 63.7 24 1013.5 24 1011.2 24 10.0 24 6.8 24 9.9 999.9 82.0 59.0 0.00G 999.9 000000 724050 13743 20161019 73.9 24 65.4 24 1015.1 24 1012.8 24 10.0 24 5.5 24 8.9 999.9 87.1 63.0 0.00G 999.9 000000 724050 13743 20161020 74.8 24 67.3 24 1016.8 24 1014.5 24 10.0 24 5.3 24 9.9 999.9 87.1 64.9 0.02G 999.9 010000 724050 13743 20161021 70.0 24 64.1 24 1007.4 23 1004.9 24 9.7 24 10.4 24 25.1 36.9 84.9 62.1 0.26A 999.9 010000 724050 13743 20161022 57.2 24 41.5 24 1005.3 24 1002.7 24 10.0 24 17.2 24 22.0 34.0 62.1* 53.1* 0.00H 999.9 010000 724050 13743 20161023 55.8 24 36.5 24 1015.2 24 1012.8 24 10.0 24 10.5 24 15.0 22.0 69.1 45.0 0.00G 999.9 000000 724050 13743 20161024 61.4 24 45.9 24 1015.7 24 1013.4 24 10.0 24 8.7 24 17.1 21.0 71.1 45.0 0.00G 999.9 000000 724050 13743 20161025 55.6 24 34.1 24 1025.4 24 1023.1 24 10.0 24 10.7 24 18.1 24.1 71.1 46.9 0.00G 999.9 000000 724050 13743 20161026 50.8 24 34.6 24 1030.1 24 1027.8 24 10.0 24 4.4 24 12.0 999.9 64.0 41.0 0.00G 999.9 000000 724050 13743 20161027 55.3 24 48.4 24 1025.3 23 1023.0 24 9.7 24 6.0 24 11.1 999.9 63.0 41.0 0.00G 999.9 010000 724050 13743 20161028 58.0 24 43.8 24 1021.7 24 1019.3 24 10.0 24 11.9 24 22.9 38.1 63.0 50.0 0.03G 999.9 000000 724050 13743 20161029 57.0 24 45.7 24 1021.9 24 1019.6 24 9.9 24 6.2 24 13.0 999.9 75.0 44.1 0.00G 999.9 000000 724050 13743 20161030 65.9 24 58.2 24 1014.7 24 1012.4 24 10.0 24 8.1 24 20.0 36.9 80.1 44.1 0.00G 999.9 010000 724050 13743 20161031 59.1 24 45.0 24 1020.2 24 1017.9 24 10.0 24 8.8 24 15.0 20.0 80.1 51.1 0.00G 999.9 010000 724050 13743 20161101 53.7 24 44.2 24 1026.5 24 1024.1 24 10.0 24 4.1 24 8.9 999.9 62.1 48.0 0.00G 999.9 000000 724050 13743 20161102 60.4 24 54.4 24 1024.8 21 1022.8 24 10.0 24 4.9 24 7.0 999.9 73.0 48.0 0.00G 999.9 000000 724050 13743 20161103 66.8 24 59.2 24 1018.1 24 1015.8 24 8.7 24 6.4 24 15.0 21.0 82.9 53.1 0.00G 999.9 010000 724050 13743 20161104 61.8 24 44.7 24 1020.6 24 1018.3 24 10.0 24 10.9 24 14.0 22.9 82.9 55.9 0.00G 999.9 010000 724050 13743 20161105 55.6 24 37.2 24 1025.9 24 1023.6 24 10.0 24 5.5 24 8.9 999.9 69.1 44.1 0.00G 999.9 000000 724050 13743 20161106 58.8 24 38.1 24 1025.2 24 1022.9 24 10.0 24 7.8 24 15.9 21.0 70.0 44.1 0.00G 999.9 000000 724050 13743 20161107 53.1 24 32.6 24 1030.5 24 1028.1 24 10.0 24 5.7 24 11.1 999.9 70.0 45.0 0.00G 999.9 000000 724050 13743 20161108 51.7 24 38.9 24 1024.8 24 1022.5 24 9.6 24 4.1 24 9.9 999.9 68.0 41.0 0.00G 999.9 000000 724050 13743 20161109 57.5 24 50.4 24 1013.8 24 1011.4 24 9.3 24 6.5 24 15.9 22.9 68.0 41.0 0.07G 999.9 010010 724050 13743 20161110 53.2 24 37.2 24 1017.8 24 1015.4 24 10.0 24 11.5 24 18.1 24.1 66.0 44.1 0.12G 999.9 000000 724050 13743 20161111 55.6 24 36.1 24 1012.2 24 1009.8 24 10.0 24 9.5 24 17.1 26.0 66.9 44.1 0.00G 999.9 000000 724050 13743 20161112 47.6 24 25.1 24 1026.5 24 1023.9 24 10.0 24 10.1 24 21.0 27.0 66.9 37.0 0.00G 999.9 000000 724050 13743 20161113 45.6 24 28.7 24 1024.7 24 1022.4 24 10.0 24 4.3 24 8.0 999.9 64.0 33.1 0.00G 999.9 000000 724050 13743 20161114 47.1 24 37.0 24 1019.2 24 1016.9 24 10.0 24 3.9 24 7.0 999.9 64.0 33.1 0.00G 999.9 000000 724050 13743 20161115 54.7 24 38.3 24 1013.5 24 1011.2 24 10.0 24 5.3 24 8.9 999.9 66.0 36.0 0.00G 999.9 010000 724050 13743 20161116 52.7 24 40.5 24 1011.6 24 1009.2 24 9.9 24 5.9 24 12.0 999.9 66.9 41.0 0.00G 999.9 010000 724050 13743 20161117 53.8 24 42.0 24 1017.5 24 1015.2 24 10.0 24 6.3 24 12.0 18.1 66.9 41.0 0.02G 999.9 000000 724050 13743 20161118 53.7 24 41.7 24 1020.9 24 1018.6 24 10.0 24 2.8 24 6.0 999.9 70.0 41.0 0.00G 999.9 000000 724050 13743 20161119 54.1 24 45.4 24 1013.8 24 1011.5 24 9.7 24 6.4 24 27.0 36.9 72.0 41.0 0.00G 999.9 010000 724050 13743 20161120 42.5 24 22.7 24 1011.8 24 1009.6 24 10.0 24 16.3 24 26.0 41.0 46.0* 39.0* 0.05G 999.9 010000 724050 13743 20161121 39.6 24 15.1 24 1014.0 24 1011.7 24 10.0 24 13.1 24 25.1 32.1 46.9 36.0 0.00G 999.9 000000 724050 13743 20161122 40.7 24 17.0 24 1021.5 24 1019.2 24 10.0 24 8.7 24 17.1 22.0 50.0* 35.1* 0.00G 999.9 000000 724050 13743 20161123 42.4 24 22.8 24 1027.0 24 1024.6 24 10.0 24 3.9 24 9.9 999.9 51.1 32.0 0.00G 999.9 010000 724050 13743 20161124 48.9 24 34.6 24 1023.4 24 1021.0 24 10.0 24 2.4 24 5.1 999.9 57.0 32.0 0.00G 999.9 010000 724050 13743 20161125 49.7 24 42.0 24 1023.5 24 1021.2 24 9.9 24 2.2 24 7.0 999.9 57.9 43.0 0.00G 999.9 000000 724050 13743 20161126 48.6 24 36.3 24 1022.3 24 1019.9 24 9.7 24 9.8 24 17.1 24.1 57.9 42.1 0.00G 999.9 000000 724050 13743 20161127 45.5 24 28.3 24 1023.2 24 1020.8 24 10.0 24 7.2 24 12.0 19.0 54.0 39.0 0.00G 999.9 000000 724050 13743 20161128 43.6 24 32.9 24 1021.9 24 1019.6 24 10.0 24 3.8 24 11.1 999.9 54.0 35.1 0.00G 999.9 000000 724050 13743 20161129 53.4 24 47.4 24 1014.1 24 1011.8 24 9.9 24 5.5 24 13.0 21.0 63.0 35.1 0.02G 999.9 010000 724050 13743 20161130 59.9 24 59.1 24 1010.2 16 1007.9 24 6.0 24 4.1 24 20.0 25.1 69.1 48.0 0.11G 999.9 110000 724050 13743 20161201 56.9 24 44.5 24 1006.9 22 1003.9 24 9.8 24 9.9 24 15.9 28.9 69.1 48.9 0.51G 999.9 010000 724050 13743 20161202 48.2 24 28.7 24 1016.6 24 1014.1 24 10.0 24 10.4 24 17.1 24.1 63.0 44.1 0.14G 999.9 000000 724050 13743 20161203 46.0 24 28.5 24 1022.1 24 1019.8 24 10.0 24 12.1 24 15.9 24.1 55.0 43.0 0.00G 999.9 000000 724050 13743 20161204 42.7 24 28.9 24 1024.9 24 1022.5 24 10.0 24 6.6 24 13.0 19.0 51.1 37.9 0.00G 999.9 000000 724050 13743 20161205 46.0 24 38.2 24 1018.0 20 1015.6 24 8.9 24 8.0 24 12.0 18.1 57.0 37.9 0.23G 999.9 010000 724050 13743 20161206 44.6 24 35.6 24 1018.1 21 1015.1 24 8.5 24 7.6 24 15.0 999.9 57.0 39.9 0.18G 999.9 010000 724050 13743 20161207 46.3 24 38.6 24 1014.7 23 1012.3 24 9.6 24 8.5 24 15.0 17.1 52.0 42.1 1.03G 999.9 010000 724050 13743 20161208 43.2 24 29.3 24 1017.8 24 1015.5 24 10.0 24 4.9 24 13.0 20.0 52.0 36.0 0.00G 999.9 000000 724050 13743 20161209 35.4 24 15.0 24 1025.0 24 1022.7 24 10.0 24 12.8 24 17.1 24.1 48.0 30.0 0.00G 999.9 000000 724050 13743 20161210 33.3 24 14.8 24 1031.7 24 1029.4 24 10.0 24 8.8 24 14.0 21.0 41.0 28.9 0.00G 999.9 000000 724050 13743 20161211 33.3 24 17.2 24 1033.0 24 1030.7 24 10.0 24 6.5 24 13.0 999.9 39.9 26.1 0.00G 999.9 000000 724050 13743 20161212 44.8 24 38.2 24 1016.3 23 1013.8 24 9.6 24 7.6 24 14.0 24.1 55.9 28.9 0.16G 999.9 010000 724050 13743 20161213 43.9 24 31.7 24 1020.3 24 1017.9 24 10.0 24 6.3 24 14.0 999.9 55.9 39.9 0.00I 999.9 000000 724050 13743 20161214 42.2 24 28.1 24 1017.8 22 1015.4 24 10.0 24 6.8 24 13.0 17.1 48.9 37.0 0.00G 999.9 000000 724050 13743 20161215 32.3 24 6.4 24 1017.7 24 1015.4 24 10.0 24 13.5 24 27.0 36.9 48.9 19.9 0.00G 999.9 000000 724050 13743 20161216 21.4 24 -3.6 24 1031.2 24 1028.9 24 10.0 24 6.2 24 13.0 17.1 39.9 17.1 0.00G 999.9 000000 724050 13743 20161217 31.8 24 22.5 24 1021.2 18 1017.8 24 8.4 24 8.7 24 15.0 21.0 44.1 17.1 0.06G 999.9 011000 724050 13743 20161218 50.3 24 46.0 24 1013.9 21 1010.9 24 9.2 24 12.5 24 39.0 47.0 66.9 28.0 0.20G 999.9 010000 724050 13743 20161219 35.2 24 19.5 24 1036.7 24 1034.3 24 10.0 24 10.0 24 19.0 22.9 39.9* 30.9* 0.01G 999.9 000000 724050 13743 20161220 31.4 24 17.2 24 1035.3 24 1033.0 24 10.0 24 5.3 24 8.9 999.9 39.0 26.1 0.00G 999.9 000000 724050 13743 20161221 36.9 24 21.7 24 1024.2 24 1021.9 24 10.0 24 4.1 24 8.9 15.9 48.0 26.1 0.00G 999.9 000000 724050 13743 20161222 44.1 24 26.4 24 1019.3 24 1016.7 24 10.0 24 7.9 24 22.0 33.0 60.1 27.0 0.00G 999.9 000000 724050 13743 20161223 39.8 24 26.8 24 1030.4 24 1028.1 24 10.0 24 6.4 24 15.9 25.1 60.1 30.9 0.00G 999.9 000000 724050 13743 20161224 42.7 24 37.4 24 1025.7 22 1023.1 24 7.8 24 6.3 24 12.0 999.9 48.0 30.9 0.30G 999.9 010000 724050 13743 20161225 42.6 24 38.0 24 1031.0 22 1027.9 24 8.5 24 3.9 24 7.0 999.9 51.1 35.1 0.24G 999.9 100000 724050 13743 20161226 41.7 24 37.0 24 1035.6 24 1033.4 24 9.9 24 2.8 24 6.0 999.9 51.1 35.1 0.00G 999.9 000000 724050 13743 20161227 55.5 24 48.2 24 1017.0 22 1014.9 24 10.0 24 10.5 24 18.1 26.0 68.0 37.0 0.00G 999.9 010000 724050 13743 20161228 48.5 24 29.1 24 1019.0 24 1016.6 24 10.0 24 8.5 24 17.1 24.1 68.0 39.0 0.00G 999.9 000000 724050 13743 20161229 42.2 24 35.4 24 1012.2 23 1009.7 24 9.4 24 6.3 24 13.0 24.1 52.0 37.0 0.18G 999.9 010000 724050 13743 20161230 39.7 24 23.8 24 1010.1 24 1007.6 24 10.0 24 10.0 24 24.1 34.0 52.0 34.0 0.06G 999.9 001000 724050 13743 20161231 37.2 24 20.2 24 1019.4 24 1017.2 24 10.0 24 9.5 24 22.9 29.9 48.9 28.0 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/2016/722324-03071.op0000644000175000017500000014200314302004506016643 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20160101 33.6 24 32.9 24 9999.9 0 932.2 18 4.3 24 10.2 24 17.1 21.0 36.1 31.5 0.00G 999.9 111000 722324 03071 20160102 36.5 24 30.1 24 9999.9 0 930.5 24 10.0 24 2.0 24 6.0 999.9 42.3 34.2 0.01G 999.9 000000 722324 03071 20160103 40.9 24 30.4 24 9999.9 0 927.0 24 9.6 24 4.6 24 8.0 999.9 53.6 30.9 0.00G 999.9 000000 722324 03071 20160104 39.1 24 26.8 24 9999.9 0 926.7 24 10.0 24 2.2 24 8.0 999.9 50.9 28.4 0.00G 999.9 000000 722324 03071 20160105 41.0 24 32.5 24 9999.9 0 922.6 24 10.0 24 6.6 24 15.9 21.0 48.2 34.2 0.00G 999.9 000000 722324 03071 20160106 44.8 24 40.5 24 9999.9 0 917.6 24 8.1 24 8.0 24 12.0 17.1 56.5 39.2 0.00G 999.9 010000 722324 03071 20160107 50.0 24 39.1 24 9999.9 0 913.4 24 9.8 24 10.2 24 22.0 29.9 63.5 41.5 0.01G 999.9 000000 722324 03071 20160108 49.9 24 33.9 24 9999.9 0 910.6 24 10.0 24 7.5 24 19.0 28.0 60.3 41.4 0.00G 999.9 000000 722324 03071 20160109 40.1 24 30.6 24 9999.9 0 917.0 24 10.0 24 7.9 24 14.0 18.1 51.3 35.2 0.00G 999.9 000000 722324 03071 20160110 35.0 24 26.8 24 9999.9 0 923.3 24 9.8 24 4.7 24 11.1 14.0 47.3 26.6 0.00G 999.9 000000 722324 03071 20160111 40.4 24 29.6 24 9999.9 0 921.2 24 10.0 24 4.1 24 8.0 999.9 54.0 31.1 0.00G 999.9 000000 722324 03071 20160112 42.0 24 23.5 24 9999.9 0 924.2 24 10.0 24 5.3 24 11.1 14.0 59.0 29.1 0.00G 999.9 000000 722324 03071 20160113 46.9 24 24.6 24 9999.9 0 921.5 24 10.0 24 6.1 24 13.0 15.0 64.0 35.1 0.00G 999.9 000000 722324 03071 20160114 50.0 24 29.1 24 9999.9 0 914.4 24 9.7 24 7.5 24 15.0 20.0 67.5 36.5 0.00G 999.9 000000 722324 03071 20160115 50.5 24 21.1 24 9999.9 0 911.7 24 10.0 24 6.9 24 14.0 18.1 65.1 35.1 0.00G 999.9 000000 722324 03071 20160116 49.2 24 26.5 24 9999.9 0 914.3 24 10.0 24 8.8 24 15.0 21.0 60.3 35.8 0.00G 999.9 000000 722324 03071 20160117 45.1 24 30.5 24 9999.9 0 918.8 24 10.0 24 9.4 24 21.0 28.9 66.0 34.7 0.00G 999.9 000000 722324 03071 20160118 38.6 24 31.0 24 9999.9 0 924.3 24 5.4 24 5.9 24 13.0 18.1 61.3 30.0 0.00G 999.9 110000 722324 03071 20160119 50.5 24 34.0 24 9999.9 0 920.4 24 10.0 24 7.4 24 15.0 20.0 71.4 43.2 0.00G 999.9 000000 722324 03071 20160120 48.5 24 32.4 24 9999.9 0 920.9 24 10.0 24 6.7 24 13.0 15.9 68.9 34.7 0.00G 999.9 000000 722324 03071 20160121 52.3 24 26.0 24 9999.9 0 918.7 24 10.0 24 10.4 24 21.0 29.9 65.3 41.2 0.00G 999.9 000000 722324 03071 20160122 42.5 24 24.0 24 9999.9 0 927.5 24 10.0 24 5.2 24 9.9 14.0 56.3 31.5 0.00G 999.9 000000 722324 03071 20160123 46.9 24 26.2 24 9999.9 0 923.3 24 10.0 24 5.3 24 12.0 15.9 66.4 33.6 0.00G 999.9 000000 722324 03071 20160124 53.2 24 28.0 24 9999.9 0 915.0 24 10.0 24 9.5 24 15.9 21.0 76.1 41.4 0.00G 999.9 000000 722324 03071 20160125 54.9 24 26.2 24 9999.9 0 914.6 24 10.0 24 8.1 24 14.0 18.1 71.8 44.8 0.00G 999.9 000000 722324 03071 20160126 43.4 24 29.4 24 9999.9 0 922.9 24 9.3 24 8.3 24 15.9 25.1 58.8 34.9 0.00G 999.9 010000 722324 03071 20160127 38.6 24 32.5 24 9999.9 0 928.1 24 7.7 24 5.1 24 11.1 15.9 53.1 30.7 0.08G 999.9 000000 722324 03071 20160128 46.0 24 30.0 24 9999.9 0 923.7 24 10.0 24 4.6 24 8.9 999.9 66.6 33.4 0.00G 999.9 000000 722324 03071 20160129 55.9 24 27.8 24 9999.9 0 918.5 24 10.0 24 8.7 24 20.0 25.1 75.2 43.2 0.00G 999.9 000000 722324 03071 20160130 59.4 24 21.2 24 9999.9 0 913.1 23 10.0 24 8.5 24 22.0 28.9 80.1 38.7 0.00G 999.9 000000 722324 03071 20160131 65.3 24 22.4 24 9999.9 0 910.9 22 10.0 24 9.9 24 15.9 20.0 77.2 53.6 0.00G 999.9 000000 722324 03071 20160201 57.1 24 27.4 24 9999.9 0 907.3 18 9.8 24 6.9 24 32.1 42.9 78.3 37.6 0.00G 999.9 000000 722324 03071 20160202 49.0 24 19.9 24 9999.9 0 909.6 24 10.0 24 15.9 24 27.0 41.0 56.7 40.1 0.00G 999.9 000000 722324 03071 20160203 39.2 24 18.7 24 9999.9 0 920.8 24 10.0 24 5.7 24 9.9 14.0 52.2* 27.1* 0.00G 999.9 000000 722324 03071 20160204 38.7 24 14.9 24 9999.9 0 928.0 24 10.0 24 4.0 24 9.9 14.0 54.0 27.5 0.00G 999.9 000000 722324 03071 20160205 43.8 24 16.1 24 9999.9 0 925.8 24 10.0 24 8.4 24 18.1 22.0 57.2 35.1 0.00G 999.9 000000 722324 03071 20160206 42.2 24 18.0 24 9999.9 0 929.4 24 10.0 24 6.5 24 13.0 999.9 59.5 28.2 0.00G 999.9 000000 722324 03071 20160207 51.3 24 14.8 24 9999.9 0 923.7 24 10.0 24 7.6 24 15.0 20.0 70.2 36.5 0.00G 999.9 000000 722324 03071 20160208 45.6 24 16.5 24 9999.9 0 929.4 24 10.0 24 7.1 24 15.9 22.0 64.0 30.9 0.00G 999.9 000000 722324 03071 20160209 46.9 24 18.0 24 9999.9 0 929.4 24 10.0 24 3.9 24 8.0 999.9 66.0 32.5 0.00G 999.9 000000 722324 03071 20160210 53.0 24 24.0 24 9999.9 0 927.1 24 10.0 24 4.2 24 12.0 18.1 75.4 35.1 0.00G 999.9 000000 722324 03071 20160211 59.1 24 22.2 24 9999.9 0 922.0 24 10.0 24 7.5 24 12.0 17.1 72.5 43.7 0.00G 999.9 000000 722324 03071 20160212 54.3 24 28.2 24 9999.9 0 924.5 24 10.0 24 2.3 24 8.9 999.9 75.7 35.6 0.00G 999.9 000000 722324 03071 20160213 55.9 24 33.8 24 9999.9 0 925.7 24 10.0 24 6.9 24 14.0 19.0 76.6 39.7 0.00G 999.9 000000 722324 03071 20160214 59.3 24 36.8 24 9999.9 0 916.7 24 10.0 24 7.9 24 14.0 18.1 74.3 46.2 0.00G 999.9 000000 722324 03071 20160215 51.5 24 30.9 24 9999.9 0 916.1 24 10.0 24 4.3 24 13.0 15.0 66.2 37.9 0.00G 999.9 000000 722324 03071 20160216 57.7 24 30.8 24 9999.9 0 917.1 24 9.9 24 8.5 24 19.0 25.1 70.0 45.5 0.00G 999.9 000000 722324 03071 20160217 57.8 24 32.0 24 9999.9 0 921.6 24 10.0 24 6.1 24 14.0 17.1 79.9 43.3 0.00G 999.9 000000 722324 03071 20160218 66.8 24 46.5 24 9999.9 0 918.5 24 10.0 24 13.2 24 18.1 24.1 83.1* 56.5* 0.00G 999.9 000000 722324 03071 20160219 69.1 24 49.2 24 9999.9 0 918.7 24 10.0 24 7.8 24 15.9 20.0 86.4 56.1 0.00G 999.9 000000 722324 03071 20160220 69.6 24 48.4 24 9999.9 0 918.4 24 9.2 24 4.9 24 12.0 15.0 84.2 55.2 0.00G 999.9 000000 722324 03071 20160221 64.7 24 51.5 24 9999.9 0 918.2 24 9.8 24 7.3 24 18.1 22.0 82.4 57.7 0.00G 999.9 000000 722324 03071 20160222 55.7 24 37.3 24 9999.9 0 918.4 24 10.0 24 8.4 24 13.0 17.1 62.6 50.9 0.00G 999.9 000000 722324 03071 20160223 46.4 24 38.9 24 9999.9 0 912.7 24 9.8 24 10.6 24 24.1 33.0 61.3* 41.4* 0.14G 999.9 010010 722324 03071 20160224 44.4 24 27.9 24 9999.9 0 924.6 24 10.0 24 8.0 24 15.9 22.0 60.3 33.8 0.00G 999.9 000000 722324 03071 20160225 48.5 24 23.7 24 9999.9 0 924.8 24 10.0 24 7.1 24 18.1 22.0 59.2 35.8 0.00G 999.9 000000 722324 03071 20160226 46.6 24 26.5 24 9999.9 0 928.8 24 10.0 24 6.7 24 14.0 19.0 64.9 34.3 0.00G 999.9 000000 722324 03071 20160227 54.5 24 34.0 24 9999.9 0 923.5 24 10.0 24 4.8 24 15.0 19.0 74.3 38.5 0.00G 999.9 000000 722324 03071 20160228 61.9 24 41.9 24 9999.9 0 917.1 23 10.0 24 10.9 24 15.9 20.0 75.4 50.0 0.00G 999.9 000000 722324 03071 20160229 61.1 24 37.0 24 9999.9 0 919.6 22 10.0 24 5.8 24 15.0 22.9 81.0 44.2 0.00G 999.9 000000 722324 03071 20160301 61.6 24 40.0 24 9999.9 0 921.5 18 10.0 24 8.8 24 17.1 22.9 78.4 48.6 0.00G 999.9 000000 722324 03071 20160302 60.5 24 30.1 24 9999.9 0 920.4 24 10.0 24 9.9 24 17.1 21.0 85.1 47.1 0.00G 999.9 000000 722324 03071 20160303 66.3 24 22.4 24 9999.9 0 918.2 24 10.0 24 9.6 24 21.0 28.9 83.7* 50.0* 0.00G 999.9 000000 722324 03071 20160304 61.9 24 29.0 24 9999.9 0 921.1 24 10.0 24 8.4 24 20.0 22.9 81.5 48.6 0.00G 999.9 000000 722324 03071 20160305 61.3 24 40.3 24 9999.9 0 919.3 24 10.0 24 7.7 24 15.9 24.1 77.9 44.8 0.00G 999.9 000000 722324 03071 20160306 67.5 24 53.8 24 9999.9 0 918.0 24 9.3 24 10.7 24 17.1 21.0 80.4 59.0 0.00G 999.9 000000 722324 03071 20160307 67.4 24 49.1 24 9999.9 0 910.5 24 8.2 24 9.9 24 15.9 21.0 79.5 60.3 0.00G 999.9 000000 722324 03071 20160308 65.0 24 40.5 24 9999.9 0 907.8 24 9.9 24 5.3 24 15.0 24.1 76.3 50.5 0.00G 999.9 010010 722324 03071 20160309 57.1 24 47.7 24 9999.9 0 912.2 24 9.5 24 6.6 24 14.0 20.0 72.5 51.3 0.02G 999.9 010000 722324 03071 20160310 54.1 24 48.1 24 9999.9 0 917.0 17 8.7 24 6.9 24 17.1 22.9 67.6 46.4 0.09G 999.9 000000 722324 03071 20160311 56.6 24 42.8 24 9999.9 0 920.5 24 10.0 24 9.2 24 19.0 22.9 69.4 45.5 0.00G 999.9 000000 722324 03071 20160312 61.2 24 49.5 24 9999.9 0 915.7 24 10.0 24 5.4 24 15.0 21.0 77.4 54.5 0.00G 999.9 000000 722324 03071 20160313 66.4 24 30.1 24 9999.9 0 911.4 24 10.0 24 12.9 24 22.9 29.9 80.8 53.2 0.00I 999.9 000000 722324 03071 20160314 69.9 24 22.3 24 9999.9 0 913.1 24 10.0 24 11.7 24 22.0 28.9 85.5 57.4 0.00G 999.9 000000 722324 03071 20160315 72.5 24 21.6 24 9999.9 0 913.2 24 10.0 24 12.8 24 22.0 31.1 84.4 59.9 0.00G 999.9 000000 722324 03071 20160316 62.3 24 25.0 24 9999.9 0 917.1 24 10.0 24 3.1 24 11.1 15.9 82.4 42.3 0.00G 999.9 000000 722324 03071 20160317 63.9 24 39.1 24 9999.9 0 914.9 24 10.0 24 3.9 24 9.9 999.9 80.8 51.4 0.00G 999.9 000000 722324 03071 20160318 62.4 24 48.8 24 9999.9 0 913.5 24 8.3 24 7.9 24 19.0 26.0 76.1 49.3 0.00G 999.9 100000 722324 03071 20160319 46.2 24 30.5 24 9999.9 0 924.1 24 10.0 24 11.4 24 22.0 28.0 61.0 33.8 0.00G 999.9 000000 722324 03071 20160320 47.2 24 24.4 24 9999.9 0 928.7 24 10.0 24 4.4 24 8.9 999.9 60.4 34.2 0.00G 999.9 000000 722324 03071 20160321 54.2 24 27.6 24 9999.9 0 925.9 24 10.0 24 10.2 24 18.1 25.1 74.3 39.2 0.00G 999.9 000000 722324 03071 20160322 65.1 24 34.6 24 9999.9 0 916.3 24 10.0 24 13.7 24 20.0 27.0 89.6* 50.5* 0.00G 999.9 000000 722324 03071 20160323 69.5 24 37.1 24 9999.9 0 909.3 24 9.9 24 17.1 24 31.1 39.0 81.1 56.5 0.00G 999.9 000000 722324 03071 20160324 54.9 24 19.2 24 9999.9 0 918.6 24 10.0 24 10.9 24 22.9 32.1 76.8 39.6 0.00G 999.9 000000 722324 03071 20160325 59.3 24 24.8 24 9999.9 0 914.3 24 9.9 24 8.7 24 18.1 24.1 81.0 43.0 0.00G 999.9 000000 722324 03071 20160326 63.6 24 33.2 24 9999.9 0 911.1 24 10.0 24 7.4 24 17.1 21.0 81.5 47.1 0.00G 999.9 000000 722324 03071 20160327 57.1 24 29.1 24 9999.9 0 919.8 24 9.9 24 8.4 24 20.0 31.1 79.9 39.2 0.00G 999.9 000000 722324 03071 20160328 59.7 24 33.7 24 9999.9 0 919.8 24 10.0 24 8.5 24 17.1 26.0 79.0 43.9 0.00G 999.9 000000 722324 03071 20160329 68.9 24 50.6 24 9999.9 0 912.2 24 10.0 24 13.9 24 20.0 27.0 87.1 59.0 0.00G 999.9 000000 722324 03071 20160330 73.0 24 50.4 24 9999.9 0 908.4 23 9.4 24 12.5 24 20.0 32.1 84.9 64.6 0.00G 999.9 000000 722324 03071 20160331 62.6 24 24.2 24 9999.9 0 910.5 19 10.0 24 6.5 24 13.0 15.9 80.6 45.5 0.00G 999.9 000000 722324 03071 20160401 53.8 24 35.3 24 9999.9 0 920.2 18 9.6 24 9.8 24 15.9 22.0 71.4 41.2 0.08G 999.9 010000 722324 03071 20160402 47.0 24 33.6 24 9999.9 0 926.6 24 10.0 24 4.9 24 8.9 999.9 66.0 36.5 0.09G 999.9 000000 722324 03071 20160403 58.2 24 32.4 24 9999.9 0 923.7 24 10.0 24 4.8 24 15.0 20.0 75.6 43.9 0.00G 999.9 000000 722324 03071 20160404 67.3 24 31.0 24 9999.9 0 921.0 24 10.0 24 5.9 24 13.0 18.1 85.8 53.1 0.00G 999.9 000000 722324 03071 20160405 72.8 24 33.1 24 9999.9 0 921.2 24 10.0 24 10.7 24 22.9 28.0 87.8 58.6 0.00G 999.9 000000 722324 03071 20160406 67.9 24 29.8 24 9999.9 0 920.5 24 9.8 24 10.4 24 17.1 29.9 82.9 52.5 0.00G 999.9 000000 722324 03071 20160407 68.0 24 24.2 24 9999.9 0 919.3 24 10.0 24 5.7 24 11.1 15.9 85.1 52.9 0.00G 999.9 000000 722324 03071 20160408 65.3 24 33.9 24 9999.9 0 921.5 24 10.0 24 9.6 24 15.9 20.0 78.8 55.8 0.00G 999.9 010000 722324 03071 20160409 64.7 24 45.4 24 9999.9 0 919.1 24 9.6 24 7.5 24 13.0 18.1 80.2 53.8 0.05G 999.9 010010 722324 03071 20160410 71.7 24 53.8 24 9999.9 0 913.6 24 9.9 24 11.7 24 19.0 28.0 86.5 63.5 0.00I 999.9 000000 722324 03071 20160411 72.7 24 39.6 24 9999.9 0 914.3 24 9.9 24 12.0 24 27.0 34.0 84.2 59.9 0.00G 999.9 000000 722324 03071 20160412 56.3 24 46.4 24 9999.9 0 922.2 24 9.8 24 11.2 24 17.1 25.1 77.0 51.1 0.00G 999.9 010010 722324 03071 20160413 58.5 24 49.6 24 9999.9 0 921.1 24 8.4 24 3.1 24 9.9 999.9 74.1 51.8 0.03G 999.9 000000 722324 03071 20160414 66.4 24 49.0 24 9999.9 0 917.6 24 10.0 24 6.3 24 12.0 18.1 83.1 54.1 0.00G 999.9 000000 722324 03071 20160415 69.9 24 52.8 24 9999.9 0 911.2 24 10.0 24 12.9 24 19.0 26.0 82.9 59.0 0.00G 999.9 000000 722324 03071 20160416 73.2 24 53.1 24 9999.9 0 907.9 24 10.0 24 13.5 24 21.0 31.1 84.2 65.7 0.00G 999.9 000000 722324 03071 20160417 65.9 24 34.8 24 9999.9 0 915.2 24 10.0 24 7.4 24 15.9 19.0 81.9 55.0 0.00G 999.9 000000 722324 03071 20160418 59.6 24 48.6 24 9999.9 0 922.2 24 9.9 24 10.6 24 18.1 22.9 73.8* 51.4* 0.00G 999.9 010000 722324 03071 20160419 63.8 24 56.6 24 9999.9 0 920.6 24 8.7 24 5.9 24 11.1 999.9 78.3 58.3 0.03G 999.9 000000 722324 03071 20160420 65.2 24 57.3 24 9999.9 0 917.8 24 9.9 24 6.3 24 15.9 19.0 80.6 56.8 0.00G 999.9 010010 722324 03071 20160421 68.4 24 55.5 24 9999.9 0 917.4 24 10.0 24 8.5 24 18.1 24.1 78.8 56.5 0.29G 999.9 000000 722324 03071 20160422 68.6 24 47.4 24 9999.9 0 921.9 24 9.9 24 5.1 24 11.1 15.0 81.5 55.9 0.00G 999.9 000000 722324 03071 20160423 71.3 24 46.7 24 9999.9 0 919.5 24 10.0 24 8.9 24 15.0 21.0 85.6 59.5 0.00G 999.9 000000 722324 03071 20160424 73.8 24 48.0 24 9999.9 0 912.3 24 10.0 24 12.4 24 18.1 25.1 91.6 61.0 0.00G 999.9 000000 722324 03071 20160425 77.9 24 39.9 24 9999.9 0 910.1 24 10.0 24 9.6 24 18.1 26.0 92.5 62.2 0.00G 999.9 000000 722324 03071 20160426 79.2 24 41.0 24 9999.9 0 907.3 24 10.0 24 10.3 24 26.0 35.9 90.7 66.2 0.00G 999.9 010000 722324 03071 20160427 71.2 24 18.6 24 9999.9 0 909.7 24 9.4 24 12.6 24 27.0 34.0 85.1 53.6 0.00G 999.9 000000 722324 03071 20160428 73.9 24 32.3 24 9999.9 0 909.4 24 8.9 24 7.8 24 20.0 26.0 91.2 53.8 0.00G 999.9 000000 722324 03071 20160429 77.3 24 46.2 24 9999.9 0 908.3 22 9.3 24 15.0 24 27.0 33.0 86.0 69.4 0.00G 999.9 000000 722324 03071 20160430 67.4 24 29.6 24 9999.9 0 911.0 22 8.4 24 8.0 24 27.0 33.0 81.5 51.4 0.00G 999.9 000000 722324 03071 20160501 61.3 24 36.6 24 9999.9 0 916.2 24 9.4 24 11.7 24 22.0 35.0 80.8 51.8 0.00G 999.9 000000 722324 03071 20160502 56.4 24 37.9 24 9999.9 0 923.6 24 9.3 24 9.4 24 15.0 21.0 72.0 46.8 0.01G 999.9 010000 722324 03071 20160503 64.7 24 40.2 24 9999.9 0 920.8 24 9.4 24 4.5 24 8.9 999.9 81.7 51.1 0.00I 999.9 000000 722324 03071 20160504 67.5 24 40.1 24 9999.9 0 922.3 24 9.3 24 5.3 24 18.1 25.1 85.6 50.0 0.00G 999.9 000000 722324 03071 20160505 73.8 24 31.4 24 9999.9 0 920.8 24 10.0 24 4.5 24 13.0 20.0 89.1 54.1 0.00G 999.9 000000 722324 03071 20160506 76.1 24 36.3 24 9999.9 0 918.4 24 10.0 24 12.7 24 25.1 33.0 91.6 60.8 0.00G 999.9 000000 722324 03071 20160507 78.8 24 42.7 24 9999.9 0 914.5 24 10.0 24 15.1 24 19.0 28.0 94.5 65.5 0.00G 999.9 000000 722324 03071 20160508 79.5 24 46.2 24 9999.9 0 909.9 24 10.0 24 14.4 24 22.0 31.1 95.0 68.0 0.02G 999.9 010010 722324 03071 20160509 75.5 24 41.1 24 9999.9 0 909.6 24 10.0 24 12.8 24 26.0 33.0 88.0 64.4 0.00G 999.9 010000 722324 03071 20160510 80.0 24 25.3 24 9999.9 0 912.7 24 10.0 24 9.6 24 18.1 24.1 95.7 65.5 0.00G 999.9 000000 722324 03071 20160511 81.4 24 47.2 24 9999.9 0 915.4 24 9.5 24 8.0 24 14.0 21.0 95.5 68.5 0.00G 999.9 000000 722324 03071 20160512 75.8 24 55.2 24 9999.9 0 920.9 24 8.9 24 9.0 24 21.0 27.0 92.7 64.4 0.00G 999.9 010000 722324 03071 20160513 75.8 24 58.2 24 9999.9 0 923.6 24 10.0 24 7.3 24 13.0 18.1 92.1 66.6 0.00G 999.9 000000 722324 03071 20160514 71.5 24 53.7 24 9999.9 0 921.9 24 9.5 24 12.1 24 19.0 29.9 90.1 59.2 0.00G 999.9 000000 722324 03071 20160515 61.8 24 51.3 24 9999.9 0 920.8 24 9.2 24 9.4 24 13.0 17.1 74.5 56.3 0.00G 999.9 010010 722324 03071 20160516 74.5 24 52.4 24 9999.9 0 913.9 24 10.0 24 11.1 24 15.9 25.1 96.3 61.0 0.01G 999.9 000000 722324 03071 20160517 73.4 24 55.2 24 9999.9 0 914.0 24 9.6 24 13.2 24 22.0 28.0 94.1 59.0 0.00G 999.9 010000 722324 03071 20160518 54.3 24 52.5 24 9999.9 0 921.8 24 8.8 24 10.5 24 20.0 26.0 58.8 51.8 0.08G 999.9 010000 722324 03071 20160519 57.4 24 53.1 24 9999.9 0 919.2 24 8.5 24 3.4 24 8.9 999.9 69.8 54.5 0.13G 999.9 010000 722324 03071 20160520 68.8 24 53.7 24 9999.9 0 916.5 24 8.2 24 6.1 24 9.9 18.1 91.6 56.3 0.01G 999.9 100000 722324 03071 20160521 79.2 24 59.2 24 9999.9 0 917.1 24 9.9 24 12.5 24 18.1 25.1 93.0 68.0 0.00G 999.9 000000 722324 03071 20160522 82.5 24 63.7 24 9999.9 0 915.2 24 9.6 24 12.1 24 21.0 28.0 97.0 74.7 0.00G 999.9 000000 722324 03071 20160523 83.1 24 58.8 24 9999.9 0 912.6 24 9.4 24 11.9 24 22.0 31.1 99.9 72.5 0.00G 999.9 000000 722324 03071 20160524 83.6 24 55.0 24 9999.9 0 913.0 24 9.8 24 10.7 24 18.1 25.1 99.7 74.3 0.00G 999.9 000000 722324 03071 20160525 85.6 24 45.2 21 9999.9 0 915.6 24 9.1 24 11.0 24 19.0 24.1 99.5 73.6 0.00G 999.9 000000 722324 03071 20160526 85.9 24 49.6 24 9999.9 0 913.3 24 9.8 24 12.1 24 22.9 31.1 98.4 75.2 0.00G 999.9 000000 722324 03071 20160527 79.7 24 33.9 24 9999.9 0 910.2 24 10.0 24 9.5 24 20.0 26.0 95.0 64.6 0.00G 999.9 000000 722324 03071 20160528 80.2 24 22.1 24 9999.9 0 914.0 24 9.5 24 6.4 24 15.0 22.9 96.8 60.1 0.00G 999.9 000000 722324 03071 20160529 78.7 24 61.2 24 9999.9 0 918.9 24 10.0 24 13.1 24 17.1 25.1 90.0 68.5 0.00G 999.9 010010 722324 03071 20160530 73.0 24 59.1 24 9999.9 0 919.1 22 9.8 24 7.4 24 25.1 33.0 94.1 59.9 0.00G 999.9 010010 722324 03071 20160531 73.7 24 57.9 24 9999.9 0 915.4 22 9.4 24 6.8 24 42.9 49.0 88.0* 62.8* 0.19G 999.9 010010 722324 03071 20160601 71.8 24 59.8 24 9999.9 0 916.7 19 9.4 24 5.6 24 19.0 25.1 83.1 62.8 0.23G 999.9 010010 722324 03071 20160602 69.5 24 59.6 24 9999.9 0 918.3 24 9.9 24 7.9 24 14.0 19.0 77.9 63.1 0.14G 999.9 010000 722324 03071 20160603 72.4 24 60.3 24 9999.9 0 918.3 24 10.0 24 7.7 24 13.0 19.0 84.4 64.9 0.00G 999.9 000000 722324 03071 20160604 76.1 24 59.0 24 9999.9 0 919.1 24 10.0 24 7.7 24 15.0 27.0 90.9 63.9 0.00G 999.9 000000 722324 03071 20160605 78.0 24 55.6 24 9999.9 0 919.8 24 10.0 24 3.8 24 12.0 17.1 90.1 64.8 0.00G 999.9 000000 722324 03071 20160606 78.4 24 48.4 24 9999.9 0 917.9 24 9.9 24 3.8 24 11.1 14.0 90.3 66.0 0.01G 999.9 010000 722324 03071 20160607 79.9 24 48.9 24 9999.9 0 917.6 24 10.0 24 4.8 24 11.1 15.0 91.9 66.4 0.00I 999.9 000000 722324 03071 20160608 80.6 24 50.4 24 9999.9 0 916.8 24 10.0 24 8.6 24 15.0 20.0 93.7 67.3 0.00G 999.9 000000 722324 03071 20160609 82.3 24 57.7 24 9999.9 0 915.9 24 10.0 24 10.1 24 18.1 21.0 96.1 70.7 0.00G 999.9 000000 722324 03071 20160610 82.5 24 60.5 24 9999.9 0 916.0 24 10.0 24 11.0 24 19.0 27.0 94.6 71.8 0.00G 999.9 010000 722324 03071 20160611 83.5 24 62.3 24 9999.9 0 917.2 24 10.0 24 11.2 24 15.9 22.0 95.0 72.3 0.00G 999.9 000000 722324 03071 20160612 79.5 24 65.6 24 9999.9 0 919.1 24 9.7 24 10.1 24 17.1 26.0 92.7 67.1 0.01G 999.9 010010 722324 03071 20160613 86.1 24 65.3 24 9999.9 0 916.7 24 9.8 24 7.1 24 12.0 14.0 100.4 75.6 0.00I 999.9 000000 722324 03071 20160614 88.3 24 63.3 24 9999.9 0 913.6 24 10.0 24 7.5 24 15.9 24.1 100.2 77.4 0.00G 999.9 000000 722324 03071 20160615 88.1 24 65.0 24 9999.9 0 914.7 24 10.0 24 7.7 24 15.9 20.0 99.1 76.1 0.00G 999.9 000000 722324 03071 20160616 81.6 24 64.7 24 9999.9 0 916.8 24 9.6 24 8.4 24 31.1 42.0 98.4 68.9 0.01G 999.9 010010 722324 03071 20160617 88.3 24 62.9 24 9999.9 0 916.3 24 10.0 24 8.5 24 15.0 20.0 102.6 77.2 0.00G 999.9 000000 722324 03071 20160618 89.4 24 60.3 24 9999.9 0 917.7 24 10.0 24 7.7 24 15.0 19.0 101.7 74.7 0.00G 999.9 000000 722324 03071 20160619 82.1 24 61.2 24 9999.9 0 921.3 24 9.9 24 6.9 24 26.0 35.0 99.3 67.3 0.00G 999.9 010000 722324 03071 20160620 81.6 24 60.3 24 9999.9 0 924.0 24 10.0 24 8.1 24 14.0 19.0 92.1 71.4 0.02G 999.9 000000 722324 03071 20160621 83.0 24 60.0 24 9999.9 0 923.8 24 10.0 24 8.2 24 14.0 22.0 95.0 72.5 0.00G 999.9 000000 722324 03071 20160622 86.1 24 57.1 24 9999.9 0 918.7 24 10.0 24 10.0 24 15.0 22.0 99.5 73.8 0.00G 999.9 000000 722324 03071 20160623 86.4 24 56.7 24 9999.9 0 918.2 24 9.9 24 11.0 24 15.0 21.0 97.7 73.9 0.00G 999.9 000000 722324 03071 20160624 84.8 24 56.8 24 9999.9 0 918.8 24 9.9 24 10.4 24 17.1 22.0 95.7 72.0 0.00G 999.9 000000 722324 03071 20160625 84.0 24 59.9 24 9999.9 0 917.6 24 10.0 24 11.4 24 17.1 24.1 94.5 73.6 0.00G 999.9 000000 722324 03071 20160626 79.2 24 63.8 24 9999.9 0 920.3 24 10.0 24 9.1 24 17.1 33.0 92.5 68.9 0.00G 999.9 010010 722324 03071 20160627 74.5 24 65.6 24 9999.9 0 922.8 24 9.9 24 8.0 24 14.0 19.0 84.4 70.2 0.01G 999.9 010000 722324 03071 20160628 80.1 24 62.9 24 9999.9 0 923.3 24 10.0 24 3.4 24 15.0 20.0 92.8 72.9 0.07G 999.9 010010 722324 03071 20160629 78.9 24 63.7 24 9999.9 0 922.0 22 10.0 24 4.7 24 11.1 15.0 93.4 68.4 0.06G 999.9 000000 722324 03071 20160630 83.6 24 60.4 24 9999.9 0 919.8 22 10.0 24 6.3 24 13.0 19.0 95.0 71.6 0.00G 999.9 000000 722324 03071 20160701 85.1 24 59.0 24 9999.9 0 919.2 18 10.0 24 9.0 24 14.0 20.0 96.3 73.6 0.00G 999.9 000000 722324 03071 20160702 85.5 24 60.9 24 9999.9 0 917.8 24 10.0 24 9.8 24 17.1 22.9 97.5 75.7 0.00G 999.9 000000 722324 03071 20160703 88.8 24 57.4 24 9999.9 0 915.5 24 10.0 24 9.9 24 17.1 22.0 104.0 78.1 0.00G 999.9 000000 722324 03071 20160704 92.9 24 53.7 24 9999.9 0 915.0 24 10.0 24 6.0 24 15.0 24.1 106.5 80.1 0.00G 999.9 000000 722324 03071 20160705 92.3 24 56.7 24 9999.9 0 915.5 24 9.7 24 10.3 24 32.1 42.0 105.8 76.3 0.03G 999.9 010010 722324 03071 20160706 88.6 24 58.6 24 9999.9 0 915.7 24 8.8 24 12.7 24 22.0 35.0 104.9 73.6 0.03G 999.9 010010 722324 03071 20160707 90.8 24 57.0 24 9999.9 0 915.1 24 9.8 24 11.6 24 28.9 48.0 105.8 72.7 0.00G 999.9 010010 722324 03071 20160708 90.1 24 57.8 23 9999.9 0 916.5 24 10.0 24 7.7 24 24.1 35.9 103.1 78.8 0.00G 999.9 010010 722324 03071 20160709 83.8 24 64.0 24 9999.9 0 918.9 24 9.9 24 9.7 24 28.9 35.9 97.5 70.2 0.00G 999.9 010010 722324 03071 20160710 87.5 24 63.1 24 9999.9 0 917.0 24 9.9 24 9.7 24 14.0 20.0 101.8 75.4 0.00G 999.9 000000 722324 03071 20160711 91.0 24 59.9 24 9999.9 0 913.4 24 10.0 24 11.6 24 18.1 21.0 106.0 78.3 0.00G 999.9 000000 722324 03071 20160712 92.8 24 57.2 24 9999.9 0 913.3 24 10.0 24 12.3 24 18.1 26.0 108.5 79.9 0.00G 999.9 000000 722324 03071 20160713 91.7 24 59.8 24 9999.9 0 915.7 24 10.0 24 12.8 24 18.1 22.9 105.4 80.1 0.00G 999.9 000000 722324 03071 20160714 92.1 24 54.8 24 9999.9 0 916.4 24 10.0 24 11.6 24 17.1 22.9 106.2 78.3 0.00G 999.9 000000 722324 03071 20160715 85.4 24 60.3 24 9999.9 0 918.2 24 9.6 24 8.2 24 28.0 35.9 103.6 69.6 0.41G 999.9 010010 722324 03071 20160716 86.9 24 56.0 24 9999.9 0 918.1 24 9.6 24 9.5 24 15.0 24.1 98.8 71.6 0.00G 999.9 000000 722324 03071 20160717 87.4 24 56.8 24 9999.9 0 918.1 24 10.0 24 10.5 24 17.1 21.0 99.5 76.3 0.00G 999.9 000000 722324 03071 20160718 87.7 24 57.8 24 9999.9 0 920.9 24 10.0 24 11.5 24 15.0 22.9 98.1 76.1 0.00G 999.9 000000 722324 03071 20160719 87.0 24 56.2 24 9999.9 0 922.7 24 10.0 24 8.4 24 14.0 22.0 98.1 75.4 0.00G 999.9 000000 722324 03071 20160720 87.5 24 59.0 24 9999.9 0 922.8 24 9.9 24 8.9 24 14.0 21.0 98.4 76.8 0.00G 999.9 000000 722324 03071 20160721 87.8 24 57.5 24 9999.9 0 922.4 24 9.9 24 10.1 24 15.0 22.0 99.5 76.3 0.00G 999.9 000000 722324 03071 20160722 88.1 24 54.0 24 9999.9 0 921.4 24 9.6 24 8.1 24 13.0 22.0 99.9 75.0 0.00G 999.9 000000 722324 03071 20160723 89.1 24 55.6 24 9999.9 0 918.5 24 9.9 24 7.6 24 15.0 21.0 101.1 75.2 0.00G 999.9 000000 722324 03071 20160724 89.9 24 56.5 24 9999.9 0 916.8 24 10.0 24 8.3 24 13.0 22.0 101.3 75.6 0.00G 999.9 000000 722324 03071 20160725 90.7 24 57.3 24 9999.9 0 917.9 24 10.0 24 6.8 24 12.0 15.9 101.5 78.8 0.00G 999.9 000000 722324 03071 20160726 88.4 24 59.1 24 9999.9 0 918.2 24 10.0 24 5.9 24 15.9 22.9 100.6 77.4 0.00G 999.9 010000 722324 03071 20160727 81.4 24 65.8 24 9999.9 0 918.2 24 9.8 24 3.0 24 19.0 28.9 98.1 73.6 0.01G 999.9 010010 722324 03071 20160728 85.1 24 62.6 24 9999.9 0 918.4 24 9.4 24 5.1 24 14.0 18.1 97.7 74.5 0.00G 999.9 000000 722324 03071 20160729 82.2 24 64.0 24 9999.9 0 919.0 24 9.0 24 6.2 24 13.0 31.1 95.4 72.9 0.13G 999.9 010010 722324 03071 20160730 85.6 24 59.9 24 9999.9 0 918.7 22 10.0 24 9.3 24 15.0 21.0 97.3 74.3 0.00G 999.9 000000 722324 03071 20160731 87.3 24 59.2 24 9999.9 0 917.3 22 9.9 24 10.0 24 18.1 24.1 99.7 75.6 0.00G 999.9 000000 722324 03071 20160801 87.0 24 57.8 24 9999.9 0 918.2 18 9.6 24 9.8 24 15.9 26.0 99.9 74.8 0.00G 999.9 000000 722324 03071 20160802 88.6 24 56.9 24 9999.9 0 919.4 24 9.6 24 9.3 24 20.0 25.1 102.0 77.0 0.00G 999.9 000000 722324 03071 20160803 86.8 24 59.9 24 9999.9 0 919.7 24 10.0 24 6.3 24 17.1 24.1 101.7 77.2 0.00G 999.9 000000 722324 03071 20160804 90.4 24 56.5 24 9999.9 0 917.1 24 10.0 24 9.7 24 15.0 19.0 102.9 78.3 0.00G 999.9 000000 722324 03071 20160805 89.8 24 55.9 24 9999.9 0 917.0 24 10.0 24 10.3 24 14.0 22.0 101.3 77.4 0.00G 999.9 000000 722324 03071 20160806 89.0 24 56.2 24 9999.9 0 917.7 24 9.4 24 7.8 24 13.0 19.0 100.2 76.5 0.00G 999.9 000000 722324 03071 20160807 89.7 24 56.9 24 9999.9 0 917.0 24 10.0 24 9.3 24 14.0 22.0 101.1 78.1 0.00G 999.9 000000 722324 03071 20160808 90.8 24 57.4 24 9999.9 0 915.5 24 9.6 24 9.8 24 13.0 21.0 102.2 79.2 0.00G 999.9 000000 722324 03071 20160809 88.2 24 60.5 24 9999.9 0 915.8 24 9.9 24 8.9 24 18.1 27.0 100.4 74.7 0.00G 999.9 010010 722324 03071 20160810 82.5 24 66.3 24 9999.9 0 917.9 24 9.9 24 6.4 24 15.0 21.0 97.0 75.4 0.01G 999.9 000000 722324 03071 20160811 88.1 24 62.0 24 9999.9 0 917.8 24 9.9 24 7.3 24 15.0 24.1 100.8 77.5 0.00G 999.9 000000 722324 03071 20160812 85.6 24 64.4 24 9999.9 0 915.8 24 9.3 24 5.8 24 21.0 26.0 97.2 73.8 0.00G 999.9 010010 722324 03071 20160813 81.1 24 64.7 24 9999.9 0 918.1 24 8.6 24 7.8 24 19.0 27.0 92.3 74.3 0.12G 999.9 010000 722324 03071 20160814 79.2 24 51.5 24 9999.9 0 919.6 24 10.0 24 7.8 24 15.9 19.0 88.3 72.0 0.00G 999.9 010000 722324 03071 20160815 77.9 24 52.5 24 9999.9 0 920.6 24 10.0 24 6.1 24 11.1 18.1 90.7 65.8 0.00G 999.9 000000 722324 03071 20160816 80.0 24 56.6 24 9999.9 0 921.1 24 10.0 24 5.9 24 13.0 21.0 92.5 66.4 0.00G 999.9 000000 722324 03071 20160817 78.4 24 60.0 24 9999.9 0 921.4 24 10.0 24 4.4 24 14.0 22.0 90.5 66.7 0.00G 999.9 000000 722324 03071 20160818 79.4 24 65.8 24 9999.9 0 920.1 24 10.0 24 8.2 24 15.0 21.0 90.0 72.5 0.00G 999.9 000000 722324 03071 20160819 80.6 24 65.9 24 9999.9 0 917.3 24 10.0 24 8.8 24 15.0 19.0 91.0 73.4 0.00G 999.9 000000 722324 03071 20160820 77.3 24 66.5 24 9999.9 0 916.3 24 10.0 24 9.3 24 15.9 21.0 85.5 71.6 0.00G 999.9 010000 722324 03071 20160821 74.3 24 61.5 24 9999.9 0 920.0 24 9.9 24 6.2 24 13.0 17.1 85.5 66.2 0.00G 999.9 000000 722324 03071 20160822 77.9 24 63.0 24 9999.9 0 920.4 24 10.0 24 7.7 24 15.9 21.0 87.8 71.1 0.00G 999.9 010010 722324 03071 20160823 79.4 24 66.9 24 9999.9 0 920.1 24 10.0 24 10.3 24 18.1 24.1 90.5 74.8 0.00G 999.9 010000 722324 03071 20160824 79.4 24 63.2 24 9999.9 0 920.9 24 9.9 24 5.9 24 18.1 22.9 92.1 67.5 0.00G 999.9 010010 722324 03071 20160825 79.3 24 62.8 24 9999.9 0 920.1 24 9.5 24 5.5 24 13.0 18.1 94.1 71.8 0.03G 999.9 010010 722324 03071 20160826 75.0 24 63.1 24 9999.9 0 920.7 24 8.6 24 5.3 24 14.0 22.0 84.9 69.3 0.00G 999.9 010010 722324 03071 20160827 79.0 24 62.7 24 9999.9 0 919.4 24 8.0 24 4.7 24 11.1 15.9 93.9 69.1 0.01G 999.9 000000 722324 03071 20160828 80.6 24 62.2 24 9999.9 0 919.7 24 9.4 24 6.6 24 20.0 27.0 91.6 70.7 0.00G 999.9 000000 722324 03071 20160829 74.4 24 66.7 24 9999.9 0 920.9 24 9.6 24 6.6 24 14.0 20.0 83.1 68.2 0.04G 999.9 010010 722324 03071 20160830 74.6 24 67.1 24 9999.9 0 921.9 22 9.4 24 6.0 24 14.0 19.0 86.7 69.8 0.11G 999.9 010000 722324 03071 20160831 75.8 24 66.4 24 9999.9 0 921.6 22 9.3 24 5.1 24 15.0 22.0 86.4 70.2 0.00G 999.9 010000 722324 03071 20160901 73.8 24 67.6 24 9999.9 0 921.5 18 9.2 24 4.9 24 12.0 17.1 82.0 70.7 0.00G 999.9 010010 722324 03071 20160902 75.4 24 66.3 24 9999.9 0 921.0 24 8.9 24 3.2 24 11.1 15.0 88.0 67.5 0.02G 999.9 010000 722324 03071 20160903 78.4 24 64.9 24 9999.9 0 919.3 24 9.4 24 6.5 24 12.0 17.1 90.7 69.8 0.00G 999.9 000000 722324 03071 20160904 80.7 24 64.8 24 9999.9 0 917.1 24 9.8 24 10.1 24 17.1 24.1 91.8 71.6 0.00G 999.9 000000 722324 03071 20160905 80.2 24 63.6 24 9999.9 0 917.4 24 10.0 24 13.2 24 22.9 28.0 88.7 71.6 0.00G 999.9 000000 722324 03071 20160906 81.1 24 64.7 24 9999.9 0 919.0 24 10.0 24 12.1 24 15.9 22.0 90.5 74.8 0.00G 999.9 000000 722324 03071 20160907 82.9 24 66.5 24 9999.9 0 920.4 24 10.0 24 10.9 24 15.9 21.0 95.4 76.1 0.00G 999.9 000000 722324 03071 20160908 81.6 24 65.4 24 9999.9 0 918.9 24 8.0 24 6.3 24 28.9 39.0 95.2 71.8 0.01G 999.9 010010 722324 03071 20160909 85.5 24 60.3 24 9999.9 0 915.8 24 9.4 24 8.5 24 15.0 21.0 98.6 74.3 0.00G 999.9 000000 722324 03071 20160910 75.6 24 63.3 24 9999.9 0 921.7 24 9.1 24 9.5 24 19.0 28.9 96.1 63.7 0.00G 999.9 010010 722324 03071 20160911 72.1 24 60.7 24 9999.9 0 925.1 24 9.8 24 5.0 24 11.1 15.9 88.9 62.8 0.02G 999.9 000000 722324 03071 20160912 79.5 24 61.7 24 9999.9 0 918.1 24 8.9 24 7.6 24 15.0 19.0 92.5 68.9 0.00G 999.9 000000 722324 03071 20160913 78.6 24 62.2 24 9999.9 0 917.5 24 9.0 24 7.4 24 11.1 17.1 91.8 67.3 0.00G 999.9 000000 722324 03071 20160914 77.7 24 63.9 24 9999.9 0 921.2 24 8.6 24 5.4 24 14.0 19.0 88.7 67.6 0.19G 999.9 010010 722324 03071 20160915 77.2 24 66.0 24 9999.9 0 920.9 24 9.4 24 4.8 24 11.1 15.0 90.5 69.3 0.06G 999.9 010010 722324 03071 20160916 78.1 24 63.4 24 9999.9 0 918.3 24 9.4 24 8.4 24 19.0 22.9 92.7* 67.3* 0.00G 999.9 010010 722324 03071 20160917 74.6 24 66.1 24 9999.9 0 919.5 24 9.3 24 7.2 24 14.0 19.0 89.6 67.6 0.01G 999.9 010010 722324 03071 20160918 77.7 24 64.4 24 9999.9 0 919.1 24 9.6 24 7.3 24 19.0 28.9 92.7 70.0 0.04G 999.9 010010 722324 03071 20160919 83.6 24 64.9 24 9999.9 0 919.5 24 9.6 24 4.5 24 9.9 999.9 96.6 73.4 0.01G 999.9 000000 722324 03071 20160920 84.1 24 60.6 24 9999.9 0 920.9 24 8.9 24 6.6 24 13.0 19.0 95.0 74.3 0.00I 999.9 000000 722324 03071 20160921 81.2 24 56.2 24 9999.9 0 920.4 24 9.5 24 6.3 24 12.0 17.1 92.7 68.9 0.00G 999.9 000000 722324 03071 20160922 80.9 24 57.7 24 9999.9 0 918.7 24 9.3 24 6.9 24 15.9 20.0 91.6 69.4 0.00G 999.9 000000 722324 03071 20160923 80.0 24 57.6 24 9999.9 0 916.4 24 9.8 24 9.6 24 15.9 22.9 92.3 68.9 0.00G 999.9 000000 722324 03071 20160924 80.9 24 60.8 24 9999.9 0 915.8 24 10.0 24 9.8 24 15.0 20.0 89.4 74.8 0.00G 999.9 010000 722324 03071 20160925 71.4 24 61.0 24 9999.9 0 919.0 24 9.8 24 6.6 24 17.1 27.0 83.1 61.7 0.00G 999.9 010010 722324 03071 20160926 63.7 24 48.2 24 9999.9 0 925.7 24 10.0 24 12.8 24 17.1 22.9 70.2 59.0 0.04G 999.9 000000 722324 03071 20160927 65.1 24 45.1 24 9999.9 0 924.7 24 10.0 24 3.2 24 8.9 999.9 78.1 56.5 0.00G 999.9 010000 722324 03071 20160928 69.3 24 46.6 24 9999.9 0 921.9 24 10.0 24 2.1 24 7.0 999.9 86.4 54.9 0.00G 999.9 000000 722324 03071 20160929 70.0 24 47.0 24 9999.9 0 925.8 23 10.0 24 5.4 24 14.0 18.1 83.1 56.7 0.00G 999.9 000000 722324 03071 20160930 68.4 24 47.5 24 9999.9 0 925.9 22 10.0 24 5.8 24 9.9 17.1 81.7 56.3 0.00G 999.9 000000 722324 03071 20161001 71.8 24 53.2 24 9999.9 0 920.1 18 10.0 24 5.8 24 14.0 17.1 85.5 60.1 0.00G 999.9 000000 722324 03071 20161002 74.6 24 56.6 24 9999.9 0 918.3 24 10.0 24 7.4 24 11.1 15.9 90.0 62.6 0.00G 999.9 000000 722324 03071 20161003 76.7 24 58.4 24 9999.9 0 915.6 24 10.0 24 9.1 24 15.0 20.0 90.5 64.4 0.00G 999.9 000000 722324 03071 20161004 78.5 24 52.9 24 9999.9 0 910.8 24 10.0 24 14.8 24 22.9 33.0 90.1 68.0 0.00G 999.9 000000 722324 03071 20161005 77.6 24 47.9 24 9999.9 0 913.9 24 9.9 24 5.0 24 13.0 15.9 92.8 61.0 0.00G 999.9 000000 722324 03071 20161006 80.6 24 57.0 24 9999.9 0 914.8 24 10.0 24 8.4 24 17.1 22.0 93.4 71.8 0.00G 999.9 000000 722324 03071 20161007 67.9 24 52.2 24 9999.9 0 921.3 24 9.5 24 9.6 24 22.0 32.1 90.7 55.4 0.00G 999.9 000000 722324 03071 20161008 63.4 24 50.8 24 9999.9 0 926.9 24 9.8 24 6.3 24 13.0 14.0 71.6 58.1 0.00G 999.9 010010 722324 03071 20161009 66.3 24 59.6 24 9999.9 0 926.1 24 10.0 24 4.4 24 11.1 15.0 78.3 61.7 0.03G 999.9 000000 722324 03071 20161010 70.9 24 56.4 24 9999.9 0 923.3 24 10.0 24 6.4 24 11.1 17.1 85.3 60.8 0.01G 999.9 000000 722324 03071 20161011 75.6 24 55.5 24 9999.9 0 921.0 24 9.9 24 7.1 24 11.1 15.9 92.3 61.9 0.00G 999.9 000000 722324 03071 20161012 78.3 24 54.5 24 9999.9 0 919.3 24 10.0 24 8.2 24 18.1 25.1 91.9 67.5 0.00G 999.9 000000 722324 03071 20161013 58.4 24 49.4 24 9999.9 0 923.5 24 8.5 24 9.0 24 15.9 21.0 75.0 54.5 0.00G 999.9 010000 722324 03071 20161014 65.9 24 58.8 24 9999.9 0 922.1 24 7.9 24 4.1 24 8.9 999.9 82.4 60.3 0.00G 999.9 000000 722324 03071 20161015 77.2 24 59.2 24 9999.9 0 917.5 24 10.0 24 8.6 24 14.0 18.1 94.3 67.6 0.00G 999.9 000000 722324 03071 20161016 80.7 24 53.8 24 9999.9 0 916.0 24 10.0 24 8.9 24 15.0 19.0 95.5 67.6 0.00G 999.9 000000 722324 03071 20161017 80.9 24 51.3 24 9999.9 0 913.4 24 10.0 24 10.6 24 19.0 22.9 97.0 67.5 0.00G 999.9 000000 722324 03071 20161018 76.1 24 53.7 24 9999.9 0 913.3 24 10.0 24 5.9 24 12.0 15.0 92.1 57.4 0.00G 999.9 000000 722324 03071 20161019 73.3 24 46.2 24 9999.9 0 915.8 24 10.0 24 4.2 24 11.1 15.0 93.4 57.4 0.00G 999.9 000000 722324 03071 20161020 70.3 23 41.5 23 9999.9 0 923.4 23 10.0 23 11.4 23 20.0 28.9 86.9 61.7 0.00G 999.9 000000 722324 03071 20161027 83.8 6 51.3 6 9999.9 0 923.4 6 10.0 6 2.8 6 7.0 999.9 85.8 81.7 0.00I 999.9 000000 722324 03071 20161028 74.6 24 52.3 24 9999.9 0 923.1 24 5.4 24 8.5 24 15.9 20.0 85.8 64.8 0.00G 999.9 000000 722324 03071 20161029 74.0 24 48.4 24 9999.9 0 921.1 24 7.4 24 8.3 24 12.0 17.1 87.3 64.6 0.00G 999.9 000000 722324 03071 20161030 74.3 24 47.6 24 9999.9 0 921.4 23 9.9 24 6.0 24 13.0 18.1 90.5 60.6 0.00G 999.9 000000 722324 03071 20161031 74.5 24 47.5 24 9999.9 0 920.0 22 9.0 24 7.5 24 12.0 18.1 89.4 60.1 0.00G 999.9 000000 722324 03071 20161101 75.6 24 50.3 24 9999.9 0 915.9 16 9.3 24 9.9 24 13.0 19.0 90.3 65.3 0.00G 999.9 000000 722324 03071 20161102 75.2 24 57.5 24 9999.9 0 917.8 24 10.0 24 8.6 24 17.1 21.0 84.4 67.5 0.00G 999.9 000000 722324 03071 20161103 64.3 24 60.0 24 9999.9 0 925.2 24 9.0 24 10.7 24 15.9 21.0 78.3 58.6 0.01G 999.9 010010 722324 03071 20161104 62.1 24 57.7 24 9999.9 0 928.7 24 8.0 24 6.7 24 14.0 17.1 68.0 59.0 0.01G 999.9 000000 722324 03071 20161105 62.5 24 59.1 24 9999.9 0 925.8 24 7.3 24 4.7 24 11.1 15.0 66.2 59.9 0.01G 999.9 010010 722324 03071 20161106 63.7 24 60.0 24 9999.9 0 921.2 24 8.5 24 7.6 24 15.0 28.0 73.9 57.2 0.00G 999.9 010010 722324 03071 20161107 67.9 24 58.7 24 9999.9 0 919.9 24 7.1 24 6.2 24 13.0 18.1 76.6 62.8 0.00G 999.9 000000 722324 03071 20161108 60.5 24 53.4 24 9999.9 0 926.5 24 8.8 24 9.2 24 18.1 25.1 70.0 54.9 0.01G 999.9 010000 722324 03071 20161109 55.6 24 48.4 24 9999.9 0 928.9 24 9.5 24 6.7 24 14.0 999.9 58.3 50.2 0.00G 999.9 010000 722324 03071 20161110 55.0 24 51.0 24 9999.9 0 928.8 24 9.1 24 2.6 24 7.0 999.9 60.3 52.3 0.00G 999.9 010000 722324 03071 20161111 56.8 24 51.9 24 9999.9 0 927.3 24 8.5 24 3.1 24 7.0 999.9 64.8 50.9 0.00G 999.9 000000 722324 03071 20161112 56.2 24 47.4 24 9999.9 0 927.6 24 9.5 24 4.0 24 9.9 999.9 63.5 49.6 0.00G 999.9 000000 722324 03071 20161113 56.7 24 46.8 24 9999.9 0 924.6 24 9.9 24 4.4 24 12.0 17.1 72.0 46.2 0.00G 999.9 000000 722324 03071 20161114 62.1 24 45.4 24 9999.9 0 921.2 24 10.0 24 5.0 24 8.0 999.9 76.5 50.4 0.00G 999.9 000000 722324 03071 20161115 63.3 24 39.9 24 9999.9 0 921.7 24 10.0 24 4.1 24 9.9 999.9 81.5 50.4 0.00G 999.9 000000 722324 03071 20161116 64.5 24 37.5 24 9999.9 0 918.0 24 10.0 24 4.4 24 17.1 20.0 81.9 49.1 0.00G 999.9 000000 722324 03071 20161117 67.1 24 42.6 24 9999.9 0 911.7 24 10.0 24 10.8 24 13.0 19.0 77.4 59.2 0.03G 999.9 000000 722324 03071 20161118 56.7 24 32.7 24 9999.9 0 920.8 24 10.0 24 10.4 24 15.9 22.0 73.0 45.5 0.00G 999.9 000000 722324 03071 20161119 45.3 24 22.9 24 9999.9 0 934.6 24 10.0 24 3.1 24 8.9 999.9 58.1 33.3 0.00G 999.9 000000 722324 03071 20161120 53.3 24 25.1 24 9999.9 0 926.9 24 10.0 24 6.9 24 9.9 15.0 73.4 42.4 0.00G 999.9 000000 722324 03071 20161121 59.0 24 35.7 24 9999.9 0 918.8 24 9.9 24 6.7 24 11.1 15.9 79.0 44.6 0.00G 999.9 000000 722324 03071 20161122 64.1 24 42.7 24 9999.9 0 914.7 24 10.0 24 10.3 24 22.0 29.9 75.2* 51.6* 0.00G 999.9 010000 722324 03071 20161123 53.2 24 32.8 24 9999.9 0 922.9 24 10.0 24 4.3 24 8.0 999.9 68.9 40.1 0.00G 999.9 000000 722324 03071 20161124 55.8 24 35.8 24 9999.9 0 922.4 24 10.0 24 3.2 24 12.0 15.0 72.9 44.6 0.00G 999.9 000000 722324 03071 20161125 54.7 24 32.4 24 9999.9 0 928.1 24 10.0 24 7.5 24 15.0 19.0 66.6 46.0 0.00G 999.9 010000 722324 03071 20161126 50.3 24 45.8 24 9999.9 0 928.8 24 7.9 24 2.3 24 8.9 14.0 56.3 47.3 0.01G 999.9 010000 722324 03071 20161127 60.3 24 54.0 24 9999.9 0 916.2 24 9.9 24 14.0 24 21.0 28.0 67.5 56.1 0.04G 999.9 000000 722324 03071 20161128 59.1 24 38.1 24 9999.9 0 906.5 24 10.0 24 13.4 24 22.9 35.0 64.4 51.8 0.00G 999.9 000000 722324 03071 20161129 57.3 24 25.6 24 9999.9 0 907.0 23 10.0 24 10.1 24 19.0 31.1 63.0 47.7 0.00G 999.9 000000 722324 03071 20161130 45.2 24 23.4 24 9999.9 0 917.6 22 10.0 24 4.0 24 11.1 14.0 55.8 31.5 0.00G 999.9 000000 722324 03071 20161201 47.5 24 26.5 24 9999.9 0 917.0 18 10.0 24 3.3 24 8.9 999.9 65.3 33.8 0.00G 999.9 000000 722324 03071 20161202 50.5 24 42.2 24 9999.9 0 916.4 24 8.9 24 6.0 24 11.1 999.9 61.3 42.4 0.00G 999.9 000000 722324 03071 20161203 44.2 24 44.2 24 9999.9 0 917.8 24 4.5 24 10.4 24 15.0 20.0 47.5 42.8 0.01G 999.9 010010 722324 03071 20161204 44.0 24 41.8 24 9999.9 0 918.8 24 9.0 24 5.0 24 9.9 15.0 48.7 42.3 0.02G 999.9 010000 722324 03071 20161205 47.1 24 39.4 24 9999.9 0 914.9 24 9.6 24 4.3 24 13.0 17.1 62.1 41.0 0.01G 999.9 000000 722324 03071 20161206 48.2 24 30.4 24 9999.9 0 913.4 19 10.0 24 9.6 24 18.1 22.0 58.8 37.0 0.00G 999.9 000000 722324 03071 20161207 40.6 24 36.5 24 9999.9 0 9999.9 0 8.2 24 5.0 24 11.1 15.9 47.3 35.8 0.00G 999.9 000000 722324 03071 20161208 33.6 24 27.8 24 9999.9 0 9999.9 0 8.4 24 13.2 24 20.0 27.0 43.5 27.9 0.00G 999.9 011000 722324 03071 20161209 32.1 24 23.8 24 9999.9 0 9999.9 0 10.0 24 5.4 24 9.9 14.0 45.3 27.5 0.00G 999.9 000000 722324 03071 20161210 40.9 24 33.7 24 9999.9 0 9999.9 0 10.0 24 7.4 24 13.0 17.1 59.5 32.9 0.00G 999.9 000000 722324 03071 20161211 51.6 24 39.8 24 9999.9 0 9999.9 0 9.8 24 10.1 24 20.0 27.0 70.5 41.4 0.00G 999.9 000000 722324 03071 20161212 49.3 24 34.8 24 9999.9 0 9999.9 0 10.0 24 4.4 24 11.1 17.1 65.8 35.1 0.00G 999.9 000000 722324 03071 20161213 53.8 24 38.8 24 9999.9 0 9999.9 0 10.0 24 6.1 24 12.0 15.9 60.8 43.7 0.00G 999.9 000000 722324 03071 20161214 46.9 24 34.6 24 9999.9 0 921.0 24 9.4 24 3.4 24 8.9 999.9 71.8 35.1 0.00G 999.9 000000 722324 03071 20161215 39.4 24 29.8 24 9999.9 0 925.3 24 8.0 24 8.0 24 15.0 20.0 61.2 32.0 0.00G 999.9 000000 722324 03071 20161216 56.5 24 43.2 24 9999.9 0 914.7 24 7.2 24 12.7 24 24.1 33.0 81.9 47.3 0.00G 999.9 000000 722324 03071 20161217 62.9 24 30.6 24 9999.9 0 908.6 24 9.5 24 11.6 24 32.1 46.0 79.9* 9999.9 0.00G 999.9 000000 722324 03071 20161218 22.3 24 5.9 24 9999.9 0 928.0 24 10.0 24 8.8 24 19.0 25.1 32.4 15.8 0.00G 999.9 000000 722324 03071 20161219 27.6 24 6.7 24 9999.9 0 934.6 24 10.0 24 3.1 24 7.0 999.9 39.4 21.6 0.00G 999.9 000000 722324 03071 20161220 40.9 24 16.2 24 9999.9 0 930.3 24 10.0 24 4.3 24 9.9 999.9 66.7 29.3 0.00G 999.9 000000 722324 03071 20161221 55.2 24 28.6 24 9999.9 0 922.9 24 10.0 24 6.5 24 13.0 17.1 72.9 45.1 0.00G 999.9 000000 722324 03071 20161222 49.7 24 26.7 24 9999.9 0 927.0 24 10.0 24 9.3 24 15.0 21.0 66.0 42.1 0.00G 999.9 000000 722324 03071 20161223 47.9 24 31.2 24 9999.9 0 921.3 24 10.0 24 3.8 24 11.1 999.9 63.7 40.6 0.00G 999.9 010000 722324 03071 20161224 53.1 24 42.1 24 9999.9 0 918.0 24 10.0 24 5.1 24 17.1 22.9 72.5 39.7 0.00G 999.9 000000 722324 03071 20161225 63.2 24 47.0 24 9999.9 0 912.3 24 10.0 24 17.5 24 29.9 38.1 65.7 56.5 0.00G 999.9 000000 722324 03071 20161226 54.2 24 28.6 24 9999.9 0 920.8 24 10.0 24 5.1 24 11.1 15.0 68.4 43.9 0.00G 999.9 000000 722324 03071 20161227 51.4 24 34.0 24 9999.9 0 925.9 24 10.0 24 1.7 24 8.0 999.9 68.0 36.5 0.00G 999.9 000000 722324 03071 20161228 60.1 24 38.2 24 9999.9 0 921.6 24 10.0 24 4.6 24 8.9 999.9 77.4 46.6 0.00G 999.9 000000 722324 03071 20161229 52.4 24 19.4 24 9999.9 0 928.8 24 10.0 24 9.3 24 15.9 22.9 72.0 43.2 0.00G 999.9 000000 722324 03071 20161230 46.0 24 20.0 24 9999.9 0 929.6 23 10.0 24 6.5 24 19.0 22.9 50.9 41.5 0.00G 999.9 010000 722324 03071 20161231 53.0 24 34.4 24 9999.9 0 914.1 22 10.0 24 9.4 24 15.0 21.0 71.6 42.8 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/2007/0000755000175000017500000000000014302004506015070 5ustar nileshnileshfluids-1.0.22/tests/gsod/2007/724050-13743.op0000644000175000017500000014327214302004506016661 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20070101 48.1 24 46.6 24 1015.3 16 1012.9 24 5.1 24 2.8 24 9.9 999.9 53.1 37.9 0.82G 999.9 010000 724050 13743 20070102 46.9 24 31.6 24 1021.0 24 1018.7 24 9.9 24 11.3 24 21.0 28.9 53.1 42.1 0.27G 999.9 000000 724050 13743 20070103 42.1 24 31.2 24 1029.4 24 1027.1 24 10.0 24 4.5 24 14.0 18.1 55.9 32.0 0.00G 999.9 000000 724050 13743 20070104 48.9 24 39.4 24 1023.6 24 1021.3 24 10.0 24 5.7 24 8.9 999.9 62.1 32.0 0.00G 999.9 000000 724050 13743 20070105 54.8 24 52.9 24 1016.3 20 1013.8 24 7.3 24 7.6 24 12.0 999.9 62.1 42.1 0.00G 999.9 010000 724050 13743 20070106 62.2 24 55.9 24 1009.3 22 1006.9 24 8.0 24 8.6 24 13.0 20.0 73.0 52.0 0.21G 999.9 010000 724050 13743 20070107 53.3 24 37.6 24 1022.5 24 1020.2 24 10.0 24 7.7 24 12.0 15.0 73.0 46.0 0.02G 999.9 010000 724050 13743 20070108 48.6 24 40.2 24 1009.6 20 1006.9 24 7.4 24 8.0 24 18.1 28.9 55.9 44.1 0.58G 999.9 010000 724050 13743 20070109 39.8 24 19.7 24 1013.1 24 1010.8 24 10.0 24 8.8 24 18.1 20.0 55.9 32.0 0.15G 999.9 010000 724050 13743 20070110 35.6 24 17.1 24 1021.7 24 1019.4 24 10.0 24 11.1 24 19.0 34.0 46.9 30.9 0.00G 999.9 000000 724050 13743 20070111 33.2 24 19.0 24 1035.5 24 1033.2 24 10.0 24 5.8 24 12.0 999.9 42.1 26.1 0.00G 999.9 000000 724050 13743 20070112 42.8 24 30.0 24 1030.9 24 1028.6 24 10.0 24 8.4 24 13.0 999.9 48.9 26.2 0.00G 999.9 010000 724050 13743 20070113 51.9 24 45.9 24 1025.1 24 1022.6 24 10.0 24 7.2 24 9.9 999.9 59.0 39.0 0.02G 999.9 010000 724050 13743 20070114 56.5 24 52.0 24 1022.3 24 1020.0 24 8.7 24 4.7 24 8.9 28.9 66.9 48.0 0.06G 999.9 010000 724050 13743 20070115 59.4 24 51.6 24 1016.1 24 1013.8 24 10.0 24 7.0 24 17.1 22.0 68.0 51.1 0.01G 999.9 000000 724050 13743 20070116 52.6 24 38.9 24 1014.8 24 1012.5 24 10.0 24 13.3 24 20.0 27.0 68.0 37.9 0.00G 999.9 000000 724050 13743 20070117 30.2 24 11.0 24 1036.2 24 1034.0 24 10.0 24 11.6 24 19.0 28.9 37.9* 23.0* 0.00G 999.9 000000 724050 13743 20070118 30.1 24 18.5 24 1035.7 24 1033.6 24 10.0 24 3.8 24 8.9 999.9 35.1 23.0 0.00G 999.9 000000 724050 13743 20070119 37.6 24 25.5 24 1016.8 24 1014.5 24 9.9 24 7.5 24 19.0 32.1 48.0 26.2 0.00G 999.9 010000 724050 13743 20070120 33.8 24 11.4 24 1020.7 24 1018.0 24 10.0 24 12.6 24 19.0 32.1 48.0 30.0 0.00G 999.9 001000 724050 13743 20070121 26.9 24 13.0 24 1029.5 22 1027.0 24 8.1 24 6.8 24 12.0 19.0 37.0 24.1 0.00G 1.2 001000 724050 13743 20070122 31.2 24 29.3 24 1015.0 17 1014.2 24 6.1 24 3.3 24 8.9 999.9 34.0 24.1 0.35G 1.2 011000 724050 13743 20070123 36.1 24 26.3 24 1013.7 24 1011.3 24 8.5 24 7.4 24 13.0 20.0 43.0 31.1 0.02G 1.2 001000 724050 13743 20070124 35.7 24 24.1 24 1016.8 24 1014.7 24 10.0 24 5.9 24 9.9 15.0 43.0 32.0 0.00G 999.9 001000 724050 13743 20070125 35.6 24 19.8 24 1014.5 20 1011.9 24 9.6 24 9.3 24 21.0 29.9 39.0* 28.4* 0.00G 999.9 001000 724050 13743 20070126 24.1 24 5.0 24 1018.7 24 1016.3 24 9.6 24 11.8 24 26.0 35.9 33.1* 15.8* 0.00G 999.9 001000 724050 13743 20070127 35.1 24 18.2 24 1011.2 24 1008.9 24 10.0 24 4.4 24 11.1 999.9 57.0 16.0 0.00G 999.9 000000 724050 13743 20070128 41.0 24 28.1 24 1005.6 24 1003.3 24 9.1 24 5.2 24 11.1 999.9 57.0 25.2 0.00G 999.9 011000 724050 13743 20070129 27.9 24 7.8 24 1013.9 24 1011.7 24 10.0 24 13.8 24 22.0 34.0 46.0 21.0 0.05G 999.9 000000 724050 13743 20070130 29.5 24 12.8 24 1017.1 24 1014.8 24 10.0 24 7.2 24 15.9 29.9 43.0 19.9 0.00G 999.9 000000 724050 13743 20070131 28.5 24 8.7 24 1018.9 24 1016.7 24 10.0 24 11.7 24 17.1 29.9 43.0 19.9 0.00G 999.9 001000 724050 13743 20070201 31.1 24 16.5 24 1018.1 24 1016.1 24 10.0 24 7.5 24 15.9 20.0 34.0 21.9 0.00G 999.9 011000 724050 13743 20070202 34.1 24 31.0 24 1008.4 14 1005.7 24 5.1 24 3.6 24 8.0 999.9 37.4* 32.0* 0.07G 999.9 011000 724050 13743 20070203 32.3 24 15.3 24 1013.6 24 1011.3 24 9.3 24 9.6 24 19.0 28.9 37.9 24.1 0.02G 999.9 000000 724050 13743 20070204 29.3 24 8.1 24 1019.2 24 1017.0 24 10.0 24 6.4 24 11.1 19.0 37.0 21.0 0.00G 999.9 000000 724050 13743 20070205 19.5 24 -6.5 24 1025.2 24 1022.9 24 10.0 24 14.1 24 20.0 28.9 34.0 14.0 0.00G 999.9 000000 724050 13743 20070206 16.4 24 -10.4 24 1028.6 24 1026.2 24 10.0 24 10.6 24 15.0 24.1 27.0 10.0 0.00G 999.9 000000 724050 13743 20070207 23.0 24 8.1 24 1018.6 21 1016.1 24 7.9 24 8.8 24 20.0 27.0 28.9 10.0 0.06G 1.2 001000 724050 13743 20070208 23.0 24 -2.2 24 1020.2 24 1018.0 24 10.0 24 10.3 24 20.0 31.1 28.9 16.0 0.04G 1.2 000000 724050 13743 20070209 24.6 24 0.7 24 1019.5 24 1017.3 24 10.0 24 8.7 24 15.0 21.0 34.0 16.0 0.00G 999.9 000000 724050 13743 20070210 27.4 24 3.1 24 1019.8 24 1017.6 24 10.0 24 9.1 24 15.0 25.1 36.0 16.0 0.00G 999.9 000000 724050 13743 20070211 26.4 24 6.4 24 1025.3 24 1023.0 24 10.0 24 7.6 24 12.0 17.1 37.0 17.1 0.00G 999.9 000000 724050 13743 20070212 33.0 24 14.8 24 1025.2 24 1022.9 24 10.0 24 3.6 24 11.1 999.9 43.0 17.1 0.00G 999.9 000000 724050 13743 20070213 32.8 24 29.1 24 1023.2 16 1021.4 24 5.9 24 7.7 24 15.9 18.1 43.0 23.2 0.00G 999.9 011000 724050 13743 20070214 29.3 24 24.6 24 1003.5 12 1002.3 24 6.2 24 14.7 24 22.0 34.0 36.0 24.1 1.06G 2.0 011000 724050 13743 20070215 21.9 24 4.5 24 1014.8 24 1013.0 24 9.9 24 14.4 24 21.0 29.9 35.1 18.0 0.89G 2.0 001000 724050 13743 20070216 21.9 24 3.2 24 1016.8 24 1014.5 24 10.0 24 9.4 24 18.1 25.1 30.0 17.1 0.00G 2.0 000000 724050 13743 20070217 26.1 24 10.9 24 1014.0 24 1011.7 24 10.0 24 4.4 24 9.9 15.9 36.0 16.0 0.00G 1.2 000000 724050 13743 20070218 32.0 24 18.4 24 1009.6 23 1007.1 24 9.6 24 9.1 24 26.0 35.0 36.0 16.2 0.00G 1.2 101000 724050 13743 20070219 25.1 24 7.3 24 1021.1 24 1018.9 24 10.0 24 10.5 24 22.9 29.9 35.1 17.1 0.00G 1.2 000000 724050 13743 20070220 40.1 24 24.9 24 1013.1 24 1010.8 24 10.0 24 8.8 24 14.0 999.9 46.9 17.1 0.00G 1.2 000000 724050 13743 20070221 45.7 24 35.9 24 1009.7 24 1007.4 24 8.7 24 5.6 24 9.9 999.9 55.9 36.0 0.25G 1.2 010000 724050 13743 20070222 43.5 24 32.2 24 1009.5 24 1007.0 24 9.5 24 6.3 24 25.1 36.9 59.0 36.0 0.00G 999.9 010010 724050 13743 20070223 37.3 24 16.3 24 1014.3 24 1012.0 24 10.0 24 20.6 24 27.0 48.0 59.0 30.9 0.01G 999.9 000000 724050 13743 20070224 32.0 24 7.1 24 1023.4 24 1021.1 24 10.0 24 10.4 24 16.9 26.0 44.1 24.1 0.00G 999.9 000000 724050 13743 20070225 34.4 24 26.9 24 1021.1 19 1018.8 24 6.3 24 2.2 24 8.9 999.9 44.1 24.3 0.05G 3.1 111000 724050 13743 20070226 34.9 24 32.5 24 1009.2 22 1006.6 24 7.2 24 5.6 24 9.9 999.9 39.9 32.0 0.70G 2.0 010000 724050 13743 20070227 39.9 24 33.7 24 1013.5 23 1011.2 24 6.8 24 4.6 24 14.0 17.1 53.1 32.0 0.00G 3.1 000000 724050 13743 20070228 40.9 24 25.3 24 1020.1 24 1017.8 24 10.0 24 6.7 24 14.0 15.0 53.1 30.9 0.00G 999.9 000000 724050 13743 20070301 42.6 24 30.4 24 1019.4 24 1017.0 24 9.7 24 4.0 24 9.9 999.9 52.0 32.0 0.00G 999.9 010000 724050 13743 20070302 55.2 24 39.1 24 1002.6 16 998.1 24 7.0 24 11.7 24 22.9 32.1 64.0 36.0 0.72G 999.9 010000 724050 13743 20070303 49.4 24 24.0 24 1004.3 24 1002.0 24 10.0 24 7.0 24 19.0 31.1 64.0 35.1 0.04G 999.9 000000 724050 13743 20070304 38.8 24 17.1 24 1011.2 24 1008.9 24 10.0 24 13.8 24 22.0 32.1 60.1 32.0 0.00G 999.9 000000 724050 13743 20070305 36.7 24 15.5 24 1014.8 24 1012.5 24 10.0 24 10.1 24 20.0 34.0 52.0 26.1 0.00G 999.9 000000 724050 13743 20070306 28.4 24 4.4 24 1027.3 24 1025.0 24 10.0 24 17.4 24 25.1 35.9 42.1 19.9 0.00G 999.9 000000 724050 13743 20070307 27.3 24 12.2 24 1028.0 18 1024.7 24 7.3 24 6.1 24 13.0 999.9 33.1 19.9 0.00G 2.0 101000 724050 13743 20070308 28.2 24 16.6 24 1025.7 24 1023.4 24 9.2 24 7.3 24 14.0 15.9 39.9 19.9 0.15G 2.0 000000 724050 13743 20070309 34.7 24 16.9 24 1030.9 24 1028.6 24 10.0 24 5.4 24 11.1 999.9 46.0 19.9 0.00G 2.0 000000 724050 13743 20070310 44.6 24 34.7 24 1024.6 24 1022.6 24 10.0 24 7.1 24 17.1 22.9 66.9 27.1 0.00G 999.9 000000 724050 13743 20070311 53.2 24 35.7 24 1023.4 24 1021.0 24 9.2 24 9.1 24 15.9 22.0 66.9 33.1 0.09G 999.9 010000 724050 13743 20070312 45.9 24 27.5 24 1027.3 24 1025.0 24 10.0 24 5.8 24 12.0 999.9 59.0 33.1 0.05G 999.9 000000 724050 13743 20070313 52.0 24 35.8 24 1022.0 24 1019.7 24 9.9 24 6.5 24 11.1 999.9 71.1 33.1 0.00G 999.9 000000 724050 13743 20070314 62.1 24 44.6 24 1016.8 24 1014.5 24 10.0 24 9.3 24 17.1 28.0 81.0 42.1 0.00G 999.9 010000 724050 13743 20070315 61.1 24 48.2 24 1013.0 24 1010.7 24 9.3 24 9.3 24 22.9 29.9 81.0 44.1 0.00G 999.9 010000 724050 13743 20070316 39.1 24 36.9 24 1018.3 12 1015.1 24 5.0 24 12.7 24 19.0 27.0 44.1* 32.0* 0.85G 999.9 011000 724050 13743 20070317 32.1 24 22.7 24 1010.0 24 1007.6 24 9.3 24 13.5 24 19.0 28.0 41.0 28.9 1.30G 999.9 001000 724050 13743 20070318 36.0 24 13.5 24 1019.1 24 1016.8 24 10.0 24 11.3 24 20.0 28.9 44.1 28.9 0.00G 999.9 000000 724050 13743 20070319 41.2 24 19.5 24 1026.8 24 1024.5 24 10.0 24 9.6 24 18.1 26.0 55.9 28.0 0.00G 999.9 000000 724050 13743 20070320 57.1 24 34.5 24 1024.4 24 1022.0 24 10.0 24 11.5 24 17.1 24.1 63.0* 53.1* 0.00G 999.9 000000 724050 13743 20070321 43.1 24 20.6 24 1037.8 24 1035.5 24 10.0 24 8.2 24 14.0 999.9 63.0 37.9 0.00G 999.9 000000 724050 13743 20070322 54.0 24 41.0 24 1027.2 21 1025.9 24 10.0 24 10.8 24 19.0 27.0 75.0 39.0 0.00G 999.9 010000 724050 13743 20070323 64.0 24 51.3 24 1020.5 24 1018.1 24 9.9 24 7.5 24 15.9 999.9 78.1 43.0 0.00G 999.9 010000 724050 13743 20070324 54.5 24 52.4 24 1024.0 17 1022.1 24 3.9 24 5.4 24 8.9 999.9 61.0* 50.0* 0.04G 999.9 010000 724050 13743 20070325 54.5 24 46.0 24 1027.5 20 1024.8 24 6.3 24 5.0 24 12.0 999.9 63.0 46.0 0.00A 999.9 100000 724050 13743 20070326 50.2 24 41.4 24 1029.1 24 1026.7 24 10.0 24 8.6 24 11.1 999.9 63.0* 42.8* 0.00G 999.9 000000 724050 13743 20070327 66.8 24 50.2 24 1018.2 24 1015.9 24 10.0 24 8.3 24 14.0 22.0 82.9 43.0 0.00G 999.9 000000 724050 13743 20070328 67.4 24 51.3 24 1021.0 24 1018.7 24 10.0 24 7.9 24 12.0 20.0 82.9 52.0 0.00G 999.9 000000 724050 13743 20070329 54.2 24 18.3 24 1030.1 24 1027.8 24 10.0 24 11.3 24 15.0 17.1 72.0 43.0 0.00G 999.9 000000 724050 13743 20070330 51.5 24 21.2 24 1029.0 24 1026.6 24 10.0 24 6.2 24 11.1 999.9 64.9 39.0 0.00G 999.9 000000 724050 13743 20070331 54.3 24 35.8 24 1022.0 24 1019.6 24 10.0 24 6.0 24 12.0 999.9 64.9 39.0 0.00G 999.9 000000 724050 13743 20070401 52.8 24 38.8 24 1021.5 22 1018.9 24 10.0 24 5.3 24 9.9 999.9 62.1 45.0 0.00G 999.9 000000 724050 13743 20070402 63.4 24 48.2 24 1014.2 24 1011.8 24 9.3 24 5.2 24 14.0 20.0 82.0 48.0 0.01G 999.9 010000 724050 13743 20070403 66.5 24 42.5 24 1016.7 24 1014.4 24 10.0 24 5.1 24 12.0 17.1 82.0 51.1 0.00I 999.9 000000 724050 13743 20070404 51.9 24 45.7 24 1009.7 20 1007.7 24 7.7 24 8.4 24 15.0 22.0 77.0 46.0 0.27G 999.9 010010 724050 13743 20070405 44.2 24 20.6 24 1010.2 24 1007.9 24 10.0 24 15.1 24 24.1 38.1 57.9 37.9 0.02G 999.9 000000 724050 13743 20070406 39.7 24 17.1 24 1012.1 24 1009.8 24 10.0 24 9.9 24 15.9 24.1 46.9* 33.8* 0.00G 999.9 001000 724050 13743 20070407 37.2 24 19.8 24 1008.7 20 1006.1 24 8.4 24 10.9 24 20.0 26.0 43.0* 30.2* 0.09G 999.9 101000 724050 13743 20070408 36.2 24 14.2 24 1015.3 24 1013.0 24 10.0 24 10.4 24 15.9 26.0 46.0 28.9 0.00I 999.9 000000 724050 13743 20070409 39.8 24 20.2 24 1018.8 24 1016.5 24 10.0 24 6.3 24 9.9 15.0 48.0 29.1 0.00G 999.9 000000 724050 13743 20070410 43.3 24 23.3 24 1019.4 24 1017.1 24 10.0 24 6.1 24 8.9 20.0 52.0 31.1 0.00G 999.9 000000 724050 13743 20070411 45.3 24 29.3 24 1019.3 24 1017.0 24 9.5 24 7.2 24 14.0 21.0 54.0 35.1 0.00G 999.9 010000 724050 13743 20070412 50.0 24 43.2 24 1008.0 17 1005.3 24 8.1 24 7.6 24 19.0 31.1 61.0 36.0 0.92G 999.9 010010 724050 13743 20070413 50.5 24 29.8 24 1014.4 24 1012.1 24 10.0 24 14.0 24 21.0 27.0 57.0* 44.6* 0.09G 999.9 000000 724050 13743 20070414 48.1 24 32.7 24 1018.5 24 1016.2 24 10.0 24 5.1 24 12.0 17.1 57.0 37.9 0.00G 999.9 010000 724050 13743 20070415 46.2 24 44.1 24 1000.0 16 999.7 24 5.3 24 9.8 24 19.0 29.9 55.9 37.9 1.43G 999.9 010000 724050 13743 20070416 44.6 24 32.7 24 990.9 24 988.5 24 9.9 24 20.7 24 28.0 44.1 48.0 42.1 1.13G 999.9 010000 724050 13743 20070417 48.3 24 33.6 24 1001.9 24 999.6 24 10.0 24 19.6 24 26.0 35.9 55.9 43.0 0.00G 999.9 010000 724050 13743 20070418 48.7 24 35.2 24 1008.3 24 1006.0 24 10.0 24 9.9 24 21.0 29.9 55.9 42.1 0.00G 999.9 000000 724050 13743 20070419 51.4 24 39.8 24 1013.0 24 1010.6 24 9.9 24 2.1 24 6.0 999.9 55.9 42.1 0.00G 999.9 010000 724050 13743 20070420 56.1 24 40.4 24 1018.2 24 1015.9 24 10.0 24 4.6 24 9.9 20.0 71.1 42.1 0.00G 999.9 000000 724050 13743 20070421 60.0 24 35.3 24 1021.4 24 1019.1 24 10.0 24 3.2 24 7.0 14.0 75.9 45.0 0.00G 999.9 000000 724050 13743 20070422 65.2 24 37.4 24 1021.8 24 1019.5 24 9.6 24 2.9 24 9.9 999.9 81.0 45.0 0.00G 999.9 000000 724050 13743 20070423 67.5 24 44.2 24 1019.2 24 1016.9 24 10.0 24 9.2 24 19.0 25.1 82.9 54.0 0.00G 999.9 000000 724050 13743 20070424 72.5 24 50.0 24 1014.4 24 1012.1 24 10.0 24 8.0 24 13.0 19.0 82.9 54.0 0.00G 999.9 000000 724050 13743 20070425 67.5 24 48.0 24 1014.8 24 1012.5 24 10.0 24 6.3 24 14.0 999.9 82.9 57.0 0.00G 999.9 000000 724050 13743 20070426 57.6 24 46.8 24 1018.3 21 1016.1 24 10.0 24 10.4 24 15.0 22.9 68.0* 51.8* 0.00G 999.9 010000 724050 13743 20070427 56.2 24 52.4 24 1012.1 19 1010.2 24 7.3 24 4.6 24 12.0 999.9 69.1 50.0 0.09G 999.9 010000 724050 13743 20070428 63.1 24 52.1 24 1010.1 24 1007.8 24 8.4 24 5.0 24 11.1 22.0 70.0 50.0 0.12G 999.9 010010 724050 13743 20070429 63.5 24 45.3 24 1011.9 24 1009.6 24 10.0 24 8.1 24 15.9 20.0 75.9 50.0 0.00G 999.9 010000 724050 13743 20070430 69.3 24 47.6 24 1011.8 24 1009.4 24 10.0 24 8.2 24 18.1 27.0 86.0 50.0 0.00G 999.9 000000 724050 13743 20070501 69.4 24 44.7 24 1014.4 24 1012.1 24 10.0 24 7.2 24 13.0 15.9 86.0 59.0 0.00G 999.9 000000 724050 13743 20070502 69.3 24 51.2 24 1010.8 24 1008.6 24 10.0 24 6.7 24 15.0 29.9 82.9 59.0 0.00G 999.9 000000 724050 13743 20070503 61.8 24 42.7 24 1021.5 24 1019.2 24 10.0 24 8.2 24 12.0 999.9 72.0 57.9 0.00G 999.9 000000 724050 13743 20070504 61.2 24 40.4 24 1023.1 24 1020.8 24 10.0 24 4.9 24 9.9 14.0 73.0 50.0 0.00G 999.9 000000 724050 13743 20070505 59.1 24 45.8 24 1021.1 24 1018.9 24 9.8 24 7.6 24 13.0 19.0 73.0 50.0 0.00G 999.9 010000 724050 13743 20070506 56.1 24 34.5 24 1024.7 24 1022.3 24 9.3 24 13.4 24 21.0 27.0 68.0 50.0 0.04G 999.9 010000 724050 13743 20070507 55.1 24 35.7 24 1030.0 24 1027.6 24 10.0 24 7.9 24 15.9 22.0 66.0 45.0 0.00G 999.9 000000 724050 13743 20070508 58.9 24 42.5 24 1025.1 24 1022.8 24 10.0 24 4.5 24 9.9 999.9 75.0 44.1 0.00G 999.9 000000 724050 13743 20070509 68.2 24 60.0 24 1019.6 21 1017.6 24 10.0 24 3.7 24 8.0 999.9 80.1 44.1 0.00G 999.9 000000 724050 13743 20070510 71.7 24 64.3 24 1015.3 21 1013.3 24 9.8 24 7.9 24 12.0 19.0 80.1 59.0 0.00G 999.9 000000 724050 13743 20070511 74.3 24 61.9 24 1012.2 24 1009.9 24 10.0 24 7.2 24 15.9 22.9 86.0 64.9 0.00G 999.9 000000 724050 13743 20070512 73.4 24 59.9 24 1013.4 24 1011.1 24 9.7 24 3.9 24 8.0 999.9 86.0 64.9 0.00G 999.9 000000 724050 13743 20070513 63.9 24 46.2 24 1019.7 19 1016.4 24 8.9 24 11.0 24 28.9 35.9 81.0 54.0 0.93G 999.9 110010 724050 13743 20070514 61.1 24 36.8 24 1025.0 24 1022.7 24 10.0 24 5.7 24 13.0 999.9 73.0 48.9 0.00G 999.9 000000 724050 13743 20070515 69.9 24 49.0 24 1019.0 24 1016.7 24 10.0 24 12.3 24 18.1 22.9 82.9 48.9 0.00G 999.9 000000 724050 13743 20070516 74.6 24 58.0 24 1010.1 23 1007.6 24 9.8 24 13.5 24 21.0 29.9 82.9 59.0 0.00G 999.9 110010 724050 13743 20070517 64.3 24 50.8 24 1015.4 24 1013.1 24 10.0 24 7.1 24 13.0 18.1 82.9 57.0 0.48G 999.9 010000 724050 13743 20070518 57.9 24 49.2 24 1019.2 24 1016.9 24 9.8 24 7.7 24 12.0 15.0 66.0* 53.6* 0.00G 999.9 010000 724050 13743 20070519 60.3 24 42.6 24 1018.4 24 1016.1 24 10.0 24 9.4 24 15.9 24.1 73.0 50.0 0.00G 999.9 000000 724050 13743 20070520 67.8 24 44.5 24 1014.1 24 1011.8 24 10.0 24 9.9 24 17.1 27.0 81.0 50.0 0.00G 999.9 010000 724050 13743 20070521 68.4 24 46.8 24 1017.8 24 1015.5 24 10.0 24 8.5 24 15.0 18.1 81.0 57.9 0.00G 999.9 000000 724050 13743 20070522 65.9 24 50.5 24 1024.9 24 1022.6 24 10.0 24 4.1 24 12.0 999.9 75.9 54.0 0.00G 999.9 000000 724050 13743 20070523 67.4 24 51.1 24 1029.0 24 1026.7 24 10.0 24 8.2 24 12.0 999.9 78.1 54.0 0.00G 999.9 000000 724050 13743 20070524 67.9 24 53.7 24 1030.6 24 1028.3 24 10.0 24 8.5 24 11.1 15.9 79.0 57.0 0.00G 999.9 000000 724050 13743 20070525 71.4 24 55.9 24 1025.3 24 1023.0 24 10.0 24 8.0 24 11.1 999.9 84.9 57.0 0.00G 999.9 000000 724050 13743 20070526 77.7 24 61.9 24 1020.9 24 1018.5 24 8.6 24 4.8 24 9.9 999.9 91.0 60.1 0.00G 999.9 000000 724050 13743 20070527 78.0 24 65.0 24 1020.0 23 1017.6 24 6.4 24 6.5 24 26.0 35.0 91.0 66.9 0.00G 999.9 010010 724050 13743 20070528 75.4 24 64.2 24 1020.4 24 1018.1 24 7.9 24 3.6 24 9.9 15.9 86.0 68.0 0.30G 999.9 010000 724050 13743 20070529 76.5 24 56.6 24 1022.6 24 1020.2 24 9.7 24 4.9 24 12.0 999.9 86.0 68.0 0.00G 999.9 000000 724050 13743 20070530 74.7 24 58.3 24 1022.3 24 1020.0 24 10.0 24 7.0 24 15.0 999.9 86.0 64.0 0.00G 999.9 000000 724050 13743 20070531 77.0 24 60.2 24 1020.4 24 1018.0 24 10.0 24 8.1 24 11.1 999.9 89.1 64.0 0.00G 999.9 000000 724050 13743 20070601 78.1 24 62.9 24 1018.0 24 1015.7 24 9.6 24 8.6 24 13.0 999.9 89.1 66.9 0.00G 999.9 000000 724050 13743 20070602 78.4 24 64.5 24 1014.4 24 1012.3 24 9.9 24 7.8 24 14.0 20.0 88.0 66.9 0.00G 999.9 010010 724050 13743 20070603 71.9 24 64.6 24 1009.2 18 1005.1 24 7.7 24 10.5 24 19.0 25.1 82.0* 66.2* 0.00G 999.9 010000 724050 13743 20070604 71.9 24 64.7 24 997.8 21 995.6 24 7.2 24 9.5 24 17.1 22.0 84.0 66.0 0.93G 999.9 010000 724050 13743 20070605 75.0 24 58.4 24 1001.0 24 998.6 24 10.0 24 8.6 24 19.0 25.1 84.0 66.0 0.07G 999.9 000000 724050 13743 20070606 70.7 24 51.9 24 1010.3 24 1008.0 24 10.0 24 9.2 24 15.9 22.0 82.9 63.0 0.01G 999.9 010000 724050 13743 20070607 72.0 24 55.7 24 1017.0 24 1014.7 24 10.0 24 5.3 24 12.0 18.1 84.9 61.0 0.00I 999.9 000000 724050 13743 20070608 79.9 24 69.5 24 1013.9 24 1011.6 24 8.0 24 7.5 24 12.0 999.9 93.0 61.0 0.00G 999.9 000000 724050 13743 20070609 79.9 24 64.1 24 1012.7 24 1010.3 24 9.9 24 9.5 24 21.0 28.0 93.0 71.1 0.05G 999.9 010010 724050 13743 20070610 73.0 24 57.7 24 1015.3 18 1013.0 24 9.7 24 6.5 24 13.0 18.1 88.0 68.0 0.00G 999.9 010000 724050 13743 20070611 74.9 24 60.8 24 1016.9 24 1014.6 24 9.1 24 4.5 24 11.1 20.0 86.0 66.9 0.00G 999.9 000000 724050 13743 20070612 76.2 24 59.5 24 1016.5 23 1014.1 24 9.5 24 5.7 24 17.1 28.9 88.0 66.0 0.00G 999.9 010010 724050 13743 20070613 71.5 24 62.9 24 1016.7 20 1014.2 24 9.9 24 4.3 24 15.9 21.0 88.0 66.0 0.14G 999.9 010010 724050 13743 20070614 64.8 24 55.0 24 1019.0 22 1016.6 24 9.3 24 7.5 24 12.0 17.1 82.0 60.1 0.09G 999.9 010010 724050 13743 20070615 64.7 24 51.0 24 1019.1 24 1016.9 24 10.0 24 4.2 24 9.9 999.9 72.0 59.0 0.03G 999.9 000000 724050 13743 20070616 69.7 24 55.5 24 1017.6 24 1015.2 24 9.9 24 4.7 24 7.0 999.9 79.0 59.0 0.00G 999.9 000000 724050 13743 20070617 76.2 24 58.7 24 1016.0 24 1013.7 24 9.2 24 5.7 24 11.1 15.9 90.0 61.0 0.00G 999.9 000000 724050 13743 20070618 82.3 24 62.2 24 1015.6 24 1013.3 24 9.3 24 5.0 24 8.9 999.9 95.0 64.0 0.00G 999.9 000000 724050 13743 20070619 83.3 24 69.3 24 1015.3 24 1013.0 24 5.1 24 5.7 24 11.1 999.9 96.1 72.0 0.00G 999.9 000000 724050 13743 20070620 79.3 24 63.1 24 1013.6 22 1011.1 24 8.6 24 8.6 24 15.9 24.1 96.1 72.0 0.01G 999.9 010010 724050 13743 20070621 75.4 24 49.3 24 1016.5 24 1014.1 24 10.0 24 7.9 24 22.0 28.0 89.1 61.0 0.03A 999.9 010000 724050 13743 20070622 73.4 24 51.7 24 1013.7 24 1011.4 24 10.0 24 10.1 24 17.1 25.1 89.1 61.0 0.01A 999.9 010000 724050 13743 20070623 71.5 24 45.1 24 1014.7 24 1012.4 24 10.0 24 7.0 24 13.0 17.1 82.9 59.0 0.00G 999.9 000000 724050 13743 20070624 74.0 24 50.5 24 1017.8 24 1015.5 24 10.0 24 5.2 24 13.0 15.0 87.1 59.0 0.00G 999.9 000000 724050 13743 20070625 78.4 24 65.3 24 1021.5 24 1019.2 24 10.0 24 7.6 24 8.9 999.9 88.0 62.1 0.00G 999.9 000000 724050 13743 20070626 82.5 24 69.3 24 1023.4 24 1021.0 24 7.9 24 5.5 24 8.9 999.9 93.0 73.0 0.00G 999.9 000000 724050 13743 20070627 84.1 24 70.4 24 1019.8 24 1017.5 24 7.4 24 6.3 24 21.0 28.0 96.1 73.9 0.00G 999.9 010010 724050 13743 20070628 83.4 24 67.8 24 1015.6 24 1013.3 24 8.5 24 6.8 24 14.0 21.0 96.1 75.0 0.00G 999.9 010010 724050 13743 20070629 76.0 24 68.3 24 1015.2 18 1013.1 24 9.8 24 5.7 24 13.0 19.0 93.0 73.0 0.04G 999.9 010010 724050 13743 20070630 76.6 24 66.3 24 1015.5 20 1013.2 24 9.6 24 4.6 24 15.0 999.9 84.0 72.0 0.00G 999.9 010000 724050 13743 20070701 74.5 24 51.2 24 1017.3 24 1015.0 24 9.8 24 6.5 24 13.0 21.0 84.0 64.9 0.00G 999.9 000000 724050 13743 20070702 71.4 24 45.7 24 1022.2 24 1019.9 24 10.0 24 6.6 24 15.9 22.0 84.0 62.1 0.00G 999.9 000000 724050 13743 20070703 72.0 24 52.0 24 1023.2 24 1020.9 24 10.0 24 6.5 24 11.1 999.9 82.9 62.1 0.00G 999.9 000000 724050 13743 20070704 75.8 24 60.1 24 1019.2 24 1016.9 24 9.9 24 10.2 24 17.1 22.0 87.1 63.0 0.00G 999.9 010010 724050 13743 20070705 78.1 24 64.6 24 1014.5 24 1012.2 24 9.0 24 10.8 24 15.9 22.9 87.1 69.1 0.03G 999.9 010000 724050 13743 20070706 79.6 24 63.8 24 1013.1 24 1010.8 24 9.9 24 6.9 24 12.0 19.0 90.0 71.1 0.11G 999.9 010000 724050 13743 20070707 81.6 24 58.6 24 1014.0 24 1011.6 24 10.0 24 4.3 24 9.9 999.9 91.9 69.1 0.00G 999.9 000000 724050 13743 20070708 83.4 24 60.9 24 1011.6 24 1009.3 24 8.9 24 4.3 24 13.0 19.0 97.0 69.1 0.00G 999.9 010000 724050 13743 20070709 85.9 24 64.0 24 1012.0 24 1009.7 24 8.6 24 5.0 24 13.0 19.0 98.1 70.0 0.00G 999.9 000000 724050 13743 20070710 82.9 24 70.4 24 1013.2 23 1011.0 24 6.1 24 6.1 24 21.0 35.9 98.1 73.0 0.00G 999.9 010010 724050 13743 20070711 78.6 24 71.8 24 1009.4 22 1007.1 24 6.5 24 5.6 24 18.1 24.1 98.1 73.0 0.73G 999.9 010010 724050 13743 20070712 76.2 24 57.3 24 1011.9 24 1009.5 24 10.0 24 6.9 24 15.9 21.0 87.1 66.0 0.40G 999.9 010000 724050 13743 20070713 78.4 24 54.4 24 1014.5 24 1012.2 24 10.0 24 5.2 24 9.9 18.1 86.0 66.0 0.00G 999.9 010000 724050 13743 20070714 77.1 24 58.4 24 1014.1 24 1011.9 24 10.0 24 5.9 24 15.0 24.1 87.1 66.0 0.00G 999.9 000000 724050 13743 20070715 81.6 24 63.1 24 1011.0 24 1008.7 24 10.0 24 9.0 24 15.0 18.1 93.9 66.0 0.00G 999.9 000000 724050 13743 20070716 81.6 24 64.2 24 1013.0 24 1010.5 24 10.0 24 4.6 24 17.1 22.9 93.9 71.1 0.00G 999.9 010010 724050 13743 20070717 81.8 24 60.8 24 1016.3 24 1014.0 24 10.0 24 4.8 24 9.9 999.9 91.9 70.0 0.00G 999.9 000000 724050 13743 20070718 82.5 24 65.9 24 1013.6 24 1011.2 24 10.0 24 7.5 24 14.0 15.9 91.9 70.0 0.00G 999.9 010000 724050 13743 20070719 81.9 24 65.0 24 1010.0 24 1007.7 24 9.5 24 8.4 24 22.9 28.0 93.0 73.0 0.00G 999.9 010000 724050 13743 20070720 77.8 24 60.2 24 1009.9 24 1007.6 24 10.0 24 9.3 24 15.9 24.1 93.0 73.0 0.06G 999.9 010000 724050 13743 20070721 75.9 24 49.1 24 1017.0 24 1014.7 24 10.0 24 8.3 24 13.0 15.9 84.9 66.0 0.00G 999.9 000000 724050 13743 20070722 76.3 24 50.5 24 1020.2 24 1017.9 24 10.0 24 8.0 24 14.0 20.0 84.9 66.0 0.00G 999.9 000000 724050 13743 20070723 77.1 24 52.8 24 1018.9 24 1016.6 24 10.0 24 7.1 24 12.0 20.0 86.0 69.1 0.00G 999.9 000000 724050 13743 20070724 75.8 24 58.6 24 1018.5 24 1016.2 24 10.0 24 6.2 24 15.9 22.9 88.0 66.9 0.00G 999.9 010000 724050 13743 20070725 76.3 24 61.8 24 1019.9 24 1017.6 24 9.9 24 7.0 24 11.1 999.9 88.0 66.9 0.05G 999.9 010000 724050 13743 20070726 79.9 24 65.0 24 1020.1 24 1017.7 24 10.0 24 5.2 24 11.1 17.1 91.9 68.0 0.00G 999.9 000000 724050 13743 20070727 80.6 24 65.1 24 1015.0 23 1012.4 24 9.8 24 8.6 24 19.0 25.1 95.0 71.1 0.00G 999.9 010000 724050 13743 20070728 78.4 24 66.9 24 1011.1 24 1008.8 24 8.6 24 3.8 24 15.0 19.0 95.0 69.1 0.04G 999.9 010000 724050 13743 20070729 78.2 24 69.2 24 1011.7 20 1009.5 24 7.3 24 4.5 24 18.1 22.0 91.0 69.1 0.02G 999.9 010010 724050 13743 20070730 76.8 24 70.4 24 1013.6 16 1011.4 24 6.3 24 4.7 24 12.0 999.9 87.8* 71.6* 0.98G 999.9 010010 724050 13743 20070731 80.9 24 67.4 24 1013.8 24 1011.5 24 9.0 24 4.0 24 9.9 999.9 91.9 72.0 0.00G 999.9 000000 724050 13743 20070801 82.7 24 60.9 24 1014.5 24 1012.2 24 10.0 24 4.1 24 9.9 999.9 93.0 70.0 0.00G 999.9 000000 724050 13743 20070802 83.1 24 67.4 24 1016.2 24 1013.9 24 9.5 24 5.7 24 9.9 999.9 93.9 70.0 0.00G 999.9 000000 724050 13743 20070803 83.0 24 67.1 24 1015.8 24 1013.4 24 9.8 24 8.3 24 11.1 999.9 93.9 73.9 0.00G 999.9 000000 724050 13743 20070804 84.7 24 66.4 24 1014.7 24 1012.3 24 8.2 24 4.6 24 9.9 14.0 98.1 73.0 0.00G 999.9 000000 724050 13743 20070805 83.5 24 68.8 24 1014.5 24 1012.2 24 6.5 24 5.2 24 14.0 999.9 98.1 73.0 0.00G 999.9 010000 724050 13743 20070806 80.1 24 71.6 24 1011.5 21 1009.3 24 4.9 24 6.0 24 9.9 15.9 93.9 73.0 0.31G 999.9 010000 724050 13743 20070807 86.4 24 73.0 24 1011.8 24 1009.5 24 5.5 24 4.9 24 9.9 999.9 96.1 73.0 0.22G 999.9 000000 724050 13743 20070808 89.4 24 73.8 24 1009.2 24 1006.9 24 6.6 24 8.2 24 14.0 21.0 102.0 78.1 0.00G 999.9 000000 724050 13743 20070809 86.7 24 70.2 24 1010.8 22 1008.7 24 10.0 24 7.3 24 24.1 35.0 102.0 77.0 0.00G 999.9 010010 724050 13743 20070810 81.8 24 71.5 24 1009.3 20 1007.3 24 8.3 24 6.5 24 14.0 22.0 93.9 75.0 0.10G 999.9 010010 724050 13743 20070811 77.4 24 62.1 24 1014.6 24 1012.0 24 9.8 24 8.2 24 19.0 24.1 87.1* 66.2* 0.00G 999.9 000000 724050 13743 20070812 78.6 24 60.3 24 1018.0 24 1015.6 24 10.0 24 4.6 24 8.9 999.9 90.0 66.9 0.00G 999.9 000000 724050 13743 20070813 82.9 24 61.6 24 1013.7 24 1011.3 24 9.6 24 8.9 24 17.1 20.0 93.0 66.9 0.00G 999.9 000000 724050 13743 20070814 80.2 24 51.8 24 1014.3 24 1012.0 24 10.0 24 7.4 24 11.1 14.0 93.0 69.1 0.00G 999.9 000000 724050 13743 20070815 78.8 24 58.7 24 1014.2 24 1011.9 24 10.0 24 5.9 24 11.1 999.9 91.9 68.0 0.00G 999.9 000000 724050 13743 20070816 81.2 24 68.0 24 1013.7 23 1011.6 24 8.7 24 4.8 24 20.0 35.0 91.9 68.0 0.00G 999.9 010000 724050 13743 20070817 82.6 24 68.4 24 1012.5 23 1010.1 24 8.6 24 7.5 24 14.0 21.0 93.9 72.0 0.15G 999.9 010010 724050 13743 20070818 78.3 24 46.3 24 1018.7 24 1016.4 24 10.0 24 8.6 24 13.0 20.0 93.9 70.0 0.08G 999.9 000000 724050 13743 20070819 72.8 24 57.2 24 1021.1 24 1018.8 24 10.0 24 5.1 24 9.9 999.9 82.9 66.9 0.00G 999.9 010000 724050 13743 20070820 68.1 24 63.1 24 1019.0 17 1016.7 24 8.5 24 7.5 24 15.9 20.0 82.0 64.0 0.62G 999.9 010010 724050 13743 20070821 67.8 24 65.7 24 1018.5 17 1016.3 24 5.8 24 5.9 24 19.0 24.1 72.0 64.0 1.41G 999.9 010010 724050 13743 20070822 66.2 24 62.5 24 1020.3 21 1018.1 24 6.1 24 6.8 24 9.9 999.9 73.0 63.0 0.09G 999.9 010000 724050 13743 20070823 71.1 24 65.5 24 1021.0 24 1018.8 24 8.7 24 4.0 24 8.0 999.9 77.0 63.0 0.00G 999.9 000000 724050 13743 20070824 78.2 24 71.6 24 1017.3 24 1015.1 24 6.5 24 6.5 24 11.1 999.9 89.1 68.0 0.00G 999.9 000000 724050 13743 20070825 83.6 24 75.4 24 1012.8 22 1010.4 24 5.5 24 7.0 24 22.0 38.1 93.9 73.0 0.00G 999.9 010010 724050 13743 20070826 77.9 24 71.2 24 1013.7 22 1011.2 24 9.4 24 4.9 24 15.0 21.0 93.9 72.0 0.61G 999.9 010010 724050 13743 20070827 78.1 24 63.4 24 1019.1 24 1016.7 24 9.6 24 5.8 24 12.0 19.0 88.0 71.1 0.18G 999.9 010000 724050 13743 20070828 77.2 24 66.0 24 1020.8 24 1018.5 24 9.8 24 3.7 24 8.0 999.9 84.0* 70.0* 0.00G 999.9 000000 724050 13743 20070829 77.1 24 65.4 24 1019.8 24 1017.5 24 10.0 24 4.8 24 9.9 999.9 84.0 70.0 0.00G 999.9 000000 724050 13743 20070830 77.1 24 64.0 24 1016.0 24 1013.8 24 10.0 24 5.6 24 8.9 999.9 84.0 72.0 0.00G 999.9 000000 724050 13743 20070831 77.9 24 67.0 24 1014.1 24 1011.8 24 8.5 24 6.7 24 13.0 999.9 87.1 72.0 0.00G 999.9 000000 724050 13743 20070901 73.9 24 53.8 24 1019.9 24 1017.6 24 10.0 24 7.9 24 12.0 999.9 87.1 63.0 0.00G 999.9 000000 724050 13743 20070902 73.4 24 56.8 24 1023.8 24 1021.5 24 10.0 24 4.5 24 8.9 999.9 82.9 63.0 0.00G 999.9 000000 724050 13743 20070903 73.6 24 60.1 24 1020.5 24 1018.2 24 10.0 24 8.1 24 12.0 999.9 84.0 64.0 0.00G 999.9 000000 724050 13743 20070904 79.3 24 60.0 24 1016.5 24 1014.2 24 9.5 24 4.8 24 8.9 999.9 91.0 64.0 0.00G 999.9 000000 724050 13743 20070905 79.2 24 61.4 24 1018.0 24 1015.7 24 10.0 24 4.1 24 9.9 999.9 91.0 68.0 0.00G 999.9 000000 724050 13743 20070906 79.1 24 67.1 24 1022.4 22 1020.2 24 8.1 24 7.0 24 11.1 999.9 89.1 68.0 0.00G 999.9 000000 724050 13743 20070907 79.2 24 68.2 24 1022.4 24 1020.0 24 10.0 24 9.6 24 14.0 999.9 90.0 71.1 0.00G 999.9 000000 724050 13743 20070908 79.1 24 66.7 24 1019.4 24 1017.1 24 10.0 24 9.3 24 13.0 999.9 90.0 70.0 0.00G 999.9 000000 724050 13743 20070909 77.2 24 66.3 24 1017.2 24 1014.9 24 10.0 24 5.6 24 9.9 999.9 90.0 68.0 0.00G 999.9 000000 724050 13743 20070910 82.0 24 70.1 24 1014.5 24 1012.2 24 9.7 24 3.7 24 8.9 999.9 90.0 68.0 0.00G 999.9 000000 724050 13743 20070911 75.8 24 71.5 24 1008.9 21 1007.2 24 6.4 24 5.6 24 9.9 999.9 90.0 73.0 0.41G 999.9 010010 724050 13743 20070912 72.9 24 52.8 24 1014.3 24 1012.0 24 10.0 24 7.2 24 14.0 21.0 79.0 64.0 0.04G 999.9 000000 724050 13743 20070913 70.6 24 53.8 24 1021.2 24 1018.9 24 10.0 24 5.9 24 8.0 999.9 81.0 61.0 0.00G 999.9 000000 724050 13743 20070914 73.1 24 63.2 24 1019.1 24 1016.8 24 10.0 24 7.0 24 11.1 15.9 81.0 61.0 0.00G 999.9 010000 724050 13743 20070915 67.6 24 54.3 24 1016.6 21 1013.3 24 9.0 24 9.3 24 18.1 26.0 78.1 64.0 0.15G 999.9 010000 724050 13743 20070916 59.9 24 41.1 24 1025.2 24 1022.8 24 10.0 24 6.4 24 11.1 999.9 71.1 51.1 0.00G 999.9 000000 724050 13743 20070917 61.0 24 45.7 24 1027.7 24 1025.4 24 10.0 24 4.8 24 8.0 999.9 72.0 50.0 0.00G 999.9 000000 724050 13743 20070918 64.1 24 50.0 24 1028.1 24 1025.8 24 10.0 24 6.0 24 8.9 999.9 73.9 50.0 0.00G 999.9 000000 724050 13743 20070919 66.2 24 55.3 24 1025.8 24 1023.5 24 10.0 24 5.0 24 9.9 999.9 79.0 55.0 0.00G 999.9 000000 724050 13743 20070920 67.6 24 59.0 24 1022.7 24 1020.4 24 10.0 24 2.0 24 5.1 999.9 79.0 57.9 0.00G 999.9 000000 724050 13743 20070921 71.5 24 61.8 24 1020.9 24 1018.6 24 9.6 24 3.1 24 11.1 999.9 82.9 60.1 0.00G 999.9 000000 724050 13743 20070922 75.6 24 68.8 24 1018.5 18 1016.3 24 9.5 24 7.5 24 11.1 999.9 84.0 63.0 0.01G 999.9 010000 724050 13743 20070923 76.6 24 58.2 24 1020.9 24 1018.5 24 9.4 24 5.8 24 12.0 999.9 87.1 70.0 0.00G 999.9 000000 724050 13743 20070924 70.9 24 49.9 24 1023.7 24 1021.3 24 10.0 24 4.3 24 9.9 999.9 87.1 57.9 0.00G 999.9 000000 724050 13743 20070925 72.5 24 60.9 24 1021.6 24 1019.2 24 10.0 24 6.4 24 11.1 999.9 86.0 57.9 0.00G 999.9 000000 724050 13743 20070926 76.2 24 63.7 24 1017.4 24 1015.1 24 9.9 24 7.3 24 12.0 999.9 89.1 62.1 0.00G 999.9 000000 724050 13743 20070927 77.7 24 64.6 24 1014.4 24 1012.1 24 9.6 24 6.6 24 9.9 999.9 89.1 66.9 0.00G 999.9 000000 724050 13743 20070928 73.0 24 58.4 24 1013.2 24 1010.9 24 10.0 24 9.6 24 17.1 26.0 87.1 66.9 0.00G 999.9 010000 724050 13743 20070929 67.8 24 45.1 24 1024.5 24 1022.2 24 10.0 24 8.6 24 14.0 17.1 82.0 57.0 0.00G 999.9 000000 724050 13743 20070930 66.4 24 49.9 24 1030.6 24 1028.2 24 10.0 24 3.1 24 8.9 999.9 79.0 55.0 0.00G 999.9 000000 724050 13743 20071001 67.4 24 54.2 24 1030.1 24 1027.8 24 10.0 24 5.3 24 11.1 999.9 79.0 57.9 0.00G 999.9 000000 724050 13743 20071002 69.1 24 58.0 24 1026.4 24 1024.0 24 10.0 24 5.7 24 11.1 999.9 81.0 57.9 0.00G 999.9 000000 724050 13743 20071003 72.7 24 65.1 24 1020.8 19 1018.8 24 8.5 24 4.0 24 8.9 999.9 82.0 60.1 0.00G 999.9 010000 724050 13743 20071004 74.0 24 68.6 24 1021.0 19 1018.9 24 6.7 24 3.3 24 8.9 999.9 84.0 68.0 0.00G 999.9 100000 724050 13743 20071005 73.5 24 67.2 24 1024.7 22 1022.5 24 9.2 24 3.0 24 7.0 999.9 84.0 69.1 0.00G 999.9 000000 724050 13743 20071006 74.2 24 67.3 24 1023.1 22 1021.0 24 8.6 24 3.5 24 8.9 999.9 82.0 69.1 0.00G 999.9 000000 724050 13743 20071007 76.6 24 65.0 24 1018.2 24 1015.9 24 9.3 24 4.4 24 12.0 15.0 91.9 66.0 0.00G 999.9 000000 724050 13743 20071008 76.3 24 67.0 24 1016.3 22 1014.4 24 6.9 24 4.6 24 8.9 999.9 91.9 66.0 0.00G 999.9 000000 724050 13743 20071009 79.6 24 66.9 24 1010.7 24 1008.4 24 7.2 24 5.1 24 12.0 999.9 93.9 68.0 0.00G 999.9 010010 724050 13743 20071010 76.6 24 56.7 24 1007.1 24 1004.8 24 10.0 24 6.4 24 11.1 19.0 93.9 70.0 0.00G 999.9 010000 724050 13743 20071011 63.1 24 43.7 24 1004.8 23 1002.5 24 10.0 24 13.0 24 15.9 28.9 82.0 55.9 0.00G 999.9 010000 724050 13743 20071012 60.3 24 39.7 24 1007.7 24 1005.4 24 10.0 24 13.1 24 22.0 28.9 72.0 53.1 0.00G 999.9 010000 724050 13743 20071013 60.7 24 37.6 24 1015.5 24 1013.2 24 10.0 24 6.4 24 13.0 18.1 72.0 53.1 0.00G 999.9 000000 724050 13743 20071014 61.6 24 38.9 24 1019.1 24 1016.8 24 10.0 24 5.0 24 12.0 20.0 72.0 48.9 0.00G 999.9 000000 724050 13743 20071015 63.0 24 43.7 24 1022.1 24 1019.8 24 10.0 24 3.3 24 7.0 999.9 78.1 48.9 0.00G 999.9 000000 724050 13743 20071016 66.6 24 52.2 24 1020.5 24 1018.2 24 9.2 24 2.9 24 8.0 999.9 79.0 51.1 0.00G 999.9 000000 724050 13743 20071017 69.6 24 56.9 24 1019.4 24 1017.1 24 8.3 24 5.4 24 13.0 999.9 82.0 57.9 0.00G 999.9 000000 724050 13743 20071018 71.4 24 62.8 24 1014.8 24 1012.6 24 9.1 24 7.0 24 11.1 999.9 82.0 60.1 0.00G 999.9 000000 724050 13743 20071019 74.6 24 69.4 24 1006.7 22 1004.7 24 9.5 24 8.9 24 12.0 20.0 81.0 64.0 0.00G 999.9 010000 724050 13743 20071020 66.9 24 51.9 24 1008.4 24 1005.7 24 10.0 24 6.3 24 22.9 38.1 77.0* 57.2* 0.37G 999.9 010000 724050 13743 20071021 64.8 24 47.2 24 1021.1 24 1018.8 24 10.0 24 4.8 24 11.1 999.9 80.1 52.0 0.00G 999.9 000000 724050 13743 20071022 67.6 24 53.1 24 1023.2 24 1021.0 24 10.0 24 6.4 24 15.0 22.9 82.0 52.0 0.02G 999.9 000000 724050 13743 20071023 73.3 24 61.5 24 1014.2 24 1011.9 24 10.0 24 10.9 24 15.9 22.9 82.0 55.9 0.00G 999.9 000000 724050 13743 20071024 69.7 24 63.3 24 1010.5 17 1008.4 24 9.3 24 6.6 24 19.0 21.0 81.0 61.0 0.21G 999.9 010000 724050 13743 20071025 56.1 24 52.0 24 1020.7 15 1018.7 24 5.3 24 12.0 24 19.0 22.9 71.1 53.1 1.91G 999.9 010000 724050 13743 20071026 58.4 24 54.9 24 1025.5 18 1023.3 24 4.2 24 10.1 24 15.9 999.9 62.1 54.0 0.06G 999.9 110000 724050 13743 20071027 65.7 24 57.8 24 1019.0 14 1016.2 24 7.1 24 5.7 24 15.0 19.0 73.0 57.0 3.88G 999.9 010000 724050 13743 20071028 57.1 24 37.8 24 1027.3 24 1024.9 24 10.0 24 9.8 24 18.1 24.1 73.0 52.0 0.12G 999.9 000000 724050 13743 20071029 49.8 24 31.2 24 1033.6 24 1031.3 24 10.0 24 5.3 24 8.0 999.9 61.0 41.0 0.00G 999.9 000000 724050 13743 20071030 51.7 24 36.9 24 1030.9 24 1028.6 24 10.0 24 3.2 24 7.0 999.9 64.9 41.0 0.00G 999.9 000000 724050 13743 20071031 55.3 24 42.9 24 1027.2 24 1024.9 24 9.8 24 5.1 24 8.9 999.9 68.0 41.0 0.00G 999.9 000000 724050 13743 20071101 60.0 24 49.8 24 1019.5 24 1017.2 24 10.0 24 8.5 24 15.0 22.0 73.9 46.9 0.00G 999.9 000000 724050 13743 20071102 52.9 24 33.9 24 1025.1 24 1022.7 24 10.0 24 10.9 24 15.9 22.0 57.9* 45.0* 0.00G 999.9 000000 724050 13743 20071103 53.7 24 32.2 24 1016.5 24 1014.4 24 10.0 24 11.2 24 15.9 20.0 63.0 45.0 0.00G 999.9 000000 724050 13743 20071104 54.9 24 31.6 24 1014.0 24 1011.6 24 10.0 24 5.6 24 8.9 17.1 63.0 48.0 0.00G 999.9 000000 724050 13743 20071105 51.5 24 36.4 24 1016.0 24 1013.7 24 10.0 24 4.0 24 12.0 999.9 62.1 42.1 0.00G 999.9 000000 724050 13743 20071106 53.3 24 32.9 24 1011.0 24 1008.6 24 9.8 24 12.8 24 20.0 29.9 62.1 42.1 0.09G 999.9 010000 724050 13743 20071107 46.7 24 25.4 24 1020.0 24 1017.7 24 10.0 24 7.9 24 13.0 17.1 57.9 39.0 0.03G 999.9 000000 724050 13743 20071108 42.0 24 26.3 24 1023.9 24 1021.5 24 10.0 24 5.2 24 12.0 999.9 53.1 33.1 0.00G 999.9 000000 724050 13743 20071109 43.1 24 32.9 24 1020.7 21 1018.1 24 9.7 24 3.6 24 11.1 14.0 48.9 33.1 0.00G 999.9 010000 724050 13743 20071110 45.0 24 37.1 24 1018.1 19 1015.6 24 8.2 24 7.6 24 13.0 18.1 50.0 39.0 0.07G 999.9 010000 724050 13743 20071111 43.9 24 31.8 24 1025.9 24 1023.6 24 8.9 24 5.0 24 9.9 999.9 53.1 35.1 0.00G 999.9 000000 724050 13743 20071112 48.8 24 40.8 24 1024.5 24 1022.4 24 8.0 24 4.7 24 8.9 999.9 55.9 35.1 0.28G 999.9 010000 724050 13743 20071113 54.7 24 48.7 24 1016.5 24 1014.2 24 6.7 24 1.0 24 11.1 17.1 63.0 45.0 0.24G 999.9 010000 724050 13743 20071114 55.8 24 50.6 24 1013.0 18 1011.4 24 5.5 24 4.3 24 11.1 14.0 68.0* 48.2* 0.08G 999.9 110000 724050 13743 20071115 55.6 24 47.6 24 1004.4 21 1002.0 24 8.6 24 9.9 24 22.9 32.1 69.1 45.0 0.36G 999.9 010000 724050 13743 20071116 44.8 24 26.6 24 1011.0 24 1008.7 24 10.0 24 12.2 24 19.0 29.9 46.9* 42.1* 0.44G 999.9 000000 724050 13743 20071117 43.2 24 25.3 24 1018.4 24 1016.1 24 10.0 24 7.0 24 15.9 22.0 53.1 35.1 0.00G 999.9 000000 724050 13743 20071118 49.1 24 37.1 24 1021.2 24 1018.9 24 10.0 24 6.0 24 13.0 17.1 57.9 37.0 0.00G 999.9 000000 724050 13743 20071119 45.4 24 39.6 24 1027.5 23 1025.2 24 8.8 24 7.6 24 13.0 999.9 48.2* 42.8* 0.00G 999.9 000000 724050 13743 20071120 49.1 24 43.4 24 1022.3 22 1020.2 24 5.3 24 4.7 24 11.1 999.9 59.0 43.0 0.00G 999.9 010000 724050 13743 20071121 57.3 24 49.3 24 1017.1 24 1014.7 24 7.3 24 5.0 24 9.9 999.9 72.0 46.0 0.00G 999.9 000000 724050 13743 20071122 62.8 24 51.0 24 1009.5 24 1007.0 24 10.0 24 11.3 24 25.1 44.1 77.0 50.0 0.00G 999.9 010000 724050 13743 20071123 44.2 24 23.0 24 1021.1 24 1019.4 24 10.0 24 12.9 24 22.0 28.9 53.1* 39.9* 0.00G 999.9 000000 724050 13743 20071124 37.3 24 19.2 24 1031.3 24 1028.9 24 10.0 24 6.0 24 11.1 21.0 46.9 30.0 0.00G 999.9 000000 724050 13743 20071125 43.7 24 27.5 24 1028.2 24 1025.8 24 10.0 24 5.1 24 9.9 999.9 52.0 30.2 0.00G 999.9 000000 724050 13743 20071126 50.3 24 43.1 24 1019.9 21 1017.2 24 8.8 24 7.9 24 12.0 999.9 60.1 39.0 0.03G 999.9 010000 724050 13743 20071127 57.6 24 44.9 24 1016.7 21 1013.0 24 9.7 24 11.1 24 19.0 28.9 66.0 45.0 0.08G 999.9 010000 724050 13743 20071128 45.5 24 22.3 24 1029.0 24 1026.6 24 10.0 24 7.5 24 14.0 18.1 64.0 39.0 0.00G 999.9 000000 724050 13743 20071129 45.6 24 31.2 24 1022.0 24 1019.7 24 10.0 24 7.8 24 12.0 999.9 61.0 37.9 0.00G 999.9 000000 724050 13743 20071130 44.8 24 10.2 24 1025.3 24 1022.9 24 10.0 24 7.3 24 11.1 19.0 61.0 36.0 0.00G 999.9 000000 724050 13743 20071201 40.4 24 16.3 24 1029.3 24 1026.9 24 10.0 24 7.3 24 15.0 20.0 50.0 35.1 0.00G 999.9 000000 724050 13743 20071202 40.0 24 22.5 24 1029.6 24 1027.2 24 9.8 24 6.3 24 11.1 999.9 46.0 35.1 0.00G 999.9 011000 724050 13743 20071203 46.2 24 34.4 24 1008.8 22 1006.5 24 9.3 24 13.0 24 24.1 39.0 53.1 36.0 0.30G 999.9 010000 724050 13743 20071204 37.7 24 15.4 24 1010.1 24 1007.8 24 10.0 24 16.2 24 23.9 39.0 53.1 35.1 0.02G 999.9 001000 724050 13743 20071205 32.1 24 20.8 24 1009.5 21 1007.1 24 6.7 24 4.4 24 9.9 999.9 42.1 30.0 0.00G 2.0 101000 724050 13743 20071206 29.2 24 18.0 24 1023.1 23 1019.7 24 8.4 24 8.1 24 15.9 999.9 34.0 23.0 0.22G 1.2 101000 724050 13743 20071207 31.6 24 23.3 24 1027.9 23 1025.7 24 10.0 24 4.7 24 11.1 999.9 36.0 23.0 0.00G 1.2 011000 724050 13743 20071208 40.0 24 35.2 24 1025.7 23 1023.3 24 6.9 24 1.8 24 6.0 999.9 48.0 27.1 0.20G 1.2 010000 724050 13743 20071209 42.4 24 38.2 24 1029.1 16 1027.1 24 3.5 24 3.4 24 7.0 999.9 48.0 37.0 0.08G 999.9 010000 724050 13743 20071210 45.6 24 41.1 24 1023.6 17 1021.2 24 2.7 24 3.9 24 11.1 21.0 54.0 41.0 0.15G 999.9 110000 724050 13743 20071211 46.4 24 41.9 24 1026.8 19 1024.5 24 6.4 24 5.0 24 8.0 999.9 54.0 42.1 0.01G 999.9 010000 724050 13743 20071212 53.9 24 46.9 24 1018.2 21 1015.6 24 5.7 24 8.4 24 14.0 19.0 64.0 44.1 0.00G 999.9 000000 724050 13743 20071213 43.7 24 30.8 24 1023.0 21 1019.8 24 8.6 24 7.9 24 14.0 999.9 53.1* 37.4* 0.00G 999.9 010000 724050 13743 20071214 44.7 24 35.7 24 1021.0 20 1018.3 24 5.9 24 5.1 24 14.0 15.9 55.0 37.9 0.02G 999.9 000000 724050 13743 20071215 38.4 24 25.1 24 1028.3 24 1026.0 24 10.0 24 8.0 24 12.0 19.0 55.0 34.0 0.00G 999.9 011000 724050 13743 20071216 41.1 24 34.0 24 1003.9 21 1001.4 24 6.4 24 10.6 24 28.0 41.0 48.9 34.0 0.75G 999.9 010000 724050 13743 20071217 36.9 24 15.6 24 1013.4 24 1012.1 24 10.0 24 14.8 24 22.9 33.0 48.9 33.1 0.12G 999.9 000000 724050 13743 20071218 33.2 24 17.7 24 1028.2 24 1025.9 24 10.0 24 5.6 24 11.1 15.9 41.0 27.0 0.00G 999.9 000000 724050 13743 20071219 39.3 24 22.9 24 1023.4 24 1021.1 24 10.0 24 7.2 24 11.1 999.9 42.8* 37.0* 0.00G 999.9 000000 724050 13743 20071220 39.2 24 25.8 24 1022.5 24 1020.2 24 9.8 24 4.2 24 8.9 999.9 48.9 30.9 0.00G 999.9 000000 724050 13743 20071221 39.9 24 29.3 24 1025.9 24 1023.6 24 9.2 24 4.6 24 9.9 999.9 48.9 31.1 0.00G 999.9 000000 724050 13743 20071222 43.1 24 36.3 24 1030.7 17 1028.1 24 9.7 24 7.4 24 9.9 999.9 46.4* 39.2* 0.00G 999.9 000000 724050 13743 20071223 49.5 24 45.5 24 1021.1 13 1018.0 24 4.4 24 7.5 24 21.0 29.9 64.4* 44.1* 0.01G 999.9 110000 724050 13743 20071224 47.7 24 29.1 24 1015.0 24 1012.7 24 10.0 24 8.5 24 18.1 22.9 64.0 35.1 0.25G 999.9 000000 724050 13743 20071225 44.6 24 26.8 24 1023.7 24 1021.4 24 10.0 24 4.8 24 13.0 999.9 53.1 37.0 0.00G 999.9 000000 724050 13743 20071226 39.0 24 31.9 24 1022.3 23 1019.8 24 8.5 24 5.9 24 12.0 999.9 52.0 36.0 0.00G 999.9 010000 724050 13743 20071227 44.5 24 36.0 24 1017.1 22 1014.6 24 7.9 24 6.0 24 11.1 19.0 57.9 36.0 0.32G 999.9 000000 724050 13743 20071228 43.9 24 35.5 24 1024.6 23 1022.5 24 8.6 24 2.2 24 12.0 999.9 57.9 35.1 0.00G 999.9 010000 724050 13743 20071229 49.9 24 42.0 24 1016.9 15 1014.7 24 6.3 24 3.2 24 8.0 999.9 55.9 36.0 0.61G 999.9 110000 724050 13743 20071230 43.2 24 33.8 24 1019.9 24 1017.7 24 9.4 24 3.3 24 12.0 999.9 55.9 39.0 0.11G 999.9 010000 724050 13743 20071231 40.8 24 35.0 24 1015.7 21 1012.8 24 7.8 24 5.7 24 13.0 999.9 50.0 34.0 0.23G 999.9 010000 fluids-1.0.22/tests/gsod/2007/722324-03071.op0000644000175000017500000014327214302004506016654 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20070101 36.0 24 23.8 24 9999.9 0 926.2 24 10.0 24 5.1 24 8.9 999.9 48.2* 26.6* 0.00I 999.9 000000 722324 03071 20070102 35.4 24 25.5 24 9999.9 0 925.7 23 10.0 24 4.3 24 8.0 999.9 42.8* 28.4* 0.00I 999.9 000000 722324 03071 20070103 38.5 24 30.7 24 9999.9 0 923.1 23 10.0 24 3.7 24 8.9 999.9 44.6* 32.0* 99.99 999.9 010000 722324 03071 20070104 46.7 24 36.8 24 9999.9 0 913.1 23 7.8 24 9.1 24 21.0 28.0 69.8* 37.4* 0.00I 999.9 000000 722324 03071 20070105 55.6 24 27.7 24 9999.9 0 909.4 22 10.0 24 10.1 24 18.1 23.9 71.6* 39.2* 0.00I 999.9 000000 722324 03071 20070106 43.2 24 29.3 24 9999.9 0 919.0 21 10.0 24 9.2 24 18.1 26.0 66.2* 35.6* 0.00I 999.9 000000 722324 03071 20070107 41.0 24 21.3 24 9999.9 0 924.3 22 10.0 24 10.5 24 21.0 32.1 50.0* 35.6* 0.00I 999.9 000000 722324 03071 20070108 42.3 24 15.6 24 9999.9 0 925.8 20 10.0 24 5.5 24 12.0 14.0 64.4* 32.0* 0.00I 999.9 000000 722324 03071 20070109 44.0 24 22.8 24 9999.9 0 931.6 20 10.0 24 4.2 24 11.1 999.9 60.8* 30.2* 0.00I 999.9 000000 722324 03071 20070110 46.8 24 28.1 24 9999.9 0 923.0 21 10.0 24 8.8 24 15.9 21.0 62.6* 37.4* 0.00I 999.9 000000 722324 03071 20070111 53.8 24 39.3 24 9999.9 0 915.9 23 10.0 24 11.4 24 15.9 22.0 66.2* 48.2* 0.00I 999.9 000000 722324 03071 20070112 55.4 24 48.6 24 9999.9 0 916.1 23 10.0 24 10.9 24 18.1 20.0 60.8* 42.8* 0.00I 999.9 000000 722324 03071 20070113 27.9 24 27.0 24 9999.9 0 920.6 24 2.9 24 8.4 24 13.0 16.9 37.4* 24.8* 99.99 999.9 001000 722324 03071 20070114 27.0 24 26.5 24 9999.9 0 918.7 24 3.1 24 4.8 24 7.0 999.9 28.4* 26.6* 0.00I 999.9 000000 722324 03071 20070115 24.1 24 19.3 24 9999.9 0 927.5 23 10.0 24 6.9 24 12.0 17.1 28.4* 15.8* 0.00I 999.9 000000 722324 03071 20070116 27.2 24 18.6 24 9999.9 0 933.4 24 10.0 24 3.8 24 7.0 999.9 30.2* 23.0* 0.00I 999.9 000000 722324 03071 20070117 25.6 24 21.7 24 9999.9 0 930.2 24 7.3 24 3.9 24 8.9 999.9 32.0* 23.0* 99.99 999.9 001000 722324 03071 20070118 33.9 24 30.1 24 9999.9 0 925.2 24 10.0 24 3.7 24 8.0 999.9 42.8* 30.2* 99.99 999.9 010000 722324 03071 20070119 34.2 24 31.2 24 9999.9 0 929.1 24 8.9 24 6.0 24 12.0 16.9 41.0* 32.0* 99.99 999.9 011000 722324 03071 20070120 32.8 24 32.0 24 9999.9 0 919.2 24 6.3 24 4.2 24 16.9 22.9 42.8* 32.0* 99.99 999.9 011000 722324 03071 20070121 41.5 24 31.2 24 9999.9 0 914.2 24 10.0 24 9.1 24 15.0 18.1 51.8* 33.8* 0.00I 999.9 000000 722324 03071 20070122 32.2 24 25.8 24 9999.9 0 923.0 24 10.0 24 8.5 24 12.0 17.1 42.8* 28.4* 0.00I 999.9 000000 722324 03071 20070123 32.8 24 29.1 24 9999.9 0 923.8 24 7.7 24 5.3 24 9.9 14.0 37.4* 30.2* 99.99 999.9 001000 722324 03071 20070124 36.7 24 30.3 24 9999.9 0 925.9 24 10.0 24 6.2 24 14.0 16.9 50.0* 32.0* 0.00I 999.9 000000 722324 03071 20070125 38.3 24 29.5 24 9999.9 0 929.0 24 10.0 24 1.7 24 6.0 999.9 53.6* 28.4* 0.00I 999.9 000000 722324 03071 20070126 41.6 24 30.8 24 9999.9 0 921.5 24 10.0 24 5.1 24 19.0 25.1 55.4* 30.2* 99.99 999.9 010000 722324 03071 20070127 39.9 24 34.7 24 9999.9 0 918.0 24 9.6 24 9.5 24 16.9 25.1 51.8* 35.6* 99.99 999.9 010010 722324 03071 20070128 32.6 24 28.6 24 9999.9 0 926.9 24 9.5 24 2.3 24 11.1 999.9 42.8* 24.8* 0.00I 999.9 100000 722324 03071 20070129 38.5 24 31.2 24 9999.9 0 921.1 24 10.0 24 4.6 24 9.9 999.9 51.8* 32.0* 0.00I 999.9 000000 722324 03071 20070130 35.9 24 28.4 24 9999.9 0 923.3 24 9.1 24 7.3 24 13.0 15.0 51.8* 32.0* 0.00I 999.9 000000 722324 03071 20070131 39.1 24 29.4 24 9999.9 0 916.9 23 8.4 24 7.3 24 14.0 19.0 57.2* 32.0* 99.99 999.9 010000 722324 03071 20070201 39.3 24 33.8 24 9999.9 0 909.8 23 8.7 24 4.9 24 12.0 999.9 55.4* 32.0* 99.99 999.9 010000 722324 03071 20070202 34.2 24 30.2 24 9999.9 0 916.3 24 8.2 24 6.2 24 13.0 18.1 42.8* 28.4* 99.99 999.9 001000 722324 03071 20070203 39.4 24 27.3 24 9999.9 0 921.6 24 10.0 24 6.6 24 14.0 22.9 59.0* 32.0* 0.00I 999.9 000000 722324 03071 20070204 42.7 24 26.1 24 9999.9 0 924.7 24 10.0 24 4.0 24 9.9 999.9 55.4* 30.2* 0.00I 999.9 000000 722324 03071 20070205 43.0 24 30.9 24 9999.9 0 927.0 24 9.3 24 3.4 24 9.9 14.0 64.4* 30.2* 0.00I 999.9 000000 722324 03071 20070206 51.3 24 33.7 24 9999.9 0 924.5 24 9.7 24 5.6 24 13.0 20.0 71.6* 33.8* 0.00I 999.9 000000 722324 03071 20070207 56.4 24 34.0 24 9999.9 0 919.5 24 10.0 24 7.2 24 11.1 15.9 75.2* 37.4* 0.00I 999.9 000000 722324 03071 20070208 42.3 24 31.6 24 9999.9 0 921.9 24 7.0 24 6.6 24 15.0 21.0 71.6* 32.0* 0.00I 999.9 000000 722324 03071 20070209 35.4 24 32.2 24 9999.9 0 922.4 24 4.6 24 5.1 24 9.9 999.9 46.4* 32.0* 99.99 999.9 111000 722324 03071 20070210 34.0 24 31.2 24 9999.9 0 924.5 24 6.0 24 5.6 24 9.9 999.9 41.0* 32.0* 0.00I 999.9 100000 722324 03071 20070211 41.2 24 38.5 24 9999.9 0 919.3 24 4.8 24 6.0 24 11.1 999.9 57.2* 37.4* 0.00I 999.9 100000 722324 03071 20070212 52.2 24 41.5 24 9999.9 0 912.6 24 8.0 24 12.6 24 23.9 35.0 69.8* 42.8* 99.99 999.9 110010 722324 03071 20070213 43.9 24 29.7 24 9999.9 0 917.7 24 10.0 24 10.0 24 19.0 22.9 66.2* 33.8* 0.00I 999.9 000000 722324 03071 20070214 30.5 24 21.2 24 9999.9 0 921.7 24 10.0 24 9.6 24 15.0 19.0 42.8* 23.0* 0.00I 999.9 000000 722324 03071 20070215 27.3 24 20.7 24 9999.9 0 925.3 24 9.9 24 5.6 24 12.0 999.9 37.4* 23.0* 99.99 999.9 001000 722324 03071 20070216 37.8 24 22.2 24 9999.9 0 922.7 24 10.0 24 8.5 24 21.0 29.9 66.2* 26.6* 0.00I 999.9 000000 722324 03071 20070217 46.3 24 25.0 24 9999.9 0 925.2 24 10.0 24 9.1 24 15.9 21.0 64.4* 32.0* 0.00I 999.9 000000 722324 03071 20070218 45.2 24 18.0 24 9999.9 0 928.0 24 10.0 24 8.3 24 20.0 28.0 60.8* 32.0* 0.00I 999.9 000000 722324 03071 20070219 53.1 24 23.9 24 9999.9 0 915.0 22 10.0 24 13.1 24 26.0 34.0 71.6* 42.8* 0.00I 999.9 000000 722324 03071 20070220 60.2 24 28.9 24 9999.9 0 914.3 24 10.0 24 14.9 24 24.1 32.1 69.8* 51.8* 0.00I 999.9 000000 722324 03071 20070221 54.0 24 25.2 24 9999.9 0 917.9 24 10.0 24 10.0 24 16.9 25.1 71.6* 35.6* 0.00I 999.9 000000 722324 03071 20070222 55.4 24 27.2 24 9999.9 0 919.6 24 10.0 24 3.7 24 14.0 19.0 75.2* 35.6* 0.00I 999.9 000000 722324 03071 20070223 63.1 24 48.9 24 9999.9 0 912.9 24 9.0 24 11.1 24 19.0 23.9 75.2* 53.6* 0.00I 999.9 000000 722324 03071 20070224 56.2 24 26.1 24 9999.9 0 908.0 24 8.6 24 20.3 24 40.0 53.0 69.8* 44.6* 0.00I 999.9 000000 722324 03071 20070225 45.4 24 13.9 24 9999.9 0 916.1 24 10.0 24 6.2 24 15.9 22.0 64.4* 28.4* 0.00I 999.9 000000 722324 03071 20070226 60.6 24 12.0 24 9999.9 0 910.4 24 10.0 24 10.7 24 19.0 27.0 75.2* 50.0* 0.00I 999.9 000000 722324 03071 20070227 62.6 24 16.9 24 9999.9 0 911.9 24 10.0 24 9.9 24 19.0 27.0 77.0* 46.4* 0.00I 999.9 000000 722324 03071 20070228 64.0 24 25.1 24 9999.9 0 907.3 23 10.0 24 10.8 24 22.9 31.1 77.0* 55.4* 0.00I 999.9 000000 722324 03071 20070301 53.3 24 6.9 24 9999.9 0 909.4 20 10.0 24 14.2 24 24.1 31.1 73.4* 37.4* 0.00I 999.9 000000 722324 03071 20070302 43.2 24 7.5 24 9999.9 0 913.9 24 10.0 24 4.0 24 12.0 15.9 59.0* 32.0* 0.00I 999.9 000000 722324 03071 20070303 42.2 24 10.1 24 9999.9 0 921.7 22 8.6 24 10.5 24 20.0 32.1 57.2* 32.0* 0.00I 999.9 000000 722324 03071 20070304 38.1 24 8.6 24 9999.9 0 931.9 23 10.0 24 3.2 24 11.1 16.9 55.4* 26.6* 0.00I 999.9 000000 722324 03071 20070305 45.9 24 8.1 24 9999.9 0 930.5 20 10.0 24 5.6 24 12.0 16.9 64.4* 28.4* 0.00I 999.9 000000 722324 03071 20070306 54.3 24 9.7 24 9999.9 0 924.1 24 10.0 24 7.6 24 14.0 18.1 71.6* 39.2* 0.00I 999.9 000000 722324 03071 20070307 55.9 24 25.5 24 9999.9 0 920.2 22 10.0 24 4.4 24 9.9 16.9 75.2* 41.0* 0.00I 999.9 000000 722324 03071 20070308 57.0 24 35.1 24 9999.9 0 919.3 23 10.0 24 4.6 24 15.9 20.0 73.4* 39.2* 0.00I 999.9 000000 722324 03071 20070309 61.9 24 39.5 24 9999.9 0 917.9 21 10.0 24 6.0 24 13.0 16.9 75.2* 44.6* 0.00I 999.9 000000 722324 03071 20070310 62.1 24 36.8 24 9999.9 0 919.3 20 9.9 24 5.5 24 18.1 22.9 80.6* 44.6* 0.00I 999.9 000000 722324 03071 20070311 60.5 24 49.1 24 9999.9 0 917.8 22 9.1 24 10.7 24 22.9 28.0 77.0* 48.2* 99.99 999.9 010010 722324 03071 20070312 52.6 24 48.8 24 9999.9 0 921.7 23 8.8 24 4.9 24 12.0 999.9 59.0* 50.0* 99.99 999.9 010000 722324 03071 20070313 55.8 24 45.7 24 9999.9 0 920.3 19 9.9 24 4.0 24 14.0 22.0 68.0* 50.0* 99.99 999.9 010000 722324 03071 20070314 58.8 24 44.2 24 9999.9 0 914.1 24 9.1 24 3.5 24 8.0 999.9 75.2* 44.6* 0.00I 999.9 100000 722324 03071 20070315 65.0 24 46.8 24 9999.9 0 915.8 24 10.0 24 3.8 24 11.1 16.9 82.4* 50.0* 0.00I 999.9 000000 722324 03071 20070316 54.0 24 42.4 24 9999.9 0 926.3 24 10.0 24 11.5 24 22.0 30.9 78.8* 44.6* 0.00I 999.9 000000 722324 03071 20070317 57.3 24 42.5 24 9999.9 0 922.6 24 10.0 24 5.2 24 14.0 16.9 78.8* 44.6* 0.00I 999.9 000000 722324 03071 20070318 63.9 24 50.4 24 9999.9 0 916.5 24 7.9 24 8.3 24 15.0 18.1 77.0* 53.6* 0.00I 999.9 000000 722324 03071 20070319 66.4 24 50.8 24 9999.9 0 915.0 24 8.6 24 8.9 24 12.0 15.9 82.4* 55.4* 0.00I 999.9 000000 722324 03071 20070320 66.2 24 54.8 24 9999.9 0 918.4 24 9.6 24 10.6 24 15.9 22.9 78.8* 57.2* 0.00I 999.9 000000 722324 03071 20070321 68.2 24 54.1 24 9999.9 0 917.2 24 9.9 24 12.6 24 20.0 23.9 80.6* 60.8* 0.00I 999.9 000000 722324 03071 20070322 64.9 24 57.4 24 9999.9 0 917.5 24 8.2 24 10.0 24 18.1 23.9 77.0* 60.8* 99.99 999.9 010010 722324 03071 20070323 65.7 24 58.4 24 9999.9 0 915.5 24 9.2 24 13.0 24 25.1 32.1 73.4* 62.6* 0.00I 999.9 000000 722324 03071 20070324 63.2 24 47.5 24 9999.9 0 916.3 24 9.9 24 12.1 24 28.0 39.0 71.6* 53.6* 99.99 999.9 010010 722324 03071 20070325 64.9 24 54.0 24 9999.9 0 920.2 24 9.9 24 7.7 24 18.1 22.9 71.6* 60.8* 99.99 999.9 010010 722324 03071 20070326 56.8 24 52.5 24 9999.9 0 917.3 24 9.2 24 8.9 24 21.0 26.0 62.6* 51.8* 99.99 999.9 010010 722324 03071 20070327 59.8 24 47.5 24 9999.9 0 915.1 24 10.0 24 2.8 24 12.0 18.1 80.6* 46.4* 0.00I 999.9 000000 722324 03071 20070328 69.0 24 55.6 24 9999.9 0 911.2 24 9.6 24 14.9 24 24.1 31.1 78.8* 62.6* 0.00I 999.9 000000 722324 03071 20070329 61.1 24 41.3 24 9999.9 0 915.0 24 9.8 24 9.0 24 19.0 28.0 69.8* 46.4* 99.99 999.9 010010 722324 03071 20070330 54.6 24 39.0 24 9999.9 0 917.2 24 9.8 24 7.9 24 18.1 25.1 68.0* 46.4* 99.99 999.9 010010 722324 03071 20070331 50.7 24 37.7 24 9999.9 0 917.0 24 10.0 24 9.0 24 19.0 25.1 68.0* 39.2* 0.00I 999.9 000000 722324 03071 20070401 61.6 24 34.7 24 9999.9 0 915.3 21 10.0 24 5.6 24 13.0 15.0 78.8* 48.2* 0.00I 999.9 000000 722324 03071 20070402 67.7 24 44.2 24 9999.9 0 915.7 24 9.7 24 6.7 24 12.0 18.1 84.2* 53.6* 0.00I 999.9 000000 722324 03071 20070403 70.3 24 48.6 24 9999.9 0 916.9 24 10.0 24 9.0 24 15.0 25.1 80.6* 59.0* 0.00I 999.9 000000 722324 03071 20070404 57.5 24 38.3 24 9999.9 0 924.0 24 10.0 24 9.7 24 15.9 22.0 75.2* 46.4* 0.00I 999.9 000000 722324 03071 20070405 55.1 24 37.9 24 9999.9 0 922.7 24 10.0 24 8.7 24 13.0 16.9 68.0* 46.4* 0.00I 999.9 000000 722324 03071 20070406 49.6 24 37.2 24 9999.9 0 923.2 24 10.0 24 10.7 24 18.1 23.9 66.2* 39.2* 0.00I 999.9 000000 722324 03071 20070407 31.4 24 29.2 24 9999.9 0 926.4 22 6.0 24 11.5 24 19.0 23.9 37.4* 28.4* 99.99 999.9 011000 722324 03071 20070408 31.1 24 28.8 24 9999.9 0 922.2 24 9.0 24 5.3 24 8.9 999.9 39.2* 28.4* 0.00I 999.9 000000 722324 03071 20070409 44.3 24 39.5 24 9999.9 0 914.8 24 8.8 24 6.7 24 9.9 14.0 64.4* 37.4* 0.00I 999.9 000000 722324 03071 20070410 60.9 24 46.9 24 9999.9 0 907.7 24 8.6 24 11.2 24 25.1 30.9 80.6* 48.2* 99.99 999.9 010010 722324 03071 20070411 60.1 24 33.5 24 9999.9 0 911.1 24 10.0 24 7.8 24 14.0 22.9 78.8* 42.8* 0.00I 999.9 000000 722324 03071 20070412 62.1 24 34.0 24 9999.9 0 910.7 24 10.0 24 8.6 24 18.1 22.0 78.8* 46.4* 0.00I 999.9 000000 722324 03071 20070413 67.2 24 46.8 24 9999.9 0 907.7 24 9.2 24 15.1 24 34.0 45.1 77.0* 60.8* 0.00I 999.9 000000 722324 03071 20070414 46.9 24 31.0 24 9999.9 0 920.1 24 10.0 24 15.5 24 25.1 36.9 64.4* 37.4* 0.00I 999.9 000000 722324 03071 20070415 54.6 24 31.4 24 9999.9 0 920.8 24 10.0 24 6.8 24 20.0 25.1 71.6* 39.2* 0.00I 999.9 000000 722324 03071 20070416 57.8 24 34.3 24 9999.9 0 916.7 24 10.0 24 13.4 24 24.1 31.1 69.8* 44.6* 0.00I 999.9 000000 722324 03071 20070417 62.2 24 42.9 24 9999.9 0 913.1 24 10.0 24 11.0 24 25.1 37.9 73.4* 55.4* 0.00I 999.9 000000 722324 03071 20070418 58.2 24 39.6 24 9999.9 0 916.0 24 10.0 24 3.5 24 13.0 999.9 77.0* 42.8* 0.00I 999.9 000000 722324 03071 20070419 67.0 24 39.3 24 9999.9 0 912.0 24 10.0 24 7.5 24 14.0 20.0 82.4* 51.8* 0.00I 999.9 000000 722324 03071 20070420 69.8 24 47.5 24 9999.9 0 913.7 23 10.0 24 10.2 24 17.1 22.9 86.0* 55.4* 0.00I 999.9 000000 722324 03071 20070421 69.2 24 53.2 24 9999.9 0 913.0 24 10.0 24 16.5 24 28.0 34.0 80.6* 59.0* 0.00I 999.9 000000 722324 03071 20070422 65.5 24 36.2 24 9999.9 0 915.7 23 10.0 24 10.2 24 26.0 35.0 78.8* 48.2* 0.00I 999.9 000000 722324 03071 20070423 72.6 24 48.9 24 9999.9 0 915.0 24 9.5 24 10.1 24 18.1 28.0 82.4* 64.4* 0.00I 999.9 000000 722324 03071 20070424 71.2 24 45.7 24 9999.9 0 912.5 24 9.6 24 14.5 24 25.1 36.9 82.4* 55.4* 0.00I 999.9 000000 722324 03071 20070425 62.7 24 29.5 24 9999.9 0 915.6 24 10.0 24 14.7 24 22.0 32.1 75.2* 50.0* 0.00I 999.9 000000 722324 03071 20070426 59.9 24 34.0 24 9999.9 0 917.5 24 10.0 24 6.5 24 12.0 19.0 80.6* 42.8* 0.00I 999.9 000000 722324 03071 20070427 69.5 24 46.6 24 9999.9 0 915.7 23 10.0 24 7.6 24 14.0 18.1 80.6* 55.4* 0.00I 999.9 000000 722324 03071 20070428 70.3 24 52.1 24 9999.9 0 922.1 24 10.0 24 6.4 24 14.0 22.0 82.4* 57.2* 0.00I 999.9 000000 722324 03071 20070429 66.6 24 52.8 24 9999.9 0 922.6 24 9.3 24 6.8 24 14.0 16.9 80.6* 59.0* 99.99 999.9 010010 722324 03071 20070430 63.0 24 54.4 24 9999.9 0 917.7 24 8.8 24 5.7 24 15.0 28.9 78.8* 55.4* 99.99 999.9 010010 722324 03071 20070501 71.9 24 59.9 24 9999.9 0 913.6 23 8.4 24 5.8 24 11.1 999.9 80.6* 66.2* 99.99 999.9 010010 722324 03071 20070502 66.0 24 57.4 24 9999.9 0 913.6 23 8.4 24 7.6 24 22.0 32.1 78.8* 57.2* 99.99 999.9 010010 722324 03071 20070503 66.0 24 50.4 24 9999.9 0 912.9 24 10.0 24 4.1 24 12.0 18.1 84.2* 53.6* 99.99 999.9 010000 722324 03071 20070504 75.3 24 56.5 24 9999.9 0 910.1 24 9.3 24 8.9 24 16.9 21.0 87.8* 62.6* 0.00I 999.9 000000 722324 03071 20070505 78.7 24 60.1 24 9999.9 0 906.0 24 8.1 24 13.0 24 18.1 25.1 89.6* 69.8* 0.00I 999.9 000000 722324 03071 20070506 76.2 24 53.7 24 9999.9 0 908.8 24 8.8 24 8.6 24 20.0 26.0 87.8* 62.6* 0.00I 999.9 000000 722324 03071 20070507 70.6 24 41.8 24 9999.9 0 917.2 24 10.0 24 8.6 24 18.1 25.1 82.4* 59.0* 99.99 999.9 010000 722324 03071 20070508 64.2 24 57.5 24 9999.9 0 919.2 24 9.3 24 10.8 24 33.0 40.0 73.4* 55.4* 99.99 999.9 010010 722324 03071 20070509 57.4 24 53.8 24 9999.9 0 919.3 21 8.2 24 5.8 24 14.0 17.1 62.6* 55.4* 99.99 999.9 010010 722324 03071 20070510 62.0 24 53.1 24 9999.9 0 918.0 24 10.0 24 4.7 24 11.1 16.9 77.0* 53.6* 0.00I 999.9 000000 722324 03071 20070511 67.8 24 55.3 24 9999.9 0 920.6 23 10.0 24 5.6 24 12.0 19.0 78.8* 57.2* 0.00I 999.9 000000 722324 03071 20070512 69.7 24 56.8 24 9999.9 0 922.4 24 10.0 24 2.8 24 13.0 21.0 78.8* 59.0* 99.99 999.9 010000 722324 03071 20070513 69.7 24 57.4 24 9999.9 0 922.4 24 9.3 24 2.5 24 9.9 999.9 80.6* 59.0* 0.00I 999.9 000000 722324 03071 20070514 72.6 24 55.5 24 9999.9 0 920.0 24 10.0 24 7.3 24 15.0 21.0 84.2* 60.8* 0.00I 999.9 000000 722324 03071 20070515 72.4 24 55.7 24 9999.9 0 919.6 24 10.0 24 9.6 24 19.0 22.9 82.4* 62.6* 0.00I 999.9 000000 722324 03071 20070516 62.1 24 53.9 24 9999.9 0 925.2 24 10.0 24 9.2 24 15.9 18.1 71.6* 57.2* 99.99 999.9 010010 722324 03071 20070517 57.9 24 53.1 24 9999.9 0 924.7 23 9.3 24 4.5 24 8.9 999.9 60.8* 55.4* 99.99 999.9 010000 722324 03071 20070518 60.3 24 52.5 24 9999.9 0 923.7 24 10.0 24 6.6 24 15.0 18.1 68.0* 57.2* 99.99 999.9 010000 722324 03071 20070519 62.0 24 55.5 24 9999.9 0 922.5 23 8.6 24 7.4 24 12.0 15.9 66.2* 57.2* 0.00I 999.9 000000 722324 03071 20070520 66.2 24 58.5 24 9999.9 0 919.3 24 9.8 24 6.8 24 13.0 19.0 77.0* 60.8* 0.00I 999.9 000000 722324 03071 20070521 69.1 24 60.0 24 9999.9 0 914.8 24 8.8 24 9.4 24 19.0 22.9 80.6* 64.4* 0.00I 999.9 000000 722324 03071 20070522 73.4 24 52.9 24 9999.9 0 911.7 24 9.7 24 10.4 24 16.9 22.9 87.8* 60.8* 0.00I 999.9 000000 722324 03071 20070523 76.5 24 59.4 24 9999.9 0 913.8 24 9.0 24 12.6 24 20.0 25.1 86.0* 69.8* 0.00I 999.9 000000 722324 03071 20070524 70.6 24 61.5 24 9999.9 0 917.7 24 8.5 24 12.1 24 19.0 26.0 78.8* 64.4* 0.00I 999.9 000000 722324 03071 20070525 67.3 24 58.7 24 9999.9 0 921.5 24 9.5 24 8.6 24 15.0 20.0 78.8* 60.8* 99.99 999.9 010000 722324 03071 20070526 68.5 24 57.4 24 9999.9 0 919.6 24 8.8 24 4.8 24 14.0 20.0 80.6* 59.0* 0.00I 999.9 100000 722324 03071 20070527 69.7 24 55.3 24 9999.9 0 918.2 24 10.0 24 4.1 24 12.0 20.0 80.6* 60.8* 99.99 999.9 010010 722324 03071 20070528 72.7 24 56.7 24 9999.9 0 916.7 24 10.0 24 5.5 24 9.9 15.9 86.0* 60.8* 99.99 999.9 010010 722324 03071 20070529 74.1 24 54.2 24 9999.9 0 915.2 22 9.3 24 8.2 24 15.9 28.9 91.4* 60.8* 99.99 999.9 010010 722324 03071 20070530 76.5 24 58.6 24 9999.9 0 915.0 24 9.8 24 8.6 24 14.0 19.0 89.6* 68.0* 0.00I 999.9 000000 722324 03071 20070531 76.5 24 61.6 24 9999.9 0 916.8 23 9.6 24 8.9 24 19.0 22.9 89.6* 68.0* 0.00I 999.9 000000 722324 03071 20070601 78.0 24 62.0 24 9999.9 0 912.1 21 10.0 24 14.4 24 20.0 26.0 89.6* 71.6* 99.99 999.9 010010 722324 03071 20070602 78.5 24 62.1 24 9999.9 0 913.9 24 10.0 24 8.6 24 15.9 20.0 87.8* 69.8* 0.00I 999.9 000000 722324 03071 20070603 75.8 24 58.9 24 9999.9 0 916.0 22 10.0 24 7.7 24 20.0 26.0 86.0* 66.2* 99.99 999.9 010010 722324 03071 20070604 70.2 24 56.6 24 9999.9 0 917.5 24 10.0 24 4.1 24 12.0 999.9 84.2* 60.8* 99.99 999.9 010010 722324 03071 20070605 75.4 24 54.4 24 9999.9 0 916.7 24 10.0 24 4.0 24 19.0 27.0 89.6* 62.6* 99.99 999.9 010000 722324 03071 20070606 80.3 24 59.7 24 9999.9 0 910.1 24 9.9 24 12.2 24 20.0 25.1 95.0* 69.8* 0.00I 999.9 000000 722324 03071 20070607 83.2 24 56.4 24 9999.9 0 907.9 24 9.0 24 12.7 24 19.0 26.0 95.0* 73.4* 0.00I 999.9 000000 722324 03071 20070608 74.9 24 49.2 24 9999.9 0 916.8 23 9.3 24 9.8 24 18.1 22.9 93.2* 62.6* 0.00I 999.9 000000 722324 03071 20070609 77.5 24 61.0 24 9999.9 0 919.7 24 10.0 24 9.4 24 15.9 22.9 89.6* 69.8* 0.00I 999.9 000010 722324 03071 20070610 77.6 24 62.7 24 9999.9 0 917.3 24 10.0 24 7.7 24 15.9 22.0 89.6* 64.4* 99.99 999.9 010000 722324 03071 20070611 79.4 24 64.3 24 9999.9 0 915.5 24 9.5 24 9.1 24 15.0 19.0 87.8* 71.6* 0.00I 999.9 000000 722324 03071 20070612 75.3 24 60.9 24 9999.9 0 917.5 24 9.0 24 6.2 24 14.0 20.0 86.0* 64.4* 99.99 999.9 010010 722324 03071 20070613 78.2 24 58.5 24 9999.9 0 916.2 24 10.0 24 7.6 24 12.0 16.9 89.6* 68.0* 0.00I 999.9 000000 722324 03071 20070614 75.7 24 53.9 24 9999.9 0 916.0 24 10.0 24 5.9 24 14.0 18.1 87.8* 62.6* 0.00I 999.9 000000 722324 03071 20070615 77.5 24 55.9 24 9999.9 0 914.1 24 10.0 24 6.1 24 13.0 21.0 87.8* 64.4* 99.99 999.9 010010 722324 03071 20070616 75.4 24 61.1 24 9999.9 0 916.7 24 10.0 24 6.3 24 11.1 15.0 86.0* 64.4* 0.00I 999.9 000000 722324 03071 20070617 74.0 24 61.0 24 9999.9 0 916.7 24 9.7 24 3.7 24 9.9 14.0 87.8* 64.4* 0.00I 999.9 000000 722324 03071 20070618 83.6 24 57.2 24 9999.9 0 911.6 24 10.0 24 9.2 24 15.0 20.0 100.4* 71.6* 0.00I 999.9 000000 722324 03071 20070619 86.5 24 61.3 24 9999.9 0 915.1 24 10.0 24 8.3 24 15.0 27.0 100.4* 73.4* 0.00I 999.9 000000 722324 03071 20070620 80.0 24 59.8 24 9999.9 0 921.1 23 9.7 24 9.0 24 20.0 35.9 96.8* 64.4* 99.99 999.9 010000 722324 03071 20070621 77.2 24 60.0 24 9999.9 0 920.2 24 10.0 24 6.9 24 12.0 17.1 89.6* 66.2* 0.00I 999.9 000000 722324 03071 20070622 78.6 24 61.1 24 9999.9 0 918.5 24 10.0 24 10.7 24 14.0 22.0 87.8* 69.8* 0.00I 999.9 000000 722324 03071 20070623 77.9 24 61.6 24 9999.9 0 916.7 24 10.0 24 6.6 24 15.0 19.0 89.6* 68.0* 0.00I 999.9 000000 722324 03071 20070624 77.8 24 61.0 24 9999.9 0 915.2 24 9.9 24 6.8 24 22.9 28.0 87.8* 66.2* 99.99 999.9 010010 722324 03071 20070625 80.1 24 62.9 24 9999.9 0 916.4 24 9.9 24 8.2 24 13.0 16.9 93.2* 69.8* 0.00I 999.9 000000 722324 03071 20070626 82.9 24 65.5 24 9999.9 0 917.5 24 9.6 24 11.4 24 15.0 21.0 93.2* 73.4* 0.00I 999.9 000000 722324 03071 20070627 76.6 24 62.6 24 9999.9 0 919.7 23 9.9 24 8.6 24 28.0 40.0 89.6* 66.2* 99.99 999.9 010010 722324 03071 20070628 76.8 24 61.5 24 9999.9 0 919.6 24 9.9 24 8.1 24 17.1 22.0 86.0* 68.0* 0.00I 999.9 000000 722324 03071 20070629 74.6 24 56.5 24 9999.9 0 919.4 23 10.0 24 7.6 24 13.0 20.0 87.8* 62.6* 0.00I 999.9 000000 722324 03071 20070630 77.8 24 56.3 24 9999.9 0 918.6 24 10.0 24 4.2 24 8.9 17.1 91.4* 64.4* 0.00I 999.9 000000 722324 03071 20070701 81.2 24 59.5 24 9999.9 0 918.2 24 10.0 24 6.6 24 12.0 15.9 93.2* 69.8* 0.00I 999.9 000000 722324 03071 20070702 82.0 24 59.8 24 9999.9 0 918.9 24 10.0 24 6.0 24 18.1 24.1 93.2* 69.8* 0.00I 999.9 000000 722324 03071 20070703 78.8 24 64.0 24 9999.9 0 918.5 24 10.0 24 7.4 24 15.0 21.0 91.4* 69.8* 99.99 999.9 010010 722324 03071 20070704 76.9 24 63.0 24 9999.9 0 919.5 24 9.8 24 5.6 24 14.0 19.0 87.8* 68.0* 99.99 999.9 010000 722324 03071 20070705 78.4 24 62.2 24 9999.9 0 920.5 24 10.0 24 5.7 24 20.0 28.0 89.6* 68.0* 99.99 999.9 010000 722324 03071 20070706 76.2 24 63.4 24 9999.9 0 922.1 24 9.9 24 6.0 24 13.0 26.0 87.8* 69.8* 99.99 999.9 010000 722324 03071 20070707 79.8 24 59.5 24 9999.9 0 920.5 24 10.0 24 2.9 24 8.9 999.9 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20070708 83.1 24 59.8 24 9999.9 0 915.6 24 9.6 24 6.9 24 12.0 14.0 96.8* 71.6* 0.00I 999.9 000000 722324 03071 20070709 84.6 24 62.5 24 9999.9 0 914.4 24 9.8 24 8.9 24 13.0 19.0 98.6* 73.4* 0.00I 999.9 000000 722324 03071 20070710 82.3 24 62.6 24 9999.9 0 916.5 24 9.8 24 8.1 24 21.0 34.0 96.8* 71.6* 99.99 999.9 010010 722324 03071 20070711 81.8 24 63.7 24 9999.9 0 920.3 24 10.0 24 5.6 24 13.0 18.1 95.0* 73.4* 99.99 999.9 010010 722324 03071 20070712 82.3 24 61.2 24 9999.9 0 920.3 24 10.0 24 7.7 24 13.0 17.1 93.2* 71.6* 0.00I 999.9 000000 722324 03071 20070713 80.2 24 65.7 24 9999.9 0 919.4 24 9.9 24 5.3 24 19.0 32.1 91.4* 73.4* 99.99 999.9 010010 722324 03071 20070714 77.7 24 62.7 24 9999.9 0 920.0 24 10.0 24 5.5 24 13.0 22.0 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20070715 81.6 24 56.5 24 9999.9 0 918.5 24 8.9 24 3.7 24 13.0 15.9 95.0* 66.2* 0.00I 999.9 000000 722324 03071 20070716 82.9 24 55.3 24 9999.9 0 917.7 24 10.0 24 6.6 24 13.0 19.0 96.8* 69.8* 0.00I 999.9 000000 722324 03071 20070717 82.8 24 54.1 24 9999.9 0 918.2 24 10.0 24 8.4 24 12.0 18.1 95.0* 69.8* 0.00I 999.9 000000 722324 03071 20070718 79.7 24 58.6 24 9999.9 0 919.3 24 10.0 24 9.2 24 19.0 23.9 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20070719 76.4 24 60.8 24 9999.9 0 918.7 24 10.0 24 9.7 24 15.9 21.0 87.8* 68.0* 0.00I 999.9 000000 722324 03071 20070720 76.5 24 62.8 24 9999.9 0 918.4 24 9.8 24 7.1 24 15.0 18.1 86.0* 69.8* 0.00I 999.9 000000 722324 03071 20070721 75.0 24 68.2 24 9999.9 0 919.7 24 9.2 24 5.7 24 12.0 19.0 82.4* 71.6* 99.99 999.9 010010 722324 03071 20070722 73.9 24 65.2 24 9999.9 0 922.1 24 9.4 24 5.8 24 14.0 18.1 87.8* 68.0* 99.99 999.9 010000 722324 03071 20070723 79.5 24 61.3 24 9999.9 0 921.4 24 10.0 24 3.8 24 11.1 15.0 91.4* 68.0* 0.00I 999.9 000000 722324 03071 20070724 79.8 24 60.1 24 9999.9 0 917.9 23 10.0 24 6.5 24 14.0 999.9 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20070725 75.2 24 60.1 24 9999.9 0 918.1 24 10.0 24 6.2 24 15.0 27.0 87.8* 64.4* 0.00I 999.9 000000 722324 03071 20070726 77.2 24 59.6 24 9999.9 0 918.1 24 10.0 24 7.1 24 12.0 22.0 87.8* 68.0* 0.00I 999.9 000000 722324 03071 20070727 76.4 24 62.8 24 9999.9 0 918.3 24 10.0 24 6.7 24 15.0 21.0 86.0* 68.0* 0.00I 999.9 000010 722324 03071 20070728 76.8 24 62.5 24 9999.9 0 916.8 24 10.0 24 5.3 24 15.0 18.1 89.6* 68.0* 99.99 999.9 010000 722324 03071 20070729 77.4 24 62.5 24 9999.9 0 916.2 24 10.0 24 5.5 24 14.0 19.0 89.6* 69.8* 99.99 999.9 010000 722324 03071 20070730 73.8 24 67.1 24 9999.9 0 917.2 24 8.8 24 3.7 24 16.9 22.9 82.4* 69.8* 99.99 999.9 010010 722324 03071 20070731 76.2 24 66.0 24 9999.9 0 917.7 24 9.3 24 6.4 24 13.0 22.9 86.0* 69.8* 99.99 999.9 010010 722324 03071 20070801 79.9 24 68.0 24 9999.9 0 916.8 24 9.5 24 4.1 24 15.0 23.9 91.4* 73.4* 99.99 999.9 010010 722324 03071 20070802 75.5 24 66.1 24 9999.9 0 917.6 23 9.4 24 6.5 24 18.1 22.9 84.2* 68.0* 99.99 999.9 010010 722324 03071 20070803 73.0 24 68.7 24 9999.9 0 920.0 22 8.2 24 6.1 24 12.0 15.9 84.2* 69.8* 99.99 999.9 010000 722324 03071 20070804 77.1 24 66.8 24 9999.9 0 920.1 23 9.6 24 6.8 24 15.0 20.0 87.8* 69.8* 0.00I 999.9 000000 722324 03071 20070805 79.6 24 65.0 24 9999.9 0 917.9 24 10.0 24 8.0 24 12.0 16.9 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20070806 82.7 24 65.1 24 9999.9 0 916.5 24 10.0 24 9.6 24 14.0 17.1 95.0* 73.4* 0.00I 999.9 000000 722324 03071 20070807 83.1 24 64.7 24 9999.9 0 916.2 24 10.0 24 9.9 24 14.0 18.1 95.0* 73.4* 0.00I 999.9 000000 722324 03071 20070808 83.3 24 65.5 24 9999.9 0 916.1 24 10.0 24 8.9 24 14.0 15.9 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20070809 83.1 24 61.0 24 9999.9 0 917.5 24 10.0 24 8.6 24 15.0 19.0 95.0* 69.8* 0.00I 999.9 000000 722324 03071 20070810 81.5 24 58.7 24 9999.9 0 919.6 24 9.9 24 7.5 24 12.0 18.1 93.2* 69.8* 0.00I 999.9 000000 722324 03071 20070811 82.9 24 58.9 24 9999.9 0 919.4 24 9.9 24 6.8 24 12.0 15.9 95.0* 68.0* 0.00I 999.9 000000 722324 03071 20070812 83.5 24 62.2 24 9999.9 0 921.9 24 10.0 24 6.0 24 12.0 15.0 95.0* 71.6* 0.00I 999.9 000000 722324 03071 20070813 84.1 24 59.8 24 9999.9 0 922.6 24 9.9 24 5.6 24 11.1 15.0 93.2* 73.4* 0.00I 999.9 000000 722324 03071 20070814 83.1 24 57.9 24 9999.9 0 920.4 23 10.0 24 4.2 24 11.1 17.1 93.2* 69.8* 0.00I 999.9 000000 722324 03071 20070815 83.2 24 57.6 24 9999.9 0 918.4 24 10.0 24 5.3 24 12.0 17.1 93.2* 71.6* 0.00I 999.9 000000 722324 03071 20070816 83.7 24 59.5 24 9999.9 0 918.0 24 9.5 24 5.3 24 13.0 16.9 91.4* 71.6* 0.00I 999.9 000000 722324 03071 20070817 75.9 24 66.2 24 9999.9 0 918.0 24 9.2 24 9.1 24 16.9 22.0 87.8* 71.6* 99.99 999.9 010000 722324 03071 20070818 76.2 24 66.7 24 9999.9 0 915.8 24 7.6 24 10.6 24 16.9 24.1 89.6* 69.8* 99.99 999.9 010000 722324 03071 20070819 82.9 24 65.4 24 9999.9 0 915.4 24 10.0 24 9.8 24 15.0 18.1 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20070820 84.8 24 64.1 24 9999.9 0 914.5 24 10.0 24 11.2 24 16.9 22.9 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20070821 81.2 24 64.8 24 9999.9 0 916.3 24 10.0 24 12.6 24 18.1 26.0 93.2* 71.6* 0.00I 999.9 000000 722324 03071 20070822 80.6 24 62.9 24 9999.9 0 917.9 24 10.0 24 13.4 24 19.0 28.0 91.4* 71.6* 0.00I 999.9 000000 722324 03071 20070823 80.7 24 62.3 24 9999.9 0 917.0 24 10.0 24 13.7 24 20.0 27.0 93.2* 71.6* 0.00I 999.9 000000 722324 03071 20070824 83.3 24 63.1 24 9999.9 0 915.4 24 10.0 24 11.7 24 15.9 21.0 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20070825 82.2 24 62.8 24 9999.9 0 917.7 24 10.0 24 9.5 24 15.0 19.0 91.4* 73.4* 0.00I 999.9 000000 722324 03071 20070826 80.4 24 61.5 24 9999.9 0 919.0 24 10.0 24 6.3 24 13.0 19.0 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20070827 80.6 24 61.7 24 9999.9 0 918.7 24 10.0 24 8.6 24 15.9 20.0 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20070828 79.8 24 60.2 24 9999.9 0 918.5 24 10.0 24 8.0 24 15.0 19.0 91.4* 68.0* 0.00I 999.9 000000 722324 03071 20070829 80.5 24 59.1 24 9999.9 0 920.5 24 10.0 24 7.6 24 12.0 15.0 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20070830 79.2 24 61.6 24 9999.9 0 923.4 24 10.0 24 5.9 24 15.9 18.1 89.6* 69.8* 0.00I 999.9 000000 722324 03071 20070831 76.6 24 61.4 24 9999.9 0 922.6 24 10.0 24 7.2 24 15.0 18.1 87.8* 66.2* 0.00I 999.9 000000 722324 03071 20070901 78.1 24 60.1 24 9999.9 0 921.4 24 9.9 24 4.6 24 14.0 18.1 89.6* 66.2* 0.00I 999.9 000000 722324 03071 20070902 77.4 24 58.2 24 9999.9 0 921.6 24 9.9 24 3.3 24 12.0 15.0 89.6* 64.4* 0.00I 999.9 000000 722324 03071 20070903 74.7 24 56.5 24 9999.9 0 922.3 24 9.8 24 4.4 24 13.0 20.0 86.0* 62.6* 0.00I 999.9 000000 722324 03071 20070904 73.5 24 61.8 24 9999.9 0 919.5 24 10.0 24 6.2 24 11.1 999.9 86.0* 68.0* 0.00I 999.9 000000 722324 03071 20070905 76.0 24 62.3 24 9999.9 0 915.0 24 9.5 24 7.6 24 14.0 15.9 91.4* 66.2* 0.00I 999.9 000000 722324 03071 20070906 83.2 24 64.2 24 9999.9 0 914.4 24 10.0 24 10.1 24 14.0 20.0 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20070907 83.2 24 65.2 24 9999.9 0 915.8 24 10.0 24 9.9 24 18.1 22.9 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20070908 82.0 24 62.7 24 9999.9 0 917.2 24 10.0 24 7.2 24 13.0 21.0 95.0* 71.6* 0.00I 999.9 000000 722324 03071 20070909 80.6 24 62.1 24 9999.9 0 918.4 24 10.0 24 6.6 24 13.0 19.0 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20070910 74.9 24 67.1 24 9999.9 0 920.3 22 8.4 24 5.9 24 16.9 27.0 87.8* 69.8* 99.99 999.9 110010 722324 03071 20070911 66.0 24 61.3 24 9999.9 0 923.9 24 8.1 24 8.5 24 15.9 24.1 73.4* 60.8* 99.99 999.9 010010 722324 03071 20070912 69.5 24 60.5 24 9999.9 0 921.4 24 9.9 24 2.2 24 7.0 999.9 78.8* 64.4* 0.00I 999.9 000000 722324 03071 20070913 73.9 24 60.2 24 9999.9 0 917.7 24 10.0 24 4.4 24 12.0 15.0 89.6* 62.6* 0.00I 999.9 000000 722324 03071 20070914 78.4 24 61.1 24 9999.9 0 919.4 24 9.0 24 5.3 24 11.1 15.9 89.6* 66.2* 0.00I 999.9 000000 722324 03071 20070915 77.4 24 61.3 24 9999.9 0 923.8 24 9.8 24 6.2 24 11.1 15.9 87.8* 66.2* 0.00I 999.9 000000 722324 03071 20070916 76.3 24 59.2 24 9999.9 0 922.0 24 9.8 24 7.8 24 15.9 21.0 87.8* 66.2* 0.00I 999.9 000000 722324 03071 20070917 77.0 24 61.3 24 9999.9 0 918.4 24 10.0 24 11.0 24 18.1 25.1 86.0* 69.8* 0.00I 999.9 000000 722324 03071 20070918 76.2 24 64.3 24 9999.9 0 917.6 24 9.2 24 8.5 24 15.9 21.0 89.6* 68.0* 99.99 999.9 010010 722324 03071 20070919 78.7 24 64.2 24 9999.9 0 919.4 24 10.0 24 8.9 24 15.9 20.0 87.8* 69.8* 0.00I 999.9 000000 722324 03071 20070920 76.2 24 63.9 24 9999.9 0 919.3 24 9.8 24 9.5 24 16.9 21.0 86.0* 69.8* 0.00I 999.9 000000 722324 03071 20070921 77.0 24 60.7 24 9999.9 0 917.6 24 10.0 24 5.2 24 11.1 15.0 89.6* 68.0* 0.00I 999.9 000000 722324 03071 20070922 79.8 24 60.5 24 9999.9 0 917.6 24 10.0 24 5.4 24 12.0 16.9 91.4* 68.0* 0.00I 999.9 000000 722324 03071 20070923 78.6 24 59.5 24 9999.9 0 916.9 24 10.0 24 8.6 24 15.9 22.0 89.6* 68.0* 0.00I 999.9 000000 722324 03071 20070924 77.3 24 58.8 24 9999.9 0 916.4 24 10.0 24 7.1 24 15.9 24.1 89.6* 68.0* 0.00I 999.9 000000 722324 03071 20070925 79.0 24 59.5 24 9999.9 0 918.4 24 10.0 24 6.9 24 12.0 15.9 87.8* 71.6* 99.99 999.9 010000 722324 03071 20070926 73.9 24 60.8 24 9999.9 0 919.8 24 9.3 24 4.2 24 9.9 18.1 87.8* 62.6* 0.00I 999.9 000000 722324 03071 20070927 77.8 24 57.8 24 9999.9 0 918.9 24 10.0 24 4.0 24 8.9 999.9 93.2* 64.4* 0.00I 999.9 000000 722324 03071 20070928 76.6 24 57.7 24 9999.9 0 920.4 24 10.0 24 8.5 24 19.0 26.0 89.6* 64.4* 0.00I 999.9 000000 722324 03071 20070929 77.1 24 58.5 24 9999.9 0 919.1 23 10.0 24 12.4 24 20.0 25.1 87.8* 68.0* 0.00I 999.9 000000 722324 03071 20070930 77.5 24 62.9 24 9999.9 0 920.3 24 10.0 24 9.3 24 17.1 22.0 87.8* 69.8* 0.00I 999.9 000000 722324 03071 20071001 78.1 24 63.0 24 9999.9 0 923.7 23 10.0 24 6.9 24 15.0 19.0 89.6* 69.8* 0.00I 999.9 000000 722324 03071 20071002 79.5 24 62.0 24 9999.9 0 919.0 24 10.0 24 8.5 24 13.0 17.1 95.0* 69.8* 0.00I 999.9 000000 722324 03071 20071003 78.7 24 57.4 24 9999.9 0 916.9 24 10.0 24 3.1 24 9.9 999.9 91.4* 62.6* 0.00I 999.9 000000 722324 03071 20071004 81.3 24 60.0 24 9999.9 0 914.2 24 10.0 24 7.8 24 15.9 21.0 95.0* 71.6* 0.00I 999.9 000000 722324 03071 20071005 79.9 24 57.3 24 9999.9 0 915.1 15 10.0 24 8.9 24 15.0 18.1 93.2* 68.0* 0.00I 999.9 000000 722324 03071 20071006 78.3 24 54.0 24 9999.9 0 9999.9 0 10.0 24 9.8 24 18.1 22.0 91.4* 64.4* 0.00I 999.9 000000 722324 03071 20071007 78.7 24 57.4 24 9999.9 0 9999.9 0 10.0 24 9.8 24 15.0 21.0 89.6* 68.0* 0.00I 999.9 000000 722324 03071 20071008 75.3 24 41.1 24 9999.9 0 919.4 4 10.0 24 7.5 24 12.0 20.0 86.0* 60.8* 0.00I 999.9 000000 722324 03071 20071009 71.7 24 53.1 24 9999.9 0 9999.9 0 9.7 24 7.2 24 12.0 14.0 82.4* 62.6* 0.00I 999.9 000000 722324 03071 20071010 73.0 24 57.3 24 9999.9 0 9999.9 0 9.9 24 4.5 24 8.9 999.9 84.2* 60.8* 0.00I 999.9 000000 722324 03071 20071011 76.2 24 61.2 24 9999.9 0 9999.9 0 9.7 24 6.9 24 12.0 15.9 89.6* 66.2* 99.99 999.9 010010 722324 03071 20071012 75.3 24 61.2 24 9999.9 0 9999.9 0 9.9 24 9.1 24 17.1 22.0 89.6* 66.2* 0.00I 999.9 000000 722324 03071 20071013 77.3 24 56.8 24 9999.9 0 9999.9 0 10.0 24 13.7 24 20.0 28.0 91.4* 66.2* 0.00I 999.9 000000 722324 03071 20071014 76.9 24 45.6 24 9999.9 0 9999.9 0 10.0 24 11.1 24 18.1 26.0 87.8* 64.4* 0.00I 999.9 000000 722324 03071 20071015 65.1 24 38.1 24 9999.9 0 914.3 8 10.0 24 4.9 24 14.0 17.1 78.8* 51.8* 0.00I 999.9 000000 722324 03071 20071016 66.3 24 50.8 24 9999.9 0 912.7 12 9.5 24 8.7 24 17.1 22.0 84.2* 55.4* 0.00I 999.9 000000 722324 03071 20071017 74.2 24 45.6 24 9999.9 0 907.4 16 10.0 24 15.1 24 25.1 34.0 82.4* 64.4* 0.00I 999.9 000000 722324 03071 20071018 70.3 24 22.9 24 9999.9 0 910.0 24 10.0 24 10.5 24 20.0 26.0 80.6* 57.2* 0.00I 999.9 000000 722324 03071 20071019 64.8 24 21.7 24 9999.9 0 916.8 19 10.0 24 4.5 24 14.0 18.1 84.2* 46.4* 0.00I 999.9 000000 722324 03071 20071020 73.8 24 31.6 24 9999.9 0 9999.9 0 10.0 24 9.1 24 18.1 23.9 95.0* 60.8* 0.00I 999.9 000000 722324 03071 20071021 78.6 24 44.3 23 9999.9 0 9999.9 0 10.0 24 14.3 24 20.0 25.1 91.4* 66.2* 0.00I 999.9 000000 722324 03071 20071022 56.1 24 27.1 24 9999.9 0 9999.9 0 10.0 24 15.2 24 22.0 31.1 73.4* 42.8* 0.00I 999.9 000000 722324 03071 20071023 53.5 24 17.5 24 9999.9 0 927.4 9 10.0 24 8.0 24 19.0 24.1 75.2* 37.4* 0.00I 999.9 000000 722324 03071 20071024 62.8 24 32.7 24 9999.9 0 927.6 24 10.0 24 7.1 24 14.0 20.0 78.8* 50.0* 0.00I 999.9 000000 722324 03071 20071025 59.4 24 33.6 24 9999.9 0 922.8 24 9.3 24 1.7 24 6.0 999.9 77.0* 44.6* 0.00I 999.9 000000 722324 03071 20071026 61.9 24 30.1 24 9999.9 0 917.9 14 9.4 24 4.8 24 8.0 999.9 80.6* 46.4* 0.00I 999.9 000000 722324 03071 20071027 62.5 24 33.9 24 9999.9 0 926.3 24 10.0 24 5.6 24 8.9 18.1 77.0* 46.4* 0.00I 999.9 000000 722324 03071 20071028 58.4 24 31.9 24 9999.9 0 932.6 24 10.0 24 4.1 24 9.9 999.9 73.4* 41.0* 0.00I 999.9 000000 722324 03071 20071029 61.2 24 34.5 24 9999.9 0 930.4 24 10.0 24 3.7 24 12.0 18.1 77.0* 44.6* 0.00I 999.9 000000 722324 03071 20071030 64.4 24 35.0 24 9999.9 0 924.5 24 10.0 24 7.6 24 13.0 18.1 80.6* 51.8* 0.00I 999.9 000000 722324 03071 20071031 64.2 24 36.0 24 9999.9 0 920.5 23 9.9 24 9.2 24 15.9 20.0 75.2* 51.8* 0.00I 999.9 000000 722324 03071 20071101 53.1 24 31.5 24 9999.9 0 926.0 24 9.9 24 6.1 24 14.0 21.0 66.2* 39.2* 0.00I 999.9 000000 722324 03071 20071102 56.8 24 35.6 24 9999.9 0 920.6 24 10.0 24 1.1 24 5.1 999.9 78.8* 41.0* 0.00I 999.9 000000 722324 03071 20071103 59.7 24 42.4 24 9999.9 0 925.4 24 10.0 24 4.8 24 8.9 999.9 73.4* 46.4* 0.00I 999.9 000000 722324 03071 20071104 63.3 24 47.4 24 9999.9 0 924.3 24 9.5 24 3.8 24 11.1 16.9 80.6* 48.2* 0.00I 999.9 000000 722324 03071 20071105 71.2 24 39.0 24 9999.9 0 919.0 24 10.0 24 8.3 24 14.0 20.0 87.8* 55.4* 0.00I 999.9 000000 722324 03071 20071106 54.4 24 23.0 24 9999.9 0 927.9 24 10.0 24 12.0 24 20.0 24.1 75.2* 42.8* 0.00I 999.9 000000 722324 03071 20071107 53.7 24 22.0 24 9999.9 0 926.3 24 10.0 24 5.4 24 12.0 17.1 73.4* 42.8* 0.00I 999.9 000000 722324 03071 20071108 65.1 24 36.6 24 9999.9 0 919.0 24 10.0 24 5.9 24 11.1 14.0 86.0* 46.4* 0.00I 999.9 000000 722324 03071 20071109 65.8 24 40.9 24 9999.9 0 917.9 24 10.0 24 3.6 24 9.9 999.9 84.2* 46.4* 0.00I 999.9 000000 722324 03071 20071110 65.5 24 45.0 24 9999.9 0 917.1 24 9.4 24 5.4 24 14.0 18.1 80.6* 51.8* 99.99 999.9 010000 722324 03071 20071111 68.4 24 54.7 24 9999.9 0 914.8 24 9.9 24 9.7 24 14.0 18.1 77.0* 62.6* 0.00I 999.9 000000 722324 03071 20071112 67.1 24 54.0 24 9999.9 0 918.4 24 10.0 24 6.7 24 12.0 15.9 80.6* 59.0* 0.00I 999.9 000000 722324 03071 20071113 63.6 24 50.4 24 9999.9 0 922.1 24 10.0 24 4.7 24 11.1 15.9 77.0* 50.0* 0.00I 999.9 000000 722324 03071 20071114 63.2 24 45.4 24 9999.9 0 918.9 24 9.3 24 10.6 24 21.0 26.0 71.6* 55.4* 0.00I 999.9 000000 722324 03071 20071115 48.0 24 11.0 24 9999.9 0 931.4 24 10.0 24 5.3 24 11.1 18.1 59.0* 33.8* 0.00I 999.9 000000 722324 03071 20071116 55.1 24 14.1 24 9999.9 0 921.1 24 10.0 24 5.6 24 13.0 17.1 68.0* 46.4* 0.00I 999.9 000000 722324 03071 20071117 60.3 24 31.9 24 9999.9 0 915.1 24 10.0 24 4.5 24 8.9 999.9 77.0* 50.0* 0.00I 999.9 000000 722324 03071 20071118 60.4 24 35.3 24 9999.9 0 917.8 24 10.0 24 1.4 24 6.0 999.9 80.6* 44.6* 0.00I 999.9 000000 722324 03071 20071119 65.1 23 38.8 23 9999.9 0 920.5 22 8.9 23 4.1 23 12.0 15.9 82.4* 50.0* 99.99 999.9 010000 722324 03071 20071120 66.1 24 50.3 24 9999.9 0 916.7 24 7.6 24 9.6 24 15.0 19.0 78.8* 55.4* 0.00I 999.9 000000 722324 03071 20071121 55.6 24 39.6 24 9999.9 0 917.5 24 9.8 24 10.7 24 15.9 21.0 73.4* 41.0* 0.00I 999.9 000000 722324 03071 20071122 35.5 24 25.0 24 9999.9 0 929.7 24 7.6 24 8.3 24 15.9 22.0 50.0* 30.2* 99.99 999.9 011000 722324 03071 20071123 34.1 24 30.4 24 9999.9 0 926.3 24 7.4 24 7.7 24 13.0 15.9 42.8* 32.0* 0.00I 999.9 000000 722324 03071 20071124 36.8 24 32.0 24 9999.9 0 920.2 24 6.3 24 8.8 24 14.0 16.9 42.8* 33.8* 99.99 999.9 010000 722324 03071 20071125 34.5 24 32.4 24 9999.9 0 919.1 24 3.1 24 3.9 24 8.9 999.9 37.4* 33.8* 99.99 999.9 011000 722324 03071 20071126 38.8 24 30.2 24 9999.9 0 920.8 24 8.8 24 4.0 24 8.0 999.9 55.4* 32.0* 0.00I 999.9 000000 722324 03071 20071127 44.4 24 34.4 24 9999.9 0 927.0 24 10.0 24 5.6 24 14.0 16.9 60.8* 33.8* 0.00I 999.9 000000 722324 03071 20071128 52.5 24 37.5 24 9999.9 0 921.3 24 10.0 24 8.9 24 14.0 18.1 69.8* 42.8* 0.00I 999.9 000000 722324 03071 20071129 45.8 24 27.9 24 9999.9 0 927.0 23 10.0 24 7.0 24 19.0 24.1 64.4* 32.0* 0.00I 999.9 000000 722324 03071 20071130 53.5 24 43.0 24 9999.9 0 921.5 24 9.2 24 5.4 24 11.1 999.9 64.4* 48.2* 0.00I 999.9 000000 722324 03071 20071201 65.8 24 56.2 24 9999.9 0 915.6 11 9.3 24 14.5 24 22.0 29.9 80.6* 57.2* 99.99 999.9 010000 722324 03071 20071202 62.7 24 44.0 24 9999.9 0 920.2 24 9.3 24 11.2 24 22.9 29.9 71.6* 55.4* 0.00I 999.9 000000 722324 03071 20071203 46.0 24 25.0 24 9999.9 0 933.0 24 10.0 24 5.4 24 11.1 22.0 60.8* 32.0* 0.00I 999.9 000000 722324 03071 20071204 54.3 24 26.1 24 9999.9 0 922.5 23 10.0 24 4.2 24 7.0 999.9 77.0* 42.8* 0.00I 999.9 000000 722324 03071 20071205 57.0 24 31.5 24 9999.9 0 915.5 24 10.0 24 6.3 24 19.0 26.0 71.6* 42.8* 0.00I 999.9 000000 722324 03071 20071206 54.4 24 33.4 24 9999.9 0 915.8 24 10.0 24 8.4 24 18.1 22.9 77.0* 37.4* 0.00I 999.9 000000 722324 03071 20071207 65.1 24 37.0 24 9999.9 0 914.2 24 10.0 24 11.7 24 22.0 30.9 78.8* 53.6* 0.00I 999.9 000000 722324 03071 20071208 59.7 24 40.5 24 9999.9 0 915.9 24 10.0 24 4.4 24 12.0 16.9 77.0* 42.8* 0.00I 999.9 000000 722324 03071 20071209 40.2 24 37.6 24 9999.9 0 920.8 24 3.4 24 10.5 24 15.9 21.0 62.6* 33.8* 99.99 999.9 110000 722324 03071 20071210 34.0 24 32.5 24 9999.9 0 921.5 24 2.2 24 7.0 24 14.0 999.9 35.6* 32.0* 99.99 999.9 010000 722324 03071 20071211 43.2 24 36.8 24 9999.9 0 917.1 23 5.6 24 7.0 24 15.9 21.0 62.6* 35.6* 99.99 999.9 111010 722324 03071 20071212 41.0 24 33.3 24 9999.9 0 924.6 24 10.0 24 8.1 24 15.0 21.0 53.6* 35.6* 0.00I 999.9 000000 722324 03071 20071213 42.8 24 31.9 24 9999.9 0 922.6 24 8.1 24 3.7 24 7.0 999.9 60.8* 32.0* 0.00I 999.9 000000 722324 03071 20071214 46.4 24 39.2 24 9999.9 0 917.2 24 7.1 24 4.8 24 9.9 999.9 55.4* 41.0* 0.00I 999.9 100000 722324 03071 20071215 37.8 24 29.1 24 9999.9 0 920.7 24 7.4 24 10.0 24 21.0 27.0 46.4* 32.0* 99.99 999.9 110000 722324 03071 20071216 37.0 24 19.0 24 9999.9 0 925.1 24 10.0 24 4.3 24 14.0 17.1 53.6* 26.6* 0.00I 999.9 000000 722324 03071 20071217 42.4 24 19.2 24 9999.9 0 922.0 24 10.0 24 7.2 24 15.0 20.0 59.0* 33.8* 0.00I 999.9 000000 722324 03071 20071218 47.8 24 23.5 24 9999.9 0 920.2 24 10.0 24 6.4 24 13.0 15.9 69.8* 32.0* 0.00I 999.9 000000 722324 03071 20071219 51.6 24 24.1 24 9999.9 0 919.3 24 10.0 24 3.4 24 12.0 16.9 71.6* 37.4* 0.00I 999.9 000000 722324 03071 20071220 55.1 24 20.3 24 9999.9 0 917.0 24 10.0 24 10.4 24 15.9 20.0 68.0* 44.6* 0.00I 999.9 000000 722324 03071 20071221 56.5 24 20.3 24 9999.9 0 911.3 24 10.0 24 7.0 24 15.0 20.0 73.4* 41.0* 0.00I 999.9 000000 722324 03071 20071222 47.9 24 21.6 24 9999.9 0 916.2 24 9.5 24 15.0 24 27.0 34.0 68.0* 37.4* 0.00I 999.9 000000 722324 03071 20071223 39.3 24 12.2 24 9999.9 0 924.5 24 10.0 24 6.5 24 15.9 22.0 60.8* 30.2* 0.00I 999.9 000000 722324 03071 20071224 42.0 24 17.7 24 9999.9 0 923.3 24 10.0 24 7.4 24 12.0 15.9 53.6* 32.0* 0.00I 999.9 000000 722324 03071 20071225 45.9 24 19.3 24 9999.9 0 916.1 24 10.0 24 7.5 24 14.0 19.0 66.2* 33.8* 0.00I 999.9 000000 722324 03071 20071226 42.7 24 24.5 24 9999.9 0 915.6 24 10.0 24 10.8 24 19.0 23.9 57.2* 35.6* 0.00I 999.9 000000 722324 03071 20071227 39.9 24 22.9 24 9999.9 0 910.8 24 10.0 24 7.1 24 22.9 28.9 59.0* 30.2* 0.00I 999.9 000000 722324 03071 20071228 39.2 24 6.3 24 9999.9 0 918.4 24 10.0 24 9.0 24 20.0 27.0 50.0* 28.4* 0.00I 999.9 000000 722324 03071 20071229 42.7 24 5.1 24 9999.9 0 918.4 24 10.0 24 5.8 24 12.0 15.9 59.0* 32.0* 0.00I 999.9 000000 722324 03071 20071230 45.2 24 15.1 24 9999.9 0 918.6 23 10.0 24 4.8 24 13.0 19.0 60.8* 30.2* 0.00I 999.9 000000 722324 03071 20071231 45.9 24 17.9 24 9999.9 0 919.3 24 10.0 24 8.9 24 18.1 22.9 55.4* 33.8* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1962/0000755000175000017500000000000014302004506015101 5ustar nileshnileshfluids-1.0.22/tests/gsod/1962/724050-13743.op0000644000175000017500000014327214302004506016672 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19620101 37.3 24 24.5 24 1020.9 8 1019.9 8 9.1 24 5.1 24 9.9 999.9 40.3* 34.3* 99.99 999.9 101000 724050 13743 19620102 32.4 24 19.0 24 1012.0 8 1011.0 8 10.3 24 10.4 24 14.0 999.9 38.3* 26.4* 99.99 999.9 001000 724050 13743 19620103 32.9 24 21.9 24 1013.7 8 1012.7 8 10.6 24 7.5 24 15.0 999.9 40.3* 27.3* 0.00I 999.9 000000 724050 13743 19620104 45.8 24 29.3 24 1013.9 8 1012.9 8 11.1 24 3.7 24 8.0 999.9 64.4* 32.4* 0.00I 999.9 000000 724050 13743 19620105 39.3 24 30.1 24 1026.7 8 1025.7 8 7.3 24 7.4 24 12.0 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19620106 39.5 24 37.4 24 1014.7 8 1013.7 8 1.3 24 3.2 24 9.9 999.9 44.4* 34.3* 99.99 999.9 110000 724050 13743 19620107 50.1 24 38.8 24 998.9 8 997.9 8 12.5 24 10.4 24 15.0 999.9 57.4* 45.3* 99.99 999.9 110000 724050 13743 19620108 42.7 24 31.2 24 1005.2 8 1004.2 8 12.8 24 9.4 24 14.0 999.9 49.3* 36.3* 99.99 999.9 011000 724050 13743 19620109 31.2 24 13.7 24 1019.3 8 1018.2 8 14.2 24 8.6 24 20.0 999.9 35.4* 27.3* 0.00I 999.9 000000 724050 13743 19620110 21.8 24 6.9 24 1030.1 8 1029.2 8 10.0 24 12.1 24 19.0 999.9 33.4* 17.4* 99.99 999.9 101000 724050 13743 19620111 14.8 24 -0.7 24 1033.7 8 1032.6 8 12.9 24 11.2 24 19.0 999.9 22.5* 9.3* 0.00I 999.9 000000 724050 13743 19620112 21.9 24 4.6 24 1027.1 8 1026.0 8 12.0 24 5.1 24 8.9 999.9 30.4* 17.4* 0.00I 999.9 000000 724050 13743 19620113 27.4 24 6.8 24 1028.7 8 1027.7 8 12.8 24 6.3 24 13.0 999.9 40.3* 20.3* 0.00I 999.9 000000 724050 13743 19620114 31.5 24 15.0 24 1036.4 8 1035.4 8 11.8 24 4.6 24 11.1 999.9 45.3* 23.4* 0.00I 999.9 000000 724050 13743 19620115 43.0 24 37.2 24 1020.4 8 1019.4 8 8.0 24 4.8 24 27.0 999.9 59.4* 36.3* 99.99 999.9 110010 724050 13743 19620116 40.0 24 23.2 24 1022.3 8 1021.3 8 14.0 24 11.3 24 20.0 999.9 48.4* 34.3* 0.00I 999.9 000000 724050 13743 19620117 34.5 24 19.6 24 1028.4 8 1027.4 8 11.1 24 4.7 24 16.9 999.9 43.3* 27.3* 0.00I 999.9 000000 724050 13743 19620118 29.8 24 13.8 24 1034.0 8 1033.0 8 11.6 24 5.9 24 14.0 999.9 36.3* 25.3* 0.00I 999.9 000000 724050 13743 19620119 30.4 24 14.1 24 1029.5 8 1028.4 8 8.5 24 3.4 24 8.9 999.9 33.4* 27.3* 99.99 999.9 001000 724050 13743 19620120 31.1 24 24.6 24 1025.8 8 1024.8 8 4.5 24 3.1 24 9.9 999.9 40.3* 26.4* 99.99 999.9 101000 724050 13743 19620121 33.3 24 23.0 24 1033.7 8 1032.7 8 5.4 24 3.6 24 9.9 999.9 39.4* 28.4* 0.00I 999.9 000000 724050 13743 19620122 44.5 24 38.3 24 1023.8 8 1022.8 8 7.0 24 9.1 24 15.0 999.9 52.3* 39.4* 99.99 999.9 110000 724050 13743 19620123 48.4 24 30.9 24 1018.0 8 1016.9 8 12.3 24 12.8 24 21.0 999.9 54.3* 41.4* 99.99 999.9 010000 724050 13743 19620124 36.4 24 17.2 24 1022.9 8 1021.9 8 12.2 24 6.7 24 11.1 999.9 43.3* 31.3* 99.99 999.9 011000 724050 13743 19620125 44.5 24 31.7 24 1012.6 8 1011.6 8 9.8 24 2.2 24 8.0 999.9 61.3* 31.3* 0.00I 999.9 000000 724050 13743 19620126 44.4 24 34.8 24 1019.9 8 1018.9 8 6.7 24 3.8 24 9.9 999.9 54.3* 38.3* 99.99 999.9 110000 724050 13743 19620127 48.3 24 36.5 24 1016.2 8 1015.2 8 10.1 24 10.6 24 20.0 999.9 52.3* 43.3* 99.99 999.9 110000 724050 13743 19620128 33.2 24 14.7 24 1023.5 8 1022.5 8 14.2 24 10.6 24 14.0 999.9 42.4* 28.4* 0.00I 999.9 000000 724050 13743 19620129 29.8 24 14.4 24 1022.5 8 1021.4 8 14.3 24 6.4 24 11.1 999.9 34.3* 26.4* 99.99 999.9 001000 724050 13743 19620130 39.4 24 28.3 24 1011.2 8 1010.2 8 11.1 24 10.1 24 29.9 999.9 53.4* 33.4* 0.00I 999.9 000000 724050 13743 19620131 21.6 24 1.9 24 1022.0 8 1021.0 8 14.9 24 14.4 24 28.9 999.9 30.4* 13.5* 0.00I 999.9 000000 724050 13743 19620201 31.6 24 15.0 24 1018.3 8 1017.3 8 8.5 24 5.9 24 12.0 999.9 35.4* 28.4* 99.99 999.9 101000 724050 13743 19620202 27.0 24 22.8 24 1024.6 8 1023.6 8 3.1 24 5.8 24 8.0 999.9 28.4* 24.4* 99.99 999.9 111000 724050 13743 19620203 30.4 24 26.9 24 1021.3 8 1020.3 8 2.3 24 3.3 24 8.0 999.9 34.3* 27.3* 99.99 999.9 111000 724050 13743 19620204 38.4 24 33.9 24 1016.9 8 1015.9 8 1.8 24 3.0 24 8.9 999.9 59.4* 31.3* 0.00I 999.9 100000 724050 13743 19620205 48.4 24 39.4 24 1008.0 8 1007.0 8 5.3 24 2.3 24 8.0 999.9 70.3* 35.4* 0.00I 999.9 000000 724050 13743 19620206 36.0 24 19.3 24 1011.6 8 1010.5 8 13.4 24 14.2 24 20.0 999.9 62.4* 27.3* 99.99 999.9 010000 724050 13743 19620207 21.3 24 3.2 24 1026.5 8 1025.5 8 14.9 24 11.8 24 23.9 999.9 28.4* 12.4* 0.00I 999.9 000000 724050 13743 19620208 30.6 24 17.1 24 1025.5 8 1024.5 8 12.8 24 7.9 24 12.0 999.9 40.3* 22.5* 99.99 999.9 001000 724050 13743 19620209 33.6 24 26.5 24 1015.6 8 1014.6 8 6.9 24 3.4 24 11.1 999.9 37.4* 30.4* 99.99 999.9 101000 724050 13743 19620210 30.0 24 19.7 24 1014.1 8 1013.1 8 10.4 24 15.4 24 23.9 999.9 33.4* 25.3* 0.00I 999.9 100000 724050 13743 19620211 19.4 24 -0.4 24 1028.3 8 1027.2 8 14.9 24 7.9 24 13.0 999.9 26.4* 12.4* 0.00I 999.9 000000 724050 13743 19620212 24.2 24 14.8 24 1023.8 8 1022.8 8 7.6 24 4.7 24 8.0 999.9 27.3* 21.4* 99.99 999.9 101000 724050 13743 19620213 28.1 24 15.4 24 1024.7 8 1023.6 8 7.2 24 4.8 24 8.9 999.9 38.3* 19.4* 0.00I 999.9 000000 724050 13743 19620214 36.7 24 27.3 24 1013.3 8 1012.2 8 7.0 24 9.3 24 21.0 999.9 49.3* 30.4* 99.99 999.9 111000 724050 13743 19620215 37.9 24 21.6 24 1018.3 8 1017.3 8 13.2 24 13.9 24 20.0 999.9 42.4* 34.3* 0.00I 999.9 000000 724050 13743 19620216 33.4 24 26.4 24 1019.4 8 1018.4 8 6.6 24 3.0 24 8.0 999.9 37.4* 30.4* 99.99 999.9 101000 724050 13743 19620217 40.1 24 29.5 24 1018.1 8 1017.1 8 9.7 24 6.1 24 15.0 999.9 49.3* 33.4* 0.00I 999.9 100000 724050 13743 19620218 37.4 24 19.5 24 1028.1 8 1027.1 8 10.8 24 6.6 24 15.9 999.9 43.3* 31.3* 0.00I 999.9 000000 724050 13743 19620219 35.9 24 29.5 24 1020.5 8 1019.5 8 4.4 24 4.0 24 8.9 999.9 40.3* 33.4* 99.99 999.9 111000 724050 13743 19620220 38.4 24 27.9 24 1017.0 8 1016.0 8 10.9 24 11.0 24 23.9 999.9 42.4* 34.3* 99.99 999.9 110000 724050 13743 19620221 34.3 24 23.0 24 1024.7 8 1023.7 8 9.8 24 6.4 24 11.1 999.9 38.3* 32.4* 99.99 999.9 101000 724050 13743 19620222 39.6 24 37.9 24 1011.0 8 1010.0 8 2.3 24 2.5 24 7.0 999.9 50.4* 34.3* 99.99 999.9 111000 724050 13743 19620223 42.6 24 39.5 24 1017.2 8 1016.2 8 1.8 24 4.5 24 9.9 999.9 45.3* 40.3* 99.99 999.9 110000 724050 13743 19620224 42.5 24 36.6 24 1014.6 8 1013.5 8 6.2 24 10.3 24 34.0 999.9 53.4* 38.3* 99.99 999.9 110000 724050 13743 19620225 34.6 24 22.8 24 1033.0 8 1032.0 8 12.4 24 9.2 24 20.0 999.9 40.3* 28.4* 0.00I 999.9 000000 724050 13743 19620226 37.6 24 34.1 24 1025.7 8 1024.7 8 5.7 24 6.1 24 13.0 999.9 43.3* 35.4* 99.99 999.9 110000 724050 13743 19620227 43.6 24 41.9 24 1018.3 8 1017.3 8 4.4 24 3.6 24 7.0 999.9 47.3* 42.4* 99.99 999.9 110000 724050 13743 19620228 44.8 24 42.8 24 1014.5 8 1013.5 8 2.2 24 3.8 24 18.1 999.9 55.4* 41.4* 99.99 999.9 110000 724050 13743 19620301 36.2 24 20.9 24 1025.1 8 1024.1 8 12.0 24 17.1 24 25.1 999.9 49.3* 29.3* 99.99 999.9 010000 724050 13743 19620302 25.5 24 5.5 24 1034.5 8 1033.5 8 14.9 24 8.9 24 15.0 999.9 33.4* 16.3* 0.00I 999.9 000000 724050 13743 19620303 26.7 24 3.9 24 1029.1 8 1028.1 8 13.9 24 7.4 24 11.1 999.9 37.4* 18.3* 0.00I 999.9 000000 724050 13743 19620304 32.6 24 8.9 24 1019.8 8 1018.8 8 13.5 24 2.5 24 9.9 999.9 47.3* 23.4* 0.00I 999.9 000000 724050 13743 19620305 33.6 24 21.8 24 1014.3 8 1013.3 8 10.6 24 4.3 24 15.0 999.9 38.3* 29.3* 99.99 999.9 101000 724050 13743 19620306 34.9 24 32.4 24 1000.9 8 999.9 8 4.6 24 12.8 24 22.0 999.9 38.3* 32.4* 99.99 999.9 111000 724050 13743 19620307 35.1 24 26.4 24 1010.5 8 1009.5 8 11.0 24 13.0 24 15.9 999.9 40.3* 31.3* 99.99 999.9 101000 724050 13743 19620308 35.5 24 19.6 24 1021.4 8 1020.4 8 13.5 24 4.1 24 8.0 999.9 41.4* 29.3* 0.00I 999.9 000000 724050 13743 19620309 34.1 24 27.5 24 1019.7 8 1018.6 8 10.7 24 2.8 24 7.0 999.9 38.3* 31.3* 99.99 999.9 111000 724050 13743 19620310 37.8 24 34.7 24 1016.4 8 1015.4 8 3.8 24 3.4 24 7.0 999.9 43.3* 34.3* 99.99 999.9 110000 724050 13743 19620311 41.4 24 34.8 24 1021.2 8 1020.1 8 8.6 24 3.4 24 8.0 999.9 48.4* 36.3* 99.99 999.9 010000 724050 13743 19620312 46.6 24 42.0 24 1006.1 8 1005.1 8 7.5 24 6.4 24 9.9 999.9 58.3* 41.4* 99.99 999.9 110000 724050 13743 19620313 47.4 24 37.4 24 1001.8 8 1000.8 8 13.2 24 4.8 24 18.1 999.9 53.4* 41.4* 99.99 999.9 010010 724050 13743 19620314 43.8 24 27.9 24 1011.4 8 1010.4 8 13.9 24 12.7 24 19.0 999.9 49.3* 39.4* 0.00I 999.9 000000 724050 13743 19620315 42.6 24 25.5 24 1016.8 8 1015.7 8 13.5 24 8.6 24 12.0 999.9 49.3* 37.4* 0.00I 999.9 000000 724050 13743 19620316 41.6 24 24.5 24 1016.1 8 1015.3 8 11.9 24 12.4 24 22.0 999.9 46.4* 37.4* 0.00I 999.9 000000 724050 13743 19620317 40.8 24 21.8 24 1018.2 8 1017.1 8 13.4 24 13.8 24 28.0 999.9 50.4* 34.3* 0.00I 999.9 000000 724050 13743 19620318 43.4 24 22.5 24 1023.2 8 1022.2 8 14.9 24 11.6 24 19.0 999.9 52.3* 35.4* 0.00I 999.9 000000 724050 13743 19620319 43.1 24 24.8 24 1019.8 8 1018.8 8 13.0 24 3.4 24 12.0 999.9 54.3* 32.4* 99.99 999.9 010000 724050 13743 19620320 49.5 24 39.4 23 1011.5 8 1010.5 8 10.2 24 5.8 24 12.0 999.9 65.3* 41.4* 99.99 999.9 010000 724050 13743 19620321 47.6 24 42.9 24 1006.5 8 1005.5 8 5.4 24 6.6 24 15.0 999.9 53.4* 44.4* 99.99 999.9 110000 724050 13743 19620322 47.0 24 35.7 24 1007.0 8 1006.0 8 10.9 24 6.2 24 9.9 999.9 59.4* 41.4* 99.99 999.9 110000 724050 13743 19620323 48.6 24 36.0 24 1014.6 8 1013.6 8 11.4 24 5.5 24 14.0 999.9 57.4* 41.4* 0.00I 999.9 000000 724050 13743 19620324 49.2 24 29.7 24 1016.7 8 1015.7 8 13.0 24 6.9 24 16.9 999.9 58.3* 41.4* 0.00I 999.9 000000 724050 13743 19620325 49.2 24 23.9 24 1017.4 8 1016.4 8 14.9 24 8.9 24 12.0 999.9 60.3* 39.4* 0.00I 999.9 000000 724050 13743 19620326 52.7 24 22.7 24 1013.8 8 1012.8 8 13.9 24 5.1 24 14.0 999.9 62.4* 41.4* 0.00I 999.9 000000 724050 13743 19620327 53.2 24 26.7 24 1012.8 8 1011.8 8 14.9 24 7.6 24 15.0 999.9 62.4* 41.4* 0.00I 999.9 000000 724050 13743 19620328 53.2 24 27.1 24 1018.5 8 1017.5 8 14.5 24 6.6 24 14.0 999.9 65.3* 40.3* 0.00I 999.9 000000 724050 13743 19620329 58.4 24 32.5 24 1021.4 8 1020.3 8 14.0 24 7.2 24 14.0 999.9 75.4* 46.4* 0.00I 999.9 000000 724050 13743 19620330 67.0 24 43.7 24 1018.6 8 1017.6 8 14.4 24 8.5 24 13.0 999.9 77.4* 58.3* 0.00I 999.9 000000 724050 13743 19620331 67.3 24 52.6 24 1012.7 8 1011.6 8 14.5 24 9.8 24 15.0 999.9 76.3* 60.3* 99.99 999.9 110010 724050 13743 19620401 56.2 24 52.4 24 1002.4 8 1001.4 8 9.3 24 7.7 24 14.0 999.9 62.4* 49.3* 99.99 999.9 110000 724050 13743 19620402 45.7 24 27.9 24 1015.6 8 1014.5 8 14.6 24 12.1 24 22.9 999.9 53.4* 38.3* 99.99 999.9 010000 724050 13743 19620403 44.9 24 22.1 24 1029.6 8 1028.6 8 14.8 24 6.7 24 11.1 999.9 49.3* 40.3* 0.00I 999.9 000000 724050 13743 19620404 44.9 24 25.1 24 1034.4 8 1033.4 8 9.8 24 1.3 24 6.0 999.9 57.4* 34.3* 0.00I 999.9 000000 724050 13743 19620405 51.6 24 31.4 24 1029.5 8 1028.5 8 12.4 24 6.7 24 9.9 999.9 67.3* 42.4* 0.00I 999.9 000000 724050 13743 19620406 55.9 24 40.7 24 1025.2 8 1024.2 8 10.7 24 6.5 24 12.0 999.9 67.3* 49.3* 99.99 999.9 110000 724050 13743 19620407 63.1 24 54.6 24 1012.7 8 1011.7 8 11.6 24 7.6 24 12.0 999.9 74.3* 57.4* 99.99 999.9 110000 724050 13743 19620408 58.8 24 54.0 24 1007.7 8 1006.7 8 8.5 24 1.9 24 12.0 999.9 65.3* 55.4* 99.99 999.9 010000 724050 13743 19620409 55.5 24 48.3 24 1009.7 8 1008.7 8 6.8 24 4.5 24 18.1 999.9 67.3* 47.3* 0.00I 999.9 100000 724050 13743 19620410 59.0 24 25.0 24 1017.2 8 1016.2 8 14.9 24 9.7 24 15.9 999.9 69.3* 51.3* 0.00I 999.9 000000 724050 13743 19620411 52.4 24 41.0 24 1018.9 8 1017.9 8 9.2 24 5.9 24 9.9 999.9 64.4* 46.4* 99.99 999.9 110000 724050 13743 19620412 47.4 24 46.0 24 1018.1 8 1017.0 8 4.3 24 4.2 24 8.0 999.9 49.3* 45.3* 99.99 999.9 110000 724050 13743 19620413 45.8 24 40.1 24 1006.6 8 1005.8 8 6.3 24 7.6 24 25.1 999.9 53.4* 40.3* 99.99 999.9 111000 724050 13743 19620414 47.7 24 24.9 24 1010.0 8 1009.0 8 14.9 24 18.4 24 23.9 999.9 55.4* 43.3* 0.00I 999.9 000000 724050 13743 19620415 45.2 24 26.5 24 1009.4 8 1008.4 8 14.9 24 11.6 24 27.0 999.9 50.4* 42.4* 0.00I 999.9 000000 724050 13743 19620416 40.9 24 21.3 24 1016.5 8 1015.5 8 14.9 24 15.2 24 20.0 999.9 49.3* 34.3* 0.00I 999.9 000000 724050 13743 19620417 42.8 24 17.8 24 1021.2 8 1020.1 8 14.9 24 10.6 24 15.0 999.9 54.3* 33.4* 0.00I 999.9 000000 724050 13743 19620418 52.1 24 26.2 24 1018.1 8 1017.1 8 13.5 24 3.6 24 15.9 999.9 59.4* 46.4* 99.99 999.9 010000 724050 13743 19620419 52.8 24 34.4 24 1013.8 8 1012.8 8 14.5 24 4.0 24 14.0 999.9 62.4* 45.3* 99.99 999.9 010000 724050 13743 19620420 48.0 24 40.3 24 1015.2 8 1014.2 8 10.2 24 5.7 24 16.9 999.9 60.3* 44.4* 99.99 999.9 110000 724050 13743 19620421 51.9 24 35.0 24 1023.8 8 1022.8 8 10.7 24 4.9 24 9.9 999.9 68.4* 41.4* 99.99 999.9 010000 724050 13743 19620422 64.1 24 37.1 24 1018.0 8 1017.0 8 12.8 24 4.6 24 12.0 999.9 85.3* 50.4* 0.00I 999.9 000000 724050 13743 19620423 69.9 24 42.5 24 1009.7 8 1008.6 8 14.4 24 10.8 24 23.9 999.9 81.3* 65.3* 0.00I 999.9 000000 724050 13743 19620424 58.4 24 32.0 24 1019.8 8 1018.8 8 14.9 24 9.2 24 16.9 999.9 71.2* 45.3* 0.00I 999.9 000000 724050 13743 19620425 64.3 24 36.6 24 1018.0 8 1017.0 8 12.6 24 4.5 24 15.9 999.9 85.3* 47.3* 0.00I 999.9 000000 724050 13743 19620426 74.2 24 41.8 24 1017.0 8 1016.0 8 13.3 24 3.5 24 8.9 999.9 88.3* 59.4* 0.00I 999.9 000000 724050 13743 19620427 76.1 24 51.3 24 1016.6 8 1015.6 8 14.5 24 7.4 24 12.0 999.9 88.3* 65.3* 0.00I 999.9 000000 724050 13743 19620428 75.1 24 54.9 24 1015.5 8 1014.4 8 14.9 24 8.7 24 14.0 999.9 85.3* 65.3* 0.00I 999.9 000000 724050 13743 19620429 74.2 24 62.3 24 1014.1 8 1013.1 8 13.9 24 7.8 24 11.1 999.9 83.3* 68.4* 99.99 999.9 010010 724050 13743 19620430 70.2 24 63.3 24 1015.8 8 1014.8 8 10.7 24 3.9 24 8.0 999.9 82.4* 65.3* 99.99 999.9 010000 724050 13743 19620501 62.0 24 58.3 24 1014.2 8 1013.2 8 4.1 24 5.8 24 12.0 999.9 73.4* 57.4* 99.99 999.9 110000 724050 13743 19620502 54.1 24 52.4 24 1013.1 8 1012.1 8 3.0 24 5.1 24 8.9 999.9 59.4* 51.3* 99.99 999.9 110010 724050 13743 19620503 59.0 24 46.7 24 1015.5 8 1014.5 8 8.3 24 4.8 24 15.9 999.9 76.3* 49.3* 0.00I 999.9 100000 724050 13743 19620504 69.6 24 42.3 24 1015.8 8 1014.8 8 14.8 24 6.1 24 16.9 999.9 81.3* 58.3* 0.00I 999.9 000000 724050 13743 19620505 69.5 24 40.7 24 1017.7 8 1016.7 8 14.9 24 3.0 24 8.9 999.9 83.3* 55.4* 0.00I 999.9 000000 724050 13743 19620506 72.9 24 46.2 24 1013.3 8 1012.3 8 14.7 24 5.5 24 19.0 999.9 86.4* 59.4* 99.99 999.9 010000 724050 13743 19620507 70.0 24 46.7 24 1013.8 8 1012.7 8 14.8 24 8.0 24 22.0 999.9 75.4* 64.4* 0.00I 999.9 000000 724050 13743 19620508 61.5 24 43.2 24 1016.3 8 1015.3 8 12.6 24 3.6 24 12.0 999.9 71.2* 53.4* 99.99 999.9 110010 724050 13743 19620509 55.3 24 42.9 24 1017.0 8 1016.0 8 9.0 24 6.2 24 9.9 999.9 63.3* 50.4* 0.00I 999.9 100000 724050 13743 19620510 56.7 24 31.2 24 1021.9 8 1020.9 8 13.8 24 1.9 24 7.0 999.9 66.4* 45.3* 0.00I 999.9 000000 724050 13743 19620511 59.9 24 42.8 24 1017.5 8 1016.4 8 11.3 24 4.5 24 8.0 999.9 65.3* 55.4* 0.00I 999.9 000000 724050 13743 19620512 59.6 24 47.2 24 1021.6 8 1020.6 8 8.9 24 3.8 24 8.9 999.9 70.3* 49.3* 0.00I 999.9 100000 724050 13743 19620513 57.3 24 45.1 24 1026.5 8 1025.5 8 10.3 24 4.8 24 7.0 999.9 65.3* 52.3* 99.99 999.9 010000 724050 13743 19620514 64.7 24 52.8 24 1025.1 8 1024.1 8 12.0 24 6.1 24 9.9 999.9 82.4* 55.4* 0.00I 999.9 000000 724050 13743 19620515 79.5 24 61.8 24 1020.4 8 1019.4 8 10.5 24 5.9 24 22.9 999.9 96.3* 65.3* 0.00I 999.9 000000 724050 13743 19620516 72.7 24 60.5 24 1025.3 8 1024.2 8 11.0 24 3.9 24 7.0 999.9 81.3* 62.4* 0.00I 999.9 000000 724050 13743 19620517 67.2 24 55.7 24 1025.7 8 1024.7 8 9.7 24 2.9 24 8.9 999.9 77.4* 60.3* 0.00I 999.9 000000 724050 13743 19620518 78.6 24 61.2 24 1020.3 8 1019.2 8 8.6 24 3.4 24 12.0 999.9 94.3* 65.3* 0.00I 999.9 000000 724050 13743 19620519 83.5 24 62.4 24 1017.8 8 1016.8 8 8.5 24 4.7 24 22.9 999.9 95.4* 73.4* 0.00I 999.9 000000 724050 13743 19620520 80.2 24 61.3 24 1014.0 8 1013.0 8 10.8 24 5.2 24 11.1 999.9 92.3* 69.3* 0.00I 999.9 000000 724050 13743 19620521 80.7 24 60.3 24 1009.6 8 1008.6 8 12.0 24 5.2 24 14.0 999.9 88.3* 72.3* 0.00I 999.9 000000 724050 13743 19620522 72.1 24 53.0 24 1015.0 8 1013.9 8 14.9 24 5.3 24 8.9 999.9 83.3* 63.3* 0.00I 999.9 000000 724050 13743 19620523 69.1 24 59.2 24 1017.0 8 1016.0 8 11.4 24 5.9 24 14.0 999.9 80.2* 61.3* 0.00I 999.9 000000 724050 13743 19620524 74.8 24 63.4 24 1010.9 8 1009.9 8 8.9 24 6.9 24 25.1 999.9 88.3* 66.4* 99.99 999.9 010010 724050 13743 19620525 73.2 24 56.7 24 1012.4 8 1011.4 8 13.3 24 5.3 24 18.1 999.9 85.3* 64.4* 99.99 999.9 010000 724050 13743 19620526 78.4 24 58.7 24 1013.8 8 1012.8 8 14.7 24 4.0 24 8.0 999.9 85.3* 71.2* 99.99 999.9 010000 724050 13743 19620527 69.5 24 57.5 24 1014.9 8 1013.9 8 11.0 24 4.3 24 9.9 999.9 81.3* 60.3* 99.99 999.9 110010 724050 13743 19620528 63.0 24 54.3 24 1020.5 8 1019.4 8 12.6 24 2.6 24 7.0 999.9 69.3* 60.3* 99.99 999.9 010000 724050 13743 19620529 66.3 24 56.1 24 1026.2 8 1025.2 8 13.6 24 4.3 24 8.0 999.9 76.3* 60.3* 99.99 999.9 010000 724050 13743 19620530 70.6 24 64.2 24 1024.6 8 1023.6 8 7.7 24 2.8 24 8.0 999.9 81.3* 65.3* 99.99 999.9 110000 724050 13743 19620531 74.8 24 66.8 24 1018.6 8 1017.6 8 11.2 24 6.1 24 19.0 999.9 87.3* 65.3* 99.99 999.9 010010 724050 13743 19620601 76.0 24 64.7 24 1016.1 8 1015.1 8 11.8 24 3.5 24 8.9 999.9 87.3* 67.3* 0.00I 999.9 000000 724050 13743 19620602 79.5 24 64.0 24 1015.4 8 1014.4 8 10.5 24 3.8 24 8.9 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19620603 69.1 24 57.5 24 1020.2 8 1019.2 8 9.8 24 7.6 24 12.0 999.9 80.2* 60.3* 99.99 999.9 110010 724050 13743 19620604 68.6 24 56.3 24 1022.8 8 1021.8 8 12.9 24 4.0 24 8.0 999.9 72.3* 65.3* 0.00I 999.9 000000 724050 13743 19620605 69.8 24 64.6 24 1016.4 8 1015.4 8 7.7 24 6.0 24 8.0 999.9 77.4* 66.4* 99.99 999.9 110000 724050 13743 19620606 73.0 24 62.6 24 1009.6 8 1008.6 8 11.7 24 6.8 24 18.1 999.9 80.2* 67.3* 99.99 999.9 010000 724050 13743 19620607 72.5 24 49.4 24 1016.4 8 1015.4 8 13.5 24 5.0 24 9.9 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19620608 72.2 24 52.7 24 1021.8 8 1020.8 8 11.7 24 6.1 24 9.9 999.9 83.3* 63.3* 0.00I 999.9 000000 724050 13743 19620609 74.0 24 50.7 24 1024.5 8 1023.5 8 13.8 24 6.9 24 13.0 999.9 84.4* 63.3* 0.00I 999.9 000000 724050 13743 19620610 75.3 24 58.9 24 1023.6 8 1022.6 8 14.7 24 9.6 24 13.0 999.9 86.4* 65.3* 0.00I 999.9 000000 724050 13743 19620611 77.5 24 63.3 24 1017.3 8 1016.3 8 13.4 24 7.7 24 13.0 999.9 84.4* 70.3* 0.00I 999.9 000000 724050 13743 19620612 73.6 24 69.0 24 1011.5 8 1010.5 8 9.7 24 6.5 24 9.9 999.9 81.3* 70.3* 99.99 999.9 110000 724050 13743 19620613 66.7 24 63.7 24 1011.4 8 1010.4 8 6.0 24 6.6 24 9.9 999.9 71.2* 63.3* 99.99 999.9 110000 724050 13743 19620614 66.4 24 56.7 24 1014.8 8 1013.8 8 6.9 24 5.4 24 8.0 999.9 76.3* 60.3* 0.00I 999.9 100000 724050 13743 19620615 70.3 24 59.1 24 1013.8 8 1012.8 8 8.3 24 8.3 24 12.0 999.9 79.3* 62.4* 99.99 999.9 110000 724050 13743 19620616 75.2 24 57.2 24 1015.3 8 1014.2 8 9.7 24 5.0 24 9.9 999.9 89.2* 64.4* 0.00I 999.9 000000 724050 13743 19620617 78.6 24 60.5 24 1016.5 8 1015.5 8 10.6 24 3.1 24 9.9 999.9 90.3* 67.3* 0.00I 999.9 000000 724050 13743 19620618 82.4 24 62.9 24 1016.3 8 1015.3 8 9.2 24 3.7 24 9.9 999.9 94.3* 71.2* 0.00I 999.9 000000 724050 13743 19620619 81.3 24 66.6 24 1011.5 8 1010.5 8 8.1 24 4.5 24 9.9 999.9 93.4* 68.4* 99.99 999.9 110010 724050 13743 19620620 71.6 24 68.3 24 1009.5 8 1008.5 8 6.7 24 3.2 24 12.0 999.9 74.3* 68.4* 99.99 999.9 110000 724050 13743 19620621 71.9 24 60.7 24 1012.3 8 1011.3 8 7.7 24 7.0 24 9.9 999.9 80.2* 65.3* 0.00I 999.9 100000 724050 13743 19620622 73.9 24 59.9 24 1017.0 8 1016.0 8 9.2 24 3.9 24 9.9 999.9 82.4* 63.3* 0.00I 999.9 000000 724050 13743 19620623 77.6 24 68.2 24 1016.6 8 1015.5 8 6.2 24 6.4 24 8.9 999.9 88.3* 69.3* 99.99 999.9 010010 724050 13743 19620624 79.3 24 67.8 24 1013.2 8 1012.2 8 11.9 24 5.2 24 9.9 999.9 87.3* 71.2* 99.99 999.9 010000 724050 13743 19620625 80.6 24 65.2 24 1012.7 8 1011.6 8 13.1 24 4.8 24 13.0 999.9 88.3* 73.4* 0.00I 999.9 000000 724050 13743 19620626 78.1 24 65.9 24 1015.7 8 1014.7 8 7.8 24 2.0 24 8.0 999.9 84.4* 71.2* 0.00I 999.9 000000 724050 13743 19620627 76.4 24 62.3 24 1020.4 8 1019.4 8 10.4 24 6.7 24 13.0 999.9 82.4* 69.3* 0.00I 999.9 000000 724050 13743 19620628 73.2 24 57.1 24 1026.1 8 1025.1 8 12.3 24 6.4 24 9.9 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19620629 71.6 24 51.9 24 1023.5 8 1022.5 8 14.0 24 4.4 24 12.0 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19620630 74.3 24 54.3 24 1016.4 8 1015.4 8 11.5 24 6.4 24 14.0 999.9 85.3* 65.3* 0.00I 999.9 000000 724050 13743 19620701 78.0 24 58.4 24 1013.2 8 1012.1 8 9.2 24 6.8 24 18.1 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19620702 75.9 24 52.2 24 1019.7 8 1018.7 8 14.4 24 7.0 24 9.9 999.9 83.3* 66.4* 0.00I 999.9 000000 724050 13743 19620703 68.0 24 59.3 24 1019.8 8 1018.8 8 9.7 24 6.2 24 8.9 999.9 76.3* 62.4* 99.99 999.9 110000 724050 13743 19620704 68.2 24 59.1 24 1015.9 8 1014.9 8 13.0 24 5.3 24 8.0 999.9 78.3* 61.3* 99.99 999.9 010000 724050 13743 19620705 73.2 24 58.6 24 1013.1 8 1012.1 8 12.1 24 3.2 24 9.9 999.9 85.3* 62.4* 0.00I 999.9 000000 724050 13743 19620706 72.9 18 62.4 18 1015.8 6 1014.7 6 9.9 18 5.1 18 9.9 999.9 84.4* 66.4* 0.00I 999.9 100000 724050 13743 19620707 79.1 24 63.4 24 1016.2 8 1015.2 8 11.3 24 4.8 24 8.0 999.9 90.3* 67.3* 0.00I 999.9 000000 724050 13743 19620708 82.3 24 69.4 24 1013.4 8 1012.4 8 11.4 24 5.8 24 12.0 999.9 92.3* 73.4* 0.00I 999.9 000000 724050 13743 19620709 81.4 24 65.7 24 1006.4 8 1005.4 8 12.6 24 11.9 24 20.0 999.9 89.2* 75.4* 0.00I 999.9 000000 724050 13743 19620710 74.7 24 51.0 24 1014.0 8 1013.0 8 13.9 24 12.6 24 20.0 999.9 83.3* 64.4* 0.00I 999.9 000000 724050 13743 19620711 77.4 24 54.5 24 1016.8 8 1015.8 8 14.4 24 4.5 24 9.9 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19620712 79.5 24 65.6 24 1013.5 8 1012.5 8 9.4 24 4.9 24 9.9 999.9 88.3* 71.2* 99.99 999.9 010000 724050 13743 19620713 80.9 24 59.3 24 1011.4 8 1010.4 8 13.0 24 7.7 24 18.1 999.9 89.2* 73.4* 0.00I 999.9 000000 724050 13743 19620714 77.3 24 64.0 24 1012.1 8 1011.1 8 9.8 24 2.9 24 9.9 999.9 86.4* 71.2* 99.99 999.9 110000 724050 13743 19620715 71.9 24 65.5 24 1011.6 8 1010.6 8 5.7 24 4.6 24 8.0 999.9 84.4* 66.4* 99.99 999.9 110000 724050 13743 19620716 72.2 24 67.3 24 1013.5 8 1012.5 8 6.3 24 4.4 24 9.9 999.9 78.3* 66.4* 99.99 999.9 110000 724050 13743 19620717 71.5 24 64.9 24 1018.5 8 1017.4 8 6.2 24 5.0 24 12.0 999.9 78.3* 67.3* 0.00I 999.9 100000 724050 13743 19620718 71.5 24 65.1 24 1017.7 8 1016.7 8 7.3 24 5.6 24 15.0 999.9 79.3* 67.3* 99.99 999.9 110010 724050 13743 19620719 73.4 24 60.5 24 1018.2 8 1017.1 8 8.5 24 4.4 24 11.1 999.9 85.3* 63.3* 0.00I 999.9 100000 724050 13743 19620720 77.7 24 62.6 24 1020.0 8 1019.0 8 11.6 24 3.6 24 11.1 999.9 88.3* 68.4* 0.00I 999.9 000000 724050 13743 19620721 81.2 24 67.6 24 1014.2 8 1013.2 8 11.6 24 8.9 24 15.0 999.9 92.3* 74.3* 0.00I 999.9 000010 724050 13743 19620722 77.5 24 64.4 24 1011.4 8 1010.3 8 13.0 24 8.1 24 21.0 999.9 88.3* 67.3* 99.99 999.9 010010 724050 13743 19620723 79.3 24 65.2 24 1011.4 8 1010.4 8 13.7 24 5.6 24 13.0 999.9 85.3* 73.4* 0.00I 999.9 000000 724050 13743 19620724 74.7 24 57.8 24 1012.6 8 1011.6 8 14.2 24 12.3 24 20.0 999.9 82.4* 68.4* 99.99 999.9 010010 724050 13743 19620725 72.0 24 64.5 24 1016.7 8 1015.7 8 8.9 24 4.7 24 8.0 999.9 77.4* 68.4* 99.99 999.9 110000 724050 13743 19620726 75.7 24 62.7 24 1011.7 8 1010.7 8 10.1 24 9.1 24 21.0 999.9 84.4* 70.3* 0.00I 999.9 000000 724050 13743 19620727 70.8 24 45.4 24 1019.0 8 1018.0 8 14.9 24 12.7 24 18.1 999.9 79.3* 62.4* 0.00I 999.9 000000 724050 13743 19620728 72.2 24 51.0 24 1023.3 8 1022.3 8 14.2 24 4.6 24 13.0 999.9 82.4* 60.3* 0.00I 999.9 000000 724050 13743 19620729 70.4 24 62.1 24 1021.4 8 1020.4 8 12.1 24 6.0 24 9.9 999.9 78.3* 65.3* 99.99 999.9 110000 724050 13743 19620730 73.1 24 65.8 24 1018.0 8 1016.8 8 5.4 24 2.6 24 8.0 999.9 83.3* 68.4* 0.00I 999.9 100000 724050 13743 19620731 78.3 24 66.7 24 1015.3 8 1014.3 8 9.9 24 5.5 24 8.9 999.9 90.3* 71.2* 0.00I 999.9 000000 724050 13743 19620801 79.3 24 64.5 24 1015.7 8 1014.7 8 9.7 24 6.4 24 14.0 999.9 86.4* 71.2* 0.00I 999.9 000000 724050 13743 19620802 77.4 24 55.5 24 1018.5 8 1017.5 8 14.9 24 2.5 24 6.0 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19620803 75.5 24 60.9 24 1019.3 8 1018.3 8 12.7 24 5.5 24 11.1 999.9 81.3* 68.4* 99.99 999.9 010000 724050 13743 19620804 73.7 24 63.9 24 1017.7 8 1016.7 8 10.5 24 3.5 24 8.0 999.9 80.2* 69.3* 99.99 999.9 010000 724050 13743 19620805 78.8 24 69.1 24 1016.9 8 1015.8 8 8.4 24 4.4 24 7.0 999.9 88.3* 73.4* 0.00I 999.9 000000 724050 13743 19620806 79.4 24 70.8 24 1017.0 8 1016.0 8 8.4 24 7.2 24 12.0 999.9 90.3* 73.4* 99.99 999.9 010010 724050 13743 19620807 79.0 24 70.2 24 1011.5 8 1010.5 8 12.0 24 8.1 24 14.0 999.9 88.3* 73.4* 0.00I 999.9 000000 724050 13743 19620808 82.2 24 65.2 24 1008.7 8 1007.7 8 12.1 24 6.1 24 15.0 999.9 94.3* 73.4* 0.00I 999.9 000000 724050 13743 19620809 75.1 24 64.1 24 1009.7 8 1008.7 8 10.7 24 6.6 24 18.1 999.9 87.3* 70.3* 99.99 999.9 010000 724050 13743 19620810 68.7 24 60.5 24 1015.0 8 1013.9 8 11.8 24 8.9 24 14.0 999.9 75.4* 66.4* 99.99 999.9 010000 724050 13743 19620811 67.3 24 56.8 24 1019.8 8 1018.8 8 13.4 24 7.4 24 12.0 999.9 77.4* 61.3* 0.00I 999.9 000000 724050 13743 19620812 70.8 24 57.9 24 1019.9 8 1018.8 8 12.4 24 4.4 24 14.0 999.9 83.3* 60.3* 0.00I 999.9 000000 724050 13743 19620813 72.3 24 61.1 24 1015.9 8 1014.9 8 11.1 24 6.1 24 8.9 999.9 82.4* 64.4* 0.00I 999.9 000000 724050 13743 19620814 77.9 24 64.0 24 1014.3 8 1013.3 8 10.1 24 8.8 24 15.9 999.9 85.3* 71.2* 0.00I 999.9 000000 724050 13743 19620815 73.9 24 55.6 24 1020.0 8 1019.0 8 12.0 24 6.1 24 14.0 999.9 83.3* 63.3* 0.00I 999.9 000000 724050 13743 19620816 77.0 24 66.7 24 1016.4 8 1015.4 8 8.3 24 5.5 24 8.0 999.9 88.3* 70.3* 99.99 999.9 010010 724050 13743 19620817 78.0 24 66.2 24 1011.5 8 1010.5 8 10.6 24 4.8 24 11.1 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19620818 74.2 24 53.2 24 1014.9 8 1013.9 8 13.1 24 7.9 24 12.0 999.9 83.3* 64.4* 0.00I 999.9 000000 724050 13743 19620819 74.7 24 57.7 24 1019.3 8 1018.3 8 14.8 24 6.1 24 12.0 999.9 85.3* 63.3* 0.00I 999.9 000000 724050 13743 19620820 82.4 24 68.1 24 1016.4 8 1015.4 8 11.6 24 8.6 24 14.0 999.9 97.3* 74.3* 0.00I 999.9 000000 724050 13743 19620821 86.5 24 68.6 24 1014.5 8 1013.5 8 11.8 24 6.0 24 9.9 999.9 95.4* 79.3* 0.00I 999.9 000000 724050 13743 19620822 79.2 24 59.4 24 1016.9 8 1015.8 8 13.7 24 6.6 24 12.0 999.9 87.3* 72.3* 99.99 999.9 010010 724050 13743 19620823 72.8 24 56.3 24 1023.5 8 1022.5 8 12.0 24 6.0 24 12.0 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19620824 72.3 24 55.1 24 1026.0 8 1024.9 8 14.9 24 4.4 24 8.0 999.9 82.4* 63.3* 0.00I 999.9 000000 724050 13743 19620825 73.8 24 58.9 24 1024.4 8 1023.4 8 14.9 24 4.4 24 8.9 999.9 84.4* 65.3* 0.00I 999.9 000000 724050 13743 19620826 75.8 24 62.2 24 1022.7 8 1021.7 8 14.2 24 3.9 24 8.0 999.9 87.3* 67.3* 0.00I 999.9 000000 724050 13743 19620827 76.0 24 67.4 24 1019.2 8 1018.2 8 14.5 24 4.6 24 8.9 999.9 84.4* 70.3* 99.99 999.9 010000 724050 13743 19620828 75.5 24 66.5 24 1013.4 8 1012.4 8 13.5 24 8.6 24 16.9 999.9 82.4* 71.2* 0.00I 999.9 000000 724050 13743 19620829 76.3 24 58.3 24 1013.7 8 1012.7 8 13.2 24 9.4 24 13.0 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19620830 80.7 24 60.2 24 1016.6 8 1015.6 8 13.7 24 5.0 24 8.0 999.9 94.3* 69.3* 0.00I 999.9 000000 724050 13743 19620831 80.8 24 60.5 24 1018.3 8 1017.3 8 10.6 24 2.5 24 7.0 999.9 94.3* 68.4* 0.00I 999.9 000000 724050 13743 19620901 82.1 24 66.0 24 1016.2 8 1015.2 8 10.4 24 5.3 24 7.0 999.9 95.4* 70.3* 0.00I 999.9 000000 724050 13743 19620902 81.2 24 67.2 24 1016.3 8 1015.2 8 12.3 24 5.5 24 14.0 999.9 89.2* 68.4* 99.99 999.9 010000 724050 13743 19620903 68.5 24 63.1 24 1020.8 8 1019.8 8 9.7 24 6.2 24 9.9 999.9 76.3* 64.4* 99.99 999.9 110000 724050 13743 19620904 69.2 24 63.5 24 1020.0 8 1019.0 8 11.1 24 3.4 24 6.0 999.9 72.3* 66.4* 99.99 999.9 010000 724050 13743 19620905 70.5 24 67.2 24 1014.7 8 1013.7 8 4.0 24 2.4 24 8.0 999.9 77.4* 67.3* 99.99 999.9 110000 724050 13743 19620906 64.3 24 47.0 24 1018.6 8 1017.6 8 12.5 24 11.0 24 15.9 999.9 72.3* 56.3* 0.00I 999.9 000000 724050 13743 19620907 62.7 24 41.2 24 1019.5 8 1018.5 8 13.5 24 3.2 24 8.9 999.9 72.3* 54.3* 0.00I 999.9 000000 724050 13743 19620908 65.7 24 51.8 24 1020.9 8 1019.9 8 13.1 24 3.1 24 7.0 999.9 77.4* 55.4* 0.00I 999.9 000000 724050 13743 19620909 69.8 24 58.7 24 1023.1 8 1022.1 8 14.4 24 4.4 24 8.0 999.9 82.4* 60.3* 0.00I 999.9 000000 724050 13743 19620910 76.5 24 68.9 24 1019.7 8 1018.7 8 13.8 24 8.0 24 14.0 999.9 85.3* 71.2* 99.99 999.9 010000 724050 13743 19620911 78.1 24 61.5 24 1015.5 8 1014.4 8 13.8 24 10.5 24 18.1 999.9 85.3* 72.3* 0.00I 999.9 000000 724050 13743 19620912 74.1 24 50.0 24 1018.6 8 1017.6 8 14.9 24 5.6 24 9.9 999.9 85.3* 63.3* 0.00I 999.9 000000 724050 13743 19620913 74.9 24 54.7 24 1019.7 8 1018.7 8 11.6 24 2.6 24 9.9 999.9 88.3* 61.3* 0.00I 999.9 000000 724050 13743 19620914 77.2 24 60.5 24 1015.7 8 1015.1 8 12.2 24 6.3 24 12.0 999.9 86.4* 68.4* 0.00I 999.9 000000 724050 13743 19620915 75.3 24 53.5 24 1018.8 8 1017.7 8 13.5 24 5.7 24 12.0 999.9 81.3* 66.4* 0.00I 999.9 000000 724050 13743 19620916 71.4 24 53.7 24 1020.2 8 1019.2 8 13.3 24 2.7 24 7.0 999.9 75.4* 66.4* 99.99 999.9 010000 724050 13743 19620917 66.2 24 61.8 24 1014.1 8 1013.1 8 6.6 24 4.2 24 8.9 999.9 71.2* 61.3* 99.99 999.9 110000 724050 13743 19620918 67.5 24 52.8 24 1010.5 8 1009.5 8 12.4 24 9.0 24 22.0 999.9 74.3* 61.3* 0.00I 999.9 000000 724050 13743 19620919 66.0 24 44.1 24 1015.3 8 1014.2 8 12.6 24 6.9 24 12.0 999.9 76.3* 57.4* 0.00I 999.9 000000 724050 13743 19620920 59.7 24 43.5 24 1018.7 8 1017.7 8 13.4 24 12.1 24 20.0 999.9 65.3* 54.3* 99.99 999.9 010000 724050 13743 19620921 55.8 24 35.7 24 1026.8 8 1025.7 8 13.7 24 5.4 24 12.0 999.9 63.3* 46.4* 0.00I 999.9 000000 724050 13743 19620922 57.2 24 43.7 24 1027.2 8 1026.2 8 12.7 24 4.7 24 8.9 999.9 70.3* 46.4* 0.00I 999.9 000000 724050 13743 19620923 60.8 24 52.7 24 1024.8 8 1023.8 8 9.8 24 7.2 24 13.0 999.9 67.3* 55.4* 99.99 999.9 110000 724050 13743 19620924 58.9 24 45.5 24 1024.0 8 1023.0 8 10.6 24 2.8 24 7.0 999.9 69.3* 49.3* 0.00I 999.9 000000 724050 13743 19620925 61.5 24 50.7 24 1017.8 8 1016.7 8 10.9 24 7.3 24 12.0 999.9 70.3* 55.4* 99.99 999.9 010000 724050 13743 19620926 64.5 24 57.9 24 1015.2 8 1014.2 8 7.5 24 2.8 24 6.0 999.9 68.4* 61.3* 99.99 999.9 010000 724050 13743 19620927 59.6 24 58.6 24 1008.9 8 1007.9 8 2.8 24 5.4 24 15.0 999.9 62.4* 58.3* 99.99 999.9 110000 724050 13743 19620928 61.4 24 52.3 24 1004.0 8 1003.0 8 13.3 24 7.2 24 14.0 999.9 69.3* 55.4* 99.99 999.9 010000 724050 13743 19620929 59.9 24 46.7 24 1014.2 8 1013.2 8 14.0 24 4.3 24 11.1 999.9 68.4* 51.3* 0.00I 999.9 000000 724050 13743 19620930 61.2 24 48.0 24 1020.6 8 1019.6 8 12.0 24 1.6 24 6.0 999.9 75.4* 50.4* 0.00I 999.9 000000 724050 13743 19621001 62.6 24 50.6 24 1021.7 8 1020.7 8 9.1 24 2.5 24 8.9 999.9 76.3* 52.3* 0.00I 999.9 000000 724050 13743 19621002 64.3 24 53.5 24 1023.0 8 1022.0 8 9.6 24 4.3 24 9.9 999.9 75.4* 53.4* 0.00I 999.9 000000 724050 13743 19621003 63.4 24 55.8 24 1024.2 8 1023.2 8 7.9 24 3.2 24 6.0 999.9 72.3* 55.4* 99.99 999.9 010000 724050 13743 19621004 67.2 24 64.9 24 1018.0 8 1017.0 8 4.6 24 4.0 24 11.1 999.9 71.2* 63.3* 99.99 999.9 110000 724050 13743 19621005 69.2 24 62.7 24 1013.0 8 1012.0 8 8.7 24 6.6 24 11.1 999.9 79.3* 63.3* 99.99 999.9 110000 724050 13743 19621006 66.6 24 57.2 24 1011.9 8 1010.9 8 9.6 24 5.7 24 13.0 999.9 74.3* 60.3* 99.99 999.9 010000 724050 13743 19621007 66.6 24 51.9 24 1009.0 8 1008.0 8 11.2 24 8.2 24 15.0 999.9 76.3* 58.3* 0.00I 999.9 000000 724050 13743 19621008 67.9 24 56.9 24 1006.2 8 1005.2 8 8.5 24 3.2 24 8.0 999.9 78.3* 59.4* 99.99 999.9 010000 724050 13743 19621009 66.9 24 58.3 24 1007.2 8 1006.2 8 8.1 24 4.7 24 15.9 999.9 73.4* 61.3* 99.99 999.9 110010 724050 13743 19621010 66.7 24 52.9 24 1014.3 8 1013.3 8 12.4 24 8.2 24 15.0 999.9 75.4* 59.4* 0.00I 999.9 000000 724050 13743 19621011 67.5 24 54.7 24 1015.9 8 1014.9 8 11.2 24 4.1 24 9.9 999.9 88.3* 55.4* 0.00I 999.9 000000 724050 13743 19621012 74.1 24 57.9 24 1013.1 8 1012.0 8 13.0 24 5.3 24 11.1 999.9 88.3* 62.4* 0.00I 999.9 000000 724050 13743 19621013 71.6 24 50.9 24 1017.4 8 1016.3 8 14.0 24 5.3 24 15.9 999.9 79.3* 62.4* 0.00I 999.9 000000 724050 13743 19621014 63.8 24 50.7 24 1022.5 8 1021.5 8 11.8 24 2.7 24 8.0 999.9 75.4* 54.3* 0.00I 999.9 000000 724050 13743 19621015 65.5 24 56.6 24 1022.3 8 1021.2 8 12.1 24 5.1 24 9.9 999.9 71.2* 61.3* 0.00I 999.9 000000 724050 13743 19621016 70.0 24 59.1 24 1022.2 8 1021.2 8 10.3 24 5.4 24 8.9 999.9 81.3* 62.4* 0.00I 999.9 000000 724050 13743 19621017 68.6 24 56.4 24 1017.1 8 1016.2 8 11.4 24 9.0 24 15.9 999.9 73.4* 64.4* 0.00I 999.9 000000 724050 13743 19621018 59.4 24 37.7 24 1018.7 8 1017.7 8 13.4 24 5.9 24 14.0 999.9 65.3* 50.4* 0.00I 999.9 000000 724050 13743 19621019 57.1 24 39.7 24 1018.7 8 1017.6 8 9.8 24 3.1 24 9.9 999.9 69.3* 45.3* 0.00I 999.9 000000 724050 13743 19621020 58.7 24 43.2 24 1015.8 8 1014.8 8 10.4 24 2.5 24 6.0 999.9 74.3* 47.3* 0.00I 999.9 000000 724050 13743 19621021 62.3 24 51.8 24 1006.0 8 1005.0 8 11.5 24 5.2 24 15.9 999.9 70.3* 56.3* 99.99 999.9 010000 724050 13743 19621022 59.4 24 41.8 24 1009.3 8 1008.3 8 14.2 24 7.4 24 14.0 999.9 66.4* 50.4* 0.00I 999.9 000000 724050 13743 19621023 58.6 24 42.4 24 1008.3 8 1007.3 8 14.0 24 9.5 24 18.1 999.9 67.3* 54.3* 0.00I 999.9 000000 724050 13743 19621024 49.1 24 27.3 24 1017.0 8 1016.0 8 14.9 24 15.0 24 20.0 999.9 55.4* 42.4* 0.00I 999.9 000000 724050 13743 19621025 43.6 24 28.5 24 1022.9 8 1021.8 8 12.3 24 5.1 24 13.0 999.9 48.4* 38.3* 99.99 999.9 010000 724050 13743 19621026 40.0 24 22.2 24 1018.2 8 1017.2 8 14.9 24 14.0 24 25.1 999.9 44.4* 34.3* 0.00I 999.9 000000 724050 13743 19621027 40.7 24 17.0 24 1026.7 8 1025.7 8 14.9 24 8.3 24 15.9 999.9 53.4* 32.4* 0.00I 999.9 000000 724050 13743 19621028 52.2 24 26.8 24 1022.6 8 1022.6 8 14.9 24 8.2 24 12.0 999.9 71.2* 42.4* 0.00I 999.9 000000 724050 13743 19621029 58.9 24 41.1 24 1020.9 8 1019.9 8 14.0 24 8.8 24 15.9 999.9 66.4* 51.3* 99.99 999.9 010000 724050 13743 19621030 48.4 24 38.3 24 1018.9 8 1017.9 8 8.9 24 2.8 24 7.0 999.9 57.4* 44.4* 99.99 999.9 110000 724050 13743 19621031 49.5 24 46.4 24 1008.8 8 1007.8 8 9.6 24 5.5 24 13.0 999.9 56.3* 47.3* 99.99 999.9 110000 724050 13743 19621101 46.6 24 36.7 24 1011.5 8 1010.5 8 11.7 24 10.0 24 15.9 999.9 54.3* 38.3* 0.00I 999.9 000000 724050 13743 19621102 45.3 24 32.8 24 1022.2 8 1021.2 8 10.1 24 4.3 24 8.9 999.9 54.3* 35.4* 0.00I 999.9 000000 724050 13743 19621103 43.4 24 37.6 24 1016.1 8 1015.1 8 7.2 24 10.5 24 19.0 999.9 48.4* 38.3* 99.99 999.9 110000 724050 13743 19621104 41.6 24 35.7 24 1012.0 8 1011.0 8 11.1 24 5.6 24 9.9 999.9 49.3* 36.3* 0.00I 999.9 000000 724050 13743 19621105 40.3 24 36.9 24 1011.5 8 1010.5 8 6.1 24 6.3 24 9.9 999.9 45.3* 33.4* 99.99 999.9 111000 724050 13743 19621106 40.7 24 30.8 24 1021.3 8 1020.3 8 12.6 24 6.2 24 12.0 999.9 47.3* 36.3* 0.00I 999.9 000000 724050 13743 19621107 41.0 24 31.5 24 1025.7 8 1024.6 8 7.0 24 2.6 24 7.0 999.9 55.4* 30.4* 0.00I 999.9 100000 724050 13743 19621108 49.1 24 37.6 24 1023.4 8 1022.4 8 5.9 24 2.6 24 8.0 999.9 60.3* 42.4* 0.00I 999.9 000000 724050 13743 19621109 49.8 24 43.8 24 1024.0 8 1023.0 8 3.7 24 5.6 24 15.0 999.9 54.3* 45.3* 99.99 999.9 110000 724050 13743 19621110 54.0 24 49.1 24 1001.4 8 1000.3 8 10.0 24 10.4 24 20.0 999.9 63.3* 48.4* 99.99 999.9 110000 724050 13743 19621111 54.3 24 42.0 24 1009.3 8 1008.3 8 13.9 24 14.9 24 21.0 999.9 58.3* 49.3* 0.00I 999.9 000000 724050 13743 19621112 45.4 24 33.3 24 1018.0 8 1016.9 8 12.7 24 5.1 24 14.0 999.9 54.3* 37.4* 0.00I 999.9 000000 724050 13743 19621113 43.5 24 35.9 24 1017.9 8 1016.9 8 8.4 24 7.3 24 15.0 999.9 48.4* 39.4* 99.99 999.9 010000 724050 13743 19621114 45.9 24 32.3 24 1021.9 8 1020.9 8 12.8 24 9.0 24 21.0 999.9 53.4* 39.4* 0.00I 999.9 000000 724050 13743 19621115 46.0 24 31.0 24 1020.6 8 1019.6 8 11.8 24 2.9 24 8.9 999.9 58.3* 38.3* 0.00I 999.9 000000 724050 13743 19621116 50.5 24 37.2 24 1013.2 8 1012.2 8 6.2 24 1.4 24 8.9 999.9 66.4* 40.3* 0.00I 999.9 000000 724050 13743 19621117 52.0 24 43.6 24 1009.2 8 1008.2 8 5.5 24 2.0 24 6.0 999.9 55.4* 48.4* 99.99 999.9 010000 724050 13743 19621118 45.0 24 40.2 24 1010.2 8 1009.2 8 5.2 24 7.3 24 19.0 999.9 52.3* 38.3* 99.99 999.9 110000 724050 13743 19621119 38.6 24 29.3 24 1024.0 8 1023.0 8 13.0 24 7.3 24 15.0 999.9 45.3* 34.3* 0.00I 999.9 000000 724050 13743 19621120 41.1 24 34.0 24 1020.0 8 1019.0 8 8.6 24 2.7 24 6.0 999.9 47.3* 37.4* 99.99 999.9 110000 724050 13743 19621121 46.6 24 44.4 24 1010.3 8 1009.3 8 3.5 24 5.1 24 8.0 999.9 51.3* 43.3* 99.99 999.9 110000 724050 13743 19621122 52.6 24 44.1 24 997.8 8 996.7 8 8.2 24 11.9 24 25.1 999.9 55.4* 46.4* 99.99 999.9 110000 724050 13743 19621123 40.4 24 20.5 24 1022.2 8 1021.2 8 14.7 24 11.3 24 28.9 999.9 46.4* 34.3* 0.00I 999.9 000000 724050 13743 19621124 46.3 24 27.0 24 1027.8 8 1026.8 8 13.9 24 10.8 24 22.9 999.9 51.3* 41.4* 0.00I 999.9 000000 724050 13743 19621125 40.9 24 26.0 24 1034.7 8 1033.7 8 13.0 24 3.5 24 9.9 999.9 45.3* 35.4* 0.00I 999.9 000000 724050 13743 19621126 38.0 24 23.2 24 1033.3 8 1032.3 8 12.9 24 7.6 24 9.9 999.9 45.3* 32.4* 0.00I 999.9 000000 724050 13743 19621127 41.1 24 27.2 24 1033.5 8 1032.5 8 10.1 24 7.5 24 9.9 999.9 48.4* 36.3* 0.00I 999.9 000000 724050 13743 19621128 45.8 24 32.0 24 1033.2 8 1032.2 8 8.7 24 7.6 24 12.0 999.9 54.3* 40.3* 0.00I 999.9 000000 724050 13743 19621129 49.6 24 20.3 24 1031.5 8 1030.5 8 8.3 24 5.7 24 9.9 999.9 63.3* 39.4* 0.00I 999.9 000000 724050 13743 19621130 49.4 24 20.1 24 1028.9 8 1027.9 8 7.3 24 4.6 24 8.9 999.9 62.4* 37.4* 0.00I 999.9 000000 724050 13743 19621201 48.5 24 25.7 24 1024.5 8 1023.5 8 8.0 24 2.0 24 7.0 999.9 66.4* 36.3* 0.00I 999.9 000000 724050 13743 19621202 50.0 24 26.2 24 1023.2 8 1022.1 8 10.4 24 3.5 24 8.0 999.9 63.3* 38.3* 0.00I 999.9 000000 724050 13743 19621203 49.2 24 34.8 24 1024.2 8 1023.1 8 8.5 24 4.2 24 6.0 999.9 59.4* 41.4* 0.00I 999.9 000000 724050 13743 19621204 46.9 24 36.2 24 1017.0 8 1016.0 8 4.2 24 3.6 24 8.0 999.9 56.3* 38.3* 0.00I 999.9 000000 724050 13743 19621205 49.3 24 35.3 24 1007.2 8 1006.2 8 7.8 24 4.8 24 8.0 999.9 60.3* 41.4* 0.00I 999.9 000000 724050 13743 19621206 41.8 24 37.5 24 994.1 8 993.0 8 6.0 24 9.6 24 21.0 999.9 47.3* 34.3* 99.99 999.9 111000 724050 13743 19621207 36.9 24 19.8 24 996.9 8 995.9 8 14.0 24 12.2 24 15.0 999.9 43.3* 33.4* 0.00I 999.9 000000 724050 13743 19621208 39.6 24 16.1 24 1008.9 8 1007.9 8 12.9 24 5.0 24 9.9 999.9 46.4* 33.4* 0.00I 999.9 000000 724050 13743 19621209 36.8 24 23.6 24 1007.0 8 1006.0 8 9.5 24 5.2 24 15.9 999.9 42.4* 33.4* 99.99 999.9 011000 724050 13743 19621210 27.1 24 10.4 24 1009.2 8 1008.2 8 14.0 24 11.1 24 18.1 999.9 33.4* 20.3* 0.00I 999.9 000000 724050 13743 19621211 24.6 24 9.8 24 1016.0 8 1015.0 8 10.5 24 4.8 24 9.9 999.9 29.3* 21.4* 99.99 999.9 101000 724050 13743 19621212 18.3 24 5.1 24 1023.8 8 1022.7 8 13.7 24 16.3 24 20.0 999.9 24.4* 13.5* 99.99 999.9 001000 724050 13743 19621213 16.9 24 -0.1 24 1027.7 8 1026.7 8 12.7 24 11.7 24 15.9 999.9 25.3* 12.4* 0.00I 999.9 000000 724050 13743 19621214 24.5 24 5.0 24 1018.3 8 1017.3 8 13.4 24 12.5 24 23.9 999.9 30.4* 18.3* 99.99 999.9 001000 724050 13743 19621215 24.3 24 11.7 24 1021.3 8 1020.2 8 12.2 24 3.7 24 8.0 999.9 32.4* 17.4* 0.00I 999.9 000000 724050 13743 19621216 34.8 24 20.4 24 1013.5 8 1012.5 8 10.9 24 4.4 24 8.9 999.9 40.3* 32.4* 99.99 999.9 001000 724050 13743 19621217 36.9 24 24.1 24 1016.2 8 1015.2 8 8.3 24 3.9 24 8.0 999.9 45.3* 31.3* 0.00I 999.9 000000 724050 13743 19621218 39.4 24 28.8 24 1019.2 8 1018.2 8 7.7 24 3.5 24 8.9 999.9 48.4* 31.3* 0.00I 999.9 000000 724050 13743 19621219 36.9 24 30.5 24 1020.7 8 1019.7 8 7.2 24 1.9 24 6.0 999.9 43.3* 30.4* 0.00I 999.9 000000 724050 13743 19621220 41.2 24 28.8 24 1021.5 8 1020.5 8 8.5 24 6.6 24 16.9 999.9 43.3* 35.4* 0.00I 999.9 000000 724050 13743 19621221 24.0 24 12.0 24 1032.6 8 1031.5 8 5.8 24 6.2 24 8.0 999.9 33.4* 19.4* 99.99 999.9 101000 724050 13743 19621222 27.6 24 25.9 24 1014.2 8 1013.2 8 3.0 24 3.9 24 13.0 999.9 36.3* 22.5* 99.99 999.9 111000 724050 13743 19621223 31.1 24 28.3 24 1015.1 8 1014.1 8 2.6 24 2.7 24 6.0 999.9 43.3* 22.5* 0.00I 999.9 100000 724050 13743 19621224 29.7 24 15.1 24 1031.3 8 1030.2 8 14.8 24 12.4 24 19.0 999.9 43.3* 22.5* 0.00I 999.9 000000 724050 13743 19621225 26.3 24 20.4 24 1034.6 8 1033.6 8 5.3 24 2.3 24 7.0 999.9 28.4* 24.4* 99.99 999.9 111000 724050 13743 19621226 32.4 24 28.4 24 1023.3 8 1022.3 8 4.8 24 4.6 24 8.9 999.9 44.4* 28.4* 99.99 999.9 110000 724050 13743 19621227 34.2 24 21.1 24 1029.0 8 1027.9 8 9.3 24 3.8 24 9.9 999.9 38.3* 30.4* 0.00I 999.9 000000 724050 13743 19621228 32.7 24 22.0 24 1027.8 8 1026.8 8 9.6 24 2.7 24 9.9 999.9 40.3* 26.4* 0.00I 999.9 000000 724050 13743 19621229 30.6 24 25.9 24 1026.5 8 1025.5 8 4.9 24 2.7 24 7.0 999.9 33.4* 27.3* 99.99 999.9 111000 724050 13743 19621230 26.3 24 14.4 24 1018.5 8 1017.5 8 12.0 24 16.8 24 28.0 999.9 35.4* 19.4* 99.99 999.9 110000 724050 13743 19621231 14.7 24 -0.3 24 1021.9 8 1020.8 8 13.4 24 25.0 24 29.9 999.9 20.3* 10.4* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1957/0000755000175000017500000000000014302004506015105 5ustar nileshnileshfluids-1.0.22/tests/gsod/1957/724050-13743.op0000644000175000017500000014327214302004506016676 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19570101 38.7 24 28.7 24 1012.5 24 1011.5 24 14.9 24 14.6 24 28.0 999.9 46.4* 28.4* 0.00I 999.9 000000 724050 13743 19570102 24.2 24 8.2 24 1023.7 24 1022.7 24 14.9 24 15.4 24 22.9 999.9 32.4* 18.3* 0.00I 999.9 000000 724050 13743 19570103 27.8 24 12.8 24 1028.6 24 1027.6 24 14.9 24 11.2 23 21.0 999.9 36.3* 22.5* 0.00I 999.9 000000 724050 13743 19570104 39.4 24 17.4 24 1018.3 24 1017.3 24 14.5 24 9.3 24 13.0 999.9 52.3* 31.3* 0.00I 999.9 000000 724050 13743 19570105 39.3 24 29.1 24 1018.0 24 1017.0 24 8.0 24 6.1 24 11.1 999.9 45.3* 34.3* 99.99 999.9 111000 724050 13743 19570106 31.7 24 20.1 24 1024.6 24 1023.6 24 12.0 24 4.2 24 9.9 999.9 35.4* 27.3* 0.00I 999.9 000000 724050 13743 19570107 34.5 24 28.0 24 1013.0 24 1012.0 24 6.1 24 4.3 24 18.1 999.9 42.4* 30.4* 99.99 999.9 101000 724050 13743 19570108 36.4 24 24.4 24 1019.2 24 1018.3 24 14.7 24 9.5 24 20.0 999.9 39.4* 32.4* 0.00I 999.9 000000 724050 13743 19570109 36.4 24 32.3 24 1015.2 24 1014.2 24 5.6 24 4.4 24 9.9 999.9 41.4* 32.4* 99.99 999.9 111000 724050 13743 19570110 39.1 24 34.2 24 1008.9 24 1007.9 24 6.3 24 11.6 24 35.0 999.9 48.4* 35.4* 99.99 999.9 110000 724050 13743 19570111 30.0 24 18.7 24 1033.0 24 1032.0 24 14.3 24 11.1 24 22.0 999.9 35.4* 25.3* 0.00I 999.9 000000 724050 13743 19570112 31.7 24 21.3 24 1026.5 24 1025.5 24 9.7 24 5.3 24 8.0 999.9 40.3* 26.4* 0.00I 999.9 000000 724050 13743 19570113 38.2 24 27.3 24 1012.9 24 1011.9 24 8.6 24 6.0 24 13.0 999.9 43.3* 34.3* 0.00I 999.9 000000 724050 13743 19570114 26.9 24 19.3 24 1018.9 24 1017.9 24 6.7 24 9.5 24 15.9 999.9 36.3* 23.4* 99.99 999.9 101000 724050 13743 19570115 17.5 24 4.8 24 1027.2 24 1026.2 24 8.1 24 7.7 24 16.9 999.9 23.4* 14.4* 99.99 999.9 101000 724050 13743 19570116 22.2 24 15.0 24 1019.3 24 1018.3 24 4.9 24 7.9 24 20.0 999.9 30.4* 17.4* 99.99 999.9 101000 724050 13743 19570117 16.9 24 2.3 24 1022.0 24 1021.0 24 11.9 24 7.9 24 18.1 999.9 26.4* 12.4* 99.99 999.9 001000 724050 13743 19570118 16.8 24 6.3 24 1023.2 24 1022.2 24 8.8 24 6.7 23 16.9 999.9 29.3* 9.3* 0.00I 999.9 100000 724050 13743 19570119 24.0 24 11.4 24 1036.4 24 1035.3 24 13.3 24 4.5 24 12.0 999.9 39.4* 13.5* 0.00I 999.9 000000 724050 13743 19570120 32.5 24 17.5 24 1040.9 24 1039.9 24 11.9 24 4.8 24 14.0 999.9 43.3* 25.3* 0.00I 999.9 000000 724050 13743 19570121 39.6 24 31.4 24 1034.5 24 1033.5 24 9.6 24 3.8 24 9.9 999.9 47.3* 34.3* 99.99 999.9 010000 724050 13743 19570122 45.7 24 44.3 24 1026.0 24 1025.0 24 1.7 24 4.9 24 14.0 999.9 52.3* 38.3* 99.99 999.9 110000 724050 13743 19570123 55.7 24 47.7 24 1012.7 24 1011.7 24 11.6 24 18.0 24 39.0 999.9 63.3* 36.3* 99.99 999.9 110000 724050 13743 19570124 27.2 24 9.1 24 1034.5 24 1033.4 24 14.9 24 11.1 24 20.0 999.9 34.3* 21.4* 0.00I 999.9 000000 724050 13743 19570125 28.8 24 18.9 24 1028.2 24 1027.2 24 11.0 24 3.1 24 6.0 999.9 35.4* 25.3* 99.99 999.9 011000 724050 13743 19570126 37.8 24 28.7 24 1024.6 24 1023.6 24 7.1 24 4.3 24 8.9 999.9 46.4* 30.4* 99.99 999.9 110000 724050 13743 19570127 40.8 24 30.0 24 1025.1 24 1024.1 24 6.9 24 6.1 24 19.0 999.9 44.4* 37.4* 0.00I 999.9 000000 724050 13743 19570128 38.5 24 32.3 24 1022.3 24 1021.3 24 4.6 24 2.2 24 5.1 999.9 42.4* 36.3* 99.99 999.9 110000 724050 13743 19570129 37.0 24 36.2 24 1013.1 24 1012.1 24 1.3 24 2.2 24 7.0 999.9 42.4* 35.4* 99.99 999.9 110000 724050 13743 19570130 39.8 24 29.4 24 1023.2 24 1022.2 24 8.5 24 8.5 24 16.9 999.9 44.4* 36.3* 0.00I 999.9 000000 724050 13743 19570131 35.5 24 32.0 24 1022.5 24 1021.5 24 3.3 24 2.7 24 8.9 999.9 37.4* 32.4* 99.99 999.9 111000 724050 13743 19570201 38.1 24 36.6 24 1018.8 24 1017.8 24 1.9 24 2.8 24 8.0 999.9 39.4* 36.3* 99.99 999.9 110000 724050 13743 19570202 39.5 24 33.3 24 1024.4 24 1023.4 24 4.3 24 3.1 24 9.9 999.9 47.3* 35.4* 99.99 999.9 110000 724050 13743 19570203 39.6 24 34.8 24 1023.8 24 1022.8 24 4.4 24 7.9 24 15.0 999.9 45.3* 37.4* 99.99 999.9 110000 724050 13743 19570204 50.7 24 44.8 24 1016.6 24 1015.6 24 8.3 24 8.5 24 16.9 999.9 60.3* 44.4* 0.00I 999.9 000000 724050 13743 19570205 41.7 24 29.2 24 1031.1 24 1030.1 24 9.1 24 8.7 24 16.9 999.9 51.3* 33.4* 99.99 999.9 111000 724050 13743 19570206 34.4 24 31.7 24 1030.8 24 1029.8 24 2.5 24 3.4 24 7.0 999.9 37.4* 33.4* 99.99 999.9 111000 724050 13743 19570207 39.6 24 37.4 24 1027.9 24 1026.9 24 2.9 24 2.9 24 8.9 999.9 45.3* 37.4* 99.99 999.9 110000 724050 13743 19570208 42.7 21 38.2 20 1028.1 21 1027.0 21 3.8 21 4.6 21 9.9 999.9 47.3* 40.3* 99.99 999.9 110000 724050 13743 19570209 42.5 24 38.6 24 1019.2 24 1018.2 24 4.6 24 3.8 24 12.0 999.9 51.3* 38.3* 99.99 999.9 110000 724050 13743 19570210 52.0 24 42.2 24 1006.7 24 1005.7 24 12.3 24 11.1 24 22.9 999.9 55.4* 48.4* 99.99 999.9 110000 724050 13743 19570211 39.2 22 29.2 21 1018.0 22 1016.9 22 11.1 22 8.9 22 16.9 999.9 46.4* 34.3* 99.99 999.9 001000 724050 13743 19570212 32.2 24 18.1 24 1025.9 24 1024.9 24 12.1 24 8.3 24 16.9 999.9 38.3* 24.4* 0.00I 999.9 000000 724050 13743 19570213 36.5 24 26.3 24 1019.3 24 1018.3 24 12.2 24 4.8 24 11.1 999.9 48.4* 30.4* 99.99 999.9 001000 724050 13743 19570214 37.6 24 32.8 24 1015.7 24 1014.7 24 8.3 24 4.2 24 11.1 999.9 45.3* 32.4* 99.99 999.9 011000 724050 13743 19570215 35.1 24 27.0 24 1021.0 24 1020.0 24 7.5 24 9.8 24 22.9 999.9 39.4* 31.3* 99.99 999.9 001000 724050 13743 19570216 38.9 24 31.4 24 1016.7 24 1015.7 24 7.7 24 9.9 24 21.0 999.9 49.3* 34.3* 99.99 999.9 001000 724050 13743 19570217 36.7 24 18.8 24 1016.1 24 1015.3 24 13.9 24 16.2 24 23.9 999.9 41.4* 30.4* 0.00I 999.9 000000 724050 13743 19570218 39.2 24 21.0 24 1021.5 24 1020.5 24 13.3 24 7.0 24 14.0 999.9 54.3* 29.3* 0.00I 999.9 000000 724050 13743 19570219 48.0 24 30.4 24 1014.5 24 1013.4 24 11.8 24 8.4 24 13.0 999.9 51.3* 36.3* 99.99 999.9 111000 724050 13743 19570220 32.7 24 19.2 24 1018.6 24 1017.5 24 13.4 24 15.0 24 21.0 999.9 42.4* 24.4* 99.99 999.9 101000 724050 13743 19570221 35.4 24 19.4 24 1026.4 24 1025.4 24 14.9 24 10.5 24 16.9 999.9 45.3* 27.3* 0.00I 999.9 000000 724050 13743 19570222 38.4 24 26.8 24 1030.0 24 1028.9 24 9.1 24 2.2 24 8.0 999.9 51.3* 28.4* 0.00I 999.9 000000 724050 13743 19570223 43.9 24 34.3 24 1030.0 24 1029.0 24 6.8 24 1.4 24 7.0 999.9 58.3* 36.3* 0.00I 999.9 000000 724050 13743 19570224 49.5 24 36.3 24 1030.3 24 1029.3 24 5.1 24 3.4 24 8.9 999.9 58.3* 37.4* 0.00I 999.9 000000 724050 13743 19570225 48.2 24 42.4 24 1023.5 24 1022.4 24 3.8 24 2.5 24 8.9 999.9 57.4* 39.4* 99.99 999.9 110000 724050 13743 19570226 56.8 24 54.1 24 1010.9 24 1009.8 24 4.2 24 4.9 24 12.0 999.9 61.3* 51.3* 99.99 999.9 110000 724050 13743 19570227 58.9 24 56.0 24 1003.0 24 1002.0 24 3.6 24 5.3 24 20.0 999.9 67.3* 52.3* 0.00I 999.9 100000 724050 13743 19570228 37.0 24 30.0 24 1015.1 24 1014.1 24 7.5 24 11.0 24 15.0 999.9 48.4* 32.4* 99.99 999.9 110000 724050 13743 19570301 35.2 24 32.4 24 1008.0 24 1007.0 24 3.6 24 6.5 24 12.0 999.9 39.4* 33.4* 99.99 999.9 111000 724050 13743 19570302 43.3 24 31.3 24 1009.8 24 1008.8 24 11.5 24 8.4 24 22.9 999.9 55.4* 35.4* 99.99 999.9 010000 724050 13743 19570303 37.3 24 19.0 24 1013.3 24 1012.3 24 14.9 24 9.4 24 18.1 999.9 48.4* 28.4* 0.00I 999.9 000000 724050 13743 19570304 35.0 24 16.1 24 1017.6 24 1016.5 24 14.7 24 5.2 24 9.9 999.9 46.4* 28.4* 0.00I 999.9 000000 724050 13743 19570305 36.4 24 20.4 24 1020.1 24 1019.1 24 11.1 24 5.2 24 12.0 999.9 47.3* 29.3* 0.00I 999.9 000000 724050 13743 19570306 40.2 24 26.2 24 1019.1 24 1018.1 24 10.1 24 4.8 24 11.1 999.9 46.4* 35.4* 0.00I 999.9 000000 724050 13743 19570307 40.3 24 30.7 24 1013.8 24 1012.8 24 5.7 24 5.2 24 9.9 999.9 45.3* 34.3* 99.99 999.9 011000 724050 13743 19570308 42.3 24 40.2 24 1004.2 24 1003.2 24 4.4 24 10.0 24 14.0 999.9 46.4* 38.3* 99.99 999.9 110000 724050 13743 19570309 41.4 24 34.2 24 995.7 24 994.7 24 9.9 24 17.5 24 28.0 999.9 45.3* 38.3* 99.99 999.9 110000 724050 13743 19570310 40.4 24 21.8 24 1011.2 24 1010.2 24 13.9 24 16.3 24 29.9 999.9 47.3* 35.4* 0.00I 999.9 000000 724050 13743 19570311 42.7 24 24.0 24 1018.1 24 1017.1 24 12.2 24 4.3 24 9.9 999.9 58.3* 33.4* 0.00I 999.9 000000 724050 13743 19570312 53.2 24 35.4 24 1008.9 24 1007.9 24 12.7 24 6.9 24 18.1 999.9 70.3* 42.4* 0.00I 999.9 000000 724050 13743 19570313 54.4 24 32.6 24 1018.6 24 1017.6 24 13.3 24 3.7 24 9.9 999.9 68.4* 39.4* 0.00I 999.9 000000 724050 13743 19570314 57.6 24 38.3 24 1022.2 24 1021.2 24 12.3 24 5.9 24 15.9 999.9 74.3* 42.4* 0.00I 999.9 000000 724050 13743 19570315 60.8 24 52.9 24 1019.9 24 1018.9 24 10.6 24 6.5 24 12.0 999.9 67.3* 57.4* 99.99 999.9 110000 724050 13743 19570316 56.6 24 40.3 24 1019.4 24 1018.3 24 12.1 24 6.9 24 15.9 999.9 65.3* 43.3* 99.99 999.9 110000 724050 13743 19570317 54.7 24 29.4 24 1019.3 24 1018.3 24 14.9 24 7.0 24 14.0 999.9 68.4* 41.4* 0.00I 999.9 000000 724050 13743 19570318 51.6 24 34.4 24 1017.8 24 1016.7 24 10.3 24 4.6 24 9.9 999.9 61.3* 46.4* 0.00I 999.9 000000 724050 13743 19570319 45.5 24 39.6 24 1011.0 24 1010.0 24 5.6 24 6.4 24 12.0 999.9 50.4* 43.3* 99.99 999.9 110000 724050 13743 19570320 44.4 24 38.1 24 1007.6 24 1006.5 24 7.1 24 8.4 24 23.9 999.9 50.4* 41.4* 99.99 999.9 110000 724050 13743 19570321 44.9 24 28.3 24 1012.7 24 1011.8 24 14.1 24 15.0 24 20.0 999.9 56.3* 38.3* 0.00I 999.9 000000 724050 13743 19570322 45.7 24 35.6 24 1009.8 24 1008.8 24 6.9 24 4.2 24 9.9 999.9 50.4* 42.4* 99.99 999.9 110000 724050 13743 19570323 48.9 24 34.1 24 1009.2 24 1008.2 24 9.6 24 7.4 24 9.9 999.9 62.4* 40.3* 99.99 999.9 110000 724050 13743 19570324 53.3 24 36.3 24 1011.6 24 1010.6 24 10.8 24 3.9 24 13.0 999.9 65.3* 43.3* 0.00I 999.9 000000 724050 13743 19570325 46.1 24 26.7 24 1016.1 24 1015.1 24 13.4 24 9.0 24 14.0 999.9 61.3* 38.3* 99.99 999.9 001000 724050 13743 19570326 44.5 24 32.8 24 1013.3 24 1012.3 24 9.9 24 6.2 24 12.0 999.9 52.3* 40.3* 99.99 999.9 010000 724050 13743 19570327 47.9 24 41.5 24 1013.7 24 1012.7 24 7.3 24 9.8 24 18.1 999.9 54.3* 44.4* 99.99 999.9 110000 724050 13743 19570328 47.0 24 35.5 24 1021.7 24 1020.7 24 8.1 24 6.6 24 11.1 999.9 51.3* 43.3* 0.00I 999.9 000000 724050 13743 19570329 46.9 24 32.5 24 1019.0 24 1017.9 24 13.7 24 7.7 24 18.1 999.9 57.4* 39.4* 99.99 999.9 010000 724050 13743 19570330 46.2 24 30.9 24 1018.6 24 1017.6 24 14.3 24 11.9 24 22.9 999.9 53.4* 40.3* 0.00I 999.9 000000 724050 13743 19570331 45.3 24 28.3 24 1029.1 24 1028.1 24 14.9 24 5.2 24 9.9 999.9 56.3* 35.4* 0.00I 999.9 000000 724050 13743 19570401 44.2 24 30.8 24 1025.7 24 1024.7 24 12.9 24 7.1 24 12.0 999.9 52.3* 38.3* 99.99 999.9 010000 724050 13743 19570402 59.9 24 53.2 24 1009.5 24 1008.5 24 10.1 24 11.8 24 22.0 999.9 70.3* 52.3* 99.99 999.9 110000 724050 13743 19570403 51.3 24 33.3 24 1023.4 24 1022.4 24 14.7 24 10.1 24 19.0 999.9 60.3* 43.3* 0.00I 999.9 000000 724050 13743 19570404 45.2 24 35.7 24 1027.2 24 1026.1 24 10.1 24 8.8 24 15.0 999.9 48.4* 41.4* 99.99 999.9 110000 724050 13743 19570405 50.7 24 49.6 24 1013.5 24 1012.4 24 3.4 24 4.9 24 15.9 999.9 69.3* 43.3* 99.99 999.9 110000 724050 13743 19570406 55.0 24 43.0 24 1000.8 24 999.8 24 14.4 24 13.8 24 23.9 999.9 67.3* 49.3* 99.99 999.9 110000 724050 13743 19570407 53.7 24 35.9 23 1013.4 24 1012.4 24 14.8 24 9.1 24 15.0 999.9 74.3* 41.4* 0.00I 999.9 000000 724050 13743 19570408 53.7 24 41.7 24 1008.1 24 1007.1 24 8.8 24 6.7 24 12.0 999.9 70.3* 46.4* 99.99 999.9 110000 724050 13743 19570409 46.9 24 33.1 24 1007.4 24 1006.4 24 10.7 24 17.5 24 40.0 999.9 52.3* 40.3* 99.99 999.9 110000 724050 13743 19570410 49.6 24 30.6 24 1018.0 24 1017.0 24 14.9 24 9.0 24 19.0 999.9 59.4* 42.4* 0.00I 999.9 000000 724050 13743 19570411 52.6 24 33.8 24 1019.8 24 1018.8 24 13.3 24 6.2 24 18.1 999.9 72.3* 37.4* 0.00I 999.9 000000 724050 13743 19570412 63.7 24 45.2 24 1013.8 24 1012.8 24 14.0 24 9.7 24 19.0 999.9 76.3* 55.4* 0.00I 999.9 000000 724050 13743 19570413 43.1 24 28.8 24 1019.2 24 1018.1 24 10.9 24 11.1 24 21.0 999.9 50.4* 34.3* 99.99 999.9 011000 724050 13743 19570414 43.7 24 24.5 24 1022.5 24 1021.5 24 14.3 24 9.3 24 16.9 999.9 52.3* 37.4* 0.00I 999.9 000000 724050 13743 19570415 44.8 24 23.9 24 1027.9 24 1027.0 24 14.9 24 9.3 24 16.9 999.9 56.3* 35.4* 0.00I 999.9 000000 724050 13743 19570416 50.6 24 33.4 24 1030.0 24 1029.0 24 13.1 24 6.2 24 14.0 999.9 62.4* 40.3* 0.00I 999.9 000000 724050 13743 19570417 58.1 24 44.1 24 1027.7 24 1026.7 24 11.5 24 6.2 24 12.0 999.9 68.4* 52.3* 99.99 999.9 010000 724050 13743 19570418 63.6 24 53.6 24 1026.0 24 1025.0 24 7.6 24 1.1 24 8.0 999.9 77.4* 55.4* 99.99 999.9 010000 724050 13743 19570419 62.5 24 56.8 24 1027.3 24 1026.3 24 3.8 24 4.8 24 9.9 999.9 70.3* 55.4* 99.99 999.9 110000 724050 13743 19570420 61.9 24 54.3 24 1026.9 24 1025.9 24 6.1 24 3.0 24 12.0 999.9 84.4* 51.3* 99.99 999.9 110000 724050 13743 19570421 75.9 24 61.9 24 1019.9 24 1018.9 24 11.6 24 3.2 24 15.0 999.9 90.3* 65.3* 99.99 999.9 010000 724050 13743 19570422 68.5 24 54.3 24 1024.2 24 1023.2 24 14.3 24 7.6 24 15.0 999.9 78.3* 63.3* 0.00I 999.9 000000 724050 13743 19570423 63.5 24 53.8 24 1023.0 24 1022.0 24 8.3 24 2.2 24 8.0 999.9 81.3* 55.4* 99.99 999.9 110000 724050 13743 19570424 76.6 24 62.6 24 1018.3 24 1017.2 24 9.8 24 3.5 24 8.9 999.9 89.2* 66.4* 0.00I 999.9 000000 724050 13743 19570425 69.0 24 60.7 24 1022.9 24 1021.9 24 5.1 24 5.2 24 12.0 999.9 80.2* 60.3* 99.99 999.9 110000 724050 13743 19570426 67.3 24 60.4 24 1023.5 24 1022.5 24 2.3 24 2.3 24 8.9 999.9 82.4* 60.3* 99.99 999.9 110000 724050 13743 19570427 76.9 24 62.4 24 1018.7 24 1017.7 24 7.1 24 2.6 24 8.0 999.9 99.3* 63.3* 0.00I 999.9 000000 724050 13743 19570428 80.9 24 61.7 24 1016.5 24 1015.5 24 10.9 24 2.5 24 9.9 999.9 94.3* 68.4* 99.99 999.9 010010 724050 13743 19570429 73.9 24 49.5 24 1017.2 24 1016.2 24 13.8 24 7.9 24 12.0 999.9 80.2* 67.3* 0.00I 999.9 000000 724050 13743 19570430 70.4 24 47.3 24 1017.7 24 1016.7 24 14.8 24 4.7 24 15.0 999.9 83.3* 58.3* 0.00I 999.9 000000 724050 13743 19570501 70.0 24 47.2 24 1015.8 24 1014.8 24 13.5 24 5.3 24 13.0 999.9 85.3* 58.3* 0.00I 999.9 000000 724050 13743 19570502 66.4 24 42.3 24 1013.8 24 1012.8 24 14.9 24 5.0 24 9.9 999.9 72.3* 58.3* 0.00I 999.9 000000 724050 13743 19570503 53.7 24 29.7 24 1013.4 24 1012.4 24 14.9 24 7.4 24 12.0 999.9 62.4* 45.3* 0.00I 999.9 000000 724050 13743 19570504 50.6 24 31.9 24 1014.0 24 1013.0 24 14.9 24 6.8 24 12.0 999.9 61.3* 41.4* 0.00I 999.9 000000 724050 13743 19570505 54.9 24 37.6 24 1015.4 24 1014.4 24 14.9 24 6.2 24 9.9 999.9 66.4* 45.3* 0.00I 999.9 000000 724050 13743 19570506 62.4 24 41.3 24 1019.1 24 1018.0 24 14.1 24 4.4 24 15.0 999.9 71.2* 55.4* 0.00I 999.9 000000 724050 13743 19570507 64.9 24 37.7 24 1023.6 24 1022.6 24 14.6 24 4.3 24 11.1 999.9 81.3* 49.3* 0.00I 999.9 000000 724050 13743 19570508 70.6 24 46.1 24 1022.2 24 1021.1 24 13.7 24 3.6 24 12.0 999.9 86.4* 56.3* 0.00I 999.9 000000 724050 13743 19570509 74.8 24 51.8 24 1018.0 24 1017.0 24 14.0 24 5.4 24 8.9 999.9 86.4* 61.3* 0.00I 999.9 000000 724050 13743 19570510 76.0 24 57.8 24 1016.2 24 1015.2 24 12.0 24 6.1 24 9.9 999.9 87.3* 64.4* 0.00I 999.9 000000 724050 13743 19570511 72.8 24 60.5 24 1015.3 24 1014.3 24 9.0 24 5.5 24 8.0 999.9 76.3* 68.4* 99.99 999.9 010000 724050 13743 19570512 67.8 24 60.5 24 1016.8 24 1015.8 24 5.0 24 5.1 24 8.0 999.9 81.3* 58.3* 99.99 999.9 110000 724050 13743 19570513 77.1 24 62.7 24 1015.7 24 1014.7 24 8.1 24 3.3 24 8.0 999.9 91.2* 66.4* 0.00I 999.9 100000 724050 13743 19570514 78.8 24 68.1 24 1015.6 24 1014.6 24 10.1 24 5.9 24 9.9 999.9 90.3* 69.3* 99.99 999.9 110010 724050 13743 19570515 75.5 24 67.6 24 1011.8 24 1010.8 24 10.9 24 4.9 24 12.0 999.9 89.2* 65.3* 99.99 999.9 010010 724050 13743 19570516 72.2 24 56.0 24 1014.4 24 1013.4 24 14.9 24 9.3 24 20.0 999.9 82.4* 65.3* 0.00I 999.9 000000 724050 13743 19570517 64.0 24 51.9 24 1022.4 24 1021.4 24 11.4 24 4.7 24 11.1 999.9 70.3* 56.3* 0.00I 999.9 000000 724050 13743 19570518 70.9 24 60.3 24 1015.3 24 1014.2 24 10.1 24 5.1 24 8.9 999.9 86.4* 61.3* 99.99 999.9 010010 724050 13743 19570519 65.1 24 60.5 24 1013.3 24 1012.3 24 4.3 24 7.4 24 11.1 999.9 74.3* 60.3* 99.99 999.9 110000 724050 13743 19570520 58.6 24 55.8 24 1007.4 24 1006.3 24 4.1 24 4.2 24 11.1 999.9 65.3* 54.3* 99.99 999.9 110000 724050 13743 19570521 55.0 24 51.3 24 1016.7 24 1015.7 24 3.2 24 6.4 24 9.9 999.9 61.3* 49.3* 99.99 999.9 110000 724050 13743 19570522 59.9 24 51.7 24 1020.6 24 1019.6 24 9.0 24 8.1 24 14.0 999.9 67.3* 55.4* 99.99 999.9 010000 724050 13743 19570523 74.0 24 63.7 24 1015.6 24 1014.5 24 7.8 24 5.9 24 11.1 999.9 91.2* 65.3* 0.00I 999.9 100000 724050 13743 19570524 78.9 24 64.4 24 1015.8 24 1014.8 24 14.1 24 8.1 24 14.0 999.9 84.4* 73.4* 0.00I 999.9 000000 724050 13743 19570525 71.4 24 53.2 24 1021.7 24 1020.6 24 12.7 24 4.7 24 12.0 999.9 81.3* 60.3* 0.00I 999.9 000000 724050 13743 19570526 75.7 24 64.4 24 1012.9 24 1011.9 24 10.9 24 9.3 24 20.0 999.9 91.2* 65.3* 0.00I 999.9 000000 724050 13743 19570527 74.4 24 65.4 24 1008.9 24 1007.9 24 13.5 24 8.3 24 14.0 999.9 83.3* 70.3* 99.99 999.9 010000 724050 13743 19570528 67.2 24 48.2 24 1017.8 24 1016.8 24 14.9 24 12.3 24 18.1 999.9 79.3* 57.4* 0.00I 999.9 000000 724050 13743 19570529 66.2 24 51.5 24 1023.5 24 1022.5 24 13.3 24 3.8 24 8.9 999.9 77.4* 55.4* 0.00I 999.9 000000 724050 13743 19570530 68.9 24 55.0 24 1025.7 24 1024.7 24 11.0 24 3.8 24 9.9 999.9 83.3* 60.3* 0.00I 999.9 000000 724050 13743 19570531 69.7 24 56.3 24 1024.0 24 1023.0 24 12.1 24 3.5 24 9.9 999.9 82.4* 57.4* 0.00I 999.9 000000 724050 13743 19570601 72.3 24 59.4 24 1020.7 24 1019.7 24 12.5 24 2.5 24 8.9 999.9 84.4* 61.3* 0.00I 999.9 000000 724050 13743 19570602 76.0 24 61.9 24 1016.0 24 1015.0 24 12.4 24 4.0 24 8.9 999.9 90.3* 65.3* 0.00I 999.9 000000 724050 13743 19570603 67.7 24 60.9 24 1020.2 24 1019.1 24 7.0 24 6.8 24 12.0 999.9 80.2* 61.3* 99.99 999.9 110000 724050 13743 19570604 66.1 22 59.7 22 1020.9 22 1019.9 22 5.4 22 1.7 22 6.0 999.9 75.4* 60.3* 99.99 999.9 110000 724050 13743 19570605 68.8 22 66.8 22 1016.0 22 1015.0 22 3.6 22 1.8 22 7.0 999.9 71.2* 66.4* 99.99 999.9 110000 724050 13743 19570606 71.4 24 65.0 24 1010.6 24 1009.6 24 5.4 24 3.4 24 8.9 999.9 80.2* 66.4* 99.99 999.9 110000 724050 13743 19570607 75.6 24 67.3 24 1008.4 24 1007.4 24 6.3 24 6.3 24 8.9 999.9 87.3* 68.4* 0.00I 999.9 100000 724050 13743 19570608 66.1 24 58.4 23 1014.8 24 1013.8 24 5.9 24 7.9 24 13.0 999.9 80.2* 56.3* 99.99 999.9 010000 724050 13743 19570609 61.8 24 51.6 24 1021.0 24 1019.9 24 10.6 24 6.9 24 12.0 999.9 78.3* 53.4* 99.99 999.9 110000 724050 13743 19570610 67.7 24 55.0 24 1021.0 24 1019.9 24 12.0 24 4.2 24 8.0 999.9 78.3* 58.3* 99.99 999.9 010000 724050 13743 19570611 70.7 24 57.5 24 1016.9 24 1015.9 24 13.8 24 6.0 24 13.0 999.9 83.3* 60.3* 0.00I 999.9 000000 724050 13743 19570612 79.3 24 68.0 24 1008.1 24 1007.1 24 10.1 24 8.3 24 18.1 999.9 90.3* 70.3* 99.99 999.9 010000 724050 13743 19570613 83.2 24 70.3 24 1010.2 24 1009.2 24 8.5 24 2.9 24 8.0 999.9 93.4* 73.4* 0.00I 999.9 000000 724050 13743 19570614 82.6 23 68.2 23 1013.0 23 1012.0 23 13.1 23 4.7 23 12.0 999.9 94.3* 72.3* 0.00I 999.9 000000 724050 13743 19570615 84.7 24 69.7 24 1016.2 24 1015.2 24 11.1 24 2.7 24 8.9 999.9 98.2* 74.3* 99.99 999.9 010010 724050 13743 19570616 87.3 24 70.7 24 1019.9 24 1018.9 24 11.5 24 2.0 24 12.0 999.9 99.3* 78.3* 99.99 999.9 010010 724050 13743 19570617 85.0 24 70.9 24 1021.4 24 1020.4 24 7.2 24 2.6 24 8.0 999.9 98.2* 76.3* 99.99 999.9 010010 724050 13743 19570618 87.0 24 73.0 24 1019.4 24 1018.4 24 5.0 24 2.3 24 8.0 999.9 98.2* 79.3* 99.99 999.9 010010 724050 13743 19570619 82.1 24 71.1 24 1011.9 24 1010.9 24 9.0 24 5.9 24 12.0 999.9 91.2* 73.4* 0.00I 999.9 000000 724050 13743 19570620 77.6 24 56.2 24 1012.4 24 1011.4 24 14.9 24 8.7 24 15.0 999.9 86.4* 68.4* 0.00I 999.9 000000 724050 13743 19570621 78.2 24 60.0 24 1016.2 24 1015.2 24 11.4 24 1.1 24 5.1 999.9 90.3* 67.3* 0.00I 999.9 000000 724050 13743 19570622 81.4 24 64.6 24 1020.3 24 1019.3 24 10.4 24 2.9 24 11.1 999.9 95.4* 70.3* 0.00I 999.9 000000 724050 13743 19570623 83.6 24 70.5 24 1020.4 24 1019.4 24 10.1 24 5.5 24 9.9 999.9 94.3* 74.3* 0.00I 999.9 000000 724050 13743 19570624 81.8 24 70.6 24 1016.2 24 1015.2 24 12.0 24 4.9 24 15.9 999.9 92.3* 74.3* 99.99 999.9 010010 724050 13743 19570625 78.4 24 68.1 24 1012.3 24 1011.3 24 9.4 24 9.1 24 14.0 999.9 87.3* 73.4* 99.99 999.9 010010 724050 13743 19570626 77.7 24 67.9 24 1015.1 24 1014.1 24 6.7 24 2.9 24 12.0 999.9 89.2* 71.2* 99.99 999.9 110000 724050 13743 19570627 80.0 24 69.0 24 1014.5 24 1013.4 24 11.9 24 8.7 24 12.0 999.9 89.2* 72.3* 0.00I 999.9 000000 724050 13743 19570628 81.2 24 71.8 24 1010.4 24 1009.4 24 12.3 24 7.5 24 15.9 999.9 90.3* 74.3* 99.99 999.9 010000 724050 13743 19570629 78.5 22 65.2 22 1001.5 22 1000.5 22 13.4 22 12.1 22 19.0 999.9 86.4* 71.2* 99.99 999.9 010000 724050 13743 19570630 77.8 24 60.2 24 1004.9 24 1003.9 24 14.1 24 11.7 24 19.0 999.9 90.3* 68.4* 99.99 999.9 010000 724050 13743 19570701 75.0 24 57.7 24 1009.7 24 1008.7 24 14.9 24 9.6 24 20.0 999.9 81.3* 68.4* 0.00I 999.9 000000 724050 13743 19570702 72.5 24 51.3 24 1014.9 24 1013.9 24 14.9 24 9.0 24 14.0 999.9 81.3* 62.4* 0.00I 999.9 000000 724050 13743 19570703 74.4 24 55.3 24 1016.5 24 1015.5 24 14.9 24 3.1 24 12.0 999.9 89.2* 60.3* 0.00I 999.9 000000 724050 13743 19570704 82.6 24 61.1 24 1011.7 24 1010.7 24 12.8 24 5.7 24 8.9 999.9 93.4* 71.2* 0.00I 999.9 000000 724050 13743 19570705 86.1 24 64.0 24 1005.9 24 1004.9 24 12.0 24 10.9 24 16.9 999.9 94.3* 80.2* 99.99 999.9 010000 724050 13743 19570706 79.0 24 50.1 24 1013.4 24 1012.4 24 14.9 24 6.8 24 13.0 999.9 87.3* 67.3* 0.00I 999.9 000000 724050 13743 19570707 79.8 24 57.0 24 1014.5 24 1013.5 24 14.5 24 4.5 24 9.9 999.9 90.3* 71.2* 0.00I 999.9 000000 724050 13743 19570708 80.3 24 60.8 24 1015.8 24 1014.8 24 10.8 24 2.4 24 8.0 999.9 89.2* 71.2* 99.99 999.9 010000 724050 13743 19570709 82.9 24 69.8 24 1011.2 24 1010.2 24 9.8 24 6.6 24 12.0 999.9 93.4* 75.4* 99.99 999.9 010000 724050 13743 19570710 78.5 24 57.4 24 1014.4 24 1013.4 24 12.9 24 10.0 24 16.9 999.9 89.2* 72.3* 0.00I 999.9 000010 724050 13743 19570711 75.3 24 52.6 24 1018.4 24 1017.4 24 14.9 24 6.7 24 13.0 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19570712 80.8 24 62.9 24 1015.0 24 1014.0 24 11.3 24 2.5 24 8.0 999.9 91.2* 70.3* 99.99 999.9 010000 724050 13743 19570713 82.6 24 67.2 24 1013.1 24 1012.1 24 8.0 24 2.1 24 5.1 999.9 90.3* 73.4* 0.00I 999.9 000000 724050 13743 19570714 84.0 24 69.0 24 1012.3 24 1011.2 24 9.1 24 4.0 24 9.9 999.9 92.3* 75.4* 0.00I 999.9 000000 724050 13743 19570715 84.6 24 66.5 24 1013.0 24 1012.0 24 9.3 24 3.8 24 11.1 999.9 92.3* 74.3* 0.00I 999.9 000000 724050 13743 19570716 78.5 24 54.1 24 1017.2 24 1016.2 24 12.6 24 4.5 24 8.0 999.9 89.2* 67.3* 0.00I 999.9 000000 724050 13743 19570717 77.0 24 57.4 24 1018.9 24 1017.8 24 10.6 24 2.0 24 9.9 999.9 85.3* 66.4* 0.00I 999.9 000000 724050 13743 19570718 79.6 24 60.0 24 1020.1 24 1019.1 24 9.7 24 3.2 24 8.0 999.9 87.3* 73.4* 0.00I 999.9 000000 724050 13743 19570719 78.5 24 53.3 24 1021.6 24 1020.6 24 13.2 24 3.9 24 8.0 999.9 90.3* 64.4* 0.00I 999.9 000000 724050 13743 19570720 80.3 24 57.9 24 1018.6 24 1017.7 24 12.1 24 4.8 24 8.9 999.9 94.3* 69.3* 0.00I 999.9 000000 724050 13743 19570721 86.3 24 63.4 24 1014.4 24 1013.4 24 9.4 24 3.5 24 8.0 999.9 100.2* 75.4* 0.00I 999.9 000000 724050 13743 19570722 88.7 24 67.4 24 1011.7 24 1010.5 24 6.5 24 4.6 24 9.9 999.9 100.2* 78.3* 0.00I 999.9 000000 724050 13743 19570723 81.1 24 70.5 24 1010.5 24 1009.4 24 6.3 24 3.4 24 15.0 999.9 89.2* 75.4* 99.99 999.9 010000 724050 13743 19570724 73.1 24 59.3 24 1013.1 24 1012.1 24 12.1 24 8.7 24 14.0 999.9 83.3* 64.4* 99.99 999.9 110000 724050 13743 19570725 75.1 24 51.9 24 1019.3 24 1018.3 24 14.9 24 5.2 24 8.0 999.9 85.3* 66.4* 0.00I 999.9 000000 724050 13743 19570726 74.5 24 56.0 24 1022.2 24 1021.2 24 13.2 24 3.1 24 8.9 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19570727 76.2 24 60.8 24 1021.2 24 1020.2 24 13.1 24 5.6 24 8.9 999.9 86.4* 67.3* 0.00I 999.9 000000 724050 13743 19570728 77.9 24 65.8 24 1018.1 24 1017.0 24 10.5 24 3.9 24 11.1 999.9 88.3* 69.3* 99.99 999.9 010010 724050 13743 19570729 79.5 24 66.1 24 1014.8 24 1013.8 24 12.1 24 6.1 24 8.9 999.9 92.3* 70.3* 0.00I 999.9 000010 724050 13743 19570730 80.7 24 68.3 24 1011.8 24 1010.8 24 9.2 24 4.9 24 8.0 999.9 93.4* 73.4* 99.99 999.9 010010 724050 13743 19570731 80.8 24 68.0 24 1009.6 24 1008.6 24 10.3 24 4.6 24 15.0 999.9 93.4* 72.3* 0.00I 999.9 000000 724050 13743 19570801 81.0 24 63.4 24 1010.0 24 1009.0 24 11.1 24 4.5 24 9.9 999.9 91.2* 73.4* 0.00I 999.9 000000 724050 13743 19570802 81.9 24 57.5 24 1012.2 24 1011.1 24 13.0 24 2.6 24 8.0 999.9 92.3* 71.2* 0.00I 999.9 000000 724050 13743 19570803 84.0 24 62.7 24 1011.3 24 1010.3 24 9.5 24 3.6 24 12.0 999.9 98.2* 72.3* 0.00I 999.9 000000 724050 13743 19570804 83.7 24 67.7 24 1006.5 24 1005.5 24 8.6 24 5.5 24 18.1 999.9 94.3* 77.4* 99.99 999.9 010010 724050 13743 19570805 76.1 24 61.6 24 1009.3 24 1008.3 24 11.8 24 7.5 24 16.9 999.9 86.4* 70.3* 99.99 999.9 010000 724050 13743 19570806 72.0 24 47.7 24 1018.1 24 1017.1 24 14.2 24 6.9 24 9.9 999.9 80.2* 62.4* 0.00I 999.9 000000 724050 13743 19570807 72.7 24 48.7 24 1022.0 24 1021.0 24 13.3 24 5.3 24 13.0 999.9 82.4* 63.3* 0.00I 999.9 000000 724050 13743 19570808 75.3 24 51.5 24 1022.8 24 1021.8 24 11.8 24 1.6 24 7.0 999.9 87.3* 63.3* 0.00I 999.9 000000 724050 13743 19570809 79.8 24 57.0 24 1016.5 24 1015.4 24 8.6 24 4.6 24 9.9 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19570810 81.5 24 65.3 24 1010.1 24 1009.1 24 6.5 24 4.9 24 15.9 999.9 86.4* 76.3* 99.99 999.9 010000 724050 13743 19570811 79.6 24 61.9 24 1012.9 24 1011.9 24 11.1 24 1.7 24 9.9 999.9 94.3* 68.4* 0.00I 999.9 000000 724050 13743 19570812 83.2 24 65.6 24 1013.2 24 1012.2 24 8.0 24 6.4 24 13.0 999.9 93.4* 74.3* 0.00I 999.9 000000 724050 13743 19570813 74.6 24 53.7 24 1018.7 24 1017.7 24 12.1 24 6.8 24 12.0 999.9 83.3* 64.4* 0.00I 999.9 000000 724050 13743 19570814 73.8 24 56.7 24 1019.3 24 1018.3 24 10.5 24 5.6 24 11.1 999.9 85.3* 64.4* 0.00I 999.9 000000 724050 13743 19570815 80.1 24 70.2 24 1013.4 24 1012.4 24 6.2 24 3.9 24 8.0 999.9 92.3* 74.3* 99.99 999.9 010000 724050 13743 19570816 82.4 24 68.4 24 1010.6 24 1009.5 24 8.4 24 6.4 24 15.9 999.9 93.4* 74.3* 0.00I 999.9 000000 724050 13743 19570817 76.1 24 52.8 24 1017.3 24 1016.3 24 9.3 24 5.8 24 12.0 999.9 87.3* 68.4* 0.00I 999.9 000000 724050 13743 19570818 73.7 24 57.2 24 1018.4 24 1017.4 24 11.1 24 3.9 24 12.0 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19570819 66.8 24 61.7 24 1018.1 24 1017.0 24 6.9 24 4.5 24 8.9 999.9 73.4* 64.4* 99.99 999.9 110000 724050 13743 19570820 69.4 24 60.1 24 1016.0 24 1015.0 24 6.5 24 3.7 24 6.0 999.9 80.2* 63.3* 99.99 999.9 110000 724050 13743 19570821 74.1 24 56.6 24 1021.1 24 1020.0 24 8.3 24 1.6 24 7.0 999.9 87.3* 63.3* 0.00I 999.9 000000 724050 13743 19570822 72.9 24 57.1 24 1027.4 24 1026.4 24 7.7 24 7.1 24 12.0 999.9 82.4* 66.4* 0.00I 999.9 000000 724050 13743 19570823 70.2 24 55.5 24 1027.3 24 1026.3 24 11.1 24 4.0 24 9.9 999.9 81.3* 59.4* 0.00I 999.9 000000 724050 13743 19570824 68.7 24 55.9 24 1018.9 24 1017.9 24 12.8 24 2.3 24 7.0 999.9 77.4* 59.4* 0.00I 999.9 000000 724050 13743 19570825 68.5 24 64.1 24 1012.5 24 1011.5 24 7.5 24 5.5 24 16.9 999.9 73.4* 65.3* 99.99 999.9 110000 724050 13743 19570826 70.7 24 62.3 24 1012.5 24 1011.5 24 6.5 24 9.3 24 13.0 999.9 80.2* 64.4* 99.99 999.9 110000 724050 13743 19570827 77.1 24 62.6 24 1018.3 24 1017.4 24 7.4 24 5.3 24 12.0 999.9 89.2* 69.3* 0.00I 999.9 000000 724050 13743 19570828 72.8 24 55.6 24 1022.9 24 1021.8 24 10.8 24 4.9 24 8.0 999.9 84.4* 61.3* 0.00I 999.9 000000 724050 13743 19570829 72.1 24 61.1 24 1024.2 24 1023.1 24 7.8 24 2.6 24 7.0 999.9 82.4* 63.3* 0.00I 999.9 000000 724050 13743 19570830 77.5 24 65.0 24 1021.4 24 1020.4 24 6.9 24 4.1 24 8.9 999.9 94.3* 68.4* 0.00I 999.9 000000 724050 13743 19570831 80.5 24 68.8 24 1020.6 24 1019.6 24 5.5 24 3.2 24 9.9 999.9 90.3* 73.4* 99.99 999.9 110000 724050 13743 19570901 79.3 24 66.6 24 1019.3 24 1018.2 24 6.4 24 2.9 24 7.0 999.9 87.3* 73.4* 99.99 999.9 010010 724050 13743 19570902 77.7 24 68.2 24 1016.7 24 1015.7 24 5.2 24 4.1 24 8.9 999.9 87.3* 70.3* 0.00I 999.9 100000 724050 13743 19570903 82.3 24 71.1 24 1009.9 24 1008.8 24 7.3 24 6.8 24 15.0 999.9 94.3* 77.4* 0.00I 999.9 000010 724050 13743 19570904 79.0 24 70.1 24 1008.5 24 1007.5 24 8.2 24 6.0 24 9.9 999.9 87.3* 74.3* 99.99 999.9 010000 724050 13743 19570905 74.3 24 56.5 24 1014.6 24 1013.6 24 13.9 24 6.0 24 15.9 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19570906 70.2 24 57.4 24 1017.8 24 1016.8 24 9.7 24 2.8 24 8.0 999.9 79.3* 64.4* 0.00I 999.9 000000 724050 13743 19570907 73.2 24 64.9 24 1012.4 24 1011.4 24 7.7 24 2.2 24 8.9 999.9 81.3* 69.3* 99.99 999.9 110010 724050 13743 19570908 72.5 24 64.0 24 1012.5 24 1011.4 24 6.3 24 3.0 24 8.0 999.9 80.2* 68.4* 0.00I 999.9 100000 724050 13743 19570909 70.2 24 62.3 24 1019.0 24 1018.0 24 3.7 24 4.0 24 11.1 999.9 75.4* 68.4* 99.99 999.9 110000 724050 13743 19570910 75.1 24 70.4 24 1022.5 24 1021.4 24 4.6 24 4.8 24 12.0 999.9 89.2* 68.4* 99.99 999.9 110010 724050 13743 19570911 74.4 24 69.7 24 1021.8 24 1020.7 24 4.0 24 1.8 24 8.9 999.9 82.4* 70.3* 99.99 999.9 110000 724050 13743 19570912 79.8 24 72.4 24 1016.8 24 1015.8 24 5.9 24 2.5 24 9.9 999.9 90.3* 74.3* 0.00I 999.9 100000 724050 13743 19570913 78.8 24 70.8 24 1016.3 24 1015.3 24 8.7 24 3.9 24 11.1 999.9 92.3* 70.3* 99.99 999.9 010010 724050 13743 19570914 80.6 24 69.4 24 1016.7 24 1015.7 24 12.1 24 3.8 24 8.9 999.9 87.3* 74.3* 99.99 999.9 010000 724050 13743 19570915 78.2 24 69.6 24 1015.6 24 1014.6 24 9.3 24 4.9 24 8.9 999.9 89.2* 71.2* 99.99 999.9 110010 724050 13743 19570916 78.7 24 69.6 23 1014.3 24 1013.3 24 11.0 24 8.1 24 15.9 999.9 86.4* 70.3* 99.99 999.9 010000 724050 13743 19570917 70.9 24 67.3 24 1017.3 24 1016.3 24 4.9 24 4.8 24 8.0 999.9 76.3* 67.3* 99.99 999.9 110000 724050 13743 19570918 70.4 24 60.8 24 1020.7 24 1019.6 24 6.4 24 6.5 24 11.1 999.9 75.4* 65.3* 0.00I 999.9 000000 724050 13743 19570919 72.5 24 61.3 24 1021.4 24 1020.4 24 8.4 24 2.3 24 7.0 999.9 83.3* 66.4* 99.99 999.9 010000 724050 13743 19570920 72.1 24 64.3 24 1017.5 24 1016.5 24 8.3 24 5.6 24 8.9 999.9 78.3* 64.4* 0.00I 999.9 000000 724050 13743 19570921 78.0 24 69.5 24 1015.1 24 1014.1 24 8.7 24 5.7 24 8.0 999.9 88.3* 71.2* 0.00I 999.9 100000 724050 13743 19570922 80.3 24 72.2 24 1013.7 24 1012.7 24 12.5 24 5.8 24 8.9 999.9 89.2* 74.3* 0.00I 999.9 100000 724050 13743 19570923 73.0 24 62.3 24 1012.1 24 1011.1 24 11.7 24 7.6 24 9.9 999.9 82.4* 68.4* 99.99 999.9 010010 724050 13743 19570924 65.0 24 49.7 24 1017.4 24 1016.4 24 12.3 24 5.2 24 9.9 999.9 71.2* 57.4* 0.00I 999.9 000000 724050 13743 19570925 63.5 24 46.1 24 1019.2 24 1018.2 24 12.4 24 4.9 24 8.0 999.9 76.3* 52.3* 0.00I 999.9 000000 724050 13743 19570926 68.0 24 53.5 24 1017.7 24 1016.7 24 10.5 24 4.9 24 15.9 999.9 79.3* 59.4* 0.00I 999.9 000000 724050 13743 19570927 57.5 24 29.0 24 1026.2 24 1025.2 24 12.6 24 7.1 24 12.0 999.9 70.3* 46.4* 0.00I 999.9 000000 724050 13743 19570928 53.0 24 35.2 24 1029.9 24 1028.8 24 12.8 24 2.7 24 9.9 999.9 63.3* 45.3* 0.00I 999.9 000000 724050 13743 19570929 54.4 24 41.0 24 1029.3 24 1028.3 24 8.9 24 2.6 24 6.0 999.9 58.3* 50.4* 99.99 999.9 010000 724050 13743 19570930 59.5 24 46.9 24 1022.7 24 1021.7 24 6.5 24 4.9 24 8.9 999.9 66.4* 56.3* 99.99 999.9 010000 724050 13743 19571001 62.3 24 55.4 24 1015.5 24 1014.5 24 7.2 24 2.7 24 8.0 999.9 68.4* 57.4* 99.99 999.9 010000 724050 13743 19571002 64.8 24 50.2 24 1015.3 24 1014.3 24 9.7 24 5.6 24 12.0 999.9 73.4* 59.4* 0.00I 999.9 100000 724050 13743 19571003 60.9 24 41.6 24 1018.3 24 1017.3 24 13.4 24 4.1 24 9.9 999.9 68.4* 53.4* 0.00I 999.9 000000 724050 13743 19571004 57.2 24 40.3 24 1020.3 24 1019.2 24 12.1 24 6.1 24 12.0 999.9 65.3* 48.4* 0.00I 999.9 000000 724050 13743 19571005 57.9 24 46.4 24 1021.9 24 1020.8 24 9.8 24 7.5 24 13.0 999.9 63.3* 51.3* 0.00I 999.9 000000 724050 13743 19571006 56.9 24 49.9 24 1010.5 24 1009.5 24 4.6 24 11.8 24 28.9 999.9 61.3* 51.3* 99.99 999.9 110000 724050 13743 19571007 56.6 24 50.4 24 1010.3 24 1009.2 24 8.4 24 6.5 24 20.0 999.9 66.4* 50.4* 99.99 999.9 110000 724050 13743 19571008 61.0 24 51.7 24 1013.0 24 1012.0 24 8.4 24 6.7 24 18.1 999.9 67.3* 55.4* 99.99 999.9 010000 724050 13743 19571009 66.9 24 51.8 24 1015.5 24 1014.5 24 12.3 24 5.5 24 9.9 999.9 75.4* 61.3* 0.00I 999.9 000000 724050 13743 19571010 63.8 24 51.3 24 1015.6 24 1014.6 24 9.9 24 4.7 24 12.0 999.9 71.2* 57.4* 0.00I 999.9 000000 724050 13743 19571011 56.2 24 37.9 24 1021.8 24 1020.8 24 12.1 24 7.8 24 9.9 999.9 62.4* 50.4* 0.00I 999.9 000000 724050 13743 19571012 50.3 24 32.8 24 1028.7 24 1027.7 24 12.2 24 2.8 24 9.9 999.9 59.4* 42.4* 0.00I 999.9 000000 724050 13743 19571013 51.7 24 34.4 24 1029.1 24 1028.1 24 11.3 24 1.0 24 5.1 999.9 67.3* 41.4* 0.00I 999.9 000000 724050 13743 19571014 55.0 24 39.6 24 1028.2 24 1027.2 24 7.8 24 1.2 24 5.1 999.9 70.3* 43.3* 0.00I 999.9 000000 724050 13743 19571015 56.4 24 42.2 24 1027.4 24 1026.3 24 7.0 24 1.3 24 6.0 999.9 70.3* 45.3* 0.00I 999.9 000000 724050 13743 19571016 57.2 24 45.0 24 1025.0 24 1024.0 24 6.2 24 2.1 24 8.0 999.9 68.4* 48.4* 0.00I 999.9 000000 724050 13743 19571017 60.3 24 53.4 24 1019.5 24 1018.4 24 5.3 24 1.5 24 6.0 999.9 66.4* 55.4* 99.99 999.9 110000 724050 13743 19571018 62.0 24 58.0 24 1012.7 24 1011.7 24 5.3 24 4.5 24 12.0 999.9 64.4* 60.3* 99.99 999.9 110000 724050 13743 19571019 56.0 24 43.6 24 1014.2 24 1013.2 24 10.2 24 12.3 24 19.0 999.9 60.3* 50.4* 0.00I 999.9 000000 724050 13743 19571020 53.8 24 35.4 24 1020.9 24 1019.9 24 10.9 24 11.6 24 20.0 999.9 64.4* 47.3* 0.00I 999.9 000000 724050 13743 19571021 55.4 24 39.3 24 1032.0 24 1030.9 24 9.8 24 1.4 24 8.0 999.9 65.3* 46.4* 0.00I 999.9 000000 724050 13743 19571022 57.0 24 43.1 24 1033.4 24 1032.4 24 9.3 24 2.4 24 8.0 999.9 69.3* 48.4* 0.00I 999.9 000000 724050 13743 19571023 59.2 24 47.1 24 1025.2 24 1024.2 24 8.7 24 5.8 24 12.0 999.9 74.3* 47.3* 0.00I 999.9 000000 724050 13743 19571024 63.6 24 56.5 24 1009.3 24 1008.3 24 7.1 24 9.3 24 15.9 999.9 66.4* 59.4* 99.99 999.9 110000 724050 13743 19571025 54.6 24 41.9 24 1008.7 24 1007.7 24 9.5 24 11.9 24 20.0 999.9 59.4* 50.4* 0.00I 999.9 100000 724050 13743 19571026 44.2 24 30.0 24 1016.7 24 1015.7 24 11.8 24 8.5 24 14.0 999.9 50.4* 39.4* 0.00I 999.9 000000 724050 13743 19571027 42.8 24 26.3 24 1019.2 24 1018.2 24 10.8 24 8.9 24 15.0 999.9 48.4* 38.3* 99.99 999.9 010000 724050 13743 19571028 42.3 24 28.7 24 1021.9 24 1020.9 24 9.6 24 11.6 24 18.1 999.9 51.3* 36.3* 99.99 999.9 001000 724050 13743 19571029 49.0 24 30.0 24 1022.4 24 1021.3 24 11.5 24 5.8 24 9.9 999.9 64.4* 39.4* 0.00I 999.9 000000 724050 13743 19571030 52.9 24 37.2 24 1017.1 24 1016.1 24 9.7 24 5.9 24 9.9 999.9 56.3* 49.3* 99.99 999.9 010000 724050 13743 19571031 52.9 24 42.5 24 1016.8 24 1015.8 24 5.5 24 4.8 24 8.0 999.9 60.3* 46.4* 0.00I 999.9 000000 724050 13743 19571101 57.3 24 48.6 24 1014.6 24 1013.5 24 6.0 24 8.8 24 13.0 999.9 59.4* 54.3* 99.99 999.9 110000 724050 13743 19571102 58.4 24 55.5 24 1010.2 24 1009.2 24 4.2 24 8.7 24 12.0 999.9 60.3* 56.3* 99.99 999.9 110000 724050 13743 19571103 61.4 24 52.4 24 1010.6 24 1009.6 24 9.2 24 6.4 24 15.0 999.9 68.4* 56.3* 0.00I 999.9 000000 724050 13743 19571104 57.3 24 42.8 24 1012.7 24 1011.7 24 10.1 24 8.0 24 20.0 999.9 62.4* 52.3* 0.00I 999.9 000000 724050 13743 19571105 52.8 24 37.7 24 1015.3 24 1014.3 24 10.1 24 6.5 24 19.0 999.9 59.4* 45.3* 99.99 999.9 010000 724050 13743 19571106 48.5 24 36.3 24 1018.6 24 1017.5 24 10.3 24 11.5 24 18.1 999.9 55.4* 41.4* 99.99 999.9 010000 724050 13743 19571107 48.5 24 33.4 24 1022.3 24 1021.2 24 9.1 24 0.9 24 7.0 999.9 62.4* 37.4* 0.00I 999.9 000000 724050 13743 19571108 55.7 24 43.1 24 1014.9 24 1013.9 24 8.8 24 9.2 24 22.0 999.9 68.4* 47.3* 99.99 999.9 110000 724050 13743 19571109 51.3 24 32.5 24 1013.0 24 1012.0 24 10.4 24 10.8 24 25.1 999.9 63.3* 42.4* 0.00I 999.9 000000 724050 13743 19571110 38.7 23 20.0 23 1027.8 23 1026.8 23 11.9 23 15.6 23 28.9 999.9 45.3* 33.4* 0.00I 999.9 000000 724050 13743 19571111 38.0 24 16.8 24 1037.8 24 1036.8 24 11.9 24 5.6 24 9.9 999.9 48.4* 31.3* 0.00I 999.9 000000 724050 13743 19571112 38.0 24 22.8 24 1036.1 24 1035.0 24 7.4 24 1.7 24 8.0 999.9 52.3* 29.3* 0.00I 999.9 100000 724050 13743 19571113 42.4 24 31.7 24 1031.3 24 1030.3 24 7.4 24 0.3 24 2.9 999.9 58.3* 32.4* 0.00I 999.9 000000 724050 13743 19571114 55.1 24 50.1 24 1020.4 24 1019.3 24 6.4 24 4.4 24 14.0 999.9 62.4* 48.4* 99.99 999.9 110000 724050 13743 19571115 61.6 24 53.9 24 1011.4 24 1010.3 24 8.9 24 4.8 24 16.9 999.9 70.3* 55.4* 99.99 999.9 110000 724050 13743 19571116 54.9 24 48.8 24 1016.0 24 1015.0 24 6.0 24 0.9 24 5.1 999.9 62.4* 48.4* 0.00I 999.9 000000 724050 13743 19571117 57.5 24 47.9 24 1019.1 24 1018.0 24 8.0 24 3.0 24 11.1 999.9 64.4* 50.4* 0.00I 999.9 000000 724050 13743 19571118 51.3 24 45.2 24 1019.8 24 1018.7 24 3.6 24 1.7 24 7.0 999.9 55.4* 49.3* 99.99 999.9 110000 724050 13743 19571119 62.8 24 58.3 24 1005.7 24 1004.7 24 5.2 24 7.5 24 23.9 999.9 73.4* 54.3* 99.99 999.9 110000 724050 13743 19571120 49.7 24 29.2 24 1010.8 24 1009.8 24 11.9 24 11.9 24 18.1 999.9 58.3* 44.4* 0.00I 999.9 000000 724050 13743 19571121 47.1 24 28.7 24 1020.6 24 1019.6 24 11.0 24 5.6 24 15.0 999.9 59.4* 39.4* 0.00I 999.9 000000 724050 13743 19571122 47.4 24 28.6 24 1026.0 24 1025.0 24 10.6 24 6.1 24 14.0 999.9 54.3* 42.4* 99.99 999.9 010000 724050 13743 19571123 41.2 24 32.6 24 1021.4 24 1020.4 24 6.2 24 2.0 24 7.0 999.9 45.3* 37.4* 99.99 999.9 111000 724050 13743 19571124 45.7 24 36.5 24 1011.6 24 1010.6 24 8.6 24 8.0 24 12.0 999.9 58.3* 39.4* 0.00I 999.9 100000 724050 13743 19571125 45.9 24 30.0 24 1014.0 24 1013.0 24 9.9 24 5.3 24 11.1 999.9 51.3* 43.3* 0.00I 999.9 000000 724050 13743 19571126 40.5 24 28.1 24 1015.7 24 1014.7 24 9.1 24 1.9 24 11.1 999.9 46.4* 36.3* 0.00I 999.9 000000 724050 13743 19571127 41.7 24 32.8 24 1025.2 24 1024.2 24 6.3 24 3.0 24 9.9 999.9 56.3* 31.3* 0.00I 999.9 000000 724050 13743 19571128 52.4 24 46.0 24 1020.2 24 1019.2 24 6.2 24 7.1 24 11.1 999.9 58.3* 47.3* 99.99 999.9 110000 724050 13743 19571129 58.6 24 51.3 24 1009.8 24 1008.7 24 7.3 24 7.4 24 14.0 999.9 65.3* 55.4* 99.99 999.9 110000 724050 13743 19571130 46.3 24 39.1 24 1005.8 24 1004.7 24 5.9 24 4.5 24 12.0 999.9 54.3* 43.3* 99.99 999.9 110000 724050 13743 19571201 36.8 24 18.1 24 1014.7 24 1013.7 24 11.2 24 15.9 24 26.0 999.9 44.4* 28.4* 0.00I 999.9 000000 724050 13743 19571202 45.0 24 21.6 24 1015.2 24 1014.2 24 11.6 24 9.3 24 15.0 999.9 58.3* 37.4* 0.00I 999.9 000000 724050 13743 19571203 41.9 24 24.4 24 1019.5 24 1018.5 24 10.3 24 6.7 24 12.0 999.9 49.3* 38.3* 0.00I 999.9 000000 724050 13743 19571204 33.1 24 31.5 24 1006.9 24 1005.9 24 2.0 24 9.9 24 22.0 999.9 39.4* 31.3* 99.99 999.9 111000 724050 13743 19571205 30.8 24 21.4 24 1017.6 24 1016.6 24 10.8 24 16.1 24 22.0 999.9 35.4* 26.4* 0.00I 999.9 100000 724050 13743 19571206 34.1 24 25.5 24 1021.9 24 1020.8 24 8.3 24 3.4 24 8.9 999.9 48.4* 23.4* 99.99 999.9 010000 724050 13743 19571207 50.3 24 43.0 24 1013.2 24 1012.2 24 6.9 24 10.1 24 15.0 999.9 53.4* 48.4* 99.99 999.9 010000 724050 13743 19571208 50.5 24 48.4 24 1013.6 24 1012.5 24 3.8 24 4.4 24 11.1 999.9 55.4* 44.4* 99.99 999.9 110000 724050 13743 19571209 42.8 24 41.1 24 1012.8 24 1011.8 24 3.3 24 7.4 24 13.0 999.9 44.4* 41.4* 99.99 999.9 110000 724050 13743 19571210 38.3 24 34.2 24 1006.8 24 1005.8 24 4.6 24 10.4 24 15.0 999.9 42.4* 36.3* 99.99 999.9 110000 724050 13743 19571211 34.6 24 27.4 24 1001.9 24 1000.9 24 6.3 24 8.0 24 19.0 999.9 40.3* 26.4* 99.99 999.9 111000 724050 13743 19571212 19.9 24 2.2 24 1011.7 24 1010.7 24 11.4 24 18.8 24 26.0 999.9 27.3* 14.4* 0.00I 999.9 000000 724050 13743 19571213 24.7 24 7.6 24 1023.5 24 1022.5 24 11.2 24 9.1 24 15.0 999.9 35.4* 18.3* 0.00I 999.9 000000 724050 13743 19571214 39.4 24 23.7 24 1020.4 24 1019.3 24 9.8 24 6.5 24 13.0 999.9 54.3* 32.4* 0.00I 999.9 000000 724050 13743 19571215 45.2 24 29.8 24 1026.8 24 1025.8 24 9.8 24 4.5 24 15.9 999.9 51.3* 40.3* 0.00I 999.9 000000 724050 13743 19571216 44.7 24 33.7 24 1023.4 24 1022.4 24 8.5 24 6.5 24 14.0 999.9 59.4* 37.4* 0.00I 999.9 000000 724050 13743 19571217 44.9 24 28.5 24 1026.6 24 1025.6 24 9.1 24 5.7 24 12.0 999.9 53.4* 38.3* 0.00I 999.9 000000 724050 13743 19571218 40.9 24 30.6 24 1028.6 24 1027.6 24 7.0 24 1.3 24 8.0 999.9 47.3* 36.3* 99.99 999.9 010000 724050 13743 19571219 53.0 24 47.3 24 1022.0 24 1021.0 24 6.7 24 3.8 24 8.9 999.9 61.3* 45.3* 99.99 999.9 110000 724050 13743 19571220 58.9 24 56.6 24 1013.3 24 1012.3 24 4.5 24 8.1 24 18.1 999.9 63.3* 54.3* 99.99 999.9 110000 724050 13743 19571221 55.4 24 44.3 24 1010.2 24 1009.2 24 10.4 24 9.1 24 20.0 999.9 62.4* 50.4* 99.99 999.9 110000 724050 13743 19571222 49.0 24 30.9 24 1026.0 24 1025.0 24 11.8 24 0.6 24 7.0 999.9 61.3* 38.3* 0.00I 999.9 000000 724050 13743 19571223 48.7 24 32.5 24 1031.0 24 1030.0 24 10.6 24 5.7 24 11.1 999.9 63.3* 40.3* 0.00I 999.9 000000 724050 13743 19571224 53.3 24 40.6 24 1028.5 24 1027.5 24 10.8 24 8.4 24 15.0 999.9 58.3* 48.4* 99.99 999.9 010000 724050 13743 19571225 40.4 24 25.6 24 1032.6 24 1031.6 24 11.5 24 6.2 24 11.1 999.9 50.4* 33.4* 99.99 999.9 001000 724050 13743 19571226 42.7 24 39.4 24 1012.7 24 1011.7 24 5.6 24 5.3 24 18.1 999.9 51.3* 35.4* 99.99 999.9 110000 724050 13743 19571227 43.2 24 28.6 24 1016.8 24 1015.8 24 11.7 24 12.0 24 19.0 999.9 47.3* 40.3* 0.00I 999.9 000000 724050 13743 19571228 41.3 24 33.1 24 1015.2 24 1014.2 24 8.1 24 4.6 24 8.9 999.9 50.4* 34.3* 0.00I 999.9 000000 724050 13743 19571229 43.1 24 29.5 24 1015.0 24 1014.0 24 10.3 24 8.5 24 18.1 999.9 49.3* 38.3* 99.99 999.9 010000 724050 13743 19571230 38.6 24 23.0 24 1022.9 24 1021.9 24 8.5 24 1.5 24 6.0 999.9 52.3* 32.4* 0.00I 999.9 000000 724050 13743 19571231 39.0 24 30.2 24 1025.5 24 1024.5 24 5.6 24 2.5 24 8.9 999.9 50.4* 30.4* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1994/0000755000175000017500000000000014302004506015106 5ustar nileshnileshfluids-1.0.22/tests/gsod/1994/724050-13743.op0000644000175000017500000014327214302004506016677 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19940101 29.4 24 21.9 24 1026.2 24 1023.8 24 10.5 24 6.5 24 14.0 999.9 39.9* 15.1 0.00G 1.2 000000 724050 13743 19940102 39.8 24 32.3 24 1016.5 24 1014.2 24 10.8 24 7.1 24 13.0 999.9 48.9* 21.9 0.07G 0.4 010000 724050 13743 19940103 37.1 24 27.4 24 1019.2 24 1016.8 24 12.4 24 9.7 24 15.9 999.9 48.9 32.0 0.00G 0.4 000000 724050 13743 19940104 34.7 24 32.2 24 997.9 24 995.5 24 6.0 24 13.2 24 24.9 30.9 41.0 33.1 0.51G 0.4 111000 724050 13743 19940105 32.7 24 19.0 24 1013.0 24 1010.6 24 14.0 24 10.6 24 15.0 22.9 39.0 28.0 0.02G 999.9 000000 724050 13743 19940106 32.1 24 17.6 24 1023.7 24 1021.3 24 14.1 24 7.5 24 14.0 999.9 42.1* 28.0 0.00G 999.9 000000 724050 13743 19940107 34.6 24 31.0 24 1014.4 24 1012.0 24 7.3 24 7.3 24 10.1 999.9 42.1 28.0 0.37G 999.9 110000 724050 13743 19940108 34.5 24 27.0 24 1012.0 24 1009.6 24 9.4 24 10.9 24 20.0 29.9 39.0 25.0* 0.64G 999.9 110000 724050 13743 19940109 22.9 24 5.4 24 1029.0 24 1026.7 24 16.2 24 11.5 24 15.9 22.9 39.0 18.0 0.16G 999.9 000000 724050 13743 19940110 24.2 24 9.1 24 1041.1 24 1038.7 24 14.7 24 6.8 24 10.1 999.9 32.0* 18.0 0.00G 999.9 000000 724050 13743 19940111 30.7 24 21.4 24 1035.8 24 1033.4 24 11.4 24 8.3 24 12.0 999.9 42.1* 18.0 0.00G 999.9 000000 724050 13743 19940112 35.4 24 34.7 24 1023.7 24 1021.3 24 3.8 23 6.6 24 11.1 999.9 42.1 24.1 0.64G 999.9 110000 724050 13743 19940113 33.8 24 32.6 24 1013.4 24 1011.1 24 3.6 24 5.9 24 11.1 999.9 37.0 28.9 0.33G 999.9 100000 724050 13743 19940114 35.9 24 31.9 24 1004.6 24 1002.3 24 4.0 24 7.2 24 21.0 28.0 41.0 28.9 0.03G 999.9 111000 724050 13743 19940115 15.8 24 -6.9 24 1015.9 24 1013.5 24 17.1 24 16.3 24 24.1 35.0 41.0 10.0* 0.02G 999.9 000000 724050 13743 19940116 9.9 24 -10.6 24 1036.6 24 1034.2 24 17.2 24 10.8 24 18.1 23.9 18.0 3.9 0.00G 999.9 000000 724050 13743 19940117 19.5 24 8.8 24 1028.4 24 1026.0 24 11.0 24 9.9 24 17.1 24.9 28.0* 3.9 0.19G 1.2 111000 724050 13743 19940118 23.9 24 14.9 24 1015.1 24 1012.7 24 14.0 24 13.2 24 21.0 28.9 35.1 9.0* 0.90G 0.4 111000 724050 13743 19940119 2.0 24 -12.2 24 1036.1 24 1033.7 24 16.4 24 12.3 24 20.0 28.0 8.1* -4.0 0.00G 0.4 000000 724050 13743 19940120 10.5 24 3.0 24 1038.7 24 1036.3 24 6.7 24 5.0 24 7.0 999.9 18.0 -4.0 0.09G 2.4 101000 724050 13743 19940121 13.8 24 2.5 24 1037.7 24 1035.4 24 12.6 24 6.5 24 10.1 999.9 23.0* 3.0 0.04G 2.0 000000 724050 13743 19940122 21.6 24 13.9 24 1026.6 24 1024.3 24 9.9 24 7.0 24 12.0 999.9 39.9* 3.0 0.00G 1.2 000000 724050 13743 19940123 30.5 24 19.3 24 1025.7 24 1023.3 24 15.1 24 6.8 24 12.0 999.9 42.1* 10.9 0.00G 0.4 000000 724050 13743 19940124 43.9 24 34.9 24 1019.0 24 1016.6 24 13.8 24 6.0 24 8.9 999.9 60.1* 19.0 0.00G 0.4 000000 724050 13743 19940125 39.5 24 34.3 24 1024.9 24 1022.6 24 9.1 24 3.9 24 8.9 999.9 61.0 30.9 0.00G 999.9 100000 724050 13743 19940126 34.6 24 32.5 24 1024.8 24 1022.4 24 3.8 24 9.7 24 15.0 19.8 46.9 27.0* 0.21G 999.9 111000 724050 13743 19940127 23.4 24 20.0 24 1036.3 24 1033.9 24 5.6 24 11.5 24 15.0 999.9 37.0 21.9 0.00G 0.4 111000 724050 13743 19940128 29.6 24 28.8 24 1016.5 24 1014.1 24 2.4 24 6.3 24 17.9 22.9 39.9* 21.9 0.60G 0.4 110000 724050 13743 19940129 40.1 24 33.1 24 1013.3 24 1010.9 24 9.4 24 9.3 24 15.0 21.0 45.0 24.1 0.42G 999.9 100000 724050 13743 19940130 35.5 24 23.8 24 1023.0 24 1020.7 24 11.2 24 9.0 24 12.0 24.9 46.0 30.0 0.00G 999.9 001000 724050 13743 19940131 32.6 24 20.0 24 1023.6 24 1021.3 24 11.0 24 6.4 24 10.1 999.9 39.0 28.9 0.01G 0.4 001000 724050 13743 19940201 30.0 24 17.3 24 1022.9 24 1020.5 24 11.9 24 8.1 24 15.0 999.9 39.9 26.1 0.00G 999.9 000000 724050 13743 19940202 26.9 24 9.2 24 1025.7 24 1023.3 24 13.7 24 7.6 24 10.1 999.9 33.1 23.0 0.00G 999.9 000000 724050 13743 19940203 31.5 24 17.3 24 1020.3 24 1018.0 24 14.0 24 11.8 24 18.1 26.8 46.0 23.0 0.00G 999.9 000000 724050 13743 19940204 33.5 24 20.0 24 1025.9 24 1023.5 24 15.8 24 6.8 24 11.1 999.9 46.9 25.0 0.00G 999.9 000000 724050 13743 19940205 35.8 24 27.0 24 1015.6 24 1013.2 24 11.3 24 5.6 24 10.1 999.9 45.0 26.1 0.00G 999.9 010000 724050 13743 19940206 35.9 24 31.3 24 1016.5 24 1014.2 24 8.7 24 6.7 24 11.1 999.9 48.0* 27.0 0.00B 999.9 100000 724050 13743 19940207 40.1 24 28.1 24 1019.7 24 1017.3 24 10.8 24 6.3 24 13.0 999.9 55.0 27.0 0.00G 999.9 100000 724050 13743 19940208 33.7 24 23.7 24 1021.7 24 1019.3 24 10.4 24 9.7 24 15.0 999.9 55.9 27.0* 0.00G 999.9 111000 724050 13743 19940209 31.5 24 30.8 24 1009.4 24 1007.0 24 4.2 24 7.0 24 11.8 999.9 37.0 27.0 0.76G 0.4 111000 724050 13743 19940210 21.4 24 13.7 24 1029.4 24 1027.0 24 11.7 24 10.7 24 17.1 22.9 33.1 17.1 0.23G 0.4 111000 724050 13743 19940211 23.9 24 21.0 24 1027.7 24 1025.3 24 4.8 24 9.6 24 15.0 999.9 30.9* 17.1 0.99G 3.1 111000 724050 13743 19940212 28.8 24 27.0 24 1025.7 24 1023.3 24 3.9 24 7.3 24 11.1 999.9 30.9 19.9 0.28G 3.1 111000 724050 13743 19940213 33.0 24 31.5 24 1019.2 24 1016.8 24 3.1 24 5.0 24 10.1 999.9 42.1* 27.0 0.02G 2.8 110000 724050 13743 19940214 37.1 24 21.4 24 1021.8 24 1019.4 24 14.5 24 10.0 24 17.1 23.9 44.1* 30.9 0.00G 1.6 000000 724050 13743 19940215 36.7 24 26.6 24 1022.6 24 1020.3 24 11.1 24 5.6 24 10.1 999.9 50.0* 27.0 0.00G 1.2 100000 724050 13743 19940216 43.9 24 23.2 24 1025.8 24 1023.5 24 15.1 24 8.7 24 15.9 999.9 50.0 27.0 0.00G 0.8 000000 724050 13743 19940217 38.4 24 26.4 24 1031.9 24 1029.6 24 12.3 24 5.9 24 14.0 999.9 51.1 28.0 0.00G 0.4 100000 724050 13743 19940218 42.6 24 30.0 24 1030.6 24 1028.3 24 11.4 24 2.5 24 6.0 999.9 61.0* 28.0 0.00G 999.9 000000 724050 13743 19940219 45.8 24 35.9 24 1031.4 24 1029.0 24 11.4 24 7.1 24 15.0 19.8 63.0* 30.0 0.00G 0.4 100000 724050 13743 19940220 51.2 24 44.5 24 1027.4 24 1025.1 24 10.2 24 6.6 24 14.0 999.9 66.9* 33.1 0.00G 999.9 100000 724050 13743 19940221 51.1 24 48.9 24 1020.4 24 1018.1 24 8.7 24 5.7 24 8.9 999.9 68.0 37.9 0.00G 999.9 110000 724050 13743 19940222 44.9 24 37.0 24 1024.5 24 1022.1 24 9.5 24 7.5 24 11.1 999.9 54.0 37.0 0.08G 999.9 100000 724050 13743 19940223 38.8 24 33.7 24 1021.2 24 1018.9 24 6.8 24 10.1 24 15.9 999.9 54.0 34.0 0.71G 999.9 111000 724050 13743 19940224 41.0 24 34.6 24 1006.0 24 1003.7 24 7.8 24 9.4 24 15.0 19.8 51.1* 34.0 0.22G 999.9 110000 724050 13743 19940225 38.3 24 20.6 24 1016.3 24 1014.0 24 17.9 24 7.9 24 15.0 24.9 52.0 32.0 0.23G 999.9 000000 724050 13743 19940226 36.6 24 20.1 24 1013.0 24 1010.7 24 12.8 24 14.5 24 24.9 35.0 48.9 30.9 0.00G 999.9 010000 724050 13743 19940227 24.1 24 2.2 24 1027.7 24 1025.4 24 14.9 24 15.1 24 20.0 26.8 42.1 16.0 0.00I 999.9 000000 724050 13743 19940228 27.3 24 3.4 24 1031.7 24 1029.3 24 14.8 24 7.8 24 13.0 999.9 37.9* 16.0 0.00G 999.9 000000 724050 13743 19940301 32.5 24 22.5 24 1029.1 24 1026.7 24 8.0 24 5.6 24 8.9 999.9 39.0 19.0 0.02G 999.9 101000 724050 13743 19940302 32.1 24 31.3 24 1019.3 24 1016.9 24 3.0 24 13.7 24 26.8 36.9 35.1 30.0 0.88G 3.1 111000 724050 13743 19940303 36.5 24 32.7 24 993.3 24 990.9 24 6.7 24 19.5 24 28.9 42.9 42.1* 30.0 1.17G 0.4 110000 724050 13743 19940304 44.7 24 30.4 24 999.2 24 996.8 24 11.3 24 10.2 24 18.1 25.8 60.1* 33.1 0.02G 999.9 000000 724050 13743 19940305 46.0 24 31.6 24 1008.2 24 1005.9 24 11.3 24 11.0 24 18.1 29.9 61.0 36.0 0.00G 999.9 000000 724050 13743 19940306 41.9 24 27.4 24 1022.3 24 1019.9 24 12.3 24 6.7 24 12.0 999.9 52.0 32.0 0.00G 999.9 000000 724050 13743 19940307 47.3 24 34.7 24 1020.5 24 1018.1 24 11.1 24 6.7 24 15.0 999.9 73.0* 32.0 0.00G 999.9 000000 724050 13743 19940308 50.3 24 45.5 24 1016.8 24 1014.4 24 5.7 24 8.4 24 17.9 24.9 57.9* 35.1 0.20G 999.9 110000 724050 13743 19940309 37.2 24 27.5 24 1025.5 24 1023.1 24 8.6 24 10.0 24 14.0 999.9 52.0 33.1 0.07G 999.9 111000 724050 13743 19940310 38.0 24 34.5 24 1012.8 24 1010.4 24 6.5 24 7.2 24 18.1 22.9 46.9* 32.0 1.24G 999.9 110000 724050 13743 19940311 38.2 24 20.9 24 1021.6 24 1019.3 24 16.4 24 14.8 24 18.1 28.0 48.0 30.9 0.48G 999.9 000000 724050 13743 19940312 39.4 24 21.3 24 1034.0 24 1031.6 24 14.8 24 6.9 24 12.0 999.9 48.9* 28.9 0.00G 999.9 000000 724050 13743 19940313 44.0 24 29.0 24 1026.0 24 1023.6 24 13.2 24 9.5 24 14.0 25.8 60.1* 28.9 0.00G 999.9 010000 724050 13743 19940314 50.4 24 33.4 24 1013.3 24 1010.9 24 13.8 24 7.9 24 14.0 999.9 60.1 35.1 0.00G 999.9 000000 724050 13743 19940315 49.3 24 35.4 24 1005.8 24 1003.4 24 13.7 24 7.1 24 15.9 21.0 63.0* 39.9 0.02G 999.9 010000 724050 13743 19940316 45.1 24 22.8 24 1003.7 24 1001.3 24 15.8 24 15.3 24 22.0 31.9 64.9 36.0* 0.01G 999.9 010000 724050 13743 19940317 32.5 24 4.5 24 1010.2 24 1007.8 24 17.7 24 17.0 24 22.9 35.9 50.0 24.1 0.00G 999.9 000000 724050 13743 19940318 37.4 24 25.0 24 1003.6 24 1001.3 24 9.6 24 6.7 24 15.0 21.0 48.0* 24.1 0.14G 0.4 111000 724050 13743 19940319 43.3 24 24.8 24 1005.0 24 1002.6 24 14.2 24 14.8 24 24.1 36.9 50.0 30.9 0.02G 999.9 010000 724050 13743 19940320 47.3 24 23.3 24 1011.3 24 1009.0 24 13.9 24 10.4 24 15.9 21.0 61.0* 34.0 0.00G 999.9 000000 724050 13743 19940321 44.8 24 33.2 24 1013.8 24 1011.5 24 10.8 24 6.3 24 13.0 999.9 62.1 35.1 0.01G 999.9 110000 724050 13743 19940322 50.9 24 36.3 24 1009.4 24 1007.0 24 12.1 24 11.2 24 21.0 28.9 62.1* 39.0 0.61G 999.9 110000 724050 13743 19940323 55.7 24 36.6 24 1013.4 24 1011.0 24 12.8 24 8.7 24 15.9 22.9 81.0* 39.0 0.00G 999.9 000000 724050 13743 19940324 63.2 24 43.0 24 1010.8 24 1008.5 24 11.9 24 9.5 24 13.0 999.9 82.9 39.0 0.00G 999.9 010000 724050 13743 19940325 58.0 24 47.4 24 1009.1 24 1006.8 24 10.1 24 10.7 24 17.1 22.9 79.0 50.0* 0.33G 999.9 110000 724050 13743 19940326 41.0 24 25.8 24 1020.3 24 1018.0 24 13.2 24 10.2 24 19.0 28.0 48.9* 33.1 0.08G 999.9 000000 724050 13743 19940327 43.9 24 40.5 24 1014.2 24 1011.8 24 5.7 24 6.4 24 10.1 999.9 50.0 33.1 1.29G 999.9 110000 724050 13743 19940328 50.5 24 49.9 24 1007.5 24 1005.2 24 4.4 24 7.2 24 14.0 999.9 55.9 41.0 1.52G 999.9 110010 724050 13743 19940329 46.5 24 42.8 24 1014.7 24 1012.3 24 7.0 24 9.1 24 15.9 999.9 55.9 41.0 0.87G 999.9 110000 724050 13743 19940330 47.2 24 29.9 24 1025.9 24 1023.6 24 14.1 24 8.9 24 15.0 19.8 55.9* 39.0 0.10G 999.9 000000 724050 13743 19940331 47.2 24 37.8 24 1025.1 24 1022.7 24 10.0 24 5.8 24 11.1 999.9 57.9 39.0 0.01G 999.9 110000 724050 13743 19940401 50.8 24 39.2 24 1018.3 24 1016.0 24 9.9 24 8.2 24 13.0 15.9 61.0* 39.0 0.08G 999.9 110000 724050 13743 19940402 54.8 24 38.8 24 1021.1 24 1018.8 24 11.8 24 6.8 24 14.0 19.8 70.0* 39.9 0.00G 999.9 000000 724050 13743 19940403 60.7 24 43.9 24 1015.2 24 1012.8 24 12.9 24 12.3 24 18.1 29.9 73.9 39.9 0.00G 999.9 000000 724050 13743 19940404 52.8 24 40.4 24 1016.1 24 1013.7 24 11.6 24 9.3 24 17.1 24.9 75.0 41.0 0.04G 999.9 010000 724050 13743 19940405 54.3 24 43.7 24 1015.8 24 1013.4 24 11.9 24 7.9 24 13.0 17.9 73.0* 41.0 0.00G 999.9 100000 724050 13743 19940406 61.1 24 56.0 24 1009.4 24 1007.0 24 9.2 24 9.7 24 16.9 21.0 73.0 57.9* 0.16G 999.9 110000 724050 13743 19940407 55.2 24 45.7 24 1012.3 24 1009.9 24 11.2 24 11.2 24 20.0 30.9 69.1 46.9 0.50G 999.9 110000 724050 13743 19940408 46.2 24 24.6 24 1029.9 24 1027.5 24 15.2 24 7.2 24 14.0 19.8 64.9 36.0 0.00I 999.9 000000 724050 13743 19940409 51.6 24 38.1 24 1028.6 24 1026.2 24 13.0 24 10.4 24 15.0 22.9 68.0* 36.0 0.00G 999.9 000000 724050 13743 19940410 63.0 24 55.2 24 1018.3 24 1015.9 24 12.0 24 12.3 24 17.1 28.0 72.0* 59.0* 0.15G 999.9 010010 724050 13743 19940411 56.2 24 45.9 24 1027.4 24 1025.0 24 12.5 24 8.0 24 15.0 999.9 73.0 48.0 0.04G 999.9 010000 724050 13743 19940412 55.5 24 47.3 24 1028.0 24 1025.6 24 12.6 24 7.5 24 12.8 999.9 64.0* 48.0 0.00G 999.9 010000 724050 13743 19940413 59.1 24 57.9 24 1012.9 24 1010.5 24 5.4 24 9.0 24 24.9 999.9 75.0* 51.1 0.42G 999.9 110010 724050 13743 19940414 62.7 24 54.7 24 1010.5 24 1008.1 24 10.8 24 7.7 24 14.0 19.8 75.9 50.0 0.41G 999.9 110010 724050 13743 19940415 67.9 24 53.9 24 1015.0 24 1012.6 24 12.9 24 10.1 24 15.0 22.0 80.1 50.0 0.00G 999.9 000000 724050 13743 19940416 67.4 24 54.8 24 1010.0 24 1007.6 24 13.5 24 13.8 24 19.8 31.9 80.1 54.0 0.22G 999.9 110010 724050 13743 19940417 60.1 24 36.8 24 1015.3 24 1012.9 24 15.2 24 10.7 24 15.9 26.8 71.1 48.9 0.16G 999.9 000000 724050 13743 19940418 61.2 24 36.5 24 1019.7 24 1017.3 24 18.4 24 7.8 24 12.0 999.9 72.0* 48.9 0.00G 999.9 000000 724050 13743 19940419 68.1 24 47.4 24 1014.9 24 1012.6 24 15.4 24 10.7 24 15.9 22.9 82.0* 48.9 0.00G 999.9 000000 724050 13743 19940420 70.0 24 41.5 24 1015.5 24 1013.2 24 14.2 24 11.4 24 17.1 22.9 82.9 60.1 0.00G 999.9 010000 724050 13743 19940421 60.4 24 34.7 24 1018.7 24 1016.3 24 13.0 24 7.4 24 15.0 18.8 73.0 52.0 0.00G 999.9 000000 724050 13743 19940422 56.8 24 26.0 24 1019.6 24 1017.2 24 13.1 24 8.8 24 12.0 21.0 69.1 50.0 0.00G 999.9 010000 724050 13743 19940423 54.2 24 33.2 24 1021.3 24 1018.9 24 13.1 24 6.4 24 11.1 999.9 64.9* 44.1 0.00G 999.9 000000 724050 13743 19940424 61.0 24 42.3 24 1015.2 24 1012.9 24 13.8 24 9.5 24 14.0 17.9 82.0* 44.1 0.00G 999.9 000000 724050 13743 19940425 70.1 24 52.2 24 1011.4 24 1009.1 24 12.9 24 7.1 24 12.0 999.9 87.1* 46.9 0.00G 999.9 000000 724050 13743 19940426 71.3 24 58.5 24 1013.3 24 1010.9 24 8.7 24 6.7 24 12.0 999.9 87.1 55.0 0.00G 999.9 000000 724050 13743 19940427 73.7 24 65.5 24 1014.1 24 1011.8 24 9.6 24 7.8 24 15.9 26.8 89.1 61.0 0.00G 999.9 010010 724050 13743 19940428 71.6 24 56.7 24 1020.4 24 1018.0 24 13.5 24 7.1 24 13.0 999.9 90.0 64.0 0.05G 999.9 000000 724050 13743 19940429 64.6 24 58.7 24 1024.3 24 1021.9 24 7.7 24 6.5 24 10.1 999.9 82.0 59.0 0.00G 999.9 110000 724050 13743 19940430 69.8 24 65.0 24 1019.8 24 1017.4 24 6.3 24 6.1 24 12.0 999.9 81.0 59.0 0.00G 999.9 110000 724050 13743 19940501 70.4 24 59.5 24 1011.6 24 1009.3 24 10.1 24 11.6 24 18.1 24.9 82.0 62.1 0.02G 999.9 010000 724050 13743 19940502 54.6 24 35.0 24 1021.8 24 1019.4 24 14.0 24 12.2 24 19.0 25.8 77.0 44.1 0.03G 999.9 000000 724050 13743 19940503 56.6 24 37.9 24 1026.4 24 1024.0 24 13.1 24 7.1 24 12.0 999.9 66.9 44.1 0.00G 999.9 000000 724050 13743 19940504 53.2 24 46.3 24 1022.3 24 1019.9 24 9.4 24 11.8 24 17.1 999.9 66.9 46.0 0.18G 999.9 110000 724050 13743 19940505 57.7 24 50.0 24 1014.5 24 1012.2 24 8.7 24 11.4 24 15.9 22.9 70.0* 50.0 0.33G 999.9 110000 724050 13743 19940506 59.0 24 45.6 24 1013.7 24 1011.3 24 9.4 24 9.0 24 20.0 25.8 71.1 50.0 0.02G 999.9 110000 724050 13743 19940507 53.8 24 46.6 24 1016.3 24 1014.0 24 9.5 24 5.0 24 8.9 999.9 69.1 46.9 0.17G 999.9 110000 724050 13743 19940508 56.6 24 50.7 24 1006.4 24 1004.0 24 6.9 24 9.0 24 17.9 23.9 63.0 46.9 0.49G 999.9 110000 724050 13743 19940509 59.8 24 48.0 24 1012.7 24 1010.3 24 13.3 24 8.2 24 15.0 19.8 73.0* 46.0 0.07G 999.9 000000 724050 13743 19940510 62.8 24 49.3 24 1015.4 24 1013.0 24 12.6 24 7.4 24 13.0 18.8 73.0 46.0 0.00G 999.9 000000 724050 13743 19940511 60.5 24 47.8 24 1020.0 24 1017.6 24 12.2 24 7.3 24 14.0 21.0 73.9 45.0 0.00G 999.9 000000 724050 13743 19940512 65.3 24 53.1 24 1010.0 24 1007.6 24 10.7 24 12.4 24 22.9 32.8 75.9 60.1* 0.05G 999.9 110000 724050 13743 19940513 58.2 24 35.2 24 1016.4 24 1014.0 24 17.4 24 11.7 24 19.0 26.8 73.0 48.0 0.00D 999.9 000000 724050 13743 19940514 60.7 24 39.4 24 1019.2 24 1016.8 24 15.9 24 5.5 24 8.9 999.9 72.0* 46.9 0.00G 999.9 000000 724050 13743 19940515 67.9 24 58.0 24 1012.5 24 1010.1 24 13.7 24 5.8 24 11.1 18.8 84.0 46.9 0.00G 999.9 010010 724050 13743 19940516 71.7 24 59.5 24 1007.2 24 1004.9 24 11.0 24 10.5 24 17.1 37.9 87.1 57.0 0.18G 999.9 110010 724050 13743 19940517 56.7 24 43.5 24 1012.2 24 1009.9 24 14.6 24 14.6 24 20.0 31.9 64.0* 51.1 0.01G 999.9 010000 724050 13743 19940518 55.9 24 44.7 24 1015.1 24 1012.7 24 12.6 24 10.9 24 14.0 19.8 64.9 48.0 0.00G 999.9 000000 724050 13743 19940519 55.6 24 46.9 24 1016.0 24 1013.7 24 9.9 24 10.4 24 15.0 999.9 64.9 48.0 0.00G 999.9 010000 724050 13743 19940520 52.9 24 49.7 24 1018.1 24 1015.8 24 8.3 24 7.3 24 15.0 19.8 62.1 50.0 0.02G 999.9 110000 724050 13743 19940521 59.8 24 46.5 24 1018.8 24 1016.4 24 10.5 24 5.2 24 10.1 999.9 78.1* 45.0 0.00G 999.9 100000 724050 13743 19940522 68.7 24 52.8 24 1016.4 24 1014.0 24 12.1 24 4.8 24 11.1 999.9 84.9* 45.0 0.00G 999.9 000000 724050 13743 19940523 75.2 24 59.7 24 1010.4 24 1008.1 24 11.3 24 7.0 24 11.1 17.9 91.0* 52.0 0.00G 999.9 000000 724050 13743 19940524 79.4 24 56.1 24 1011.1 24 1008.7 24 12.8 24 7.1 24 11.1 999.9 91.9 59.0 0.00G 999.9 000000 724050 13743 19940525 74.1 24 65.9 24 1006.6 24 1004.3 24 7.3 24 8.0 24 24.9 39.8 90.0 64.0 0.07G 999.9 110010 724050 13743 19940526 69.8 24 65.5 24 1003.9 24 1001.5 24 5.6 24 8.4 24 15.0 18.8 89.1 62.1 0.02G 999.9 110000 724050 13743 19940527 63.1 24 45.8 24 1008.9 24 1006.5 24 13.8 24 12.4 24 15.9 25.8 84.9 52.0 0.00G 999.9 000000 724050 13743 19940528 62.0 24 35.5 24 1019.5 24 1017.2 24 17.4 24 6.9 24 10.1 999.9 73.0* 48.0 0.00G 999.9 000000 724050 13743 19940529 66.5 24 51.4 24 1021.5 24 1019.1 24 13.9 24 7.2 24 11.1 999.9 81.0* 48.0 0.00G 999.9 000000 724050 13743 19940530 72.4 24 58.3 24 1023.3 24 1021.0 24 14.2 24 11.1 24 15.0 19.8 84.0* 54.0 0.00G 999.9 000000 724050 13743 19940531 72.8 24 61.5 24 1020.9 24 1018.5 24 14.0 24 9.5 24 14.0 19.8 86.0* 60.1 0.00G 999.9 000000 724050 13743 19940601 77.1 24 63.8 24 1011.5 24 1009.1 24 10.6 24 10.1 24 14.0 17.9 91.0* 60.1 0.00G 999.9 000000 724050 13743 19940602 70.6 24 42.9 24 1014.3 24 1011.9 24 16.1 24 11.5 24 15.9 21.0 91.9 60.1 0.00G 999.9 000000 724050 13743 19940603 68.2 24 47.0 24 1019.7 24 1017.3 24 14.4 24 7.5 24 12.0 999.9 79.0* 54.0 0.00G 999.9 000000 724050 13743 19940604 71.8 24 56.5 24 1018.3 24 1015.9 24 12.7 24 5.9 24 10.1 999.9 84.0* 54.0 0.00G 999.9 000000 724050 13743 19940605 73.8 24 61.5 24 1018.1 24 1015.7 24 11.5 24 9.3 24 15.0 999.9 84.9 57.9 0.00G 999.9 000000 724050 13743 19940606 77.0 24 69.0 24 1013.9 24 1011.6 24 9.2 24 10.7 24 15.9 21.0 88.0* 66.0 0.00G 999.9 000000 724050 13743 19940607 82.0 24 72.0 24 1008.1 24 1005.8 24 8.5 24 9.3 24 15.0 24.9 95.0 70.0 0.00G 999.9 010010 724050 13743 19940608 78.8 24 68.8 24 1008.5 24 1006.2 24 7.2 24 7.8 24 18.1 24.9 97.0 73.0 0.00G 999.9 110010 724050 13743 19940609 68.7 24 47.9 24 1016.5 24 1014.1 24 16.9 24 8.6 24 13.0 999.9 87.1 57.9 0.00G 999.9 000000 724050 13743 19940610 72.6 24 54.0 24 1017.5 24 1015.1 24 11.4 24 5.3 24 10.1 999.9 84.9* 57.9 0.00G 999.9 000000 724050 13743 19940611 69.5 24 63.2 24 1019.1 24 1016.7 24 10.8 24 7.3 24 11.1 999.9 86.0 57.9 0.01G 999.9 110000 724050 13743 19940612 75.9 24 69.5 24 1017.9 24 1015.5 24 10.2 24 9.2 24 13.0 999.9 86.0 64.9 0.03G 999.9 000000 724050 13743 19940613 80.2 24 72.4 24 1018.0 24 1015.6 24 6.3 24 8.4 24 15.0 999.9 93.0* 71.1* 0.00G 999.9 100000 724050 13743 19940614 84.2 24 73.5 24 1017.3 24 1014.9 24 7.0 24 8.4 24 12.0 999.9 97.0 70.0 0.00G 999.9 000000 724050 13743 19940615 86.9 24 74.9 24 1020.0 24 1017.6 24 5.7 24 6.3 24 15.9 21.0 100.0* 73.9 0.00G 999.9 010010 724050 13743 19940616 82.2 24 75.6 24 1021.0 24 1018.7 24 5.1 24 5.2 24 22.0 28.0 100.9 75.9 0.08G 999.9 110010 724050 13743 19940617 80.2 24 73.4 24 1020.3 24 1017.9 24 4.4 24 6.2 24 11.1 999.9 99.0 73.9 0.12G 999.9 100000 724050 13743 19940618 82.1 24 72.4 24 1019.1 24 1016.8 24 5.2 24 6.1 24 10.1 999.9 93.0 73.9 0.00G 999.9 100000 724050 13743 19940619 84.5 24 73.7 24 1016.7 24 1014.4 24 5.8 24 6.6 24 13.0 19.8 97.0 73.9 0.00G 999.9 110010 724050 13743 19940620 83.9 24 71.3 24 1017.1 24 1014.7 24 8.5 24 9.3 24 13.0 999.9 99.0 75.0 0.00G 999.9 010010 724050 13743 19940621 80.4 24 71.5 24 1013.5 24 1011.1 24 9.4 24 7.7 24 13.0 999.9 93.0 73.0 0.00G 999.9 010010 724050 13743 19940622 81.4 24 66.0 24 1010.7 24 1008.3 24 8.9 24 9.2 24 14.0 999.9 93.0 73.0 0.02G 999.9 110010 724050 13743 19940623 82.8 24 67.2 24 1010.4 24 1008.0 24 7.8 24 5.7 24 19.8 25.8 93.0 73.0 0.00G 999.9 110010 724050 13743 19940624 79.4 24 74.4 24 1004.7 24 1002.4 24 4.3 24 7.6 24 16.9 23.9 93.0 73.0 0.32G 999.9 110010 724050 13743 19940625 83.2 24 68.1 24 1003.9 24 1001.5 24 12.3 24 12.9 24 19.0 23.9 93.9 73.0 0.26G 999.9 100000 724050 13743 19940626 78.6 24 60.0 24 1013.0 24 1010.7 24 12.3 24 9.3 24 20.0 38.9 93.0 66.9 0.00G 999.9 000000 724050 13743 19940627 77.8 24 68.4 24 1009.7 24 1007.4 24 11.6 24 12.0 24 22.0 28.0 91.9 66.9 0.08G 999.9 000000 724050 13743 19940628 77.4 24 64.6 24 1012.5 24 1010.1 24 11.9 24 8.8 24 13.0 999.9 88.0* 68.0 0.35G 999.9 010000 724050 13743 19940629 80.9 24 70.2 24 1009.7 24 1007.4 24 7.7 24 11.0 24 19.8 28.0 90.0* 68.0 0.00G 999.9 010010 724050 13743 19940630 74.6 24 68.2 24 1010.2 24 1007.9 24 9.2 24 9.4 24 15.9 26.8 91.0 69.1 0.32G 999.9 010010 724050 13743 19940701 77.8 24 64.5 24 1015.6 24 1013.3 24 10.1 24 6.5 24 8.9 999.9 88.0* 70.0 0.00G 999.9 000000 724050 13743 19940702 80.9 24 69.9 24 1016.2 24 1013.8 24 7.5 24 7.1 24 13.0 999.9 93.0* 70.0 0.00G 999.9 110010 724050 13743 19940703 79.3 24 71.8 24 1017.7 24 1015.3 24 6.2 24 3.9 24 15.9 28.0 93.9 71.1 0.68G 999.9 110010 724050 13743 19940704 78.6 24 70.8 24 1021.3 24 1018.9 24 6.1 24 5.7 24 8.0 999.9 90.0 71.1 0.01G 999.9 110010 724050 13743 19940705 81.2 24 72.8 24 1021.6 24 1019.3 24 7.9 24 7.1 24 12.0 999.9 90.0 71.1 0.00G 999.9 100000 724050 13743 19940706 84.5 24 75.1 24 1017.2 24 1014.8 24 7.2 24 8.5 24 13.0 999.9 95.0* 75.0 0.00G 999.9 100000 724050 13743 19940707 83.2 24 71.2 24 1016.3 24 1014.0 24 10.3 24 7.3 24 22.9 30.9 95.0 73.0 0.00G 999.9 010010 724050 13743 19940708 87.8 24 74.3 24 1017.4 24 1015.1 24 9.9 24 9.8 24 15.0 19.8 97.0* 73.0 0.00G 999.9 000000 724050 13743 19940709 86.5 24 71.9 24 1017.1 24 1014.7 24 11.9 24 8.9 24 22.9 39.8 98.1 78.1 0.00G 999.9 010010 724050 13743 19940710 79.9 24 69.3 24 1017.3 24 1014.9 24 12.7 24 6.3 24 12.0 999.9 98.1 73.9 0.38G 999.9 010000 724050 13743 19940711 78.2 24 58.5 24 1019.0 24 1016.6 24 15.3 24 9.3 24 12.0 999.9 90.0 69.1 0.00G 999.9 000000 724050 13743 19940712 80.0 24 63.2 24 1018.5 24 1016.1 24 11.2 24 4.6 24 11.1 999.9 91.0* 69.1 0.00G 999.9 000000 724050 13743 19940713 83.9 24 69.7 24 1017.2 24 1014.9 24 5.9 24 6.8 24 12.0 999.9 93.0 71.1 0.00G 999.9 100000 724050 13743 19940714 83.5 24 74.0 24 1016.0 24 1013.7 24 9.8 24 8.2 24 24.9 35.9 93.0 75.0 0.00G 999.9 010010 724050 13743 19940715 80.9 24 74.6 24 1016.0 24 1013.6 24 6.5 24 5.0 24 11.8 999.9 93.9 75.0 0.21G 999.9 110010 724050 13743 19940716 80.0 24 71.4 24 1017.6 24 1015.3 24 6.0 24 6.5 24 12.0 999.9 91.9 75.0 0.02G 999.9 110000 724050 13743 19940717 80.9 24 72.9 24 1018.7 24 1016.4 24 4.5 24 6.6 24 12.8 999.9 90.0 75.0 0.00G 999.9 110000 724050 13743 19940718 80.7 24 74.1 24 1016.9 24 1014.5 24 4.8 24 4.9 24 8.0 999.9 91.0* 74.8 0.19G 999.9 110000 724050 13743 19940719 82.7 24 71.8 24 1018.0 24 1015.6 24 6.2 24 5.3 24 10.1 999.9 93.0 72.0 0.02G 999.9 110000 724050 13743 19940720 84.6 24 74.7 24 1020.8 24 1018.4 24 9.4 24 9.7 24 13.0 999.9 93.9 72.0 0.00G 999.9 100000 724050 13743 19940721 83.3 24 74.8 24 1019.2 24 1016.8 24 13.3 24 11.6 24 19.8 31.9 93.9 75.9 0.00G 999.9 010010 724050 13743 19940722 80.6 24 74.2 24 1015.0 24 1012.7 24 8.3 24 13.4 24 17.9 26.8 91.0 75.9* 0.16G 999.9 010010 724050 13743 19940723 78.5 24 74.1 24 1014.4 24 1012.1 24 6.5 24 10.7 24 13.0 999.9 90.0 75.0 0.11G 999.9 110000 724050 13743 19940724 78.8 24 70.9 24 1014.0 24 1011.6 24 8.1 24 6.5 24 12.0 999.9 91.0 70.0 0.01G 999.9 010010 724050 13743 19940725 81.6 24 71.7 24 1012.5 24 1010.1 24 5.8 24 6.4 24 19.8 35.0 93.0 70.0 0.00G 999.9 110010 724050 13743 19940726 74.8 24 70.9 24 1010.6 24 1008.2 24 5.7 24 6.2 24 17.1 25.8 95.0 69.1 0.08G 999.9 110010 724050 13743 19940727 75.0 24 71.6 24 1010.2 24 1007.8 24 4.2 24 6.6 24 15.9 999.9 88.0 69.1 0.63G 999.9 110000 724050 13743 19940728 72.6 24 68.6 24 1010.5 24 1008.1 24 7.1 24 7.4 24 13.0 999.9 81.0 66.0 1.08G 999.9 110010 724050 13743 19940729 76.0 24 70.0 24 1017.2 24 1014.9 24 8.2 24 5.8 24 13.0 999.9 86.0* 66.0 0.06G 999.9 110000 724050 13743 19940730 77.2 24 72.5 24 1019.8 24 1017.5 24 7.8 24 7.6 24 10.1 999.9 86.0 71.1 0.05G 999.9 110000 724050 13743 19940731 79.5 24 72.6 24 1021.6 24 1019.3 24 7.3 24 6.0 24 10.1 999.9 86.0 71.1 0.00G 999.9 000000 724050 13743 19940801 79.3 24 72.4 24 1020.4 24 1018.1 24 9.3 24 6.6 24 11.1 999.9 88.0 72.0 0.00G 999.9 000000 724050 13743 19940802 79.1 24 72.3 24 1018.1 24 1015.7 24 8.9 24 5.8 24 12.0 999.9 86.0 72.0 0.12G 999.9 110000 724050 13743 19940803 78.3 24 69.6 24 1018.6 24 1016.2 24 6.4 24 6.2 24 11.1 999.9 86.0 72.0 0.04G 999.9 110000 724050 13743 19940804 80.8 24 71.2 24 1017.2 24 1014.9 24 4.8 24 7.9 24 15.0 18.8 90.0* 71.1 0.00G 999.9 100000 724050 13743 19940805 77.7 24 70.7 24 1011.7 24 1009.3 24 10.1 24 10.3 24 15.0 22.0 90.0 71.1 0.47G 999.9 110010 724050 13743 19940806 66.4 24 51.2 24 1020.1 24 1017.8 24 18.6 24 11.1 24 15.9 22.0 80.1 55.9 0.00D 999.9 000000 724050 13743 19940807 69.1 24 54.6 24 1021.8 24 1019.4 24 17.4 24 4.7 24 10.1 999.9 79.0* 55.9 0.00G 999.9 000000 724050 13743 19940808 71.7 24 58.9 24 1021.2 24 1018.9 24 18.0 24 5.5 24 8.9 999.9 82.0* 57.9 0.00G 999.9 000000 724050 13743 19940809 73.6 24 61.6 24 1020.5 24 1018.1 24 14.2 24 7.1 24 11.1 999.9 84.0* 62.1 0.00G 999.9 000000 724050 13743 19940810 77.0 24 66.0 24 1020.7 24 1018.3 24 7.9 24 8.0 24 11.1 999.9 84.9 64.0 0.00G 999.9 000000 724050 13743 19940811 78.6 24 67.8 24 1022.1 24 1019.8 24 5.5 24 5.7 24 10.1 999.9 87.1 68.0 0.00G 999.9 010010 724050 13743 19940812 77.5 24 72.2 24 1022.1 24 1019.7 24 5.3 24 4.8 24 16.9 999.9 88.0 71.1 1.29G 999.9 110010 724050 13743 19940813 81.4 24 73.4 24 1019.8 24 1017.5 24 10.2 24 8.3 24 15.0 999.9 91.0 72.0 0.00G 999.9 100000 724050 13743 19940814 83.9 24 70.9 24 1013.6 24 1011.2 24 14.1 24 12.5 24 17.1 22.9 91.9 75.9 0.00G 999.9 010010 724050 13743 19940815 72.6 24 60.4 24 1015.8 24 1013.4 24 12.8 24 6.7 24 10.1 999.9 93.0 64.9 0.37G 999.9 010010 724050 13743 19940816 70.8 24 62.0 24 1021.4 24 1019.0 24 9.4 24 3.6 24 11.8 999.9 79.0 64.9 0.14G 999.9 110000 724050 13743 19940817 73.1 24 70.1 24 1019.4 24 1017.0 24 6.4 24 7.0 24 14.0 999.9 82.0 66.9 0.82G 999.9 110010 724050 13743 19940818 75.6 24 69.3 24 1012.9 24 1010.6 24 11.9 24 9.1 24 14.0 999.9 82.9 69.1 0.07G 999.9 010010 724050 13743 19940819 74.9 24 67.7 24 1017.3 24 1014.9 24 11.0 24 3.9 24 6.0 999.9 82.9 68.0 0.01G 999.9 000000 724050 13743 19940820 76.8 24 70.5 24 1015.7 24 1013.3 24 7.4 24 6.2 24 8.9 999.9 86.0* 68.0 0.00G 999.9 100000 724050 13743 19940821 77.2 24 72.1 24 1009.3 24 1006.9 24 8.0 24 8.5 24 15.0 16.9 86.0 69.1 0.00G 999.9 110000 724050 13743 19940822 72.8 24 65.9 24 1008.8 24 1006.4 24 11.2 24 9.3 24 13.0 999.9 84.9 69.1 0.13G 999.9 010000 724050 13743 19940823 70.2 24 54.2 24 1019.3 24 1016.9 24 17.4 24 7.6 24 11.1 999.9 79.0 59.0 0.05G 999.9 000000 724050 13743 19940824 69.4 24 57.7 24 1025.6 24 1023.2 24 13.7 24 4.6 24 7.0 999.9 80.1 59.0 0.00G 999.9 000000 724050 13743 19940825 70.6 24 61.6 24 1024.0 24 1021.7 24 11.1 24 6.5 24 8.9 999.9 80.1* 59.0 0.00G 999.9 000000 724050 13743 19940826 76.2 24 68.1 24 1019.8 24 1017.5 24 6.5 24 5.6 24 13.0 999.9 87.1* 62.1 0.85G 999.9 110010 724050 13743 19940827 77.9 24 67.6 24 1018.3 24 1015.9 24 5.7 24 5.4 24 11.1 999.9 89.1 66.9 0.72G 999.9 100000 724050 13743 19940828 78.0 24 69.5 24 1015.9 24 1013.5 24 5.4 24 6.1 24 10.1 999.9 88.0 69.1 0.00G 999.9 100000 724050 13743 19940829 76.6 24 70.1 24 1011.5 24 1009.1 24 6.3 24 5.3 24 14.0 999.9 87.1 69.1 0.05G 999.9 110000 724050 13743 19940830 71.5 24 57.1 24 1018.1 24 1015.8 24 15.1 24 4.8 24 7.0 999.9 81.0 60.1 0.00D 999.9 000000 724050 13743 19940831 74.0 24 64.6 24 1017.2 24 1014.9 24 10.8 24 7.9 24 12.0 999.9 84.9* 60.1 0.00G 999.9 000000 724050 13743 19940901 76.4 24 65.3 24 1016.3 24 1013.9 24 8.9 24 7.8 24 13.0 999.9 84.9 66.0 0.00G 999.9 110000 724050 13743 19940902 69.7 24 53.0 24 1022.9 24 1020.6 24 14.0 24 6.6 24 8.9 999.9 80.1 64.0 0.00G 999.9 000000 724050 13743 19940903 67.1 24 52.8 24 1025.4 24 1023.1 24 12.8 24 6.7 24 11.1 999.9 78.1 60.1 0.00G 999.9 000000 724050 13743 19940904 67.4 24 51.2 24 1025.1 24 1022.7 24 15.5 24 7.9 24 13.0 999.9 75.0 60.1 0.00G 999.9 000000 724050 13743 19940905 66.0 24 51.5 24 1022.3 24 1020.0 24 16.7 24 5.8 24 10.1 999.9 77.0* 57.0 0.00G 999.9 000000 724050 13743 19940906 68.4 24 54.4 24 1016.5 24 1014.1 24 11.7 24 5.3 24 10.1 999.9 79.0 57.0 0.00G 999.9 000000 724050 13743 19940907 71.1 24 57.6 24 1016.1 24 1013.7 24 8.7 24 7.0 24 12.0 999.9 82.0* 60.1 0.00G 999.9 100000 724050 13743 19940908 70.6 24 53.0 24 1020.3 24 1017.9 24 11.1 24 5.9 24 10.1 15.0 82.9 57.9 0.00G 999.9 000000 724050 13743 19940909 71.1 24 57.9 24 1019.1 24 1016.8 24 10.9 24 4.5 24 8.9 999.9 84.9* 57.9 0.00G 999.9 100000 724050 13743 19940910 73.2 24 57.0 24 1019.7 24 1017.4 24 11.3 24 6.0 24 8.9 999.9 86.0 60.1 0.00G 999.9 000000 724050 13743 19940911 68.2 24 50.7 24 1022.9 24 1020.5 24 13.8 24 6.9 24 11.1 14.0 82.0 59.0 0.00G 999.9 000000 724050 13743 19940912 66.6 24 50.7 24 1024.3 24 1021.9 24 13.5 24 5.7 24 10.1 999.9 78.1* 55.0 0.00G 999.9 000000 724050 13743 19940913 71.1 24 55.3 24 1022.1 24 1019.7 24 12.3 24 4.6 24 8.0 999.9 86.0* 55.0 0.00G 999.9 000000 724050 13743 19940914 76.2 24 60.5 24 1018.4 24 1016.0 24 8.6 24 6.5 24 11.1 999.9 91.0 57.0 0.00G 999.9 000000 724050 13743 19940915 78.2 24 68.4 24 1018.0 24 1015.6 24 4.6 24 4.7 24 8.0 999.9 91.0 63.0 0.00G 999.9 100000 724050 13743 19940916 77.0 24 70.9 24 1018.8 24 1016.5 24 3.5 24 3.7 24 7.0 999.9 87.1* 71.1 0.00G 999.9 100000 724050 13743 19940917 76.2 24 69.3 24 1014.3 24 1012.0 24 4.0 24 6.9 24 10.1 999.9 88.0 69.1 0.00G 999.9 110000 724050 13743 19940918 71.3 24 61.8 24 1011.1 24 1008.8 24 12.6 24 8.1 24 15.9 22.0 88.0 64.9 0.55G 999.9 110000 724050 13743 19940919 67.0 24 51.5 24 1018.5 24 1016.1 24 17.4 24 6.7 24 10.1 999.9 77.0 55.9 0.00G 999.9 000000 724050 13743 19940920 68.3 24 52.3 24 1022.7 24 1020.3 24 17.6 24 4.5 24 8.0 999.9 79.0* 55.9 0.00G 999.9 000000 724050 13743 19940921 67.7 24 54.9 24 1022.3 24 1019.9 24 12.8 24 4.0 24 8.0 999.9 80.1 55.9 0.00G 999.9 000000 724050 13743 19940922 65.7 24 61.6 24 1016.9 24 1014.5 24 7.1 24 10.4 24 21.0 25.8 77.0 57.9 0.21G 999.9 110000 724050 13743 19940923 63.3 24 59.4 24 1010.1 24 1007.8 24 9.1 24 9.8 24 21.0 28.0 71.1 59.0 1.50G 999.9 110010 724050 13743 19940924 66.9 24 61.3 24 1016.9 24 1014.5 24 12.7 24 4.0 24 7.0 999.9 75.9* 57.9 0.01G 999.9 000000 724050 13743 19940925 72.2 24 68.0 24 1015.3 24 1013.0 24 7.4 24 4.3 24 8.9 999.9 82.0* 57.9 0.00G 999.9 100000 724050 13743 19940926 73.0 24 69.5 24 1010.3 24 1008.0 24 10.1 24 5.6 24 10.1 999.9 82.9 66.9 0.04G 999.9 110010 724050 13743 19940927 71.6 24 65.1 24 1008.8 24 1006.4 24 8.9 24 7.0 24 12.0 999.9 82.0 66.9 0.70G 999.9 110010 724050 13743 19940928 67.5 24 56.0 24 1009.8 24 1007.4 24 10.9 24 4.1 24 7.0 999.9 78.1 59.0 0.00G 999.9 010000 724050 13743 19940929 64.1 24 47.6 24 1010.2 24 1007.8 24 15.1 24 8.8 24 20.0 22.0 75.9 57.0 0.00G 999.9 000000 724050 13743 19940930 62.3 24 43.6 24 1016.5 24 1014.1 24 17.0 24 9.2 24 15.0 18.8 73.0* 52.0 0.00G 999.9 000000 724050 13743 19941001 65.5 24 54.8 24 1013.4 24 1011.1 24 12.9 24 6.4 24 15.9 19.8 81.0* 52.0 0.00G 999.9 000000 724050 13743 19941002 65.5 24 59.3 24 1012.4 24 1010.1 24 8.5 24 7.7 24 15.9 19.8 81.0 55.0 0.08G 999.9 110010 724050 13743 19941003 57.9 24 44.4 24 1016.3 24 1013.9 24 16.4 24 9.0 24 14.0 999.9 68.0 52.0 0.02G 999.9 000000 724050 13743 19941004 55.1 24 40.9 24 1018.0 24 1015.7 24 17.8 24 9.0 24 13.0 999.9 64.0* 48.0 0.00G 999.9 000000 724050 13743 19941005 57.0 24 41.3 24 1017.2 24 1014.8 24 14.8 24 10.8 24 15.9 19.8 64.0 48.0 0.00G 999.9 000000 724050 13743 19941006 55.1 24 40.7 24 1021.3 24 1018.9 24 13.0 24 5.0 24 10.1 999.9 64.9 44.1 0.00G 999.9 000000 724050 13743 19941007 57.7 24 46.6 24 1026.1 24 1023.7 24 12.3 24 5.7 24 10.1 999.9 70.0* 44.1 0.00G 999.9 000000 724050 13743 19941008 61.3 24 52.5 24 1025.4 24 1023.0 24 9.7 24 6.9 24 14.0 999.9 73.9* 48.0 0.00G 999.9 000000 724050 13743 19941009 68.2 24 60.2 24 1017.3 24 1015.0 24 10.8 24 10.3 24 17.1 28.0 79.0* 50.0 0.00G 999.9 110000 724050 13743 19941010 59.7 24 46.5 24 1019.3 24 1017.0 24 16.2 24 10.6 24 17.1 19.8 64.0* 53.1 0.21G 999.9 010000 724050 13743 19941011 53.4 24 36.3 24 1028.1 24 1025.8 24 19.7 24 8.1 24 12.0 999.9 64.0 44.1 0.00G 999.9 000000 724050 13743 19941012 53.5 24 41.7 24 1031.5 24 1029.2 24 11.7 24 6.1 24 10.1 999.9 64.0 43.0 0.00G 999.9 000000 724050 13743 19941013 55.8 24 47.2 24 1029.3 24 1027.0 24 11.1 24 8.0 24 11.1 999.9 64.9 43.0 0.00G 999.9 100000 724050 13743 19941014 59.1 24 51.8 24 1023.6 24 1021.3 24 11.0 24 9.2 24 12.8 999.9 66.0 46.9 0.00G 999.9 010000 724050 13743 19941015 59.0 24 48.2 24 1023.5 24 1021.1 24 12.0 24 10.9 24 18.1 999.9 66.0* 52.0 0.00G 999.9 000000 724050 13743 19941016 56.9 24 42.2 24 1026.6 24 1024.2 24 11.0 24 5.4 24 10.1 999.9 70.0* 45.0 0.00G 999.9 000000 724050 13743 19941017 56.6 24 35.6 24 1024.8 24 1022.5 24 17.6 24 4.6 24 7.0 999.9 71.1 44.1 0.00G 999.9 000000 724050 13743 19941018 57.4 24 46.0 24 1020.9 24 1018.5 24 11.5 24 5.8 24 11.1 999.9 72.0* 44.1 0.00G 999.9 100000 724050 13743 19941019 60.3 24 51.1 24 1015.7 24 1013.3 24 9.7 24 4.5 24 7.0 999.9 73.0 45.0 0.00G 999.9 100000 724050 13743 19941020 64.7 24 58.7 24 1013.3 24 1011.0 24 8.2 24 4.8 24 8.9 999.9 72.0* 51.1 0.03G 999.9 110000 724050 13743 19941021 63.2 24 50.4 24 1013.2 24 1010.8 24 13.1 24 7.9 24 14.0 999.9 73.0 53.1 0.00D 999.9 000000 724050 13743 19941022 61.1 24 49.3 24 1014.8 24 1012.4 24 11.5 24 5.0 24 10.1 999.9 72.0 48.9 0.00G 999.9 000000 724050 13743 19941023 63.3 24 57.6 24 1010.9 24 1008.5 24 7.3 24 6.8 24 11.1 999.9 73.0 48.9 0.85G 999.9 110000 724050 13743 19941024 60.9 24 47.1 24 1015.7 24 1013.3 24 12.9 24 6.6 24 13.0 999.9 70.0 48.0 0.75G 999.9 000000 724050 13743 19941025 57.7 24 42.8 24 1015.1 24 1012.7 24 15.8 24 8.4 24 13.0 999.9 70.0 48.0 0.00G 999.9 000000 724050 13743 19941026 51.0 24 37.2 24 1019.6 24 1017.2 24 11.4 24 6.8 24 12.0 999.9 64.9 46.0 0.02G 999.9 010000 724050 13743 19941027 50.9 24 36.0 24 1022.5 24 1020.2 24 14.4 24 9.9 24 14.0 999.9 59.0* 43.0 0.00D 999.9 000000 724050 13743 19941028 50.7 24 38.1 24 1025.6 24 1023.2 24 12.3 24 5.4 24 8.9 999.9 62.1* 39.9 0.00G 999.9 000000 724050 13743 19941029 54.5 24 42.4 24 1024.8 24 1022.4 24 14.0 24 8.3 24 12.0 999.9 69.1* 39.9 0.00G 999.9 000000 724050 13743 19941030 61.0 24 51.0 24 1022.5 24 1020.1 24 11.1 24 4.4 24 7.0 999.9 75.0* 43.0 0.00G 999.9 000000 724050 13743 19941031 63.7 24 59.7 24 1016.8 24 1014.4 24 9.4 24 3.5 24 8.9 999.9 75.9 50.0 0.00G 999.9 110000 724050 13743 19941101 64.8 24 60.8 24 1001.1 24 998.7 24 9.5 24 10.4 24 22.0 36.9 73.0 53.1* 0.06G 999.9 110110 724050 13743 19941102 54.8 24 33.6 24 1009.8 24 1007.4 24 18.2 24 12.4 24 20.0 30.9 73.0 48.0 0.17G 999.9 000000 724050 13743 19941103 54.9 24 36.4 24 1022.5 24 1020.2 24 16.2 24 5.6 24 8.9 999.9 68.0* 41.0 0.00G 999.9 000000 724050 13743 19941104 59.2 24 44.6 24 1021.5 24 1019.1 24 16.0 24 5.6 24 8.9 999.9 75.0* 41.0 0.00G 999.9 000000 724050 13743 19941105 64.2 24 49.5 24 1018.6 24 1016.3 24 14.0 24 7.3 24 12.0 999.9 75.9 46.9 0.00G 999.9 000000 724050 13743 19941106 66.7 24 59.5 24 1013.5 24 1011.2 24 11.0 24 11.6 24 19.0 26.8 77.0 57.0 0.03G 999.9 010000 724050 13743 19941107 59.7 24 34.0 24 1023.5 24 1021.1 24 19.7 24 12.7 24 23.9 31.9 75.0 51.1 0.03G 999.9 000000 724050 13743 19941108 55.0 24 35.7 24 1023.9 24 1021.5 24 17.4 24 7.3 24 14.0 999.9 71.1* 43.0 0.00G 999.9 000000 724050 13743 19941109 61.2 24 44.1 24 1013.6 24 1011.3 24 11.8 24 7.0 24 10.1 999.9 78.1* 43.0 0.00G 999.9 000000 724050 13743 19941110 55.8 24 44.0 24 1016.5 24 1014.1 24 12.1 24 11.0 24 28.0 38.9 79.0 46.0 0.23G 999.9 110000 724050 13743 19941111 46.4 24 28.5 24 1027.7 24 1025.3 24 14.9 24 7.1 24 10.1 999.9 64.0 37.0 0.04G 999.9 000000 724050 13743 19941112 45.4 24 29.5 24 1029.3 24 1027.0 24 14.8 24 5.3 24 8.9 999.9 55.9* 35.1 0.00G 999.9 000000 724050 13743 19941113 53.3 24 39.2 24 1024.7 24 1022.3 24 13.3 24 4.0 24 6.0 999.9 69.1* 35.1 0.00G 999.9 000000 724050 13743 19941114 57.8 24 46.5 24 1024.7 24 1022.3 24 10.9 24 5.1 24 11.1 999.9 72.0 43.0 0.00G 999.9 000000 724050 13743 19941115 59.8 24 51.1 24 1023.0 24 1020.6 24 9.6 24 5.9 24 8.9 999.9 72.0 46.9 0.00G 999.9 100000 724050 13743 19941116 55.0 24 46.2 24 1024.1 24 1021.7 24 10.9 24 11.7 24 15.0 30.9 72.0 48.9 0.00G 999.9 010000 724050 13743 19941117 50.1 24 42.9 24 1023.6 24 1021.2 24 10.2 24 14.8 24 18.1 23.9 63.0 48.0 0.00G 999.9 110000 724050 13743 19941118 57.0 24 54.6 24 1018.3 24 1015.9 24 4.1 24 12.5 24 15.9 999.9 62.1* 48.0 0.09G 999.9 110000 724050 13743 19941119 58.2 24 42.7 24 1020.3 24 1018.0 24 13.5 24 9.6 24 15.0 999.9 63.0* 52.0 0.01G 999.9 110000 724050 13743 19941120 51.6 24 39.9 24 1027.7 24 1025.3 24 13.9 24 5.6 24 10.1 999.9 64.0 43.0 0.00G 999.9 000000 724050 13743 19941121 53.9 24 49.8 24 1020.8 24 1018.4 24 10.2 24 8.0 24 23.9 38.9 64.9* 43.0 0.42G 999.9 110000 724050 13743 19941122 56.9 24 39.3 24 1015.2 24 1012.8 24 14.8 24 11.6 24 20.0 24.9 64.9 46.9 0.10G 999.9 100000 724050 13743 19941123 43.2 24 10.8 24 1021.2 24 1018.8 24 16.1 24 12.5 24 23.9 37.9 60.1 35.1 0.00G 999.9 000000 724050 13743 19941124 37.6 24 17.9 24 1024.4 24 1022.0 24 16.6 24 10.6 24 28.9 37.9 52.0 28.9 0.00G 999.9 001000 724050 13743 19941125 43.6 24 24.9 24 1019.7 24 1017.3 24 13.7 24 8.2 24 13.0 999.9 54.0* 28.9 0.00G 999.9 000000 724050 13743 19941126 46.4 24 27.3 24 1023.7 24 1021.3 24 14.1 24 6.6 24 10.1 999.9 55.9 37.0 0.00G 999.9 000000 724050 13743 19941127 38.9 24 28.2 24 1029.7 24 1027.3 24 9.7 24 8.0 24 11.1 999.9 52.0 37.0 0.00G 999.9 111000 724050 13743 19941128 47.4 24 46.3 24 1011.7 24 1009.4 24 4.9 24 10.2 24 20.0 29.9 61.0* 37.0 0.43G 999.9 110000 724050 13743 19941129 48.4 24 37.6 24 1017.2 24 1014.8 24 14.3 24 7.5 24 11.1 999.9 61.0 37.0 0.01G 999.9 000000 724050 13743 19941130 47.3 24 29.4 24 1021.8 24 1019.4 24 14.8 24 8.0 24 18.1 999.9 57.0 37.0 0.00G 999.9 000000 724050 13743 19941201 41.1 24 26.1 24 1028.8 24 1026.4 24 15.0 24 4.0 24 8.9 999.9 54.0 32.0 0.00C 999.9 000000 724050 13743 19941202 42.7 24 32.4 24 1027.8 24 1025.4 24 12.6 24 6.3 24 11.1 999.9 57.9* 32.0 0.00G 999.9 000000 724050 13743 19941203 44.2 24 35.2 24 1025.1 24 1022.7 24 11.3 24 4.5 24 8.0 999.9 57.9 33.1 0.00G 999.9 000000 724050 13743 19941204 50.5 24 43.2 24 1025.7 24 1023.3 24 9.3 24 3.4 24 6.0 999.9 59.0* 36.0 0.00G 999.9 110000 724050 13743 19941205 59.7 24 58.7 24 1017.2 24 1014.8 24 5.6 24 6.7 24 12.0 999.9 71.1* 44.1 0.98G 999.9 110000 724050 13743 19941206 60.0 24 54.1 24 1018.2 24 1015.8 24 10.5 24 5.9 24 12.0 999.9 71.1 51.1 0.05G 999.9 000000 724050 13743 19941207 56.2 24 50.6 24 1014.0 24 1011.6 24 9.2 24 6.3 24 10.1 999.9 68.0* 48.0 0.00G 999.9 000000 724050 13743 19941208 45.8 24 27.3 24 1025.4 24 1023.1 24 15.6 24 13.6 24 22.0 31.9 68.0 37.0 0.00G 999.9 000000 724050 13743 19941209 39.4 24 22.9 24 1028.6 24 1026.2 24 12.9 24 6.9 24 12.0 999.9 48.0 34.0 0.00G 999.9 000000 724050 13743 19941210 43.8 24 39.8 24 1021.0 24 1018.6 24 7.0 24 8.3 24 15.0 999.9 48.9 34.0 0.32G 999.9 110000 724050 13743 19941211 42.1 24 31.9 24 1012.9 24 1010.6 24 10.7 24 12.7 24 22.0 31.9 48.9 37.9* 0.32G 999.9 110000 724050 13743 19941212 33.5 24 16.2 24 1029.6 24 1027.2 24 16.6 24 9.6 24 15.9 22.9 45.0 28.9 0.01G 999.9 000000 724050 13743 19941213 34.2 24 23.3 24 1030.5 24 1028.1 24 12.6 24 5.7 24 11.1 999.9 39.9 28.9 0.00G 999.9 000000 724050 13743 19941214 40.9 24 36.4 24 1028.8 24 1026.4 24 6.2 24 9.2 24 13.0 999.9 46.0* 30.0 0.03G 999.9 110000 724050 13743 19941215 41.2 24 30.9 24 1031.0 24 1028.6 24 12.9 24 9.4 24 15.0 999.9 46.9* 36.0 0.00D 999.9 000000 724050 13743 19941216 40.6 24 32.3 24 1032.1 24 1029.8 24 11.6 24 7.7 24 11.1 999.9 48.0 36.0 0.00G 999.9 000000 724050 13743 19941217 42.4 24 39.4 24 1023.4 24 1021.0 24 6.3 24 4.5 24 8.9 999.9 48.0 36.0 0.16G 999.9 110000 724050 13743 19941218 45.7 24 39.1 24 1015.0 24 1012.6 24 8.0 24 5.9 24 11.1 999.9 52.0* 39.9 0.11G 999.9 100000 724050 13743 19941219 43.7 24 32.2 24 1020.5 24 1018.2 24 15.7 24 11.8 24 15.9 999.9 53.1 39.9 0.00G 999.9 010000 724050 13743 19941220 40.7 24 27.7 24 1028.8 24 1026.4 24 13.8 24 6.1 24 11.1 999.9 48.0 33.1 0.00G 999.9 000000 724050 13743 19941221 40.1 24 32.7 24 1031.8 24 1029.5 24 9.6 24 4.6 24 10.1 999.9 52.0* 30.9 0.00G 999.9 100000 724050 13743 19941222 40.8 24 34.0 24 1026.4 24 1024.0 24 8.5 24 4.9 24 8.9 999.9 53.1 30.9 0.00G 999.9 100000 724050 13743 19941223 47.2 24 29.7 24 1012.3 24 1009.9 24 11.4 24 11.3 24 17.1 999.9 59.0* 32.0 0.00G 999.9 000000 724050 13743 19941224 48.3 24 31.1 24 1001.8 24 999.4 24 11.5 24 16.4 24 24.9 36.9 59.0 39.0 0.00G 999.9 110000 724050 13743 19941225 47.4 24 39.3 24 1007.5 24 1005.1 24 10.4 24 11.1 24 15.0 999.9 53.1* 44.1 0.14G 999.9 110000 724050 13743 19941226 43.9 24 27.0 24 1020.0 24 1017.7 24 16.6 24 6.1 24 8.9 999.9 55.0* 35.1 0.03G 999.9 000000 724050 13743 19941227 40.6 24 28.8 24 1023.9 24 1021.6 24 11.3 24 2.8 24 6.0 999.9 55.0 30.0 0.00G 999.9 000000 724050 13743 19941228 41.2 24 31.3 24 1016.4 24 1014.0 24 10.6 24 4.7 24 8.0 999.9 55.9* 30.0 0.00G 999.9 000000 724050 13743 19941229 46.2 24 27.2 24 1019.7 24 1017.4 24 14.3 24 10.7 24 15.0 22.9 57.9 30.0 0.00G 999.9 000000 724050 13743 19941230 35.3 24 9.0 24 1031.2 24 1028.9 24 14.1 24 7.7 24 12.0 999.9 48.9 28.0 0.00G 999.9 000000 724050 13743 19941231 33.7 24 21.2 24 1030.8 24 1028.4 24 10.9 24 2.2 24 5.1 999.9 41.0 28.0 0.00G 999.9 110000 fluids-1.0.22/tests/gsod/2005/0000755000175000017500000000000014302004506015066 5ustar nileshnileshfluids-1.0.22/tests/gsod/2005/724050-13743.op0000644000175000017500000014327214302004506016657 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20050101 50.4 24 41.0 24 1027.1 24 1024.8 24 8.5 24 6.4 24 12.0 18.1 69.1 37.9 0.00G 999.9 000000 724050 13743 20050102 44.3 24 35.7 24 1034.5 24 1032.2 24 10.0 24 3.9 24 12.0 999.9 69.1 37.9 0.00G 999.9 000000 724050 13743 20050103 48.0 24 41.4 24 1027.8 24 1025.8 24 9.6 24 3.8 24 8.9 999.9 64.0 39.0 0.00G 999.9 010000 724050 13743 20050104 58.7 24 50.8 24 1020.7 24 1018.3 24 9.8 24 7.7 24 11.1 999.9 66.9 42.1 0.02G 999.9 010000 724050 13743 20050105 46.6 24 43.6 24 1020.7 19 1017.9 24 5.7 24 7.3 24 15.9 999.9 51.1* 39.9* 0.15G 999.9 010000 724050 13743 20050106 40.5 24 39.2 24 1013.8 18 1010.8 24 2.3 24 5.5 24 9.9 999.9 48.9 37.9 0.01G 999.9 110000 724050 13743 20050107 44.2 24 33.6 24 1020.2 24 1017.9 24 8.5 24 8.2 24 18.1 25.1 48.0 37.9 0.00G 999.9 010000 724050 13743 20050108 44.1 24 36.3 24 1023.7 21 1020.6 24 7.8 24 6.3 24 41.0 999.9 54.0 41.0 0.10G 999.9 010000 724050 13743 20050109 40.5 24 30.3 24 1029.1 24 1026.7 24 10.0 24 6.0 24 14.0 999.9 54.0 35.1 0.05G 999.9 000000 724050 13743 20050110 41.9 24 34.5 24 1022.0 24 1019.6 24 7.8 24 4.2 24 9.9 18.1 55.9 35.1 0.00G 999.9 000000 724050 13743 20050111 45.4 24 35.6 24 1023.6 24 1021.2 24 9.9 24 3.4 24 9.9 999.9 55.9 35.1 0.00G 999.9 000000 724050 13743 20050112 45.7 24 43.0 24 1020.3 19 1018.0 24 3.4 24 3.6 24 8.9 999.9 53.1 41.0 0.14G 999.9 110000 724050 13743 20050113 52.6 24 49.4 24 1018.1 19 1016.6 24 4.2 24 6.0 24 15.9 25.1 71.1 42.1 0.00G 999.9 100000 724050 13743 20050114 52.6 24 45.6 24 1018.6 19 1014.0 24 7.6 24 13.4 24 19.0 28.9 71.1 41.0 1.72G 999.9 010000 724050 13743 20050115 34.6 24 16.0 24 1037.4 24 1035.1 24 10.0 24 8.4 24 13.0 19.0 41.0* 30.0* 0.34G 999.9 000000 724050 13743 20050116 32.7 24 19.3 24 1033.7 24 1031.4 24 10.0 24 7.9 24 11.1 999.9 37.9 28.9 0.00G 999.9 000000 724050 13743 20050117 27.0 24 10.9 24 1028.3 24 1025.7 24 9.5 24 12.9 24 21.0 28.9 37.9 19.9 0.00G 999.9 001000 724050 13743 20050118 18.6 24 -3.1 24 1036.9 24 1034.6 24 10.0 24 12.9 24 19.0 26.0 30.0 14.0 0.00G 999.9 000000 724050 13743 20050119 20.3 24 6.3 24 1029.5 23 1027.1 24 8.5 24 10.2 24 19.0 24.1 25.0 14.0 0.00G 1.2 101000 724050 13743 20050120 30.4 24 19.0 24 1016.3 24 1014.1 24 9.8 24 7.5 24 13.0 15.9 37.0 17.1 0.05G 1.2 001000 724050 13743 20050121 27.0 24 8.5 24 1019.9 24 1017.7 24 10.0 24 10.1 24 18.1 22.0 37.0 21.9 0.00G 1.2 000000 724050 13743 20050122 19.5 24 7.4 24 1020.9 21 1017.6 24 7.8 24 6.4 24 11.1 999.9 30.0 16.0 0.00G 3.1 101000 724050 13743 20050123 19.5 24 7.7 24 1010.2 24 1008.0 24 8.3 24 14.9 24 24.1 35.9 23.0 14.0 0.34G 2.0 000000 724050 13743 20050124 18.8 24 1.8 24 1022.6 24 1020.2 24 9.6 24 9.8 24 20.0 26.0 26.6* 12.9* 0.00G 2.0 001000 724050 13743 20050125 30.0 24 17.6 24 1014.6 24 1012.4 24 10.0 24 4.0 24 8.9 999.9 37.0 12.0 0.01G 1.2 000000 724050 13743 20050126 36.2 24 27.0 24 1006.3 24 1004.0 24 9.7 24 4.3 24 12.0 999.9 48.0 26.1 0.00G 1.2 010000 724050 13743 20050127 26.5 24 9.6 24 1024.2 24 1021.9 24 9.9 24 14.9 24 27.0 29.9 48.0 17.1 0.00G 1.2 000000 724050 13743 20050128 19.4 24 -0.6 24 1041.6 24 1039.2 24 10.0 24 9.3 24 15.9 999.9 30.9 12.0 0.00G 999.9 000000 724050 13743 20050129 25.2 24 11.1 24 1036.5 24 1034.2 24 10.0 24 4.5 24 13.0 19.0 36.0 12.0 0.00G 999.9 001000 724050 13743 20050130 30.8 24 27.1 24 1020.9 15 1018.7 24 3.6 24 6.3 24 15.9 999.9 36.0 18.0 0.35G 1.2 011000 724050 13743 20050131 31.3 24 19.3 24 1025.6 24 1023.3 24 10.0 24 8.5 24 11.1 999.9 37.9* 25.0* 0.03G 1.2 000000 724050 13743 20050201 30.7 24 20.9 24 1030.6 24 1028.3 24 9.0 24 3.8 24 8.0 999.9 41.0 21.9 0.00G 1.2 000000 724050 13743 20050202 32.5 24 18.8 24 1032.9 24 1030.6 24 8.9 24 3.3 24 8.0 999.9 45.0 21.9 0.00G 999.9 000000 724050 13743 20050203 34.1 24 22.6 24 1028.9 19 1025.6 24 8.2 24 4.1 24 9.9 999.9 45.0 21.9 0.00G 999.9 011000 724050 13743 20050204 38.1 24 28.0 24 1024.0 21 1021.6 24 6.3 24 9.4 24 15.0 20.0 48.0 30.9 0.04G 999.9 011000 724050 13743 20050205 43.2 24 21.7 24 1027.8 24 1025.4 24 10.0 24 7.5 24 9.9 999.9 57.0 32.0 0.00G 999.9 000000 724050 13743 20050206 41.7 24 25.9 24 1033.1 24 1030.8 24 9.5 24 4.0 24 8.0 999.9 57.0 28.0 0.00G 999.9 000000 724050 13743 20050207 44.0 24 26.2 24 1029.9 24 1027.5 24 9.5 24 3.5 24 8.0 999.9 57.0 28.0 0.00G 999.9 000000 724050 13743 20050208 46.8 24 28.7 24 1020.3 24 1017.9 24 9.7 24 2.8 24 6.0 999.9 63.0 34.0 0.00G 999.9 000000 724050 13743 20050209 50.2 24 36.7 24 1014.6 24 1012.3 24 9.5 24 2.7 24 8.9 999.9 63.0 37.9 0.00G 999.9 000000 724050 13743 20050210 44.9 24 32.0 24 1006.1 24 1003.8 24 9.8 24 12.4 24 22.9 35.9 60.1 35.1 0.11G 999.9 010000 724050 13743 20050211 33.1 24 10.4 24 1012.1 24 1009.8 24 10.0 24 16.2 24 22.9 33.0 52.0 28.0 0.00D 999.9 000000 724050 13743 20050212 38.6 24 18.8 24 1011.5 24 1009.2 24 10.0 24 9.5 24 22.0 28.9 55.0 28.0 0.00G 999.9 000000 724050 13743 20050213 42.0 24 25.0 24 1019.0 24 1016.7 24 10.0 24 5.0 24 11.1 999.9 55.0 30.0 0.00G 999.9 000000 724050 13743 20050214 40.5 24 31.8 24 1023.5 23 1021.3 24 8.3 24 5.1 24 8.9 999.9 51.1 32.0 0.11G 999.9 011000 724050 13743 20050215 46.9 24 40.9 24 1018.3 21 1015.7 24 6.0 24 4.5 24 9.9 15.0 61.0 35.1 0.38G 999.9 110000 724050 13743 20050216 50.2 24 40.9 24 1010.8 24 1008.5 24 9.8 24 10.3 24 22.9 35.9 64.0 37.9 0.00G 999.9 010000 724050 13743 20050217 40.3 24 20.7 24 1013.8 24 1011.5 24 10.0 24 11.3 24 18.1 27.0 46.4* 36.0* 0.01G 999.9 000000 724050 13743 20050218 30.8 24 8.9 24 1019.7 24 1017.4 24 10.0 24 12.5 24 25.1 32.1 46.0 26.1 0.00G 999.9 001000 724050 13743 20050219 28.1 24 7.3 24 1028.0 24 1025.7 24 10.0 24 8.8 24 14.0 17.1 39.0 19.9 0.00G 999.9 000000 724050 13743 20050220 34.8 24 19.7 24 1030.0 24 1027.7 24 10.0 24 5.6 24 13.0 999.9 43.0 19.9 0.00G 999.9 000000 724050 13743 20050221 43.0 24 35.7 24 1015.7 24 1013.4 24 6.7 24 5.4 24 11.1 999.9 57.9 27.0 0.06G 999.9 010000 724050 13743 20050222 43.9 24 35.4 24 1017.4 24 1015.1 24 6.0 24 7.9 24 13.0 999.9 57.9 35.1 0.33G 999.9 010000 724050 13743 20050223 42.4 24 27.9 24 1021.9 24 1019.5 24 9.0 24 7.5 24 14.0 18.1 48.0 36.0 0.00G 999.9 010000 724050 13743 20050224 33.1 24 24.9 24 1022.6 24 1020.2 24 4.6 24 9.4 24 15.9 999.9 39.9* 28.4* 0.03G 3.1 001000 724050 13743 20050225 29.9 24 20.6 24 1020.2 24 1017.9 24 7.9 24 8.5 24 18.1 999.9 37.0 26.1 0.19G 2.0 101000 724050 13743 20050226 34.8 24 24.3 24 1022.7 24 1020.4 24 8.4 24 6.9 24 15.0 999.9 46.0 26.1 0.00G 2.0 000000 724050 13743 20050227 34.9 24 15.6 24 1026.0 24 1023.8 24 10.0 24 6.5 24 13.0 999.9 46.0 27.0 0.00G 2.0 000000 724050 13743 20050228 32.6 24 22.8 24 1013.0 24 1010.7 24 6.8 24 9.1 24 17.1 20.0 39.9 28.0 0.00G 1.2 111000 724050 13743 20050301 33.9 24 26.0 24 999.9 24 997.7 24 5.5 24 7.5 24 17.1 24.1 41.0 30.0 0.37G 2.0 001000 724050 13743 20050302 33.6 24 13.8 24 1006.4 24 1004.1 24 10.0 24 15.9 24 26.0 35.0 41.0 30.0 0.00G 2.0 000000 724050 13743 20050303 30.3 24 9.3 24 1014.3 24 1012.0 24 10.0 24 14.1 24 19.0 29.9 37.9 25.0 0.00G 999.9 000000 724050 13743 20050304 33.3 24 11.9 24 1017.1 24 1014.9 24 10.0 24 6.6 24 12.0 15.0 45.0 23.0 0.00G 999.9 000000 724050 13743 20050305 39.6 24 25.0 24 1013.1 24 1010.8 24 9.6 24 7.2 24 12.0 999.9 46.9 23.0 0.00G 999.9 000000 724050 13743 20050306 42.1 24 22.3 24 1013.4 24 1011.1 24 9.7 24 8.1 24 21.0 27.0 57.0 28.9 0.00G 999.9 000000 724050 13743 20050307 53.1 24 29.7 24 1006.1 24 1003.8 24 10.0 24 9.1 24 19.0 24.1 70.0 28.9 0.00G 999.9 000000 724050 13743 20050308 45.4 24 30.6 24 992.7 24 990.4 24 7.6 24 15.8 24 27.0 38.1 70.0 28.0 0.45G 1.2 011000 724050 13743 20050309 27.7 24 6.3 24 1011.2 24 1009.0 24 10.0 24 13.9 24 22.0 33.0 36.0* 21.0* 0.21G 1.2 000000 724050 13743 20050310 31.7 24 12.9 24 1010.5 24 1008.2 24 10.0 24 5.2 24 12.0 18.1 43.0 19.9 0.00G 1.2 001000 724050 13743 20050311 40.0 24 26.0 24 1002.6 24 1000.3 24 9.9 24 6.2 24 15.0 24.1 53.1 24.1 0.00G 999.9 010000 724050 13743 20050312 40.5 24 24.8 24 998.8 24 996.5 24 10.0 24 10.4 24 19.0 26.0 53.1 30.0 0.02G 999.9 010000 724050 13743 20050313 41.8 24 21.6 24 1008.7 24 1006.4 24 10.0 24 7.7 24 12.0 999.9 52.0 30.0 0.00G 999.9 000000 724050 13743 20050314 40.5 24 17.9 24 1015.1 24 1012.8 24 10.0 24 9.7 24 15.0 21.0 48.9 33.1 0.00G 999.9 000000 724050 13743 20050315 38.9 24 13.7 24 1020.6 24 1018.3 24 10.0 24 10.7 24 15.9 24.1 48.9 30.0 0.00G 999.9 000000 724050 13743 20050316 41.9 24 19.1 24 1020.7 24 1018.4 24 10.0 24 6.2 24 9.9 999.9 48.9 30.0 0.00G 999.9 000000 724050 13743 20050317 42.5 24 21.1 24 1017.3 24 1015.0 24 10.0 24 5.9 24 11.1 999.9 48.0 36.0 0.00G 999.9 000000 724050 13743 20050318 43.1 24 26.9 24 1016.7 24 1014.5 24 8.9 24 5.2 24 11.1 18.1 59.0 30.9 0.00G 999.9 000000 724050 13743 20050319 47.7 24 32.3 24 1019.3 24 1016.9 24 7.5 24 5.7 24 14.0 999.9 61.0 30.9 0.00G 999.9 000000 724050 13743 20050320 49.4 24 42.1 24 1016.3 24 1013.9 24 4.6 24 6.2 24 21.0 999.9 61.0 37.0 0.03G 999.9 010010 724050 13743 20050321 47.0 24 29.7 24 1017.1 24 1014.7 24 9.8 24 9.4 24 17.1 21.0 55.9 39.0 0.22G 999.9 000000 724050 13743 20050322 44.8 24 28.1 24 1022.7 24 1020.3 24 9.7 24 7.2 24 13.0 999.9 57.9 34.0 0.00G 999.9 000000 724050 13743 20050323 45.5 24 39.8 24 1012.7 24 1010.4 24 5.0 24 10.1 24 19.0 24.1 57.9 34.0 0.79G 999.9 010000 724050 13743 20050324 42.6 24 35.3 24 1012.2 24 1009.9 24 8.9 24 9.7 24 13.0 999.9 48.9 39.0 1.07G 999.9 010000 724050 13743 20050325 45.1 24 35.8 24 1018.2 24 1015.8 24 8.8 24 4.4 24 8.9 999.9 48.9 39.0 0.00G 999.9 010000 724050 13743 20050326 45.5 24 36.0 24 1019.7 24 1017.4 24 8.0 24 5.8 24 8.9 999.9 48.9 43.0 0.06G 999.9 000000 724050 13743 20050327 45.9 24 37.3 24 1020.5 24 1018.2 24 8.4 24 6.2 24 11.1 15.0 48.9 43.0 0.00G 999.9 010000 724050 13743 20050328 46.5 24 44.4 24 1004.5 24 1002.2 24 4.5 24 9.1 24 15.0 25.1 55.4* 42.8* 0.20G 999.9 110010 724050 13743 20050329 53.7 24 45.5 24 999.7 24 997.4 24 9.8 24 10.5 24 15.9 21.0 66.0 43.0 1.41G 999.9 010000 724050 13743 20050330 54.2 24 38.9 24 1016.0 24 1013.7 24 10.0 24 6.4 24 12.0 999.9 66.0 43.0 0.00G 999.9 000000 724050 13743 20050331 49.8 24 41.1 24 1019.1 24 1016.8 24 9.8 24 6.7 24 12.0 999.9 64.9 43.0 0.00G 999.9 000000 724050 13743 20050401 53.5 24 45.2 24 1017.3 23 1015.1 24 8.4 24 6.2 24 11.1 999.9 64.0 44.1 0.00G 999.9 000000 724050 13743 20050402 52.5 24 49.5 24 1001.1 15 998.1 24 5.4 24 8.5 24 24.1 40.0 64.0 46.0 0.72G 999.9 110010 724050 13743 20050403 45.9 24 31.4 24 997.0 21 993.4 24 9.3 24 15.6 24 24.1 40.0 62.1 39.9 1.50G 999.9 010010 724050 13743 20050404 53.6 24 22.7 24 1011.0 24 1008.3 24 10.0 24 10.1 24 21.0 28.9 66.0 39.9 0.13G 999.9 000000 724050 13743 20050405 55.9 24 30.7 24 1020.4 24 1018.0 24 10.0 24 5.3 24 12.0 999.9 69.1 41.0 0.00G 999.9 000000 724050 13743 20050406 63.1 24 42.8 24 1019.4 24 1017.1 24 10.0 24 7.6 24 13.0 999.9 82.0 41.0 0.00G 999.9 000000 724050 13743 20050407 68.0 24 49.2 24 1014.4 24 1012.1 24 9.8 24 12.8 24 22.0 28.0 82.0 52.0 0.00G 999.9 010000 724050 13743 20050408 61.4 24 56.0 24 1011.3 17 1008.3 24 5.7 24 7.3 24 14.0 999.9 64.4* 57.2* 0.33G 999.9 010000 724050 13743 20050409 55.8 24 42.4 24 1018.2 24 1015.8 24 9.2 24 6.8 24 12.0 18.1 64.9 46.9 0.21G 999.9 000000 724050 13743 20050410 56.4 24 36.6 24 1018.9 24 1016.5 24 10.0 24 3.2 24 8.0 18.1 70.0* 46.0* 0.00G 999.9 000000 724050 13743 20050411 60.4 24 38.4 24 1018.0 24 1015.7 24 10.0 24 5.7 24 13.0 999.9 71.1 44.1 0.00G 999.9 000000 724050 13743 20050412 50.0 24 32.6 24 1018.7 24 1016.4 24 10.0 24 7.5 24 17.1 22.0 69.1 43.0 0.00G 999.9 000000 724050 13743 20050413 52.6 24 34.4 24 1013.4 24 1011.0 24 10.0 24 7.1 24 12.0 15.9 62.1 43.0 0.01G 999.9 010000 724050 13743 20050414 53.1 24 34.0 24 1016.8 24 1014.4 24 10.0 24 8.7 24 15.0 15.9 66.0 42.1 0.00G 999.9 000000 724050 13743 20050415 51.3 24 28.6 24 1026.5 24 1024.1 24 10.0 24 14.7 24 20.0 25.1 66.0 42.1 0.00G 999.9 000000 724050 13743 20050416 50.5 24 24.3 24 1033.2 24 1030.8 24 10.0 24 10.2 24 19.0 25.1 62.1 41.0 0.00G 999.9 000000 724050 13743 20050417 55.6 24 27.0 24 1027.2 24 1024.8 24 10.0 24 4.7 24 8.0 999.9 73.9 39.9 0.00G 999.9 000000 724050 13743 20050418 64.5 24 41.7 24 1020.3 24 1018.0 24 10.0 24 6.2 24 13.0 999.9 78.1 39.9 0.00G 999.9 000000 724050 13743 20050419 67.4 24 47.2 24 1018.0 24 1015.7 24 9.5 24 5.4 24 15.0 22.0 84.9 52.0 0.00G 999.9 010000 724050 13743 20050420 70.7 24 51.7 24 1013.8 24 1011.5 24 7.8 24 5.9 24 12.0 999.9 86.0 53.1 0.00G 999.9 000000 724050 13743 20050421 66.6 24 48.9 24 1011.7 24 1009.5 24 9.5 24 8.2 24 15.0 15.9 86.0 53.1 0.00G 999.9 010000 724050 13743 20050422 53.2 24 48.3 24 1013.8 16 1011.3 24 7.8 24 6.1 24 11.1 999.9 55.4* 51.1* 0.26G 999.9 010000 724050 13743 20050423 57.7 24 52.6 24 999.4 16 996.9 24 6.0 24 7.5 24 21.0 31.1 70.0 51.1 0.08G 999.9 010010 724050 13743 20050424 47.5 24 32.3 24 996.8 24 994.5 24 9.7 24 9.3 24 15.0 20.0 70.0 43.0 0.26G 999.9 010000 724050 13743 20050425 50.1 24 29.6 24 1002.3 24 999.8 24 10.0 24 10.7 24 17.1 26.0 64.0 39.9 0.00G 999.9 010000 724050 13743 20050426 57.0 24 39.2 24 1009.9 24 1007.5 24 10.0 24 7.9 24 18.1 999.9 70.0 39.9 0.00G 999.9 000000 724050 13743 20050427 61.9 24 44.6 24 1006.9 24 1004.6 24 9.7 24 8.3 24 17.1 22.9 70.0 46.0 0.00G 999.9 010000 724050 13743 20050428 58.7 24 33.0 24 1013.4 24 1011.0 24 10.0 24 11.1 24 15.9 22.0 69.1 50.0 0.00G 999.9 000000 724050 13743 20050429 55.4 24 41.5 24 1015.7 24 1013.3 24 9.9 24 5.8 24 9.9 999.9 69.1 50.0 0.00G 999.9 010000 724050 13743 20050430 59.9 24 55.7 24 1010.0 13 1008.6 24 5.6 24 7.3 24 14.0 15.0 68.0 51.1 0.56G 999.9 010000 724050 13743 20050501 59.3 24 44.7 24 1012.1 22 1009.1 24 8.3 24 11.1 24 18.1 24.1 68.0 51.1 0.72G 999.9 010000 724050 13743 20050502 54.7 24 35.5 24 1016.4 24 1014.0 24 10.0 24 8.9 24 17.1 22.9 64.9 45.0 0.11G 999.9 010000 724050 13743 20050503 50.3 24 32.0 24 1019.6 24 1017.3 24 10.0 24 5.1 24 9.9 15.0 63.0 37.9 0.01G 999.9 000000 724050 13743 20050504 55.2 24 34.4 24 1025.8 24 1023.4 24 10.0 24 4.2 24 9.9 999.9 62.1 37.9 0.00G 999.9 010000 724050 13743 20050505 54.7 24 40.5 24 1031.6 24 1029.2 24 8.5 24 5.5 24 9.9 14.0 64.0 45.0 0.00G 999.9 000000 724050 13743 20050506 53.3 24 38.3 24 1026.2 24 1023.8 24 9.0 24 10.1 24 15.0 999.9 64.0 45.0 0.00D 999.9 000000 724050 13743 20050507 56.2 24 36.5 24 1016.5 24 1014.1 24 9.8 24 10.1 24 14.0 18.1 71.1 44.1 0.00G 999.9 000000 724050 13743 20050508 64.6 24 36.7 24 1012.8 24 1010.5 24 10.0 24 13.2 24 17.1 27.0 77.0 44.1 0.00G 999.9 000000 724050 13743 20050509 66.0 24 40.6 24 1015.8 24 1013.5 24 10.0 24 6.2 24 13.0 999.9 79.0 52.0 0.00G 999.9 000000 724050 13743 20050510 64.2 24 50.2 24 1017.1 24 1014.8 24 10.0 24 6.8 24 11.1 18.1 79.0 52.0 0.00G 999.9 000000 724050 13743 20050511 65.8 24 55.2 24 1016.0 24 1013.7 24 9.8 24 7.0 24 11.1 999.9 84.0 52.0 0.00G 999.9 000000 724050 13743 20050512 71.2 24 56.5 24 1018.2 24 1015.9 24 9.6 24 8.8 24 13.0 17.1 84.0 55.9 0.00G 999.9 010000 724050 13743 20050513 60.3 24 41.6 24 1026.4 24 1024.1 24 10.0 24 9.0 24 15.0 999.9 75.0 55.0 0.00G 999.9 000000 724050 13743 20050514 64.3 24 52.2 24 1017.0 23 1014.4 24 9.6 24 9.8 24 18.1 38.1 82.0 55.0 0.00G 999.9 010110 724050 13743 20050515 66.5 24 58.4 24 1009.8 23 1007.5 24 8.2 24 5.5 24 29.9 47.0 82.0 55.0 1.13G 999.9 010010 724050 13743 20050516 63.3 24 47.8 24 1013.6 24 1011.1 24 9.6 24 9.4 24 14.0 18.1 70.0 57.0 0.00G 999.9 000000 724050 13743 20050517 60.8 24 39.8 24 1019.1 24 1016.9 24 10.0 24 7.3 24 11.1 17.1 69.1 53.1 0.00G 999.9 000000 724050 13743 20050518 64.0 24 48.1 24 1018.7 24 1016.3 24 8.7 24 3.2 24 8.9 999.9 75.0 53.1 0.00G 999.9 000000 724050 13743 20050519 63.4 24 52.6 24 1017.8 24 1015.7 24 8.2 24 6.7 24 11.1 999.9 75.0 55.0 0.00G 999.9 000000 724050 13743 20050520 56.7 24 52.5 24 1012.6 11 1009.3 24 5.1 24 14.2 24 26.0 31.1 69.1 51.1 1.50G 999.9 010000 724050 13743 20050521 58.9 24 44.7 24 1013.2 24 1010.8 24 9.3 24 8.8 24 14.0 19.0 73.9 46.0 1.37G 999.9 010000 724050 13743 20050522 64.9 24 45.7 24 1009.2 24 1006.9 24 10.0 24 7.5 24 14.0 22.9 75.9 46.0 0.00G 999.9 000000 724050 13743 20050523 61.7 24 51.8 24 1003.7 24 1001.4 24 9.8 24 6.4 24 9.9 999.9 75.9 55.0 0.02G 999.9 010000 724050 13743 20050524 57.3 24 52.2 24 1003.8 19 1001.6 24 6.3 24 6.0 24 11.1 999.9 70.0 55.0 0.12G 999.9 010000 724050 13743 20050525 55.4 24 47.7 24 1009.3 22 1006.9 24 9.1 24 11.0 24 15.0 19.0 59.0 51.1 0.33G 999.9 010000 724050 13743 20050526 64.6 24 49.0 24 1007.4 24 1005.1 24 10.0 24 9.1 24 15.0 19.0 80.1 51.1 0.00G 999.9 000000 724050 13743 20050527 72.5 24 50.1 24 1009.6 24 1007.2 24 10.0 24 8.7 24 14.0 22.0 82.0 54.0 0.00G 999.9 000000 724050 13743 20050528 67.4 24 50.1 24 1011.1 24 1008.7 24 10.0 24 7.4 24 20.0 28.0 82.0 57.0 0.00G 999.9 010000 724050 13743 20050529 66.7 24 46.9 24 1012.5 24 1010.2 24 10.0 24 6.3 24 14.0 999.9 78.1 55.0 0.00G 999.9 000000 724050 13743 20050530 66.2 24 49.4 24 1014.5 24 1012.2 24 10.0 24 4.5 24 18.1 24.1 78.1 55.0 0.00G 999.9 010000 724050 13743 20050531 67.6 24 53.5 24 1016.7 24 1014.4 24 8.0 24 3.7 24 8.9 999.9 79.0* 57.9* 0.02G 999.9 010000 724050 13743 20050601 68.4 24 52.9 24 1020.8 24 1018.5 24 9.8 24 4.6 24 14.0 999.9 79.0 57.0 0.00G 999.9 000000 724050 13743 20050602 63.2 24 53.5 24 1022.4 24 1020.1 24 9.3 24 8.6 24 13.0 999.9 78.1 57.0 0.00G 999.9 000000 724050 13743 20050603 62.5 24 58.9 24 1018.2 12 1015.5 24 4.9 24 8.7 24 12.0 999.9 66.9 59.0 0.56G 999.9 010000 724050 13743 20050604 68.0 24 61.5 24 1014.3 21 1012.0 24 9.0 24 5.1 24 8.0 999.9 77.0 60.1 0.12G 999.9 010000 724050 13743 20050605 74.0 24 64.9 24 1015.2 24 1012.9 24 6.5 24 3.4 24 7.0 999.9 86.0 62.1 0.00G 999.9 000000 724050 13743 20050606 78.8 24 70.3 24 1014.2 24 1011.9 24 5.3 24 6.4 24 15.9 28.9 89.1 64.9 0.00G 999.9 010010 724050 13743 20050607 75.7 24 66.5 24 1013.5 20 1011.4 24 8.4 24 6.3 24 31.1 39.0 88.0* 66.2* 1.01G 999.9 010010 724050 13743 20050608 79.9 24 67.4 24 1014.1 24 1011.7 24 8.6 24 6.6 24 11.1 999.9 90.0 66.9 0.01G 999.9 000000 724050 13743 20050609 80.1 24 69.9 24 1016.9 24 1014.5 24 7.5 24 7.7 24 13.0 999.9 90.0 70.0 0.00G 999.9 010010 724050 13743 20050610 79.1 24 71.9 24 1018.7 23 1016.5 24 8.9 24 9.9 24 14.0 18.1 88.0 73.0 0.00G 999.9 010010 724050 13743 20050611 79.5 24 70.4 24 1018.0 24 1015.7 24 9.6 24 9.7 24 13.0 999.9 86.0 73.0 0.00G 999.9 000000 724050 13743 20050612 78.6 24 67.2 24 1017.5 24 1015.2 24 9.9 24 10.0 24 14.0 17.1 86.0 71.1 0.00G 999.9 000000 724050 13743 20050613 81.6 24 71.4 24 1012.1 24 1009.9 24 10.0 24 10.5 24 17.1 21.0 91.0 71.1 0.00G 999.9 010010 724050 13743 20050614 82.3 24 70.0 24 1007.9 24 1005.7 24 8.2 24 7.7 24 15.9 21.0 91.9 73.0 0.05G 999.9 010010 724050 13743 20050615 83.2 24 65.1 24 1005.1 24 1002.8 24 8.1 24 8.2 24 15.0 21.0 91.9 73.0 0.00G 999.9 000000 724050 13743 20050616 78.5 24 59.5 24 1003.8 24 1001.4 24 9.9 24 7.9 24 17.1 25.1 88.0 70.0 0.00G 999.9 010000 724050 13743 20050617 71.2 24 51.2 24 1007.4 24 1005.1 24 10.0 24 8.8 24 15.0 24.1 84.0 61.0 0.00G 999.9 000000 724050 13743 20050618 71.3 24 49.8 24 1011.9 24 1009.6 24 10.0 24 5.4 24 9.9 999.9 81.0 59.0 0.00G 999.9 000000 724050 13743 20050619 71.6 24 55.2 24 1018.3 24 1016.0 24 10.0 24 10.0 24 17.1 999.9 81.0 59.0 0.00G 999.9 000000 724050 13743 20050620 66.8 24 54.6 24 1023.8 24 1021.5 24 10.0 24 7.5 24 15.0 999.9 79.0 61.0 0.00G 999.9 000000 724050 13743 20050621 70.1 24 55.5 24 1019.6 24 1017.3 24 9.4 24 4.8 24 8.9 999.9 82.9 60.1 0.00G 999.9 000000 724050 13743 20050622 73.9 24 61.6 24 1014.2 24 1011.9 24 7.7 24 7.1 24 15.0 20.0 82.9 60.1 0.00G 999.9 010000 724050 13743 20050623 73.0 24 54.7 24 1019.5 24 1017.2 24 9.9 24 6.4 24 11.1 999.9 84.0 64.0 0.03G 999.9 000000 724050 13743 20050624 75.7 24 60.5 24 1021.3 24 1019.0 24 9.6 24 9.0 24 12.0 999.9 86.0* 66.0* 0.00G 999.9 000000 724050 13743 20050625 79.6 24 63.0 24 1020.3 24 1017.9 24 9.2 24 9.4 24 15.0 999.9 90.7 66.0 0.00G 999.9 000000 724050 13743 20050626 80.3 24 64.7 24 1020.2 24 1017.8 24 7.6 24 5.1 24 9.9 999.9 91.0* 69.1* 0.00G 999.9 000000 724050 13743 20050627 79.6 24 70.6 24 1020.6 24 1018.2 24 9.3 24 7.6 24 15.9 999.9 91.0 68.0 0.00G 999.9 010000 724050 13743 20050628 82.2 24 72.7 24 1018.7 24 1016.4 24 8.6 24 5.6 24 18.1 999.9 93.9* 73.6* 0.06G 999.9 000000 724050 13743 20050629 78.3 24 70.1 24 1016.1 24 1013.8 24 9.5 24 10.4 24 21.0 29.9 84.0* 73.4* 0.01G 999.9 010010 724050 13743 20050630 76.7 24 67.9 24 1013.4 24 1011.0 24 6.6 24 5.4 24 22.0 29.9 90.0 68.0 1.03G 999.9 010010 724050 13743 20050701 82.8 24 69.5 24 1008.5 24 1006.2 24 6.0 23 4.5 23 8.9 999.9 93.0 69.1 0.00G 999.9 000000 724050 13743 20050702 81.6 24 68.5 24 1009.4 24 1007.1 24 8.6 24 6.8 24 15.0 999.9 93.0 73.9 0.18G 999.9 010010 724050 13743 20050703 78.8 24 61.8 24 1017.0 24 1014.7 24 10.0 24 7.0 24 11.1 999.9 86.0* 69.8* 0.00G 999.9 000000 724050 13743 20050704 79.4 24 61.4 24 1019.9 24 1017.9 24 9.8 24 3.8 24 8.0 999.9 89.1 70.0 0.00G 999.9 000000 724050 13743 20050705 80.4 24 70.2 24 1015.9 24 1013.8 24 7.3 24 6.7 24 19.0 999.9 91.4* 72.0* 0.00G 999.9 010010 724050 13743 20050706 78.0 24 71.7 24 1013.0 24 1010.7 24 8.3 24 5.5 24 11.1 999.9 91.0 71.1 0.68G 999.9 010010 724050 13743 20050707 79.1 24 71.0 24 1016.1 24 1013.7 24 5.9 24 4.3 24 9.9 999.9 86.0 71.1 0.00G 999.9 010000 724050 13743 20050708 72.7 24 67.5 23 1014.1 23 1011.6 24 7.3 23 12.6 24 22.9 999.9 80.1* 66.2* 0.04B 999.9 010000 724050 13743 20050709 77.0 24 62.2 24 1017.2 24 1014.9 24 9.7 24 4.4 24 8.9 14.0 87.1 66.0 0.00D 999.9 000000 724050 13743 20050710 79.8 24 59.5 24 1019.6 24 1017.2 24 9.2 24 4.7 24 9.9 18.1 89.1 66.9 0.00G 999.9 000000 724050 13743 20050711 80.2 24 63.9 24 1018.9 24 1016.5 24 7.6 24 4.9 24 9.9 15.0 91.0 69.1 0.00G 999.9 000000 724050 13743 20050712 82.9 24 70.9 24 1016.8 24 1014.4 24 5.4 24 5.0 24 13.0 999.9 91.0 70.0 0.00G 999.9 010010 724050 13743 20050713 80.3 24 71.8 24 1014.9 24 1012.5 24 6.7 24 5.6 24 22.9 29.9 87.1* 73.4* 0.00G 999.9 110010 724050 13743 20050714 79.0 24 70.8 24 1014.3 24 1012.0 24 8.2 24 5.1 24 11.1 999.9 87.1 73.9 0.30G 999.9 010010 724050 13743 20050715 78.2 24 71.9 24 1015.5 24 1013.2 24 4.2 24 4.3 24 15.9 20.0 86.0 75.0 0.10G 999.9 110010 724050 13743 20050716 80.9 24 74.7 24 1017.4 24 1015.1 24 4.2 24 4.6 24 11.1 999.9 90.0 75.0 1.17G 999.9 010010 724050 13743 20050717 80.5 24 73.3 24 1017.0 24 1014.6 24 7.0 24 4.9 24 13.0 15.9 90.0 73.9 0.09G 999.9 010010 724050 13743 20050718 83.2 24 72.4 24 1015.9 24 1013.5 24 8.3 24 5.3 24 9.9 999.9 90.0 73.9 0.00G 999.9 000000 724050 13743 20050719 84.2 24 72.5 24 1014.7 24 1012.4 24 8.3 24 6.6 24 8.9 999.9 91.0 77.0 0.00G 999.9 010000 724050 13743 20050720 83.3 24 69.4 24 1016.4 24 1014.0 24 9.7 24 6.9 24 12.0 14.0 91.0 77.0 0.00G 999.9 000000 724050 13743 20050721 83.7 24 66.8 24 1015.9 24 1013.6 24 8.1 24 4.3 24 9.9 999.9 95.0 73.9 0.00G 999.9 000000 724050 13743 20050722 82.4 24 69.5 24 1014.0 24 1011.7 24 7.4 24 5.1 24 12.0 999.9 95.0 73.9 0.00G 999.9 000000 724050 13743 20050723 81.1 24 66.4 24 1015.8 24 1013.5 24 8.8 24 7.4 24 28.0 39.0 91.9 71.1 0.87G 999.9 010010 724050 13743 20050724 77.1 24 56.6 24 1019.1 24 1016.7 24 10.0 24 5.8 24 15.0 999.9 87.1 66.0 0.00I 999.9 000000 724050 13743 20050725 80.5 24 67.1 24 1014.1 24 1011.7 24 8.6 24 8.9 24 15.0 19.0 93.0 66.0 0.08G 999.9 010010 724050 13743 20050726 87.2 24 69.1 24 1012.2 24 1009.9 24 8.5 24 6.2 24 9.9 999.9 97.0 72.0 0.00I 999.9 000000 724050 13743 20050727 87.7 24 73.0 24 1010.1 24 1007.7 24 6.9 24 8.9 24 24.1 39.0 96.1* 73.4* 0.00G 999.9 010010 724050 13743 20050728 76.2 24 63.5 24 1015.9 24 1013.6 24 9.6 24 7.5 24 13.0 999.9 81.0* 72.0* 0.11G 999.9 010010 724050 13743 20050729 75.5 24 64.9 24 1019.7 24 1017.4 24 9.3 24 4.8 24 8.9 999.9 84.0 71.1 0.00G 999.9 010000 724050 13743 20050730 77.2 24 68.5 24 1021.9 24 1019.6 24 6.9 24 6.8 24 11.1 999.9 84.0 73.0 0.02G 999.9 000000 724050 13743 20050731 76.8 24 67.5 24 1022.7 24 1020.4 24 9.4 24 5.4 24 8.9 999.9 84.0 71.1 0.01G 999.9 000000 724050 13743 20050801 78.4 24 67.2 24 1020.7 24 1018.3 24 8.1 24 4.3 24 7.0 999.9 87.1 71.1 0.00G 999.9 000000 724050 13743 20050802 82.0 24 67.9 24 1017.5 24 1015.1 24 7.2 24 6.2 24 9.9 999.9 93.9 71.1 0.00G 999.9 000000 724050 13743 20050803 84.8 24 67.6 24 1015.7 24 1013.3 24 8.9 24 5.2 24 9.9 999.9 93.9 72.0 0.00G 999.9 000000 724050 13743 20050804 85.8 24 69.0 24 1017.3 24 1015.0 24 7.0 24 4.8 24 11.1 999.9 97.0 75.0 0.00G 999.9 000000 724050 13743 20050805 85.7 24 68.8 24 1018.1 24 1015.8 24 7.0 24 7.4 24 17.1 999.9 97.0 75.9 0.00G 999.9 000000 724050 13743 20050806 82.7 24 67.2 24 1019.7 24 1017.3 24 8.3 24 6.3 24 13.0 999.9 97.0 75.9 0.01G 999.9 010010 724050 13743 20050807 81.2 24 66.2 24 1020.2 24 1017.9 24 7.8 24 5.4 24 11.1 999.9 90.0 75.0 0.00G 999.9 000000 724050 13743 20050808 80.6 24 68.8 24 1020.5 24 1018.2 24 8.3 24 6.2 24 26.0 999.9 89.1 72.0 0.00G 999.9 010010 724050 13743 20050809 73.3 24 69.3 24 1020.4 24 1018.0 24 6.9 24 6.1 24 12.0 19.0 75.2* 71.6* 1.17G 999.9 010010 724050 13743 20050810 77.3 24 68.1 24 1016.7 24 1014.4 24 9.9 24 4.4 24 7.0 18.1 86.0 72.0 0.16G 999.9 000000 724050 13743 20050811 82.1 24 69.0 24 1015.0 24 1012.6 24 7.7 24 4.4 24 7.0 999.9 93.0 73.0 0.00G 999.9 000000 724050 13743 20050812 84.9 24 73.0 24 1015.4 24 1013.1 24 4.8 24 6.2 24 12.0 999.9 95.0 73.0 0.00G 999.9 000000 724050 13743 20050813 85.9 24 73.2 24 1013.7 24 1011.4 24 4.4 24 7.8 24 13.0 999.9 95.0 78.1 0.00G 999.9 000000 724050 13743 20050814 85.6 24 73.4 24 1013.1 24 1010.8 24 4.5 24 8.1 24 11.1 999.9 95.0 78.1 0.00G 999.9 000000 724050 13743 20050815 84.3 24 68.7 24 1016.1 24 1013.7 24 8.1 24 7.9 24 12.0 999.9 93.9 78.1 0.00G 999.9 000000 724050 13743 20050816 77.8 24 68.5 24 1018.2 24 1015.8 24 8.0 24 6.8 24 14.0 999.9 90.0 73.9 0.00G 999.9 010010 724050 13743 20050817 76.2 24 63.7 24 1016.4 24 1014.0 24 8.8 24 6.4 24 11.1 999.9 88.0 68.0 0.13G 999.9 010000 724050 13743 20050818 78.6 24 62.8 24 1017.1 24 1014.8 24 9.2 24 5.3 24 11.1 999.9 89.1 68.0 0.00G 999.9 000000 724050 13743 20050819 74.6 24 66.3 24 1017.3 24 1015.0 24 8.1 24 6.6 24 11.1 999.9 89.1 69.1 0.09G 999.9 010000 724050 13743 20050820 78.7 24 70.4 24 1016.3 24 1013.9 24 6.7 24 4.2 24 9.9 999.9 90.0 71.1 0.28G 999.9 010000 724050 13743 20050821 84.9 24 71.0 24 1012.7 24 1010.4 24 7.2 24 7.9 24 13.0 15.0 93.9 73.9 0.00G 999.9 000000 724050 13743 20050822 80.8 24 57.4 24 1012.1 24 1009.7 24 10.0 24 5.7 24 11.1 18.1 93.9 70.0 0.00G 999.9 000000 724050 13743 20050823 76.5 24 56.2 24 1015.0 24 1012.6 24 10.0 24 6.5 24 11.1 999.9 88.0 68.0 0.00G 999.9 000000 724050 13743 20050824 75.9 24 56.5 24 1018.5 24 1016.1 24 10.0 24 6.8 24 12.0 999.9 84.9 68.0 0.00G 999.9 000000 724050 13743 20050825 73.8 24 53.5 24 1023.4 24 1021.1 24 10.0 24 4.5 24 12.0 999.9 84.9 62.1 0.00G 999.9 000000 724050 13743 20050826 73.3 24 56.7 24 1020.8 24 1018.5 24 10.0 24 5.8 24 8.9 999.9 84.0 62.1 0.00G 999.9 000000 724050 13743 20050827 70.3 24 60.8 24 1016.7 24 1014.4 24 9.7 24 4.6 24 8.9 999.9 80.1 64.9 0.01G 999.9 010000 724050 13743 20050828 76.6 24 69.2 24 1014.2 24 1011.9 24 8.6 24 5.6 24 11.1 999.9 87.1 66.9 0.48G 999.9 010000 724050 13743 20050829 78.4 24 69.2 24 1014.9 24 1012.6 24 9.5 24 5.0 24 11.1 999.9 87.1 71.1 0.27G 999.9 000000 724050 13743 20050830 79.3 24 71.3 24 1012.1 24 1009.8 24 9.9 24 6.4 24 13.0 999.9 87.1 71.1 0.00G 999.9 000000 724050 13743 20050831 82.3 24 70.8 24 1003.1 24 1000.8 24 10.0 24 13.9 24 21.0 27.0 87.1 73.9 0.00G 999.9 000000 724050 13743 20050901 77.6 24 59.3 24 1011.3 24 1009.0 24 9.5 24 7.9 24 13.0 22.0 87.1 70.0 0.00G 999.9 000000 724050 13743 20050902 79.0 24 58.7 24 1014.9 24 1012.6 24 9.6 24 4.8 24 13.0 17.1 90.0 66.9 0.00G 999.9 000000 724050 13743 20050903 77.0 24 53.7 24 1017.2 24 1014.9 24 10.0 24 8.2 24 14.0 17.1 90.0 66.9 0.00G 999.9 000000 724050 13743 20050904 73.7 24 53.2 24 1021.0 24 1018.7 24 10.0 24 7.3 24 12.0 17.1 84.9 63.0 0.00G 999.9 000000 724050 13743 20050905 74.0 24 54.5 24 1026.4 24 1024.1 24 10.0 24 7.9 24 13.0 18.1 84.9 63.0 0.00G 999.9 000000 724050 13743 20050906 72.5 24 57.7 24 1029.2 24 1027.0 24 10.0 24 7.5 24 12.0 999.9 84.0 64.0 0.00G 999.9 000000 724050 13743 20050907 71.3 24 55.0 24 1026.7 24 1024.4 24 10.0 24 5.1 24 8.9 999.9 82.9 60.1 0.00G 999.9 000000 724050 13743 20050908 72.3 24 53.8 24 1020.6 24 1018.3 24 10.0 24 2.9 24 7.0 999.9 84.9 60.1 0.00G 999.9 000000 724050 13743 20050909 74.5 24 56.8 24 1017.7 24 1015.4 24 9.1 24 5.2 24 11.1 999.9 86.0 60.1 0.00G 999.9 000000 724050 13743 20050910 75.4 24 61.9 24 1021.0 22 1018.8 24 5.6 24 4.0 24 12.0 18.1 86.0 63.0 0.00G 999.9 000000 724050 13743 20050911 73.3 24 56.0 24 1024.6 24 1022.3 24 9.7 24 3.8 24 8.9 999.9 84.9 63.0 0.00G 999.9 000000 724050 13743 20050912 73.2 24 57.1 24 1022.7 24 1020.3 24 10.0 24 5.5 24 8.9 999.9 86.0 62.1 0.00G 999.9 000000 724050 13743 20050913 75.1 24 55.5 24 1017.5 24 1015.2 24 10.0 24 4.7 24 8.9 999.9 90.0 62.1 0.00G 999.9 000000 724050 13743 20050914 79.1 24 68.6 24 1015.2 22 1013.0 24 9.7 24 5.8 24 11.1 999.9 90.0 63.0 0.00G 999.9 010000 724050 13743 20050915 80.8 24 69.8 24 1015.5 22 1013.2 24 9.9 24 6.0 24 8.9 999.9 90.0 73.9 0.01G 999.9 000000 724050 13743 20050916 80.6 24 68.9 24 1015.7 20 1013.7 24 9.0 24 4.5 24 8.9 999.9 90.0 75.0 0.00A 999.9 000000 724050 13743 20050917 80.0 24 65.1 24 1013.4 24 1011.0 24 9.7 24 5.9 24 11.1 24.1 90.0 71.1 0.00G 999.9 010010 724050 13743 20050918 77.1 24 59.7 24 1016.5 24 1014.2 24 8.7 24 6.7 24 12.0 15.9 90.0 68.0 0.00G 999.9 000000 724050 13743 20050919 76.3 24 58.0 24 1021.7 24 1019.4 24 8.2 24 4.8 24 9.9 999.9 88.0 66.9 0.00G 999.9 000000 724050 13743 20050920 78.4 24 64.2 24 1019.4 24 1017.1 24 6.8 24 8.9 24 13.0 17.1 90.0 66.9 0.00G 999.9 000000 724050 13743 20050921 76.0 24 54.3 24 1020.4 24 1018.1 24 9.5 24 6.1 24 9.9 999.9 90.0 66.0 0.00G 999.9 000000 724050 13743 20050922 73.8 24 56.8 24 1019.4 24 1017.1 24 9.7 24 5.9 24 13.6 18.1 88.0 62.1 0.00G 999.9 000000 724050 13743 20050923 79.6 24 63.8 24 1015.6 24 1013.3 24 7.3 24 7.2 24 11.1 999.9 93.0 62.1 0.00G 999.9 000000 724050 13743 20050924 72.8 24 58.1 24 1022.9 24 1020.5 24 10.0 24 9.7 24 14.0 19.0 93.0 68.0 0.00G 999.9 010000 724050 13743 20050925 71.1 24 59.8 24 1024.8 24 1022.4 24 10.0 24 6.4 24 11.1 999.9 78.1 66.9 0.00G 999.9 000000 724050 13743 20050926 74.5 24 64.0 24 1015.0 24 1012.6 24 9.4 24 12.7 24 20.0 26.0 84.0 66.9 0.00G 999.9 010000 724050 13743 20050927 72.2 24 55.2 24 1013.5 24 1011.2 24 9.0 24 9.5 24 15.0 20.0 84.0 64.9 0.09G 999.9 010000 724050 13743 20050928 67.4 24 46.0 24 1020.3 24 1018.0 24 10.0 24 6.4 24 12.0 999.9 80.1 55.0 0.00G 999.9 000000 724050 13743 20050929 69.1 24 54.4 24 1014.7 24 1012.1 24 9.9 24 12.9 24 18.1 26.0 80.1 55.0 0.00G 999.9 010000 724050 13743 20050930 60.8 24 36.1 24 1021.5 24 1019.2 24 10.0 24 7.8 24 19.0 25.1 77.0 50.0 0.01G 999.9 000000 724050 13743 20051001 63.2 24 46.9 24 1025.0 24 1022.7 24 10.0 24 4.5 24 9.9 999.9 77.0 50.0 0.00G 999.9 000000 724050 13743 20051002 67.6 24 53.1 24 1027.9 24 1025.6 24 9.9 24 2.8 24 9.9 999.9 82.0 52.0 0.00G 999.9 000000 724050 13743 20051003 68.1 24 54.9 24 1028.2 24 1025.9 24 9.4 24 4.3 24 8.9 999.9 82.0 57.0 0.00G 999.9 000000 724050 13743 20051004 70.2 24 62.0 24 1027.5 24 1025.2 24 9.6 24 5.2 24 9.9 999.9 81.0 57.0 0.00G 999.9 000000 724050 13743 20051005 71.9 24 61.3 24 1025.8 24 1023.5 24 9.8 24 5.7 24 8.0 999.9 81.0 64.9 0.00G 999.9 000000 724050 13743 20051006 72.6 24 65.9 24 1022.2 24 1019.8 24 9.2 24 5.2 24 8.9 999.9 81.0 64.9 0.00G 999.9 010000 724050 13743 20051007 72.9 24 69.0 24 1014.3 24 1012.0 24 6.6 24 8.6 24 24.1 31.1 81.0 68.0 0.09G 999.9 110000 724050 13743 20051008 70.4 24 68.2 24 1005.3 24 1003.1 24 3.0 24 8.4 24 15.9 21.0 77.0 59.0 5.30G 999.9 010000 724050 13743 20051009 59.5 24 52.1 24 1011.6 24 1009.3 24 9.9 24 9.4 24 15.0 18.1 73.0 55.9 1.95G 999.9 010000 724050 13743 20051010 62.5 24 54.5 24 1016.9 24 1014.6 24 9.7 24 6.6 24 8.9 18.1 69.1 55.9 0.00G 999.9 000000 724050 13743 20051011 63.5 24 58.5 24 1017.0 24 1014.6 24 7.2 24 8.8 24 13.0 999.9 69.1 59.0 0.04G 999.9 010000 724050 13743 20051012 62.6 24 55.8 24 1018.7 24 1016.4 24 8.8 24 9.4 24 14.0 999.9 66.0 59.0 0.05G 999.9 010000 724050 13743 20051013 57.9 24 53.6 24 1017.7 24 1015.4 24 7.7 24 11.9 24 14.0 19.0 66.0 55.0 0.10G 999.9 010000 724050 13743 20051014 63.0 24 57.2 24 1014.7 24 1012.4 24 8.7 24 11.9 24 19.0 24.1 69.8* 60.1* 0.06G 999.9 010000 724050 13743 20051015 66.8 24 50.5 24 1008.2 24 1005.9 24 9.5 24 10.2 24 17.1 24.1 80.1 57.0 0.01G 999.9 000000 724050 13743 20051016 61.6 24 38.1 24 1010.0 24 1007.8 24 10.0 24 11.3 24 19.0 28.0 80.1 53.1 0.00G 999.9 000000 724050 13743 20051017 59.7 24 38.6 24 1011.4 24 1009.1 24 10.0 24 9.4 24 15.9 21.0 69.1 51.1 0.00G 999.9 000000 724050 13743 20051018 62.1 24 44.0 24 1009.1 24 1006.8 24 10.0 24 7.9 24 17.1 22.9 79.0 51.1 0.00G 999.9 000000 724050 13743 20051019 63.2 24 47.5 24 1012.8 24 1010.6 24 10.0 24 6.5 24 14.0 20.0 79.0 51.1 0.00G 999.9 000000 724050 13743 20051020 61.0 24 49.3 24 1014.1 24 1011.8 24 9.5 24 7.6 24 13.0 999.9 75.9 51.1 0.00G 999.9 010000 724050 13743 20051021 54.0 24 44.9 24 1017.1 24 1014.7 24 7.5 24 7.3 24 11.1 999.9 64.0 51.1 0.00G 999.9 010000 724050 13743 20051022 54.3 24 51.7 24 1007.9 24 1005.6 24 5.4 24 7.1 24 13.0 999.9 57.0 51.1 0.46G 999.9 010010 724050 13743 20051023 54.6 24 40.2 24 1008.6 24 1006.2 24 10.0 24 7.5 24 15.0 20.0 63.0 48.0 0.19G 999.9 010000 724050 13743 20051024 53.5 24 44.6 24 1011.2 24 1008.9 24 9.9 24 9.2 24 21.0 27.0 63.0 48.0 0.00G 999.9 010000 724050 13743 20051025 46.1 24 42.7 24 1000.3 24 997.9 24 4.7 24 13.6 24 20.0 26.0 59.0 42.1 0.87G 999.9 010000 724050 13743 20051026 47.7 24 37.3 24 1009.8 24 1007.5 24 9.3 24 10.8 24 17.1 22.9 57.9 42.1 0.29G 999.9 010000 724050 13743 20051027 48.8 24 32.9 24 1022.1 24 1019.8 24 10.0 24 6.7 24 12.0 999.9 57.9 42.1 0.00G 999.9 000000 724050 13743 20051028 48.2 24 33.1 24 1026.1 24 1023.7 24 10.0 24 5.9 24 9.9 15.9 57.0 42.1 0.00G 999.9 000000 724050 13743 20051029 46.1 24 32.0 24 1026.3 24 1024.0 24 10.0 24 7.2 24 15.0 21.0 54.0 39.9 0.00G 999.9 000000 724050 13743 20051030 53.0 24 33.2 24 1026.3 24 1023.9 24 10.0 24 6.2 24 14.0 15.0 66.9 39.9 0.00G 999.9 000000 724050 13743 20051031 53.1 24 40.2 24 1025.1 24 1022.7 24 10.0 24 3.3 24 8.0 999.9 70.0* 42.1* 0.00G 999.9 000000 724050 13743 20051101 56.3 24 42.7 24 1018.3 24 1015.9 24 10.0 24 7.2 24 13.0 999.9 71.1 41.0 0.00G 999.9 000000 724050 13743 20051102 55.9 24 39.5 24 1018.0 24 1015.7 24 10.0 24 8.7 24 13.0 18.1 69.1 46.0 0.00G 999.9 000000 724050 13743 20051103 51.8 24 39.9 24 1023.8 24 1021.4 24 9.7 24 6.5 24 14.0 15.9 66.9 41.0 0.00G 999.9 100000 724050 13743 20051104 55.6 24 41.3 24 1017.8 24 1015.5 24 10.0 24 6.1 24 8.0 999.9 68.0 41.0 0.00G 999.9 000000 724050 13743 20051105 60.1 24 50.0 24 1017.0 24 1014.7 24 9.1 24 4.2 24 8.0 999.9 75.0 46.9 0.00G 999.9 000000 724050 13743 20051106 61.8 24 53.1 24 1015.6 24 1013.3 24 7.1 24 6.3 24 15.9 24.1 77.0 50.0 0.00G 999.9 000000 724050 13743 20051107 62.2 24 39.7 24 1020.7 24 1018.4 24 9.9 24 9.5 24 15.0 21.0 77.0 54.0 0.00G 999.9 000000 724050 13743 20051108 54.0 24 43.2 24 1020.8 24 1018.5 24 9.9 24 4.4 24 7.0 999.9 64.9 45.0 0.00G 999.9 000000 724050 13743 20051109 57.3 24 52.0 24 1016.9 24 1014.5 24 6.8 24 4.9 24 8.9 999.9 64.9 45.0 0.05G 999.9 010000 724050 13743 20051110 58.7 24 37.9 24 1009.2 24 1006.9 24 9.7 24 14.3 24 22.9 29.9 69.1 48.0 0.00G 999.9 010000 724050 13743 20051111 46.1 24 27.0 24 1020.3 24 1017.9 24 10.0 24 7.8 24 15.0 21.0 54.0* 37.9* 0.00G 999.9 000000 724050 13743 20051112 47.5 24 32.6 24 1025.1 24 1022.7 24 10.0 24 4.5 24 9.9 999.9 60.1 36.0 0.00G 999.9 000000 724050 13743 20051113 54.4 24 39.0 24 1024.8 24 1022.4 24 10.0 24 8.6 24 14.0 999.9 68.0 36.0 0.00G 999.9 000000 724050 13743 20051114 60.3 24 46.1 24 1024.2 24 1021.9 24 10.0 24 5.9 24 12.0 999.9 68.0 44.1 0.00G 999.9 000000 724050 13743 20051115 59.8 24 48.6 24 1023.9 24 1021.6 24 8.9 24 5.1 24 11.1 999.9 69.1 53.1 0.01G 999.9 010000 724050 13743 20051116 65.6 24 58.2 24 1015.9 24 1013.6 24 9.6 24 13.8 24 20.0 28.0 75.0* 48.2* 0.23A 999.9 010000 724050 13743 20051117 42.1 24 25.7 24 1022.8 24 1020.5 24 9.5 24 10.7 24 18.1 22.9 48.9* 36.0* 0.48G 999.9 010000 724050 13743 20051118 33.7 24 14.0 24 1029.4 24 1027.1 24 10.0 24 9.2 24 16.9 19.0 44.1 28.0 0.00G 999.9 000000 724050 13743 20051119 38.3 24 22.8 24 1028.2 24 1025.9 24 10.0 24 4.7 24 8.9 999.9 50.0 28.0 0.00G 999.9 000000 724050 13743 20051120 44.8 24 28.2 24 1025.9 24 1023.6 24 10.0 24 4.3 24 7.0 999.9 57.9 28.9 0.00G 999.9 000000 724050 13743 20051121 47.3 24 39.3 24 1015.9 24 1013.6 24 7.9 24 3.1 24 9.9 999.9 57.9 35.1 0.00G 999.9 010000 724050 13743 20051122 45.9 24 37.4 24 994.4 24 992.2 24 7.5 24 15.6 24 26.0 32.1 50.0* 42.8* 0.76G 999.9 010000 724050 13743 20051123 37.0 24 14.4 24 1003.9 24 1001.7 24 10.0 24 12.1 24 22.9 32.1 50.0 30.9 0.05G 999.9 001000 724050 13743 20051124 39.2 24 30.7 24 996.8 24 994.5 24 8.8 24 10.7 24 28.0 41.0 51.1 30.9 0.04G 999.9 011000 724050 13743 20051125 27.9 24 1.2 24 1020.5 24 1018.2 24 10.0 24 11.0 24 26.0 41.0 35.1* 21.9* 0.01G 999.9 000000 724050 13743 20051126 34.6 24 16.5 24 1027.6 24 1025.3 24 10.0 24 5.1 24 13.0 999.9 46.0 21.9 0.00G 999.9 000000 724050 13743 20051127 42.9 24 27.6 24 1026.1 24 1023.7 24 10.0 24 3.1 24 7.0 999.9 53.6* 35.1* 0.00G 999.9 000000 724050 13743 20051128 53.9 24 47.1 24 1023.0 24 1020.7 24 8.7 24 6.0 24 14.0 999.9 69.1 34.0 0.04G 999.9 010000 724050 13743 20051129 64.2 24 55.8 24 1015.4 24 1013.0 24 10.0 24 15.4 24 26.0 32.1 66.9* 62.1* 0.00H 999.9 010000 724050 13743 20051130 52.7 24 44.1 24 1013.8 24 1011.4 24 9.6 24 11.4 24 26.0 32.1 68.0 45.0 0.48G 999.9 010000 724050 13743 20051201 39.1 24 27.7 24 1015.9 24 1013.6 24 10.0 24 8.4 24 15.9 22.9 54.0 33.1 0.00G 999.9 000000 724050 13743 20051202 38.0 24 23.0 24 1010.6 24 1008.3 24 10.0 24 10.8 24 20.0 28.9 45.0 32.0 0.00G 999.9 010000 724050 13743 20051203 31.0 24 9.7 24 1021.0 24 1018.8 24 10.0 24 8.8 24 14.0 21.0 42.1 26.1 0.00G 999.9 000000 724050 13743 20051204 40.3 24 31.5 24 1012.6 22 1010.6 24 9.1 24 8.2 24 15.0 26.0 51.1 26.1 0.24G 999.9 011000 724050 13743 20051205 37.5 24 26.8 24 1021.0 20 1018.5 24 8.5 24 9.5 24 15.9 18.1 51.1 30.0 0.21G 1.2 101000 724050 13743 20051206 32.4 24 24.2 24 1020.4 21 1017.3 24 6.4 24 8.9 24 18.1 999.9 39.0 30.0 0.17G 1.2 001000 724050 13743 20051207 32.2 24 16.8 24 1029.7 24 1027.3 24 10.0 24 8.8 24 18.1 22.0 37.0 26.1 0.02G 1.2 000000 724050 13743 20051208 28.2 24 13.0 24 1039.2 24 1036.9 24 10.0 24 6.8 24 11.1 999.9 37.0 23.0 0.00G 1.2 000000 724050 13743 20051209 32.8 24 23.5 24 1024.5 20 1021.7 24 8.1 24 8.8 24 17.1 28.9 39.0 23.0 0.55G 1.2 111000 724050 13743 20051210 31.2 24 20.8 24 1021.0 24 1018.7 24 9.9 24 7.7 24 14.0 22.0 39.9 23.0 0.00I 1.2 000000 724050 13743 20051211 35.9 24 26.8 24 1006.2 24 1003.9 24 9.9 24 6.3 24 12.0 999.9 48.0 23.2 0.00G 999.9 000000 724050 13743 20051212 37.5 24 22.6 24 1009.1 24 1006.9 24 10.0 24 8.5 24 14.0 999.9 48.0 27.0 0.00G 999.9 000000 724050 13743 20051213 28.5 24 11.7 24 1022.1 24 1019.9 24 10.0 24 10.0 24 13.0 17.1 39.9 23.0 0.00G 999.9 000000 724050 13743 20051214 22.7 24 8.8 24 1031.8 24 1029.6 24 10.0 24 7.4 24 13.0 999.9 32.0 19.0 0.00G 999.9 000000 724050 13743 20051215 28.2 24 19.4 24 1025.5 22 1023.1 24 8.2 24 6.6 24 11.1 999.9 37.0 19.0 0.00G 999.9 011000 724050 13743 20051216 40.5 24 32.9 24 1011.7 21 1007.9 24 7.6 24 7.9 24 15.0 20.0 48.0 26.1 1.23G 999.9 010000 724050 13743 20051217 38.5 24 25.4 24 1029.3 24 1026.9 24 10.0 24 5.5 24 9.9 999.9 48.0 30.9 0.30G 999.9 000000 724050 13743 20051218 37.7 24 26.6 24 1032.8 24 1030.5 24 10.0 24 2.8 24 8.0 999.9 46.0 30.9 0.00G 999.9 000000 724050 13743 20051219 34.9 24 25.5 24 1026.4 24 1024.0 24 9.1 24 6.3 24 14.0 22.9 46.0 30.0 0.00G 999.9 000000 724050 13743 20051220 30.1 24 5.8 24 1024.0 24 1021.8 24 10.0 24 7.4 24 12.0 999.9 41.0 24.1 0.00G 999.9 000000 724050 13743 20051221 31.1 24 11.5 24 1024.1 24 1021.8 24 10.0 24 7.2 24 13.0 999.9 39.0 24.1 0.00G 999.9 000000 724050 13743 20051222 33.3 24 19.6 24 1024.7 24 1022.4 24 10.0 24 5.5 24 11.1 999.9 41.0 25.0 0.00G 999.9 000000 724050 13743 20051223 36.3 24 23.4 24 1018.2 24 1015.9 24 10.0 24 6.0 24 8.9 999.9 52.0 26.1 0.00G 999.9 000000 724050 13743 20051224 43.1 24 25.2 24 1013.4 24 1011.1 24 10.0 24 3.9 24 11.1 999.9 57.9 26.1 0.00G 999.9 000000 724050 13743 20051225 37.9 24 32.3 24 1008.4 22 1005.6 24 6.9 24 2.8 24 15.9 28.9 57.9 30.0 0.00G 999.9 010000 724050 13743 20051226 41.7 24 36.7 24 999.6 17 996.2 24 6.0 24 7.4 24 20.0 28.0 48.0 30.0 0.80G 999.9 010000 724050 13743 20051227 41.7 24 26.7 24 1011.7 24 1009.3 24 10.0 24 10.4 24 15.9 28.9 48.0 37.0 0.03G 999.9 000000 724050 13743 20051228 40.1 24 31.9 24 1011.2 24 1008.9 24 9.8 24 3.0 24 8.0 999.9 51.1 33.1 0.00G 999.9 000000 724050 13743 20051229 47.9 24 43.0 24 999.2 19 996.3 24 6.3 24 5.2 24 15.0 24.1 52.0 33.1 0.15G 999.9 110000 724050 13743 20051230 44.5 24 32.8 24 1007.8 24 1005.5 24 10.0 24 9.8 24 15.0 23.9 51.1 39.9 0.19G 999.9 010000 724050 13743 20051231 41.1 24 34.7 24 1010.0 23 1007.7 24 9.2 24 3.5 24 7.0 999.9 48.0* 37.4* 0.00G 999.9 010000 fluids-1.0.22/tests/gsod/1940/0000755000175000017500000000000014302004506015075 5ustar nileshnileshfluids-1.0.22/tests/gsod/1940/724050-13743.op0000644000175000017500000014350514302004506016665 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19400101 22.8 24 4.6 24 1008.4 24 9999.9 0 10.9 24 10.9 24 18.1 999.9 27.3* 17.4* 0.00I 999.9 000000 724050 13743 19400102 21.9 24 6.0 24 1012.8 24 9999.9 0 9.9 24 10.2 24 16.9 999.9 28.4* 16.3* 0.00I 999.9 000000 724050 13743 19400103 22.2 24 7.1 24 1018.6 24 9999.9 0 11.4 24 8.8 24 15.9 999.9 27.3* 18.3* 0.00I 999.9 000000 724050 13743 19400104 22.9 24 9.1 24 1022.5 24 9999.9 0 8.5 24 4.8 24 12.0 999.9 29.3* 15.4* 0.00I 999.9 000000 724050 13743 19400105 27.6 24 20.0 24 1016.4 24 9999.9 0 4.5 24 5.9 24 35.0 999.9 38.3* 19.4* 0.00I 999.9 000000 724050 13743 19400106 22.2 24 7.5 24 1022.1 24 9999.9 0 8.8 24 12.1 24 21.0 999.9 31.3* 15.4* 0.00I 999.9 000000 724050 13743 19400107 23.6 24 12.4 24 1029.2 24 9999.9 0 5.9 24 5.4 24 15.0 999.9 28.4* 18.3* 0.00I 999.9 000000 724050 13743 19400108 25.1 24 20.8 24 1020.5 24 9999.9 0 3.0 24 6.6 24 8.9 999.9 29.3* 21.4* 99.99 999.9 101000 724050 13743 19400109 23.8 24 16.3 24 1029.1 24 9999.9 0 6.9 24 6.9 24 11.1 999.9 29.3* 17.4* 0.00I 999.9 000000 724050 13743 19400110 18.9 24 10.4 24 1033.2 24 9999.9 0 3.9 24 0.8 24 5.1 999.9 35.4* 9.3* 0.00I 999.9 000000 724050 13743 19400111 29.1 24 21.4 24 1027.8 24 9999.9 0 4.6 24 1.4 24 4.1 999.9 33.4* 25.3* 0.00I 999.9 000000 724050 13743 19400112 34.9 24 29.8 24 1018.8 24 9999.9 0 4.2 24 1.2 24 4.1 999.9 38.3* 31.3* 99.99 999.9 010000 724050 13743 19400113 33.8 24 31.9 24 1020.3 24 9999.9 0 1.2 24 2.3 24 6.0 999.9 38.3* 27.3* 99.99 999.9 110000 724050 13743 19400114 40.7 24 39.8 24 1015.3 24 9999.9 0 2.2 24 5.0 24 13.0 999.9 55.4* 36.3* 99.99 999.9 110000 724050 13743 19400115 40.1 24 32.3 24 1008.1 24 9999.9 0 10.3 24 10.3 24 26.0 999.9 47.3* 35.4* 99.99 999.9 010000 724050 13743 19400116 33.3 24 17.1 24 1017.2 24 9999.9 0 10.9 24 9.8 24 16.9 999.9 37.4* 30.4* 0.00I 999.9 000000 724050 13743 19400117 25.5 24 14.1 24 1013.0 24 9999.9 0 6.6 24 7.2 24 13.0 999.9 31.3* 20.3* 99.99 999.9 001000 724050 13743 19400118 20.9 24 8.7 24 1017.1 24 9999.9 0 6.0 24 5.2 24 13.0 999.9 26.4* 16.3* 99.99 999.9 001000 724050 13743 19400119 17.3 24 1.9 24 1017.2 24 9999.9 0 6.8 24 11.0 24 19.0 999.9 26.4* 10.4* 99.99 999.9 001000 724050 13743 19400120 15.2 24 -0.6 24 1016.3 24 9999.9 0 9.3 24 9.1 24 15.9 999.9 24.4* 9.3* 0.00I 999.9 000000 724050 13743 19400121 23.3 24 9.6 24 1014.9 24 9999.9 0 9.6 24 7.8 24 19.0 999.9 32.4* 15.4* 0.00I 999.9 000000 724050 13743 19400122 26.2 24 12.7 24 1018.1 24 9999.9 0 7.8 24 4.1 24 13.0 999.9 41.4* 15.4* 0.00I 999.9 000000 724050 13743 19400123 27.1 24 15.5 24 1024.6 24 9999.9 0 5.9 24 5.7 24 13.0 999.9 32.4* 23.4* 99.99 999.9 001000 724050 13743 19400124 26.9 24 20.6 24 1011.9 24 9999.9 0 4.8 24 13.4 24 22.0 999.9 33.4* 21.4* 99.99 999.9 001000 724050 13743 19400125 22.3 24 11.3 24 1019.9 24 9999.9 0 8.0 24 14.1 24 29.9 999.9 28.4* 17.4* 0.00I 999.9 000000 724050 13743 19400126 14.7 24 1.3 24 1020.0 24 9999.9 0 9.0 24 7.2 24 15.9 999.9 20.3* 9.3* 0.00I 999.9 000000 724050 13743 19400127 14.2 24 -0.3 24 1018.6 24 9999.9 0 7.0 24 12.8 24 22.0 999.9 23.4* 8.4* 0.00I 999.9 000000 724050 13743 19400128 16.3 24 3.7 24 1023.6 24 9999.9 0 6.4 24 6.2 24 14.0 999.9 25.3* 4.5* 0.00I 999.9 000000 724050 13743 19400129 12.5 24 3.4 24 1024.7 24 9999.9 0 3.0 24 2.0 24 7.0 999.9 29.3* 1.4* 0.00I 999.9 000000 724050 13743 19400130 17.4 24 9.1 24 1021.2 24 9999.9 0 2.2 24 0.6 24 2.9 999.9 32.4* 5.4* 0.00I 999.9 000000 724050 13743 19400131 23.3 24 14.6 24 1023.0 24 9999.9 0 4.8 24 3.1 24 9.9 999.9 35.4* 11.3* 0.00I 999.9 000000 724050 13743 19400201 24.2 24 14.6 24 1024.3 24 9999.9 0 3.4 24 1.8 24 6.0 999.9 41.4* 12.4* 0.00I 999.9 000000 724050 13743 19400202 29.7 24 21.2 24 1014.7 23 9999.9 0 6.1 24 9.9 24 22.0 999.9 35.4* 21.4* 99.99 999.9 001000 724050 13743 19400203 25.7 24 11.8 23 1021.1 24 9999.9 0 10.0 24 13.2 24 22.0 999.9 38.3* 17.4* 0.00I 999.9 000000 724050 13743 19400204 34.2 24 18.0 24 1020.5 24 9999.9 0 6.8 24 3.8 24 13.0 999.9 43.3* 26.4* 0.00I 999.9 000000 724050 13743 19400205 38.0 24 25.4 23 1016.6 24 9999.9 0 4.8 24 1.5 24 7.0 999.9 49.3* 31.3* 0.00I 999.9 000000 724050 13743 19400206 36.3 24 33.6 24 1012.3 24 9999.9 0 2.2 24 0.8 24 6.0 999.9 41.4* 33.4* 99.99 999.9 110000 724050 13743 19400207 40.5 24 34.2 24 1002.7 24 9999.9 0 4.9 24 8.2 24 15.9 999.9 43.3* 37.4* 99.99 999.9 110000 724050 13743 19400208 37.0 24 24.7 24 1018.9 24 9999.9 0 9.0 24 7.3 24 18.1 999.9 44.4* 27.3* 0.00I 999.9 000000 724050 13743 19400209 40.9 24 31.6 24 1019.9 24 9999.9 0 4.2 24 3.3 24 8.9 999.9 56.3* 32.4* 0.00I 999.9 000000 724050 13743 19400210 38.2 24 35.2 24 1011.8 24 9999.9 0 3.3 24 2.4 24 8.9 999.9 43.3* 36.3* 99.99 999.9 110000 724050 13743 19400211 42.3 24 34.3 24 998.3 24 9999.9 0 5.7 24 9.2 24 22.9 999.9 48.4* 37.4* 99.99 999.9 110000 724050 13743 19400212 41.8 24 29.5 24 1011.2 24 9999.9 0 7.2 24 4.3 24 12.0 999.9 60.3* 28.4* 0.00I 999.9 000000 724050 13743 19400213 46.8 24 34.5 24 1010.2 24 9999.9 0 8.1 24 5.3 24 9.9 999.9 53.4* 38.3* 0.00I 999.9 000000 724050 13743 19400214 36.1 24 32.6 24 992.6 24 9999.9 0 4.5 24 16.1 24 39.0 999.9 44.4* 27.3* 99.99 999.9 111000 724050 13743 19400215 29.9 24 16.5 24 1012.7 24 9999.9 0 9.3 24 23.2 24 34.0 999.9 37.4* 24.4* 99.99 999.9 001000 724050 13743 19400216 33.2 24 14.4 24 1026.7 24 9999.9 0 11.5 24 11.5 24 16.9 999.9 42.4* 24.4* 0.00I 999.9 000000 724050 13743 19400217 35.7 24 20.7 24 1029.0 24 9999.9 0 9.7 24 6.9 24 9.9 999.9 45.3* 29.3* 0.00I 999.9 000000 724050 13743 19400218 34.7 24 29.2 24 1025.2 24 9999.9 0 6.0 24 6.3 24 15.9 999.9 38.3* 32.4* 99.99 999.9 010000 724050 13743 19400219 43.3 24 42.4 24 1004.9 24 9999.9 0 3.0 24 10.8 24 15.9 999.9 46.4* 39.4* 99.99 999.9 110000 724050 13743 19400220 38.3 24 35.6 23 1000.3 23 9999.9 0 6.1 24 8.7 24 13.0 999.9 40.3* 35.4* 99.99 999.9 110000 724050 13743 19400221 37.1 24 25.7 24 1007.3 24 9999.9 0 11.3 24 12.7 24 16.9 999.9 42.4* 32.4* 99.99 999.9 011000 724050 13743 19400222 33.4 24 15.5 24 1018.5 24 9999.9 0 13.2 24 8.1 24 16.9 999.9 42.4* 25.3* 0.00I 999.9 000000 724050 13743 19400223 34.5 24 19.8 24 1027.0 24 9999.9 0 9.6 24 7.1 24 16.9 999.9 43.3* 25.3* 0.00I 999.9 000000 724050 13743 19400224 37.5 24 26.5 24 1025.3 24 9999.9 0 5.6 24 4.1 24 11.1 999.9 48.4* 27.3* 0.00I 999.9 000000 724050 13743 19400225 40.8 24 28.7 24 1017.8 24 9999.9 0 8.4 24 10.4 24 22.9 999.9 46.4* 32.4* 0.00I 999.9 000000 724050 13743 19400226 27.7 24 9.2 24 1026.1 24 9999.9 0 12.4 24 12.6 24 16.9 999.9 34.3* 20.3* 0.00I 999.9 000000 724050 13743 19400227 28.5 24 19.8 24 1020.1 24 9999.9 0 6.6 24 4.3 24 7.0 999.9 35.4* 24.4* 99.99 999.9 111000 724050 13743 19400228 38.9 24 34.7 24 1007.0 24 9999.9 0 2.9 24 3.9 24 15.9 999.9 46.4* 35.4* 99.99 999.9 110000 724050 13743 19400229 41.4 24 30.2 24 1016.5 24 9999.9 0 4.7 24 5.9 24 13.0 999.9 46.4* 34.3* 0.00I 999.9 000000 724050 13743 19400301 41.6 23 30.6 23 1021.6 23 9999.9 0 4.3 23 5.3 23 9.9 999.9 49.3* 38.3* 0.00I 999.9 000000 724050 13743 19400302 37.8 24 31.8 24 1028.5 24 9999.9 0 5.1 24 5.9 24 9.9 999.9 42.4* 36.3* 99.99 999.9 110000 724050 13743 19400303 38.5 24 37.7 24 1018.8 24 9999.9 0 1.7 24 3.5 24 8.0 999.9 42.4* 36.3* 99.99 999.9 110000 724050 13743 19400304 43.2 24 39.4 24 1005.6 24 9999.9 0 6.6 24 7.1 24 9.9 999.9 52.3* 38.3* 99.99 999.9 110000 724050 13743 19400305 43.4 24 33.5 24 1007.1 24 9999.9 0 7.6 24 9.3 24 16.9 999.9 47.3* 40.3* 0.00I 999.9 000000 724050 13743 19400306 40.1 24 29.1 24 1007.6 24 9999.9 0 10.2 24 9.1 24 15.9 999.9 44.4* 33.4* 0.00I 999.9 000000 724050 13743 19400307 39.6 24 24.0 24 1007.2 24 9999.9 0 11.6 24 12.6 24 20.0 999.9 45.3* 34.3* 0.00I 999.9 000000 724050 13743 19400308 38.8 24 26.0 24 1002.5 24 9999.9 0 7.7 24 6.7 24 22.9 999.9 50.4* 29.3* 0.00I 999.9 000000 724050 13743 19400309 39.4 24 27.1 24 1004.3 24 9999.9 0 8.0 24 14.4 24 21.0 999.9 47.3* 34.3* 0.00I 999.9 000000 724050 13743 19400310 40.5 24 22.3 24 1010.6 24 9999.9 0 10.9 24 13.2 24 26.0 999.9 47.3* 35.4* 0.00I 999.9 000000 724050 13743 19400311 33.8 24 18.7 24 1018.9 24 9999.9 0 10.9 24 12.3 24 16.9 999.9 40.3* 27.3* 0.00I 999.9 000000 724050 13743 19400312 32.8 24 9.1 24 1026.7 24 9999.9 0 10.9 24 6.7 24 9.9 999.9 44.4* 22.5* 0.00I 999.9 000000 724050 13743 19400313 34.8 24 17.0 24 1028.8 24 9999.9 0 8.0 24 6.5 24 33.0 999.9 40.3* 30.4* 99.99 999.9 011000 724050 13743 19400314 36.4 24 31.7 24 1022.7 24 9999.9 0 4.4 24 6.5 24 15.0 999.9 41.4* 32.4* 99.99 999.9 110000 724050 13743 19400315 35.3 24 26.8 24 1013.3 24 9999.9 0 8.2 24 13.7 24 22.0 999.9 38.3* 30.4* 99.99 999.9 111000 724050 13743 19400316 36.1 24 21.0 24 1013.8 24 9999.9 0 8.9 24 8.3 24 29.9 999.9 49.3* 27.3* 0.00I 999.9 000000 724050 13743 19400317 41.1 24 25.5 24 1018.4 24 9999.9 0 7.2 24 5.3 24 9.9 999.9 59.4* 28.4* 0.00I 999.9 000000 724050 13743 19400318 46.0 24 35.9 24 1012.6 24 9999.9 0 6.3 24 4.0 24 8.9 999.9 60.3* 33.4* 0.00I 999.9 000000 724050 13743 19400319 49.8 24 35.8 24 1006.3 24 9999.9 0 7.2 24 8.9 24 15.9 999.9 60.3* 42.4* 99.99 999.9 110000 724050 13743 19400320 48.2 24 33.5 24 1011.2 24 9999.9 0 8.0 24 6.6 24 16.9 999.9 62.4* 33.4* 0.00I 999.9 000000 724050 13743 19400321 40.7 24 18.4 24 1016.2 24 9999.9 0 12.2 24 10.9 24 22.9 999.9 57.4* 30.4* 0.00I 999.9 000000 724050 13743 19400322 39.4 24 23.1 24 1011.0 24 9999.9 0 10.3 24 13.2 24 35.0 999.9 45.3* 35.4* 99.99 999.9 010000 724050 13743 19400323 28.9 23 11.7 23 1015.9 23 9999.9 0 10.6 23 11.8 23 21.0 999.9 36.3* 23.4* 99.99 999.9 001000 724050 13743 19400324 27.0 24 8.3 24 1023.5 24 9999.9 0 11.7 24 9.5 24 16.9 999.9 33.4* 20.3* 0.00I 999.9 000000 724050 13743 19400325 27.7 24 6.5 24 1023.4 24 9999.9 0 11.6 24 14.4 24 20.0 999.9 34.3* 20.3* 0.00I 999.9 000000 724050 13743 19400326 33.1 24 8.8 24 1027.0 24 9999.9 0 11.4 24 13.0 24 16.9 999.9 46.4* 25.3* 0.00I 999.9 000000 724050 13743 19400327 46.3 24 21.4 24 1022.6 24 9999.9 0 8.9 24 7.9 24 13.0 999.9 66.4* 30.4* 0.00I 999.9 000000 724050 13743 19400328 54.2 24 34.0 24 1020.2 24 9999.9 0 4.7 24 7.1 24 12.0 999.9 63.3* 43.3* 99.99 999.9 010000 724050 13743 19400329 46.0 24 41.1 24 1023.4 24 9999.9 0 2.7 24 4.1 24 8.9 999.9 54.3* 41.4* 99.99 999.9 110000 724050 13743 19400330 56.3 24 54.0 24 1011.6 24 9999.9 0 2.7 24 3.9 24 15.0 999.9 68.4* 48.4* 99.99 999.9 110000 724050 13743 19400331 55.5 24 45.9 24 1005.8 24 9999.9 0 11.5 24 10.5 24 21.0 999.9 67.3* 45.3* 99.99 999.9 010010 724050 13743 19400401 54.8 24 35.1 24 1012.0 24 9999.9 0 12.3 24 10.7 24 22.0 999.9 63.3* 44.4* 0.00I 999.9 000000 724050 13743 19400402 46.9 24 31.9 24 1020.9 24 9999.9 0 8.1 24 1.7 24 7.0 999.9 58.3* 36.3* 0.00I 999.9 000000 724050 13743 19400403 47.7 24 39.6 24 1019.7 24 9999.9 0 6.6 24 5.4 24 13.0 999.9 52.3* 42.4* 99.99 999.9 110000 724050 13743 19400404 55.1 24 46.7 24 1008.4 24 9999.9 0 5.9 24 4.6 24 9.9 999.9 76.3* 43.3* 99.99 999.9 110010 724050 13743 19400405 52.9 24 37.0 24 1011.3 24 9999.9 0 10.4 24 14.5 24 28.0 999.9 61.3* 48.4* 0.00I 999.9 000000 724050 13743 19400406 48.1 24 21.5 24 1023.9 24 9999.9 0 12.1 24 13.1 24 15.9 999.9 59.4* 37.4* 0.00I 999.9 000000 724050 13743 19400407 50.8 24 30.8 24 1023.9 24 9999.9 0 7.5 24 3.4 24 11.1 999.9 64.4* 35.4* 0.00I 999.9 100000 724050 13743 19400408 54.4 24 49.0 24 1013.4 24 9999.9 0 5.2 24 7.0 24 15.9 999.9 57.4* 52.3* 99.99 999.9 110010 724050 13743 19400409 54.2 24 46.9 24 1005.2 24 9999.9 0 8.8 24 8.8 24 19.0 999.9 57.4* 51.3* 99.99 999.9 110000 724050 13743 19400410 49.6 24 34.9 24 1020.1 24 9999.9 0 10.4 24 8.0 24 16.9 999.9 62.4* 37.4* 0.00I 999.9 000000 724050 13743 19400411 55.9 24 41.7 24 1022.0 24 9999.9 0 10.7 24 7.7 24 22.0 999.9 69.3* 46.4* 0.00I 999.9 000000 724050 13743 19400412 51.6 24 45.2 24 1013.1 24 9999.9 0 6.6 24 15.0 24 22.9 999.9 60.3* 34.3* 99.99 999.9 111000 724050 13743 19400413 34.8 24 22.5 24 1011.9 24 9999.9 0 10.8 24 19.0 24 26.0 999.9 42.4* 29.3* 99.99 999.9 111000 724050 13743 19400414 38.0 24 20.6 24 1011.0 24 9999.9 0 12.5 24 13.0 24 16.9 999.9 46.4* 30.4* 0.00I 999.9 000000 724050 13743 19400415 42.3 24 30.5 24 1011.2 24 9999.9 0 8.0 24 3.6 24 9.9 999.9 52.3* 32.4* 99.99 999.9 110000 724050 13743 19400416 53.7 24 47.9 23 1010.7 24 9999.9 0 5.2 24 3.9 24 9.9 999.9 65.3* 45.3* 99.99 999.9 110000 724050 13743 19400417 56.8 24 54.0 24 1015.3 24 9999.9 0 3.9 24 4.7 24 9.9 999.9 60.3* 53.4* 99.99 999.9 110010 724050 13743 19400418 55.8 24 51.5 24 1013.6 24 9999.9 0 4.3 24 5.2 24 13.0 999.9 69.3* 48.4* 99.99 999.9 110000 724050 13743 19400419 55.4 24 51.8 24 1015.8 24 9999.9 0 4.6 24 6.3 24 13.0 999.9 66.4* 48.4* 99.99 999.9 110000 724050 13743 19400420 47.1 24 45.9 24 1002.4 24 9999.9 0 2.3 24 11.0 24 16.9 999.9 48.4* 44.4* 99.99 999.9 110000 724050 13743 19400421 43.8 24 39.4 24 999.5 24 9999.9 0 7.1 24 12.3 24 28.0 999.9 47.3* 41.4* 99.99 999.9 110000 724050 13743 19400422 46.9 24 32.6 24 1005.0 24 9999.9 0 13.7 24 18.4 23 26.0 999.9 54.3* 43.3* 0.00I 999.9 000000 724050 13743 19400423 48.3 24 30.8 24 1014.5 24 9999.9 0 14.1 24 5.6 24 13.0 999.9 62.4* 35.4* 0.00I 999.9 000000 724050 13743 19400424 49.4 24 37.6 24 1014.4 24 9999.9 0 8.9 24 5.0 24 9.9 999.9 54.3* 46.4* 99.99 999.9 010000 724050 13743 19400425 47.3 24 38.9 24 1018.8 24 9999.9 0 6.5 24 1.8 24 8.9 999.9 62.4* 34.3* 0.00I 999.9 100000 724050 13743 19400426 54.8 24 37.2 24 1020.3 24 9999.9 0 8.2 24 4.7 24 8.9 999.9 60.3* 46.4* 99.99 999.9 010000 724050 13743 19400427 52.1 24 31.6 24 1023.8 24 9999.9 0 10.8 24 7.1 24 16.9 999.9 62.4* 41.4* 0.00I 999.9 000000 724050 13743 19400428 53.6 24 28.9 24 1028.0 24 9999.9 0 12.7 24 4.2 24 8.9 999.9 67.3* 41.4* 0.00I 999.9 000000 724050 13743 19400429 57.0 24 31.9 24 1025.9 24 9999.9 0 12.4 24 4.5 24 13.0 999.9 75.4* 41.4* 0.00I 999.9 000000 724050 13743 19400430 62.3 24 40.5 24 1017.7 24 9999.9 0 10.5 24 6.8 24 11.1 999.9 80.2* 48.4* 0.00I 999.9 000000 724050 13743 19400501 68.8 24 53.6 24 1008.1 24 9999.9 0 61.3 24 8.6 24 14.0 999.9 75.4* 62.4* 99.99 999.9 010000 724050 13743 19400502 59.6 24 50.5 24 1005.2 24 9999.9 0 60.4 24 6.8 24 19.0 999.9 66.4* 51.3* 99.99 999.9 110010 724050 13743 19400503 52.2 24 43.1 23 1002.7 24 9999.9 0 84.2 24 10.3 24 15.9 999.9 63.3* 48.4* 99.99 999.9 010000 724050 13743 19400504 49.9 24 38.7 24 1007.7 24 9999.9 0 88.0 24 11.8 24 19.0 999.9 55.4* 45.3* 0.00I 999.9 000000 724050 13743 19400505 57.7 24 39.9 24 1018.5 24 9999.9 0 99.4 24 10.8 24 15.9 999.9 72.3* 48.4* 0.00I 999.9 000000 724050 13743 19400506 63.5 24 44.7 24 1020.2 24 9999.9 0 52.1 24 3.5 24 9.9 999.9 86.4* 44.4* 0.00I 999.9 000000 724050 13743 19400507 76.3 24 50.5 24 1016.6 24 9999.9 0 41.8 24 6.9 24 13.0 999.9 86.4* 65.3* 0.00I 999.9 000000 724050 13743 19400508 69.9 24 48.6 24 1018.0 24 9999.9 0 61.0 24 3.0 24 8.9 999.9 80.2* 58.3* 0.00I 999.9 000000 724050 13743 19400509 62.0 24 47.0 24 1013.6 24 9999.9 0 57.1 24 8.2 24 11.1 999.9 71.2* 55.4* 0.00I 999.9 000000 724050 13743 19400510 59.2 24 32.9 24 1015.5 24 9999.9 0 60.9 24 4.0 24 9.9 999.9 72.3* 45.3* 0.00I 999.9 000000 724050 13743 19400511 56.9 24 40.6 24 1014.4 24 9999.9 0 60.9 24 5.6 24 14.0 999.9 69.3* 46.4* 99.99 999.9 010010 724050 13743 19400512 56.2 24 32.9 24 1017.3 24 9999.9 0 99.4 24 9.3 24 15.9 999.9 68.4* 45.3* 99.99 999.9 010000 724050 13743 19400513 65.6 24 45.1 24 1012.1 24 9999.9 0 87.8 24 7.1 24 15.0 999.9 88.3* 52.3* 99.99 999.9 010000 724050 13743 19400514 76.2 24 55.1 24 1011.2 24 9999.9 0 45.7 24 5.8 24 12.0 999.9 90.3* 65.3* 0.00I 999.9 000000 724050 13743 19400515 77.3 24 50.6 24 1013.0 24 9999.9 0 56.5 24 10.6 24 19.0 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19400516 65.7 24 58.5 24 1013.7 23 9999.9 0 48.1 24 7.2 24 14.0 999.9 81.3* 59.4* 99.99 999.9 110000 724050 13743 19400517 60.8 24 49.1 24 1014.1 24 9999.9 0 49.5 24 6.7 24 12.0 999.9 68.4* 51.3* 99.99 999.9 010000 724050 13743 19400518 64.7 24 49.6 24 1016.2 24 9999.9 0 45.2 24 3.5 24 8.0 999.9 79.3* 51.3* 0.00I 999.9 000000 724050 13743 19400519 70.2 24 57.5 24 1013.6 24 9999.9 0 59.7 24 5.9 24 16.9 999.9 87.3* 57.4* 0.00I 999.9 000000 724050 13743 19400520 71.9 24 61.9 24 1011.6 24 9999.9 0 87.4 24 9.0 24 26.0 999.9 82.4* 62.4* 99.99 999.9 010010 724050 13743 19400521 69.1 24 62.2 24 1016.2 24 9999.9 0 60.9 24 8.2 24 13.0 999.9 79.3* 63.3* 99.99 999.9 010010 724050 13743 19400522 69.7 24 62.5 24 1015.6 24 9999.9 0 29.6 24 6.8 24 12.0 999.9 78.3* 64.4* 99.99 999.9 110000 724050 13743 19400523 67.9 24 61.8 24 1011.4 24 9999.9 0 6.5 24 8.5 24 11.1 999.9 72.3* 65.3* 0.00I 999.9 000000 724050 13743 19400524 60.1 24 57.6 24 1008.7 24 9999.9 0 4.2 24 6.5 24 9.9 999.9 65.3* 57.4* 99.99 999.9 110000 724050 13743 19400525 60.6 24 58.0 24 1007.5 24 9999.9 0 15.4 24 5.8 24 8.9 999.9 67.3* 56.3* 99.99 999.9 110000 724050 13743 19400526 64.4 24 61.0 24 1010.8 24 9999.9 0 34.9 24 7.0 24 9.9 999.9 70.3* 61.3* 99.99 999.9 110000 724050 13743 19400527 64.9 24 60.3 24 1013.1 24 9999.9 0 20.0 24 6.2 24 9.9 999.9 73.4* 59.4* 99.99 999.9 110000 724050 13743 19400528 66.6 24 54.2 24 1012.9 24 9999.9 0 60.6 24 5.5 24 12.0 999.9 79.3* 54.3* 99.99 999.9 010000 724050 13743 19400529 67.7 24 54.0 24 1015.1 24 9999.9 0 64.3 24 3.8 24 13.0 999.9 81.3* 55.4* 0.00I 999.9 000000 724050 13743 19400530 57.4 24 53.5 24 1018.5 24 9999.9 0 37.4 24 11.0 24 15.9 999.9 64.4* 55.4* 99.99 999.9 110000 724050 13743 19400531 63.3 24 56.0 24 1010.9 24 9999.9 0 55.8 24 7.9 24 15.9 999.9 75.4* 56.3* 99.99 999.9 110000 724050 13743 19400601 69.7 24 61.0 24 1012.6 24 9999.9 0 63.9 24 7.0 24 16.9 999.9 81.3* 61.3* 99.99 999.9 110000 724050 13743 19400602 69.7 24 57.7 24 1015.6 24 9999.9 0 60.8 24 2.3 24 7.0 999.9 80.2* 61.3* 99.99 999.9 010000 724050 13743 19400603 73.1 24 60.3 24 1018.1 24 9999.9 0 48.4 24 2.5 24 7.0 999.9 86.4* 61.3* 0.00I 999.9 000000 724050 13743 19400604 77.4 24 63.8 24 1018.0 24 9999.9 0 21.5 24 3.4 24 8.9 999.9 90.3* 65.3* 0.00I 999.9 000000 724050 13743 19400605 77.2 24 67.0 23 1016.5 24 9999.9 0 23.0 24 5.7 24 8.0 999.9 85.3* 71.2* 99.99 999.9 010000 724050 13743 19400606 79.9 24 66.6 24 1014.6 24 9999.9 0 34.1 24 5.2 24 9.9 999.9 92.3* 68.4* 0.00I 999.9 000000 724050 13743 19400607 77.2 24 61.8 24 1014.5 24 9999.9 0 44.5 24 2.6 24 8.9 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19400608 76.2 24 61.0 24 1014.7 24 9999.9 0 99.4 24 7.6 24 12.0 999.9 84.4* 69.3* 0.00I 999.9 000000 724050 13743 19400609 75.8 24 68.6 24 1014.4 24 9999.9 0 61.2 24 4.8 24 9.9 999.9 85.3* 68.4* 99.99 999.9 010010 724050 13743 19400610 74.9 24 68.7 24 1016.7 24 9999.9 0 56.8 24 6.4 24 15.9 999.9 83.3* 70.3* 99.99 999.9 110000 724050 13743 19400611 70.9 24 65.7 24 1018.6 24 9999.9 0 21.2 24 4.9 24 9.9 999.9 79.3* 65.3* 99.99 999.9 110000 724050 13743 19400612 78.5 24 70.7 24 1016.5 24 9999.9 0 45.0 24 4.2 24 8.9 999.9 89.2* 72.3* 99.99 999.9 110000 724050 13743 19400613 80.3 24 69.4 24 1014.9 24 9999.9 0 84.1 24 6.1 24 11.1 999.9 94.3* 71.2* 99.99 999.9 010000 724050 13743 19400614 78.6 24 67.1 24 1015.6 24 9999.9 0 72.6 24 4.0 24 8.9 999.9 89.2* 70.3* 0.00I 999.9 000000 724050 13743 19400615 81.2 24 68.4 24 1012.9 24 9999.9 0 68.7 24 8.2 24 15.9 999.9 91.2* 71.2* 99.99 999.9 010000 724050 13743 19400616 81.0 24 64.1 23 1016.1 24 9999.9 0 99.4 24 5.6 24 9.9 999.9 87.3* 75.4* 0.00I 999.9 000000 724050 13743 19400617 71.5 24 60.3 24 1023.6 24 9999.9 0 45.1 24 3.5 23 8.9 999.9 78.3* 68.4* 99.99 999.9 010000 724050 13743 19400618 70.2 24 64.4 24 1020.3 24 9999.9 0 45.7 24 4.3 24 7.0 999.9 74.3* 66.4* 99.99 999.9 110000 724050 13743 19400619 77.6 24 67.8 24 1011.0 24 9999.9 0 52.4 24 6.3 24 13.0 999.9 89.2* 70.3* 99.99 999.9 010000 724050 13743 19400620 72.3 24 49.0 24 1013.0 24 9999.9 0 99.4 24 12.5 24 19.0 999.9 82.4* 65.3* 0.00I 999.9 000000 724050 13743 19400621 65.2 24 44.1 24 1021.0 24 9999.9 0 99.4 24 10.8 24 15.9 999.9 74.3* 53.4* 0.00I 999.9 000000 724050 13743 19400622 64.9 24 46.9 24 1022.9 24 9999.9 0 64.3 24 3.9 24 11.1 999.9 73.4* 49.3* 99.99 999.9 010000 724050 13743 19400623 69.7 24 58.5 24 1015.5 24 9999.9 0 72.5 24 4.2 24 8.9 999.9 81.3* 61.3* 99.99 999.9 010000 724050 13743 19400624 79.2 24 68.2 24 1003.1 24 9999.9 0 76.3 24 8.4 24 15.9 999.9 92.3* 71.2* 99.99 999.9 010000 724050 13743 19400625 77.7 24 58.1 24 1002.2 24 9999.9 0 99.4 24 10.6 24 16.9 999.9 88.3* 71.2* 99.99 999.9 010000 724050 13743 19400626 71.9 24 52.8 24 1004.0 24 9999.9 0 99.4 24 10.6 24 21.0 999.9 81.3* 64.4* 0.00I 999.9 000000 724050 13743 19400627 69.4 24 56.5 24 1009.6 24 9999.9 0 99.4 24 7.2 24 15.0 999.9 83.3* 57.4* 0.00I 999.9 000000 724050 13743 19400628 77.9 24 67.4 24 1010.8 24 9999.9 0 84.1 24 6.9 24 15.9 999.9 89.2* 68.4* 0.00I 999.9 000000 724050 13743 19400629 81.4 24 64.5 24 1005.7 24 9999.9 0 95.6 24 10.1 24 23.9 999.9 86.4* 74.3* 99.99 999.9 010010 724050 13743 19400630 70.6 24 49.0 24 1014.4 24 9999.9 0 84.2 24 12.2 24 26.0 999.9 81.3* 59.4* 0.00I 999.9 000000 724050 13743 19400701 67.7 24 54.6 24 1015.5 24 9999.9 0 76.3 24 10.8 24 22.0 999.9 76.3* 59.4* 99.99 999.9 010000 724050 13743 19400702 68.2 24 50.9 24 1018.9 24 9999.9 0 99.4 24 4.7 24 13.0 999.9 78.3* 55.4* 0.00I 999.9 000000 724050 13743 19400703 64.7 24 59.2 24 1020.6 24 9999.9 0 40.6 24 5.2 24 11.1 999.9 78.3* 58.3* 99.99 999.9 110000 724050 13743 19400704 62.5 24 57.8 24 1018.8 24 9999.9 0 16.9 24 6.9 24 9.9 999.9 74.3* 58.3* 99.99 999.9 110000 724050 13743 19400705 68.3 24 55.1 24 1024.4 24 9999.9 0 53.5 24 7.0 24 14.0 999.9 80.2* 57.4* 0.00I 999.9 000010 724050 13743 19400706 70.0 24 55.4 24 1026.8 24 9999.9 0 84.2 24 3.3 24 8.9 999.9 81.3* 58.3* 0.00I 999.9 000000 724050 13743 19400707 69.6 24 55.9 24 1024.9 24 9999.9 0 56.3 24 2.8 24 7.0 999.9 82.4* 57.4* 0.00I 999.9 000000 724050 13743 19400708 72.3 24 58.8 24 1021.1 24 9999.9 0 80.0 24 3.7 24 7.0 999.9 84.4* 59.4* 0.00I 999.9 000000 724050 13743 19400709 75.6 24 66.7 24 1019.2 24 9999.9 0 61.1 24 4.1 24 7.0 999.9 83.3* 69.3* 99.99 999.9 010000 724050 13743 19400710 79.0 24 67.4 24 1017.9 24 9999.9 0 33.0 24 3.1 24 7.0 999.9 92.3* 67.3* 0.00I 999.9 000000 724050 13743 19400711 81.8 24 70.8 16 1014.2 24 9999.9 0 60.9 24 4.4 24 9.9 999.9 91.2* 72.3* 0.00I 999.9 000000 724050 13743 19400712 76.4 24 67.4 24 1012.6 23 9999.9 0 60.7 24 5.4 24 9.9 999.9 83.3* 68.4* 99.99 999.9 010010 724050 13743 19400713 67.1 24 56.3 23 1020.2 24 9999.9 0 57.3 24 8.0 24 9.9 999.9 75.4* 61.3* 99.99 999.9 010000 724050 13743 19400714 67.7 24 54.4 24 1024.4 24 9999.9 0 68.0 24 3.1 24 9.9 999.9 78.3* 56.3* 0.00I 999.9 000000 724050 13743 19400715 69.7 24 57.3 24 1021.9 24 9999.9 0 87.9 24 6.1 24 11.1 999.9 82.4* 58.3* 0.00I 999.9 000000 724050 13743 19400716 75.4 24 66.5 24 1016.8 24 9999.9 0 72.7 24 5.7 24 9.9 999.9 84.4* 67.3* 0.00I 999.9 000000 724050 13743 19400717 74.7 24 68.6 24 1018.6 24 9999.9 0 95.6 24 3.1 24 8.9 999.9 83.3* 67.3* 0.00I 999.9 000000 724050 13743 19400718 77.9 24 66.2 24 1022.6 24 9999.9 0 72.2 24 4.9 24 8.0 999.9 87.3* 70.3* 0.00I 999.9 000000 724050 13743 19400719 79.2 24 70.2 24 1022.9 24 9999.9 0 71.8 24 3.6 24 8.9 999.9 89.2* 69.3* 0.00I 999.9 000000 724050 13743 19400720 84.6 24 70.0 24 1019.3 24 9999.9 0 45.5 24 4.6 24 9.9 999.9 96.3* 73.4* 0.00I 999.9 000000 724050 13743 19400721 86.6 24 71.0 24 1017.0 24 9999.9 0 57.5 24 6.4 24 15.9 999.9 97.3* 77.4* 0.00I 999.9 000000 724050 13743 19400722 86.5 24 71.2 24 1017.1 24 9999.9 0 68.7 24 5.4 24 9.9 999.9 98.2* 79.3* 0.00I 999.9 000000 724050 13743 19400723 81.7 24 71.3 24 1015.8 24 9999.9 0 83.9 24 6.1 24 9.9 999.9 91.2* 72.3* 99.99 999.9 010010 724050 13743 19400724 78.2 24 71.7 24 1013.0 24 9999.9 0 25.2 24 3.7 24 7.0 999.9 88.3* 72.3* 99.99 999.9 110010 724050 13743 19400725 83.7 24 71.7 24 1011.9 24 9999.9 0 44.7 24 4.2 24 8.9 999.9 96.3* 73.4* 0.00I 999.9 000000 724050 13743 19400726 86.1 24 75.7 24 1013.1 23 9999.9 0 37.1 24 4.2 24 8.9 999.9 98.2* 76.3* 0.00I 999.9 000000 724050 13743 19400727 87.4 24 72.9 24 1014.0 24 9999.9 0 64.8 24 3.8 24 9.9 999.9 98.2* 74.3* 0.00I 999.9 000000 724050 13743 19400728 85.3 24 73.4 24 1016.7 24 9999.9 0 57.4 24 4.1 24 15.9 999.9 98.2* 77.4* 99.99 999.9 010010 724050 13743 19400729 81.5 24 72.3 24 1018.8 24 9999.9 0 26.8 24 4.9 24 19.0 999.9 91.2* 75.4* 99.99 999.9 010000 724050 13743 19400730 81.2 24 73.0 24 1015.8 24 9999.9 0 57.2 24 4.5 24 8.9 999.9 93.4* 71.2* 0.00I 999.9 000000 724050 13743 19400731 85.0 24 70.9 24 1012.7 24 9999.9 0 80.3 24 6.3 24 12.0 999.9 98.2* 75.4* 99.99 999.9 010000 724050 13743 19400801 77.3 24 59.9 24 1014.1 24 9999.9 0 80.4 24 8.0 24 14.0 999.9 82.4* 70.3* 0.00I 999.9 000000 724050 13743 19400802 72.3 24 58.8 24 1022.6 24 9999.9 0 76.5 24 6.8 24 9.9 999.9 80.2* 64.4* 0.00I 999.9 000000 724050 13743 19400803 69.7 24 57.5 24 1026.7 24 9999.9 0 99.4 24 4.9 24 8.9 999.9 78.3* 61.3* 0.00I 999.9 000000 724050 13743 19400804 75.6 24 63.2 24 1023.7 24 9999.9 0 91.7 24 4.1 24 8.9 999.9 87.3* 67.3* 0.00I 999.9 000000 724050 13743 19400805 76.6 24 68.0 24 1021.7 24 9999.9 0 75.9 24 5.7 24 8.9 999.9 87.3* 68.4* 99.99 999.9 110000 724050 13743 19400806 80.3 24 73.7 24 1018.3 24 9999.9 0 45.6 24 6.4 24 12.0 999.9 91.2* 75.4* 0.00I 999.9 100000 724050 13743 19400807 77.0 24 70.8 24 1017.2 24 9999.9 0 41.3 24 5.0 24 16.9 999.9 84.4* 73.4* 99.99 999.9 110010 724050 13743 19400808 76.6 24 67.4 24 1019.9 24 9999.9 0 28.5 24 4.2 24 9.9 999.9 84.4* 70.3* 0.00I 999.9 100000 724050 13743 19400809 75.1 24 63.1 24 1021.8 24 9999.9 0 52.8 24 3.6 24 8.0 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19400810 74.7 24 61.9 24 1023.8 24 9999.9 0 64.6 24 5.5 24 9.9 999.9 85.3* 66.4* 0.00I 999.9 000000 724050 13743 19400811 74.6 24 67.7 24 1026.6 24 9999.9 0 95.6 24 7.4 24 11.1 999.9 81.3* 68.4* 99.99 999.9 010000 724050 13743 19400812 77.7 24 69.9 24 1026.6 24 9999.9 0 87.9 24 5.3 24 8.9 999.9 87.3* 71.2* 99.99 999.9 010000 724050 13743 19400813 79.1 24 70.4 24 1021.1 24 9999.9 0 80.1 24 6.0 24 11.1 999.9 89.2* 72.3* 0.00I 999.9 000000 724050 13743 19400814 78.4 24 72.6 24 1014.6 24 9999.9 0 60.9 24 2.9 24 7.0 999.9 82.4* 73.4* 99.99 999.9 010010 724050 13743 19400815 73.9 24 70.7 24 1015.3 24 9999.9 0 20.6 24 7.6 24 15.9 999.9 77.4* 67.3* 99.99 999.9 110000 724050 13743 19400816 73.6 24 69.3 24 1016.9 24 9999.9 0 25.5 24 8.7 24 13.0 999.9 80.2* 67.3* 99.99 999.9 110000 724050 13743 19400817 77.3 24 73.5 24 1014.9 24 9999.9 0 32.5 24 6.7 24 11.1 999.9 84.4* 74.3* 99.99 999.9 110000 724050 13743 19400818 77.8 24 71.2 24 1012.0 24 9999.9 0 64.7 24 3.4 24 7.0 999.9 86.4* 73.4* 99.99 999.9 010000 724050 13743 19400819 76.3 24 70.5 24 1006.9 24 9999.9 0 30.0 24 6.0 24 16.9 999.9 82.4* 72.3* 99.99 999.9 010000 724050 13743 19400820 70.6 24 55.5 24 1014.3 24 9999.9 0 34.6 24 10.5 24 18.1 999.9 78.3* 62.4* 0.00I 999.9 000000 724050 13743 19400821 65.5 24 53.0 24 1019.0 24 9999.9 0 7.0 24 3.1 24 8.0 999.9 77.4* 55.4* 0.00I 999.9 000000 724050 13743 19400822 67.7 24 57.9 24 1018.9 24 9999.9 0 14.1 24 5.1 24 9.9 999.9 78.3* 61.3* 99.99 999.9 010010 724050 13743 19400823 71.0 24 61.0 24 1019.1 24 9999.9 0 32.7 24 4.6 24 9.9 999.9 84.4* 61.3* 99.99 999.9 010000 724050 13743 19400824 66.9 24 55.9 24 1022.8 24 9999.9 0 45.7 24 4.9 24 8.9 999.9 74.3* 60.3* 99.99 999.9 010000 724050 13743 19400825 62.2 24 52.6 24 1023.5 24 9999.9 0 41.8 24 5.1 24 8.9 999.9 65.3* 59.4* 99.99 999.9 110000 724050 13743 19400826 62.7 24 59.5 24 1016.5 24 9999.9 0 2.5 24 3.6 24 11.1 999.9 72.3* 58.3* 99.99 999.9 110000 724050 13743 19400827 64.1 24 62.5 24 1018.0 24 9999.9 0 2.1 24 4.8 24 7.0 999.9 70.3* 60.3* 99.99 999.9 110000 724050 13743 19400828 70.0 24 68.2 24 1016.9 24 9999.9 0 2.1 24 4.6 24 9.9 999.9 72.3* 67.3* 99.99 999.9 110000 724050 13743 19400829 66.6 24 64.4 24 1021.8 24 9999.9 0 2.2 24 7.0 24 8.9 999.9 69.3* 64.4* 99.99 999.9 110000 724050 13743 19400830 71.9 24 67.7 24 1021.8 24 9999.9 0 40.2 24 4.3 24 7.0 999.9 82.4* 66.4* 99.99 999.9 110000 724050 13743 19400831 76.5 24 73.2 24 1018.1 24 9999.9 0 25.8 24 5.9 24 8.9 999.9 82.4* 73.4* 99.99 999.9 110010 724050 13743 19400901 76.1 24 67.6 24 1012.8 24 9999.9 0 37.2 24 5.0 24 9.9 999.9 88.3* 69.3* 99.99 999.9 110010 724050 13743 19400902 73.7 24 60.0 24 1013.2 24 9999.9 0 99.4 24 3.5 24 9.9 999.9 84.4* 64.4* 0.00I 999.9 000000 724050 13743 19400903 72.2 24 62.0 24 1017.7 24 9999.9 0 76.6 24 3.6 24 8.9 999.9 83.3* 63.3* 0.00I 999.9 000000 724050 13743 19400904 72.4 24 61.8 24 1021.1 24 9999.9 0 30.0 24 4.0 24 9.9 999.9 83.3* 64.4* 0.00I 999.9 000000 724050 13743 19400905 71.2 24 59.6 24 1021.2 24 9999.9 0 41.5 24 3.4 24 9.9 999.9 83.3* 60.3* 0.00I 999.9 000000 724050 13743 19400906 70.3 24 53.1 24 1022.0 24 9999.9 0 72.6 24 6.5 24 9.9 999.9 78.3* 60.3* 0.00I 999.9 000000 724050 13743 19400907 65.8 24 53.4 24 1020.6 24 9999.9 0 53.1 24 3.7 24 11.1 999.9 78.3* 55.4* 0.00I 999.9 000000 724050 13743 19400908 65.0 24 59.9 24 1016.0 24 9999.9 0 36.9 24 2.5 24 7.0 999.9 71.2* 58.3* 99.99 999.9 010010 724050 13743 19400909 72.1 24 63.5 24 1006.4 24 9999.9 0 37.9 24 6.3 24 16.9 999.9 82.4* 63.3* 99.99 999.9 010010 724050 13743 19400910 71.8 24 63.5 24 1002.7 24 9999.9 0 68.5 24 5.3 24 13.0 999.9 78.3* 66.4* 99.99 999.9 110000 724050 13743 19400911 64.0 24 48.4 24 1011.5 24 9999.9 0 91.8 24 6.9 24 16.9 999.9 69.3* 58.3* 0.00I 999.9 000000 724050 13743 19400912 60.0 24 45.7 24 1016.5 24 9999.9 0 91.8 24 7.8 24 13.0 999.9 69.3* 50.4* 0.00I 999.9 000000 724050 13743 19400913 60.5 24 49.0 24 1019.3 24 9999.9 0 42.1 24 2.9 24 9.9 999.9 73.4* 48.4* 0.00I 999.9 000000 724050 13743 19400914 61.5 24 53.1 24 1021.9 24 9999.9 0 52.2 24 2.1 24 7.0 999.9 73.4* 49.3* 0.00I 999.9 000000 724050 13743 19400915 65.3 24 57.8 24 1019.2 24 9999.9 0 71.2 24 4.5 24 9.9 999.9 76.3* 56.3* 0.00I 999.9 000000 724050 13743 19400916 66.0 24 60.3 24 1016.7 24 9999.9 0 28.8 24 3.7 24 12.0 999.9 73.4* 61.3* 0.00I 999.9 000000 724050 13743 19400917 65.1 24 56.7 24 1022.0 24 9999.9 0 27.9 24 2.6 24 7.0 999.9 78.3* 54.3* 99.99 999.9 010000 724050 13743 19400918 66.0 24 57.0 24 1025.4 24 9999.9 0 23.4 24 1.5 24 8.0 999.9 81.3* 55.4* 0.00I 999.9 100000 724050 13743 19400919 68.3 24 59.7 24 1024.3 24 9999.9 0 5.4 24 4.3 24 8.9 999.9 82.4* 57.4* 0.00I 999.9 000000 724050 13743 19400920 73.4 24 62.4 24 1021.0 24 9999.9 0 5.2 24 4.4 24 9.9 999.9 88.3* 61.3* 0.00I 999.9 000000 724050 13743 19400921 77.8 24 65.4 24 1017.1 24 9999.9 0 28.5 24 4.4 24 11.1 999.9 93.4* 66.4* 0.00I 999.9 000000 724050 13743 19400922 75.2 24 61.0 24 1015.0 24 9999.9 0 88.0 24 10.5 24 15.9 999.9 81.3* 67.3* 0.00I 999.9 000000 724050 13743 19400923 67.4 24 56.9 24 1018.0 24 9999.9 0 72.0 24 1.6 24 7.0 999.9 80.2* 56.3* 0.00I 999.9 000000 724050 13743 19400924 71.1 24 63.0 24 1013.4 24 9999.9 0 65.0 24 8.0 24 9.9 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19400925 69.2 24 63.6 24 1007.3 24 9999.9 0 21.1 24 13.6 24 26.0 999.9 77.4* 52.3* 99.99 999.9 110000 724050 13743 19400926 52.3 24 34.4 24 1023.4 24 9999.9 0 99.4 24 10.9 24 15.9 999.9 60.3* 44.4* 0.00I 999.9 000000 724050 13743 19400927 51.2 24 38.2 24 1026.6 24 9999.9 0 52.2 24 2.3 24 6.0 999.9 66.4* 39.4* 0.00I 999.9 000000 724050 13743 19400928 54.0 24 44.7 24 1026.4 24 9999.9 0 51.4 24 2.1 24 6.0 999.9 70.3* 42.4* 0.00I 999.9 000000 724050 13743 19400929 57.6 24 46.4 24 1025.5 24 9999.9 0 35.5 24 2.7 24 8.9 999.9 74.3* 45.3* 0.00I 999.9 100000 724050 13743 19400930 59.4 24 51.8 24 1023.9 24 9999.9 0 44.3 24 7.9 24 13.0 999.9 64.4* 50.4* 0.00I 999.9 000000 724050 13743 19401001 56.6 24 48.2 24 1017.7 24 9999.9 0 4.9 24 10.1 24 15.0 999.9 60.3* 53.4* 99.99 999.9 110000 724050 13743 19401002 53.9 24 51.4 24 1013.4 24 9999.9 0 3.5 24 9.0 24 13.0 999.9 55.4* 52.3* 99.99 999.9 110000 724050 13743 19401003 61.3 24 51.2 24 1016.2 24 9999.9 0 6.3 24 8.5 24 15.0 999.9 74.3* 53.4* 99.99 999.9 110000 724050 13743 19401004 61.1 24 51.8 24 1022.2 24 9999.9 0 4.5 24 3.7 24 7.0 999.9 74.3* 52.3* 0.00I 999.9 000000 724050 13743 19401005 59.0 24 50.3 24 1027.9 24 9999.9 0 40.3 24 3.4 24 8.9 999.9 70.3* 49.3* 0.00I 999.9 000000 724050 13743 19401006 63.0 24 54.2 24 1025.0 24 9999.9 0 60.8 24 6.8 24 9.9 999.9 74.3* 56.3* 0.00I 999.9 000000 724050 13743 19401007 67.3 24 59.5 23 1014.0 24 9999.9 0 29.1 24 7.5 24 9.9 999.9 79.3* 60.3* 0.00I 999.9 000000 724050 13743 19401008 62.2 24 57.0 24 1011.3 24 9999.9 0 27.8 24 5.1 24 14.0 999.9 73.4* 58.3* 99.99 999.9 110000 724050 13743 19401009 56.6 24 45.9 24 1017.4 24 9999.9 0 41.3 24 5.3 24 12.0 999.9 64.4* 47.3* 0.00I 999.9 000000 724050 13743 19401010 53.7 24 44.4 24 1022.6 23 9999.9 0 68.8 24 3.9 24 9.9 999.9 67.3* 42.4* 0.00I 999.9 000000 724050 13743 19401011 54.4 24 46.2 24 1021.7 24 9999.9 0 15.4 24 2.1 24 7.0 999.9 71.2* 42.4* 0.00I 999.9 100000 724050 13743 19401012 60.9 24 49.7 24 1019.5 23 9999.9 0 4.9 24 2.2 24 7.0 999.9 76.3* 50.4* 0.00I 999.9 000000 724050 13743 19401013 62.4 24 53.1 24 1018.5 24 9999.9 0 31.4 24 3.1 24 7.0 999.9 80.2* 50.4* 0.00I 999.9 100000 724050 13743 19401014 64.9 24 54.0 24 1020.8 23 9999.9 0 40.4 24 4.5 24 8.9 999.9 74.3* 57.4* 0.00I 999.9 000000 724050 13743 19401015 64.3 24 55.8 24 1013.6 23 9999.9 0 20.9 24 11.1 24 26.0 999.9 76.3* 55.4* 99.99 999.9 010000 724050 13743 19401016 49.1 24 37.2 24 1023.1 24 9999.9 0 64.9 24 10.4 24 21.0 999.9 54.3* 46.4* 99.99 999.9 010000 724050 13743 19401017 51.7 24 37.1 24 1019.4 24 9999.9 0 57.4 24 7.3 24 9.9 999.9 60.3* 47.3* 0.00I 999.9 000000 724050 13743 19401018 52.2 24 38.4 24 1016.3 24 9999.9 0 72.2 24 12.0 24 22.9 999.9 58.3* 45.3* 99.99 999.9 010000 724050 13743 19401019 41.8 24 28.2 24 1019.6 24 9999.9 0 59.9 24 5.2 24 12.0 999.9 50.4* 34.3* 99.99 999.9 111000 724050 13743 19401020 37.5 24 30.1 24 1016.6 24 9999.9 0 75.1 24 7.2 24 12.0 999.9 43.3* 33.4* 99.99 999.9 101000 724050 13743 19401021 42.7 23 34.4 23 1019.7 23 9999.9 0 38.6 23 7.3 23 16.9 999.9 57.4* 32.4* 0.00I 999.9 000000 724050 13743 19401022 43.2 24 30.5 24 1029.6 24 9999.9 0 56.9 24 5.4 23 9.9 999.9 53.4* 31.3* 0.00I 999.9 000000 724050 13743 19401023 49.1 24 40.3 23 1025.6 23 9999.9 0 25.6 24 5.6 24 8.9 999.9 70.3* 35.4* 0.00I 999.9 000000 724050 13743 19401024 64.1 24 55.4 24 1017.7 22 9999.9 0 5.3 24 6.4 24 12.0 999.9 79.3* 56.3* 99.99 999.9 010000 724050 13743 19401025 54.2 24 45.4 24 1017.9 24 9999.9 0 3.9 24 3.4 24 7.0 999.9 62.4* 48.4* 99.99 999.9 010000 724050 13743 19401026 54.6 24 46.3 24 1018.0 23 9999.9 0 7.0 24 3.5 24 9.9 999.9 68.4* 44.4* 0.00I 999.9 100000 724050 13743 19401027 50.1 24 41.3 24 1021.4 24 9999.9 0 23.8 24 2.3 24 8.9 999.9 60.3* 40.3* 0.00I 999.9 000000 724050 13743 19401028 49.1 24 37.3 24 1023.3 24 9999.9 0 9.4 24 5.4 24 8.9 999.9 58.3* 46.4* 99.99 999.9 010010 724050 13743 19401029 45.7 23 35.7 23 1027.0 23 9999.9 0 6.1 23 3.7 23 7.0 999.9 47.3* 43.3* 99.99 999.9 010000 724050 13743 19401030 50.4 23 48.0 23 1018.2 23 9999.9 0 3.5 23 3.1 23 8.9 999.9 58.3* 44.4* 99.99 999.9 110000 724050 13743 19401031 51.9 24 42.8 24 1018.2 24 9999.9 0 4.8 24 2.6 24 9.9 999.9 66.4* 41.4* 0.00I 999.9 000000 724050 13743 19401101 51.1 24 44.6 24 1022.3 24 9999.9 0 9.5 24 4.6 24 8.9 999.9 60.3* 42.4* 99.99 999.9 110000 724050 13743 19401102 59.0 24 48.1 24 1016.7 23 9999.9 0 49.2 24 9.7 24 22.9 999.9 66.4* 55.4* 99.99 999.9 010000 724050 13743 19401103 55.9 24 38.3 24 1021.0 24 9999.9 0 65.1 24 7.7 24 16.9 999.9 66.4* 45.3* 0.00I 999.9 000000 724050 13743 19401104 51.1 24 40.2 24 1026.2 24 9999.9 0 24.3 24 3.8 24 11.1 999.9 69.3* 38.3* 0.00I 999.9 000000 724050 13743 19401105 61.5 24 42.1 24 1017.9 24 9999.9 0 22.1 24 7.2 24 12.0 999.9 70.3* 56.3* 0.00I 999.9 000000 724050 13743 19401106 56.3 24 39.6 24 1012.2 24 9999.9 0 80.3 24 17.2 24 28.0 999.9 66.4* 48.4* 99.99 999.9 010000 724050 13743 19401107 47.0 24 30.3 24 1015.0 24 9999.9 0 99.4 24 16.1 24 22.9 999.9 51.3* 44.4* 0.00I 999.9 000000 724050 13743 19401108 43.0 24 27.5 24 1017.7 24 9999.9 0 99.4 24 15.5 24 26.0 999.9 47.3* 38.3* 0.00I 999.9 000000 724050 13743 19401109 42.8 24 29.3 24 1025.0 24 9999.9 0 53.2 24 6.8 24 12.0 999.9 53.4* 35.4* 0.00I 999.9 000000 724050 13743 19401110 47.0 24 34.8 24 1026.1 24 9999.9 0 5.4 24 4.3 24 9.9 999.9 62.4* 35.4* 99.99 999.9 010000 724050 13743 19401111 56.7 24 46.5 24 1024.1 24 9999.9 0 14.0 24 9.2 24 16.9 999.9 67.3* 49.3* 99.99 999.9 010000 724050 13743 19401112 57.7 24 50.9 24 1021.6 24 9999.9 0 14.1 24 11.3 24 18.1 999.9 65.3* 48.4* 99.99 999.9 010000 724050 13743 19401113 45.6 24 42.5 24 1028.4 24 9999.9 0 35.7 24 4.8 24 9.9 999.9 48.4* 43.3* 99.99 999.9 110000 724050 13743 19401114 44.8 24 43.2 24 1022.8 24 9999.9 0 3.6 24 6.4 24 12.0 999.9 46.4* 43.3* 99.99 999.9 110000 724050 13743 19401115 43.9 24 39.4 24 1014.5 24 9999.9 0 3.8 24 8.3 24 14.0 999.9 45.3* 40.3* 99.99 999.9 110000 724050 13743 19401116 37.6 24 23.5 24 1015.7 24 9999.9 0 65.0 24 12.6 24 22.9 999.9 41.4* 34.3* 0.00I 999.9 000000 724050 13743 19401117 41.1 24 24.3 24 1012.7 24 9999.9 0 68.5 24 7.4 24 19.0 999.9 53.4* 31.3* 0.00I 999.9 000000 724050 13743 19401118 46.6 24 31.0 24 1024.8 24 9999.9 0 99.4 24 10.7 24 19.0 999.9 54.3* 41.4* 0.00I 999.9 000000 724050 13743 19401119 41.0 24 31.9 24 1036.1 24 9999.9 0 64.2 24 3.7 24 8.0 999.9 54.3* 28.4* 0.00I 999.9 000000 724050 13743 19401120 47.8 24 40.2 24 1029.0 24 9999.9 0 5.3 24 6.1 24 8.9 999.9 61.3* 38.3* 0.00I 999.9 000000 724050 13743 19401121 53.3 24 44.2 24 1026.3 24 9999.9 0 4.2 24 2.7 24 7.0 999.9 66.4* 42.4* 0.00I 999.9 000000 724050 13743 19401122 61.3 24 51.3 24 1023.0 24 9999.9 0 38.0 24 6.3 24 11.1 999.9 73.4* 50.4* 0.00I 999.9 000000 724050 13743 19401123 55.7 24 45.4 24 1026.4 24 9999.9 0 44.5 24 3.9 24 8.9 999.9 64.4* 48.4* 0.00I 999.9 000000 724050 13743 19401124 50.2 24 46.3 24 1022.2 24 9999.9 0 4.0 24 3.7 24 9.9 999.9 52.3* 48.4* 99.99 999.9 110000 724050 13743 19401125 43.7 24 30.5 24 1022.6 24 9999.9 0 56.5 24 12.3 24 19.0 999.9 50.4* 39.4* 0.00I 999.9 000000 724050 13743 19401126 33.4 24 23.1 24 1026.3 24 9999.9 0 51.7 24 5.8 24 9.9 999.9 39.4* 27.3* 99.99 999.9 111000 724050 13743 19401127 41.0 24 36.4 24 1008.5 24 9999.9 0 36.6 24 9.4 24 26.0 999.9 48.4* 36.3* 99.99 999.9 110000 724050 13743 19401128 36.8 24 25.0 24 1018.6 24 9999.9 0 99.4 24 13.2 24 22.0 999.9 39.4* 33.4* 0.00I 999.9 000000 724050 13743 19401129 36.4 24 25.3 24 1021.8 23 9999.9 0 60.5 24 6.4 24 16.9 999.9 49.3* 28.4* 0.00I 999.9 000000 724050 13743 19401130 38.0 24 27.0 24 1020.7 24 9999.9 0 9.2 24 3.6 24 9.9 999.9 47.3* 30.4* 0.00I 999.9 000000 724050 13743 19401201 48.2 24 34.9 24 1014.1 24 9999.9 0 56.6 24 11.7 24 25.1 999.9 52.3* 42.4* 0.00I 999.9 000000 724050 13743 19401202 38.1 24 22.3 24 1023.4 24 9999.9 0 79.7 24 9.0 24 22.0 999.9 43.3* 28.4* 0.00I 999.9 000000 724050 13743 19401203 32.0 24 15.6 24 1024.0 24 9999.9 0 99.4 24 14.7 24 22.9 999.9 40.3* 25.3* 0.00I 999.9 000000 724050 13743 19401204 23.7 24 10.6 24 1028.0 24 9999.9 0 40.5 24 7.1 24 15.9 999.9 34.3* 13.5* 0.00I 999.9 000000 724050 13743 19401205 36.9 24 29.7 24 1016.8 24 9999.9 0 8.6 24 7.5 24 21.0 999.9 40.3* 34.3* 99.99 999.9 111000 724050 13743 19401206 34.6 23 21.9 23 1028.0 23 9999.9 0 30.1 23 7.2 23 19.0 999.9 42.4* 24.4* 0.00I 999.9 000000 724050 13743 19401207 42.6 24 31.3 23 1018.5 24 9999.9 0 27.0 24 13.6 24 21.0 999.9 56.3* 34.3* 99.99 999.9 010000 724050 13743 19401208 46.0 24 35.4 24 1016.1 24 9999.9 0 57.5 24 7.2 24 16.9 999.9 52.3* 35.4* 99.99 999.9 010000 724050 13743 19401209 37.5 24 25.8 24 1022.2 24 9999.9 0 40.2 24 4.1 24 15.9 999.9 47.3* 29.3* 0.00I 999.9 000000 724050 13743 19401210 46.7 24 31.6 24 1018.6 24 9999.9 0 6.3 24 9.6 24 15.0 999.9 60.3* 39.4* 0.00I 999.9 000000 724050 13743 19401211 47.7 24 34.2 24 1026.5 24 9999.9 0 6.0 24 4.6 24 8.9 999.9 55.4* 42.4* 0.00I 999.9 000000 724050 13743 19401212 40.0 24 36.7 24 1028.8 24 9999.9 0 3.6 24 1.9 24 6.0 999.9 50.4* 34.3* 99.99 999.9 110000 724050 13743 19401213 53.9 24 48.6 24 1022.6 24 9999.9 0 4.9 24 9.4 24 21.0 999.9 63.3* 43.3* 99.99 999.9 110000 724050 13743 19401214 37.6 24 31.7 24 1032.6 24 9999.9 0 4.6 24 5.7 24 11.1 999.9 42.4* 34.3* 99.99 999.9 010000 724050 13743 19401215 39.2 24 27.5 24 1034.8 24 9999.9 0 5.1 24 3.0 24 6.0 999.9 44.4* 36.3* 0.00I 999.9 000000 724050 13743 19401216 42.4 24 39.7 24 1022.7 24 9999.9 0 2.0 24 3.8 24 8.9 999.9 46.4* 40.3* 99.99 999.9 110000 724050 13743 19401217 44.2 24 34.7 24 1017.8 24 9999.9 0 60.4 24 14.4 24 33.0 999.9 49.3* 37.4* 0.00I 999.9 100000 724050 13743 19401218 35.5 24 27.1 24 1032.9 24 9999.9 0 12.4 24 3.0 24 9.9 999.9 44.4* 28.4* 0.00I 999.9 000000 724050 13743 19401219 33.1 24 25.5 24 1035.1 23 9999.9 0 2.0 24 1.8 24 7.0 999.9 44.4* 25.3* 0.00I 999.9 000000 724050 13743 19401220 41.3 24 33.4 24 1027.0 24 9999.9 0 3.5 24 1.7 24 7.0 999.9 54.3* 34.3* 0.00I 999.9 100000 724050 13743 19401221 42.4 23 35.9 23 1020.2 23 9999.9 0 3.0 23 3.6 23 16.9 999.9 51.3* 33.4* 0.00I 999.9 100000 724050 13743 19401222 40.9 23 32.9 23 1018.8 23 9999.9 0 3.7 23 2.8 23 8.9 999.9 59.4* 28.4* 0.00I 999.9 000000 724050 13743 19401223 44.4 23 32.5 23 1023.5 23 9999.9 0 55.0 23 8.4 23 15.0 999.9 51.3* 35.4* 0.00I 999.9 000000 724050 13743 19401224 34.7 24 26.9 24 1027.8 24 9999.9 0 35.0 24 1.8 24 9.9 999.9 51.3* 23.4* 0.00I 999.9 000000 724050 13743 19401225 42.3 24 36.2 24 1018.5 24 9999.9 0 31.0 24 2.7 24 7.0 999.9 61.3* 31.3* 0.00I 999.9 100000 724050 13743 19401226 52.7 24 49.7 24 1009.3 24 9999.9 0 18.5 24 5.8 24 13.0 999.9 54.3* 51.3* 99.99 999.9 110000 724050 13743 19401227 51.2 24 49.0 24 1011.0 24 9999.9 0 1.0 24 3.0 24 8.9 999.9 52.3* 50.4* 0.00I 999.9 100000 724050 13743 19401228 50.0 24 47.9 24 1004.0 24 9999.9 0 1.5 24 3.1 24 12.0 999.9 54.3* 47.3* 99.99 999.9 110000 724050 13743 19401229 56.5 24 53.5 24 995.3 24 9999.9 0 30.6 24 5.4 24 14.0 999.9 60.3* 52.3* 99.99 999.9 110000 724050 13743 19401230 49.0 24 36.9 24 1004.7 24 9999.9 0 49.6 24 8.0 24 20.0 999.9 55.4* 45.3* 99.99 999.9 010000 724050 13743 19401231 43.1 24 31.3 24 1022.8 24 9999.9 0 61.2 24 9.9 24 16.9 999.9 49.3* 38.3* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1967/0000755000175000017500000000000014302004506015106 5ustar nileshnileshfluids-1.0.22/tests/gsod/1967/724050-13743.op0000644000175000017500000010453714302004506016700 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19670103 42.0 13 31.4 13 1016.0 4 1015.0 4 6.7 13 1.5 13 5.1 999.9 47.3* 36.3* 0.00I 999.9 000000 724050 13743 19670104 40.6 13 33.7 13 1012.1 4 1011.1 4 3.0 13 3.7 13 8.0 999.9 43.3* 37.4* 0.00I 999.9 100000 724050 13743 19670105 34.7 13 16.7 13 1012.6 4 1011.6 4 12.5 13 13.9 13 19.0 999.9 37.4* 31.3* 0.00I 999.9 000000 724050 13743 19670106 35.6 13 18.9 13 1028.3 4 1027.3 4 11.4 13 3.6 13 8.9 999.9 42.4* 30.4* 0.00I 999.9 000000 724050 13743 19670109 39.0 13 21.1 13 1026.4 4 1025.4 4 9.6 13 4.5 13 8.9 999.9 43.3* 35.4* 0.00I 999.9 000000 724050 13743 19670110 41.4 13 26.0 13 1018.5 4 1017.5 4 4.7 13 0.4 13 1.9 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19670111 34.5 14 18.3 14 1022.6 5 1021.6 5 13.9 14 14.8 14 22.0 999.9 41.4* 31.3* 0.00I 999.9 000000 724050 13743 19670112 35.0 13 15.2 13 1020.7 4 1019.7 4 11.9 13 7.1 13 12.0 999.9 43.3* 26.4* 0.00I 999.9 000000 724050 13743 19670113 45.4 13 23.5 13 1015.4 4 1014.4 4 9.5 13 4.2 13 7.0 999.9 54.3* 33.4* 0.00I 999.9 000000 724050 13743 19670116 33.0 13 11.7 13 1025.1 4 1024.1 4 14.9 13 9.1 13 18.1 999.9 38.3* 30.4* 0.00I 999.9 000000 724050 13743 19670117 41.8 13 21.0 13 1021.6 4 1020.6 4 12.8 13 5.4 13 8.9 999.9 52.3* 29.3* 0.00I 999.9 000000 724050 13743 19670118 28.4 13 5.8 13 1035.1 4 1034.0 4 14.9 13 15.0 13 18.1 999.9 31.3* 25.3* 0.00I 999.9 000000 724050 13743 19670119 22.2 13 14.1 13 1034.6 4 1033.6 4 5.7 13 2.4 13 4.1 999.9 27.3* 18.3* 99.99 999.9 101000 724050 13743 19670120 31.5 13 22.0 13 1029.8 4 1028.8 4 6.7 13 4.7 13 8.0 999.9 42.4* 20.3* 0.00I 999.9 000000 724050 13743 19670123 59.3 13 45.6 13 1021.4 4 1020.3 4 7.3 13 5.0 13 7.0 999.9 72.3* 46.4* 0.00I 999.9 000000 724050 13743 19670124 63.4 13 48.4 13 1022.3 4 1021.3 4 7.8 13 2.5 13 4.1 999.9 72.3* 50.4* 0.00I 999.9 000000 724050 13743 19670125 62.6 13 49.4 13 1020.2 4 1019.2 4 6.3 13 4.4 13 8.9 999.9 72.3* 53.4* 0.00I 999.9 000000 724050 13743 19670126 61.3 13 46.3 13 1017.2 4 1016.1 4 8.1 13 2.9 13 6.0 999.9 69.3* 53.4* 0.00I 999.9 000000 724050 13743 19670127 58.0 13 52.7 13 997.6 4 996.6 4 6.4 13 5.1 13 15.9 999.9 63.3* 51.3* 99.99 999.9 110010 724050 13743 19670130 33.8 13 12.2 13 1022.6 4 1021.5 4 14.9 13 11.3 13 15.0 999.9 38.3* 28.4* 0.00I 999.9 000000 724050 13743 19670131 38.1 13 19.5 13 1023.0 4 1022.0 4 10.1 13 4.6 13 14.0 999.9 47.3* 27.3* 99.99 999.9 010000 724050 13743 19670201 48.7 13 34.8 13 1019.8 4 1018.8 4 5.0 13 0.8 13 2.9 999.9 58.3* 36.3* 0.00I 999.9 000000 724050 13743 19670202 55.0 13 42.8 13 1009.4 4 1008.4 4 8.2 13 7.8 13 20.0 999.9 68.4* 42.4* 99.99 999.9 010000 724050 13743 19670203 35.0 13 18.2 13 1024.7 4 1023.7 4 14.1 13 8.0 13 15.0 999.9 38.3* 32.4* 0.00I 999.9 000000 724050 13743 19670206 35.5 13 24.2 13 1013.5 4 1012.5 4 9.9 13 8.7 13 15.0 999.9 42.4* 29.3* 99.99 999.9 011000 724050 13743 19670207 20.0 15 15.1 15 1011.6 5 1010.6 5 4.3 15 14.9 15 22.0 999.9 24.4* 16.3* 99.99 999.9 001000 724050 13743 19670208 24.7 13 10.4 13 1029.3 4 1028.3 4 7.1 13 1.2 13 9.9 999.9 33.4* 15.4* 0.00I 999.9 000000 724050 13743 19670209 28.1 13 14.9 13 1024.8 4 1023.8 4 4.7 13 1.3 13 6.0 999.9 34.3* 17.4* 0.00I 999.9 000000 724050 13743 19670210 35.4 13 24.8 13 1012.5 4 1011.5 4 7.2 13 4.3 13 8.9 999.9 41.4* 28.4* 0.00I 999.9 000000 724050 13743 19670213 27.0 13 13.4 13 1024.8 4 1023.8 4 12.0 13 4.8 13 7.0 999.9 36.3* 14.4* 0.00I 999.9 000000 724050 13743 19670214 47.9 13 28.4 13 1017.9 4 1016.9 4 10.6 13 6.1 13 8.9 999.9 59.4* 32.4* 0.00I 999.9 000000 724050 13743 19670215 55.5 13 33.1 13 1013.1 4 1012.1 4 11.5 13 7.3 13 8.9 999.9 59.4* 51.3* 0.00I 999.9 000000 724050 13743 19670216 48.3 13 21.2 13 1013.1 4 1012.1 4 14.7 13 20.5 13 27.0 999.9 61.3* 39.4* 0.00I 999.9 000000 724050 13743 19670217 27.1 13 22.4 13 1024.5 4 1023.5 4 1.5 13 6.3 13 8.9 999.9 31.3* 26.4* 99.99 999.9 101000 724050 13743 19670220 36.7 13 31.7 13 1017.0 4 1016.0 4 2.7 13 6.5 13 8.0 999.9 41.4* 31.3* 99.99 999.9 110000 724050 13743 19670221 35.0 13 21.1 13 1008.6 4 1007.5 4 9.6 13 20.0 13 28.0 999.9 37.4* 32.4* 99.99 999.9 111000 724050 13743 19670223 36.0 13 16.8 13 1004.1 4 1003.0 4 12.0 13 14.7 13 25.1 999.9 37.4* 34.3* 99.99 999.9 001000 724050 13743 19670224 26.1 13 4.0 13 1011.8 4 1010.7 4 14.9 13 16.3 13 20.0 999.9 28.4* 24.4* 0.00I 999.9 000000 724050 13743 19670227 35.0 13 9.0 13 1023.9 4 1022.9 4 11.0 13 4.5 13 7.0 999.9 44.4* 23.4* 0.00I 999.9 000000 724050 13743 19670228 41.6 13 22.9 13 1007.6 4 1006.6 4 14.9 13 11.5 13 16.9 999.9 45.3* 37.4* 0.00I 999.9 000000 724050 13743 19670301 28.1 13 2.0 13 1023.3 4 1022.3 4 14.9 13 13.8 13 20.0 999.9 33.4* 21.4* 0.00I 999.9 000000 724050 13743 19670302 42.7 13 13.9 13 1018.3 4 1017.3 4 13.8 13 8.9 13 14.0 999.9 57.4* 24.4* 0.00I 999.9 000000 724050 13743 19670303 61.5 13 32.5 13 1010.6 4 1009.6 4 14.0 13 9.3 13 13.0 999.9 72.3* 48.4* 0.00I 999.9 000000 724050 13743 19670306 44.4 13 41.7 13 1005.5 4 1004.5 4 3.1 13 5.0 13 13.0 999.9 45.3* 42.4* 99.99 999.9 110000 724050 13743 19670307 39.9 13 31.6 13 1003.4 4 1002.4 4 10.3 13 15.0 13 25.1 999.9 43.3* 37.4* 99.99 999.9 111000 724050 13743 19670308 41.5 13 23.5 13 1023.5 4 1022.5 4 7.1 13 2.8 13 6.0 999.9 47.3* 32.4* 0.00I 999.9 000000 724050 13743 19670309 50.1 13 31.8 13 1025.1 4 1024.1 4 9.5 13 5.8 13 9.9 999.9 62.4* 35.4* 0.00I 999.9 000000 724050 13743 19670310 58.9 13 34.8 13 1021.9 4 1020.9 4 8.0 13 5.3 13 8.0 999.9 70.3* 42.4* 0.00I 999.9 000000 724050 13743 19670313 44.3 13 38.7 13 1021.1 4 1020.1 4 5.0 13 2.8 13 5.1 999.9 48.4* 40.3* 99.99 999.9 110000 724050 13743 19670314 64.0 13 54.2 13 1010.9 4 1009.9 4 9.8 13 5.2 13 8.0 999.9 76.3* 49.3* 99.99 999.9 110000 724050 13743 19670315 46.6 13 44.7 13 1010.1 4 1009.1 4 2.9 13 6.1 13 9.9 999.9 48.4* 43.3* 99.99 999.9 110000 724050 13743 19670316 37.3 13 15.8 13 1023.6 4 1022.6 4 14.9 13 18.8 13 28.0 999.9 43.3* 32.4* 0.00I 999.9 000000 724050 13743 19670317 32.2 13 14.3 13 1017.6 4 1016.6 4 13.6 13 23.7 13 33.0 999.9 38.3* 30.4* 99.99 999.9 001000 724050 13743 19670320 38.1 13 21.6 13 1030.3 4 1029.3 4 8.7 13 2.7 13 8.0 999.9 42.4* 31.3* 0.00I 999.9 000000 724050 13743 19670321 35.3 13 32.5 13 1020.1 4 1019.1 4 2.4 13 3.7 13 6.0 999.9 36.3* 34.3* 99.99 999.9 111000 724050 13743 19670322 40.5 13 30.6 13 1021.5 4 1020.5 4 4.5 13 8.0 13 15.9 999.9 45.3* 33.4* 99.99 999.9 101000 724050 13743 19670323 40.2 13 33.1 13 1019.8 4 1018.8 4 4.6 13 3.6 13 6.0 999.9 45.3* 35.4* 99.99 999.9 111000 724050 13743 19670324 43.4 13 26.5 13 1024.7 4 1023.8 4 8.6 13 12.0 13 15.0 999.9 48.4* 38.3* 0.00I 999.9 000000 724050 13743 19670327 49.5 13 34.3 13 1027.6 4 1026.6 4 14.7 13 5.4 13 9.9 999.9 56.3* 40.3* 0.00I 999.9 000000 724050 13743 19670328 51.4 13 42.4 13 1022.8 4 1021.8 4 7.2 13 3.1 13 8.0 999.9 61.3* 42.4* 0.00I 999.9 100000 724050 13743 19670329 54.3 13 40.7 13 1021.8 4 1020.8 4 13.2 13 12.1 13 18.1 999.9 59.4* 48.4* 0.00I 999.9 100000 724050 13743 19670330 56.0 13 35.1 13 1029.5 4 1028.5 4 7.3 13 2.7 13 6.0 999.9 63.3* 44.4* 0.00I 999.9 000000 724050 13743 19670331 56.9 13 30.6 13 1033.0 4 1032.0 4 11.4 13 6.9 13 9.9 999.9 65.3* 42.4* 0.00I 999.9 000000 724050 13743 19670403 72.6 13 46.2 13 1011.9 4 1010.9 4 14.9 13 13.9 13 22.9 999.9 81.3* 64.4* 0.00I 999.9 000000 724050 13743 19670404 47.3 13 15.7 13 1028.9 4 1027.9 4 14.9 13 5.8 13 8.0 999.9 54.3* 39.4* 0.00I 999.9 000000 724050 13743 19670405 50.8 13 43.2 13 1019.7 4 1018.7 4 7.0 13 3.8 13 7.0 999.9 58.3* 42.4* 99.99 999.9 010000 724050 13743 19670406 67.4 13 54.3 13 1009.4 4 1008.4 4 6.4 13 5.5 13 9.9 999.9 79.3* 53.4* 99.99 999.9 110000 724050 13743 19670407 57.7 13 49.6 13 1008.5 4 1007.5 4 6.5 13 10.2 13 30.9 999.9 63.3* 53.4* 99.99 999.9 110000 724050 13743 19670410 68.4 13 44.5 13 1008.8 4 1007.8 4 13.3 13 12.2 13 21.0 999.9 74.3* 63.3* 99.99 999.9 010000 724050 13743 19670411 47.7 13 20.0 13 1020.3 4 1019.3 4 14.9 13 12.0 13 15.9 999.9 54.3* 40.3* 0.00I 999.9 000000 724050 13743 19670412 45.9 13 13.7 13 1027.8 4 1026.8 4 14.9 13 6.2 13 9.9 999.9 55.4* 35.4* 0.00I 999.9 000000 724050 13743 19670413 51.1 13 29.7 13 1029.3 4 1028.3 4 14.1 13 7.8 13 11.1 999.9 55.4* 43.3* 99.99 999.9 010000 724050 13743 19670414 68.9 13 47.7 13 1020.8 4 1019.8 4 10.4 13 2.6 13 6.0 999.9 82.4* 49.3* 0.00I 999.9 000000 724050 13743 19670417 51.4 13 48.2 13 1015.0 4 1014.0 4 3.3 13 5.9 13 9.9 999.9 53.4* 48.4* 99.99 999.9 110010 724050 13743 19670418 62.0 13 40.4 13 1006.7 4 1005.7 4 13.8 13 17.7 13 25.1 999.9 65.3* 57.4* 0.00I 999.9 000000 724050 13743 19670419 50.9 13 33.7 13 1016.1 4 1015.1 4 14.9 13 20.1 13 26.0 999.9 54.3* 46.4* 0.00I 999.9 000000 724050 13743 19670420 57.6 13 34.4 13 1020.9 4 1019.8 4 14.9 13 7.6 13 13.0 999.9 66.4* 45.3* 0.00I 999.9 000000 724050 13743 19670421 65.6 13 43.1 13 1014.0 4 1013.0 4 10.2 13 5.0 13 9.9 999.9 72.3* 54.3* 99.99 999.9 010000 724050 13743 19670424 53.5 13 39.4 13 1010.8 4 1009.7 4 14.7 13 18.3 13 26.0 999.9 59.4* 48.4* 0.00I 999.9 000000 724050 13743 19670425 49.3 13 24.6 13 1025.5 4 1024.5 4 14.9 13 11.2 13 18.1 999.9 56.3* 41.4* 0.00I 999.9 000000 724050 13743 19670426 51.2 13 42.4 13 1020.3 4 1019.3 4 6.0 13 5.6 13 9.9 999.9 54.3* 47.3* 99.99 999.9 110000 724050 13743 19670427 45.4 13 37.0 13 1012.5 4 1011.5 4 11.6 13 15.0 13 20.0 999.9 52.3* 41.4* 99.99 999.9 110000 724050 13743 19670428 54.8 13 22.6 13 1020.8 4 1019.8 4 14.9 13 18.4 13 22.0 999.9 60.3* 44.4* 0.00I 999.9 000000 724050 13743 19670501 71.6 13 49.1 13 1017.0 4 1015.9 4 10.6 13 4.1 13 7.0 999.9 81.3* 60.3* 0.00I 999.9 000000 724050 13743 19670502 75.1 13 57.1 13 1011.5 4 1010.5 4 7.3 13 8.5 13 16.9 999.9 84.4* 65.3* 0.00I 999.9 000000 724050 13743 19670503 57.6 13 37.8 13 1021.6 4 1020.6 4 14.1 13 11.8 13 18.1 999.9 63.3* 51.3* 0.00I 999.9 000000 724050 13743 19670504 59.3 13 33.3 13 1028.6 4 1027.5 4 12.9 13 6.4 13 9.9 999.9 64.4* 49.3* 0.00I 999.9 000000 724050 13743 19670505 63.4 13 45.5 13 1024.7 4 1023.7 4 9.6 13 4.8 13 8.0 999.9 72.3* 48.4* 0.00I 999.9 000000 724050 13743 19670508 57.2 13 43.0 13 997.2 4 996.2 4 11.8 13 7.2 13 12.0 999.9 63.3* 49.3* 99.99 999.9 010010 724050 13743 19670509 55.7 13 38.4 13 1000.6 4 999.5 4 13.6 13 11.8 13 19.0 999.9 59.4* 48.4* 99.99 999.9 010000 724050 13743 19670510 57.0 13 36.3 13 1012.6 4 1011.6 4 10.9 13 11.9 13 20.0 999.9 62.4* 48.4* 0.00I 999.9 000000 724050 13743 19670511 60.6 13 50.4 13 1004.2 4 1003.2 4 6.9 13 7.8 13 15.0 999.9 76.3* 50.4* 99.99 999.9 010000 724050 13743 19670512 60.6 13 42.9 13 1014.8 4 1013.8 4 13.3 13 11.1 13 14.0 999.9 66.4* 55.4* 0.00I 999.9 000000 724050 13743 19670515 65.0 13 60.2 13 1003.8 4 1002.8 4 4.5 13 5.1 13 9.9 999.9 78.3* 56.3* 99.99 999.9 110000 724050 13743 19670516 59.5 13 36.8 13 1018.7 4 1017.7 4 13.3 13 12.2 13 21.0 999.9 64.4* 48.4* 0.00I 999.9 000000 724050 13743 19670517 56.1 13 40.4 13 1022.7 4 1021.7 4 7.0 13 5.4 13 13.0 999.9 64.4* 44.4* 99.99 999.9 010000 724050 13743 19670518 64.3 13 46.0 13 1019.7 4 1018.7 4 10.8 13 3.1 13 8.0 999.9 74.3* 48.4* 0.00I 999.9 100000 724050 13743 19670519 70.1 13 50.6 13 1013.0 4 1012.0 4 10.2 13 10.1 13 16.9 999.9 80.2* 56.3* 99.99 999.9 010000 724050 13743 19670522 51.9 13 47.6 13 1022.0 4 1020.9 4 4.5 13 2.0 13 6.0 999.9 57.4* 48.4* 99.99 999.9 110000 724050 13743 19670523 58.7 13 42.1 13 1020.8 4 1019.7 4 7.3 13 7.7 13 9.9 999.9 65.3* 50.4* 0.00I 999.9 000000 724050 13743 19670524 56.3 13 36.5 13 1021.3 4 1020.2 4 10.0 13 9.8 13 16.9 999.9 62.4* 47.3* 0.00I 999.9 000000 724050 13743 19670525 61.7 13 32.9 13 1015.6 4 1014.6 4 13.5 13 13.4 13 16.9 999.9 71.2* 47.3* 0.00I 999.9 000000 724050 13743 19670526 64.1 13 40.3 13 1013.6 4 1012.5 4 14.9 13 14.4 13 19.0 999.9 75.4* 52.3* 0.00I 999.9 000000 724050 13743 19670529 64.0 13 56.6 13 1009.7 4 1008.7 4 6.3 13 5.0 13 8.9 999.9 74.3* 59.4* 99.99 999.9 010000 724050 13743 19670531 59.3 13 42.3 13 1020.3 4 1019.3 4 11.8 13 3.6 13 6.0 999.9 65.3* 53.4* 99.99 999.9 010000 724050 13743 19670601 64.8 13 43.8 13 1024.9 4 1023.9 4 7.8 13 3.3 13 5.1 999.9 73.4* 52.3* 0.00I 999.9 000000 724050 13743 19670602 71.3 13 43.9 13 1024.1 4 1023.1 4 11.7 13 3.9 13 8.0 999.9 81.3* 54.3* 0.00I 999.9 000000 724050 13743 19670605 74.8 13 54.7 13 1026.1 4 1025.1 4 10.4 13 5.0 13 9.9 999.9 82.4* 60.3* 0.00I 999.9 000000 724050 13743 19670606 73.9 13 57.1 13 1023.2 4 1022.2 4 10.7 13 3.9 13 8.0 999.9 81.3* 60.3* 0.00I 999.9 000000 724050 13743 19670607 74.2 13 57.1 13 1021.0 4 1020.0 4 11.9 13 4.5 13 8.0 999.9 80.2* 61.3* 0.00I 999.9 000000 724050 13743 19670608 75.5 13 54.9 13 1020.1 4 1019.1 4 12.2 13 5.3 13 8.0 999.9 83.3* 63.3* 0.00I 999.9 000000 724050 13743 19670609 77.2 13 58.9 13 1018.9 4 1017.9 4 13.2 13 7.0 13 9.9 999.9 85.3* 63.3* 0.00I 999.9 000000 724050 13743 19670612 80.5 13 61.3 13 1018.4 4 1017.4 4 13.5 13 4.8 13 8.9 999.9 89.2* 66.4* 0.00I 999.9 000000 724050 13743 19670613 85.3 13 63.1 13 1018.9 4 1017.9 4 11.0 13 4.8 13 12.0 999.9 92.3* 71.2* 0.00I 999.9 000000 724050 13743 19670614 69.3 13 61.8 13 1024.0 4 1023.0 4 4.2 13 4.9 13 8.9 999.9 76.3* 63.3* 99.99 999.9 110000 724050 13743 19670615 73.5 13 64.7 13 1019.0 4 1018.0 4 2.9 13 6.3 13 11.1 999.9 83.3* 67.3* 0.00I 999.9 100000 724050 13743 19670616 82.5 13 68.1 13 1015.2 4 1014.1 4 4.4 13 6.8 13 8.9 999.9 90.3* 71.2* 0.00I 999.9 000000 724050 13743 19670619 73.3 13 65.0 13 1016.1 4 1015.0 4 7.6 13 8.8 13 11.1 999.9 77.4* 69.3* 0.00I 999.9 100000 724050 13743 19670620 74.4 13 54.5 13 1015.6 4 1014.6 4 14.7 13 7.3 13 12.0 999.9 82.4* 65.3* 0.00I 999.9 000000 724050 13743 19670621 81.5 13 66.4 13 1012.2 4 1011.2 4 4.5 13 4.2 13 8.0 999.9 89.2* 69.3* 0.00I 999.9 000000 724050 13743 19670622 80.8 13 70.8 13 1011.2 4 1010.2 4 5.4 13 10.3 13 14.0 999.9 88.3* 74.3* 99.99 999.9 010010 724050 13743 19670623 79.9 13 69.5 13 1013.1 4 1012.1 4 7.3 13 2.6 13 8.0 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19670626 72.2 13 46.5 13 1019.7 4 1018.7 4 14.9 13 8.7 13 14.0 999.9 79.3* 63.3* 0.00I 999.9 000000 724050 13743 19670627 75.7 13 52.6 13 1020.3 4 1019.3 4 12.4 13 3.5 13 7.0 999.9 81.3* 63.3* 0.00I 999.9 000000 724050 13743 19670628 74.3 13 51.6 13 1020.5 4 1019.5 4 13.5 13 4.1 13 8.9 999.9 78.3* 65.3* 0.00I 999.9 000000 724050 13743 19670629 71.3 13 55.8 13 1017.5 4 1016.5 4 13.5 13 4.7 13 6.0 999.9 78.3* 63.3* 0.00I 999.9 000000 724050 13743 19670630 73.2 13 65.5 13 1013.1 4 1012.1 4 4.2 13 4.5 13 8.0 999.9 79.3* 67.3* 99.99 999.9 110000 724050 13743 19670703 79.4 13 62.2 13 1009.2 4 1008.2 4 11.2 13 8.4 13 15.9 999.9 84.4* 71.2* 0.00I 999.9 000000 724050 13743 19670705 70.5 13 51.4 13 1021.2 4 1020.2 4 14.9 13 11.6 13 19.0 999.9 76.3* 61.3* 0.00I 999.9 000000 724050 13743 19670706 73.0 13 57.6 13 1026.3 4 1025.3 4 8.0 13 4.4 13 8.0 999.9 79.3* 65.3* 0.00I 999.9 000000 724050 13743 19670707 75.7 13 57.3 13 1027.5 4 1026.5 4 11.3 13 6.2 13 9.9 999.9 80.2* 66.4* 0.00I 999.9 000000 724050 13743 19670710 83.2 13 70.2 13 1014.0 4 1013.0 4 10.4 13 6.0 13 11.1 999.9 89.2* 73.4* 0.00I 999.9 000000 724050 13743 19670711 80.3 13 70.1 13 1010.2 4 1009.2 4 8.7 13 4.7 13 11.1 999.9 88.3* 73.4* 99.99 999.9 010010 724050 13743 19670712 84.3 13 67.8 13 1010.8 4 1009.8 4 5.3 13 7.5 13 14.0 999.9 91.2* 74.3* 99.99 999.9 010000 724050 13743 19670713 80.2 13 63.8 13 1008.5 4 1007.5 4 7.6 13 5.1 13 8.0 999.9 83.3* 76.3* 99.99 999.9 010000 724050 13743 19670714 74.5 13 67.1 13 1009.7 4 1008.7 4 5.2 13 4.6 13 14.0 999.9 78.3* 68.4* 99.99 999.9 010000 724050 13743 19670717 76.0 13 61.0 13 1022.5 4 1021.4 4 4.5 13 3.4 13 9.9 999.9 83.3* 69.3* 99.99 999.9 010000 724050 13743 19670718 76.1 13 64.7 13 1021.9 4 1020.8 4 3.6 13 3.4 13 8.0 999.9 83.3* 67.3* 99.99 999.9 110010 724050 13743 19670719 78.3 13 62.5 13 1022.1 4 1021.1 4 5.6 13 3.4 13 7.0 999.9 84.4* 67.3* 0.00I 999.9 000000 724050 13743 19670720 79.4 13 67.0 13 1022.5 4 1021.4 4 6.2 13 3.6 13 8.9 999.9 85.3* 71.2* 0.00I 999.9 000000 724050 13743 19670721 76.3 13 65.2 13 1021.2 4 1020.2 4 9.3 13 3.3 13 8.0 999.9 84.4* 67.3* 0.00I 999.9 000000 724050 13743 19670724 83.8 13 68.4 13 1013.9 4 1012.8 4 6.0 13 6.0 13 12.0 999.9 90.3* 75.4* 0.00I 999.9 000000 724050 13743 19670725 82.6 13 70.5 13 1011.2 4 1010.1 4 7.5 13 5.5 13 12.0 999.9 87.3* 77.4* 0.00I 999.9 000000 724050 13743 19670726 83.6 13 65.8 13 1013.0 4 1012.0 4 10.9 13 4.9 13 16.9 999.9 88.3* 76.3* 99.99 999.9 010000 724050 13743 19670727 83.8 13 64.5 13 1014.4 4 1013.3 4 5.4 13 4.1 13 6.0 999.9 90.3* 73.4* 0.00I 999.9 000000 724050 13743 19670728 82.2 13 70.5 13 1010.7 4 1009.7 4 4.9 13 5.0 13 12.0 999.9 87.3* 74.3* 99.99 999.9 110000 724050 13743 19670731 80.0 13 67.9 13 1013.3 4 1012.3 4 5.4 13 3.5 13 7.0 999.9 87.3* 71.2* 0.00I 999.9 000000 724050 13743 19670801 81.5 13 65.6 13 1013.5 4 1012.5 4 4.6 13 6.8 13 9.9 999.9 87.3* 74.3* 0.00I 999.9 000000 724050 13743 19670802 82.6 13 68.9 13 1017.0 4 1015.9 4 4.3 13 5.1 13 8.9 999.9 89.2* 72.3* 0.00I 999.9 000000 724050 13743 19670803 83.5 13 72.7 13 1015.8 4 1014.8 4 4.8 13 5.4 13 8.9 999.9 90.3* 75.4* 99.99 999.9 010010 724050 13743 19670804 81.0 13 71.7 13 1013.9 4 1012.9 4 7.8 13 6.8 13 9.9 999.9 88.3* 73.4* 0.00I 999.9 000000 724050 13743 19670807 79.1 13 65.3 13 1017.8 4 1016.8 4 5.0 13 3.7 13 8.9 999.9 85.3* 70.3* 0.00I 999.9 000000 724050 13743 19670808 79.4 13 66.3 13 1016.4 4 1015.2 4 8.4 13 3.7 13 11.1 999.9 87.3* 72.3* 0.00I 999.9 000000 724050 13743 19670809 81.5 13 69.4 13 1013.0 4 1012.0 4 7.6 13 8.5 13 13.0 999.9 89.2* 71.2* 0.00I 999.9 000000 724050 13743 19670810 78.9 13 66.5 13 1010.9 4 1009.9 4 7.9 13 9.1 13 16.9 999.9 83.3* 73.4* 99.99 999.9 010000 724050 13743 19670811 71.8 13 54.2 13 1018.2 4 1017.2 4 14.2 13 10.9 13 15.0 999.9 77.4* 66.4* 0.00I 999.9 000000 724050 13743 19670814 74.2 13 55.4 13 1019.5 4 1018.5 4 14.9 13 7.8 13 12.0 999.9 81.3* 63.3* 0.00I 999.9 000000 724050 13743 19670815 78.1 13 58.0 13 1022.0 4 1021.0 4 9.6 13 2.8 13 8.0 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19670816 79.4 13 59.7 13 1024.3 4 1023.2 4 4.7 13 2.6 13 6.0 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19670817 79.4 13 62.3 13 1023.8 4 1022.8 4 3.7 13 3.2 13 6.0 999.9 86.4* 68.4* 0.00I 999.9 000000 724050 13743 19670818 81.9 13 63.4 13 1018.6 4 1017.5 4 5.2 13 3.7 13 8.0 999.9 89.2* 70.3* 0.00I 999.9 000000 724050 13743 19670821 72.9 13 62.8 13 1017.1 4 1016.1 4 6.7 13 2.2 13 6.0 999.9 76.3* 68.4* 99.99 999.9 010000 724050 13743 19670822 75.4 13 68.3 13 1017.8 4 1016.8 4 11.3 13 3.8 13 6.0 999.9 80.2* 70.3* 0.00I 999.9 000000 724050 13743 19670823 66.8 13 64.7 13 1023.5 4 1022.5 4 2.8 13 5.7 13 9.9 999.9 68.4* 65.3* 99.99 999.9 110000 724050 13743 19670824 68.2 13 66.6 13 1025.7 4 1024.7 4 3.9 13 6.3 13 8.9 999.9 71.2* 64.4* 99.99 999.9 110000 724050 13743 19670825 75.1 13 70.4 13 1022.4 4 1021.3 4 5.8 13 2.2 13 5.1 999.9 82.4* 69.3* 0.00I 999.9 100000 724050 13743 19670828 75.4 13 53.8 13 1015.5 4 1014.5 4 14.9 13 8.5 13 16.9 999.9 78.3* 68.4* 0.00I 999.9 000000 724050 13743 19670829 75.9 13 59.3 13 1019.2 4 1018.1 4 6.3 13 4.8 13 8.9 999.9 82.4* 67.3* 0.00I 999.9 000000 724050 13743 19670830 76.6 13 63.5 13 1017.0 4 1016.0 4 5.4 13 4.8 13 9.9 999.9 82.4* 67.3* 0.00I 999.9 000000 724050 13743 19670831 76.1 13 64.4 13 1017.4 4 1016.3 4 7.1 13 8.0 13 18.1 999.9 80.2* 69.3* 0.00I 999.9 000000 724050 13743 19670901 64.3 13 41.7 13 1023.6 4 1022.6 4 14.9 13 12.2 13 18.1 999.9 72.3* 57.4* 0.00I 999.9 000000 724050 13743 19670905 75.6 13 58.5 13 1024.8 4 1023.8 4 8.8 13 3.9 13 11.1 999.9 84.4* 63.3* 0.00I 999.9 000000 724050 13743 19670906 73.2 13 56.8 13 1021.4 4 1020.3 4 8.5 13 8.9 13 13.0 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19670907 76.8 13 60.6 13 1021.0 4 1020.0 4 6.0 13 2.4 13 4.1 999.9 85.3* 65.3* 0.00I 999.9 000000 724050 13743 19670908 75.2 13 61.8 13 1021.2 4 1020.2 4 5.0 13 5.0 13 9.9 999.9 81.3* 66.4* 0.00I 999.9 000000 724050 13743 19670911 58.9 13 42.5 13 1028.5 4 1027.5 4 14.9 13 7.3 13 11.1 999.9 67.3* 50.4* 0.00I 999.9 000000 724050 13743 19670912 62.0 13 42.6 13 1027.6 4 1026.6 4 11.9 13 4.8 13 8.9 999.9 69.3* 50.4* 0.00I 999.9 000000 724050 13743 19670913 65.7 13 43.0 13 1025.8 4 1024.8 4 9.3 13 3.8 13 8.0 999.9 74.3* 55.4* 0.00I 999.9 000000 724050 13743 19670914 69.9 13 49.2 13 1022.9 4 1021.9 4 7.8 13 4.2 13 8.9 999.9 79.3* 56.3* 0.00I 999.9 000000 724050 13743 19670915 72.7 13 52.5 13 1019.9 4 1018.9 4 12.5 13 7.4 13 13.0 999.9 81.3* 59.4* 0.00I 999.9 000000 724050 13743 19670918 76.6 13 63.0 13 1017.1 4 1016.1 4 6.6 13 2.0 13 4.1 999.9 86.4* 64.4* 0.00I 999.9 100000 724050 13743 19670919 77.3 13 60.4 13 1017.8 4 1016.8 4 7.0 13 3.5 13 6.0 999.9 83.3* 67.3* 0.00I 999.9 000000 724050 13743 19670920 77.8 13 62.2 13 1019.0 4 1018.0 4 4.8 13 3.1 13 7.0 999.9 83.3* 69.3* 0.00I 999.9 000000 724050 13743 19670921 76.0 13 68.4 13 1011.9 4 1010.9 4 3.9 13 8.3 13 9.9 999.9 82.4* 69.3* 99.99 999.9 010010 724050 13743 19670922 67.8 13 50.2 13 1010.5 4 1009.5 4 14.9 13 14.8 13 20.0 999.9 69.3* 65.3* 0.00I 999.9 000000 724050 13743 19670925 58.5 13 37.4 13 1020.9 4 1019.9 4 14.9 13 10.8 13 15.0 999.9 66.4* 48.4* 0.00I 999.9 000000 724050 13743 19670926 64.9 13 45.5 13 1022.5 4 1021.5 4 12.8 13 7.8 13 12.0 999.9 73.4* 52.3* 0.00I 999.9 000000 724050 13743 19670927 69.9 13 57.9 13 1017.2 4 1016.2 4 13.0 13 8.7 13 13.0 999.9 78.3* 58.3* 0.00I 999.9 000000 724050 13743 19670928 73.9 13 67.5 13 1004.0 4 1003.0 4 8.6 13 12.0 13 16.9 999.9 76.3* 70.3* 99.99 999.9 010000 724050 13743 19670929 73.9 13 60.1 13 1005.0 4 1004.0 4 11.8 13 8.8 13 13.0 999.9 78.3* 69.3* 0.00I 999.9 100000 724050 13743 19671002 64.6 13 47.9 13 1023.8 4 1022.8 4 11.9 13 3.5 13 8.0 999.9 73.4* 50.4* 0.00I 999.9 000000 724050 13743 19671003 70.5 13 57.0 13 1019.7 4 1018.7 4 5.4 13 4.0 13 9.9 999.9 82.4* 56.3* 0.00I 999.9 000000 724050 13743 19671004 75.0 13 57.5 13 1019.3 4 1018.3 4 8.9 13 4.3 13 9.9 999.9 84.4* 61.3* 0.00I 999.9 000000 724050 13743 19671005 77.3 13 59.4 13 1014.2 4 1013.2 4 8.3 13 5.1 13 9.9 999.9 87.3* 63.3* 0.00I 999.9 000000 724050 13743 19671006 65.7 13 52.0 13 1017.9 4 1016.9 4 9.2 13 7.9 13 12.0 999.9 71.2* 58.3* 99.99 999.9 010000 724050 13743 19671009 68.3 13 60.2 13 1009.6 4 1008.6 4 5.2 13 6.9 13 9.9 999.9 72.3* 64.4* 0.00I 999.9 100000 724050 13743 19671010 58.2 13 54.9 13 1009.9 4 1008.9 4 6.0 13 8.2 13 14.0 999.9 62.4* 52.3* 99.99 999.9 110000 724050 13743 19671011 56.6 13 42.1 13 1020.7 4 1019.7 4 10.2 13 7.4 13 12.0 999.9 59.4* 51.3* 0.00I 999.9 000000 724050 13743 19671012 54.1 13 39.4 13 1023.0 4 1022.0 4 9.9 13 3.5 13 8.0 999.9 56.3* 51.3* 0.00I 999.9 000000 724050 13743 19671013 55.3 13 38.9 13 1022.4 4 1021.4 4 7.0 13 2.6 13 6.0 999.9 63.3* 44.4* 0.00I 999.9 000000 724050 13743 19671016 65.6 13 55.4 13 9999.9 0 9999.9 0 6.9 13 3.4 13 9.9 999.9 72.3* 57.4* 0.00I 999.9 100000 724050 13743 19671017 65.5 13 60.2 13 9999.9 0 9999.9 0 3.2 13 2.4 13 6.0 999.9 74.3* 56.3* 99.99 999.9 110000 724050 13743 19671018 68.2 13 63.2 13 9999.9 0 9999.9 0 6.6 13 8.0 13 16.9 999.9 72.3* 65.3* 99.99 999.9 110000 724050 13743 19671019 52.8 13 36.7 13 9999.9 0 9999.9 0 14.9 13 12.7 13 25.1 999.9 57.4* 45.3* 0.00I 999.9 000000 724050 13743 19671020 52.5 13 33.7 13 9999.9 0 9999.9 0 12.4 13 3.9 13 8.0 999.9 59.4* 41.4* 0.00I 999.9 000000 724050 13743 19671023 56.3 13 40.2 13 9999.9 0 9999.9 0 9.6 13 2.7 13 11.1 999.9 65.3* 43.3* 0.00I 999.9 000000 724050 13743 19671024 57.2 13 49.7 13 9999.9 0 9999.9 0 7.6 13 1.8 13 5.1 999.9 65.3* 46.4* 0.00I 999.9 000000 724050 13743 19671025 62.8 13 55.7 13 9999.9 0 9999.9 0 11.2 13 11.4 13 22.0 999.9 70.3* 52.3* 99.99 999.9 010000 724050 13743 19671026 52.0 13 34.2 13 9999.9 0 9999.9 0 13.5 13 5.0 13 9.9 999.9 58.3* 43.3* 0.00I 999.9 000000 724050 13743 19671027 56.6 13 37.6 13 9999.9 0 9999.9 0 11.0 13 4.9 13 9.9 999.9 66.4* 43.3* 0.00I 999.9 000000 724050 13743 19671030 51.3 13 34.1 13 9999.9 0 9999.9 0 9.4 13 1.9 13 5.1 999.9 59.4* 38.3* 0.00I 999.9 000000 724050 13743 19671031 53.5 13 35.8 13 9999.9 0 9999.9 0 4.2 13 1.6 13 5.1 999.9 60.3* 41.4* 0.00I 999.9 000000 724050 13743 19671101 59.0 13 44.4 13 1018.9 4 1017.9 4 9.3 13 3.6 13 7.0 999.9 66.4* 47.3* 0.00I 999.9 000000 724050 13743 19671102 56.4 13 55.2 13 1009.9 4 1008.9 4 2.8 13 1.6 13 4.1 999.9 58.3* 54.3* 99.99 999.9 110000 724050 13743 19671103 58.3 13 44.4 13 1012.7 4 1011.7 4 14.2 13 2.5 13 8.0 999.9 65.3* 48.4* 0.00I 999.9 000000 724050 13743 19671106 38.2 13 17.4 13 1027.0 4 1026.0 4 14.5 13 4.9 13 8.9 999.9 44.4* 31.3* 0.00I 999.9 000000 724050 13743 19671107 38.0 13 17.8 13 1027.0 4 1026.0 4 14.7 13 11.3 13 15.9 999.9 41.4* 33.4* 0.00I 999.9 000000 724050 13743 19671108 40.3 13 21.3 13 1030.1 4 1029.1 4 13.0 13 12.0 13 18.1 999.9 44.4* 32.4* 0.00I 999.9 000000 724050 13743 19671109 48.3 13 25.0 13 1021.0 4 1020.0 4 12.3 13 3.7 13 8.0 999.9 60.3* 35.4* 0.00I 999.9 000000 724050 13743 19671113 49.3 13 28.2 13 1016.2 4 1015.2 4 14.5 13 13.1 13 20.0 999.9 52.3* 47.3* 0.00I 999.9 000000 724050 13743 19671114 45.2 13 26.7 13 1013.0 4 1012.0 4 14.5 13 7.1 13 11.1 999.9 48.4* 41.4* 0.00I 999.9 000000 724050 13743 19671115 34.8 13 9.7 13 1018.1 4 1017.1 4 14.9 13 22.9 13 28.0 999.9 37.4* 31.3* 0.00I 999.9 000000 724050 13743 19671116 31.3 13 12.0 13 1027.5 4 1026.5 4 14.9 13 8.0 13 12.0 999.9 37.4* 24.4* 0.00I 999.9 000000 724050 13743 19671117 41.1 13 22.4 13 1013.6 4 1012.5 4 9.2 13 6.7 13 8.9 999.9 47.3* 36.3* 99.99 999.9 010000 724050 13743 19671120 40.9 13 18.2 13 1022.2 4 1021.2 4 14.9 13 10.8 13 15.0 999.9 43.3* 38.3* 0.00I 999.9 000000 724050 13743 19671121 39.5 13 28.2 13 1021.2 4 1020.2 4 10.2 13 6.2 13 8.9 999.9 43.3* 36.3* 0.00I 999.9 000000 724050 13743 19671122 46.2 13 42.7 13 1009.1 4 1008.1 4 2.4 13 1.5 13 2.9 999.9 49.3* 42.4* 99.99 999.9 110000 724050 13743 19671124 39.8 13 27.0 13 1009.1 4 1008.1 4 9.9 13 4.6 13 8.0 999.9 44.4* 32.4* 99.99 999.9 010000 724050 13743 19671127 50.9 13 27.1 13 1015.2 4 1014.2 4 12.4 13 8.8 13 19.0 999.9 55.4* 46.4* 0.00I 999.9 000000 724050 13743 19671128 36.8 13 8.2 13 1021.6 4 1020.6 4 14.9 13 15.6 13 25.1 999.9 39.4* 33.4* 0.00I 999.9 000000 724050 13743 19671129 38.8 13 13.4 13 1027.0 4 1026.0 4 14.5 13 3.4 13 8.0 999.9 45.3* 31.3* 0.00I 999.9 000000 724050 13743 19671130 33.1 13 29.4 13 1016.5 4 1015.6 4 1.5 13 4.9 13 11.1 999.9 37.4* 30.4* 99.99 999.9 101000 724050 13743 19671201 29.9 13 19.2 13 1030.7 4 1029.7 4 11.2 13 3.6 13 8.0 999.9 33.4* 25.3* 0.00I 999.9 000000 724050 13743 19671204 41.7 13 25.5 13 1025.2 4 1024.1 4 14.9 13 10.8 13 15.0 999.9 46.4* 35.4* 0.00I 999.9 000000 724050 13743 19671205 45.7 13 24.6 13 1026.0 4 1025.0 4 7.6 13 1.2 13 5.1 999.9 53.4* 36.3* 0.00I 999.9 000000 724050 13743 19671206 45.0 13 31.4 13 1025.2 4 1024.1 4 4.7 13 3.8 13 7.0 999.9 49.3* 39.4* 0.00I 999.9 000000 724050 13743 19671207 45.8 13 40.8 13 1018.6 4 1017.5 4 2.7 13 2.0 13 4.1 999.9 51.3* 40.3* 99.99 999.9 110000 724050 13743 19671208 50.2 13 37.1 13 1015.2 4 1014.1 4 8.7 13 4.9 13 11.1 999.9 59.4* 38.3* 0.00I 999.9 000000 724050 13743 19671211 42.7 13 40.6 13 1012.2 4 1012.9 4 2.9 13 5.9 13 8.0 999.9 44.4* 41.4* 99.99 999.9 110000 724050 13743 19671212 51.1 13 45.1 13 1005.2 4 1004.2 4 8.6 13 7.6 13 15.0 999.9 58.3* 45.3* 99.99 999.9 110000 724050 13743 19671213 52.1 13 40.4 13 1024.6 4 1023.6 4 8.3 13 3.2 13 6.0 999.9 61.3* 40.3* 0.00I 999.9 000000 724050 13743 19671214 51.7 13 42.3 13 1026.6 4 1025.6 4 6.6 13 6.5 13 18.1 999.9 57.4* 44.4* 99.99 999.9 010000 724050 13743 19671215 38.4 13 19.5 13 1021.8 4 1020.8 4 11.3 13 16.8 13 22.0 999.9 42.4* 35.4* 0.00I 999.9 000000 724050 13743 19671218 45.9 13 35.8 13 1017.4 4 1016.3 4 5.6 13 6.2 13 9.9 999.9 47.3* 44.4* 99.99 999.9 010000 724050 13743 19671219 56.2 13 41.9 13 1021.2 4 1020.2 4 11.5 13 6.5 13 15.0 999.9 59.4* 48.4* 0.00I 999.9 000000 724050 13743 19671220 49.4 13 29.4 13 1029.4 4 1028.4 4 9.2 13 3.3 13 9.9 999.9 55.4* 40.3* 0.00I 999.9 000000 724050 13743 19671221 50.4 13 34.7 13 1026.2 4 1025.2 4 7.3 13 6.2 13 8.9 999.9 54.3* 44.4* 0.00I 999.9 000000 724050 13743 19671222 54.1 13 46.9 13 1012.5 4 1011.5 4 8.3 13 11.0 13 18.1 999.9 61.3* 45.3* 99.99 999.9 010000 724050 13743 19671226 39.3 13 21.8 13 1018.5 4 1017.4 4 14.5 13 11.1 13 16.9 999.9 41.4* 36.3* 0.00I 999.9 000000 724050 13743 19671227 33.5 13 17.2 13 1030.2 4 1029.1 4 9.4 13 4.6 13 8.0 999.9 38.3* 27.3* 0.00I 999.9 000000 724050 13743 19671228 34.6 13 31.9 13 1019.2 4 1018.2 4 2.1 13 8.9 13 13.0 999.9 37.4* 32.4* 99.99 999.9 111000 724050 13743 19671229 36.8 13 24.2 13 1018.3 4 1017.3 4 11.1 13 17.3 13 23.9 999.9 39.4* 35.4* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1986/0000755000175000017500000000000014302004506015107 5ustar nileshnileshfluids-1.0.22/tests/gsod/1986/724050-13743.op0000644000175000017500000014327214302004506016700 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19860101 38.7 24 24.1 24 1016.8 24 1014.4 24 13.8 24 10.0 24 19.0 999.9 44.1 28.9 0.02G 999.9 010000 724050 13743 19860102 35.6 24 23.8 24 1024.6 24 1022.2 24 9.7 24 7.2 24 15.0 999.9 51.1* 27.0 0.00G 999.9 100000 724050 13743 19860103 44.4 23 29.3 23 1014.0 23 1011.6 23 11.0 23 7.8 23 18.1 24.1 57.9* 27.0 0.02G 999.9 010000 724050 13743 19860104 41.5 23 27.0 23 1019.9 23 1017.5 23 12.8 23 7.9 23 17.1 24.1 46.0* 34.0 0.00D 999.9 000000 724050 13743 19860105 38.0 23 27.1 23 1010.3 23 1007.9 23 9.7 23 9.0 23 25.1 41.0 45.0 32.0 0.00G 999.9 000000 724050 13743 19860106 35.3 24 13.7 24 1013.9 24 1011.5 24 16.9 24 9.8 24 15.9 22.9 48.0* 25.0 0.00G 999.9 000000 724050 13743 19860107 29.1 24 9.7 24 1025.3 24 1022.9 24 16.1 24 12.2 24 19.0 27.0 48.0 25.0 0.00G 999.9 000000 724050 13743 19860108 23.2 23 4.8 23 1037.2 23 1034.8 23 15.9 23 12.5 23 18.1 27.0 30.9 18.0 0.00G 999.9 000000 724050 13743 19860109 27.7 23 9.7 23 1033.0 23 1030.6 23 12.5 23 6.7 23 11.1 999.9 41.0* 18.0 0.00G 999.9 000000 724050 13743 19860110 37.3 23 14.6 23 1018.9 23 1016.5 23 11.5 23 7.4 23 13.0 20.0 52.0* 18.0 0.00G 999.9 000000 724050 13743 19860111 36.1 22 20.3 22 1021.0 22 1018.6 22 15.2 22 8.0 22 14.0 999.9 54.0 27.0 0.00G 999.9 000000 724050 13743 19860112 40.2 23 23.1 23 1013.7 23 1011.3 23 11.3 23 10.9 23 18.1 20.0 59.0* 28.0 0.00G 999.9 000000 724050 13743 19860113 41.3 24 21.5 24 1007.5 24 1005.1 24 14.3 24 13.2 24 25.1 31.1 60.1 28.2* 0.00G 999.9 001000 724050 13743 19860114 23.4 22 10.1 22 1015.7 22 1013.3 22 11.2 22 9.4 22 26.0 36.9 28.0* 19.9 0.02G 999.9 101000 724050 13743 19860115 23.3 23 7.0 23 1027.1 23 1024.7 23 13.3 23 8.4 23 14.0 999.9 28.2* 17.1 0.02G 0.4 001000 724050 13743 19860116 27.9 23 14.6 23 1031.7 23 1029.3 23 10.3 23 6.3 23 12.0 999.9 45.0* 17.1 0.00G 999.9 000000 724050 13743 19860117 34.7 23 27.4 22 1028.9 23 1026.5 23 6.1 23 5.5 23 8.9 999.9 46.0 19.9 0.00G 999.9 100000 724050 13743 19860118 50.9 23 44.6 23 1022.8 23 1020.4 23 7.8 23 7.3 23 11.1 999.9 64.9* 43.0* 0.00G 999.9 010000 724050 13743 19860119 52.9 24 51.4 24 1009.2 24 1006.8 24 6.2 24 5.4 23 8.0 999.9 66.0 50.0* 0.40G 999.9 110000 724050 13743 19860120 43.8 23 38.9 23 996.6 23 994.2 23 11.4 23 10.5 23 20.0 32.1 59.0 37.0* 0.40G 999.9 111000 724050 13743 19860121 42.9 23 28.8 23 1014.3 23 1011.9 23 12.8 23 10.9 23 17.1 28.0 51.1* 37.0 0.03G 999.9 000000 724050 13743 19860122 45.4 24 33.4 24 1017.3 24 1014.9 24 11.6 24 7.5 24 18.1 26.0 64.9* 34.0 0.00G 999.9 000000 724050 13743 19860123 39.9 24 23.5 24 1026.9 24 1024.5 24 14.8 24 12.4 24 25.1 33.0 48.9* 34.0 0.00G 999.9 000000 724050 13743 19860124 33.0 24 15.2 24 1033.1 24 1030.7 24 14.9 24 9.9 24 15.0 999.9 43.0 27.0 0.00G 999.9 000000 724050 13743 19860125 31.8 24 25.5 24 1029.7 24 1027.3 24 7.7 24 6.8 24 9.9 999.9 37.9 28.0 0.30G 0.4 111000 724050 13743 19860126 35.9 24 34.2 24 1010.7 24 1008.3 24 3.4 24 6.5 24 11.1 999.9 37.9 28.9 0.96G 999.9 110000 724050 13743 19860127 30.3 23 24.9 23 997.9 23 995.5 23 5.3 23 12.1 23 20.0 29.9 37.9 23.2* 0.21G 0.4 111000 724050 13743 19860128 17.2 23 -0.8 23 1009.0 23 1006.6 23 13.0 23 14.5 23 26.0 32.1 35.1 12.0 0.02G 0.4 001000 724050 13743 19860129 20.3 23 7.6 23 1016.0 23 1013.6 23 10.2 23 6.7 23 11.1 999.9 26.2* 12.0 0.02G 0.8 101000 724050 13743 19860130 25.5 23 16.1 23 1021.5 23 1019.0 23 10.6 23 11.2 23 20.0 27.0 31.1* 14.0 0.08G 0.8 101000 724050 13743 19860131 30.3 23 16.0 23 1029.3 23 1026.9 23 10.1 23 5.9 23 8.0 999.9 41.0* 19.9 0.00G 0.4 000000 724050 13743 19860201 34.3 24 24.5 24 1032.2 24 1029.8 24 7.9 24 6.5 24 11.1 999.9 44.1* 23.0 0.00G 999.9 000000 724050 13743 19860202 47.9 24 37.2 24 1021.6 24 1019.2 24 9.8 24 9.4 24 14.0 21.0 66.9* 27.0 0.01G 999.9 010000 724050 13743 19860203 42.8 24 33.5 24 1022.9 24 1020.5 24 8.5 24 7.1 24 11.1 999.9 68.0 35.1 0.00D 999.9 000000 724050 13743 19860204 37.8 23 35.4 23 1021.0 23 1018.8 22 4.6 23 6.6 23 11.1 999.9 46.0 35.1 0.48G 999.9 110000 724050 13743 19860205 43.3 24 42.8 24 1009.4 24 1007.0 24 1.6 24 5.2 24 8.0 999.9 53.1* 36.0 0.08G 999.9 110000 724050 13743 19860206 44.3 23 40.4 23 1015.4 23 1013.0 23 5.0 23 9.0 23 15.9 999.9 53.1 37.0 0.01G 999.9 100000 724050 13743 19860207 29.3 23 25.8 23 1015.8 23 1013.4 23 5.1 23 10.3 23 20.0 26.0 46.9 25.0 0.35G 0.4 111000 724050 13743 19860208 30.6 24 29.0 24 1019.1 24 1016.7 24 2.8 24 4.1 24 6.0 999.9 35.1* 25.0 0.09G 999.9 101000 724050 13743 19860209 34.6 24 32.0 24 1021.1 24 1018.6 24 2.5 24 4.5 24 8.0 999.9 37.0* 28.9 0.00G 999.9 100000 724050 13743 19860210 35.6 23 32.2 23 1020.2 23 1017.8 23 2.5 23 5.8 23 8.9 999.9 37.0 33.1 0.04G 999.9 111000 724050 13743 19860211 31.1 24 27.9 24 1013.2 24 1010.8 24 3.8 24 10.7 24 20.0 999.9 37.0 27.0 0.41G 2.4 111000 724050 13743 19860212 26.2 24 13.5 24 1019.4 24 1017.0 24 12.5 24 12.2 24 18.1 22.0 33.1 21.9 0.11G 2.4 000000 724050 13743 19860213 22.1 23 4.9 23 1024.6 23 1022.2 23 13.9 23 11.3 23 15.0 21.0 28.9 17.1 0.00G 2.0 000000 724050 13743 19860214 24.6 24 12.2 24 1023.4 24 1021.0 24 10.0 24 9.0 24 15.9 22.9 31.1* 17.1 0.00G 2.0 101000 724050 13743 19860215 30.1 23 22.6 23 1014.1 23 1011.7 23 6.1 23 9.3 23 17.1 27.0 37.0* 18.0 0.15G 2.8 101000 724050 13743 19860216 33.0 24 17.9 24 1022.3 24 1019.9 24 11.3 24 8.4 24 14.0 20.0 39.9* 24.1 0.00G 2.0 001000 724050 13743 19860217 37.9 24 29.4 24 1016.9 24 1014.5 24 7.5 24 5.9 24 13.0 999.9 51.1 27.0 0.00G 0.4 110000 724050 13743 19860218 40.6 22 37.2 22 1010.7 22 1008.3 22 2.3 22 4.8 22 11.1 999.9 51.1 32.0 0.53G 999.9 110000 724050 13743 19860219 40.9 22 40.3 22 1008.5 22 1006.1 22 1.4 22 4.8 22 25.1 999.9 44.1 37.9 0.02G 999.9 110000 724050 13743 19860220 41.7 24 40.3 24 1013.5 24 1011.1 24 2.1 24 7.5 24 9.9 999.9 45.0 37.9 0.16G 999.9 110000 724050 13743 19860221 44.1 22 42.7 22 1012.9 22 1010.5 22 3.4 22 7.1 22 15.9 24.1 54.0* 39.9 0.02G 999.9 110000 724050 13743 19860222 36.8 22 29.1 22 1018.1 22 1015.7 22 11.4 22 9.0 22 15.9 26.0 55.9 32.0 0.01G 999.9 101000 724050 13743 19860223 36.3 21 29.2 21 1015.7 21 1013.3 21 6.1 21 7.6 21 14.0 999.9 43.0* 32.0 0.43G 2.0 101000 724050 13743 19860224 33.0 24 24.8 24 1017.1 24 1014.7 24 7.8 24 5.5 24 13.0 999.9 43.0 28.0 0.00G 999.9 111000 724050 13743 19860225 30.5 23 22.2 23 1012.9 23 1010.5 23 8.3 23 11.8 23 22.0 31.1 37.9 26.1 0.44G 2.8 101000 724050 13743 19860226 30.5 23 12.6 23 1010.0 23 1007.6 23 14.3 23 9.0 23 14.0 999.9 37.9* 23.0 0.00G 2.4 000000 724050 13743 19860227 32.8 24 29.6 24 1000.9 24 998.6 24 3.9 24 7.9 24 13.0 999.9 37.9 23.0 0.16G 1.2 101000 724050 13743 19860228 30.1 20 16.0 20 1011.8 20 1009.4 20 14.9 19 8.8 20 12.0 999.9 34.0 24.1 0.01G 0.4 000000 724050 13743 19860301 30.0 24 13.5 24 1016.7 24 1014.4 24 17.1 24 8.7 24 17.1 20.0 37.0* 23.0 0.00G 0.4 000000 724050 13743 19860302 33.2 24 14.9 24 1014.6 24 1012.2 24 14.0 24 10.6 24 14.0 18.1 39.9* 23.0 0.00G 999.9 000000 724050 13743 19860303 37.1 23 25.1 23 1014.9 23 1012.5 23 11.8 23 5.0 23 7.0 999.9 45.0 27.0 0.00G 999.9 010000 724050 13743 19860304 40.6 24 32.2 24 1014.6 24 1012.2 24 7.7 24 4.9 24 8.9 999.9 46.0* 33.1 0.01G 999.9 110000 724050 13743 19860305 39.6 24 28.5 24 1014.0 24 1011.6 24 10.3 24 9.9 24 15.9 22.0 46.0 30.0 0.00G 999.9 100000 724050 13743 19860306 40.5 23 28.3 23 1006.6 23 1004.2 23 10.2 23 9.1 23 19.0 28.0 50.0* 30.0 0.00G 999.9 000000 724050 13743 19860307 35.0 24 14.3 24 1007.9 24 1005.5 24 16.3 24 18.1 24 27.0 40.0 51.1 26.2* 0.00G 999.9 001000 724050 13743 19860308 21.6 24 -2.4 24 1028.0 24 1025.6 24 17.5 24 14.6 24 28.0 35.9 39.0 14.0 0.00G 999.9 000000 724050 13743 19860309 41.6 24 13.1 24 1023.8 24 1021.3 24 14.9 24 13.3 24 18.1 21.0 66.9* 14.0 0.00G 999.9 000000 724050 13743 19860310 59.3 23 39.4 23 1016.4 23 1014.0 23 14.5 23 15.0 23 24.1 32.1 73.9* 48.0* 0.00G 999.9 000000 724050 13743 19860311 62.3 22 45.5 22 1008.5 22 1006.1 22 14.4 22 17.6 22 24.1 35.0 73.9 48.0 0.00G 999.9 010000 724050 13743 19860312 44.0 23 30.6 23 1023.4 23 1021.0 23 11.5 23 10.4 23 16.9 24.1 50.0* 36.0 0.00G 999.9 000000 724050 13743 19860313 43.7 24 40.7 24 1022.0 24 1019.5 24 3.5 24 7.4 24 12.0 999.9 48.9* 36.0 0.09G 999.9 110000 724050 13743 19860314 49.5 23 47.5 23 1012.2 23 1009.8 23 2.7 23 5.4 23 8.9 999.9 54.0* 39.9 0.22G 999.9 110010 724050 13743 19860315 58.0 24 48.9 23 1005.2 24 1002.8 24 12.5 24 9.8 24 18.1 27.0 69.1 48.9* 0.27G 999.9 110000 724050 13743 19860316 54.9 24 45.2 24 1013.4 24 1011.0 24 9.2 24 8.5 24 15.9 999.9 69.1 48.9 0.14G 999.9 110000 724050 13743 19860317 47.7 24 32.6 24 1021.3 24 1018.9 24 10.9 24 9.0 24 15.0 999.9 61.0 39.9 0.00G 999.9 000000 724050 13743 19860318 46.2 24 33.7 24 1024.8 24 1022.3 24 8.9 24 6.0 24 13.0 999.9 57.0* 35.1 0.00G 999.9 100000 724050 13743 19860319 60.6 22 51.1 22 1008.6 22 1006.3 22 10.5 22 18.1 22 25.1 35.9 73.9* 51.1* 0.00G 999.9 010000 724050 13743 19860320 53.9 24 36.2 24 1012.0 24 1009.7 24 15.3 24 14.9 24 19.0 28.0 73.9 44.1* 0.00G 999.9 000000 724050 13743 19860321 28.8 22 5.5 22 1029.5 22 1027.1 22 16.7 22 14.0 22 22.9 27.0 37.0* 19.9 0.00G 999.9 000000 724050 13743 19860322 33.6 23 8.5 23 1033.2 23 1030.8 23 16.2 23 7.5 23 14.0 999.9 46.0* 19.9 0.00G 999.9 000000 724050 13743 19860323 42.0 23 19.4 23 1029.7 23 1027.3 23 15.0 23 7.4 23 12.0 999.9 59.0* 25.0 0.00G 999.9 000000 724050 13743 19860324 50.1 23 27.9 23 1028.8 23 1026.3 23 15.0 23 9.3 23 19.0 26.0 60.1 30.0 0.00G 999.9 000000 724050 13743 19860325 51.2 24 29.9 24 1037.5 24 1035.1 24 14.9 24 7.9 24 13.0 999.9 66.0* 37.0 0.00G 999.9 000000 724050 13743 19860326 60.0 23 44.8 23 1030.3 23 1027.9 23 14.8 23 13.3 23 19.0 26.0 73.9* 37.0 0.00G 999.9 000000 724050 13743 19860327 60.3 24 41.9 24 1020.0 24 1017.6 24 13.7 24 12.0 24 18.1 27.0 75.0 48.0 0.00G 999.9 010000 724050 13743 19860328 49.8 24 28.8 24 1026.0 24 1023.6 24 16.1 24 9.2 24 18.1 20.0 68.0 37.0 0.00G 999.9 000000 724050 13743 19860329 57.1 24 38.5 24 1024.5 24 1022.0 24 14.8 24 8.1 24 11.1 999.9 75.0* 37.0 0.00D 999.9 000000 724050 13743 19860330 63.9 23 41.3 22 1019.8 23 1017.4 23 14.0 23 8.1 23 12.0 999.9 84.0* 43.0 0.00G 999.9 000010 724050 13743 19860331 66.4 23 47.0 22 1018.6 23 1016.2 23 12.5 23 6.2 23 9.9 999.9 84.0 50.0 0.00G 999.9 000000 724050 13743 19860401 64.7 24 43.1 24 1021.6 24 1019.2 24 13.0 24 5.7 24 12.0 999.9 82.9 51.1 0.00G 999.9 000000 724050 13743 19860402 65.4 23 45.2 23 1015.0 23 1012.6 23 12.8 23 8.3 23 14.0 999.9 80.1 51.1 0.00G 999.9 000000 724050 13743 19860403 58.8 23 36.4 23 1022.5 23 1020.1 23 16.6 23 9.4 23 13.0 999.9 75.0 48.9 0.00G 999.9 000000 724050 13743 19860404 57.6 22 48.1 22 1024.8 22 1022.4 22 11.7 21 7.9 22 14.0 999.9 71.1* 48.0 0.00G 999.9 010000 724050 13743 19860405 56.1 22 51.2 22 1024.4 22 1022.0 22 6.9 22 9.5 22 17.1 999.9 71.1 48.0 0.02G 999.9 110000 724050 13743 19860406 49.9 24 47.5 24 1023.8 24 1021.4 24 4.9 24 7.3 23 14.0 999.9 57.0 48.0 0.24G 999.9 110000 724050 13743 19860407 58.5 22 51.6 21 1013.3 22 1010.9 22 6.0 21 7.0 22 12.0 17.1 73.0* 48.0 0.24G 999.9 110000 724050 13743 19860408 63.1 24 48.7 24 1004.8 24 1002.4 24 9.6 24 9.6 24 22.0 28.9 73.9 50.0 0.00G 999.9 100000 724050 13743 19860409 52.6 23 29.1 23 1002.3 23 999.9 23 16.8 23 13.0 23 21.0 29.9 73.9 46.9 0.00G 999.9 000000 724050 13743 19860410 45.0 23 26.6 23 1003.9 23 1001.6 23 16.6 23 13.2 23 18.1 26.0 55.0 39.9 0.00D 999.9 000000 724050 13743 19860411 44.4 23 32.2 23 1003.5 23 1001.1 23 12.3 23 8.8 23 15.9 22.9 51.1* 39.0 0.07G 999.9 010000 724050 13743 19860412 50.9 24 34.4 24 1007.8 24 1005.4 24 12.6 24 7.7 24 15.0 999.9 63.0* 39.0 0.02G 999.9 000000 724050 13743 19860413 50.1 21 36.1 21 1014.9 21 1012.5 21 12.8 21 7.0 21 9.9 999.9 64.0 39.9 0.00G 999.9 010000 724050 13743 19860414 52.6 23 39.2 23 1019.1 23 1016.7 23 10.2 23 7.0 23 12.0 999.9 64.9* 42.1 0.00G 999.9 100000 724050 13743 19860415 53.2 24 44.9 24 1015.3 24 1012.9 24 9.6 24 7.9 24 12.0 999.9 66.0 43.0 0.00G 999.9 110010 724050 13743 19860416 49.9 23 44.9 23 1006.3 23 1003.9 23 10.6 23 13.4 23 17.1 26.0 57.0 46.9 0.84G 999.9 110010 724050 13743 19860417 45.8 22 41.4 22 1007.2 22 1004.9 22 7.1 22 12.4 22 17.1 24.1 52.0 42.1 0.08G 999.9 110000 724050 13743 19860418 53.6 23 44.2 23 1017.8 23 1015.4 23 14.0 23 11.7 23 15.9 22.0 64.9* 42.1 0.18G 999.9 010000 724050 13743 19860419 56.3 24 40.3 24 1023.8 24 1021.3 24 14.4 24 4.7 24 11.1 999.9 70.0* 41.0 0.00G 999.9 000000 724050 13743 19860420 59.4 22 43.2 22 1014.8 22 1012.5 22 13.0 22 8.5 22 13.0 999.9 73.0* 41.0 0.00G 999.9 010000 724050 13743 19860421 62.0 23 51.0 23 1002.4 23 1000.0 23 11.5 23 11.4 23 17.1 22.9 73.9 48.0 0.21G 999.9 010010 724050 13743 19860422 50.5 24 43.7 23 1007.0 24 1004.6 24 9.1 24 7.7 24 15.9 22.9 68.0 44.1* 0.03G 999.9 110000 724050 13743 19860423 42.9 23 27.1 23 1015.7 23 1013.3 23 13.0 23 16.4 23 24.1 33.0 51.1 35.1 0.07G 999.9 010000 724050 13743 19860424 54.1 23 24.6 23 1020.1 23 1017.7 23 15.8 23 12.2 23 18.1 24.1 69.1* 35.1 0.00G 999.9 000000 724050 13743 19860425 61.3 23 32.7 23 1016.0 23 1013.6 23 14.9 23 9.5 23 15.0 999.9 72.0 42.1 0.00G 999.9 010000 724050 13743 19860426 61.2 23 48.4 23 1015.1 23 1012.7 23 11.3 23 6.4 23 15.9 999.9 78.1 45.0 0.02G 999.9 110000 724050 13743 19860427 66.1 23 53.0 23 1016.5 23 1014.1 23 12.5 23 6.0 23 12.0 999.9 81.0* 53.1* 0.00G 999.9 000000 724050 13743 19860428 66.0 23 52.6 21 1016.8 23 1014.4 23 10.7 23 7.6 23 14.0 999.9 81.0 53.1 0.00G 999.9 100000 724050 13743 19860429 68.0 24 50.6 24 1013.7 24 1011.3 24 13.6 23 8.4 24 15.0 24.1 79.0 53.1 0.00G 999.9 010000 724050 13743 19860430 67.5 24 37.2 24 1017.9 24 1015.5 24 15.6 24 8.9 24 14.0 19.0 78.1 53.1 0.00G 999.9 000000 724050 13743 19860501 72.0 24 50.4 24 1011.4 24 1009.0 24 14.0 22 7.1 24 13.0 999.9 87.1* 53.1 0.00G 999.9 000000 724050 13743 19860502 64.3 22 36.5 22 1012.3 22 1009.9 22 15.8 22 15.5 22 25.1 32.1 87.1 57.0* 0.00G 999.9 000000 724050 13743 19860503 51.1 24 20.9 24 1020.9 24 1018.5 24 14.4 24 13.4 24 22.0 28.9 68.0 42.1 0.00G 999.9 000000 724050 13743 19860504 54.1 24 24.1 24 1023.5 24 1021.1 24 14.9 24 8.5 24 13.0 20.0 69.1* 39.0 0.00G 999.9 000000 724050 13743 19860505 65.1 23 36.9 23 1016.8 23 1014.4 23 14.9 23 10.4 23 15.0 21.0 84.9* 39.0 0.00G 999.9 000000 724050 13743 19860506 73.5 24 53.4 24 1014.0 24 1011.6 24 11.5 24 8.9 24 13.0 999.9 89.1* 48.9 0.00G 999.9 000000 724050 13743 19860507 78.1 24 59.3 24 1011.3 24 1008.9 24 11.6 24 8.7 24 17.1 25.1 90.0* 57.9 0.00G 999.9 010010 724050 13743 19860508 73.5 24 48.0 24 1011.2 24 1008.9 24 14.7 24 10.7 24 15.0 29.9 91.0 63.0 0.00G 999.9 101000 724050 13743 19860509 59.7 24 43.7 24 1020.1 24 1017.7 24 12.2 24 9.8 24 18.1 26.0 78.1 53.1 0.00G 999.9 000000 724050 13743 19860510 58.3 24 37.5 24 1023.4 24 1021.0 24 12.6 24 5.3 24 9.9 999.9 71.1* 46.0 0.00G 999.9 000000 724050 13743 19860511 64.0 24 39.9 24 1015.6 24 1013.2 24 13.1 24 7.6 24 17.1 18.1 80.1* 46.0 0.00G 999.9 000000 724050 13743 19860512 61.0 24 37.8 24 1016.8 24 1014.4 24 13.7 24 7.3 24 16.9 999.9 80.1 50.0 0.00G 999.9 000000 724050 13743 19860513 60.5 23 44.7 23 1018.5 23 1016.1 23 13.6 23 7.9 21 14.0 999.9 72.0 51.1 0.00G 999.9 000000 724050 13743 19860514 55.8 22 50.2 22 1022.6 22 1020.2 22 9.6 22 7.2 22 9.9 999.9 72.0 51.1 0.18G 999.9 110000 724050 13743 19860515 60.8 23 56.6 23 1024.3 23 1021.9 23 6.7 23 6.2 23 8.0 999.9 69.1* 51.1 0.10G 999.9 110000 724050 13743 19860516 69.6 23 62.8 23 1020.9 23 1018.4 23 5.9 22 8.5 23 11.1 999.9 84.0* 55.9 0.00G 999.9 100000 724050 13743 19860517 76.1 24 64.7 24 1015.4 24 1013.0 24 6.3 24 7.3 24 12.0 999.9 88.0* 62.1 0.00D 999.9 100000 724050 13743 19860518 78.1 24 65.7 24 1013.4 24 1011.0 24 7.3 24 9.0 24 18.1 20.0 90.0 64.0 0.00G 999.9 100010 724050 13743 19860519 77.4 24 64.2 24 1013.6 24 1011.2 24 11.4 24 12.1 24 16.9 21.0 91.0 66.9 0.00G 999.9 000000 724050 13743 19860520 71.3 24 66.0 24 1012.5 24 1010.1 24 9.7 24 12.0 24 17.1 20.0 86.0 66.9 0.11G 999.9 110010 724050 13743 19860521 66.9 24 60.3 24 1012.2 24 1009.6 24 7.5 24 6.1 24 9.9 999.9 81.0 60.1 0.40G 999.9 110000 724050 13743 19860522 65.6 23 54.9 23 1011.1 23 1008.8 22 7.1 23 9.7 23 12.0 999.9 77.0 57.0 0.06G 999.9 110010 724050 13743 19860523 66.1 23 46.2 23 1013.7 23 1011.3 23 11.5 22 9.7 23 12.0 18.1 75.0 57.0 0.00G 999.9 000000 724050 13743 19860524 65.8 19 51.4 19 1016.3 19 1014.0 19 10.0 19 8.2 19 13.0 18.1 75.9* 57.9 0.00G 999.9 010000 724050 13743 19860525 68.3 22 51.8 22 1017.9 22 1015.5 22 9.5 21 6.8 22 8.9 999.9 78.1 57.9 0.00G 999.9 000000 724050 13743 19860526 70.2 23 57.1 23 1019.0 23 1016.6 23 8.8 23 6.8 23 13.0 17.1 80.1 57.9 0.00G 999.9 100000 724050 13743 19860527 65.1 21 57.4 21 1020.9 21 1018.5 21 6.4 21 7.8 21 12.0 999.9 80.1 59.0 0.00C 999.9 110000 724050 13743 19860528 70.8 23 60.8 23 1016.4 23 1014.0 23 6.5 23 8.6 23 13.0 18.1 84.0 59.0 0.00G 999.9 110000 724050 13743 19860529 79.0 23 58.2 23 1014.7 23 1012.3 23 9.6 23 6.5 23 9.9 999.9 90.0 62.1 0.00G 999.9 000000 724050 13743 19860530 80.3 23 60.9 23 1011.4 23 1009.0 23 9.0 22 6.6 23 12.0 999.9 91.9* 64.0 0.00G 999.9 000000 724050 13743 19860531 80.7 24 61.0 24 1008.7 24 1006.4 24 6.6 24 8.3 24 13.0 19.0 91.9 68.0 0.00G 999.9 010000 724050 13743 19860601 81.0 21 63.5 21 1008.6 21 1006.3 21 7.1 21 6.8 21 12.0 15.9 91.9 68.0 0.00G 999.9 000000 724050 13743 19860602 76.2 24 60.2 24 1009.5 24 1007.1 24 8.0 23 10.8 24 21.0 28.0 91.9 69.1 0.00G 999.9 000000 724050 13743 19860603 62.1 24 36.8 24 1024.3 24 1021.8 24 18.6 24 10.4 24 16.9 20.0 84.0 50.0 0.00G 999.9 000000 724050 13743 19860604 68.3 23 54.8 23 1022.5 23 1020.1 23 11.4 23 11.3 23 15.9 20.0 82.9* 50.0 0.00D 999.9 000000 724050 13743 19860605 76.1 24 63.8 24 1017.3 24 1014.7 24 8.0 24 11.9 24 15.0 18.1 87.1* 55.9 0.00G 999.9 000000 724050 13743 19860606 79.2 22 66.5 22 1014.4 22 1012.0 22 10.0 22 10.3 22 14.0 999.9 90.0* 66.0 0.00G 999.9 000000 724050 13743 19860607 78.5 24 69.5 24 1011.7 24 1009.4 24 11.2 24 5.9 24 11.1 999.9 91.9 71.1 0.00G 999.9 010000 724050 13743 19860608 80.4 23 70.5 23 1007.4 23 1005.0 23 8.3 23 7.7 23 21.0 29.9 93.0 72.0 0.00G 999.9 110000 724050 13743 19860609 77.8 22 53.9 22 1015.4 22 1013.0 22 16.1 22 9.9 22 14.0 17.1 93.0 66.0 0.06G 999.9 000000 724050 13743 19860610 74.5 22 50.8 21 1021.4 22 1019.0 22 14.4 22 8.2 22 13.0 15.0 86.0 61.0 0.00G 999.9 000000 724050 13743 19860611 79.6 24 64.1 24 1013.3 24 1011.0 24 10.3 24 12.0 24 15.9 17.1 91.0 61.0 0.00G 999.9 000000 724050 13743 19860612 80.8 22 73.2 22 1008.2 22 1005.8 22 7.6 22 9.4 22 15.0 21.0 93.9* 72.0 0.00G 999.9 110010 724050 13743 19860613 75.4 23 65.0 23 1013.3 23 1010.9 23 5.8 23 9.9 23 15.0 19.0 95.0 66.0 0.40G 999.9 110010 724050 13743 19860614 76.6 24 59.0 23 1019.6 24 1017.2 24 7.0 24 7.9 24 14.0 999.9 87.1 64.9 0.00G 999.9 000000 724050 13743 19860615 79.8 24 66.5 23 1018.5 24 1016.0 24 5.8 24 10.3 24 13.0 999.9 90.0* 64.9 0.00G 999.9 100000 724050 13743 19860616 80.1 23 69.9 23 1015.3 23 1012.9 23 7.8 23 12.4 23 15.0 20.0 91.0 70.0 0.00G 999.9 100000 724050 13743 19860617 76.8 24 58.6 24 1013.8 24 1011.4 24 11.9 24 13.1 24 18.1 24.1 91.9 66.9 0.09G 999.9 110000 724050 13743 19860618 68.3 23 42.1 23 1019.2 23 1016.8 23 17.6 23 9.6 23 13.0 19.0 80.1 57.9 0.04G 999.9 000000 724050 13743 19860619 73.6 22 46.9 22 1018.3 22 1015.9 22 16.7 22 7.7 22 15.0 20.0 86.0* 57.9 0.00G 999.9 000000 724050 13743 19860620 75.5 24 61.7 24 1013.7 24 1011.3 24 9.0 24 8.1 24 15.0 20.0 86.0 60.1 0.05G 999.9 010010 724050 13743 19860621 72.9 23 54.2 23 1020.7 23 1018.3 23 13.8 23 7.7 23 11.1 17.1 84.0 62.1 0.24G 999.9 000000 724050 13743 19860622 74.5 23 57.6 23 1019.7 23 1017.4 23 13.2 23 7.9 23 11.1 999.9 88.0* 62.1 0.00G 999.9 000000 724050 13743 19860623 80.0 23 64.0 23 1012.6 23 1010.2 23 8.3 23 8.6 23 13.0 18.1 93.0* 62.1 0.00G 999.9 010000 724050 13743 19860624 79.3 23 62.4 23 1011.1 23 1008.7 23 8.4 23 8.4 23 20.0 33.0 93.9 68.0 0.33G 999.9 110010 724050 13743 19860625 70.5 23 46.2 23 1018.3 23 1015.9 23 15.8 23 10.8 23 15.9 20.0 90.0 61.0 0.07G 999.9 000000 724050 13743 19860626 71.5 24 49.8 24 1022.5 24 1020.1 24 13.8 24 7.0 24 13.0 999.9 82.9* 59.0 0.00G 999.9 000000 724050 13743 19860627 79.3 23 62.7 23 1018.7 23 1016.3 23 8.0 23 9.3 23 14.0 22.9 93.9* 59.0 0.00G 999.9 000000 724050 13743 19860628 80.2 24 69.6 24 1012.9 24 1010.5 24 10.1 24 7.4 24 17.1 28.9 96.8* 70.0 0.08G 999.9 110010 724050 13743 19860629 82.0 23 68.6 23 1010.1 23 1007.8 23 9.2 23 9.4 23 14.0 18.1 93.0* 72.0 0.01G 999.9 010010 724050 13743 19860630 80.0 22 56.8 22 1011.7 22 1009.3 22 13.3 22 8.1 22 17.1 999.9 93.9 72.0 0.00D 999.9 000000 724050 13743 19860701 70.4 24 55.2 24 1017.3 24 1014.9 24 12.9 24 8.4 24 14.0 999.9 88.0 68.0 0.00G 999.9 010000 724050 13743 19860702 73.5 24 67.9 24 1008.1 24 1005.7 24 6.8 24 7.4 24 26.0 34.0 86.0* 66.9 0.25G 999.9 110010 724050 13743 19860703 73.9 24 58.6 24 1010.6 24 1008.2 24 12.1 24 12.1 24 19.0 24.1 87.1 66.0 0.73G 999.9 110010 724050 13743 19860704 72.3 23 50.9 23 1020.3 23 1017.9 23 14.8 23 7.7 23 14.0 999.9 82.9* 59.0 0.00G 999.9 000000 724050 13743 19860705 78.9 24 64.7 24 1021.1 24 1018.7 24 9.0 24 9.4 24 14.0 999.9 93.0* 59.0 0.00G 999.9 000000 724050 13743 19860706 83.5 23 67.7 23 1022.2 23 1019.6 23 6.6 23 6.9 23 12.0 999.9 96.1* 69.1 0.00G 999.9 000000 724050 13743 19860707 87.9 22 67.8 22 1020.8 22 1018.4 22 5.3 22 8.0 22 15.9 999.9 97.0 73.0 0.00G 999.9 000000 724050 13743 19860708 89.7 23 66.9 23 1018.0 23 1015.6 23 5.8 23 8.9 23 15.0 29.9 98.1 75.9 0.00G 999.9 010010 724050 13743 19860709 79.9 22 72.1 22 1011.5 22 1009.1 22 5.8 22 6.4 22 12.0 999.9 97.0 73.9 0.36G 999.9 110010 724050 13743 19860710 78.1 23 62.1 23 1013.4 23 1011.0 23 12.0 23 9.5 23 12.0 15.9 86.0 71.1 0.05G 999.9 000000 724050 13743 19860711 79.2 23 60.3 23 1013.8 23 1011.4 23 11.9 23 6.1 23 11.1 999.9 88.0* 71.1 0.00G 999.9 000000 724050 13743 19860712 78.3 18 69.4 18 1011.9 18 1009.5 18 8.1 18 6.6 18 9.9 999.9 93.9* 71.1 0.00G 999.9 110000 724050 13743 19860713 84.1 24 69.9 23 1012.6 24 1010.2 24 10.7 24 7.7 24 22.9 35.9 96.1 71.1 0.02G 999.9 010000 724050 13743 19860714 82.5 24 66.5 24 1015.1 24 1012.7 24 10.7 24 9.8 24 18.1 33.0 96.1 71.1 0.34G 999.9 010000 724050 13743 19860715 79.3 24 59.2 24 1018.9 24 1016.5 24 14.2 24 9.0 24 14.0 17.1 93.9 71.1* 0.10G 999.9 000000 724050 13743 19860716 80.0 24 67.4 24 1019.2 24 1016.8 24 7.4 24 7.0 24 15.0 31.1 90.0* 70.0 0.00G 999.9 110010 724050 13743 19860717 77.2 24 71.2 24 1018.3 24 1015.9 24 3.5 24 6.7 24 12.0 999.9 91.0 71.1 0.80G 999.9 110010 724050 13743 19860718 84.7 24 71.9 24 1015.3 24 1012.9 24 7.2 24 8.2 24 14.0 20.0 97.0* 71.1 0.00G 999.9 000000 724050 13743 19860719 85.4 23 71.6 23 1012.6 23 1010.4 23 9.7 23 7.3 23 15.9 22.0 97.0 73.9 0.00G 999.9 010000 724050 13743 19860720 81.9 23 75.5 23 1011.3 23 1008.9 23 4.5 23 7.6 23 32.1 42.0 93.9 75.9 0.08G 999.9 110000 724050 13743 19860721 78.3 22 69.7 22 1013.2 22 1010.8 22 7.6 22 7.2 22 21.0 32.1 90.0 71.1 0.63G 999.9 110010 724050 13743 19860722 79.8 24 67.9 24 1019.6 24 1017.2 24 10.2 24 6.6 24 8.9 999.9 91.0 71.1 0.00G 999.9 000000 724050 13743 19860723 80.3 23 71.2 23 1022.1 23 1019.7 23 7.5 23 6.8 23 11.1 999.9 89.1 73.0 0.01G 999.9 110000 724050 13743 19860724 80.0 24 71.4 24 1022.2 24 1019.8 24 7.5 24 8.4 24 17.1 24.1 88.0 73.9 0.14G 999.9 110000 724050 13743 19860725 81.0 23 72.2 23 1019.3 23 1016.9 23 9.4 23 9.4 23 13.0 999.9 90.0* 73.9 0.00D 999.9 100000 724050 13743 19860726 82.0 21 75.4 21 1015.4 21 1013.0 21 7.9 21 10.6 21 14.0 999.9 91.0 73.9 0.00G 999.9 000000 724050 13743 19860727 81.4 24 72.1 24 1012.0 24 1009.6 24 5.8 24 6.9 24 9.9 999.9 91.0* 73.9 0.00G 999.9 100000 724050 13743 19860728 84.1 22 70.0 22 1010.6 22 1008.2 22 6.7 22 7.0 22 11.1 999.9 93.9* 73.9 0.00G 999.9 100000 724050 13743 19860729 85.9 23 67.0 23 1008.8 23 1006.4 23 7.3 23 7.4 23 17.1 21.0 93.9 75.0 0.00G 999.9 000010 724050 13743 19860730 77.1 23 62.8 23 1010.1 23 1007.8 23 10.2 23 11.5 23 15.9 28.0 93.9 71.1 0.38G 999.9 110010 724050 13743 19860731 78.9 24 62.3 24 1011.8 24 1009.4 24 11.4 24 8.3 24 12.0 15.9 88.0* 70.0 0.00G 999.9 000000 724050 13743 19860801 80.7 24 65.5 23 1013.0 24 1010.6 24 9.4 24 6.9 24 8.9 999.9 91.0* 70.0 0.00G 999.9 100000 724050 13743 19860802 81.2 23 70.3 23 1013.5 23 1011.1 23 5.7 23 8.7 23 14.0 19.0 93.9 71.1 0.00G 999.9 100010 724050 13743 19860803 74.7 24 70.0 24 1015.1 24 1012.7 24 4.1 24 5.7 24 25.1 34.0 95.0 69.1 1.57G 999.9 110010 724050 13743 19860804 78.0 24 64.7 24 1019.5 24 1017.2 24 8.1 24 6.5 24 11.1 999.9 86.0 69.1 0.00G 999.9 100000 724050 13743 19860805 78.8 24 65.8 24 1020.5 24 1018.1 24 6.6 24 6.5 24 19.0 999.9 88.0 70.0 0.00D 999.9 100000 724050 13743 19860806 79.6 23 70.4 23 1019.1 23 1016.7 23 6.5 22 10.0 23 14.0 999.9 88.0 70.0 0.00G 999.9 100010 724050 13743 19860807 74.8 21 69.5 21 1016.0 21 1013.6 21 8.1 21 7.7 21 24.1 999.9 89.1 68.0 1.32G 999.9 110010 724050 13743 19860808 77.9 22 71.7 22 1011.3 22 1009.0 22 7.0 22 7.7 22 11.1 999.9 87.1 69.1 0.01G 999.9 110000 724050 13743 19860809 79.1 24 67.5 24 1012.9 24 1010.6 24 7.9 24 7.7 23 13.0 999.9 88.0 70.0 0.00G 999.9 000000 724050 13743 19860810 80.5 24 71.0 24 1014.7 24 1012.3 24 7.0 24 6.5 24 14.0 999.9 89.1* 70.0 0.00G 999.9 100000 724050 13743 19860811 76.9 22 66.5 22 1014.3 22 1011.9 22 10.4 22 9.7 22 27.0 33.0 90.0 72.0 0.00G 999.9 010010 724050 13743 19860812 73.5 22 60.6 22 1021.0 22 1018.6 22 11.3 22 8.5 22 14.0 999.9 84.9 69.1 0.00G 999.9 000000 724050 13743 19860813 72.5 24 59.8 24 1022.8 24 1020.4 24 11.8 24 9.5 24 11.1 999.9 78.1 66.9 0.00D 999.9 000000 724050 13743 19860814 74.6 24 61.5 24 1020.8 24 1018.4 24 14.1 24 6.2 24 8.9 999.9 82.9 66.0 0.00G 999.9 000000 724050 13743 19860815 77.7 23 68.1 23 1017.5 23 1015.1 23 9.2 23 7.7 23 11.1 999.9 86.0 66.0 0.00G 999.9 100000 724050 13743 19860816 80.0 24 72.2 24 1013.8 24 1011.4 24 9.8 24 8.6 24 11.1 999.9 90.0* 70.0 0.00G 999.9 000000 724050 13743 19860817 77.8 22 72.8 22 1012.8 22 1010.4 22 7.4 22 6.6 22 15.0 24.1 90.0 73.0* 0.04G 999.9 110010 724050 13743 19860818 78.4 24 71.1 24 1011.1 24 1008.7 24 11.0 24 12.1 24 15.0 20.0 87.1 73.0 0.42G 999.9 000000 724050 13743 19860819 76.1 24 69.3 24 1016.1 24 1013.7 24 9.1 24 6.6 24 12.0 999.9 87.1 73.0 0.00G 999.9 010000 724050 13743 19860820 72.8 24 70.2 24 1020.0 24 1017.6 24 7.2 24 9.1 24 15.9 20.0 79.0 70.0* 0.04G 999.9 110000 724050 13743 19860821 69.0 24 67.8 24 1020.0 24 1017.6 24 5.1 24 11.9 24 15.0 999.9 75.9 68.0 1.10G 999.9 110000 724050 13743 19860822 71.6 23 64.3 23 1021.7 23 1019.3 23 9.9 23 7.5 23 12.0 999.9 82.0* 64.0 0.15G 999.9 100000 724050 13743 19860823 75.0 21 66.4 21 1018.7 21 1016.3 21 7.8 21 9.3 21 17.1 20.0 82.9 64.0 0.00G 999.9 100000 724050 13743 19860824 74.7 24 59.4 24 1013.2 24 1010.8 24 11.5 24 12.0 24 18.1 28.9 82.9 66.0 0.00G 999.9 100000 724050 13743 19860825 69.6 23 48.6 23 1019.7 23 1017.3 23 17.6 23 8.8 23 38.9 999.9 80.1 57.9 0.00G 999.9 000000 724050 13743 19860826 72.5 23 60.2 23 1019.9 23 1017.5 23 13.4 23 7.7 23 12.0 999.9 82.9 57.9 0.00G 999.9 000000 724050 13743 19860827 77.1 23 69.8 23 1012.2 23 1009.8 23 8.7 23 11.1 23 15.0 999.9 87.1 63.0 0.00G 999.9 110000 724050 13743 19860828 65.9 24 55.3 24 1014.5 24 1012.1 24 11.3 24 11.1 24 18.1 25.1 87.1 55.9 0.68G 999.9 110000 724050 13743 19860829 59.1 24 41.1 24 1025.6 24 1023.2 24 17.4 24 8.6 24 12.0 999.9 71.1 48.9 0.23G 999.9 000000 724050 13743 19860830 61.8 24 46.8 24 1029.3 24 1026.8 24 14.7 24 5.9 24 9.9 999.9 71.1 48.9 0.00G 999.9 000000 724050 13743 19860831 64.1 22 52.3 22 1028.1 22 1025.7 22 12.6 22 4.8 22 8.0 999.9 73.9 50.0 0.00G 999.9 000000 724050 13743 19860901 66.6 24 56.8 24 1025.2 24 1022.8 24 10.4 24 5.5 24 8.9 999.9 75.0 53.1 0.00G 999.9 010000 724050 13743 19860902 64.6 23 61.5 23 1023.6 23 1021.2 23 5.5 23 5.0 23 7.0 999.9 73.9 60.1 0.36G 999.9 110000 724050 13743 19860903 70.0 24 65.1 24 1022.9 24 1020.4 24 7.4 24 5.4 24 8.9 999.9 75.0 60.1 0.30G 999.9 110000 724050 13743 19860904 70.8 24 65.0 24 1020.9 24 1018.5 24 8.7 24 6.8 24 8.9 999.9 75.9 66.0 0.00G 999.9 100000 724050 13743 19860905 71.2 23 67.2 23 1015.2 23 1012.8 23 8.7 23 8.6 23 13.0 999.9 78.1 66.0 0.00G 999.9 110000 724050 13743 19860906 73.9 24 63.2 24 1013.4 24 1011.1 24 7.9 24 6.4 24 9.9 999.9 81.0 68.0 0.00G 999.9 110000 724050 13743 19860907 68.8 23 55.2 23 1016.5 23 1014.1 23 13.8 23 6.8 23 12.0 999.9 81.0 59.0 0.00G 999.9 000000 724050 13743 19860908 64.7 23 51.9 23 1021.4 23 1019.0 23 10.5 23 7.5 23 11.1 19.0 77.0 55.9 0.22G 999.9 110000 724050 13743 19860909 62.1 24 47.2 24 1025.9 24 1023.5 24 13.7 24 6.0 24 9.9 999.9 73.9* 50.0 0.04G 999.9 000000 724050 13743 19860910 65.1 24 57.9 24 1024.9 24 1022.5 24 9.0 24 10.0 24 14.0 18.1 73.9 50.0 0.00G 999.9 100000 724050 13743 19860911 72.8 23 66.7 23 1018.4 23 1016.0 23 6.4 23 12.7 23 18.1 24.1 82.9 57.9 0.00G 999.9 100000 724050 13743 19860912 77.7 24 66.7 24 1010.0 24 1007.7 24 11.0 24 13.2 24 15.9 22.9 86.0 68.0 0.00G 999.9 000000 724050 13743 19860913 69.9 23 50.3 23 1018.8 23 1016.4 23 14.9 23 10.4 23 14.0 17.1 87.1 59.0 0.00D 999.9 000000 724050 13743 19860914 68.6 24 52.9 24 1024.3 24 1021.8 24 14.4 24 5.9 24 8.9 999.9 78.1* 59.0 0.00D 999.9 000000 724050 13743 19860915 69.8 23 60.4 23 1023.7 23 1021.3 23 9.9 23 7.8 23 13.0 999.9 81.0* 59.0 0.00G 999.9 000000 724050 13743 19860916 68.3 24 50.7 24 1021.1 24 1018.7 24 14.4 24 12.6 24 21.0 27.0 81.0 63.0 0.00G 999.9 000000 724050 13743 19860917 58.4 24 39.4 24 1029.5 24 1027.1 24 19.3 24 8.4 24 15.9 21.0 72.0 46.9 0.00G 999.9 000000 724050 13743 19860918 60.4 24 49.9 24 1027.2 24 1024.8 24 11.7 24 9.3 24 15.0 18.1 72.0* 46.9 0.00G 999.9 000000 724050 13743 19860919 70.8 23 61.3 23 1021.5 23 1019.1 23 8.0 23 7.6 23 11.1 999.9 81.0 50.0 0.00G 999.9 100000 724050 13743 19860920 70.3 24 63.9 24 1022.3 24 1019.9 24 4.5 24 6.2 24 9.9 999.9 82.0 63.0 0.00G 999.9 100000 724050 13743 19860921 74.6 24 67.0 24 1020.9 24 1018.5 24 4.3 24 6.6 24 9.9 999.9 84.9 64.0 0.00G 999.9 100000 724050 13743 19860922 70.2 21 62.0 21 1022.9 21 1020.5 21 6.7 21 8.9 21 13.0 999.9 84.9 66.0 0.00G 999.9 100000 724050 13743 19860923 73.9 24 66.7 24 1014.5 24 1012.1 24 4.5 24 10.7 24 18.1 22.9 87.1* 66.0 0.00G 999.9 100000 724050 13743 19860924 77.5 24 70.4 24 1010.8 24 1008.4 24 7.0 24 7.3 24 11.1 999.9 88.0 66.0 0.00G 999.9 110000 724050 13743 19860925 77.8 24 69.7 24 1014.9 24 1012.5 24 8.3 24 6.1 24 8.9 999.9 86.0 72.0 0.00G 999.9 010000 724050 13743 19860926 77.5 24 68.3 24 1018.5 24 1016.1 24 5.9 24 7.2 24 13.0 999.9 93.0 66.9 0.00G 999.9 100000 724050 13743 19860927 77.7 24 66.8 24 1016.3 24 1013.9 24 11.7 24 8.7 24 14.0 18.1 93.0 66.9 0.00G 999.9 010000 724050 13743 19860928 66.5 23 63.3 23 1023.0 23 1020.6 23 5.0 23 7.4 23 12.0 999.9 71.1* 63.0 0.02G 999.9 110000 724050 13743 19860929 74.1 22 65.7 22 1024.3 22 1021.9 22 7.9 22 10.0 22 15.0 20.0 84.0* 63.0 0.00C 999.9 000000 724050 13743 19860930 77.9 22 69.5 22 1020.3 22 1017.9 22 6.7 22 10.7 22 14.0 999.9 90.0* 69.1 0.00G 999.9 100000 724050 13743 19861001 80.3 24 68.8 24 1016.1 24 1013.7 24 7.7 24 7.2 24 9.9 999.9 91.0 70.0 0.00D 999.9 110000 724050 13743 19861002 77.5 24 65.0 24 1014.8 24 1012.4 24 11.4 24 7.6 24 15.0 999.9 91.0 68.0 0.00G 999.9 110000 724050 13743 19861003 75.9 24 63.5 24 1017.1 24 1014.7 24 8.7 24 7.4 24 13.0 999.9 89.1 68.0 0.00G 999.9 000000 724050 13743 19861004 77.6 23 69.4 23 1009.0 23 1006.6 23 7.9 23 8.3 23 12.0 999.9 86.0* 68.0 0.03G 999.9 110000 724050 13743 19861005 74.6 23 60.2 23 1007.3 23 1004.9 23 13.0 23 10.7 23 22.9 29.9 86.0 69.1* 0.00D 999.9 010000 724050 13743 19861006 63.1 21 38.8 21 1013.7 21 1011.3 21 17.3 21 13.1 21 26.0 36.9 80.1 57.0 0.00G 999.9 000000 724050 13743 19861007 55.4 24 34.1 24 1023.4 24 1021.0 24 18.6 24 7.1 24 9.9 999.9 66.0 45.0 0.00G 999.9 000000 724050 13743 19861008 60.3 24 49.5 24 1023.3 24 1020.7 24 14.6 24 8.3 24 15.0 21.0 75.9* 45.0 0.00G 999.9 000000 724050 13743 19861009 68.5 23 60.2 23 1020.0 23 1017.6 23 7.5 23 6.5 23 8.9 999.9 79.0* 48.9 0.00G 999.9 100000 724050 13743 19861010 56.3 24 42.6 24 1025.3 24 1022.9 24 14.5 24 12.3 24 19.0 22.9 81.0 48.0 0.00G 999.9 000000 724050 13743 19861011 53.1 23 40.9 23 1030.1 23 1027.7 23 13.2 23 11.0 23 14.0 999.9 64.0 46.0 0.00G 999.9 000000 724050 13743 19861012 58.2 20 49.5 20 1026.3 20 1023.9 20 10.4 20 6.9 20 12.0 999.9 66.0 46.0 0.00G 999.9 000000 724050 13743 19861013 63.5 24 59.8 24 1019.7 24 1017.3 24 7.2 24 8.7 24 13.0 999.9 66.9 50.0 0.32G 999.9 110000 724050 13743 19861014 67.4 23 64.4 23 1010.4 23 1008.0 23 7.4 23 7.6 23 19.0 999.9 75.0 61.0 0.68G 999.9 110000 724050 13743 19861015 53.9 23 33.2 23 1017.4 23 1015.0 23 17.3 23 10.6 23 15.0 20.0 75.9 46.0 0.15G 999.9 000000 724050 13743 19861016 52.2 24 34.8 24 1019.5 24 1017.1 24 14.4 24 6.2 24 11.1 15.9 62.1 42.1 0.00G 999.9 000000 724050 13743 19861017 53.4 24 41.1 24 1019.6 24 1017.2 24 10.7 24 6.3 24 12.0 999.9 63.0 42.1 0.00G 999.9 010000 724050 13743 19861018 51.7 22 41.2 22 1028.2 22 1025.8 22 10.2 22 9.0 22 12.0 999.9 60.1 45.0 0.00G 999.9 000000 724050 13743 19861019 50.8 23 33.7 23 1031.0 23 1028.6 23 15.8 23 7.7 23 9.9 15.9 63.0* 39.9 0.00G 999.9 000000 724050 13743 19861020 51.7 23 34.5 23 1026.4 23 1023.9 23 12.3 23 6.5 23 9.9 999.9 64.9 39.0 0.00G 999.9 000000 724050 13743 19861021 54.8 24 38.9 24 1023.0 24 1020.6 24 11.2 24 4.9 24 9.9 999.9 69.1* 39.0 0.00G 999.9 000000 724050 13743 19861022 60.2 22 48.2 22 1021.6 22 1019.2 22 9.2 22 5.7 22 8.0 999.9 73.0* 43.0 0.00G 999.9 000000 724050 13743 19861023 63.8 23 53.6 23 1021.6 23 1019.2 23 6.0 23 7.1 23 12.0 999.9 79.0 48.9 0.00G 999.9 100000 724050 13743 19861024 64.4 24 48.9 24 1022.1 24 1019.7 24 8.9 24 6.6 23 12.0 999.9 79.0 53.1 0.00G 999.9 000000 724050 13743 19861025 55.7 23 48.7 23 1024.9 23 1022.5 23 7.8 23 7.5 23 9.9 999.9 72.0 52.0 0.02G 999.9 110000 724050 13743 19861026 57.4 22 55.1 22 1017.4 22 1015.0 22 5.3 22 5.7 22 8.0 999.9 63.0* 52.0 0.45G 999.9 110000 724050 13743 19861027 61.6 22 57.3 22 1012.0 22 1009.6 22 4.3 22 5.6 22 8.9 999.9 69.1* 53.1 0.01G 999.9 110000 724050 13743 19861028 61.1 24 50.0 24 1017.3 24 1014.9 24 14.1 24 8.5 24 15.9 24.1 70.0 53.1 0.49G 999.9 110010 724050 13743 19861029 55.2 22 49.3 22 1022.8 22 1020.4 22 8.4 22 6.2 22 11.1 999.9 69.1 46.9 0.00G 999.9 100000 724050 13743 19861030 58.0 21 48.7 21 1021.1 21 1018.7 21 9.7 21 7.6 21 14.0 999.9 68.0 46.9 0.00G 999.9 100000 724050 13743 19861031 50.8 23 38.4 23 1035.2 23 1032.8 23 14.6 23 8.5 23 12.0 999.9 68.0 42.1 0.00G 999.9 000000 724050 13743 19861101 50.8 24 45.8 24 1036.1 24 1033.7 24 8.9 24 6.4 24 11.1 999.9 59.0 42.1 0.00G 999.9 100000 724050 13743 19861102 58.5 24 55.0 24 1025.4 24 1023.1 24 5.5 24 5.7 24 15.9 999.9 69.1* 44.1 0.82G 999.9 110000 724050 13743 19861103 50.8 24 38.4 24 1024.9 24 1022.6 24 13.2 24 8.4 24 15.0 999.9 69.1 42.1 0.79G 999.9 000000 724050 13743 19861104 51.2 24 43.4 24 1020.2 24 1017.8 24 10.1 24 5.4 24 8.0 999.9 57.0* 42.1 0.01G 999.9 110000 724050 13743 19861105 46.5 24 44.5 24 1021.6 24 1019.2 24 4.8 24 11.0 24 17.1 999.9 57.0 42.1 0.62G 999.9 110000 724050 13743 19861106 47.6 24 42.8 24 1018.4 24 1016.0 24 9.1 24 7.5 24 9.9 999.9 59.0* 42.1 0.37G 999.9 110000 724050 13743 19861107 49.5 20 46.1 20 1029.7 20 1027.4 20 6.5 20 5.9 20 11.1 999.9 60.1 42.1 0.00G 999.9 110000 724050 13743 19861108 56.4 22 55.2 22 1026.1 22 1023.8 22 3.6 22 6.7 22 15.0 999.9 66.0* 45.0 0.36G 999.9 110000 724050 13743 19861109 67.4 24 62.5 23 1017.6 23 1015.3 23 8.4 24 10.8 24 25.1 32.1 77.0 53.1 0.00G 999.9 110000 724050 13743 19861110 50.0 21 28.6 21 1029.1 21 1026.7 21 17.3 21 8.6 21 13.0 999.9 77.0 39.9 0.02G 999.9 000000 724050 13743 19861111 44.8 24 35.9 24 1026.3 24 1023.9 24 9.4 24 6.0 24 8.9 999.9 54.0 39.9 0.35G 999.9 110000 724050 13743 19861112 46.0 24 37.7 24 1025.9 24 1023.5 24 11.2 24 7.1 24 11.1 999.9 52.0* 42.1 0.41G 999.9 000000 724050 13743 19861113 42.2 23 27.2 23 1026.2 23 1023.9 23 14.8 23 10.8 23 22.0 28.9 53.1 32.7* 0.00G 999.9 000000 724050 13743 19861114 29.4 24 11.4 23 1038.0 24 1035.5 24 15.3 24 8.5 24 12.0 15.9 46.9 21.0 0.00G 999.9 000000 724050 13743 19861115 34.3 24 21.6 24 1027.7 24 1025.3 24 12.6 24 5.2 24 9.9 999.9 42.1* 21.0 0.00G 999.9 000000 724050 13743 19861116 44.4 23 29.1 23 1016.9 23 1014.7 23 11.1 23 4.2 23 7.0 999.9 51.1* 27.0 0.00G 999.9 000000 724050 13743 19861117 48.3 24 37.0 24 1014.6 24 1012.2 24 7.7 24 5.0 24 11.1 999.9 57.9 37.0 0.00G 999.9 100000 724050 13743 19861118 49.2 21 43.3 21 1013.5 21 1011.2 21 5.6 21 5.4 21 12.0 999.9 59.0 37.0 0.00G 999.9 110000 724050 13743 19861119 44.5 21 30.4 20 1016.9 21 1014.6 21 16.5 21 13.5 21 23.9 38.1 59.0 39.0 0.38G 999.9 110010 724050 13743 19861120 34.4 22 26.4 22 1022.4 22 1020.0 22 11.0 22 7.3 22 9.9 999.9 53.1 30.9 0.00G 999.9 110000 724050 13743 19861121 42.6 23 34.1 23 1009.7 23 1007.3 23 12.6 23 10.9 23 20.0 29.9 48.9* 30.9 0.92G 999.9 110000 724050 13743 19861122 42.6 23 29.0 23 1021.9 23 1019.4 23 13.7 23 6.4 23 12.0 999.9 50.0* 33.1 0.00G 999.9 000000 724050 13743 19861123 42.3 24 36.3 24 1025.1 24 1022.7 24 7.6 24 4.7 24 8.9 999.9 53.1* 33.1 0.00G 999.9 100000 724050 13743 19861124 49.6 23 47.1 23 1020.1 23 1017.8 23 5.6 23 6.0 23 11.1 999.9 53.1 34.0 0.04G 999.9 110000 724050 13743 19861125 43.4 23 35.8 23 1025.9 23 1023.6 23 8.2 21 5.3 23 13.0 999.9 54.0 33.1 0.00G 999.9 100000 724050 13743 19861126 45.8 23 42.9 23 1019.8 23 1017.5 23 5.7 23 4.8 23 8.9 999.9 51.1* 33.1 0.39G 999.9 110000 724050 13743 19861127 51.3 23 44.2 23 1016.1 23 1013.8 23 13.7 23 8.1 23 14.0 999.9 57.0* 44.1 0.00I 999.9 000000 724050 13743 19861128 44.8 24 40.0 24 1023.7 24 1021.4 24 8.0 24 3.6 24 7.0 999.9 57.9 36.0 0.00G 999.9 100000 724050 13743 19861129 47.5 23 40.9 23 1020.6 23 1018.2 23 7.9 23 5.8 23 11.1 999.9 57.9 36.0 0.00G 999.9 100000 724050 13743 19861130 43.6 24 33.7 24 1025.5 24 1023.1 24 10.2 24 7.2 24 12.0 999.9 59.0 35.1 0.00G 999.9 000000 724050 13743 19861201 37.2 24 23.4 24 1033.2 24 1030.9 23 13.4 24 10.9 24 14.0 999.9 52.0 32.0 0.00G 999.9 000000 724050 13743 19861202 43.8 23 39.8 23 1024.6 23 1022.2 23 7.1 23 11.0 23 15.0 999.9 53.1* 32.0 0.21G 999.9 110000 724050 13743 19861203 53.2 23 47.3 23 1007.0 23 1004.6 23 10.1 23 6.9 23 12.0 15.9 60.1* 39.0 0.88G 999.9 110000 724050 13743 19861204 44.0 24 23.9 24 1019.2 24 1016.8 24 17.5 24 8.2 24 13.0 18.1 62.1 34.0 0.02G 999.9 000000 724050 13743 19861205 38.3 24 19.4 24 1028.2 24 1025.8 24 16.1 24 7.4 24 12.0 999.9 50.0 32.0 0.00G 999.9 000000 724050 13743 19861206 34.7 23 22.3 23 1033.6 23 1031.1 23 12.2 23 6.3 23 9.9 999.9 43.0* 26.1 0.00G 999.9 000000 724050 13743 19861207 38.0 24 28.8 24 1029.2 24 1026.8 24 8.6 24 5.6 24 11.1 999.9 50.0 26.1 0.00G 999.9 100000 724050 13743 19861208 45.8 24 36.6 24 1023.8 24 1021.4 24 9.9 24 6.2 24 8.9 999.9 54.0 28.9 0.00G 999.9 010000 724050 13743 19861209 47.2 22 44.1 22 1020.7 22 1018.3 22 5.4 22 6.0 22 11.1 999.9 54.0 42.1 0.14G 999.9 110000 724050 13743 19861210 55.1 22 50.0 22 1013.2 22 1010.8 22 8.7 22 8.0 22 12.0 999.9 59.0 44.1 0.36G 999.9 110000 724050 13743 19861211 38.6 22 27.4 22 1021.5 22 1019.1 22 8.4 22 7.1 22 12.0 999.9 59.0 33.1 0.24G 999.9 111000 724050 13743 19861212 37.9 24 34.0 24 1016.6 24 1014.2 24 8.1 24 4.4 24 8.0 999.9 43.0 33.1 0.21G 999.9 110000 724050 13743 19861213 34.0 22 15.9 22 1026.2 22 1023.7 22 15.8 22 10.7 22 15.0 19.0 41.0 28.0 0.00G 999.9 000000 724050 13743 19861214 28.9 24 14.4 24 1035.6 24 1033.2 24 12.1 24 5.8 24 8.9 999.9 37.9 21.0 0.00G 999.9 000000 724050 13743 19861215 37.7 24 23.1 24 1027.2 24 1024.8 24 13.0 24 5.5 24 8.0 999.9 54.0* 21.0 0.00G 999.9 000000 724050 13743 19861216 39.8 21 31.9 21 1026.2 21 1023.8 21 7.8 21 3.4 21 5.1 999.9 55.0 26.1 0.00G 999.9 100000 724050 13743 19861217 43.4 22 35.2 22 1024.9 22 1022.6 22 7.0 22 4.9 22 8.0 999.9 51.1 30.0 0.00G 999.9 100000 724050 13743 19861218 43.9 22 41.1 22 1016.4 22 1014.0 22 4.8 22 5.3 22 12.0 999.9 50.0 36.0 0.57G 999.9 110000 724050 13743 19861219 41.8 24 27.8 24 1013.3 24 1010.9 24 15.3 24 11.9 24 17.1 22.9 46.9 37.9 0.01G 999.9 000000 724050 13743 19861220 37.1 24 26.0 24 1020.9 24 1018.5 24 11.2 24 7.5 24 9.9 999.9 46.9 30.9 0.00G 999.9 000000 724050 13743 19861221 36.3 24 24.3 24 1027.0 24 1024.6 24 9.6 24 8.6 24 11.1 999.9 44.1 30.9 0.00G 999.9 000000 724050 13743 19861222 33.6 23 21.8 23 1031.4 23 1028.9 23 11.1 23 5.7 23 8.0 999.9 43.0 26.1 0.00G 999.9 000000 724050 13743 19861223 32.9 23 24.6 23 1026.7 23 1024.3 23 10.2 23 5.0 23 8.9 999.9 43.0 25.0 0.00G 999.9 000000 724050 13743 19861224 38.3 23 34.9 23 1019.0 23 1016.6 23 4.9 23 8.3 23 15.9 999.9 46.0* 25.0 0.45G 999.9 110000 724050 13743 19861225 45.1 23 43.2 23 1008.1 23 1005.7 23 8.3 23 8.1 23 999.9 999.9 50.0* 36.0 1.91G 999.9 110000 724050 13743 19861226 40.7 24 33.6 24 1020.8 24 1018.4 24 9.9 23 7.0 24 13.0 999.9 52.0 34.0 0.00G 999.9 000000 724050 13743 19861227 39.0 22 28.7 22 1026.1 22 1023.7 22 9.7 22 6.6 22 12.0 999.9 46.0 34.0 0.00G 999.9 000000 724050 13743 19861228 35.3 24 27.0 24 1025.7 24 1023.3 24 8.6 24 5.4 24 8.9 999.9 42.1 30.0 0.00G 999.9 000000 724050 13743 19861229 33.1 24 25.2 24 1025.6 24 1023.2 24 6.2 24 5.1 24 8.0 999.9 41.0* 25.0 0.00G 999.9 100000 724050 13743 19861230 34.9 24 29.9 24 1015.4 24 1013.1 24 5.7 24 6.6 24 12.0 999.9 42.1 25.0 0.00D 999.9 100000 724050 13743 19861231 39.8 17 28.2 17 1021.3 17 1018.9 17 8.9 17 9.2 17 14.0 20.0 46.0 30.0 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/1959/0000755000175000017500000000000014302004506015107 5ustar nileshnileshfluids-1.0.22/tests/gsod/1959/724050-13743.op0000644000175000017500000014327214302004506016700 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19590101 33.3 24 26.6 24 1025.6 8 1024.6 8 5.6 24 1.0 24 8.0 999.9 37.4* 30.4* 99.99 999.9 111000 724050 13743 19590102 41.4 24 35.0 24 1007.7 8 1006.7 8 6.8 24 4.8 24 18.1 999.9 48.4* 35.4* 99.99 999.9 110000 724050 13743 19590103 38.2 24 30.2 24 1012.1 8 1011.1 8 8.2 24 0.6 24 5.1 999.9 49.3* 30.4* 0.00I 999.9 000000 724050 13743 19590104 38.9 24 31.9 24 1009.1 8 1008.1 8 7.9 24 6.8 24 29.9 999.9 48.4* 33.4* 99.99 999.9 010000 724050 13743 19590105 20.8 24 0.7 24 1021.0 8 1019.9 8 11.7 24 20.1 24 26.0 999.9 31.3* 15.4* 0.00I 999.9 000000 724050 13743 19590106 16.9 24 0.1 24 1028.0 8 1027.0 8 11.9 24 15.6 24 22.0 999.9 28.4* 11.3* 0.00I 999.9 000000 724050 13743 19590107 27.0 24 6.2 24 1023.3 8 1022.3 8 11.0 24 5.0 24 13.0 999.9 34.3* 22.5* 0.00I 999.9 000000 724050 13743 19590108 31.9 24 14.1 24 1019.5 8 1018.5 8 9.4 24 7.6 24 9.9 999.9 35.4* 25.3* 0.00I 999.9 000000 724050 13743 19590109 28.1 24 12.9 24 1015.9 8 1014.9 8 11.8 24 16.5 24 26.0 999.9 34.3* 23.4* 0.00I 999.9 000000 724050 13743 19590110 26.9 24 12.8 24 1017.5 8 1016.5 8 11.9 24 17.3 24 25.1 999.9 32.4* 22.5* 0.00I 999.9 000000 724050 13743 19590111 30.4 24 17.8 24 1022.5 8 1021.5 8 11.9 24 15.2 24 22.0 999.9 39.4* 25.3* 0.00I 999.9 000000 724050 13743 19590112 34.1 24 20.6 24 1028.5 8 1027.5 8 10.6 24 4.4 24 15.0 999.9 45.3* 27.3* 0.00I 999.9 000000 724050 13743 19590113 38.9 24 21.7 24 1016.5 8 1015.5 8 10.8 24 7.9 24 23.9 999.9 46.4* 32.4* 0.00I 999.9 000000 724050 13743 19590114 35.5 24 24.0 24 1020.5 8 1019.5 8 8.1 24 3.0 24 8.0 999.9 44.4* 28.4* 0.00I 999.9 000000 724050 13743 19590115 47.4 24 40.0 24 1007.3 8 1006.3 8 6.1 24 4.6 24 11.1 999.9 66.4* 38.3* 99.99 999.9 010000 724050 13743 19590116 44.7 24 37.8 24 993.1 8 992.1 8 6.4 24 13.2 24 25.1 999.9 61.3* 24.4* 99.99 999.9 111000 724050 13743 19590117 17.5 24 0.3 24 1005.6 8 1004.6 8 11.5 24 12.1 24 20.0 999.9 26.4* 11.3* 0.00I 999.9 000000 724050 13743 19590118 19.7 24 5.3 24 1022.0 8 1021.0 8 11.8 24 4.5 24 12.0 999.9 25.3* 14.4* 0.00I 999.9 000000 724050 13743 19590119 25.8 24 15.9 24 1022.8 8 1021.8 8 11.1 24 6.8 24 15.0 999.9 40.3* 18.3* 0.00I 999.9 000000 724050 13743 19590120 40.2 24 33.7 24 1021.0 8 1019.9 8 8.2 24 2.5 24 8.0 999.9 47.3* 36.3* 99.99 999.9 110000 724050 13743 19590121 53.4 24 48.4 24 1014.9 8 1013.9 8 8.5 24 9.3 24 18.1 999.9 68.4* 38.3* 99.99 999.9 010000 724050 13743 19590122 53.5 24 43.5 24 1005.0 8 1004.0 8 10.5 24 16.7 24 23.9 999.9 72.3* 33.4* 99.99 999.9 010000 724050 13743 19590123 30.1 24 12.4 24 1026.2 8 1025.2 8 11.9 24 7.2 24 15.9 999.9 39.4* 23.4* 0.00I 999.9 000000 724050 13743 19590124 32.3 24 18.6 24 1029.9 8 1028.8 8 10.1 24 3.0 24 9.9 999.9 44.4* 23.4* 0.00I 999.9 000000 724050 13743 19590125 49.0 24 30.1 24 1019.4 8 1018.4 8 11.8 24 9.4 24 15.0 999.9 61.3* 42.4* 0.00I 999.9 000000 724050 13743 19590126 40.4 24 32.0 24 1017.7 8 1016.7 8 8.7 24 6.2 24 12.0 999.9 55.4* 29.3* 99.99 999.9 101000 724050 13743 19590127 30.5 24 27.7 24 1020.3 8 1019.3 8 3.0 24 2.4 24 8.0 999.9 33.4* 28.4* 99.99 999.9 111000 724050 13743 19590128 30.3 24 21.8 24 1025.0 8 1024.0 8 5.4 24 0.8 24 5.1 999.9 40.3* 21.4* 0.00I 999.9 000000 724050 13743 19590129 37.6 24 28.5 24 1026.8 8 1025.7 8 7.7 24 2.1 24 7.0 999.9 45.3* 33.4* 0.00I 999.9 000000 724050 13743 19590130 49.9 24 43.7 24 1017.7 8 1016.7 8 7.8 24 10.3 24 20.0 999.9 60.3* 44.4* 0.00I 999.9 000000 724050 13743 19590131 41.3 24 27.5 24 1026.7 8 1025.7 8 11.8 24 9.3 24 18.1 999.9 47.3* 37.4* 0.00I 999.9 000000 724050 13743 19590201 31.4 24 16.6 24 1036.1 8 1035.1 8 10.9 24 6.3 24 13.0 999.9 38.3* 26.4* 0.00I 999.9 000000 724050 13743 19590202 24.3 24 5.6 24 1040.3 8 1039.3 8 11.9 24 5.5 24 12.0 999.9 32.4* 17.4* 0.00I 999.9 000000 724050 13743 19590203 27.5 24 14.8 24 1028.5 8 1027.5 8 9.7 24 4.7 24 9.9 999.9 36.3* 21.4* 99.99 999.9 010000 724050 13743 19590204 36.7 24 35.0 24 1003.8 8 1002.8 8 3.8 24 3.4 24 9.9 999.9 44.4* 30.4* 99.99 999.9 110000 724050 13743 19590205 42.4 24 36.9 24 1009.1 8 1008.0 8 6.8 24 4.3 24 9.9 999.9 53.4* 34.3* 99.99 999.9 110000 724050 13743 19590206 40.1 24 22.0 24 1021.2 8 1020.2 8 11.9 24 13.4 24 28.9 999.9 48.4* 34.3* 0.00I 999.9 000000 724050 13743 19590207 36.5 24 13.3 24 1033.2 8 1032.2 8 11.5 24 7.0 24 20.0 999.9 50.4* 27.3* 0.00I 999.9 000000 724050 13743 19590208 46.7 24 26.8 24 1020.6 8 1019.5 8 11.4 24 6.4 24 11.1 999.9 56.3* 41.4* 0.00I 999.9 000000 724050 13743 19590209 36.6 24 25.2 24 1026.1 8 1025.0 8 8.2 24 6.7 24 12.0 999.9 47.3* 32.4* 99.99 999.9 111000 724050 13743 19590210 46.7 24 42.4 24 1009.6 8 1008.6 8 5.4 24 10.1 24 20.0 999.9 68.4* 32.4* 99.99 999.9 110000 724050 13743 19590211 50.0 24 33.4 24 1014.3 8 1013.3 8 11.4 24 15.1 24 26.0 999.9 65.3* 37.4* 0.00I 999.9 000000 724050 13743 19590212 34.0 24 14.8 24 1038.5 8 1037.5 8 11.5 24 6.0 24 15.9 999.9 43.3* 26.4* 0.00I 999.9 000000 724050 13743 19590213 43.4 24 35.5 24 1025.2 8 1024.2 8 8.5 24 5.4 24 9.9 999.9 57.4* 34.3* 99.99 999.9 110000 724050 13743 19590214 48.1 24 46.4 24 1021.0 8 1019.9 8 3.5 24 2.8 24 8.0 999.9 54.3* 43.3* 99.99 999.9 110000 724050 13743 19590215 45.9 24 38.4 24 1013.3 8 1012.3 8 7.7 24 10.5 24 23.9 999.9 52.3* 43.3* 99.99 999.9 110000 724050 13743 19590216 37.8 24 26.1 24 1023.3 8 1022.3 8 10.1 24 3.0 24 9.9 999.9 46.4* 27.3* 0.00I 999.9 000000 724050 13743 19590217 44.5 24 32.6 24 1012.9 8 1011.9 8 8.2 24 3.0 24 11.1 999.9 56.3* 36.3* 99.99 999.9 010000 724050 13743 19590218 44.4 24 37.3 24 1000.9 8 999.9 8 5.4 24 4.7 24 15.0 999.9 48.4* 38.3* 99.99 999.9 110000 724050 13743 19590219 30.1 24 15.4 24 1009.9 8 1008.9 8 11.7 24 22.1 24 28.9 999.9 46.4* 21.4* 0.00I 999.9 000000 724050 13743 19590220 20.6 24 5.1 24 1025.7 8 1024.7 8 11.9 24 14.8 24 21.0 999.9 29.3* 14.4* 0.00I 999.9 000000 724050 13743 19590221 28.9 24 5.5 24 1024.9 8 1023.9 8 11.8 24 10.7 24 20.0 999.9 47.3* 19.4* 0.00I 999.9 000000 724050 13743 19590222 40.9 24 17.2 24 1026.1 8 1025.1 8 11.8 24 5.0 24 18.1 999.9 52.3* 31.3* 0.00I 999.9 000000 724050 13743 19590223 40.3 24 30.3 24 1014.6 8 1013.6 8 7.9 24 2.0 24 7.0 999.9 54.3* 34.3* 99.99 999.9 111000 724050 13743 19590224 45.5 24 30.3 24 1008.7 8 1007.7 8 11.8 24 16.4 24 23.9 999.9 53.4* 40.3* 99.99 999.9 010000 724050 13743 19590225 35.6 24 15.0 24 1024.8 8 1023.8 8 11.5 24 5.9 24 15.0 999.9 45.3* 27.3* 0.00I 999.9 000000 724050 13743 19590226 38.8 24 25.0 24 1020.1 8 1019.1 8 8.3 24 2.7 24 7.0 999.9 56.3* 29.3* 0.00I 999.9 000000 724050 13743 19590227 43.5 24 30.8 24 1018.2 8 1017.1 8 6.3 24 1.1 24 8.0 999.9 60.3* 33.4* 0.00I 999.9 100000 724050 13743 19590228 45.2 24 33.8 24 1020.3 8 1019.2 8 6.8 24 2.0 24 9.9 999.9 60.3* 34.3* 0.00I 999.9 100000 724050 13743 19590301 46.0 24 38.4 24 1011.6 8 1010.6 8 5.5 24 4.5 24 16.9 999.9 58.3* 40.3* 99.99 999.9 110000 724050 13743 19590302 42.8 24 28.5 24 1007.6 8 1006.6 8 9.9 24 13.9 24 18.1 999.9 50.4* 37.4* 99.99 999.9 010000 724050 13743 19590303 42.9 24 26.7 24 1010.0 8 1009.0 8 9.6 24 3.9 24 9.9 999.9 59.4* 31.3* 0.00I 999.9 000000 724050 13743 19590304 45.2 24 28.6 24 1015.3 8 1014.3 8 10.3 24 9.4 24 20.0 999.9 58.3* 35.4* 99.99 999.9 010000 724050 13743 19590305 42.3 24 24.2 24 1027.8 8 1026.8 8 10.0 24 4.8 24 11.1 999.9 49.3* 31.3* 0.00I 999.9 000000 724050 13743 19590306 54.8 24 44.8 24 1001.7 8 1000.6 8 8.0 24 12.4 24 26.0 999.9 69.3* 41.4* 99.99 999.9 110000 724050 13743 19590307 45.0 24 21.5 24 1006.3 8 1005.2 8 11.9 24 16.9 24 25.1 999.9 54.3* 41.4* 0.00I 999.9 000000 724050 13743 19590308 39.0 24 19.5 24 1022.3 8 1021.2 8 11.7 24 5.4 24 22.9 999.9 51.3* 30.4* 0.00I 999.9 000000 724050 13743 19590309 46.3 24 29.9 24 1014.5 8 1013.5 8 11.5 24 7.7 24 14.0 999.9 60.3* 38.3* 0.00I 999.9 000000 724050 13743 19590310 48.1 24 33.9 24 1008.6 8 1007.6 8 11.7 24 11.2 24 20.0 999.9 54.3* 43.3* 99.99 999.9 010000 724050 13743 19590311 41.5 24 29.8 24 1019.2 8 1018.2 8 8.1 24 6.1 24 9.9 999.9 45.3* 35.4* 99.99 999.9 010000 724050 13743 19590312 39.6 24 31.9 24 1002.6 8 1001.6 8 5.8 24 12.3 24 26.0 999.9 42.4* 36.3* 99.99 999.9 111000 724050 13743 19590313 37.5 24 20.0 24 1004.7 8 1003.7 8 11.4 24 19.0 24 28.9 999.9 44.4* 33.4* 0.00I 999.9 000000 724050 13743 19590314 43.9 24 25.0 24 1014.4 8 1013.4 8 10.0 24 2.3 24 8.0 999.9 63.3* 35.4* 0.00I 999.9 000000 724050 13743 19590315 49.8 24 37.4 24 1011.9 8 1010.9 8 9.0 24 4.9 24 14.0 999.9 63.3* 39.4* 0.00I 999.9 000000 724050 13743 19590316 49.5 24 23.9 24 1013.4 8 1012.3 8 11.5 24 11.9 24 23.9 999.9 60.3* 40.3* 99.99 999.9 010000 724050 13743 19590317 43.9 24 20.8 24 1016.7 8 1015.7 8 10.6 24 7.2 24 28.0 999.9 53.4* 33.4* 0.00I 999.9 000000 724050 13743 19590318 35.5 24 12.5 24 1027.4 8 1026.4 8 11.9 24 18.0 24 30.9 999.9 43.3* 29.3* 0.00I 999.9 000000 724050 13743 19590319 42.5 24 18.6 24 1032.6 8 1031.5 8 9.8 24 3.9 24 12.0 999.9 65.3* 28.4* 0.00I 999.9 000000 724050 13743 19590320 57.2 24 23.4 24 1022.8 8 1021.8 8 10.8 24 5.3 24 9.9 999.9 73.4* 44.4* 0.00I 999.9 000000 724050 13743 19590321 60.6 24 42.5 24 1011.7 8 1010.7 8 11.4 24 6.3 24 14.0 999.9 70.3* 53.4* 99.99 999.9 010000 724050 13743 19590322 38.9 24 19.5 24 1015.2 8 1014.1 8 11.4 24 18.5 24 23.9 999.9 58.3* 29.3* 0.00I 999.9 000000 724050 13743 19590323 38.7 24 11.9 24 1025.6 8 1024.6 8 11.9 24 7.7 24 15.9 999.9 55.4* 27.3* 0.00I 999.9 000000 724050 13743 19590324 53.5 24 27.0 24 1019.3 8 1018.3 8 10.3 24 2.8 24 8.0 999.9 76.3* 37.4* 0.00I 999.9 000000 724050 13743 19590325 59.4 24 30.8 24 1018.5 8 1017.5 8 7.4 24 1.9 24 9.9 999.9 80.2* 41.4* 0.00I 999.9 000000 724050 13743 19590326 59.6 24 37.5 24 1017.8 8 1016.8 8 7.1 24 4.9 24 11.1 999.9 73.4* 51.3* 0.00I 999.9 000000 724050 13743 19590327 49.3 24 44.8 24 1007.0 8 1006.0 8 3.2 24 5.1 24 9.9 999.9 59.4* 45.3* 99.99 999.9 110010 724050 13743 19590328 38.8 24 23.1 24 1016.9 8 1015.8 8 10.4 24 18.0 24 23.9 999.9 45.3* 32.4* 99.99 999.9 111000 724050 13743 19590329 39.2 24 15.0 24 1030.6 8 1029.6 8 11.6 24 4.2 24 12.0 999.9 48.4* 29.3* 0.00I 999.9 000000 724050 13743 19590330 41.8 24 36.7 24 1025.1 8 1024.1 8 6.4 24 4.6 24 8.9 999.9 45.3* 39.4* 99.99 999.9 110000 724050 13743 19590331 47.5 24 40.9 24 1019.2 8 1018.1 8 4.9 24 3.7 24 8.0 999.9 63.3* 40.3* 0.00I 999.9 100000 724050 13743 19590401 56.7 24 45.9 24 1016.9 8 1015.9 8 6.6 24 3.5 24 14.0 999.9 77.4* 45.3* 0.00I 999.9 000000 724050 13743 19590402 59.0 24 53.9 24 1002.9 8 1001.9 8 7.4 24 11.2 24 19.0 999.9 64.4* 48.4* 99.99 999.9 110010 724050 13743 19590403 53.9 24 38.1 24 1003.6 8 1002.6 8 11.4 24 8.8 24 22.0 999.9 71.2* 42.4* 0.00I 999.9 000000 724050 13743 19590404 50.8 24 38.7 24 1008.6 8 1007.6 8 9.8 24 12.1 24 23.9 999.9 69.3* 45.3* 99.99 999.9 110000 724050 13743 19590405 53.5 24 33.9 24 1019.1 8 1018.3 8 11.8 24 6.3 24 15.0 999.9 71.2* 41.4* 0.00I 999.9 000000 724050 13743 19590406 60.4 24 33.8 24 1013.3 8 1012.3 8 11.9 24 15.5 24 28.9 999.9 68.4* 51.3* 0.00I 999.9 000000 724050 13743 19590407 56.2 24 30.5 24 1021.6 8 1020.6 8 11.4 24 5.3 24 15.9 999.9 73.4* 41.4* 0.00I 999.9 000000 724050 13743 19590408 69.8 24 46.2 24 1016.5 8 1015.4 8 11.9 24 9.1 24 12.0 999.9 87.3* 58.3* 0.00I 999.9 000000 724050 13743 19590409 77.1 24 55.8 24 1014.2 8 1013.2 8 11.3 24 8.4 24 18.1 999.9 88.3* 69.3* 99.99 999.9 010000 724050 13743 19590410 64.3 24 59.4 24 1020.0 8 1018.8 8 5.1 24 3.5 24 8.0 999.9 70.3* 61.3* 0.00I 999.9 100000 724050 13743 19590411 55.5 24 53.2 24 1020.7 8 1019.7 8 2.9 24 2.8 24 12.0 999.9 60.3* 53.4* 99.99 999.9 110010 724050 13743 19590412 44.6 24 38.3 24 1024.1 8 1023.1 8 6.4 24 9.1 24 12.0 999.9 53.4* 35.4* 99.99 999.9 111000 724050 13743 19590413 39.7 24 29.6 24 1019.7 8 1018.7 8 9.6 24 8.1 24 13.0 999.9 48.4* 34.3* 99.99 999.9 111000 724050 13743 19590414 47.0 24 24.3 24 1015.8 8 1014.8 8 11.9 24 10.7 24 22.9 999.9 60.3* 37.4* 0.00I 999.9 000000 724050 13743 19590415 59.0 24 31.4 24 1018.7 8 1017.7 8 11.4 24 4.5 24 9.9 999.9 73.4* 47.3* 0.00I 999.9 000000 724050 13743 19590416 63.4 24 36.1 24 1018.9 8 1017.9 8 11.4 24 3.9 24 13.0 999.9 77.4* 48.4* 0.00I 999.9 000000 724050 13743 19590417 65.8 24 38.9 24 1019.5 8 1018.7 8 11.4 24 0.4 24 6.0 999.9 82.4* 49.3* 0.00I 999.9 000000 724050 13743 19590418 69.8 24 44.6 24 1018.3 8 1017.3 8 11.4 24 4.3 24 8.0 999.9 83.3* 56.3* 0.00I 999.9 000000 724050 13743 19590419 68.3 24 57.5 24 1013.3 8 1012.3 8 9.9 24 4.3 24 9.9 999.9 78.3* 62.4* 99.99 999.9 010000 724050 13743 19590420 63.7 24 60.4 24 1005.2 8 1004.2 8 3.9 24 3.7 24 12.0 999.9 66.4* 58.3* 99.99 999.9 110000 724050 13743 19590421 54.3 24 39.5 24 1014.1 8 1013.0 8 9.8 24 5.5 24 8.9 999.9 62.4* 47.3* 0.00I 999.9 000000 724050 13743 19590422 54.5 24 34.3 24 1016.3 8 1015.3 8 11.5 24 6.5 24 12.0 999.9 62.4* 48.4* 0.00I 999.9 000000 724050 13743 19590423 53.2 24 32.1 24 1016.3 8 1015.2 8 11.4 24 6.1 24 12.0 999.9 57.4* 48.4* 99.99 999.9 010000 724050 13743 19590424 58.2 24 35.6 24 1018.1 8 1017.1 8 11.0 24 2.5 24 8.9 999.9 74.3* 46.4* 0.00I 999.9 000000 724050 13743 19590425 64.5 24 39.1 24 1019.8 8 1018.8 8 10.6 24 4.6 24 12.0 999.9 79.3* 50.4* 0.00I 999.9 000000 724050 13743 19590426 72.7 24 47.7 24 1016.7 8 1015.7 8 11.8 24 8.2 24 12.0 999.9 83.3* 64.4* 0.00I 999.9 000000 724050 13743 19590427 68.6 24 55.5 24 1011.7 8 1010.7 8 7.6 24 2.8 24 9.9 999.9 78.3* 60.3* 99.99 999.9 010000 724050 13743 19590428 50.2 24 48.6 24 1011.5 8 1010.5 8 4.2 24 7.7 24 12.0 999.9 58.3* 48.4* 99.99 999.9 110000 724050 13743 19590429 55.9 24 47.0 24 1010.1 8 1009.1 8 6.1 24 3.5 24 20.0 999.9 72.3* 49.3* 99.99 999.9 110010 724050 13743 19590430 64.2 24 47.4 24 1008.7 8 1007.7 8 11.3 24 4.6 24 12.0 999.9 77.4* 53.4* 0.00I 999.9 000000 724050 13743 19590501 63.3 24 46.7 24 1013.1 8 1012.1 8 11.4 24 7.1 24 13.0 999.9 71.2* 54.3* 99.99 999.9 010010 724050 13743 19590502 65.2 24 47.8 24 1018.7 8 1017.7 8 11.1 24 2.1 24 12.0 999.9 83.3* 50.4* 0.00I 999.9 000000 724050 13743 19590503 72.1 24 57.5 24 1016.4 8 1015.4 8 10.4 24 4.4 24 9.9 999.9 85.3* 62.4* 99.99 999.9 010010 724050 13743 19590504 69.1 24 43.0 24 1017.6 8 1016.6 8 10.5 24 3.8 24 9.9 999.9 77.4* 61.3* 99.99 999.9 010000 724050 13743 19590505 65.4 24 43.7 24 1020.4 8 1019.4 8 10.0 24 1.9 24 8.0 999.9 78.3* 53.4* 0.00I 999.9 000000 724050 13743 19590506 67.8 24 50.4 24 1020.5 8 1019.4 8 10.4 24 3.2 24 9.9 999.9 85.3* 54.3* 0.00I 999.9 000000 724050 13743 19590507 75.1 24 56.8 24 1016.6 8 1015.6 8 9.6 24 4.0 24 9.9 999.9 91.2* 62.4* 0.00I 999.9 000000 724050 13743 19590508 70.0 24 43.4 24 1019.2 8 1018.2 8 11.5 24 12.5 24 23.9 999.9 86.4* 58.3* 0.00I 999.9 000000 724050 13743 19590509 62.1 24 35.5 24 1025.0 8 1024.0 8 11.7 24 3.3 24 8.9 999.9 70.3* 49.3* 0.00I 999.9 000000 724050 13743 19590510 65.1 24 49.8 24 1022.4 8 1021.4 8 9.8 24 8.5 24 14.0 999.9 74.3* 58.3* 99.99 999.9 010000 724050 13743 19590511 74.7 24 62.9 23 1020.6 8 1019.6 8 9.7 24 8.9 24 13.0 999.9 87.3* 67.3* 0.00I 999.9 000000 724050 13743 19590512 77.3 24 62.3 24 1019.1 8 1018.1 8 11.4 24 7.3 24 16.9 999.9 91.2* 68.4* 99.99 999.9 010000 724050 13743 19590513 69.2 24 66.8 24 1013.9 8 1012.8 8 6.7 24 4.3 24 12.0 999.9 72.3* 64.4* 99.99 999.9 110000 724050 13743 19590514 62.7 24 50.5 24 1006.6 8 1005.6 8 9.6 24 9.9 24 16.9 999.9 66.4* 59.4* 99.99 999.9 010000 724050 13743 19590515 55.6 24 37.4 24 1011.6 8 1010.5 8 11.9 24 12.5 24 20.0 999.9 62.4* 48.4* 99.99 999.9 010000 724050 13743 19590516 56.2 24 37.5 24 1017.1 8 1016.1 8 11.9 24 8.1 24 15.0 999.9 66.4* 48.4* 99.99 999.9 010000 724050 13743 19590517 60.7 24 39.7 24 1017.8 8 1016.8 8 11.8 24 4.9 24 14.0 999.9 73.4* 48.4* 0.00I 999.9 000000 724050 13743 19590518 62.4 24 50.0 24 1019.1 8 1018.0 8 9.7 24 4.6 24 8.0 999.9 70.3* 57.4* 99.99 999.9 110000 724050 13743 19590519 70.3 24 63.3 24 1020.7 8 1019.7 8 6.8 24 4.7 24 14.0 999.9 83.3* 63.3* 0.00I 999.9 100000 724050 13743 19590520 76.9 24 67.2 24 1022.1 8 1021.1 8 11.6 24 7.2 24 9.9 999.9 86.4* 69.3* 0.00I 999.9 000000 724050 13743 19590521 77.0 24 67.8 24 1020.6 8 1019.6 8 10.9 24 7.5 24 12.0 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19590522 76.3 24 69.0 24 1016.8 8 1015.8 8 10.7 24 6.6 24 9.9 999.9 86.4* 72.3* 99.99 999.9 010010 724050 13743 19590523 75.4 24 69.3 24 1015.7 8 1014.7 8 6.5 24 2.4 24 8.0 999.9 85.3* 69.3* 99.99 999.9 010010 724050 13743 19590524 69.9 24 59.7 24 1018.2 8 1017.2 8 9.2 24 8.2 24 16.9 999.9 72.3* 65.3* 99.99 999.9 110000 724050 13743 19590525 65.4 24 47.9 24 1026.2 8 1025.2 8 11.8 24 3.0 24 7.0 999.9 75.4* 54.3* 0.00I 999.9 000000 724050 13743 19590526 66.3 24 52.7 24 1026.0 8 1025.0 8 11.5 24 5.3 24 9.9 999.9 77.4* 57.4* 0.00I 999.9 000000 724050 13743 19590527 74.7 24 62.1 24 1023.9 8 1022.9 8 11.8 24 5.8 24 8.9 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19590528 79.6 24 67.0 24 1021.7 8 1020.7 8 10.9 24 2.3 24 8.0 999.9 89.2* 70.3* 0.00I 999.9 000000 724050 13743 19590529 81.5 24 69.3 24 1018.5 8 1017.5 8 11.0 24 1.6 24 8.0 999.9 89.2* 74.3* 0.00I 999.9 000000 724050 13743 19590530 81.3 24 68.3 24 1015.8 8 1014.7 8 10.4 24 3.0 24 8.9 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19590531 76.5 24 67.2 24 1016.0 8 1015.0 8 7.8 24 1.5 24 7.0 999.9 86.4* 71.2* 99.99 999.9 010000 724050 13743 19590601 67.0 24 63.2 24 1017.1 8 1016.0 8 3.6 24 3.5 24 8.0 999.9 77.4* 63.3* 99.99 999.9 110000 724050 13743 19590602 69.8 24 68.4 24 1010.9 8 1009.9 8 3.2 24 2.6 24 8.9 999.9 73.4* 68.4* 99.99 999.9 110000 724050 13743 19590603 70.0 24 61.2 24 1010.7 8 1009.7 8 10.5 24 9.5 24 15.0 999.9 77.4* 64.4* 99.99 999.9 110000 724050 13743 19590604 72.9 24 55.2 24 1017.8 8 1016.8 8 11.9 24 2.6 24 8.9 999.9 84.4* 61.3* 0.00I 999.9 000000 724050 13743 19590605 73.5 24 57.9 24 1018.1 8 1017.1 8 8.2 24 1.4 24 9.9 999.9 85.3* 64.4* 99.99 999.9 011010 724050 13743 19590606 73.0 24 58.7 24 1014.7 8 1013.7 8 8.2 24 2.2 24 11.1 999.9 87.3* 62.4* 0.00I 999.9 000000 724050 13743 19590607 78.1 24 60.5 24 1016.1 8 1015.1 8 9.4 24 2.5 24 8.0 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19590608 78.8 24 57.0 24 1020.0 8 1019.0 8 10.1 24 2.7 24 9.9 999.9 90.3* 67.3* 0.00I 999.9 000000 724050 13743 19590609 81.1 24 61.3 24 1019.4 8 1018.4 8 8.6 24 2.0 24 6.0 999.9 95.4* 67.3* 0.00I 999.9 000000 724050 13743 19590610 84.0 24 65.9 24 1017.5 8 1016.5 8 5.0 24 1.7 24 7.0 999.9 95.4* 72.3* 0.00I 999.9 000000 724050 13743 19590611 83.7 24 67.5 24 1015.9 8 1014.9 8 5.4 24 1.8 24 8.0 999.9 93.4* 73.4* 0.00I 999.9 000000 724050 13743 19590612 79.8 24 68.4 24 1015.3 8 1014.2 8 9.2 24 6.7 24 12.0 999.9 89.2* 72.3* 0.00I 999.9 100000 724050 13743 19590613 73.8 24 67.6 24 1007.4 8 1006.4 8 9.4 24 5.3 24 15.9 999.9 87.3* 66.4* 99.99 999.9 010010 724050 13743 19590614 65.5 24 43.1 24 1010.6 8 1009.6 8 11.8 24 18.9 24 25.1 999.9 75.4* 56.3* 0.00I 999.9 000000 724050 13743 19590615 67.4 24 39.6 24 1014.5 8 1013.5 8 11.9 24 13.6 24 22.9 999.9 78.3* 57.4* 0.00I 999.9 000000 724050 13743 19590616 68.1 24 43.7 24 1009.9 8 1008.9 8 11.6 24 10.2 24 21.0 999.9 75.4* 59.4* 99.99 999.9 010000 724050 13743 19590617 59.3 24 50.1 24 1010.9 8 1009.9 8 11.3 24 8.1 24 12.0 999.9 68.4* 54.3* 99.99 999.9 010000 724050 13743 19590618 62.1 24 49.7 24 1014.1 8 1013.1 8 11.3 24 2.3 24 14.0 999.9 73.4* 52.3* 0.00I 999.9 000000 724050 13743 19590619 67.4 24 52.2 24 1010.8 8 1009.8 8 11.9 24 9.0 24 22.0 999.9 82.4* 57.4* 0.00I 999.9 000000 724050 13743 19590620 75.9 24 53.7 24 1011.1 8 1010.1 8 11.9 24 6.9 24 15.9 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19590621 77.0 24 58.1 24 1011.9 8 1010.8 8 7.9 24 2.4 24 8.0 999.9 87.3* 67.3* 0.00I 999.9 000000 724050 13743 19590622 80.6 24 62.8 24 1010.7 8 1009.7 8 7.5 24 5.0 24 9.9 999.9 94.3* 69.3* 0.00I 999.9 000000 724050 13743 19590623 80.1 24 65.4 24 1012.2 8 1011.2 8 11.4 24 4.9 24 8.0 999.9 89.2* 75.4* 0.00I 999.9 000000 724050 13743 19590624 76.9 24 64.2 24 1015.9 8 1014.8 8 7.8 24 2.6 24 7.0 999.9 86.4* 69.3* 0.00I 999.9 000000 724050 13743 19590625 79.4 24 69.0 24 1013.8 8 1012.8 8 6.0 24 3.7 24 8.0 999.9 90.3* 70.3* 0.00I 999.9 000000 724050 13743 19590626 83.6 24 70.0 24 1012.8 8 1011.8 8 8.5 24 4.6 24 8.9 999.9 95.4* 75.4* 0.00I 999.9 000000 724050 13743 19590627 85.8 24 71.1 24 1015.0 8 1014.0 8 11.6 24 4.7 24 9.9 999.9 93.4* 79.3* 0.00I 999.9 000010 724050 13743 19590628 87.8 24 71.6 24 1016.4 8 1015.4 8 9.5 24 4.2 24 9.9 999.9 99.3* 78.3* 0.00I 999.9 000000 724050 13743 19590629 89.8 24 70.9 24 1014.6 8 1013.6 8 11.8 24 5.8 24 14.0 999.9 100.2* 79.3* 0.00I 999.9 000000 724050 13743 19590630 90.6 24 72.5 24 1013.7 8 1012.7 8 9.8 24 3.3 24 8.0 999.9 102.4* 80.2* 0.00I 999.9 000000 724050 13743 19590701 84.5 24 70.8 24 1015.1 8 1014.1 8 9.6 24 5.3 24 9.9 999.9 94.3* 75.4* 99.99 999.9 010010 724050 13743 19590702 83.9 24 68.8 24 1015.1 8 1014.1 8 9.2 24 8.0 24 14.0 999.9 89.2* 78.3* 0.00I 999.9 000000 724050 13743 19590703 76.7 24 54.3 24 1020.8 8 1019.8 8 11.3 24 8.0 24 16.9 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19590704 77.1 24 58.0 24 1020.8 8 1019.7 8 11.3 24 2.2 24 9.9 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19590705 75.3 24 58.8 24 1019.3 8 1018.3 8 11.1 24 4.8 24 11.1 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19590706 75.1 24 65.1 24 1016.5 8 1015.5 8 11.4 24 4.2 24 12.0 999.9 81.3* 69.3* 99.99 999.9 010000 724050 13743 19590707 77.7 24 58.1 24 1019.5 8 1018.5 8 11.6 24 4.5 24 15.9 999.9 89.2* 68.4* 0.00I 999.9 000000 724050 13743 19590708 76.6 24 54.2 24 1024.7 8 1023.7 8 11.2 24 3.9 24 9.9 999.9 88.3* 64.4* 0.00I 999.9 000000 724050 13743 19590709 76.6 24 62.7 24 1022.7 8 1021.7 8 11.3 24 5.2 24 12.0 999.9 87.3* 64.4* 0.00I 999.9 000000 724050 13743 19590710 76.5 24 72.0 24 1015.4 8 1014.3 8 8.8 24 5.8 24 14.0 999.9 83.3* 72.3* 99.99 999.9 110000 724050 13743 19590711 77.2 24 66.1 24 1013.6 8 1012.6 8 8.0 24 4.0 24 9.9 999.9 86.4* 69.3* 0.00I 999.9 000000 724050 13743 19590712 73.8 24 69.2 24 1015.9 8 1014.9 8 5.9 24 5.4 24 14.0 999.9 78.3* 70.3* 99.99 999.9 110010 724050 13743 19590713 74.1 24 67.2 24 1021.0 8 1019.9 8 5.6 24 1.9 24 8.0 999.9 86.4* 66.4* 99.99 999.9 110010 724050 13743 19590714 74.6 24 70.7 24 1021.8 8 1020.8 8 7.6 24 4.5 24 11.1 999.9 81.3* 70.3* 99.99 999.9 110000 724050 13743 19590715 72.6 24 69.4 24 1021.2 8 1020.2 8 6.3 24 4.3 24 8.9 999.9 78.3* 69.3* 99.99 999.9 110000 724050 13743 19590716 74.3 24 68.4 24 1020.8 8 1019.8 8 6.3 24 4.2 24 8.9 999.9 81.3* 70.3* 99.99 999.9 110000 724050 13743 19590717 75.4 24 68.2 24 1020.4 8 1019.4 8 5.0 24 2.3 24 8.0 999.9 84.4* 69.3* 0.00I 999.9 100000 724050 13743 19590718 77.1 24 69.1 24 1016.8 8 1015.8 8 6.8 24 6.5 24 12.0 999.9 87.3* 70.3* 0.00I 999.9 100000 724050 13743 19590719 81.9 24 72.4 24 1012.6 8 1011.6 8 11.5 24 10.4 24 15.0 999.9 92.3* 76.3* 99.99 999.9 010000 724050 13743 19590720 78.9 24 73.2 24 1014.5 8 1013.5 8 9.4 24 7.2 24 16.9 999.9 87.3* 71.2* 99.99 999.9 010010 724050 13743 19590721 77.2 24 71.7 24 1019.2 8 1018.2 8 9.2 24 7.1 24 9.9 999.9 85.3* 73.4* 0.00I 999.9 000000 724050 13743 19590722 79.7 24 72.9 24 1022.3 8 1021.3 8 8.6 24 6.3 24 9.9 999.9 88.3* 74.3* 0.00I 999.9 100000 724050 13743 19590723 83.4 24 74.3 24 1020.6 8 1019.6 8 10.8 24 5.0 24 9.9 999.9 92.3* 77.4* 0.00I 999.9 000000 724050 13743 19590724 83.1 24 72.4 24 1016.4 8 1015.4 8 10.8 24 9.0 24 14.0 999.9 93.4* 76.3* 99.99 999.9 010010 724050 13743 19590725 78.4 24 71.1 24 1016.7 8 1015.7 8 9.7 24 3.9 24 9.9 999.9 86.4* 74.3* 99.99 999.9 010000 724050 13743 19590726 80.1 24 68.8 24 1019.9 8 1018.9 8 7.5 24 2.7 24 7.0 999.9 88.3* 72.3* 0.00I 999.9 000000 724050 13743 19590727 82.2 24 70.2 24 1018.6 8 1017.6 8 7.4 24 3.0 24 8.9 999.9 90.3* 75.4* 0.00I 999.9 000000 724050 13743 19590728 83.1 24 70.4 24 1018.1 8 1017.1 8 6.5 24 1.8 24 8.0 999.9 92.3* 77.4* 99.99 999.9 010000 724050 13743 19590729 82.7 24 73.7 24 1018.8 8 1017.7 8 5.9 24 3.0 24 13.0 999.9 93.4* 75.4* 99.99 999.9 010010 724050 13743 19590730 81.6 24 73.8 24 1018.0 8 1016.9 8 7.3 24 1.8 24 8.0 999.9 91.2* 74.3* 0.00I 999.9 000010 724050 13743 19590731 81.6 24 72.7 24 1014.2 8 1013.1 8 8.0 24 2.0 24 9.9 999.9 91.2* 74.3* 99.99 999.9 010010 724050 13743 19590801 82.6 24 68.9 24 1013.6 8 1012.6 8 9.3 24 4.5 24 13.0 999.9 91.2* 76.3* 0.00I 999.9 000000 724050 13743 19590802 76.4 24 55.9 24 1016.3 8 1015.3 8 11.7 24 7.3 24 15.9 999.9 85.3* 69.3* 0.00I 999.9 000000 724050 13743 19590803 72.3 24 53.5 24 1019.3 8 1018.3 8 11.8 24 3.0 24 8.9 999.9 84.4* 62.4* 0.00I 999.9 000000 724050 13743 19590804 72.6 24 62.4 24 1016.7 8 1015.7 8 10.2 24 9.0 24 12.0 999.9 79.3* 67.3* 99.99 999.9 010000 724050 13743 19590805 79.2 24 70.5 24 1010.5 8 1009.5 8 5.8 24 9.9 24 18.1 999.9 90.3* 72.3* 99.99 999.9 110000 724050 13743 19590806 71.6 24 64.6 24 1013.4 8 1012.3 8 4.1 24 3.3 24 13.0 999.9 79.3* 66.4* 0.00I 999.9 000000 724050 13743 19590807 71.1 24 67.2 24 1013.2 8 1012.2 8 3.5 24 5.3 24 9.9 999.9 75.4* 68.4* 99.99 999.9 110000 724050 13743 19590808 73.1 24 70.7 24 1009.7 8 1008.7 8 3.9 24 3.6 24 9.9 999.9 76.3* 71.2* 99.99 999.9 110010 724050 13743 19590809 77.9 24 69.8 24 1007.2 8 1006.2 8 7.3 24 4.3 24 12.0 999.9 86.4* 73.4* 0.00I 999.9 100000 724050 13743 19590810 78.1 24 65.7 24 1010.4 8 1009.4 8 6.6 24 6.5 24 15.9 999.9 85.3* 70.3* 99.99 999.9 010000 724050 13743 19590811 77.6 24 62.1 24 1016.5 8 1015.5 8 8.2 24 4.3 24 12.0 999.9 86.4* 69.3* 0.00I 999.9 000000 724050 13743 19590812 79.2 24 66.0 24 1019.9 8 1018.9 8 6.2 24 2.3 24 8.0 999.9 90.3* 68.4* 0.00I 999.9 000000 724050 13743 19590813 81.6 24 68.4 24 1020.6 8 1019.6 8 6.8 24 5.4 24 12.0 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19590814 83.4 24 69.6 24 1021.2 8 1020.2 8 6.8 24 3.9 24 8.0 999.9 94.3* 74.3* 0.00I 999.9 000000 724050 13743 19590815 83.3 24 69.2 24 1021.2 8 1020.1 8 8.5 24 5.6 24 9.9 999.9 93.4* 73.4* 0.00I 999.9 000000 724050 13743 19590816 84.4 24 73.4 24 1017.9 8 1016.9 8 8.5 24 6.4 24 11.1 999.9 94.3* 76.3* 0.00I 999.9 000000 724050 13743 19590817 85.0 24 71.3 24 1016.1 8 1015.0 8 11.0 24 8.2 24 13.0 999.9 93.4* 77.4* 0.00I 999.9 000000 724050 13743 19590818 83.9 24 70.2 24 1016.3 8 1015.3 8 11.4 24 5.8 24 12.0 999.9 91.2* 77.4* 0.00I 999.9 000000 724050 13743 19590819 82.6 24 68.2 24 1018.9 8 1017.9 8 9.5 24 3.0 24 8.9 999.9 90.3* 75.4* 99.99 999.9 010010 724050 13743 19590820 80.9 24 66.2 24 1020.1 8 1019.1 8 8.1 24 1.5 24 8.0 999.9 93.4* 70.3* 0.00I 999.9 000000 724050 13743 19590821 83.3 24 70.1 24 1016.9 8 1015.9 8 5.8 24 4.3 24 8.9 999.9 96.3* 73.4* 0.00I 999.9 000000 724050 13743 19590822 86.9 24 72.8 24 1013.9 8 1012.9 8 7.6 24 5.6 24 18.1 999.9 95.4* 79.3* 0.00I 999.9 000000 724050 13743 19590823 79.3 24 71.9 24 1016.8 8 1015.8 8 9.0 24 5.4 24 14.0 999.9 90.3* 75.4* 99.99 999.9 110010 724050 13743 19590824 79.6 24 72.7 24 1019.8 8 1018.7 8 8.8 24 2.6 24 8.0 999.9 88.3* 74.3* 99.99 999.9 010000 724050 13743 19590825 81.2 24 71.8 24 1018.5 8 1017.4 8 7.0 24 3.5 24 9.9 999.9 94.3* 74.3* 0.00I 999.9 100000 724050 13743 19590826 84.6 24 72.4 24 1016.6 8 1015.6 8 8.0 24 2.3 24 7.0 999.9 95.4* 75.4* 0.00I 999.9 000000 724050 13743 19590827 84.3 24 73.0 24 1015.2 8 1014.2 8 6.6 24 4.4 24 8.9 999.9 92.3* 79.3* 0.00I 999.9 000000 724050 13743 19590828 84.6 24 71.0 24 1014.2 8 1013.2 8 7.7 24 3.6 24 9.9 999.9 93.4* 76.3* 0.00I 999.9 000000 724050 13743 19590829 81.5 24 71.2 24 1011.5 8 1010.5 8 8.6 24 2.6 24 9.9 999.9 88.3* 76.3* 0.00I 999.9 000000 724050 13743 19590830 78.5 24 71.5 24 1011.3 8 1010.3 8 8.0 24 4.4 24 9.9 999.9 85.3* 73.4* 99.99 999.9 110000 724050 13743 19590831 76.3 24 73.0 24 1011.3 8 1010.3 8 8.2 24 6.1 24 9.9 999.9 80.2* 74.3* 99.99 999.9 110000 724050 13743 19590901 78.8 24 73.4 24 1012.1 8 1011.0 8 7.5 24 4.2 24 7.0 999.9 88.3* 73.4* 99.99 999.9 110000 724050 13743 19590902 81.3 24 74.6 24 1010.1 8 1009.1 8 8.1 24 4.1 24 8.0 999.9 89.2* 72.3* 99.99 999.9 110010 724050 13743 19590903 82.9 24 72.2 24 1013.6 8 1012.6 8 9.4 24 4.4 24 8.9 999.9 91.2* 76.3* 99.99 999.9 010000 724050 13743 19590904 81.3 24 67.4 24 1018.9 8 1017.9 8 8.7 24 2.3 24 9.9 999.9 90.3* 73.4* 0.00I 999.9 000000 724050 13743 19590905 79.3 24 65.9 24 1020.9 8 1019.9 8 7.6 24 2.2 24 8.0 999.9 88.3* 70.3* 0.00I 999.9 000000 724050 13743 19590906 77.9 24 68.8 24 1022.0 8 1021.0 8 6.2 24 3.4 24 8.9 999.9 85.3* 71.2* 0.00I 999.9 100000 724050 13743 19590907 78.2 24 69.2 24 1022.1 8 1021.1 8 8.5 24 2.5 24 9.9 999.9 86.4* 71.2* 0.00I 999.9 100000 724050 13743 19590908 80.1 24 71.0 24 1021.3 8 1020.3 8 7.7 24 0.6 24 6.0 999.9 87.3* 73.4* 0.00I 999.9 100000 724050 13743 19590909 80.9 24 70.2 24 1020.8 8 1019.8 8 7.5 24 0.5 24 5.1 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19590910 79.8 24 68.8 24 1017.0 8 1016.0 8 5.0 24 1.6 24 7.0 999.9 88.3* 72.3* 0.00I 999.9 000000 724050 13743 19590911 72.2 24 58.4 24 1016.8 8 1015.8 8 11.1 24 8.8 24 16.9 999.9 76.3* 65.3* 0.00I 999.9 000000 724050 13743 19590912 66.5 24 48.5 24 1023.1 8 1022.0 8 11.9 24 7.1 24 13.0 999.9 76.3* 55.4* 0.00I 999.9 000000 724050 13743 19590913 67.4 24 49.1 24 1022.4 8 1021.4 8 11.9 24 2.3 24 8.0 999.9 79.3* 56.3* 0.00I 999.9 000000 724050 13743 19590914 68.2 24 53.2 24 1018.7 8 1017.6 8 9.4 24 2.2 24 7.0 999.9 81.3* 58.3* 0.00I 999.9 000000 724050 13743 19590915 70.4 24 57.3 24 1011.3 8 1010.3 8 9.0 24 5.1 24 8.9 999.9 81.3* 61.3* 0.00I 999.9 000000 724050 13743 19590916 64.5 24 53.0 24 1011.0 8 1009.9 8 10.7 24 5.6 24 9.9 999.9 74.3* 59.4* 0.00I 999.9 000000 724050 13743 19590917 57.7 24 40.5 24 1022.7 8 1021.7 8 10.9 24 5.5 24 15.0 999.9 66.4* 50.4* 99.99 999.9 010000 724050 13743 19590918 59.5 24 41.7 24 1025.2 8 1024.2 8 11.4 24 5.3 24 16.9 999.9 69.3* 51.3* 0.00I 999.9 000000 724050 13743 19590919 59.1 24 40.5 24 1032.4 8 1031.4 8 11.9 24 4.1 24 8.0 999.9 69.3* 48.4* 0.00I 999.9 000000 724050 13743 19590920 60.5 24 44.8 24 1031.2 8 1030.2 8 11.0 24 2.8 24 9.9 999.9 74.3* 49.3* 0.00I 999.9 000000 724050 13743 19590921 67.3 24 54.1 24 1025.9 8 1024.9 8 9.2 24 4.8 24 9.9 999.9 82.4* 57.4* 0.00I 999.9 000000 724050 13743 19590922 73.5 24 55.2 24 1021.2 8 1020.2 8 9.9 24 3.1 24 8.0 999.9 88.3* 61.3* 0.00I 999.9 000000 724050 13743 19590923 76.3 24 60.8 24 1022.4 8 1021.4 8 7.8 24 1.7 24 7.0 999.9 90.3* 65.3* 0.00I 999.9 000000 724050 13743 19590924 76.8 24 61.7 24 1022.3 8 1021.3 8 8.9 24 3.0 24 8.0 999.9 89.2* 66.4* 0.00I 999.9 000000 724050 13743 19590925 75.1 24 63.3 24 1020.5 8 1019.5 8 8.8 24 2.6 24 7.0 999.9 83.3* 66.4* 0.00I 999.9 000000 724050 13743 19590926 71.7 24 64.6 24 1021.1 8 1020.1 8 5.4 24 3.2 24 8.0 999.9 79.3* 66.4* 0.00I 999.9 100000 724050 13743 19590927 74.6 24 67.0 24 1020.2 8 1019.2 8 6.7 24 4.6 24 9.9 999.9 86.4* 67.3* 0.00I 999.9 100000 724050 13743 19590928 74.6 24 67.0 24 1022.1 8 1021.1 8 8.3 24 3.5 24 9.9 999.9 84.4* 66.4* 99.99 999.9 110000 724050 13743 19590929 76.8 24 72.7 24 1019.9 8 1018.8 8 6.8 24 3.6 24 8.0 999.9 82.4* 73.4* 99.99 999.9 110000 724050 13743 19590930 75.0 24 70.1 24 1016.6 8 1015.6 8 8.1 24 7.8 24 12.0 999.9 78.3* 73.4* 99.99 999.9 110000 724050 13743 19591001 76.1 24 69.0 24 1009.7 8 1008.6 8 8.9 24 9.6 24 14.0 999.9 81.3* 72.3* 99.99 999.9 110000 724050 13743 19591002 72.1 24 59.9 24 1015.1 8 1014.0 8 11.9 24 7.9 24 14.0 999.9 76.3* 66.4* 0.00I 999.9 000000 724050 13743 19591003 70.2 24 60.3 24 1019.7 8 1018.7 8 10.4 24 0.9 24 6.0 999.9 76.3* 66.4* 0.00I 999.9 000000 724050 13743 19591004 73.7 24 64.3 24 1018.7 8 1017.7 8 8.9 24 4.0 24 7.0 999.9 88.3* 65.3* 0.00I 999.9 000000 724050 13743 19591005 79.8 24 67.7 24 1018.4 8 1017.4 8 8.9 24 3.7 24 8.0 999.9 90.3* 71.2* 0.00I 999.9 000000 724050 13743 19591006 78.9 24 67.9 24 1015.0 8 1014.0 8 8.5 24 5.3 24 8.0 999.9 88.3* 71.2* 0.00I 999.9 000000 724050 13743 19591007 76.3 24 67.2 24 1011.2 8 1010.2 8 9.1 24 4.7 24 7.0 999.9 81.3* 70.3* 99.99 999.9 010000 724050 13743 19591008 74.6 24 69.4 24 1013.3 8 1012.3 8 5.9 24 1.9 24 7.0 999.9 83.3* 69.3* 99.99 999.9 110000 724050 13743 19591009 77.2 24 72.4 24 1012.1 8 1011.1 8 9.1 24 7.8 24 11.1 999.9 82.4* 74.3* 99.99 999.9 110000 724050 13743 19591010 76.1 24 67.2 24 1015.9 8 1014.9 8 9.5 24 1.1 24 4.1 999.9 83.3* 70.3* 99.99 999.9 110000 724050 13743 19591011 74.7 24 66.9 24 1013.0 8 1012.0 8 9.4 24 3.8 24 8.0 999.9 84.4* 71.2* 99.99 999.9 110000 724050 13743 19591012 64.5 24 39.3 24 1015.4 8 1014.3 8 11.8 24 10.8 24 16.9 999.9 73.4* 56.3* 0.00I 999.9 000000 724050 13743 19591013 59.1 24 41.4 24 1018.2 8 1017.2 8 11.4 24 2.9 24 9.9 999.9 68.4* 49.3* 99.99 999.9 010000 724050 13743 19591014 53.3 24 50.9 24 1012.6 8 1011.6 8 4.4 24 6.1 24 9.9 999.9 59.4* 50.4* 99.99 999.9 110000 724050 13743 19591015 53.4 24 42.9 24 1016.1 8 1015.0 8 8.8 24 8.0 24 11.1 999.9 61.3* 50.4* 99.99 999.9 110000 724050 13743 19591016 54.0 24 42.3 24 1023.3 8 1022.3 8 7.4 24 1.7 24 8.0 999.9 66.4* 44.4* 0.00I 999.9 000000 724050 13743 19591017 59.0 24 47.2 24 1017.7 8 1016.7 8 8.8 24 2.4 24 5.1 999.9 74.3* 49.3* 0.00I 999.9 000000 724050 13743 19591018 59.0 24 40.2 24 1012.3 8 1011.3 8 11.4 24 7.0 24 13.0 999.9 65.3* 50.4* 0.00I 999.9 000000 724050 13743 19591019 52.1 24 29.8 24 1018.9 8 1017.8 8 11.9 24 6.2 24 15.0 999.9 58.3* 43.3* 0.00I 999.9 000000 724050 13743 19591020 55.0 24 38.3 24 1021.7 8 1020.7 8 11.6 24 5.9 24 12.0 999.9 71.2* 45.3* 0.00I 999.9 000000 724050 13743 19591021 55.6 24 44.5 24 1023.9 8 1022.9 8 10.1 24 7.0 24 14.0 999.9 63.3* 51.3* 0.00I 999.9 000000 724050 13743 19591022 52.3 24 46.1 24 1028.6 8 1027.6 8 7.2 24 8.2 24 12.0 999.9 54.3* 51.3* 99.99 999.9 110000 724050 13743 19591023 59.8 24 56.1 24 1018.4 8 1017.4 8 3.0 24 3.2 24 9.9 999.9 76.3* 52.3* 99.99 999.9 110000 724050 13743 19591024 67.6 24 63.1 24 997.0 8 996.0 8 9.1 24 6.9 24 15.0 999.9 71.2* 61.3* 99.99 999.9 010000 724050 13743 19591025 57.0 24 47.5 24 994.0 8 993.0 8 10.4 24 4.5 24 9.9 999.9 64.4* 50.4* 0.00I 999.9 000000 724050 13743 19591026 52.5 24 37.0 24 1005.0 8 1004.0 8 11.9 24 6.8 24 11.1 999.9 59.4* 47.3* 0.00I 999.9 000000 724050 13743 19591027 53.7 24 46.1 24 1006.0 8 1005.0 8 9.6 24 8.7 24 19.0 999.9 59.4* 50.4* 99.99 999.9 010000 724050 13743 19591028 50.5 24 32.7 24 1021.1 8 1020.1 8 11.7 24 10.4 24 19.0 999.9 56.3* 46.4* 0.00I 999.9 000000 724050 13743 19591029 46.4 24 35.1 24 1030.0 8 1029.0 8 8.5 24 1.3 24 7.0 999.9 57.4* 36.3* 0.00I 999.9 000000 724050 13743 19591030 49.4 24 40.9 24 1032.1 8 1031.0 8 5.8 24 1.8 24 6.0 999.9 60.3* 41.4* 0.00I 999.9 000000 724050 13743 19591031 57.1 24 51.8 24 1024.7 8 1023.6 8 6.9 24 3.5 24 8.9 999.9 62.4* 54.3* 99.99 999.9 110000 724050 13743 19591101 61.7 24 50.1 24 1008.5 8 1007.5 8 9.1 24 7.7 24 22.0 999.9 67.3* 58.3* 99.99 999.9 110000 724050 13743 19591102 53.1 24 35.4 24 1005.7 8 1004.7 8 10.7 24 9.7 24 25.1 999.9 58.3* 48.4* 99.99 999.9 010000 724050 13743 19591103 44.3 24 25.5 24 1019.3 8 1018.3 8 11.9 24 6.0 24 16.9 999.9 53.4* 35.4* 0.00I 999.9 000000 724050 13743 19591104 56.9 24 36.1 24 1017.7 8 1016.7 8 11.9 24 7.8 24 9.9 999.9 69.3* 50.4* 99.99 999.9 010000 724050 13743 19591105 68.0 24 57.6 24 1019.4 8 1018.4 8 11.0 24 8.7 24 13.0 999.9 76.3* 62.4* 0.00I 999.9 000000 724050 13743 19591106 68.8 24 62.9 24 1018.7 8 1017.7 8 8.8 24 10.2 24 16.9 999.9 77.4* 53.4* 99.99 999.9 110000 724050 13743 19591107 44.2 24 35.3 24 1025.7 8 1024.7 8 8.7 24 13.0 24 16.9 999.9 53.4* 38.3* 99.99 999.9 110000 724050 13743 19591108 40.5 24 25.7 24 1027.8 8 1026.8 8 11.9 24 7.6 24 9.9 999.9 49.3* 34.3* 0.00I 999.9 000000 724050 13743 19591109 42.8 24 27.7 24 1025.8 8 1024.8 8 10.1 24 2.1 24 8.0 999.9 55.4* 33.4* 0.00I 999.9 000000 724050 13743 19591110 45.6 24 31.1 24 1026.2 8 1025.2 8 7.0 24 1.1 24 5.1 999.9 59.4* 36.3* 0.00I 999.9 000000 724050 13743 19591111 47.2 24 34.3 24 1026.4 8 1025.4 8 6.4 24 3.5 24 8.9 999.9 57.4* 38.3* 0.00I 999.9 000000 724050 13743 19591112 52.3 24 36.3 24 1022.0 8 1021.0 8 9.5 24 4.5 24 9.9 999.9 59.4* 46.4* 0.00I 999.9 000000 724050 13743 19591113 50.2 24 36.8 24 1026.0 8 1025.0 8 6.8 24 0.9 24 5.1 999.9 66.4* 39.4* 0.00I 999.9 000000 724050 13743 19591114 63.1 24 59.6 24 1022.6 8 1021.5 8 4.0 24 3.2 24 8.0 999.9 68.4* 59.4* 99.99 999.9 110000 724050 13743 19591115 49.6 24 37.2 24 1025.7 8 1024.7 8 11.5 24 13.4 24 22.9 999.9 66.4* 43.3* 99.99 999.9 010000 724050 13743 19591116 48.1 24 35.1 24 1025.6 8 1024.6 8 8.7 24 2.0 24 7.0 999.9 52.3* 45.3* 99.99 999.9 010000 724050 13743 19591117 49.2 24 41.8 24 1019.0 8 1018.0 8 7.0 24 9.3 24 26.0 999.9 53.4* 36.3* 99.99 999.9 110000 724050 13743 19591118 28.5 24 7.4 24 1028.8 8 1027.8 8 11.9 24 12.6 24 26.0 999.9 36.3* 22.5* 0.00I 999.9 000000 724050 13743 19591119 37.5 24 14.9 24 1021.1 8 1020.0 8 11.7 24 6.0 24 14.0 999.9 51.3* 30.4* 0.00I 999.9 000000 724050 13743 19591120 40.2 24 22.9 24 1025.5 8 1024.5 8 9.4 24 2.7 24 9.9 999.9 49.3* 30.4* 0.00I 999.9 000000 724050 13743 19591121 41.8 24 33.2 24 1019.1 8 1018.1 8 8.5 24 5.7 24 9.9 999.9 45.3* 39.4* 99.99 999.9 110000 724050 13743 19591122 46.7 24 38.2 24 1017.8 8 1016.8 8 4.8 24 2.0 24 8.0 999.9 58.3* 37.4* 0.00I 999.9 100000 724050 13743 19591123 44.4 24 37.7 24 1021.8 8 1020.8 8 4.0 24 1.5 24 7.0 999.9 52.3* 37.4* 99.99 999.9 010000 724050 13743 19591124 51.5 24 49.2 24 1007.1 8 1006.1 8 3.3 24 5.5 24 12.0 999.9 57.4* 49.3* 99.99 999.9 110000 724050 13743 19591125 47.7 24 30.4 24 997.3 8 996.3 8 10.9 24 11.2 24 22.0 999.9 53.4* 40.3* 99.99 999.9 110000 724050 13743 19591126 37.6 24 20.5 24 1018.5 8 1017.4 8 10.1 24 4.3 24 18.1 999.9 48.4* 29.3* 0.00I 999.9 000000 724050 13743 19591127 53.6 24 42.4 24 1021.4 8 1020.4 8 11.6 24 6.3 24 12.0 999.9 66.4* 43.3* 0.00I 999.9 000000 724050 13743 19591128 56.4 24 47.8 24 1010.6 8 1009.6 8 10.2 24 14.3 24 22.0 999.9 67.3* 44.4* 99.99 999.9 110000 724050 13743 19591129 38.1 24 22.0 24 1014.9 8 1013.9 8 11.9 24 15.5 24 20.0 999.9 43.3* 31.3* 0.00I 999.9 000000 724050 13743 19591130 34.6 24 16.3 24 1022.5 8 1021.5 8 11.8 24 10.2 24 16.9 999.9 46.4* 28.4* 0.00I 999.9 000000 724050 13743 19591201 41.7 24 20.7 24 1024.8 8 1023.8 8 11.0 24 2.8 24 8.9 999.9 50.4* 35.4* 0.00I 999.9 000000 724050 13743 19591202 42.1 24 27.5 24 1024.4 8 1023.4 8 9.1 24 1.8 24 6.0 999.9 55.4* 32.4* 0.00I 999.9 000000 724050 13743 19591203 43.7 24 30.9 24 1018.6 8 1017.6 8 6.2 24 2.0 24 9.9 999.9 55.4* 35.4* 0.00I 999.9 000000 724050 13743 19591204 46.1 24 29.9 24 1017.7 8 1016.6 8 8.0 24 1.5 24 8.0 999.9 60.3* 36.3* 0.00I 999.9 000000 724050 13743 19591205 43.2 24 35.0 24 1020.6 8 1019.6 8 3.7 24 0.4 24 6.0 999.9 52.3* 35.4* 0.00I 999.9 000000 724050 13743 19591206 47.6 24 43.5 24 1011.4 8 1010.4 8 4.0 24 2.1 24 9.9 999.9 50.4* 44.4* 99.99 999.9 110000 724050 13743 19591207 41.6 24 28.9 24 994.6 8 993.6 8 9.5 24 15.9 24 26.0 999.9 47.3* 35.4* 99.99 999.9 111000 724050 13743 19591208 41.3 24 20.6 24 1010.5 8 1009.4 8 11.8 24 9.1 24 15.9 999.9 51.3* 34.3* 0.00I 999.9 000000 724050 13743 19591209 42.5 24 26.2 24 1021.5 8 1020.5 8 9.9 24 3.2 24 12.0 999.9 58.3* 32.4* 0.00I 999.9 000000 724050 13743 19591210 44.8 24 19.0 24 1025.3 8 1024.2 8 11.5 24 3.8 24 14.0 999.9 52.3* 39.4* 0.00I 999.9 000000 724050 13743 19591211 42.8 24 23.4 24 1024.9 8 1023.9 8 7.7 24 2.5 24 8.9 999.9 54.3* 34.3* 0.00I 999.9 000000 724050 13743 19591212 53.6 24 46.9 24 1011.3 8 1010.3 8 4.8 24 5.0 24 14.0 999.9 60.3* 48.4* 99.99 999.9 110000 724050 13743 19591213 51.4 24 41.7 24 1001.5 8 1000.5 8 10.7 24 13.4 24 26.0 999.9 60.3* 44.4* 99.99 999.9 010000 724050 13743 19591214 40.9 24 22.4 24 1022.8 8 1021.7 8 11.9 24 10.6 24 20.0 999.9 47.3* 35.4* 0.00I 999.9 000000 724050 13743 19591215 40.5 24 22.0 24 1026.9 8 1025.9 8 9.7 24 3.2 24 12.0 999.9 51.3* 31.3* 0.00I 999.9 000000 724050 13743 19591216 47.7 24 30.5 24 1019.3 8 1018.3 8 10.4 24 3.8 24 15.0 999.9 61.3* 40.3* 0.00I 999.9 000000 724050 13743 19591217 50.1 24 41.1 24 1020.3 8 1019.3 8 5.1 24 0.0 24 999.9 999.9 54.3* 45.3* 99.99 999.9 010000 724050 13743 19591218 46.9 24 44.4 24 1020.0 8 1019.0 8 2.9 24 3.1 24 8.0 999.9 52.3* 43.3* 99.99 999.9 110000 724050 13743 19591219 42.1 24 28.0 24 1018.1 8 1017.1 8 10.5 24 14.6 24 22.0 999.9 46.4* 38.3* 99.99 999.9 110000 724050 13743 19591220 34.2 24 15.8 24 1029.6 8 1028.6 8 11.8 24 5.0 24 16.9 999.9 39.4* 28.4* 0.00I 999.9 000000 724050 13743 19591221 36.5 24 23.8 24 1029.2 8 1028.2 8 11.0 24 2.8 24 11.1 999.9 40.3* 33.4* 99.99 999.9 001000 724050 13743 19591222 32.5 24 21.5 24 1027.3 8 1026.3 8 10.1 24 10.2 24 16.9 999.9 34.3* 28.4* 99.99 999.9 101000 724050 13743 19591223 25.9 24 12.8 24 1035.6 8 1034.6 8 10.4 24 5.9 24 9.9 999.9 30.4* 19.4* 0.00I 999.9 000000 724050 13743 19591224 27.4 24 12.6 24 1037.6 8 1036.5 8 6.2 24 3.7 24 7.0 999.9 35.4* 22.5* 99.99 999.9 001000 724050 13743 19591225 34.3 24 30.1 24 1034.4 8 1033.4 8 2.5 24 0.3 24 4.1 999.9 40.3* 31.3* 99.99 999.9 111000 724050 13743 19591226 39.5 24 36.1 24 1028.7 8 1027.7 8 1.8 24 0.0 24 999.9 999.9 46.4* 34.3* 0.00I 999.9 100000 724050 13743 19591227 50.1 24 43.2 24 1021.3 8 1020.3 8 4.6 24 1.1 24 6.0 999.9 64.4* 45.3* 99.99 999.9 110000 724050 13743 19591228 52.4 24 48.7 24 1009.4 8 1008.4 8 5.7 24 3.0 24 8.0 999.9 61.3* 46.4* 99.99 999.9 110000 724050 13743 19591229 49.2 24 45.7 24 997.3 8 996.3 8 6.2 24 3.6 24 8.9 999.9 61.3* 43.3* 99.99 999.9 110000 724050 13743 19591230 42.6 24 32.5 24 1008.3 8 1007.3 8 10.3 24 3.5 24 9.9 999.9 47.3* 39.4* 0.00I 999.9 100000 724050 13743 19591231 38.7 24 26.5 24 1017.5 8 1016.5 8 9.9 24 6.2 24 16.9 999.9 42.4* 34.3* 99.99 999.9 111000 fluids-1.0.22/tests/gsod/1943/0000755000175000017500000000000014302004506015100 5ustar nileshnileshfluids-1.0.22/tests/gsod/1943/724050-13743.op0000644000175000017500000014327214302004506016671 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19430101 36.5 24 31.8 24 1016.4 24 9999.9 0 3.0 24 1.5 24 8.9 999.9 43.0* 32.0* 99.99 999.9 110000 724050 13743 19430102 41.2 24 33.4 24 1019.7 24 9999.9 0 6.1 24 4.4 24 13.0 999.9 46.4* 36.0* 0.00I 999.9 000000 724050 13743 19430103 37.6 24 31.9 24 1021.3 24 9999.9 0 3.7 24 4.4 24 12.0 999.9 41.0* 34.3* 99.99 999.9 010000 724050 13743 19430104 38.7 24 29.5 24 1011.5 24 9999.9 0 5.0 24 15.3 24 42.9 999.9 44.4* 32.0* 99.99 999.9 110000 724050 13743 19430105 29.5 24 11.1 24 1024.9 24 9999.9 0 6.9 24 19.2 24 28.0 999.9 33.4* 25.3* 0.00I 999.9 000000 724050 13743 19430106 28.3 24 11.7 24 1029.5 24 9999.9 0 25.2 24 8.4 24 21.0 999.9 35.4* 22.5* 0.00I 999.9 000000 724050 13743 19430107 35.8 24 24.0 24 1028.0 24 9999.9 0 3.8 24 4.3 24 13.0 999.9 39.9* 32.4* 0.00I 999.9 000000 724050 13743 19430108 33.6 24 30.5 24 1024.0 24 9999.9 0 3.1 24 4.7 24 8.9 999.9 36.3* 30.9* 99.99 999.9 101000 724050 13743 19430109 31.9 24 21.7 23 1018.3 24 9999.9 0 3.4 24 6.0 24 13.0 999.9 35.4* 27.0* 99.99 999.9 101000 724050 13743 19430110 31.2 24 25.9 24 1016.7 24 9999.9 0 2.8 24 4.2 24 12.0 999.9 35.4* 27.3* 99.99 999.9 101000 724050 13743 19430111 35.2 24 30.0 24 1017.0 24 9999.9 0 2.4 24 5.3 24 15.9 999.9 45.3* 28.9* 99.99 999.9 101000 724050 13743 19430112 37.6 24 24.2 24 1010.8 23 9999.9 0 9.2 24 9.9 24 18.1 999.9 41.4* 33.1* 0.00I 999.9 000000 724050 13743 19430113 28.7 24 10.8 24 1020.1 24 9999.9 0 6.8 24 12.1 24 20.0 999.9 33.4* 23.0* 0.00I 999.9 000000 724050 13743 19430114 30.5 24 19.6 24 1012.2 24 9999.9 0 3.0 24 4.5 24 13.0 999.9 45.3* 19.4* 0.00I 999.9 000000 724050 13743 19430115 44.5 24 27.2 23 1001.5 24 9999.9 0 27.9 24 10.9 24 22.0 999.9 52.3* 37.0* 0.00I 999.9 000000 724050 13743 19430116 52.8 24 38.4 24 1005.2 24 9999.9 0 5.0 24 9.3 24 19.0 999.9 66.0* 39.9* 99.99 999.9 010000 724050 13743 19430117 61.1 24 53.3 24 1009.0 24 9999.9 0 4.5 24 6.2 24 17.1 999.9 72.3* 53.1* 0.00I 999.9 100000 724050 13743 19430118 41.5 24 39.6 24 1015.4 24 9999.9 0 1.7 24 6.3 24 17.1 999.9 50.0* 37.0* 99.99 999.9 110000 724050 13743 19430119 39.7 24 33.5 24 1010.6 24 9999.9 0 26.7 24 13.5 24 35.9 999.9 48.0* 31.3* 99.99 999.9 110000 724050 13743 19430120 22.8 24 2.6 24 1033.7 24 9999.9 0 79.8 24 17.1 24 35.0 999.9 30.4* 15.1* 0.00I 999.9 000000 724050 13743 19430121 29.1 24 12.7 24 1024.0 24 9999.9 0 31.6 24 6.5 24 15.9 999.9 38.3* 21.9* 0.00I 999.9 000000 724050 13743 19430122 28.9 24 18.7 24 1018.1 24 9999.9 0 23.2 24 6.0 24 17.1 999.9 39.0* 20.3* 0.00I 999.9 000000 724050 13743 19430123 37.3 24 30.3 24 1014.1 24 9999.9 0 2.9 24 3.9 24 12.0 999.9 54.3* 27.3* 0.00I 999.9 100000 724050 13743 19430124 40.7 24 34.3 24 1013.5 24 9999.9 0 1.4 24 2.7 24 10.1 999.9 55.4* 30.9* 0.00I 999.9 100000 724050 13743 19430125 50.0 24 44.6 24 1010.0 24 9999.9 0 1.8 24 2.6 24 10.1 999.9 72.3* 39.9* 99.99 999.9 110000 724050 13743 19430126 45.2 24 38.4 24 1019.4 24 9999.9 0 2.6 24 9.4 24 22.0 999.9 62.1* 33.4* 99.99 999.9 110000 724050 13743 19430127 29.7 24 26.9 24 1030.2 24 9999.9 0 2.4 24 9.2 24 22.0 999.9 33.1* 27.0* 99.99 999.9 111000 724050 13743 19430128 29.4 24 24.9 24 1026.9 24 9999.9 0 3.2 24 11.4 24 22.9 999.9 30.4* 27.3* 99.99 999.9 111000 724050 13743 19430129 31.2 24 27.2 24 1027.5 24 9999.9 0 2.7 24 8.7 24 22.0 999.9 33.4* 28.9* 99.99 999.9 111000 724050 13743 19430130 32.7 24 28.2 24 1029.9 24 9999.9 0 2.8 24 6.8 24 15.9 999.9 34.3* 30.0* 99.99 999.9 111000 724050 13743 19430131 32.6 24 31.1 24 1027.5 24 9999.9 0 1.8 24 6.2 24 12.0 999.9 35.4* 30.0* 0.00I 999.9 100000 724050 13743 19430201 38.7 24 30.7 24 1018.2 24 9999.9 0 42.3 24 12.6 24 28.0 999.9 45.0* 32.0* 99.99 999.9 110000 724050 13743 19430202 35.0 24 21.4 24 1023.4 24 9999.9 0 71.8 24 9.3 24 19.0 999.9 42.4* 29.3* 0.00I 999.9 000000 724050 13743 19430203 33.1 24 21.9 24 1028.1 24 9999.9 0 4.5 24 5.5 24 16.9 999.9 38.3* 24.4* 99.99 999.9 011000 724050 13743 19430204 41.5 24 38.1 24 1016.4 24 9999.9 0 2.6 24 9.2 24 19.0 999.9 50.4* 36.0* 99.99 999.9 110000 724050 13743 19430205 48.0 24 41.8 24 1013.0 24 9999.9 0 1.9 24 3.6 24 13.0 999.9 53.4* 39.9* 99.99 999.9 110000 724050 13743 19430206 44.4 24 42.1 24 1006.9 24 9999.9 0 2.3 24 4.8 24 11.1 999.9 50.4* 39.9* 99.99 999.9 110010 724050 13743 19430207 40.2 24 28.4 24 1003.2 24 9999.9 0 6.6 24 12.5 24 23.9 999.9 44.4* 35.4* 99.99 999.9 110000 724050 13743 19430208 40.2 24 25.0 24 1011.9 24 9999.9 0 10.8 24 17.3 24 30.1 999.9 48.4* 34.0* 0.00I 999.9 000000 724050 13743 19430209 38.7 24 23.0 24 1017.0 24 9999.9 0 3.9 24 3.8 24 15.9 999.9 50.4* 28.9* 0.00I 999.9 000000 724050 13743 19430210 42.0 24 27.7 24 1017.8 24 9999.9 0 5.4 24 6.1 24 13.0 999.9 50.4* 34.3* 0.00I 999.9 000000 724050 13743 19430211 45.1 24 39.6 24 1005.3 24 9999.9 0 4.0 24 8.5 24 22.0 999.9 50.4* 35.1* 99.99 999.9 111000 724050 13743 19430212 33.6 24 18.7 24 1020.6 24 9999.9 0 6.2 24 9.4 24 22.9 999.9 41.4* 28.0* 0.00I 999.9 000000 724050 13743 19430213 37.5 24 28.5 24 1014.2 24 9999.9 0 4.9 24 8.0 24 19.0 999.9 42.4* 33.1* 99.99 999.9 011000 724050 13743 19430214 23.8 24 7.7 24 1010.3 24 9999.9 0 5.4 24 21.7 24 33.0 999.9 35.1* 15.1* 99.99 999.9 001000 724050 13743 19430215 13.5 24 -1.8 24 1023.6 24 9999.9 0 6.3 24 21.0 24 33.0 999.9 20.3* 7.0* 0.00I 999.9 000000 724050 13743 19430216 17.3 24 0.8 24 1031.6 24 9999.9 0 5.6 24 10.5 24 22.0 999.9 27.0* 9.0* 0.00I 999.9 000000 724050 13743 19430217 27.5 24 11.3 24 1026.5 24 9999.9 0 4.4 24 7.1 24 15.9 999.9 42.1* 18.0* 0.00I 999.9 000000 724050 13743 19430218 28.9 24 8.5 24 1034.4 24 9999.9 0 6.9 24 10.7 24 22.0 999.9 37.4* 18.0* 0.00I 999.9 000000 724050 13743 19430219 39.9 24 17.1 24 1028.3 24 9999.9 0 5.0 24 5.7 24 13.0 999.9 62.4* 27.0* 0.00I 999.9 000000 724050 13743 19430220 49.3 24 32.9 23 1018.5 24 9999.9 0 3.3 24 5.2 24 17.1 999.9 69.1* 34.3* 0.00I 999.9 000000 724050 13743 19430221 56.6 24 42.3 24 1012.4 24 9999.9 0 3.4 24 5.2 24 14.0 999.9 66.9* 42.1* 0.00I 999.9 000000 724050 13743 19430222 53.9 24 43.0 24 1014.0 24 9999.9 0 2.6 24 2.6 24 10.1 999.9 66.0* 41.4* 99.99 999.9 010000 724050 13743 19430223 52.4 24 41.5 24 1014.2 24 9999.9 0 2.2 24 3.2 24 20.0 999.9 73.4* 37.4* 0.00I 999.9 100000 724050 13743 19430224 61.1 24 48.4 24 1009.0 24 9999.9 0 4.1 24 9.1 24 20.0 999.9 70.3* 55.0* 99.99 999.9 010010 724050 13743 19430225 43.3 24 29.1 24 1018.2 24 9999.9 0 13.1 24 14.1 24 22.0 999.9 57.0* 36.0* 0.00I 999.9 000000 724050 13743 19430226 38.0 24 28.4 24 1013.4 24 9999.9 0 3.9 24 2.7 24 14.0 999.9 42.4* 34.0* 99.99 999.9 011000 724050 13743 19430227 31.0 24 18.1 24 1009.9 24 9999.9 0 28.8 24 15.5 24 22.9 999.9 38.3* 21.9* 99.99 999.9 001000 724050 13743 19430228 41.7 24 21.8 24 1008.2 24 9999.9 0 24.7 24 12.7 24 28.0 999.9 56.3* 30.9* 0.00I 999.9 000000 724050 13743 19430301 43.3 24 23.0 24 1014.9 24 9999.9 0 5.5 24 10.0 24 22.0 999.9 53.1* 35.4* 0.00I 999.9 000000 724050 13743 19430302 38.3 24 22.7 23 1020.8 24 9999.9 0 12.8 24 9.5 24 16.9 999.9 43.3* 35.4* 0.00I 999.9 000000 724050 13743 19430303 30.3 24 20.1 24 1012.3 24 9999.9 0 4.9 24 14.4 24 29.9 999.9 35.4* 24.4* 99.99 999.9 011000 724050 13743 19430304 21.4 24 -0.1 24 1023.8 24 9999.9 0 14.1 24 13.0 24 23.9 999.9 32.4* 12.4* 0.00I 999.9 000000 724050 13743 19430305 38.0 24 14.9 24 1020.8 24 9999.9 0 5.4 24 7.8 24 15.9 999.9 53.4* 29.3* 0.00I 999.9 000000 724050 13743 19430306 39.9 24 34.3 24 1013.0 24 9999.9 0 3.0 24 8.2 24 15.0 999.9 43.3* 36.3* 99.99 999.9 111000 724050 13743 19430307 35.6 24 23.4 23 1014.3 24 9999.9 0 52.4 24 15.4 24 25.1 999.9 40.3* 30.4* 0.00I 999.9 000000 724050 13743 19430308 26.3 24 8.1 24 1034.0 24 9999.9 0 44.5 24 13.3 24 19.0 999.9 31.3* 21.4* 0.00I 999.9 000000 724050 13743 19430309 29.8 24 11.0 24 1043.9 24 9999.9 0 24.5 24 6.8 24 13.0 999.9 41.4* 20.3* 0.00I 999.9 000000 724050 13743 19430310 40.7 24 30.4 24 1036.1 23 9999.9 0 9.1 24 4.1 24 12.0 999.9 60.3* 30.4* 0.00I 999.9 100000 724050 13743 19430311 52.2 24 44.9 24 1023.0 24 9999.9 0 5.0 24 9.0 24 15.0 999.9 62.4* 46.4* 99.99 999.9 110000 724050 13743 19430312 54.6 24 43.4 24 1016.7 24 9999.9 0 5.0 24 10.0 24 16.9 999.9 60.3* 50.4* 99.99 999.9 010000 724050 13743 19430313 41.3 24 35.7 24 1021.3 24 9999.9 0 2.7 24 5.6 24 13.0 999.9 48.4* 34.3* 99.99 999.9 111000 724050 13743 19430314 41.8 24 32.1 24 1030.8 24 9999.9 0 2.5 24 1.8 24 8.0 999.9 60.3* 30.4* 0.00I 999.9 000000 724050 13743 19430315 51.1 24 35.4 24 1028.9 24 9999.9 0 4.7 24 6.4 24 12.0 999.9 70.3* 36.3* 0.00I 999.9 000000 724050 13743 19430316 62.9 24 55.1 24 1020.8 24 9999.9 0 4.8 24 7.7 24 16.9 999.9 73.4* 54.3* 99.99 999.9 110000 724050 13743 19430317 57.7 24 49.7 24 1017.8 24 9999.9 0 5.1 24 10.0 24 15.9 999.9 69.3* 45.3* 99.99 999.9 010000 724050 13743 19430318 50.6 24 41.3 24 1023.5 24 9999.9 0 3.0 24 5.7 24 8.9 999.9 66.4* 40.3* 0.00I 999.9 100000 724050 13743 19430319 60.6 24 52.1 24 1016.9 24 9999.9 0 7.7 24 8.6 24 15.9 999.9 77.4* 51.3* 99.99 999.9 110000 724050 13743 19430320 63.4 24 49.3 24 1012.4 24 9999.9 0 21.4 24 12.2 24 22.0 999.9 72.3* 55.4* 99.99 999.9 010000 724050 13743 19430321 40.6 24 25.9 24 1023.4 24 9999.9 0 9.5 24 12.6 24 22.9 999.9 54.3* 33.4* 99.99 999.9 101000 724050 13743 19430322 35.4 24 29.2 24 1019.4 24 9999.9 0 34.0 24 13.8 24 22.0 999.9 44.4* 30.4* 99.99 999.9 101000 724050 13743 19430323 38.9 24 20.6 24 1026.2 24 9999.9 0 84.1 24 15.6 24 22.9 999.9 48.4* 30.4* 0.00I 999.9 000000 724050 13743 19430324 46.3 24 23.4 24 1025.4 24 9999.9 0 4.9 24 6.4 24 16.9 999.9 61.3* 34.3* 0.00I 999.9 000000 724050 13743 19430325 54.8 23 32.9 23 1019.4 23 9999.9 0 3.9 23 9.6 23 19.0 999.9 67.3* 43.3* 0.00I 999.9 000000 724050 13743 19430326 55.6 24 38.5 24 1017.5 24 9999.9 0 7.2 24 4.0 24 19.0 999.9 75.4* 40.3* 0.00I 999.9 100000 724050 13743 19430327 57.0 24 50.5 23 1010.0 24 9999.9 0 3.2 24 5.0 24 14.0 999.9 61.3* 52.3* 99.99 999.9 110000 724050 13743 19430328 47.3 24 31.9 24 1014.6 24 9999.9 0 40.9 24 10.9 24 18.1 999.9 55.4* 39.4* 99.99 999.9 110000 724050 13743 19430329 40.8 24 15.4 24 1027.6 24 9999.9 0 87.8 24 7.6 24 14.0 999.9 51.3* 30.4* 0.00I 999.9 000000 724050 13743 19430330 50.6 24 29.7 24 1024.3 24 9999.9 0 36.8 24 6.8 24 12.0 999.9 76.3* 35.4* 0.00I 999.9 000000 724050 13743 19430331 68.2 24 40.5 24 1015.9 24 9999.9 0 5.3 24 7.7 24 13.0 999.9 83.3* 55.4* 0.00I 999.9 000000 724050 13743 19430401 59.2 24 47.0 24 1012.0 24 9999.9 0 3.2 24 5.1 24 15.9 999.9 80.2* 44.4* 99.99 999.9 110000 724050 13743 19430402 56.0 24 45.2 24 1009.3 24 9999.9 0 16.1 24 9.4 24 28.0 999.9 65.3* 47.3* 0.00I 999.9 000000 724050 13743 19430403 40.1 24 19.9 24 1019.7 24 9999.9 0 57.0 24 23.0 24 29.9 999.9 48.4* 32.4* 0.00I 999.9 000000 724050 13743 19430404 42.4 24 16.8 24 1024.9 24 9999.9 0 29.8 24 10.6 24 22.9 999.9 54.3* 33.4* 0.00I 999.9 000000 724050 13743 19430405 55.8 24 25.8 24 1008.7 24 9999.9 0 52.9 24 17.9 24 30.9 999.9 62.4* 46.4* 99.99 999.9 010000 724050 13743 19430406 42.6 24 16.4 24 1018.3 24 9999.9 0 99.4 24 26.6 24 39.0 999.9 50.4* 34.3* 0.00I 999.9 000000 724050 13743 19430407 41.0 24 16.1 24 1024.8 24 9999.9 0 44.2 24 8.4 24 22.0 999.9 48.4* 32.4* 0.00I 999.9 000000 724050 13743 19430408 53.4 24 33.2 24 1015.3 24 9999.9 0 4.6 24 8.5 24 15.9 999.9 71.2* 42.4* 0.00I 999.9 000000 724050 13743 19430409 55.5 24 37.6 24 1016.3 24 9999.9 0 3.6 24 3.4 24 12.0 999.9 71.2* 40.3* 0.00I 999.9 000000 724050 13743 19430410 56.0 24 41.7 24 1009.0 24 9999.9 0 4.8 24 7.9 24 21.0 999.9 63.3* 49.3* 99.99 999.9 110000 724050 13743 19430411 45.4 24 19.2 23 1017.8 24 9999.9 0 57.0 24 13.0 24 19.0 999.9 56.3* 34.3* 0.00I 999.9 000000 724050 13743 19430412 48.3 24 34.3 24 1003.3 24 9999.9 0 4.5 24 10.0 24 28.0 999.9 58.3* 44.4* 99.99 999.9 110000 724050 13743 19430413 54.1 24 34.9 24 997.1 24 9999.9 0 9.4 24 15.3 24 33.0 999.9 68.4* 40.3* 99.99 999.9 010010 724050 13743 19430414 40.6 24 25.1 24 1005.0 24 9999.9 0 48.4 24 15.9 24 28.0 999.9 45.3* 37.4* 99.99 999.9 010000 724050 13743 19430415 37.8 24 18.6 24 1016.8 24 9999.9 0 48.6 24 13.0 24 22.9 999.9 45.3* 32.4* 99.99 999.9 001000 724050 13743 19430416 45.0 24 23.2 24 1021.5 24 9999.9 0 29.0 24 9.6 24 26.0 999.9 63.3* 29.3* 0.00I 999.9 000000 724050 13743 19430417 58.3 24 39.2 24 1018.9 24 9999.9 0 4.8 24 6.6 24 14.0 999.9 67.3* 53.4* 99.99 999.9 010000 724050 13743 19430418 51.5 24 33.4 24 1025.6 24 9999.9 0 9.5 24 8.2 24 13.0 999.9 62.4* 43.3* 0.00I 999.9 000000 724050 13743 19430419 45.3 24 42.5 24 1013.3 24 9999.9 0 7.5 24 11.1 24 20.0 999.9 53.4* 42.4* 99.99 999.9 110000 724050 13743 19430420 48.8 24 42.6 24 1007.6 24 9999.9 0 19.9 24 6.1 24 12.0 999.9 63.3* 40.3* 99.99 999.9 110000 724050 13743 19430421 50.8 24 41.7 24 1010.5 24 9999.9 0 13.5 24 9.8 24 20.0 999.9 57.4* 45.3* 99.99 999.9 110010 724050 13743 19430422 50.9 24 36.6 24 1019.6 24 9999.9 0 4.7 24 9.5 24 14.0 999.9 59.4* 46.4* 99.99 999.9 010000 724050 13743 19430423 52.4 24 37.4 24 1022.4 24 9999.9 0 23.6 24 3.5 24 15.9 999.9 66.4* 39.4* 0.00I 999.9 000000 724050 13743 19430424 55.8 24 39.6 24 1019.2 24 9999.9 0 31.8 24 4.7 24 9.9 999.9 70.3* 41.4* 0.00I 999.9 000000 724050 13743 19430425 64.4 24 42.4 24 1015.4 24 9999.9 0 16.9 24 7.0 24 15.9 999.9 80.2* 51.3* 0.00I 999.9 000000 724050 13743 19430426 69.2 24 47.8 23 1015.1 24 9999.9 0 24.7 24 7.4 24 14.0 999.9 74.3* 64.4* 99.99 999.9 010000 724050 13743 19430427 62.1 24 49.9 24 1020.0 24 9999.9 0 32.7 24 7.6 24 11.1 999.9 74.3* 51.3* 0.00I 999.9 000000 724050 13743 19430428 71.0 24 58.2 24 1012.5 24 9999.9 0 5.3 24 12.0 24 35.9 999.9 78.3* 62.4* 0.00I 999.9 000000 724050 13743 19430429 55.8 23 37.7 23 1025.7 23 9999.9 0 79.3 23 9.6 23 21.0 999.9 65.3* 45.3* 0.00I 999.9 000000 724050 13743 19430430 60.9 24 45.0 24 1015.8 23 9999.9 0 21.5 24 13.6 24 33.0 999.9 77.4* 53.4* 99.99 999.9 010000 724050 13743 19430501 56.0 24 29.7 24 1018.7 24 9999.9 0 56.6 24 23.3 24 35.0 999.9 71.2* 45.0* 0.00I 999.9 000000 724050 13743 19430502 53.4 24 29.3 24 1024.4 24 9999.9 0 52.6 24 7.5 24 22.0 999.9 65.3* 39.0* 0.00I 999.9 000000 724050 13743 19430503 67.4 24 45.9 24 1008.3 24 9999.9 0 13.0 24 13.9 24 26.0 999.9 81.3* 52.0* 99.99 999.9 010000 724050 13743 19430504 58.3 24 36.0 24 1018.3 24 9999.9 0 37.5 24 19.0 24 28.0 999.9 70.0* 51.1* 0.00I 999.9 000000 724050 13743 19430505 59.2 24 32.8 24 1024.2 24 9999.9 0 45.1 24 4.7 24 15.9 999.9 70.3* 46.0* 0.00I 999.9 000000 724050 13743 19430506 65.6 24 44.7 24 1017.8 22 1016.5 19 7.7 24 5.8 24 22.0 999.9 90.3* 51.1* 0.00I 999.9 000000 724050 13743 19430507 76.8 24 58.9 24 1012.3 24 9999.9 0 5.5 24 10.0 24 17.1 999.9 90.3* 63.0* 0.00I 999.9 000000 724050 13743 19430508 75.0 24 60.2 24 1012.8 24 9999.9 0 13.3 24 10.1 24 26.0 999.9 89.2* 62.1* 99.99 999.9 110010 724050 13743 19430509 70.3 24 59.1 24 1020.0 24 9999.9 0 21.8 24 8.1 24 17.1 999.9 78.3* 62.1* 99.99 999.9 110010 724050 13743 19430510 67.0 24 61.4 24 1019.4 24 9999.9 0 3.9 24 7.2 24 13.0 999.9 80.1* 59.0* 99.99 999.9 110010 724050 13743 19430511 65.0 24 62.5 24 1012.6 24 9999.9 0 2.4 24 10.1 24 17.1 999.9 76.3* 57.9* 99.99 999.9 110010 724050 13743 19430512 71.2 24 65.7 24 1005.4 24 9999.9 0 5.3 24 10.9 24 26.0 999.9 80.2* 66.0* 99.99 999.9 110010 724050 13743 19430513 69.5 24 53.9 24 1013.8 24 9999.9 0 13.6 24 8.8 24 15.9 999.9 82.4* 57.9* 0.00I 999.9 000000 724050 13743 19430514 61.8 24 50.7 24 1020.4 24 9999.9 0 5.0 24 6.9 24 22.0 999.9 75.0* 54.0* 99.99 999.9 010000 724050 13743 19430515 53.3 24 46.3 24 1027.5 24 9999.9 0 3.8 24 4.1 24 15.9 999.9 60.3* 48.0* 99.99 999.9 110000 724050 13743 19430516 63.5 24 56.3 24 1027.6 24 9999.9 0 4.7 24 7.3 24 13.0 999.9 79.3* 55.9* 99.99 999.9 110000 724050 13743 19430517 74.8 24 65.3 24 1025.3 24 9999.9 0 29.6 24 10.2 24 22.0 999.9 85.3* 64.0* 99.99 999.9 110000 724050 13743 19430518 78.3 24 64.4 24 1022.4 23 9999.9 0 49.3 24 9.8 24 17.1 999.9 90.3* 68.0* 0.00I 999.9 000000 724050 13743 19430519 78.3 24 66.5 24 1018.5 24 9999.9 0 6.2 24 8.5 24 15.9 999.9 88.3* 68.0* 0.00I 999.9 000000 724050 13743 19430520 74.9 24 66.4 24 1016.0 24 9999.9 0 6.1 24 6.8 24 13.0 999.9 83.3* 66.0* 99.99 999.9 010010 724050 13743 19430521 65.8 24 62.6 24 1013.2 24 9999.9 0 2.9 24 7.8 24 22.0 999.9 77.4* 59.0* 99.99 999.9 110110 724050 13743 19430522 64.2 24 51.4 24 1016.5 24 9999.9 0 30.0 24 12.5 24 22.0 999.9 74.3* 55.9* 0.00I 999.9 000000 724050 13743 19430523 61.0 24 50.0 24 1025.1 24 9999.9 0 37.2 24 6.6 24 17.1 999.9 69.3* 51.3* 0.00I 999.9 100000 724050 13743 19430524 63.0 24 54.6 24 1021.3 24 9999.9 0 5.3 24 8.6 24 17.1 999.9 72.3* 55.4* 99.99 999.9 010000 724050 13743 19430525 68.3 24 61.3 24 1012.3 24 9999.9 0 52.9 24 8.4 24 26.0 999.9 76.3* 61.0* 99.99 999.9 110000 724050 13743 19430526 72.9 24 63.4 24 1006.6 24 9999.9 0 67.9 24 8.3 24 13.0 999.9 82.4* 66.0* 99.99 999.9 110000 724050 13743 19430527 73.3 24 57.6 24 1012.3 24 9999.9 0 33.0 24 5.1 24 15.9 999.9 84.4* 57.0* 0.00I 999.9 000000 724050 13743 19430528 67.7 24 60.6 24 1014.2 24 9999.9 0 8.5 24 6.6 24 14.0 999.9 80.1* 59.0* 99.99 999.9 110010 724050 13743 19430529 67.3 24 53.5 24 1016.5 24 9999.9 0 36.0 24 9.6 24 17.1 999.9 78.3* 57.9* 99.99 999.9 010010 724050 13743 19430530 70.0 24 59.5 24 1014.2 24 9999.9 0 5.5 24 4.7 24 11.1 999.9 78.3* 63.3* 99.99 999.9 010000 724050 13743 19430531 73.0 24 65.8 24 1012.9 24 9999.9 0 35.9 24 5.8 24 14.0 999.9 84.4* 64.9* 99.99 999.9 110000 724050 13743 19430601 77.5 24 70.4 24 1012.4 24 9999.9 0 5.3 24 6.3 24 13.0 999.9 88.3* 70.0* 99.99 999.9 110000 724050 13743 19430602 82.3 24 70.5 24 1007.0 24 9999.9 0 36.5 24 5.0 24 18.1 999.9 92.3* 71.1* 0.00I 999.9 100000 724050 13743 19430603 84.7 24 70.2 24 1006.7 24 9999.9 0 25.1 24 6.1 24 17.1 999.9 95.4* 72.0* 0.00I 999.9 100000 724050 13743 19430604 85.6 24 72.0 24 1012.0 24 9999.9 0 20.3 24 5.3 24 14.0 999.9 97.3* 73.9* 0.00I 999.9 000000 724050 13743 19430605 85.9 24 70.7 24 1015.1 24 9999.9 0 5.3 24 5.5 24 13.0 999.9 93.4* 76.3* 0.00I 999.9 000000 724050 13743 19430606 74.1 24 63.7 24 1018.7 24 9999.9 0 13.9 24 5.2 24 15.9 999.9 89.1* 61.0* 99.99 999.9 010010 724050 13743 19430607 77.0 24 66.9 24 1015.9 24 9999.9 0 33.1 24 5.3 24 15.9 999.9 92.3* 68.0* 0.00I 999.9 100000 724050 13743 19430608 71.8 24 63.9 24 1019.7 24 9999.9 0 4.8 24 7.6 24 18.1 999.9 81.3* 66.0* 0.00I 999.9 100000 724050 13743 19430609 65.6 24 60.2 24 1020.2 24 9999.9 0 5.1 24 6.1 24 15.9 999.9 71.1* 59.0* 99.99 999.9 110000 724050 13743 19430610 66.2 24 59.8 24 1019.4 24 9999.9 0 6.0 24 6.0 24 13.0 999.9 72.3* 62.1* 99.99 999.9 110000 724050 13743 19430611 73.2 24 65.5 24 1016.1 24 9999.9 0 4.1 24 3.3 24 11.1 999.9 86.4* 66.4* 99.99 999.9 110000 724050 13743 19430612 76.2 24 68.1 24 1018.8 24 9999.9 0 4.1 24 7.8 24 13.0 999.9 87.3* 67.3* 0.00I 999.9 000000 724050 13743 19430613 79.6 24 72.3 24 1017.5 24 9999.9 0 16.6 24 7.3 24 17.1 999.9 96.3* 71.1* 99.99 999.9 110010 724050 13743 19430614 78.8 24 68.1 24 1019.3 24 9999.9 0 7.1 24 6.3 24 13.0 999.9 88.3* 72.0* 0.00I 999.9 000000 724050 13743 19430615 77.0 24 67.6 24 1019.1 24 9999.9 0 6.5 24 7.6 24 15.9 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19430616 79.1 24 71.6 24 1012.1 23 9999.9 0 28.5 24 7.0 24 14.0 999.9 86.4* 72.0* 99.99 999.9 110010 724050 13743 19430617 83.7 24 72.4 24 1012.3 24 9999.9 0 39.6 24 5.2 24 12.0 999.9 94.3* 72.0* 0.00I 999.9 100000 724050 13743 19430618 79.4 24 66.0 24 1014.0 24 9999.9 0 48.0 24 7.5 24 17.1 999.9 91.0* 70.0* 99.99 999.9 010010 724050 13743 19430619 80.2 24 62.8 24 1018.1 24 9999.9 0 53.4 24 6.2 24 15.0 999.9 90.3* 69.1* 0.00I 999.9 000000 724050 13743 19430620 82.1 24 68.8 24 1017.3 24 9999.9 0 4.9 24 4.3 24 12.0 999.9 95.4* 70.0* 0.00I 999.9 000000 724050 13743 19430621 85.1 24 67.9 24 1015.6 24 9999.9 0 4.2 24 6.1 24 8.9 999.9 94.3* 73.9* 0.00I 999.9 000000 724050 13743 19430622 84.2 24 68.8 24 1013.9 24 9999.9 0 24.8 24 4.7 24 10.1 999.9 95.4* 73.9* 0.00I 999.9 000000 724050 13743 19430623 83.8 24 66.3 24 1015.4 24 9999.9 0 52.8 24 6.8 24 15.9 999.9 92.3* 75.0* 0.00I 999.9 000000 724050 13743 19430624 82.4 24 70.0 24 1019.7 24 9999.9 0 32.3 24 5.6 24 19.0 999.9 94.3* 73.4* 0.00I 999.9 100000 724050 13743 19430625 86.3 24 70.3 24 1019.3 24 9999.9 0 91.7 24 7.5 24 15.9 999.9 96.3* 75.0* 0.00I 999.9 000000 724050 13743 19430626 87.1 24 71.0 24 1017.8 24 9999.9 0 99.4 24 6.6 24 17.1 999.9 97.3* 75.9* 99.99 999.9 010010 724050 13743 19430627 86.8 24 71.7 24 1014.4 24 9999.9 0 49.5 24 7.4 24 17.1 999.9 96.3* 77.0* 99.99 999.9 010010 724050 13743 19430628 84.0 24 71.5 24 1011.3 24 9999.9 0 68.3 24 12.4 24 22.0 999.9 91.2* 71.1* 99.99 999.9 010010 724050 13743 19430629 80.1 24 72.5 24 1008.0 24 9999.9 0 52.2 24 10.8 24 22.0 999.9 87.1* 71.1* 99.99 999.9 010000 724050 13743 19430630 70.4 24 54.1 24 1016.2 24 9999.9 0 56.2 24 12.2 24 21.0 999.9 74.3* 63.0* 0.00I 999.9 100000 724050 13743 19430701 67.7 24 45.6 24 1024.0 24 9999.9 0 99.4 24 6.7 24 17.1 999.9 79.3* 55.9* 0.00I 999.9 000000 724050 13743 19430702 69.3 24 52.6 24 1026.9 24 9999.9 0 71.7 24 5.4 24 13.0 999.9 78.3* 57.0* 0.00I 999.9 000000 724050 13743 19430703 71.0 24 55.1 24 1026.3 24 9999.9 0 75.6 24 7.1 24 13.0 999.9 82.4* 60.1* 0.00I 999.9 000000 724050 13743 19430704 73.7 24 62.7 24 1019.1 24 9999.9 0 68.4 24 9.0 24 18.1 999.9 81.3* 64.4* 0.00I 999.9 000000 724050 13743 19430705 80.5 24 71.0 24 1009.9 24 9999.9 0 53.0 24 8.6 24 17.1 999.9 89.2* 72.0* 99.99 999.9 110000 724050 13743 19430706 79.7 24 69.5 24 1010.8 24 9999.9 0 6.0 24 7.5 24 19.0 999.9 87.3* 72.3* 0.00I 999.9 000000 724050 13743 19430707 73.0 24 67.3 24 1013.5 24 9999.9 0 7.8 24 7.7 24 15.9 999.9 80.1* 69.3* 99.99 999.9 110000 724050 13743 19430708 71.6 24 65.1 24 1014.9 24 9999.9 0 3.7 24 6.6 24 15.0 999.9 78.3* 66.9* 99.99 999.9 110000 724050 13743 19430709 76.2 24 71.2 23 1015.4 24 9999.9 0 4.0 24 4.4 24 15.9 999.9 84.4* 71.1* 99.99 999.9 110010 724050 13743 19430710 76.7 24 71.0 24 1015.6 24 9999.9 0 23.8 24 5.7 24 15.9 999.9 87.1* 71.1* 99.99 999.9 110010 724050 13743 19430711 79.6 24 72.7 24 1016.5 24 9999.9 0 64.3 24 5.9 24 15.9 999.9 90.3* 73.0* 99.99 999.9 110010 724050 13743 19430712 82.3 24 73.8 24 1017.2 24 9999.9 0 40.6 24 7.3 24 13.0 999.9 90.3* 75.0* 0.00I 999.9 000000 724050 13743 19430713 77.3 24 70.4 24 1017.7 24 9999.9 0 20.8 24 7.3 24 22.0 999.9 88.3* 71.1* 99.99 999.9 110000 724050 13743 19430714 81.7 24 70.6 24 1013.7 24 9999.9 0 5.0 24 7.2 24 14.0 999.9 92.3* 71.1* 0.00I 999.9 000000 724050 13743 19430715 85.0 24 70.7 24 1012.3 24 9999.9 0 4.8 24 6.7 24 12.0 999.9 96.3* 73.9* 0.00I 999.9 000000 724050 13743 19430716 84.3 24 64.0 24 1015.1 24 9999.9 0 17.0 24 4.7 24 13.0 999.9 94.3* 71.2* 0.00I 999.9 000000 724050 13743 19430717 83.8 24 69.4 24 1016.9 24 9999.9 0 4.7 24 7.4 24 12.0 999.9 94.3* 72.0* 0.00I 999.9 000000 724050 13743 19430718 83.6 24 72.5 24 1015.9 24 9999.9 0 5.2 24 8.5 24 14.0 999.9 89.2* 75.0* 99.99 999.9 010000 724050 13743 19430719 81.0 24 62.0 24 1016.1 24 9999.9 0 36.5 24 8.2 24 14.0 999.9 90.3* 70.3* 0.00I 999.9 000000 724050 13743 19430720 79.9 24 65.9 24 1012.2 24 9999.9 0 12.5 24 8.0 24 17.1 999.9 94.3* 66.9* 99.99 999.9 010010 724050 13743 19430721 82.3 24 69.0 24 1010.6 24 9999.9 0 16.7 24 4.8 24 12.0 999.9 95.4* 72.0* 99.99 999.9 110010 724050 13743 19430722 84.4 24 69.0 24 1008.9 24 9999.9 0 5.0 24 7.4 24 22.0 999.9 93.4* 77.0* 99.99 999.9 010000 724050 13743 19430723 78.7 24 59.0 24 1015.3 24 9999.9 0 48.3 24 10.3 24 15.9 999.9 88.3* 66.9* 0.00I 999.9 000000 724050 13743 19430724 79.3 24 61.8 24 1019.5 24 9999.9 0 12.9 24 2.9 24 10.1 999.9 92.3* 66.4* 0.00I 999.9 000000 724050 13743 19430725 79.7 24 68.4 24 1018.4 24 9999.9 0 5.5 24 9.2 24 22.0 999.9 92.3* 71.1* 99.99 999.9 010010 724050 13743 19430726 79.5 24 69.8 24 1016.2 24 9999.9 0 5.4 24 7.6 24 13.0 999.9 88.3* 72.0* 99.99 999.9 010010 724050 13743 19430727 82.1 24 69.7 24 1014.1 24 9999.9 0 4.9 24 5.7 24 12.0 999.9 94.3* 70.0* 0.00I 999.9 000000 724050 13743 19430728 82.3 24 65.7 24 1011.8 24 9999.9 0 5.3 24 5.2 24 10.1 999.9 91.2* 73.4* 0.00I 999.9 000000 724050 13743 19430729 81.6 24 64.9 24 1009.3 24 9999.9 0 20.6 24 4.6 24 12.0 999.9 90.3* 72.0* 99.99 999.9 010000 724050 13743 19430730 80.8 24 65.7 24 1008.5 24 9999.9 0 21.5 24 7.6 24 17.1 999.9 89.2* 70.0* 0.00I 999.9 000000 724050 13743 19430731 79.6 24 60.6 24 1014.7 24 9999.9 0 64.5 24 6.8 24 15.9 999.9 90.3* 66.9* 0.00I 999.9 000000 724050 13743 19430801 80.3 24 62.0 24 1016.0 24 9999.9 0 9.1 24 6.7 24 15.9 999.9 92.3* 69.1* 0.00I 999.9 000000 724050 13743 19430802 80.6 24 63.8 24 1016.1 24 9999.9 0 5.1 24 4.0 24 17.1 999.9 95.4* 67.3* 0.00I 999.9 000000 724050 13743 19430803 83.3 24 65.5 24 1013.9 24 9999.9 0 6.5 24 9.2 24 18.1 999.9 94.3* 72.0* 0.00I 999.9 000000 724050 13743 19430804 83.8 24 69.9 24 1011.2 24 9999.9 0 4.6 24 9.6 24 17.1 999.9 93.4* 73.9* 0.00I 999.9 000000 724050 13743 19430805 86.8 24 71.0 24 1009.6 24 9999.9 0 4.9 24 7.5 24 17.1 999.9 93.4* 80.1* 0.00I 999.9 000000 724050 13743 19430806 79.7 24 58.1 24 1016.1 24 9999.9 0 5.8 24 7.5 24 17.1 999.9 90.3* 66.9* 0.00I 999.9 000000 724050 13743 19430807 78.5 24 58.3 24 1015.8 24 9999.9 0 5.4 24 4.0 24 11.1 999.9 91.2* 66.4* 0.00I 999.9 000000 724050 13743 19430808 82.2 24 62.7 24 1012.4 23 9999.9 0 4.2 24 4.6 24 10.1 999.9 97.3* 70.0* 0.00I 999.9 000000 724050 13743 19430809 84.3 24 63.2 24 1011.0 24 9999.9 0 4.6 24 5.6 24 15.9 999.9 96.1* 71.2* 0.00I 999.9 000000 724050 13743 19430810 85.0 24 70.6 24 1009.2 24 9999.9 0 4.7 24 7.6 24 26.0 999.9 97.3* 78.1* 99.99 999.9 010010 724050 13743 19430811 83.5 24 63.7 24 1014.4 24 9999.9 0 5.8 24 7.9 24 14.0 999.9 94.3* 73.0* 0.00I 999.9 000000 724050 13743 19430812 81.9 24 65.5 24 1017.5 24 9999.9 0 4.9 24 6.5 24 15.9 999.9 95.4* 69.1* 0.00I 999.9 000000 724050 13743 19430813 82.3 24 70.9 24 1013.4 24 9999.9 0 5.6 24 8.5 24 20.0 999.9 94.3* 75.0* 99.99 999.9 010000 724050 13743 19430814 85.4 24 73.1 24 1007.5 24 9999.9 0 20.8 24 7.0 24 14.0 999.9 99.3* 75.9* 99.99 999.9 010000 724050 13743 19430815 84.7 24 61.1 24 1008.6 24 9999.9 0 68.0 24 7.7 24 15.0 999.9 92.3* 71.1* 0.00I 999.9 000000 724050 13743 19430816 81.0 24 59.1 24 1007.2 24 9999.9 0 9.6 24 4.9 24 12.0 999.9 91.2* 68.4* 99.99 999.9 010010 724050 13743 19430817 76.7 24 61.8 24 1005.9 24 9999.9 0 9.7 24 8.7 24 16.9 999.9 85.3* 70.0* 99.99 999.9 010010 724050 13743 19430818 72.2 24 54.4 24 1014.2 24 9999.9 0 7.0 24 11.0 24 15.9 999.9 80.2* 62.1* 0.00I 999.9 000000 724050 13743 19430819 73.5 24 51.4 24 1017.5 24 9999.9 0 37.8 24 5.3 24 15.9 999.9 83.3* 62.1* 0.00I 999.9 000000 724050 13743 19430820 73.1 24 53.6 24 1018.0 24 9999.9 0 24.5 24 3.6 24 13.0 999.9 88.3* 60.1* 0.00I 999.9 000000 724050 13743 19430821 74.7 24 55.6 24 1018.3 24 9999.9 0 5.1 24 4.1 24 12.0 999.9 85.3* 64.9* 0.00I 999.9 000000 724050 13743 19430822 77.2 24 59.7 24 1017.1 24 9999.9 0 4.6 24 2.8 24 9.9 999.9 90.3* 66.0* 0.00I 999.9 000000 724050 13743 19430823 79.9 24 62.3 24 1016.7 24 9999.9 0 5.1 24 3.1 24 12.0 999.9 94.3* 66.9* 0.00I 999.9 000000 724050 13743 19430824 81.3 24 63.8 24 1013.5 24 9999.9 0 5.4 24 6.1 24 12.0 999.9 94.3* 69.1* 0.00I 999.9 000000 724050 13743 19430825 83.4 24 66.8 24 1011.0 24 9999.9 0 5.0 24 6.1 24 12.0 999.9 96.3* 72.0* 0.00I 999.9 000000 724050 13743 19430826 81.7 24 68.0 24 1011.6 24 9999.9 0 3.4 24 4.6 24 13.0 999.9 91.2* 74.3* 99.99 999.9 010000 724050 13743 19430827 77.7 24 71.4 24 1011.4 24 9999.9 0 3.3 24 4.4 24 13.0 999.9 86.4* 73.0* 99.99 999.9 110000 724050 13743 19430828 71.1 24 60.1 24 1014.1 24 9999.9 0 10.2 24 9.3 24 17.1 999.9 82.9* 64.0* 99.99 999.9 010010 724050 13743 19430829 65.6 24 60.5 24 1018.0 24 9999.9 0 3.5 24 3.7 24 13.0 999.9 70.0* 61.3* 99.99 999.9 010000 724050 13743 19430830 71.5 24 61.9 24 1016.9 24 9999.9 0 4.0 24 4.7 24 12.0 999.9 86.4* 61.3* 0.00I 999.9 100000 724050 13743 19430831 76.7 24 63.4 24 1018.1 24 9999.9 0 3.5 24 5.3 24 13.0 999.9 89.2* 64.9* 0.00I 999.9 100000 724050 13743 19430901 80.7 24 64.1 24 1015.4 24 9999.9 0 3.8 24 6.2 24 13.0 999.9 96.3* 69.1* 0.00I 999.9 100000 724050 13743 19430902 82.4 24 66.6 24 1012.6 24 9999.9 0 4.7 24 6.4 24 12.0 999.9 91.2* 70.0* 0.00I 999.9 000000 724050 13743 19430903 72.4 24 68.3 24 1017.6 24 9999.9 0 4.1 24 6.7 24 17.1 999.9 86.0* 66.9* 99.99 999.9 110010 724050 13743 19430904 70.4 24 68.2 24 1021.1 24 9999.9 0 1.9 24 6.6 24 14.0 999.9 79.3* 66.0* 99.99 999.9 110000 724050 13743 19430905 78.1 24 70.3 23 1018.6 24 9999.9 0 4.5 24 6.6 24 15.9 999.9 88.3* 70.3* 0.00I 999.9 100000 724050 13743 19430906 82.1 24 70.3 24 1014.5 24 9999.9 0 32.9 24 7.2 24 13.0 999.9 94.3* 72.0* 0.00I 999.9 000000 724050 13743 19430907 80.1 24 70.4 24 1011.2 24 9999.9 0 56.3 24 9.3 24 19.0 999.9 88.3* 73.0* 0.00I 999.9 000000 724050 13743 19430908 74.2 24 57.4 24 1014.0 24 9999.9 0 9.3 24 7.7 24 15.0 999.9 82.4* 66.0* 99.99 999.9 010000 724050 13743 19430909 72.0 24 59.4 24 1014.4 24 9999.9 0 4.7 24 5.4 24 12.0 999.9 85.3* 59.0* 0.00I 999.9 000000 724050 13743 19430910 67.9 24 48.5 24 1021.0 24 9999.9 0 49.3 24 9.9 24 15.9 999.9 79.0* 57.0* 0.00I 999.9 000000 724050 13743 19430911 66.2 24 50.4 24 1024.3 24 9999.9 0 25.2 24 4.5 24 10.1 999.9 77.4* 55.4* 0.00I 999.9 000000 724050 13743 19430912 63.5 24 46.5 24 1025.4 24 9999.9 0 37.0 24 7.2 24 21.0 999.9 73.9* 54.3* 0.00I 999.9 000000 724050 13743 19430913 60.9 24 48.0 24 1025.0 24 9999.9 0 71.8 24 7.8 24 17.1 999.9 73.0* 49.3* 0.00I 999.9 000000 724050 13743 19430914 62.7 24 55.3 24 1021.0 24 9999.9 0 40.5 24 6.4 24 17.1 999.9 75.4* 52.3* 0.00I 999.9 100000 724050 13743 19430915 69.2 24 60.8 24 1014.9 24 9999.9 0 4.6 24 4.3 24 12.0 999.9 83.3* 57.4* 0.00I 999.9 100000 724050 13743 19430916 73.5 24 63.1 24 1013.5 24 9999.9 0 4.3 24 6.9 24 19.0 999.9 88.3* 62.4* 0.00I 999.9 100000 724050 13743 19430917 66.7 24 54.2 24 1020.6 24 9999.9 0 6.8 24 12.3 24 18.1 999.9 73.9* 61.0* 99.99 999.9 010000 724050 13743 19430918 58.1 24 44.3 24 1030.7 24 9999.9 0 45.5 24 9.0 24 17.1 999.9 67.3* 48.4* 0.00I 999.9 000000 724050 13743 19430919 57.7 24 47.3 24 1028.3 24 9999.9 0 27.8 24 6.7 24 14.0 999.9 72.3* 46.4* 0.00I 999.9 100000 724050 13743 19430920 59.9 24 56.5 24 1021.1 24 9999.9 0 5.0 24 7.7 24 15.9 999.9 66.9* 55.0* 99.99 999.9 111000 724050 13743 19430921 62.1 24 61.8 24 1016.5 24 9999.9 0 2.1 24 6.2 24 15.9 999.9 66.0* 59.4* 99.99 999.9 110000 724050 13743 19430922 69.0 24 63.6 24 1015.1 24 9999.9 0 17.1 24 6.8 24 15.0 999.9 81.3* 64.0* 99.99 999.9 110000 724050 13743 19430923 69.9 24 60.7 24 1015.3 24 9999.9 0 3.5 24 4.8 24 13.0 999.9 83.3* 59.4* 0.00I 999.9 100000 724050 13743 19430924 61.1 24 51.7 24 1016.0 24 9999.9 0 45.1 24 11.8 24 23.9 999.9 75.0* 53.4* 99.99 999.9 010000 724050 13743 19430925 56.8 24 45.8 24 1016.0 24 9999.9 0 29.5 24 7.2 24 15.0 999.9 66.4* 48.9* 0.00I 999.9 000000 724050 13743 19430926 57.0 24 43.7 24 1022.0 24 9999.9 0 65.1 24 8.5 24 12.0 999.9 67.3* 46.0* 0.00I 999.9 000000 724050 13743 19430927 60.7 24 49.3 24 1024.7 24 9999.9 0 16.5 24 5.1 24 13.0 999.9 77.4* 46.9* 0.00I 999.9 000000 724050 13743 19430928 65.9 24 54.4 24 1025.9 24 9999.9 0 8.4 24 4.0 24 10.1 999.9 83.3* 51.1* 0.00I 999.9 000000 724050 13743 19430929 65.8 24 54.4 24 1026.9 24 9999.9 0 3.4 24 5.0 24 17.1 999.9 78.3* 54.0* 0.00I 999.9 100000 724050 13743 19430930 60.1 24 48.6 24 1023.8 24 9999.9 0 5.1 24 10.6 24 24.1 999.9 71.1* 54.0* 99.99 999.9 010000 724050 13743 19431001 62.3 24 58.8 24 1011.1 24 9999.9 0 4.8 24 12.0 24 26.0 999.9 68.0* 57.9* 99.99 999.9 110000 724050 13743 19431002 68.1 24 59.5 24 1013.6 24 9999.9 0 4.9 24 7.1 24 15.9 999.9 74.3* 61.0* 0.00I 999.9 100000 724050 13743 19431003 61.9 24 48.8 24 1017.8 24 9999.9 0 45.0 24 9.2 24 22.0 999.9 71.1* 53.1* 0.00I 999.9 000000 724050 13743 19431004 55.6 24 40.0 24 1021.8 24 9999.9 0 91.8 24 11.8 24 22.0 999.9 63.3* 45.0* 0.00I 999.9 000000 724050 13743 19431005 54.1 24 36.9 24 1026.7 24 9999.9 0 72.2 24 7.2 24 17.1 999.9 65.3* 44.4* 0.00I 999.9 000000 724050 13743 19431006 53.4 24 39.4 24 1030.5 24 9999.9 0 3.9 24 4.7 24 10.1 999.9 70.3* 40.3* 0.00I 999.9 000000 724050 13743 19431007 58.1 24 46.7 24 1025.0 24 9999.9 0 2.9 24 3.3 24 8.9 999.9 78.3* 44.1* 0.00I 999.9 000000 724050 13743 19431008 63.6 24 48.6 24 1018.1 24 9999.9 0 3.3 24 3.1 24 8.9 999.9 82.4* 48.0* 0.00I 999.9 100000 724050 13743 19431009 65.8 24 50.5 24 1011.6 24 9999.9 0 3.4 24 3.2 24 10.1 999.9 82.4* 53.1* 0.00I 999.9 100000 724050 13743 19431010 59.1 24 45.9 24 1018.1 24 9999.9 0 4.4 24 7.3 24 22.9 999.9 73.0* 51.3* 0.00I 999.9 000000 724050 13743 19431011 52.0 24 40.6 24 1030.2 24 9999.9 0 44.5 24 6.0 24 15.9 999.9 65.3* 41.4* 0.00I 999.9 000000 724050 13743 19431012 54.1 24 45.0 24 1027.4 24 9999.9 0 59.7 24 4.2 24 10.1 999.9 68.4* 43.3* 0.00I 999.9 000000 724050 13743 19431013 56.8 24 45.6 24 1023.9 24 9999.9 0 51.0 24 5.4 24 13.0 999.9 71.2* 44.4* 0.00I 999.9 100000 724050 13743 19431014 64.3 24 57.7 24 1019.5 24 9999.9 0 28.3 24 5.6 24 13.0 999.9 76.3* 55.9* 99.99 999.9 110000 724050 13743 19431015 66.5 24 62.7 24 1014.9 24 9999.9 0 4.4 24 5.7 24 17.1 999.9 72.3* 62.1* 99.99 999.9 110000 724050 13743 19431016 66.7 24 62.6 24 1000.1 24 9999.9 0 4.2 24 8.7 24 22.0 999.9 76.3* 59.4* 99.99 999.9 110000 724050 13743 19431017 50.6 24 34.4 24 1007.2 24 9999.9 0 84.1 24 14.8 24 28.0 999.9 59.0* 42.1* 0.00I 999.9 000000 724050 13743 19431018 50.4 24 29.3 24 1012.8 24 9999.9 0 83.9 24 10.3 24 17.1 999.9 58.3* 41.0* 0.00I 999.9 000000 724050 13743 19431019 52.6 24 36.0 24 1011.1 24 9999.9 0 37.8 24 12.7 24 22.0 999.9 58.3* 46.9* 99.99 999.9 010000 724050 13743 19431020 51.8 24 36.3 24 1015.3 24 9999.9 0 56.5 24 9.8 24 18.1 999.9 63.3* 44.1* 0.00I 999.9 000000 724050 13743 19431021 54.5 24 38.7 24 1016.0 24 9999.9 0 28.4 24 3.2 24 13.0 999.9 69.3* 41.4* 0.00I 999.9 000000 724050 13743 19431022 60.4 24 45.7 24 1007.9 24 9999.9 0 35.3 24 9.9 24 28.9 999.9 70.3* 52.0* 99.99 999.9 010000 724050 13743 19431023 57.4 24 43.1 24 1013.1 24 9999.9 0 14.7 24 11.3 24 17.1 999.9 60.3* 54.3* 0.00I 999.9 000000 724050 13743 19431024 51.9 24 38.7 24 1016.1 24 9999.9 0 5.1 24 6.6 24 21.0 999.9 56.3* 44.4* 0.00I 999.9 000000 724050 13743 19431025 50.1 24 45.3 24 1014.4 24 9999.9 0 4.1 24 8.5 24 22.0 999.9 54.0* 48.0* 99.99 999.9 110000 724050 13743 19431026 47.3 24 46.0 24 1010.1 24 1007.6 23 4.4 24 23.0 24 30.1 999.9 51.1* 45.0* 99.99 999.9 110000 724050 13743 19431027 50.6 24 43.9 24 1007.7 24 9999.9 0 18.0 24 8.7 24 19.0 999.9 56.3* 46.0* 99.99 999.9 010000 724050 13743 19431028 50.6 24 48.4 24 1005.0 24 9999.9 0 4.1 24 7.2 24 13.0 999.9 53.1* 48.9* 99.99 999.9 110000 724050 13743 19431029 52.1 24 40.0 24 1010.4 24 9999.9 0 24.4 24 9.6 24 21.0 999.9 63.3* 42.1* 99.99 999.9 010000 724050 13743 19431030 59.6 24 44.4 24 1008.6 24 9999.9 0 5.4 24 9.6 24 22.0 999.9 73.9* 51.1* 0.00I 999.9 000000 724050 13743 19431031 57.1 24 38.9 24 1016.7 24 9999.9 0 4.9 24 6.0 24 13.0 999.9 65.3* 52.0* 0.00I 999.9 000000 724050 13743 19431101 53.6 24 40.3 24 1026.3 24 9999.9 0 5.7 24 5.4 24 11.1 999.9 66.4* 44.4* 0.00I 999.9 000000 724050 13743 19431102 57.4 24 51.0 24 1022.2 24 9999.9 0 12.6 24 7.9 24 20.0 999.9 64.4* 52.0* 99.99 999.9 010000 724050 13743 19431103 54.0 24 44.6 24 1016.0 24 9999.9 0 17.0 24 12.1 24 21.0 999.9 64.0* 48.9* 99.99 999.9 110000 724050 13743 19431104 48.4 24 32.9 24 1020.8 24 9999.9 0 29.7 24 8.4 24 16.9 999.9 57.4* 39.9* 0.00I 999.9 000000 724050 13743 19431105 48.0 24 37.9 24 1018.5 24 9999.9 0 3.9 24 4.3 24 17.1 999.9 59.4* 37.0* 0.00I 999.9 100000 724050 13743 19431106 52.5 24 44.1 24 1018.6 24 9999.9 0 3.2 24 3.9 24 15.9 999.9 70.3* 41.0* 99.99 999.9 110000 724050 13743 19431107 55.1 24 45.8 24 1024.7 24 9999.9 0 7.4 24 3.9 24 19.0 999.9 70.3* 43.3* 0.00I 999.9 100000 724050 13743 19431108 65.3 24 61.0 24 1016.3 24 9999.9 0 17.3 24 9.3 24 20.0 999.9 74.3* 57.4* 99.99 999.9 010010 724050 13743 19431109 55.1 24 44.2 24 1010.3 24 9999.9 0 29.8 24 11.4 24 21.0 999.9 70.0* 43.3* 99.99 999.9 010010 724050 13743 19431110 42.0 24 27.1 24 1021.5 24 9999.9 0 49.5 24 10.6 24 21.0 999.9 48.0* 36.0* 0.00I 999.9 000000 724050 13743 19431111 40.3 24 29.5 24 1022.1 24 9999.9 0 5.5 24 11.9 24 23.9 999.9 44.1* 35.4* 99.99 999.9 011000 724050 13743 19431112 41.2 24 25.1 24 1023.6 24 9999.9 0 5.4 24 8.6 24 17.1 999.9 50.4* 33.1* 0.00I 999.9 000000 724050 13743 19431113 44.9 24 26.8 24 1015.6 24 9999.9 0 45.0 24 14.3 24 29.9 999.9 49.3* 40.3* 99.99 999.9 010000 724050 13743 19431114 38.5 24 18.0 24 1028.9 24 9999.9 0 49.3 24 11.6 24 17.1 999.9 44.4* 33.1* 0.00I 999.9 000000 724050 13743 19431115 43.8 24 26.5 24 1024.0 24 9999.9 0 4.3 24 7.2 24 15.9 999.9 61.0* 32.0* 99.99 999.9 001000 724050 13743 19431116 51.9 24 34.9 24 1013.0 24 9999.9 0 5.8 24 13.0 24 22.0 999.9 59.4* 42.4* 0.00I 999.9 000000 724050 13743 19431117 36.2 24 20.1 24 1020.8 24 9999.9 0 6.2 24 7.5 24 16.9 999.9 44.4* 27.3* 0.00I 999.9 000000 724050 13743 19431118 40.3 24 25.1 24 1023.7 24 9999.9 0 3.0 24 4.0 24 13.0 999.9 54.3* 30.4* 0.00I 999.9 000000 724050 13743 19431119 48.3 24 33.3 24 1020.3 24 9999.9 0 2.9 24 2.7 24 11.1 999.9 70.3* 34.3* 0.00I 999.9 000000 724050 13743 19431120 51.7 24 42.0 24 1018.5 24 9999.9 0 1.7 24 1.7 24 8.9 999.9 66.4* 39.9* 0.00I 999.9 100000 724050 13743 19431121 49.9 24 42.0 24 1018.3 24 9999.9 0 1.5 24 2.7 24 10.1 999.9 60.3* 41.4* 0.00I 999.9 100000 724050 13743 19431122 46.4 24 34.1 24 1020.4 24 9999.9 0 25.3 24 18.9 24 28.9 999.9 57.0* 40.3* 99.99 999.9 010000 724050 13743 19431123 40.2 24 23.6 24 1023.9 24 9999.9 0 68.9 24 19.2 24 30.1 999.9 49.3* 34.0* 0.00I 999.9 000000 724050 13743 19431124 45.3 24 23.4 24 1023.8 24 9999.9 0 57.2 24 13.9 24 20.0 999.9 57.4* 37.9* 0.00I 999.9 000000 724050 13743 19431125 49.2 24 31.2 24 1027.4 24 9999.9 0 21.7 24 8.5 24 13.0 999.9 61.3* 40.3* 0.00I 999.9 000000 724050 13743 19431126 46.2 24 29.0 24 1023.5 24 9999.9 0 3.0 24 3.4 24 13.0 999.9 66.4* 32.0* 0.00I 999.9 000000 724050 13743 19431127 48.0 24 30.0 24 1015.2 24 9999.9 0 3.9 24 7.9 24 26.0 999.9 57.9* 39.4* 0.00I 999.9 000000 724050 13743 19431128 38.2 24 22.3 24 1019.1 24 9999.9 0 6.9 24 9.1 24 22.9 999.9 44.1* 29.3* 0.00I 999.9 000000 724050 13743 19431129 33.8 24 19.7 24 1020.2 24 9999.9 0 12.6 24 6.2 24 15.9 999.9 41.4* 27.3* 0.00I 999.9 000000 724050 13743 19431130 36.5 24 22.8 24 1017.1 24 9999.9 0 4.8 24 7.5 24 17.1 999.9 43.3* 29.3* 0.00I 999.9 000000 724050 13743 19431201 40.3 24 26.6 24 1019.9 24 9999.9 0 3.9 24 4.6 24 10.1 999.9 53.4* 32.0* 0.00I 999.9 000000 724050 13743 19431202 45.5 24 29.7 24 1017.3 24 9999.9 0 3.3 24 4.5 24 10.1 999.9 62.4* 35.1* 0.00I 999.9 000000 724050 13743 19431203 49.6 24 38.3 24 1020.5 24 9999.9 0 2.1 24 2.0 24 10.1 999.9 65.3* 38.3* 99.99 999.9 010000 724050 13743 19431204 52.4 24 43.5 24 1021.1 24 9999.9 0 2.1 24 3.6 24 12.0 999.9 57.9* 46.9* 0.00I 999.9 000000 724050 13743 19431205 48.6 24 37.5 24 1022.0 24 9999.9 0 4.1 24 6.3 24 15.9 999.9 55.4* 42.4* 0.00I 999.9 100000 724050 13743 19431206 43.6 24 35.5 24 1020.7 24 9999.9 0 2.1 24 4.7 24 17.1 999.9 52.3* 36.3* 99.99 999.9 010000 724050 13743 19431207 48.7 24 40.5 24 1013.8 24 9999.9 0 5.4 24 10.9 24 22.0 999.9 53.1* 44.4* 99.99 999.9 010000 724050 13743 19431208 46.2 24 37.9 24 1017.3 24 9999.9 0 2.9 24 3.3 24 11.1 999.9 56.3* 39.4* 0.00I 999.9 000000 724050 13743 19431209 52.1 24 42.6 24 1017.7 24 9999.9 0 3.3 24 7.0 24 18.1 999.9 64.4* 44.4* 0.00I 999.9 000000 724050 13743 19431210 47.0 24 33.3 24 1018.3 24 9999.9 0 20.8 24 9.5 24 18.1 999.9 59.0* 41.0* 99.99 999.9 110000 724050 13743 19431211 35.1 24 18.3 24 1013.5 24 9999.9 0 91.6 24 19.9 24 35.0 999.9 44.1* 27.0* 0.00I 999.9 100000 724050 13743 19431212 35.3 24 19.0 24 1008.7 24 9999.9 0 44.9 24 10.4 24 22.9 999.9 51.1* 24.4* 0.00I 999.9 000000 724050 13743 19431213 35.4 24 14.8 24 1010.1 24 9999.9 0 57.1 24 16.1 24 28.9 999.9 46.9* 27.0* 0.00I 999.9 000000 724050 13743 19431214 28.2 24 12.3 24 1019.7 24 9999.9 0 20.8 24 5.0 24 10.1 999.9 38.3* 20.3* 0.00I 999.9 000000 724050 13743 19431215 22.3 24 2.5 24 1027.7 24 9999.9 0 34.0 24 14.8 24 22.9 999.9 34.0* 16.0* 0.00I 999.9 000000 724050 13743 19431216 21.0 24 4.6 24 1031.2 24 9999.9 0 21.9 24 13.8 24 20.0 999.9 28.4* 14.0* 0.00I 999.9 000000 724050 13743 19431217 25.5 24 8.9 24 1032.7 24 9999.9 0 12.9 24 10.7 24 22.0 999.9 35.1* 17.1* 0.00I 999.9 000000 724050 13743 19431218 30.9 24 12.1 24 1025.0 24 9999.9 0 3.7 24 4.2 24 8.9 999.9 47.3* 17.4* 0.00I 999.9 000000 724050 13743 19431219 34.5 24 18.8 24 1018.9 24 9999.9 0 3.1 24 2.9 24 13.0 999.9 47.3* 22.5* 0.00I 999.9 000000 724050 13743 19431220 37.3 24 21.3 24 1014.9 24 9999.9 0 43.5 24 13.2 24 30.1 999.9 42.4* 27.0* 0.00I 999.9 000000 724050 13743 19431221 36.8 24 21.5 24 1015.8 24 9999.9 0 7.7 24 6.2 24 28.9 999.9 55.9* 24.1* 0.00I 999.9 000000 724050 13743 19431222 42.5 24 28.9 24 1011.0 24 9999.9 0 5.8 24 8.5 24 17.1 999.9 52.0* 36.3* 0.00I 999.9 000000 724050 13743 19431223 25.0 24 11.5 24 1027.1 24 9999.9 0 25.8 24 15.0 24 24.1 999.9 37.9* 19.4* 0.00I 999.9 000000 724050 13743 19431224 21.7 24 5.8 24 1038.4 24 9999.9 0 21.7 24 11.0 24 19.0 999.9 31.3* 16.0* 0.00I 999.9 000000 724050 13743 19431225 27.1 24 9.7 24 1033.9 24 9999.9 0 12.7 24 7.1 24 13.0 999.9 32.0* 22.5* 99.99 999.9 011000 724050 13743 19431226 32.9 24 30.3 24 1024.2 24 9999.9 0 1.8 24 6.9 24 17.1 999.9 37.9* 30.0* 99.99 999.9 110000 724050 13743 19431227 41.1 24 36.5 24 1016.4 24 9999.9 0 35.9 24 6.5 24 15.9 999.9 57.4* 33.1* 99.99 999.9 110000 724050 13743 19431228 43.6 24 34.3 24 1017.7 24 9999.9 0 13.9 24 8.2 24 17.1 999.9 48.9* 36.3* 0.00I 999.9 000000 724050 13743 19431229 28.5 24 11.3 24 1018.7 24 9999.9 0 30.1 24 11.1 24 25.1 999.9 37.0* 21.9* 99.99 999.9 001000 724050 13743 19431230 26.2 24 13.1 24 1021.3 24 9999.9 0 8.4 24 6.0 24 13.0 999.9 37.4* 16.3* 0.00I 999.9 000000 724050 13743 19431231 32.0 24 18.1 24 1020.9 23 9999.9 0 4.5 24 6.6 24 17.1 999.9 39.4* 25.3* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1961/0000755000175000017500000000000014302004506015100 5ustar nileshnileshfluids-1.0.22/tests/gsod/1961/724050-13743.op0000644000175000017500000014327214302004506016671 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19610101 38.9 24 32.6 24 1007.8 8 1006.8 8 7.2 24 8.5 24 23.9 999.9 44.4* 33.4* 99.99 999.9 110000 724050 13743 19610102 36.8 24 25.9 24 1020.4 8 1019.4 8 8.4 24 2.2 24 13.0 999.9 42.4* 28.4* 0.00I 999.9 000000 724050 13743 19610103 37.0 24 26.0 24 1022.5 8 1021.5 8 7.9 24 2.9 24 9.9 999.9 40.3* 35.4* 0.00I 999.9 000000 724050 13743 19610104 31.5 24 18.4 24 1019.8 8 1018.7 8 9.4 24 7.2 24 15.9 999.9 35.4* 29.3* 99.99 999.9 001000 724050 13743 19610105 32.2 24 16.1 24 1023.2 8 1022.2 8 10.7 24 2.8 24 8.0 999.9 43.3* 27.3* 0.00I 999.9 000000 724050 13743 19610106 39.2 24 26.9 24 1019.0 8 1018.0 8 9.8 24 2.5 24 6.0 999.9 54.3* 31.3* 0.00I 999.9 000000 724050 13743 19610107 45.2 24 30.4 24 1017.3 8 1016.3 8 9.3 24 2.9 24 7.0 999.9 53.4* 38.3* 0.00I 999.9 000000 724050 13743 19610108 42.9 24 25.6 24 1013.9 8 1012.9 8 11.9 24 10.4 24 23.9 999.9 48.4* 35.4* 99.99 999.9 001000 724050 13743 19610109 30.7 24 11.7 24 1024.7 8 1023.7 8 11.9 24 17.0 24 28.0 999.9 36.3* 26.4* 0.00I 999.9 000000 724050 13743 19610110 30.5 24 12.7 24 1031.9 8 1030.9 8 11.3 24 4.5 24 9.9 999.9 40.3* 23.4* 0.00I 999.9 000000 724050 13743 19610111 35.1 24 16.1 24 1027.3 8 1026.2 8 8.7 24 1.5 24 8.0 999.9 49.3* 27.3* 0.00I 999.9 000000 724050 13743 19610112 40.0 24 22.7 24 1023.8 8 1022.7 8 7.0 24 0.5 24 5.1 999.9 54.3* 31.3* 0.00I 999.9 000000 724050 13743 19610113 38.2 24 24.4 24 1027.7 8 1026.7 8 6.8 24 1.2 24 6.0 999.9 53.4* 28.4* 0.00I 999.9 000000 724050 13743 19610114 41.7 24 35.2 24 1017.9 8 1016.9 8 3.7 24 2.1 24 8.9 999.9 52.3* 35.4* 0.00I 999.9 100000 724050 13743 19610115 43.1 24 38.6 24 1007.0 8 1006.0 8 4.3 24 6.3 24 8.9 999.9 50.4* 35.4* 99.99 999.9 111000 724050 13743 19610116 34.4 24 30.8 24 1010.5 8 1009.5 8 3.9 24 4.7 24 8.9 999.9 36.3* 32.4* 99.99 999.9 111000 724050 13743 19610117 39.4 24 30.8 24 1014.4 8 1013.3 8 9.4 24 1.9 24 5.1 999.9 52.3* 33.4* 0.00I 999.9 000000 724050 13743 19610118 44.4 24 29.2 24 1014.2 8 1013.2 8 11.2 24 5.6 24 16.9 999.9 48.4* 39.4* 0.00I 999.9 000000 724050 13743 19610119 35.3 24 26.7 24 1014.0 8 1013.0 8 7.8 24 4.1 24 9.9 999.9 41.4* 26.4* 99.99 999.9 101000 724050 13743 19610120 22.8 24 15.0 24 1002.3 8 1001.3 8 6.6 24 16.3 24 23.9 999.9 27.3* 19.4* 99.99 999.9 101000 724050 13743 19610121 21.7 24 11.1 24 1014.0 8 1013.0 8 8.5 24 2.7 24 11.1 999.9 25.3* 18.3* 99.99 999.9 101000 724050 13743 19610122 18.6 24 5.8 24 1020.1 8 1019.0 8 9.7 24 3.8 24 9.9 999.9 22.5* 13.5* 99.99 999.9 001000 724050 13743 19610123 22.3 24 10.9 24 1018.1 8 1017.0 8 8.6 24 1.2 24 8.0 999.9 30.4* 16.3* 99.99 999.9 101000 724050 13743 19610124 23.7 24 13.7 24 1014.8 8 1013.8 8 8.1 24 7.2 24 33.0 999.9 32.4* 17.4* 0.00I 999.9 000000 724050 13743 19610125 14.5 24 -0.4 24 1035.1 8 1034.1 8 11.9 24 10.7 24 15.9 999.9 19.4* 8.4* 0.00I 999.9 000000 724050 13743 19610126 15.0 24 3.1 24 1029.5 8 1028.5 8 6.3 24 1.1 24 4.1 999.9 19.4* 11.3* 99.99 999.9 001000 724050 13743 19610127 18.6 24 10.5 24 1016.3 8 1015.3 8 5.9 24 5.8 24 11.1 999.9 22.5* 15.4* 99.99 999.9 101000 724050 13743 19610128 16.8 24 4.6 24 1019.6 8 1018.5 8 10.1 24 2.8 24 8.9 999.9 27.3* 9.3* 0.00I 999.9 000000 724050 13743 19610129 20.5 24 6.8 24 1020.5 8 1019.4 8 9.2 24 2.7 24 9.9 999.9 28.4* 11.3* 0.00I 999.9 000000 724050 13743 19610130 23.8 24 10.2 24 1026.1 8 1025.1 8 10.4 24 4.7 24 20.0 999.9 29.3* 17.4* 0.00I 999.9 000000 724050 13743 19610131 25.5 24 9.7 24 1026.5 8 1025.4 8 8.3 24 0.2 24 2.9 999.9 36.3* 17.4* 0.00I 999.9 000000 724050 13743 19610201 28.9 24 19.8 24 1020.4 8 1019.3 8 5.8 24 3.2 24 8.9 999.9 34.3* 22.5* 99.99 999.9 101000 724050 13743 19610202 14.0 24 -0.4 24 1031.9 8 1030.9 8 11.4 24 6.7 24 9.9 999.9 22.5* 5.4* 0.00I 999.9 000000 724050 13743 19610203 15.7 24 6.8 24 1031.6 8 1030.6 8 6.0 24 4.9 24 12.0 999.9 20.3* 11.3* 99.99 999.9 101000 724050 13743 19610204 29.6 24 24.3 24 1014.7 8 1013.7 8 6.8 24 18.1 24 27.0 999.9 35.4* 23.4* 99.99 999.9 111000 724050 13743 19610205 31.8 24 21.4 24 1030.7 8 1029.7 8 10.7 24 9.4 24 15.0 999.9 38.3* 26.4* 0.00I 999.9 000000 724050 13743 19610206 28.4 24 19.7 24 1031.5 8 1030.5 8 7.7 24 1.3 24 7.0 999.9 39.4* 18.3* 0.00I 999.9 000000 724050 13743 19610207 33.0 24 18.3 24 1028.6 8 1027.6 8 7.2 24 2.6 24 8.0 999.9 40.3* 26.4* 0.00I 999.9 000000 724050 13743 19610208 31.8 24 24.8 24 1016.1 8 1015.1 8 3.5 24 8.4 24 15.9 999.9 35.4* 30.4* 99.99 999.9 111000 724050 13743 19610209 34.6 24 26.3 24 1010.3 8 1009.3 8 10.1 24 5.8 24 13.0 999.9 41.4* 30.4* 99.99 999.9 101000 724050 13743 19610210 40.3 24 26.1 24 1009.2 8 1008.2 8 9.5 24 8.4 24 16.9 999.9 43.3* 37.4* 0.00I 999.9 000000 724050 13743 19610211 38.1 24 26.7 24 1017.0 8 1016.0 8 7.7 24 2.3 24 8.9 999.9 42.4* 34.3* 99.99 999.9 011000 724050 13743 19610212 32.2 24 29.3 24 1018.4 8 1017.4 8 3.1 24 2.9 24 8.0 999.9 35.4* 30.4* 99.99 999.9 111000 724050 13743 19610213 34.7 24 30.2 24 1026.4 8 1025.4 8 4.8 24 2.2 24 9.9 999.9 39.4* 32.4* 0.00I 999.9 100000 724050 13743 19610214 40.7 24 34.0 24 1019.9 8 1018.9 8 3.8 24 0.8 24 8.9 999.9 55.4* 35.4* 99.99 999.9 110000 724050 13743 19610215 47.6 24 22.8 24 1023.6 8 1022.6 8 10.3 24 1.6 24 9.9 999.9 55.4* 43.3* 0.00I 999.9 000000 724050 13743 19610216 44.2 24 27.7 24 1022.5 8 1021.5 8 10.8 24 5.9 24 22.0 999.9 48.4* 40.3* 99.99 999.9 010000 724050 13743 19610217 40.0 24 30.1 24 1028.6 8 1027.6 8 5.9 24 4.9 24 9.9 999.9 52.3* 34.3* 0.00I 999.9 100000 724050 13743 19610218 52.1 24 44.6 24 1018.3 8 1017.3 8 3.8 24 6.5 24 11.1 999.9 61.3* 48.4* 99.99 999.9 110000 724050 13743 19610219 59.5 24 51.8 24 1013.5 8 1012.4 8 9.9 24 8.1 24 16.9 999.9 69.3* 54.3* 99.99 999.9 110000 724050 13743 19610220 45.3 24 25.2 24 1027.6 8 1026.6 8 10.1 24 7.8 24 16.9 999.9 55.4* 38.3* 0.00I 999.9 000000 724050 13743 19610221 38.3 24 31.6 24 1029.8 8 1028.7 8 4.8 24 0.9 24 7.0 999.9 42.4* 35.4* 99.99 999.9 111000 724050 13743 19610222 40.2 24 37.4 24 1023.2 8 1022.1 8 3.1 24 0.0 24 999.9 999.9 44.4* 37.4* 99.99 999.9 110000 724050 13743 19610223 48.9 24 45.9 24 1012.2 8 1011.2 8 3.5 24 2.1 24 8.0 999.9 65.3* 42.4* 99.99 999.9 110000 724050 13743 19610224 54.8 24 44.1 24 1013.5 8 1012.5 8 9.1 24 2.3 24 8.9 999.9 71.2* 39.4* 0.00I 999.9 100000 724050 13743 19610225 60.8 24 52.6 24 1002.0 8 1000.9 8 8.0 24 8.5 24 18.1 999.9 70.3* 55.4* 99.99 999.9 110000 724050 13743 19610226 46.3 24 30.4 24 992.3 8 991.2 8 11.1 24 21.1 24 34.0 999.9 58.3* 34.3* 99.99 999.9 111000 724050 13743 19610227 51.2 24 30.0 24 1016.6 8 1015.6 8 10.8 24 4.1 24 9.9 999.9 71.2* 37.4* 0.00I 999.9 000000 724050 13743 19610228 47.8 24 32.5 24 1016.1 8 1015.1 8 8.0 24 5.8 24 13.0 999.9 65.3* 38.3* 99.99 999.9 111000 724050 13743 19610301 39.2 24 33.9 24 1022.2 8 1021.2 8 5.9 24 3.1 24 8.9 999.9 41.4* 36.3* 99.99 999.9 110000 724050 13743 19610302 45.2 24 31.1 24 1017.0 8 1016.0 8 9.5 24 5.8 24 12.0 999.9 56.3* 38.3* 99.99 999.9 110000 724050 13743 19610303 52.2 24 30.7 24 1018.0 8 1016.9 8 13.3 24 7.1 24 11.1 999.9 69.3* 42.4* 0.00I 999.9 000000 724050 13743 19610304 58.9 24 37.1 24 1016.8 8 1015.8 8 10.0 24 2.6 24 6.0 999.9 68.4* 49.3* 99.99 999.9 010000 724050 13743 19610305 60.1 24 50.3 24 1016.1 8 1015.1 8 4.8 24 0.5 24 6.0 999.9 79.3* 50.4* 99.99 999.9 010000 724050 13743 19610306 67.6 24 57.7 24 1014.8 8 1013.8 8 9.3 24 3.2 24 19.0 999.9 80.2* 59.4* 99.99 999.9 010000 724050 13743 19610307 59.4 24 50.7 24 1012.0 8 1011.0 8 4.7 24 3.9 24 13.0 999.9 74.3* 48.4* 0.00I 999.9 100000 724050 13743 19610308 48.2 24 37.5 24 1011.5 8 1010.5 8 8.0 24 7.8 24 12.0 999.9 64.4* 40.3* 99.99 999.9 110000 724050 13743 19610309 41.4 24 33.1 24 995.7 8 994.7 8 10.0 24 9.9 24 21.0 999.9 45.3* 38.3* 99.99 999.9 110000 724050 13743 19610310 36.4 24 18.0 24 1008.3 8 1007.3 8 12.7 24 22.4 24 33.0 999.9 40.3* 32.4* 99.99 999.9 001000 724050 13743 19610311 39.8 24 17.9 24 1019.2 8 1018.2 8 14.6 24 6.2 24 15.0 999.9 62.4* 29.3* 0.00I 999.9 000000 724050 13743 19610312 52.7 24 33.0 24 1019.4 8 1018.4 8 8.4 24 0.7 24 4.1 999.9 71.2* 38.3* 0.00I 999.9 000000 724050 13743 19610313 48.8 24 32.3 24 1024.1 8 1023.1 8 8.7 24 8.8 24 13.0 999.9 61.3* 43.3* 0.00I 999.9 000000 724050 13743 19610314 44.6 24 40.0 24 1011.6 8 1010.6 8 3.5 24 2.9 24 9.9 999.9 47.3* 41.4* 99.99 999.9 110000 724050 13743 19610315 51.0 24 35.8 24 1005.7 8 1004.6 8 10.0 24 7.6 24 15.0 999.9 62.4* 42.4* 99.99 999.9 010000 724050 13743 19610316 47.9 24 24.7 24 1005.3 8 1004.3 8 12.9 24 17.1 24 26.0 999.9 57.4* 40.3* 99.99 999.9 010000 724050 13743 19610317 32.4 24 10.1 24 1020.7 8 1019.7 8 13.5 24 15.7 24 23.9 999.9 40.3* 25.3* 0.00I 999.9 000000 724050 13743 19610318 34.2 24 13.4 24 1031.2 8 1030.2 8 10.4 24 4.2 24 8.9 999.9 40.3* 28.4* 99.99 999.9 010000 724050 13743 19610319 37.8 24 33.9 24 1021.5 8 1020.5 8 3.9 24 0.8 24 8.0 999.9 48.4* 33.4* 99.99 999.9 110000 724050 13743 19610320 45.2 24 29.6 24 1023.6 8 1022.6 8 11.6 24 10.3 24 15.9 999.9 55.4* 37.4* 99.99 999.9 110000 724050 13743 19610321 43.5 24 26.1 24 1027.3 8 1026.3 8 10.2 24 5.8 24 11.1 999.9 51.3* 37.4* 0.00I 999.9 000000 724050 13743 19610322 37.9 24 32.5 24 1022.0 8 1021.0 8 6.2 24 7.9 24 11.1 999.9 44.4* 35.4* 99.99 999.9 111000 724050 13743 19610323 39.2 24 36.2 24 1014.7 8 1013.7 8 3.0 24 8.4 24 11.1 999.9 42.4* 37.4* 99.99 999.9 110000 724050 13743 19610324 44.6 24 35.0 24 1013.5 8 1012.4 8 5.1 24 2.4 24 11.1 999.9 55.4* 39.4* 0.00I 999.9 000000 724050 13743 19610325 48.5 24 28.9 24 1016.6 8 1015.5 8 12.1 24 18.2 24 26.0 999.9 56.3* 42.4* 0.00I 999.9 000000 724050 13743 19610326 51.2 24 26.4 24 1020.8 8 1019.7 8 13.4 24 2.1 24 9.9 999.9 64.4* 41.4* 0.00I 999.9 000000 724050 13743 19610327 59.1 24 35.2 24 1016.9 8 1015.9 8 10.4 24 2.1 24 8.9 999.9 76.3* 47.3* 0.00I 999.9 000000 724050 13743 19610328 63.7 24 46.0 24 1008.4 8 1007.4 8 9.6 24 2.1 24 9.9 999.9 79.3* 49.3* 0.00I 999.9 000000 724050 13743 19610329 57.6 24 41.3 24 1009.4 8 1008.4 8 11.8 24 7.6 24 15.9 999.9 67.3* 50.4* 99.99 999.9 010000 724050 13743 19610330 53.3 24 28.6 24 1012.1 8 1011.1 8 11.2 24 12.5 24 21.0 999.9 63.3* 45.3* 0.00I 999.9 000000 724050 13743 19610331 43.5 24 28.2 24 1014.5 8 1013.5 8 8.7 24 6.4 24 11.1 999.9 53.4* 40.3* 99.99 999.9 110000 724050 13743 19610401 43.2 24 35.8 24 997.4 8 996.4 8 5.8 24 11.0 24 28.0 999.9 51.3* 39.4* 99.99 999.9 110000 724050 13743 19610402 44.6 24 23.1 24 1004.4 8 1003.4 8 13.2 24 13.0 24 21.0 999.9 48.4* 40.3* 99.99 999.9 010000 724050 13743 19610403 43.6 24 16.2 24 1005.6 8 1004.6 8 14.2 24 9.5 24 15.0 999.9 52.3* 36.3* 0.00I 999.9 000000 724050 13743 19610404 43.2 24 26.2 24 1001.2 8 1000.2 8 10.8 24 8.8 24 19.0 999.9 51.3* 37.4* 0.00I 999.9 000000 724050 13743 19610405 49.4 24 28.8 24 1006.8 8 1005.8 8 12.9 24 8.2 24 19.0 999.9 64.4* 39.4* 0.00I 999.9 000000 724050 13743 19610406 54.3 24 29.3 24 1006.6 8 1005.5 8 12.5 24 12.8 24 25.1 999.9 61.3* 49.3* 99.99 999.9 010000 724050 13743 19610407 48.5 24 27.8 24 1014.0 8 1013.0 8 13.3 24 11.0 24 22.9 999.9 53.4* 41.4* 0.00I 999.9 000000 724050 13743 19610408 45.0 24 23.0 24 1019.7 8 1018.7 8 14.9 24 12.3 24 22.9 999.9 53.4* 38.3* 0.00I 999.9 000000 724050 13743 19610409 45.0 24 26.3 24 1023.9 8 1022.9 8 11.9 24 6.5 24 15.0 999.9 51.3* 40.3* 99.99 999.9 010000 724050 13743 19610410 45.6 24 38.9 24 1004.8 8 1003.7 8 7.6 24 11.5 24 22.0 999.9 56.3* 40.3* 99.99 999.9 110000 724050 13743 19610411 48.6 24 28.7 24 1012.1 8 1011.1 8 13.8 24 17.9 24 23.9 999.9 54.3* 43.3* 0.00I 999.9 000000 724050 13743 19610412 45.4 24 33.1 24 1014.9 8 1013.9 8 7.6 24 5.1 24 15.0 999.9 51.3* 40.3* 99.99 999.9 110000 724050 13743 19610413 42.4 24 37.6 24 992.2 8 991.1 8 7.9 24 15.8 24 21.0 999.9 46.4* 36.3* 99.99 999.9 111000 724050 13743 19610414 51.6 24 33.4 24 1006.8 8 1005.8 8 13.5 24 10.8 24 15.9 999.9 63.3* 44.4* 0.00I 999.9 000000 724050 13743 19610415 58.4 24 41.8 24 1009.3 8 1008.3 8 12.1 24 4.2 24 12.0 999.9 73.4* 47.3* 0.00I 999.9 000000 724050 13743 19610416 60.6 24 48.6 24 999.7 8 998.6 8 10.8 24 11.8 24 16.9 999.9 67.3* 55.4* 99.99 999.9 110000 724050 13743 19610417 50.8 24 26.9 24 1003.8 8 1002.8 8 13.9 24 8.7 24 29.9 999.9 61.3* 40.3* 0.00I 999.9 000000 724050 13743 19610418 48.6 24 26.2 24 1007.0 8 1006.0 8 14.4 24 11.6 24 22.9 999.9 56.3* 42.4* 99.99 999.9 010000 724050 13743 19610419 48.6 24 30.9 24 1017.5 8 1016.5 8 13.0 24 10.2 24 16.9 999.9 56.3* 42.4* 99.99 999.9 010000 724050 13743 19610420 50.8 24 29.0 24 1026.4 8 1025.3 8 13.2 24 5.9 24 12.0 999.9 60.3* 42.4* 0.00I 999.9 000000 724050 13743 19610421 52.4 24 31.5 24 1027.6 8 1026.6 8 11.6 24 7.0 24 14.0 999.9 63.3* 41.4* 99.99 999.9 010000 724050 13743 19610422 62.1 24 49.5 24 1020.1 8 1019.1 8 8.7 24 6.7 24 13.0 999.9 78.3* 53.4* 99.99 999.9 110000 724050 13743 19610423 70.3 24 49.7 24 1014.0 8 1013.0 8 12.7 24 6.6 24 12.0 999.9 79.3* 62.4* 0.00I 999.9 000000 724050 13743 19610424 67.9 24 53.1 24 1010.7 8 1009.7 8 10.8 24 3.9 24 12.0 999.9 82.4* 57.4* 99.99 999.9 010000 724050 13743 19610425 77.1 24 52.9 24 1003.6 8 1002.6 8 13.0 24 7.0 24 16.9 999.9 87.3* 66.4* 0.00I 999.9 000000 724050 13743 19610426 68.9 24 53.2 24 1003.8 8 1002.8 8 13.4 24 11.1 24 26.0 999.9 76.3* 63.3* 99.99 999.9 010000 724050 13743 19610427 54.9 24 32.3 24 1018.5 8 1017.5 8 13.4 24 6.0 24 20.0 999.9 62.4* 49.3* 0.00I 999.9 000000 724050 13743 19610428 52.5 24 41.7 24 1014.0 8 1012.9 8 10.3 24 5.0 24 16.9 999.9 65.3* 45.3* 99.99 999.9 010010 724050 13743 19610429 49.9 24 32.8 24 1012.0 8 1011.0 8 13.4 24 15.8 24 25.1 999.9 56.3* 42.4* 99.99 999.9 010000 724050 13743 19610430 51.2 24 26.0 24 1019.1 8 1018.0 8 14.9 24 9.4 24 22.0 999.9 65.3* 41.4* 0.00I 999.9 000000 724050 13743 19610501 55.8 24 44.1 24 1016.0 8 1015.0 8 11.0 24 3.7 24 8.9 999.9 61.3* 51.3* 99.99 999.9 110000 724050 13743 19610502 56.5 24 41.6 24 1010.7 8 1009.6 8 9.3 24 9.4 24 21.0 999.9 62.4* 50.4* 99.99 999.9 110000 724050 13743 19610503 56.4 24 33.3 24 1014.8 8 1013.8 8 14.0 24 11.3 24 20.0 999.9 65.3* 48.4* 0.00I 999.9 000000 724050 13743 19610504 55.5 24 33.3 24 1022.3 8 1021.3 8 13.2 24 7.7 24 13.0 999.9 65.3* 46.4* 0.00I 999.9 000000 724050 13743 19610505 58.4 24 34.3 24 1027.9 8 1026.9 8 12.8 24 1.2 24 6.0 999.9 69.3* 47.3* 0.00I 999.9 000000 724050 13743 19610506 55.2 24 46.1 24 1029.3 8 1028.3 8 8.3 24 5.9 24 9.9 999.9 62.4* 51.3* 99.99 999.9 110000 724050 13743 19610507 58.5 24 55.4 24 1021.6 8 1020.6 8 2.3 24 1.8 24 7.0 999.9 68.4* 51.3* 99.99 999.9 110000 724050 13743 19610508 71.7 24 62.4 24 1015.0 8 1013.9 8 5.6 24 3.0 24 9.9 999.9 87.3* 61.3* 99.99 999.9 110010 724050 13743 19610509 78.1 24 63.3 24 1009.2 8 1008.2 8 11.8 24 9.2 24 15.0 999.9 87.3* 69.3* 0.00I 999.9 000000 724050 13743 19610510 66.2 24 57.4 24 1014.4 8 1013.4 8 10.8 24 5.9 24 14.0 999.9 76.3* 61.3* 99.99 999.9 010010 724050 13743 19610511 61.2 24 55.8 24 1021.8 8 1020.8 8 6.3 24 7.0 24 13.0 999.9 65.3* 58.3* 99.99 999.9 110000 724050 13743 19610512 64.0 24 60.8 24 1021.7 8 1020.7 8 3.1 24 3.7 24 12.0 999.9 75.4* 60.3* 99.99 999.9 110000 724050 13743 19610513 66.6 24 63.0 24 1018.2 8 1017.2 8 4.3 24 0.8 24 6.0 999.9 72.3* 61.3* 99.99 999.9 110000 724050 13743 19610514 69.5 24 62.4 24 1017.4 8 1016.3 8 4.5 24 0.5 24 6.0 999.9 79.3* 64.4* 0.00I 999.9 100000 724050 13743 19610515 70.2 24 61.3 24 1014.9 8 1013.9 8 9.9 24 6.0 24 14.0 999.9 82.4* 62.4* 0.00I 999.9 100000 724050 13743 19610516 74.1 24 61.4 24 1011.5 8 1010.5 8 12.9 24 9.0 24 20.0 999.9 80.2* 70.3* 99.99 999.9 010000 724050 13743 19610517 64.2 24 41.7 24 1022.4 8 1021.4 8 14.3 24 8.4 24 15.0 999.9 74.3* 53.4* 0.00I 999.9 000000 724050 13743 19610518 61.6 24 42.5 24 1024.5 8 1023.4 8 13.8 24 4.7 24 12.0 999.9 68.4* 54.3* 0.00I 999.9 000000 724050 13743 19610519 60.3 24 46.6 24 1019.8 8 1018.8 8 11.3 24 5.6 24 22.9 999.9 67.3* 55.4* 99.99 999.9 010000 724050 13743 19610520 60.7 24 42.1 24 1019.4 8 1018.4 8 12.9 24 10.8 24 18.1 999.9 68.4* 51.3* 0.00I 999.9 000000 724050 13743 19610521 62.4 24 40.6 24 1014.8 8 1013.8 8 13.4 24 6.9 24 14.0 999.9 72.3* 55.4* 0.00I 999.9 000000 724050 13743 19610522 60.5 24 44.3 24 1012.3 8 1011.3 8 12.9 24 9.4 24 21.0 999.9 68.4* 53.4* 0.00I 999.9 000000 724050 13743 19610523 59.7 24 40.7 24 1014.4 8 1013.4 8 12.1 24 7.0 24 15.0 999.9 71.2* 49.3* 0.00I 999.9 000000 724050 13743 19610524 64.3 24 37.3 24 1015.0 8 1014.0 8 14.4 24 7.5 24 12.0 999.9 76.3* 52.3* 0.00I 999.9 000000 724050 13743 19610525 69.8 24 45.9 24 1014.7 8 1013.7 8 12.7 24 4.7 24 11.1 999.9 84.4* 56.3* 0.00I 999.9 000000 724050 13743 19610526 70.5 24 55.6 24 1006.5 8 1005.5 8 11.9 24 10.8 24 16.9 999.9 79.3* 57.4* 99.99 999.9 010000 724050 13743 19610527 51.3 24 33.3 24 1011.1 8 1010.1 8 12.8 24 18.5 24 23.9 999.9 55.4* 45.3* 99.99 999.9 010000 724050 13743 19610528 59.3 24 35.7 24 1018.9 8 1017.9 8 14.9 24 7.8 24 15.9 999.9 77.4* 45.3* 0.00I 999.9 000000 724050 13743 19610529 66.2 24 47.2 24 1017.4 8 1016.4 8 14.4 24 8.4 24 20.0 999.9 74.3* 59.4* 99.99 999.9 010000 724050 13743 19610530 60.5 24 44.3 24 1020.6 8 1019.6 8 13.7 24 5.6 24 15.0 999.9 68.4* 54.3* 99.99 999.9 010000 724050 13743 19610531 63.9 24 39.1 24 1022.4 8 1021.3 8 13.6 24 3.9 24 11.1 999.9 78.3* 50.4* 0.00I 999.9 000000 724050 13743 19610601 71.8 24 56.6 24 1016.3 8 1015.2 8 10.1 24 6.6 24 12.0 999.9 87.3* 62.4* 99.99 999.9 110000 724050 13743 19610602 81.3 24 62.9 24 1011.0 8 1010.0 8 12.1 24 7.2 24 12.0 999.9 91.2* 72.3* 0.00I 999.9 000000 724050 13743 19610603 73.5 24 63.2 24 1011.6 8 1010.5 8 10.7 24 3.8 24 13.0 999.9 87.3* 68.4* 99.99 999.9 010010 724050 13743 19610604 70.0 24 49.0 24 1016.7 8 1015.7 8 12.9 24 1.3 24 6.0 999.9 81.3* 60.3* 0.00I 999.9 000000 724050 13743 19610605 73.0 24 55.0 24 1018.8 8 1017.6 8 13.8 24 5.4 24 11.1 999.9 87.3* 62.4* 0.00I 999.9 000000 724050 13743 19610606 77.3 24 62.5 24 1015.8 8 1014.9 8 9.7 24 4.9 24 9.9 999.9 87.3* 71.2* 0.00I 999.9 000000 724050 13743 19610607 79.8 24 64.9 24 1015.2 8 1014.1 8 7.5 24 3.1 24 7.0 999.9 90.3* 71.2* 0.00I 999.9 000000 724050 13743 19610608 75.9 24 66.5 24 1011.9 8 1010.8 8 9.1 24 4.8 24 13.0 999.9 88.3* 69.3* 99.99 999.9 010010 724050 13743 19610609 78.0 24 67.6 24 1008.3 8 1007.3 8 9.5 24 7.3 24 15.9 999.9 88.3* 72.3* 0.00I 999.9 000000 724050 13743 19610610 77.0 24 66.7 24 1009.5 8 1008.5 8 12.2 24 9.8 24 14.0 999.9 85.3* 68.4* 99.99 999.9 010010 724050 13743 19610611 75.6 24 66.0 24 1013.8 8 1012.8 8 10.9 24 3.2 24 13.0 999.9 87.3* 66.4* 0.00I 999.9 000000 724050 13743 19610612 81.1 24 67.5 24 1013.9 8 1012.9 8 8.1 24 1.6 24 6.0 999.9 93.4* 70.3* 0.00I 999.9 000000 724050 13743 19610613 83.0 24 69.7 24 1014.9 8 1013.9 8 8.2 24 4.6 24 9.9 999.9 94.3* 74.3* 0.00I 999.9 000010 724050 13743 19610614 82.2 24 67.5 24 1011.1 8 1010.1 8 10.8 24 5.9 24 11.1 999.9 89.2* 73.4* 0.00I 999.9 000000 724050 13743 19610615 64.8 24 54.1 24 1014.9 8 1013.9 8 9.6 24 10.1 24 15.9 999.9 85.3* 57.4* 99.99 999.9 110000 724050 13743 19610616 63.6 24 41.9 24 1022.0 8 1021.0 8 14.2 24 5.1 24 9.9 999.9 73.4* 54.3* 0.00I 999.9 000000 724050 13743 19610617 67.0 24 45.1 24 1023.1 8 1022.1 8 13.3 24 1.3 24 8.9 999.9 78.3* 56.3* 0.00I 999.9 000000 724050 13743 19610618 69.8 24 48.5 24 1019.5 8 1018.5 8 12.3 24 2.3 24 8.9 999.9 80.2* 57.4* 0.00I 999.9 000000 724050 13743 19610619 72.8 24 51.6 24 1016.0 8 1015.0 8 11.8 24 6.3 24 11.1 999.9 84.4* 64.4* 0.00I 999.9 000000 724050 13743 19610620 74.7 24 55.6 24 1013.6 8 1012.5 8 12.1 24 6.0 24 11.1 999.9 87.3* 63.3* 0.00I 999.9 000000 724050 13743 19610621 72.3 24 63.6 24 1011.1 8 1010.1 8 8.0 24 8.9 24 12.0 999.9 81.3* 67.3* 99.99 999.9 110000 724050 13743 19610622 73.7 24 63.9 24 1008.8 8 1007.7 8 10.8 24 7.0 24 12.0 999.9 82.4* 68.4* 99.99 999.9 110000 724050 13743 19610623 76.2 24 65.9 24 1010.7 8 1009.7 8 8.4 24 3.6 24 9.9 999.9 86.4* 67.3* 0.00I 999.9 000000 724050 13743 19610624 74.0 24 51.9 24 1014.5 8 1013.5 8 12.6 24 7.7 24 11.1 999.9 83.3* 67.3* 99.99 999.9 010000 724050 13743 19610625 71.7 24 57.0 24 1017.5 8 1016.5 8 13.3 24 7.5 24 11.1 999.9 81.3* 64.4* 99.99 999.9 010000 724050 13743 19610626 69.6 24 59.6 24 1019.0 8 1018.0 8 8.0 24 1.9 24 11.1 999.9 78.3* 62.4* 99.99 999.9 010010 724050 13743 19610627 66.6 24 59.8 24 1018.6 8 1017.6 8 6.2 24 5.4 24 8.9 999.9 72.3* 61.3* 99.99 999.9 110000 724050 13743 19610628 69.5 24 59.6 24 1019.8 8 1018.8 8 4.6 24 2.2 24 9.9 999.9 79.3* 61.3* 0.00I 999.9 100000 724050 13743 19610629 73.8 24 59.4 24 1021.2 8 1020.2 8 5.9 24 1.6 24 8.0 999.9 85.3* 62.4* 0.00I 999.9 000000 724050 13743 19610630 77.8 24 63.8 24 1019.2 8 1018.1 8 7.8 24 4.8 24 11.1 999.9 90.3* 67.3* 0.00I 999.9 000000 724050 13743 19610701 83.7 24 66.7 24 1016.6 8 1015.6 8 7.6 24 4.0 24 12.0 999.9 94.3* 74.3* 0.00I 999.9 000000 724050 13743 19610702 82.9 24 68.5 24 1012.8 8 1011.8 8 7.0 24 3.2 24 9.9 999.9 93.4* 74.3* 99.99 999.9 010010 724050 13743 19610703 76.9 24 67.7 24 1008.3 8 1007.3 8 9.8 24 5.1 24 15.9 999.9 83.3* 73.4* 99.99 999.9 010010 724050 13743 19610704 74.1 24 56.7 24 1013.8 8 1012.8 8 12.3 24 5.2 24 15.9 999.9 80.2* 66.4* 99.99 999.9 010000 724050 13743 19610705 73.5 24 59.4 24 1017.9 8 1016.9 8 11.1 24 2.6 24 8.0 999.9 77.4* 69.3* 99.99 999.9 010000 724050 13743 19610706 71.7 24 64.0 24 1018.8 8 1017.8 8 7.8 24 2.9 24 11.1 999.9 77.4* 67.3* 99.99 999.9 110000 724050 13743 19610707 73.2 24 63.7 24 1017.3 8 1016.3 8 9.2 24 3.7 24 8.9 999.9 83.3* 66.4* 0.00I 999.9 100000 724050 13743 19610708 74.8 24 61.8 24 1013.2 8 1012.2 8 10.1 24 3.9 24 15.0 999.9 82.4* 67.3* 0.00I 999.9 000000 724050 13743 19610709 70.6 24 52.4 24 1016.1 8 1015.1 8 13.0 24 8.5 24 19.0 999.9 80.2* 61.3* 0.00I 999.9 000000 724050 13743 19610710 71.7 24 48.6 24 1018.8 8 1017.8 8 13.5 24 7.8 24 14.0 999.9 80.2* 62.4* 0.00I 999.9 000000 724050 13743 19610711 75.6 24 52.3 24 1020.6 8 1019.6 8 14.5 24 5.4 24 11.1 999.9 87.3* 63.3* 0.00I 999.9 000000 724050 13743 19610712 74.8 24 60.6 24 1021.9 8 1020.9 8 10.6 24 5.2 24 9.9 999.9 81.3* 67.3* 99.99 999.9 010000 724050 13743 19610713 76.3 24 68.3 24 1018.3 8 1017.3 8 7.1 24 4.6 24 9.9 999.9 88.3* 70.3* 99.99 999.9 110010 724050 13743 19610714 78.0 24 67.7 24 1015.1 8 1014.1 8 11.0 24 3.5 24 9.9 999.9 89.2* 70.3* 99.99 999.9 010010 724050 13743 19610715 80.8 24 70.1 24 1014.8 8 1013.8 8 9.5 24 3.6 24 12.0 999.9 90.3* 75.4* 99.99 999.9 010000 724050 13743 19610716 80.5 24 69.8 24 1013.2 8 1012.2 8 11.6 24 4.0 24 12.0 999.9 90.3* 73.4* 99.99 999.9 010000 724050 13743 19610717 81.5 24 68.4 24 1013.2 8 1012.2 8 13.8 24 4.5 24 8.9 999.9 90.3* 75.4* 0.00I 999.9 000000 724050 13743 19610718 78.1 24 67.0 24 1015.2 8 1014.2 8 11.9 24 3.8 24 12.0 999.9 90.3* 69.3* 99.99 999.9 010010 724050 13743 19610719 78.6 24 67.2 24 1014.7 8 1013.7 8 9.4 24 5.4 24 11.1 999.9 90.3* 68.4* 0.00I 999.9 000000 724050 13743 19610720 82.5 24 68.4 24 1010.4 8 1009.4 8 11.4 24 8.9 24 14.0 999.9 89.2* 77.4* 0.00I 999.9 000000 724050 13743 19610721 84.0 24 70.4 24 1013.4 8 1012.4 8 8.9 24 1.7 24 8.9 999.9 94.3* 76.3* 0.00I 999.9 000000 724050 13743 19610722 84.2 24 69.5 24 1016.8 8 1015.8 8 11.6 24 2.9 24 9.9 999.9 96.3* 74.3* 0.00I 999.9 000000 724050 13743 19610723 85.7 24 71.5 24 1016.7 8 1015.6 8 9.6 24 1.8 24 8.0 999.9 95.4* 78.3* 0.00I 999.9 000010 724050 13743 19610724 84.6 24 71.7 24 1014.4 8 1013.4 8 8.9 24 4.0 24 11.1 999.9 94.3* 78.3* 0.00I 999.9 000000 724050 13743 19610725 82.0 24 70.4 24 1013.3 8 1012.3 8 10.0 24 3.1 24 16.9 999.9 93.4* 75.4* 99.99 999.9 010010 724050 13743 19610726 79.8 24 65.5 24 1016.4 8 1015.4 8 13.3 24 6.1 24 15.9 999.9 87.3* 74.3* 0.00I 999.9 000000 724050 13743 19610727 80.6 24 62.7 24 1019.0 8 1018.0 8 10.9 24 5.7 24 12.0 999.9 90.3* 71.2* 0.00I 999.9 000000 724050 13743 19610728 81.5 24 67.1 24 1018.3 8 1017.3 8 6.7 24 2.2 24 7.0 999.9 90.3* 72.3* 0.00I 999.9 100000 724050 13743 19610729 80.9 24 71.1 24 1014.4 8 1013.4 8 6.5 24 6.7 24 12.0 999.9 89.2* 75.4* 99.99 999.9 010010 724050 13743 19610730 81.7 24 70.0 24 1014.6 8 1013.6 8 7.6 24 3.8 24 16.9 999.9 92.3* 73.4* 99.99 999.9 010010 724050 13743 19610731 83.8 24 70.8 24 1014.6 8 1013.6 8 9.3 24 4.5 24 29.9 999.9 92.3* 74.3* 99.99 999.9 010010 724050 13743 19610801 81.7 24 66.8 24 1016.1 8 1015.1 8 9.8 24 7.3 24 12.0 999.9 90.3* 75.4* 99.99 999.9 010000 724050 13743 19610802 75.5 24 66.0 24 1019.6 8 1018.6 8 8.1 24 5.7 24 9.9 999.9 82.4* 70.3* 99.99 999.9 010000 724050 13743 19610803 78.8 24 70.4 24 1014.3 8 1013.2 8 7.7 24 6.1 24 11.1 999.9 85.3* 75.4* 99.99 999.9 010000 724050 13743 19610804 77.8 24 68.8 24 1014.9 8 1013.9 8 3.7 24 2.1 24 7.0 999.9 86.4* 71.2* 0.00I 999.9 100000 724050 13743 19610805 75.4 24 66.7 24 1015.9 8 1014.9 8 5.5 24 4.3 24 8.9 999.9 80.2* 72.3* 0.00I 999.9 000000 724050 13743 19610806 78.4 24 67.7 24 1014.8 8 1013.8 8 9.9 24 4.5 24 14.0 999.9 88.3* 72.3* 99.99 999.9 010000 724050 13743 19610807 78.7 24 66.1 24 1017.0 8 1016.0 8 8.7 24 2.9 24 13.0 999.9 85.3* 71.2* 99.99 999.9 010000 724050 13743 19610808 80.0 24 64.9 24 1017.9 8 1016.9 8 9.2 24 4.1 24 14.0 999.9 89.2* 71.2* 0.00I 999.9 000000 724050 13743 19610809 82.1 24 65.6 24 1019.0 8 1017.9 8 6.5 24 1.2 24 6.0 999.9 93.4* 74.3* 0.00I 999.9 000000 724050 13743 19610810 79.3 24 70.1 24 1020.8 8 1019.8 8 9.9 24 4.5 24 11.1 999.9 90.3* 71.2* 99.99 999.9 010010 724050 13743 19610811 82.2 24 70.9 24 1018.4 8 1017.4 8 11.9 24 8.3 24 16.9 999.9 90.3* 76.3* 99.99 999.9 010000 724050 13743 19610812 81.2 24 69.7 24 1015.8 8 1014.7 8 12.5 24 4.7 24 9.9 999.9 86.4* 77.4* 99.99 999.9 010000 724050 13743 19610813 75.0 24 59.0 24 1016.2 8 1015.2 8 10.5 24 8.1 24 20.0 999.9 79.3* 68.4* 0.00I 999.9 000000 724050 13743 19610814 71.2 24 47.5 24 1022.9 8 1021.9 8 14.9 24 6.0 24 14.0 999.9 80.2* 61.3* 0.00I 999.9 000000 724050 13743 19610815 73.8 24 54.3 24 1024.2 8 1023.2 8 13.0 24 3.9 24 9.9 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19610816 78.1 24 60.6 24 1020.1 8 1019.1 8 11.0 24 6.2 24 9.9 999.9 91.2* 68.4* 0.00I 999.9 000000 724050 13743 19610817 77.1 24 61.4 24 1022.6 8 1021.6 8 8.1 24 4.4 24 8.9 999.9 85.3* 68.4* 99.99 999.9 010000 724050 13743 19610818 74.7 24 59.0 24 1027.6 8 1026.6 8 9.9 24 3.8 24 11.1 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19610819 70.5 24 56.4 24 1025.3 8 1024.3 8 11.1 24 2.6 24 8.0 999.9 78.3* 62.4* 0.00I 999.9 000000 724050 13743 19610820 69.0 24 62.7 24 1018.0 8 1016.9 8 9.2 24 3.0 24 11.1 999.9 73.4* 65.3* 99.99 999.9 010000 724050 13743 19610821 66.9 24 62.0 24 1011.6 8 1010.6 8 4.9 24 9.5 24 15.0 999.9 74.3* 63.3* 99.99 999.9 110000 724050 13743 19610822 74.2 24 65.5 24 1017.8 8 1016.8 8 8.1 24 4.1 24 8.9 999.9 84.4* 66.4* 0.00I 999.9 000000 724050 13743 19610823 75.5 24 68.9 24 1020.7 8 1019.6 8 8.2 24 2.1 24 7.0 999.9 83.3* 70.3* 99.99 999.9 010010 724050 13743 19610824 78.4 24 70.9 24 1022.4 8 1021.3 8 10.6 24 3.2 24 9.9 999.9 86.4* 73.4* 99.99 999.9 110000 724050 13743 19610825 79.8 24 72.5 24 1020.5 8 1019.1 8 12.8 24 7.0 24 9.9 999.9 85.3* 75.4* 99.99 999.9 010010 724050 13743 19610826 76.4 24 72.3 24 1017.2 8 1016.2 8 8.4 24 3.7 24 9.9 999.9 85.3* 72.3* 99.99 999.9 110010 724050 13743 19610827 79.9 24 71.4 24 1015.9 8 1014.9 8 13.8 24 2.6 24 11.1 999.9 90.3* 74.3* 0.00I 999.9 000000 724050 13743 19610828 82.0 24 71.9 24 1016.6 8 1015.6 8 8.6 24 2.5 24 7.0 999.9 94.3* 75.4* 0.00I 999.9 000000 724050 13743 19610829 82.8 24 70.7 24 1014.7 8 1013.6 8 12.0 24 6.1 24 14.0 999.9 92.3* 73.4* 0.00I 999.9 000000 724050 13743 19610830 80.5 24 64.0 24 1016.8 8 1015.8 8 9.4 24 5.3 24 11.1 999.9 87.3* 72.3* 0.00I 999.9 000000 724050 13743 19610831 79.0 24 65.2 24 1017.9 8 1016.9 8 7.9 24 2.8 24 8.9 999.9 92.3* 69.3* 0.00I 999.9 000000 724050 13743 19610901 83.0 24 72.0 24 1016.4 8 1015.4 8 7.3 24 6.3 24 15.0 999.9 92.3* 74.3* 0.00I 999.9 000000 724050 13743 19610902 84.4 24 71.6 24 1017.1 8 1016.1 8 13.1 24 4.3 24 11.1 999.9 94.3* 75.4* 0.00I 999.9 000000 724050 13743 19610903 82.8 24 72.6 24 1019.4 8 1018.3 8 11.6 24 3.1 24 29.9 999.9 94.3* 73.4* 99.99 999.9 010010 724050 13743 19610904 79.3 24 70.9 24 1017.2 8 1016.1 8 12.5 24 2.5 24 13.0 999.9 91.2* 73.4* 0.00I 999.9 000010 724050 13743 19610905 82.4 24 71.2 24 1015.5 8 1014.5 8 9.3 24 3.6 24 7.0 999.9 94.3* 75.4* 0.00I 999.9 000000 724050 13743 19610906 83.2 24 72.5 24 1016.3 8 1015.3 8 6.0 24 2.0 24 6.0 999.9 91.2* 75.4* 0.00I 999.9 000000 724050 13743 19610907 81.1 24 74.0 24 1018.9 8 1017.9 8 3.1 24 4.4 24 9.9 999.9 86.4* 76.3* 0.00I 999.9 100000 724050 13743 19610908 79.2 24 69.5 24 1022.0 8 1021.0 8 6.4 24 3.2 24 8.0 999.9 85.3* 74.3* 0.00I 999.9 000000 724050 13743 19610909 78.7 24 67.0 24 1021.7 8 1020.7 8 7.5 24 2.5 24 9.9 999.9 88.3* 72.3* 0.00I 999.9 000000 724050 13743 19610910 78.9 24 68.6 24 1019.8 8 1018.7 8 8.0 24 3.6 24 7.0 999.9 89.2* 71.2* 0.00I 999.9 000000 724050 13743 19610911 81.5 24 70.7 24 1017.8 8 1016.7 8 8.7 24 4.4 24 8.0 999.9 90.3* 73.4* 0.00I 999.9 000000 724050 13743 19610912 83.1 24 70.4 24 1016.9 8 1015.7 8 6.3 24 3.0 24 8.0 999.9 94.3* 73.4* 0.00I 999.9 000000 724050 13743 19610913 82.1 24 69.6 24 1016.5 8 1015.5 8 7.4 24 5.7 24 8.9 999.9 91.2* 73.4* 0.00I 999.9 000000 724050 13743 19610914 78.6 24 71.4 24 1012.1 8 1011.0 8 9.2 24 7.9 24 13.0 999.9 85.3* 74.3* 99.99 999.9 110000 724050 13743 19610915 72.5 24 59.8 24 1010.2 8 1009.1 8 13.9 24 12.2 24 18.1 999.9 78.3* 67.3* 99.99 999.9 010000 724050 13743 19610916 63.5 24 43.2 24 1021.6 8 1020.6 8 14.9 24 10.0 24 14.0 999.9 72.3* 55.4* 0.00I 999.9 000000 724050 13743 19610917 63.5 24 47.1 24 1027.4 8 1026.4 8 13.2 24 6.1 24 12.0 999.9 73.4* 54.3* 0.00I 999.9 000000 724050 13743 19610918 61.7 24 48.9 24 1028.1 8 1027.1 8 10.9 24 6.7 24 11.1 999.9 67.3* 54.3* 0.00I 999.9 000000 724050 13743 19610919 66.2 24 61.0 24 1023.6 8 1022.5 8 4.6 24 8.1 24 12.0 999.9 72.3* 62.4* 99.99 999.9 110000 724050 13743 19610920 69.9 24 66.2 24 1016.2 8 1015.2 8 2.9 24 9.4 24 13.0 999.9 75.4* 67.3* 99.99 999.9 110000 724050 13743 19610921 75.6 24 64.2 24 1012.3 8 1011.3 8 11.1 24 13.2 24 18.1 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19610922 77.8 24 60.8 24 1016.4 8 1015.4 8 13.8 24 8.5 24 14.0 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19610923 79.5 24 65.8 24 1017.5 8 1016.5 8 12.5 24 1.2 24 8.0 999.9 91.2* 69.3* 0.00I 999.9 000000 724050 13743 19610924 80.2 24 66.2 24 1017.3 8 1016.3 8 11.8 24 3.6 24 12.0 999.9 91.2* 71.2* 0.00I 999.9 000000 724050 13743 19610925 78.6 24 66.6 24 1014.0 8 1013.0 8 8.1 24 2.2 24 9.9 999.9 90.3* 69.3* 0.00I 999.9 000000 724050 13743 19610926 74.8 24 59.4 24 1013.7 8 1012.7 8 11.9 24 7.6 24 15.9 999.9 84.4* 67.3* 0.00I 999.9 000000 724050 13743 19610927 67.3 24 51.9 24 1021.0 8 1020.0 8 9.9 24 1.0 24 8.0 999.9 78.3* 59.4* 0.00I 999.9 000000 724050 13743 19610928 68.7 24 54.1 24 1020.1 8 1019.1 8 10.4 24 5.1 24 15.9 999.9 79.3* 60.3* 0.00I 999.9 000000 724050 13743 19610929 63.5 24 41.4 24 1023.9 8 1022.9 8 11.6 24 3.3 24 12.0 999.9 72.3* 51.3* 0.00I 999.9 000000 724050 13743 19610930 60.7 24 46.1 24 1026.8 8 1025.7 8 9.4 24 3.3 24 9.9 999.9 76.3* 48.4* 0.00I 999.9 000000 724050 13743 19611001 63.6 24 52.8 24 1026.5 8 1025.5 8 9.2 24 2.3 24 7.0 999.9 76.3* 54.3* 0.00I 999.9 100000 724050 13743 19611002 65.5 24 60.3 24 1020.9 8 1019.8 8 7.2 24 2.1 24 7.0 999.9 69.3* 62.4* 99.99 999.9 110000 724050 13743 19611003 62.0 24 58.5 24 1013.8 8 1012.8 8 4.7 24 8.6 24 18.1 999.9 66.4* 54.3* 99.99 999.9 110000 724050 13743 19611004 53.7 24 40.9 24 1015.4 8 1014.4 8 12.5 24 14.9 24 20.0 999.9 62.4* 48.4* 99.99 999.9 110000 724050 13743 19611005 55.6 24 39.5 24 1023.6 8 1022.5 8 12.1 24 4.0 24 12.0 999.9 68.4* 45.3* 0.00I 999.9 000000 724050 13743 19611006 63.2 24 46.7 24 1024.5 8 1023.5 8 11.2 24 2.8 24 8.9 999.9 78.3* 51.3* 0.00I 999.9 000000 724050 13743 19611007 65.8 24 51.8 24 1023.3 8 1022.3 8 11.3 24 0.9 24 5.1 999.9 81.3* 55.4* 0.00I 999.9 000000 724050 13743 19611008 67.8 24 56.7 24 1021.2 8 1020.2 8 7.9 24 1.6 24 8.0 999.9 78.3* 60.3* 0.00I 999.9 000000 724050 13743 19611009 67.4 24 57.7 24 1020.5 8 1019.5 8 6.4 24 0.9 24 8.0 999.9 78.3* 60.3* 0.00I 999.9 000000 724050 13743 19611010 68.7 24 52.5 24 1022.8 8 1021.8 8 6.8 24 0.0 24 999.9 999.9 82.4* 59.4* 0.00I 999.9 000000 724050 13743 19611011 67.3 24 53.6 24 1025.1 8 1024.1 8 5.5 24 0.2 24 5.1 999.9 80.2* 57.4* 0.00I 999.9 000000 724050 13743 19611012 64.8 24 54.7 24 1024.3 8 1023.3 8 3.7 24 0.0 24 999.9 999.9 78.3* 57.4* 0.00I 999.9 100000 724050 13743 19611013 67.8 24 58.3 24 1019.2 8 1018.2 8 4.0 24 1.6 24 6.0 999.9 82.4* 59.4* 0.00I 999.9 100000 724050 13743 19611014 64.8 24 57.0 24 1010.7 8 1009.7 8 6.2 24 5.6 24 20.0 999.9 74.3* 50.4* 99.99 999.9 110000 724050 13743 19611015 50.2 24 33.9 24 1014.7 8 1013.6 8 14.3 24 14.1 24 22.9 999.9 58.3* 45.3* 99.99 999.9 010000 724050 13743 19611016 53.9 24 34.7 24 1016.4 8 1015.4 8 14.3 24 6.8 24 18.1 999.9 61.3* 48.4* 0.00I 999.9 000000 724050 13743 19611017 55.4 24 44.0 24 1019.1 8 1018.0 8 10.5 24 1.5 24 6.0 999.9 71.2* 45.3* 0.00I 999.9 000000 724050 13743 19611018 61.8 24 48.4 24 1017.7 8 1016.7 8 9.6 24 1.6 24 8.0 999.9 78.3* 50.4* 0.00I 999.9 000000 724050 13743 19611019 64.6 24 51.9 24 1014.2 8 1013.2 8 10.4 24 2.9 24 9.9 999.9 75.4* 55.4* 0.00I 999.9 000000 724050 13743 19611020 62.2 24 53.1 24 1005.5 8 1004.5 8 6.6 24 6.9 24 14.0 999.9 71.2* 55.4* 0.00I 999.9 100000 724050 13743 19611021 58.5 24 53.1 24 1006.0 8 1005.0 8 5.4 24 8.8 24 14.0 999.9 69.3* 53.4* 99.99 999.9 110000 724050 13743 19611022 56.8 24 46.4 24 1010.1 8 1009.1 8 10.6 24 9.7 24 15.0 999.9 63.3* 53.4* 99.99 999.9 110000 724050 13743 19611023 53.9 24 32.4 24 1018.2 8 1017.2 8 13.2 24 3.6 24 7.0 999.9 62.4* 45.3* 0.00I 999.9 000000 724050 13743 19611024 51.3 24 42.0 24 1020.1 8 1019.1 8 9.1 24 1.2 24 5.1 999.9 63.3* 43.3* 0.00I 999.9 000000 724050 13743 19611025 57.6 24 48.8 24 1018.8 8 1017.8 8 6.6 24 1.9 24 6.0 999.9 73.4* 48.4* 0.00I 999.9 000000 724050 13743 19611026 61.1 24 39.0 24 1017.0 8 1016.0 8 13.4 24 10.7 24 20.0 999.9 69.3* 54.3* 99.99 999.9 010000 724050 13743 19611027 51.6 24 32.0 24 1025.2 8 1024.2 8 14.9 24 8.1 24 15.9 999.9 59.4* 46.4* 0.00I 999.9 000000 724050 13743 19611028 49.1 24 35.9 24 1028.8 8 1027.7 8 10.2 24 2.5 24 8.9 999.9 62.4* 39.4* 0.00I 999.9 100000 724050 13743 19611029 58.0 24 38.3 24 1026.4 8 1025.4 8 12.3 24 2.8 24 7.0 999.9 74.3* 44.4* 0.00I 999.9 000000 724050 13743 19611030 63.8 24 48.9 24 1018.8 8 1017.8 8 11.9 24 4.0 24 9.9 999.9 79.3* 55.4* 99.99 999.9 010000 724050 13743 19611031 70.6 24 55.8 24 1008.6 8 1007.6 8 13.0 24 6.8 24 19.0 999.9 80.2* 64.4* 0.00I 999.9 000000 724050 13743 19611101 65.4 24 42.3 24 1005.2 8 1004.2 8 12.9 24 9.4 24 18.1 999.9 71.2* 58.3* 0.00I 999.9 000000 724050 13743 19611102 57.7 24 38.5 24 1018.3 8 1017.2 8 12.7 24 6.2 24 12.0 999.9 67.3* 48.4* 0.00I 999.9 000000 724050 13743 19611103 68.6 24 59.1 24 1022.7 8 1021.7 8 11.1 24 8.8 24 14.0 999.9 78.3* 62.4* 0.00I 999.9 000000 724050 13743 19611104 72.8 24 63.6 24 1022.3 8 1021.3 8 10.6 24 9.7 24 14.0 999.9 80.2* 69.3* 99.99 999.9 010000 724050 13743 19611105 73.6 24 61.0 24 1022.9 8 1021.9 8 11.2 24 9.0 24 12.0 999.9 82.4* 68.4* 0.00I 999.9 000000 724050 13743 19611106 66.4 24 58.2 24 1022.4 8 1021.4 8 8.0 24 6.4 24 14.0 999.9 73.4* 61.3* 0.00I 999.9 100000 724050 13743 19611107 56.3 24 45.2 24 1019.4 8 1018.4 8 8.3 24 11.5 24 19.0 999.9 62.4* 54.3* 99.99 999.9 110000 724050 13743 19611108 47.8 24 29.9 24 1015.3 8 1014.3 8 10.6 24 9.8 24 22.0 999.9 51.3* 43.3* 0.00I 999.9 000000 724050 13743 19611109 41.2 24 21.1 24 1014.3 8 1013.3 8 11.9 24 16.2 24 23.9 999.9 47.3* 35.4* 0.00I 999.9 000000 724050 13743 19611110 43.4 24 19.3 24 1015.1 8 1014.1 8 13.1 24 11.5 24 19.0 999.9 49.3* 39.4* 0.00I 999.9 000000 724050 13743 19611111 43.4 24 23.7 24 1021.9 8 1020.9 8 10.7 24 2.9 24 9.9 999.9 56.3* 33.4* 0.00I 999.9 000000 724050 13743 19611112 48.4 24 38.0 24 1023.5 8 1022.5 8 6.9 24 0.9 24 9.9 999.9 58.3* 40.3* 0.00I 999.9 000000 724050 13743 19611113 60.8 24 53.1 24 1026.8 8 1025.8 8 8.4 24 5.0 24 9.9 999.9 70.3* 56.3* 0.00I 999.9 000000 724050 13743 19611114 61.7 24 57.3 24 1023.7 8 1022.7 8 6.8 24 7.1 24 14.0 999.9 64.4* 59.4* 99.99 999.9 110000 724050 13743 19611115 61.4 24 55.1 24 1021.8 8 1020.8 8 6.1 24 3.5 24 9.9 999.9 64.4* 58.3* 99.99 999.9 110000 724050 13743 19611116 56.0 24 50.9 24 1020.7 8 1019.7 8 4.8 24 7.1 24 12.0 999.9 59.4* 53.4* 99.99 999.9 110000 724050 13743 19611117 57.1 24 44.9 24 1012.1 8 1011.1 8 10.7 24 13.8 24 23.9 999.9 61.3* 50.4* 0.00I 999.9 100000 724050 13743 19611118 45.4 24 24.9 24 1018.8 8 1017.7 8 13.4 24 13.0 24 22.0 999.9 49.3* 40.3* 0.00I 999.9 000000 724050 13743 19611119 39.3 24 22.9 24 1021.9 8 1020.9 8 12.2 24 6.4 24 13.0 999.9 44.4* 35.4* 0.00I 999.9 000000 724050 13743 19611120 37.9 24 31.7 24 1021.1 8 1020.0 8 6.3 24 7.8 24 19.0 999.9 42.4* 33.4* 99.99 999.9 111000 724050 13743 19611121 42.1 24 27.0 24 1023.3 8 1022.2 8 12.4 24 14.2 24 22.9 999.9 48.4* 38.3* 0.00I 999.9 000000 724050 13743 19611122 41.6 24 26.8 24 1023.4 8 1022.4 8 12.1 24 5.8 24 18.1 999.9 50.4* 33.4* 0.00I 999.9 000000 724050 13743 19611123 46.9 24 33.9 24 1018.8 8 1017.8 8 10.2 24 7.8 24 14.0 999.9 55.4* 40.3* 0.00I 999.9 000000 724050 13743 19611124 53.1 24 42.5 24 1007.6 8 1006.5 8 10.4 24 16.0 24 30.9 999.9 55.4* 49.3* 99.99 999.9 110000 724050 13743 19611125 48.5 24 28.6 24 1024.7 8 1023.7 8 14.4 24 13.0 24 22.0 999.9 57.4* 42.4* 0.00I 999.9 000000 724050 13743 19611126 47.7 24 30.5 24 1027.2 8 1026.2 8 9.3 24 0.8 24 9.9 999.9 61.3* 39.4* 0.00I 999.9 000000 724050 13743 19611127 52.7 24 34.5 24 1015.2 8 1014.2 8 9.1 24 4.5 24 28.0 999.9 57.4* 47.3* 0.00I 999.9 000000 724050 13743 19611128 38.7 24 16.8 24 1015.8 8 1014.8 8 14.8 24 20.3 24 28.0 999.9 49.3* 33.4* 0.00I 999.9 000000 724050 13743 19611129 37.5 24 17.2 24 1015.6 8 1014.6 8 14.9 24 16.5 24 23.9 999.9 43.3* 33.4* 0.00I 999.9 000000 724050 13743 19611130 41.8 24 19.7 24 1023.0 8 1022.0 8 13.8 24 7.8 24 16.9 999.9 52.3* 35.4* 0.00I 999.9 000000 724050 13743 19611201 42.9 24 29.6 24 1027.1 8 1026.0 8 6.9 24 1.7 24 9.9 999.9 54.3* 34.3* 0.00I 999.9 000000 724050 13743 19611202 44.2 24 34.1 24 1023.6 8 1022.6 8 5.6 24 1.1 24 5.1 999.9 53.4* 38.3* 0.00I 999.9 000000 724050 13743 19611203 50.6 24 35.5 24 1025.6 8 1024.6 8 6.4 24 0.9 24 8.0 999.9 59.4* 44.4* 0.00I 999.9 000000 724050 13743 19611204 47.0 24 33.9 24 1025.6 8 1024.6 8 7.7 24 3.7 24 12.0 999.9 58.3* 38.3* 0.00I 999.9 000000 724050 13743 19611205 56.5 24 34.9 24 1010.4 8 1009.4 8 10.7 24 13.8 24 28.9 999.9 60.3* 50.4* 0.00I 999.9 000000 724050 13743 19611206 43.5 24 15.4 24 1014.5 8 1013.5 8 14.2 24 7.7 24 16.9 999.9 51.3* 37.4* 0.00I 999.9 000000 724050 13743 19611207 42.7 24 19.4 24 1010.3 8 1009.3 8 12.6 24 9.4 24 28.0 999.9 51.3* 33.4* 0.00I 999.9 000000 724050 13743 19611208 36.3 24 14.2 24 1019.9 8 1018.9 8 14.2 24 15.7 24 20.0 999.9 42.4* 31.3* 0.00I 999.9 000000 724050 13743 19611209 29.6 24 17.2 24 1031.6 8 1030.6 8 9.4 24 5.3 24 12.0 999.9 33.4* 25.3* 99.99 999.9 101000 724050 13743 19611210 33.9 24 31.2 24 1026.6 8 1025.6 8 4.9 24 0.3 24 4.1 999.9 37.4* 29.3* 99.99 999.9 111000 724050 13743 19611211 40.2 24 36.0 24 1025.0 8 1024.0 8 3.3 24 0.4 24 2.9 999.9 49.3* 36.3* 99.99 999.9 110000 724050 13743 19611212 43.3 24 40.2 24 1017.1 8 1016.1 8 2.2 24 4.0 24 8.0 999.9 44.4* 41.4* 99.99 999.9 110000 724050 13743 19611213 41.4 24 29.4 24 1014.5 8 1013.5 8 9.4 24 12.0 24 22.0 999.9 47.3* 33.4* 99.99 999.9 110000 724050 13743 19611214 30.6 24 15.4 24 1028.2 8 1027.2 8 11.4 24 5.8 24 9.9 999.9 36.3* 25.3* 0.00I 999.9 000000 724050 13743 19611215 36.1 24 20.0 24 1028.2 8 1027.2 8 12.6 24 10.1 24 18.1 999.9 39.4* 32.4* 0.00I 999.9 000000 724050 13743 19611216 27.2 24 6.6 24 1034.4 8 1033.4 8 12.9 24 4.6 24 7.0 999.9 33.4* 20.3* 0.00I 999.9 000000 724050 13743 19611217 34.1 24 31.1 24 1019.0 8 1018.0 8 4.1 24 0.8 24 6.0 999.9 38.3* 29.3* 99.99 999.9 110000 724050 13743 19611218 38.1 24 35.6 24 1006.8 8 1005.8 8 4.2 24 5.5 24 13.0 999.9 42.4* 35.4* 99.99 999.9 110000 724050 13743 19611219 42.4 24 38.5 24 1009.9 8 1008.9 8 5.7 24 3.0 24 8.0 999.9 44.4* 40.3* 99.99 999.9 110000 724050 13743 19611220 42.2 24 34.8 24 1011.2 8 1010.2 8 7.8 24 8.7 24 20.0 999.9 47.3* 36.3* 99.99 999.9 110000 724050 13743 19611221 38.4 24 20.5 24 1020.2 8 1019.2 8 14.2 24 13.5 24 22.0 999.9 40.3* 36.3* 0.00I 999.9 000000 724050 13743 19611222 35.5 24 20.4 24 1021.7 8 1020.7 8 10.2 24 6.3 24 12.0 999.9 40.3* 31.3* 0.00I 999.9 000000 724050 13743 19611223 33.7 24 26.1 24 1018.1 8 1017.1 8 4.6 24 4.2 24 16.9 999.9 42.4* 28.4* 99.99 999.9 111000 724050 13743 19611224 34.2 24 31.5 24 1004.2 8 1003.2 8 4.1 24 12.0 24 20.0 999.9 36.3* 31.3* 99.99 999.9 111000 724050 13743 19611225 33.8 24 21.9 24 1012.6 8 1011.6 8 13.7 24 15.4 24 21.0 999.9 38.3* 30.4* 0.00I 999.9 000000 724050 13743 19611226 32.6 24 17.8 24 1019.1 8 1018.1 8 14.7 24 6.8 24 16.9 999.9 44.4* 26.4* 0.00I 999.9 000000 724050 13743 19611227 42.6 24 24.2 24 1012.1 8 1011.1 8 12.9 24 5.7 24 9.9 999.9 56.3* 34.3* 0.00I 999.9 000000 724050 13743 19611228 36.8 24 29.6 24 1005.5 8 1004.5 8 8.0 24 10.9 24 16.9 999.9 52.3* 31.3* 99.99 999.9 111000 724050 13743 19611229 27.4 24 14.3 24 1011.9 8 1010.9 8 14.4 24 7.5 24 13.0 999.9 32.4* 23.4* 0.00I 999.9 000000 724050 13743 19611230 26.1 24 11.5 24 1018.7 8 1017.7 8 13.9 24 6.6 24 13.0 999.9 34.3* 21.4* 0.00I 999.9 000000 724050 13743 19611231 29.9 24 16.0 24 1025.3 8 1024.3 8 10.6 24 2.8 24 8.0 999.9 40.3* 20.3* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1955/0000755000175000017500000000000014302004506015103 5ustar nileshnileshfluids-1.0.22/tests/gsod/1955/724050-13743.op0000644000175000017500000014327214302004506016674 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19550101 41.2 24 34.1 24 1022.9 24 1021.9 24 6.2 24 4.2 24 11.1 999.9 51.3* 35.4* 0.00I 999.9 000000 724050 13743 19550102 50.9 24 42.9 24 1016.6 24 1015.5 24 7.4 24 11.9 24 23.9 999.9 62.4* 45.3* 99.99 999.9 110000 724050 13743 19550103 48.4 24 28.3 24 1024.4 24 1023.4 24 12.2 24 9.9 24 15.9 999.9 57.4* 41.4* 0.00I 999.9 000000 724050 13743 19550104 50.7 24 33.4 24 1016.1 24 1015.1 24 10.9 24 6.9 24 18.1 999.9 59.4* 45.3* 0.00I 999.9 000000 724050 13743 19550105 38.2 24 28.6 24 1019.3 24 1018.3 24 9.2 24 7.9 24 15.9 999.9 53.4* 33.4* 99.99 999.9 110000 724050 13743 19550106 43.2 24 37.1 24 1007.0 24 1006.0 24 7.7 24 12.4 24 29.9 999.9 54.3* 36.3* 99.99 999.9 010000 724050 13743 19550107 39.0 24 21.2 24 1015.6 24 1014.5 24 13.3 24 18.4 24 23.9 999.9 44.4* 37.4* 0.00I 999.9 000000 724050 13743 19550108 37.7 24 23.7 24 1018.6 24 1017.6 24 13.1 24 9.7 24 22.0 999.9 46.4* 32.4* 0.00I 999.9 000000 724050 13743 19550109 36.5 24 29.7 24 1013.6 24 1012.6 24 3.9 24 1.7 24 8.9 999.9 41.4* 33.4* 99.99 999.9 001000 724050 13743 19550110 40.9 24 30.8 24 1015.1 24 1014.1 24 9.7 24 8.4 24 15.0 999.9 45.3* 36.3* 0.00I 999.9 000000 724050 13743 19550111 36.4 24 25.0 24 1016.6 24 1015.6 24 11.8 24 9.2 24 13.0 999.9 40.3* 31.3* 99.99 999.9 101000 724050 13743 19550112 32.2 24 20.1 24 1018.0 24 1016.9 24 10.9 24 4.1 24 9.9 999.9 36.3* 26.4* 0.00I 999.9 000000 724050 13743 19550113 32.7 24 27.9 24 1004.9 24 1003.9 24 5.5 24 9.1 24 26.0 999.9 37.4* 30.4* 99.99 999.9 101000 724050 13743 19550114 32.4 24 20.6 24 1014.6 24 1013.6 24 13.8 24 17.0 24 22.9 999.9 37.4* 29.3* 0.00I 999.9 000000 724050 13743 19550115 36.6 24 23.5 24 1009.9 24 1008.9 24 9.2 24 5.0 24 14.0 999.9 48.4* 32.4* 99.99 999.9 001000 724050 13743 19550116 37.9 23 20.1 23 1011.0 23 1009.9 23 14.9 23 13.4 23 22.0 999.9 43.3* 32.4* 0.00I 999.9 000000 724050 13743 19550117 36.6 24 19.6 24 1014.8 24 1013.8 24 13.1 24 9.2 24 19.0 999.9 44.4* 28.4* 0.00I 999.9 000000 724050 13743 19550118 30.8 24 16.5 24 1020.9 24 1019.9 24 12.6 24 12.2 24 21.0 999.9 38.3* 25.3* 0.00I 999.9 000000 724050 13743 19550119 33.1 24 21.3 24 1014.8 24 1013.8 24 14.5 24 11.7 24 20.0 999.9 39.4* 29.3* 0.00I 999.9 000000 724050 13743 19550120 32.8 24 16.8 24 1022.2 24 1021.2 24 13.8 24 18.6 24 27.0 999.9 37.4* 27.3* 0.00I 999.9 000000 724050 13743 19550121 28.8 24 10.8 24 1027.1 24 1026.0 24 13.3 24 6.1 24 12.0 999.9 33.4* 23.4* 0.00I 999.9 000000 724050 13743 19550122 36.4 24 26.7 24 1012.5 24 1011.5 24 10.5 24 7.2 24 12.0 999.9 48.4* 32.4* 99.99 999.9 011000 724050 13743 19550123 36.3 24 24.1 24 1015.2 24 1014.2 24 11.1 24 6.9 24 9.9 999.9 41.4* 32.4* 0.00I 999.9 000000 724050 13743 19550124 34.4 24 21.9 24 1017.5 24 1016.5 24 10.4 24 5.6 24 9.9 999.9 38.3* 31.3* 0.00I 999.9 000000 724050 13743 19550125 34.4 24 25.7 24 1016.1 24 1015.1 24 6.2 24 6.0 24 15.9 999.9 44.4* 29.3* 99.99 999.9 001000 724050 13743 19550126 36.3 24 18.4 24 1021.7 24 1020.7 24 14.2 24 9.0 24 19.0 999.9 46.4* 29.3* 0.00I 999.9 000000 724050 13743 19550127 34.9 24 18.0 24 1017.6 24 1016.5 24 13.9 24 17.7 24 30.9 999.9 45.3* 23.4* 0.00I 999.9 000000 724050 13743 19550128 20.2 24 2.2 24 1021.9 24 1020.9 24 12.7 24 10.3 24 18.1 999.9 29.3* 12.4* 0.00I 999.9 000000 724050 13743 19550129 24.5 24 9.9 24 1019.2 24 1018.2 24 9.2 24 7.4 24 15.9 999.9 30.4* 18.3* 0.00I 999.9 000000 724050 13743 19550130 24.1 24 10.4 24 1022.4 24 1021.4 24 7.0 24 9.9 24 16.9 999.9 28.4* 21.4* 99.99 999.9 101000 724050 13743 19550131 23.4 24 8.6 24 1029.8 24 1028.8 24 10.7 24 9.3 24 16.9 999.9 34.3* 15.4* 0.00I 999.9 000000 724050 13743 19550201 39.2 24 24.0 24 1016.8 24 1015.8 24 8.3 24 8.8 24 14.0 999.9 48.4* 30.4* 99.99 999.9 001000 724050 13743 19550202 33.1 24 28.4 24 1014.9 24 1013.9 24 3.2 24 12.2 24 21.0 999.9 45.3* 26.4* 99.99 999.9 111000 724050 13743 19550203 18.6 24 7.3 24 1029.6 24 1028.6 24 12.8 24 15.2 24 23.9 999.9 27.3* 10.4* 0.00I 999.9 000000 724050 13743 19550204 21.1 24 9.1 24 1040.3 24 1039.3 24 14.4 24 13.7 24 20.0 999.9 32.4* 14.4* 0.00I 999.9 000000 724050 13743 19550205 26.2 24 15.3 24 1038.1 24 1037.1 24 9.8 24 4.3 24 9.9 999.9 39.4* 16.3* 0.00I 999.9 000000 724050 13743 19550206 38.4 24 33.7 24 1023.1 24 1022.1 24 5.9 24 6.5 24 16.9 999.9 53.4* 34.3* 99.99 999.9 111000 724050 13743 19550207 43.8 24 37.9 24 1009.8 24 1008.8 24 10.5 24 11.6 24 16.9 999.9 53.4* 40.3* 99.99 999.9 110000 724050 13743 19550208 36.5 24 23.5 24 1020.0 24 1019.0 24 9.0 24 10.4 24 15.0 999.9 41.4* 30.4* 0.00I 999.9 000000 724050 13743 19550209 35.5 24 25.1 24 1022.7 24 1021.7 24 6.8 24 5.6 24 11.1 999.9 51.3* 25.3* 0.00I 999.9 000000 724050 13743 19550210 47.0 24 32.1 24 1020.6 24 1019.6 24 11.4 24 14.0 24 16.9 999.9 61.3* 39.4* 0.00I 999.9 000000 724050 13743 19550211 48.4 24 42.0 24 1006.3 24 1005.3 24 9.7 24 15.8 24 23.9 999.9 58.3* 28.4* 99.99 999.9 111000 724050 13743 19550212 18.3 24 4.4 24 1017.5 24 1016.5 24 13.4 24 20.0 24 28.0 999.9 27.3* 11.3* 0.00I 999.9 000000 724050 13743 19550213 20.5 24 5.3 24 1035.3 24 1034.3 24 14.9 24 15.8 24 23.9 999.9 28.4* 15.4* 0.00I 999.9 000000 724050 13743 19550214 26.1 24 14.9 24 1033.2 24 1032.2 24 10.4 24 6.0 24 14.0 999.9 37.4* 16.3* 0.00I 999.9 000000 724050 13743 19550215 37.8 24 24.1 24 1019.5 24 1018.5 24 10.9 24 8.2 24 14.0 999.9 47.3* 29.3* 0.00I 999.9 000000 724050 13743 19550216 41.2 24 32.6 24 1020.8 24 1019.8 24 8.0 24 6.8 24 18.1 999.9 60.3* 31.3* 0.00I 999.9 000000 724050 13743 19550217 46.2 24 37.7 24 1020.0 24 1018.9 24 6.9 24 8.6 24 15.9 999.9 56.3* 41.4* 99.99 999.9 110000 724050 13743 19550218 36.8 24 23.3 24 1027.5 24 1026.4 24 9.2 24 11.6 24 15.0 999.9 45.3* 30.4* 0.00I 999.9 000000 724050 13743 19550219 38.0 24 27.0 24 1027.6 24 1026.6 24 4.7 24 2.9 24 9.9 999.9 51.3* 29.3* 0.00I 999.9 000000 724050 13743 19550220 41.7 24 30.7 24 1027.8 24 1026.8 24 4.7 24 3.3 24 12.0 999.9 56.3* 31.3* 0.00I 999.9 100000 724050 13743 19550221 43.3 24 34.8 24 1028.5 24 1027.4 24 6.4 24 5.3 24 9.9 999.9 58.3* 33.4* 0.00I 999.9 100000 724050 13743 19550222 47.4 24 45.0 24 1023.0 24 1022.0 24 4.9 24 5.3 24 8.9 999.9 52.3* 42.4* 99.99 999.9 110000 724050 13743 19550223 53.4 24 48.0 24 1020.3 24 1019.3 24 8.1 24 13.2 24 22.9 999.9 57.4* 44.4* 99.99 999.9 110000 724050 13743 19550224 37.2 24 23.5 24 1031.6 24 1030.6 24 9.6 24 8.9 24 12.0 999.9 43.3* 32.4* 99.99 999.9 101000 724050 13743 19550225 37.3 24 29.1 24 1031.6 24 1030.5 24 6.9 24 6.6 24 9.9 999.9 52.3* 28.4* 99.99 999.9 110000 724050 13743 19550226 41.7 24 27.7 24 1031.5 24 1030.5 24 8.8 24 7.5 24 9.9 999.9 51.3* 34.3* 0.00I 999.9 000000 724050 13743 19550227 50.1 24 41.6 24 1020.8 24 1019.8 24 9.7 24 10.5 24 14.0 999.9 62.4* 44.4* 99.99 999.9 010000 724050 13743 19550228 58.5 24 51.3 24 1014.9 24 1013.9 24 8.5 24 7.7 24 12.0 999.9 68.4* 50.4* 99.99 999.9 110000 724050 13743 19550301 60.1 24 52.9 24 1006.8 24 1005.7 24 9.1 24 11.9 24 19.0 999.9 69.3* 56.3* 99.99 999.9 110000 724050 13743 19550302 55.3 24 30.2 24 1014.2 24 1013.2 24 14.3 24 14.9 24 28.0 999.9 64.4* 45.3* 0.00I 999.9 000000 724050 13743 19550303 48.2 24 26.7 24 1024.7 24 1023.7 24 12.3 24 7.4 24 15.0 999.9 58.3* 37.4* 99.99 999.9 010000 724050 13743 19550304 53.9 24 48.5 24 1014.0 24 1013.0 24 5.4 24 6.5 24 12.0 999.9 66.4* 46.4* 99.99 999.9 110000 724050 13743 19550305 45.2 24 44.1 24 1016.6 24 1015.5 24 4.1 24 8.5 24 14.0 999.9 54.3* 42.4* 99.99 999.9 110000 724050 13743 19550306 44.6 24 43.5 24 1010.2 24 1009.2 24 2.5 24 8.3 24 20.0 999.9 46.4* 41.4* 99.99 999.9 110010 724050 13743 19550307 35.9 24 22.0 24 1014.4 24 1013.4 24 14.1 24 16.4 24 26.0 999.9 41.4* 32.4* 0.00I 999.9 000000 724050 13743 19550308 32.8 24 14.0 24 1022.1 24 1021.1 24 14.9 24 12.9 24 21.0 999.9 45.3* 25.3* 0.00I 999.9 000000 724050 13743 19550309 52.6 24 33.1 24 1015.4 24 1014.3 24 14.9 24 13.0 24 16.9 999.9 68.4* 41.4* 0.00I 999.9 000000 724050 13743 19550310 62.5 24 37.5 24 1014.2 24 1013.2 24 13.5 24 10.5 24 15.0 999.9 75.4* 51.3* 0.00I 999.9 000000 724050 13743 19550311 61.5 24 51.4 24 1007.5 24 1006.5 24 9.2 24 13.9 24 19.0 999.9 68.4* 57.4* 99.99 999.9 110000 724050 13743 19550312 55.5 24 47.0 24 1011.5 24 1010.5 24 9.8 24 8.3 24 9.9 999.9 64.4* 48.4* 0.00I 999.9 100000 724050 13743 19550313 55.6 24 42.0 24 1015.3 24 1014.3 24 11.2 24 10.1 24 16.9 999.9 64.4* 49.3* 0.00I 999.9 100000 724050 13743 19550314 51.8 24 29.9 24 1025.7 24 1024.7 24 14.7 24 9.4 24 12.0 999.9 59.4* 42.4* 0.00I 999.9 000000 724050 13743 19550315 46.2 24 40.5 24 1022.3 24 1021.2 24 9.5 24 6.1 24 9.9 999.9 50.4* 42.4* 99.99 999.9 110000 724050 13743 19550316 57.0 24 52.8 24 1007.1 24 1006.1 24 7.7 24 12.9 24 35.0 999.9 70.3* 50.4* 99.99 999.9 110010 724050 13743 19550317 43.6 24 23.0 24 1019.8 24 1018.8 24 14.9 24 13.9 24 28.0 999.9 51.3* 38.3* 0.00I 999.9 000000 724050 13743 19550318 42.9 24 29.9 24 1015.0 24 1014.0 24 10.8 24 11.1 24 21.0 999.9 51.3* 36.3* 99.99 999.9 110000 724050 13743 19550319 43.1 24 27.2 24 1020.6 24 1019.6 24 14.5 24 9.9 24 20.0 999.9 49.3* 38.3* 0.00I 999.9 000000 724050 13743 19550320 42.9 24 30.1 24 1025.6 24 1024.6 24 10.6 24 3.7 24 9.9 999.9 55.4* 35.4* 0.00I 999.9 100000 724050 13743 19550321 45.8 24 40.5 24 1019.2 24 1018.2 24 7.1 24 6.8 24 9.9 999.9 50.4* 42.4* 99.99 999.9 110000 724050 13743 19550322 55.0 24 50.3 24 1000.3 24 999.2 24 5.9 24 12.0 24 22.0 999.9 78.3* 45.3* 99.99 999.9 110000 724050 13743 19550323 46.1 24 22.2 24 1008.4 24 1007.4 24 14.9 24 16.2 24 30.9 999.9 60.3* 35.4* 0.00I 999.9 000000 724050 13743 19550324 54.3 24 32.3 24 1011.9 24 1010.9 24 13.8 24 10.3 24 21.0 999.9 66.4* 44.4* 0.00I 999.9 000000 724050 13743 19550325 47.0 24 24.2 24 1016.3 24 1015.3 24 13.5 24 8.2 24 19.0 999.9 54.3* 39.4* 99.99 999.9 010000 724050 13743 19550326 43.8 24 36.7 24 1004.1 24 1003.1 24 10.0 24 8.4 24 28.9 999.9 50.4* 39.4* 99.99 999.9 110000 724050 13743 19550327 31.9 24 12.2 24 1010.3 24 1009.3 24 14.9 24 23.1 24 29.9 999.9 40.3* 24.4* 0.00I 999.9 000000 724050 13743 19550328 34.4 24 13.6 24 1016.1 24 1015.1 24 14.9 24 19.1 24 28.0 999.9 43.3* 28.4* 0.00I 999.9 000000 724050 13743 19550329 38.1 24 17.4 24 1017.7 24 1016.7 24 14.4 24 13.3 24 22.0 999.9 45.3* 30.4* 0.00I 999.9 000000 724050 13743 19550330 44.5 24 26.3 24 1022.9 24 1021.9 24 14.9 24 14.4 24 16.9 999.9 58.3* 35.4* 0.00I 999.9 000000 724050 13743 19550331 48.8 24 29.4 24 1022.4 24 1021.4 24 11.3 24 5.2 24 15.0 999.9 62.4* 35.4* 0.00I 999.9 000000 724050 13743 19550401 57.2 24 32.4 24 1018.5 24 1017.5 24 9.2 24 5.0 24 14.0 999.9 73.4* 44.4* 0.00I 999.9 000000 724050 13743 19550402 60.2 24 35.6 24 1012.3 24 1011.2 24 9.8 24 3.8 24 12.0 999.9 75.4* 46.4* 0.00I 999.9 000000 724050 13743 19550403 61.1 24 40.8 24 1003.7 24 1002.7 24 9.1 24 8.9 24 23.9 999.9 70.3* 48.4* 0.00I 999.9 000000 724050 13743 19550404 51.1 24 32.1 24 1016.7 24 1015.7 24 14.9 24 14.8 24 21.0 999.9 61.3* 43.3* 0.00I 999.9 000000 724050 13743 19550405 54.2 24 35.2 24 1023.5 24 1022.5 24 12.7 24 6.7 24 12.0 999.9 69.3* 40.3* 0.00I 999.9 000000 724050 13743 19550406 58.1 24 47.3 24 1012.4 24 1011.4 24 9.2 24 7.9 24 12.0 999.9 63.3* 54.3* 99.99 999.9 010000 724050 13743 19550407 54.7 24 39.3 24 1006.1 24 1005.0 24 12.0 24 16.3 24 29.9 999.9 61.3* 46.4* 0.00I 999.9 000000 724050 13743 19550408 46.2 24 24.8 24 1017.8 24 1016.8 24 14.7 24 16.3 24 23.9 999.9 59.4* 37.4* 0.00I 999.9 000000 724050 13743 19550409 58.9 24 34.5 24 1023.8 24 1022.8 24 14.9 24 8.3 24 15.9 999.9 75.4* 46.4* 0.00I 999.9 000000 724050 13743 19550410 66.3 24 38.1 24 1021.5 24 1020.5 24 14.0 24 5.9 24 14.0 999.9 82.4* 49.3* 0.00I 999.9 000000 724050 13743 19550411 64.2 24 48.0 24 1018.8 24 1017.7 24 12.7 24 6.1 24 14.0 999.9 75.4* 51.3* 99.99 999.9 010000 724050 13743 19550412 63.5 24 57.2 24 1018.4 24 1017.4 24 9.6 24 9.0 24 15.0 999.9 76.3* 56.3* 99.99 999.9 110000 724050 13743 19550413 50.1 24 48.5 24 1024.3 24 1023.3 24 3.0 24 9.9 24 15.0 999.9 55.4* 46.4* 99.99 999.9 110000 724050 13743 19550414 59.9 24 58.3 24 1017.8 24 1016.8 24 5.0 24 8.8 24 15.9 999.9 68.4* 52.3* 99.99 999.9 110000 724050 13743 19550415 64.5 24 56.0 24 1011.6 24 1010.6 24 9.9 24 10.3 24 15.0 999.9 72.3* 57.4* 99.99 999.9 110000 724050 13743 19550416 64.0 24 50.7 24 1015.7 24 1014.7 24 13.3 24 8.7 24 15.0 999.9 73.4* 56.3* 0.00I 999.9 000000 724050 13743 19550417 52.8 24 46.9 24 1023.0 24 1022.0 24 11.2 24 8.2 24 13.0 999.9 64.4* 46.4* 99.99 999.9 110000 724050 13743 19550418 53.7 24 49.3 24 1024.3 24 1023.3 24 6.0 24 5.5 24 8.9 999.9 59.4* 50.4* 99.99 999.9 110000 724050 13743 19550419 62.8 24 53.4 24 1015.6 24 1014.6 24 6.1 24 9.5 24 14.0 999.9 78.3* 54.3* 99.99 999.9 110010 724050 13743 19550420 62.4 24 54.0 24 1015.5 24 1014.5 24 8.7 24 7.2 24 14.0 999.9 70.3* 55.4* 0.00I 999.9 100000 724050 13743 19550421 57.2 24 50.3 24 1013.9 24 1012.9 24 7.1 24 7.7 24 11.1 999.9 74.3* 50.4* 0.00I 999.9 100000 724050 13743 19550422 66.5 24 54.4 24 1006.9 24 1005.9 24 7.9 24 7.5 24 15.0 999.9 80.2* 58.3* 99.99 999.9 110000 724050 13743 19550423 72.3 24 50.5 24 1004.1 24 1003.1 24 12.1 24 1.6 24 8.9 999.9 84.4* 60.3* 0.00I 999.9 000000 724050 13743 19550424 66.5 24 57.7 24 1002.9 24 1001.9 24 6.5 24 7.1 24 14.0 999.9 75.4* 58.3* 99.99 999.9 110000 724050 13743 19550425 53.6 24 52.7 24 1000.4 24 999.4 24 2.6 24 8.4 24 13.0 999.9 57.4* 51.3* 99.99 999.9 110000 724050 13743 19550426 51.3 24 50.2 24 1005.7 24 1004.7 24 2.7 24 5.9 24 8.9 999.9 54.3* 50.4* 99.99 999.9 110000 724050 13743 19550427 52.5 24 44.5 24 1012.1 24 1011.1 24 11.6 24 12.1 24 16.9 999.9 55.4* 50.4* 99.99 999.9 110000 724050 13743 19550428 57.9 24 42.3 24 1012.4 24 1011.4 24 14.9 24 10.8 24 15.9 999.9 68.4* 51.3* 0.00I 999.9 000000 724050 13743 19550429 58.8 24 46.7 24 1012.0 24 1011.0 24 14.5 24 7.1 24 20.0 999.9 68.4* 50.4* 99.99 999.9 010000 724050 13743 19550430 66.5 24 48.2 24 1015.5 24 1014.5 24 13.6 24 6.1 24 12.0 999.9 77.4* 55.4* 99.99 999.9 010000 724050 13743 19550501 63.5 24 48.8 24 1018.7 24 1017.6 24 11.5 24 5.9 24 15.0 999.9 71.2* 56.3* 0.00I 999.9 000010 724050 13743 19550502 61.0 24 45.1 24 1023.4 24 1022.4 24 12.4 24 6.9 24 14.0 999.9 71.2* 48.4* 0.00I 999.9 000000 724050 13743 19550503 63.0 24 46.8 24 1023.6 24 1022.6 24 12.8 24 5.2 24 14.0 999.9 74.3* 53.4* 0.00I 999.9 000000 724050 13743 19550504 67.8 24 55.1 24 1018.7 24 1017.7 24 10.9 24 7.1 24 12.0 999.9 83.3* 56.3* 0.00I 999.9 000000 724050 13743 19550505 76.0 24 57.3 24 1010.2 24 1009.2 24 12.7 24 9.1 24 15.9 999.9 88.3* 63.3* 0.00I 999.9 000000 724050 13743 19550506 70.5 24 44.1 24 1010.5 24 1009.5 24 13.5 24 11.8 24 19.0 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19550507 65.2 24 40.8 24 1015.1 24 1014.1 24 13.7 24 7.9 24 14.0 999.9 78.3* 48.4* 0.00I 999.9 000000 724050 13743 19550508 71.2 24 47.3 24 1009.7 24 1008.7 24 12.8 24 11.7 24 21.0 999.9 77.4* 66.4* 0.00I 999.9 000000 724050 13743 19550509 60.3 24 37.6 24 1018.5 24 1017.5 24 14.9 24 14.9 24 26.0 999.9 70.3* 51.3* 0.00I 999.9 000000 724050 13743 19550510 62.2 24 43.5 24 1021.2 24 1020.2 24 11.8 24 8.6 24 15.0 999.9 71.2* 55.4* 0.00I 999.9 000000 724050 13743 19550511 62.6 24 52.4 24 1018.4 24 1017.3 24 7.8 24 7.9 24 13.0 999.9 71.2* 54.3* 99.99 999.9 110000 724050 13743 19550512 68.2 24 45.9 24 1022.1 24 1021.1 24 10.8 24 4.2 24 9.9 999.9 78.3* 58.3* 0.00I 999.9 000000 724050 13743 19550513 62.9 24 50.2 24 1021.4 24 1020.4 24 8.2 24 8.1 24 11.1 999.9 71.2* 56.3* 99.99 999.9 110000 724050 13743 19550514 59.4 24 56.7 24 1017.5 24 1016.5 24 3.8 24 7.8 24 9.9 999.9 68.4* 56.3* 99.99 999.9 110000 724050 13743 19550515 62.4 24 51.5 24 1021.1 24 1020.1 24 12.4 24 6.6 24 12.0 999.9 70.3* 54.3* 0.00I 999.9 000000 724050 13743 19550516 64.0 24 50.5 24 1020.2 24 1019.1 24 12.5 24 8.4 24 14.0 999.9 77.4* 51.3* 0.00I 999.9 000000 724050 13743 19550517 63.2 24 43.5 24 1014.0 24 1013.0 24 12.8 24 10.4 24 15.0 999.9 73.4* 55.4* 0.00I 999.9 000000 724050 13743 19550518 60.0 24 37.7 24 1016.4 24 1015.4 24 14.9 24 7.2 24 15.9 999.9 73.4* 45.3* 0.00I 999.9 000000 724050 13743 19550519 67.9 24 46.5 24 1011.5 24 1010.5 24 14.8 24 10.0 24 16.9 999.9 82.4* 53.4* 0.00I 999.9 000000 724050 13743 19550520 72.3 24 57.3 24 1013.0 24 1012.0 24 9.9 24 4.9 24 23.9 999.9 84.4* 65.3* 99.99 999.9 010010 724050 13743 19550521 71.6 24 60.0 24 1017.4 24 1016.3 24 7.2 24 5.6 24 12.0 999.9 84.4* 62.4* 0.00I 999.9 000000 724050 13743 19550522 72.0 24 65.7 24 1020.7 24 1019.7 24 7.4 24 6.0 24 14.0 999.9 77.4* 65.3* 99.99 999.9 110000 724050 13743 19550523 74.5 24 67.8 24 1015.0 24 1014.0 24 12.8 24 11.3 24 15.9 999.9 85.3* 70.3* 99.99 999.9 010010 724050 13743 19550524 77.5 24 66.4 24 1010.3 24 1009.3 24 11.2 24 8.1 24 15.0 999.9 90.3* 67.3* 99.99 999.9 010010 724050 13743 19550525 77.8 24 67.3 24 1006.7 24 1005.7 24 12.5 24 8.9 24 25.1 999.9 86.4* 70.3* 99.99 999.9 010000 724050 13743 19550526 72.4 24 57.7 24 1011.3 24 1010.3 24 13.5 24 12.4 24 22.9 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19550527 74.9 24 61.8 24 1018.1 24 1017.1 24 10.7 24 5.6 24 9.9 999.9 88.3* 63.3* 0.00I 999.9 000000 724050 13743 19550528 73.2 24 65.8 24 1019.6 24 1018.5 24 6.2 24 8.6 24 12.0 999.9 88.3* 65.3* 0.00I 999.9 100000 724050 13743 19550529 79.5 24 69.0 24 1010.5 24 1009.5 24 11.4 24 12.0 24 22.0 999.9 90.3* 69.3* 99.99 999.9 010010 724050 13743 19550530 73.2 24 63.1 24 1009.0 24 1008.1 24 11.6 24 5.3 24 12.0 999.9 81.3* 67.3* 99.99 999.9 010000 724050 13743 19550531 67.5 24 53.9 24 1013.1 24 1012.1 24 10.1 24 12.5 24 18.1 999.9 73.4* 62.4* 99.99 999.9 010000 724050 13743 19550601 65.3 24 47.8 24 1018.6 24 1017.5 24 12.9 24 10.5 24 20.0 999.9 73.4* 54.3* 0.00I 999.9 000000 724050 13743 19550602 66.9 24 49.1 24 1019.0 24 1018.0 24 12.2 24 10.9 24 16.9 999.9 73.4* 58.3* 0.00I 999.9 000000 724050 13743 19550603 67.1 24 50.5 24 1017.9 24 1016.9 24 12.9 24 10.1 24 15.9 999.9 74.3* 59.4* 0.00I 999.9 000000 724050 13743 19550604 70.0 24 50.2 24 1014.1 24 1013.1 24 14.5 24 7.4 24 16.9 999.9 85.3* 57.4* 0.00I 999.9 000000 724050 13743 19550605 76.1 24 54.6 24 1008.7 24 1007.7 24 14.4 24 10.5 24 15.0 999.9 88.3* 65.3* 0.00I 999.9 000000 724050 13743 19550606 76.8 24 60.4 24 1010.2 24 1009.1 24 8.7 24 6.6 24 11.1 999.9 87.3* 66.4* 0.00I 999.9 000000 724050 13743 19550607 69.2 24 61.2 24 1011.3 24 1010.3 24 11.2 24 5.3 24 11.1 999.9 76.3* 63.3* 99.99 999.9 010000 724050 13743 19550608 62.0 24 59.0 24 1004.1 24 1003.0 24 8.0 24 11.9 24 18.1 999.9 70.3* 55.4* 99.99 999.9 110000 724050 13743 19550609 56.1 24 54.0 24 1005.6 24 1004.6 24 5.0 24 10.3 24 14.0 999.9 59.4* 54.3* 99.99 999.9 110000 724050 13743 19550610 62.7 24 54.5 24 1012.3 24 1011.2 24 7.1 24 4.9 24 8.9 999.9 73.4* 53.4* 0.00I 999.9 000000 724050 13743 19550611 66.7 24 62.8 24 1009.1 24 1008.1 24 6.4 24 8.8 24 13.0 999.9 74.3* 62.4* 99.99 999.9 110000 724050 13743 19550612 71.3 24 61.2 24 1002.1 24 1001.1 24 12.4 24 8.7 24 19.0 999.9 79.3* 66.4* 0.00I 999.9 000010 724050 13743 19550613 66.5 24 55.6 24 1006.7 24 1005.7 24 12.8 24 9.0 24 18.1 999.9 72.3* 60.3* 99.99 999.9 010000 724050 13743 19550614 64.9 24 52.6 24 1011.1 24 1010.1 24 8.7 24 9.7 24 18.1 999.9 69.3* 61.3* 99.99 999.9 010000 724050 13743 19550615 67.9 24 54.4 24 1015.4 24 1014.4 24 7.5 24 7.1 24 12.0 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19550616 73.6 24 57.9 24 1016.4 24 1015.5 24 9.2 24 6.2 24 12.0 999.9 85.3* 63.3* 0.00I 999.9 000000 724050 13743 19550617 78.0 24 59.7 24 1018.8 24 1017.8 24 11.8 24 3.4 24 8.9 999.9 90.3* 65.3* 0.00I 999.9 000000 724050 13743 19550618 76.5 24 61.2 24 1023.1 24 1022.1 24 9.2 24 5.3 24 9.9 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19550619 68.8 24 64.8 24 1019.1 24 1018.1 24 5.6 24 7.3 24 12.0 999.9 76.3* 64.4* 99.99 999.9 110000 724050 13743 19550620 74.0 24 63.3 24 1014.4 24 1013.4 24 8.8 24 5.4 24 9.9 999.9 89.2* 64.4* 99.99 999.9 110000 724050 13743 19550621 78.3 24 65.1 24 1013.2 24 1012.2 24 9.3 24 7.0 24 13.0 999.9 86.4* 69.3* 0.00I 999.9 000000 724050 13743 19550622 77.2 24 66.1 24 1011.5 24 1010.5 24 7.9 24 7.4 24 14.0 999.9 91.2* 68.4* 99.99 999.9 010010 724050 13743 19550623 77.6 24 64.3 24 1014.0 24 1013.0 24 10.7 24 3.0 24 9.9 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19550624 76.9 24 62.9 24 1013.4 24 1012.4 24 10.3 24 11.0 24 18.1 999.9 85.3* 68.4* 99.99 999.9 010000 724050 13743 19550625 72.1 24 59.1 24 1014.7 24 1013.7 24 8.4 24 5.5 24 19.0 999.9 80.2* 64.4* 99.99 999.9 010000 724050 13743 19550626 67.2 24 56.1 24 1014.6 24 1013.6 24 10.4 24 10.9 24 16.9 999.9 76.3* 59.4* 99.99 999.9 010000 724050 13743 19550627 70.9 24 56.3 24 1018.5 24 1017.5 24 9.5 24 6.9 24 9.9 999.9 81.3* 61.3* 0.00I 999.9 000000 724050 13743 19550628 74.0 24 56.8 24 1022.4 24 1021.4 24 11.2 24 8.1 24 15.0 999.9 85.3* 62.4* 0.00I 999.9 000000 724050 13743 19550629 76.8 24 58.6 24 1022.1 24 1021.1 24 12.3 24 4.5 24 13.0 999.9 89.2* 64.4* 0.00I 999.9 000000 724050 13743 19550630 80.3 24 62.3 24 1019.6 24 1018.5 24 12.1 24 8.2 24 12.0 999.9 92.3* 69.3* 0.00I 999.9 000000 724050 13743 19550701 83.5 24 66.3 24 1016.5 24 1015.4 24 11.0 24 9.6 24 14.0 999.9 92.3* 75.4* 0.00I 999.9 000000 724050 13743 19550702 85.1 24 67.1 24 1017.7 24 1016.7 24 10.2 24 7.0 24 9.9 999.9 95.4* 74.3* 0.00I 999.9 000000 724050 13743 19550703 86.5 24 69.3 24 1018.6 24 1017.6 24 9.6 24 5.3 24 13.0 999.9 97.3* 77.4* 0.00I 999.9 000000 724050 13743 19550704 86.8 24 69.2 24 1019.5 24 1018.5 24 8.1 24 3.3 24 8.9 999.9 99.3* 75.4* 0.00I 999.9 000000 724050 13743 19550705 85.9 24 71.2 24 1016.8 24 1015.8 24 8.2 24 5.6 24 9.9 999.9 95.4* 78.3* 0.00I 999.9 000010 724050 13743 19550706 81.7 24 68.2 24 1013.0 24 1012.0 24 7.3 24 4.1 24 11.1 999.9 91.2* 74.3* 0.00I 999.9 000000 724050 13743 19550707 81.0 24 69.2 24 1012.2 24 1011.2 24 7.7 24 8.1 24 13.0 999.9 91.2* 74.3* 0.00I 999.9 000000 724050 13743 19550708 79.8 24 72.6 24 1014.1 24 1013.1 24 3.8 24 7.7 24 12.0 999.9 88.3* 75.4* 99.99 999.9 110010 724050 13743 19550709 79.1 24 74.1 24 1014.5 24 1013.5 24 4.5 24 5.5 24 8.9 999.9 88.3* 72.3* 99.99 999.9 110010 724050 13743 19550710 81.1 24 75.0 24 1013.5 24 1012.5 24 6.0 24 4.2 24 12.0 999.9 90.3* 76.3* 99.99 999.9 110010 724050 13743 19550711 82.3 24 69.8 24 1014.7 24 1013.7 24 5.5 24 4.8 24 8.9 999.9 88.3* 77.4* 99.99 999.9 110000 724050 13743 19550712 79.0 24 64.7 24 1019.5 24 1018.5 24 10.0 24 7.8 24 11.1 999.9 86.4* 71.2* 0.00I 999.9 000000 724050 13743 19550713 75.3 24 61.8 24 1025.3 24 1024.3 24 12.1 24 6.1 24 11.1 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19550714 76.1 24 61.8 24 1022.2 24 1021.2 24 9.2 24 8.1 24 11.1 999.9 86.4* 67.3* 0.00I 999.9 000000 724050 13743 19550715 81.9 24 69.5 24 1015.3 24 1014.3 24 9.4 24 10.0 24 14.0 999.9 93.4* 74.3* 0.00I 999.9 000000 724050 13743 19550716 85.7 24 71.9 24 1012.8 24 1011.8 24 12.8 24 8.5 24 12.0 999.9 93.4* 78.3* 0.00I 999.9 000000 724050 13743 19550717 85.6 24 72.7 24 1014.3 24 1013.2 24 12.1 24 5.2 24 15.0 999.9 97.3* 76.3* 99.99 999.9 010010 724050 13743 19550718 85.7 24 71.0 24 1015.4 24 1014.4 24 12.3 24 6.2 24 15.9 999.9 95.4* 77.4* 0.00I 999.9 000000 724050 13743 19550719 84.1 24 70.1 24 1017.5 24 1016.5 24 10.3 24 7.3 24 12.0 999.9 91.2* 78.3* 0.00I 999.9 000000 724050 13743 19550720 84.2 24 68.1 24 1019.5 24 1018.5 24 7.3 24 5.0 24 9.9 999.9 95.4* 75.4* 0.00I 999.9 000000 724050 13743 19550721 84.5 24 72.1 24 1018.1 24 1017.1 24 5.1 24 5.9 24 8.9 999.9 95.4* 75.4* 0.00I 999.9 000000 724050 13743 19550722 87.1 24 69.8 24 1016.0 24 1015.0 24 6.6 24 4.7 24 12.0 999.9 97.3* 76.3* 0.00I 999.9 000000 724050 13743 19550723 87.0 24 69.7 24 1013.6 24 1012.6 24 7.5 24 7.4 24 12.0 999.9 97.3* 79.3* 0.00I 999.9 000010 724050 13743 19550724 79.9 24 71.1 24 1010.6 24 1009.5 24 9.5 24 6.4 24 12.0 999.9 87.3* 74.3* 99.99 999.9 010000 724050 13743 19550725 80.2 24 70.9 24 1012.3 24 1011.3 24 8.2 24 6.0 24 9.9 999.9 91.2* 73.4* 99.99 999.9 010000 724050 13743 19550726 84.0 24 69.7 24 1017.5 24 1016.4 24 8.3 24 4.3 24 9.9 999.9 94.3* 75.4* 0.00I 999.9 000000 724050 13743 19550727 84.9 24 72.1 24 1017.8 24 1016.7 24 6.9 24 6.2 24 9.9 999.9 95.4* 76.3* 0.00I 999.9 000000 724050 13743 19550728 86.3 24 73.8 24 1014.6 24 1013.6 24 7.5 24 7.7 24 13.0 999.9 95.4* 80.2* 99.99 999.9 010010 724050 13743 19550729 76.1 24 70.5 24 1018.0 24 1017.0 24 3.7 24 9.3 24 12.0 999.9 79.3* 73.4* 99.99 999.9 110000 724050 13743 19550730 76.1 24 69.2 24 1021.5 24 1020.5 24 6.7 24 9.0 24 13.0 999.9 84.4* 71.2* 99.99 999.9 110000 724050 13743 19550731 78.8 24 71.2 24 1023.0 24 1022.0 24 11.0 24 7.4 24 15.0 999.9 91.2* 73.4* 99.99 999.9 010000 724050 13743 19550801 82.7 24 73.0 24 1020.7 24 1019.7 24 13.3 24 6.4 24 13.0 999.9 93.4* 75.4* 0.00I 999.9 000000 724050 13743 19550802 87.3 24 72.4 24 1015.6 24 1014.6 24 12.9 24 7.1 24 9.9 999.9 100.2* 78.3* 0.00I 999.9 000000 724050 13743 19550803 85.7 24 69.5 24 1015.9 24 1014.9 24 11.5 24 5.5 24 9.9 999.9 96.3* 78.3* 0.00I 999.9 000000 724050 13743 19550804 84.6 24 70.8 24 1018.8 24 1017.8 24 8.2 24 6.7 24 12.0 999.9 94.3* 75.4* 0.00I 999.9 000000 724050 13743 19550805 85.0 24 74.9 24 1019.0 24 1018.0 24 7.0 24 7.9 24 12.0 999.9 93.4* 80.2* 99.99 999.9 010000 724050 13743 19550806 86.2 24 73.7 24 1017.1 24 1016.1 24 5.8 24 5.1 24 13.0 999.9 97.3* 78.3* 0.00I 999.9 000000 724050 13743 19550807 82.4 24 73.2 24 1014.3 24 1013.3 24 6.1 24 7.2 24 12.0 999.9 92.3* 75.4* 99.99 999.9 010010 724050 13743 19550808 72.7 24 70.2 24 1015.1 24 1014.1 24 5.4 24 6.9 24 12.0 999.9 76.3* 66.4* 99.99 999.9 110000 724050 13743 19550809 71.7 24 65.4 24 1021.4 24 1020.4 24 10.2 24 7.4 24 12.0 999.9 75.4* 70.3* 99.99 999.9 010000 724050 13743 19550810 73.2 24 66.4 24 1020.9 24 1019.9 24 8.5 24 7.4 24 9.9 999.9 81.3* 67.3* 99.99 999.9 010000 724050 13743 19550811 79.2 24 74.0 24 1015.0 24 1014.0 24 6.2 24 4.2 24 8.9 999.9 89.2* 74.3* 99.99 999.9 110010 724050 13743 19550812 73.4 24 71.2 24 1008.3 24 1007.3 24 4.8 24 11.3 24 21.0 999.9 79.3* 68.4* 99.99 999.9 110000 724050 13743 19550813 74.2 24 70.6 24 996.0 24 994.9 24 7.0 24 13.3 24 20.0 999.9 82.4* 68.4* 99.99 999.9 110000 724050 13743 19550814 76.6 24 71.6 24 1016.0 24 1015.0 24 9.6 24 4.4 24 14.0 999.9 87.3* 69.3* 99.99 999.9 110010 724050 13743 19550815 79.6 24 72.9 24 1019.9 24 1018.9 24 11.1 24 3.1 24 12.0 999.9 88.3* 74.3* 0.00I 999.9 000000 724050 13743 19550816 79.0 24 73.1 24 1016.2 24 1015.1 24 9.3 24 5.5 24 12.0 999.9 87.3* 74.3* 99.99 999.9 110000 724050 13743 19550817 77.2 24 74.4 24 1013.7 24 1012.7 24 8.3 24 6.6 24 14.0 999.9 82.4* 73.4* 99.99 999.9 110000 724050 13743 19550818 77.2 24 74.9 24 1006.4 24 1005.4 24 6.1 24 11.8 24 16.9 999.9 80.2* 74.3* 99.99 999.9 110000 724050 13743 19550819 81.3 24 71.1 24 1010.0 24 1008.9 24 12.6 24 10.1 24 14.0 999.9 91.2* 75.4* 99.99 999.9 010000 724050 13743 19550820 83.9 24 70.9 24 1013.7 24 1012.7 24 7.9 24 3.3 24 8.9 999.9 96.3* 72.3* 0.00I 999.9 000000 724050 13743 19550821 84.2 24 70.7 24 1014.0 24 1012.9 24 6.1 24 2.6 24 8.9 999.9 97.3* 73.4* 0.00I 999.9 000000 724050 13743 19550822 83.2 24 73.4 24 1012.1 24 1011.1 24 5.8 24 4.2 24 12.0 999.9 92.3* 75.4* 0.00I 999.9 000010 724050 13743 19550823 78.0 24 68.9 24 1010.5 24 1009.4 24 9.7 24 6.7 24 15.9 999.9 87.3* 70.3* 99.99 999.9 010010 724050 13743 19550824 72.4 24 59.7 24 1016.6 24 1015.6 24 13.0 24 8.9 24 11.1 999.9 78.3* 64.4* 0.00I 999.9 000000 724050 13743 19550825 72.1 24 63.1 24 1020.0 24 1019.0 24 7.3 24 6.2 24 9.9 999.9 79.3* 67.3* 0.00I 999.9 100000 724050 13743 19550826 72.2 24 60.6 24 1020.1 24 1019.1 24 10.1 24 3.3 24 8.9 999.9 84.4* 63.3* 0.00I 999.9 100000 724050 13743 19550827 75.9 24 63.5 24 1014.8 24 1013.8 24 7.7 24 4.8 24 11.1 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19550828 76.8 24 64.2 24 1015.2 24 1014.2 24 8.4 24 6.5 24 9.9 999.9 83.3* 69.3* 0.00I 999.9 000000 724050 13743 19550829 77.3 24 66.8 24 1015.0 24 1013.9 24 7.0 24 5.4 24 9.9 999.9 86.4* 72.3* 99.99 999.9 010000 724050 13743 19550830 78.3 24 68.7 24 1012.4 24 1011.4 24 7.3 24 9.5 24 12.0 999.9 89.2* 70.3* 0.00I 999.9 000000 724050 13743 19550831 77.1 24 69.1 24 1013.1 24 1012.1 24 9.0 24 4.0 24 9.9 999.9 82.4* 70.3* 99.99 999.9 010000 724050 13743 19550901 75.1 24 69.0 24 1016.6 24 1015.5 24 5.9 24 1.2 24 7.0 999.9 82.4* 71.2* 0.00I 999.9 000000 724050 13743 19550902 73.6 24 62.6 24 1017.8 24 1016.7 24 7.5 24 5.8 24 9.9 999.9 77.4* 70.3* 99.99 999.9 010000 724050 13743 19550903 72.5 24 67.0 24 1018.1 24 1017.1 24 4.6 24 4.4 24 9.9 999.9 77.4* 69.3* 99.99 999.9 110000 724050 13743 19550904 73.4 24 65.8 24 1018.1 24 1017.1 24 6.6 24 6.3 24 9.9 999.9 81.3* 67.3* 99.99 999.9 110000 724050 13743 19550905 74.3 24 68.0 24 1017.0 24 1015.9 24 6.9 24 3.4 24 8.0 999.9 85.3* 67.3* 0.00I 999.9 100000 724050 13743 19550906 79.0 24 67.9 24 1014.2 24 1013.2 24 7.0 24 5.0 24 8.9 999.9 89.2* 71.2* 0.00I 999.9 000000 724050 13743 19550907 78.1 24 64.0 24 1010.2 24 1009.2 24 8.2 24 6.9 24 13.0 999.9 86.4* 71.2* 0.00I 999.9 000000 724050 13743 19550908 67.7 24 47.9 24 1018.8 24 1017.8 24 12.8 24 6.1 24 9.9 999.9 78.3* 57.4* 0.00I 999.9 000000 724050 13743 19550909 66.7 24 54.9 24 1024.6 24 1023.6 24 13.4 24 5.6 24 9.9 999.9 73.4* 60.3* 0.00I 999.9 000000 724050 13743 19550910 70.8 24 61.4 24 1025.7 24 1024.7 24 13.9 24 4.6 24 9.9 999.9 83.3* 61.3* 0.00I 999.9 000000 724050 13743 19550911 74.6 24 66.3 24 1017.7 24 1016.7 24 11.8 24 4.0 24 13.0 999.9 85.3* 68.4* 99.99 999.9 010000 724050 13743 19550912 69.9 24 57.1 24 1017.7 24 1016.7 24 12.6 24 8.2 24 15.9 999.9 74.3* 65.3* 99.99 999.9 010000 724050 13743 19550913 63.5 24 48.6 24 1028.0 24 1027.0 24 11.4 24 3.0 24 8.9 999.9 74.3* 55.4* 0.00I 999.9 000000 724050 13743 19550914 63.2 24 52.0 24 1028.8 24 1027.8 24 10.2 24 2.5 24 9.9 999.9 78.3* 51.3* 0.00I 999.9 000000 724050 13743 19550915 72.0 24 62.9 24 1021.2 24 1020.1 24 10.0 24 4.0 24 9.9 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19550916 76.3 24 67.2 24 1020.2 24 1019.1 24 6.5 24 4.3 24 8.0 999.9 86.4* 68.4* 0.00I 999.9 000000 724050 13743 19550917 72.8 24 68.8 24 1025.5 24 1024.5 24 3.0 24 3.5 24 6.0 999.9 77.4* 69.3* 99.99 999.9 110000 724050 13743 19550918 73.1 24 67.2 24 1024.2 24 1023.2 24 2.4 24 2.8 24 7.0 999.9 80.2* 69.3* 0.00I 999.9 000000 724050 13743 19550919 70.8 24 66.6 24 1013.4 24 1012.4 24 2.4 24 9.0 24 15.0 999.9 75.4* 66.4* 99.99 999.9 110000 724050 13743 19550920 78.3 24 68.0 24 1001.8 24 1000.8 24 7.8 24 14.5 24 20.0 999.9 88.3* 72.3* 99.99 999.9 110000 724050 13743 19550921 69.3 24 51.0 24 1014.8 24 1013.8 24 14.4 24 6.0 24 12.0 999.9 78.3* 56.3* 0.00I 999.9 000000 724050 13743 19550922 61.9 24 54.4 24 1020.3 24 1019.3 24 9.1 24 3.7 24 11.1 999.9 68.4* 58.3* 99.99 999.9 110000 724050 13743 19550923 63.7 24 60.1 24 1021.0 24 1020.0 24 5.7 24 1.7 24 8.9 999.9 68.4* 58.3* 99.99 999.9 110000 724050 13743 19550924 70.4 24 68.2 24 1016.2 24 1015.2 24 4.7 24 7.7 24 12.0 999.9 75.4* 66.4* 99.99 999.9 110000 724050 13743 19550925 68.2 24 57.9 24 1020.5 24 1019.4 24 7.0 24 8.1 24 15.9 999.9 75.4* 59.4* 99.99 999.9 110000 724050 13743 19550926 60.5 24 46.9 24 1029.1 24 1028.1 24 12.8 24 7.4 24 9.9 999.9 69.3* 51.3* 0.00I 999.9 000000 724050 13743 19550927 62.6 24 51.4 24 1028.1 24 1027.1 24 12.6 24 5.4 24 11.1 999.9 72.3* 52.3* 0.00I 999.9 000000 724050 13743 19550928 71.8 24 61.6 24 1018.1 24 1017.0 24 11.3 24 9.4 24 15.0 999.9 81.3* 65.3* 99.99 999.9 010000 724050 13743 19550929 67.8 24 56.9 24 1020.5 24 1019.4 24 9.0 24 2.4 24 9.9 999.9 78.3* 59.4* 0.00I 999.9 000000 724050 13743 19550930 68.0 24 63.4 24 1017.4 24 1016.3 24 7.0 24 5.0 24 9.9 999.9 73.4* 63.3* 99.99 999.9 110000 724050 13743 19551001 70.1 24 65.7 24 1020.9 24 1019.9 24 4.2 24 4.9 24 9.9 999.9 74.3* 66.4* 0.00I 999.9 100000 724050 13743 19551002 62.6 24 54.3 24 1027.3 24 1026.2 24 10.3 24 5.0 24 8.0 999.9 72.3* 54.3* 0.00I 999.9 000000 724050 13743 19551003 62.2 24 53.9 24 1028.3 24 1027.3 24 6.7 24 2.1 24 8.9 999.9 74.3* 52.3* 0.00I 999.9 100000 724050 13743 19551004 62.5 24 55.6 24 1026.3 24 1025.3 24 8.0 24 2.5 24 8.0 999.9 74.3* 53.4* 0.00I 999.9 100000 724050 13743 19551005 65.5 24 59.1 24 1021.7 24 1020.6 24 7.5 24 3.2 24 8.9 999.9 78.3* 57.4* 0.00I 999.9 100000 724050 13743 19551006 71.5 24 63.2 24 1019.6 24 1018.5 24 10.6 24 8.5 24 12.0 999.9 82.4* 64.4* 99.99 999.9 010000 724050 13743 19551007 75.7 24 65.1 24 1018.2 24 1017.2 24 12.8 24 9.9 24 13.0 999.9 84.4* 69.3* 99.99 999.9 010000 724050 13743 19551008 65.3 24 59.9 24 1019.0 24 1018.0 24 8.0 24 7.0 24 18.1 999.9 78.3* 58.3* 99.99 999.9 110000 724050 13743 19551009 58.7 24 48.0 24 1025.4 24 1024.3 24 11.7 24 4.6 24 8.9 999.9 71.2* 49.3* 0.00I 999.9 000000 724050 13743 19551010 61.2 24 47.5 24 1023.3 24 1022.2 24 12.5 24 3.1 24 9.9 999.9 77.4* 50.4* 0.00I 999.9 000000 724050 13743 19551011 65.5 24 50.4 24 1019.6 24 1018.6 24 12.4 24 3.4 24 11.1 999.9 80.2* 54.3* 0.00I 999.9 000000 724050 13743 19551012 64.4 24 54.7 24 1013.8 24 1012.8 24 6.6 24 2.2 24 7.0 999.9 81.3* 51.3* 0.00I 999.9 100000 724050 13743 19551013 67.7 24 54.8 24 1009.3 24 1008.3 24 11.4 24 4.9 24 9.9 999.9 79.3* 55.4* 0.00I 999.9 000000 724050 13743 19551014 61.6 24 60.6 24 1002.0 24 1001.0 24 5.2 24 7.4 24 12.0 999.9 69.3* 58.3* 99.99 999.9 110010 724050 13743 19551015 61.3 24 54.9 24 1002.6 24 1001.6 24 10.0 24 4.2 24 12.0 999.9 69.3* 55.4* 99.99 999.9 010000 724050 13743 19551016 56.7 24 44.4 24 1002.0 24 1001.0 24 11.7 24 10.8 24 15.9 999.9 63.3* 52.3* 99.99 999.9 010000 724050 13743 19551017 53.1 24 42.3 24 1001.1 24 1000.1 24 11.3 24 4.1 24 9.9 999.9 63.3* 43.3* 0.00I 999.9 000000 724050 13743 19551018 54.6 24 45.3 24 1001.7 24 1000.7 24 8.6 24 2.7 24 8.9 999.9 61.3* 47.3* 0.00I 999.9 000000 724050 13743 19551019 55.8 24 47.0 24 1008.7 24 1007.6 24 9.2 24 9.1 24 21.0 999.9 62.4* 49.3* 0.00I 999.9 000000 724050 13743 19551020 57.1 24 45.4 24 1021.8 24 1020.8 24 13.0 24 6.7 24 14.0 999.9 67.3* 49.3* 0.00I 999.9 000000 724050 13743 19551021 58.4 24 48.9 24 1019.0 24 1018.0 24 8.6 24 4.6 24 9.9 999.9 73.4* 48.4* 0.00I 999.9 000000 724050 13743 19551022 55.5 24 40.3 24 1025.3 24 1024.3 24 12.2 24 9.6 24 20.0 999.9 66.4* 46.4* 0.00I 999.9 000000 724050 13743 19551023 50.5 24 42.0 24 1028.5 24 1027.5 24 9.9 24 3.6 24 9.9 999.9 65.3* 39.4* 0.00I 999.9 000000 724050 13743 19551024 60.9 24 48.8 24 1014.8 24 1013.8 24 12.5 24 12.3 24 22.0 999.9 72.3* 54.3* 99.99 999.9 010000 724050 13743 19551025 47.8 24 29.9 24 1019.0 24 1018.0 24 12.6 24 13.3 24 28.0 999.9 55.4* 41.4* 0.00I 999.9 000000 724050 13743 19551026 52.4 24 37.1 24 1012.1 24 1011.1 24 10.9 24 6.3 24 12.0 999.9 71.2* 41.4* 0.00I 999.9 000000 724050 13743 19551027 55.9 24 40.3 24 1015.9 24 1014.9 24 10.1 24 1.6 24 8.0 999.9 69.3* 44.4* 0.00I 999.9 000000 724050 13743 19551028 57.7 24 46.5 24 1017.2 24 1016.2 24 7.0 24 3.6 24 11.1 999.9 73.4* 46.4* 0.00I 999.9 000000 724050 13743 19551029 63.6 24 56.2 24 1010.0 24 1009.0 24 7.4 24 7.3 24 12.0 999.9 73.4* 56.3* 99.99 999.9 010000 724050 13743 19551030 64.0 24 59.1 24 1002.9 24 1001.9 24 9.9 24 8.0 24 26.0 999.9 73.4* 51.3* 99.99 999.9 010010 724050 13743 19551031 49.4 24 40.4 24 1012.1 24 1011.1 24 12.6 24 5.7 24 18.1 999.9 61.3* 40.3* 0.00I 999.9 000000 724050 13743 19551101 50.3 24 37.4 24 1018.9 24 1017.9 24 10.5 24 1.8 24 9.9 999.9 66.4* 38.3* 0.00I 999.9 000000 724050 13743 19551102 54.5 24 42.1 24 1018.3 24 1017.3 24 6.7 24 1.1 24 9.9 999.9 75.4* 42.4* 0.00I 999.9 000000 724050 13743 19551103 53.4 24 45.4 24 1015.7 24 1014.6 24 10.0 24 9.1 24 15.9 999.9 60.3* 49.3* 99.99 999.9 110000 724050 13743 19551104 44.3 24 31.0 24 1018.2 24 1017.2 24 12.0 24 17.3 24 22.9 999.9 49.3* 39.4* 0.00I 999.9 000000 724050 13743 19551105 43.0 24 29.7 24 1016.3 24 1015.3 24 12.6 24 17.3 24 22.9 999.9 49.3* 39.4* 0.00I 999.9 000000 724050 13743 19551106 44.7 24 29.0 24 1014.2 24 1013.2 24 12.9 24 6.7 24 12.0 999.9 59.4* 35.4* 0.00I 999.9 000000 724050 13743 19551107 46.3 24 38.8 24 1013.7 24 1012.7 24 4.6 24 2.0 24 9.9 999.9 50.4* 42.4* 99.99 999.9 110000 724050 13743 19551108 44.6 24 38.4 24 1018.2 24 1017.2 24 5.9 24 3.5 24 13.0 999.9 53.4* 36.3* 0.00I 999.9 100000 724050 13743 19551109 43.3 24 29.4 24 1017.7 24 1016.7 24 14.1 24 5.2 24 12.0 999.9 52.3* 36.3* 0.00I 999.9 000000 724050 13743 19551110 41.1 24 34.5 24 1013.3 24 1012.2 24 4.8 24 3.2 24 15.9 999.9 49.3* 35.4* 99.99 999.9 110000 724050 13743 19551111 47.1 24 39.9 24 1006.5 24 1005.5 24 9.6 24 9.6 24 18.1 999.9 59.4* 38.3* 99.99 999.9 110000 724050 13743 19551112 56.5 24 43.9 24 1014.3 24 1013.3 24 12.8 24 5.8 24 8.9 999.9 72.3* 46.4* 0.00I 999.9 000000 724050 13743 19551113 64.0 24 51.6 24 1018.7 24 1017.6 24 10.3 24 4.4 24 8.0 999.9 77.4* 54.3* 0.00I 999.9 000000 724050 13743 19551114 64.3 24 57.1 24 1012.8 24 1011.8 24 9.0 24 5.2 24 18.1 999.9 76.3* 55.4* 99.99 999.9 110000 724050 13743 19551115 54.6 24 46.9 24 1014.5 24 1013.5 24 8.2 24 6.4 24 14.0 999.9 62.4* 47.3* 99.99 999.9 010000 724050 13743 19551116 59.1 24 54.1 24 1005.2 24 1004.2 24 5.3 24 4.3 24 14.0 999.9 76.3* 51.3* 0.00I 999.9 100000 724050 13743 19551117 51.5 24 29.6 24 1009.1 24 1008.1 24 14.9 24 17.6 24 35.0 999.9 74.3* 41.4* 0.00I 999.9 000000 724050 13743 19551118 39.1 24 22.9 24 1025.0 24 1024.0 24 14.9 24 14.8 24 23.9 999.9 45.3* 34.3* 0.00I 999.9 000000 724050 13743 19551119 37.2 24 32.0 24 1016.6 24 1015.6 24 5.0 24 3.7 24 12.0 999.9 42.4* 33.4* 99.99 999.9 111000 724050 13743 19551120 38.2 24 27.0 24 1018.5 24 1017.5 24 12.6 24 16.3 24 25.1 999.9 43.3* 34.3* 0.00I 999.9 000000 724050 13743 19551121 44.0 24 28.4 24 1015.3 24 1014.3 24 10.5 24 8.9 24 23.9 999.9 61.3* 34.3* 0.00I 999.9 000000 724050 13743 19551122 44.8 24 29.6 24 1020.1 24 1019.1 24 8.7 24 4.5 24 11.1 999.9 55.4* 34.3* 0.00I 999.9 000000 724050 13743 19551123 46.6 24 39.6 24 1016.7 24 1015.7 24 6.5 24 4.1 24 14.0 999.9 63.3* 38.3* 99.99 999.9 010000 724050 13743 19551124 51.1 24 40.0 24 1019.4 24 1018.4 24 10.0 24 12.9 24 21.0 999.9 62.4* 44.4* 0.00I 999.9 000000 724050 13743 19551125 39.0 24 25.6 24 1026.1 24 1025.1 24 7.8 24 2.0 24 9.9 999.9 43.3* 34.3* 0.00I 999.9 000000 724050 13743 19551126 37.7 24 29.0 24 1019.2 24 1018.2 24 9.0 24 9.3 24 15.0 999.9 42.4* 32.4* 99.99 999.9 001000 724050 13743 19551127 39.0 24 29.6 24 1017.8 24 1016.8 24 8.8 24 3.9 24 9.9 999.9 53.4* 29.3* 0.00I 999.9 000000 724050 13743 19551128 46.5 24 36.4 24 1005.8 24 1004.8 24 11.3 24 13.3 24 20.0 999.9 50.4* 33.4* 0.00I 999.9 000000 724050 13743 19551129 25.0 24 6.9 24 1013.9 24 1012.9 24 14.5 24 12.9 24 22.0 999.9 36.3* 17.4* 0.00I 999.9 000000 724050 13743 19551130 32.4 24 16.3 24 1024.3 24 1023.3 24 14.8 24 14.5 24 29.9 999.9 38.3* 27.3* 0.00I 999.9 000000 724050 13743 19551201 32.2 24 18.0 24 1033.7 24 1032.6 24 14.7 24 9.3 24 18.1 999.9 42.4* 26.4* 0.00I 999.9 000000 724050 13743 19551202 35.2 24 28.6 24 1028.7 24 1027.7 24 7.2 24 8.9 24 14.0 999.9 38.3* 32.4* 99.99 999.9 111000 724050 13743 19551203 46.0 24 41.7 24 1021.8 24 1020.8 24 4.5 24 2.6 24 8.0 999.9 58.3* 38.3* 99.99 999.9 110000 724050 13743 19551204 55.4 24 52.2 24 1015.8 24 1014.8 24 5.6 24 3.6 24 11.1 999.9 63.3* 49.3* 99.99 999.9 010000 724050 13743 19551205 51.1 24 37.9 24 1013.6 24 1012.6 24 13.3 24 10.7 24 15.9 999.9 60.3* 44.4* 0.00I 999.9 000000 724050 13743 19551206 39.3 24 25.2 24 1018.0 24 1016.9 24 11.4 24 10.7 24 16.9 999.9 46.4* 36.3* 0.00I 999.9 000000 724050 13743 19551207 33.3 24 23.9 24 1017.8 24 1016.7 24 5.8 24 3.0 24 9.9 999.9 40.3* 26.4* 0.00I 999.9 000000 724050 13743 19551208 38.0 24 28.9 24 1012.6 24 1011.6 24 6.2 24 2.9 24 9.9 999.9 47.3* 30.4* 0.00I 999.9 000000 724050 13743 19551209 37.6 24 33.7 24 1009.0 24 1008.0 24 4.5 24 7.3 24 18.1 999.9 40.3* 35.4* 99.99 999.9 110000 724050 13743 19551210 31.7 24 16.9 24 1020.8 24 1019.8 24 12.4 24 15.7 24 25.1 999.9 36.3* 28.4* 0.00I 999.9 000000 724050 13743 19551211 29.6 24 11.9 24 1027.5 24 1026.5 24 13.5 24 12.5 24 19.0 999.9 35.4* 24.4* 0.00I 999.9 000000 724050 13743 19551212 30.5 24 16.4 24 1028.0 24 1026.9 24 13.1 24 9.8 24 13.0 999.9 38.3* 24.4* 0.00I 999.9 000000 724050 13743 19551213 32.0 24 20.4 24 1029.9 24 1028.9 24 9.6 24 7.6 24 12.0 999.9 39.4* 25.3* 0.00I 999.9 000000 724050 13743 19551214 31.8 24 23.2 24 1030.8 24 1029.8 24 6.3 24 3.7 24 8.9 999.9 42.4* 24.4* 0.00I 999.9 000000 724050 13743 19551215 37.3 24 26.2 24 1016.4 24 1015.3 24 7.6 24 5.8 24 18.1 999.9 46.4* 33.4* 0.00I 999.9 000000 724050 13743 19551216 24.0 24 8.2 24 1019.9 24 1018.8 24 13.0 24 15.1 24 23.9 999.9 33.4* 15.4* 0.00I 999.9 000000 724050 13743 19551217 29.1 24 14.5 24 1022.1 24 1021.1 24 12.4 24 6.4 24 11.1 999.9 39.4* 22.5* 0.00I 999.9 000000 724050 13743 19551218 32.6 24 26.3 24 1021.6 24 1020.5 24 5.6 24 0.8 24 7.0 999.9 38.3* 30.4* 99.99 999.9 111000 724050 13743 19551219 33.8 24 26.2 24 1023.4 24 1022.4 24 6.5 24 7.6 24 21.0 999.9 39.4* 30.4* 0.00I 999.9 100000 724050 13743 19551220 25.1 24 8.2 24 1030.5 24 1029.5 24 14.9 24 12.6 24 15.9 999.9 28.4* 20.3* 0.00I 999.9 000000 724050 13743 19551221 23.7 24 5.2 24 1029.3 24 1028.3 24 13.4 24 6.2 24 14.0 999.9 30.4* 19.4* 0.00I 999.9 000000 724050 13743 19551222 25.1 24 11.6 24 1019.4 24 1018.4 24 8.8 24 3.9 24 12.0 999.9 33.4* 18.3* 0.00I 999.9 000000 724050 13743 19551223 32.9 24 23.2 24 1015.1 24 1014.1 24 5.1 24 4.8 24 12.0 999.9 37.4* 29.3* 0.00I 999.9 000000 724050 13743 19551224 37.4 24 28.6 24 1014.7 24 1013.7 24 3.3 24 2.3 24 9.9 999.9 48.4* 32.4* 0.00I 999.9 100000 724050 13743 19551225 49.1 24 37.7 24 1009.0 24 1007.9 24 8.3 24 8.0 24 19.0 999.9 61.3* 36.3* 0.00I 999.9 000000 724050 13743 19551226 38.1 24 23.5 24 1022.8 24 1021.8 24 13.3 24 13.5 24 20.0 999.9 46.4* 33.4* 0.00I 999.9 000000 724050 13743 19551227 29.4 24 13.6 24 1029.4 24 1028.4 24 13.4 24 9.6 24 18.1 999.9 36.3* 21.4* 0.00I 999.9 000000 724050 13743 19551228 25.7 24 11.7 24 1036.9 24 1035.9 24 10.1 24 5.9 24 9.9 999.9 34.3* 18.3* 0.00I 999.9 000000 724050 13743 19551229 26.5 24 16.7 24 1034.2 24 1033.2 24 7.0 24 2.7 24 8.9 999.9 33.4* 21.4* 99.99 999.9 010000 724050 13743 19551230 35.2 24 24.2 24 1019.6 24 1018.5 24 7.8 24 11.5 24 23.9 999.9 38.3* 28.4* 0.00I 999.9 000000 724050 13743 19551231 28.3 24 12.6 24 1017.2 24 1016.2 24 13.3 24 10.4 24 15.9 999.9 37.4* 23.4* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/2017/0000755000175000017500000000000014302004506015071 5ustar nileshnileshfluids-1.0.22/tests/gsod/2017/724050-13743.op0000644000175000017500000014327214302004506016662 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20170101 46.6 24 27.0 24 1019.6 24 1017.3 24 10.0 24 6.4 24 17.1 26.0 55.9 28.0 0.00G 999.9 010000 724050 13743 20170102 43.8 24 38.9 24 1027.6 18 1025.3 24 5.8 24 5.7 24 9.9 999.9 55.9 37.0 0.08G 999.9 010000 724050 13743 20170103 43.9 24 43.3 24 1016.2 13 1012.6 24 4.4 24 5.9 24 8.9 999.9 46.0 41.0 0.35G 999.9 010000 724050 13743 20170104 48.3 24 41.1 24 1003.4 15 1000.1 24 6.0 24 7.2 24 14.0 26.0 57.0 43.0 0.78G 999.9 100000 724050 13743 20170105 35.2 24 13.3 24 1014.2 24 1012.0 24 9.8 24 7.2 24 14.0 20.0 57.0 30.0 0.00G 999.9 001000 724050 13743 20170106 33.2 24 19.2 24 1017.9 24 1015.2 24 9.9 24 9.2 24 14.0 19.0 37.0 28.9 0.00G 999.9 001000 724050 13743 20170107 25.2 24 11.1 24 1025.4 22 1023.0 24 8.3 24 12.1 24 15.9 21.0 28.9* 21.2* 0.00G 999.9 001000 724050 13743 20170108 20.1 24 1.5 24 1031.2 24 1028.9 24 10.0 24 13.6 24 20.0 29.9 27.0 15.1 0.01G 999.9 000000 724050 13743 20170109 20.9 24 1.9 24 1040.6 24 1038.3 24 10.0 24 7.2 24 13.0 15.9 28.9 15.1 0.00G 999.9 000000 724050 13743 20170110 27.5 24 11.2 24 1034.8 24 1032.6 24 10.0 24 9.0 24 13.0 999.9 37.0 16.0 0.00G 999.9 000000 724050 13743 20170111 43.5 24 32.6 24 1025.4 24 1023.1 24 10.0 24 9.5 24 21.0 28.0 57.0 21.9 0.02G 999.9 010000 724050 13743 20170112 57.3 24 49.5 24 1021.1 24 1018.7 24 9.9 24 15.2 24 25.1 32.1 72.0 35.1 0.06G 999.9 010000 724050 13743 20170113 56.5 24 40.7 24 1028.1 24 1025.8 24 10.0 24 11.8 24 19.0 24.1 72.0 46.9 0.01G 999.9 000000 724050 13743 20170114 38.8 24 27.7 24 1037.2 18 1034.3 24 8.7 24 6.2 24 13.0 999.9 46.9* 34.0* 0.03G 999.9 011000 724050 13743 20170115 40.3 24 29.3 24 1028.6 22 1026.2 24 9.2 24 5.3 24 8.9 999.9 48.9 34.0 0.26G 999.9 010000 724050 13743 20170116 41.2 24 28.6 24 1030.4 24 1028.2 24 10.0 24 4.2 24 8.0 999.9 48.9 36.0 0.00G 999.9 000000 724050 13743 20170117 43.7 24 40.5 24 1022.7 21 1020.2 24 8.1 24 4.5 24 12.0 15.0 51.1 37.9 0.04G 999.9 010000 724050 13743 20170118 51.1 24 44.7 24 1014.4 16 1011.3 24 6.1 24 7.7 24 15.9 24.1 60.1 41.0 0.18G 999.9 110000 724050 13743 20170119 48.2 24 36.6 24 1018.5 24 1016.1 24 10.0 24 7.6 24 13.0 999.9 60.1 41.0 0.00G 999.9 000000 724050 13743 20170120 43.7 24 39.8 24 1015.0 24 1012.6 24 9.9 24 2.8 24 8.9 999.9 53.1 39.0 0.00G 999.9 010000 724050 13743 20170121 48.1 24 47.3 24 1012.2 19 1010.1 24 7.1 24 5.0 24 7.0 999.9 50.0 39.0 0.01G 999.9 010000 724050 13743 20170122 48.5 24 48.0 24 1005.8 13 1003.9 24 4.8 24 5.8 24 11.1 999.9 52.0 46.0 0.00G 999.9 110000 724050 13743 20170123 46.6 24 45.1 24 1000.1 14 997.7 24 3.7 24 17.6 24 28.9 41.0 50.0* 41.0* 0.19G 999.9 010000 724050 13743 20170124 42.4 24 37.0 24 999.5 19 996.8 24 9.0 24 14.9 24 20.0 29.9 50.0 37.9 0.66G 999.9 010000 724050 13743 20170125 50.5 24 35.6 24 1006.1 24 1003.8 24 10.0 24 7.0 24 14.0 25.1 61.0 37.9 0.03G 999.9 000000 724050 13743 20170126 52.0 24 36.8 24 1001.0 24 998.4 24 10.0 24 8.0 24 26.0 36.9 61.0 45.0 0.00G 999.9 010000 724050 13743 20170127 43.3 24 21.5 24 1009.6 24 1007.2 24 10.0 24 12.4 24 18.1 26.0 61.0 39.0 0.00G 999.9 000000 724050 13743 20170128 39.6 24 19.0 24 1009.1 24 1006.9 24 10.0 24 8.6 24 15.9 25.1 48.9 33.1 0.00G 999.9 000000 724050 13743 20170129 40.6 24 23.7 24 1008.1 24 1005.9 24 10.0 24 5.4 24 11.1 15.0 48.9 33.1 0.00G 999.9 000000 724050 13743 20170130 36.3 24 25.7 24 1010.6 24 1008.0 24 8.7 24 8.8 24 17.1 28.0 46.9 32.0 0.06G 999.9 101000 724050 13743 20170131 38.9 24 19.7 24 1012.8 24 1010.5 24 10.0 24 8.3 24 15.9 22.0 55.9 28.0 0.01G 999.9 001000 724050 13743 20170201 42.9 24 30.5 24 1014.5 24 1012.2 24 10.0 24 3.7 24 7.0 999.9 55.9 28.0 0.00G 999.9 000000 724050 13743 20170202 45.7 24 28.3 24 1019.8 24 1017.5 24 10.0 24 6.5 24 15.0 22.0 51.1 34.0 0.00G 999.9 000000 724050 13743 20170203 37.0 24 12.6 24 1024.3 24 1022.0 24 10.0 24 8.6 24 15.0 19.0 50.0 34.0 0.00G 999.9 000000 724050 13743 20170204 32.3 24 7.0 24 1029.7 24 1027.4 24 10.0 24 9.7 24 15.9 22.0 41.0 24.1 0.00G 999.9 000000 724050 13743 20170205 39.7 24 16.5 24 1020.3 24 1018.0 24 10.0 24 9.2 24 14.0 999.9 54.0 24.1 0.00G 999.9 000000 724050 13743 20170206 44.7 24 32.3 24 1018.6 24 1016.3 24 10.0 24 5.8 24 11.1 999.9 61.0 32.0 0.00G 999.9 000000 724050 13743 20170207 55.8 24 41.9 24 1011.4 24 1009.1 24 10.0 24 10.0 24 17.1 28.0 73.0 33.1 0.00G 999.9 010000 724050 13743 20170208 63.0 24 49.5 24 1003.4 24 1001.1 24 10.0 24 10.3 24 15.9 18.1 73.9 48.0 0.00G 999.9 000000 724050 13743 20170209 43.3 24 31.5 24 1006.4 20 1003.4 24 9.7 24 14.8 24 28.9 36.9 59.0* 30.0* 0.11G 999.9 011000 724050 13743 20170210 29.6 24 7.0 24 1026.1 24 1023.8 24 10.0 24 12.3 24 24.1 35.9 37.9* 24.1* 0.12G 999.9 000000 724050 13743 20170211 42.5 24 22.7 24 1016.1 24 1013.8 24 10.0 24 6.8 24 12.0 999.9 53.1 23.0 0.00G 999.9 000000 724050 13743 20170212 48.4 24 39.2 24 1012.0 24 1009.6 24 9.8 24 5.0 24 15.0 999.9 54.0 34.0 0.00G 999.9 010000 724050 13743 20170213 44.6 24 23.2 24 1014.0 24 1011.7 24 10.0 24 17.3 24 45.1 56.9 55.0 37.0 0.03G 999.9 010000 724050 13743 20170214 38.1 24 25.5 24 1016.1 24 1013.8 24 10.0 24 6.4 24 15.0 22.9 46.9 30.0 0.00G 999.9 010000 724050 13743 20170215 43.1 24 28.5 24 1002.7 24 1000.4 24 10.0 24 8.2 24 24.1 34.0 55.0 30.0 0.00G 999.9 000000 724050 13743 20170216 37.1 24 16.6 24 1007.2 24 1004.8 24 9.7 24 12.1 24 18.1 26.0 55.0 33.1 0.00G 999.9 001000 724050 13743 20170217 36.8 24 17.2 24 1013.9 24 1011.7 24 10.0 24 4.8 24 11.1 18.1 51.1 28.0 0.00G 999.9 000000 724050 13743 20170218 45.4 24 30.2 24 1011.4 24 1009.1 24 10.0 24 5.4 24 9.9 999.9 68.0 28.0 0.00G 999.9 000000 724050 13743 20170219 60.9 24 41.2 24 1010.9 24 1008.6 24 10.0 24 7.4 24 15.0 19.0 71.1* 50.0* 0.01G 999.9 010000 724050 13743 20170220 57.5 24 39.2 24 1020.6 24 1018.3 24 10.0 24 6.9 24 15.0 19.0 71.1 43.0 0.00I 999.9 000000 724050 13743 20170221 49.9 24 29.2 24 1025.7 24 1023.3 24 10.0 24 5.6 24 9.9 999.9 68.0 41.0 0.00G 999.9 000000 724050 13743 20170222 51.0 24 42.3 24 1017.3 24 1015.0 24 10.0 24 5.8 24 8.9 999.9 63.0 41.0 0.00G 999.9 010000 724050 13743 20170223 59.7 24 52.8 24 1011.9 24 1009.5 24 10.0 24 8.1 24 15.0 19.0 75.0 46.0 0.00G 999.9 000000 724050 13743 20170224 63.6 24 53.5 24 1011.9 24 1009.6 24 10.0 24 9.1 24 14.0 999.9 77.0 53.1 0.00G 999.9 000000 724050 13743 20170225 63.0 24 56.0 24 1005.6 22 1002.6 24 9.7 24 11.5 24 22.9 40.0 77.0 54.0 0.00G 999.9 010010 724050 13743 20170226 44.2 24 20.7 24 1015.9 24 1013.5 24 10.0 24 12.2 24 20.0 31.1 55.0* 36.0* 0.18G 999.9 000000 724050 13743 20170227 44.9 24 27.7 24 1028.3 24 1025.9 24 10.0 24 5.3 24 11.1 999.9 55.0 35.1 0.00G 999.9 000000 724050 13743 20170228 55.2 24 40.8 24 1025.9 24 1023.5 24 9.9 24 4.3 24 8.0 999.9 68.0 36.0 0.00G 999.9 010000 724050 13743 20170301 63.2 24 56.2 24 1010.0 22 1007.4 24 8.7 24 12.3 24 34.0 47.0 80.1 46.9 0.35G 999.9 010000 724050 13743 20170302 53.9 24 32.0 24 1010.0 24 1007.7 24 10.0 24 16.5 24 24.1 35.0 80.1 46.0 0.02G 999.9 010000 724050 13743 20170303 40.2 24 18.7 24 1025.8 23 1023.2 24 10.0 24 12.9 24 24.1 33.0 46.0* 34.0* 0.01G 999.9 001000 724050 13743 20170304 34.6 24 10.6 24 1035.0 24 1032.7 24 10.0 24 11.0 24 19.0 26.0 44.1 26.1 0.00G 999.9 000000 724050 13743 20170305 31.6 24 2.8 24 1038.0 24 1035.8 24 10.0 24 8.5 24 14.0 999.9 44.1 23.0 0.00G 999.9 000000 724050 13743 20170306 40.7 24 20.3 24 1032.7 24 1030.3 24 10.0 24 5.3 24 8.9 999.9 54.0 23.0 0.00G 999.9 000000 724050 13743 20170307 55.9 24 43.4 24 1024.9 24 1022.6 24 10.0 24 8.9 24 22.9 28.9 71.1 33.1 0.00G 999.9 010000 724050 13743 20170308 59.3 24 37.3 24 1018.3 24 1015.9 24 10.0 24 11.0 24 22.9 38.1 71.1 46.9 0.08G 999.9 010000 724050 13743 20170309 60.5 24 20.0 24 1018.4 24 1016.1 24 10.0 24 8.2 24 15.0 26.0 73.9 46.9 0.01G 999.9 000000 724050 13743 20170310 48.9 24 29.1 24 1012.9 23 1010.4 24 9.7 24 12.0 24 21.0 32.1 73.9 37.0 0.00G 999.9 011000 724050 13743 20170311 33.1 24 9.1 24 1023.7 24 1021.4 24 10.0 24 12.7 24 21.0 26.0 39.9* 26.1* 0.09G 999.9 000000 724050 13743 20170312 33.0 24 8.2 24 1028.4 24 1026.1 24 10.0 24 10.5 24 15.0 20.0 43.0 26.1 0.00G 999.9 000000 724050 13743 20170313 35.0 24 14.8 24 1030.4 23 1027.9 24 9.7 24 8.5 24 13.0 15.0 46.0 27.0 0.00G 999.9 001000 724050 13743 20170314 34.4 24 28.9 24 1006.9 12 1006.2 24 6.2 24 17.1 24 26.0 38.1 46.0 28.0 1.18G 1.2 111000 724050 13743 20170315 27.5 24 9.4 24 1011.3 24 1009.1 24 10.0 24 16.8 24 24.1 41.0 39.0 21.9 0.05G 1.2 000000 724050 13743 20170316 32.8 24 11.4 24 1020.7 24 1018.5 24 10.0 24 11.8 24 18.1 28.0 42.1 21.9 0.00G 1.2 000000 724050 13743 20170317 39.6 24 18.2 24 1026.2 24 1023.9 24 10.0 24 4.7 24 8.9 999.9 52.0 24.1 0.00G 1.2 000000 724050 13743 20170318 46.0 24 37.2 24 1019.6 24 1017.2 24 10.0 24 5.7 24 14.0 999.9 59.0 28.9 0.03G 999.9 010000 724050 13743 20170319 43.7 24 36.9 24 1022.1 18 1018.7 24 8.9 24 12.6 24 17.1 21.0 59.0 36.0 0.60G 999.9 011000 724050 13743 20170320 46.0 24 30.8 24 1022.4 24 1020.1 24 10.0 24 8.1 24 15.9 20.0 54.0 36.0 0.01G 999.9 000000 724050 13743 20170321 52.2 24 36.7 24 1015.4 24 1013.0 24 10.0 24 4.7 24 9.9 999.9 63.0 37.0 0.00G 999.9 010000 724050 13743 20170322 50.7 24 24.7 24 1019.6 24 1017.3 24 10.0 24 13.0 24 21.0 29.9 63.0 39.9 0.00G 999.9 000000 724050 13743 20170323 38.2 24 6.5 24 1034.9 24 1032.6 24 10.0 24 7.3 24 14.0 999.9 59.0 30.0 0.00G 999.9 000000 724050 13743 20170324 44.6 24 27.8 24 1030.1 24 1028.1 24 9.7 24 11.3 24 18.1 21.0 62.1 30.0 0.00G 999.9 010000 724050 13743 20170325 62.8 24 49.1 24 1021.6 24 1019.3 24 10.0 24 7.2 24 11.1 999.9 78.1* 55.0* 0.13G 999.9 000000 724050 13743 20170326 53.4 24 46.2 24 1024.7 22 1022.5 24 10.0 24 10.7 24 19.0 20.0 78.1 48.0 0.00G 999.9 000000 724050 13743 20170327 54.2 24 50.1 24 1018.7 20 1016.9 24 5.4 24 5.4 24 12.0 999.9 75.9 46.0 0.01G 999.9 110000 724050 13743 20170328 65.0 24 57.3 24 1011.4 24 1009.2 24 10.0 24 5.8 24 13.0 17.1 75.9 46.0 0.02D 999.9 010000 724050 13743 20170329 61.8 24 47.2 24 1017.3 22 1014.9 24 10.0 24 9.1 24 13.0 999.9 73.9 55.0 0.00H 999.9 010000 724050 13743 20170330 52.1 24 33.4 24 1022.5 24 1020.2 24 10.0 24 7.7 24 12.0 999.9 66.9 46.0 0.00G 999.9 000000 724050 13743 20170331 48.6 24 44.2 24 1011.8 18 1009.3 24 7.8 24 8.8 24 12.0 999.9 55.0 45.0 0.13G 999.9 010000 724050 13743 20170401 52.1 24 44.0 24 1010.6 22 1007.3 24 9.7 24 11.0 24 20.0 27.0 61.0 45.0 0.84G 999.9 010000 724050 13743 20170402 53.8 24 35.0 24 1021.7 24 1019.3 24 10.0 24 9.2 24 18.1 22.0 66.0 43.0 0.01G 999.9 000000 724050 13743 20170403 57.7 24 43.0 24 1017.8 24 1015.5 24 10.0 24 8.1 24 15.0 999.9 68.0 43.0 0.00G 999.9 000000 724050 13743 20170404 67.4 24 56.2 24 1003.2 22 1001.0 24 9.5 24 10.9 24 15.9 25.1 82.0 48.0 0.11G 999.9 010000 724050 13743 20170405 67.9 24 45.1 24 1010.5 24 1008.2 24 10.0 24 7.0 24 12.0 999.9 82.0 60.1 0.00G 999.9 000000 724050 13743 20170406 58.9 24 51.7 24 1002.2 17 998.3 24 8.7 24 7.7 24 28.0 42.9 73.9 54.0 0.00G 999.9 010010 724050 13743 20170407 49.5 24 32.1 24 999.8 24 997.5 24 10.0 24 13.6 24 22.0 34.0 61.0 43.0 1.57G 999.9 010000 724050 13743 20170408 49.6 24 21.6 24 1013.9 24 1011.6 24 10.0 24 10.4 24 21.0 28.0 64.9 39.0 0.00G 999.9 000000 724050 13743 20170409 56.5 24 33.4 24 1020.4 24 1018.0 24 10.0 24 5.8 24 12.0 999.9 72.0 39.0 0.00G 999.9 000000 724050 13743 20170410 63.8 24 42.9 24 1021.6 24 1019.2 24 10.0 24 7.8 24 14.0 18.1 82.0 42.1 0.00G 999.9 000000 724050 13743 20170411 70.1 24 51.1 24 1020.5 24 1018.2 24 10.0 24 8.7 24 11.1 999.9 84.0 50.0 0.00G 999.9 000000 724050 13743 20170412 71.1 24 53.3 24 1021.2 24 1018.9 24 10.0 24 7.2 24 14.0 18.1 84.0 59.0 0.00G 999.9 010000 724050 13743 20170413 64.3 24 35.7 24 1027.1 24 1024.8 24 10.0 24 6.6 24 11.1 999.9 79.0 54.0 0.00G 999.9 000000 724050 13743 20170414 62.1 24 39.7 24 1027.7 24 1025.4 24 10.0 24 4.2 24 9.9 999.9 73.0 54.0 0.00G 999.9 000000 724050 13743 20170415 62.6 24 49.1 24 1026.0 23 1023.8 24 10.0 24 5.4 24 8.0 999.9 77.0 54.0 0.00G 999.9 000000 724050 13743 20170416 74.9 24 57.4 24 1017.4 24 1015.1 24 10.0 24 8.8 24 19.0 22.9 89.1 55.0 0.00G 999.9 000000 724050 13743 20170417 70.6 24 55.9 24 1015.8 24 1013.5 24 9.8 24 7.7 24 13.0 15.9 89.1 63.0 0.00G 999.9 010000 724050 13743 20170418 64.6 24 45.5 24 1024.4 24 1022.1 24 10.0 24 5.2 24 13.0 999.9 73.9 55.9 0.07G 999.9 000000 724050 13743 20170419 57.6 24 47.0 24 1028.6 23 1026.7 24 10.0 24 8.1 24 15.0 999.9 72.0 53.1 0.00G 999.9 010000 724050 13743 20170420 65.7 24 57.0 24 1019.1 21 1017.1 24 10.0 24 7.7 24 12.0 999.9 82.0 53.1 0.00G 999.9 010000 724050 13743 20170421 70.1 24 65.0 24 1011.7 24 1009.4 24 9.3 24 4.6 24 19.0 22.9 82.0 57.0 0.12G 999.9 010010 724050 13743 20170422 61.4 24 58.5 24 1011.3 11 1010.3 24 7.1 24 8.8 24 14.0 999.9 72.0* 53.6* 0.13G 999.9 010010 724050 13743 20170423 54.1 24 44.8 24 1018.9 24 1016.4 24 10.0 24 7.4 24 12.0 999.9 64.0 48.9 0.29G 999.9 000000 724050 13743 20170424 55.6 24 47.4 24 1018.3 23 1016.0 24 9.3 24 8.7 24 17.1 999.9 61.0 48.9 0.00G 999.9 010000 724050 13743 20170425 57.0 24 54.5 24 1011.2 21 1009.2 24 7.6 24 13.5 24 21.0 28.0 61.0 53.1 0.25G 999.9 010000 724050 13743 20170426 62.3 24 57.8 24 1007.8 18 1005.2 24 8.7 24 7.7 24 11.1 999.9 72.0 53.1 0.07G 999.9 010000 724050 13743 20170427 68.0 24 61.1 24 1009.7 24 1007.4 24 9.7 24 5.1 24 13.0 999.9 82.9 57.9 0.01G 999.9 000000 724050 13743 20170428 74.9 24 61.3 24 1014.1 23 1011.5 24 10.0 24 7.6 24 12.0 999.9 84.0 57.9 0.00G 999.9 010010 724050 13743 20170429 78.2 24 66.9 24 1017.2 24 1014.9 24 10.0 24 7.5 24 14.0 999.9 91.0 64.9 0.00G 999.9 010010 724050 13743 20170430 78.5 24 70.1 24 1018.1 24 1015.7 24 9.7 24 7.6 24 18.1 24.1 91.0 70.0 0.00G 999.9 000000 724050 13743 20170501 74.5 24 65.3 24 1012.4 23 1010.7 24 9.8 24 11.5 24 20.0 27.0 88.0 64.0 0.00G 999.9 010000 724050 13743 20170502 74.3 24 55.4 24 1004.9 23 1002.5 24 10.0 24 13.6 24 19.0 31.1 84.0 64.0 0.00G 999.9 010000 724050 13743 20170503 64.9 24 37.8 24 1014.3 24 1012.0 24 10.0 24 10.7 24 21.0 26.0 80.1 60.1 0.00G 999.9 000000 724050 13743 20170504 60.1 24 42.8 24 1021.4 24 1019.1 24 10.0 24 9.0 24 17.1 22.0 66.9 53.1 0.00G 999.9 000000 724050 13743 20170505 64.9 24 60.3 24 1005.0 15 1002.3 24 8.4 24 11.3 24 20.0 27.0 75.9 53.1 0.90G 999.9 010000 724050 13743 20170506 60.0 24 54.7 24 995.4 17 993.5 24 9.6 24 10.4 24 17.1 26.0 75.9 55.0 0.98G 999.9 010000 724050 13743 20170507 54.6 24 40.5 24 1005.8 24 1003.5 24 10.0 24 9.8 24 19.0 26.0 64.9 46.0 0.07G 999.9 000000 724050 13743 20170508 56.2 24 31.5 24 1013.7 24 1011.4 24 10.0 24 9.5 24 15.0 22.9 64.9 46.0 0.00G 999.9 000000 724050 13743 20170509 56.9 24 31.3 24 1015.6 24 1013.3 24 10.0 24 6.0 24 11.1 15.0 66.9 46.0 0.00G 999.9 000000 724050 13743 20170510 61.2 24 41.3 24 1015.1 24 1012.8 24 10.0 24 4.4 24 9.9 999.9 75.9 46.0 0.00G 999.9 000000 724050 13743 20170511 59.0 24 50.9 24 1014.3 17 1011.7 24 7.4 24 6.1 24 14.0 999.9 75.9 50.0 0.01G 999.9 010010 724050 13743 20170512 54.5 24 48.9 24 1016.0 19 1013.8 24 9.7 24 6.9 24 11.1 999.9 59.0* 51.1* 1.03G 999.9 010000 724050 13743 20170513 53.7 24 49.4 24 1011.1 20 1009.0 24 8.8 24 10.5 24 14.0 21.0 61.0 50.0 0.82G 999.9 010000 724050 13743 20170514 61.8 24 47.2 24 1008.3 24 1005.9 24 10.0 24 9.2 24 21.0 28.0 82.0 46.9 0.51G 999.9 000000 724050 13743 20170515 66.4 24 37.6 24 1011.4 24 1009.1 24 10.0 24 13.2 24 21.0 27.0 82.0 46.9 0.00G 999.9 000000 724050 13743 20170516 67.8 24 47.7 24 1017.1 24 1014.8 24 10.0 24 5.7 24 12.0 999.9 79.0 54.0 0.00G 999.9 000000 724050 13743 20170517 73.8 24 59.8 24 1016.1 24 1013.8 24 10.0 24 7.0 24 13.0 999.9 91.0 55.0 0.00G 999.9 000000 724050 13743 20170518 78.4 24 64.8 24 1015.0 24 1012.7 24 10.0 24 9.0 24 14.0 999.9 91.0 62.1 0.00G 999.9 010010 724050 13743 20170519 79.0 24 68.0 24 1014.3 23 1012.0 24 10.0 24 9.2 24 15.0 32.1 93.0 70.0 0.03G 999.9 010010 724050 13743 20170520 71.7 24 62.9 24 1019.8 20 1017.3 24 10.0 24 8.4 24 15.0 17.1 93.0 66.9 0.00G 999.9 000000 724050 13743 20170521 63.4 24 47.1 24 1025.6 24 1023.3 24 10.0 24 7.3 24 12.0 999.9 73.0 59.0 0.00G 999.9 000000 724050 13743 20170522 64.0 24 57.7 24 1019.0 20 1016.7 24 9.2 24 4.7 24 8.9 999.9 72.0 57.9 0.15G 999.9 010000 724050 13743 20170523 65.2 24 60.0 24 1013.5 21 1011.2 24 9.7 24 5.5 24 9.9 999.9 72.0 57.9 0.19G 999.9 010000 724050 13743 20170524 61.7 24 56.7 24 1007.0 23 1004.9 24 9.8 24 7.0 24 13.0 17.1 66.9 57.9 0.13G 999.9 010000 724050 13743 20170525 63.7 24 59.0 24 1001.4 14 998.4 24 7.3 24 8.8 24 22.9 31.1 75.0 57.9 0.69G 999.9 010010 724050 13743 20170526 66.6 24 57.2 24 1004.8 24 1002.6 24 10.0 24 9.4 24 17.1 28.0 78.1 57.9 0.25G 999.9 010000 724050 13743 20170527 67.9 24 58.9 24 1012.6 24 1010.4 24 10.0 24 3.2 24 8.9 999.9 78.1 57.9 0.00G 999.9 010000 724050 13743 20170528 67.1 24 62.3 24 1011.7 23 1009.5 24 9.4 24 5.3 24 8.9 999.9 73.9 61.0 0.03G 999.9 010000 724050 13743 20170529 70.6 24 63.0 24 1011.7 16 1009.1 24 8.3 24 5.1 24 13.0 999.9 84.9 62.1 0.08G 999.9 010000 724050 13743 20170530 67.7 24 63.6 24 1017.3 19 1015.1 24 9.1 24 6.8 24 11.1 999.9 84.9 63.0 0.00G 999.9 010010 724050 13743 20170531 70.7 24 65.4 24 1016.3 16 1014.2 24 9.1 24 6.3 24 13.0 15.0 80.1 63.0 0.17G 999.9 010010 724050 13743 20170601 72.4 24 57.2 24 1015.6 24 1013.3 24 10.0 24 5.9 24 14.0 22.9 84.9 63.0 0.02G 999.9 000000 724050 13743 20170602 74.2 24 50.7 24 1015.9 23 1013.7 24 10.0 24 7.0 24 20.0 24.1 84.9 61.0 0.00G 999.9 000000 724050 13743 20170603 73.7 24 49.3 24 1016.1 24 1013.8 24 10.0 24 8.1 24 14.0 20.0 86.0 61.0 0.00G 999.9 000000 724050 13743 20170604 73.7 24 60.4 24 1014.8 24 1012.5 24 10.0 24 7.3 24 13.0 18.1 87.1 61.0 0.00G 999.9 000000 724050 13743 20170605 74.7 24 66.5 24 1007.9 24 1005.7 24 10.0 24 7.4 24 15.0 18.1 87.1 62.1 0.00G 999.9 010000 724050 13743 20170606 72.1 24 59.2 24 1006.6 24 1004.2 24 9.9 24 8.3 24 17.1 22.9 79.0 66.0 0.00G 999.9 000000 724050 13743 20170607 66.2 24 55.5 24 1012.9 20 1010.7 24 10.0 24 8.6 24 14.0 19.0 73.9* 62.6* 0.00G 999.9 000000 724050 13743 20170608 65.2 24 51.5 24 1015.4 24 1013.1 24 10.0 24 6.3 24 11.1 999.9 75.9 55.9 0.00G 999.9 000000 724050 13743 20170609 70.8 24 52.1 24 1010.5 24 1008.2 24 10.0 24 6.3 24 11.1 17.1 84.0 55.9 0.00G 999.9 000000 724050 13743 20170610 76.2 24 58.9 24 1015.8 24 1013.5 24 10.0 24 6.2 24 12.0 999.9 87.1 59.0 0.00G 999.9 000000 724050 13743 20170611 81.5 24 64.6 24 1019.0 24 1016.6 24 10.0 24 6.7 24 12.0 20.0 93.0 64.9 0.00G 999.9 000000 724050 13743 20170612 83.7 24 66.7 24 1018.3 24 1015.9 24 10.0 24 5.6 24 12.0 999.9 95.0 71.1 0.00G 999.9 000000 724050 13743 20170613 84.0 24 71.1 24 1015.3 24 1013.0 24 10.0 24 6.6 24 12.0 999.9 95.0 73.9 0.00G 999.9 000000 724050 13743 20170614 84.4 24 70.5 24 1013.5 24 1011.1 24 10.0 24 7.6 24 13.0 999.9 95.0 75.0 0.00G 999.9 000000 724050 13743 20170615 78.6 24 63.9 24 1015.0 24 1012.7 24 10.0 24 6.7 24 12.0 999.9 91.0 72.0 0.00G 999.9 000000 724050 13743 20170616 76.3 24 67.7 24 1013.0 20 1010.6 24 10.0 24 4.9 24 8.9 999.9 84.0* 69.8* 0.00G 999.9 010010 724050 13743 20170617 78.0 24 72.3 24 1011.6 16 1009.7 24 9.7 24 6.9 24 13.0 999.9 89.1 70.0 0.36G 999.9 010010 724050 13743 20170618 82.3 24 73.5 24 1010.6 20 1008.5 24 10.0 24 12.1 24 18.1 27.0 91.9 73.9 0.00G 999.9 000000 724050 13743 20170619 82.7 24 72.1 24 1010.4 21 1008.0 24 9.5 24 14.9 24 28.0 45.1 88.0* 71.6* 0.00G 999.9 010010 724050 13743 20170620 78.0 24 66.0 24 1014.3 23 1011.8 24 10.0 24 7.8 24 15.0 24.1 89.1 70.0 0.53G 999.9 000010 724050 13743 20170621 79.5 24 66.2 24 1015.0 24 1012.7 24 10.0 24 8.3 24 14.0 20.0 90.0 70.0 0.00G 999.9 000000 724050 13743 20170622 82.4 24 70.3 24 1015.4 24 1013.0 24 10.0 24 5.9 24 11.1 999.9 90.0 71.1 0.00G 999.9 000000 724050 13743 20170623 81.2 24 73.9 24 1011.0 19 1008.6 24 9.7 24 11.2 24 21.0 26.0 89.1 73.0 0.10G 999.9 010000 724050 13743 20170624 83.0 24 67.3 24 1008.2 24 1005.4 24 10.0 24 12.1 24 22.9 31.1 89.1 73.0 0.07G 999.9 010000 724050 13743 20170625 80.2 24 57.9 24 1015.4 24 1013.1 24 10.0 24 7.2 24 15.9 17.1 89.1 72.0 0.00I 999.9 000000 724050 13743 20170626 77.2 24 46.1 24 1017.6 24 1015.3 24 10.0 24 8.2 24 14.0 21.0 88.0 68.0 0.00G 999.9 000000 724050 13743 20170627 75.3 24 52.6 24 1016.1 24 1013.8 24 10.0 24 7.5 24 11.1 18.1 84.0 68.0 0.00G 999.9 010000 724050 13743 20170628 72.7 24 48.6 24 1020.4 24 1018.1 24 10.0 24 6.2 24 13.0 17.1 82.9 61.0 0.07G 999.9 000000 724050 13743 20170629 76.9 24 60.7 24 1020.3 24 1018.0 24 10.0 24 10.8 24 17.1 999.9 91.0 61.0 0.00G 999.9 000000 724050 13743 20170630 82.2 24 64.8 24 1016.9 24 1014.5 24 10.0 24 12.2 24 19.0 27.0 93.9 66.0 0.00G 999.9 000000 724050 13743 20170701 82.4 24 72.0 24 1013.9 22 1011.4 24 10.0 24 10.0 24 22.9 28.9 93.9 73.0 0.00G 999.9 010010 724050 13743 20170702 83.2 24 70.3 24 1015.8 24 1013.3 24 10.0 24 4.4 24 12.0 999.9 93.0 73.0 0.65G 999.9 000000 724050 13743 20170703 84.1 24 67.4 24 1016.4 24 1014.0 24 10.0 24 5.7 24 11.1 999.9 93.0 75.0 0.00G 999.9 000000 724050 13743 20170704 83.1 24 68.5 24 1016.7 24 1014.3 24 10.0 24 4.0 24 11.1 999.9 91.9 75.0 0.00G 999.9 010010 724050 13743 20170705 79.4 24 72.6 24 1018.9 19 1016.7 24 8.2 24 7.3 24 17.1 21.0 84.0* 73.4* 0.04G 999.9 010000 724050 13743 20170706 76.0 24 73.3 24 1017.6 11 1015.4 24 7.1 24 6.0 24 11.1 999.9 84.0 73.9 1.16G 999.9 010000 724050 13743 20170707 80.1 24 71.6 24 1010.5 15 1008.6 24 10.0 24 7.6 24 15.9 22.0 91.0 73.9 0.52G 999.9 010010 724050 13743 20170708 80.6 24 65.8 24 1009.9 24 1007.6 24 10.0 24 6.3 24 13.0 21.0 91.0 72.0 0.01G 999.9 000000 724050 13743 20170709 77.9 24 58.2 24 1016.2 24 1013.9 24 10.0 24 8.0 24 12.0 999.9 90.0 69.1 0.00G 999.9 000000 724050 13743 20170710 80.2 24 66.4 24 1017.1 23 1014.9 24 10.0 24 6.6 24 13.0 999.9 90.0 69.1 0.00G 999.9 000000 724050 13743 20170711 83.1 24 71.1 24 1015.0 24 1012.7 24 10.0 24 8.2 24 13.0 21.0 91.9 72.0 0.00G 999.9 000000 724050 13743 20170712 85.9 24 69.6 24 1016.8 24 1014.5 24 10.0 24 6.5 24 11.1 999.9 95.0 75.0 0.00G 999.9 000000 724050 13743 20170713 87.4 24 73.9 24 1017.0 24 1014.6 24 10.0 24 7.3 24 13.0 18.1 97.0 77.0 0.00G 999.9 000000 724050 13743 20170714 85.9 24 74.7 24 1015.9 22 1013.4 24 9.7 24 7.3 24 32.1 42.0 97.0 73.0 0.00G 999.9 010010 724050 13743 20170715 81.0 24 70.1 24 1014.4 24 1012.1 24 10.0 24 7.3 24 13.0 18.1 97.0 73.0 0.73G 999.9 000000 724050 13743 20170716 80.5 24 63.3 24 1015.2 24 1012.8 24 10.0 24 6.1 24 9.9 999.9 90.0 71.1 0.00G 999.9 000000 724050 13743 20170717 82.3 24 71.9 24 1015.7 23 1013.3 24 9.9 24 6.7 24 14.0 999.9 91.0 71.1 0.00G 999.9 010010 724050 13743 20170718 82.9 24 73.8 24 1017.8 24 1015.4 24 10.0 24 7.4 24 19.0 999.9 91.9 75.9 0.00G 999.9 010010 724050 13743 20170719 85.2 24 73.4 24 1017.8 24 1015.4 24 10.0 24 5.3 24 9.9 999.9 97.0 77.0 0.00G 999.9 000000 724050 13743 20170720 88.4 24 72.0 24 1015.8 24 1013.4 24 10.0 24 6.0 24 9.9 999.9 98.1 77.0 0.00G 999.9 000000 724050 13743 20170721 89.0 24 72.5 24 1013.4 24 1011.1 24 10.0 24 5.3 24 9.9 999.9 98.1 79.0 0.00G 999.9 000000 724050 13743 20170722 85.2 24 73.2 24 1011.7 22 1009.5 24 10.0 24 6.8 24 25.1 42.0 97.0 73.9 0.00G 999.9 010010 724050 13743 20170723 79.1 24 74.5 24 1008.7 17 1006.5 24 8.6 24 5.2 24 18.1 29.9 96.1 73.0 0.99G 999.9 110010 724050 13743 20170724 81.2 24 72.1 24 1008.8 23 1006.4 24 9.7 24 5.2 24 14.0 15.9 91.0 73.0 1.38G 999.9 010010 724050 13743 20170725 78.5 24 63.8 24 1016.4 24 1014.1 24 10.0 24 9.8 24 14.0 20.0 91.0 71.1 0.00G 999.9 000000 724050 13743 20170726 77.0 24 63.1 24 1021.8 24 1019.5 24 10.0 24 5.6 24 12.0 999.9 84.9 69.1 0.00G 999.9 000000 724050 13743 20170727 78.3 24 71.2 24 1016.3 22 1014.0 24 10.0 24 8.4 24 12.0 999.9 86.0 69.1 0.00G 999.9 000000 724050 13743 20170728 77.9 24 74.1 24 1010.2 16 1007.2 24 7.7 24 5.7 24 13.0 999.9 82.9* 71.6* 0.00G 999.9 010010 724050 13743 20170729 72.6 24 67.2 24 1008.3 13 1004.6 24 8.8 24 13.0 24 21.0 26.0 81.0 68.0 3.75G 999.9 010000 724050 13743 20170730 73.5 24 55.0 24 1015.4 24 1013.1 24 10.0 24 8.5 24 15.0 999.9 82.9 63.0 0.03G 999.9 000000 724050 13743 20170731 77.5 24 61.3 24 1018.8 24 1016.5 24 10.0 24 2.4 24 8.9 999.9 91.0 63.0 0.00G 999.9 000000 724050 13743 20170801 79.8 24 67.3 24 1018.1 24 1015.7 24 9.9 24 5.7 24 18.1 19.0 91.0 66.0 0.00G 999.9 010010 724050 13743 20170802 80.8 24 69.2 24 1017.5 24 1015.1 24 10.0 24 5.6 24 14.0 22.0 91.0 70.0 0.00G 999.9 000000 724050 13743 20170803 80.1 24 70.4 24 1018.4 23 1016.0 24 9.8 24 5.3 24 17.1 24.1 90.0 72.0 0.00G 999.9 010010 724050 13743 20170804 80.0 24 71.0 24 1015.9 24 1013.5 24 10.0 24 7.5 24 14.0 999.9 90.0 72.0 0.06G 999.9 000000 724050 13743 20170805 78.0 24 63.9 24 1013.5 24 1011.2 24 10.0 24 11.3 24 21.0 31.1 90.0 73.9 0.00G 999.9 000000 724050 13743 20170806 74.7 24 57.9 24 1019.2 24 1016.8 24 10.0 24 4.8 24 9.9 999.9 82.9 66.9 0.00G 999.9 000000 724050 13743 20170807 73.3 24 67.8 24 1017.9 15 1014.2 24 8.3 24 6.0 24 12.0 999.9 82.9 66.9 0.29G 999.9 010000 724050 13743 20170808 73.9 24 66.6 24 1015.5 21 1012.6 24 9.6 24 6.7 24 11.1 15.9 81.0 70.0 1.22G 999.9 010000 724050 13743 20170809 75.3 24 59.4 24 1021.8 24 1019.5 24 9.9 24 4.0 24 8.9 999.9 86.0 64.9 0.04G 999.9 000000 724050 13743 20170810 76.3 24 61.8 24 1023.5 24 1021.2 24 10.0 24 4.1 24 8.0 999.9 86.0 64.9 0.00G 999.9 000000 724050 13743 20170811 75.7 24 66.2 24 1020.1 24 1017.9 24 10.0 24 5.7 24 8.9 999.9 84.9 66.9 0.00G 999.9 010010 724050 13743 20170812 76.7 24 73.0 24 1013.6 20 1011.6 24 9.2 24 4.0 24 28.0 32.1 84.9 71.1 0.76G 999.9 010010 724050 13743 20170813 76.6 24 66.7 24 1014.4 24 1012.0 24 9.8 24 6.0 24 19.0 32.1 86.0 70.0 0.52G 999.9 010010 724050 13743 20170814 76.1 24 67.6 24 1016.4 24 1014.1 24 10.0 24 3.4 24 9.9 999.9 86.0 70.0 0.00G 999.9 000000 724050 13743 20170815 77.2 24 72.9 24 1013.0 20 1010.6 24 8.2 24 3.0 24 8.9 999.9 82.9 71.1 0.01G 999.9 010000 724050 13743 20170816 80.3 24 72.1 24 1014.8 19 1012.4 24 8.0 24 3.9 24 8.9 999.9 91.0 72.0 0.16G 999.9 000000 724050 13743 20170817 82.4 24 75.0 24 1015.8 24 1013.4 24 9.8 24 6.1 24 15.0 22.9 91.0 72.0 0.00G 999.9 000000 724050 13743 20170818 82.4 24 76.8 24 1011.2 22 1008.9 24 9.6 24 8.7 24 22.9 28.9 91.0 75.9 0.00G 999.9 010010 724050 13743 20170819 82.2 24 71.1 24 1011.9 24 1009.5 24 10.0 24 6.6 24 11.1 15.0 91.0 77.0 0.51G 999.9 010010 724050 13743 20170820 79.1 24 63.6 24 1018.0 24 1015.5 24 9.9 24 6.3 24 15.0 22.0 91.0 70.0 0.01G 999.9 010010 724050 13743 20170821 80.2 24 73.2 24 1021.8 21 1019.3 24 10.0 24 6.4 24 19.0 999.9 90.0 70.0 0.00G 999.9 010010 724050 13743 20170822 81.7 24 74.1 24 1016.2 24 1014.3 24 9.7 24 8.5 24 19.0 24.1 91.9 75.0 0.01G 999.9 000010 724050 13743 20170823 81.7 24 68.3 24 1010.6 24 1008.3 24 9.9 24 7.9 24 13.0 19.0 91.9 75.0 0.00G 999.9 000000 724050 13743 20170824 76.7 24 57.7 24 1014.0 24 1011.7 24 10.0 24 6.1 24 9.9 999.9 86.0 71.1 0.00G 999.9 000000 724050 13743 20170825 73.5 24 60.3 24 1018.6 24 1016.2 24 10.0 24 5.4 24 8.0 999.9 84.0 64.9 0.05G 999.9 010000 724050 13743 20170826 73.5 24 59.4 24 1023.2 24 1020.9 24 10.0 24 5.9 24 8.9 999.9 81.0 64.9 0.00I 999.9 000000 724050 13743 20170827 72.5 24 58.5 24 1023.5 24 1021.1 24 10.0 24 6.2 24 13.0 999.9 81.0 64.9 0.00G 999.9 000000 724050 13743 20170828 70.9 24 58.3 24 1023.0 24 1020.7 24 10.0 24 9.0 24 15.0 20.0 79.0 64.0 0.00G 999.9 000000 724050 13743 20170829 67.7 24 62.6 24 1020.1 19 1017.2 24 8.4 24 9.6 24 14.0 999.9 78.1 64.0 0.20G 999.9 010000 724050 13743 20170830 69.0 24 61.0 24 1016.4 20 1014.1 24 10.0 24 7.0 24 13.0 999.9 79.0 62.1 0.78G 999.9 000000 724050 13743 20170831 75.0 24 64.6 24 1015.5 24 1013.2 24 10.0 24 5.0 24 8.9 15.9 84.9* 68.0* 0.00G 999.9 000000 724050 13743 20170901 68.6 24 54.6 24 1019.1 24 1016.8 24 10.0 24 9.1 24 17.1 18.1 86.0 63.0 0.00G 999.9 000000 724050 13743 20170902 61.9 24 56.3 24 1020.7 15 1018.0 24 8.1 24 8.0 24 13.0 15.9 73.0 57.0 0.38G 999.9 010000 724050 13743 20170903 68.3 24 61.2 24 1015.2 18 1012.9 24 8.9 24 6.0 24 12.0 18.1 80.1 57.0 0.39G 999.9 010000 724050 13743 20170904 71.7 24 59.8 24 1016.0 24 1013.7 24 10.0 24 6.8 24 14.0 17.1 82.0 62.1 0.00G 999.9 000000 724050 13743 20170905 76.5 24 67.3 24 1010.2 24 1007.8 24 10.0 24 9.8 24 15.9 22.9 87.1 62.1 0.00G 999.9 010010 724050 13743 20170906 67.7 24 65.2 24 1011.3 17 1009.0 24 8.2 24 6.0 24 18.1 999.9 71.6* 62.6* 0.09G 999.9 010000 724050 13743 20170907 65.6 24 56.0 24 1014.7 21 1012.2 24 9.6 24 7.0 24 12.0 18.1 75.0 59.0 0.53G 999.9 010000 724050 13743 20170908 66.4 24 51.4 24 1020.4 24 1018.1 24 10.0 24 5.3 24 8.9 17.1 77.0 55.9 0.00G 999.9 000000 724050 13743 20170909 65.6 24 51.4 24 1025.0 24 1022.7 24 10.0 24 7.1 24 11.1 15.9 77.0 55.9 0.00G 999.9 000000 724050 13743 20170910 64.0 24 50.2 24 1028.2 24 1025.9 24 10.0 24 8.0 24 11.1 999.9 73.9 53.1 0.00G 999.9 000000 724050 13743 20170911 65.4 24 53.1 24 1026.3 24 1024.0 24 10.0 24 5.3 24 8.9 999.9 75.0 53.1 0.00G 999.9 000000 724050 13743 20170912 69.4 24 56.6 24 1018.2 24 1015.9 24 10.0 24 3.5 24 8.0 999.9 80.1 57.0 0.00G 999.9 000000 724050 13743 20170913 71.6 24 65.4 24 1012.7 21 1010.6 24 8.1 24 3.7 24 9.9 999.9 80.1 63.0 0.04G 999.9 010000 724050 13743 20170914 74.4 24 66.7 24 1012.0 24 1009.6 24 10.0 24 5.5 24 9.9 999.9 82.0 66.9 0.00H 999.9 010000 724050 13743 20170915 74.8 24 64.9 24 1016.8 24 1014.5 24 10.0 24 4.9 24 9.9 999.9 82.9 66.9 0.00G 999.9 000000 724050 13743 20170916 75.6 24 66.6 24 1020.0 24 1017.6 24 10.0 24 2.2 24 7.0 999.9 87.1 66.0 0.00G 999.9 000000 724050 13743 20170917 75.6 24 68.6 24 1019.6 21 1017.5 24 9.9 24 3.2 24 8.9 999.9 87.1 66.0 0.00G 999.9 000000 724050 13743 20170918 73.6 24 68.6 24 1018.5 20 1016.2 24 10.0 24 6.3 24 12.0 999.9 84.9 68.0 0.00G 999.9 000000 724050 13743 20170919 74.6 24 67.2 24 1015.3 23 1013.2 24 10.0 24 10.4 24 14.0 999.9 84.0 68.0 0.00G 999.9 000000 724050 13743 20170920 77.4 24 64.6 24 1013.6 24 1011.3 24 10.0 24 8.0 24 11.1 999.9 88.0 68.0 0.00G 999.9 000000 724050 13743 20170921 77.5 24 64.8 24 1016.4 24 1014.1 24 10.0 24 4.6 24 8.9 999.9 88.0 66.9 0.00G 999.9 000000 724050 13743 20170922 76.9 24 66.6 24 1017.2 24 1014.9 24 10.0 24 5.0 24 8.9 999.9 88.0 66.9 0.00G 999.9 000000 724050 13743 20170923 76.4 24 62.0 24 1017.6 24 1015.2 24 10.0 24 5.1 24 11.1 19.0 89.1 64.9 0.00G 999.9 000000 724050 13743 20170924 78.1 24 63.3 24 1018.3 24 1016.0 24 10.0 24 4.2 24 8.9 999.9 91.9 64.9 0.00G 999.9 000000 724050 13743 20170925 79.9 24 68.1 24 1017.0 24 1014.6 24 10.0 24 3.2 24 8.9 999.9 91.9 66.9 0.00G 999.9 000000 724050 13743 20170926 76.7 24 68.0 24 1015.5 24 1013.3 24 10.0 24 7.5 24 11.1 999.9 91.0 69.1 0.00G 999.9 000000 724050 13743 20170927 80.9 24 70.1 24 1011.6 23 1009.5 24 10.0 24 8.5 24 14.0 21.0 91.0 69.1 0.00G 999.9 000000 724050 13743 20170928 77.8 24 59.9 24 1010.1 24 1007.8 24 10.0 24 11.4 24 17.1 24.1 91.0 72.0 0.00G 999.9 000000 724050 13743 20170929 67.5 24 47.5 24 1017.8 24 1015.5 24 10.0 24 6.5 24 11.1 999.9 81.0 57.9 0.00G 999.9 000000 724050 13743 20170930 64.5 24 47.9 24 1021.8 24 1019.5 24 10.0 24 11.2 24 19.0 26.0 75.0 57.9 0.00G 999.9 000000 724050 13743 20171001 60.4 24 44.5 24 1028.2 24 1025.9 24 10.0 24 8.0 24 15.0 999.9 71.1 51.1 0.00G 999.9 000000 724050 13743 20171002 62.8 24 51.0 24 1028.7 24 1026.4 24 10.0 24 2.5 24 9.9 999.9 73.9 51.1 0.00G 999.9 000000 724050 13743 20171003 65.0 24 52.6 24 1033.6 24 1031.3 24 10.0 24 4.7 24 8.0 999.9 75.0 52.0 0.00G 999.9 000000 724050 13743 20171004 65.8 24 56.9 24 1031.3 24 1029.0 24 10.0 24 5.7 24 12.0 999.9 77.0 55.9 0.00G 999.9 000000 724050 13743 20171005 68.1 24 59.0 24 1022.9 24 1020.7 24 10.0 24 6.8 24 11.1 999.9 80.1 55.9 0.00G 999.9 000000 724050 13743 20171006 72.7 24 63.1 24 1019.4 24 1017.1 24 10.0 24 5.0 24 8.9 999.9 82.9 57.9 0.00G 999.9 000000 724050 13743 20171007 74.3 24 65.3 24 1018.2 24 1015.9 24 10.0 24 7.3 24 13.0 999.9 84.9 64.9 0.00G 999.9 000000 724050 13743 20171008 77.8 24 73.8 24 1015.0 21 1012.7 24 9.8 24 9.4 24 14.0 999.9 84.9 64.9 0.00G 999.9 010000 724050 13743 20171009 78.3 24 74.5 24 1012.7 20 1010.3 24 9.3 24 10.7 24 19.0 26.0 86.0 73.9 0.52G 999.9 010000 724050 13743 20171010 78.9 24 71.6 24 1017.2 24 1014.9 24 10.0 24 2.4 24 7.0 999.9 88.0 72.0 0.10G 999.9 000000 724050 13743 20171011 74.5 24 71.0 24 1017.8 15 1015.2 24 8.9 24 6.5 24 11.1 999.9 88.0 70.0 0.00G 999.9 010010 724050 13743 20171012 66.0 24 61.7 24 1021.5 19 1018.9 24 8.6 24 11.4 24 18.1 24.1 75.0 62.1 0.11G 999.9 010000 724050 13743 20171013 62.7 24 54.4 24 1027.3 22 1025.0 24 9.3 24 8.5 24 14.0 999.9 68.0 60.1 0.05G 999.9 010000 724050 13743 20171014 65.0 24 61.9 24 1024.4 22 1022.2 24 9.3 24 5.3 24 8.0 999.9 71.1 60.1 0.00G 999.9 000000 724050 13743 20171015 68.4 24 64.9 24 1017.6 19 1016.2 24 9.0 24 7.8 24 12.0 19.0 79.0 62.1 0.00G 999.9 010000 724050 13743 20171016 65.9 24 53.2 24 1016.1 24 1013.8 24 9.7 24 11.3 24 19.0 26.0 79.0 59.0 0.10G 999.9 010000 724050 13743 20171017 55.0 24 35.4 24 1026.4 24 1024.0 24 10.0 24 7.2 24 12.0 999.9 73.0 46.0 0.00I 999.9 000000 724050 13743 20171018 56.4 24 42.5 24 1027.8 24 1025.4 24 9.8 24 4.7 24 8.9 999.9 71.1 45.0 0.00G 999.9 000000 724050 13743 20171019 59.3 24 48.6 24 1024.8 24 1022.4 24 10.0 24 5.8 24 8.9 999.9 72.0 45.0 0.00G 999.9 000000 724050 13743 20171020 65.0 24 50.6 24 1022.6 24 1020.3 24 10.0 24 5.3 24 12.0 999.9 77.0 48.9 0.00G 999.9 000000 724050 13743 20171021 63.9 24 49.0 24 1026.1 24 1023.8 24 10.0 24 2.8 24 6.0 999.9 78.1 52.0 0.00G 999.9 000000 724050 13743 20171022 64.5 24 52.3 24 1027.9 24 1025.6 24 10.0 24 3.1 24 11.1 999.9 78.1 52.0 0.00G 999.9 000000 724050 13743 20171023 67.0 24 60.7 24 1022.1 20 1020.2 24 8.5 24 7.2 24 15.9 21.0 78.1 54.0 0.00G 999.9 100000 724050 13743 20171024 68.7 24 61.3 24 1008.3 15 1006.2 24 9.7 24 11.8 24 22.9 28.9 78.1 60.1 0.13G 999.9 010000 724050 13743 20171025 60.2 24 43.4 24 1008.5 24 1006.3 24 10.0 24 5.6 24 13.0 20.0 73.0 55.0 0.10G 999.9 000000 724050 13743 20171026 54.6 24 37.2 24 1010.7 24 1008.3 24 10.0 24 10.8 24 15.9 21.0 64.0 50.0 0.00G 999.9 000000 724050 13743 20171027 54.4 24 39.5 24 1017.7 24 1015.4 24 10.0 24 5.4 24 9.9 19.0 71.1 43.0 0.00G 999.9 000000 724050 13743 20171028 61.3 24 49.0 24 1015.1 24 1012.8 24 10.0 24 8.8 24 13.0 19.0 73.0 43.0 0.00G 999.9 000000 724050 13743 20171029 64.0 24 60.7 24 1002.8 22 1000.5 24 9.8 24 8.3 24 19.0 28.0 68.0* 48.9* 0.13G 999.9 010000 724050 13743 20171030 50.6 24 37.5 24 1002.2 23 998.6 24 9.2 24 13.8 24 28.9 41.0 68.0 45.0 0.93G 999.9 010000 724050 13743 20171031 53.4 24 36.5 24 1017.4 24 1015.1 24 10.0 24 6.0 24 9.9 999.9 63.0 44.1 0.09G 999.9 000000 724050 13743 20171101 52.3 24 42.1 24 1023.8 24 1021.5 24 10.0 24 5.2 24 8.9 999.9 64.0 44.1 0.00G 999.9 010000 724050 13743 20171102 60.5 24 53.8 24 1023.3 24 1021.0 24 10.0 24 5.1 24 12.0 999.9 77.0 46.0 0.00G 999.9 000000 724050 13743 20171103 65.7 24 59.2 24 1019.3 24 1017.0 24 10.0 24 5.8 24 12.0 999.9 78.1 51.1 0.00G 999.9 000000 724050 13743 20171104 57.3 24 45.8 24 1024.7 24 1022.3 24 10.0 24 9.3 24 15.9 999.9 78.1 48.9 0.00G 999.9 010000 724050 13743 20171105 56.3 24 55.6 24 1022.0 16 1020.2 24 5.7 24 4.0 24 8.0 999.9 62.1 48.9 0.64G 999.9 010000 724050 13743 20171106 63.8 24 60.5 24 1015.6 21 1013.4 24 10.0 24 8.4 24 13.0 18.1 70.0 54.0 0.03G 999.9 000000 724050 13743 20171107 50.6 24 43.6 24 1021.1 16 1018.5 24 7.9 24 10.3 24 14.0 19.0 66.9* 42.8* 0.00G 999.9 010010 724050 13743 20171108 44.5 24 39.7 24 1023.3 22 1020.7 24 9.4 24 10.1 24 14.0 999.9 55.9 42.1 1.07G 999.9 010000 724050 13743 20171109 49.2 24 42.9 24 1021.7 21 1019.5 24 9.9 24 5.5 24 8.9 999.9 57.0 42.1 0.01G 999.9 010000 724050 13743 20171110 45.9 24 34.1 24 1023.6 22 1020.2 24 9.4 24 10.2 24 20.0 25.1 57.0 37.0 0.02G 999.9 010000 724050 13743 20171111 32.8 24 10.7 24 1035.5 24 1033.2 24 10.0 24 8.9 24 17.1 999.9 50.0 26.1 0.00G 999.9 000000 724050 13743 20171112 38.4 24 24.7 24 1032.0 24 1029.7 24 10.0 24 2.3 24 7.0 999.9 46.9 26.1 0.00G 999.9 000000 724050 13743 20171113 45.2 24 37.2 24 1027.4 19 1025.0 24 9.6 24 5.3 24 9.9 999.9 53.1 30.9 0.14G 999.9 010000 724050 13743 20171114 45.3 24 36.2 24 1027.4 24 1025.1 24 9.7 24 6.6 24 12.0 999.9 53.1 39.0 0.13G 999.9 000000 724050 13743 20171115 44.9 24 33.7 24 1024.2 24 1021.9 24 10.0 24 5.5 24 12.0 999.9 55.0 35.1 0.00G 999.9 000000 724050 13743 20171116 51.8 24 40.0 24 1015.1 22 1012.7 24 10.0 24 7.8 24 17.1 22.9 64.0 35.1 0.00G 999.9 010000 724050 13743 20171117 47.8 24 29.4 24 1021.1 24 1018.8 24 10.0 24 9.9 24 17.1 22.0 64.0 42.1 0.00G 999.9 000000 724050 13743 20171118 46.8 24 36.3 24 1013.0 24 1010.7 24 10.0 24 8.6 24 17.1 26.0 60.1 37.0 0.00G 999.9 010000 724050 13743 20171119 55.0 24 40.0 24 1001.9 24 999.6 24 10.0 24 15.4 24 25.1 42.0 64.0 37.0 0.07G 999.9 010000 724050 13743 20171120 45.2 24 23.0 24 1019.2 24 1016.8 24 10.0 24 9.8 24 15.9 22.9 64.0 37.9 0.00I 999.9 000000 724050 13743 20171121 48.4 24 32.4 24 1020.3 24 1017.9 24 10.0 24 8.6 24 15.9 22.9 62.1 37.9 0.00G 999.9 000000 724050 13743 20171122 53.2 24 39.9 24 1016.4 24 1013.8 24 10.0 24 11.0 24 22.0 29.9 62.1 39.9 0.01G 999.9 010000 724050 13743 20171123 39.1 24 23.0 24 1021.3 24 1019.0 24 10.0 24 6.1 24 11.1 999.9 59.0 32.0 0.00I 999.9 000000 724050 13743 20171124 40.8 24 30.1 24 1017.9 24 1015.6 24 10.0 24 4.5 24 8.9 999.9 53.1 32.0 0.00G 999.9 000000 724050 13743 20171125 46.7 24 35.1 24 1010.8 24 1008.5 24 10.0 24 5.1 24 9.9 999.9 60.1 32.0 0.00G 999.9 000000 724050 13743 20171126 52.0 24 32.4 24 1015.0 24 1012.6 24 10.0 24 6.6 24 15.0 25.1 60.1 37.9 0.00G 999.9 000000 724050 13743 20171127 48.3 24 30.5 24 1019.9 24 1017.6 24 10.0 24 5.9 24 12.0 999.9 62.1 37.9 0.00G 999.9 000000 724050 13743 20171128 48.2 24 35.6 24 1026.2 24 1023.8 24 10.0 24 4.8 24 9.9 999.9 62.1 37.9 0.00G 999.9 000000 724050 13743 20171129 52.8 24 39.2 24 1023.0 24 1020.7 24 10.0 24 7.1 24 14.0 999.9 70.0 39.0 0.00G 999.9 000000 724050 13743 20171130 49.9 24 36.0 24 1023.8 24 1021.5 24 10.0 24 4.6 24 9.9 999.9 70.0 42.1 0.00G 999.9 000000 724050 13743 20171201 51.8 24 40.6 24 1021.3 24 1018.6 24 10.0 24 7.3 24 15.9 999.9 60.1 42.1 0.01G 999.9 010000 724050 13743 20171202 44.2 24 36.0 24 1025.1 24 1022.8 24 10.0 24 2.4 24 7.0 999.9 57.0 36.0 0.00G 999.9 000000 724050 13743 20171203 47.4 24 38.4 24 1022.8 24 1020.5 24 9.5 24 4.0 24 8.9 999.9 57.0 36.0 0.01G 999.9 010000 724050 13743 20171204 45.1 24 35.7 24 1027.8 24 1025.5 24 9.4 24 3.1 24 8.9 999.9 57.0 36.0 0.02G 999.9 000000 724050 13743 20171205 50.9 24 46.9 24 1022.1 23 1020.1 24 8.2 24 6.7 24 15.0 999.9 60.1 36.0 0.00G 999.9 010000 724050 13743 20171206 49.5 24 31.2 24 1016.9 23 1014.2 24 9.9 24 10.8 24 24.1 32.1 60.1 42.1 0.07G 999.9 010000 724050 13743 20171207 44.9 24 22.6 24 1018.5 24 1016.2 24 10.0 24 7.0 24 11.1 18.1 57.0 39.9 0.00G 999.9 000000 724050 13743 20171208 40.7 24 22.1 24 1018.8 24 1016.5 24 10.0 24 4.7 24 9.9 999.9 51.1 37.9 0.00G 999.9 000000 724050 13743 20171209 35.4 24 30.6 24 1015.0 14 1011.3 24 6.7 24 6.1 24 12.0 999.9 42.1 32.0 0.00G 2.0 001000 724050 13743 20171210 35.0 24 26.2 24 1015.2 24 1012.6 24 9.2 24 5.9 24 8.0 15.9 41.0 30.0 0.18G 2.0 001000 724050 13743 20171211 40.1 24 28.0 24 1017.6 24 1015.3 24 10.0 24 5.5 24 9.9 999.9 48.9 30.0 0.00G 2.0 000000 724050 13743 20171212 43.2 24 30.6 24 1005.8 24 1003.5 24 10.0 24 9.8 24 20.0 28.0 48.9 35.1 0.00G 999.9 000000 724050 13743 20171213 28.3 24 4.1 24 1008.5 24 1006.3 24 9.7 24 14.8 24 22.9 34.0 48.9 23.0 0.00G 999.9 000000 724050 13743 20171214 37.7 24 17.1 24 1006.6 24 1004.3 24 9.9 24 11.4 24 21.0 28.0 44.1 23.0 0.00G 999.9 001000 724050 13743 20171215 30.8 24 15.4 24 1018.7 21 1015.8 24 9.0 24 6.1 24 12.0 999.9 44.1 28.0 0.00G 999.9 001000 724050 13743 20171216 34.2 24 22.8 24 1018.9 24 1016.7 24 9.8 24 8.0 24 14.0 21.0 48.0 25.0 0.01G 999.9 000000 724050 13743 20171217 39.4 24 28.8 24 1023.4 24 1021.1 24 10.0 24 2.7 24 6.0 999.9 50.0 25.0 0.00G 999.9 000000 724050 13743 20171218 46.1 24 35.1 24 1019.5 24 1017.2 24 10.0 24 3.4 24 8.0 999.9 55.9 30.0 0.00G 999.9 000000 724050 13743 20171219 49.3 24 38.0 24 1015.0 24 1012.7 24 10.0 24 4.7 24 11.1 999.9 62.1 39.0 0.00G 999.9 000000 724050 13743 20171220 50.2 24 31.9 24 1013.5 24 1011.2 24 10.0 24 8.0 24 13.0 17.1 62.1 39.9 0.00G 999.9 000000 724050 13743 20171221 39.4 24 22.2 24 1021.3 24 1019.0 24 10.0 24 3.7 24 8.0 999.9 55.9 32.0 0.00G 999.9 000000 724050 13743 20171222 42.9 24 31.2 24 1022.8 24 1020.5 24 10.0 24 4.7 24 9.9 999.9 57.0 32.0 0.00G 999.9 000000 724050 13743 20171223 53.9 24 47.2 24 1013.4 22 1010.6 24 10.0 24 8.1 24 26.0 36.9 64.9 36.0 0.01G 999.9 010000 724050 13743 20171224 44.6 24 35.5 24 1018.9 23 1016.8 24 9.9 24 9.7 24 21.0 999.9 64.9 39.0 0.17G 999.9 010000 724050 13743 20171225 37.6 24 21.3 24 1017.1 24 1014.2 24 10.0 24 10.7 24 22.0 35.9 46.0 30.9 0.00G 999.9 010000 724050 13743 20171226 32.7 24 7.6 24 1030.1 24 1027.8 24 10.0 24 7.2 24 13.0 18.1 41.0 30.0 0.00G 999.9 000000 724050 13743 20171227 31.4 24 13.5 24 1032.5 24 1030.2 24 10.0 24 7.9 24 15.0 22.9 39.0 25.0 0.00G 999.9 000000 724050 13743 20171228 20.3 24 -0.5 24 1037.1 24 1034.8 24 10.0 24 11.6 24 18.1 22.0 33.1 16.0 0.00G 999.9 000000 724050 13743 20171229 23.4 24 3.7 24 1029.3 24 1027.1 24 10.0 24 5.7 24 11.1 999.9 32.0 16.0 0.00G 999.9 000000 724050 13743 20171230 25.8 24 15.3 24 1020.7 22 1018.8 24 8.8 24 6.1 24 12.0 17.1 33.1 19.0 0.03G 999.9 001000 724050 13743 20171231 21.7 24 4.5 24 1026.0 24 1023.7 24 10.0 24 11.7 24 18.1 24.1 33.1 18.0 0.00H 999.9 001000 fluids-1.0.22/tests/gsod/2017/722324-03071.op0000644000175000017500000014327214302004506016655 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20170101 55.6 22 40.6 22 9999.9 0 912.6 18 10.0 22 6.8 22 14.0 21.0 70.5 45.7 0.01G 999.9 010000 722324 03071 20170102 54.9 24 40.4 24 9999.9 0 913.1 24 9.9 24 10.8 24 28.0 36.9 66.6 45.5 0.01G 999.9 010000 722324 03071 20170103 52.8 24 32.4 24 9999.9 0 918.7 24 10.0 24 6.6 24 11.1 17.1 61.0 40.6 0.00G 999.9 000000 722324 03071 20170104 41.2 24 26.3 24 9999.9 0 921.2 24 10.0 24 7.1 24 12.0 15.0 54.9 33.4 0.00G 999.9 000000 722324 03071 20170105 41.8 24 27.3 24 9999.9 0 913.7 24 10.0 24 8.3 24 18.1 22.0 52.2 31.1 0.00G 999.9 000000 722324 03071 20170106 22.5 24 9.3 24 9999.9 0 922.0 24 9.9 24 11.2 24 17.1 21.0 32.5 16.5 0.00G 999.9 000000 722324 03071 20170107 24.0 24 10.3 24 9999.9 0 933.7 24 10.0 24 3.1 24 8.9 999.9 41.0 14.9 0.00G 999.9 000000 722324 03071 20170108 37.4 24 11.4 24 9999.9 0 931.3 24 10.0 24 8.8 24 13.0 21.0 60.6 27.5 0.00G 999.9 000000 722324 03071 20170109 51.1 24 25.3 24 9999.9 0 923.8 24 10.0 24 8.4 24 14.0 18.1 79.7 36.0 0.00G 999.9 000000 722324 03071 20170110 60.5 24 33.8 24 9999.9 0 917.1 24 10.0 24 9.1 24 17.1 21.0 73.6 48.2 0.00G 999.9 000000 722324 03071 20170111 63.4 24 34.1 24 9999.9 0 914.6 24 10.0 24 9.0 24 22.9 29.9 82.8 50.2 0.00G 999.9 000000 722324 03071 20170112 61.5 24 40.8 24 9999.9 0 916.4 24 9.9 24 4.6 24 9.9 999.9 77.4 45.1 0.00G 999.9 000000 722324 03071 20170113 47.4 24 34.1 24 9999.9 0 923.8 24 9.0 24 10.3 24 14.0 19.0 68.7 38.5 0.00G 999.9 000000 722324 03071 20170114 36.3 24 34.2 24 9999.9 0 927.5 24 3.9 24 7.9 24 11.1 14.0 40.1 34.2 0.00G 999.9 110010 722324 03071 20170115 38.7 24 38.7 24 9999.9 0 919.7 24 3.8 24 7.9 24 15.0 28.0 47.7 35.1 0.01G 999.9 111010 722324 03071 20170116 47.8 24 39.6 24 9999.9 0 915.8 24 10.0 24 5.8 24 11.1 15.9 64.0 37.0 0.12G 999.9 000000 722324 03071 20170117 44.4 24 37.9 24 9999.9 0 920.9 24 10.0 24 5.3 24 12.0 17.1 61.0 37.4 0.00G 999.9 010010 722324 03071 20170118 47.4 24 43.4 24 9999.9 0 921.3 24 6.1 24 3.5 24 7.0 999.9 59.2 43.2 0.02G 999.9 010000 722324 03071 20170119 53.9 24 38.4 24 9999.9 0 912.7 24 10.0 24 11.7 24 24.1 31.1 68.0 44.8 0.00G 999.9 000000 722324 03071 20170120 57.0 24 30.1 24 9999.9 0 908.8 24 10.0 24 14.0 24 22.9 34.0 68.2 48.4 0.00G 999.9 000000 722324 03071 20170121 55.6 24 32.7 24 9999.9 0 904.7 24 9.9 24 10.5 24 29.9 42.9 64.4 46.9 0.00G 999.9 000000 722324 03071 20170122 52.7 24 25.0 24 9999.9 0 911.0 24 10.0 24 18.1 24 28.0 36.9 62.8 46.2 0.00G 999.9 000000 722324 03071 20170123 53.3 24 25.8 24 9999.9 0 916.6 24 10.0 24 5.1 24 20.0 25.1 75.7 39.6 0.00G 999.9 000000 722324 03071 20170124 62.3 24 31.3 24 9999.9 0 908.0 24 10.0 24 11.1 24 24.1 32.1 73.6 53.1 0.00G 999.9 000000 722324 03071 20170125 51.0 24 20.9 24 9999.9 0 915.0 24 10.0 24 9.1 24 15.9 21.0 63.9 41.0 0.00G 999.9 000000 722324 03071 20170126 41.6 24 17.4 24 9999.9 0 923.1 24 10.0 24 3.2 24 11.1 14.0 54.1* 29.3* 0.00G 999.9 000000 722324 03071 20170127 39.6 24 19.9 24 9999.9 0 925.7 24 9.9 24 7.3 24 15.9 21.0 52.0* 32.0* 0.00G 999.9 011000 722324 03071 20170128 38.8 24 26.0 24 9999.9 0 929.2 24 9.5 24 8.1 24 13.0 18.1 55.0 30.2 0.00G 999.9 010000 722324 03071 20170129 45.7 24 15.6 24 9999.9 0 929.1 24 10.0 24 4.0 24 11.1 14.0 66.0 32.0 0.00G 999.9 000000 722324 03071 20170130 51.0 24 17.5 24 9999.9 0 926.1 23 10.0 24 6.7 24 15.9 20.0 70.2 34.5 0.00G 999.9 000000 722324 03071 20170131 56.0 24 16.5 24 9999.9 0 918.8 23 10.0 24 6.1 24 13.0 17.1 74.3 39.2 0.00G 999.9 000000 722324 03071 20170201 59.3 24 19.0 24 9999.9 0 916.0 18 10.0 24 8.1 24 14.0 19.0 73.2 43.9 0.00G 999.9 000000 722324 03071 20170202 44.4 24 25.8 24 9999.9 0 924.7 24 10.0 24 7.9 24 15.0 17.1 67.5 32.0 0.00G 999.9 000000 722324 03071 20170203 38.8 24 24.6 24 9999.9 0 9999.9 0 9.9 24 7.4 24 17.1 18.1 49.3 29.1 0.00G 999.9 000000 722324 03071 20170204 43.8 24 37.2 24 9999.9 0 921.8 14 6.9 24 6.9 24 12.0 999.9 62.6 38.5 0.00G 999.9 100000 722324 03071 20170205 53.4 24 40.6 24 9999.9 0 918.3 24 7.2 24 3.9 24 8.9 14.0 79.0 35.4 0.00G 999.9 100000 722324 03071 20170206 61.3 24 41.4 24 9999.9 0 915.3 24 7.1 24 9.3 24 20.0 28.0 79.9 49.5 0.00G 999.9 100000 722324 03071 20170207 64.6 24 24.5 24 9999.9 0 913.4 24 10.0 24 10.8 24 17.1 22.9 77.7 48.9 0.00G 999.9 000000 722324 03071 20170208 65.6 24 33.6 24 9999.9 0 914.2 24 10.0 24 9.2 24 24.1 33.0 81.0 54.0 0.00G 999.9 000000 722324 03071 20170209 54.3 24 27.4 24 9999.9 0 924.8 24 10.0 24 8.6 24 20.0 28.0 74.7 38.3 0.00G 999.9 000000 722324 03071 20170210 64.8 24 32.9 24 9999.9 0 920.8 24 10.0 24 9.9 24 15.0 19.0 85.8 51.8 0.00G 999.9 000000 722324 03071 20170211 70.4 24 42.3 24 9999.9 0 917.5 24 10.0 24 7.5 24 12.0 18.1 91.6 55.0 0.00G 999.9 000000 722324 03071 20170212 64.4 24 34.9 24 9999.9 0 921.8 24 9.4 24 12.4 24 27.0 35.9 88.0 54.0 0.00G 999.9 000000 722324 03071 20170213 46.0 24 31.1 24 9999.9 0 924.6 24 8.7 24 10.9 24 20.0 26.0 58.8 38.3 0.01G 999.9 010010 722324 03071 20170214 42.8 24 37.8 24 9999.9 0 919.2 24 9.4 24 9.4 24 20.0 28.0 47.3 40.1 0.02G 999.9 011000 722324 03071 20170215 43.0 24 30.7 24 9999.9 0 924.2 24 10.0 24 7.5 24 17.1 27.0 56.3 35.6 0.00G 999.9 000000 722324 03071 20170216 48.8 24 30.5 24 9999.9 0 920.4 24 10.0 24 4.9 24 13.0 15.9 65.3 37.8 0.00G 999.9 000000 722324 03071 20170217 56.4 24 33.5 24 9999.9 0 911.8 24 10.0 24 10.1 24 15.0 22.0 75.0 43.5 0.00G 999.9 000000 722324 03071 20170218 62.9 24 30.7 24 9999.9 0 909.9 24 10.0 24 7.6 24 13.0 17.1 76.3 54.5 0.00G 999.9 000000 722324 03071 20170219 63.0 24 41.1 24 9999.9 0 911.2 24 9.9 24 7.6 24 18.1 27.0 73.2 55.8 0.00G 999.9 010000 722324 03071 20170220 56.8 24 36.1 24 9999.9 0 915.7 24 10.0 24 10.0 24 20.0 29.9 71.6 45.7 0.01G 999.9 000000 722324 03071 20170221 59.5 24 28.5 24 9999.9 0 920.7 24 10.0 24 6.8 24 13.0 19.0 81.9 41.9 0.00G 999.9 000000 722324 03071 20170222 66.8 24 34.2 24 9999.9 0 917.2 24 10.0 24 5.6 24 11.1 19.0 85.5 50.4 0.00G 999.9 000000 722324 03071 20170223 70.8 24 28.0 24 9999.9 0 908.5 24 10.0 24 9.9 24 27.0 34.0 85.3 55.6 0.00G 999.9 000000 722324 03071 20170224 60.5 24 19.2 24 9999.9 0 911.4 24 10.0 24 10.2 24 20.0 26.0 79.9 44.8 0.00G 999.9 000000 722324 03071 20170225 47.7 24 22.3 24 9999.9 0 919.6 24 10.0 24 8.0 24 14.0 18.1 65.8 32.5 0.00G 999.9 000000 722324 03071 20170226 56.7 24 26.4 24 9999.9 0 914.0 24 10.0 24 9.2 24 14.0 20.0 71.2 44.6 0.00G 999.9 000000 722324 03071 20170227 63.9 24 25.7 24 9999.9 0 914.4 23 10.0 24 7.3 24 21.0 28.0 79.7 46.0 0.00G 999.9 000000 722324 03071 20170228 66.6 24 31.3 24 9999.9 0 914.2 22 10.0 24 6.7 24 21.0 31.1 79.9 57.2 0.00G 999.9 000000 722324 03071 20170301 59.4 24 20.6 24 9999.9 0 923.5 18 10.0 24 9.5 24 15.0 24.1 77.5 45.7 0.00G 999.9 000000 722324 03071 20170302 50.9 24 17.3 24 9999.9 0 927.9 24 10.0 24 6.2 24 14.0 17.1 65.1 39.2 0.00G 999.9 000000 722324 03071 20170303 52.5 24 17.9 24 9999.9 0 930.5 24 10.0 24 9.0 24 17.1 21.0 63.5 41.2 0.00G 999.9 000000 722324 03071 20170304 53.5 24 30.8 24 9999.9 0 925.4 24 10.0 24 8.3 24 15.9 22.0 64.4 43.2 0.00G 999.9 000000 722324 03071 20170305 62.3 24 48.8 24 9999.9 0 919.7 24 10.0 24 11.2 24 18.1 22.9 81.9 54.9 0.00G 999.9 000000 722324 03071 20170306 67.7 24 47.6 24 9999.9 0 913.3 24 9.5 24 13.8 24 22.9 27.0 83.3 57.6 0.00G 999.9 000000 722324 03071 20170307 61.6 24 17.5 24 9999.9 0 920.6 24 8.7 24 8.5 24 20.0 25.1 80.6 47.1 0.00G 999.9 000000 722324 03071 20170308 59.7 24 28.9 24 9999.9 0 924.8 24 10.0 24 7.1 24 12.0 17.1 81.0 47.3 0.00G 999.9 000000 722324 03071 20170309 70.1 24 52.6 24 9999.9 0 920.8 24 9.8 24 9.2 24 19.0 27.0 83.8 62.1 0.00G 999.9 000000 722324 03071 20170310 66.5 24 53.8 24 9999.9 0 921.6 24 6.9 24 6.2 24 13.0 19.0 81.5 57.4 0.00G 999.9 100000 722324 03071 20170311 63.9 24 51.2 24 9999.9 0 920.1 24 10.0 24 7.5 24 25.1 29.9 80.4 52.7 0.00G 999.9 000000 722324 03071 20170312 48.2 24 42.1 24 9999.9 0 924.8 24 7.5 24 10.4 24 27.0 33.0 70.2 40.5 0.00G 999.9 010000 722324 03071 20170313 54.5 24 43.5 24 9999.9 0 920.9 24 9.7 24 7.3 24 20.0 28.9 66.0 44.8 0.00G 999.9 000000 722324 03071 20170314 60.3 24 36.8 24 9999.9 0 922.4 24 10.0 24 7.6 24 14.0 19.0 82.4 46.4 0.00G 999.9 000000 722324 03071 20170315 63.2 24 43.8 24 9999.9 0 922.3 24 10.0 24 7.9 24 17.1 20.0 81.5 45.7 0.00G 999.9 000000 722324 03071 20170316 67.3 24 51.2 24 9999.9 0 921.0 24 9.4 24 9.4 24 15.0 18.1 89.1 55.6 0.00G 999.9 000000 722324 03071 20170317 73.6 24 47.5 24 9999.9 0 918.6 24 9.9 24 8.7 24 15.0 21.0 91.2 58.3 0.00G 999.9 000000 722324 03071 20170318 71.0 24 47.6 24 9999.9 0 923.2 24 10.0 24 5.6 24 14.0 20.0 89.6 55.4 0.00G 999.9 000000 722324 03071 20170319 72.8 24 53.3 24 9999.9 0 923.1 24 9.9 24 8.9 24 12.0 17.1 90.1 60.8 0.00G 999.9 000000 722324 03071 20170320 77.0 24 45.5 24 9999.9 0 920.3 24 10.0 24 10.1 24 15.0 22.0 93.9 63.0 0.00G 999.9 000000 722324 03071 20170321 78.3 24 45.4 24 9999.9 0 918.0 24 10.0 24 8.0 24 17.1 22.0 95.5 63.5 0.00G 999.9 000000 722324 03071 20170322 74.7 24 48.9 24 9999.9 0 918.4 24 9.5 24 7.1 24 17.1 22.9 92.7 58.1 0.00G 999.9 000000 722324 03071 20170323 73.5 24 53.7 24 9999.9 0 914.3 24 8.8 24 18.1 24 29.9 41.0 87.8 64.6 0.00G 999.9 000000 722324 03071 20170324 66.1 24 32.2 24 9999.9 0 913.1 24 8.7 24 18.5 24 28.9 42.9 77.7 53.6 0.16G 999.9 010010 722324 03071 20170325 59.9 24 31.4 24 9999.9 0 920.0 24 9.4 24 7.9 24 18.1 24.1 77.9 45.7 0.00G 999.9 000000 722324 03071 20170326 69.0 24 30.1 24 9999.9 0 912.3 24 10.0 24 9.3 24 22.9 32.1 82.4 55.9 0.00G 999.9 000000 722324 03071 20170327 64.2 24 30.3 24 9999.9 0 914.7 24 10.0 24 6.4 24 14.0 21.0 80.6 46.4 0.00G 999.9 000000 722324 03071 20170328 73.4 24 44.1 24 9999.9 0 909.1 24 9.8 24 10.4 24 21.0 27.0 86.0 62.8 0.00G 999.9 010010 722324 03071 20170329 57.8 24 40.4 24 9999.9 0 910.5 24 9.8 24 12.2 24 22.9 31.1 65.3 50.0 0.01G 999.9 010010 722324 03071 20170330 57.9 24 35.7 24 9999.9 0 916.1 23 9.9 24 8.4 24 18.1 24.1 83.8 43.9 0.00G 999.9 000000 722324 03071 20170331 72.6 24 28.9 24 9999.9 0 908.2 22 10.0 24 10.0 24 22.0 29.9 90.1 57.4 0.00G 999.9 000000 722324 03071 20170401 70.3 24 45.2 24 9999.9 0 911.0 18 9.8 24 12.0 24 22.9 29.9 87.1 54.5 0.00G 999.9 000000 722324 03071 20170402 50.7 24 45.5 24 9999.9 0 915.1 24 7.4 24 12.1 24 21.0 28.0 63.0 45.7 0.12G 999.9 010010 722324 03071 20170403 61.7 24 40.2 24 9999.9 0 910.0 23 10.0 24 9.5 24 15.0 24.1 82.2 49.1 0.17G 999.9 000000 722324 03071 20170404 70.5 24 32.6 24 9999.9 0 908.5 23 10.0 24 12.9 24 28.0 35.9 81.5 61.7 0.00G 999.9 000000 722324 03071 20170405 53.5 24 31.6 24 9999.9 0 920.9 24 9.4 24 9.9 24 22.9 32.1 72.0 41.0 0.00G 999.9 000000 722324 03071 20170406 61.4 24 31.6 24 9999.9 0 923.3 24 9.9 24 6.7 24 15.9 20.0 76.6 49.1 0.00G 999.9 000000 722324 03071 20170407 65.1 24 39.4 24 9999.9 0 921.1 20 10.0 24 10.3 24 17.1 22.0 81.1 52.7 0.00G 999.9 000000 722324 03071 20170408 73.0 24 45.3 24 9999.9 0 915.6 24 10.0 24 11.1 24 15.9 24.1 93.2* 59.4* 0.00G 999.9 000000 722324 03071 20170409 77.0 24 46.3 24 9999.9 0 911.8 24 10.0 24 14.3 24 26.0 35.9 91.8 63.7 0.00G 999.9 000000 722324 03071 20170410 70.8 24 42.1 24 9999.9 0 916.2 24 8.0 24 8.3 24 17.1 22.9 86.9 57.9 0.00G 999.9 000000 722324 03071 20170411 67.1 24 39.8 24 9999.9 0 921.9 24 9.0 24 9.9 24 15.0 19.0 80.2 58.3 0.00G 999.9 000000 722324 03071 20170412 68.4 24 55.9 24 9999.9 0 921.2 24 10.0 24 10.7 24 20.0 25.1 77.5 62.8 0.00G 999.9 000000 722324 03071 20170413 64.5 24 57.4 24 9999.9 0 921.1 24 8.8 24 8.6 24 18.1 22.9 77.9 57.2 0.01G 999.9 010010 722324 03071 20170414 69.6 24 59.3 24 9999.9 0 917.8 24 10.0 24 12.4 24 19.0 24.1 79.7 63.5 0.03G 999.9 000000 722324 03071 20170415 71.9 24 59.9 24 9999.9 0 915.7 24 10.0 24 11.2 24 21.0 27.0 85.1 62.8 0.00G 999.9 000000 722324 03071 20170416 73.6 24 61.2 24 9999.9 0 916.0 24 9.8 24 8.9 24 19.0 24.1 87.1 65.3 0.00G 999.9 010010 722324 03071 20170417 69.8 24 53.0 24 9999.9 0 918.1 24 9.0 24 7.0 24 21.0 25.1 83.3 58.5 0.10G 999.9 010010 722324 03071 20170418 72.3 24 55.5 24 9999.9 0 917.8 24 9.3 24 7.2 24 12.0 17.1 87.8 61.3 0.00G 999.9 000000 722324 03071 20170419 75.6 24 53.0 24 9999.9 0 917.0 13 9.7 24 8.8 24 17.1 21.0 92.5 61.9 0.00G 999.9 000000 722324 03071 20170420 76.4 24 55.7 24 9999.9 0 916.4 9 10.0 24 7.9 24 14.0 18.1 91.6 65.5 0.00G 999.9 000000 722324 03071 20170421 77.9 24 52.8 24 9999.9 0 912.9 24 10.0 24 7.3 24 15.0 19.0 89.6 67.5 0.00G 999.9 000000 722324 03071 20170422 62.7 24 41.8 24 9999.9 0 918.7 24 9.4 24 13.0 24 25.1 31.1 88.7 50.0 0.00G 999.9 000000 722324 03071 20170423 57.8 24 35.9 24 9999.9 0 924.2 24 10.0 24 4.5 24 13.0 18.1 72.9 44.6 0.00G 999.9 000000 722324 03071 20170424 69.8 24 35.5 24 9999.9 0 913.5 24 10.0 24 10.0 24 18.1 22.9 94.3 55.4 0.00G 999.9 000000 722324 03071 20170425 78.8 24 40.3 24 9999.9 0 904.4 24 9.6 24 14.2 24 22.9 34.0 93.4 66.6 0.00G 999.9 000000 722324 03071 20170426 70.1 24 34.2 24 9999.9 0 907.1 24 9.7 24 11.7 24 26.0 33.0 89.6 58.8 0.00G 999.9 000000 722324 03071 20170427 70.3 24 32.3 24 9999.9 0 908.1 24 10.0 24 10.9 24 22.9 29.9 93.4 55.8 0.00G 999.9 000000 722324 03071 20170428 78.3 24 41.4 24 9999.9 0 904.4 24 9.9 24 9.1 24 15.9 24.1 92.3 61.9 0.00G 999.9 000000 722324 03071 20170429 64.5 24 43.8 24 9999.9 0 907.1 23 9.2 24 12.3 24 21.0 27.0 88.3 51.4 0.00G 999.9 010000 722324 03071 20170430 50.5 24 33.7 24 9999.9 0 916.9 22 10.0 24 13.0 24 21.0 27.0 73.0 38.8 0.00G 999.9 010000 722324 03071 20170501 68.1 24 25.5 24 9999.9 0 915.6 18 9.9 24 9.0 24 18.1 24.1 87.1 54.7 0.00G 999.9 000000 722324 03071 20170502 73.9 24 34.4 24 9999.9 0 914.8 24 8.8 24 7.5 24 15.9 22.9 93.7 54.9 0.00G 999.9 000000 722324 03071 20170503 74.2 24 43.5 24 9999.9 0 913.8 24 9.3 24 12.0 24 20.0 27.0 90.3 59.5 0.00G 999.9 000000 722324 03071 20170504 63.8 24 34.3 24 9999.9 0 923.3 24 9.5 24 8.7 24 22.0 29.9 78.1 48.2 0.00G 999.9 000000 722324 03071 20170505 68.1 24 29.3 24 9999.9 0 921.5 24 10.0 24 3.3 24 8.0 999.9 85.1 50.9 0.00G 999.9 000000 722324 03071 20170506 75.5 24 33.3 24 9999.9 0 916.4 24 10.0 24 7.9 24 17.1 22.0 93.4 58.1 0.00G 999.9 000000 722324 03071 20170507 78.2 24 42.3 24 9999.9 0 914.0 24 10.0 24 13.7 24 22.0 28.9 90.0 65.1 0.00G 999.9 000000 722324 03071 20170508 74.5 24 51.5 24 9999.9 0 913.4 24 10.0 24 14.4 24 22.0 29.9 87.1 64.8 0.00G 999.9 000000 722324 03071 20170509 73.3 24 58.9 24 9999.9 0 914.3 24 10.0 24 14.3 24 20.0 28.0 85.5 68.2 0.00G 999.9 000000 722324 03071 20170510 76.6 24 51.8 24 9999.9 0 912.6 24 9.9 24 13.9 24 22.0 28.0 87.4 65.3 0.01G 999.9 010000 722324 03071 20170511 72.5 24 32.6 24 9999.9 0 916.4 24 9.9 24 8.7 24 15.9 21.0 85.8 54.9 0.00I 999.9 000000 722324 03071 20170512 69.3 24 41.7 24 9999.9 0 920.2 24 10.0 24 8.4 24 14.0 20.0 83.1 54.0 0.00G 999.9 000000 722324 03071 20170513 72.8 24 36.6 24 9999.9 0 917.2 24 10.0 24 5.9 24 12.0 18.1 90.7 56.3 0.00G 999.9 000000 722324 03071 20170514 80.5 24 43.1 24 9999.9 0 913.6 24 10.0 24 7.4 24 15.9 21.0 98.8 61.5 0.00G 999.9 000000 722324 03071 20170515 81.9 24 55.2 24 9999.9 0 912.7 24 9.9 24 12.2 24 17.1 31.1 94.1 69.4 0.02G 999.9 010010 722324 03071 20170516 81.6 24 58.4 23 9999.9 0 909.2 24 10.0 24 15.3 24 24.1 33.0 97.9 73.0 0.00G 999.9 000000 722324 03071 20170517 77.0 24 25.9 24 9999.9 0 909.9 24 8.0 24 12.1 24 22.0 29.9 96.8 64.0 0.02G 999.9 010000 722324 03071 20170518 80.4 24 35.9 24 9999.9 0 909.1 24 9.1 24 10.4 24 20.0 26.0 93.4 67.1 0.00G 999.9 000000 722324 03071 20170519 78.0 24 37.5 24 9999.9 0 909.5 24 9.2 24 5.4 24 18.1 21.0 92.5 62.1 0.07G 999.9 010010 722324 03071 20170520 71.5 24 40.1 24 9999.9 0 916.0 24 9.9 24 9.3 24 17.1 27.0 88.9 56.7 0.08G 999.9 000000 722324 03071 20170521 68.9 24 50.5 24 9999.9 0 920.6 24 10.0 24 10.3 24 15.9 25.1 78.8 63.5 0.00G 999.9 010000 722324 03071 20170522 64.2 24 56.1 24 9999.9 0 919.7 24 9.4 24 5.5 24 8.9 999.9 77.9 58.1 0.00G 999.9 010000 722324 03071 20170523 65.2 24 51.7 24 9999.9 0 917.9 24 9.9 24 9.0 24 15.0 39.0 75.7 58.3 0.08G 999.9 010010 722324 03071 20170524 66.4 24 38.5 24 9999.9 0 916.7 24 9.8 24 6.0 24 13.0 22.0 88.2 52.7 0.00G 999.9 000000 722324 03071 20170525 81.8 24 36.9 24 9999.9 0 908.2 24 10.0 24 11.5 24 20.0 28.0 101.5 64.8 0.00G 999.9 000000 722324 03071 20170526 87.7 24 40.4 24 9999.9 0 911.7 24 10.0 24 9.7 24 19.0 27.0 99.5 73.6 0.00G 999.9 000000 722324 03071 20170527 87.6 24 40.4 24 9999.9 0 913.9 24 10.0 24 9.7 24 15.9 22.9 101.3 73.4 0.00G 999.9 000000 722324 03071 20170528 80.1 24 44.2 24 9999.9 0 917.1 24 8.6 24 11.0 24 19.0 26.0 99.3 64.4 0.00G 999.9 000000 722324 03071 20170529 74.6 24 47.3 24 9999.9 0 920.7 24 9.5 24 6.2 24 14.0 19.0 88.2 58.6 0.00G 999.9 000000 722324 03071 20170530 77.7 24 48.7 24 9999.9 0 920.7 23 10.0 24 7.7 24 13.0 18.1 89.2 66.4 0.00G 999.9 000000 722324 03071 20170531 73.2 24 55.5 24 9999.9 0 920.0 22 8.8 24 8.3 24 17.1 22.9 85.8 64.4 0.00G 999.9 010010 722324 03071 20170601 71.0 24 61.5 24 9999.9 0 917.9 18 9.2 24 5.4 24 17.1 999.9 84.9 64.4 0.01G 999.9 010010 722324 03071 20170602 76.5 24 60.0 24 9999.9 0 915.8 24 9.9 24 5.5 24 15.9 24.1 90.7 67.1 0.14G 999.9 010010 722324 03071 20170603 70.6 24 60.9 24 9999.9 0 916.8 24 9.7 24 6.7 24 18.1 24.1 83.3 63.5 0.04G 999.9 010010 722324 03071 20170604 73.8 24 59.3 24 9999.9 0 916.7 24 9.9 24 6.5 24 19.0 24.1 88.7 63.5 0.34G 999.9 010010 722324 03071 20170605 77.8 24 57.7 24 9999.9 0 914.7 24 10.0 24 4.5 24 12.0 22.9 90.9 65.7 0.00G 999.9 000000 722324 03071 20170606 79.9 24 58.6 24 9999.9 0 917.5 24 10.0 24 5.8 24 11.1 20.0 91.2 67.6 0.00G 999.9 000000 722324 03071 20170607 82.0 24 53.0 24 9999.9 0 919.4 24 10.0 24 3.2 24 8.0 999.9 91.9 70.9 0.00G 999.9 000000 722324 03071 20170608 82.6 24 54.6 24 9999.9 0 917.9 24 9.9 24 7.3 24 12.0 19.0 92.5 71.2 0.00G 999.9 000000 722324 03071 20170609 83.5 24 53.8 24 9999.9 0 914.1 24 9.7 24 6.3 24 18.1 26.0 97.9 70.2 0.00G 999.9 000000 722324 03071 20170610 86.4 24 56.9 24 9999.9 0 911.8 24 10.0 24 11.4 24 17.1 22.9 100.0 74.3 0.00G 999.9 000000 722324 03071 20170611 85.7 24 60.1 24 9999.9 0 912.3 24 9.8 24 12.3 24 20.0 28.0 100.4 73.6 0.00G 999.9 000000 722324 03071 20170612 86.1 24 61.9 24 9999.9 0 913.5 24 10.0 24 11.2 24 25.1 44.1 103.3* 73.9* 0.00G 999.9 010010 722324 03071 20170613 84.0 24 63.3 24 9999.9 0 912.9 24 10.0 24 12.0 24 19.0 24.1 100.6 72.3 0.14G 999.9 000000 722324 03071 20170614 86.0 24 62.6 24 9999.9 0 913.7 24 10.0 24 10.1 24 18.1 26.0 101.5 74.7 0.03G 999.9 010010 722324 03071 20170615 84.9 24 65.5 24 9999.9 0 915.2 24 9.4 24 10.2 24 24.1 49.9 103.6 72.7 0.01G 999.9 010010 722324 03071 20170616 89.9 24 56.5 24 9999.9 0 913.4 24 10.0 24 11.8 24 20.0 26.0 107.4 76.5 0.00G 999.9 010000 722324 03071 20170617 93.5 24 47.2 24 9999.9 0 910.0 24 10.0 24 8.9 24 15.9 20.0 109.9 79.0 0.00G 999.9 000000 722324 03071 20170618 91.0 24 52.0 24 9999.9 0 910.4 24 9.9 24 10.3 24 17.1 24.1 108.0 77.9 0.00G 999.9 000000 722324 03071 20170619 81.6 24 66.4 24 9999.9 0 916.9 24 9.8 24 8.0 24 14.0 21.0 93.2 73.8 0.00G 999.9 000000 722324 03071 20170620 86.0 24 62.5 24 9999.9 0 919.7 24 10.0 24 5.8 24 14.0 18.1 99.1 75.0 0.00G 999.9 000000 722324 03071 20170621 88.3 24 57.7 24 9999.9 0 916.7 24 10.0 24 6.9 24 11.1 18.1 100.4 76.1 0.00G 999.9 000000 722324 03071 20170622 88.3 24 54.0 24 9999.9 0 912.1 24 10.0 24 5.6 24 9.9 22.0 102.6 73.8 0.00G 999.9 010010 722324 03071 20170623 93.3 24 52.2 24 9999.9 0 911.1 24 9.7 24 7.7 24 39.0 63.9 107.4* 69.3* 0.05G 999.9 010010 722324 03071 20170624 76.6 24 59.5 24 9999.9 0 920.3 24 10.0 24 12.1 24 28.9 40.0 89.8 67.6 0.78G 999.9 010010 722324 03071 20170625 80.5 24 62.2 24 9999.9 0 923.7 24 9.9 24 9.0 24 15.9 20.0 91.8 71.1 0.00G 999.9 000000 722324 03071 20170626 76.1 24 63.0 24 9999.9 0 922.9 24 9.3 24 8.1 24 24.1 35.9 89.8 62.8 0.12G 999.9 010010 722324 03071 20170627 76.7 24 63.7 24 9999.9 0 920.1 24 10.0 24 5.5 24 11.1 15.9 91.2 67.1 0.15G 999.9 000000 722324 03071 20170628 82.8 24 60.7 24 9999.9 0 915.3 24 10.0 24 9.9 24 15.0 19.0 96.3 71.2 0.00G 999.9 000000 722324 03071 20170629 87.4 24 56.4 24 9999.9 0 912.9 23 10.0 24 9.3 24 15.9 22.0 104.2 75.2 0.00G 999.9 000000 722324 03071 20170630 91.6 24 55.8 24 9999.9 0 913.3 22 10.0 24 9.3 24 15.9 25.1 104.9 79.9 0.00G 999.9 000000 722324 03071 20170701 84.5 24 59.1 24 9999.9 0 919.7 18 9.6 24 12.0 24 21.0 31.1 97.0 68.0 0.00G 999.9 010000 722324 03071 20170702 84.4 24 60.8 24 9999.9 0 920.9 24 10.0 24 9.6 24 21.0 34.0 96.3 69.8 0.00G 999.9 000000 722324 03071 20170703 87.9 24 58.5 24 9999.9 0 918.4 24 10.0 24 9.6 24 20.0 31.1 100.4 73.4 0.00G 999.9 010010 722324 03071 20170704 82.7 24 60.8 24 9999.9 0 918.0 24 8.8 24 7.8 24 17.1 29.9 99.9 71.1 0.16G 999.9 010010 722324 03071 20170705 79.8 24 58.6 24 9999.9 0 920.2 24 9.3 24 10.2 24 27.0 33.0 91.8 70.0 0.00G 999.9 010010 722324 03071 20170706 78.1 24 62.5 24 9999.9 0 922.8 24 10.0 24 5.9 24 15.0 18.1 90.7 68.0 0.00G 999.9 000000 722324 03071 20170707 81.6 24 61.0 24 9999.9 0 923.1 24 10.0 24 3.7 24 13.0 15.9 94.5 70.3 0.00G 999.9 010010 722324 03071 20170708 83.0 24 61.1 24 9999.9 0 922.2 24 10.0 24 4.9 24 11.1 20.0 95.0 72.5 0.00G 999.9 000000 722324 03071 20170709 85.9 24 55.9 24 9999.9 0 920.9 24 10.0 24 5.4 24 11.1 18.1 96.8 72.5 0.00G 999.9 000000 722324 03071 20170710 84.3 24 55.1 24 9999.9 0 918.5 24 9.9 24 10.6 24 20.0 25.1 97.9 74.7 0.00G 999.9 000000 722324 03071 20170711 85.6 24 54.0 24 9999.9 0 917.4 24 10.0 24 11.3 24 19.0 26.0 95.5 74.7 0.00G 999.9 000000 722324 03071 20170712 85.0 24 57.0 24 9999.9 0 917.6 24 10.0 24 11.8 24 20.0 26.0 96.1 74.3 0.00G 999.9 000000 722324 03071 20170713 83.9 24 59.3 24 9999.9 0 920.4 24 10.0 24 11.5 24 17.1 24.1 94.1 75.2 0.00G 999.9 000000 722324 03071 20170714 80.2 24 60.6 24 9999.9 0 923.2 24 10.0 24 7.5 24 17.1 22.9 90.9 74.8 0.00G 999.9 000000 722324 03071 20170715 84.1 24 58.1 24 9999.9 0 923.0 24 10.0 24 3.9 24 12.0 18.1 97.7 74.7 0.00G 999.9 010000 722324 03071 20170716 82.7 24 59.3 24 9999.9 0 920.4 24 9.2 24 4.7 24 20.0 26.0 97.9 71.1 0.00G 999.9 000000 722324 03071 20170717 84.3 24 57.9 24 9999.9 0 918.3 24 10.0 24 3.4 24 13.0 15.9 98.2 72.1 0.00G 999.9 010000 722324 03071 20170718 84.5 24 62.2 24 9999.9 0 919.0 24 10.0 24 7.9 24 14.0 22.0 96.6 72.5 0.00G 999.9 000000 722324 03071 20170719 86.2 24 61.6 24 9999.9 0 921.7 24 10.0 24 9.4 24 17.1 24.1 96.1 76.6 0.00G 999.9 000000 722324 03071 20170720 86.3 24 58.5 24 9999.9 0 921.9 24 10.0 24 7.8 24 13.0 19.0 98.4 74.8 0.00G 999.9 000000 722324 03071 20170721 88.1 24 55.6 24 9999.9 0 919.2 24 10.0 24 8.8 24 18.1 22.9 99.3 76.8 0.00G 999.9 000000 722324 03071 20170722 86.5 24 58.6 24 9999.9 0 917.6 24 9.7 24 7.2 24 22.0 44.1 98.2 67.8 0.00G 999.9 010010 722324 03071 20170723 77.6 24 64.4 24 9999.9 0 918.0 24 10.0 24 5.3 24 14.0 18.1 89.2 71.2 0.03G 999.9 010010 722324 03071 20170724 83.9 24 63.4 24 9999.9 0 918.1 24 10.0 24 5.9 24 13.0 18.1 97.2 76.3 0.01G 999.9 000000 722324 03071 20170725 84.7 24 62.6 24 9999.9 0 919.4 24 10.0 24 9.5 24 18.1 25.1 98.1 75.2 0.00G 999.9 000000 722324 03071 20170726 86.7 24 60.7 24 9999.9 0 920.0 24 10.0 24 9.4 24 14.0 20.0 97.7 75.7 0.00G 999.9 000000 722324 03071 20170727 86.8 24 56.4 24 9999.9 0 919.1 24 10.0 24 8.6 24 14.0 20.0 98.2 75.4 0.00G 999.9 000000 722324 03071 20170728 87.4 24 56.0 24 9999.9 0 917.8 24 10.0 24 6.9 24 12.0 17.1 99.1 76.5 0.00G 999.9 000000 722324 03071 20170729 89.3 24 53.3 24 9999.9 0 917.3 24 10.0 24 6.9 24 11.1 18.1 101.1 76.5 0.00G 999.9 000000 722324 03071 20170730 89.1 24 55.9 24 9999.9 0 919.1 23 9.7 24 5.3 24 24.1 32.1 101.5 74.3 0.00G 999.9 000000 722324 03071 20170731 82.6 24 65.2 24 9999.9 0 921.1 22 9.8 24 9.7 24 17.1 24.1 92.3 74.7 0.00G 999.9 010010 722324 03071 20170801 78.3 24 66.1 24 9999.9 0 921.4 18 9.0 24 5.9 24 15.0 19.0 91.2 70.2 0.12G 999.9 010010 722324 03071 20170802 75.1 24 67.1 24 9999.9 0 922.1 24 7.5 24 5.7 24 12.0 15.9 85.8 70.5 0.01G 999.9 010010 722324 03071 20170803 78.0 24 62.1 24 9999.9 0 922.1 24 9.6 24 3.3 24 8.9 999.9 90.0 69.3 0.05G 999.9 010000 722324 03071 20170804 81.5 24 58.9 24 9999.9 0 921.6 24 10.0 24 4.1 24 8.0 999.9 92.7 69.6 0.00G 999.9 000000 722324 03071 20170805 85.3 24 59.8 24 9999.9 0 918.2 24 10.0 24 7.1 24 14.0 19.0 95.7 74.8 0.00G 999.9 000000 722324 03071 20170806 86.7 24 62.4 24 9999.9 0 914.3 24 10.0 24 6.5 24 14.0 18.1 98.6 76.1 0.00G 999.9 000000 722324 03071 20170807 80.3 24 66.7 24 9999.9 0 917.0 24 9.8 24 5.7 24 18.1 28.0 96.8 72.7 0.00G 999.9 010010 722324 03071 20170808 78.3 24 66.0 24 9999.9 0 921.4 24 9.9 24 8.8 24 13.0 17.1 87.4 72.5 0.01G 999.9 000000 722324 03071 20170809 80.0 24 63.2 24 9999.9 0 921.3 24 10.0 24 5.3 24 11.1 15.0 93.0 70.7 0.00G 999.9 000000 722324 03071 20170810 85.1 24 62.3 24 9999.9 0 921.0 24 10.0 24 6.9 24 13.0 17.1 96.6 73.9 0.00G 999.9 000000 722324 03071 20170811 85.5 24 61.7 24 9999.9 0 920.8 24 9.8 24 8.0 24 14.0 20.0 96.4 74.7 0.00G 999.9 000000 722324 03071 20170812 82.7 24 63.3 24 9999.9 0 919.0 24 9.1 24 6.7 24 14.0 21.0 94.1 71.6 0.00G 999.9 010010 722324 03071 20170813 81.7 24 65.8 24 9999.9 0 916.6 24 9.9 24 4.7 24 22.9 35.0 97.7 71.2 0.23G 999.9 010010 722324 03071 20170814 79.8 24 65.7 24 9999.9 0 915.1 24 9.5 24 6.8 24 12.0 15.0 95.4 69.3 0.05G 999.9 010010 722324 03071 20170815 81.2 24 66.1 24 9999.9 0 913.8 24 10.0 24 7.2 24 15.0 20.0 92.8* 77.0* 0.01G 999.9 010010 722324 03071 20170816 80.6 24 66.1 24 9999.9 0 915.0 24 9.9 24 6.3 24 11.1 14.0 98.6 71.1 0.00G 999.9 000000 722324 03071 20170817 84.3 24 64.4 24 9999.9 0 918.3 24 10.0 24 7.5 24 15.9 22.0 97.7 74.1 0.00G 999.9 000000 722324 03071 20170818 81.7 24 63.7 24 9999.9 0 919.8 24 10.0 24 6.9 24 15.0 21.0 96.1 72.0 0.00G 999.9 000000 722324 03071 20170819 83.0 24 62.0 24 9999.9 0 919.4 24 9.7 24 4.9 24 15.9 20.0 97.7 71.2 0.00G 999.9 000000 722324 03071 20170820 86.2 24 59.2 24 9999.9 0 918.3 24 10.0 24 7.4 24 14.0 19.0 97.3 75.7 0.00G 999.9 000000 722324 03071 20170821 83.1 24 62.3 24 9999.9 0 920.2 24 10.0 24 6.2 24 15.9 21.0 93.0 73.8 0.00G 999.9 000000 722324 03071 20170822 85.1 24 60.1 24 9999.9 0 920.8 24 10.0 24 6.5 24 12.0 17.1 97.9 73.9 0.00G 999.9 000000 722324 03071 20170823 77.6 24 65.0 24 9999.9 0 921.0 24 8.9 24 5.9 24 28.0 36.9 94.3 69.3 0.64G 999.9 010010 722324 03071 20170824 79.2 24 65.6 24 9999.9 0 918.0 24 8.5 24 5.2 24 9.9 15.9 90.0 70.9 0.01G 999.9 000000 722324 03071 20170825 79.4 24 65.3 24 9999.9 0 916.9 24 9.0 24 5.5 24 18.1 24.1 89.4 71.4 0.18G 999.9 010000 722324 03071 20170826 77.0 24 65.5 24 9999.9 0 920.1 24 9.3 24 6.6 24 13.0 18.1 87.4 71.8 0.02G 999.9 000000 722324 03071 20170827 76.8 24 61.5 24 9999.9 0 921.0 24 9.3 24 6.5 24 13.0 18.1 88.9 65.8 0.00G 999.9 000000 722324 03071 20170828 78.0 24 60.4 24 9999.9 0 920.3 24 9.3 24 5.2 24 11.1 15.0 88.9 67.3 0.00G 999.9 000000 722324 03071 20170829 75.8 24 55.2 24 9999.9 0 920.8 24 9.8 24 5.9 24 15.9 21.0 88.3 61.0 0.00G 999.9 000000 722324 03071 20170830 75.1 24 49.7 24 9999.9 0 920.3 23 10.0 24 4.2 24 12.0 15.9 88.7 60.3 0.00G 999.9 000000 722324 03071 20170831 75.9 24 50.5 24 9999.9 0 920.8 22 10.0 24 2.6 24 8.9 999.9 88.9 61.9 0.00G 999.9 000000 722324 03071 20170901 78.2 24 51.1 24 9999.9 0 920.8 18 10.0 24 3.9 24 8.9 999.9 92.8 62.6 0.00G 999.9 000000 722324 03071 20170902 82.1 24 50.4 24 9999.9 0 920.4 24 9.9 24 4.2 24 8.9 999.9 97.0 66.4 0.00G 999.9 000000 722324 03071 20170903 80.4 24 55.8 24 9999.9 0 921.7 24 9.6 24 4.0 24 11.1 18.1 91.9 64.9 0.00G 999.9 000000 722324 03071 20170904 81.9 24 56.0 24 9999.9 0 920.8 24 10.0 24 6.8 24 12.0 17.1 94.1 71.6 0.00G 999.9 000000 722324 03071 20170905 81.0 24 53.9 24 9999.9 0 920.8 24 9.4 24 6.5 24 15.0 20.0 90.9 67.3 0.00G 999.9 000000 722324 03071 20170906 74.0 24 44.2 24 9999.9 0 924.2 24 9.9 24 7.0 24 15.0 19.0 85.3 61.3 0.00G 999.9 000000 722324 03071 20170907 75.4 24 43.1 24 9999.9 0 922.3 23 9.8 24 7.9 24 15.0 21.0 88.5 63.7 0.00G 999.9 000000 722324 03071 20170908 75.8 24 41.3 24 9999.9 0 921.3 24 9.5 24 9.4 24 13.0 19.0 88.5 63.0 0.00G 999.9 000000 722324 03071 20170909 74.5 24 47.9 24 9999.9 0 922.5 24 9.9 24 6.8 24 12.0 15.0 88.0 58.3 0.00G 999.9 000000 722324 03071 20170910 74.8 24 47.7 24 9999.9 0 923.5 24 9.8 24 5.6 24 8.9 999.9 87.4 59.0 0.00G 999.9 000000 722324 03071 20170911 75.6 24 47.1 24 9999.9 0 923.1 24 10.0 24 3.5 24 7.0 999.9 89.6 60.8 0.00G 999.9 000000 722324 03071 20170912 78.7 24 47.0 24 9999.9 0 919.1 24 9.6 24 1.1 24 6.0 999.9 96.8 63.5 0.00G 999.9 000000 722324 03071 20170913 83.3 24 46.7 24 9999.9 0 913.7 24 8.2 24 5.0 24 8.0 999.9 99.9 69.8 0.00G 999.9 000000 722324 03071 20170914 86.1 24 44.2 24 9999.9 0 911.7 24 8.0 24 4.7 24 9.9 15.9 103.1 70.7 0.00G 999.9 000000 722324 03071 20170915 86.5 24 47.9 24 9999.9 0 913.2 24 8.2 24 9.0 24 18.1 25.1 100.4 74.1 0.00G 999.9 010010 722324 03071 20170916 84.7 24 53.1 24 9999.9 0 916.0 24 10.0 24 8.1 24 19.0 22.0 94.3 77.0 0.01G 999.9 000000 722324 03071 20170917 81.9 24 54.3 24 9999.9 0 918.2 24 9.1 24 7.3 24 15.0 22.0 95.9 70.9 0.00G 999.9 000000 722324 03071 20170918 83.3 24 55.6 24 9999.9 0 917.9 24 10.0 24 9.0 24 15.0 21.0 97.9 72.3 0.00G 999.9 000000 722324 03071 20170919 86.8 24 57.2 24 9999.9 0 915.1 24 10.0 24 10.2 24 15.0 18.1 99.0 78.6 0.00G 999.9 000000 722324 03071 20170920 86.7 24 54.4 24 9999.9 0 913.6 24 10.0 24 9.6 24 19.0 32.1 100.6 73.8 0.00G 999.9 000000 722324 03071 20170921 86.3 24 59.0 24 9999.9 0 914.7 24 9.8 24 9.4 24 15.9 22.0 97.7 76.3 0.00G 999.9 010010 722324 03071 20170922 82.0 24 63.5 24 9999.9 0 914.6 24 10.0 24 12.2 24 18.1 24.1 91.4 72.1 0.29G 999.9 000000 722324 03071 20170923 79.4 24 62.7 24 9999.9 0 913.9 24 10.0 24 14.3 24 21.0 27.0 87.3 73.6 0.00G 999.9 000000 722324 03071 20170924 76.1 24 64.0 24 9999.9 0 913.1 24 9.2 24 11.9 24 18.1 25.1 84.2 66.2 0.02G 999.9 010010 722324 03071 20170925 74.3 24 65.3 24 9999.9 0 913.5 24 10.0 24 10.2 24 17.1 22.0 82.4 70.0 0.00I 999.9 000000 722324 03071 20170926 68.5 24 64.2 24 9999.9 0 915.6 24 7.7 24 7.5 24 20.0 28.0 79.0 63.9 0.04G 999.9 010010 722324 03071 20170927 62.7 24 62.5 24 9999.9 0 920.0 24 8.1 24 11.0 24 14.0 19.0 64.8 59.9 0.02G 999.9 010000 722324 03071 20170928 62.9 24 62.9 24 9999.9 0 922.0 24 5.9 24 8.1 24 12.0 15.0 66.4 61.7 0.01G 999.9 010000 722324 03071 20170929 62.5 24 62.4 24 9999.9 0 923.6 23 2.6 24 8.2 24 11.1 14.0 65.8 60.4 0.25G 999.9 110000 722324 03071 20170930 63.1 24 62.8 24 9999.9 0 924.2 22 3.8 24 5.8 24 12.0 999.9 65.3 61.7 0.00G 999.9 010000 722324 03071 20171001 67.7 24 64.6 24 9999.9 0 917.8 18 5.6 24 6.8 24 15.9 21.0 81.1 62.1 0.01G 999.9 110000 722324 03071 20171002 74.4 24 64.8 24 9999.9 0 914.1 24 9.6 24 11.4 24 18.1 24.1 87.1 66.6 0.00G 999.9 000000 722324 03071 20171003 75.2 24 66.2 24 9999.9 0 917.6 24 10.0 24 11.0 24 17.1 21.0 81.7 70.7 0.00G 999.9 000000 722324 03071 20171004 75.2 24 67.1 24 9999.9 0 923.8 24 9.8 24 7.5 24 13.0 19.0 82.6 71.2 0.00G 999.9 010000 722324 03071 20171005 76.8 24 65.9 24 9999.9 0 922.4 24 10.0 24 9.0 24 14.0 18.1 86.4 71.6 0.00G 999.9 000000 722324 03071 20171006 77.3 24 64.5 24 9999.9 0 917.4 24 10.0 24 7.9 24 13.0 18.1 91.4 68.9 0.00G 999.9 000000 722324 03071 20171007 74.0 24 52.3 24 9999.9 0 914.1 24 10.0 24 7.3 24 15.0 19.0 88.5 59.0 0.00G 999.9 000000 722324 03071 20171008 71.7 24 43.6 24 9999.9 0 911.6 24 10.0 24 5.1 24 14.0 20.0 91.0 57.9 0.00G 999.9 000000 722324 03071 20171009 74.8 24 50.0 24 9999.9 0 910.9 24 9.5 24 8.3 24 15.9 21.0 86.7 66.2 0.00G 999.9 000000 722324 03071 20171010 56.5 24 38.6 24 9999.9 0 925.1 24 10.0 24 11.2 24 20.0 33.0 73.2 48.7 0.00G 999.9 000000 722324 03071 20171011 62.3 24 40.1 24 9999.9 0 924.9 24 10.0 24 3.8 24 12.0 17.1 79.0 53.8 0.00G 999.9 000000 722324 03071 20171012 72.4 24 53.7 24 9999.9 0 920.1 24 9.9 24 7.8 24 12.0 15.9 88.2 61.7 0.00G 999.9 000000 722324 03071 20171013 76.8 24 60.9 24 9999.9 0 919.3 24 10.0 24 8.1 24 13.0 17.1 91.0 66.2 0.00G 999.9 000000 722324 03071 20171014 78.4 24 61.1 24 9999.9 0 918.6 24 10.0 24 11.2 24 18.1 22.9 91.4 69.8 0.00G 999.9 000000 722324 03071 20171015 66.4 24 47.8 24 9999.9 0 925.5 24 9.4 24 11.1 24 27.0 34.0 88.0 50.4 0.10G 999.9 010010 722324 03071 20171016 56.2 24 36.9 24 9999.9 0 931.0 24 10.0 24 2.1 24 6.0 999.9 70.7 41.9 0.11G 999.9 000000 722324 03071 20171017 61.8 24 36.6 24 9999.9 0 925.9 24 10.0 24 4.0 24 11.1 15.9 80.4 49.3 0.00G 999.9 000000 722324 03071 20171018 68.7 24 39.9 24 9999.9 0 920.6 24 9.8 24 8.3 24 13.0 15.9 85.1 56.5 0.00G 999.9 000000 722324 03071 20171019 66.5 24 46.6 24 9999.9 0 919.4 24 10.0 24 8.2 24 13.0 15.9 77.2 57.2 0.00G 999.9 000000 722324 03071 20171020 68.1 24 55.6 24 9999.9 0 917.6 24 10.0 24 8.3 24 17.1 22.9 80.4 58.1 0.00G 999.9 010000 722324 03071 20171021 72.5 24 57.1 24 9999.9 0 913.5 24 10.0 24 13.0 24 19.0 24.1 86.9 63.5 0.01G 999.9 000000 722324 03071 20171022 62.7 24 37.3 24 9999.9 0 922.7 24 10.0 24 5.1 24 8.9 14.0 81.7 45.5 0.00G 999.9 000000 722324 03071 20171023 65.2 24 35.7 24 9999.9 0 922.3 24 10.0 24 3.5 24 13.0 15.9 85.1 49.1 0.00G 999.9 000000 722324 03071 20171024 61.6 24 31.0 24 9999.9 0 929.9 24 10.0 24 7.5 24 14.0 18.1 75.6 45.5 0.00G 999.9 000000 722324 03071 20171025 59.1 24 30.4 24 9999.9 0 927.7 24 10.0 24 3.9 24 11.1 17.1 76.3 44.8 0.00G 999.9 000000 722324 03071 20171026 67.5 24 33.6 24 9999.9 0 914.6 24 10.0 24 9.0 24 19.0 26.0 88.3 55.4 0.00G 999.9 000000 722324 03071 20171027 55.3 23 25.2 23 9999.9 0 921.1 23 9.5 23 11.4 23 22.0 28.9 75.0* 44.6* 0.00G 999.9 000000 722324 03071 20171028 48.5 24 15.8 24 9999.9 0 924.2 24 10.0 24 1.7 24 6.0 999.9 59.9 39.2 0.00G 999.9 000000 722324 03071 20171029 54.6 24 22.3 24 9999.9 0 919.9 24 10.0 24 4.0 24 12.0 17.1 75.7 39.4 0.00G 999.9 000000 722324 03071 20171030 58.2 24 32.5 24 9999.9 0 915.1 22 10.0 24 8.9 24 18.1 24.1 70.9 45.5 0.00G 999.9 000000 722324 03071 20171031 49.5 24 33.3 24 9999.9 0 922.5 22 9.9 24 6.5 24 8.9 999.9 60.8 40.5 0.00G 999.9 010000 722324 03071 20171101 61.6 24 39.7 24 9999.9 0 912.9 17 10.0 24 9.6 24 21.0 26.0 83.1 48.4 0.01G 999.9 000000 722324 03071 20171102 72.3 24 34.4 24 9999.9 0 914.7 24 10.0 24 10.6 24 17.1 28.0 85.3 60.8 0.03G 999.9 000000 722324 03071 20171103 64.8 24 39.7 24 9999.9 0 919.9 24 9.8 24 2.8 24 11.1 15.9 84.4 47.3 0.00G 999.9 000000 722324 03071 20171104 70.5 24 49.0 24 9999.9 0 918.2 24 7.4 24 4.2 24 8.9 999.9 88.7 58.5 0.00G 999.9 100000 722324 03071 20171105 75.4 24 50.6 24 9999.9 0 916.2 24 7.8 24 8.2 24 15.9 22.9 89.2 63.0 0.00G 999.9 100000 722324 03071 20171106 73.7 24 44.7 24 9999.9 0 917.2 24 9.9 24 6.3 24 14.0 19.0 90.0 52.9 0.00G 999.9 000000 722324 03071 20171107 60.1 24 44.8 24 9999.9 0 920.3 24 9.7 24 5.4 24 15.9 20.0 81.5 49.8 0.00G 999.9 000000 722324 03071 20171108 44.2 24 31.9 24 9999.9 0 925.9 24 8.6 24 9.0 24 15.9 19.0 56.7 36.1 0.01G 999.9 010000 722324 03071 20171109 44.2 24 37.1 24 9999.9 0 925.2 24 9.4 24 1.3 24 7.0 999.9 59.9 35.6 0.05G 999.9 000000 722324 03071 20171110 52.3 24 46.8 24 9999.9 0 922.7 24 9.3 24 6.2 24 12.0 15.0 58.5 45.1 0.00G 999.9 000000 722324 03071 20171111 58.8 24 51.6 24 9999.9 0 919.4 24 7.9 24 10.2 24 15.9 21.0 76.6 53.6 0.00G 999.9 000000 722324 03071 20171112 58.7 24 55.1 24 9999.9 0 922.7 24 6.1 24 6.7 24 12.0 15.9 69.3 50.2 0.00G 999.9 000000 722324 03071 20171113 54.8 24 53.6 24 9999.9 0 927.6 24 4.8 24 5.6 24 9.9 999.9 65.3 51.8 0.00G 999.9 110000 722324 03071 20171114 67.2 24 57.7 24 9999.9 0 921.0 24 8.7 24 7.9 24 12.0 15.9 81.7 62.1 0.00G 999.9 000000 722324 03071 20171115 63.6 24 52.5 24 9999.9 0 918.3 24 8.6 24 8.9 24 17.1 26.0 74.8 50.9 0.00G 999.9 100000 722324 03071 20171116 60.1 24 50.5 24 9999.9 0 921.6 24 8.4 24 3.6 24 8.0 999.9 74.5 50.9 0.00G 999.9 000000 722324 03071 20171117 68.1 24 47.4 24 9999.9 0 916.1 24 9.3 24 7.8 24 17.1 22.0 88.2 56.3 0.00G 999.9 000000 722324 03071 20171118 64.4 24 35.0 24 9999.9 0 917.1 24 9.5 24 12.3 24 25.1 35.0 79.9 55.4 0.00G 999.9 000000 722324 03071 20171119 45.7 24 21.7 24 9999.9 0 927.9 24 10.0 24 4.1 24 11.1 999.9 58.1 32.0 0.00G 999.9 000000 722324 03071 20171120 51.0 24 23.5 24 9999.9 0 920.4 24 10.0 24 5.8 24 12.0 15.9 70.2 39.2 0.00G 999.9 000000 722324 03071 20171121 60.0 24 24.8 24 9999.9 0 915.2 24 9.7 24 11.4 24 29.9 35.0 74.3 48.7 0.00G 999.9 000000 722324 03071 20171122 50.2 24 25.9 24 9999.9 0 928.4 24 10.0 24 4.6 24 14.0 21.0 65.5 36.0 0.00G 999.9 000000 722324 03071 20171123 51.1 24 28.7 24 9999.9 0 923.8 24 10.0 24 1.9 24 5.1 999.9 73.8 36.5 0.00G 999.9 000000 722324 03071 20171124 61.3 24 31.8 24 9999.9 0 916.7 24 10.0 24 5.0 24 13.0 18.1 81.0 48.9 0.00G 999.9 000000 722324 03071 20171125 62.8 24 32.6 24 9999.9 0 916.6 24 10.0 24 7.4 24 14.0 19.0 76.5 50.0 0.00G 999.9 000000 722324 03071 20171126 54.9 24 36.5 24 9999.9 0 926.2 24 10.0 24 2.5 24 8.0 999.9 72.1* 40.1* 0.00G 999.9 000000 722324 03071 20171127 62.6 24 45.1 24 9999.9 0 920.3 24 10.0 24 7.5 24 15.0 19.0 79.0 52.9 0.00G 999.9 000000 722324 03071 20171128 65.2 24 47.2 24 9999.9 0 915.2 24 9.9 24 11.6 24 21.0 29.9 83.1 55.9 0.00G 999.9 000000 722324 03071 20171129 49.9 24 26.0 24 9999.9 0 926.5 23 10.0 24 7.6 24 19.0 24.1 63.5 36.5 0.00G 999.9 000000 722324 03071 20171130 53.1 24 29.0 24 9999.9 0 923.7 21 10.0 24 4.7 24 13.0 17.1 64.6 41.9 0.00G 999.9 000000 722324 03071 20171201 53.7 24 36.3 24 9999.9 0 922.1 18 10.0 24 2.9 24 11.1 14.0 72.3 40.1 0.00G 999.9 000000 722324 03071 20171202 58.8 24 46.9 24 9999.9 0 920.7 24 9.5 24 0.9 24 5.1 999.9 71.1 46.6 0.00I 999.9 000000 722324 03071 20171203 61.5 24 50.4 24 9999.9 0 919.5 24 8.4 24 4.5 24 12.0 17.1 75.2 50.5 0.00I 999.9 100000 722324 03071 20171204 64.5 24 51.2 24 9999.9 0 914.3 24 8.8 24 8.9 24 15.9 22.0 78.1 55.8 0.00I 999.9 000000 722324 03071 20171205 50.3 24 24.0 24 9999.9 0 922.9 24 10.0 24 10.1 24 19.0 24.1 72.3 41.2 0.00I 999.9 000000 722324 03071 20171206 41.4 24 20.8 24 9999.9 0 927.4 24 9.9 24 4.6 24 8.9 999.9 44.6 37.0 0.02B 999.9 010000 722324 03071 20171207 36.5 24 30.5 24 9999.9 0 929.4 24 9.0 24 7.5 24 18.1 21.0 39.2 33.4 0.01A 999.9 010000 722324 03071 20171208 37.3 24 24.1 24 9999.9 0 925.7 24 10.0 24 9.5 24 19.0 28.0 55.4 29.3 0.00I 999.9 000000 722324 03071 20171209 45.0 24 22.7 24 9999.9 0 927.2 23 10.0 24 6.7 24 14.0 21.0 66.2 31.8 0.00I 999.9 000000 722324 03071 20171210 47.2 24 23.2 24 9999.9 0 930.1 24 10.0 24 2.8 24 7.0 999.9 69.4 31.6 0.00I 999.9 000000 722324 03071 20171211 48.1 24 26.4 24 9999.9 0 927.8 24 10.0 24 3.9 24 9.9 999.9 66.4 33.8 0.00I 999.9 000000 722324 03071 20171212 46.8 24 21.3 24 9999.9 0 929.3 23 10.0 24 3.9 24 9.9 14.0 59.2 32.4 0.00I 999.9 000000 722324 03071 20171213 47.9 24 23.1 24 9999.9 0 921.8 24 10.0 24 6.2 24 13.0 18.1 68.9 33.3 0.00I 999.9 000000 722324 03071 20171214 46.6 24 26.4 24 9999.9 0 917.5 24 10.0 24 6.9 24 18.1 22.9 61.3 31.5 0.00I 999.9 000000 722324 03071 20171215 41.5 24 25.1 24 9999.9 0 926.2 24 10.0 24 5.3 24 8.0 999.9 54.5 31.1 0.00I 999.9 000000 722324 03071 20171216 43.7 24 29.3 24 9999.9 0 918.9 24 10.0 24 9.0 24 21.0 28.0 53.2 35.8 0.00I 999.9 000000 722324 03071 20171217 47.8 24 36.8 24 9999.9 0 915.5 24 9.8 24 6.0 24 13.0 18.1 67.1 38.7 0.00I 999.9 000000 722324 03071 20171218 48.9 24 37.5 24 9999.9 0 919.5 24 10.0 24 3.1 24 8.0 999.9 66.4 35.2 0.00I 999.9 000000 722324 03071 20171219 53.6 24 42.8 24 9999.9 0 919.5 24 9.4 24 4.8 24 15.9 22.0 68.0 43.9 99.99 999.9 010000 722324 03071 20171220 54.5 24 34.3 24 9999.9 0 918.8 24 10.0 24 9.3 24 15.0 22.0 71.2 40.3 0.00I 999.9 000000 722324 03071 20171221 61.5 24 27.2 24 9999.9 0 913.2 24 10.0 24 8.4 24 13.0 18.1 78.1 48.2 0.00I 999.9 000000 722324 03071 20171222 46.4 24 30.6 24 9999.9 0 916.2 24 10.0 24 9.5 24 19.0 22.0 69.8 32.4 0.00I 999.9 000000 722324 03071 20171223 41.2 24 20.6 24 9999.9 0 923.3 24 10.0 24 4.6 24 15.0 20.0 63.9 27.3 0.00I 999.9 000000 722324 03071 20171224 49.3 24 18.4 24 9999.9 0 922.7 24 10.0 24 11.1 24 26.0 32.1 58.8 38.5 0.00I 999.9 000000 722324 03071 20171225 37.7 24 22.5 24 9999.9 0 925.7 24 10.0 24 7.1 24 13.0 19.0 57.2 28.2 0.00I 999.9 000000 722324 03071 20171226 40.2 24 32.5 24 9999.9 0 920.7 24 7.8 24 6.3 24 14.0 19.0 55.0 30.9 0.00I 999.9 000000 722324 03071 20171227 26.9 24 25.2 24 9999.9 0 930.1 24 4.8 24 7.7 24 15.0 18.1 35.6 23.7 99.99 999.9 001000 722324 03071 20171228 33.9 24 31.8 24 9999.9 0 926.8 24 4.4 24 3.7 24 7.0 999.9 50.0 30.2 0.00I 999.9 000000 722324 03071 20171229 39.7 24 35.5 24 9999.9 0 924.8 24 4.7 24 6.3 24 11.1 15.0 58.1 33.4 99.99 999.9 101000 722324 03071 20171230 41.3 24 35.0 24 9999.9 0 921.4 23 7.5 24 6.6 24 13.0 17.1 54.3 32.4 99.99 999.9 101000 722324 03071 20171231 29.1 24 28.4 24 9999.9 0 924.2 22 3.8 24 8.5 24 18.1 22.9 33.8 21.0 99.99 999.9 101000 fluids-1.0.22/tests/gsod/2015/0000755000175000017500000000000014302004506015067 5ustar nileshnileshfluids-1.0.22/tests/gsod/2015/724050-13743.op0000644000175000017500000014327214302004506016660 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20150101 35.1 24 14.3 24 1022.8 24 1020.8 24 10.0 24 6.3 24 13.0 18.1 46.9 27.0 0.00G 999.9 000000 724050 13743 20150102 41.6 24 22.9 24 1023.1 24 1020.8 24 10.0 24 3.9 24 8.9 999.9 48.9 27.0 0.00G 999.9 000000 724050 13743 20150103 39.2 24 30.4 24 1031.0 20 1028.4 24 7.8 24 2.0 24 7.0 999.9 48.9 34.0 0.00G 999.9 110000 724050 13743 20150104 49.7 24 44.0 24 1013.3 21 1012.7 24 7.7 24 8.6 24 17.1 24.1 66.0 34.0 0.53G 999.9 010000 724050 13743 20150105 46.0 24 21.8 24 1021.8 24 1018.6 24 9.9 24 13.8 24 22.9 34.0 66.9 33.1 0.16G 999.9 010000 724050 13743 20150106 28.6 24 12.2 24 1027.0 18 1025.2 24 7.5 24 5.3 24 11.1 15.9 33.1* 24.1* 0.07G 2.0 001000 724050 13743 20150107 26.6 24 10.3 24 1020.9 24 1018.4 24 10.0 24 10.6 24 19.0 29.9 32.0 19.9 0.13G 2.0 001000 724050 13743 20150108 17.3 24 -6.1 24 1032.9 24 1030.6 24 10.0 24 10.2 24 20.0 33.0 30.0 12.0 0.00G 1.2 000000 724050 13743 20150109 31.0 24 4.9 24 1021.2 24 1018.9 24 10.0 24 11.7 24 20.0 29.9 42.1 12.0 0.00G 1.2 000000 724050 13743 20150110 26.2 24 0.6 24 1031.5 24 1029.3 24 10.0 24 9.3 24 13.0 22.0 42.1 19.0 0.00G 1.2 000000 724050 13743 20150111 29.0 24 9.9 24 1036.8 24 1034.5 24 10.0 24 3.4 24 8.0 999.9 43.0 19.0 0.00G 999.9 000000 724050 13743 20150112 37.3 24 28.9 24 1030.2 17 1026.0 24 5.9 24 3.4 24 7.0 999.9 43.0 21.0 0.09G 999.9 010000 724050 13743 20150113 37.5 24 23.7 24 1030.4 23 1027.5 24 9.5 24 9.9 24 17.1 25.1 43.0 30.9 0.66G 999.9 010000 724050 13743 20150114 29.8 24 16.1 24 1030.0 21 1027.8 24 9.3 24 7.7 24 11.1 999.9 42.1 26.1 0.00G 999.9 001000 724050 13743 20150115 34.7 24 21.9 24 1022.1 22 1020.0 24 10.0 24 5.5 24 8.9 999.9 42.1 26.1 0.00G 999.9 000000 724050 13743 20150116 36.9 24 24.0 24 1016.5 24 1014.2 24 9.2 24 7.5 24 19.0 28.0 48.0 27.0 0.00G 999.9 000000 724050 13743 20150117 34.7 24 15.8 24 1026.4 24 1024.1 24 10.0 24 7.0 24 12.0 999.9 48.0 27.0 0.00G 999.9 000000 724050 13743 20150118 37.8 24 30.6 24 1017.7 18 1014.3 24 7.0 24 4.9 24 15.9 999.9 44.6* 35.1* 0.00G 999.9 010000 724050 13743 20150119 43.9 24 27.2 24 1013.6 24 1011.3 24 10.0 24 6.0 24 11.1 18.1 50.0 34.0 0.60G 999.9 000000 724050 13743 20150120 38.7 24 27.1 24 1014.4 24 1012.1 24 10.0 24 2.0 24 6.0 999.9 50.0 30.9 0.00G 999.9 000000 724050 13743 20150121 36.8 24 28.6 24 1019.0 22 1016.8 24 7.3 24 3.4 24 8.0 999.9 50.0 30.9 0.00G 999.9 111000 724050 13743 20150122 39.8 24 30.1 24 1024.5 21 1021.6 24 5.8 24 6.2 24 19.0 24.1 48.9 34.0 0.08G 999.9 010000 724050 13743 20150123 38.1 24 25.6 24 1027.1 24 1024.8 24 9.8 24 4.9 24 8.9 999.9 48.9 30.9 0.00G 999.9 011000 724050 13743 20150124 38.9 24 32.5 24 1004.3 13 1003.3 24 6.4 24 7.5 24 15.0 29.9 45.0 30.9 1.13G 999.9 011000 724050 13743 20150125 43.5 24 27.2 24 1008.1 24 1005.7 24 10.0 24 6.8 24 15.0 19.0 52.0 36.0 0.48G 999.9 000000 724050 13743 20150126 40.2 24 31.1 24 1009.3 21 1006.9 24 8.1 24 8.6 24 15.0 18.1 52.0 33.1 0.10G 999.9 011000 724050 13743 20150127 32.4 24 22.8 24 1008.8 19 1006.5 24 7.7 24 13.0 24 18.1 22.9 46.0 28.9 0.12G 999.9 001000 724050 13743 20150128 30.9 24 10.4 24 1019.9 24 1017.6 24 10.0 24 13.2 24 17.1 24.1 39.0 24.1 0.01G 1.2 000000 724050 13743 20150129 32.1 24 10.6 24 1025.4 24 1023.1 24 9.9 24 5.4 24 11.1 999.9 39.0 24.1 0.00G 999.9 011000 724050 13743 20150130 39.2 24 21.6 24 1016.5 23 1014.0 24 9.4 24 11.3 24 25.1 35.9 43.0 26.1 0.05G 999.9 001000 724050 13743 20150131 26.7 24 4.2 24 1025.9 24 1023.7 24 10.0 24 12.3 24 22.0 33.0 43.0 19.9 0.00G 999.9 000000 724050 13743 20150201 33.5 24 17.1 24 1024.1 24 1021.8 24 10.0 24 3.0 24 7.0 999.9 44.1 19.9 0.00G 999.9 000000 724050 13743 20150202 40.2 24 28.5 24 1005.7 22 1002.2 24 8.5 24 7.6 24 25.1 38.1 50.0 27.0 0.08G 999.9 011000 724050 13743 20150203 29.5 24 6.9 24 1023.5 24 1021.3 24 10.0 24 10.3 24 20.0 27.0 50.0 25.0 0.05G 999.9 000000 724050 13743 20150204 37.3 24 19.7 24 1023.4 24 1021.1 24 10.0 24 6.8 24 11.1 999.9 55.0 25.2 0.00G 999.9 000000 724050 13743 20150205 38.7 24 16.7 24 1017.5 24 1014.7 24 10.0 24 13.7 24 24.1 32.1 55.0 27.0 0.00G 999.9 000000 724050 13743 20150206 25.6 24 0.5 24 1026.2 24 1024.0 24 10.0 24 8.9 24 15.9 22.0 44.1 17.1 0.00G 999.9 000000 724050 13743 20150207 36.1 24 14.8 24 1020.6 24 1018.5 24 10.0 24 3.0 24 8.0 999.9 50.0 17.1 0.00G 999.9 000000 724050 13743 20150208 44.5 24 25.3 24 1012.2 24 1009.9 24 10.0 24 3.5 24 9.9 999.9 68.0 26.1 0.00G 999.9 000000 724050 13743 20150209 41.5 24 31.5 24 1010.8 22 1008.6 24 7.0 24 8.1 24 12.0 999.9 51.1* 36.0* 0.00G 999.9 010000 724050 13743 20150210 35.6 24 27.9 24 1015.9 20 1013.4 24 8.2 24 12.4 24 18.1 22.9 45.0 33.1 0.09G 999.9 011000 724050 13743 20150211 36.3 24 20.4 24 1017.6 24 1015.3 24 10.0 24 8.7 24 18.1 19.0 46.9 28.9 0.02G 999.9 000000 724050 13743 20150212 37.2 24 22.8 24 1012.1 24 1009.7 24 9.7 24 7.6 24 19.0 33.0 46.9 28.9 0.00G 999.9 001000 724050 13743 20150213 22.8 24 -1.4 24 1022.8 24 1020.6 24 10.0 24 14.9 24 24.1 33.0 44.1 15.1 0.00G 999.9 000000 724050 13743 20150214 30.8 24 8.0 24 1012.9 24 1010.6 24 10.0 24 7.8 24 17.1 24.1 45.0 15.1 0.00G 999.9 000000 724050 13743 20150215 18.9 24 -3.8 24 1016.6 24 1013.3 24 9.5 24 20.0 24 27.0 45.1 45.0 10.9 0.00G 999.9 001000 724050 13743 20150216 14.4 24 -6.9 24 1027.4 22 1024.8 24 8.9 24 9.8 24 17.1 25.1 21.9 10.0 0.00G 1.2 001000 724050 13743 20150217 20.7 24 10.0 24 1014.4 18 1013.1 24 5.9 24 5.1 24 11.1 999.9 30.9 10.0 0.52G 3.9 001000 724050 13743 20150218 24.4 24 11.1 24 1012.9 22 1010.5 24 9.7 24 4.2 24 18.1 26.0 33.8* 12.2* 0.23G 3.9 101000 724050 13743 20150219 19.4 24 -3.3 24 1016.5 24 1013.8 24 9.4 24 14.4 24 24.1 33.0 34.0 12.9 0.00G 3.9 001000 724050 13743 20150220 12.9 24 -9.9 24 1028.3 24 1025.6 24 9.7 24 9.4 24 18.1 26.0 21.9 5.0 0.00G 3.1 001000 724050 13743 20150221 19.8 24 4.6 24 1031.7 18 1028.1 24 7.4 24 8.1 24 15.9 21.0 32.0 5.0 0.00G 5.1 011000 724050 13743 20150222 38.7 24 31.2 24 1022.0 18 1019.5 24 5.8 24 4.0 24 9.9 999.9 48.9* 32.0* 0.80G 1.2 011000 724050 13743 20150223 35.8 24 18.7 24 1026.4 24 1024.1 24 10.0 24 11.2 24 18.1 26.0 50.0 26.1 0.10G 1.2 000000 724050 13743 20150224 21.6 24 -1.4 24 1026.0 24 1023.7 24 10.0 24 8.1 24 12.0 999.9 41.0 14.0 0.00G 1.2 000000 724050 13743 20150225 29.4 24 13.2 24 1012.8 24 1010.6 24 10.0 24 4.7 24 11.1 18.1 42.1 14.0 0.00G 999.9 000000 724050 13743 20150226 35.4 24 22.1 24 1014.3 20 1011.7 24 7.8 24 6.0 24 14.0 999.9 42.1 21.0 0.06G 2.0 001000 724050 13743 20150227 33.3 24 17.7 24 1026.6 24 1023.9 24 9.9 24 7.1 24 15.0 19.0 39.0 30.9 0.08G 999.9 001000 724050 13743 20150228 26.2 24 3.6 24 1041.3 24 1039.1 24 10.0 24 6.0 24 15.0 21.0 35.1 19.9 0.00G 999.9 000000 724050 13743 20150301 28.5 24 17.0 24 1038.1 17 1035.1 24 7.9 24 4.5 24 8.9 999.9 33.8* 25.0* 0.00G 999.9 011000 724050 13743 20150302 37.8 24 26.6 24 1025.1 17 1021.5 24 6.5 24 7.6 24 18.1 27.0 46.0 24.1 0.51G 999.9 110000 724050 13743 20150303 33.8 24 17.6 24 1027.9 23 1026.1 24 10.0 24 7.4 24 12.0 999.9 46.0 30.9 0.00G 999.9 011000 724050 13743 20150304 42.3 24 35.9 24 1013.1 16 1010.5 24 6.8 24 6.4 24 15.0 18.1 51.1 30.9 0.08G 999.9 110000 724050 13743 20150305 38.3 24 33.5 24 1016.9 10 1016.0 24 2.7 24 9.1 24 17.1 21.0 51.1 27.0 0.52G 5.1 111000 724050 13743 20150306 23.2 24 6.8 24 1033.1 24 1030.7 24 9.6 24 8.6 24 14.0 999.9 28.9* 16.0* 0.65G 3.9 001000 724050 13743 20150307 29.9 24 15.3 24 1026.8 24 1024.5 24 10.0 24 6.5 24 15.9 20.0 48.9 15.1 0.00G 2.0 000000 724050 13743 20150308 46.3 24 26.4 24 1020.3 24 1017.9 24 10.0 24 6.1 24 13.0 19.0 57.9* 35.1* 0.00G 1.2 000000 724050 13743 20150309 47.1 24 29.5 24 1022.1 24 1019.7 24 10.0 24 2.4 24 8.9 999.9 62.1 32.0 0.00G 1.2 000000 724050 13743 20150310 45.9 24 34.6 24 1023.8 21 1021.0 24 8.4 24 2.8 24 8.0 999.9 62.1 37.0 0.00G 999.9 010000 724050 13743 20150311 53.3 24 44.3 24 1017.8 19 1015.2 24 6.2 24 4.3 24 12.0 999.9 66.9 39.0 0.44G 999.9 110000 724050 13743 20150312 52.4 24 27.1 24 1028.8 24 1026.5 24 10.0 24 8.8 24 13.0 20.0 66.9 44.1 0.00G 999.9 000000 724050 13743 20150313 46.5 24 20.7 24 1035.0 24 1032.7 24 10.0 24 3.5 24 8.9 999.9 60.1 37.0 0.00G 999.9 000000 724050 13743 20150314 49.5 24 42.2 24 1020.2 18 1017.3 24 8.1 24 7.3 24 11.1 17.1 59.0 37.0 0.36G 999.9 010000 724050 13743 20150315 53.1 24 38.1 24 1013.4 24 1010.7 24 9.8 24 10.4 24 22.0 31.1 60.1 45.0 0.25G 999.9 000000 724050 13743 20150316 49.6 24 32.8 24 1017.0 24 1014.7 24 10.0 24 4.7 24 11.1 18.1 69.1 37.9 0.00G 999.9 000000 724050 13743 20150317 57.2 24 39.0 24 1008.3 24 1005.6 24 10.0 24 8.9 24 25.1 33.0 73.0 37.9 0.00G 999.9 000000 724050 13743 20150318 43.9 24 12.3 24 1020.4 24 1018.1 24 10.0 24 13.0 24 25.1 34.0 52.0* 36.0* 0.00G 999.9 000000 724050 13743 20150319 46.0 24 19.1 24 1025.2 24 1022.8 24 10.0 24 3.2 24 8.0 999.9 53.1 36.0 0.00G 999.9 000000 724050 13743 20150320 40.5 24 30.0 24 1023.0 16 1021.1 24 6.5 24 6.0 24 13.0 999.9 46.9* 35.6* 0.26G 999.9 011000 724050 13743 20150321 44.0 24 35.3 24 1018.5 23 1016.5 24 8.9 24 6.7 24 9.9 999.9 61.0 35.1 0.23G 999.9 000000 724050 13743 20150322 51.5 24 29.7 24 1018.2 24 1015.7 24 10.0 24 8.8 24 15.0 26.0 61.0 35.1 0.00G 999.9 000000 724050 13743 20150323 44.2 24 15.6 24 1022.8 24 1020.5 24 10.0 24 7.6 24 13.0 999.9 55.9 36.0 0.00G 999.9 000000 724050 13743 20150324 42.8 24 18.8 24 1025.9 24 1023.6 24 10.0 24 5.1 24 9.9 999.9 51.1 36.0 0.00G 999.9 000000 724050 13743 20150325 42.5 24 26.3 24 1027.9 24 1025.6 24 10.0 24 3.9 24 8.9 999.9 54.0 35.1 0.00G 999.9 010000 724050 13743 20150326 57.0 24 45.5 24 1014.4 17 1011.5 24 9.2 24 7.8 24 15.9 22.9 77.0 35.1 0.00G 999.9 010000 724050 13743 20150327 51.3 24 39.6 24 1008.7 20 1005.9 24 9.2 24 9.8 24 17.1 27.0 77.0 44.1 0.65G 999.9 010010 724050 13743 20150328 38.6 24 16.7 24 1014.2 24 1011.9 24 10.0 24 14.0 24 19.0 28.0 52.0 32.0 0.06G 999.9 000000 724050 13743 20150329 35.7 24 7.6 24 1026.3 24 1024.0 24 10.0 24 9.2 24 14.0 22.9 48.9 28.0 0.00G 999.9 000000 724050 13743 20150330 50.7 24 22.9 24 1015.3 23 1013.7 22 9.6 24 10.3 24 17.1 27.0 66.0 28.0 0.02G 999.9 010000 724050 13743 20150331 57.2 24 28.8 24 1010.7 24 1008.9 22 10.0 24 9.7 24 26.0 36.9 73.0 42.1 0.01A 999.9 010010 724050 13743 20150401 50.1 24 30.4 24 1017.1 24 1016.7 20 10.0 24 10.5 24 21.0 28.0 73.0 39.9 0.00H 999.9 010000 724050 13743 20150402 56.1 24 33.3 24 1022.5 24 1020.2 24 10.0 24 11.3 24 22.0 29.9 73.9 39.9 0.00G 999.9 000000 724050 13743 20150403 66.6 24 51.2 24 1012.2 24 1009.9 24 9.0 24 10.9 24 19.0 24.1 73.0* 60.8* 0.00G 999.9 010000 724050 13743 20150404 61.4 24 39.9 24 1011.9 23 1009.4 24 10.0 24 14.4 24 24.1 39.0 73.0 55.0 0.24G 999.9 010000 724050 13743 20150405 54.6 24 21.7 24 1024.4 24 1022.1 24 10.0 24 8.7 24 15.9 24.1 69.1 39.9 0.05G 999.9 000000 724050 13743 20150406 61.4 24 34.1 24 1023.4 24 1021.1 24 10.0 24 8.8 24 18.1 24.1 77.0 39.9 0.00G 999.9 000000 724050 13743 20150407 66.0 24 54.1 24 1020.6 24 1018.3 24 10.0 24 8.1 24 13.0 999.9 77.0 48.0 0.02G 999.9 010000 724050 13743 20150408 53.2 24 47.6 24 1022.3 18 1020.0 24 8.4 24 9.0 24 19.0 999.9 73.0 48.0 0.20G 999.9 010000 724050 13743 20150409 46.9 24 41.8 24 1023.1 21 1020.9 24 8.1 24 7.5 24 13.0 15.9 50.0* 44.6* 0.11G 999.9 010000 724050 13743 20150410 50.5 24 46.2 24 1016.5 14 1014.0 24 6.1 24 5.4 24 11.1 999.9 66.2* 44.6* 0.02G 999.9 010000 724050 13743 20150411 62.7 24 38.3 24 1016.6 24 1013.9 24 9.9 24 10.2 24 20.0 27.0 68.0 45.0 0.01G 999.9 000000 724050 13743 20150412 58.2 24 31.5 24 1026.0 24 1023.7 24 10.0 24 4.0 24 8.9 999.9 70.0 43.0 0.00G 999.9 000000 724050 13743 20150413 63.7 24 43.2 24 1024.9 24 1022.7 24 10.0 24 9.7 24 18.1 24.1 80.1 43.0 0.00G 999.9 000000 724050 13743 20150414 63.3 24 54.2 24 1020.4 23 1018.1 24 7.6 24 8.1 24 15.9 21.0 80.1 52.0 0.22G 999.9 010000 724050 13743 20150415 59.3 24 39.9 24 1022.9 24 1020.6 24 10.0 24 6.7 24 11.1 999.9 68.0 52.0 0.42G 999.9 010000 724050 13743 20150416 62.5 24 38.4 24 1028.0 24 1025.7 24 10.0 24 4.0 24 13.0 21.0 73.9 52.0 0.00G 999.9 000000 724050 13743 20150417 66.6 24 55.3 24 1019.4 23 1017.6 24 10.0 24 6.6 24 11.1 999.9 79.0 52.0 0.06G 999.9 010000 724050 13743 20150418 71.5 24 54.0 24 1015.5 24 1013.2 24 10.0 24 2.8 24 6.0 999.9 84.0 59.0 0.01G 999.9 000000 724050 13743 20150419 66.2 24 46.4 24 1018.4 24 1016.1 24 10.0 24 9.6 24 15.9 22.0 84.0 57.0 0.00G 999.9 010000 724050 13743 20150420 67.1 24 58.0 24 1005.9 21 1003.8 24 8.0 24 10.5 24 19.0 35.0 82.0 55.0 0.89G 999.9 010010 724050 13743 20150421 64.9 24 43.3 24 1005.8 23 1002.9 24 10.0 24 10.4 24 22.0 33.0 82.0 57.0 0.40G 999.9 010010 724050 13743 20150422 60.4 24 38.8 24 1007.4 24 1004.9 24 10.0 24 9.0 24 22.0 31.1 73.9 51.1 0.16G 999.9 010000 724050 13743 20150423 53.6 24 27.3 24 1010.2 24 1007.8 24 10.0 24 10.7 24 15.9 25.1 73.9 45.0 0.00G 999.9 000000 724050 13743 20150424 50.6 24 22.1 24 1014.9 24 1012.6 24 10.0 24 12.4 24 15.9 28.0 63.0 39.9 0.00G 999.9 000000 724050 13743 20150425 51.0 24 28.9 24 1013.5 24 1011.1 24 9.9 24 5.4 24 8.0 999.9 63.0 39.0 0.00G 999.9 010000 724050 13743 20150426 52.9 24 37.7 24 1006.1 24 1003.9 24 9.7 24 4.7 24 9.9 999.9 66.9* 44.6* 0.27G 999.9 010000 724050 13743 20150427 55.9 24 34.5 24 1008.1 24 1005.7 24 10.0 24 8.7 24 17.1 22.9 66.9 45.0 0.00G 999.9 010000 724050 13743 20150428 58.3 24 38.5 24 1012.2 24 1009.9 24 10.0 24 11.4 24 17.1 22.9 72.0 46.9 0.00G 999.9 010000 724050 13743 20150429 65.4 24 41.6 24 1008.9 24 1006.6 24 10.0 24 3.9 24 8.9 999.9 78.1 48.0 0.00G 999.9 000000 724050 13743 20150430 64.9 24 48.1 24 1005.2 21 1002.9 24 10.0 24 4.0 24 21.0 31.1 78.1 52.0 0.00G 999.9 010110 724050 13743 20150501 59.1 24 47.4 24 1012.2 20 1009.6 24 10.0 24 8.5 24 14.0 17.1 73.9 54.0 0.65G 999.9 010010 724050 13743 20150502 62.1 24 44.6 24 1015.5 24 1013.2 24 10.0 24 3.1 24 8.0 999.9 78.1 51.1 0.11G 999.9 000000 724050 13743 20150503 68.6 24 46.5 24 1018.2 24 1016.0 24 10.0 24 4.1 24 8.9 999.9 84.0 51.1 0.00G 999.9 000000 724050 13743 20150504 70.6 24 51.5 24 1022.1 24 1019.9 24 10.0 24 7.5 24 15.9 22.0 84.0 55.9 0.00G 999.9 000000 724050 13743 20150505 73.2 24 57.8 24 1023.1 24 1020.8 24 9.8 24 6.8 24 22.0 27.0 86.0 55.9 0.00G 999.9 010010 724050 13743 20150506 72.1 24 62.7 24 1022.8 24 1020.5 24 9.5 24 4.4 24 11.1 999.9 86.0 64.0 0.05G 999.9 010000 724050 13743 20150507 71.4 24 57.4 24 1022.0 24 1019.7 24 9.9 24 4.9 24 11.1 999.9 82.9 62.1 0.00G 999.9 000000 724050 13743 20150508 73.3 24 59.7 24 1020.2 24 1018.0 24 9.9 24 3.8 24 8.9 999.9 84.0 62.1 0.00G 999.9 000000 724050 13743 20150509 72.7 24 62.0 24 1022.1 20 1020.0 24 9.6 24 5.3 24 11.1 999.9 84.0 64.0 0.00G 999.9 010000 724050 13743 20150510 76.2 24 66.1 24 1022.1 22 1020.0 24 9.8 24 5.4 24 9.9 999.9 84.9 64.9 0.00G 999.9 000000 724050 13743 20150511 76.0 24 67.5 24 1018.4 21 1016.4 24 9.5 24 5.8 24 11.1 999.9 84.9 69.1 0.00G 999.9 000000 724050 13743 20150512 78.8 24 64.8 24 1013.5 24 1011.2 24 10.0 24 6.2 24 13.0 21.0 90.0 71.1 0.00G 999.9 000000 724050 13743 20150513 69.3 24 42.7 24 1019.6 24 1017.3 24 10.0 24 14.0 24 19.0 28.9 86.0* 62.6* 0.00G 999.9 000000 724050 13743 20150514 61.8 24 39.1 24 1028.7 24 1026.4 24 10.0 24 7.3 24 14.0 20.0 73.0 53.1 0.00G 999.9 000000 724050 13743 20150515 66.3 24 48.7 24 1026.0 24 1023.7 24 10.0 24 8.7 24 12.0 999.9 78.1 53.1 0.00G 999.9 000000 724050 13743 20150516 74.1 24 61.8 24 1021.4 23 1019.0 24 9.6 24 8.0 24 19.0 25.1 88.0 57.9 0.00G 999.9 010010 724050 13743 20150517 75.8 24 67.8 24 1021.6 24 1019.3 24 9.4 24 4.5 24 9.9 999.9 88.0 66.9 0.66G 999.9 010000 724050 13743 20150518 80.9 24 68.5 24 1019.3 23 1016.8 24 9.9 24 3.8 24 14.0 21.0 91.9 70.0 0.00G 999.9 010010 724050 13743 20150519 79.8 24 67.2 24 1013.7 18 1012.1 24 9.7 24 5.8 24 19.0 27.0 89.1* 71.6* 0.76G 999.9 010010 724050 13743 20150520 71.9 24 48.5 24 1014.1 24 1011.8 24 10.0 24 12.0 24 18.1 27.0 90.0 62.1 0.00G 999.9 000000 724050 13743 20150521 59.6 24 45.2 24 1015.6 18 1013.3 24 8.5 24 7.4 24 12.0 999.9 75.0 53.1 0.00G 999.9 010000 724050 13743 20150522 63.0 24 44.9 24 1017.5 23 1014.9 24 10.0 24 8.4 24 19.0 29.9 79.0 52.0 0.33G 999.9 000000 724050 13743 20150523 66.4 24 35.0 24 1027.8 24 1025.4 24 10.0 24 7.1 24 12.0 17.1 79.0 52.0 0.00G 999.9 000000 724050 13743 20150524 68.8 24 51.3 24 1028.0 24 1025.7 24 10.0 24 7.0 24 9.9 999.9 82.0 54.0 0.00G 999.9 000000 724050 13743 20150525 75.9 24 59.6 24 1024.4 24 1022.0 24 10.0 24 9.8 24 15.0 22.0 84.9 57.0 0.00G 999.9 000000 724050 13743 20150526 77.5 24 63.3 24 1022.7 24 1020.4 24 10.0 24 9.6 24 14.0 20.0 88.0 66.9 0.00G 999.9 000000 724050 13743 20150527 79.7 24 68.2 24 1020.7 22 1018.5 24 10.0 24 8.6 24 15.9 18.1 90.0 69.1 0.00G 999.9 000000 724050 13743 20150528 80.4 24 67.2 24 1021.1 23 1018.8 24 10.0 24 5.6 24 21.0 27.0 91.9 73.0 0.01G 999.9 010010 724050 13743 20150529 78.6 24 67.9 24 1023.3 23 1021.0 24 10.0 24 5.1 24 11.1 999.9 91.9 73.0 0.00G 999.9 010010 724050 13743 20150530 80.1 24 67.5 24 1021.1 21 1019.1 24 10.0 24 9.2 24 13.0 17.1 90.0* 71.6* 0.00G 999.9 000000 724050 13743 20150531 81.2 24 67.7 24 1017.1 24 1014.8 24 10.0 24 10.2 24 15.9 21.0 91.9 72.0 0.00G 999.9 000000 724050 13743 20150601 81.0 24 68.6 24 1015.8 22 1013.2 24 9.1 24 9.1 24 26.0 38.1 91.4* 71.6* 0.01G 999.9 010110 724050 13743 20150602 68.0 24 62.9 24 1017.3 15 1015.0 24 8.2 24 8.5 24 14.0 15.9 75.2* 62.1* 2.90G 999.9 010010 724050 13743 20150603 61.1 24 55.5 24 1021.1 20 1018.8 24 7.8 24 10.1 24 13.0 19.0 72.0 59.0 0.05G 999.9 010000 724050 13743 20150604 62.2 24 56.2 24 1022.0 18 1019.7 24 8.5 24 7.8 24 13.0 15.0 64.9 59.0 0.02G 999.9 010000 724050 13743 20150605 64.7 24 58.2 24 1018.2 16 1016.6 24 9.5 24 5.9 24 12.0 999.9 75.0 59.0 0.38G 999.9 010000 724050 13743 20150606 73.3 24 62.5 24 1013.6 24 1011.3 24 10.0 24 6.7 24 17.1 19.0 84.9 60.1 0.03G 999.9 000000 724050 13743 20150607 73.7 24 60.8 24 1019.5 24 1017.2 24 10.0 24 7.1 24 13.0 19.0 84.9 64.9 0.00G 999.9 000000 724050 13743 20150608 74.4 24 61.3 24 1015.0 24 1012.7 24 9.7 24 11.6 24 32.1 45.1 88.0 64.9 0.00G 999.9 010010 724050 13743 20150609 78.7 24 64.3 24 1007.8 21 1005.6 24 10.0 24 9.9 24 21.0 31.1 89.1 64.9 0.65G 999.9 010010 724050 13743 20150610 78.0 24 58.8 24 1011.9 24 1009.5 24 9.9 24 7.0 24 13.0 999.9 89.1 68.0 0.00G 999.9 000000 724050 13743 20150611 80.2 24 67.7 24 1013.4 24 1011.1 24 8.1 24 6.9 24 9.9 999.9 93.0 68.0 0.00G 999.9 000000 724050 13743 20150612 84.7 24 72.3 24 1013.7 22 1011.4 24 10.0 24 9.3 24 21.0 27.0 93.9 71.1 0.00G 999.9 010010 724050 13743 20150613 82.9 24 70.9 24 1014.4 24 1012.0 24 10.0 24 5.8 24 12.0 18.1 93.9 75.0 0.02G 999.9 000000 724050 13743 20150614 85.1 24 71.1 24 1016.8 21 1014.4 24 9.8 24 3.7 24 22.9 27.0 93.0 75.0 0.00G 999.9 010010 724050 13743 20150615 83.5 24 73.2 24 1015.6 24 1013.3 24 9.9 24 5.7 24 22.0 28.9 93.0 78.1 0.52G 999.9 010000 724050 13743 20150616 85.6 24 72.0 24 1013.8 24 1011.5 24 10.0 24 6.5 24 14.0 25.1 96.1 77.0 0.07G 999.9 000000 724050 13743 20150617 80.3 24 66.0 24 1017.9 22 1015.8 24 9.9 24 6.0 24 12.0 15.9 96.1 75.0 0.00G 999.9 010000 724050 13743 20150618 78.4 24 69.8 24 1016.3 16 1014.0 24 8.8 24 5.5 24 19.0 26.0 91.0 72.0 0.29G 999.9 010010 724050 13743 20150619 80.4 24 69.0 24 1014.5 24 1012.2 24 10.0 24 5.1 24 14.0 22.0 91.0 72.0 0.54G 999.9 010000 724050 13743 20150620 82.3 24 70.2 24 1015.0 23 1012.5 24 10.0 24 4.9 24 14.0 21.0 91.9 73.0 0.12G 999.9 010010 724050 13743 20150621 82.8 24 71.2 24 1010.0 17 1007.1 24 8.8 24 8.9 24 25.1 33.0 93.9 73.9 2.40G 999.9 110010 724050 13743 20150622 86.7 24 66.8 24 1015.1 24 1012.7 24 10.0 24 6.7 24 12.0 15.9 93.9 75.9 0.03G 999.9 000000 724050 13743 20150623 86.6 24 72.8 24 1013.8 23 1011.3 24 10.0 24 9.1 24 35.9 48.0 96.1* 75.2* 0.00G 999.9 010010 724050 13743 20150624 77.9 24 64.1 24 1017.0 23 1014.3 24 10.0 24 7.5 24 14.0 18.1 96.1 70.0 0.84G 999.9 010010 724050 13743 20150625 79.6 24 60.7 24 1017.8 24 1015.5 24 10.0 24 4.1 24 8.0 999.9 87.1 70.0 0.00G 999.9 000000 724050 13743 20150626 75.9 24 65.0 24 1014.5 19 1012.2 24 10.0 24 5.5 24 27.0 31.1 87.1 69.1 0.48G 999.9 010010 724050 13743 20150627 73.8 24 66.8 24 1015.0 16 1011.6 24 8.2 24 8.3 24 17.1 24.1 82.9 69.1 0.20G 999.9 010000 724050 13743 20150628 73.5 24 62.4 24 1007.0 22 1004.6 24 8.8 24 8.0 24 14.0 17.1 82.0 66.9 2.55G 999.9 010000 724050 13743 20150629 74.4 24 55.5 24 1013.6 24 1011.3 24 10.0 24 6.9 24 11.1 999.9 84.0 63.0 0.00G 999.9 000000 724050 13743 20150630 78.4 24 66.8 24 1012.2 24 1010.0 24 10.0 24 7.2 24 15.9 21.0 89.1 63.0 0.00G 999.9 010000 724050 13743 20150701 78.3 24 66.9 24 1010.6 20 1008.2 24 9.6 24 6.3 24 33.0 44.1 89.1 69.1 0.98G 999.9 010010 724050 13743 20150702 75.1 24 67.0 24 1012.5 20 1010.1 24 8.4 24 4.3 24 19.0 22.9 79.0* 68.0* 0.35G 999.9 010010 724050 13743 20150703 74.4 24 65.1 24 1014.0 22 1011.8 24 7.3 24 3.0 24 8.0 999.9 82.9 66.0 0.02G 999.9 110000 724050 13743 20150704 75.6 24 68.2 24 1013.1 17 1010.7 24 8.3 24 2.6 24 9.9 999.9 84.9 66.0 0.03G 999.9 010010 724050 13743 20150705 77.2 24 68.7 24 1019.4 18 1016.5 24 7.1 24 3.1 24 6.0 999.9 87.1 71.1 0.85G 999.9 000000 724050 13743 20150706 80.9 24 72.0 24 1019.1 21 1016.9 24 9.9 24 5.4 24 9.9 18.1 89.1 71.1 0.01G 999.9 010000 724050 13743 20150707 81.6 24 71.3 24 1016.8 23 1014.5 24 9.9 24 6.8 24 12.0 21.0 91.0 75.0 0.01G 999.9 000000 724050 13743 20150708 82.5 24 72.8 24 1015.6 19 1013.1 24 8.5 24 7.5 24 19.0 24.1 91.9 75.0 0.00G 999.9 010010 724050 13743 20150709 83.2 24 73.0 24 1015.2 23 1012.8 24 10.0 24 5.5 24 11.1 22.0 91.9 78.1 1.12G 999.9 010000 724050 13743 20150710 83.1 24 66.2 24 1015.5 24 1013.1 24 10.0 24 8.4 24 13.0 18.1 91.9 77.0 0.03G 999.9 000000 724050 13743 20150711 81.0 24 66.3 24 1017.9 22 1015.7 24 9.7 24 4.7 24 8.0 999.9 88.0 75.0 0.09G 999.9 010000 724050 13743 20150712 79.8 24 64.4 24 1017.7 24 1015.4 24 10.0 24 3.8 24 6.0 999.9 88.0 70.0 0.00I 999.9 000000 724050 13743 20150713 78.2 24 67.3 24 1012.8 24 1010.6 24 9.7 24 4.2 24 6.0 999.9 88.0 70.0 0.00G 999.9 010000 724050 13743 20150714 80.8 24 71.7 24 1004.7 21 1002.7 24 9.5 24 5.1 24 12.0 999.9 89.1 73.9 0.03G 999.9 010000 724050 13743 20150715 81.1 24 68.4 24 1003.8 22 1001.3 24 10.0 24 8.0 24 15.0 22.0 89.1 73.9 0.01G 999.9 010000 724050 13743 20150716 76.3 24 57.4 24 1015.4 24 1013.0 24 10.0 24 7.9 24 15.0 17.1 88.0 66.0 0.00I 999.9 000000 724050 13743 20150717 77.2 24 65.5 24 1017.9 24 1015.7 24 10.0 24 6.3 24 11.1 999.9 87.1 66.0 0.00G 999.9 000000 724050 13743 20150718 81.1 24 71.8 24 1014.8 23 1012.7 24 9.9 24 7.3 24 11.1 999.9 88.0 71.1 0.00G 999.9 010000 724050 13743 20150719 86.0 24 74.9 24 1012.0 24 1009.7 24 9.7 24 5.2 24 11.1 999.9 98.1 77.0 0.04G 999.9 000000 724050 13743 20150720 88.8 24 73.0 24 1008.4 24 1006.1 24 10.0 24 6.3 24 11.1 999.9 98.1 79.0 0.00G 999.9 000000 724050 13743 20150721 87.6 24 72.7 24 1005.2 24 1002.9 24 10.0 24 4.8 24 8.9 999.9 97.0 82.0 0.00G 999.9 000000 724050 13743 20150722 81.7 24 59.9 24 1009.7 24 1007.3 24 10.0 24 8.7 24 15.0 28.0 91.9 72.0 0.00G 999.9 010000 724050 13743 20150723 80.0 24 56.9 24 1014.4 24 1012.0 24 10.0 24 6.5 24 12.0 15.9 89.1 71.1 0.00G 999.9 000000 724050 13743 20150724 80.4 24 57.0 24 1014.8 24 1012.5 24 10.0 24 5.7 24 12.0 14.0 90.0 69.1 0.00G 999.9 000000 724050 13743 20150725 81.1 24 62.4 24 1015.2 24 1012.9 24 10.0 24 5.3 24 12.0 999.9 90.0 69.1 0.00G 999.9 000000 724050 13743 20150726 82.3 24 65.8 24 1015.3 24 1012.9 24 10.0 24 9.6 24 15.0 18.1 91.0 72.0 0.00G 999.9 000000 724050 13743 20150727 81.9 24 69.4 24 1015.1 21 1012.8 24 9.9 24 6.2 24 18.1 25.1 91.0 73.0 0.11G 999.9 010010 724050 13743 20150728 83.5 24 72.9 24 1015.7 23 1013.4 24 10.0 24 3.3 24 15.0 999.9 93.9 73.0 0.83G 999.9 010010 724050 13743 20150729 83.5 24 74.1 24 1015.5 24 1013.2 24 9.9 24 6.2 24 14.0 20.0 93.9 77.0 0.00G 999.9 000000 724050 13743 20150730 83.5 24 74.2 24 1013.1 23 1010.7 24 9.7 24 8.3 24 22.9 32.1 91.9 78.1 0.00G 999.9 010010 724050 13743 20150731 83.6 24 63.9 24 1012.9 24 1010.6 24 10.0 24 6.4 24 13.0 17.1 91.9 73.9 0.53G 999.9 000000 724050 13743 20150801 83.2 24 63.2 24 1011.7 24 1009.3 24 10.0 24 5.9 24 8.9 14.0 91.9 73.9 0.00G 999.9 000000 724050 13743 20150802 82.3 24 59.6 24 1013.4 24 1011.0 24 10.0 24 5.4 24 12.0 999.9 91.9 73.0 0.00G 999.9 000000 724050 13743 20150803 81.9 24 64.2 24 1011.6 24 1009.3 24 10.0 24 8.0 24 14.0 999.9 93.0 72.0 0.00G 999.9 000000 724050 13743 20150804 85.8 24 66.0 24 1011.9 24 1009.5 24 9.2 24 7.2 24 19.0 26.0 96.1 72.0 0.00G 999.9 010000 724050 13743 20150805 83.4 24 65.8 24 1013.8 24 1011.5 24 10.0 24 5.2 24 12.0 15.9 96.1 75.0 0.04G 999.9 010000 724050 13743 20150806 80.9 24 59.9 24 1014.5 24 1012.2 24 10.0 24 6.1 24 12.0 999.9 93.0 75.0 0.00G 999.9 010000 724050 13743 20150807 76.6 24 63.9 24 1011.7 24 1009.4 24 9.9 24 8.1 24 13.0 999.9 84.9 70.0 0.05G 999.9 010000 724050 13743 20150808 80.1 24 61.8 24 1013.6 24 1011.2 24 10.0 24 7.1 24 11.1 15.0 88.0 70.0 0.00I 999.9 000000 724050 13743 20150809 79.5 24 63.4 24 1015.6 24 1013.3 24 10.0 24 5.4 24 9.9 999.9 89.1 72.0 0.00G 999.9 000000 724050 13743 20150810 76.2 24 66.7 24 1015.8 20 1013.7 24 9.9 24 9.1 24 17.1 20.0 89.1 72.0 0.10G 999.9 010000 724050 13743 20150811 78.6 24 70.0 24 1009.6 14 1007.9 24 9.4 24 9.0 24 15.9 27.0 90.0 72.0 0.39G 999.9 010000 724050 13743 20150812 78.6 24 62.0 24 1012.5 24 1010.2 24 10.0 24 8.9 24 15.0 21.0 90.0 70.0 0.34G 999.9 000000 724050 13743 20150813 76.7 24 54.9 24 1017.5 24 1015.2 24 10.0 24 6.4 24 11.1 14.0 84.9 68.0 0.00G 999.9 000000 724050 13743 20150814 76.0 24 56.9 24 1021.3 24 1019.0 24 10.0 24 3.2 24 8.9 999.9 88.0 64.0 0.00G 999.9 000000 724050 13743 20150815 77.6 24 62.1 24 1020.7 24 1018.4 24 10.0 24 6.4 24 11.1 999.9 90.0 64.0 0.00G 999.9 000000 724050 13743 20150816 79.0 24 63.8 24 1020.5 24 1018.3 24 10.0 24 5.9 24 12.0 999.9 93.9 68.0 0.00G 999.9 000000 724050 13743 20150817 81.9 24 67.9 24 1019.3 24 1017.0 24 10.0 24 6.7 24 11.1 999.9 96.1 69.1 0.00G 999.9 000000 724050 13743 20150818 81.4 24 70.3 24 1016.4 24 1014.0 24 10.0 24 5.8 24 12.0 15.9 96.1 72.0 0.00G 999.9 000000 724050 13743 20150819 81.7 24 71.0 24 1014.9 24 1012.7 24 10.0 24 8.5 24 13.0 999.9 91.0 73.9 0.00G 999.9 000000 724050 13743 20150820 80.5 24 73.5 24 1013.5 17 1011.2 24 10.0 24 7.9 24 13.0 20.0 84.9* 75.2* 0.15G 999.9 010010 724050 13743 20150821 77.6 24 63.2 24 1016.8 23 1014.3 24 10.0 24 7.6 24 15.0 999.9 86.0 71.1 0.02G 999.9 010000 724050 13743 20150822 75.9 24 56.0 24 1019.3 24 1016.9 24 10.0 24 5.6 24 8.9 999.9 86.0 64.9 0.00G 999.9 000000 724050 13743 20150823 75.0 24 56.5 24 1016.9 24 1014.6 24 10.0 24 4.1 24 8.9 999.9 86.0 64.0 0.01G 999.9 000000 724050 13743 20150824 79.0 24 65.6 24 1012.3 24 1010.0 24 10.0 24 6.4 24 25.1 33.0 91.0 64.0 0.00G 999.9 010010 724050 13743 20150825 76.8 24 62.3 24 1012.4 23 1009.9 24 9.6 24 6.7 24 21.0 28.9 91.0 69.1 0.41G 999.9 010010 724050 13743 20150826 74.0 24 54.8 24 1015.9 24 1013.6 24 10.0 24 7.2 24 12.0 999.9 84.9 66.9 0.00G 999.9 000000 724050 13743 20150827 72.6 24 55.0 24 1019.0 24 1016.7 24 10.0 24 6.2 24 11.1 999.9 82.0 63.0 0.00G 999.9 000000 724050 13743 20150828 74.2 24 58.3 24 1021.5 24 1019.2 24 10.0 24 3.2 24 11.1 999.9 82.9 63.0 0.00G 999.9 000000 724050 13743 20150829 77.1 24 61.9 24 1022.0 24 1019.7 24 10.0 24 6.9 24 12.0 15.0 89.1 64.9 0.00G 999.9 000000 724050 13743 20150830 76.7 24 65.3 24 1019.6 24 1017.3 24 10.0 24 7.3 24 12.0 999.9 89.1 66.9 0.00G 999.9 000000 724050 13743 20150831 80.3 24 67.1 24 1018.5 24 1016.2 24 10.0 24 7.0 24 11.1 999.9 88.0 69.1 0.00G 999.9 000000 724050 13743 20150901 81.7 24 68.2 24 1017.5 24 1015.2 24 10.0 24 4.7 24 8.9 999.9 95.0 71.1 0.00G 999.9 000000 724050 13743 20150902 83.2 24 70.1 24 1016.4 24 1014.2 24 9.4 24 4.0 24 8.0 999.9 95.0 71.1 0.00G 999.9 000000 724050 13743 20150903 82.2 24 68.2 24 1012.9 23 1010.5 24 10.0 24 5.2 24 18.1 22.9 96.1 73.9 0.00G 999.9 010010 724050 13743 20150904 82.4 24 69.9 24 1014.6 24 1012.3 24 9.6 24 5.1 24 9.9 999.9 96.1 73.9 0.00G 999.9 000000 724050 13743 20150905 79.2 24 67.6 24 1021.9 22 1019.5 24 10.0 24 7.3 24 11.1 999.9 84.9* 73.4* 0.00G 999.9 000000 724050 13743 20150906 76.8 24 59.8 24 1022.6 24 1020.3 24 10.0 24 5.1 24 13.0 999.9 87.1 68.0 0.00G 999.9 000000 724050 13743 20150907 78.6 24 64.2 24 1020.0 24 1017.8 24 10.0 24 3.7 24 8.9 999.9 90.0 68.0 0.00G 999.9 000000 724050 13743 20150908 81.6 24 69.2 24 1017.4 24 1015.0 24 10.0 24 7.6 24 11.1 999.9 91.9 69.1 0.00G 999.9 000000 724050 13743 20150909 83.0 24 71.5 24 1013.2 22 1011.2 24 10.0 24 7.7 24 11.1 999.9 93.9 72.0 0.00G 999.9 000000 724050 13743 20150910 78.2 24 71.1 24 1009.3 17 1006.9 24 10.0 24 7.4 24 14.0 17.1 93.9 72.0 0.10G 999.9 010000 724050 13743 20150911 74.5 24 58.8 24 1009.1 24 1006.8 24 10.0 24 8.2 24 13.0 14.0 87.1 64.9 0.01G 999.9 000000 724050 13743 20150912 72.3 24 66.1 24 1007.9 22 1005.4 24 9.6 24 4.5 24 11.1 25.1 87.1 64.9 0.00G 999.9 010000 724050 13743 20150913 68.9 24 53.5 24 1008.6 24 1006.4 24 10.0 24 9.4 24 15.9 21.0 75.0 63.0 0.16G 999.9 010000 724050 13743 20150914 66.7 24 45.3 24 1019.4 24 1017.1 24 10.0 24 7.8 24 12.0 21.0 80.1 55.0 0.00G 999.9 000000 724050 13743 20150915 71.0 24 51.1 24 1026.4 24 1024.0 24 10.0 24 3.8 24 7.0 999.9 84.0 55.0 0.00G 999.9 000000 724050 13743 20150916 73.5 24 56.0 24 1026.9 24 1024.5 24 10.0 24 2.3 24 8.0 999.9 86.0 60.1 0.00G 999.9 000000 724050 13743 20150917 74.0 24 59.0 24 1022.3 24 1020.0 24 10.0 24 4.2 24 8.9 999.9 86.0 60.1 0.00G 999.9 000000 724050 13743 20150918 74.4 24 59.9 24 1017.3 24 1014.9 24 10.0 24 5.3 24 9.9 999.9 87.1 63.0 0.00G 999.9 000000 724050 13743 20150919 75.1 24 64.6 24 1014.1 22 1012.0 24 9.3 24 6.3 24 9.9 999.9 87.1 64.9 0.00G 999.9 000000 724050 13743 20150920 74.2 24 60.5 24 1014.3 24 1012.0 24 10.0 24 8.8 24 13.0 19.0 87.1 66.9 0.00G 999.9 000000 724050 13743 20150921 67.7 24 52.4 24 1019.5 20 1017.4 24 9.7 24 9.5 24 12.0 15.0 82.0 63.0 0.00G 999.9 010000 724050 13743 20150922 66.4 24 58.1 24 1023.0 24 1020.7 24 10.0 24 8.3 24 9.9 999.9 75.0 62.1 0.23G 999.9 010000 724050 13743 20150923 69.8 24 53.8 24 1023.6 24 1021.2 24 10.0 24 8.5 24 13.0 17.1 80.1 60.1 0.00G 999.9 000000 724050 13743 20150924 69.3 24 53.2 24 1024.2 24 1021.9 24 10.0 24 6.3 24 13.0 18.1 80.1 60.1 0.00G 999.9 000000 724050 13743 20150925 68.5 24 57.7 24 1025.1 22 1022.8 24 10.0 24 8.4 24 15.0 18.1 79.0 60.1 0.00G 999.9 010000 724050 13743 20150926 68.2 24 54.7 24 1026.6 24 1024.3 24 10.0 24 10.9 24 18.1 22.9 73.9 63.0 0.00G 999.9 010000 724050 13743 20150927 67.1 24 57.1 24 1027.6 24 1025.2 24 10.0 24 10.0 24 13.0 999.9 75.0 62.1 0.00G 999.9 010000 724050 13743 20150928 72.8 24 64.6 24 1022.3 21 1020.3 24 9.7 24 6.5 24 9.9 15.0 82.9 62.1 0.00G 999.9 000000 724050 13743 20150929 75.1 24 70.1 24 1015.8 17 1013.9 24 9.6 24 4.8 24 14.0 20.0 82.9 66.9 0.00G 999.9 010000 724050 13743 20150930 73.6 24 70.2 24 1007.9 14 1005.5 24 8.8 24 8.2 24 17.1 25.1 80.1 69.1 1.65G 999.9 010000 724050 13743 20151001 60.0 24 56.5 24 1015.2 13 1013.4 24 5.7 24 12.5 24 19.0 24.1 78.1 57.0 0.12G 999.9 010000 724050 13743 20151002 54.7 24 52.1 24 1018.7 17 1016.4 24 7.7 24 15.3 24 20.0 28.0 57.9* 51.1* 0.85G 999.9 010000 724050 13743 20151003 52.9 24 50.8 24 1019.6 14 1017.2 24 4.9 24 15.1 24 20.0 26.0 57.9 50.0 0.93G 999.9 010000 724050 13743 20151004 57.0 24 53.2 24 1022.1 23 1019.7 24 8.7 24 14.9 24 20.0 26.0 59.0 50.0 0.03G 999.9 010000 724050 13743 20151005 58.6 24 48.1 24 1021.1 20 1019.0 24 10.0 24 8.8 24 13.0 999.9 69.1 52.0 0.00G 999.9 000000 724050 13743 20151006 61.8 24 49.8 24 1018.5 24 1016.1 24 10.0 24 3.4 24 8.0 999.9 77.0 50.0 0.00G 999.9 000000 724050 13743 20151007 65.9 24 56.8 24 1016.7 24 1014.3 24 10.0 24 3.0 24 11.1 17.1 78.1 50.0 0.00G 999.9 000000 724050 13743 20151008 66.0 24 57.2 24 1019.2 24 1017.0 24 9.2 24 2.5 24 7.0 999.9 78.1 57.0 0.00G 999.9 000000 724050 13743 20151009 68.5 24 61.6 24 1015.4 23 1013.0 24 10.0 24 6.6 24 22.0 29.9 79.0 57.0 0.02G 999.9 010010 724050 13743 20151010 62.4 24 49.5 24 1018.1 24 1015.8 24 10.0 24 8.2 24 15.0 22.0 79.0 55.9 0.38G 999.9 000000 724050 13743 20151011 57.7 24 46.3 24 1016.9 24 1014.5 24 10.0 24 2.3 24 8.0 999.9 71.1 46.9 0.00G 999.9 000000 724050 13743 20151012 60.8 24 51.7 24 1011.4 24 1009.1 24 10.0 24 4.5 24 11.1 999.9 75.0 46.9 0.00G 999.9 000000 724050 13743 20151013 65.7 24 57.1 24 1003.1 24 1000.8 24 10.0 24 5.9 24 8.0 999.9 78.1 50.0 0.00G 999.9 000000 724050 13743 20151014 63.5 24 49.6 24 1008.9 24 1006.5 24 10.0 24 6.2 24 14.0 999.9 78.1 55.0 0.00G 999.9 000000 724050 13743 20151015 60.4 24 43.3 24 1016.4 24 1014.1 24 10.0 24 7.0 24 13.0 18.1 71.1 53.1 0.00G 999.9 000000 724050 13743 20151016 58.6 24 42.6 24 1017.2 24 1014.9 24 10.0 24 7.8 24 15.9 22.9 68.0 51.1 0.00G 999.9 000000 724050 13743 20151017 53.8 24 34.7 24 1021.5 24 1019.1 24 10.0 24 8.2 24 15.9 22.0 66.9 46.0 0.00G 999.9 000000 724050 13743 20151018 46.8 24 27.4 24 1027.2 24 1024.9 24 10.0 24 9.6 24 15.9 25.1 60.1 37.9 0.00G 999.9 000000 724050 13743 20151019 46.0 24 31.4 24 1031.8 24 1029.5 24 10.0 24 5.7 24 9.9 999.9 55.9 37.0 0.00G 999.9 000000 724050 13743 20151020 52.5 24 39.5 24 1027.2 24 1024.9 24 10.0 24 6.5 24 9.9 999.9 68.0 37.0 0.00G 999.9 000000 724050 13743 20151021 58.0 24 47.4 24 1026.2 24 1023.8 24 9.9 24 3.8 24 7.0 999.9 73.0 44.1 0.00G 999.9 000000 724050 13743 20151022 60.8 24 50.9 24 1023.9 24 1021.6 24 10.0 24 5.1 24 8.0 999.9 75.9 48.0 0.00G 999.9 000000 724050 13743 20151023 63.7 24 48.6 24 1022.5 24 1020.2 24 10.0 24 6.8 24 12.0 999.9 75.9 50.0 0.00G 999.9 000000 724050 13743 20151024 54.5 24 43.4 24 1026.2 24 1023.8 24 10.0 24 5.1 24 11.1 999.9 62.1* 46.4* 0.00G 999.9 000000 724050 13743 20151025 60.7 24 52.1 24 1020.6 24 1018.3 24 10.0 24 7.9 24 15.0 21.0 71.1 46.9 0.01G 999.9 010000 724050 13743 20151026 55.0 24 38.1 24 1028.9 24 1026.5 24 10.0 24 8.0 24 12.0 999.9 71.1 48.0 0.02G 999.9 000000 724050 13743 20151027 51.1 24 42.8 24 1031.7 23 1029.3 24 10.0 24 4.5 24 9.9 999.9 61.0 44.1 0.00G 999.9 010000 724050 13743 20151028 62.3 24 58.6 24 1020.6 15 1016.0 24 8.7 24 10.3 24 17.1 26.0 70.0 44.1 0.01G 999.9 010000 724050 13743 20151029 66.9 24 58.1 24 1005.0 20 1002.4 24 9.6 24 8.4 24 20.0 26.0 73.0 55.0 0.67G 999.9 010000 724050 13743 20151030 55.9 24 38.1 24 1014.9 24 1012.2 24 10.0 24 9.2 24 18.1 20.0 73.0 48.9 0.03G 999.9 000000 724050 13743 20151031 51.1 24 39.1 24 1022.1 24 1019.8 24 10.0 24 5.4 24 8.9 999.9 61.0 42.1 0.00G 999.9 000000 724050 13743 20151101 57.3 24 50.3 24 1016.2 24 1013.8 24 10.0 24 8.4 24 12.0 999.9 64.0 42.1 0.01G 999.9 010000 724050 13743 20151102 59.7 24 53.1 24 1018.5 24 1016.1 24 9.7 24 1.6 24 5.1 999.9 66.0 53.1 0.03G 999.9 000000 724050 13743 20151103 57.1 24 48.0 24 1022.2 24 1019.9 24 9.9 24 1.2 24 4.1 999.9 72.0 46.0 0.00G 999.9 000000 724050 13743 20151104 59.7 24 48.1 24 1026.0 24 1023.7 24 10.0 24 1.6 24 6.0 999.9 75.0 46.0 0.00G 999.9 000000 724050 13743 20151105 62.4 24 58.4 24 1024.4 16 1022.7 24 6.5 24 2.8 24 7.0 999.9 75.0 48.0 0.17G 999.9 110000 724050 13743 20151106 68.0 24 63.3 24 1017.1 17 1015.4 24 7.6 24 8.0 24 17.1 22.0 80.1 57.9 0.15G 999.9 100000 724050 13743 20151107 64.3 24 56.4 24 1017.7 24 1015.2 24 9.9 24 5.3 24 9.9 999.9 80.1 55.9 0.00G 999.9 010000 724050 13743 20151108 53.7 24 33.6 24 1027.6 24 1025.2 24 10.0 24 7.4 24 11.1 18.1 71.1 46.9 0.11G 999.9 000000 724050 13743 20151109 47.7 24 38.0 24 1030.2 24 1027.9 24 10.0 24 4.4 24 9.9 999.9 57.9 41.0 0.00G 999.9 010000 724050 13743 20151110 55.3 24 53.3 24 1019.1 14 1015.2 24 4.8 24 9.6 24 15.9 25.1 61.0 41.0 0.67G 999.9 010000 724050 13743 20151111 57.4 24 46.6 24 1013.3 24 1010.7 24 10.0 24 10.4 24 17.1 24.1 64.0 51.1 0.11G 999.9 010000 724050 13743 20151112 55.0 24 47.8 24 1010.8 24 1008.5 24 10.0 24 5.5 24 13.0 19.0 66.0 48.9 0.00G 999.9 010000 724050 13743 20151113 58.8 24 35.0 24 1008.1 24 1005.8 24 10.0 24 9.3 24 19.0 34.0 66.0 48.9 0.01G 999.9 000000 724050 13743 20151114 50.7 24 22.6 24 1020.3 24 1017.9 24 10.0 24 11.2 24 15.9 24.1 62.1 46.0 0.00G 999.9 000000 724050 13743 20151115 48.0 24 31.1 24 1028.0 24 1025.6 24 10.0 24 6.2 24 12.0 999.9 64.0 36.0 0.00G 999.9 000000 724050 13743 20151116 54.8 24 34.5 24 1026.0 24 1023.6 24 10.0 24 4.3 24 8.0 999.9 70.0 36.0 0.00G 999.9 000000 724050 13743 20151117 52.9 24 42.9 24 1028.3 23 1025.9 24 10.0 24 5.0 24 12.0 15.0 70.0 42.1 0.00G 999.9 000000 724050 13743 20151118 54.6 24 46.9 24 1029.2 21 1026.9 24 10.0 24 7.1 24 13.0 999.9 64.9 46.0 0.00G 999.9 000000 724050 13743 20151119 62.9 24 57.9 24 1022.0 13 1017.0 24 7.5 24 7.1 24 17.1 24.1 64.9 46.0 0.05G 999.9 110000 724050 13743 20151120 55.8 24 35.5 24 1021.1 23 1018.2 24 9.0 24 9.6 24 18.1 24.1 64.9 48.0 0.58G 999.9 010000 724050 13743 20151121 46.6 24 27.7 24 1023.2 24 1020.9 24 10.0 24 5.5 24 9.9 999.9 60.1 37.9 0.00G 999.9 000000 724050 13743 20151122 47.3 24 33.1 24 1015.4 24 1013.1 24 10.0 24 10.3 24 19.0 28.9 55.0 37.9 0.00G 999.9 000000 724050 13743 20151123 37.7 24 17.9 24 1020.5 24 1018.2 24 10.0 24 11.7 24 17.1 22.9 48.9 32.0 0.00G 999.9 000000 724050 13743 20151124 42.2 24 24.4 24 1027.2 24 1024.8 24 10.0 24 5.9 24 12.0 999.9 55.9 32.0 0.00G 999.9 000000 724050 13743 20151125 45.7 24 33.8 24 1036.6 24 1034.3 24 10.0 24 4.4 24 7.0 999.9 57.9 33.1 0.00G 999.9 000000 724050 13743 20151126 49.2 24 40.1 24 1041.0 24 1038.8 24 9.8 24 3.2 24 7.0 999.9 64.0 37.0 0.00G 999.9 000000 724050 13743 20151127 51.3 24 45.3 24 1034.0 24 1031.9 24 9.2 24 3.3 24 9.9 999.9 64.9 39.9 0.00G 999.9 000000 724050 13743 20151128 54.6 24 49.1 24 1023.8 24 1021.4 24 10.0 24 4.4 24 8.0 999.9 64.9 42.1 0.00G 999.9 000000 724050 13743 20151129 52.2 24 48.7 24 1022.4 15 1020.1 24 7.9 24 6.7 24 13.0 999.9 64.0 46.9 0.07G 999.9 010000 724050 13743 20151130 42.5 24 35.5 24 1027.0 21 1024.8 24 7.9 24 9.3 24 12.0 999.9 59.0 39.0 0.10G 999.9 010000 724050 13743 20151201 46.1 24 44.6 24 1020.7 14 1018.8 24 4.9 24 4.6 24 8.9 999.9 48.0 39.0 0.41G 999.9 010000 724050 13743 20151202 51.2 24 50.5 24 1012.9 12 1009.7 24 3.3 24 4.4 24 13.0 999.9 59.0 44.1 0.66G 999.9 110000 724050 13743 20151203 49.6 24 34.9 24 1015.0 24 1012.5 24 10.0 24 11.6 24 22.0 29.9 59.0 42.1 0.20G 999.9 000000 724050 13743 20151204 44.2 24 30.0 24 1031.6 23 1028.8 24 10.0 24 6.1 24 12.0 999.9 53.1 36.0 0.00G 999.9 000000 724050 13743 20151205 43.6 24 33.6 24 1038.1 24 1035.8 24 10.0 24 2.1 24 5.1 999.9 54.0 33.1 0.00G 999.9 000000 724050 13743 20151206 41.7 24 35.6 24 1034.3 22 1032.3 24 7.8 24 2.6 24 8.9 999.9 54.0 33.1 0.00G 999.9 100000 724050 13743 20151207 46.2 24 34.8 24 1023.6 24 1021.2 24 9.5 24 3.4 24 8.0 999.9 60.1 33.1 0.00G 999.9 000000 724050 13743 20151208 47.0 24 33.8 24 1020.4 24 1018.0 24 10.0 24 4.2 24 8.0 999.9 60.1 36.0 0.00G 999.9 000000 724050 13743 20151209 43.9 24 39.4 24 1019.3 21 1016.9 24 6.9 24 3.7 24 8.9 999.9 55.9 37.9 0.00G 999.9 100000 724050 13743 20151210 49.0 24 42.8 24 1015.2 24 1012.9 24 7.3 24 2.4 24 7.0 999.9 63.0 39.0 0.00G 999.9 010000 724050 13743 20151211 51.6 24 45.3 24 1014.0 24 1011.7 24 9.7 24 3.6 24 8.9 999.9 66.0 41.0 0.00G 999.9 000000 724050 13743 20151212 53.9 24 48.8 24 1019.4 24 1017.1 24 8.7 24 2.6 24 7.0 999.9 68.0 42.1 0.00G 999.9 000000 724050 13743 20151213 56.3 24 52.2 24 1021.1 24 1018.8 24 8.0 24 3.7 24 8.0 999.9 71.1 45.0 0.00G 999.9 100000 724050 13743 20151214 60.0 24 56.3 24 1012.1 21 1010.2 24 9.5 24 8.2 24 17.1 22.0 71.1 48.0 0.00G 999.9 010000 724050 13743 20151215 61.7 24 49.8 24 1004.5 23 1001.5 24 10.0 24 11.4 24 19.0 29.9 69.1 53.1 0.13G 999.9 010000 724050 13743 20151216 49.7 24 38.7 24 1017.4 24 1015.0 24 10.0 24 5.0 24 9.9 17.1 66.9 41.0 0.00G 999.9 000000 724050 13743 20151217 49.8 24 46.5 24 1014.0 17 1011.1 24 7.6 24 3.4 24 8.9 999.9 57.0 41.0 0.00G 999.9 010000 724050 13743 20151218 47.5 24 37.6 24 1010.0 22 1007.3 24 9.3 24 9.8 24 17.1 26.0 54.0 39.9 0.42G 999.9 100000 724050 13743 20151219 37.4 24 17.0 24 1021.4 24 1019.1 24 10.0 24 10.7 24 22.9 33.0 52.0 30.0 0.00G 999.9 000000 724050 13743 20151220 38.7 24 18.3 24 1033.1 24 1030.8 24 10.0 24 4.8 24 8.9 999.9 46.0 30.0 0.00G 999.9 000000 724050 13743 20151221 45.9 24 33.3 24 1027.5 24 1025.1 24 10.0 24 9.3 24 15.9 21.0 57.9 32.0 0.00G 999.9 000000 724050 13743 20151222 55.1 24 50.1 24 1017.7 21 1015.0 24 9.6 24 8.1 24 11.1 999.9 62.1 37.9 0.07G 999.9 010000 724050 13743 20151223 59.3 24 58.1 24 1017.6 11 1014.6 24 5.1 24 5.0 24 8.0 999.9 66.0 51.1 0.07G 999.9 110000 724050 13743 20151224 65.9 24 63.3 24 1013.4 19 1011.2 24 9.4 24 9.8 24 17.1 20.0 71.1 54.0 1.76G 999.9 010000 724050 13743 20151225 64.3 24 63.8 24 1020.3 15 1018.0 24 5.1 24 4.2 24 22.0 29.9 71.1 60.1 0.11G 999.9 110000 724050 13743 20151226 57.8 24 54.1 24 1026.7 15 1024.0 24 8.9 24 7.2 24 18.1 999.9 69.1 52.0 0.30G 999.9 110000 724050 13743 20151227 57.0 24 54.6 24 1018.7 19 1017.3 24 7.5 24 8.3 24 17.1 22.0 70.0 51.1 0.01G 999.9 010000 724050 13743 20151228 51.1 24 42.0 24 1024.6 22 1021.7 24 10.0 24 12.3 24 20.0 28.0 70.0 43.0 0.02G 999.9 010000 724050 13743 20151229 46.8 24 44.2 24 1018.8 17 1016.2 24 6.9 24 6.6 24 11.1 999.9 60.1 41.0 0.71G 999.9 010000 724050 13743 20151230 51.0 24 48.7 24 1023.3 9 1020.2 24 5.2 24 4.8 24 8.9 999.9 55.0 44.1 0.02G 999.9 110000 724050 13743 20151231 52.2 24 46.6 24 1019.8 18 1017.1 24 7.9 24 5.6 24 11.1 999.9 57.0 48.9 0.15G 999.9 010000 fluids-1.0.22/tests/gsod/2015/722324-03071.op0000644000175000017500000014327214302004506016653 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20150101 23.5 24 22.0 24 9999.9 0 923.2 19 4.9 24 0.6 24 4.1 999.9 28.0 21.2 0.00G 999.9 001000 722324 03071 20150102 30.3 24 29.3 24 9999.9 0 920.3 24 7.1 24 1.3 24 5.1 999.9 32.5 27.5 0.07G 999.9 011000 722324 03071 20150103 35.4 24 31.8 24 9999.9 0 915.0 24 9.7 24 4.7 24 17.1 22.9 49.6 29.3 0.32G 999.9 011000 722324 03071 20150104 35.7 24 27.6 24 9999.9 0 927.5 24 10.0 24 5.1 24 9.9 999.9 46.8 29.1 0.00G 999.9 000000 722324 03071 20150105 37.5 24 28.5 24 9999.9 0 932.2 24 10.0 24 5.7 24 11.1 15.0 57.2* 27.5* 0.00G 999.9 000000 722324 03071 20150106 45.2 23 35.1 23 9999.9 0 927.7 21 10.0 23 5.4 23 11.1 15.0 56.1 32.0 0.00G 999.9 000000 722324 03071 20150107 36.5 24 30.0 24 9999.9 0 933.4 24 9.4 24 9.0 24 27.0 31.1 50.9 28.2 0.00G 999.9 000000 722324 03071 20150108 27.3 24 12.1 24 9999.9 0 934.0 24 10.0 24 7.1 24 15.0 20.0 41.2 21.2 0.00G 999.9 000000 722324 03071 20150109 34.9 24 23.7 24 9999.9 0 927.2 24 10.0 24 9.2 24 20.0 27.0 40.3 31.3 0.00G 999.9 010000 722324 03071 20150110 31.4 24 18.2 24 9999.9 0 928.6 24 9.5 24 6.2 24 11.1 999.9 40.3 27.9 0.00G 999.9 011000 722324 03071 20150111 40.4 24 34.3 24 9999.9 0 920.2 24 7.7 24 7.3 24 13.0 18.1 63.7 31.3 0.03G 999.9 101000 722324 03071 20150112 41.6 24 36.3 24 9999.9 0 924.0 24 6.1 24 8.2 24 15.9 22.0 60.1 32.9 0.00G 999.9 011000 722324 03071 20150113 30.4 24 29.4 24 9999.9 0 929.8 24 5.6 24 6.6 24 11.1 999.9 33.1 27.5 0.00G 999.9 000000 722324 03071 20150114 33.4 24 30.9 24 9999.9 0 926.4 24 6.6 24 3.6 24 6.0 999.9 37.4 31.8 0.00G 999.9 000000 722324 03071 20150115 42.1 24 33.3 24 9999.9 0 926.7 24 10.0 24 4.6 24 8.9 999.9 56.3 37.4 0.00G 999.9 000000 722324 03071 20150116 44.0 24 29.4 24 9999.9 0 926.6 24 10.0 24 4.8 24 14.0 19.0 61.2 29.7 0.00G 999.9 000000 722324 03071 20150117 51.4 24 27.6 24 9999.9 0 920.4 24 10.0 24 9.6 24 19.0 24.1 66.7 40.1 0.00G 999.9 000000 722324 03071 20150118 48.0 24 25.8 24 9999.9 0 927.1 24 10.0 24 5.7 24 17.1 19.0 67.6 29.5 0.00G 999.9 000000 722324 03071 20150119 55.3 24 28.5 24 9999.9 0 919.9 24 10.0 24 6.8 24 11.1 999.9 74.3 41.2 0.00G 999.9 000000 722324 03071 20150120 54.2 24 29.5 24 9999.9 0 917.1 24 10.0 24 4.5 24 13.0 21.0 71.1 38.3 0.00G 999.9 000000 722324 03071 20150121 44.2 24 32.5 24 9999.9 0 920.7 24 9.9 24 7.9 24 13.0 18.1 61.3 36.5 0.00G 999.9 000000 722324 03071 20150122 37.3 24 36.6 24 9999.9 0 922.8 24 6.2 24 12.0 24 20.0 27.0 43.2 33.8 0.01G 999.9 011000 722324 03071 20150123 34.9 24 32.0 24 9999.9 0 927.0 24 6.1 24 7.6 24 14.0 18.1 46.9 28.4 0.02G 999.9 011000 722324 03071 20150124 42.2 24 28.5 24 9999.9 0 924.9 24 10.0 24 7.8 24 9.9 999.9 59.4 32.9 0.00G 999.9 000000 722324 03071 20150125 49.3 24 28.4 24 9999.9 0 921.9 24 10.0 24 7.8 24 11.1 15.9 63.0 36.5 0.00G 999.9 000000 722324 03071 20150126 49.7 24 30.4 24 9999.9 0 925.8 24 10.0 24 3.8 24 8.9 999.9 68.2 36.5 0.00G 999.9 000000 722324 03071 20150127 53.6 24 33.7 24 9999.9 0 924.5 24 10.0 24 3.9 24 7.0 999.9 74.3 39.2 0.00G 999.9 000000 722324 03071 20150128 61.5 24 38.6 24 9999.9 0 921.5 24 10.0 24 4.8 24 12.0 17.1 79.2 43.7 0.00G 999.9 000000 722324 03071 20150129 59.0 24 39.2 24 9999.9 0 923.8 24 10.0 24 9.2 24 21.0 28.0 74.5 46.0 0.00G 999.9 000000 722324 03071 20150130 47.5 24 29.3 24 9999.9 0 930.0 23 10.0 24 9.3 24 15.0 19.0 57.2 42.3 0.00G 999.9 010000 722324 03071 20150131 46.7 24 42.0 24 9999.9 0 920.2 20 8.0 24 7.3 24 15.0 999.9 53.6 42.1 0.13G 999.9 010000 722324 03071 20150201 49.7 24 46.8 24 9999.9 0 917.8 18 5.5 24 7.3 24 15.0 22.0 53.4 45.5 0.02G 999.9 100000 722324 03071 20150202 40.0 24 27.6 24 9999.9 0 925.7 24 10.0 24 7.7 24 17.1 22.9 52.7 31.3 0.01G 999.9 000000 722324 03071 20150203 45.2 24 32.4 24 9999.9 0 921.0 24 10.0 24 6.0 24 14.0 999.9 60.4 37.8 0.00G 999.9 000000 722324 03071 20150204 50.2 24 40.6 24 9999.9 0 917.7 24 5.5 24 8.9 24 24.1 35.0 76.1 39.2 0.00G 999.9 100000 722324 03071 20150205 35.8 24 31.1 24 9999.9 0 927.8 24 7.3 24 9.5 24 25.1 35.9 56.8 31.5 0.00G 999.9 000000 722324 03071 20150206 43.8 24 33.8 24 9999.9 0 925.8 24 9.3 24 4.2 24 12.0 15.9 70.7 31.8 0.00G 999.9 000000 722324 03071 20150207 58.0 24 39.3 24 9999.9 0 918.9 24 10.0 24 8.3 24 14.0 21.0 81.7 44.6 0.00G 999.9 000000 722324 03071 20150208 65.7 24 27.3 24 9999.9 0 915.5 24 10.0 24 10.3 24 17.1 22.9 78.8 52.9 0.00G 999.9 000000 722324 03071 20150209 58.6 24 32.8 24 9999.9 0 921.8 24 10.0 24 3.2 24 13.0 19.0 77.9 41.2 0.00G 999.9 000000 722324 03071 20150210 65.0 24 32.0 24 9999.9 0 917.4 24 10.0 24 6.6 24 12.0 15.9 82.4 49.6 0.00G 999.9 000000 722324 03071 20150211 59.3 24 38.6 24 9999.9 0 916.5 24 9.9 24 10.7 24 22.0 28.9 78.8 47.3 0.00G 999.9 000000 722324 03071 20150212 45.7 24 26.8 24 9999.9 0 929.6 24 10.0 24 8.9 24 19.0 26.0 51.8 41.4 0.00G 999.9 000000 722324 03071 20150213 52.2 24 32.5 24 9999.9 0 926.6 24 10.0 24 4.5 24 12.0 999.9 69.1 41.2 0.00G 999.9 000000 722324 03071 20150214 57.8 24 42.3 24 9999.9 0 924.9 24 10.0 24 2.2 24 12.0 15.0 73.0 42.1 0.00G 999.9 000000 722324 03071 20150215 63.3 24 47.6 24 9999.9 0 918.1 24 10.0 24 9.7 24 14.0 22.0 77.2 54.9 0.00G 999.9 000000 722324 03071 20150216 45.3 24 29.3 24 9999.9 0 918.1 24 10.0 24 11.8 24 20.0 28.9 9999.9 32.0* 0.00G 999.9 000000 722324 03071 20150217 39.8 24 29.2 24 9999.9 0 923.0 24 9.5 24 6.0 24 14.0 18.1 48.7 33.8 0.00G 999.9 011000 722324 03071 20150218 46.0 24 29.7 24 9999.9 0 923.6 24 10.0 24 5.6 24 12.0 15.9 68.7 33.3 0.00G 999.9 000000 722324 03071 20150219 52.4 24 31.9 24 9999.9 0 922.7 24 10.0 24 7.0 24 15.0 22.0 72.5 37.8 0.00G 999.9 000000 722324 03071 20150220 61.0 24 37.8 24 9999.9 0 913.3 24 10.0 24 10.7 24 15.0 20.0 79.7 47.3 0.00G 999.9 000000 722324 03071 20150221 60.6 24 30.4 24 9999.9 0 913.1 24 10.0 24 7.4 24 15.9 22.0 74.3 44.2 0.00G 999.9 000000 722324 03071 20150222 47.2 24 38.3 24 9999.9 0 918.2 24 8.5 24 11.6 24 22.9 27.0 65.3 27.9 0.00G 999.9 010000 722324 03071 20150223 23.7 24 22.1 24 9999.9 0 931.0 24 7.0 24 10.5 24 17.1 22.0 28.2 20.8 0.03G 999.9 001000 722324 03071 20150224 28.6 24 25.1 24 9999.9 0 924.4 24 8.4 24 1.4 24 6.0 999.9 42.3 24.3 0.00G 999.9 000000 722324 03071 20150225 42.9 24 31.6 24 9999.9 0 914.7 24 9.8 24 8.8 24 19.0 26.0 64.9 34.0 0.00G 999.9 010000 722324 03071 20150226 43.0 24 29.0 24 9999.9 0 918.3 24 10.0 24 11.3 24 21.0 27.0 63.5 31.1 0.00G 999.9 000000 722324 03071 20150227 24.8 24 17.7 24 9999.9 0 925.6 10 5.3 24 10.4 24 14.0 19.0 31.6 20.5 0.00G 999.9 001000 722324 03071 20150228 23.2 24 21.6 24 9999.9 0 9999.9 0 2.4 24 6.4 24 12.0 999.9 31.8 19.4 0.02G 999.9 001000 722324 03071 20150301 32.5 24 32.5 24 9999.9 0 923.6 24 1.6 24 4.5 24 9.9 999.9 37.9 30.9 0.00G 999.9 100000 722324 03071 20150302 34.4 21 34.4 21 9999.9 0 925.6 21 2.7 21 7.4 21 13.0 15.0 37.6 32.4 0.00G 999.9 100000 722324 03071 20150303 44.6 24 42.9 24 9999.9 0 916.1 24 3.6 24 4.2 24 13.0 17.1 59.5* 37.4* 0.00G 999.9 100000 722324 03071 20150304 48.1 24 45.0 24 9999.9 0 914.1 24 8.4 24 6.1 24 21.0 27.0 58.1 30.2 0.00G 999.9 011000 722324 03071 20150305 30.3 24 19.9 24 9999.9 0 930.8 24 9.5 24 8.3 24 19.0 26.0 43.5 25.3 0.01G 999.9 001000 722324 03071 20150306 38.7 24 25.2 24 9999.9 0 931.1 24 10.0 24 5.1 24 12.0 15.0 58.1 27.9 0.00G 999.9 000000 722324 03071 20150307 47.6 24 27.2 24 9999.9 0 927.4 24 10.0 24 6.2 24 12.0 15.9 61.9 35.6 0.00G 999.9 000000 722324 03071 20150308 53.2 24 33.3 24 9999.9 0 920.6 24 10.0 24 5.7 24 12.0 17.1 66.6 45.5 0.00G 999.9 000000 722324 03071 20150309 54.7 24 48.4 24 9999.9 0 916.3 24 8.2 24 6.0 24 11.1 15.0 64.9 50.5 0.00G 999.9 110000 722324 03071 20150310 51.9 24 44.2 24 9999.9 0 918.4 24 8.2 24 2.6 24 7.0 999.9 69.4 39.2 0.02G 999.9 100000 722324 03071 20150311 58.3 24 41.4 24 9999.9 0 923.5 24 10.0 24 3.0 24 11.1 15.9 71.1 44.6 0.00G 999.9 000000 722324 03071 20150312 55.7 24 36.4 24 9999.9 0 924.0 24 10.0 24 3.0 24 8.0 999.9 69.8 39.6 0.00G 999.9 000000 722324 03071 20150313 56.9 24 36.6 24 9999.9 0 920.4 24 10.0 24 2.7 24 15.0 15.9 72.7 41.2 0.00G 999.9 000000 722324 03071 20150314 59.0 24 36.2 24 9999.9 0 923.2 24 10.0 24 6.0 24 17.1 24.1 70.0 50.4 0.00G 999.9 000000 722324 03071 20150315 53.7 24 28.8 24 9999.9 0 926.6 24 10.0 24 2.6 24 9.9 999.9 68.9 36.9 0.00G 999.9 000000 722324 03071 20150316 60.0 24 34.6 24 9999.9 0 925.2 24 10.0 24 4.1 24 11.1 21.0 75.2 45.5 0.00G 999.9 000000 722324 03071 20150317 59.2 24 50.9 24 9999.9 0 921.7 24 8.5 24 6.2 24 15.0 15.9 71.6 52.2 0.00G 999.9 010000 722324 03071 20150318 52.1 24 46.2 24 9999.9 0 920.5 24 9.9 24 6.0 24 13.0 15.0 64.8 46.4 0.12G 999.9 010000 722324 03071 20150319 63.2 24 50.8 24 9999.9 0 915.4 24 9.9 24 7.6 24 15.0 19.0 77.2 55.6 0.00G 999.9 000000 722324 03071 20150320 55.6 24 48.8 24 9999.9 0 921.4 24 7.6 24 9.0 24 18.1 24.1 74.7 46.8 0.01G 999.9 010010 722324 03071 20150321 52.3 24 51.6 24 9999.9 0 922.3 24 5.6 24 3.3 24 14.0 17.1 55.6 50.7 0.01G 999.9 010000 722324 03071 20150322 59.3 24 52.1 24 9999.9 0 919.4 24 7.3 24 3.8 24 9.9 15.9 78.3 51.6 0.10G 999.9 010000 722324 03071 20150323 67.1 24 43.6 24 9999.9 0 918.8 19 10.0 24 6.4 24 15.0 22.9 83.7 50.4 0.00G 999.9 000000 722324 03071 20150324 71.1 24 42.2 24 9999.9 0 916.2 24 10.0 24 8.9 24 14.0 19.0 83.3 58.5 0.00G 999.9 000000 722324 03071 20150325 71.4 24 41.1 24 9999.9 0 914.2 24 10.0 24 6.9 24 18.1 27.0 84.4 59.9 0.00G 999.9 000000 722324 03071 20150326 56.3 24 32.4 24 9999.9 0 922.4 24 8.8 24 10.1 24 25.1 38.1 78.4 41.7 0.00G 999.9 000000 722324 03071 20150327 60.2 24 28.5 24 9999.9 0 923.5 24 8.5 24 6.3 24 13.0 19.0 78.8 45.0 0.00G 999.9 000000 722324 03071 20150328 69.1 24 33.2 24 9999.9 0 919.4 24 9.8 24 8.9 24 14.0 18.1 87.3 54.9 0.00G 999.9 000000 722324 03071 20150329 73.5 24 36.4 24 9999.9 0 917.8 24 10.0 24 8.3 24 19.0 27.0 89.6 55.0 0.00G 999.9 000000 722324 03071 20150330 66.3 24 42.3 24 9999.9 0 922.6 23 10.0 24 6.2 24 15.9 22.9 81.7 51.8 0.00G 999.9 000000 722324 03071 20150331 71.9 24 54.1 24 9999.9 0 918.1 23 9.9 24 6.6 24 13.0 24.1 81.5 60.8 0.00G 999.9 000000 722324 03071 20150401 73.0 24 46.7 24 9999.9 0 913.6 18 9.8 24 9.2 24 15.0 20.0 85.8 61.7 0.00G 999.9 000000 722324 03071 20150402 75.0 24 48.0 24 9999.9 0 913.4 24 10.0 24 10.7 24 20.0 28.9 88.9 61.3 0.03G 999.9 000000 722324 03071 20150403 68.7 24 44.5 24 9999.9 0 918.0 24 8.8 24 11.3 24 20.0 28.0 86.5* 50.2* 0.00G 999.9 000000 722324 03071 20150404 55.2 24 31.6 24 9999.9 0 927.1 24 10.0 24 10.5 24 17.1 22.9 66.4 47.5 0.00G 999.9 000000 722324 03071 20150405 61.2 24 43.8 24 9999.9 0 917.9 24 10.0 24 7.1 24 13.0 15.9 84.6 51.8 0.00G 999.9 000000 722324 03071 20150406 73.2 24 53.6 24 9999.9 0 913.5 24 10.0 24 9.2 24 15.0 22.0 87.6 61.0 0.00G 999.9 010010 722324 03071 20150407 74.7 24 55.3 24 9999.9 0 914.2 15 7.9 24 9.1 24 17.1 22.9 91.6 59.9 0.00G 999.9 000000 722324 03071 20150408 75.4 24 57.0 24 9999.9 0 913.7 24 9.1 24 9.6 24 19.0 27.0 89.4 64.9 0.00G 999.9 010000 722324 03071 20150409 71.0 24 48.7 24 9999.9 0 913.2 24 8.5 24 11.5 24 22.0 28.9 82.9 64.4 0.03G 999.9 010010 722324 03071 20150410 64.6 24 37.2 24 9999.9 0 920.5 24 10.0 24 9.6 24 17.1 22.0 77.0 50.9 0.00G 999.9 000000 722324 03071 20150411 69.4 24 53.5 24 9999.9 0 917.7 24 10.0 24 8.8 24 15.9 20.0 83.1 60.8 0.00G 999.9 000000 722324 03071 20150412 70.8 24 56.4 24 9999.9 0 913.5 24 8.9 24 11.2 24 15.9 22.9 85.6 61.5 0.00G 999.9 010010 722324 03071 20150413 61.2 24 56.3 24 9999.9 0 912.3 7 9.2 24 8.1 24 21.0 28.9 70.0 56.3 0.32G 999.9 010010 722324 03071 20150414 54.6 24 47.8 24 9999.9 0 9999.9 0 9.3 24 8.9 24 17.1 24.1 64.9 48.6 0.01G 999.9 010000 722324 03071 20150415 61.8 24 45.1 24 9999.9 0 9999.9 0 9.3 24 6.7 24 14.0 18.1 82.0 49.1 0.00G 999.9 000000 722324 03071 20150416 71.4 24 50.3 24 9999.9 0 913.3 24 10.0 24 10.1 24 17.1 22.0 82.8 58.6 0.00G 999.9 010010 722324 03071 20150417 69.9 24 43.6 24 9999.9 0 915.0 24 9.9 24 6.5 24 14.0 19.0 80.1 56.3 0.00G 999.9 000000 722324 03071 20150418 67.4 24 38.3 24 9999.9 0 914.9 24 9.1 24 6.4 24 17.1 28.0 80.8 53.8 0.00G 999.9 000000 722324 03071 20150419 67.5 24 28.3 24 9999.9 0 913.3 24 8.7 24 10.9 24 17.1 22.9 79.7 54.0 0.00G 999.9 000000 722324 03071 20150420 59.3 24 37.4 24 9999.9 0 917.8 24 9.9 24 7.5 24 13.0 19.0 74.3 46.0 0.00G 999.9 000000 722324 03071 20150421 66.2 24 40.5 24 9999.9 0 914.9 24 9.8 24 7.0 24 13.0 18.1 86.9 50.4 0.00G 999.9 000000 722324 03071 20150422 73.7 24 50.4 24 9999.9 0 913.1 24 10.0 24 10.8 24 17.1 22.0 87.6 63.1 0.00G 999.9 000000 722324 03071 20150423 72.7 24 40.2 24 9999.9 0 913.4 24 9.2 24 6.2 24 17.1 22.9 86.2 58.3 0.00G 999.9 000000 722324 03071 20150424 70.5 24 50.0 24 9999.9 0 913.2 24 9.8 24 11.8 24 25.1 35.9 82.0 59.2 0.00G 999.9 010010 722324 03071 20150425 71.0 24 29.4 24 9999.9 0 912.3 24 9.6 24 12.4 24 19.0 29.9 84.0 57.2 0.08G 999.9 000000 722324 03071 20150426 73.6 24 33.1 24 9999.9 0 908.2 24 10.0 24 7.9 24 24.1 32.1 86.0 58.5 0.00G 999.9 000000 722324 03071 20150427 63.1 24 38.4 24 9999.9 0 910.5 24 8.6 24 9.6 24 21.0 31.1 73.8 49.6 0.00G 999.9 010000 722324 03071 20150428 51.3 24 39.5 24 9999.9 0 921.4 24 8.8 24 14.8 24 19.0 26.0 60.3 45.5 0.00G 999.9 000000 722324 03071 20150429 56.6 24 35.9 24 9999.9 0 922.6 23 9.0 24 4.9 24 9.9 999.9 75.7 42.6 0.00G 999.9 000000 722324 03071 20150430 66.3 24 29.4 24 9999.9 0 917.9 22 9.5 24 5.0 24 12.0 15.9 82.4 49.3 0.00G 999.9 000000 722324 03071 20150501 72.3 24 31.6 24 9999.9 0 918.3 18 9.3 24 8.9 24 15.9 21.0 86.2 59.4 0.00G 999.9 000000 722324 03071 20150502 73.5 24 37.8 24 9999.9 0 918.3 24 9.8 24 10.2 24 15.9 26.0 87.4 58.3 0.00G 999.9 000000 722324 03071 20150503 73.6 24 46.9 24 9999.9 0 915.5 24 10.0 24 10.8 24 20.0 24.1 88.2 57.2 0.00G 999.9 000000 722324 03071 20150504 74.0 24 57.1 24 9999.9 0 915.6 24 10.0 24 12.9 24 25.1 32.1 83.7 66.2 0.00G 999.9 000000 722324 03071 20150505 71.7 24 58.1 24 9999.9 0 913.3 24 9.9 24 13.4 24 27.0 38.1 84.6 62.6 0.01G 999.9 010010 722324 03071 20150506 75.8 24 56.0 24 9999.9 0 913.4 24 9.4 24 9.0 24 14.0 19.0 89.6 65.7 0.08G 999.9 000000 722324 03071 20150507 77.2 24 58.0 24 9999.9 0 911.5 24 9.0 24 11.8 24 22.9 28.9 92.1 69.3 0.00G 999.9 010010 722324 03071 20150508 77.1 24 52.2 24 9999.9 0 912.5 24 9.1 24 9.2 24 19.0 26.0 93.4 62.1 0.00G 999.9 000000 722324 03071 20150509 78.1 24 48.8 24 9999.9 0 911.0 24 9.3 24 8.6 24 15.9 24.1 91.2 66.4 0.01G 999.9 010010 722324 03071 20150510 72.7 24 25.3 24 9999.9 0 912.9 24 8.8 24 6.9 24 15.0 21.0 88.0 57.6 0.00G 999.9 000000 722324 03071 20150511 67.9 24 38.7 24 9999.9 0 918.5 24 9.8 24 9.6 24 17.1 22.9 84.2 56.7 0.00G 999.9 000000 722324 03071 20150512 61.5 24 50.7 24 9999.9 0 923.9 24 8.8 24 10.6 24 15.9 22.0 73.9 53.2 0.00G 999.9 010010 722324 03071 20150513 67.5 24 57.3 24 9999.9 0 918.9 24 7.7 24 11.3 24 20.0 25.1 80.4 59.2 0.14G 999.9 010000 722324 03071 20150514 72.6 24 58.6 24 9999.9 0 918.1 24 8.4 24 10.1 24 17.1 21.0 84.4 64.4 0.18G 999.9 000000 722324 03071 20150515 72.2 24 59.4 24 9999.9 0 915.1 24 9.8 24 10.1 24 19.0 31.1 86.0* 63.9* 0.00G 999.9 010010 722324 03071 20150516 77.6 24 56.6 24 9999.9 0 911.0 24 10.0 24 13.1 24 20.0 26.0 90.3 68.9 0.00G 999.9 010000 722324 03071 20150517 72.4 24 33.6 24 9999.9 0 915.9 24 9.1 24 5.7 24 15.9 22.9 85.3 55.8 0.00G 999.9 000000 722324 03071 20150518 76.0 24 51.8 24 9999.9 0 919.8 24 10.0 24 6.5 24 17.1 22.0 90.5 64.6 0.00G 999.9 000000 722324 03071 20150519 73.5 24 62.7 24 9999.9 0 917.1 24 9.6 24 12.2 24 21.0 28.9 86.9 63.9 0.07G 999.9 010010 722324 03071 20150520 71.4 24 64.8 24 9999.9 0 916.7 24 8.2 24 8.6 24 17.1 21.0 83.5 60.4 0.00G 999.9 000000 722324 03071 20150521 55.0 24 51.5 24 9999.9 0 923.1 24 6.7 24 12.2 24 15.9 21.0 60.8 51.4 0.00G 999.9 010010 722324 03071 20150522 62.1 24 59.5 24 9999.9 0 920.3 24 4.3 24 4.9 24 12.0 15.0 81.7 55.9 0.01G 999.9 010000 722324 03071 20150523 74.6 24 63.3 24 9999.9 0 916.4 24 8.8 24 13.7 24 22.9 39.0 86.7 59.9 0.02G 999.9 010010 722324 03071 20150524 69.8 24 51.6 24 9999.9 0 913.7 24 8.0 24 9.3 24 19.0 26.0 85.1 61.3 0.02G 999.9 010010 722324 03071 20150525 71.2 24 50.4 24 9999.9 0 913.4 24 9.3 24 6.4 24 18.1 27.0 83.7 55.9 0.00G 999.9 010010 722324 03071 20150526 75.2 24 52.8 24 9999.9 0 915.7 24 9.8 24 7.1 24 14.0 22.0 90.0 61.2 0.01G 999.9 000000 722324 03071 20150527 79.8 24 61.8 24 9999.9 0 917.8 24 8.3 24 8.8 24 14.0 20.0 91.8 70.0 0.00G 999.9 000000 722324 03071 20150528 78.1 24 64.1 24 9999.9 0 917.3 24 10.0 24 13.0 24 21.0 36.9 86.2* 68.5* 0.00G 999.9 010010 722324 03071 20150529 68.8 24 59.0 24 9999.9 0 916.2 24 9.8 24 7.6 24 18.1 26.0 86.0 59.0 0.02G 999.9 010010 722324 03071 20150530 71.1 24 59.8 24 9999.9 0 920.8 23 9.3 24 8.3 24 17.1 26.0 85.3 61.5 0.01G 999.9 010010 722324 03071 20150531 68.8 24 59.1 24 9999.9 0 923.2 22 9.4 24 3.6 24 12.0 15.9 82.6 60.8 0.06G 999.9 000000 722324 03071 20150601 76.2 24 58.2 24 9999.9 0 919.7 18 10.0 24 8.2 24 15.0 21.0 91.2 64.4 0.00G 999.9 000000 722324 03071 20150602 78.8 24 59.6 24 9999.9 0 917.8 24 10.0 24 9.7 24 18.1 22.0 93.4 66.7 0.00G 999.9 000000 722324 03071 20150603 80.2 24 60.0 24 9999.9 0 914.7 24 10.0 24 9.4 24 15.0 21.0 95.5 67.3 0.00G 999.9 000000 722324 03071 20150604 80.6 24 61.9 24 9999.9 0 915.3 24 10.0 24 11.9 24 17.1 25.1 93.0 68.0 0.00G 999.9 000000 722324 03071 20150605 79.2 24 60.0 24 9999.9 0 918.1 24 10.0 24 11.9 24 18.1 25.1 90.3 67.5 0.00G 999.9 000000 722324 03071 20150606 78.8 24 58.1 24 9999.9 0 918.7 24 10.0 24 9.9 24 14.0 20.0 90.9 68.0 0.00G 999.9 000000 722324 03071 20150607 79.8 24 59.2 24 9999.9 0 917.3 24 10.0 24 9.6 24 14.0 20.0 92.3 68.2 0.00G 999.9 000000 722324 03071 20150608 81.0 24 57.9 24 9999.9 0 918.7 24 10.0 24 5.7 24 11.1 17.1 93.2 70.7 0.00G 999.9 000000 722324 03071 20150609 83.2 24 57.3 24 9999.9 0 918.6 24 10.0 24 5.0 24 11.1 14.0 94.5 72.5 0.00G 999.9 000000 722324 03071 20150610 84.6 24 55.5 24 9999.9 0 915.8 18 10.0 24 9.5 24 14.0 21.0 97.2 72.7 0.00G 999.9 000000 722324 03071 20150611 85.3 24 58.8 24 9999.9 0 911.7 24 10.0 24 10.2 24 17.1 21.0 100.9 72.0 0.00G 999.9 000000 722324 03071 20150612 83.7 24 64.6 24 9999.9 0 910.9 24 10.0 24 12.7 24 18.1 26.0 97.0 71.6 0.00G 999.9 010010 722324 03071 20150613 79.2 24 65.4 24 9999.9 0 912.9 24 10.0 24 9.3 24 22.0 32.1 93.0 69.1 0.01G 999.9 010000 722324 03071 20150614 78.2 24 59.7 24 9999.9 0 913.4 24 10.0 24 8.0 24 17.1 24.1 93.9 64.4 0.00G 999.9 000000 722324 03071 20150615 75.7 24 61.9 24 9999.9 0 917.0 24 9.5 24 6.3 24 20.0 32.1 92.7 68.2 0.14G 999.9 010010 722324 03071 20150616 74.9 24 64.9 24 9999.9 0 920.0 24 9.9 24 5.7 24 9.9 14.0 86.5 66.9 0.02G 999.9 000000 722324 03071 20150617 79.5 21 63.8 21 9999.9 0 918.1 21 10.0 21 5.4 21 15.0 19.0 91.0 69.4 0.00G 999.9 000000 722324 03071 20150618 82.7 24 64.3 24 9999.9 0 917.9 24 10.0 24 5.3 24 9.9 15.9 95.4 71.6 0.00G 999.9 000000 722324 03071 20150619 83.9 24 63.1 24 9999.9 0 919.4 24 10.0 24 7.8 24 13.0 18.1 93.4 73.4 0.00G 999.9 000000 722324 03071 20150620 80.0 24 62.6 24 9999.9 0 918.1 24 9.5 24 9.5 24 15.0 22.9 92.8 69.4 0.00G 999.9 000000 722324 03071 20150621 81.6 24 65.1 24 9999.9 0 917.7 24 9.9 24 10.0 24 15.0 19.0 93.7 72.5 0.00G 999.9 000000 722324 03071 20150622 80.3 24 63.3 24 9999.9 0 919.5 24 10.0 24 12.0 24 17.1 27.0 90.5 72.1 0.00G 999.9 000000 722324 03071 20150623 79.6 24 60.1 24 9999.9 0 922.0 24 7.3 24 11.1 24 17.1 26.0 91.9 69.8 0.00G 999.9 000000 722324 03071 20150624 80.8 24 59.1 24 9999.9 0 922.9 24 10.0 24 10.2 24 17.1 22.0 91.8 70.2 0.00G 999.9 000000 722324 03071 20150625 82.5 24 60.8 24 9999.9 0 921.2 24 10.0 24 9.9 24 15.0 22.0 96.3 71.6 0.00G 999.9 000000 722324 03071 20150626 83.5 24 61.5 24 9999.9 0 918.8 24 10.0 24 8.3 24 15.0 21.0 97.3 72.5 0.00G 999.9 010000 722324 03071 20150627 81.1 24 60.6 24 9999.9 0 921.1 24 9.8 24 6.8 24 15.9 31.1 94.3 72.7 0.00G 999.9 000000 722324 03071 20150628 81.3 24 58.5 24 9999.9 0 921.3 24 9.9 24 3.8 24 11.1 18.1 94.6 68.0 0.00G 999.9 000000 722324 03071 20150629 83.4 23 58.7 23 9999.9 0 919.3 21 9.9 23 5.6 23 12.0 15.9 96.4 71.8 0.00G 999.9 000000 722324 03071 20150630 79.6 24 61.3 24 9999.9 0 919.8 22 9.6 24 6.4 24 26.0 33.0 93.2* 64.4* 0.00G 999.9 010010 722324 03071 20150701 80.0 24 64.6 24 9999.9 0 919.3 18 10.0 24 8.7 24 14.0 20.0 91.0 70.0 0.73G 999.9 000000 722324 03071 20150702 81.8 19 62.7 19 9999.9 0 917.4 19 10.0 19 9.6 19 15.0 19.0 90.7* 72.7* 0.00G 999.9 000000 722324 03071 20150703 80.5 24 63.6 24 9999.9 0 917.8 24 10.0 24 7.3 24 13.0 15.9 90.1 71.8 0.00G 999.9 000000 722324 03071 20150704 81.2 24 62.9 24 9999.9 0 917.8 24 10.0 24 7.4 24 14.0 17.1 91.8 71.6 0.00G 999.9 000000 722324 03071 20150705 83.2 24 63.4 24 9999.9 0 917.4 24 10.0 24 8.7 24 13.0 19.0 96.3 74.5 0.00G 999.9 000000 722324 03071 20150706 84.6 24 64.6 24 9999.9 0 916.3 24 9.9 24 11.3 24 22.0 29.9 98.8 75.7 0.00G 999.9 010010 722324 03071 20150707 79.2 24 68.2 24 9999.9 0 916.9 24 9.8 24 6.9 24 17.1 22.0 83.7 73.9 0.01G 999.9 010010 722324 03071 20150708 75.3 24 65.4 24 9999.9 0 918.3 24 9.0 24 7.0 24 14.0 18.1 90.3 68.5 0.01G 999.9 000000 722324 03071 20150709 81.2 24 65.2 24 9999.9 0 917.5 24 10.0 24 11.2 24 18.1 24.1 92.1 72.3 0.00G 999.9 000000 722324 03071 20150710 83.0 24 63.3 24 9999.9 0 918.6 24 9.9 24 10.8 24 17.1 25.1 94.8 75.2 0.00G 999.9 000000 722324 03071 20150711 84.3 24 61.2 24 9999.9 0 920.8 24 9.8 24 9.8 24 15.0 22.0 97.2 74.8 0.00G 999.9 010010 722324 03071 20150712 84.7 24 58.9 24 9999.9 0 921.2 24 9.9 24 8.6 24 15.0 19.0 99.9 72.1 0.00G 999.9 000000 722324 03071 20150713 87.2 24 56.1 24 9999.9 0 918.1 24 9.3 24 7.5 24 11.1 15.0 102.4 72.5 0.00G 999.9 000000 722324 03071 20150714 87.2 24 54.5 24 9999.9 0 915.1 24 9.6 24 6.8 24 14.0 19.0 102.0 69.3 0.00G 999.9 000000 722324 03071 20150715 86.9 24 56.1 24 9999.9 0 915.5 24 9.9 24 9.7 24 13.0 20.0 100.2 72.5 0.00G 999.9 000000 722324 03071 20150716 87.1 24 58.5 24 9999.9 0 916.5 24 10.0 24 8.8 24 14.0 19.0 101.8 73.8 0.00G 999.9 000000 722324 03071 20150717 87.8 24 58.8 24 9999.9 0 916.1 24 10.0 24 10.3 24 15.9 22.0 102.2 72.7 0.00G 999.9 000000 722324 03071 20150718 87.7 24 59.3 24 9999.9 0 916.3 24 10.0 24 10.1 24 15.9 22.9 102.6 73.4 0.00G 999.9 000000 722324 03071 20150719 88.0 24 60.9 24 9999.9 0 917.5 24 10.0 24 9.5 24 15.0 21.0 101.3 74.7 0.00G 999.9 000000 722324 03071 20150720 90.2 24 60.2 24 9999.9 0 917.0 24 10.0 24 9.3 24 14.0 18.1 102.4 77.7 0.00G 999.9 000000 722324 03071 20150721 86.2 24 59.3 24 9999.9 0 916.2 24 9.9 24 5.3 24 17.1 22.0 100.0 74.3 0.00G 999.9 010010 722324 03071 20150722 81.9 24 67.0 24 9999.9 0 915.7 24 10.0 24 3.6 24 11.1 15.9 99.7 73.9 0.07G 999.9 010010 722324 03071 20150723 88.4 24 59.6 24 9999.9 0 916.4 24 10.0 24 8.2 24 12.0 17.1 101.5 76.6 0.00G 999.9 000000 722324 03071 20150724 88.9 24 59.1 24 9999.9 0 918.2 24 10.0 24 8.6 24 13.0 19.0 101.3 76.3 0.00G 999.9 000000 722324 03071 20150725 88.7 24 60.9 24 9999.9 0 917.7 24 10.0 24 8.4 24 14.0 21.0 102.6 75.4 0.00G 999.9 000000 722324 03071 20150726 90.5 24 60.2 24 9999.9 0 916.0 24 10.0 24 6.2 24 12.0 15.9 104.2 78.1 0.00G 999.9 000000 722324 03071 20150727 92.0 24 58.7 24 9999.9 0 915.3 24 10.0 24 8.2 24 13.0 20.0 103.6 78.6 0.00G 999.9 000000 722324 03071 20150728 90.5 24 58.0 24 9999.9 0 915.9 24 10.0 24 7.8 24 13.0 19.0 102.6 77.9 0.00G 999.9 000000 722324 03071 20150729 89.7 24 56.9 24 9999.9 0 918.9 24 10.0 24 6.8 24 13.0 18.1 100.9 79.2 0.00G 999.9 000000 722324 03071 20150730 88.1 24 57.1 24 9999.9 0 921.6 23 10.0 24 5.2 24 17.1 22.0 100.2 75.9 0.00G 999.9 010000 722324 03071 20150731 88.7 24 52.9 24 9999.9 0 922.1 23 10.0 24 5.1 24 11.1 17.1 100.6 77.0 0.00G 999.9 000000 722324 03071 20150801 87.8 24 59.8 24 9999.9 0 920.1 18 10.0 24 7.9 24 20.0 26.0 98.8 77.4 0.00G 999.9 000000 722324 03071 20150802 86.9 24 59.3 24 9999.9 0 917.5 24 10.0 24 6.7 24 17.1 22.0 101.1 75.7 0.00G 999.9 000000 722324 03071 20150803 86.4 24 59.0 24 9999.9 0 916.1 24 10.0 24 8.8 24 15.9 24.1 100.9 75.2 0.00G 999.9 010000 722324 03071 20150804 82.4 24 63.9 24 9999.9 0 917.2 24 9.9 24 7.2 24 22.9 46.0 100.8 70.7 0.07G 999.9 010010 722324 03071 20150805 90.6 24 58.0 24 9999.9 0 917.2 24 10.0 24 7.7 24 14.0 18.1 104.0 77.0 0.02G 999.9 000000 722324 03071 20150806 91.9 24 55.1 24 9999.9 0 916.2 24 10.0 24 8.4 24 14.0 18.1 104.5 78.3 0.00G 999.9 000000 722324 03071 20150807 91.1 24 55.7 24 9999.9 0 915.3 24 10.0 24 8.5 24 13.0 20.0 104.0 76.6 0.00G 999.9 000000 722324 03071 20150808 91.4 24 57.7 24 9999.9 0 914.5 24 10.0 24 10.9 24 15.0 21.0 104.4 78.6 0.00G 999.9 000000 722324 03071 20150809 92.2 24 57.5 24 9999.9 0 915.7 24 10.0 24 8.2 24 15.0 20.0 104.7 77.5 0.00G 999.9 000000 722324 03071 20150810 91.2 24 54.2 24 9999.9 0 917.2 24 10.0 24 7.8 24 13.0 19.0 103.6 78.4 0.00G 999.9 000000 722324 03071 20150811 88.3 24 50.3 24 9999.9 0 920.4 24 10.0 24 6.2 24 9.9 17.1 101.7 73.4 0.00G 999.9 000000 722324 03071 20150812 89.1 24 50.2 24 9999.9 0 922.6 24 10.0 24 4.3 24 9.9 22.9 102.2 74.3 0.00G 999.9 000000 722324 03071 20150813 88.5 24 58.0 24 9999.9 0 921.7 24 10.0 24 4.0 24 9.9 15.9 102.6 75.6 0.00G 999.9 000000 722324 03071 20150814 91.1 24 57.8 24 9999.9 0 920.0 24 10.0 24 5.6 24 12.0 17.1 102.4 80.2 0.00G 999.9 010000 722324 03071 20150815 81.1 24 66.1 24 9999.9 0 920.7 24 9.5 24 7.0 24 28.0 54.0 96.3 69.8 0.02G 999.9 010010 722324 03071 20150816 85.2 23 62.2 23 9999.9 0 919.1 23 10.0 23 6.4 23 12.0 17.1 96.4 75.2 0.00G 999.9 000000 722324 03071 20150817 85.5 24 54.6 24 9999.9 0 917.5 24 10.0 24 6.9 24 13.0 19.0 96.8 73.9 0.00G 999.9 000000 722324 03071 20150818 86.0 24 55.5 24 9999.9 0 914.1 24 10.0 24 9.4 24 21.0 25.1 98.8 75.6 0.00G 999.9 010000 722324 03071 20150819 83.9 24 58.7 24 9999.9 0 912.7 24 10.0 24 11.7 24 21.0 27.0 97.5 73.4 0.00G 999.9 000000 722324 03071 20150820 72.0 24 54.5 24 9999.9 0 918.7 24 10.0 24 7.5 24 18.1 22.9 92.1 64.4 0.00G 999.9 000000 722324 03071 20150821 83.7 24 62.1 24 9999.9 0 915.6 24 9.9 24 9.5 24 18.1 22.9 97.5 72.5 0.00G 999.9 000000 722324 03071 20150822 87.4 24 59.9 24 9999.9 0 915.3 24 10.0 24 9.4 24 20.0 26.0 101.3 77.7 0.00G 999.9 010000 722324 03071 20150823 87.0 24 60.4 24 9999.9 0 917.5 24 10.0 24 8.3 24 28.9 34.0 99.7 71.1 0.00G 999.9 010010 722324 03071 20150824 75.9 23 63.4 23 9999.9 0 923.0 23 9.9 23 4.1 23 7.0 999.9 91.9 65.5 0.04G 999.9 010010 722324 03071 20150825 82.5 24 61.4 24 9999.9 0 921.9 24 10.0 24 3.4 24 15.9 26.0 96.4 71.2 0.00G 999.9 000000 722324 03071 20150826 81.8 24 61.4 24 9999.9 0 922.8 24 10.0 24 5.8 24 13.0 19.0 96.3 70.7 0.00G 999.9 000000 722324 03071 20150827 84.8 24 57.4 24 9999.9 0 921.8 24 10.0 24 4.9 24 11.1 14.0 97.0 73.0 0.00G 999.9 000000 722324 03071 20150828 87.0 24 51.7 24 9999.9 0 918.0 24 10.0 24 9.5 24 15.0 19.0 99.7 76.1 0.00G 999.9 000000 722324 03071 20150829 80.5 24 55.3 24 9999.9 0 920.3 24 9.9 24 6.4 24 14.0 22.0 96.1 71.8 0.00G 999.9 010000 722324 03071 20150830 76.7 24 56.2 24 9999.9 0 920.6 23 9.9 24 2.5 24 12.0 14.0 91.9 63.5 0.00G 999.9 000000 722324 03071 20150831 80.3 24 55.1 24 9999.9 0 918.6 23 10.0 24 7.1 24 12.0 17.1 94.6 67.6 0.00G 999.9 000000 722324 03071 20150901 83.3 24 54.8 24 9999.9 0 918.7 18 10.0 24 8.1 24 13.0 20.0 94.5 70.7 0.00G 999.9 000000 722324 03071 20150902 82.8 24 54.2 24 9999.9 0 919.2 24 10.0 24 6.8 24 14.0 19.0 94.8 69.1 0.00G 999.9 000000 722324 03071 20150903 83.5 24 54.0 24 9999.9 0 917.3 24 10.0 24 5.9 24 12.0 19.0 96.4 69.6 0.00G 999.9 000000 722324 03071 20150904 84.3 24 54.4 24 9999.9 0 916.0 24 10.0 24 7.2 24 13.0 19.0 96.8 71.6 0.00G 999.9 000000 722324 03071 20150905 84.9 24 58.3 24 9999.9 0 917.1 24 10.0 24 7.8 24 15.0 19.0 96.3 74.5 0.00G 999.9 000000 722324 03071 20150906 85.8 24 59.9 24 9999.9 0 917.9 24 10.0 24 8.0 24 13.0 17.1 97.7 74.8 0.00G 999.9 000000 722324 03071 20150907 86.1 24 59.1 24 9999.9 0 917.9 24 10.0 24 7.1 24 9.9 999.9 97.7 74.3 0.00G 999.9 000000 722324 03071 20150908 87.3 24 56.6 24 9999.9 0 916.3 24 10.0 24 7.3 24 12.0 17.1 98.2 76.6 0.00G 999.9 000000 722324 03071 20150909 81.9 24 62.9 24 9999.9 0 916.7 24 9.7 24 5.3 24 21.0 25.1 94.6* 75.4* 0.00G 999.9 010010 722324 03071 20150910 80.4 24 61.4 24 9999.9 0 917.9 24 9.9 24 2.4 24 12.0 999.9 95.0 70.0 0.00G 999.9 000000 722324 03071 20150911 83.5 24 57.4 24 9999.9 0 917.7 24 10.0 24 7.5 24 17.1 22.0 93.7 73.4 0.00G 999.9 000000 722324 03071 20150912 78.5 24 57.5 24 9999.9 0 922.0 24 10.0 24 6.3 24 12.0 15.9 89.6 68.0 0.00G 999.9 000000 722324 03071 20150913 82.1 24 54.9 24 9999.9 0 918.1 24 10.0 24 10.0 24 18.1 24.1 96.6 70.9 0.00G 999.9 000000 722324 03071 20150914 81.9 24 54.7 24 9999.9 0 916.4 24 10.0 24 12.8 24 20.0 25.1 95.4 69.3 0.00G 999.9 000000 722324 03071 20150915 80.7 24 51.6 24 9999.9 0 917.7 24 10.0 24 9.8 24 15.0 19.0 95.0 67.6 0.00G 999.9 000000 722324 03071 20150916 82.1 24 61.2 24 9999.9 0 918.6 24 10.0 24 11.3 24 15.9 22.9 93.6 71.1 0.00G 999.9 000000 722324 03071 20150917 83.0 24 62.1 24 9999.9 0 917.3 24 10.0 24 11.2 24 17.1 21.0 98.1 72.1 0.00G 999.9 000000 722324 03071 20150918 85.4 24 60.5 24 9999.9 0 914.8 24 10.0 24 9.6 24 14.0 21.0 99.0 75.2 0.00G 999.9 000000 722324 03071 20150919 76.8 24 64.7 24 9999.9 0 917.1 24 9.5 24 7.1 24 14.0 22.0 90.0* 67.6* 0.20G 999.9 010010 722324 03071 20150920 70.8 24 64.9 24 9999.9 0 920.2 24 9.3 24 4.1 24 20.0 22.9 78.8 67.1 0.02G 999.9 010010 722324 03071 20150921 76.4 24 63.5 24 9999.9 0 918.9 24 10.0 24 6.2 24 12.0 19.0 90.3 67.1 0.01G 999.9 000000 722324 03071 20150922 81.2 24 59.0 24 9999.9 0 918.8 24 10.0 24 8.9 24 15.9 21.0 90.1 73.6 0.00G 999.9 000000 722324 03071 20150923 79.9 24 54.4 24 9999.9 0 919.0 24 10.0 24 10.0 24 18.1 22.0 88.2 70.7 0.00G 999.9 010010 722324 03071 20150924 73.4 24 60.5 24 9999.9 0 919.6 24 9.5 24 5.8 24 14.0 19.0 85.6 66.4 0.06G 999.9 010010 722324 03071 20150925 74.2 24 58.1 24 9999.9 0 922.7 24 10.0 24 3.1 24 8.0 999.9 86.5 66.4 0.09G 999.9 000000 722324 03071 20150926 76.2 24 55.6 24 9999.9 0 920.5 24 10.0 24 2.4 24 17.1 26.0 89.1 64.4 0.00G 999.9 000000 722324 03071 20150927 74.9 24 53.8 24 9999.9 0 917.6 24 10.0 24 5.8 24 13.0 20.0 88.0 62.1 0.00G 999.9 000000 722324 03071 20150928 77.2 24 51.4 24 9999.9 0 915.5 24 10.0 24 4.4 24 9.9 15.0 89.2 64.2 0.00G 999.9 000000 722324 03071 20150929 79.1 21 50.7 21 9999.9 0 917.1 19 10.0 21 5.1 21 11.1 15.9 88.9 63.0 0.00G 999.9 000000 722324 03071 20150930 76.1 24 50.6 24 9999.9 0 920.5 22 10.0 24 2.7 24 7.0 999.9 90.1 62.6 0.00G 999.9 000000 722324 03071 20151001 80.0 24 52.2 24 9999.9 0 920.4 18 10.0 24 6.2 24 13.0 15.0 93.9 66.2 0.00G 999.9 000000 722324 03071 20151002 78.0 24 54.3 24 9999.9 0 919.2 24 10.0 24 9.2 24 15.0 20.0 90.5 67.1 0.00G 999.9 000000 722324 03071 20151003 75.2 22 49.3 22 9999.9 0 914.2 22 10.0 22 9.3 22 13.0 19.0 86.9 66.2 0.00G 999.9 000000 722324 03071 20151004 67.4 24 45.2 24 9999.9 0 917.1 24 9.9 24 8.5 24 15.0 22.0 83.3 57.6 0.05G 999.9 010010 722324 03071 20151005 64.2 24 52.5 24 9999.9 0 921.1 24 10.0 24 4.6 24 8.9 999.9 77.9 59.4 0.07G 999.9 010000 722324 03071 20151006 68.6 24 46.7 24 9999.9 0 922.8 24 10.0 24 4.0 24 9.9 15.0 85.3 54.5 0.00G 999.9 000000 722324 03071 20151007 74.9 24 49.3 24 9999.9 0 920.4 24 9.7 24 5.7 24 12.0 24.1 85.5 66.0 0.00G 999.9 000000 722324 03071 20151008 67.6 24 59.0 24 9999.9 0 919.7 24 9.2 24 8.7 24 14.0 20.0 81.5* 60.8* 0.02G 999.9 010010 722324 03071 20151009 68.5 24 61.9 24 9999.9 0 923.7 24 9.7 24 4.7 24 15.0 19.0 79.2 63.5 0.01G 999.9 000000 722324 03071 20151010 67.3 24 62.6 24 9999.9 0 926.1 24 7.3 24 2.9 24 11.1 999.9 76.1 63.1 0.00G 999.9 000000 722324 03071 20151011 74.0 24 58.8 24 9999.9 0 919.1 24 10.0 24 6.5 24 14.0 19.0 90.5 65.5 0.00G 999.9 000000 722324 03071 20151012 77.7 24 52.7 24 9999.9 0 914.6 24 10.0 24 9.8 24 17.1 24.1 86.9 66.7 0.00G 999.9 000000 722324 03071 20151013 71.0 24 40.0 24 9999.9 0 921.3 24 10.0 24 3.1 24 8.0 999.9 86.2 56.3 0.00G 999.9 000000 722324 03071 20151014 73.5 24 49.3 24 9999.9 0 920.6 24 10.0 24 2.9 24 11.1 14.0 91.6 58.1 0.00G 999.9 000000 722324 03071 20151015 77.4 24 55.3 24 9999.9 0 919.8 24 10.0 24 7.4 24 14.0 15.9 90.7 68.0 0.00G 999.9 000000 722324 03071 20151016 70.8 24 53.1 24 9999.9 0 924.2 24 10.0 24 8.1 24 17.1 20.0 85.3 60.3 0.00G 999.9 000000 722324 03071 20151017 66.3 24 45.9 24 9999.9 0 926.8 24 10.0 24 6.5 24 19.0 21.0 82.0 54.0 0.00G 999.9 000000 722324 03071 20151018 69.1 24 47.0 24 9999.9 0 925.6 24 10.0 24 10.2 24 19.0 25.1 80.2 59.9 0.00G 999.9 000000 722324 03071 20151019 70.2 24 50.7 24 9999.9 0 922.8 24 10.0 24 10.7 24 17.1 21.0 82.0 60.4 0.00G 999.9 000000 722324 03071 20151020 70.5 24 55.9 24 9999.9 0 919.0 24 10.0 24 9.1 24 15.9 22.9 83.5 61.0 0.00G 999.9 000000 722324 03071 20151021 69.3 24 58.7 24 9999.9 0 918.2 24 10.0 24 9.5 24 15.0 21.0 74.5 64.4 0.00G 999.9 010010 722324 03071 20151022 67.3 18 62.8 18 9999.9 0 916.5 18 9.8 18 7.2 18 15.9 22.9 71.6* 60.8* 0.07G 999.9 010010 722324 03071 20151023 65.4 24 62.7 24 9999.9 0 916.6 24 6.5 24 2.9 24 8.0 999.9 74.3 61.9 0.53G 999.9 110010 722324 03071 20151024 62.7 24 53.4 24 9999.9 0 919.6 24 9.5 24 9.6 24 18.1 26.0 69.8 58.1 0.10G 999.9 000000 722324 03071 20151025 54.9 24 38.3 24 9999.9 0 925.3 24 10.0 24 6.0 24 8.9 15.9 68.9 44.2 0.00G 999.9 000000 722324 03071 20151026 54.5 24 33.8 24 9999.9 0 922.7 24 10.0 24 1.0 24 5.1 999.9 70.5* 41.0* 0.00G 999.9 000000 722324 03071 20151027 62.5 24 38.0 24 9999.9 0 916.0 24 10.0 24 5.0 24 20.0 28.0 82.4 48.4 0.00G 999.9 000000 722324 03071 20151028 63.0 24 40.4 24 9999.9 0 916.5 24 10.0 24 6.5 24 17.1 25.1 75.6 50.5 0.00G 999.9 000000 722324 03071 20151029 62.5 24 42.0 24 9999.9 0 914.1 24 10.0 24 4.0 24 12.0 15.0 78.8 51.1 0.00G 999.9 000000 722324 03071 20151030 67.1 24 56.3 24 9999.9 0 909.8 24 8.2 24 5.4 24 19.0 28.9 77.0 60.8 0.05G 999.9 010000 722324 03071 20151031 60.9 24 49.6 24 9999.9 0 912.4 22 9.8 24 6.1 24 13.0 18.1 71.2 52.3 0.06G 999.9 000000 722324 03071 20151101 58.5 24 39.6 24 9999.9 0 918.9 18 10.0 24 2.5 24 8.0 999.9 74.7 45.5 0.00G 999.9 000000 722324 03071 20151102 64.9 24 41.9 24 9999.9 0 917.0 24 10.0 24 4.3 24 9.9 999.9 81.0 52.3 0.00G 999.9 000000 722324 03071 20151103 66.3 24 46.1 24 9999.9 0 915.5 24 10.0 24 8.1 24 15.0 19.0 81.0 53.2 0.00G 999.9 000000 722324 03071 20151104 68.5 24 57.2 24 9999.9 0 915.5 24 10.0 24 10.5 24 17.1 21.0 78.8 60.8 0.03G 999.9 000000 722324 03071 20151105 69.2 24 55.1 24 9999.9 0 916.4 24 7.9 24 8.7 24 20.0 28.9 79.7 60.4 0.00G 999.9 110000 722324 03071 20151106 56.3 24 30.0 24 9999.9 0 921.7 24 10.0 24 4.1 24 9.9 999.9 70.9 41.9 0.00G 999.9 000000 722324 03071 20151107 56.7 24 39.0 24 9999.9 0 924.0 24 10.0 24 7.1 24 17.1 22.0 66.4 45.9 0.00G 999.9 000000 722324 03071 20151108 53.1 24 35.0 24 9999.9 0 927.0 24 10.0 24 5.6 24 9.9 999.9 61.7 45.9 0.00G 999.9 000000 722324 03071 20151109 59.0 24 43.6 24 9999.9 0 920.8 24 9.8 24 5.5 24 11.1 14.0 76.1 46.0 0.00G 999.9 000000 722324 03071 20151110 62.5 24 54.1 24 9999.9 0 917.9 24 7.3 24 8.7 24 13.0 15.9 76.1 54.9 0.00G 999.9 000000 722324 03071 20151111 64.5 24 44.9 24 9999.9 0 915.0 24 8.5 24 12.4 24 20.0 26.0 70.2 59.2 0.00G 999.9 000000 722324 03071 20151112 53.7 24 24.5 24 9999.9 0 923.4 24 10.0 24 4.6 24 11.1 15.0 66.9 38.5 0.00G 999.9 000000 722324 03071 20151113 57.4 24 30.8 24 9999.9 0 925.4 24 10.0 24 6.1 24 13.0 19.0 68.7 47.3 0.00G 999.9 000000 722324 03071 20151114 56.2 24 38.1 24 9999.9 0 924.3 24 10.0 24 7.4 24 14.0 20.0 64.4 50.2 0.00G 999.9 000000 722324 03071 20151115 57.3 24 52.5 24 9999.9 0 921.2 24 9.8 24 11.4 24 17.1 22.0 62.6 53.2 0.00G 999.9 010000 722324 03071 20151116 63.6 24 58.6 24 9999.9 0 912.4 24 8.5 24 15.2 24 22.9 31.1 74.3 59.0 0.02G 999.9 010000 722324 03071 20151117 55.1 24 36.6 24 9999.9 0 906.5 24 9.9 24 16.7 24 25.1 34.0 67.1 44.6 0.08G 999.9 010010 722324 03071 20151118 52.8 24 30.2 24 9999.9 0 911.2 24 10.0 24 7.9 24 15.0 22.9 70.5 39.2 0.00G 999.9 000000 722324 03071 20151119 52.6 24 32.0 24 9999.9 0 919.1 24 9.6 24 4.9 24 14.0 17.1 64.6 40.1 0.00G 999.9 000000 722324 03071 20151120 52.4 24 35.8 24 9999.9 0 919.6 24 9.3 24 3.3 24 14.0 20.0 74.8 37.4 0.00G 999.9 000000 722324 03071 20151121 49.4 24 31.1 24 9999.9 0 923.4 24 10.0 24 9.7 24 22.0 35.0 67.6 37.4 0.00G 999.9 000000 722324 03071 20151122 41.2 24 20.7 24 9999.9 0 926.1 24 9.9 24 2.5 24 9.9 999.9 62.1 27.5 0.00G 999.9 000000 722324 03071 20151123 47.8 24 26.5 24 9999.9 0 922.8 24 8.3 24 3.5 24 9.9 15.0 64.4 32.0 0.00G 999.9 000000 722324 03071 20151124 54.9 24 34.9 24 9999.9 0 918.8 24 7.0 24 8.2 24 12.0 15.9 73.0 44.2 0.00G 999.9 000000 722324 03071 20151125 60.5 24 50.4 24 9999.9 0 916.1 24 9.2 24 11.5 24 17.1 22.9 74.5 53.8 0.00G 999.9 000000 722324 03071 20151126 66.5 24 60.0 24 9999.9 0 917.1 24 9.8 24 13.2 24 19.0 25.1 72.1 62.4 0.00G 999.9 010000 722324 03071 20151127 47.8 24 47.3 24 9999.9 0 922.4 24 7.3 24 11.6 24 18.1 22.0 66.7 34.9 0.08G 999.9 010000 722324 03071 20151128 34.6 24 33.9 24 9999.9 0 925.6 24 7.9 24 5.2 24 11.1 15.0 37.4 33.3 0.08G 999.9 011000 722324 03071 20151129 38.6 24 36.9 24 9999.9 0 923.1 23 8.8 24 3.6 24 8.0 999.9 44.8 36.5 0.03G 999.9 010000 722324 03071 20151130 45.5 24 42.3 24 9999.9 0 918.5 23 5.4 24 2.8 24 8.9 999.9 55.2 42.1 0.05G 999.9 100000 722324 03071 20151201 47.0 24 40.3 24 9999.9 0 918.4 24 9.5 24 1.4 24 8.9 999.9 61.7 38.3 0.00G 999.9 000000 722324 03071 20151202 45.4 24 31.0 24 9999.9 0 922.1 24 10.0 24 3.1 24 6.0 999.9 59.2 32.4 0.00G 999.9 000000 722324 03071 20151203 46.7 24 31.3 24 9999.9 0 926.5 24 10.0 24 3.2 24 11.1 14.0 62.6 32.4 0.00G 999.9 000000 722324 03071 20151204 49.1 24 35.8 24 9999.9 0 927.1 24 10.0 24 7.4 24 15.9 21.0 60.8 37.8 0.00G 999.9 000000 722324 03071 20151205 50.1 24 39.5 24 9999.9 0 926.5 22 10.0 24 8.2 24 14.0 18.1 63.3 38.7 0.00G 999.9 000000 722324 03071 20151206 48.8 24 35.1 24 9999.9 0 9999.9 0 9.7 24 5.0 24 11.1 14.0 61.9 37.2 0.00G 999.9 000000 722324 03071 20151207 49.4 24 32.5 24 9999.9 0 927.3 24 10.0 24 3.6 24 11.1 999.9 66.4* 35.8* 0.00G 999.9 000000 722324 03071 20151208 54.0 24 32.1 24 9999.9 0 919.2 22 10.0 24 6.4 24 13.0 18.1 70.9 36.5 0.00G 999.9 000000 722324 03071 20151209 52.5 24 32.7 24 9999.9 0 9999.9 0 10.0 24 2.7 24 8.9 999.9 72.0 38.1 0.00G 999.9 000000 722324 03071 20151210 60.9 24 31.7 24 9999.9 0 914.3 13 9.3 24 6.4 24 9.9 17.1 78.8 46.8 0.00G 999.9 000000 722324 03071 20151211 64.0 24 31.2 24 9999.9 0 911.4 24 9.8 24 7.6 24 18.1 25.1 81.1 48.2 0.00G 999.9 000000 722324 03071 20151212 62.8 24 49.4 24 9999.9 0 907.6 24 9.0 24 9.3 24 26.0 33.0 72.0 55.6 0.00G 999.9 010000 722324 03071 20151213 48.4 24 37.1 24 9999.9 0 908.0 24 9.8 24 13.1 24 28.9 35.0 56.3 42.1 0.02G 999.9 010000 722324 03071 20151214 52.3 24 28.9 24 9999.9 0 909.1 24 10.0 24 9.9 24 18.1 26.0 71.8 42.1 0.00G 999.9 000000 722324 03071 20151215 53.6 24 27.1 24 9999.9 0 908.1 24 10.0 24 10.8 24 21.0 28.9 62.6 42.8 0.00G 999.9 000000 722324 03071 20151216 43.7 24 17.8 24 9999.9 0 915.2 24 10.0 24 7.6 24 15.9 21.0 54.5 31.1 0.00G 999.9 000000 722324 03071 20151217 42.6 24 16.7 24 9999.9 0 917.9 24 10.0 24 7.7 24 22.0 28.0 57.6 30.7 0.00G 999.9 000000 722324 03071 20151218 40.2 24 21.0 24 9999.9 0 924.9 24 10.0 24 4.5 24 12.0 15.9 60.6 27.3 0.00G 999.9 000000 722324 03071 20151219 49.2 24 26.3 24 9999.9 0 924.5 24 10.0 24 10.2 24 15.9 22.0 63.3 39.2 0.00G 999.9 000000 722324 03071 20151220 55.7 24 43.2 24 9999.9 0 919.4 24 10.0 24 12.5 24 18.1 25.1 65.5 51.4 0.00G 999.9 000000 722324 03071 20151221 52.2 24 35.6 24 9999.9 0 917.3 24 10.0 24 5.6 24 15.9 19.0 68.4* 36.5* 0.00G 999.9 000000 722324 03071 20151222 54.7 24 28.1 24 9999.9 0 911.8 24 10.0 24 6.2 24 19.0 27.0 70.7 41.2 0.00G 999.9 000000 722324 03071 20151223 61.7 24 32.3 24 9999.9 0 904.4 24 10.0 24 15.0 24 22.0 27.0 70.5 52.7 0.00G 999.9 000000 722324 03071 20151224 58.4 24 36.6 24 9999.9 0 911.0 24 10.0 24 5.3 24 11.1 999.9 68.2 48.2 0.00I 999.9 000000 722324 03071 20151225 52.1 24 35.2 24 9999.9 0 916.0 24 10.0 24 5.5 24 15.9 17.1 71.8 36.9 0.00G 999.9 000000 722324 03071 20151226 58.2 24 51.7 24 9999.9 0 909.1 24 7.2 24 8.9 24 26.0 33.0 64.8 45.5 0.00G 999.9 000000 722324 03071 20151227 32.9 24 29.2 24 9999.9 0 913.6 24 4.7 24 14.5 24 32.1 40.0 45.3 28.8 0.01G 999.9 011010 722324 03071 20151228 30.9 24 23.8 24 9999.9 0 916.0 24 7.7 24 11.9 24 17.1 26.0 37.9 26.6 0.01A 999.9 001000 722324 03071 20151229 32.2 24 26.4 24 9999.9 0 914.3 24 10.0 24 3.7 24 11.1 999.9 44.1 23.5 0.17G 999.9 000000 722324 03071 20151230 31.8 23 27.8 23 9999.9 0 921.3 21 6.4 23 2.3 23 11.1 999.9 48.6* 20.8* 0.00G 999.9 100000 722324 03071 20151231 35.6 24 32.2 24 9999.9 0 924.6 22 6.8 24 2.5 24 9.9 999.9 42.8 30.9 0.00G 999.9 100000 fluids-1.0.22/tests/gsod/1981/0000755000175000017500000000000014302004506015102 5ustar nileshnileshfluids-1.0.22/tests/gsod/1981/724050-13743.op0000644000175000017500000014327214302004506016673 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19810101 31.1 21 26.2 21 1014.6 21 1012.2 21 5.2 21 4.3 21 7.0 999.9 35.1 27.0 0.12G 2.8 101000 724050 13743 19810102 36.0 23 26.1 23 1013.8 23 1011.4 23 10.8 23 9.8 23 19.8 30.9 39.9* 27.0 0.04G 999.9 101000 724050 13743 19810103 31.5 24 19.1 24 1017.4 24 1015.0 24 16.4 24 8.7 24 15.0 22.9 39.9 25.0 0.00G 999.9 000000 724050 13743 19810104 20.7 24 4.3 24 1021.0 24 1018.6 24 15.7 24 17.1 24 24.9 34.0 39.9 12.9 0.00D 999.9 001000 724050 13743 19810105 19.7 23 4.3 23 1029.3 23 1026.9 23 17.7 23 14.4 23 19.8 26.8 29.1* 12.9 0.00G 999.9 000000 724050 13743 19810106 25.2 23 13.3 23 1024.1 23 1021.7 23 12.0 23 4.4 23 8.9 999.9 36.0* 14.0 0.00G 999.9 000000 724050 13743 19810107 37.5 24 26.7 24 1007.4 24 1005.0 24 9.2 24 12.1 24 19.8 28.9 41.9 18.0 0.04G 0.8 101000 724050 13743 19810108 22.2 22 6.2 21 1021.1 21 1018.7 21 18.5 21 11.9 21 41.0 999.9 41.0 16.9 0.00G 999.9 000000 724050 13743 19810109 23.5 24 11.1 24 1025.1 24 1022.7 24 14.0 24 4.4 24 8.0 999.9 31.1* 14.9 0.00G 999.9 000000 724050 13743 19810110 26.3 24 12.1 24 1024.8 24 1022.3 24 13.8 24 11.7 24 23.9 30.9 30.9 15.1 0.00G 999.9 001000 724050 13743 19810111 20.6 24 3.2 24 1026.3 24 1023.9 24 17.4 24 10.8 24 15.9 21.0 28.9 14.9 0.00D 999.9 000000 724050 13743 19810112 17.8 22 0.6 22 1026.9 22 1024.4 22 19.8 22 12.3 22 22.9 28.9 27.0 10.9 0.00G 999.9 000000 724050 13743 19810113 18.7 21 6.1 21 1021.7 21 1019.3 21 16.7 20 6.2 21 8.9 999.9 26.2* 10.9 0.00D 999.9 000000 724050 13743 19810114 29.1 24 17.0 24 1016.5 24 1014.1 24 10.5 24 4.9 24 7.0 999.9 37.0* 10.9 0.00D 999.9 000000 724050 13743 19810115 33.3 23 27.8 23 1016.8 23 1014.4 23 4.4 23 7.1 23 8.9 999.9 39.0* 24.1 0.08G 0.8 111000 724050 13743 19810116 36.5 24 30.0 24 1020.3 24 1017.9 24 4.4 24 5.8 24 9.9 15.0 42.1* 30.0 0.00D 999.9 101000 724050 13743 19810117 29.5 23 11.5 23 1020.2 23 1017.8 23 15.0 22 18.4 23 25.8 32.8 42.1 25.9 0.00D 999.9 001000 724050 13743 19810118 27.6 23 12.7 23 1018.0 23 1015.6 23 15.6 23 9.8 23 16.9 22.9 41.0* 18.0 0.00D 999.9 000000 724050 13743 19810119 41.7 23 22.3 23 1015.2 23 1012.8 23 15.3 23 7.8 23 11.8 21.0 55.9* 36.0* 0.00D 999.9 000000 724050 13743 19810120 49.7 23 31.6 23 1015.9 23 1013.5 23 16.0 23 7.7 23 12.8 17.9 55.9 36.0 0.00D 999.9 000000 724050 13743 19810121 40.6 23 35.3 23 1018.1 23 1015.7 23 4.6 23 8.3 23 15.0 999.9 55.9 36.9 0.12G 999.9 111000 724050 13743 19810122 38.3 24 32.4 24 1012.4 24 1010.1 24 4.7 24 8.6 24 15.9 25.8 54.0* 32.0 0.01G 999.9 100000 724050 13743 19810123 43.8 24 27.7 24 1009.3 24 1006.9 24 13.6 24 11.3 24 24.9 36.9 54.0 32.0 0.00G 999.9 000000 724050 13743 19810124 43.0 24 24.6 24 1012.0 24 1009.6 24 14.8 24 9.5 24 15.0 18.8 48.0* 38.8 0.00D 999.9 000000 724050 13743 19810125 38.5 24 27.1 24 1017.7 24 1015.2 24 11.1 24 6.0 23 8.9 999.9 51.1* 28.2* 0.00D 999.9 000000 724050 13743 19810126 46.5 24 32.9 24 1011.2 24 1008.8 24 13.3 24 9.1 24 14.0 999.9 63.0* 28.9 0.00D 999.9 000000 724050 13743 19810127 52.2 24 37.7 24 1006.7 24 1004.3 24 13.5 24 7.0 24 10.9 999.9 63.0 37.9 0.00D 999.9 000000 724050 13743 19810128 44.9 24 28.2 24 1012.0 24 1009.6 24 13.8 24 6.3 24 9.9 999.9 55.0 37.9 0.00D 999.9 000000 724050 13743 19810129 41.1 24 19.7 24 1017.3 24 1014.9 24 16.0 24 10.7 24 21.0 30.9 53.1 36.9 0.00D 999.9 000000 724050 13743 19810130 32.1 24 12.0 24 1028.6 24 1026.2 24 16.3 24 12.3 24 15.9 22.9 45.0 25.0 0.00D 999.9 000000 724050 13743 19810131 30.2 24 7.1 23 1031.6 24 1029.2 24 19.9 23 10.4 24 15.9 21.0 41.0* 19.9 0.00D 999.9 000000 724050 13743 19810201 35.0 24 18.8 24 1026.0 24 1023.6 24 16.9 23 8.0 24 15.0 999.9 48.0* 19.9 0.00D 999.9 010000 724050 13743 19810202 51.5 24 41.8 24 1005.5 24 1003.1 24 12.5 24 14.2 24 24.9 38.9 60.1 25.0 0.71G 999.9 110000 724050 13743 19810203 27.8 23 5.0 23 1020.0 23 1017.6 23 19.9 23 13.9 23 17.9 25.8 37.9* 20.8 0.00D 999.9 000000 724050 13743 19810204 25.3 23 5.4 23 1023.9 23 1021.5 23 19.0 23 10.0 23 15.9 22.9 34.0* 18.0 0.00G 999.9 000000 724050 13743 19810205 25.4 23 3.6 23 1029.8 23 1027.4 23 17.7 23 10.7 23 18.8 23.9 34.0 18.0 0.00G 999.9 000000 724050 13743 19810206 33.8 23 16.0 23 1026.8 23 1024.4 23 14.9 23 11.8 23 17.9 999.9 48.9* 18.0 0.00D 999.9 000000 724050 13743 19810207 39.3 22 24.4 22 1022.0 22 1019.6 22 13.1 22 4.8 22 8.0 999.9 48.9 26.1 0.00G 999.9 000000 724050 13743 19810208 41.2 22 35.0 22 1008.9 22 1006.5 22 7.2 21 5.5 22 23.9 35.9 48.9 28.9 0.20G 999.9 110000 724050 13743 19810209 32.7 24 13.7 24 1019.5 24 1017.1 24 19.0 23 11.9 24 25.8 39.8 46.0 25.0 0.24G 999.9 000000 724050 13743 19810210 38.2 22 27.0 22 1029.6 22 1027.2 22 17.4 22 8.9 22 21.0 29.9 54.0* 25.0 0.00G 999.9 000000 724050 13743 19810211 58.9 24 54.1 24 1012.0 24 1009.6 24 13.1 24 17.2 24 31.9 49.0 66.0* 53.6* 0.24G 999.9 110000 724050 13743 19810212 26.0 23 8.2 23 1036.3 23 1033.9 23 18.6 23 17.8 23 26.8 35.9 41.0* 16.0 0.12G 999.9 010000 724050 13743 19810213 27.3 24 7.8 24 1049.7 24 1047.2 24 17.2 24 6.9 24 10.9 999.9 37.9* 16.0 0.01G 999.9 000000 724050 13743 19810214 35.9 24 20.6 24 1044.2 24 1041.8 24 13.3 24 4.6 24 8.0 999.9 50.0* 19.9 0.00G 999.9 000000 724050 13743 19810215 40.3 24 26.7 24 1039.4 24 1037.0 24 9.0 24 5.0 24 9.9 999.9 55.9* 28.0 0.00D 999.9 100000 724050 13743 19810216 44.4 24 32.1 24 1034.6 24 1032.1 24 12.1 24 5.9 24 10.9 999.9 60.1* 32.9 0.00D 999.9 100000 724050 13743 19810217 52.9 24 44.1 24 1027.9 24 1025.4 24 14.7 24 7.0 24 10.9 999.9 64.0* 46.9 0.00D 999.9 010000 724050 13743 19810218 57.3 22 51.0 22 1025.4 22 1023.0 22 10.4 22 5.9 22 9.9 999.9 75.0* 41.9 0.00D 999.9 100000 724050 13743 19810219 58.2 23 53.2 23 1019.6 23 1017.2 23 12.7 23 6.3 23 12.8 999.9 75.9 52.0* 0.00H 999.9 010000 724050 13743 19810220 58.8 24 54.9 24 1002.1 24 999.7 24 8.7 24 8.6 24 14.0 999.9 65.8 52.9 0.43D 999.9 110000 724050 13743 19810221 54.3 22 49.0 22 1003.9 22 1001.5 22 9.9 22 15.7 22 23.9 34.0 61.9 48.9 0.04B 999.9 110000 724050 13743 19810222 57.0 24 54.9 24 1013.9 24 1011.5 24 6.0 24 9.8 24 15.9 999.9 59.0* 54.9 0.04G 999.9 110000 724050 13743 19810223 58.1 24 56.0 24 1009.2 24 1006.8 24 5.4 23 11.0 24 19.8 28.0 63.0 54.0* 0.16G 999.9 110000 724050 13743 19810224 47.4 21 42.2 21 1006.6 21 1004.3 21 8.4 18 7.0 21 18.8 28.0 63.0 41.0 0.28G 999.9 110000 724050 13743 19810225 47.6 24 31.2 24 1012.2 24 1009.9 24 18.9 24 14.1 24 28.0 41.0 53.1 39.9 0.00G 999.9 000000 724050 13743 19810226 46.7 24 30.5 24 1016.5 24 1014.1 24 18.0 24 18.2 24 22.9 31.9 55.0* 39.9 0.00D 999.9 000000 724050 13743 19810227 48.8 24 28.2 24 1022.0 24 1019.6 24 19.8 24 13.1 24 17.9 21.0 64.0* 37.4* 0.00D 999.9 000000 724050 13743 19810228 52.3 23 32.2 23 1015.6 23 1013.2 23 14.4 22 6.1 23 11.8 999.9 66.9* 37.9 0.00D 999.9 010000 724050 13743 19810301 54.9 24 40.2 23 1008.5 24 1006.1 24 14.6 24 10.5 24 15.9 22.0 68.0 41.0 0.00G 999.9 010000 724050 13743 19810302 47.7 22 34.1 22 1009.4 22 1007.0 22 13.1 22 8.3 22 19.8 25.8 60.1 43.0 0.00G 999.9 000000 724050 13743 19810303 40.6 23 20.8 23 1012.3 23 1009.9 23 18.5 23 13.9 23 23.9 31.9 52.0 34.0 0.00G 999.9 000000 724050 13743 19810304 39.6 23 20.7 23 1017.2 23 1014.8 23 16.8 22 8.0 23 17.9 999.9 50.0* 32.0 0.00G 999.9 000000 724050 13743 19810305 41.3 24 38.1 24 1001.6 24 999.2 24 5.1 24 10.0 24 16.9 17.9 50.0 32.0 0.39G 999.9 111000 724050 13743 19810306 41.9 24 30.8 24 1005.7 24 1003.4 24 11.3 23 12.3 24 17.9 26.8 46.9* 37.9 0.08G 999.9 111000 724050 13743 19810307 40.1 23 21.6 23 1013.2 23 1010.8 23 17.5 23 15.3 23 22.0 31.9 48.0 32.9 0.01G 999.9 000000 724050 13743 19810308 42.2 24 27.7 24 1021.8 24 1019.3 24 17.4 24 13.4 24 22.9 28.0 50.0 32.0 0.00G 999.9 000000 724050 13743 19810309 47.1 23 31.4 23 1025.0 23 1022.6 23 13.6 23 11.5 23 17.9 24.9 52.0 35.1 0.00D 999.9 000000 724050 13743 19810310 46.0 22 28.4 22 1023.0 22 1020.6 22 13.3 22 8.8 22 18.8 22.9 55.0* 36.9 0.00G 999.9 000000 724050 13743 19810311 47.5 24 31.4 24 1017.3 24 1014.9 24 12.6 24 9.5 24 25.8 34.0 55.0 37.0 0.00D 999.9 010000 724050 13743 19810312 44.3 23 23.6 23 1016.2 23 1013.8 23 16.6 23 11.4 23 17.9 23.9 57.0* 34.9 0.00G 999.9 000000 724050 13743 19810313 52.7 24 28.9 24 1007.6 24 1005.3 24 18.8 24 9.4 24 19.8 28.0 71.1* 35.1 0.00D 999.9 000000 724050 13743 19810314 45.0 24 18.9 24 1010.3 24 1007.9 24 19.4 24 18.6 24 23.9 39.8 71.1 34.9 0.00G 999.9 011000 724050 13743 19810315 45.9 24 15.1 24 1012.4 24 1010.0 24 19.9 24 10.0 24 17.9 24.9 66.0* 32.9 0.00D 999.9 000000 724050 13743 19810316 51.2 23 32.7 23 996.4 23 994.0 23 12.6 23 13.0 23 30.9 39.8 66.0 33.1 0.02G 999.9 110000 724050 13743 19810317 39.8 24 18.8 24 1000.5 24 998.1 24 19.5 24 18.0 24 28.9 43.9 61.9 23.0 0.12G 999.9 010000 724050 13743 19810318 35.1 24 13.8 24 1002.7 24 1000.3 24 17.2 24 10.6 24 16.9 25.8 54.0 27.9 0.00G 999.9 001000 724050 13743 19810319 36.9 23 18.9 23 999.4 23 997.0 23 15.5 23 10.3 23 19.8 999.9 45.0* 28.0 0.00G 999.9 001000 724050 13743 19810320 37.5 21 18.8 21 1001.0 21 998.6 21 15.2 21 12.5 21 17.9 22.9 46.9* 27.9 0.00G 999.9 001000 724050 13743 19810321 42.4 24 24.3 24 1009.0 24 1006.6 24 16.2 24 10.9 24 18.8 22.9 51.1* 28.0 0.01G 999.9 001000 724050 13743 19810322 44.6 24 24.9 24 1021.9 24 1019.5 24 15.8 23 6.5 24 10.9 999.9 55.9* 32.9 0.00D 999.9 000000 724050 13743 19810323 46.1 24 32.8 24 1017.0 24 1014.6 24 13.5 24 11.0 24 17.9 999.9 55.9 41.0* 0.00G 999.9 000000 724050 13743 19810324 49.2 24 29.0 24 1015.9 24 1013.5 24 13.9 24 9.6 24 15.9 21.0 63.0* 39.9 0.00G 999.9 000000 724050 13743 19810325 50.1 23 28.1 23 1019.7 23 1017.3 23 17.3 23 9.1 23 15.0 22.9 64.0 38.8 0.00D 999.9 000000 724050 13743 19810326 50.9 24 33.0 24 1025.2 24 1022.7 24 12.6 24 8.2 24 17.9 21.0 66.0* 36.9 0.00D 999.9 000000 724050 13743 19810327 57.3 24 38.6 24 1019.1 24 1016.7 24 14.7 24 12.1 24 19.8 28.0 69.1* 37.0 0.00D 999.9 000000 724050 13743 19810328 55.3 24 34.1 24 1029.2 24 1026.8 24 14.3 24 8.0 24 16.9 22.0 70.0 41.0 0.00D 999.9 000000 724050 13743 19810329 61.0 24 39.5 24 1022.1 24 1019.7 24 15.6 24 12.1 24 19.8 25.8 79.0* 41.0 0.00G 999.9 000000 724050 13743 19810330 65.3 22 54.3 21 1010.0 22 1007.7 22 10.5 22 14.4 22 23.9 35.9 80.1 50.0 0.24D 999.9 110000 724050 13743 19810331 68.7 22 54.2 22 1013.2 22 1010.8 22 16.5 22 7.9 22 16.9 999.9 84.0* 56.8 0.91G 999.9 000000 724050 13743 19810401 64.9 22 54.4 22 1014.2 22 1011.8 22 14.7 22 6.3 22 15.9 18.8 84.9 56.8 0.00G 999.9 110010 724050 13743 19810402 64.4 23 44.8 23 1013.6 23 1011.2 23 15.4 23 12.1 23 17.9 28.0 73.9 55.9 0.43G 999.9 000000 724050 13743 19810403 66.6 22 42.6 22 1018.5 22 1015.9 22 18.5 22 7.0 21 16.9 24.9 86.0* 47.8 0.00G 999.9 000000 724050 13743 19810404 74.1 24 50.6 24 1017.3 24 1014.9 24 16.2 24 18.1 24 24.9 34.0 86.0 66.0* 0.00G 999.9 000000 724050 13743 19810405 71.9 23 61.8 23 1012.7 23 1010.3 23 11.6 23 16.2 23 21.0 29.9 82.0 64.9* 0.02G 999.9 110000 724050 13743 19810406 55.1 24 35.6 24 1018.0 24 1015.6 24 16.5 24 16.6 24 22.0 34.0 74.8 50.0 0.28G 999.9 110000 724050 13743 19810407 53.4 24 26.0 24 1028.8 24 1026.4 24 19.8 24 6.9 24 10.9 18.8 66.9* 39.9 0.04G 999.9 000000 724050 13743 19810408 60.4 24 39.4 24 1025.4 24 1023.0 24 18.2 24 11.9 24 16.9 22.9 78.1* 39.9 0.00G 999.9 000000 724050 13743 19810409 66.4 24 53.4 24 1019.3 24 1016.9 24 10.9 24 13.3 24 17.9 22.9 78.1 48.0 0.24G 999.9 110000 724050 13743 19810410 62.8 24 43.2 24 1027.0 24 1024.6 24 15.3 24 7.7 24 11.8 999.9 73.0* 48.9 0.04G 999.9 000000 724050 13743 19810411 65.5 24 51.7 24 1021.6 24 1019.2 24 14.1 24 10.2 24 15.0 18.8 81.0* 48.9 0.00G 999.9 010010 724050 13743 19810412 67.3 24 62.9 24 1017.1 24 1014.7 24 8.7 24 7.7 24 17.9 25.8 82.0 57.0 0.02G 999.9 110000 724050 13743 19810413 51.2 24 45.0 24 1027.9 24 1025.5 24 10.5 24 12.6 24 17.9 25.8 57.0* 46.9 0.35G 999.9 010010 724050 13743 19810414 55.8 24 50.5 24 1025.9 24 1023.5 24 10.5 24 10.9 24 19.8 25.8 72.0* 46.9 0.01G 999.9 110000 724050 13743 19810415 55.9 24 33.5 24 1031.9 24 1029.6 24 19.1 24 14.8 24 22.0 29.9 73.0 45.9 0.12G 999.9 010000 724050 13743 19810416 55.6 24 37.8 24 1034.3 24 1031.9 24 18.9 24 7.9 24 14.0 23.9 71.1* 41.0 0.00G 999.9 000000 724050 13743 19810417 63.5 23 52.9 22 1021.4 23 1019.0 23 13.6 23 11.8 22 18.8 26.8 71.1 60.1* 0.00G 999.9 010000 724050 13743 19810418 70.1 24 55.9 24 1014.2 24 1011.8 24 12.4 23 10.8 24 18.8 28.9 82.9* 59.0 0.08G 999.9 010000 724050 13743 19810419 62.4 22 39.9 22 1019.8 22 1017.4 22 17.0 22 9.4 22 15.9 21.0 82.9 50.9 0.00G 999.9 000000 724050 13743 19810420 60.3 23 44.5 23 1014.4 23 1012.0 23 14.2 23 9.7 23 21.0 28.9 70.0 51.1 0.08G 999.9 010000 724050 13743 19810421 49.9 23 21.9 23 1023.2 23 1020.7 23 19.9 23 10.5 23 16.9 22.0 66.0 38.8 0.00G 999.9 000000 724050 13743 19810422 55.4 23 37.8 23 1021.6 23 1019.2 23 18.6 23 8.1 23 15.9 22.0 70.0* 39.0 0.00D 999.9 000000 724050 13743 19810423 66.7 20 55.9 20 1009.3 20 1007.0 20 12.0 19 9.6 20 17.9 29.9 82.0* 44.1 0.00G 999.9 010000 724050 13743 19810424 67.3 20 52.3 20 997.1 20 994.7 20 12.4 18 12.1 20 24.9 32.8 82.0 59.0 0.51G 999.9 010000 724050 13743 19810425 55.3 17 36.2 16 1006.3 17 1003.9 17 17.4 17 16.3 17 23.9 34.0 72.0 50.0 0.00D 999.9 000000 724050 13743 19810426 54.4 23 36.5 23 1016.9 23 1014.5 23 17.7 22 8.8 23 15.0 21.0 68.0* 43.0 0.00G 999.9 000000 724050 13743 19810427 66.4 21 49.8 21 1015.3 21 1012.9 21 15.1 21 7.0 20 11.8 19.8 75.0* 59.0* 0.00C 999.9 010000 724050 13743 19810428 68.2 20 56.7 20 1014.5 20 1012.1 20 10.9 20 7.9 20 14.0 999.9 84.0* 56.8 0.00G 999.9 010010 724050 13743 19810429 73.3 21 62.0 21 1005.5 21 1003.1 21 9.5 21 8.9 20 16.9 21.0 84.9 57.0 0.28G 999.9 100010 724050 13743 19810430 64.5 19 53.9 19 1009.5 19 1007.1 19 10.3 19 7.7 19 17.9 28.9 84.9 57.0 0.20G 999.9 110000 724050 13743 19810501 58.7 20 55.4 20 1007.6 20 1005.2 20 4.4 20 7.2 20 19.8 25.8 66.9 54.0* 0.16G 999.9 110010 724050 13743 19810502 56.4 23 46.2 23 1010.9 23 1008.5 23 12.9 23 11.0 23 15.9 999.9 66.0* 50.9 0.31G 999.9 110000 724050 13743 19810503 59.4 23 38.7 23 1017.6 23 1015.2 23 19.9 23 8.8 23 15.9 16.9 71.1* 45.0 0.00G 999.9 000000 724050 13743 19810504 63.3 19 43.8 19 1017.5 19 1015.1 19 17.8 19 6.2 19 12.8 999.9 79.0* 45.0 0.00G 999.9 000000 724050 13743 19810505 64.9 23 54.2 23 1015.7 23 1013.3 23 12.9 23 5.8 23 11.8 999.9 79.0 48.9 0.00D 999.9 000000 724050 13743 19810506 64.4 22 59.7 21 1010.8 22 1008.5 22 6.9 22 5.4 22 8.0 999.9 75.0 53.1 0.00G 999.9 110000 724050 13743 19810507 57.5 24 39.5 24 1016.3 24 1013.9 24 17.4 24 12.3 24 21.0 28.0 70.0 46.9 0.01C 999.9 010000 724050 13743 19810508 59.8 24 39.7 24 1022.2 24 1019.8 24 17.7 24 7.6 24 12.8 999.9 70.0 46.9 0.00D 999.9 000000 724050 13743 19810509 60.8 24 47.0 24 1023.4 24 1021.0 24 15.3 24 7.0 24 10.9 999.9 73.9* 47.8 0.00G 999.9 000000 724050 13743 19810510 65.1 20 59.9 20 1019.0 20 1016.6 20 7.8 20 7.7 20 11.8 999.9 75.0 48.0 0.04G 999.9 110000 724050 13743 19810511 69.1 21 66.4 21 1010.6 21 1008.2 21 7.2 21 11.1 21 25.8 35.9 73.0 61.0 0.24G 999.9 110010 724050 13743 19810512 65.6 21 57.2 21 1009.6 21 1007.2 21 12.5 21 10.8 21 18.8 28.0 73.0 59.0 0.91G 999.9 010000 724050 13743 19810513 60.0 23 46.8 23 1018.2 23 1015.8 23 12.7 23 8.4 23 16.9 22.0 73.0* 46.9 0.12G 999.9 000000 724050 13743 19810514 70.6 24 58.4 24 1014.4 24 1012.0 24 11.8 24 10.1 24 17.9 23.9 84.0* 46.9 0.00G 999.9 000000 724050 13743 19810515 71.1 24 64.3 24 1008.2 24 1005.8 24 8.2 24 9.6 24 15.9 39.8 84.0 60.1 0.00G 999.9 110010 724050 13743 19810516 64.0 24 52.5 24 1011.6 24 1009.3 24 13.5 24 10.5 24 17.9 25.8 75.0 56.8 0.63G 999.9 000010 724050 13743 19810517 65.3 23 49.4 23 1019.2 23 1016.8 23 16.9 23 8.5 23 15.0 21.0 77.0* 52.9 0.00G 999.9 000000 724050 13743 19810518 60.8 22 45.3 22 1019.5 22 1017.1 22 17.0 22 6.9 22 15.0 999.9 77.0 53.1 0.00G 999.9 010000 724050 13743 19810519 53.9 24 49.4 24 1017.1 24 1014.7 24 7.0 24 7.2 24 11.8 999.9 63.9 52.0* 0.28G 999.9 110000 724050 13743 19810520 59.4 24 47.9 23 1016.2 24 1013.8 24 11.1 24 5.9 24 8.9 999.9 71.1* 50.9 0.28G 999.9 110000 724050 13743 19810521 64.6 24 46.4 24 1015.5 24 1013.1 24 14.0 24 6.8 24 14.0 18.8 80.1* 48.9 0.04G 999.9 000000 724050 13743 19810522 73.8 24 49.8 24 1013.3 24 1010.9 24 13.3 24 9.5 24 16.9 25.8 87.1* 48.9 0.00G 999.9 000000 724050 13743 19810523 72.4 24 51.7 24 1016.0 24 1013.6 24 13.0 24 8.3 24 16.9 999.9 87.1 56.8 0.00G 999.9 000000 724050 13743 19810524 73.5 22 56.2 22 1015.9 22 1013.5 22 14.1 22 5.0 22 8.0 999.9 84.0 57.0 0.00D 999.9 000000 724050 13743 19810525 74.7 24 61.2 24 1015.5 24 1013.1 24 12.0 24 6.5 24 9.9 15.0 90.0* 57.9* 0.00G 999.9 000000 724050 13743 19810526 78.6 24 67.5 24 1015.0 24 1012.6 24 8.7 24 6.7 24 10.9 999.9 90.0 64.0 0.00G 999.9 000000 724050 13743 19810527 78.0 22 67.0 22 1014.9 22 1012.5 22 9.8 21 10.4 22 15.0 21.0 88.0 69.1 0.00D 999.9 000000 724050 13743 19810528 73.2 24 68.5 24 1009.5 24 1007.1 24 8.8 24 9.5 24 15.0 17.9 86.0 70.0 0.16G 999.9 110010 724050 13743 19810529 73.0 24 68.3 24 1008.6 24 1006.2 24 6.6 24 5.4 24 9.9 999.9 82.0* 66.9 0.16D 999.9 110000 724050 13743 19810530 77.0 22 67.5 22 1010.5 22 1008.1 22 5.6 22 6.4 22 11.8 15.0 87.1* 65.8 0.00G 999.9 000000 724050 13743 19810531 76.4 24 67.5 23 1010.5 24 1008.1 24 11.1 24 8.5 24 19.8 35.0 87.1 66.0 0.12G 999.9 010010 724050 13743 19810601 67.9 24 56.5 24 1019.7 24 1017.2 24 11.8 24 6.5 24 9.9 999.9 82.0 63.0 0.02G 999.9 110000 724050 13743 19810602 66.8 23 63.8 23 1019.2 23 1016.8 23 5.2 23 5.7 23 8.9 999.9 72.0* 63.0 0.79G 999.9 110000 724050 13743 19810603 71.7 24 68.4 24 1016.6 24 1014.2 24 4.2 24 5.9 24 8.9 999.9 82.9* 64.0 0.01G 999.9 110000 724050 13743 19810604 79.0 24 73.3 24 1012.2 24 1009.8 24 6.8 24 6.8 24 9.9 15.9 86.0 66.0 0.03D 999.9 110010 724050 13743 19810605 79.7 24 69.1 24 1012.9 24 1010.5 24 9.3 23 7.7 24 12.8 19.8 87.1* 70.9 0.00D 999.9 010000 724050 13743 19810606 79.2 24 71.7 24 1007.2 24 1004.8 24 10.4 24 8.6 24 15.0 22.0 88.0 71.1 0.00G 999.9 110000 724050 13743 19810607 77.9 24 62.9 24 1006.1 24 1003.7 24 16.2 24 10.1 24 16.9 22.9 84.9 68.9 0.02G 999.9 010000 724050 13743 19810608 77.2 24 61.2 24 1009.2 24 1006.9 24 17.4 24 6.6 24 16.9 999.9 87.1* 64.9 0.01G 999.9 000000 724050 13743 19810609 82.5 24 71.2 24 1000.4 24 998.0 24 9.8 24 11.6 24 18.8 35.0 91.0* 64.9 0.04G 999.9 110000 724050 13743 19810610 77.7 23 68.1 23 1003.8 23 1001.4 23 10.6 22 8.6 23 17.9 23.9 91.0 68.0 0.47G 999.9 110010 724050 13743 19810611 76.7 24 60.6 24 1011.7 24 1009.3 24 15.4 24 8.7 24 14.0 21.0 87.1 68.0 0.04G 999.9 000000 724050 13743 19810612 77.1 24 63.1 24 1017.8 24 1015.4 24 17.0 24 6.9 24 14.0 999.9 84.9* 70.0 0.00G 999.9 000000 724050 13743 19810613 81.0 24 74.4 24 1016.6 24 1014.1 24 4.7 24 6.0 24 11.8 999.9 88.0* 70.0 0.00D 999.9 110010 724050 13743 19810614 81.3 24 76.6 24 1015.8 24 1013.4 24 6.8 24 7.0 24 11.8 21.0 91.0* 75.0 0.47G 999.9 110010 724050 13743 19810615 82.9 24 76.0 24 1016.5 24 1014.1 24 3.8 24 6.7 24 12.8 17.9 96.1* 72.9 0.00G 999.9 110000 724050 13743 19810616 88.1 24 76.6 24 1014.2 24 1011.8 24 6.3 24 6.2 24 11.8 999.9 97.0 73.0 0.00G 999.9 100000 724050 13743 19810617 83.6 24 69.4 24 1014.1 24 1011.7 24 11.4 24 10.1 24 17.9 21.0 96.1 77.9 0.00G 999.9 000000 724050 13743 19810618 77.4 23 62.2 23 1019.1 23 1016.7 23 13.7 23 7.5 23 14.0 999.9 87.1* 66.9 0.00D 999.9 000000 724050 13743 19810619 81.6 24 70.4 24 1016.8 24 1014.4 24 8.7 24 6.9 24 14.0 999.9 90.0 66.9 0.00D 999.9 000000 724050 13743 19810620 80.0 24 74.6 24 1012.6 24 1010.2 24 6.8 24 6.1 24 9.9 999.9 90.0 75.0 0.28G 999.9 110010 724050 13743 19810621 80.6 23 71.9 23 1012.3 23 1010.1 23 5.5 23 6.7 23 12.8 15.0 91.0* 70.0 0.12G 999.9 100000 724050 13743 19810622 82.9 24 73.5 24 1007.9 24 1005.5 24 9.4 24 10.6 24 22.9 41.0 97.0* 70.0 0.04G 999.9 010010 724050 13743 19810623 80.9 24 59.2 24 1014.2 24 1011.8 24 15.5 24 9.7 24 14.0 19.8 97.0 70.9 0.01G 999.9 000000 724050 13743 19810624 82.1 23 66.0 23 1019.9 23 1017.5 23 13.3 23 8.6 23 15.9 21.0 90.0* 71.1 0.00G 999.9 000000 724050 13743 19810625 85.3 24 73.9 23 1015.0 24 1012.6 24 9.1 24 11.7 24 29.9 43.9 98.1* 70.0* 0.00D 999.9 010010 724050 13743 19810626 76.3 24 58.9 24 1014.9 24 1012.5 24 17.3 24 12.2 24 19.8 26.8 98.1 72.0 0.31G 999.9 010010 724050 13743 19810627 72.7 24 50.5 24 1022.0 24 1019.6 24 19.6 24 8.4 24 11.8 15.9 84.0* 59.9 0.00G 999.9 000000 724050 13743 19810628 75.2 24 52.7 24 1025.1 24 1022.7 24 17.4 24 5.2 24 8.0 999.9 86.0 60.1 0.00D 999.9 000000 724050 13743 19810629 77.7 24 55.7 24 1025.7 24 1023.3 24 14.7 24 6.2 24 9.9 999.9 89.1* 62.1 0.00D 999.9 000000 724050 13743 19810630 81.1 24 58.6 24 1020.3 24 1017.9 24 13.2 24 7.4 24 15.9 19.8 89.1 64.9 0.00D 999.9 000000 724050 13743 19810701 76.9 24 68.8 24 1019.4 24 1017.0 24 11.8 23 12.9 24 22.0 31.9 89.1 72.9 0.01G 999.9 110010 724050 13743 19810702 77.6 20 70.9 20 1023.5 20 1021.1 20 12.6 20 8.5 20 19.8 55.0 86.0 70.9 0.51G 999.9 110010 724050 13743 19810703 77.2 24 70.8 23 1025.1 24 1022.7 24 9.9 24 6.0 24 11.8 999.9 84.9 71.1 0.12G 999.9 110000 724050 13743 19810704 74.2 24 71.1 24 1017.9 24 1015.5 24 7.8 24 8.1 24 14.0 19.8 81.0 70.0 0.67G 999.9 110000 724050 13743 19810705 75.2 20 72.0 20 1012.6 20 1010.3 20 5.9 20 4.7 20 7.0 999.9 82.0* 70.0 0.94G 999.9 110000 724050 13743 19810706 78.4 22 74.7 22 1012.3 22 1009.9 22 5.2 22 6.0 22 9.9 999.9 84.9* 70.0 0.01G 999.9 110010 724050 13743 19810707 83.4 24 72.6 23 1015.6 24 1013.3 24 7.3 24 7.7 24 11.8 15.9 91.9* 73.9 0.00G 999.9 100000 724050 13743 19810708 85.6 24 71.1 24 1018.8 24 1016.4 24 8.0 24 8.1 24 12.8 19.8 93.9* 73.9 0.00D 999.9 000000 724050 13743 19810709 90.5 24 75.0 24 1015.4 24 1013.0 24 5.8 24 9.9 24 14.0 18.8 98.1* 75.9 0.00D 999.9 000000 724050 13743 19810710 89.2 22 73.8 22 1013.4 22 1011.0 22 8.6 22 9.4 22 14.0 999.9 98.1 79.9 0.00D 999.9 000000 724050 13743 19810711 84.4 22 64.1 22 1016.6 22 1014.2 22 13.7 22 7.1 22 11.8 15.0 93.0 72.9 0.00C 999.9 000000 724050 13743 19810712 84.0 24 65.7 24 1018.2 24 1015.8 24 14.9 24 5.7 24 9.9 999.9 93.0* 72.9 0.00G 999.9 000000 724050 13743 19810713 85.5 23 73.7 23 1013.4 23 1011.0 23 7.5 23 7.9 23 12.8 999.9 92.8 73.0 0.55D 999.9 110000 724050 13743 19810714 86.5 24 71.3 24 1008.4 24 1006.0 24 8.4 24 11.2 24 18.8 24.9 91.9* 78.1 0.00C 999.9 000000 724050 13743 19810715 78.0 24 57.8 24 1012.7 24 1010.3 24 17.9 24 9.9 24 15.9 21.0 91.9 66.9 0.00G 999.9 000000 724050 13743 19810716 76.4 24 64.0 24 1013.3 24 1010.9 24 16.2 24 6.0 24 10.9 999.9 86.0 66.9 0.00G 999.9 000000 724050 13743 19810717 79.6 23 66.5 23 1013.9 23 1011.5 23 11.2 23 5.0 23 8.0 999.9 88.0* 69.1 0.00D 999.9 000000 724050 13743 19810718 81.4 23 66.8 23 1015.9 23 1013.5 23 7.4 23 5.0 23 8.9 999.9 91.9* 70.0 0.00G 999.9 100000 724050 13743 19810719 84.5 24 70.3 24 1016.4 24 1013.8 24 7.3 24 7.1 24 10.9 15.9 95.0* 70.0 0.00G 999.9 000000 724050 13743 19810720 87.0 23 74.6 23 1011.8 23 1009.4 23 6.1 23 12.0 23 24.9 35.9 97.0* 73.9 0.00D 999.9 010010 724050 13743 19810721 83.8 23 76.6 23 1005.7 23 1003.3 23 7.0 23 8.9 23 28.9 42.9 97.0 75.9 0.75G 999.9 110010 724050 13743 19810722 81.7 21 68.4 20 1011.0 21 1008.6 21 9.8 21 9.6 20 12.8 16.9 93.9 73.9 0.20G 999.9 000000 724050 13743 19810723 77.5 23 59.6 23 1019.3 23 1016.9 23 16.0 23 8.0 23 11.8 999.9 84.9 68.0 0.00G 999.9 000000 724050 13743 19810724 76.1 24 62.3 24 1022.7 24 1020.3 24 13.1 24 5.5 24 9.9 999.9 84.0 68.0 0.00G 999.9 010000 724050 13743 19810725 74.6 24 69.6 24 1022.9 24 1020.4 24 7.7 24 6.8 24 9.9 999.9 80.1 70.0 0.02G 999.9 110000 724050 13743 19810726 80.2 23 76.0 23 1020.7 23 1018.3 23 5.4 22 6.2 23 9.9 16.9 89.1* 72.0 1.02G 999.9 110000 724050 13743 19810727 81.6 23 74.5 23 1018.9 23 1016.4 23 7.3 22 8.7 23 15.0 26.8 90.0* 73.9 0.08G 999.9 010010 724050 13743 19810728 81.7 20 74.2 20 1019.2 20 1016.8 20 6.1 19 7.9 20 999.9 999.9 90.0 73.9 0.00G 999.9 110010 724050 13743 19810729 79.8 23 71.7 23 1013.0 23 1010.6 23 9.9 23 11.6 23 19.8 29.9 87.1 75.9 0.43G 999.9 110010 724050 13743 19810730 73.7 23 58.2 22 1020.7 23 1018.2 23 16.9 23 9.1 23 15.0 18.8 84.0* 61.0 0.00G 999.9 000000 724050 13743 19810731 77.1 24 62.4 24 1025.4 24 1023.0 24 16.7 24 4.9 24 8.0 999.9 87.1 61.0 0.00G 999.9 000000 724050 13743 19810801 78.9 17 65.0 17 1026.0 17 1023.6 17 15.6 17 6.6 17 9.9 999.9 87.1 66.0 0.00G 999.9 000000 724050 13743 19810802 78.6 20 66.3 20 1021.3 20 1018.9 20 15.5 20 7.2 20 16.9 999.9 86.0* 66.9 0.00G 999.9 000000 724050 13743 19810803 78.9 22 71.8 22 1016.0 22 1013.6 22 11.4 22 7.5 22 10.9 999.9 86.0 66.9 0.00D 999.9 110000 724050 13743 19810804 80.0 22 75.2 22 1015.9 22 1013.5 22 4.6 22 5.7 22 9.9 999.9 89.1* 72.9 0.08G 999.9 110000 724050 13743 19810805 86.7 19 73.9 19 1014.8 19 1012.4 19 6.6 19 9.7 19 15.0 22.0 93.9* 73.0 0.00G 999.9 000000 724050 13743 19810806 76.1 22 68.1 22 1014.7 22 1012.3 22 7.6 22 6.6 22 14.0 999.9 93.9 70.9 0.00G 999.9 110000 724050 13743 19810807 74.6 23 69.4 23 1010.4 23 1008.0 23 6.9 23 5.0 23 8.0 999.9 84.9* 66.9 0.16G 999.9 110000 724050 13743 19810808 80.8 24 74.9 24 1007.8 24 1005.4 24 7.0 23 7.3 24 9.9 999.9 87.1* 66.9 0.04G 999.9 110000 724050 13743 19810809 82.4 24 72.5 24 1013.4 24 1011.0 24 10.0 24 5.2 24 9.9 999.9 90.0 73.9 0.00G 999.9 000000 724050 13743 19810810 83.8 24 72.0 24 1019.7 24 1017.3 24 9.1 24 6.6 24 9.9 999.9 91.9* 73.9 0.00D 999.9 000000 724050 13743 19810811 84.5 22 75.2 22 1018.3 22 1015.9 22 5.6 22 6.5 22 10.9 999.9 93.0* 75.0 0.01G 999.9 110000 724050 13743 19810812 77.0 24 71.8 24 1016.3 24 1013.9 24 6.0 24 7.1 24 19.8 26.8 93.0 72.0 0.71G 999.9 110010 724050 13743 19810813 77.6 23 67.5 23 1018.9 23 1016.5 23 9.4 23 7.0 23 12.8 999.9 84.9* 68.0 0.67G 999.9 100000 724050 13743 19810814 80.0 24 70.0 24 1019.9 24 1017.5 24 7.2 24 5.9 24 10.9 999.9 88.0* 68.0 0.00G 999.9 100000 724050 13743 19810815 80.9 23 73.5 23 1015.1 23 1012.7 23 5.9 23 9.1 23 16.9 22.0 89.1* 69.1 0.00G 999.9 000000 724050 13743 19810816 80.3 24 72.8 24 1008.7 24 1006.3 24 6.4 24 7.9 24 15.0 23.9 89.1 73.0 0.39G 999.9 110010 724050 13743 19810817 72.8 24 56.9 24 1014.8 24 1012.4 24 16.2 24 11.6 24 15.9 21.0 88.0 61.9 0.00G 999.9 000000 724050 13743 19810818 71.1 24 53.9 24 1019.1 24 1016.7 24 19.8 24 5.8 24 9.9 999.9 81.0* 57.9 0.00G 999.9 000000 724050 13743 19810819 72.2 23 60.0 23 1020.0 23 1017.6 23 16.1 23 7.5 23 12.8 18.8 81.0 57.9 0.00C 999.9 000000 724050 13743 19810820 73.5 24 60.8 24 1017.6 24 1015.2 24 14.9 24 13.2 22 19.8 24.9 81.0* 64.0 0.00G 999.9 000000 724050 13743 19810821 72.1 24 54.5 24 1021.9 24 1019.5 24 17.3 24 7.8 24 15.9 999.9 81.0 59.9 0.00D 999.9 000000 724050 13743 19810822 70.9 24 60.7 23 1023.5 24 1021.1 24 15.9 24 6.6 24 10.9 999.9 81.0 60.1 0.00D 999.9 000000 724050 13743 19810823 71.9 23 57.1 23 1018.9 23 1016.5 23 16.6 23 7.0 23 9.9 15.9 84.9* 59.0 0.00G 999.9 000000 724050 13743 19810824 77.4 24 62.3 24 1016.3 24 1013.9 24 11.4 24 6.8 24 10.9 999.9 90.0* 59.0 0.00G 999.9 000000 724050 13743 19810825 76.1 24 62.0 24 1018.7 24 1016.3 24 11.1 24 9.1 24 14.0 999.9 90.0 66.0 0.00G 999.9 010000 724050 13743 19810826 73.6 24 64.2 24 1021.4 24 1019.0 24 9.9 24 5.8 24 9.9 999.9 82.9 63.9 0.00D 999.9 100000 724050 13743 19810827 75.8 22 66.4 22 1019.0 22 1016.6 22 10.3 22 9.6 22 11.8 999.9 87.1* 64.0 0.00D 999.9 000000 724050 13743 19810828 79.5 24 67.1 24 1020.7 24 1018.3 24 6.1 24 7.3 24 9.9 999.9 91.0* 66.9 0.00D 999.9 000000 724050 13743 19810829 77.7 24 68.0 24 1023.1 24 1020.7 24 7.9 24 6.4 23 10.9 999.9 91.0 68.0 0.00D 999.9 100000 724050 13743 19810830 77.1 24 73.0 24 1020.0 24 1017.5 24 7.1 24 5.3 24 8.9 999.9 87.1 68.0 0.00G 999.9 110000 724050 13743 19810831 77.3 24 73.5 24 1017.9 24 1015.5 24 5.9 24 6.4 24 9.9 999.9 82.9* 72.9 0.94G 999.9 110010 724050 13743 19810901 78.2 24 71.3 24 1015.8 24 1013.4 24 9.0 24 5.3 24 9.9 999.9 86.0* 72.0 0.08G 999.9 000000 724050 13743 19810902 78.6 24 72.4 23 1016.0 24 1013.6 24 11.8 24 6.8 24 10.9 999.9 86.0 72.0 0.00G 999.9 100000 724050 13743 19810903 77.1 24 69.9 24 1018.1 24 1015.8 24 9.9 24 7.0 24 11.8 999.9 84.9 72.9 0.00D 999.9 000000 724050 13743 19810904 73.8 24 67.7 24 1018.8 24 1016.2 24 8.2 23 5.9 24 10.9 999.9 81.0 70.0 0.00G 999.9 010000 724050 13743 19810905 72.7 23 67.1 23 1018.9 23 1016.5 23 8.1 23 5.2 23 9.9 999.9 75.9 68.9 0.00G 999.9 110000 724050 13743 19810906 75.4 23 68.9 22 1019.6 23 1017.2 23 8.8 23 6.3 23 8.9 999.9 82.0* 68.9 0.00G 999.9 000000 724050 13743 19810907 75.6 24 68.3 24 1018.5 24 1016.2 24 8.8 24 8.4 24 10.9 999.9 82.9 69.1 0.00G 999.9 000000 724050 13743 19810908 74.6 24 70.8 24 1011.3 24 1008.9 24 7.9 24 9.0 24 14.0 999.9 82.0 70.0 0.00G 999.9 110000 724050 13743 19810909 70.6 23 58.2 23 1010.8 23 1008.4 23 18.1 23 8.5 23 15.9 22.9 80.1 59.0 0.08G 999.9 100000 724050 13743 19810910 69.8 24 55.0 24 1015.5 24 1013.1 24 17.9 24 6.4 24 12.8 18.8 82.0* 55.9 0.00G 999.9 000000 724050 13743 19810911 75.9 24 61.3 24 1015.8 24 1013.4 24 14.4 24 6.2 24 10.9 15.0 90.0* 55.9 0.00G 999.9 000000 724050 13743 19810912 80.1 24 66.2 24 1015.7 24 1013.3 24 11.4 24 6.7 24 15.0 16.9 91.9* 64.0 0.00G 999.9 000000 724050 13743 19810913 81.0 24 67.3 24 1015.2 24 1012.8 24 6.1 24 5.2 24 8.9 999.9 93.0 69.1 0.00G 999.9 000000 724050 13743 19810914 80.5 24 69.5 24 1012.6 24 1010.2 24 5.2 24 6.7 24 14.0 999.9 93.9* 70.0 0.00D 999.9 100000 724050 13743 19810915 78.3 24 71.2 24 1010.2 24 1007.8 24 5.4 24 6.2 24 15.9 28.0 93.9 70.0 0.00G 999.9 110000 724050 13743 19810916 69.5 23 66.7 23 1011.6 23 1009.2 23 5.8 23 9.8 23 12.8 17.9 84.0 64.9* 1.54G 999.9 110000 724050 13743 19810917 70.6 23 64.3 23 1017.2 23 1014.8 23 7.8 23 5.5 23 8.9 999.9 75.9* 64.9 0.02G 999.9 110000 724050 13743 19810918 66.2 24 59.3 24 1018.4 24 1016.0 24 9.1 24 9.0 24 11.8 999.9 75.9 63.0 0.08G 999.9 110000 724050 13743 19810919 63.6 23 50.3 23 1012.9 23 1010.5 23 16.5 23 11.9 23 15.9 23.9 69.1 54.0 0.01G 999.9 000000 724050 13743 19810920 62.5 24 53.0 24 1011.7 24 1009.3 24 18.8 23 6.7 24 11.8 999.9 73.0 52.9 0.00G 999.9 000000 724050 13743 19810921 68.8 23 59.6 23 1016.7 23 1014.3 23 10.6 23 4.5 23 8.9 999.9 80.1* 53.1 0.00D 999.9 000000 724050 13743 19810922 71.9 23 63.7 23 1014.4 23 1012.1 23 8.7 23 7.6 23 9.9 999.9 82.0* 60.1 0.00G 999.9 100010 724050 13743 19810923 63.2 23 50.7 23 1018.9 23 1016.5 23 15.7 23 14.2 23 22.0 26.8 82.0 52.0 0.20G 999.9 010010 724050 13743 19810924 61.5 24 42.5 24 1021.9 24 1019.5 24 19.5 24 12.2 24 19.8 28.0 73.0* 50.9 0.00G 999.9 000000 724050 13743 19810925 64.6 24 47.0 24 1024.9 24 1022.5 24 19.9 24 7.5 24 9.9 999.9 75.9* 51.1 0.00G 999.9 000000 724050 13743 19810926 68.8 24 56.9 24 1023.4 24 1021.0 24 16.5 24 4.6 24 10.9 999.9 80.1* 54.0 0.00G 999.9 000000 724050 13743 19810927 71.9 23 61.7 23 1018.3 23 1015.9 23 12.8 23 8.2 23 11.8 999.9 84.0* 57.9 0.00D 999.9 010010 724050 13743 19810928 70.6 23 52.8 23 1016.8 23 1014.4 23 15.0 23 9.1 23 16.9 25.8 84.0 61.0 0.04G 999.9 100010 724050 13743 19810929 61.1 23 44.4 23 1022.2 23 1019.8 23 19.5 23 6.8 23 11.8 14.0 72.0 48.9 0.00G 999.9 000000 724050 13743 19810930 65.6 24 49.8 24 1021.6 24 1019.2 24 16.0 24 6.1 24 8.9 999.9 72.0 48.9 0.00G 999.9 000000 724050 13743 19811001 70.1 24 59.5 24 1012.4 24 1010.0 24 12.3 24 8.4 24 19.8 22.9 87.1* 59.9 0.00G 999.9 100000 724050 13743 19811002 64.0 22 53.7 22 1005.7 22 1003.4 22 13.3 22 12.3 22 21.0 31.9 87.1 57.0 0.24G 999.9 010010 724050 13743 19811003 56.3 23 41.0 23 1013.7 23 1011.3 23 19.9 23 12.2 23 19.8 26.8 66.0 47.8 0.01G 999.9 000000 724050 13743 19811004 58.0 24 43.6 24 1020.0 24 1017.6 24 19.9 24 7.3 24 11.8 16.9 71.1* 43.9 0.00G 999.9 000000 724050 13743 19811005 67.9 24 55.8 24 1017.6 24 1015.2 24 14.7 24 5.9 24 10.9 16.9 82.9* 44.1 0.00G 999.9 000000 724050 13743 19811006 68.4 23 64.3 23 1012.1 23 1009.7 23 7.6 23 4.7 23 28.0 42.9 82.9 59.0 0.01C 999.9 110010 724050 13743 19811007 64.1 24 45.8 24 1008.5 24 1006.2 24 19.1 24 14.9 24 22.0 31.9 80.1 57.9 0.59G 999.9 000010 724050 13743 19811008 59.0 23 42.0 23 1012.7 23 1010.4 23 17.7 23 12.0 23 18.8 26.8 66.0 52.9 0.00G 999.9 000000 724050 13743 19811009 55.7 24 41.9 24 1019.2 24 1016.8 24 17.6 24 8.5 23 12.8 999.9 64.0 46.9 0.00D 999.9 000000 724050 13743 19811010 55.3 23 44.2 23 1023.3 23 1020.9 23 18.8 23 5.8 23 9.9 999.9 64.0 45.9 0.00G 999.9 000000 724050 13743 19811011 58.3 22 47.4 22 1024.6 22 1022.2 22 14.5 22 4.1 22 8.0 999.9 64.0* 46.0 0.00G 999.9 000000 724050 13743 19811012 57.0 23 46.9 23 1027.1 23 1024.6 23 14.7 23 6.3 23 11.8 999.9 64.9* 48.9 0.00D 999.9 000000 724050 13743 19811013 54.2 19 43.7 19 1031.4 19 1029.0 19 15.3 19 6.7 19 10.9 999.9 64.9 43.0 0.00D 999.9 000000 724050 13743 19811014 54.5 24 45.3 24 1032.1 24 1029.7 24 10.9 24 4.8 24 8.0 999.9 68.0* 41.9 0.00G 999.9 100000 724050 13743 19811015 55.6 24 47.4 24 1025.5 24 1023.1 24 7.3 24 3.5 24 7.0 999.9 68.0 42.1 0.00G 999.9 100000 724050 13743 19811016 62.3 24 49.9 23 1016.2 24 1013.8 24 10.6 24 7.9 24 19.8 26.8 75.9* 44.1 0.00G 999.9 000000 724050 13743 19811017 55.2 24 38.9 24 1020.6 24 1018.2 24 18.0 24 8.5 24 14.0 15.9 75.9 43.0 0.00G 999.9 000000 724050 13743 19811018 58.2 22 51.6 22 1012.6 22 1010.2 22 15.4 21 10.6 22 18.8 22.0 69.1* 43.0 0.00D 999.9 110000 724050 13743 19811019 55.9 24 37.8 24 1013.1 24 1010.7 24 18.4 24 12.6 24 22.0 30.9 69.1 50.0 0.43G 999.9 010000 724050 13743 19811020 49.5 24 32.9 24 1026.5 24 1024.1 24 18.7 24 9.3 24 15.9 22.9 64.0* 36.9 0.00G 999.9 000000 724050 13743 19811021 56.9 23 40.2 23 1027.1 23 1024.7 23 17.9 23 7.4 23 11.8 999.9 73.0* 37.0 0.00G 999.9 000000 724050 13743 19811022 62.8 24 47.0 24 1025.1 24 1022.7 24 14.3 24 6.5 23 8.9 999.9 75.0* 45.0 0.00G 999.9 000000 724050 13743 19811023 64.5 24 59.3 24 1017.7 24 1015.3 24 8.5 24 9.0 24 16.9 26.8 75.0 54.0 0.00G 999.9 110000 724050 13743 19811024 49.9 24 36.5 24 1024.5 24 1022.0 24 17.0 24 9.2 24 16.9 22.0 68.0 41.9 0.55G 999.9 110000 724050 13743 19811025 48.7 24 42.5 24 1027.1 24 1024.7 24 10.5 24 6.7 24 10.9 999.9 57.0* 41.9 0.01G 999.9 110000 724050 13743 19811026 58.5 24 58.2 24 1021.8 24 1019.4 24 3.9 24 5.3 24 8.9 999.9 62.1* 42.1 0.39G 999.9 110000 724050 13743 19811027 67.7 24 66.9 24 1015.6 24 1013.2 24 4.9 24 6.6 24 15.9 22.9 71.1* 55.9 0.79G 999.9 110010 724050 13743 19811028 62.4 23 55.3 23 1016.5 23 1014.1 23 16.1 23 8.8 22 15.9 22.9 73.9* 54.0 0.12G 999.9 010000 724050 13743 19811029 55.5 24 47.7 24 1027.0 24 1024.5 24 11.8 24 8.9 24 14.0 999.9 73.9 50.0 0.00G 999.9 110000 724050 13743 19811030 55.6 24 48.4 24 1031.9 24 1029.5 24 11.8 24 8.6 24 11.8 999.9 60.1 50.0 0.00G 999.9 110000 724050 13743 19811031 55.3 23 47.5 23 1035.0 23 1032.6 23 11.8 23 7.9 23 10.9 999.9 60.1 50.0 0.00G 999.9 000000 724050 13743 19811101 58.7 24 51.6 24 1032.5 24 1030.0 24 12.8 24 5.6 24 11.8 999.9 66.0* 50.0 0.00D 999.9 000000 724050 13743 19811102 62.2 24 56.0 24 1024.5 24 1022.1 24 7.6 24 5.2 24 9.9 999.9 75.9* 52.0 0.00G 999.9 100000 724050 13743 19811103 65.8 24 48.9 24 1023.8 24 1021.4 24 12.8 24 4.9 24 8.0 999.9 75.9 52.0 0.00G 999.9 000000 724050 13743 19811104 57.5 23 44.5 23 1023.4 23 1021.0 23 12.8 23 4.0 23 7.0 999.9 73.0* 46.9 0.00D 999.9 000000 724050 13743 19811105 58.8 24 52.2 24 1019.7 24 1017.2 24 6.5 24 4.1 24 7.0 999.9 73.9 46.9 0.00D 999.9 100000 724050 13743 19811106 61.8 24 52.1 24 1005.9 24 1003.5 24 12.3 24 11.0 24 22.0 35.0 70.0 48.9 0.28G 999.9 110010 724050 13743 19811107 51.7 20 30.8 20 1007.0 20 1004.6 20 19.9 20 15.3 20 21.0 26.8 66.9 47.8 0.02G 999.9 000000 724050 13743 19811108 55.2 23 32.0 23 1017.6 23 1015.1 23 19.9 23 8.7 23 11.8 15.9 66.9* 46.9 0.00G 999.9 000000 724050 13743 19811109 54.2 23 42.1 23 1022.7 23 1020.3 23 14.1 23 5.4 23 10.9 999.9 66.9 41.0 0.00G 999.9 000000 724050 13743 19811110 50.1 24 38.2 24 1028.0 24 1025.6 24 13.0 24 9.8 24 15.9 999.9 66.0 41.0 0.00G 999.9 000000 724050 13743 19811111 51.8 24 40.6 24 1023.5 24 1021.1 24 8.2 24 7.1 24 15.0 22.0 59.0 44.1 0.00G 999.9 000000 724050 13743 19811112 47.1 24 31.7 24 1025.7 24 1023.3 24 12.8 24 11.5 24 15.9 19.8 60.1 38.8 0.00G 999.9 000000 724050 13743 19811113 45.9 23 22.7 23 1028.3 23 1025.9 23 14.9 22 10.3 23 11.8 999.9 57.0* 34.9 0.00C 999.9 000000 724050 13743 19811114 51.7 24 25.0 24 1022.2 24 1019.7 24 14.3 24 11.0 24 14.0 999.9 59.0* 35.1 0.00G 999.9 000000 724050 13743 19811115 59.4 23 38.5 22 1010.4 23 1008.0 23 15.4 23 13.2 23 18.8 23.9 66.9* 44.1 0.00D 999.9 010000 724050 13743 19811116 57.5 24 45.5 24 1007.0 24 1004.6 24 16.6 24 7.0 24 12.8 19.8 68.0* 46.9 0.00D 999.9 000000 724050 13743 19811117 54.2 24 45.3 24 1005.5 24 1003.1 24 11.9 24 8.0 24 15.0 22.0 68.0 46.9 0.01G 999.9 010000 724050 13743 19811118 57.1 24 39.5 24 1005.8 24 1003.4 24 13.2 24 11.8 24 22.0 37.9 59.0 48.9 0.00D 999.9 000000 724050 13743 19811119 51.9 22 39.1 22 1012.8 22 1010.4 22 12.8 22 6.6 22 9.9 15.9 64.0* 41.0 0.00D 999.9 000000 724050 13743 19811120 59.1 23 47.2 23 1001.7 23 999.3 23 11.1 23 10.2 23 15.9 22.0 66.0* 41.0 0.00G 999.9 110000 724050 13743 19811121 47.1 24 26.5 24 1006.1 24 1003.7 24 19.5 24 14.9 24 23.9 32.8 66.0 41.0 0.00G 999.9 000000 724050 13743 19811122 43.1 23 23.8 23 1015.0 23 1012.6 23 18.2 23 12.2 23 18.8 25.8 50.0 39.9 0.00G 999.9 000000 724050 13743 19811123 38.9 23 20.8 23 1019.8 23 1017.4 23 15.2 23 7.6 23 14.0 15.9 48.0 32.0 0.00G 999.9 000000 724050 13743 19811124 40.5 22 31.2 22 1015.4 22 1013.0 22 8.9 22 5.8 22 11.8 999.9 46.9 32.0 0.00G 999.9 111000 724050 13743 19811125 39.3 24 29.8 24 1018.0 24 1015.6 24 8.0 24 12.1 24 15.9 22.0 46.0 30.9 0.01G 999.9 100000 724050 13743 19811126 40.3 23 27.3 22 1022.1 23 1019.7 23 12.2 23 5.3 23 8.9 999.9 52.0* 30.9 0.00G 999.9 000000 724050 13743 19811127 57.0 24 44.3 24 1011.7 24 1009.3 24 11.8 24 10.2 24 12.8 16.9 71.1* 46.9* 0.00D 999.9 000000 724050 13743 19811128 48.3 24 30.9 24 1015.9 24 1013.5 24 14.7 24 12.3 24 17.9 29.9 71.1 43.0 0.00G 999.9 000000 724050 13743 19811129 45.4 24 24.6 24 1020.8 24 1018.4 24 14.7 24 11.2 24 15.9 22.0 51.1* 39.9 0.00G 999.9 000000 724050 13743 19811130 40.9 23 22.1 23 1022.4 23 1020.0 23 13.8 22 7.8 23 10.9 999.9 51.1 36.0 0.00D 999.9 000000 724050 13743 19811201 39.8 24 31.3 24 1019.0 24 1016.6 24 8.8 24 5.7 23 9.9 999.9 48.9 32.9 0.16G 999.9 110000 724050 13743 19811202 47.1 22 44.6 22 1006.6 21 1004.3 21 6.4 22 4.9 22 8.9 999.9 55.9* 33.1 0.51G 999.9 110000 724050 13743 19811203 49.9 23 36.1 23 1012.4 23 1010.1 23 12.8 22 8.3 23 15.0 15.9 55.9 44.1 0.00G 999.9 010000 724050 13743 19811204 46.5 24 39.9 24 1014.7 24 1012.4 24 9.8 24 5.1 24 8.0 999.9 53.1 41.0 0.00G 999.9 110000 724050 13743 19811205 46.0 24 37.8 24 1016.1 24 1013.7 24 7.9 24 12.6 24 21.0 29.9 52.0 41.0 0.04G 999.9 110000 724050 13743 19811206 43.0 24 23.3 24 1017.0 24 1014.7 24 19.1 24 16.6 24 23.9 37.9 50.0 37.9 0.02G 999.9 000000 724050 13743 19811207 41.5 24 27.4 24 1013.0 24 1010.6 24 16.6 24 6.6 24 12.8 19.8 50.0 34.9 0.00G 999.9 010000 724050 13743 19811208 48.8 23 37.9 23 1003.9 23 1001.5 23 11.9 23 10.0 23 21.0 37.9 55.9* 35.1 0.00G 999.9 110000 724050 13743 19811209 40.4 23 20.4 23 1008.8 23 1006.4 23 18.5 23 20.3 23 25.8 42.9 55.9 36.0 0.00C 999.9 000000 724050 13743 19811210 35.3 22 15.8 22 1009.3 22 1006.9 22 19.6 22 18.8 22 22.9 31.9 42.1 30.9 0.00G 999.9 000000 724050 13743 19811211 37.2 24 21.4 24 1011.3 24 1008.9 24 14.3 23 14.6 24 18.8 25.8 42.1* 30.9 0.00G 999.9 001000 724050 13743 19811212 39.4 24 24.2 24 1019.9 24 1017.5 24 16.5 24 12.5 24 15.9 23.9 46.9 32.9 0.00G 999.9 000000 724050 13743 19811213 34.9 24 23.6 24 1026.7 24 1024.3 24 16.0 24 6.2 24 9.9 999.9 46.9 28.0 0.00D 999.9 000000 724050 13743 19811214 35.5 24 30.7 24 1024.0 24 1021.6 24 5.0 24 4.9 24 8.9 999.9 44.1 28.0 0.00H 999.9 111000 724050 13743 19811215 39.3 21 36.5 21 1011.8 21 1009.4 21 4.9 21 9.3 21 16.9 19.8 41.0* 32.0 0.87G 999.9 111000 724050 13743 19811216 38.3 23 30.8 23 1012.6 23 1010.2 23 9.9 23 12.7 23 18.8 24.9 41.0 36.0 0.67G 0.8 111000 724050 13743 19811217 36.0 23 26.8 23 1022.3 23 1019.9 23 11.3 23 6.0 23 12.8 999.9 43.0 28.9 0.08G 999.9 011000 724050 13743 19811218 37.9 22 27.5 22 1016.0 21 1013.7 21 10.7 21 10.0 22 16.9 999.9 45.0 28.9 0.00G 999.9 000000 724050 13743 19811219 26.9 23 12.6 23 1020.5 23 1018.1 23 19.9 23 12.4 23 22.0 28.0 39.9 20.8 0.00D 999.9 000000 724050 13743 19811220 24.9 17 9.6 17 1024.5 17 1022.0 17 19.9 17 10.4 17 16.9 22.9 32.0 18.0 0.00G 999.9 000000 724050 13743 19811221 25.4 24 13.2 24 1026.8 24 1024.4 24 16.4 24 7.6 23 9.9 17.9 35.1* 16.0 0.00G 999.9 000000 724050 13743 19811222 37.4 22 31.6 22 1016.4 22 1014.0 22 9.0 22 11.9 22 18.8 25.8 42.1* 35.1* 0.04G 999.9 111000 724050 13743 19811223 51.2 24 42.8 24 1009.6 24 1007.3 24 9.3 24 11.2 24 17.9 29.9 64.9 33.1 0.04G 999.9 100000 724050 13743 19811224 41.9 24 27.9 24 1022.0 24 1019.6 24 13.0 24 4.0 24 8.9 999.9 66.0 32.9 0.00G 999.9 000000 724050 13743 19811225 41.5 23 28.2 23 1023.5 22 1021.1 22 9.3 22 3.4 23 7.0 999.9 53.1 32.9 0.00G 999.9 001000 724050 13743 19811226 34.4 23 26.7 23 1022.1 23 1019.7 23 3.2 23 2.9 23 7.0 999.9 43.0 30.9 0.00G 999.9 111000 724050 13743 19811227 38.9 24 29.6 24 1012.8 22 1010.5 22 4.2 24 5.4 24 8.9 999.9 41.0* 30.9 0.02G 999.9 110000 724050 13743 19811228 38.0 24 30.8 24 1016.8 24 1014.4 24 4.5 24 4.9 24 15.9 24.9 48.9* 30.9 0.04G 999.9 100000 724050 13743 19811229 41.3 24 25.7 24 1019.4 24 1017.0 24 10.9 24 12.9 24 22.9 29.9 48.9 30.9 0.00G 999.9 000000 724050 13743 19811230 33.3 24 14.9 24 1031.7 24 1029.3 24 11.1 23 7.7 24 14.0 999.9 44.1 25.9 0.00G 999.9 000000 724050 13743 19811231 28.9 24 19.2 24 1030.4 24 1027.9 24 8.2 24 4.9 23 14.0 999.9 39.9* 20.8 0.00D 999.9 110000 fluids-1.0.22/tests/gsod/1968/0000755000175000017500000000000014302004506015107 5ustar nileshnileshfluids-1.0.22/tests/gsod/1968/724050-13743.op0000644000175000017500000010516514302004506016677 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19680102 20.2 13 7.5 13 1033.0 4 1032.0 4 6.0 13 2.2 13 7.0 999.9 25.3* 12.4* 99.99 999.9 001000 724050 13743 19680103 31.2 13 26.7 13 1022.8 4 1021.8 4 3.5 13 2.6 13 5.1 999.9 36.3* 25.3* 99.99 999.9 110000 724050 13743 19680104 36.0 13 27.6 13 1011.4 4 1010.4 4 5.5 13 8.4 13 23.9 999.9 39.4* 33.4* 99.99 999.9 110000 724050 13743 19680105 18.2 13 -5.5 13 1033.4 4 1032.4 4 14.9 13 10.3 13 15.9 999.9 24.4* 13.5* 0.00I 999.9 000000 724050 13743 19680108 14.4 13 -5.4 13 9999.9 0 9999.9 0 14.9 13 13.3 13 16.9 999.9 17.4* 11.3* 0.00I 999.9 000000 724050 13743 19680109 19.4 13 7.7 13 9999.9 0 9999.9 0 5.2 13 4.2 13 7.0 999.9 22.5* 16.3* 99.99 999.9 101000 724050 13743 19680110 28.3 13 14.8 13 9999.9 0 9999.9 0 6.6 13 6.2 13 8.0 999.9 31.3* 22.5* 0.00I 999.9 000000 724050 13743 19680111 19.8 13 0.6 13 9999.9 0 9999.9 0 11.5 13 8.3 13 11.1 999.9 22.5* 16.3* 0.00I 999.9 000000 724050 13743 19680112 19.1 13 -3.3 13 9999.9 0 9999.9 0 11.9 13 6.1 13 8.9 999.9 26.4* 9.3* 0.00I 999.9 000000 724050 13743 19680115 34.8 13 23.9 13 9999.9 0 9999.9 0 7.6 13 10.4 13 13.0 999.9 38.3* 30.4* 99.99 999.9 101000 724050 13743 19680116 26.8 13 8.0 13 1022.8 4 1021.8 4 14.9 13 14.6 13 18.1 999.9 29.3* 23.4* 0.00I 999.9 000000 724050 13743 19680117 31.8 13 12.4 13 1030.2 4 1029.2 4 11.5 13 3.0 13 7.0 999.9 38.3* 24.4* 0.00I 999.9 000000 724050 13743 19680118 38.8 13 22.5 13 1031.1 4 1030.1 4 5.4 13 2.3 13 4.1 999.9 49.3* 26.4* 0.00I 999.9 000000 724050 13743 19680119 43.7 13 25.6 13 1024.6 4 1023.6 4 9.3 13 5.4 13 14.0 999.9 53.4* 30.4* 0.00I 999.9 000000 724050 13743 19680122 43.0 13 26.5 13 1021.8 4 1020.7 4 7.9 13 4.8 13 8.9 999.9 49.3* 34.3* 0.00I 999.9 000000 724050 13743 19680123 44.0 13 37.3 13 1009.5 4 1008.5 4 5.2 13 5.9 13 15.0 999.9 47.3* 41.4* 99.99 999.9 010000 724050 13743 19680124 25.9 13 8.4 13 1016.2 4 1015.2 4 14.7 13 10.9 13 15.9 999.9 29.3* 22.5* 99.99 999.9 001000 724050 13743 19680125 26.6 13 7.5 13 1014.9 4 1013.8 4 14.9 13 9.2 13 12.0 999.9 29.3* 25.3* 0.00I 999.9 000000 724050 13743 19680126 34.5 13 7.9 13 1023.6 4 1022.6 4 9.6 13 8.7 13 12.0 999.9 43.3* 23.4* 0.00I 999.9 000000 724050 13743 19680129 48.3 13 29.9 13 1028.8 4 1027.8 4 5.0 13 3.2 13 8.0 999.9 57.4* 39.4* 0.00I 999.9 000000 724050 13743 19680130 51.6 13 40.6 13 1022.1 4 1021.1 4 5.0 13 2.8 13 6.0 999.9 58.3* 44.4* 99.99 999.9 010000 724050 13743 19680131 45.0 13 37.0 13 1030.4 4 1029.4 4 8.6 13 4.7 13 7.0 999.9 46.4* 43.3* 0.00I 999.9 000000 724050 13743 19680201 40.4 13 37.0 13 1028.6 4 1027.6 4 3.7 13 3.0 13 7.0 999.9 42.4* 37.4* 99.99 999.9 110000 724050 13743 19680202 46.5 13 42.6 13 1013.7 4 1012.7 4 3.5 13 6.9 13 11.1 999.9 48.4* 42.4* 99.99 999.9 110000 724050 13743 19680205 43.9 13 14.5 13 1024.8 4 1023.8 4 14.9 13 10.1 13 14.0 999.9 50.4* 34.3* 0.00I 999.9 000000 724050 13743 19680206 44.0 13 18.0 13 1019.9 4 1018.9 4 14.9 13 8.5 13 14.0 999.9 49.3* 37.4* 0.00I 999.9 000000 724050 13743 19680207 42.3 13 18.1 13 1013.0 4 1012.0 4 8.6 13 6.1 13 9.9 999.9 46.4* 37.4* 0.00I 999.9 000000 724050 13743 19680208 38.9 13 10.5 13 1009.6 4 1008.5 4 14.9 13 13.8 13 18.1 999.9 45.3* 33.4* 0.00I 999.9 000000 724050 13743 19680209 40.3 13 19.8 13 1008.2 4 1007.2 4 9.8 13 10.2 13 20.0 999.9 42.4* 36.3* 0.00I 999.9 000000 724050 13743 19680212 27.0 13 4.6 13 1010.8 4 1009.8 4 14.9 13 11.4 13 19.0 999.9 32.4* 20.3* 0.00I 999.9 000000 724050 13743 19680213 23.9 13 0.2 13 1016.4 4 1015.3 4 14.9 13 21.9 13 28.0 999.9 26.4* 22.5* 0.00I 999.9 000000 724050 13743 19680214 34.4 13 5.9 13 1016.3 4 1015.3 4 14.9 13 12.2 13 16.9 999.9 44.4* 21.4* 0.00I 999.9 000000 724050 13743 19680215 37.3 13 12.8 13 1006.7 4 1005.7 4 11.9 13 8.0 13 25.1 999.9 45.3* 29.3* 0.00I 999.9 000000 724050 13743 19680216 40.6 13 15.6 13 1013.9 4 1012.9 4 14.9 13 5.8 13 9.9 999.9 46.4* 32.4* 0.00I 999.9 000000 724050 13743 19680219 34.7 12 -4.7 12 9999.9 0 9999.9 0 14.9 12 12.8 12 15.9 999.9 42.4* 26.4* 0.00I 999.9 000000 724050 13743 19680220 38.6 13 15.4 13 9999.9 0 9999.9 0 10.6 13 6.2 13 15.9 999.9 45.3* 31.3* 99.99 999.9 011000 724050 13743 19680221 19.2 13 -9.4 13 9999.9 0 9999.9 0 14.9 13 15.7 13 21.0 999.9 25.3* 12.4* 0.00I 999.9 000000 724050 13743 19680223 34.4 13 8.2 13 9999.9 0 9999.9 0 14.9 13 6.8 13 13.0 999.9 40.3* 26.4* 0.00I 999.9 000000 724050 13743 19680226 36.3 13 6.6 13 1020.5 4 1019.5 4 14.9 13 7.8 13 11.1 999.9 45.3* 25.3* 0.00I 999.9 000000 724050 13743 19680227 40.7 13 13.0 13 1015.9 4 1014.9 4 9.6 13 4.7 13 11.1 999.9 50.4* 27.3* 0.00I 999.9 000000 724050 13743 19680228 41.3 13 20.5 13 1013.1 4 1012.1 4 7.8 13 2.6 13 5.1 999.9 48.4* 31.3* 0.00I 999.9 000000 724050 13743 19680229 37.9 13 29.2 13 1002.0 4 1001.0 4 3.8 13 8.4 13 18.1 999.9 40.3* 36.3* 99.99 999.9 111000 724050 13743 19680301 32.7 13 17.6 13 999.9 4 998.8 4 8.9 13 28.7 13 34.0 999.9 36.3* 28.4* 0.00I 999.9 000000 724050 13743 19680304 45.0 13 6.5 13 1011.1 4 1010.1 4 14.9 13 17.1 13 25.1 999.9 55.4* 31.3* 0.00I 999.9 000000 724050 13743 19680305 52.8 13 17.6 13 1008.4 4 1007.5 4 14.5 13 8.8 13 13.0 999.9 60.3* 41.4* 0.00I 999.9 000000 724050 13743 19680306 44.7 13 29.5 13 1007.7 4 1006.7 4 5.2 13 7.7 13 9.9 999.9 48.4* 39.4* 99.99 999.9 010000 724050 13743 19680307 37.0 13 7.9 13 1026.3 4 1025.3 4 14.9 13 10.6 13 15.0 999.9 44.4* 28.4* 0.00I 999.9 000000 724050 13743 19680308 47.8 13 20.1 13 1021.3 4 1020.2 4 11.3 13 4.3 13 7.0 999.9 59.4* 31.3* 0.00I 999.9 000000 724050 13743 19680311 50.3 13 32.1 13 1018.6 4 1017.6 4 13.7 13 9.8 13 15.9 999.9 54.3* 45.3* 0.00I 999.9 000000 724050 13743 19680312 35.8 13 33.7 13 1013.7 4 1012.7 4 2.7 13 5.4 13 11.1 999.9 38.3* 33.4* 99.99 999.9 111000 724050 13743 19680313 35.4 13 22.1 13 1006.2 4 1005.2 4 11.3 13 22.4 13 28.0 999.9 39.4* 32.4* 99.99 999.9 111000 724050 13743 19680314 33.3 13 13.3 13 1035.8 4 1034.8 4 14.9 13 6.9 13 15.0 999.9 39.4* 23.4* 0.00I 999.9 000000 724050 13743 19680315 44.1 13 25.1 13 1037.1 4 1036.1 4 12.5 13 8.7 13 12.0 999.9 51.3* 32.4* 0.00I 999.9 000000 724050 13743 19680318 47.8 13 41.6 13 1016.8 4 1015.8 4 7.9 13 19.7 13 25.1 999.9 51.3* 43.3* 99.99 999.9 010000 724050 13743 19680319 57.1 13 44.1 13 1022.3 4 1021.1 4 14.2 13 6.5 13 12.0 999.9 65.3* 48.4* 0.00I 999.9 000000 724050 13743 19680320 61.1 13 47.9 13 1018.4 4 1017.3 4 5.6 13 6.2 13 9.9 999.9 73.4* 47.3* 0.00I 999.9 000000 724050 13743 19680321 61.2 13 49.1 13 1014.4 4 1013.4 4 3.5 13 3.3 13 6.0 999.9 75.4* 48.4* 0.00I 999.9 000000 724050 13743 19680322 70.7 13 53.1 13 1012.6 4 1011.6 4 5.1 13 7.7 13 14.0 999.9 84.4* 54.3* 0.00I 999.9 000000 724050 13743 19680325 48.1 13 25.9 13 1024.7 4 1023.6 4 10.9 13 4.5 13 9.9 999.9 55.4* 37.4* 0.00I 999.9 000000 724050 13743 19680326 56.1 13 33.4 13 1026.7 4 1025.7 4 11.8 13 8.2 13 12.0 999.9 66.4* 40.3* 0.00I 999.9 000000 724050 13743 19680327 65.1 13 41.6 13 1027.1 4 1026.1 4 10.0 13 2.5 13 9.9 999.9 75.4* 46.4* 0.00I 999.9 000000 724050 13743 19680328 68.7 13 41.3 13 1021.5 4 1020.5 4 10.2 13 6.0 13 15.0 999.9 79.3* 53.4* 0.00I 999.9 000000 724050 13743 19680329 72.6 13 46.0 13 1016.0 4 1015.0 4 11.2 13 6.6 13 12.0 999.9 80.2* 58.3* 0.00I 999.9 000000 724050 13743 19680401 52.2 13 28.7 13 1019.3 4 1018.3 4 14.1 13 20.7 13 28.0 999.9 55.4* 48.4* 99.99 999.9 010000 724050 13743 19680402 52.6 13 20.7 13 1030.7 4 1029.7 4 14.9 13 4.9 13 8.9 999.9 59.4* 40.3* 0.00I 999.9 000000 724050 13743 19680403 52.6 13 34.9 13 1025.1 4 1024.1 4 14.5 13 9.0 13 13.0 999.9 55.4* 47.3* 0.00I 999.9 000000 724050 13743 19680404 64.2 13 55.0 13 1015.2 4 1014.2 4 8.5 13 13.2 13 18.1 999.9 69.3* 54.3* 0.00I 999.9 000000 724050 13743 19680405 58.5 13 41.6 13 1016.2 4 1015.2 4 14.7 13 15.5 13 22.9 999.9 61.3* 54.3* 0.00I 999.9 000000 724050 13743 19680408 61.6 10 48.2 10 9999.9 0 9999.9 0 10.0 10 4.3 10 8.0 999.9 67.3* 50.4* 99.99 999.9 010000 724050 13743 19680409 69.7 13 33.7 13 1020.2 4 1019.2 4 14.7 13 15.2 13 22.0 999.9 75.4* 60.3* 0.00I 999.9 000000 724050 13743 19680410 62.6 13 27.8 13 1021.1 4 1020.1 4 12.8 13 3.2 13 8.0 999.9 66.4* 56.3* 0.00I 999.9 000000 724050 13743 19680411 55.6 13 33.7 13 1019.2 4 1018.1 4 13.2 13 11.0 13 15.9 999.9 61.3* 48.4* 99.99 999.9 010000 724050 13743 19680412 61.0 13 28.8 13 1026.0 4 1025.0 4 11.5 13 1.2 13 5.1 999.9 70.3* 46.4* 0.00I 999.9 000000 724050 13743 19680415 55.2 13 40.5 13 1010.8 4 1009.7 4 11.2 13 11.2 13 20.0 999.9 60.3* 50.4* 99.99 999.9 010000 724050 13743 19680416 56.4 13 24.0 13 1018.4 4 1017.3 4 14.9 13 12.3 13 15.9 999.9 64.4* 44.4* 0.00I 999.9 000000 724050 13743 19680417 61.3 13 28.2 13 1021.7 4 1020.7 4 12.6 13 4.9 13 11.1 999.9 69.3* 47.3* 0.00I 999.9 000000 724050 13743 19680418 65.6 13 40.0 13 1016.5 4 1015.5 4 11.9 13 6.4 13 8.0 999.9 74.3* 50.4* 0.00I 999.9 000000 724050 13743 19680419 71.8 13 48.0 13 1013.8 4 1012.8 4 7.6 13 2.9 13 7.0 999.9 80.2* 56.3* 0.00I 999.9 000000 724050 13743 19680422 57.3 13 47.5 13 1019.7 4 1018.6 4 8.8 13 4.1 13 8.9 999.9 62.4* 51.3* 0.00I 999.9 000000 724050 13743 19680423 56.2 13 40.4 13 1020.9 4 1019.8 4 11.0 13 7.3 13 12.0 999.9 60.3* 49.3* 0.00I 999.9 000000 724050 13743 19680424 59.4 13 57.0 13 1006.8 4 1005.8 4 4.1 13 5.8 13 8.9 999.9 64.4* 52.3* 99.99 999.9 110000 724050 13743 19680425 55.6 13 29.8 13 1008.1 4 1007.1 4 14.9 13 9.1 13 15.0 999.9 60.3* 46.4* 0.00I 999.9 000000 724050 13743 19680426 59.7 13 36.9 13 1016.3 4 1015.3 4 11.7 13 6.9 13 12.0 999.9 69.3* 44.4* 0.00I 999.9 000000 724050 13743 19680429 57.5 13 42.6 13 1019.2 4 1018.1 4 6.3 13 6.3 13 12.0 999.9 62.4* 50.4* 99.99 999.9 010000 724050 13743 19680430 56.7 13 45.2 13 1004.7 4 1003.6 4 8.2 13 8.1 13 18.1 999.9 64.4* 47.3* 99.99 999.9 010000 724050 13743 19680501 59.7 13 30.9 13 1005.7 4 1004.7 4 14.9 13 11.3 13 19.0 999.9 69.3* 46.4* 0.00I 999.9 000000 724050 13743 19680502 59.9 13 30.8 13 1011.5 4 1010.5 4 14.9 13 11.6 13 15.0 999.9 73.4* 48.4* 0.00I 999.9 000000 724050 13743 19680503 68.5 13 48.9 13 1006.7 4 1005.7 4 8.0 13 7.1 13 16.9 999.9 83.3* 54.3* 99.99 999.9 010010 724050 13743 19680506 53.6 13 30.0 13 1021.8 4 1020.8 4 14.9 13 14.2 13 18.1 999.9 60.3* 46.4* 0.00I 999.9 000000 724050 13743 19680507 57.5 13 23.9 13 1032.7 4 1031.7 4 14.9 13 2.5 13 8.9 999.9 66.4* 45.3* 0.00I 999.9 000000 724050 13743 19680508 62.5 13 38.2 13 1032.2 4 1031.2 4 10.3 13 4.9 13 8.9 999.9 71.2* 46.4* 0.00I 999.9 000000 724050 13743 19680509 67.7 13 49.8 13 1023.3 4 1024.0 4 10.7 13 11.4 13 15.9 999.9 76.3* 55.4* 0.00I 999.9 000000 724050 13743 19680510 73.6 13 52.4 13 1017.5 4 1016.5 4 11.1 13 9.0 13 18.1 999.9 80.2* 62.4* 0.00I 999.9 000000 724050 13743 19680513 65.5 13 53.3 13 1022.9 4 1021.8 4 5.5 13 7.8 13 12.0 999.9 68.4* 61.3* 0.00I 999.9 000000 724050 13743 19680514 57.3 13 46.3 13 1026.7 4 1025.7 4 13.0 13 5.5 13 9.9 999.9 61.3* 50.4* 99.99 999.9 010000 724050 13743 19680515 59.9 13 55.1 13 1016.6 4 1015.5 4 5.9 13 4.1 13 6.0 999.9 63.3* 55.4* 99.99 999.9 110000 724050 13743 19680516 67.6 13 63.8 13 1005.3 4 1004.3 4 3.0 13 5.9 13 8.9 999.9 73.4* 61.3* 99.99 999.9 110000 724050 13743 19680517 74.9 13 48.8 13 1006.5 4 1005.5 4 14.9 13 10.8 13 15.0 999.9 81.3* 65.3* 0.00I 999.9 000000 724050 13743 19680520 59.3 13 39.3 13 1008.5 4 1007.5 4 14.9 13 16.8 13 23.9 999.9 64.4* 53.4* 0.00I 999.9 000000 724050 13743 19680521 61.1 13 44.4 13 1012.2 4 1011.2 4 12.2 13 7.4 13 20.0 999.9 66.4* 53.4* 99.99 999.9 010000 724050 13743 19680522 63.8 13 42.6 13 1017.3 4 1016.3 4 12.7 13 8.1 13 11.1 999.9 70.3* 53.4* 0.00I 999.9 000000 724050 13743 19680523 61.6 13 54.1 13 1018.1 4 1017.1 4 5.8 13 5.2 13 8.9 999.9 64.4* 59.4* 99.99 999.9 010000 724050 13743 19680524 66.1 13 60.2 13 1013.2 4 1012.1 4 4.4 13 4.5 13 8.9 999.9 72.3* 61.3* 99.99 999.9 110000 724050 13743 19680527 52.4 13 47.4 13 1014.6 4 1013.5 4 5.7 13 9.6 13 13.0 999.9 62.4* 49.3* 99.99 999.9 110000 724050 13743 19680528 53.4 13 51.4 13 1012.8 4 1011.8 4 3.0 13 8.1 13 12.0 999.9 55.4* 50.4* 99.99 999.9 110000 724050 13743 19680529 65.9 13 51.7 13 1010.7 4 1009.7 4 14.9 13 5.5 13 8.0 999.9 75.4* 52.3* 0.00I 999.9 000000 724050 13743 19680531 66.9 13 49.3 13 1012.5 4 1011.5 4 9.7 13 9.8 13 16.9 999.9 73.4* 57.4* 0.00I 999.9 000000 724050 13743 19680603 71.2 13 59.6 13 1009.9 4 1008.9 4 9.9 13 5.1 13 12.0 999.9 81.3* 63.3* 0.00I 999.9 100010 724050 13743 19680604 70.9 13 52.4 13 1014.4 4 1013.3 4 14.5 13 8.0 13 9.9 999.9 77.4* 58.3* 0.00I 999.9 000000 724050 13743 19680605 76.9 13 55.4 13 1017.6 4 1016.6 4 8.6 13 2.4 13 6.0 999.9 84.4* 60.3* 0.00I 999.9 000000 724050 13743 19680606 79.0 13 58.3 13 1016.8 4 1015.7 4 8.6 13 3.7 13 7.0 999.9 87.3* 63.3* 0.00I 999.9 000000 724050 13743 19680607 79.4 13 60.8 13 1015.6 4 1014.6 4 10.3 13 4.6 13 8.9 999.9 86.4* 66.4* 0.00I 999.9 000000 724050 13743 19680610 78.5 13 69.5 13 1012.3 4 1011.2 4 4.9 13 4.6 13 9.9 999.9 84.4* 70.3* 0.00I 999.9 100000 724050 13743 19680611 72.1 13 68.6 13 1014.3 4 1013.3 4 2.9 13 4.9 13 7.0 999.9 78.3* 66.4* 99.99 999.9 110000 724050 13743 19680612 76.9 13 71.0 13 1009.2 4 1008.2 4 5.3 13 6.7 13 8.0 999.9 83.3* 74.3* 99.99 999.9 110000 724050 13743 19680613 68.8 13 54.2 13 1009.9 4 1008.9 4 12.0 13 14.7 13 22.0 999.9 71.2* 65.3* 0.00I 999.9 000000 724050 13743 19680614 68.1 13 51.3 13 1017.5 4 1016.5 4 12.2 13 10.1 13 13.0 999.9 77.4* 57.4* 0.00I 999.9 000000 724050 13743 19680617 65.3 13 58.2 13 1017.1 4 1016.1 4 9.8 13 7.1 13 12.0 999.9 70.3* 60.3* 99.99 999.9 010010 724050 13743 19680618 70.4 13 52.6 13 1020.8 4 1019.7 4 13.0 13 4.8 13 8.0 999.9 78.3* 58.3* 0.00I 999.9 000000 724050 13743 19680619 75.2 13 63.5 13 1017.1 4 1016.1 4 5.0 13 5.5 13 8.9 999.9 81.3* 64.4* 0.00I 999.9 000000 724050 13743 19680620 72.1 13 51.0 13 1015.5 4 1014.5 4 12.5 13 12.7 13 16.9 999.9 75.4* 67.3* 0.00I 999.9 000000 724050 13743 19680621 69.2 13 43.5 13 1019.4 4 1018.4 4 14.9 13 5.3 13 9.9 999.9 77.4* 58.3* 0.00I 999.9 000000 724050 13743 19680624 83.0 13 73.1 13 1014.1 4 1013.1 4 2.8 13 4.3 13 8.0 999.9 91.2* 73.4* 0.00I 999.9 000010 724050 13743 19680625 84.7 13 69.7 13 1010.1 4 1009.1 4 6.0 13 3.5 13 8.0 999.9 91.2* 72.3* 0.00I 999.9 000000 724050 13743 19680626 87.1 13 68.2 13 1002.5 4 1001.5 4 13.4 13 11.9 13 18.1 999.9 92.3* 78.3* 0.00I 999.9 000000 724050 13743 19680627 71.7 13 68.5 13 1008.7 4 1007.6 4 3.4 13 7.6 13 13.0 999.9 74.3* 69.3* 99.99 999.9 110010 724050 13743 19680628 71.6 13 56.3 13 1012.9 4 1011.9 4 13.8 13 10.6 13 18.1 999.9 75.4* 64.4* 0.00I 999.9 000000 724050 13743 19680701 90.0 13 68.4 13 1018.0 4 1016.9 4 11.9 13 5.1 13 9.9 999.9 97.3* 77.4* 0.00I 999.9 000000 724050 13743 19680702 88.1 13 71.5 13 1016.9 4 1015.8 4 6.0 13 4.5 13 26.0 999.9 96.3* 77.4* 0.00I 999.9 000000 724050 13743 19680703 76.2 13 67.7 13 1019.9 4 1018.9 4 8.1 13 4.9 13 8.9 999.9 79.3* 70.3* 99.99 999.9 010000 724050 13743 19680705 76.9 13 54.7 13 1022.6 4 1021.5 4 9.9 13 3.5 13 7.0 999.9 85.3* 64.4* 0.00I 999.9 000000 724050 13743 19680708 79.7 13 66.0 13 1022.3 4 1021.2 4 5.6 13 6.7 13 9.9 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19680709 77.5 13 64.1 13 1020.5 4 1019.6 4 7.6 13 6.1 13 12.0 999.9 84.4* 68.4* 0.00I 999.9 000000 724050 13743 19680710 79.6 13 68.6 13 1015.9 4 1014.9 4 6.7 13 4.2 13 7.0 999.9 86.4* 72.3* 0.00I 999.9 000000 724050 13743 19680711 77.6 13 65.5 13 1020.0 4 1019.0 4 12.5 13 6.0 13 8.0 999.9 83.3* 72.3* 0.00I 999.9 000000 724050 13743 19680712 77.2 13 65.0 13 1019.3 4 1018.3 4 11.8 13 3.2 13 5.1 999.9 84.4* 69.3* 0.00I 999.9 000000 724050 13743 19680715 83.6 13 72.0 13 1021.5 4 1020.4 4 5.8 13 4.7 13 15.0 999.9 91.2* 76.3* 0.00I 999.9 100010 724050 13743 19680716 85.5 13 69.8 13 1018.0 4 1016.9 4 7.4 13 7.9 13 12.0 999.9 91.2* 76.3* 0.00I 999.9 000000 724050 13743 19680717 85.7 13 70.6 13 1016.3 4 1015.3 4 6.4 13 7.0 13 9.9 999.9 92.3* 77.4* 0.00I 999.9 000000 724050 13743 19680718 88.0 13 72.7 13 1016.1 4 1015.1 4 4.3 13 3.9 13 8.9 999.9 92.3* 78.3* 0.00I 999.9 000000 724050 13743 19680719 81.5 13 71.7 13 1013.2 4 1012.2 4 5.0 13 7.2 13 25.1 999.9 90.3* 74.3* 99.99 999.9 010010 724050 13743 19680722 82.2 13 67.9 13 1020.9 4 1019.8 4 7.0 13 6.4 13 9.9 999.9 90.3* 71.2* 0.00I 999.9 000000 724050 13743 19680723 85.0 13 67.0 13 1019.9 4 1018.9 4 9.7 13 4.3 13 8.9 999.9 91.2* 75.4* 0.00I 999.9 000000 724050 13743 19680724 87.5 13 71.3 13 1016.7 4 1015.7 4 7.2 13 4.8 13 8.9 999.9 94.3* 77.4* 0.00I 999.9 000000 724050 13743 19680725 83.5 13 71.8 13 1016.5 4 1015.5 4 4.5 13 3.9 13 11.1 999.9 90.3* 78.3* 99.99 999.9 010000 724050 13743 19680726 80.1 13 65.2 13 1020.0 4 1019.0 4 6.8 13 4.1 13 8.0 999.9 85.3* 74.3* 0.00I 999.9 000000 724050 13743 19680729 77.3 13 49.9 13 1019.0 4 1018.0 4 14.7 13 4.7 13 9.9 999.9 82.4* 70.3* 0.00I 999.9 000000 724050 13743 19680730 78.3 13 58.3 13 1023.5 4 1022.5 4 10.1 13 5.3 13 8.9 999.9 84.4* 67.3* 0.00I 999.9 000000 724050 13743 19680731 80.1 13 67.2 13 1021.5 4 1020.4 4 10.5 13 4.2 13 9.9 999.9 85.3* 70.3* 0.00I 999.9 000000 724050 13743 19680801 85.5 13 70.5 13 1015.9 4 1014.9 4 8.4 13 6.2 13 9.9 999.9 93.4* 75.4* 0.00I 999.9 000000 724050 13743 19680802 82.9 13 71.1 13 1019.4 4 1018.4 4 7.2 13 3.4 13 6.0 999.9 89.2* 75.4* 99.99 999.9 010010 724050 13743 19680805 80.4 13 71.5 13 1020.8 4 1019.8 4 4.6 13 2.3 13 6.0 999.9 86.4* 77.4* 99.99 999.9 010000 724050 13743 19680806 82.8 13 74.1 13 1019.2 4 1018.1 4 3.3 13 5.4 13 8.9 999.9 91.2* 73.4* 0.00I 999.9 100000 724050 13743 19680807 86.9 13 69.0 13 1014.9 4 1013.9 4 10.2 13 5.4 13 12.0 999.9 95.4* 73.4* 99.99 999.9 010010 724050 13743 19680808 84.6 13 69.8 13 1017.5 4 1016.4 4 6.7 13 5.0 13 8.9 999.9 93.4* 73.4* 0.00I 999.9 000000 724050 13743 19680809 85.8 13 69.6 13 1014.4 4 1013.4 4 5.1 13 5.5 13 12.0 999.9 90.3* 77.4* 0.00I 999.9 000000 724050 13743 19680812 72.8 13 50.9 13 1017.9 4 1016.9 4 14.7 13 3.0 13 6.0 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19680813 76.0 13 60.9 13 1017.0 4 1016.0 4 12.1 13 6.7 13 8.9 999.9 83.3* 64.4* 0.00I 999.9 000000 724050 13743 19680814 80.6 13 71.6 13 1015.3 4 1014.3 4 5.0 13 3.5 13 14.0 999.9 85.3* 75.4* 99.99 999.9 010000 724050 13743 19680815 82.5 14 64.9 14 1018.5 4 1017.5 4 7.0 14 3.5 14 8.0 999.9 89.2* 71.2* 0.00I 999.9 000000 724050 13743 19680816 82.6 16 69.7 16 1016.9 5 1015.9 5 4.4 16 5.0 16 12.0 999.9 88.3* 74.3* 0.00I 999.9 100000 724050 13743 19680819 80.9 13 73.5 13 1018.4 4 1017.4 4 4.4 13 5.9 13 9.9 999.9 87.3* 75.4* 99.99 999.9 110000 724050 13743 19680820 81.5 13 73.0 13 1017.9 4 1016.8 4 10.7 13 6.2 13 8.9 999.9 90.3* 71.2* 0.00I 999.9 000000 724050 13743 19680821 88.1 13 66.6 13 1017.1 4 1016.1 4 11.5 13 8.8 13 14.0 999.9 93.4* 80.2* 0.00I 999.9 000000 724050 13743 19680822 85.8 13 67.8 13 1018.5 4 1017.4 4 7.7 13 2.8 13 7.0 999.9 92.3* 76.3* 0.00I 999.9 000000 724050 13743 19680823 89.6 13 71.6 13 1015.7 4 1014.7 4 5.1 13 6.6 13 8.9 999.9 95.4* 80.2* 0.00I 999.9 000000 724050 13743 19680826 75.2 13 54.8 13 1014.5 4 1013.5 4 14.5 13 11.8 13 15.0 999.9 78.3* 71.2* 0.00I 999.9 000000 724050 13743 19680827 68.5 13 46.9 13 1020.4 4 1019.4 4 14.9 13 8.9 13 13.0 999.9 73.4* 60.3* 0.00I 999.9 000000 724050 13743 19680828 66.9 13 45.7 13 1024.4 4 1023.4 4 14.0 13 5.7 13 8.0 999.9 72.3* 59.4* 0.00I 999.9 000000 724050 13743 19680829 69.6 13 48.9 13 1025.0 4 1024.0 4 13.5 13 6.1 13 12.0 999.9 77.4* 59.4* 0.00I 999.9 000000 724050 13743 19680830 72.0 12 47.5 12 1023.8 4 1022.8 4 12.3 12 3.8 12 8.0 999.9 79.3* 60.3* 0.00I 999.9 000000 724050 13743 19680903 76.1 13 58.1 13 1019.0 4 1018.0 4 11.3 13 3.4 13 8.0 999.9 84.4* 64.4* 0.00I 999.9 000000 724050 13743 19680904 80.9 13 62.7 13 1020.9 4 1019.9 4 10.2 13 3.2 13 8.0 999.9 90.3* 68.4* 0.00I 999.9 000000 724050 13743 19680905 81.1 13 64.2 13 1019.9 4 1018.9 4 7.7 13 3.3 13 9.9 999.9 87.3* 71.2* 0.00I 999.9 000000 724050 13743 19680906 75.6 13 68.5 13 1015.0 4 1014.0 4 7.0 13 6.4 13 9.9 999.9 80.2* 71.2* 99.99 999.9 110000 724050 13743 19680909 73.4 13 60.1 13 1020.1 4 1019.1 4 8.3 13 3.4 13 8.0 999.9 79.3* 64.4* 0.00I 999.9 000000 724050 13743 19680910 72.8 13 68.6 13 1013.0 4 1012.0 4 6.6 13 6.8 13 15.0 999.9 80.2* 68.4* 99.99 999.9 110010 724050 13743 19680911 71.4 13 58.9 13 1010.3 4 1009.3 4 14.0 13 5.8 13 15.0 999.9 76.3* 65.3* 99.99 999.9 010000 724050 13743 19680912 68.6 13 51.7 13 1013.9 4 1012.8 4 14.5 13 12.1 13 20.0 999.9 73.4* 61.3* 0.00I 999.9 000000 724050 13743 19680913 71.7 13 52.2 13 1016.5 4 1015.5 4 14.9 13 7.9 13 14.0 999.9 79.3* 59.4* 0.00I 999.9 000000 724050 13743 19680916 72.2 13 58.3 13 1022.7 4 1021.7 4 10.3 13 1.4 13 6.0 999.9 79.3* 60.3* 0.00I 999.9 000000 724050 13743 19680917 72.9 13 60.0 13 1022.6 4 1021.6 4 5.7 13 2.5 13 7.0 999.9 79.3* 63.3* 0.00I 999.9 000000 724050 13743 19680918 71.3 13 53.1 13 1021.6 4 1020.6 4 11.9 13 4.3 13 8.0 999.9 77.4* 62.4* 0.00I 999.9 000000 724050 13743 19680919 71.7 13 55.0 13 1023.5 4 1022.5 4 9.6 13 3.6 13 9.9 999.9 78.3* 61.3* 0.00I 999.9 000000 724050 13743 19680920 71.5 13 55.5 13 1025.6 4 1024.6 4 10.4 13 1.4 13 8.0 999.9 82.4* 58.3* 0.00I 999.9 000000 724050 13743 19680923 76.6 13 58.3 13 1020.6 4 1019.6 4 6.7 13 2.2 13 5.1 999.9 85.3* 65.3* 0.00I 999.9 000000 724050 13743 19680924 77.2 13 59.8 13 1017.6 4 1016.6 4 7.3 13 3.6 13 8.0 999.9 86.4* 65.3* 0.00I 999.9 000000 724050 13743 19680925 77.3 13 62.0 13 1013.5 4 1012.5 4 10.3 13 4.1 13 8.0 999.9 86.4* 67.3* 0.00I 999.9 000000 724050 13743 19680926 74.0 13 58.3 13 1013.6 4 1012.6 4 10.9 13 6.5 13 12.0 999.9 77.4* 68.4* 99.99 999.9 010000 724050 13743 19680927 71.3 13 49.6 13 1014.5 4 1013.5 4 14.2 13 4.3 13 8.0 999.9 77.4* 64.4* 0.00I 999.9 000000 724050 13743 19680930 68.1 13 48.0 13 1022.5 4 1021.4 4 13.8 13 6.6 13 14.0 999.9 76.3* 55.4* 0.00I 999.9 000000 724050 13743 19681001 71.5 13 53.0 13 1020.6 4 1019.6 4 12.7 13 2.1 13 5.1 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19681002 72.9 13 56.0 13 1017.5 4 1016.5 4 9.9 13 4.1 13 8.0 999.9 82.4* 61.3* 0.00I 999.9 000000 724050 13743 19681003 73.5 13 60.1 13 1011.7 4 1010.7 4 7.5 13 6.9 13 9.9 999.9 81.3* 67.3* 99.99 999.9 010000 724050 13743 19681004 56.9 13 32.6 13 1017.2 4 1016.2 4 14.9 13 17.2 13 25.1 999.9 60.3* 54.3* 0.00I 999.9 000000 724050 13743 19681007 61.9 13 52.7 13 1014.3 4 1013.3 4 11.9 13 10.4 13 18.1 999.9 67.3* 57.4* 0.00I 999.9 000000 724050 13743 19681008 60.3 13 47.0 13 1023.9 4 1022.9 4 12.3 13 4.5 13 8.0 999.9 66.4* 50.4* 0.00I 999.9 000000 724050 13743 19681009 61.7 13 50.2 13 1025.8 4 1024.8 4 8.4 13 4.6 13 8.0 999.9 65.3* 58.3* 0.00I 999.9 000000 724050 13743 19681010 61.7 13 51.9 13 1025.1 4 1024.0 4 8.4 13 4.2 13 7.0 999.9 64.4* 58.3* 0.00I 999.9 000000 724050 13743 19681011 64.2 13 56.9 13 1026.1 4 1025.1 4 10.7 13 3.2 13 8.0 999.9 68.4* 60.3* 0.00I 999.9 000000 724050 13743 19681014 66.9 13 61.9 13 1025.7 4 1024.7 4 3.5 13 1.9 13 4.1 999.9 73.4* 61.3* 99.99 999.9 110000 724050 13743 19681015 64.8 13 60.8 13 1028.4 4 1027.4 4 4.0 13 2.1 13 4.1 999.9 70.3* 61.3* 0.00I 999.9 100000 724050 13743 19681016 66.7 13 61.2 13 1026.8 4 1025.8 4 3.7 13 2.8 13 6.0 999.9 76.3* 57.4* 0.00I 999.9 100000 724050 13743 19681017 70.8 13 62.4 13 1024.2 4 1023.1 4 6.4 13 3.2 13 8.0 999.9 78.3* 62.4* 0.00I 999.9 000000 724050 13743 19681018 72.8 13 66.7 13 1019.8 4 1018.8 4 6.0 13 6.9 13 14.0 999.9 78.3* 66.4* 99.99 999.9 010000 724050 13743 19681021 59.4 13 42.1 13 1017.8 4 1016.8 4 14.9 13 11.1 13 15.9 999.9 65.3* 53.4* 0.00I 999.9 000000 724050 13743 19681022 63.0 13 47.4 13 1014.2 4 1013.2 4 7.6 13 5.8 13 13.0 999.9 74.3* 48.4* 0.00I 999.9 000000 724050 13743 19681023 65.5 13 48.3 13 1012.6 4 1011.9 4 12.8 13 4.8 13 9.9 999.9 71.2* 59.4* 0.00I 999.9 000000 724050 13743 19681024 60.1 13 47.5 13 1011.3 4 1010.3 4 5.8 13 4.1 13 8.0 999.9 66.4* 54.3* 99.99 999.9 010000 724050 13743 19681025 54.8 13 42.3 13 1006.3 4 1005.2 4 10.1 13 12.0 13 16.9 999.9 58.3* 49.3* 0.00I 999.9 000000 724050 13743 19681028 55.2 13 41.8 13 1003.2 4 1002.2 4 12.5 13 4.5 13 18.1 999.9 60.3* 48.4* 99.99 999.9 010000 724050 13743 19681029 48.9 13 31.7 13 1007.8 4 1006.8 4 13.5 13 14.5 13 22.9 999.9 52.3* 44.4* 0.00I 999.9 000000 724050 13743 19681030 48.5 13 31.4 13 1018.9 4 1017.9 4 14.1 13 13.4 13 18.1 999.9 51.3* 43.3* 0.00I 999.9 000000 724050 13743 19681031 50.9 13 31.4 13 1024.4 4 1023.4 4 11.3 13 2.2 13 7.0 999.9 57.4* 38.3* 0.00I 999.9 000000 724050 13743 19681101 58.6 13 42.6 13 1021.4 4 1020.3 4 5.3 13 2.1 13 6.0 999.9 70.3* 41.4* 0.00I 999.9 000000 724050 13743 19681104 54.6 13 49.1 13 1016.6 4 1015.6 4 6.1 13 5.5 13 9.9 999.9 56.3* 52.3* 0.00I 999.9 000000 724050 13743 19681105 57.3 12 49.6 12 1012.8 4 1011.8 4 3.9 12 4.3 12 8.0 999.9 60.3* 53.4* 0.00I 999.9 100000 724050 13743 19681106 56.7 14 49.2 14 1015.3 4 1014.3 4 4.4 14 5.5 14 9.9 999.9 58.3* 55.4* 0.00I 999.9 000000 724050 13743 19681107 56.2 13 53.1 13 1008.8 4 1007.9 4 2.8 13 4.4 13 8.9 999.9 57.4* 53.4* 99.99 999.9 110000 724050 13743 19681108 53.5 13 38.7 13 1010.3 4 1009.3 4 14.9 13 15.0 13 22.0 999.9 56.3* 49.3* 0.00I 999.9 000000 724050 13743 19681112 35.1 13 33.9 13 989.9 4 988.8 4 4.5 13 22.3 13 28.0 999.9 36.3* 34.3* 99.99 999.9 111000 724050 13743 19681113 41.2 13 27.7 13 1009.6 4 1008.6 4 14.9 13 20.1 13 26.0 999.9 43.3* 37.4* 0.00I 999.9 000000 724050 13743 19681114 45.4 12 29.1 12 1022.5 4 1021.4 4 11.9 12 4.0 12 9.9 999.9 51.3* 36.3* 0.00I 999.9 000000 724050 13743 19681115 58.0 13 39.0 13 1016.2 4 1015.2 4 9.2 13 3.5 13 7.0 999.9 65.3* 46.4* 0.00I 999.9 000000 724050 13743 19681118 59.7 13 56.6 13 1002.4 4 1001.9 4 5.9 13 11.1 13 23.9 999.9 65.3* 52.3* 99.99 999.9 110000 724050 13743 19681119 44.0 13 27.9 13 1005.0 4 1004.0 4 14.9 13 13.3 13 20.0 999.9 46.4* 40.3* 99.99 999.9 010000 724050 13743 19681120 39.1 13 20.4 13 1013.8 4 1012.8 4 14.9 13 13.9 13 20.0 999.9 42.4* 35.4* 0.00I 999.9 000000 724050 13743 19681121 38.8 13 21.3 13 1020.2 4 1019.2 4 14.1 13 7.1 13 12.0 999.9 43.3* 31.3* 0.00I 999.9 000000 724050 13743 19681122 51.9 13 29.9 13 1015.0 4 1014.0 4 11.6 13 5.3 13 11.1 999.9 61.3* 39.4* 0.00I 999.9 000000 724050 13743 19681125 47.7 13 31.3 13 1014.1 4 1013.1 4 13.0 13 12.9 13 20.0 999.9 51.3* 43.3* 0.00I 999.9 000000 724050 13743 19681126 48.6 13 28.7 13 1022.2 4 1021.2 4 9.3 13 3.4 13 8.0 999.9 56.3* 39.4* 0.00I 999.9 000000 724050 13743 19681127 53.8 13 35.0 13 1020.5 4 1019.5 4 8.0 13 3.4 13 8.0 999.9 55.4* 51.3* 99.99 999.9 010000 724050 13743 19681129 58.1 13 40.8 13 1014.5 4 1013.5 4 13.9 13 16.5 13 28.0 999.9 66.4* 50.4* 0.00I 999.9 000000 724050 13743 19681202 45.0 13 41.9 13 1016.4 4 1015.4 4 2.7 13 3.0 13 6.0 999.9 47.3* 42.4* 0.00I 999.9 100000 724050 13743 19681203 48.5 13 40.1 13 1018.7 4 1017.6 4 6.4 13 2.9 13 5.1 999.9 53.4* 42.4* 0.00I 999.9 000000 724050 13743 19681204 51.7 13 46.9 13 994.4 4 993.3 4 8.3 13 7.8 13 15.0 999.9 55.4* 47.3* 99.99 999.9 110000 724050 13743 19681205 42.3 13 23.3 13 999.1 4 998.1 4 14.3 13 17.8 13 32.1 999.9 48.4* 37.4* 0.00I 999.9 000000 724050 13743 19681206 40.0 13 16.8 13 1016.5 4 1015.5 4 14.9 13 8.5 13 15.9 999.9 45.3* 33.4* 0.00I 999.9 000000 724050 13743 19681209 33.0 13 14.1 13 1027.6 4 1026.6 4 13.6 13 17.8 13 23.9 999.9 39.4* 27.3* 0.00I 999.9 000000 724050 13743 19681210 24.0 12 0.6 12 1035.3 4 1034.3 4 14.1 12 10.9 12 18.1 999.9 28.4* 19.4* 0.00I 999.9 000000 724050 13743 19681211 25.6 13 6.8 13 1034.7 4 1033.6 4 7.7 13 1.2 13 4.1 999.9 32.4* 16.3* 0.00I 999.9 000000 724050 13743 19681212 36.0 13 16.3 13 1028.9 4 1027.8 4 8.1 13 5.0 13 8.0 999.9 47.3* 22.5* 0.00I 999.9 000000 724050 13743 19681213 53.0 13 34.5 13 1019.9 4 1018.8 4 9.9 13 11.8 13 15.9 999.9 61.3* 42.4* 0.00I 999.9 000000 724050 13743 19681216 29.8 13 8.5 13 1010.4 4 1009.4 4 14.5 13 19.8 13 28.0 999.9 34.3* 24.4* 0.00I 999.9 000000 724050 13743 19681217 35.7 13 13.7 13 1018.9 4 1017.9 4 14.5 13 11.8 13 20.0 999.9 42.4* 24.4* 0.00I 999.9 000000 724050 13743 19681218 35.8 13 22.4 13 1022.6 4 1021.6 4 6.4 13 3.0 13 6.0 999.9 41.4* 28.4* 0.00I 999.9 000000 724050 13743 19681219 41.7 13 29.3 13 1014.3 4 1013.3 4 6.0 13 2.8 13 8.9 999.9 46.4* 34.3* 0.00I 999.9 000000 724050 13743 19681220 43.4 13 28.9 13 1008.4 4 1007.4 4 7.3 13 10.1 13 23.9 999.9 52.3* 37.4* 0.00I 999.9 000000 724050 13743 19681223 41.1 13 32.1 13 1000.3 4 999.3 4 8.2 13 8.4 13 26.0 999.9 45.3* 37.4* 0.00I 999.9 100000 724050 13743 19681224 30.9 13 8.2 13 1011.9 4 1010.9 4 14.1 13 22.9 13 29.9 999.9 34.3* 28.4* 0.00I 999.9 000000 724050 13743 19681226 24.6 13 5.2 13 1029.0 4 1028.0 4 11.2 13 4.4 13 8.0 999.9 26.4* 21.4* 0.00I 999.9 000000 724050 13743 19681227 38.6 13 22.2 13 1019.3 4 1018.3 4 9.8 13 5.8 13 8.0 999.9 47.3* 30.4* 0.00I 999.9 000000 724050 13743 19681230 34.9 13 20.6 13 1028.2 4 1027.2 4 10.7 13 3.5 13 8.0 999.9 40.3* 30.4* 0.00I 999.9 000000 724050 13743 19681231 38.2 13 30.8 13 1021.8 4 1020.8 4 6.1 13 4.7 13 8.0 999.9 40.3* 35.4* 99.99 999.9 110000 fluids-1.0.22/tests/gsod/2009/0000755000175000017500000000000014302004506015072 5ustar nileshnileshfluids-1.0.22/tests/gsod/2009/724050-13743.op0000644000175000017500000014327214302004506016663 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20090101 27.7 24 5.6 24 1025.6 24 1023.4 24 10.0 24 10.6 24 28.0 43.9 46.9 23.0 0.00G 999.9 000000 724050 13743 20090102 33.8 24 14.6 24 1017.7 24 1015.4 24 10.0 24 9.9 24 14.0 19.0 43.0 23.0 0.00G 999.9 000000 724050 13743 20090103 38.7 24 19.3 24 1016.6 24 1014.3 24 10.0 24 6.9 24 12.0 999.9 46.9 30.2 0.00G 999.9 000000 724050 13743 20090104 35.8 24 20.7 24 1021.4 24 1019.1 24 10.0 24 3.2 24 7.0 999.9 46.9 27.0 0.00G 999.9 000000 724050 13743 20090105 42.3 24 31.5 24 1016.5 24 1014.2 24 9.8 24 4.9 24 12.0 999.9 51.1 27.1 0.00G 999.9 010000 724050 13743 20090106 36.9 24 25.9 24 1016.8 21 1014.2 24 7.8 24 6.8 24 12.0 999.9 51.1 32.0 0.04G 999.9 011000 724050 13743 20090107 35.2 24 33.5 24 1002.1 15 996.6 24 6.0 24 4.2 24 13.0 19.0 41.0 32.0 0.97G 999.9 010000 724050 13743 20090108 37.8 24 25.3 24 1000.2 23 997.3 24 9.5 24 8.7 24 17.1 29.9 42.1 33.1 0.77G 999.9 011000 724050 13743 20090109 32.4 24 14.7 24 1017.4 24 1015.1 24 10.0 24 9.1 24 15.9 24.1 42.1 27.0 0.00G 999.9 000000 724050 13743 20090110 34.8 24 21.4 24 1022.7 24 1020.4 24 9.2 24 5.4 24 8.9 18.1 39.9 27.1 0.00G 999.9 011000 724050 13743 20090111 36.7 24 29.7 24 1013.9 23 1011.1 24 7.4 24 7.0 24 15.9 24.1 39.9 32.0 0.24G 999.9 010000 724050 13743 20090112 32.1 24 18.1 24 1021.8 24 1019.4 24 10.0 24 7.3 24 12.0 19.0 39.9 27.0 0.10G 999.9 000000 724050 13743 20090113 33.2 24 25.4 24 1020.6 24 1018.3 24 9.8 24 4.8 24 8.9 999.9 39.9 27.0 0.00G 999.9 000000 724050 13743 20090114 29.4 24 11.1 24 1017.9 23 1015.8 24 10.0 24 9.3 24 21.0 28.0 39.0 21.9 0.00G 999.9 000000 724050 13743 20090115 26.1 24 9.3 24 1022.3 24 1020.1 24 10.0 24 10.2 24 26.0 33.0 34.0 19.9 0.00G 999.9 001000 724050 13743 20090116 15.6 24 -6.9 24 1035.6 24 1033.4 24 10.0 24 10.9 24 20.0 27.0 28.0 10.9 0.00G 999.9 000000 724050 13743 20090117 14.2 24 -4.7 24 1035.5 24 1033.4 24 10.0 24 6.8 24 13.0 999.9 23.0 8.1 0.00G 999.9 000000 724050 13743 20090118 30.7 24 10.2 24 1015.9 24 1013.9 24 10.0 24 9.1 24 15.0 15.9 37.0 8.1 0.00G 999.9 000000 724050 13743 20090119 30.2 24 22.2 24 1005.8 24 1003.6 24 8.1 24 3.6 24 12.0 999.9 37.0 24.1 0.00G 999.9 001000 724050 13743 20090120 25.5 24 11.9 24 1007.8 24 1005.6 24 10.0 24 10.9 24 17.1 21.0 36.0 19.0 0.00G 999.9 000000 724050 13743 20090121 25.1 24 5.5 24 1015.7 24 1013.5 24 10.0 24 9.7 24 14.0 24.1 34.0 18.0 0.00G 999.9 000000 724050 13743 20090122 28.6 24 11.0 24 1018.6 24 1016.4 24 10.0 24 4.5 24 11.1 999.9 41.0 18.0 0.00G 999.9 000000 724050 13743 20090123 35.2 24 21.7 24 1016.0 24 1013.8 24 10.0 24 4.0 24 8.0 999.9 51.1 19.0 0.00G 999.9 000000 724050 13743 20090124 41.4 24 23.3 24 1015.7 24 1013.4 24 9.9 24 10.6 24 21.0 28.0 51.1 25.2 0.00G 999.9 000000 724050 13743 20090125 25.9 24 6.7 24 1027.7 24 1025.5 24 10.0 24 6.9 24 17.1 21.0 30.9* 21.0* 0.00G 999.9 000000 724050 13743 20090126 28.0 24 13.0 24 1029.5 22 1027.5 24 9.7 24 3.9 24 9.9 999.9 34.0 21.0 0.00G 999.9 001000 724050 13743 20090127 29.4 24 21.6 24 1030.7 17 1028.8 24 6.7 24 3.6 24 7.0 999.9 30.9 25.0 0.00G 2.0 011000 724050 13743 20090128 31.1 24 29.3 24 1015.7 16 1014.3 24 3.5 24 4.3 24 13.0 25.1 43.0 28.0 0.50G 1.2 011000 724050 13743 20090129 34.0 24 20.9 24 1014.9 24 1012.7 24 10.0 24 8.7 24 17.1 25.1 43.0 27.0 0.16G 1.2 000000 724050 13743 20090130 32.3 24 21.5 24 1015.3 24 1013.0 24 7.8 24 4.1 24 17.1 24.1 43.0 25.0 0.00G 1.2 000000 724050 13743 20090131 28.4 24 6.7 24 1018.4 24 1016.2 24 10.0 24 7.9 24 13.0 22.0 43.0 21.9 0.00G 999.9 000000 724050 13743 20090201 39.4 24 19.3 24 1016.0 24 1013.7 24 10.0 24 8.1 24 15.9 22.0 61.0 21.9 0.00G 999.9 001000 724050 13743 20090202 45.3 24 28.7 24 1014.1 24 1011.8 24 10.0 24 7.5 24 22.0 31.1 61.0 26.2 0.00G 999.9 000000 724050 13743 20090203 36.0 24 27.2 24 1011.8 21 1009.5 24 8.4 24 11.3 24 15.9 23.9 41.0* 33.1* 0.03G 999.9 001000 724050 13743 20090204 30.1 24 15.3 24 1016.2 23 1013.9 24 9.3 24 11.3 24 15.9 24.1 42.1 26.1 0.00H 999.9 001000 724050 13743 20090205 21.5 24 1.1 24 1029.3 24 1027.0 24 10.0 24 13.7 24 21.0 28.9 36.0 15.1 0.00G 999.9 000000 724050 13743 20090206 27.0 24 7.2 24 1030.6 24 1028.5 24 10.0 24 4.5 24 9.9 999.9 42.1 15.1 0.00G 999.9 000000 724050 13743 20090207 37.9 24 24.7 24 1026.7 24 1024.5 24 10.0 24 4.6 24 11.1 999.9 59.0 17.1 0.00G 999.9 000000 724050 13743 20090208 53.2 24 32.8 24 1018.9 24 1016.5 24 10.0 24 8.8 24 21.0 29.9 66.9* 45.0* 0.00G 999.9 000000 724050 13743 20090209 42.9 24 28.4 24 1028.3 24 1025.9 24 9.9 24 6.6 24 11.1 999.9 66.9 30.0 0.00G 999.9 000000 724050 13743 20090210 45.9 24 34.3 24 1024.8 24 1022.5 24 10.0 24 4.5 24 8.9 18.1 59.0 30.2 0.00G 999.9 000000 724050 13743 20090211 56.8 24 45.4 24 1015.0 24 1012.6 24 9.9 24 8.0 24 21.0 31.1 72.0 37.9 0.00G 999.9 000000 724050 13743 20090212 58.3 24 34.5 24 1003.6 24 1000.9 24 10.0 24 17.0 24 26.0 41.0 72.0 46.0 0.06G 999.9 010000 724050 13743 20090213 47.2 24 19.9 24 1014.6 24 1012.2 24 10.0 24 13.5 24 22.9 31.1 52.0* 42.1* 0.00G 999.9 000000 724050 13743 20090214 39.4 24 23.8 24 1016.3 24 1014.0 24 10.0 24 4.6 24 8.9 999.9 48.0 30.9 0.00G 999.9 000000 724050 13743 20090215 37.6 24 22.1 24 1019.2 24 1016.7 24 10.0 24 9.6 24 15.0 19.0 48.0 30.9 0.00G 999.9 010000 724050 13743 20090216 35.8 24 17.1 24 1022.4 24 1020.1 24 10.0 24 10.5 24 15.0 22.0 43.0 31.1 0.00G 999.9 000000 724050 13743 20090217 33.7 24 13.2 24 1025.7 24 1023.4 24 10.0 24 7.6 24 14.0 999.9 42.1 26.1 0.00G 999.9 000000 724050 13743 20090218 36.0 24 26.6 24 1014.2 21 1011.7 24 8.3 24 9.8 24 15.9 22.0 45.0 26.2 0.00G 999.9 011000 724050 13743 20090219 44.2 24 33.4 24 1000.4 19 997.3 24 9.8 24 11.7 24 22.0 31.1 50.0 32.0 0.14G 999.9 010000 724050 13743 20090220 29.6 24 4.7 24 1013.7 24 1011.5 24 10.0 24 13.7 24 20.0 29.9 50.0 23.0 0.00G 999.9 000000 724050 13743 20090221 33.9 24 10.2 24 1023.9 24 1021.6 24 10.0 24 6.9 24 15.9 22.0 45.0 23.0 0.00G 999.9 000000 724050 13743 20090222 38.0 24 23.7 24 1018.1 23 1015.5 24 10.0 24 11.5 24 22.0 29.9 45.0 25.2 0.00G 999.9 011000 724050 13743 20090223 31.6 24 10.3 24 1024.4 24 1022.1 24 10.0 24 15.1 24 22.9 34.0 42.1 28.0 0.03G 999.9 000000 724050 13743 20090224 28.8 24 6.8 24 1029.8 24 1027.6 24 10.0 24 12.1 24 17.1 27.0 39.0 21.9 0.00G 999.9 000000 724050 13743 20090225 34.9 24 14.2 24 1030.8 24 1028.5 24 10.0 24 3.0 24 8.0 15.0 50.0 21.9 0.00G 999.9 000000 724050 13743 20090226 42.7 24 23.6 24 1026.7 24 1024.3 24 10.0 24 5.9 24 9.9 999.9 57.0 24.3 0.00G 999.9 000000 724050 13743 20090227 52.5 24 40.3 24 1018.0 24 1015.7 24 10.0 24 10.9 24 21.0 28.9 66.0 35.1 0.00G 999.9 010000 724050 13743 20090228 45.3 24 32.5 24 1019.9 24 1017.3 24 9.8 24 12.5 24 22.0 28.0 66.0 37.0 0.05G 999.9 010000 724050 13743 20090301 34.6 24 26.8 24 1018.1 19 1015.9 24 7.6 24 10.3 24 17.1 22.0 37.9* 30.2* 0.10G 999.9 011000 724050 13743 20090302 26.5 24 18.4 24 1016.8 9 1013.4 24 4.4 24 17.2 24 27.0 41.0 33.8* 21.2* 0.35G 3.9 101000 724050 13743 20090303 20.6 24 0.9 24 1026.2 24 1024.0 24 10.0 24 13.4 24 18.1 28.0 30.0 14.0 0.09G 3.1 000000 724050 13743 20090304 28.1 24 4.7 24 1031.1 24 1028.9 24 10.0 24 6.3 24 8.9 999.9 37.9 14.0 0.00G 1.2 000000 724050 13743 20090305 35.5 24 19.8 24 1030.2 24 1027.9 24 10.0 24 3.8 24 9.9 999.9 50.0 19.9 0.00G 2.0 000000 724050 13743 20090306 47.8 24 31.9 24 1022.0 24 1019.6 24 10.0 24 9.4 24 13.0 18.1 64.0 27.1 0.00G 999.9 000000 724050 13743 20090307 56.1 24 44.4 24 1018.8 24 1016.4 24 10.0 24 6.7 24 11.1 999.9 71.1 41.0 0.00G 999.9 000000 724050 13743 20090308 63.1 24 47.8 24 1012.6 24 1010.2 24 10.0 24 8.0 24 12.0 999.9 73.9 42.1 0.00G 999.9 000000 724050 13743 20090309 61.7 24 41.5 24 1010.7 24 1008.4 24 10.0 24 10.8 24 20.0 31.1 73.9 50.0 0.00G 999.9 000000 724050 13743 20090310 45.0 24 33.0 24 1025.7 23 1023.5 24 10.0 24 9.4 24 15.0 18.1 52.0* 39.0* 0.00G 999.9 000000 724050 13743 20090311 52.0 24 42.5 24 1018.5 18 1016.6 24 9.8 24 8.0 24 20.0 29.9 73.0 39.0 0.00G 999.9 000000 724050 13743 20090312 46.1 24 15.5 24 1028.8 24 1026.5 24 10.0 24 11.3 24 20.0 33.0 73.0 37.0 0.00G 999.9 000000 724050 13743 20090313 39.1 24 24.1 24 1031.7 22 1029.8 24 9.5 24 5.1 24 7.0 999.9 44.6* 33.8* 0.00G 999.9 011000 724050 13743 20090314 39.1 24 33.4 24 1027.1 19 1024.7 24 7.3 24 3.0 24 7.0 999.9 45.0 35.1 0.00G 999.9 010000 724050 13743 20090315 41.0 24 37.3 24 1022.9 17 1020.8 24 7.6 24 3.7 24 8.0 999.9 45.0 36.0 0.10G 999.9 010000 724050 13743 20090316 45.6 24 40.7 24 1024.5 20 1022.0 24 5.2 24 1.8 24 7.0 999.9 48.9 39.0 0.09G 999.9 010000 724050 13743 20090317 45.1 24 38.9 24 1025.2 16 1022.6 24 6.7 24 5.9 24 11.1 15.9 53.1 41.0 0.14G 999.9 010000 724050 13743 20090318 47.7 24 42.0 24 1023.5 19 1021.8 24 7.2 24 7.5 24 13.0 999.9 62.1 39.0 0.06G 999.9 100000 724050 13743 20090319 52.5 24 43.8 24 1017.9 24 1015.5 24 9.9 24 8.5 24 19.0 22.0 62.1 39.0 0.00G 999.9 010000 724050 13743 20090320 44.7 24 27.5 24 1024.4 24 1022.1 24 10.0 24 9.4 24 18.1 21.0 59.0 37.9 0.04G 999.9 000000 724050 13743 20090321 39.9 24 17.8 24 1032.4 24 1030.1 24 10.0 24 4.4 24 12.0 999.9 51.1 28.9 0.00G 999.9 000000 724050 13743 20090322 46.0 24 25.1 24 1029.8 24 1027.5 24 10.0 24 6.4 24 13.0 19.0 62.1 29.1 0.00G 999.9 000000 724050 13743 20090323 45.6 24 18.4 24 1027.8 24 1025.4 24 10.0 24 9.5 24 15.9 21.0 62.1 34.0 0.00G 999.9 000000 724050 13743 20090324 39.5 24 5.9 24 1031.3 24 1029.0 24 10.0 24 7.8 24 14.0 999.9 52.0 28.0 0.00G 999.9 000000 724050 13743 20090325 42.6 24 15.2 24 1029.2 24 1026.8 24 10.0 24 6.1 24 13.0 18.1 51.1 28.2 0.00G 999.9 000000 724050 13743 20090326 45.3 24 35.3 24 1020.3 16 1017.1 24 7.3 24 8.5 24 13.0 999.9 51.1 34.0 0.03G 999.9 010000 724050 13743 20090327 52.0 24 44.6 24 1015.4 16 1012.7 24 7.0 24 4.4 24 8.0 999.9 62.1 39.9 0.30G 999.9 010000 724050 13743 20090328 50.4 24 47.5 24 1012.8 12 1010.7 24 4.5 24 6.3 24 13.0 999.9 62.1 44.1 0.68G 999.9 010000 724050 13743 20090329 56.0 24 49.1 24 998.8 15 997.8 24 5.6 24 8.9 24 22.9 36.9 75.9 48.0 0.08G 999.9 110000 724050 13743 20090330 51.4 24 29.9 24 1007.4 24 1005.1 24 10.0 24 13.7 24 22.0 28.0 57.9* 46.0* 0.01G 999.9 000000 724050 13743 20090331 48.6 24 29.9 24 1020.5 24 1018.1 24 10.0 24 6.1 24 11.1 999.9 61.0 37.9 0.00G 999.9 000000 724050 13743 20090401 51.1 24 43.1 24 1018.7 18 1015.8 24 9.4 24 5.8 24 11.1 999.9 61.0 39.9 0.00G 999.9 010000 724050 13743 20090402 54.8 24 52.3 24 1014.4 11 1013.1 24 3.6 24 5.0 24 9.9 999.9 61.0 45.0 0.18G 999.9 110000 724050 13743 20090403 61.8 24 53.3 24 997.6 17 994.6 24 7.1 24 11.3 24 22.0 31.1 73.0 53.1 0.36G 999.9 010000 724050 13743 20090404 57.3 24 29.1 24 1004.3 24 1002.6 24 10.0 24 14.9 24 22.9 33.0 73.0 46.9 0.41G 999.9 000000 724050 13743 20090405 57.5 24 29.7 24 1011.6 24 1009.3 24 10.0 24 7.0 24 13.0 23.9 69.1 44.1 0.00G 999.9 000000 724050 13743 20090406 58.7 24 45.9 24 997.2 23 995.0 24 9.6 24 8.0 24 17.1 27.0 69.1 44.1 0.00G 999.9 010000 724050 13743 20090407 44.5 24 23.6 24 999.1 24 996.8 24 10.0 24 14.2 24 19.0 32.1 63.0 37.9 0.15G 999.9 000000 724050 13743 20090408 45.0 24 22.2 24 1006.6 24 1004.3 24 10.0 24 11.0 24 18.1 28.0 55.9 36.0 0.00G 999.9 000000 724050 13743 20090409 51.6 24 26.8 24 1010.9 24 1008.6 24 10.0 24 4.2 24 11.1 22.9 63.0 36.0 0.00G 999.9 000000 724050 13743 20090410 57.5 24 38.5 24 1013.7 24 1011.4 24 10.0 24 4.6 24 20.0 27.0 75.0 41.0 0.00G 999.9 000000 724050 13743 20090411 55.8 24 46.7 24 1009.9 19 1007.3 24 8.5 24 9.7 24 18.1 22.9 75.0 46.9 0.17G 999.9 010000 724050 13743 20090412 47.7 24 22.9 24 1021.9 24 1019.5 24 10.0 24 11.9 24 18.1 22.9 60.1 37.9 0.23G 999.9 000000 724050 13743 20090413 46.5 24 20.0 24 1023.3 24 1021.2 24 10.0 24 5.4 24 9.9 999.9 55.9 37.9 0.00G 999.9 010000 724050 13743 20090414 47.3 24 42.8 24 1013.8 21 1011.7 24 7.2 24 7.9 24 15.0 19.0 54.0 39.0 0.42G 999.9 010000 724050 13743 20090415 46.6 24 43.7 24 1013.3 14 1010.5 24 6.4 24 10.6 24 19.0 24.1 50.0 42.1 0.04G 999.9 010000 724050 13743 20090416 49.5 24 35.5 24 1024.5 24 1022.1 24 9.6 24 6.1 24 11.1 999.9 64.9 39.9 0.56G 999.9 010000 724050 13743 20090417 56.3 24 34.2 24 1026.0 24 1023.6 24 10.0 24 4.6 24 11.1 15.0 73.0* 44.1* 0.00G 999.9 000000 724050 13743 20090418 61.7 24 37.2 24 1019.7 24 1017.4 24 10.0 24 4.2 24 12.0 17.1 78.1 42.1 0.00G 999.9 000000 724050 13743 20090419 61.1 24 44.4 24 1014.9 24 1012.6 24 10.0 24 5.0 24 15.9 20.0 78.1 46.9 0.00G 999.9 010000 724050 13743 20090420 53.3 24 47.5 24 1012.6 18 1010.4 24 7.1 24 8.2 24 14.0 20.0 60.8* 48.2* 0.27G 999.9 010000 724050 13743 20090421 57.5 24 49.5 24 1006.9 21 1004.6 24 8.1 24 5.8 24 19.0 25.1 68.0 48.9 0.93G 999.9 010010 724050 13743 20090422 51.6 24 42.2 24 1007.9 19 1005.4 24 9.6 24 5.8 24 24.1 32.1 68.0 46.0 0.35G 999.9 010010 724050 13743 20090423 53.9 24 32.7 24 1015.8 24 1013.4 24 10.0 24 11.0 24 18.1 27.0 63.0 46.0 0.04G 999.9 000000 724050 13743 20090424 57.7 24 40.4 24 1024.1 24 1021.8 24 10.0 24 5.2 24 9.9 999.9 75.0 43.0 0.00G 999.9 000000 724050 13743 20090425 68.1 24 54.2 24 1022.8 24 1020.5 24 9.3 24 3.5 24 11.1 999.9 87.1 43.0 0.00G 999.9 000000 724050 13743 20090426 75.8 24 56.2 24 1023.5 21 1021.0 24 10.0 24 5.7 24 13.0 19.0 91.9 55.0 0.01G 999.9 010010 724050 13743 20090427 74.8 24 54.5 24 1025.4 24 1023.2 24 10.0 24 8.9 24 19.0 25.1 91.9 60.1 0.00G 999.9 000000 724050 13743 20090428 75.5 24 51.3 24 1024.6 24 1022.1 24 10.0 24 10.9 24 17.1 25.1 88.0 63.0 0.00G 999.9 000000 724050 13743 20090429 63.2 24 50.8 24 1027.3 22 1025.2 24 9.3 24 10.7 24 18.1 22.0 84.0 52.0 0.00G 999.9 010000 724050 13743 20090430 54.7 24 46.2 24 1029.0 24 1026.7 24 10.0 24 4.6 24 9.9 999.9 70.0 50.0 0.10G 999.9 010000 724050 13743 20090501 65.7 24 57.7 24 1017.0 20 1015.1 24 9.5 24 11.1 24 15.0 25.1 77.0 52.0 0.00G 999.9 010000 724050 13743 20090502 66.4 24 56.8 24 1012.4 24 1010.2 24 10.0 24 6.1 24 13.0 19.0 77.0 59.0 0.00G 999.9 010000 724050 13743 20090503 59.4 24 56.3 24 1014.4 14 1012.2 24 6.5 24 4.4 24 11.1 999.9 69.1 57.0 0.13G 999.9 010000 724050 13743 20090504 55.4 24 52.8 24 1015.4 11 1013.0 24 6.2 24 8.2 24 13.0 18.1 57.9* 53.6* 1.11G 999.9 010000 724050 13743 20090505 55.1 24 50.1 24 1018.9 15 1016.2 24 8.8 24 6.5 24 13.0 999.9 59.0* 51.8* 0.23G 999.9 010000 724050 13743 20090506 58.4 24 54.2 24 1017.2 14 1014.9 24 5.5 24 3.6 24 9.9 999.9 64.9 52.0 0.27G 999.9 010000 724050 13743 20090507 65.0 24 61.4 24 1009.5 15 1007.6 24 8.1 24 6.6 24 19.0 28.0 72.0 55.0 1.02G 999.9 010010 724050 13743 20090508 65.0 24 58.7 24 1010.4 24 1008.2 24 8.7 24 5.0 24 11.1 999.9 75.9 55.0 0.47G 999.9 100000 724050 13743 20090509 73.0 24 61.9 24 1006.3 24 1004.1 24 9.8 24 9.1 24 17.1 26.0 86.0 55.0 0.00G 999.9 010000 724050 13743 20090510 69.4 24 43.9 24 1012.8 24 1010.5 24 10.0 24 11.6 24 15.9 25.1 86.0 57.0 0.00G 999.9 010000 724050 13743 20090511 59.8 24 41.9 24 1019.5 24 1017.2 24 10.0 24 8.9 24 13.0 24.1 75.0 53.1 0.01G 999.9 010000 724050 13743 20090512 57.2 24 45.2 24 1021.7 24 1019.1 24 9.3 24 6.5 24 13.0 23.9 68.0 48.0 0.29G 999.9 010000 724050 13743 20090513 60.5 24 44.0 24 1027.0 24 1024.6 24 10.0 24 4.2 24 11.1 999.9 72.0 48.0 0.00G 999.9 000000 724050 13743 20090514 65.0 24 54.3 24 1023.9 24 1021.7 24 10.0 24 11.1 24 19.0 25.1 75.9 48.9 0.00G 999.9 010000 724050 13743 20090515 69.8 24 64.5 24 1022.2 15 1020.0 24 9.2 24 5.2 24 11.1 999.9 77.0 59.0 1.20G 999.9 010010 724050 13743 20090516 70.7 24 64.9 24 1018.1 18 1016.0 24 8.5 24 6.8 24 18.1 24.1 82.0 64.0 0.15G 999.9 010010 724050 13743 20090517 63.1 24 52.7 24 1016.9 22 1014.1 24 9.2 24 9.1 24 21.0 31.1 82.0 57.9 0.55G 999.9 010000 724050 13743 20090518 56.6 24 31.0 24 1024.4 24 1022.1 24 10.0 24 10.8 24 17.1 22.0 66.0 50.0 0.03G 999.9 000000 724050 13743 20090519 57.4 24 36.8 24 1030.0 24 1027.6 24 10.0 24 2.8 24 8.9 999.9 71.1 45.0 0.00G 999.9 000000 724050 13743 20090520 61.6 24 44.5 24 1030.1 24 1027.7 24 10.0 24 5.2 24 8.9 999.9 75.0 45.0 0.00G 999.9 000000 724050 13743 20090521 65.3 24 46.7 24 1026.9 24 1024.7 24 10.0 24 5.9 24 11.1 999.9 79.0 50.0 0.00G 999.9 000000 724050 13743 20090522 69.6 24 58.4 24 1022.0 24 1019.7 24 10.0 24 8.2 24 11.1 999.9 81.0 51.1 0.00G 999.9 000000 724050 13743 20090523 74.0 24 62.1 24 1019.7 24 1017.4 24 10.0 24 8.7 24 15.0 22.0 84.9 60.1 0.00G 999.9 000000 724050 13743 20090524 73.6 24 64.9 24 1017.4 24 1015.1 24 10.0 24 8.8 24 14.0 18.1 84.9 64.0 0.00G 999.9 010000 724050 13743 20090525 73.2 24 66.7 24 1015.6 24 1013.3 24 10.0 24 5.3 24 12.0 999.9 82.0 68.0 0.00G 999.9 010010 724050 13743 20090526 65.3 24 61.9 24 1018.8 17 1016.1 24 7.3 24 8.4 24 21.0 28.9 82.0 57.9 1.47G 999.9 010010 724050 13743 20090527 62.9 23 58.3 23 1015.9 19 1013.9 23 4.9 23 4.8 23 11.1 999.9 73.9 57.0 0.20G 999.9 010000 724050 13743 20090528 70.9 24 64.3 24 1009.9 22 1007.8 24 7.4 24 4.4 24 21.0 24.1 82.9 57.0 0.00G 999.9 010010 724050 13743 20090529 72.2 24 66.7 24 1006.6 14 1004.2 24 7.1 24 5.3 24 26.0 31.1 82.9 64.0 0.11G 999.9 010010 724050 13743 20090530 69.6 24 54.6 24 1008.7 24 1006.4 24 10.0 24 6.4 24 14.0 20.0 81.0 57.9 0.76G 999.9 000000 724050 13743 20090531 70.4 24 54.4 24 1009.3 24 1006.9 24 9.6 24 5.0 24 15.9 22.9 82.9 57.9 0.23G 999.9 010010 724050 13743 20090601 66.1 24 43.7 24 1018.4 24 1016.2 24 10.0 24 7.4 24 14.0 999.9 82.9 55.0 0.00I 999.9 000000 724050 13743 20090602 72.3 24 60.6 24 1016.1 24 1013.8 24 10.0 24 7.2 24 9.9 15.9 90.0 55.0 0.00G 999.9 000000 724050 13743 20090603 73.7 24 64.0 24 1015.6 22 1013.1 24 9.5 24 6.4 24 15.9 25.1 90.0 63.0 0.07G 999.9 010110 724050 13743 20090604 63.6 24 59.2 24 1015.4 15 1012.8 24 7.7 24 7.6 24 12.0 15.9 84.0 60.1 1.44G 999.9 010010 724050 13743 20090605 61.6 24 58.7 24 1011.9 12 1009.6 24 7.5 24 8.5 24 14.0 999.9 64.9 60.1 0.75G 999.9 010000 724050 13743 20090606 65.5 24 58.2 24 1014.4 18 1011.7 24 9.4 24 6.2 24 11.1 999.9 73.0* 60.8* 0.33G 999.9 010000 724050 13743 20090607 69.3 24 60.9 24 1016.7 24 1014.4 24 8.4 24 5.9 24 11.1 999.9 80.1 60.1 0.00G 999.9 000000 724050 13743 20090608 74.2 24 64.4 24 1014.2 24 1012.0 24 9.6 24 5.5 24 8.0 999.9 84.9 60.1 0.00G 999.9 000000 724050 13743 20090609 74.8 24 67.2 24 1012.2 22 1010.0 24 8.5 24 7.3 24 24.1 35.9 84.0* 64.4* 0.22G 999.9 010010 724050 13743 20090610 70.8 24 63.9 24 1012.9 23 1010.5 24 9.9 24 3.7 24 15.0 20.0 84.9 64.0 0.67G 999.9 010000 724050 13743 20090611 72.8 24 66.8 24 1010.4 15 1008.7 24 6.9 24 4.8 24 15.0 20.0 82.9 64.0 0.48G 999.9 010010 724050 13743 20090612 77.3 24 66.9 24 1007.4 24 1005.0 24 9.7 24 6.7 24 12.0 17.1 86.0 69.1 0.02G 999.9 010000 724050 13743 20090613 77.2 24 63.2 24 1011.2 24 1008.9 24 10.0 24 4.7 24 8.9 999.9 86.0 70.0 0.00I 999.9 000000 724050 13743 20090614 74.7 24 58.6 24 1013.6 22 1011.2 24 10.0 24 7.1 24 15.9 999.9 84.9 68.0 0.00G 999.9 010000 724050 13743 20090615 73.7 24 60.0 24 1015.7 24 1013.4 24 10.0 24 5.9 24 11.1 999.9 82.0 66.0 0.00G 999.9 000000 724050 13743 20090616 72.6 24 63.9 24 1018.6 21 1016.4 24 9.6 24 7.9 24 14.0 19.0 82.0 66.0 0.00G 999.9 000000 724050 13743 20090617 65.4 24 58.7 24 1021.3 22 1019.2 24 9.7 24 8.8 24 14.0 20.0 75.9 62.1 0.00G 999.9 010000 724050 13743 20090618 70.8 24 65.8 24 1011.8 13 1009.8 24 8.7 24 9.0 24 18.1 22.0 79.0 62.1 0.25G 999.9 110010 724050 13743 20090619 74.2 24 61.6 24 1010.0 24 1007.7 24 9.7 24 5.8 24 14.0 18.1 84.0 64.0 0.84G 999.9 000000 724050 13743 20090620 76.3 24 69.3 24 1005.3 19 1003.0 24 6.2 24 6.1 24 22.0 31.1 89.1 64.0 0.00G 999.9 010010 724050 13743 20090621 76.1 24 61.7 24 1003.4 24 1001.1 24 10.0 24 11.7 24 17.1 22.0 89.1 70.0 0.39G 999.9 000000 724050 13743 20090622 75.5 24 60.7 24 1005.1 24 1002.9 24 10.0 24 11.0 24 15.9 20.0 84.9 68.0 0.00G 999.9 000000 724050 13743 20090623 76.5 24 60.6 24 1007.3 24 1005.0 24 10.0 24 8.2 24 12.0 15.0 84.9 66.9 0.00G 999.9 000000 724050 13743 20090624 77.2 24 60.9 24 1009.3 24 1006.9 24 10.0 24 7.2 24 13.0 18.1 87.1 66.9 0.00G 999.9 000000 724050 13743 20090625 80.3 24 59.4 24 1009.6 24 1007.3 24 10.0 24 4.4 24 8.9 999.9 91.0 66.9 0.00G 999.9 000000 724050 13743 20090626 79.1 24 68.2 24 1007.6 23 1005.5 18 8.9 24 6.3 24 30.9 42.0 88.0* 72.0* 0.00G 999.9 010110 724050 13743 20090627 76.7 24 62.1 24 1007.8 23 1005.7 19 9.8 24 9.0 24 15.0 23.9 84.0 70.0 0.38G 999.9 010010 724050 13743 20090628 74.2 24 59.7 24 1007.0 24 1004.7 24 10.0 24 5.5 24 11.1 999.9 84.0 68.0 0.00G 999.9 000000 724050 13743 20090629 75.5 24 58.8 24 1001.8 24 999.6 24 9.6 24 6.1 24 14.0 19.0 86.0 66.0 0.00G 999.9 000000 724050 13743 20090630 75.8 24 60.7 24 1000.6 24 998.4 24 10.0 24 6.2 24 13.0 999.9 86.0 66.0 0.00G 999.9 010000 724050 13743 20090701 75.2 24 62.9 24 1005.0 24 1002.5 24 9.7 24 4.2 24 17.1 999.9 84.9 66.9 0.02G 999.9 010010 724050 13743 20090702 73.0 24 61.8 24 1008.6 23 1006.1 24 9.5 24 5.9 24 12.0 15.0 84.0 66.0 0.04G 999.9 010010 724050 13743 20090703 71.1 24 56.2 24 1013.1 24 1010.7 24 10.0 24 6.4 24 12.0 17.1 80.1 64.0 0.06G 999.9 000000 724050 13743 20090704 73.9 24 57.1 24 1014.6 24 1012.4 24 10.0 24 7.0 24 13.0 19.0 84.0 63.0 0.02G 999.9 000000 724050 13743 20090705 71.8 24 53.5 24 1013.4 24 1011.2 24 10.0 24 6.5 24 9.9 999.9 84.0 63.0 0.00G 999.9 010000 724050 13743 20090706 72.2 24 57.2 24 1009.5 24 1007.3 24 10.0 24 4.2 24 11.1 15.9 84.9 63.0 0.00G 999.9 000000 724050 13743 20090707 77.4 24 58.7 24 1008.2 24 1005.9 24 10.0 24 6.8 24 13.0 18.1 88.0 63.0 0.00G 999.9 000000 724050 13743 20090708 75.7 24 51.4 24 1011.6 24 1009.3 24 10.0 24 6.4 24 11.1 15.9 88.0 66.0 0.00G 999.9 000000 724050 13743 20090709 73.3 24 55.0 24 1019.0 24 1016.7 24 10.0 24 4.6 24 8.0 999.9 82.0 64.0 0.00G 999.9 000000 724050 13743 20090710 71.9 24 58.4 24 1025.0 24 1022.6 24 10.0 24 5.3 24 8.9 12.0 82.0 64.0 0.00G 999.9 000000 724050 13743 20090711 74.2 24 62.3 24 1022.1 24 1019.8 24 9.8 24 9.3 24 13.0 20.0 84.0 64.0 0.00G 999.9 010000 724050 13743 20090712 80.2 24 64.2 24 1014.8 24 1012.4 24 9.2 24 6.6 24 11.1 18.1 90.0 66.9 0.01G 999.9 000000 724050 13743 20090713 79.1 24 55.0 24 1013.1 24 1010.8 24 10.0 24 5.2 24 11.1 15.0 90.0 70.0 0.00G 999.9 000000 724050 13743 20090714 75.7 24 45.8 24 1017.2 24 1014.9 24 10.0 24 7.8 24 9.9 20.0 88.0 64.0 0.00G 999.9 000000 724050 13743 20090715 76.9 24 54.7 24 1019.8 24 1017.5 24 10.0 24 7.3 24 15.0 19.0 88.0 64.0 0.00G 999.9 000000 724050 13743 20090716 82.4 24 61.8 24 1012.1 24 1009.8 24 9.2 24 9.0 24 13.0 22.9 96.1 64.9 0.00G 999.9 000000 724050 13743 20090717 79.6 24 67.7 24 1009.2 20 1006.7 24 9.0 24 6.1 24 13.0 18.1 96.1 73.0 0.00G 999.9 010000 724050 13743 20090718 74.6 24 58.7 24 1010.0 24 1007.7 24 9.9 24 7.3 24 13.0 19.0 84.9 68.0 0.13G 999.9 010000 724050 13743 20090719 73.3 24 52.8 24 1018.3 24 1016.0 24 10.0 24 5.4 24 8.9 999.9 82.9 62.1 0.00G 999.9 000000 724050 13743 20090720 75.6 24 59.8 24 1019.9 24 1017.5 24 9.7 24 5.3 24 9.9 999.9 84.0 62.1 0.00G 999.9 000000 724050 13743 20090721 76.1 24 61.3 24 1018.8 22 1016.6 24 10.0 24 5.1 24 8.9 999.9 86.0 70.0 0.00G 999.9 000000 724050 13743 20090722 78.6 24 65.8 24 1019.2 24 1016.9 24 8.5 24 6.2 24 12.0 999.9 89.1* 69.8* 0.00G 999.9 000000 724050 13743 20090723 77.9 24 67.7 24 1014.8 18 1012.1 24 9.8 24 5.8 24 12.0 14.0 90.0 70.0 0.00G 999.9 010010 724050 13743 20090724 75.6 24 64.3 24 1012.0 24 1009.7 24 9.6 24 5.7 24 17.1 22.0 87.1 68.0 0.56G 999.9 010010 724050 13743 20090725 79.4 24 63.7 24 1013.2 24 1010.9 24 9.6 24 6.5 24 17.1 22.9 91.0 68.0 0.00G 999.9 010000 724050 13743 20090726 77.7 24 66.0 24 1012.3 24 1010.0 24 9.7 24 7.6 24 20.0 25.1 91.0 70.0 0.07G 999.9 010010 724050 13743 20090727 79.1 24 68.2 24 1013.8 22 1011.6 24 9.8 24 8.1 24 11.1 999.9 91.0 70.0 0.00G 999.9 010000 724050 13743 20090728 80.5 24 68.9 24 1013.8 24 1011.6 24 9.2 24 6.9 24 11.1 999.9 91.9 71.1 0.00G 999.9 000000 724050 13743 20090729 80.3 24 70.3 24 1011.1 24 1008.7 24 9.5 24 10.0 24 19.0 27.0 91.9 71.1 0.00G 999.9 010000 724050 13743 20090730 78.5 24 67.3 24 1011.7 24 1009.4 24 10.0 24 6.4 24 9.9 15.9 89.1 72.0 0.05G 999.9 000000 724050 13743 20090731 79.5 24 69.7 24 1012.2 21 1009.8 24 9.3 24 9.9 24 21.0 33.0 90.0 71.1 0.00G 999.9 010000 724050 13743 20090801 77.8 24 67.1 24 1017.3 24 1015.0 24 10.0 24 5.1 24 14.0 26.0 90.0 70.0 0.13G 999.9 010010 724050 13743 20090802 76.3 24 69.8 24 1013.2 17 1011.0 24 8.9 24 5.2 24 12.0 24.1 89.1 70.0 0.18G 999.9 010010 724050 13743 20090803 78.6 24 65.5 24 1015.1 24 1012.7 24 9.7 24 4.7 24 8.9 999.9 87.1 70.0 0.26G 999.9 000000 724050 13743 20090804 80.2 24 66.7 24 1015.3 24 1013.0 24 8.1 24 4.9 24 12.0 18.1 90.0 71.1 0.00G 999.9 000000 724050 13743 20090805 80.8 24 64.2 24 1013.2 24 1010.9 24 9.7 24 6.1 24 9.9 17.1 90.0 72.0 0.00G 999.9 000000 724050 13743 20090806 75.3 24 65.8 24 1014.7 18 1012.4 24 7.5 24 6.7 24 12.0 999.9 90.0 71.1 0.12G 999.9 010010 724050 13743 20090807 74.2 24 54.0 24 1019.0 24 1016.7 24 10.0 24 5.5 24 9.9 999.9 86.0 64.0 0.00I 999.9 000000 724050 13743 20090808 76.8 24 58.4 24 1022.4 24 1020.0 24 10.0 24 4.0 24 8.0 999.9 87.1 64.0 0.00G 999.9 010000 724050 13743 20090809 82.8 24 68.6 24 1019.2 24 1016.9 24 9.0 24 6.9 24 13.0 17.1 96.1 69.1 0.00G 999.9 000000 724050 13743 20090810 86.5 24 67.4 24 1015.7 24 1013.3 24 9.5 24 6.1 24 13.0 21.0 97.0 73.0 0.00G 999.9 000000 724050 13743 20090811 83.4 24 69.4 24 1012.5 23 1010.3 24 9.8 24 5.9 24 17.1 26.0 97.0 73.9 0.23G 999.9 010010 724050 13743 20090812 80.8 24 67.2 24 1013.0 24 1010.7 24 10.0 24 5.8 24 9.9 999.9 93.0 73.9 0.00G 999.9 000000 724050 13743 20090813 78.9 24 66.2 24 1016.8 19 1014.5 24 9.9 24 7.6 24 14.0 17.1 87.1 73.0 0.00G 999.9 010000 724050 13743 20090814 77.9 24 67.5 24 1021.9 19 1019.2 24 9.9 24 4.7 24 8.0 999.9 86.0* 71.6* 0.00G 999.9 000000 724050 13743 20090815 79.7 24 66.1 24 1021.8 24 1019.5 24 10.0 24 3.8 24 8.0 999.9 89.1 72.0 0.00G 999.9 000000 724050 13743 20090816 80.5 24 63.6 24 1022.1 24 1019.7 24 10.0 24 4.3 24 13.0 999.9 91.9 71.1 0.00G 999.9 000000 724050 13743 20090817 80.8 24 65.7 24 1022.1 24 1019.7 24 9.9 24 5.6 24 9.9 999.9 91.9 71.1 0.00G 999.9 000000 724050 13743 20090818 82.6 24 67.2 24 1019.0 24 1016.7 24 10.0 24 6.3 24 9.9 999.9 95.0 72.0 0.00G 999.9 010000 724050 13743 20090819 80.5 24 70.6 24 1016.0 23 1013.6 24 10.0 24 4.8 24 18.1 26.0 95.0 73.9 0.00G 999.9 010010 724050 13743 20090820 80.8 24 71.3 24 1014.1 24 1011.8 24 10.0 24 7.0 24 13.0 19.0 93.0* 73.4* 0.13G 999.9 000000 724050 13743 20090821 84.0 24 71.4 24 1012.3 21 1009.8 24 10.0 24 9.4 24 22.0 31.1 95.0 73.9 0.00G 999.9 010010 724050 13743 20090822 76.5 24 71.0 24 1010.7 10 1008.3 24 8.2 24 5.2 24 14.0 19.0 82.9* 71.6* 0.38G 999.9 010010 724050 13743 20090823 77.3 24 65.8 24 1010.9 24 1008.4 24 9.3 24 5.3 24 9.9 999.9 89.1 69.1 1.01G 999.9 010000 724050 13743 20090824 77.5 24 60.4 24 1017.0 24 1014.7 24 10.0 24 7.3 24 9.9 999.9 89.1 69.1 0.00G 999.9 000000 724050 13743 20090825 77.6 24 62.1 24 1020.3 24 1018.0 24 10.0 24 3.9 24 8.9 999.9 87.1 68.0 0.00G 999.9 000000 724050 13743 20090826 79.5 24 65.5 24 1018.0 24 1015.7 24 9.6 24 5.5 24 11.1 19.0 91.9 68.0 0.00G 999.9 000000 724050 13743 20090827 81.3 24 66.4 24 1017.3 24 1015.0 24 9.2 24 4.4 24 9.9 999.9 91.9 71.1 0.00G 999.9 000000 724050 13743 20090828 76.5 24 69.5 24 1016.7 16 1014.7 24 7.4 24 4.9 24 15.0 20.0 91.0 71.1 0.00G 999.9 010010 724050 13743 20090829 76.6 24 69.7 24 1010.1 18 1007.4 24 9.4 24 3.5 24 15.0 20.0 87.1 73.0 0.14G 999.9 010000 724050 13743 20090830 77.9 24 61.9 24 1011.7 24 1009.4 24 9.8 24 5.8 24 15.0 20.0 87.1 72.0 0.01G 999.9 010000 724050 13743 20090831 70.2 24 51.2 24 1019.6 24 1017.2 24 10.0 24 9.0 24 15.0 999.9 84.9 64.0 0.00G 999.9 000000 724050 13743 20090901 67.5 24 48.0 24 1024.0 24 1021.6 24 10.0 24 8.6 24 15.0 15.9 75.9 59.0 0.00G 999.9 000000 724050 13743 20090902 67.6 24 52.3 24 1025.0 24 1022.7 24 10.0 24 5.8 24 8.9 19.0 75.9 57.0 0.00G 999.9 000000 724050 13743 20090903 69.9 24 52.4 24 1021.1 24 1018.8 24 10.0 24 5.5 24 9.9 14.0 80.1 57.0 0.00G 999.9 000000 724050 13743 20090904 72.8 24 54.1 24 1017.3 24 1015.0 24 10.0 24 4.9 24 8.0 999.9 84.9 61.0 0.00G 999.9 000000 724050 13743 20090905 75.6 24 59.1 24 1020.3 24 1017.9 24 9.9 24 2.9 24 8.0 999.9 87.1 63.0 0.00G 999.9 000000 724050 13743 20090906 74.7 24 59.5 24 1023.8 24 1021.4 24 10.0 24 4.4 24 15.0 999.9 87.1 64.0 0.00G 999.9 000000 724050 13743 20090907 70.3 24 64.7 24 1022.8 18 1020.7 24 9.1 24 7.5 24 11.1 18.1 84.0 64.9 0.43G 999.9 010010 724050 13743 20090908 69.1 24 61.9 24 1018.6 20 1016.4 24 9.5 24 8.6 24 12.0 999.9 77.0 64.9 0.09G 999.9 010000 724050 13743 20090909 70.5 24 60.1 24 1019.1 24 1016.8 24 9.7 24 7.1 24 18.1 21.0 79.0 64.9 0.02G 999.9 010000 724050 13743 20090910 68.4 24 56.2 24 1024.6 22 1022.3 24 10.0 24 12.0 24 17.1 22.9 73.0* 64.4* 0.01G 999.9 000000 724050 13743 20090911 63.3 24 54.7 24 1020.1 21 1017.9 24 8.9 24 12.6 24 16.9 24.1 73.9 59.0 0.22G 999.9 010000 724050 13743 20090912 66.7 24 57.0 24 1015.6 18 1013.2 24 10.0 24 9.6 24 15.9 20.0 73.9 59.0 0.58G 999.9 000000 724050 13743 20090913 71.6 24 58.6 24 1014.7 22 1012.5 24 10.0 24 7.8 24 12.0 17.1 82.9 63.0 0.00G 999.9 000000 724050 13743 20090914 73.4 24 57.7 24 1015.4 24 1013.1 24 10.0 24 5.3 24 12.0 15.9 84.0 63.0 0.00G 999.9 000000 724050 13743 20090915 74.8 24 61.5 24 1014.8 24 1012.5 24 9.7 24 4.3 24 8.0 999.9 84.0 63.0 0.00G 999.9 000000 724050 13743 20090916 71.9 24 62.7 24 1017.7 24 1015.4 24 9.1 24 7.2 24 13.0 999.9 84.0 66.0 0.19G 999.9 010000 724050 13743 20090917 66.2 24 59.4 24 1022.0 19 1019.7 24 9.6 24 9.1 24 15.9 999.9 71.6* 64.4* 0.00G 999.9 010000 724050 13743 20090918 68.5 24 60.1 24 1019.9 21 1017.6 24 9.8 24 6.1 24 9.9 999.9 78.1 64.0 0.01G 999.9 010000 724050 13743 20090919 69.4 24 56.1 24 1022.2 24 1019.9 24 10.0 24 6.6 24 13.0 999.9 78.1 63.0 0.00G 999.9 000000 724050 13743 20090920 65.3 24 51.3 24 1026.3 24 1024.0 24 10.0 24 2.7 24 9.9 999.9 77.0 57.0 0.00G 999.9 000000 724050 13743 20090921 67.8 24 55.9 24 1025.2 24 1022.9 24 10.0 24 3.5 24 8.9 999.9 80.1 57.0 0.00G 999.9 000000 724050 13743 20090922 72.2 24 64.0 24 1024.4 24 1022.1 24 10.0 24 3.7 24 7.0 999.9 81.0 60.1 0.00G 999.9 000000 724050 13743 20090923 75.9 24 67.3 24 1021.5 23 1019.4 24 10.0 24 5.3 24 12.0 999.9 87.1 64.9 0.00G 999.9 000000 724050 13743 20090924 78.9 24 67.5 24 1018.1 24 1015.8 24 10.0 24 5.8 24 11.1 15.0 87.1 71.1 0.03G 999.9 000000 724050 13743 20090925 71.3 24 57.0 24 1020.6 24 1018.4 24 9.8 24 7.5 24 13.0 17.1 86.0 64.0 0.02G 999.9 010000 724050 13743 20090926 64.1 24 52.8 24 1023.7 24 1021.5 24 9.4 24 6.2 24 12.0 999.9 75.0 60.1 0.36B 999.9 010000 724050 13743 20090927 66.5 24 59.8 24 1007.9 16 1005.9 24 8.1 24 4.8 24 17.1 20.0 78.1 60.1 1.61G 999.9 010000 724050 13743 20090928 67.6 24 53.6 24 1002.6 24 1000.3 24 10.0 24 8.9 24 22.0 29.9 80.1 57.0 0.02G 999.9 000000 724050 13743 20090929 63.3 24 40.5 24 1005.1 24 1002.8 24 10.0 24 8.4 24 15.0 25.1 80.1 54.0 0.00G 999.9 000000 724050 13743 20090930 61.5 24 46.9 24 1011.8 24 1009.6 24 10.0 24 7.1 24 12.0 29.9 70.0 54.0 0.00G 999.9 010000 724050 13743 20091001 57.7 24 44.5 24 1017.4 23 1015.1 24 10.0 24 4.8 24 8.9 999.9 70.0 50.0 0.08G 999.9 000000 724050 13743 20091002 62.0 24 51.4 24 1014.5 24 1012.2 24 10.0 24 6.3 24 14.0 999.9 72.0 50.0 0.00G 999.9 000000 724050 13743 20091003 69.4 24 57.4 24 1010.7 24 1008.4 24 10.0 24 5.9 24 9.9 999.9 77.0 55.9 0.02G 999.9 010000 724050 13743 20091004 64.2 24 47.3 24 1013.3 24 1011.1 24 10.0 24 5.4 24 14.0 21.0 77.0 54.0 0.00G 999.9 000000 724050 13743 20091005 62.7 24 41.5 24 1017.1 24 1014.8 24 10.0 24 5.0 24 12.0 17.1 72.0 54.0 0.00G 999.9 000000 724050 13743 20091006 61.2 24 49.1 24 1015.7 24 1013.4 24 10.0 24 4.5 24 14.0 999.9 71.1 52.0 0.00G 999.9 000000 724050 13743 20091007 67.6 24 51.3 24 1007.5 21 1004.5 24 10.0 24 13.5 24 24.1 39.0 75.0 52.0 0.00G 999.9 010000 724050 13743 20091008 60.1 24 39.7 24 1019.3 24 1017.0 24 10.0 24 6.3 24 13.0 22.0 75.0 52.0 0.00G 999.9 000000 724050 13743 20091009 69.3 24 52.5 24 1013.3 24 1011.0 24 10.0 24 11.0 24 20.0 26.0 84.9 61.0 0.00G 999.9 010000 724050 13743 20091010 70.5 24 58.8 24 1011.5 24 1008.6 24 9.7 24 10.5 24 17.1 27.0 84.9 60.1 0.01G 999.9 010000 724050 13743 20091011 58.0 24 41.6 24 1023.1 24 1020.7 24 10.0 24 5.1 24 8.9 999.9 73.0 48.9 0.00G 999.9 000000 724050 13743 20091012 54.0 24 40.7 24 1026.8 24 1024.4 24 10.0 24 5.3 24 9.9 999.9 68.0 48.9 0.00G 999.9 000000 724050 13743 20091013 58.5 24 45.3 24 1020.3 24 1017.9 24 10.0 24 6.6 24 19.0 24.1 73.0 48.9 0.00G 999.9 000000 724050 13743 20091014 50.9 24 34.2 24 1024.0 24 1021.6 24 10.0 24 9.1 24 15.9 22.0 73.0 46.0 0.00G 999.9 010000 724050 13743 20091015 47.2 24 42.9 24 1017.2 14 1013.1 24 6.7 24 8.4 24 14.0 18.1 51.1 46.0 0.12G 999.9 010000 724050 13743 20091016 44.0 24 39.8 24 1010.3 6 1009.4 24 4.1 24 11.0 24 15.0 20.0 50.0 42.1 0.60G 999.9 010000 724050 13743 20091017 44.7 24 40.9 24 1015.1 13 1013.2 24 5.0 24 12.1 24 15.9 20.0 46.9 42.1 0.78G 999.9 010000 724050 13743 20091018 45.4 24 37.7 24 1019.0 18 1016.2 24 8.7 24 13.8 24 18.1 24.1 53.1 39.0 1.10G 999.9 010000 724050 13743 20091019 48.5 24 31.8 24 1023.4 24 1021.0 24 10.0 24 8.7 24 12.0 15.0 59.0 39.0 0.33G 999.9 000000 724050 13743 20091020 51.7 24 39.2 24 1022.9 23 1020.7 24 10.0 24 4.0 24 8.0 999.9 70.0 39.9 0.00G 999.9 000000 724050 13743 20091021 58.5 24 45.3 24 1022.7 24 1020.4 24 10.0 24 2.8 24 8.0 999.9 75.0 41.0 0.00G 999.9 000000 724050 13743 20091022 59.8 24 49.4 24 1018.3 24 1016.0 24 10.0 24 4.6 24 8.9 999.9 75.0 46.9 0.00G 999.9 000000 724050 13743 20091023 60.7 24 50.8 24 1015.5 24 1013.2 24 10.0 24 3.7 24 13.0 999.9 73.0 52.0 0.00G 999.9 000000 724050 13743 20091024 67.0 24 61.1 24 1008.2 20 1005.3 24 9.3 24 11.0 24 19.0 27.0 72.0 54.0 0.02G 999.9 010000 724050 13743 20091025 58.0 24 40.9 24 1017.3 23 1014.0 24 10.0 24 8.9 24 15.9 24.1 72.0 48.9 0.90G 999.9 000000 724050 13743 20091026 53.5 24 42.4 24 1024.9 24 1022.5 24 10.0 24 3.9 24 7.0 999.9 64.9 45.0 0.00G 999.9 000000 724050 13743 20091027 56.1 24 51.6 24 1020.3 15 1017.7 24 6.0 24 6.8 24 11.1 999.9 64.9 45.0 0.58G 999.9 010000 724050 13743 20091028 62.0 24 55.0 24 1011.3 17 1009.3 24 7.7 24 5.7 24 13.0 19.0 73.0 54.0 1.45G 999.9 010000 724050 13743 20091029 59.7 24 50.3 24 1021.9 24 1019.4 24 10.0 24 6.8 24 13.0 20.0 73.0 57.0 0.78G 999.9 000000 724050 13743 20091030 56.5 24 48.9 24 1024.3 22 1022.3 24 9.8 24 5.6 24 8.9 999.9 60.1* 53.6* 0.00G 999.9 010000 724050 13743 20091031 61.8 24 57.9 24 1013.6 13 1012.4 24 6.7 24 8.8 24 15.0 18.1 71.1 54.0 0.01G 999.9 010000 724050 13743 20091101 55.4 24 47.6 24 1018.8 23 1015.9 24 9.2 24 7.8 24 14.0 19.0 71.1 51.1 0.52G 999.9 010000 724050 13743 20091102 54.6 24 41.2 24 1021.8 24 1019.5 24 10.0 24 6.5 24 11.1 999.9 62.1 51.1 0.15G 999.9 000000 724050 13743 20091103 53.1 24 41.9 24 1020.1 24 1017.7 24 9.1 24 3.8 24 14.0 999.9 66.9 43.0 0.00G 999.9 100000 724050 13743 20091104 48.6 24 28.5 24 1026.2 24 1023.8 24 10.0 24 5.7 24 14.0 999.9 66.9 39.0 0.00G 999.9 000000 724050 13743 20091105 50.5 24 34.3 24 1022.3 24 1019.9 24 10.0 24 4.2 24 13.0 17.1 60.1 39.0 0.00G 999.9 010000 724050 13743 20091106 47.2 24 26.9 24 1025.5 24 1023.1 24 10.0 24 9.0 24 21.0 28.0 60.1 41.0 0.01G 999.9 000000 724050 13743 20091107 46.1 24 31.9 24 1025.3 24 1023.2 24 10.0 24 4.8 24 13.0 999.9 60.1 35.1 0.00G 999.9 000000 724050 13743 20091108 56.3 24 40.8 24 1023.2 24 1020.9 24 10.0 24 2.6 24 8.0 999.9 73.9 35.1 0.00G 999.9 000000 724050 13743 20091109 57.0 24 46.9 24 1028.5 24 1026.2 24 8.2 24 2.1 24 7.0 999.9 73.9 45.0 0.00G 999.9 000000 724050 13743 20091110 58.3 24 49.6 24 1025.4 24 1023.0 24 8.3 24 2.1 24 6.0 18.1 71.1 46.9 0.00G 999.9 000000 724050 13743 20091111 52.9 24 45.2 24 1024.2 24 1021.9 24 7.5 24 11.5 24 17.1 24.1 66.0 46.9 0.08G 999.9 010000 724050 13743 20091112 45.9 24 40.8 24 1018.8 20 1016.8 24 8.4 24 16.8 24 20.0 28.0 57.9 44.1 1.15G 999.9 010000 724050 13743 20091113 52.0 24 43.3 24 1012.8 21 1010.3 24 9.0 24 16.4 24 20.0 29.9 55.9 45.0 0.31G 999.9 010000 724050 13743 20091114 56.0 24 50.7 24 1012.0 19 1009.8 24 8.1 24 11.0 24 15.9 22.9 61.0 48.9 0.35G 999.9 010000 724050 13743 20091115 59.0 24 49.5 24 1014.4 24 1012.0 24 9.2 24 4.6 24 9.9 999.9 72.0 48.9 0.02G 999.9 000000 724050 13743 20091116 58.1 24 48.2 24 1017.3 24 1015.0 24 9.3 24 3.2 24 11.1 999.9 72.0 48.9 0.00G 999.9 000000 724050 13743 20091117 52.7 24 36.3 24 1022.7 24 1020.4 24 10.0 24 6.4 24 9.9 999.9 70.0 46.9 0.00G 999.9 000000 724050 13743 20091118 51.4 24 42.4 24 1027.6 23 1025.3 24 10.0 24 7.2 24 9.9 999.9 59.0 46.0 0.00G 999.9 000000 724050 13743 20091119 56.2 24 51.7 24 1024.3 18 1021.6 24 5.3 24 6.5 24 11.1 999.9 61.0 46.0 0.01G 999.9 010000 724050 13743 20091120 56.6 24 45.8 24 1019.8 20 1016.9 24 8.9 24 7.8 24 14.0 18.1 62.6* 50.0* 0.57G 999.9 010010 724050 13743 20091121 50.6 24 37.5 24 1021.4 24 1019.1 24 10.0 24 4.2 24 8.9 999.9 60.1 43.0 0.01G 999.9 000000 724050 13743 20091122 49.6 24 39.1 24 1024.4 24 1022.0 24 10.0 24 6.6 24 9.9 999.9 60.1 42.1 0.00G 999.9 000000 724050 13743 20091123 48.6 24 42.7 24 1026.0 20 1023.7 24 9.0 24 7.9 24 13.0 15.9 57.9 42.1 0.00G 999.9 010000 724050 13743 20091124 49.7 24 46.4 24 1021.9 14 1019.5 24 6.2 24 6.9 24 11.1 15.9 53.6* 48.0* 0.87G 999.9 010000 724050 13743 20091125 52.8 24 49.8 24 1017.1 13 1015.1 24 5.7 24 2.8 24 9.9 999.9 55.9 48.0 0.12G 999.9 010000 724050 13743 20091126 48.4 24 46.1 24 1012.5 20 1010.4 24 4.8 24 2.4 24 8.0 999.9 53.1* 44.6* 0.07G 999.9 110000 724050 13743 20091127 46.2 24 34.3 24 1005.6 22 1003.4 24 9.2 24 12.2 24 22.0 32.1 51.1 43.0 0.16G 999.9 010000 724050 13743 20091128 44.6 24 26.7 24 1011.4 24 1009.1 24 10.0 24 11.7 24 21.0 32.1 52.0 39.9 0.03G 999.9 000000 724050 13743 20091129 46.9 24 34.7 24 1013.8 24 1011.5 24 10.0 24 4.4 24 11.1 999.9 64.0 35.1 0.00G 999.9 000000 724050 13743 20091130 53.3 24 41.7 24 1007.4 23 1004.8 24 9.7 24 7.4 24 13.0 17.1 64.0 35.1 0.00G 999.9 010000 724050 13743 20091201 44.0 24 27.3 24 1016.0 24 1013.7 24 10.0 24 8.9 24 15.9 24.1 55.0 34.0 0.18G 999.9 010000 724050 13743 20091202 46.1 24 36.8 24 1018.9 21 1016.3 24 9.6 24 4.0 24 12.0 21.0 57.2* 42.1* 0.00G 999.9 010000 724050 13743 20091203 58.9 24 48.2 24 1004.3 18 1000.6 24 8.8 24 11.0 24 20.0 32.1 64.9 41.0 0.77G 999.9 010000 724050 13743 20091204 47.2 24 33.9 24 1019.2 24 1016.9 24 10.0 24 3.7 24 9.9 18.1 64.9 41.0 0.29G 999.9 000000 724050 13743 20091205 41.3 24 33.2 24 1018.8 19 1015.6 24 6.7 24 8.7 24 15.9 20.0 50.0 33.1 0.02G 999.9 011000 724050 13743 20091206 34.3 24 22.5 24 1024.2 24 1021.9 24 9.8 24 8.5 24 14.0 18.1 46.0 30.0 0.66G 999.9 001000 724050 13743 20091207 36.6 24 24.8 24 1026.7 24 1024.5 24 10.0 24 5.2 24 13.0 999.9 44.1 30.2 0.00G 999.9 000000 724050 13743 20091208 40.4 24 28.2 24 1026.6 24 1024.3 24 10.0 24 4.1 24 11.1 999.9 45.0 31.1 0.00G 999.9 000000 724050 13743 20091209 43.4 24 37.5 24 1003.5 20 1002.9 24 7.4 24 9.2 24 22.9 31.1 53.1 35.1 1.57G 999.9 011000 724050 13743 20091210 44.4 24 26.1 24 1004.0 24 1001.7 24 10.0 24 9.8 24 18.1 22.9 53.1 34.0 0.02G 999.9 000000 724050 13743 20091211 31.5 24 3.5 24 1022.8 24 1020.5 24 10.0 24 10.3 24 15.0 25.1 48.9 24.1 0.00G 999.9 000000 724050 13743 20091212 34.4 24 9.5 24 1033.6 24 1031.2 24 10.0 24 4.7 24 8.9 999.9 44.1 25.0 0.00G 999.9 000000 724050 13743 20091213 37.5 24 27.7 24 1025.7 20 1023.2 24 7.9 24 3.8 24 8.0 999.9 44.1 27.1 0.02G 999.9 010000 724050 13743 20091214 40.1 24 36.8 24 1018.2 19 1016.2 24 4.2 24 4.5 24 9.9 999.9 48.9 33.1 0.41G 999.9 100000 724050 13743 20091215 48.3 24 42.2 24 1015.2 24 1012.7 24 7.8 24 6.5 24 15.9 24.1 57.9 33.1 0.00G 999.9 000000 724050 13743 20091216 39.4 24 18.0 24 1025.6 24 1023.3 24 10.0 24 12.5 24 22.0 32.1 57.9 33.1 0.00G 999.9 000000 724050 13743 20091217 32.3 24 10.9 24 1029.1 24 1026.8 24 10.0 24 9.0 24 15.9 22.0 41.0 27.0 0.00G 999.9 000000 724050 13743 20091218 31.7 24 16.6 24 1024.9 24 1022.7 24 10.0 24 3.5 24 8.9 999.9 37.9 27.0 0.00G 999.9 000000 724050 13743 20091219 28.1 24 22.5 24 1010.1 8 1006.9 24 1.8 24 13.3 24 22.0 27.0 33.8* 24.8* 0.22G 15.0 101000 724050 13743 20091220 30.2 24 19.5 24 1011.9 21 1008.6 24 8.1 24 12.0 24 21.0 28.0 36.0 25.0 0.29G 13.0 001000 724050 13743 20091221 32.9 24 18.1 24 1018.9 24 1016.7 24 10.0 24 7.4 24 13.0 19.0 41.0 24.1 0.00G 11.0 000000 724050 13743 20091222 36.1 24 23.3 24 1022.6 24 1020.3 24 10.0 24 5.1 24 11.1 15.0 41.0 24.1 0.00G 9.1 000000 724050 13743 20091223 35.1 24 18.8 24 1025.7 24 1023.4 24 10.0 24 7.0 24 12.0 999.9 39.9 26.2 0.00G 7.1 000000 724050 13743 20091224 31.2 24 15.7 24 1028.5 24 1026.2 24 10.0 24 5.6 24 11.1 999.9 39.0 25.0 0.00G 7.1 000000 724050 13743 20091225 34.2 24 27.8 24 1026.6 20 1023.8 24 8.1 24 6.2 24 15.9 21.0 45.0 25.0 0.00G 5.1 110000 724050 13743 20091226 46.7 24 44.0 24 1013.7 16 1011.4 24 3.4 24 7.8 24 15.0 21.0 54.0 31.1 1.30G 2.0 110000 724050 13743 20091227 41.8 24 34.4 24 1014.7 24 1012.4 24 9.5 24 4.0 24 8.9 999.9 54.0 34.0 0.14G 999.9 000000 724050 13743 20091228 37.4 24 21.7 24 1010.0 24 1007.7 24 10.0 24 10.7 24 20.0 29.9 48.9 34.0 0.00G 999.9 000000 724050 13743 20091229 32.3 24 10.2 24 1018.9 24 1016.7 24 10.0 24 14.4 24 22.9 35.0 39.9 28.0 0.00G 999.9 000000 724050 13743 20091230 27.4 24 10.3 24 1032.0 24 1029.8 23 10.0 24 6.4 24 11.1 999.9 35.1 23.0 0.00G 999.9 000000 724050 13743 20091231 33.3 24 24.4 24 1023.0 22 1019.9 22 8.0 24 4.2 24 9.9 999.9 36.0 23.0 0.27G 999.9 011000 fluids-1.0.22/tests/gsod/2009/722324-03071.op0000644000175000017500000014327214302004506016656 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20090101 49.3 24 21.0 24 9999.9 0 918.5 24 10.0 24 7.2 24 18.1 26.0 73.4* 35.6* 0.00I 999.9 000000 722324 03071 20090102 56.1 24 20.4 24 9999.9 0 913.4 24 10.0 24 6.9 24 13.0 15.9 73.4* 41.0* 0.00I 999.9 000000 722324 03071 20090103 60.1 24 24.9 24 9999.9 0 909.7 24 10.0 24 9.4 24 19.0 25.1 73.4* 42.8* 0.00I 999.9 000000 722324 03071 20090104 44.3 24 20.9 24 9999.9 0 918.3 24 10.0 24 9.1 24 15.0 24.1 68.0* 30.2* 0.00I 999.9 000000 722324 03071 20090105 33.1 24 10.3 24 9999.9 0 922.3 24 9.9 24 6.5 24 11.1 14.0 39.2* 28.4* 99.99 999.9 011000 722324 03071 20090106 43.4 24 21.0 24 9999.9 0 909.6 24 10.0 24 12.3 24 25.1 33.0 55.4* 35.6* 0.00I 999.9 000000 722324 03071 20090107 46.4 24 16.0 24 9999.9 0 914.2 24 10.0 24 8.9 24 19.0 22.9 68.0* 35.6* 0.00I 999.9 000000 722324 03071 20090108 54.3 24 22.0 24 9999.9 0 914.9 24 10.0 24 7.6 24 12.0 15.9 71.6* 41.0* 0.00I 999.9 000000 722324 03071 20090109 60.1 24 20.5 24 9999.9 0 913.0 24 10.0 24 8.3 24 17.1 24.1 80.6* 46.4* 0.00I 999.9 000000 722324 03071 20090110 47.8 24 23.3 24 9999.9 0 924.4 24 9.8 24 10.1 24 18.1 24.1 71.6* 33.8* 0.00I 999.9 000000 722324 03071 20090111 41.5 24 14.3 24 9999.9 0 927.9 24 9.9 24 2.7 24 9.9 15.9 59.0* 28.4* 0.00I 999.9 000000 722324 03071 20090112 48.5 24 14.5 24 9999.9 0 921.7 24 10.0 24 7.5 24 25.1 31.1 64.4* 33.8* 0.00I 999.9 000000 722324 03071 20090113 40.0 24 15.0 24 9999.9 0 929.2 24 9.3 24 8.8 24 22.9 32.1 55.4* 26.6* 0.00I 999.9 000000 722324 03071 20090114 44.6 24 13.6 24 9999.9 0 921.8 24 10.0 24 4.9 24 11.1 15.0 62.6* 30.2* 0.00I 999.9 000000 722324 03071 20090115 37.9 24 19.6 24 9999.9 0 928.7 24 10.0 24 7.5 24 14.0 18.1 59.0* 28.4* 0.00I 999.9 000000 722324 03071 20090116 36.7 24 19.3 24 9999.9 0 933.3 24 10.0 24 6.1 24 13.0 15.9 51.8* 32.0* 0.00I 999.9 000000 722324 03071 20090117 46.3 24 34.7 24 9999.9 0 925.9 24 7.6 24 6.0 24 14.0 999.9 69.8* 32.0* 0.00I 999.9 100000 722324 03071 20090118 47.8 24 19.5 24 9999.9 0 927.9 24 10.0 24 5.6 24 8.9 999.9 68.0* 32.0* 0.00I 999.9 000000 722324 03071 20090119 55.0 24 14.6 24 9999.9 0 924.6 24 10.0 24 9.0 24 17.1 22.9 73.4* 41.0* 0.00I 999.9 000000 722324 03071 20090120 52.6 24 14.4 24 9999.9 0 926.4 24 10.0 24 8.0 24 13.0 15.9 68.0* 35.6* 0.00I 999.9 000000 722324 03071 20090121 53.7 24 18.9 24 9999.9 0 924.2 24 10.0 24 5.7 24 9.9 15.0 77.0* 35.6* 0.00I 999.9 000000 722324 03071 20090122 61.5 24 19.7 24 9999.9 0 918.6 24 10.0 24 7.8 24 15.0 21.0 80.6* 42.8* 0.00I 999.9 000000 722324 03071 20090123 67.5 24 39.1 24 9999.9 0 917.4 24 10.0 24 11.3 24 18.1 28.0 78.8* 57.2* 0.00I 999.9 000000 722324 03071 20090124 42.4 24 21.2 24 9999.9 0 926.0 24 9.9 24 9.0 24 19.0 26.0 9999.9 28.4* 0.00I 999.9 000000 722324 03071 20090125 48.0 24 21.8 24 9999.9 0 918.7 24 10.0 24 5.7 24 11.1 15.0 73.4* 35.6* 0.00I 999.9 000000 722324 03071 20090126 53.0 24 37.4 24 9999.9 0 914.8 24 9.0 24 8.9 24 15.0 19.0 69.8* 41.0* 0.00I 999.9 000000 722324 03071 20090127 28.6 24 26.5 24 9999.9 0 919.7 24 4.8 24 10.1 24 14.0 20.0 37.4* 24.8* 99.99 999.9 001000 722324 03071 20090128 33.3 24 22.8 24 9999.9 0 921.5 24 7.0 24 3.9 24 14.0 20.0 62.6* 21.2* 99.99 999.9 001000 722324 03071 20090129 42.7 24 19.9 24 9999.9 0 920.7 24 9.8 24 7.0 24 14.0 19.0 59.0* 28.4* 0.00I 999.9 000000 722324 03071 20090130 42.7 24 19.9 24 9999.9 0 929.0 24 10.0 24 4.8 24 12.0 15.0 60.8* 26.6* 0.00I 999.9 000000 722324 03071 20090131 46.9 24 14.9 24 9999.9 0 925.5 24 10.0 24 4.5 24 14.0 18.1 64.4* 32.0* 0.00I 999.9 000000 722324 03071 20090201 51.9 24 22.9 24 9999.9 0 915.5 24 10.0 24 9.9 24 20.0 22.9 64.4* 37.4* 0.00I 999.9 000000 722324 03071 20090202 41.7 24 12.6 24 9999.9 0 926.1 24 10.0 24 7.4 24 19.0 27.0 57.2* 26.6* 0.00I 999.9 000000 722324 03071 20090203 49.0 24 11.1 24 9999.9 0 924.4 24 10.0 24 9.0 24 17.1 22.9 68.0* 35.6* 0.00I 999.9 000000 722324 03071 20090204 49.0 24 16.5 24 9999.9 0 929.6 24 10.0 24 5.0 24 12.0 15.9 68.0* 32.0* 0.00I 999.9 000000 722324 03071 20090205 55.1 24 28.8 24 9999.9 0 927.0 24 10.0 24 9.5 24 17.1 21.0 71.6* 42.8* 0.00I 999.9 000000 722324 03071 20090206 60.0 24 41.8 24 9999.9 0 920.7 24 10.0 24 13.2 24 21.0 26.0 77.0* 48.2* 0.00I 999.9 000000 722324 03071 20090207 64.1 24 45.4 24 9999.9 0 917.6 17 10.0 24 13.0 24 17.1 23.9 78.8* 51.8* 0.00I 999.9 000000 722324 03071 20090208 62.6 24 49.3 24 9999.9 0 916.1 24 9.9 24 16.8 24 28.0 36.9 69.8* 59.0* 0.00I 999.9 000000 722324 03071 20090209 53.3 24 37.5 24 9999.9 0 913.9 24 9.8 24 13.2 24 24.1 33.0 64.4* 44.6* 99.99 999.9 010000 722324 03071 20090210 56.8 24 27.1 24 9999.9 0 909.9 24 9.8 24 11.8 24 35.0 44.1 71.6* 48.2* 0.00I 999.9 000000 722324 03071 20090211 49.0 24 20.5 24 9999.9 0 916.4 23 10.0 24 15.0 24 33.0 42.0 62.6* 39.2* 0.00I 999.9 000000 722324 03071 20090212 54.3 24 19.0 24 9999.9 0 919.4 24 10.0 24 5.7 24 13.0 17.1 73.4* 42.8* 0.00I 999.9 000000 722324 03071 20090213 61.3 24 20.1 24 9999.9 0 916.6 24 10.0 24 7.5 24 15.9 20.0 70.9 54.5 0.00I 999.9 000000 722324 03071 20090214 43.6 24 23.0 24 9999.9 0 918.5 24 9.9 24 7.6 24 15.9 21.0 68.5 31.6 99.99 999.9 010000 722324 03071 20090215 41.8 24 29.2 24 9999.9 0 920.9 24 10.0 24 4.4 24 8.9 999.9 58.3 30.2 0.00I 999.9 000000 722324 03071 20090216 47.1 24 31.9 24 9999.9 0 924.0 24 10.0 24 8.6 24 14.0 17.1 58.3 40.5 0.00I 999.9 000000 722324 03071 20090217 57.6 24 44.7 24 9999.9 0 916.2 24 8.0 24 10.6 24 22.0 32.1 80.2 49.1 0.00I 999.9 000000 722324 03071 20090218 57.9 24 17.5 24 9999.9 0 915.7 24 10.0 24 10.2 24 19.0 27.0 75.7 43.2 0.00I 999.9 000000 722324 03071 20090219 48.3 24 17.6 24 9999.9 0 923.5 24 10.0 24 5.4 24 9.9 14.0 64.9 33.8 0.00I 999.9 000000 722324 03071 20090220 51.0 24 21.1 24 9999.9 0 923.2 24 10.0 24 7.2 24 15.9 21.0 71.2 37.4 0.00I 999.9 000000 722324 03071 20090221 49.2 24 24.0 24 9999.9 0 922.4 24 9.6 24 10.9 24 27.0 35.9 70.7 34.7 0.00I 999.9 000000 722324 03071 20090222 45.0 24 13.2 24 9999.9 0 929.9 24 10.0 24 4.6 24 19.0 24.1 64.4 29.8 0.00I 999.9 000000 722324 03071 20090223 57.5 24 12.0 24 9999.9 0 924.9 24 10.0 24 8.4 24 13.0 15.9 80.4 42.3 0.00I 999.9 000000 722324 03071 20090224 68.8 24 22.4 24 9999.9 0 918.5 24 10.0 24 9.1 24 21.0 26.0 90.7 52.3 0.00I 999.9 000000 722324 03071 20090225 70.6 24 23.4 24 9999.9 0 916.0 24 10.0 24 7.0 24 13.0 18.1 87.3* 53.6* 0.00I 999.9 000000 722324 03071 20090226 74.1 24 19.9 24 9999.9 0 914.1 24 10.0 24 11.6 24 24.1 32.1 89.2 58.1 0.00I 999.9 000000 722324 03071 20090227 63.4 24 24.3 24 9999.9 0 913.0 24 10.0 24 5.8 24 15.9 22.9 87.1 45.9 0.00I 999.9 000000 722324 03071 20090228 50.7 24 21.1 24 9999.9 0 924.5 24 9.5 24 10.8 24 33.0 41.0 76.8 34.9 0.00I 999.9 000000 722324 03071 20090301 42.6 24 10.8 24 9999.9 0 933.4 24 10.0 24 3.8 24 9.9 14.0 59.0* 28.9* 0.00I 999.9 000000 722324 03071 20090302 55.3 24 11.3 24 9999.9 0 924.4 24 10.0 24 7.2 24 12.0 15.0 81.1 40.1 0.00I 999.9 000000 722324 03071 20090303 65.9 24 15.5 24 9999.9 0 918.4 24 10.0 24 7.9 24 13.0 19.0 88.3 49.1 0.00I 999.9 000000 722324 03071 20090304 67.3 24 31.8 24 9999.9 0 917.5 24 10.0 24 7.1 24 14.0 20.0 88.5 45.9 0.00I 999.9 000000 722324 03071 20090305 73.5 24 37.1 24 9999.9 0 917.4 24 10.0 24 10.6 24 15.9 24.1 90.5 59.9 0.00I 999.9 000000 722324 03071 20090306 70.6 24 48.0 24 9999.9 0 917.9 24 10.0 24 8.6 24 15.0 19.0 86.2 59.2 0.00I 999.9 000000 722324 03071 20090307 68.8 24 50.8 24 9999.9 0 914.2 24 10.0 24 10.2 24 15.9 22.0 81.5 60.8 0.00I 999.9 000000 722324 03071 20090308 65.8 24 24.4 24 9999.9 0 916.9 24 10.0 24 5.1 24 14.0 22.0 79.7 51.3 0.00I 999.9 000000 722324 03071 20090309 68.1 24 38.3 24 9999.9 0 915.6 24 9.9 24 5.9 24 17.1 22.9 82.4 58.1 0.00I 999.9 000000 722324 03071 20090310 66.8 24 41.0 24 9999.9 0 915.4 24 10.0 24 8.1 24 19.0 22.9 81.0 57.7 0.00I 999.9 000000 722324 03071 20090311 46.5 24 28.6 24 9999.9 0 922.6 24 9.5 24 10.2 24 20.0 28.0 68.9 33.8 0.11B 999.9 010000 722324 03071 20090312 34.2 24 32.1 24 9999.9 0 926.2 24 8.8 24 4.2 24 8.0 999.9 38.3 32.5 0.03A 999.9 010000 722324 03071 20090313 36.7 24 35.0 24 9999.9 0 921.4 24 4.9 24 8.4 24 14.0 17.1 40.1 35.2 0.11A 999.9 011000 722324 03071 20090314 40.4 24 36.1 24 9999.9 0 920.5 24 9.1 24 5.3 24 11.1 15.0 49.8 37.2 99.99 999.9 010000 722324 03071 20090315 50.1 24 37.6 24 9999.9 0 916.6 24 9.9 24 5.9 24 17.1 21.0 72.5 38.3 0.00I 999.9 000000 722324 03071 20090316 62.7 24 26.1 24 9999.9 0 920.5 24 10.0 24 6.8 24 12.0 18.1 79.0 46.4 0.00I 999.9 000000 722324 03071 20090317 67.8 24 28.4 24 9999.9 0 921.3 24 10.0 24 7.2 24 14.0 21.0 85.1 51.8 0.00I 999.9 000000 722324 03071 20090318 71.4 24 38.0 24 9999.9 0 918.4 24 10.0 24 5.4 24 12.0 15.0 87.8* 52.5* 0.00I 999.9 000000 722324 03071 20090319 65.2 24 39.9 24 9999.9 0 920.2 24 10.0 24 7.0 24 14.0 17.1 86.9 51.1 0.00I 999.9 000000 722324 03071 20090320 64.6 24 46.9 24 9999.9 0 921.0 24 10.0 24 8.9 24 20.0 26.0 78.1 53.6 99.99 999.9 010000 722324 03071 20090321 71.0 21 43.9 21 9999.9 0 919.2 21 10.0 21 13.7 21 18.1 25.1 78.6 60.8 0.00I 999.9 000000 722324 03071 20090322 66.4 24 53.3 24 9999.9 0 917.2 24 10.0 24 12.8 24 21.0 28.0 75.2 57.4 0.00I 999.9 000000 722324 03071 20090323 72.3 24 48.8 24 9999.9 0 909.3 24 10.0 24 17.3 24 22.9 29.9 90.1 61.3 0.00I 999.9 000000 722324 03071 20090324 66.2 24 27.1 23 9999.9 0 911.5 24 10.0 24 10.4 24 19.0 22.0 86.0 49.5 0.00I 999.9 000000 722324 03071 20090325 62.3 24 19.0 24 9999.9 0 913.1 24 10.0 24 6.2 24 18.1 21.0 77.4 49.3 0.00I 999.9 000000 722324 03071 20090326 67.3 24 7.6 24 9999.9 0 907.7 24 10.0 24 12.3 24 26.0 34.0 79.9 51.8 0.00I 999.9 000000 722324 03071 20090327 52.9 24 18.7 24 9999.9 0 908.2 24 10.0 24 14.9 24 26.0 34.0 78.3 33.4 0.00I 999.9 000000 722324 03071 20090328 43.3 24 18.5 24 9999.9 0 915.3 24 10.0 24 12.1 24 20.0 27.0 66.0 31.6 0.00I 999.9 000000 722324 03071 20090329 57.8 24 16.7 24 9999.9 0 914.2 24 10.0 24 9.9 24 20.0 28.0 80.4 42.4 0.00I 999.9 000000 722324 03071 20090330 69.2 24 25.9 24 9999.9 0 906.3 22 9.9 24 16.1 24 27.0 35.0 82.9 54.5 0.00I 999.9 000000 722324 03071 20090331 57.0 24 14.8 24 9999.9 0 914.3 22 10.0 24 8.1 24 19.0 25.1 73.9 41.0 0.00I 999.9 000000 722324 03071 20090401 66.1 24 18.1 24 9999.9 0 907.7 24 10.0 24 12.5 24 26.0 36.9 81.9* 54.5* 0.00I 999.9 000000 722324 03071 20090402 61.7 24 16.9 24 9999.9 0 909.7 24 9.6 24 17.8 24 32.1 44.1 78.8* 47.7* 0.00I 999.9 000000 722324 03071 20090403 63.5 24 17.7 24 9999.9 0 909.6 24 10.0 24 10.4 24 20.0 26.0 84.2 50.0 0.00I 999.9 000000 722324 03071 20090404 72.6 24 30.7 24 9999.9 0 906.6 24 10.0 24 16.4 24 28.9 42.0 84.7 59.9 0.00I 999.9 000000 722324 03071 20090405 56.0 23 18.4 23 9999.9 0 920.0 23 10.0 23 14.0 23 20.0 28.0 82.8* 38.8* 0.00I 999.9 000000 722324 03071 20090406 47.5 24 16.6 24 9999.9 0 929.8 24 10.0 24 7.9 24 14.0 17.1 62.4 35.6 0.00I 999.9 000000 722324 03071 20090407 55.8 24 14.5 24 9999.9 0 926.6 24 10.0 24 5.2 24 19.0 22.9 78.8 37.6 0.00I 999.9 000000 722324 03071 20090408 70.8 24 20.6 24 9999.9 0 915.5 24 10.0 24 10.0 24 18.1 24.1 90.5 56.5 0.00I 999.9 000000 722324 03071 20090409 76.6 24 25.8 24 9999.9 0 908.6 24 9.8 24 17.2 24 35.0 45.1 86.0 68.9 0.00I 999.9 000000 722324 03071 20090410 60.6 24 21.6 24 9999.9 0 915.6 24 10.0 24 9.4 24 18.1 25.1 79.5 46.9 0.00I 999.9 000000 722324 03071 20090411 61.6 24 37.8 24 9999.9 0 916.3 24 10.0 24 11.8 24 28.0 35.9 77.5 51.3 99.99 999.9 010010 722324 03071 20090412 60.1 24 43.4 24 9999.9 0 911.7 24 9.8 24 10.6 24 22.9 55.9 73.6 49.5 0.27G 999.9 010010 722324 03071 20090413 57.9 24 37.9 24 9999.9 0 916.8 24 10.0 24 8.5 24 15.0 22.9 72.7 44.6 0.00G 999.9 000000 722324 03071 20090414 65.5 24 35.4 24 9999.9 0 916.5 24 10.0 24 8.5 24 19.0 26.0 81.7 52.9 0.00I 999.9 000000 722324 03071 20090415 70.9 24 42.4 24 9999.9 0 912.5 14 10.0 24 13.4 24 20.0 24.1 82.6 63.0 0.00I 999.9 000000 722324 03071 20090416 71.0 24 51.3 24 9999.9 0 912.2 24 10.0 24 11.2 24 18.1 22.0 83.8 62.8 0.00I 999.9 000000 722324 03071 20090417 62.5 24 33.6 24 9999.9 0 914.6 24 10.0 24 9.7 24 31.1 41.0 78.1 48.0 99.99 999.9 010000 722324 03071 20090418 63.6 24 19.4 24 9999.9 0 916.7 24 10.0 24 8.0 24 20.0 29.9 79.0 48.2 0.00I 999.9 000000 722324 03071 20090419 61.9 24 35.0 24 9999.9 0 922.3 24 9.9 24 9.2 24 19.0 27.0 77.7 47.3 0.00I 999.9 000000 722324 03071 20090420 63.8 24 32.3 24 9999.9 0 924.9 24 10.0 24 5.1 24 14.0 18.1 82.6 46.0 0.00I 999.9 000000 722324 03071 20090421 75.1 24 25.8 24 9999.9 0 919.9 24 10.0 24 7.8 24 13.0 19.0 92.8 60.8 0.00I 999.9 000000 722324 03071 20090422 81.1 24 22.5 24 9999.9 0 916.2 24 10.0 24 9.2 24 17.1 21.0 96.6 66.0 0.00I 999.9 000000 722324 03071 20090423 81.0 24 32.3 24 9999.9 0 913.2 24 10.0 24 9.7 24 20.0 35.0 91.2* 70.0* 0.00I 999.9 000000 722324 03071 20090424 76.9 24 42.2 24 9999.9 0 913.9 24 10.0 24 11.5 24 22.9 28.0 92.8 66.0 99.99 999.9 010000 722324 03071 20090425 78.3 24 55.3 24 9999.9 0 914.3 24 9.8 24 13.3 24 18.1 25.1 90.0 68.2 0.00I 999.9 000000 722324 03071 20090426 79.9 24 57.3 24 9999.9 0 911.2 24 9.8 24 14.8 24 22.9 32.1 92.1 72.5 0.00I 999.9 000000 722324 03071 20090427 71.7 24 57.2 24 9999.9 0 914.7 24 10.0 24 8.4 24 14.0 27.0 83.7 60.4 99.99 999.9 010010 722324 03071 20090428 66.6 24 59.5 24 9999.9 0 920.0 24 7.8 24 9.6 24 13.0 17.1 80.6 60.3 99.99 999.9 010000 722324 03071 20090429 75.2 24 61.9 24 9999.9 0 916.7 24 9.2 24 10.4 24 18.1 24.1 94.3 67.3 99.99 999.9 010000 722324 03071 20090430 78.9 24 52.0 24 9999.9 0 914.4 24 10.0 24 10.5 24 17.1 21.0 96.8 65.7 0.00I 999.9 000000 722324 03071 20090501 82.3 24 48.8 23 9999.9 0 914.9 24 9.5 24 8.1 24 15.0 22.0 99.9* 67.1* 0.00I 999.9 000000 722324 03071 20090502 69.3 24 53.8 24 9999.9 0 914.6 24 8.4 24 7.8 24 13.0 19.0 96.8 56.3 99.99 999.9 010000 722324 03071 20090503 68.1 24 53.2 24 9999.9 0 914.1 24 10.0 24 7.1 24 18.1 21.0 81.0 57.4 0.00I 999.9 000000 722324 03071 20090504 65.2 24 50.3 24 9999.9 0 916.4 24 10.0 24 7.9 24 14.0 21.0 86.4 54.1 0.00I 999.9 000000 722324 03071 20090505 76.9 24 54.5 24 9999.9 0 912.4 24 9.5 24 9.7 24 17.1 23.9 100.4* 63.0* 0.00I 999.9 000000 722324 03071 20090506 79.5 24 55.6 24 9999.9 0 911.5 24 9.5 24 8.7 24 15.0 26.0 98.8 60.3 0.00I 999.9 100000 722324 03071 20090507 80.8 24 55.0 24 9999.9 0 913.2 24 8.7 24 7.2 24 13.0 19.0 104.0 64.4 0.00I 999.9 000000 722324 03071 20090508 90.5 24 46.6 24 9999.9 0 909.1 24 10.0 24 9.5 24 15.0 20.0 103.6 76.1 0.00I 999.9 000000 722324 03071 20090509 78.1 24 53.9 24 9999.9 0 914.8 24 10.0 24 13.2 24 20.0 26.0 100.2 66.7 0.03G 999.9 000000 722324 03071 20090510 73.0 24 50.2 24 9999.9 0 918.1 24 9.6 24 8.5 24 14.0 19.0 93.4 60.8 0.00G 999.9 000000 722324 03071 20090511 69.5 24 56.7 24 9999.9 0 918.3 24 9.4 24 11.5 24 17.1 24.1 92.3 57.4 0.00I 999.9 000000 722324 03071 20090512 79.4 24 57.8 24 9999.9 0 914.9 23 9.7 24 8.9 24 22.0 31.1 100.8 62.4 0.00I 999.9 000000 722324 03071 20090513 83.9 24 48.7 24 9999.9 0 910.4 23 10.0 24 13.3 24 19.0 27.0 102.2 71.1 0.00I 999.9 000000 722324 03071 20090514 83.2 24 51.9 24 9999.9 0 914.0 24 10.0 24 8.1 24 18.1 25.1 100.4 68.4 0.00I 999.9 000000 722324 03071 20090515 81.1 24 58.9 24 9999.9 0 914.9 24 10.0 24 12.0 24 18.1 27.0 93.9 70.9 0.00I 999.9 000000 722324 03071 20090516 70.5 24 57.9 24 9999.9 0 918.9 24 9.9 24 10.9 24 22.9 29.9 87.3 61.2 0.03A 999.9 010000 722324 03071 20090517 63.5 24 43.2 24 9999.9 0 926.7 24 9.9 24 7.3 24 18.1 22.0 79.5 52.2 0.00I 999.9 000000 722324 03071 20090518 70.8 24 42.7 24 9999.9 0 924.0 24 10.0 24 6.5 24 11.1 18.1 87.1 56.5 0.00I 999.9 000000 722324 03071 20090519 73.7 24 41.0 24 9999.9 0 922.8 24 10.0 24 9.3 24 15.0 22.9 86.4 59.9 0.00I 999.9 000000 722324 03071 20090520 72.6 24 39.4 24 9999.9 0 920.2 24 10.0 24 9.9 24 15.9 22.9 85.6 57.4 0.00I 999.9 000000 722324 03071 20090521 74.8 24 46.4 24 9999.9 0 917.1 24 10.0 24 10.6 24 17.1 22.0 86.2 62.1 0.00I 999.9 000000 722324 03071 20090522 75.4 24 47.9 24 9999.9 0 917.7 24 10.0 24 8.4 24 17.1 22.9 84.4 66.6 0.00I 999.9 000000 722324 03071 20090523 68.1 24 57.1 24 9999.9 0 918.4 24 10.0 24 5.1 24 15.9 26.0 81.3 62.1 0.02G 999.9 010000 722324 03071 20090524 69.2 24 58.0 24 9999.9 0 917.2 24 9.5 24 3.5 24 12.0 14.0 81.7 61.5 0.01G 999.9 010000 722324 03071 20090525 75.6 24 56.0 24 9999.9 0 913.9 24 10.0 24 6.6 24 12.0 20.0 93.2 63.5 0.00G 999.9 010010 722324 03071 20090526 81.2 24 46.7 24 9999.9 0 910.9 24 10.0 24 7.7 24 15.0 21.0 92.5 71.2 0.00I 999.9 000000 722324 03071 20090527 71.8 24 50.3 24 9999.9 0 915.8 24 10.0 24 7.4 24 20.0 27.0 87.8 59.0 0.00I 999.9 000000 722324 03071 20090528 75.4 24 52.6 24 9999.9 0 917.1 24 10.0 24 5.1 24 13.0 29.9 89.4 61.0 0.01G 999.9 010000 722324 03071 20090529 74.6 24 49.6 24 9999.9 0 920.0 24 10.0 24 5.2 24 15.0 20.0 89.8 60.8 0.01G 999.9 010010 722324 03071 20090530 78.9 24 47.5 24 9999.9 0 919.8 23 10.0 24 5.4 24 11.1 17.1 91.4 66.6 0.00G 999.9 000000 722324 03071 20090531 79.6 24 53.7 24 9999.9 0 916.9 24 10.0 24 7.1 24 15.0 21.0 92.3 67.1 0.00I 999.9 000000 722324 03071 20090601 75.4 24 55.6 24 9999.9 0 915.3 24 10.0 24 11.6 24 21.0 28.9 91.4* 62.6* 99.99 999.9 010010 722324 03071 20090602 81.9 24 55.5 24 9999.9 0 914.0 24 10.0 24 9.3 24 18.1 22.9 98.8 69.3 0.00I 999.9 000000 722324 03071 20090603 74.6 24 55.7 24 9999.9 0 919.8 24 9.6 24 8.4 24 21.0 27.0 96.1 65.1 0.02G 999.9 010000 722324 03071 20090604 76.2 24 54.4 24 9999.9 0 921.1 24 10.0 24 5.2 24 11.1 14.0 89.4 63.7 0.00G 999.9 000000 722324 03071 20090605 81.1 24 52.0 24 9999.9 0 918.2 24 10.0 24 9.3 24 20.0 28.0 98.2 68.0 0.00I 999.9 000000 722324 03071 20090606 85.3 24 51.3 24 9999.9 0 913.8 16 9.9 24 13.8 24 31.1 39.0 101.8 74.7 99.99 999.9 010000 722324 03071 20090607 84.8 24 53.6 24 9999.9 0 911.9 24 10.0 24 11.1 24 24.1 31.1 99.3 76.6 99.99 999.9 010000 722324 03071 20090608 85.8 24 54.6 24 9999.9 0 912.5 24 10.0 24 7.7 24 15.9 20.0 100.4 72.0 0.00I 999.9 000000 722324 03071 20090609 85.2 24 57.7 24 9999.9 0 914.0 24 10.0 24 6.3 24 15.0 28.0 97.5 73.8 0.02A 999.9 010000 722324 03071 20090610 78.5 24 60.1 24 9999.9 0 914.3 24 10.0 24 6.4 24 20.0 27.0 93.7 69.4 99.99 999.9 010000 722324 03071 20090611 79.8 24 52.9 24 9999.9 0 913.4 24 10.0 24 5.7 24 15.9 21.0 99.7 62.8 0.00I 999.9 000000 722324 03071 20090612 87.7 24 44.0 24 9999.9 0 913.8 24 10.0 24 8.1 24 15.9 21.0 102.4 73.6 0.00I 999.9 000000 722324 03071 20090613 89.2 24 50.4 24 9999.9 0 914.6 24 10.0 24 6.9 24 35.0 42.0 105.6 75.4 99.99 999.9 010000 722324 03071 20090614 87.2 24 54.6 24 9999.9 0 915.1 24 10.0 24 11.5 24 25.1 36.9 101.3 79.3 99.99 999.9 010000 722324 03071 20090615 88.7 24 54.6 24 9999.9 0 913.9 24 10.0 24 10.5 24 20.0 28.9 100.9 77.2 99.99 999.9 010010 722324 03071 20090616 90.3 24 53.9 24 9999.9 0 912.8 24 10.0 24 10.1 24 15.9 22.0 103.8 79.7 0.00I 999.9 000000 722324 03071 20090617 89.1 24 57.2 24 9999.9 0 914.5 22 10.0 24 11.3 24 18.1 22.9 102.7 78.3 0.00I 999.9 000000 722324 03071 20090618 85.2 24 60.4 24 9999.9 0 913.3 10 10.0 24 11.2 24 26.0 39.0 95.0 76.5 0.00I 999.9 000000 722324 03071 20090619 74.9 24 65.2 24 9999.9 0 913.8 23 10.0 24 8.6 24 17.1 25.1 86.7 69.1 0.01G 999.9 010010 722324 03071 20090620 75.2 24 69.2 24 9999.9 0 913.2 24 9.5 24 7.9 24 15.9 21.0 86.4 68.5 0.00G 999.9 010010 722324 03071 20090621 81.1 24 68.2 24 9999.9 0 913.7 24 9.9 24 9.0 24 15.0 20.0 92.3 72.7 0.31G 999.9 000000 722324 03071 20090622 83.9 24 64.4 24 9999.9 0 914.0 24 10.0 24 9.9 24 15.9 22.9 94.6 73.4 0.00G 999.9 000000 722324 03071 20090623 85.0 24 60.3 24 9999.9 0 915.1 24 10.0 24 9.6 24 17.1 22.0 95.9 74.7 0.00I 999.9 000000 722324 03071 20090624 86.2 24 57.7 24 9999.9 0 917.1 24 10.0 24 4.4 24 13.0 15.9 97.5 73.9 0.00I 999.9 000000 722324 03071 20090625 87.9 24 56.4 24 9999.9 0 917.3 24 10.0 24 3.8 24 9.9 15.0 99.9 73.9 0.00I 999.9 000000 722324 03071 20090626 89.4 24 56.5 24 9999.9 0 915.6 24 10.0 24 5.4 24 12.0 14.0 98.8 77.9 0.00I 999.9 000000 722324 03071 20090627 90.0 24 57.4 24 9999.9 0 915.0 24 10.0 24 6.2 24 11.1 15.9 100.8* 79.9* 0.00I 999.9 000000 722324 03071 20090628 86.7 24 62.0 24 9999.9 0 917.6 24 10.0 24 9.3 24 15.9 31.1 99.5 76.3 0.36A 999.9 010000 722324 03071 20090629 80.0 24 67.7 24 9999.9 0 916.3 24 9.8 24 3.2 24 13.0 17.1 89.6 73.8 0.06A 999.9 010010 722324 03071 20090630 75.3 24 69.1 24 9999.9 0 915.6 24 8.9 24 4.6 24 14.0 20.0 81.5 70.9 0.01G 999.9 010010 722324 03071 20090701 76.4 24 67.3 24 9999.9 0 916.6 24 8.2 24 3.0 24 14.0 18.1 90.3* 69.3* 0.55G 999.9 010000 722324 03071 20090702 82.8 24 65.3 24 9999.9 0 918.6 24 10.0 24 6.3 24 19.0 22.0 95.0 74.3 0.00G 999.9 010000 722324 03071 20090703 85.9 24 61.9 24 9999.9 0 919.7 24 10.0 24 8.6 24 15.9 24.1 97.0 75.6 0.00I 999.9 000000 722324 03071 20090704 87.2 24 61.8 24 9999.9 0 917.8 24 9.8 24 9.0 24 15.9 24.1 97.3* 77.0* 99.99 999.9 010010 722324 03071 20090705 75.6 24 70.6 24 9999.9 0 918.2 24 9.8 24 3.7 24 15.0 19.0 78.8 72.5 0.13B 999.9 010010 722324 03071 20090706 75.7 24 66.8 24 9999.9 0 918.6 23 9.9 24 4.5 24 8.9 999.9 88.7 69.4 0.00I 999.9 000000 722324 03071 20090707 81.9 24 64.5 24 9999.9 0 916.3 24 10.0 24 5.0 24 12.0 17.1 96.8 72.1 0.00I 999.9 000000 722324 03071 20090708 89.0 24 60.7 24 9999.9 0 913.8 24 10.0 24 6.5 24 13.0 17.1 104.0 76.6 0.00I 999.9 000000 722324 03071 20090709 92.4 24 53.7 24 9999.9 0 915.4 24 10.0 24 9.1 24 15.0 20.0 104.0 80.1 0.00I 999.9 000000 722324 03071 20090710 91.6 24 52.8 24 9999.9 0 919.3 24 10.0 24 9.8 24 14.0 15.9 102.2 79.0 0.00I 999.9 000000 722324 03071 20090711 88.2 24 52.4 24 9999.9 0 922.0 24 10.0 24 7.5 24 14.0 19.0 100.4 75.2 0.00I 999.9 000000 722324 03071 20090712 87.5 24 58.0 24 9999.9 0 922.2 24 10.0 24 8.6 24 15.0 19.0 98.1 77.7 0.00I 999.9 000000 722324 03071 20090713 88.4 24 56.0 24 9999.9 0 919.5 24 10.0 24 8.5 24 14.0 22.0 100.0 75.9 0.00I 999.9 000000 722324 03071 20090714 89.6 24 54.0 24 9999.9 0 916.7 23 10.0 24 10.2 24 15.9 22.0 101.7 77.2 0.00I 999.9 000000 722324 03071 20090715 88.8 24 56.1 24 9999.9 0 917.9 24 10.0 24 10.1 24 18.1 22.9 100.9 77.2 0.00I 999.9 000000 722324 03071 20090716 89.7 24 54.2 24 9999.9 0 919.6 24 10.0 24 8.2 24 15.9 20.0 102.2 78.1 0.00I 999.9 000000 722324 03071 20090717 89.2 24 53.4 24 9999.9 0 920.0 24 10.0 24 5.8 24 17.1 24.1 100.8 77.9 0.00I 999.9 000000 722324 03071 20090718 83.0 24 59.8 24 9999.9 0 922.9 24 9.9 24 5.7 24 17.1 33.0 99.7 70.2 0.02G 999.9 010010 722324 03071 20090719 86.4 24 58.3 24 9999.9 0 921.7 24 10.0 24 6.3 24 12.0 21.0 98.6 76.3 0.00G 999.9 010000 722324 03071 20090720 89.6 24 55.3 24 9999.9 0 916.6 24 10.0 24 6.4 24 12.0 17.1 103.3 78.8 0.00I 999.9 000000 722324 03071 20090721 88.0 24 58.5 24 9999.9 0 914.6 24 10.0 24 8.6 24 17.1 24.1 102.6 76.6 0.00I 999.9 000000 722324 03071 20090722 78.3 24 64.0 24 9999.9 0 918.9 24 9.4 24 10.9 24 15.9 21.0 96.6 68.0 0.37B 999.9 010010 722324 03071 20090723 70.3 24 64.8 24 9999.9 0 921.5 24 8.4 24 5.9 24 12.0 15.0 78.8 66.0 2.43G 999.9 010000 722324 03071 20090724 77.0 24 65.4 24 9999.9 0 919.5 24 10.0 24 3.2 24 8.9 14.0 91.6 68.7 0.10G 999.9 000000 722324 03071 20090725 84.2 24 60.9 24 9999.9 0 918.0 24 10.0 24 5.5 24 13.0 17.1 96.4 72.5 0.00G 999.9 000000 722324 03071 20090726 85.4 24 57.2 24 9999.9 0 918.9 24 10.0 24 6.4 24 12.0 17.1 95.5 76.5 0.00I 999.9 000000 722324 03071 20090727 85.5 24 60.6 24 9999.9 0 917.4 24 10.0 24 5.4 24 8.9 14.0 96.3 77.5 99.99 999.9 010010 722324 03071 20090728 82.8 24 66.4 24 9999.9 0 915.5 24 9.9 24 6.7 24 15.9 24.1 95.9 72.1 0.00I 999.9 000000 722324 03071 20090729 82.1 24 66.2 24 9999.9 0 914.6 24 9.5 24 5.3 24 26.0 33.0 93.4 70.0 0.28G 999.9 010010 722324 03071 20090730 79.5 24 66.4 24 9999.9 0 915.8 24 9.7 24 6.3 24 21.0 27.0 93.2 69.3 0.00G 999.9 010010 722324 03071 20090731 78.4 24 66.1 24 9999.9 0 920.1 24 9.4 24 6.0 24 15.9 17.1 86.9* 66.2* 99.99 999.9 010010 722324 03071 20090801 80.2 24 68.3 24 9999.9 0 919.2 24 10.0 24 6.5 24 13.0 17.1 92.1* 71.2* 0.00I 999.9 000000 722324 03071 20090802 81.3 24 64.8 24 9999.9 0 920.7 24 10.0 24 3.9 24 11.1 17.1 92.3 73.0 0.00I 999.9 000000 722324 03071 20090803 83.2 24 62.8 24 9999.9 0 919.4 24 10.0 24 5.8 24 11.1 15.9 93.2 75.0 0.00I 999.9 000000 722324 03071 20090804 84.8 24 61.9 24 9999.9 0 918.9 24 10.0 24 5.7 24 13.0 17.1 96.6 74.8 0.00I 999.9 000000 722324 03071 20090805 85.7 24 61.2 24 9999.9 0 920.1 24 10.0 24 5.0 24 11.1 14.0 96.8 73.6 0.00I 999.9 000000 722324 03071 20090806 85.4 24 57.9 24 9999.9 0 919.9 24 10.0 24 6.9 24 15.9 22.0 96.8 72.5 0.00I 999.9 000000 722324 03071 20090807 86.1 24 54.5 24 9999.9 0 918.2 24 10.0 24 10.2 24 17.1 22.0 97.7 74.7 0.00I 999.9 000000 722324 03071 20090808 85.9 24 55.9 24 9999.9 0 917.1 24 10.0 24 11.1 24 17.1 24.1 97.7 76.3 0.00I 999.9 000000 722324 03071 20090809 85.8 24 58.6 24 9999.9 0 917.6 24 10.0 24 11.0 24 17.1 21.0 96.8 73.4 0.00I 999.9 000000 722324 03071 20090810 86.1 24 60.2 24 9999.9 0 919.6 24 10.0 24 8.9 24 15.0 18.1 96.6 75.6 0.00I 999.9 000000 722324 03071 20090811 86.5 24 59.9 24 9999.9 0 920.7 24 10.0 24 6.6 24 15.9 24.1 97.2 75.2 0.00I 999.9 000000 722324 03071 20090812 81.1 24 64.1 24 9999.9 0 922.0 24 10.0 24 5.8 24 19.0 21.0 95.0 70.2 0.00I 999.9 000000 722324 03071 20090813 82.1 24 61.8 24 9999.9 0 920.1 24 10.0 24 6.2 24 14.0 17.1 95.7 69.3 0.00I 999.9 000000 722324 03071 20090814 84.4 24 61.9 24 9999.9 0 917.8 24 10.0 24 7.8 24 15.0 19.0 96.4 73.4 99.99 999.9 010010 722324 03071 20090815 83.6 24 62.8 24 9999.9 0 915.6 24 10.0 24 6.8 24 14.0 28.0 100.8 74.7 0.01G 999.9 010010 722324 03071 20090816 88.5 24 58.5 24 9999.9 0 915.1 24 10.0 24 8.4 24 15.0 22.0 103.8 77.0 0.00G 999.9 000000 722324 03071 20090817 88.4 24 58.2 24 9999.9 0 916.7 24 10.0 24 8.9 24 15.0 21.0 100.6 75.2 0.00I 999.9 000000 722324 03071 20090818 86.1 24 58.4 24 9999.9 0 917.7 24 10.0 24 10.1 24 17.1 22.9 96.3 75.2 0.00I 999.9 000000 722324 03071 20090819 86.2 24 58.5 24 9999.9 0 915.1 24 10.0 24 9.2 24 17.1 22.0 100.0 74.3 0.00I 999.9 000000 722324 03071 20090820 89.1 24 56.5 24 9999.9 0 913.6 24 10.0 24 9.0 24 14.0 20.0 100.8 77.9 0.00I 999.9 000000 722324 03071 20090821 84.5 24 57.7 24 9999.9 0 919.2 24 10.0 24 7.8 24 15.9 25.1 98.4 72.5 99.99 999.9 010000 722324 03071 20090822 84.6 24 62.3 24 9999.9 0 920.1 24 10.0 24 4.6 24 19.0 26.0 99.1 74.5 0.00I 999.9 000000 722324 03071 20090823 85.2 24 58.5 24 9999.9 0 919.0 24 10.0 24 6.0 24 15.9 25.1 99.1 74.3 0.00I 999.9 000000 722324 03071 20090824 87.9 24 54.1 24 9999.9 0 918.1 24 10.0 24 9.5 24 15.9 22.9 99.1 74.7 0.00I 999.9 000000 722324 03071 20090825 86.9 24 49.9 24 9999.9 0 919.0 24 10.0 24 9.0 24 15.0 22.9 98.2 73.9 0.00I 999.9 000000 722324 03071 20090826 84.8 24 51.2 24 9999.9 0 919.4 24 10.0 24 4.0 24 12.0 18.1 98.6 68.9 0.00I 999.9 000000 722324 03071 20090827 84.5 24 53.6 24 9999.9 0 919.5 24 10.0 24 5.2 24 13.0 18.1 96.8 75.7 0.00I 999.9 000000 722324 03071 20090828 78.6 24 60.5 24 9999.9 0 920.9 24 9.7 24 4.5 24 11.1 15.9 90.1 68.9 0.19G 999.9 010010 722324 03071 20090829 78.2 24 56.8 24 9999.9 0 920.2 24 10.0 24 2.7 24 11.1 19.0 94.1 63.9 0.00G 999.9 000000 722324 03071 20090830 79.6 24 51.8 24 9999.9 0 920.4 24 10.0 24 7.8 24 14.0 15.9 92.5 67.1 99.99 999.9 010000 722324 03071 20090831 78.4 24 53.3 24 9999.9 0 922.0 24 10.0 24 8.4 24 13.0 18.1 91.0 66.7 0.00I 999.9 000000 722324 03071 20090901 80.8 24 52.1 24 9999.9 0 921.7 24 10.0 24 8.7 24 15.0 21.0 92.8* 68.9* 0.00I 999.9 000000 722324 03071 20090902 81.1 24 56.2 24 9999.9 0 921.3 24 10.0 24 7.9 24 14.0 21.0 92.3 70.2 0.00I 999.9 000000 722324 03071 20090903 80.5 24 58.6 24 9999.9 0 919.1 24 10.0 24 6.0 24 11.1 15.0 91.8* 66.2* 0.00I 999.9 000000 722324 03071 20090904 80.1 24 58.4 24 9999.9 0 917.7 24 10.0 24 6.7 24 14.0 17.1 90.5 70.0 0.00I 999.9 000000 722324 03071 20090905 72.8 24 62.2 24 9999.9 0 920.3 24 9.7 24 5.9 24 12.0 18.1 83.3 68.0 0.10A 999.9 010000 722324 03071 20090906 76.3 24 61.6 24 9999.9 0 921.4 24 10.0 24 4.1 24 13.0 14.0 88.9 68.7 99.99 999.9 010000 722324 03071 20090907 79.1 24 60.0 24 9999.9 0 919.4 24 10.0 24 7.9 24 15.0 21.0 92.5 67.6 0.00I 999.9 000000 722324 03071 20090908 80.3 24 60.7 24 9999.9 0 916.4 24 10.0 24 7.0 24 17.1 25.1 89.6 72.5 0.03A 999.9 010010 722324 03071 20090909 74.3 24 65.2 24 9999.9 0 917.4 24 9.9 24 6.4 24 17.1 25.1 89.6 67.6 0.03A 999.9 010010 722324 03071 20090910 73.4 24 65.1 24 9999.9 0 920.2 24 9.5 24 4.6 24 11.1 17.1 86.7 66.4 0.00I 999.9 000000 722324 03071 20090911 72.4 24 63.5 24 9999.9 0 920.4 24 10.0 24 3.9 24 11.1 14.0 81.9 65.3 0.01G 999.9 010000 722324 03071 20090912 69.7 24 63.1 24 9999.9 0 918.3 24 9.3 24 5.4 24 9.9 15.0 76.3 64.4 0.00G 999.9 010000 722324 03071 20090913 68.0 24 60.0 24 9999.9 0 917.8 24 9.6 24 9.3 24 17.1 22.0 76.6 63.5 99.99 999.9 010000 722324 03071 20090914 70.5 24 61.0 24 9999.9 0 918.7 24 9.9 24 5.3 24 11.1 15.0 84.2 64.4 99.99 999.9 010000 722324 03071 20090915 73.3 24 58.8 24 9999.9 0 918.1 24 9.4 24 4.8 24 9.9 999.9 88.2 61.7 0.00I 999.9 000000 722324 03071 20090916 72.5 24 60.6 24 9999.9 0 920.1 24 9.7 24 6.5 24 12.0 18.1 86.5 65.1 0.01A 999.9 010010 722324 03071 20090917 70.9 24 55.6 24 9999.9 0 921.4 24 9.0 24 7.7 24 14.0 21.0 83.7 60.8 0.00I 999.9 000000 722324 03071 20090918 70.5 24 54.6 24 9999.9 0 921.7 24 8.9 24 5.6 24 11.1 15.0 81.9 59.0 0.00I 999.9 000000 722324 03071 20090919 71.2 24 54.9 24 9999.9 0 922.6 24 9.8 24 3.5 24 8.9 999.9 83.1 59.9 0.00I 999.9 000000 722324 03071 20090920 75.9 24 53.6 24 9999.9 0 918.6 24 10.0 24 7.0 24 12.0 17.1 92.3 64.4 0.00I 999.9 000000 722324 03071 20090921 80.1 24 53.0 24 9999.9 0 915.0 24 10.0 24 8.8 24 15.9 21.0 94.5 67.8 0.00I 999.9 000000 722324 03071 20090922 65.4 24 46.6 24 9999.9 0 921.7 24 9.8 24 10.7 24 19.0 27.0 92.3 53.1 0.20G 999.9 010010 722324 03071 20090923 60.7 24 41.7 24 9999.9 0 924.7 24 10.0 24 3.7 24 9.9 15.0 75.0 49.6 0.00G 999.9 000000 722324 03071 20090924 62.8 24 46.6 24 9999.9 0 924.2 24 9.8 24 5.1 24 9.9 14.0 73.8 54.9 0.17G 999.9 010000 722324 03071 20090925 64.7 24 51.1 24 9999.9 0 922.7 24 10.0 24 5.8 24 12.0 15.9 83.5 50.9 0.01G 999.9 000000 722324 03071 20090926 74.8 24 56.5 24 9999.9 0 920.4 24 9.8 24 5.1 24 9.9 999.9 92.5 61.9 0.00G 999.9 000000 722324 03071 20090927 80.6 24 49.7 24 9999.9 0 916.8 24 10.0 24 6.9 24 11.1 19.0 96.1 67.6 0.00I 999.9 000000 722324 03071 20090928 77.2 24 49.5 24 9999.9 0 917.7 24 9.9 24 11.2 24 22.0 28.0 93.7 68.2 0.00I 999.9 000000 722324 03071 20090929 70.3 24 43.0 24 9999.9 0 922.3 24 10.0 24 6.7 24 11.1 17.1 87.6 57.7 0.00I 999.9 000000 722324 03071 20090930 78.7 24 61.1 24 9999.9 0 916.8 24 9.8 24 10.9 24 17.1 24.1 95.5 69.3 0.00I 999.9 000000 722324 03071 20091001 81.7 24 55.9 24 9999.9 0 913.7 24 10.0 24 11.7 24 21.0 27.0 91.4* 71.8* 99.99 999.9 010000 722324 03071 20091002 67.8 24 30.4 24 9999.9 0 917.4 24 10.0 24 5.6 24 12.0 15.9 88.9 50.0 0.00I 999.9 000000 722324 03071 20091003 69.2 24 48.3 24 9999.9 0 912.8 24 10.0 24 7.0 24 15.0 20.0 81.0 58.3 99.99 999.9 010000 722324 03071 20091004 68.4 24 60.4 24 9999.9 0 912.2 24 9.0 24 2.4 24 8.0 999.9 82.4 62.8 0.12G 999.9 010000 722324 03071 20091005 76.5 24 63.6 24 9999.9 0 912.6 24 7.4 24 7.3 24 17.1 21.0 95.4 65.5 0.01G 999.9 100000 722324 03071 20091006 79.2 24 62.3 24 9999.9 0 913.1 24 8.6 24 8.7 24 19.0 26.0 92.7 71.6 0.00G 999.9 000000 722324 03071 20091007 61.7 24 50.7 24 9999.9 0 918.1 24 9.1 24 8.6 24 15.0 19.0 72.7 54.1 0.03G 999.9 010000 722324 03071 20091008 77.5 24 64.0 24 9999.9 0 911.9 24 10.0 24 8.7 24 17.1 22.9 91.0 68.0 0.00G 999.9 000000 722324 03071 20091009 59.8 24 48.5 24 9999.9 0 917.3 24 10.0 24 6.8 24 20.0 26.0 79.2 49.3 0.00I 999.9 000000 722324 03071 20091010 56.1 24 46.2 24 9999.9 0 920.0 24 9.1 24 7.7 24 17.1 22.0 70.5 47.8 0.00I 999.9 000000 722324 03071 20091011 49.9 24 47.0 24 9999.9 0 920.1 24 4.6 24 10.9 24 17.1 22.0 61.2 46.2 99.99 999.9 010010 722324 03071 20091012 54.2 24 52.4 24 9999.9 0 917.8 24 3.7 24 2.7 24 6.0 999.9 66.4 48.4 99.99 999.9 110000 722324 03071 20091013 69.5 24 62.3 24 9999.9 0 917.1 24 8.4 24 6.2 24 12.0 17.1 86.2 63.0 0.07G 999.9 010000 722324 03071 20091014 77.4 24 61.4 24 9999.9 0 916.3 24 9.1 24 8.0 24 15.9 24.1 93.7 65.5 0.00G 999.9 000000 722324 03071 20091015 73.6 24 49.8 24 9999.9 0 915.1 24 10.0 24 6.2 24 11.1 14.0 91.2 58.1 0.00I 999.9 000000 722324 03071 20091016 63.7 24 47.2 24 9999.9 0 921.7 24 10.0 24 8.2 24 15.9 20.0 78.8 50.5 0.00I 999.9 000000 722324 03071 20091017 62.4 24 43.2 24 9999.9 0 928.2 24 10.0 24 6.2 24 11.1 15.0 75.9 48.2 0.00I 999.9 000000 722324 03071 20091018 65.1 24 42.7 24 9999.9 0 926.3 24 10.0 24 9.1 24 15.9 22.0 80.1 51.4 0.00I 999.9 000000 722324 03071 20091019 70.3 24 48.0 24 9999.9 0 919.0 24 10.0 24 12.2 24 15.9 24.1 86.2 59.7 0.00I 999.9 000000 722324 03071 20091020 71.3 24 54.7 24 9999.9 0 914.2 24 10.0 24 13.3 24 21.0 28.0 80.6 61.7 0.00I 999.9 000000 722324 03071 20091021 66.6 24 56.1 24 9999.9 0 910.7 24 9.8 24 11.0 24 21.0 28.9 76.1 59.0 0.28G 999.9 010000 722324 03071 20091022 55.1 24 41.5 24 9999.9 0 915.5 24 10.0 24 9.2 24 20.0 25.1 68.0 44.1 0.05G 999.9 000000 722324 03071 20091023 54.7 24 37.9 24 9999.9 0 918.2 24 9.6 24 1.9 24 6.0 999.9 69.4 43.7 0.00G 999.9 000000 722324 03071 20091024 62.5 24 38.0 24 9999.9 0 916.0 24 10.0 24 6.6 24 17.1 24.1 81.7 49.1 0.00I 999.9 000000 722324 03071 20091025 67.2 24 45.2 24 9999.9 0 911.4 24 10.0 24 6.6 24 15.0 18.1 81.7 54.7 0.00I 999.9 000000 722324 03071 20091026 54.5 24 40.7 24 9999.9 0 921.5 24 10.0 24 11.8 24 19.0 26.0 73.2 46.9 0.05A 999.9 010000 722324 03071 20091027 52.3 24 34.2 24 9999.9 0 916.1 24 10.0 24 7.0 24 14.0 22.0 76.3 38.8 0.00I 999.9 000000 722324 03071 20091028 65.7 24 43.8 24 9999.9 0 902.7 24 10.0 24 13.9 24 22.0 29.9 83.5* 53.6* 0.00I 999.9 000000 722324 03071 20091029 52.4 24 39.5 24 9999.9 0 908.2 24 9.9 24 10.5 24 18.1 26.0 79.2 40.5 0.03A 999.9 010000 722324 03071 20091030 48.6 24 25.9 24 9999.9 0 914.6 24 10.0 24 7.9 24 20.0 25.1 60.6 36.7 0.00I 999.9 000000 722324 03071 20091031 52.5 24 24.3 24 9999.9 0 921.9 24 10.0 24 4.9 24 11.1 14.0 71.2 38.7 0.00I 999.9 000000 722324 03071 20091101 58.7 24 28.7 24 9999.9 0 921.9 23 10.0 24 4.5 24 13.0 19.0 77.0* 41.9* 0.00I 999.9 000000 722324 03071 20091102 58.7 24 33.5 24 9999.9 0 922.2 24 10.0 24 2.8 24 8.0 999.9 77.2 41.0 0.00I 999.9 000000 722324 03071 20091103 59.5 24 41.8 24 9999.9 0 926.5 24 10.0 24 3.0 24 8.9 999.9 73.6 43.7 0.00I 999.9 000000 722324 03071 20091104 62.8 24 43.0 24 9999.9 0 925.4 24 10.0 24 5.2 24 11.1 14.0 79.2 50.0 0.00I 999.9 000000 722324 03071 20091105 60.5 24 43.1 24 9999.9 0 928.0 23 10.0 24 4.8 24 13.0 17.1 76.6 43.2 0.00I 999.9 000000 722324 03071 20091106 65.2 24 44.1 24 9999.9 0 923.1 24 10.0 24 8.7 24 13.0 18.1 83.1 53.2 0.00I 999.9 000000 722324 03071 20091107 65.1 24 44.6 24 9999.9 0 918.7 24 10.0 24 9.8 24 14.0 19.0 77.9 52.0 0.00I 999.9 000000 722324 03071 20091108 64.7 24 53.4 24 9999.9 0 917.1 24 9.8 24 8.3 24 15.0 20.0 76.5 56.3 0.00I 999.9 000000 722324 03071 20091109 61.7 24 54.9 24 9999.9 0 921.5 24 9.8 24 5.8 24 11.1 15.0 72.3 56.8 0.00I 999.9 000000 722324 03071 20091110 58.2 24 50.5 24 9999.9 0 927.1 24 8.4 24 0.9 24 6.0 999.9 73.4 48.7 0.00I 999.9 000000 722324 03071 20091111 61.1 24 46.6 24 9999.9 0 926.6 24 9.8 24 2.7 24 12.0 17.1 76.8 47.3 0.00I 999.9 000000 722324 03071 20091112 63.0 24 44.0 24 9999.9 0 920.0 24 10.0 24 7.7 24 15.0 19.0 77.4 51.4 0.00I 999.9 000000 722324 03071 20091113 65.5 24 46.9 24 9999.9 0 912.0 24 10.0 24 8.9 24 13.0 18.1 77.9 56.8 0.00I 999.9 000000 722324 03071 20091114 66.7 24 45.8 24 9999.9 0 911.8 24 10.0 24 6.6 24 12.0 15.9 78.8 57.7 0.00I 999.9 000000 722324 03071 20091115 64.1 24 40.4 24 9999.9 0 914.4 24 10.0 24 5.0 24 18.1 25.1 73.8 53.2 99.99 999.9 010000 722324 03071 20091116 47.6 24 24.6 24 9999.9 0 925.3 24 10.0 24 10.7 24 22.9 31.1 69.6 33.8 0.00I 999.9 000000 722324 03071 20091117 46.2 24 17.7 24 9999.9 0 925.2 24 10.0 24 3.2 24 6.0 999.9 65.5 31.1 0.00I 999.9 000000 722324 03071 20091118 50.7 24 20.8 24 9999.9 0 919.1 24 10.0 24 3.3 24 13.0 17.1 73.4 33.1 0.00I 999.9 000000 722324 03071 20091119 59.8 24 26.9 24 9999.9 0 914.7 24 10.0 24 5.7 24 9.9 14.0 77.2 44.1 0.00I 999.9 000000 722324 03071 20091120 54.5 24 27.9 24 9999.9 0 920.8 24 10.0 24 8.3 24 15.0 19.0 73.9 39.7 0.00I 999.9 000000 722324 03071 20091121 49.9 24 24.8 24 9999.9 0 919.1 24 10.0 24 2.9 24 11.1 999.9 70.3 33.8 0.00I 999.9 000000 722324 03071 20091122 57.4 24 23.1 24 9999.9 0 915.1 24 10.0 24 6.8 24 12.0 20.0 76.3 39.7 0.00I 999.9 000000 722324 03071 20091123 56.6 24 23.7 24 9999.9 0 915.5 24 10.0 24 4.8 24 15.0 21.0 79.7 37.9 0.00I 999.9 000000 722324 03071 20091124 50.5 24 20.2 24 9999.9 0 923.5 24 10.0 24 7.6 24 18.1 20.0 73.4 32.9 0.00I 999.9 000000 722324 03071 20091125 45.6 24 15.4 24 9999.9 0 925.1 24 10.0 24 1.9 24 6.0 999.9 64.6 29.3 0.00I 999.9 000000 722324 03071 20091126 47.2 24 16.4 24 9999.9 0 926.7 24 10.0 24 2.7 24 8.0 999.9 64.9 32.0 0.00I 999.9 000000 722324 03071 20091127 52.9 24 26.5 24 9999.9 0 923.0 24 10.0 24 4.2 24 14.0 999.9 71.8 38.8 0.00I 999.9 000000 722324 03071 20091128 57.9 24 37.8 24 9999.9 0 914.8 24 10.0 24 8.6 24 14.0 19.0 76.5 46.0 0.00I 999.9 000000 722324 03071 20091129 54.1 24 42.7 24 9999.9 0 914.1 24 9.9 24 8.0 24 14.0 21.0 70.0 44.4 0.02G 999.9 010000 722324 03071 20091130 42.8 24 29.7 24 9999.9 0 923.4 24 10.0 24 7.6 24 13.0 18.1 53.4 34.9 0.00G 999.9 000000 722324 03071 20091201 41.0 24 32.7 24 9999.9 0 916.4 24 8.5 24 3.0 24 6.0 999.9 49.8 36.3 0.17G 999.9 011000 722324 03071 20091202 38.9 24 34.1 24 9999.9 0 912.2 24 9.5 24 7.9 24 15.9 22.9 41.9 36.1 0.13G 999.9 010000 722324 03071 20091203 34.8 24 24.3 24 9999.9 0 921.2 24 10.0 24 6.9 24 12.0 15.0 39.7 32.0 0.00G 999.9 000000 722324 03071 20091204 30.0 24 23.4 24 9999.9 0 926.0 24 7.7 24 6.6 24 14.0 17.1 33.8 24.3 99.99 999.9 001000 722324 03071 20091205 33.5 24 24.3 24 9999.9 0 918.9 24 10.0 24 7.3 24 13.0 15.9 52.5 25.3 0.00I 999.9 000000 722324 03071 20091206 45.3 24 32.5 24 9999.9 0 912.1 24 9.9 24 10.0 24 18.1 26.0 66.2 34.3 0.00I 999.9 000000 722324 03071 20091207 35.9 24 28.7 24 9999.9 0 918.0 24 5.9 24 7.5 24 13.0 17.1 60.3 27.5 0.00I 999.9 100000 722324 03071 20091208 38.5 24 32.3 24 9999.9 0 909.9 24 3.4 24 8.9 24 35.9 52.1 9999.9 29.5* 0.01A 999.9 101000 722324 03071 20091209 38.9 24 20.9 24 9999.9 0 914.2 24 9.8 24 11.4 24 29.9 39.0 62.6 22.1 0.00I 999.9 000000 722324 03071 20091210 34.4 24 20.8 24 9999.9 0 917.7 24 10.0 24 4.8 24 8.9 999.9 54.9 23.0 0.00I 999.9 000000 722324 03071 20091211 40.4 24 28.8 24 9999.9 0 919.6 24 10.0 24 5.7 24 12.0 15.9 59.2 28.2 0.00I 999.9 000000 722324 03071 20091212 51.4 24 41.7 24 9999.9 0 918.0 24 7.9 24 8.5 24 15.9 22.0 70.0 44.6 0.00I 999.9 000000 722324 03071 20091213 56.3 24 32.3 24 9999.9 0 917.5 24 10.0 24 7.6 24 15.0 21.0 74.3 40.6 0.00I 999.9 000000 722324 03071 20091214 56.8 24 33.4 24 9999.9 0 916.2 24 9.9 24 5.2 24 12.0 15.9 68.2 43.3 0.00I 999.9 000000 722324 03071 20091215 43.8 24 27.1 24 9999.9 0 924.2 24 10.0 24 7.1 24 12.0 14.0 61.0 32.0 0.00I 999.9 000000 722324 03071 20091216 40.8 24 22.7 24 9999.9 0 929.6 24 10.0 24 3.3 24 8.9 999.9 61.7 28.8 0.00I 999.9 000000 722324 03071 20091217 50.1 24 28.2 24 9999.9 0 922.1 24 10.0 24 4.5 24 12.0 17.1 68.7 35.6 0.00I 999.9 000000 722324 03071 20091218 48.4 24 27.4 24 9999.9 0 919.4 24 10.0 24 5.7 24 11.1 15.0 64.4 33.8 0.00I 999.9 000000 722324 03071 20091219 47.8 24 29.4 24 9999.9 0 923.1 24 10.0 24 2.2 24 8.0 999.9 56.8 40.5 0.00I 999.9 000000 722324 03071 20091220 49.2 24 26.9 24 9999.9 0 923.4 24 10.0 24 6.8 24 15.9 19.0 65.7 39.4 0.00I 999.9 000000 722324 03071 20091221 51.4 24 33.1 24 9999.9 0 920.0 24 10.0 24 5.9 24 17.1 26.0 68.0 38.8 0.00I 999.9 000000 722324 03071 20091222 55.2 24 34.6 24 9999.9 0 912.6 24 10.0 24 7.0 24 14.0 17.1 64.6 48.4 0.00I 999.9 000000 722324 03071 20091223 52.4 24 39.3 24 9999.9 0 907.2 24 7.6 24 6.8 24 22.0 32.1 70.2 41.5 99.99 999.9 110000 722324 03071 20091224 37.7 24 30.5 24 9999.9 0 912.0 24 8.4 24 16.4 24 25.1 32.1 44.6 32.0 0.12G 999.9 011000 722324 03071 20091225 34.6 24 19.1 24 9999.9 0 916.8 24 10.0 24 6.0 24 12.0 19.0 52.9 24.6 0.00G 999.9 000000 722324 03071 20091226 34.5 24 22.4 24 9999.9 0 916.7 24 10.0 24 2.8 24 8.0 999.9 48.2 25.2 0.00I 999.9 000000 722324 03071 20091227 35.5 24 22.6 24 9999.9 0 922.8 24 10.0 24 1.2 24 7.0 999.9 51.4 23.5 0.00I 999.9 000000 722324 03071 20091228 36.3 24 24.4 24 9999.9 0 928.6 24 10.0 24 2.1 24 6.0 999.9 50.5 25.7 0.00I 999.9 000000 722324 03071 20091229 36.9 24 30.9 24 9999.9 0 925.1 24 6.9 24 6.1 24 8.9 999.9 45.5* 33.8* 0.01A 999.9 011000 722324 03071 20091230 43.6 24 36.1 24 9999.9 0 919.6 23 5.7 24 10.0 24 20.0 26.0 60.8 35.6 0.07G 999.9 100000 722324 03071 20091231 47.0 24 32.9 24 9999.9 0 920.0 21 10.0 24 8.7 24 22.0 29.9 56.8 38.3 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/1950/0000755000175000017500000000000014302004506015076 5ustar nileshnileshfluids-1.0.22/tests/gsod/1950/724050-13743.op0000644000175000017500000014327214302004506016667 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19500101 39.1 24 25.0 24 1032.9 24 1032.3 24 8.6 24 1.8 24 7.0 999.9 47.3* 34.3* 0.00I 999.9 000000 724050 13743 19500102 46.9 24 37.2 24 1027.1 24 1026.5 24 5.3 24 0.6 24 5.1 999.9 56.3* 43.3* 99.99 999.9 010000 724050 13743 19500103 54.7 24 49.4 24 1018.2 24 1017.6 24 7.0 24 9.4 24 18.1 999.9 59.4* 47.3* 99.99 999.9 110000 724050 13743 19500104 62.9 24 54.9 24 1015.4 24 1014.7 24 13.3 24 13.0 24 15.9 999.9 69.3* 58.3* 0.00I 999.9 000000 724050 13743 19500105 63.5 24 55.9 24 1021.4 24 1020.7 24 10.5 24 6.5 24 13.0 999.9 68.4* 58.3* 0.00I 999.9 000000 724050 13743 19500106 63.1 24 55.6 24 1019.0 24 1018.4 24 9.6 24 9.6 24 18.1 999.9 71.2* 56.3* 0.00I 999.9 000000 724050 13743 19500107 51.3 24 37.1 24 1017.2 24 1016.6 24 13.8 24 20.2 24 34.0 999.9 68.4* 39.4* 99.99 999.9 010000 724050 13743 19500108 35.0 24 15.9 24 1033.4 24 1032.7 24 14.4 24 12.5 24 26.0 999.9 38.3* 31.3* 0.00I 999.9 000000 724050 13743 19500109 39.1 24 22.8 24 1028.0 24 1027.3 24 12.8 24 10.1 24 16.9 999.9 54.3* 30.4* 0.00I 999.9 000000 724050 13743 19500110 58.0 24 45.3 24 1018.9 24 1018.2 24 11.4 24 10.5 24 16.9 999.9 68.4* 52.3* 99.99 999.9 010000 724050 13743 19500111 52.3 24 25.0 24 1024.7 24 1024.0 24 14.1 24 15.1 24 25.1 999.9 62.4* 45.3* 99.99 999.9 010000 724050 13743 19500112 35.2 24 22.0 24 1036.2 24 1035.5 24 7.8 24 5.5 24 9.9 999.9 44.4* 30.4* 99.99 999.9 110000 724050 13743 19500113 39.5 24 38.0 24 1026.6 24 1025.9 24 2.6 24 6.9 24 16.9 999.9 49.3* 35.4* 99.99 999.9 110000 724050 13743 19500114 56.8 24 45.9 24 1017.5 24 1016.8 24 10.7 24 12.2 24 20.0 999.9 62.4* 49.3* 0.00I 999.9 000000 724050 13743 19500115 44.3 24 21.5 24 1028.4 24 1027.8 24 12.7 24 7.3 24 20.0 999.9 52.3* 35.4* 0.00I 999.9 000000 724050 13743 19500116 47.0 24 32.4 24 1022.9 24 1022.3 24 12.7 24 12.4 24 26.0 999.9 50.4* 42.4* 99.99 999.9 010000 724050 13743 19500117 37.7 24 15.9 24 1033.9 24 1033.2 24 12.7 24 4.4 24 14.0 999.9 42.4* 30.4* 0.00I 999.9 000000 724050 13743 19500118 44.9 24 36.5 24 1015.4 24 1014.7 24 10.5 24 9.5 24 14.0 999.9 63.3* 35.4* 99.99 999.9 010000 724050 13743 19500119 37.4 24 26.8 24 1021.9 24 1021.2 24 9.1 24 9.8 24 20.0 999.9 55.4* 29.3* 99.99 999.9 111000 724050 13743 19500120 28.6 24 18.0 24 1033.9 24 1033.3 24 9.5 24 10.8 24 20.0 999.9 35.4* 23.4* 0.00I 999.9 000000 724050 13743 19500121 34.2 24 20.6 24 1032.1 24 1031.4 24 10.1 24 5.2 24 14.0 999.9 43.3* 29.3* 0.00I 999.9 000000 724050 13743 19500122 42.8 24 30.6 24 1020.4 24 1019.7 24 8.4 24 1.6 24 6.0 999.9 51.3* 36.3* 0.00I 999.9 000000 724050 13743 19500123 50.9 24 41.4 24 1015.9 24 1015.2 24 5.1 24 0.8 24 6.0 999.9 65.3* 43.3* 0.00I 999.9 000000 724050 13743 19500124 56.7 24 48.8 24 1017.5 24 1016.8 24 4.9 24 3.9 24 15.0 999.9 72.3* 47.3* 99.99 999.9 110000 724050 13743 19500125 64.6 24 55.6 24 1023.8 24 1023.2 24 11.0 24 8.4 24 15.0 999.9 74.3* 58.3* 0.00I 999.9 000000 724050 13743 19500126 67.3 24 56.2 24 1023.2 24 1022.5 24 13.0 24 11.4 24 20.0 999.9 78.3* 60.3* 0.00I 999.9 000000 724050 13743 19500127 50.1 24 39.1 24 1028.0 24 1027.4 24 10.1 24 11.3 24 22.0 999.9 67.3* 41.4* 99.99 999.9 011000 724050 13743 19500128 34.7 24 24.6 24 1032.9 24 1032.3 24 8.8 24 4.9 24 8.9 999.9 44.4* 27.3* 99.99 999.9 010000 724050 13743 19500129 44.1 24 40.4 24 1019.5 24 1018.8 24 6.0 24 8.1 24 15.9 999.9 58.3* 37.4* 99.99 999.9 110000 724050 13743 19500130 50.0 24 46.7 24 1020.0 24 1019.3 24 7.5 24 8.5 24 15.9 999.9 56.3* 38.3* 99.99 999.9 110000 724050 13743 19500131 36.5 24 33.8 24 1023.1 24 1022.4 24 5.0 24 5.8 24 12.0 999.9 41.4* 33.4* 99.99 999.9 111000 724050 13743 19500201 38.8 24 36.8 24 1028.2 24 1027.5 24 3.5 24 5.5 24 11.1 999.9 42.4* 36.3* 99.99 999.9 110000 724050 13743 19500202 39.8 24 38.5 24 1021.2 24 1020.6 24 2.8 24 2.3 24 8.0 999.9 45.3* 36.3* 99.99 999.9 110000 724050 13743 19500203 38.9 24 26.6 24 1025.1 24 1024.4 24 12.5 24 13.1 24 23.9 999.9 45.3* 33.4* 99.99 999.9 110000 724050 13743 19500204 37.3 24 19.9 22 1030.0 24 1029.3 24 12.6 24 7.1 24 18.1 999.9 46.4* 30.4* 0.00I 999.9 000000 724050 13743 19500205 38.4 24 19.7 24 1032.0 24 1031.4 24 12.3 24 3.3 24 8.9 999.9 45.3* 30.4* 0.00I 999.9 000000 724050 13743 19500206 41.0 24 31.2 24 1021.3 24 1020.7 24 8.5 24 7.9 24 12.0 999.9 49.3* 37.4* 99.99 999.9 010000 724050 13743 19500207 46.8 24 38.3 24 1017.7 24 1017.0 24 6.1 24 7.1 24 20.0 999.9 49.3* 41.4* 0.00I 999.9 000000 724050 13743 19500208 33.8 24 18.8 24 1033.3 24 1032.6 24 9.8 24 6.7 24 9.9 999.9 41.4* 24.4* 0.00I 999.9 000000 724050 13743 19500209 43.8 24 39.3 24 1020.7 24 1020.0 24 6.6 24 7.3 24 12.0 999.9 53.4* 37.4* 99.99 999.9 110000 724050 13743 19500210 43.0 24 37.3 24 1020.4 24 1019.7 24 5.3 24 6.1 24 15.9 999.9 51.3* 38.3* 99.99 999.9 110000 724050 13743 19500211 43.6 24 36.9 24 1022.6 24 1021.9 24 5.4 24 2.4 24 8.0 999.9 53.4* 38.3* 99.99 999.9 110000 724050 13743 19500212 43.4 24 35.8 24 1027.0 24 1026.3 24 4.7 24 1.1 24 6.0 999.9 53.4* 34.3* 0.00I 999.9 100000 724050 13743 19500213 45.6 24 39.1 24 1026.0 24 1025.3 24 4.8 24 4.6 24 9.9 999.9 50.4* 41.4* 99.99 999.9 110000 724050 13743 19500214 41.9 24 41.0 15 1022.5 24 1021.8 24 2.9 24 9.1 24 13.0 999.9 46.4* 37.4* 99.99 999.9 110000 724050 13743 19500215 46.3 24 43.0 24 1012.6 24 1011.9 24 6.4 24 8.0 24 15.9 999.9 52.3* 41.4* 99.99 999.9 110000 724050 13743 19500216 41.2 24 28.7 24 1013.3 24 1012.6 24 14.3 24 7.8 24 21.0 999.9 47.3* 39.4* 99.99 999.9 011000 724050 13743 19500217 37.1 24 22.5 24 1016.9 24 1016.2 24 10.9 24 10.7 24 15.9 999.9 40.3* 33.4* 0.00I 999.9 000000 724050 13743 19500218 38.0 24 23.9 24 1023.6 24 1022.9 24 11.1 24 8.6 24 13.0 999.9 47.3* 32.4* 0.00I 999.9 000000 724050 13743 19500219 40.9 24 27.1 24 1014.2 24 1013.5 24 12.2 24 15.3 24 29.9 999.9 43.3* 37.4* 99.99 999.9 010000 724050 13743 19500220 27.8 24 7.0 24 1021.3 24 1020.6 24 14.5 24 20.9 24 28.0 999.9 37.4* 19.4* 99.99 999.9 011000 724050 13743 19500221 26.0 24 3.3 24 1025.2 24 1024.5 24 13.3 24 9.0 24 18.1 999.9 39.4* 18.3* 0.00I 999.9 000000 724050 13743 19500222 39.4 24 33.3 24 1009.5 24 1008.8 24 6.4 24 2.6 24 9.9 999.9 47.3* 33.4* 99.99 999.9 110000 724050 13743 19500223 45.7 24 36.7 24 1001.7 24 1001.0 24 9.3 24 16.2 24 32.1 999.9 55.4* 37.4* 99.99 999.9 110000 724050 13743 19500224 41.0 24 22.4 24 1013.1 24 1012.4 24 12.4 24 8.7 24 20.0 999.9 53.4* 32.4* 0.00I 999.9 000000 724050 13743 19500225 34.8 24 20.2 24 1017.4 24 1016.7 24 13.8 24 13.7 24 22.0 999.9 46.4* 29.3* 0.00I 999.9 000000 724050 13743 19500226 27.4 24 11.0 24 1018.2 24 1017.5 24 9.2 24 14.9 24 32.1 999.9 30.4* 22.5* 99.99 999.9 001000 724050 13743 19500227 27.1 24 7.9 24 1021.2 24 1020.6 24 13.1 24 19.5 24 28.0 999.9 34.3* 21.4* 0.00I 999.9 000000 724050 13743 19500228 30.3 24 12.6 24 1023.0 24 1022.3 24 9.3 24 6.7 24 18.1 999.9 41.4* 22.5* 0.00I 999.9 000000 724050 13743 19500301 47.4 24 25.1 24 1005.5 24 1004.8 24 12.9 24 14.2 24 26.0 999.9 52.3* 43.3* 99.99 999.9 010000 724050 13743 19500302 28.2 24 10.1 24 1013.5 24 1012.8 24 13.8 24 18.6 24 28.0 999.9 40.3* 22.5* 99.99 999.9 001000 724050 13743 19500303 22.0 24 -1.3 24 1026.1 24 1025.5 24 14.3 24 12.0 24 22.9 999.9 32.4* 15.4* 0.00I 999.9 000000 724050 13743 19500304 31.4 24 7.3 24 1032.3 24 1031.7 24 11.1 24 3.1 24 8.9 999.9 43.3* 23.4* 0.00I 999.9 000000 724050 13743 19500305 40.3 24 23.8 23 1023.9 24 1023.3 24 11.1 24 5.4 24 8.9 999.9 61.3* 27.3* 0.00I 999.9 000000 724050 13743 19500306 49.6 24 21.6 24 1017.1 24 1016.4 24 13.3 24 9.2 24 16.9 999.9 55.4* 42.4* 0.00I 999.9 000000 724050 13743 19500307 37.1 24 16.0 24 1025.1 24 1024.4 24 11.4 24 4.7 24 8.9 999.9 44.4* 30.4* 99.99 999.9 011000 724050 13743 19500308 43.6 24 39.9 24 1009.1 24 1008.4 24 4.9 24 3.4 24 11.1 999.9 55.4* 39.4* 99.99 999.9 110000 724050 13743 19500309 33.9 24 14.8 24 1012.8 24 1012.1 24 12.4 24 22.0 24 29.9 999.9 48.4* 27.3* 99.99 999.9 011000 724050 13743 19500310 32.5 24 10.7 24 1029.0 24 1028.3 24 14.5 24 8.6 24 18.1 999.9 45.3* 25.3* 0.00I 999.9 000000 724050 13743 19500311 37.7 24 24.3 24 1026.0 24 1025.4 24 8.0 24 4.1 24 12.0 999.9 45.3* 31.3* 99.99 999.9 110000 724050 13743 19500312 46.7 24 43.5 24 1015.4 24 1014.8 24 3.6 24 0.6 24 7.0 999.9 62.4* 38.3* 99.99 999.9 110000 724050 13743 19500313 44.9 24 42.7 24 1008.3 24 1007.5 24 2.4 24 3.3 24 8.0 999.9 53.4* 42.4* 99.99 999.9 110000 724050 13743 19500314 38.4 24 18.9 24 1017.5 24 1016.8 24 14.3 24 18.0 24 26.0 999.9 45.3* 31.3* 99.99 999.9 010000 724050 13743 19500315 42.0 24 19.4 24 1020.3 24 1019.7 24 12.8 24 5.3 24 14.0 999.9 59.4* 30.4* 0.00I 999.9 000000 724050 13743 19500316 37.6 24 22.2 24 1016.7 24 1016.0 24 8.7 24 7.3 24 12.0 999.9 53.4* 26.4* 99.99 999.9 101000 724050 13743 19500317 33.7 24 23.2 24 1014.0 24 1013.4 24 8.0 24 8.5 24 15.9 999.9 46.4* 26.4* 99.99 999.9 001000 724050 13743 19500318 40.6 24 22.9 24 1008.7 24 1008.0 24 13.7 24 19.0 24 23.9 999.9 47.3* 35.4* 99.99 999.9 010000 724050 13743 19500319 33.8 24 14.5 24 1027.0 24 1026.3 24 14.9 24 10.9 24 25.1 999.9 45.3* 24.4* 0.00I 999.9 000000 724050 13743 19500320 37.9 24 23.7 24 1028.2 24 1027.5 24 8.8 24 3.5 24 12.0 999.9 49.3* 28.4* 99.99 999.9 010000 724050 13743 19500321 45.0 24 39.1 24 1015.0 24 1014.4 24 10.7 24 10.0 24 19.0 999.9 51.3* 40.3* 99.99 999.9 110000 724050 13743 19500322 42.4 24 36.9 24 1016.2 24 1015.5 24 6.9 24 6.4 24 8.9 999.9 49.3* 40.3* 99.99 999.9 110000 724050 13743 19500323 41.7 24 35.4 24 999.5 24 998.8 24 9.4 24 16.7 24 27.0 999.9 46.4* 36.3* 99.99 999.9 110000 724050 13743 19500324 51.2 24 32.2 24 1004.9 24 1004.4 24 13.0 24 14.7 24 22.0 999.9 66.4* 42.4* 99.99 999.9 010000 724050 13743 19500325 48.6 24 34.7 24 1010.0 24 1009.4 24 10.7 24 11.0 24 29.9 999.9 56.3* 40.3* 0.00I 999.9 100000 724050 13743 19500326 46.2 24 31.1 24 1019.9 24 1019.2 24 8.4 24 3.9 24 12.0 999.9 55.4* 38.3* 0.00I 999.9 100000 724050 13743 19500327 54.8 24 43.6 24 1010.3 24 1009.6 24 7.9 24 5.4 24 14.0 999.9 79.3* 44.4* 99.99 999.9 110000 724050 13743 19500328 71.9 24 49.5 24 997.9 24 997.2 24 14.2 24 13.5 24 18.1 999.9 76.3* 62.4* 99.99 999.9 010000 724050 13743 19500329 54.3 24 39.1 24 1005.1 24 1004.4 24 12.1 24 7.8 24 16.9 999.9 68.4* 45.3* 99.99 999.9 110000 724050 13743 19500330 38.7 24 17.6 24 1018.4 24 1017.8 24 14.9 24 18.4 24 22.9 999.9 47.3* 31.3* 0.00I 999.9 000000 724050 13743 19500331 40.6 24 15.8 24 1023.8 24 1023.2 24 14.9 24 7.6 24 9.9 999.9 51.3* 32.4* 0.00I 999.9 000000 724050 13743 19500401 44.8 24 24.9 24 1019.1 24 1018.4 24 9.6 24 8.5 24 18.1 999.9 55.4* 36.3* 99.99 999.9 010000 724050 13743 19500402 52.0 24 32.8 24 1015.5 24 1014.9 24 12.8 24 8.4 24 18.1 999.9 62.4* 43.3* 0.00I 999.9 000000 724050 13743 19500403 62.5 24 43.3 24 1014.1 24 1013.4 24 12.2 24 10.2 24 18.1 999.9 78.3* 52.3* 99.99 999.9 010000 724050 13743 19500404 71.4 24 54.0 24 1012.8 24 1012.1 24 14.2 24 12.4 24 22.9 999.9 81.3* 63.3* 99.99 999.9 010000 724050 13743 19500405 58.1 24 45.8 24 1010.7 24 1010.1 24 11.8 24 15.4 24 20.0 999.9 72.3* 47.3* 99.99 999.9 010000 724050 13743 19500406 42.1 24 25.4 24 1018.2 24 1017.6 24 14.9 24 16.2 24 22.9 999.9 49.3* 37.4* 0.00I 999.9 000000 724050 13743 19500407 40.1 24 12.3 24 1022.9 24 1022.3 24 14.9 24 15.0 24 18.1 999.9 54.3* 29.3* 0.00I 999.9 000000 724050 13743 19500408 47.7 24 20.8 24 1018.9 24 1018.2 24 11.3 24 6.8 24 18.1 999.9 61.3* 37.4* 0.00I 999.9 000000 724050 13743 19500409 42.8 24 18.8 24 1024.7 24 1024.1 24 13.8 24 14.9 24 25.1 999.9 53.4* 33.4* 0.00I 999.9 000000 724050 13743 19500410 44.7 24 23.6 24 1027.1 24 1026.5 24 13.2 24 4.9 24 9.9 999.9 50.4* 39.4* 0.00I 999.9 000000 724050 13743 19500411 52.5 24 41.1 24 1013.0 24 1012.4 24 9.5 24 3.9 24 23.9 999.9 74.3* 43.3* 99.99 999.9 010000 724050 13743 19500412 48.9 24 28.3 24 1012.9 24 1012.3 24 14.3 24 16.1 24 30.9 999.9 57.4* 42.4* 0.00I 999.9 000000 724050 13743 19500413 41.4 24 23.5 24 1012.9 24 1012.2 24 12.9 24 16.1 24 25.1 999.9 56.3* 36.3* 99.99 999.9 010000 724050 13743 19500414 34.1 24 15.3 24 1016.4 24 1015.8 24 14.0 24 18.8 24 26.0 999.9 46.4* 25.3* 0.00I 999.9 000000 724050 13743 19500415 39.4 24 20.6 24 1019.3 24 1018.6 24 14.9 24 15.7 24 21.0 999.9 47.3* 32.4* 0.00I 999.9 000000 724050 13743 19500416 45.6 24 24.3 24 1021.5 24 1020.9 24 13.7 24 5.3 24 15.0 999.9 62.4* 33.4* 0.00I 999.9 000000 724050 13743 19500417 56.3 24 28.4 24 1017.3 24 1016.6 24 11.9 24 3.7 24 11.1 999.9 75.4* 39.4* 0.00I 999.9 000000 724050 13743 19500418 65.1 24 34.9 24 1014.6 24 1013.9 24 9.4 24 3.6 24 14.0 999.9 77.4* 56.3* 99.99 999.9 010000 724050 13743 19500419 66.5 24 46.9 24 1015.1 24 1014.4 24 9.9 24 5.6 24 15.0 999.9 81.3* 53.4* 99.99 999.9 010000 724050 13743 19500420 55.4 24 46.2 24 1012.4 24 1011.7 24 10.8 24 9.0 24 22.9 999.9 70.3* 47.3* 99.99 999.9 010000 724050 13743 19500421 50.0 24 35.7 24 1012.4 24 1011.7 24 11.0 24 8.3 24 20.0 999.9 57.4* 46.4* 99.99 999.9 010000 724050 13743 19500422 51.3 24 29.9 24 1019.1 24 1018.5 24 13.0 24 4.0 24 13.0 999.9 65.3* 40.3* 0.00I 999.9 000000 724050 13743 19500423 55.0 24 45.0 24 1011.7 24 1011.1 24 8.7 24 3.5 24 8.9 999.9 66.4* 46.4* 99.99 999.9 010000 724050 13743 19500424 58.2 24 47.8 24 1010.1 24 1009.5 24 7.2 24 5.6 24 18.1 999.9 63.3* 51.3* 99.99 999.9 110000 724050 13743 19500425 47.2 24 43.0 24 1012.4 24 1011.7 24 5.8 24 4.9 24 11.1 999.9 51.3* 43.3* 99.99 999.9 110000 724050 13743 19500426 57.9 24 47.3 24 1010.3 24 1009.6 24 8.0 24 5.2 24 13.0 999.9 73.4* 49.3* 99.99 999.9 110000 724050 13743 19500427 63.1 24 45.6 24 1015.1 24 1014.4 24 10.6 24 5.6 24 15.9 999.9 76.3* 48.4* 0.00I 999.9 100000 724050 13743 19500428 64.7 24 52.7 24 1015.5 24 1014.9 24 6.9 24 3.6 24 9.9 999.9 77.4* 55.4* 99.99 999.9 110010 724050 13743 19500429 59.1 24 48.2 24 1019.4 24 1018.8 24 4.4 24 7.0 24 15.0 999.9 68.4* 55.4* 99.99 999.9 110000 724050 13743 19500430 50.8 24 44.9 24 1021.0 24 1020.3 24 5.0 24 6.7 24 9.9 999.9 56.3* 48.4* 99.99 999.9 110000 724050 13743 19500501 55.0 24 47.1 24 1016.6 24 1015.9 24 5.7 24 3.5 24 8.9 999.9 72.3* 47.3* 99.99 999.9 110000 724050 13743 19500502 60.8 24 55.2 24 1015.6 24 1015.0 24 7.1 24 2.8 24 7.0 999.9 65.3* 58.3* 99.99 999.9 110000 724050 13743 19500503 57.2 24 54.1 24 1016.0 24 1015.3 24 4.1 24 3.7 24 8.0 999.9 60.3* 53.4* 99.99 999.9 110000 724050 13743 19500504 62.0 24 55.7 24 1016.6 24 1015.9 24 6.5 24 3.0 24 8.9 999.9 72.3* 56.3* 0.00I 999.9 100000 724050 13743 19500505 68.2 24 62.2 24 1013.8 24 1013.2 24 7.6 24 4.2 24 15.0 999.9 80.2* 61.3* 99.99 999.9 110000 724050 13743 19500506 69.9 23 65.1 22 1013.2 23 1012.5 23 4.5 23 4.2 23 20.0 999.9 92.3* 62.4* 99.99 999.9 110000 724050 13743 19500507 72.4 24 48.1 24 1016.8 24 1016.1 24 13.8 24 6.6 24 18.1 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19500508 58.3 24 29.8 24 1026.6 24 1026.0 24 14.7 24 12.3 24 20.0 999.9 74.3* 45.3* 0.00I 999.9 000000 724050 13743 19500509 58.2 24 38.4 23 1026.2 24 1025.5 24 14.3 24 6.3 24 15.9 999.9 74.3* 43.3* 99.99 999.9 010000 724050 13743 19500510 70.2 24 52.0 24 1016.9 24 1016.3 24 13.0 24 11.9 24 15.0 999.9 82.4* 62.4* 99.99 999.9 010000 724050 13743 19500511 71.1 24 53.0 24 1018.2 24 1017.5 24 13.9 24 7.7 24 20.0 999.9 77.4* 64.4* 0.00I 999.9 000000 724050 13743 19500512 61.5 24 48.5 24 1016.9 24 1016.2 24 8.9 24 4.3 24 8.9 999.9 70.3* 53.4* 99.99 999.9 110000 724050 13743 19500513 59.8 24 51.1 24 1011.8 24 1011.2 24 7.6 24 4.0 24 15.9 999.9 75.4* 52.3* 99.99 999.9 110000 724050 13743 19500514 65.6 24 55.0 24 1010.7 24 1010.0 24 9.5 24 5.8 24 9.9 999.9 73.4* 58.3* 0.00I 999.9 000000 724050 13743 19500515 60.3 24 56.3 24 1006.0 24 1005.3 24 7.5 24 7.9 24 12.0 999.9 65.3* 52.3* 99.99 999.9 110000 724050 13743 19500516 63.3 24 54.0 24 1008.3 24 1007.6 24 7.1 24 9.7 24 19.0 999.9 75.4* 58.3* 99.99 999.9 110000 724050 13743 19500517 65.5 24 53.9 24 1013.8 24 1013.1 24 11.1 24 4.5 24 11.1 999.9 79.3* 53.4* 0.00I 999.9 100000 724050 13743 19500518 62.3 24 56.0 24 1014.1 24 1013.4 24 8.5 24 7.7 24 18.1 999.9 70.3* 55.4* 99.99 999.9 010010 724050 13743 19500519 55.3 24 51.2 24 1014.4 24 1013.7 24 4.5 24 8.2 24 15.9 999.9 61.3* 53.4* 99.99 999.9 110010 724050 13743 19500520 53.1 24 42.9 24 1017.2 24 1016.5 24 9.0 24 6.6 24 14.0 999.9 59.4* 47.3* 0.00I 999.9 100000 724050 13743 19500521 58.7 24 44.4 24 1019.4 24 1018.7 24 12.6 24 2.8 24 7.0 999.9 74.3* 46.4* 0.00I 999.9 000000 724050 13743 19500522 64.5 24 45.3 24 1020.3 24 1019.6 24 14.9 24 5.9 24 15.0 999.9 74.3* 53.4* 0.00I 999.9 000000 724050 13743 19500523 66.2 24 55.2 24 1019.3 24 1018.6 24 13.9 24 7.9 24 20.0 999.9 78.3* 60.3* 99.99 999.9 010010 724050 13743 19500524 67.0 24 58.9 24 1016.3 24 1015.6 24 8.6 24 3.2 24 7.0 999.9 77.4* 59.4* 99.99 999.9 110000 724050 13743 19500525 66.1 24 61.7 24 1016.3 24 1015.6 24 3.5 24 3.0 24 8.9 999.9 71.2* 62.4* 99.99 999.9 110010 724050 13743 19500526 67.4 24 59.8 24 1018.0 24 1017.3 24 4.1 24 3.4 24 8.0 999.9 76.3* 61.3* 99.99 999.9 110000 724050 13743 19500527 70.1 24 58.8 24 1018.2 24 1017.5 24 10.3 24 2.1 24 9.9 999.9 80.2* 60.3* 0.00I 999.9 100000 724050 13743 19500528 64.8 24 57.0 24 1015.2 24 1014.5 24 9.2 24 4.5 24 8.0 999.9 75.4* 58.3* 99.99 999.9 010000 724050 13743 19500529 62.4 24 59.1 24 1014.3 24 1013.6 24 4.6 24 2.6 24 8.0 999.9 69.3* 59.4* 99.99 999.9 110000 724050 13743 19500530 65.6 24 59.0 24 1014.7 24 1014.0 24 5.6 24 2.8 24 8.0 999.9 76.3* 58.3* 0.00I 999.9 100000 724050 13743 19500531 69.9 24 65.7 24 1011.7 24 1011.0 24 6.2 24 6.3 24 8.9 999.9 80.2* 64.4* 99.99 999.9 110000 724050 13743 19500601 70.4 24 60.4 24 1012.3 24 1011.7 24 11.2 24 8.2 24 15.9 999.9 80.2* 64.4* 99.99 999.9 010000 724050 13743 19500602 72.1 24 49.6 24 1020.7 24 1019.9 24 11.9 24 2.5 24 9.9 999.9 84.4* 59.4* 0.00I 999.9 000000 724050 13743 19500603 73.2 24 61.8 24 1015.8 24 1015.2 24 11.6 24 9.2 24 14.0 999.9 77.4* 70.3* 99.99 999.9 010000 724050 13743 19500604 69.3 24 60.0 24 1007.2 24 1006.6 24 11.6 24 10.7 24 16.9 999.9 75.4* 60.3* 99.99 999.9 010000 724050 13743 19500605 67.5 24 47.4 24 1011.8 23 1011.1 23 14.8 24 4.6 24 15.9 999.9 80.2* 53.4* 0.00I 999.9 000000 724050 13743 19500606 73.5 24 55.5 24 1017.0 24 1016.3 24 14.1 24 2.7 24 8.0 999.9 88.3* 60.3* 0.00I 999.9 000000 724050 13743 19500607 77.3 24 59.4 24 1023.7 24 1023.0 24 12.1 24 5.3 24 8.0 999.9 89.2* 66.4* 0.00I 999.9 000000 724050 13743 19500608 76.1 24 57.5 24 1025.4 24 1024.7 24 14.4 24 5.7 24 9.9 999.9 88.3* 64.4* 0.00I 999.9 000000 724050 13743 19500609 76.2 24 63.2 24 1022.5 24 1021.8 24 11.5 24 6.0 24 12.0 999.9 91.2* 65.3* 0.00I 999.9 000000 724050 13743 19500610 77.7 24 67.5 24 1014.8 24 1014.2 24 12.1 24 6.6 24 12.0 999.9 88.3* 69.3* 99.99 999.9 010010 724050 13743 19500611 70.9 24 57.7 22 1012.1 24 1011.4 24 13.3 24 11.3 24 20.0 999.9 77.4* 66.4* 99.99 999.9 010000 724050 13743 19500612 69.0 24 49.0 24 1019.5 24 1018.8 24 14.9 24 4.5 24 9.9 999.9 77.4* 57.4* 0.00I 999.9 000000 724050 13743 19500613 67.1 24 52.0 23 1020.4 24 1019.7 24 13.4 24 5.5 24 9.9 999.9 78.3* 57.4* 0.00I 999.9 000000 724050 13743 19500614 72.4 24 60.1 24 1014.6 24 1013.9 24 14.1 24 7.6 24 14.0 999.9 86.4* 63.3* 99.99 999.9 010000 724050 13743 19500615 71.4 24 61.5 24 1016.1 24 1015.4 24 8.2 24 6.5 24 13.0 999.9 79.3* 66.4* 0.00I 999.9 000000 724050 13743 19500616 70.5 24 63.4 24 1014.8 24 1014.2 24 3.1 24 3.2 24 8.0 999.9 77.4* 64.4* 99.99 999.9 110000 724050 13743 19500617 76.9 24 62.9 24 1008.6 24 1008.0 24 10.4 24 10.9 24 22.9 999.9 84.4* 70.3* 0.00I 999.9 100000 724050 13743 19500618 67.0 24 44.9 24 1016.5 24 1015.8 24 14.3 24 6.8 24 18.1 999.9 80.2* 57.4* 0.00I 999.9 000000 724050 13743 19500619 70.4 24 63.3 24 1010.0 24 1009.3 24 8.8 24 3.2 24 8.9 999.9 80.2* 62.4* 99.99 999.9 110000 724050 13743 19500620 76.1 24 69.9 24 1010.2 24 1009.5 24 3.9 24 2.5 24 7.0 999.9 88.3* 70.3* 99.99 999.9 110000 724050 13743 19500621 76.3 24 67.9 24 1011.4 24 1010.8 24 9.2 24 4.7 24 14.0 999.9 81.3* 72.3* 99.99 999.9 010010 724050 13743 19500622 73.7 24 64.2 24 1017.2 24 1016.5 24 5.8 24 3.7 24 9.9 999.9 80.2* 68.4* 0.00I 999.9 100000 724050 13743 19500623 74.2 24 62.0 24 1016.2 24 1015.5 24 9.8 24 3.1 24 8.0 999.9 88.3* 64.4* 0.00I 999.9 000000 724050 13743 19500624 82.5 24 70.2 24 1012.1 24 1011.4 24 10.2 24 6.7 24 12.0 999.9 94.3* 72.3* 0.00I 999.9 000000 724050 13743 19500625 83.8 24 70.7 24 1009.6 24 1009.0 24 13.3 24 7.1 24 18.1 999.9 90.3* 77.4* 99.99 999.9 010000 724050 13743 19500626 81.9 24 62.4 24 1009.8 24 1009.2 24 14.4 24 4.8 24 9.9 999.9 93.4* 70.3* 0.00I 999.9 000000 724050 13743 19500627 82.9 24 64.5 24 1007.8 24 1007.1 24 14.6 24 6.5 24 16.9 999.9 94.3* 71.2* 0.00I 999.9 000000 724050 13743 19500628 72.5 24 51.4 24 1014.3 24 1013.6 24 14.9 24 11.2 24 18.1 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19500629 70.4 24 59.7 24 1013.7 24 1013.0 24 11.8 24 5.1 24 9.9 999.9 77.4* 63.3* 99.99 999.9 010000 724050 13743 19500630 75.0 24 63.3 24 1013.6 24 1012.9 24 8.9 24 3.1 24 7.0 999.9 90.3* 67.3* 0.00I 999.9 100000 724050 13743 19500701 76.6 24 58.5 24 1016.7 24 1016.0 24 10.6 24 3.9 24 13.0 999.9 85.3* 69.3* 0.00I 999.9 000000 724050 13743 19500702 77.9 24 60.8 24 1019.0 24 1018.4 24 11.2 24 4.0 24 11.1 999.9 90.3* 66.4* 0.00I 999.9 000000 724050 13743 19500703 81.9 24 64.7 24 1016.9 24 1016.2 24 12.6 24 5.5 24 9.9 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19500704 80.1 24 68.3 24 1015.0 24 1014.4 24 12.8 24 8.4 24 15.9 999.9 90.3* 72.3* 99.99 999.9 010000 724050 13743 19500705 75.3 23 69.5 23 1015.4 23 1014.7 23 12.1 23 5.1 23 8.9 999.9 88.3* 70.3* 99.99 999.9 010000 724050 13743 19500706 73.0 24 67.8 24 1013.4 24 1012.8 24 9.2 24 4.5 24 14.0 999.9 74.3* 70.3* 99.99 999.9 010000 724050 13743 19500707 72.2 24 59.9 24 1016.6 24 1015.9 24 11.5 24 4.5 24 12.0 999.9 83.3* 64.4* 0.00I 999.9 100000 724050 13743 19500708 73.6 24 59.4 24 1020.2 24 1019.5 24 10.2 24 3.2 24 8.9 999.9 83.3* 63.3* 0.00I 999.9 000000 724050 13743 19500709 71.4 24 62.2 24 1020.4 24 1019.7 24 9.6 24 4.5 24 12.0 999.9 77.4* 66.4* 99.99 999.9 010000 724050 13743 19500710 75.9 24 69.7 24 1018.4 24 1017.7 24 10.4 24 6.8 24 12.0 999.9 83.3* 70.3* 99.99 999.9 010000 724050 13743 19500711 77.9 24 71.7 24 1019.7 24 1019.0 24 10.6 24 5.8 24 9.9 999.9 86.4* 72.3* 99.99 999.9 110000 724050 13743 19500712 75.4 24 71.1 24 1018.5 24 1017.8 24 10.2 24 3.1 24 8.0 999.9 78.3* 73.4* 99.99 999.9 010000 724050 13743 19500713 78.4 24 71.2 24 1013.2 24 1012.6 24 10.9 24 9.9 24 23.9 999.9 89.2* 73.4* 99.99 999.9 010010 724050 13743 19500714 76.9 24 64.5 24 1015.9 24 1015.2 24 12.6 24 6.2 24 12.0 999.9 83.3* 72.3* 99.99 999.9 010000 724050 13743 19500715 71.4 24 67.5 24 1021.4 24 1020.8 24 4.7 24 5.6 24 14.0 999.9 76.3* 69.3* 99.99 999.9 110000 724050 13743 19500716 76.1 24 71.5 24 1022.7 24 1022.0 24 9.7 24 7.4 24 12.0 999.9 85.3* 71.2* 99.99 999.9 110010 724050 13743 19500717 76.9 24 72.4 24 1019.6 24 1018.9 24 12.1 24 3.9 24 8.0 999.9 90.3* 72.3* 99.99 999.9 010010 724050 13743 19500718 79.5 24 72.7 24 1014.2 24 1013.6 24 13.4 24 7.3 24 15.9 999.9 88.3* 72.3* 0.00I 999.9 000000 724050 13743 19500719 77.2 24 64.0 24 1016.7 24 1016.0 24 12.8 24 2.2 24 5.1 999.9 84.4* 68.4* 0.00I 999.9 000000 724050 13743 19500720 79.2 24 71.3 24 1012.3 24 1011.6 24 8.2 24 5.6 24 29.9 999.9 89.2* 73.4* 99.99 999.9 010010 724050 13743 19500721 70.8 24 62.8 24 1015.4 24 1014.7 24 10.7 24 5.4 24 14.0 999.9 76.3* 65.3* 99.99 999.9 010010 724050 13743 19500722 71.8 24 58.7 24 1019.0 24 1018.3 24 11.6 24 2.1 24 9.9 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19500723 71.5 24 57.5 24 1022.1 24 1021.4 24 12.1 24 3.8 24 8.9 999.9 79.3* 62.4* 0.00I 999.9 000000 724050 13743 19500724 72.8 24 64.6 24 1020.6 24 1020.0 24 13.1 24 6.5 24 12.0 999.9 83.3* 68.4* 99.99 999.9 010000 724050 13743 19500725 78.1 24 66.6 24 1016.0 24 1015.3 24 10.6 24 7.1 24 20.0 999.9 87.3* 70.3* 0.00I 999.9 000000 724050 13743 19500726 71.8 24 62.8 24 1016.4 24 1015.7 24 11.3 24 2.2 24 9.9 999.9 81.3* 66.4* 99.99 999.9 110000 724050 13743 19500727 71.7 24 62.3 24 1014.9 24 1014.2 24 9.4 24 2.6 24 7.0 999.9 84.4* 62.4* 0.00I 999.9 100000 724050 13743 19500728 76.7 24 63.9 24 1012.0 24 1011.4 24 8.2 24 2.6 24 8.9 999.9 89.2* 65.3* 0.00I 999.9 000000 724050 13743 19500729 77.1 24 64.7 24 1010.0 24 1009.3 24 9.9 24 3.0 24 14.0 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19500730 80.0 24 67.4 24 1010.3 24 1009.7 24 12.6 24 3.5 24 9.9 999.9 91.2* 69.3* 0.00I 999.9 100000 724050 13743 19500731 81.4 24 68.8 24 1012.7 24 1012.0 24 9.6 24 3.0 24 8.9 999.9 93.4* 70.3* 0.00I 999.9 100000 724050 13743 19500801 84.1 24 72.3 24 1010.3 24 1009.6 24 11.0 24 6.6 24 9.9 999.9 91.2* 78.3* 0.00I 999.9 000000 724050 13743 19500802 81.3 24 73.1 24 1011.9 24 1011.2 24 10.8 24 3.6 24 12.0 999.9 91.2* 74.3* 99.99 999.9 010010 724050 13743 19500803 78.2 24 70.0 24 1012.5 24 1011.9 24 9.8 24 2.1 24 8.9 999.9 86.4* 73.4* 99.99 999.9 010000 724050 13743 19500804 74.3 24 55.3 24 1015.4 24 1014.7 24 12.9 24 10.0 24 15.9 999.9 81.3* 66.4* 0.00I 999.9 000000 724050 13743 19500805 72.2 24 57.5 24 1015.2 24 1014.5 24 10.3 24 8.2 24 15.9 999.9 79.3* 66.4* 0.00I 999.9 000000 724050 13743 19500806 72.2 24 56.2 24 1014.6 24 1013.9 24 12.8 24 10.3 24 18.1 999.9 82.4* 65.3* 0.00I 999.9 000000 724050 13743 19500807 70.0 24 56.4 24 1019.9 24 1019.2 24 12.1 24 4.4 24 8.0 999.9 79.3* 60.3* 0.00I 999.9 000000 724050 13743 19500808 72.5 24 60.2 24 1020.9 24 1020.2 24 11.5 24 3.7 24 7.0 999.9 85.3* 61.3* 0.00I 999.9 000000 724050 13743 19500809 75.9 24 64.9 24 1019.6 24 1018.9 24 10.5 24 6.4 24 9.9 999.9 89.2* 65.3* 0.00I 999.9 000000 724050 13743 19500810 78.7 24 66.5 24 1016.8 24 1016.2 24 9.0 24 5.1 24 8.0 999.9 86.4* 71.2* 99.99 999.9 010010 724050 13743 19500811 76.5 24 67.8 24 1015.1 24 1014.4 24 7.7 24 1.6 24 8.9 999.9 87.3* 68.4* 0.00I 999.9 100000 724050 13743 19500812 72.1 24 59.8 24 1017.4 24 1016.7 24 10.7 24 7.4 24 13.0 999.9 78.3* 66.4* 99.99 999.9 010000 724050 13743 19500813 69.9 24 51.6 24 1019.7 24 1019.1 24 12.6 24 5.7 24 15.9 999.9 80.2* 58.3* 0.00I 999.9 000000 724050 13743 19500814 70.7 24 53.8 24 1020.8 24 1020.1 24 14.9 24 2.1 24 8.9 999.9 83.3* 59.4* 0.00I 999.9 000000 724050 13743 19500815 72.6 24 59.2 24 1019.9 24 1019.2 24 12.6 24 8.2 24 19.0 999.9 82.4* 65.3* 0.00I 999.9 000000 724050 13743 19500816 72.7 24 64.0 24 1018.0 24 1017.3 24 10.7 24 6.4 24 9.9 999.9 79.3* 69.3* 0.00I 999.9 000000 724050 13743 19500817 75.3 24 69.1 24 1017.8 24 1017.1 24 6.8 24 2.9 24 7.0 999.9 85.3* 70.3* 99.99 999.9 110000 724050 13743 19500818 76.8 24 70.2 24 1015.8 24 1015.2 24 6.3 24 3.9 24 9.9 999.9 87.3* 70.3* 0.00I 999.9 100000 724050 13743 19500819 78.0 24 71.2 24 1012.8 24 1012.2 24 11.1 24 5.2 24 8.9 999.9 88.3* 71.2* 99.99 999.9 010010 724050 13743 19500820 75.1 24 66.6 24 1008.8 24 1008.1 24 8.6 24 8.5 24 18.1 999.9 84.4* 69.3* 99.99 999.9 110010 724050 13743 19500821 71.4 24 55.5 24 1013.8 24 1013.1 24 13.3 24 6.7 24 14.0 999.9 78.3* 64.4* 0.00I 999.9 000000 724050 13743 19500822 66.3 24 61.8 24 1016.0 24 1015.3 24 8.3 24 2.1 24 7.0 999.9 71.2* 63.3* 99.99 999.9 110000 724050 13743 19500823 68.3 24 65.4 24 1019.7 24 1019.0 24 5.8 24 2.9 24 8.0 999.9 77.4* 63.3* 99.99 999.9 110000 724050 13743 19500824 73.4 24 67.4 24 1021.9 24 1021.2 24 7.4 24 2.0 24 6.0 999.9 85.3* 66.4* 0.00I 999.9 100000 724050 13743 19500825 76.4 24 68.2 24 1020.7 24 1020.0 24 9.7 24 2.3 24 6.0 999.9 90.3* 70.3* 99.99 999.9 110000 724050 13743 19500826 75.3 24 68.2 24 1020.1 24 1019.4 24 11.1 24 2.4 24 8.0 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19500827 75.4 24 66.4 24 1020.6 24 1020.0 24 10.9 24 3.0 24 7.0 999.9 86.4* 66.4* 0.00I 999.9 100000 724050 13743 19500828 78.2 24 69.6 24 1017.2 24 1016.5 24 11.2 24 5.0 24 8.0 999.9 91.2* 70.3* 0.00I 999.9 100000 724050 13743 19500829 80.2 24 72.6 24 1013.1 24 1012.5 24 12.8 24 6.4 24 8.9 999.9 90.3* 74.3* 99.99 999.9 010010 724050 13743 19500830 78.5 24 71.3 24 1013.4 24 1012.7 24 9.5 24 1.5 24 8.0 999.9 90.3* 70.3* 0.00I 999.9 100000 724050 13743 19500831 81.1 24 72.9 24 1014.8 24 1014.1 24 11.2 24 5.3 24 8.9 999.9 89.2* 74.3* 0.00I 999.9 000000 724050 13743 19500901 80.1 24 73.6 24 1013.1 24 1012.5 24 11.3 24 7.8 24 14.0 999.9 87.3* 75.4* 0.00I 999.9 000000 724050 13743 19500902 80.2 24 74.1 24 1011.3 24 1010.8 24 12.5 24 2.6 24 7.0 999.9 88.3* 74.3* 99.99 999.9 010000 724050 13743 19500903 79.2 24 72.9 24 1011.8 24 1011.2 24 8.4 24 2.0 24 12.0 999.9 89.2* 74.3* 99.99 999.9 110000 724050 13743 19500904 76.9 24 68.7 24 1011.8 24 1011.1 24 6.4 24 5.5 24 20.0 999.9 84.4* 72.3* 99.99 999.9 110000 724050 13743 19500905 65.2 24 48.8 24 1018.6 24 1017.9 24 14.9 24 10.2 24 16.9 999.9 73.4* 58.3* 0.00I 999.9 000000 724050 13743 19500906 64.0 24 51.7 24 1023.3 24 1022.7 24 13.7 24 8.0 24 12.0 999.9 73.4* 55.4* 0.00I 999.9 000000 724050 13743 19500907 66.7 24 54.3 24 1022.3 24 1021.6 24 10.7 24 3.8 24 11.1 999.9 76.3* 58.3* 0.00I 999.9 000000 724050 13743 19500908 69.7 24 57.2 24 1019.0 24 1018.3 24 9.6 24 2.6 24 8.0 999.9 81.3* 62.4* 0.00I 999.9 000000 724050 13743 19500909 70.0 24 66.8 24 1016.2 24 1015.5 24 7.3 24 4.2 24 9.9 999.9 74.3* 65.3* 99.99 999.9 110000 724050 13743 19500910 74.0 24 71.5 24 1013.4 24 1012.7 24 8.5 24 4.4 24 16.9 999.9 85.3* 69.3* 99.99 999.9 110010 724050 13743 19500911 72.8 24 68.0 24 1010.5 24 1009.8 24 9.6 24 6.2 24 18.1 999.9 83.3* 66.4* 99.99 999.9 010010 724050 13743 19500912 69.0 24 66.6 24 1013.9 24 1013.3 24 4.9 24 4.3 24 11.1 999.9 73.4* 66.4* 99.99 999.9 110010 724050 13743 19500913 64.4 24 62.8 24 1016.2 24 1015.5 24 5.8 24 6.2 24 9.9 999.9 65.3* 62.4* 99.99 999.9 110000 724050 13743 19500914 65.7 24 62.5 24 1015.4 24 1014.7 24 5.3 24 2.4 24 8.0 999.9 73.4* 62.4* 99.99 999.9 110000 724050 13743 19500915 68.7 24 60.2 24 1011.2 24 1010.5 24 8.0 24 5.8 24 16.9 999.9 76.3* 61.3* 0.00I 999.9 100000 724050 13743 19500916 67.5 24 55.3 24 1014.0 24 1013.3 24 12.3 24 5.1 24 12.0 999.9 75.4* 59.4* 0.00I 999.9 000000 724050 13743 19500917 65.3 24 53.7 24 1022.3 24 1021.6 24 10.4 24 4.0 24 7.0 999.9 73.4* 56.3* 0.00I 999.9 000000 724050 13743 19500918 64.1 24 55.8 24 1026.8 24 1026.1 24 10.3 24 3.1 24 8.9 999.9 75.4* 55.4* 0.00I 999.9 100000 724050 13743 19500919 67.9 24 63.8 24 1021.0 24 1020.3 24 6.9 24 5.6 24 11.1 999.9 76.3* 61.3* 99.99 999.9 110000 724050 13743 19500920 68.0 24 63.8 24 1018.5 24 1017.8 24 4.5 24 2.1 24 8.0 999.9 72.3* 62.4* 0.00I 999.9 100000 724050 13743 19500921 68.7 24 66.2 24 1015.6 24 1014.9 24 2.2 24 1.2 24 8.0 999.9 72.3* 66.4* 99.99 999.9 110000 724050 13743 19500922 63.2 24 62.0 24 1006.7 24 1006.0 24 3.3 24 4.1 24 9.9 999.9 69.3* 59.4* 99.99 999.9 110000 724050 13743 19500923 65.5 24 57.1 24 1004.1 24 1003.4 24 6.3 24 5.8 24 18.1 999.9 73.4* 59.4* 99.99 999.9 110000 724050 13743 19500924 54.2 24 39.1 24 1015.4 24 1014.8 24 13.8 24 14.9 24 22.0 999.9 66.4* 46.4* 0.00I 999.9 000000 724050 13743 19500925 50.6 24 39.4 24 1023.2 24 1022.6 24 13.1 24 3.7 24 8.0 999.9 58.3* 45.3* 0.00I 999.9 000000 724050 13743 19500926 53.5 24 46.6 24 1026.9 24 1026.2 24 8.0 24 0.6 24 4.1 999.9 62.4* 48.4* 0.00I 999.9 000000 724050 13743 19500927 56.0 24 50.2 24 1028.7 24 1028.0 24 6.5 24 0.6 24 2.9 999.9 66.4* 48.4* 0.00I 999.9 100000 724050 13743 19500928 59.4 24 56.2 24 1028.5 24 1027.8 24 3.0 24 1.8 24 5.1 999.9 65.3* 55.4* 0.00I 999.9 100000 724050 13743 19500929 62.6 24 57.0 24 1027.8 24 1027.1 24 3.1 24 2.5 24 8.9 999.9 69.3* 56.3* 99.99 999.9 110000 724050 13743 19500930 65.1 24 60.7 24 1025.3 24 1024.7 24 1.9 24 2.2 24 8.0 999.9 73.4* 60.3* 99.99 999.9 110000 724050 13743 19501001 66.8 24 61.6 24 1023.8 24 1023.1 24 2.4 24 0.1 24 1.9 999.9 80.2* 58.3* 0.00I 999.9 100000 724050 13743 19501002 70.0 24 61.0 24 1024.8 24 1024.1 24 4.5 24 1.0 24 6.0 999.9 83.3* 59.4* 0.00I 999.9 000000 724050 13743 19501003 67.9 24 61.3 24 1020.3 24 1019.6 24 4.9 24 0.8 24 5.1 999.9 82.4* 58.3* 0.00I 999.9 000000 724050 13743 19501004 61.9 24 56.4 24 1013.1 24 1012.4 24 7.5 24 4.9 24 15.9 999.9 70.3* 52.3* 99.99 999.9 110000 724050 13743 19501005 55.9 24 42.1 24 1019.4 24 1018.7 24 12.6 24 3.9 24 8.9 999.9 64.4* 48.4* 0.00I 999.9 000000 724050 13743 19501006 53.8 24 44.4 24 1022.3 24 1021.6 24 8.8 24 1.3 24 6.0 999.9 66.4* 43.3* 0.00I 999.9 100000 724050 13743 19501007 58.5 24 53.9 24 1024.1 24 1023.4 24 4.1 24 2.6 24 8.0 999.9 68.4* 51.3* 0.00I 999.9 100000 724050 13743 19501008 64.5 24 63.4 24 1018.1 24 1017.4 24 4.0 24 5.8 24 9.9 999.9 69.3* 61.3* 99.99 999.9 110000 724050 13743 19501009 65.6 24 64.6 24 1008.6 24 1007.9 24 5.2 24 5.8 24 12.0 999.9 67.3* 63.3* 99.99 999.9 110010 724050 13743 19501010 60.2 24 54.5 24 1007.3 24 1006.6 24 12.2 24 5.1 24 15.0 999.9 70.3* 51.3* 0.00I 999.9 100000 724050 13743 19501011 61.6 24 52.9 24 1009.9 24 1009.2 24 12.4 24 4.6 24 12.0 999.9 74.3* 52.3* 0.00I 999.9 000000 724050 13743 19501012 64.0 24 52.4 24 1003.4 24 1002.7 24 12.6 24 10.8 24 22.0 999.9 70.3* 58.3* 99.99 999.9 010000 724050 13743 19501013 56.9 24 42.1 24 1011.5 24 1010.9 24 14.8 24 14.5 24 22.0 999.9 61.3* 52.3* 0.00I 999.9 000000 724050 13743 19501014 52.8 24 43.7 24 1019.8 24 1019.1 24 10.4 24 2.6 24 9.9 999.9 62.4* 44.4* 99.99 999.9 010000 724050 13743 19501015 57.8 24 49.5 24 1020.5 24 1019.8 24 9.1 24 4.8 24 13.0 999.9 68.4* 49.3* 0.00I 999.9 100000 724050 13743 19501016 55.4 24 46.1 24 1030.4 24 1029.7 24 10.0 24 4.7 24 9.9 999.9 66.4* 45.3* 0.00I 999.9 100000 724050 13743 19501017 59.0 24 51.8 24 1031.2 24 1030.5 24 6.3 24 4.5 24 8.9 999.9 68.4* 53.4* 0.00I 999.9 100000 724050 13743 19501018 60.7 24 58.2 24 1026.9 24 1026.2 24 2.6 24 1.5 24 7.0 999.9 74.3* 54.3* 0.00I 999.9 100000 724050 13743 19501019 63.4 24 60.0 24 1020.8 24 1020.1 24 5.4 24 1.7 24 8.9 999.9 74.3* 55.4* 0.00I 999.9 100000 724050 13743 19501020 66.6 24 59.6 24 1013.2 24 1012.5 24 7.9 24 4.2 24 12.0 999.9 74.3* 62.4* 99.99 999.9 110000 724050 13743 19501021 57.3 24 43.1 24 1017.2 24 1016.5 24 11.8 24 3.8 24 8.9 999.9 70.3* 44.4* 0.00I 999.9 000000 724050 13743 19501022 57.1 24 52.3 24 1014.3 24 1013.6 24 5.2 24 1.2 24 5.1 999.9 67.3* 50.4* 99.99 999.9 110000 724050 13743 19501023 58.5 24 57.7 24 1011.8 24 1011.1 24 4.1 24 5.6 24 16.9 999.9 63.3* 55.4* 99.99 999.9 110000 724050 13743 19501024 56.6 24 52.7 24 1017.4 24 1016.7 24 4.5 24 3.2 24 8.9 999.9 58.3* 54.3* 99.99 999.9 110000 724050 13743 19501025 59.6 24 52.4 24 1015.3 24 1014.6 24 5.8 24 4.7 24 20.0 999.9 66.4* 56.3* 99.99 999.9 110000 724050 13743 19501026 53.0 24 38.8 24 1020.4 24 1019.7 24 12.0 24 9.0 24 14.0 999.9 59.4* 45.3* 0.00I 999.9 000000 724050 13743 19501027 48.1 24 36.6 24 1024.8 24 1024.1 24 7.4 24 3.0 24 9.9 999.9 60.3* 37.4* 0.00I 999.9 100000 724050 13743 19501028 55.9 24 47.9 24 1023.6 24 1022.9 24 10.2 24 4.3 24 9.9 999.9 65.3* 49.3* 99.99 999.9 010000 724050 13743 19501029 62.2 24 56.7 24 1020.2 24 1019.5 24 7.2 24 1.5 24 9.9 999.9 75.4* 55.4* 99.99 999.9 110000 724050 13743 19501030 65.6 24 58.0 24 1017.4 24 1016.7 24 7.6 24 1.8 24 8.9 999.9 80.2* 55.4* 0.00I 999.9 000000 724050 13743 19501031 68.0 24 57.3 24 1014.7 24 1014.0 24 8.0 24 0.6 24 5.1 999.9 85.3* 54.3* 0.00I 999.9 000000 724050 13743 19501101 70.1 24 57.8 24 1013.4 24 1012.7 24 9.6 24 2.8 24 12.0 999.9 84.4* 57.4* 0.00I 999.9 000000 724050 13743 19501102 69.9 24 56.4 24 1009.7 24 1009.0 24 11.1 24 4.7 24 8.9 999.9 82.4* 58.3* 0.00I 999.9 000000 724050 13743 19501103 65.9 24 56.5 24 1009.9 24 1009.2 24 8.2 24 4.0 24 14.0 999.9 76.3* 58.3* 0.00I 999.9 000000 724050 13743 19501104 67.0 24 61.8 24 1002.6 24 1001.9 24 8.8 24 9.1 24 15.0 999.9 76.3* 61.3* 99.99 999.9 010010 724050 13743 19501105 51.5 24 39.3 24 1004.5 24 1003.8 24 14.2 24 16.1 24 25.1 999.9 67.3* 45.3* 99.99 999.9 010000 724050 13743 19501106 47.0 24 31.4 24 1021.1 24 1020.4 24 12.6 24 7.3 24 15.9 999.9 60.3* 36.3* 0.00I 999.9 000000 724050 13743 19501107 53.1 23 38.2 23 1022.9 23 1022.2 23 8.0 23 3.3 23 9.9 999.9 68.4* 41.4* 0.00I 999.9 000000 724050 13743 19501108 56.7 24 45.6 24 1019.4 24 1018.7 24 7.8 24 4.3 24 9.9 999.9 70.3* 49.3* 0.00I 999.9 000000 724050 13743 19501109 62.3 24 49.0 24 1014.4 24 1013.8 24 10.5 24 8.9 24 16.9 999.9 73.4* 54.3* 0.00I 999.9 000000 724050 13743 19501110 55.9 24 40.1 24 1016.4 24 1015.7 24 13.5 24 14.5 24 21.0 999.9 68.4* 49.3* 0.00I 999.9 000000 724050 13743 19501111 42.3 24 29.7 23 1023.8 24 1023.1 24 10.4 24 14.6 24 21.0 999.9 47.3* 37.4* 99.99 999.9 011000 724050 13743 19501112 37.9 24 23.0 24 1027.9 24 1027.3 24 11.0 24 11.2 24 18.1 999.9 46.4* 32.4* 0.00I 999.9 000000 724050 13743 19501113 38.5 24 24.0 23 1028.1 24 1027.4 24 6.1 24 1.5 24 7.0 999.9 49.3* 31.3* 0.00I 999.9 100000 724050 13743 19501114 42.5 24 28.0 24 1031.4 24 1030.7 24 6.8 24 1.6 24 8.9 999.9 56.3* 31.3* 0.00I 999.9 000000 724050 13743 19501115 45.7 24 35.5 24 1030.3 24 1029.6 24 6.8 24 6.2 24 20.0 999.9 60.3* 36.3* 0.00I 999.9 000000 724050 13743 19501116 56.8 24 46.1 24 1021.2 24 1020.5 24 10.5 24 7.1 24 18.1 999.9 70.3* 48.4* 0.00I 999.9 000000 724050 13743 19501117 54.2 24 39.7 24 1015.4 24 1014.7 24 12.5 24 14.9 24 20.0 999.9 66.4* 45.3* 0.00I 999.9 000000 724050 13743 19501118 45.8 23 28.3 23 1018.4 23 1017.7 23 12.1 23 12.7 23 23.9 999.9 53.4* 42.4* 0.00I 999.9 000000 724050 13743 19501119 46.3 24 28.0 24 1019.8 24 1019.1 24 9.9 24 6.8 24 16.9 999.9 56.3* 38.3* 0.00I 999.9 000000 724050 13743 19501120 57.3 24 46.6 23 1009.7 24 1009.0 24 11.4 24 13.3 24 21.0 999.9 65.3* 49.3* 99.99 999.9 010000 724050 13743 19501121 40.4 24 28.7 24 1008.5 24 1007.9 24 12.7 24 23.7 24 32.1 999.9 47.3* 37.4* 99.99 999.9 010010 724050 13743 19501122 36.3 24 23.3 24 1016.7 24 1016.0 24 12.4 24 3.9 24 15.9 999.9 47.3* 28.4* 0.00I 999.9 000000 724050 13743 19501123 45.1 24 29.6 24 1018.3 24 1017.6 24 10.6 24 3.3 24 9.9 999.9 55.4* 39.4* 99.99 999.9 011000 724050 13743 19501124 47.1 24 41.4 24 1019.2 24 1018.5 24 8.2 24 6.2 24 20.0 999.9 57.4* 39.4* 0.00I 999.9 100000 724050 13743 19501125 45.9 24 43.3 24 997.1 24 996.4 24 7.3 24 14.9 24 26.0 999.9 58.3* 22.5* 99.99 999.9 111010 724050 13743 19501126 23.9 24 13.3 24 1002.3 24 1001.6 24 11.4 24 14.8 24 21.0 999.9 31.3* 18.3* 99.99 999.9 001000 724050 13743 19501127 33.0 24 23.5 24 1007.9 24 1007.2 24 9.4 24 4.8 24 18.1 999.9 41.4* 26.4* 99.99 999.9 001000 724050 13743 19501128 34.2 24 24.5 24 1009.3 24 1008.6 24 8.6 24 11.5 24 19.0 999.9 38.3* 31.3* 0.00I 999.9 000000 724050 13743 19501129 33.9 24 21.5 24 1009.2 24 1008.5 24 9.0 24 11.5 24 22.9 999.9 40.3* 29.3* 99.99 999.9 001000 724050 13743 19501130 35.2 24 24.0 24 1010.1 24 1009.4 24 11.0 24 8.1 24 18.1 999.9 42.4* 29.3* 0.00I 999.9 000000 724050 13743 19501201 38.9 24 22.5 24 1017.3 24 1016.6 24 13.8 24 8.0 24 15.9 999.9 46.4* 33.4* 0.00I 999.9 000000 724050 13743 19501202 41.4 24 24.3 24 1020.9 24 1020.2 24 8.1 24 0.7 24 4.1 999.9 52.3* 35.4* 0.00I 999.9 000000 724050 13743 19501203 51.1 24 43.9 24 1012.9 24 1012.3 24 6.2 24 5.4 24 18.1 999.9 69.3* 38.3* 0.00I 999.9 100000 724050 13743 19501204 51.3 24 48.0 24 998.7 24 998.0 24 6.9 24 18.1 24 26.0 999.9 64.4* 34.3* 99.99 999.9 111000 724050 13743 19501205 39.6 24 27.7 24 1016.1 24 1015.5 24 13.8 24 17.9 24 28.0 999.9 46.4* 35.4* 99.99 999.9 001000 724050 13743 19501206 37.3 24 26.9 24 1028.9 24 1028.3 24 11.1 24 6.4 24 9.9 999.9 45.3* 31.3* 0.00I 999.9 000000 724050 13743 19501207 47.5 24 43.6 24 1022.3 24 1021.6 24 6.1 24 13.2 24 22.9 999.9 57.4* 41.4* 99.99 999.9 110000 724050 13743 19501208 43.7 24 32.9 24 1017.7 24 1017.1 24 10.2 24 11.7 24 23.9 999.9 58.3* 37.4* 99.99 999.9 110000 724050 13743 19501209 36.6 24 19.4 24 1018.7 24 1018.0 24 12.7 24 6.7 24 11.1 999.9 44.4* 30.4* 0.00I 999.9 000000 724050 13743 19501210 38.4 24 28.9 24 1011.8 24 1011.1 24 8.1 24 6.0 24 18.1 999.9 41.4* 33.4* 99.99 999.9 111000 724050 13743 19501211 34.9 24 30.3 24 1000.7 24 1000.0 24 3.7 24 13.0 24 19.0 999.9 38.3* 33.4* 99.99 999.9 001000 724050 13743 19501212 34.2 23 23.9 23 1005.4 23 1004.7 23 10.2 23 9.8 23 16.9 999.9 37.4* 32.4* 0.00I 999.9 000000 724050 13743 19501213 31.6 24 19.9 24 1013.8 24 1013.1 24 10.2 24 4.6 24 12.0 999.9 37.4* 25.3* 0.00I 999.9 000000 724050 13743 19501214 32.1 24 21.5 24 1017.7 24 1017.0 24 6.8 24 3.4 24 9.9 999.9 40.3* 25.3* 0.00I 999.9 000000 724050 13743 19501215 40.2 24 29.4 24 1012.8 24 1012.1 24 8.6 24 8.1 24 15.9 999.9 48.4* 35.4* 99.99 999.9 010000 724050 13743 19501216 35.2 24 26.0 24 1015.1 24 1014.4 24 8.7 24 18.7 24 30.9 999.9 38.3* 31.3* 99.99 999.9 010000 724050 13743 19501217 30.9 24 19.8 24 1019.7 24 1019.1 24 8.2 24 5.0 24 15.0 999.9 36.3* 27.3* 0.00I 999.9 000000 724050 13743 19501218 26.4 24 14.8 24 1020.1 24 1019.4 24 8.7 24 16.2 24 20.0 999.9 32.4* 20.3* 0.00I 999.9 000000 724050 13743 19501219 27.0 24 13.9 24 1023.4 24 1022.7 24 9.4 24 10.9 24 19.0 999.9 32.4* 22.5* 0.00I 999.9 000000 724050 13743 19501220 24.9 24 17.8 21 1026.2 24 1025.5 24 3.8 24 1.8 24 8.9 999.9 32.4* 19.4* 99.99 999.9 001000 724050 13743 19501221 27.1 24 17.5 24 1031.7 24 1031.0 24 4.6 24 8.4 24 14.0 999.9 35.4* 21.4* 0.00I 999.9 000000 724050 13743 19501222 30.0 24 22.3 24 1024.7 24 1024.0 24 3.9 24 8.1 24 15.0 999.9 34.3* 26.4* 99.99 999.9 001000 724050 13743 19501223 34.9 24 29.7 24 1020.4 24 1019.8 24 3.5 24 2.9 24 9.9 999.9 45.3* 25.3* 0.00I 999.9 000000 724050 13743 19501224 45.3 24 34.2 24 1007.7 24 1007.0 24 7.8 24 12.3 24 22.0 999.9 58.3* 40.3* 99.99 999.9 010000 724050 13743 19501225 34.3 24 22.2 24 1012.6 24 1011.9 24 14.4 24 13.3 24 25.1 999.9 45.3* 28.4* 0.00I 999.9 000000 724050 13743 19501226 29.9 24 18.8 24 1014.5 24 1013.8 24 10.9 24 7.8 24 18.1 999.9 36.3* 26.4* 99.99 999.9 001000 724050 13743 19501227 21.3 24 6.7 24 1027.2 24 1026.5 24 13.8 24 12.4 24 22.0 999.9 27.3* 15.4* 0.00I 999.9 000000 724050 13743 19501228 23.2 24 12.3 24 1027.5 24 1026.8 24 7.8 24 1.1 24 5.1 999.9 31.3* 18.3* 0.00I 999.9 000000 724050 13743 19501229 32.1 24 27.6 24 1017.4 24 1016.7 24 4.1 24 7.0 24 9.9 999.9 36.3* 28.4* 99.99 999.9 110000 724050 13743 19501230 32.7 24 30.1 24 1016.4 24 1015.7 24 2.0 24 0.6 24 7.0 999.9 41.4* 26.4* 0.00I 999.9 100000 724050 13743 19501231 37.2 24 32.1 24 1014.6 24 1013.9 24 4.4 24 8.3 24 22.9 999.9 41.4* 34.3* 99.99 999.9 110000 fluids-1.0.22/tests/gsod/1971/0000755000175000017500000000000014302004506015101 5ustar nileshnileshfluids-1.0.22/tests/gsod/1971/724050-13743.op0000644000175000017500000000001114302004506016651 0ustar nileshnileshExceptionfluids-1.0.22/tests/gsod/2011/0000755000175000017500000000000014302004506015063 5ustar nileshnileshfluids-1.0.22/tests/gsod/2011/724050-13743.op0000644000175000017500000014327214302004506016654 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20110101 43.8 24 37.0 24 1020.0 23 1017.6 24 9.2 24 4.3 24 11.1 999.9 57.9 32.0 0.00G 999.9 010000 724050 13743 20110102 51.6 24 45.2 24 1015.9 18 1013.4 24 9.1 24 8.5 24 15.9 24.1 59.0 34.0 0.01G 999.9 010000 724050 13743 20110103 35.2 24 13.5 24 1023.2 24 1020.9 24 10.0 24 10.9 24 15.9 22.0 59.0 28.0 0.06G 999.9 000000 724050 13743 20110104 32.9 24 19.7 24 1018.7 24 1016.4 24 10.0 24 5.9 24 12.0 999.9 43.0 25.0 0.00G 999.9 000000 724050 13743 20110105 37.0 24 17.0 24 1013.8 24 1011.5 24 10.0 24 7.0 24 14.0 20.0 43.0 25.0 0.00G 999.9 000000 724050 13743 20110106 33.7 24 16.9 24 1008.0 24 1005.7 24 10.0 24 3.1 24 7.0 999.9 43.0 28.0 0.00G 999.9 000000 724050 13743 20110107 34.0 24 17.7 24 998.9 24 996.6 24 10.0 24 6.7 24 12.0 18.1 41.0 28.2 0.00G 999.9 001000 724050 13743 20110108 31.7 24 16.4 24 998.8 20 996.0 24 9.2 24 7.7 24 20.0 28.0 35.1 28.0 0.00G 999.9 101000 724050 13743 20110109 27.6 24 7.2 24 1015.4 24 1013.2 24 10.0 24 13.4 24 19.0 31.1 36.0 23.0 0.02G 999.9 000000 724050 13743 20110110 29.1 24 11.2 24 1027.2 24 1024.9 24 10.0 24 8.9 24 15.0 19.0 36.0 23.0 0.00G 999.9 000000 724050 13743 20110111 30.8 24 17.4 24 1024.4 20 1021.2 24 9.5 24 4.6 24 8.0 999.9 35.1 25.0 0.00G 999.9 011000 724050 13743 20110112 31.1 24 21.5 24 1012.3 21 1010.1 24 8.2 24 8.3 24 21.0 29.9 36.0 27.0 0.11G 1.2 101000 724050 13743 20110113 31.0 24 13.7 24 1023.2 24 1020.9 24 10.0 24 11.8 24 15.9 35.9 37.0 26.1 0.00G 1.2 000000 724050 13743 20110114 29.6 24 13.2 24 1029.5 24 1027.2 24 10.0 24 6.7 24 14.0 21.0 37.0 23.0 0.00G 999.9 000000 724050 13743 20110115 34.2 24 18.9 24 1022.7 24 1020.4 24 10.0 24 4.1 24 11.1 999.9 46.0 23.0 0.00G 999.9 000000 724050 13743 20110116 39.1 24 20.1 24 1018.4 24 1016.1 24 10.0 24 7.6 24 13.0 22.0 46.0 28.2 0.00G 999.9 000000 724050 13743 20110117 32.1 24 14.1 24 1025.1 24 1022.8 24 10.0 24 6.4 24 8.9 999.9 42.1 30.9 0.00G 999.9 001000 724050 13743 20110118 32.4 24 28.6 24 1013.6 19 1012.5 24 5.8 24 8.8 24 14.0 19.0 36.0 28.9 0.43G 999.9 011000 724050 13743 20110119 39.9 24 34.7 24 1009.0 22 1006.5 24 5.6 24 5.0 24 15.0 21.0 53.1 30.2 0.02G 999.9 110000 724050 13743 20110120 40.6 24 24.1 24 1017.5 24 1015.2 24 10.0 24 8.1 24 17.1 21.0 53.1 35.1 0.00I 999.9 000000 724050 13743 20110121 34.8 24 17.1 24 1009.6 21 1006.3 24 9.7 24 12.0 24 21.0 31.1 44.1 26.1 0.01G 999.9 011000 724050 13743 20110122 21.4 24 -0.1 24 1016.9 24 1014.7 24 10.0 24 8.4 24 15.0 21.0 37.9 17.1 0.00I 999.9 000000 724050 13743 20110123 23.9 24 4.9 24 1018.0 24 1015.8 24 10.0 24 7.7 24 17.1 22.0 32.0 17.1 0.00G 999.9 000000 724050 13743 20110124 23.4 24 4.5 24 1029.9 24 1027.6 24 10.0 24 6.1 24 9.9 999.9 32.0 17.1 0.00G 999.9 000000 724050 13743 20110125 34.1 24 21.7 24 1023.6 24 1021.3 24 10.0 24 5.0 24 9.9 999.9 46.0 17.1 0.00G 999.9 000000 724050 13743 20110126 35.5 24 30.1 24 1014.2 14 1010.1 24 4.9 24 9.0 24 18.1 22.9 46.0 29.1 0.22G 2.0 011010 724050 13743 20110127 34.9 24 26.2 24 1012.3 20 1008.7 24 8.2 24 9.8 24 18.1 24.1 37.4* 32.0* 1.30G 3.9 001000 724050 13743 20110128 32.8 24 27.5 24 1011.8 17 1009.1 24 7.8 24 3.7 24 8.0 999.9 37.0 30.0 0.00G 3.9 001000 724050 13743 20110129 34.3 24 23.3 24 1014.8 24 1012.1 20 9.9 24 6.0 24 13.0 17.1 37.9 28.9 0.07G 3.1 000000 724050 13743 20110130 33.8 24 25.9 24 1019.1 24 1016.8 24 8.7 24 2.1 24 8.9 999.9 44.1 27.0 0.00G 2.0 000000 724050 13743 20110131 33.2 24 21.3 24 1029.2 24 1026.9 24 10.0 24 7.2 24 12.0 999.9 44.1 27.1 0.00G 2.0 000000 724050 13743 20110201 31.7 24 25.3 24 1025.5 15 1023.5 24 6.3 24 1.8 24 6.0 999.9 37.9* 28.4* 0.00G 2.0 011000 724050 13743 20110202 39.1 24 34.8 24 1012.9 14 1009.9 24 5.4 24 6.6 24 20.0 33.0 52.0 29.1 0.76G 1.2 110000 724050 13743 20110203 33.5 24 14.0 24 1026.7 24 1024.7 24 10.0 24 12.4 24 20.0 33.0 52.0 28.9 0.66G 1.2 000000 724050 13743 20110204 33.8 24 18.6 24 1027.9 24 1025.6 24 10.0 24 4.0 24 8.9 999.9 42.1 28.0 0.00G 1.2 000000 724050 13743 20110205 36.1 24 32.3 24 1015.3 16 1010.5 24 5.8 24 4.7 24 15.9 20.0 42.1 28.2 0.01G 999.9 010000 724050 13743 20110206 41.5 24 29.4 24 1011.9 24 1009.0 24 9.8 24 6.6 24 15.0 21.0 48.9 34.0 0.13G 999.9 010000 724050 13743 20110207 39.4 24 30.5 24 1015.9 24 1013.7 24 9.3 24 1.8 24 6.0 999.9 50.0 30.0 0.00G 999.9 000000 724050 13743 20110208 38.8 24 25.6 24 1010.1 24 1007.8 24 10.0 24 10.5 24 21.0 29.9 50.0 30.9 0.01G 999.9 010000 724050 13743 20110209 27.3 24 5.8 24 1025.5 24 1023.3 24 10.0 24 8.6 24 17.1 27.0 41.0 19.0 0.00H 999.9 001000 724050 13743 20110210 29.0 24 12.5 24 1019.8 22 1017.5 24 8.9 24 9.1 24 15.0 20.0 34.0 19.0 0.01G 999.9 001000 724050 13743 20110211 30.6 24 11.5 24 1021.9 24 1019.7 24 10.0 24 3.5 24 8.9 999.9 44.1 21.9 0.00G 999.9 000000 724050 13743 20110212 34.8 24 19.6 24 1016.9 24 1014.6 24 10.0 24 7.0 24 19.0 27.0 46.9 21.9 0.00G 999.9 000000 724050 13743 20110213 40.9 24 21.7 24 1019.6 24 1017.3 24 10.0 24 7.8 24 17.1 25.1 54.0 23.2 0.00G 999.9 000000 724050 13743 20110214 54.0 24 25.8 24 1007.8 24 1005.4 24 10.0 24 13.6 24 24.1 38.1 70.0 32.0 0.00G 999.9 000000 724050 13743 20110215 41.7 24 13.6 24 1023.7 24 1021.3 24 10.0 24 14.6 24 28.0 40.0 50.0* 33.1* 0.00G 999.9 000000 724050 13743 20110216 41.9 24 19.1 24 1028.5 24 1026.2 24 10.0 24 7.8 24 15.0 22.0 57.9 32.0 0.00G 999.9 000000 724050 13743 20110217 52.6 24 32.8 24 1021.7 24 1019.3 24 10.0 24 7.4 24 11.1 18.1 72.0 32.0 0.00G 999.9 000000 724050 13743 20110218 61.1 24 46.0 24 1013.3 24 1011.0 24 10.0 24 9.0 24 21.0 31.1 77.0 43.0 0.00G 999.9 000000 724050 13743 20110219 56.5 24 11.4 24 1013.3 24 1011.0 24 10.0 24 17.5 24 28.0 46.0 77.0 46.9 0.00G 999.9 000000 724050 13743 20110220 40.8 24 15.7 24 1022.8 24 1020.5 24 10.0 24 11.0 24 20.0 34.0 57.9 32.0 0.00G 999.9 000000 724050 13743 20110221 45.1 24 28.7 24 1009.5 24 1007.2 24 9.6 24 8.5 24 15.9 20.0 55.0 32.0 0.00G 999.9 011000 724050 13743 20110222 31.9 24 23.6 24 1018.7 17 1014.4 24 8.2 24 9.5 24 18.1 22.9 37.9* 26.6* 0.21G 999.9 011000 724050 13743 20110223 34.1 24 12.8 24 1026.7 24 1024.4 24 10.0 24 5.0 24 9.9 999.9 46.0 25.0 0.07G 999.9 000000 724050 13743 20110224 40.4 24 27.5 24 1023.4 24 1021.1 24 10.0 24 7.2 24 15.9 24.1 53.1 25.2 0.00G 999.9 010000 724050 13743 20110225 49.8 24 42.9 24 1008.5 17 1003.2 24 7.2 24 12.1 24 32.1 49.9 66.9 31.1 0.13G 999.9 010000 724050 13743 20110226 41.1 24 23.9 24 1021.1 24 1018.9 24 10.0 24 8.3 24 22.0 27.0 48.9* 36.0* 0.20G 999.9 000000 724050 13743 20110227 44.7 24 34.5 24 1015.0 24 1012.7 24 10.0 24 5.1 24 9.9 999.9 60.1 35.1 0.00G 999.9 000000 724050 13743 20110228 52.1 24 46.1 24 1010.2 20 1007.3 24 7.2 24 7.6 24 22.0 31.1 72.0 36.0 0.14G 999.9 010010 724050 13743 20110301 41.8 24 27.9 24 1021.5 24 1018.5 24 10.0 24 9.6 24 22.0 28.0 55.9* 33.1* 0.52G 999.9 010000 724050 13743 20110302 44.5 24 25.8 24 1023.2 24 1020.8 24 10.0 24 8.7 24 19.0 28.0 64.0 33.1 0.00G 999.9 000000 724050 13743 20110303 36.1 24 7.1 24 1034.1 24 1031.8 24 10.0 24 10.9 24 20.0 28.0 64.0 27.0 0.00G 999.9 000000 724050 13743 20110304 37.3 24 21.9 24 1037.2 24 1034.9 24 10.0 24 6.6 24 11.1 999.9 50.0 27.1 0.00G 999.9 000000 724050 13743 20110305 47.8 24 40.7 24 1028.5 23 1026.5 24 9.9 24 8.4 24 13.0 19.0 60.1 30.2 0.00G 999.9 010000 724050 13743 20110306 53.4 24 50.3 24 1014.6 20 1011.4 24 8.7 24 11.3 24 15.9 29.9 60.1 42.1 0.00G 999.9 010000 724050 13743 20110307 38.6 24 27.1 24 1016.1 21 1011.9 24 9.0 24 15.2 24 25.1 36.9 57.9 33.1 1.41G 999.9 011000 724050 13743 20110308 41.7 24 18.1 24 1030.5 24 1028.1 24 10.0 24 4.1 24 8.0 999.9 52.0 32.0 0.02G 999.9 000000 724050 13743 20110309 41.9 24 31.8 24 1031.7 23 1029.7 24 10.0 24 7.4 24 14.0 19.0 52.0 32.0 0.00G 999.9 000000 724050 13743 20110310 50.0 24 49.0 24 1019.6 13 1014.5 24 6.1 24 9.3 24 17.1 24.1 55.9 36.0 0.61G 999.9 010000 724050 13743 20110311 46.0 24 37.7 24 1009.7 22 1006.6 24 9.5 24 8.7 24 26.0 35.0 55.9 39.0 0.86G 999.9 010000 724050 13743 20110312 43.5 24 29.5 24 1014.1 24 1012.0 24 10.0 24 9.1 24 18.1 29.9 57.9 34.0 0.02G 999.9 000000 724050 13743 20110313 51.9 24 35.0 24 1015.9 24 1013.5 24 10.0 24 7.8 24 15.0 22.9 59.0 34.0 0.00G 999.9 000000 724050 13743 20110314 44.4 24 26.9 24 1027.1 24 1024.8 24 10.0 24 6.3 24 13.0 19.0 59.0 37.0 0.00G 999.9 000000 724050 13743 20110315 44.2 24 30.4 24 1029.9 24 1027.6 24 10.0 24 6.0 24 12.0 22.0 53.1 35.1 0.00G 999.9 000000 724050 13743 20110316 46.6 24 41.6 24 1021.3 18 1019.3 24 8.9 24 6.6 24 12.0 22.0 57.0 35.1 0.64G 999.9 010000 724050 13743 20110317 53.1 24 38.6 24 1023.2 24 1020.8 24 10.0 24 8.1 24 14.0 20.0 64.0 41.0 0.41G 999.9 000000 724050 13743 20110318 60.0 24 43.5 24 1016.1 24 1013.7 24 10.0 24 8.7 24 13.0 15.9 80.1 43.0 0.00G 999.9 000000 724050 13743 20110319 62.1 24 37.6 24 1021.0 24 1018.7 24 10.0 24 12.6 24 22.0 27.0 80.1 48.0 0.00G 999.9 000000 724050 13743 20110320 46.7 24 25.5 24 1034.5 24 1032.2 24 10.0 24 7.6 24 15.0 999.9 68.0 37.9 0.00G 999.9 000000 724050 13743 20110321 51.2 24 40.7 24 1022.0 22 1020.3 24 9.7 24 10.9 24 15.0 21.0 70.0 37.9 0.16G 999.9 010010 724050 13743 20110322 57.1 24 45.4 24 1013.3 24 1011.0 24 9.7 24 7.8 24 17.1 21.0 70.0 43.0 0.03G 999.9 000000 724050 13743 20110323 48.5 24 41.2 24 1008.7 21 1006.7 24 9.6 24 7.7 24 13.0 999.9 55.9* 44.6* 0.01G 999.9 010000 724050 13743 20110324 42.8 24 38.7 24 1004.9 17 1001.8 24 8.2 24 9.4 24 24.1 29.9 52.0 39.0 0.42G 999.9 010010 724050 13743 20110325 39.1 24 23.4 24 1016.1 24 1013.8 24 10.0 24 8.7 24 14.0 20.0 48.9 32.0 0.05G 999.9 000000 724050 13743 20110326 39.9 24 16.0 24 1017.5 24 1015.2 24 10.0 24 7.6 24 12.0 15.9 48.9 32.0 0.00G 999.9 000000 724050 13743 20110327 38.6 24 20.5 24 1016.9 24 1014.6 24 8.9 24 7.1 24 9.9 15.0 46.0* 30.2* 0.02G 999.9 001000 724050 13743 20110328 38.6 24 12.0 24 1018.5 24 1016.4 24 10.0 24 7.9 24 12.0 20.0 46.9 30.9 0.00I 999.9 000000 724050 13743 20110329 42.3 24 11.1 24 1021.7 24 1019.4 24 10.0 24 9.0 24 14.0 19.0 51.1 31.1 0.00G 999.9 000000 724050 13743 20110330 44.7 24 27.1 24 1021.2 22 1018.4 24 9.2 24 5.0 24 15.9 999.9 51.1 34.0 0.00G 999.9 011000 724050 13743 20110331 39.2 24 37.2 24 1008.6 12 1008.1 24 6.8 24 8.0 24 11.1 999.9 48.0 37.0 0.16G 999.9 011000 724050 13743 20110401 42.6 24 34.7 24 1001.5 21 999.4 24 8.6 24 10.0 24 17.1 25.1 50.0 37.0 0.11G 999.9 010000 724050 13743 20110402 44.0 24 32.2 24 1004.7 24 1002.3 24 9.7 24 7.4 24 24.1 35.9 52.0 36.0 0.08G 999.9 010100 724050 13743 20110403 48.5 24 30.0 24 1015.6 24 1013.3 24 10.0 24 7.5 24 18.1 24.1 60.1 36.0 0.04G 999.9 000000 724050 13743 20110404 62.2 24 38.9 24 1007.1 24 1005.5 24 10.0 24 11.6 24 22.0 31.1 84.9 39.9 0.00G 999.9 010010 724050 13743 20110405 59.9 24 44.7 24 999.6 19 996.2 24 9.4 24 15.0 24 32.1 48.0 84.9 44.1 0.24G 999.9 010010 724050 13743 20110406 48.5 24 28.5 24 1015.8 24 1013.5 24 10.0 24 10.0 24 19.0 25.1 71.1 36.0 0.18G 999.9 000000 724050 13743 20110407 55.9 24 38.9 24 1015.6 24 1013.2 24 9.8 24 6.3 24 11.1 999.9 69.1 36.0 0.00G 999.9 000000 724050 13743 20110408 48.4 24 41.5 24 1021.4 21 1018.7 24 8.5 24 7.6 24 15.9 21.0 57.9* 42.8* 0.02G 999.9 010000 724050 13743 20110409 45.2 24 42.0 24 1021.0 20 1018.9 24 8.8 24 6.4 24 15.0 19.0 51.1 42.1 0.34G 999.9 010000 724050 13743 20110410 52.6 24 48.6 24 1019.8 22 1017.7 24 9.2 24 4.8 24 8.0 18.1 63.0 42.1 0.01G 999.9 000000 724050 13743 20110411 65.1 24 57.5 24 1009.2 23 1007.3 24 10.0 24 11.3 24 19.0 26.0 84.0 48.9 0.00G 999.9 000000 724050 13743 20110412 66.0 24 54.0 24 1005.8 22 1003.7 24 9.5 24 10.4 24 19.0 32.1 80.1* 53.6* 0.00G 999.9 010000 724050 13743 20110413 52.5 24 48.4 24 1010.6 16 1008.1 24 8.5 24 9.2 24 14.0 20.0 57.9* 48.2* 0.44G 999.9 010000 724050 13743 20110414 56.9 24 39.9 24 1017.5 24 1014.9 24 10.0 24 5.0 24 8.9 999.9 71.1 46.0 0.06G 999.9 000000 724050 13743 20110415 57.5 24 44.1 24 1023.8 24 1021.5 24 10.0 24 6.8 24 18.1 24.1 71.1 46.0 0.00G 999.9 000000 724050 13743 20110416 53.5 24 49.2 24 1018.0 18 1013.6 24 9.0 24 14.0 24 38.1 49.9 64.9 48.0 0.00G 999.9 010010 724050 13743 20110417 56.3 24 39.8 24 1007.1 24 1004.3 24 9.8 24 10.9 24 19.0 27.0 66.9 46.9 0.60G 999.9 010000 724050 13743 20110418 61.0 24 43.3 24 1013.0 24 1010.7 24 10.0 24 5.3 24 13.0 999.9 73.9 46.9 0.00G 999.9 000000 724050 13743 20110419 62.4 24 48.0 24 1014.6 24 1012.3 24 10.0 24 6.5 24 11.1 999.9 73.9 51.1 0.00G 999.9 010010 724050 13743 20110420 65.9 24 53.7 24 1011.4 24 1009.0 24 9.5 24 8.2 24 20.0 27.0 86.0 52.0 0.01G 999.9 000000 724050 13743 20110421 61.1 24 36.5 24 1019.9 24 1017.6 24 10.0 24 12.4 24 21.0 31.1 79.0 52.0 0.00G 999.9 000000 724050 13743 20110422 48.2 24 34.3 24 1028.9 24 1026.6 24 9.3 24 7.6 24 11.1 999.9 63.0 44.1 0.00G 999.9 010000 724050 13743 20110423 52.5 24 49.3 24 1020.4 18 1018.8 24 7.9 24 7.5 24 15.0 18.1 70.0* 42.8* 0.41G 999.9 010000 724050 13743 20110424 67.8 24 60.3 24 1016.0 24 1013.7 24 9.2 24 7.2 24 14.0 21.0 84.9 45.0 0.05G 999.9 000000 724050 13743 20110425 69.3 24 62.8 24 1015.3 18 1013.6 24 8.0 24 5.8 24 17.1 25.1 84.9 57.0 0.74G 999.9 110110 724050 13743 20110426 72.6 24 62.0 24 1012.9 22 1011.0 24 10.0 24 11.7 24 15.9 25.1 82.9 57.9 0.00G 999.9 000000 724050 13743 20110427 71.7 24 65.9 24 1012.5 22 1010.1 24 10.0 24 11.1 24 18.1 25.1 82.9 64.0 0.00G 999.9 010010 724050 13743 20110428 72.8 24 65.8 24 1005.8 22 1003.7 24 9.7 24 12.7 24 19.0 28.0 80.1 66.0 0.01G 999.9 010010 724050 13743 20110429 63.9 24 41.2 24 1009.8 24 1007.3 24 10.0 24 8.7 24 14.0 24.1 77.0 54.0 0.03G 999.9 000000 724050 13743 20110430 58.2 24 38.9 24 1018.8 24 1016.5 24 10.0 24 9.1 24 14.0 19.0 70.0 51.1 0.00G 999.9 000000 724050 13743 20110501 56.5 24 47.3 24 1024.7 24 1022.3 24 10.0 24 4.4 24 8.9 999.9 68.0 51.1 0.01G 999.9 000000 724050 13743 20110502 62.8 24 54.2 24 1022.3 24 1020.0 24 10.0 24 6.0 24 12.0 999.9 77.0 51.1 0.01G 999.9 010000 724050 13743 20110503 70.9 24 60.7 24 1016.7 24 1014.4 24 9.7 24 10.7 24 22.0 28.9 81.0 55.0 0.00G 999.9 000000 724050 13743 20110504 57.4 24 48.4 24 1017.3 19 1014.9 24 9.1 24 12.5 24 19.0 29.9 81.0 46.0 0.37G 999.9 010000 724050 13743 20110505 55.2 24 34.9 24 1020.8 24 1018.6 24 10.0 24 11.1 24 21.0 26.0 68.0 46.0 0.21G 999.9 000000 724050 13743 20110506 59.2 24 40.6 24 1015.2 23 1012.7 24 10.0 24 8.3 24 22.0 27.0 71.1 46.0 0.00G 999.9 010010 724050 13743 20110507 61.5 24 45.0 24 1012.9 24 1010.6 24 10.0 24 5.9 24 11.1 17.1 72.0 46.0 0.00G 999.9 010010 724050 13743 20110508 63.9 24 47.6 24 1012.9 24 1010.6 24 10.0 24 4.0 24 9.9 20.0 73.9 51.1 0.00G 999.9 010000 724050 13743 20110509 63.3 24 49.2 24 1014.6 24 1012.3 24 10.0 24 5.8 24 11.1 18.1 73.9 53.1 0.00G 999.9 000000 724050 13743 20110510 63.6 24 43.4 24 1015.8 24 1013.5 24 10.0 24 4.7 24 8.9 15.0 75.9 52.0 0.00G 999.9 000000 724050 13743 20110511 65.1 24 50.4 24 1016.5 24 1014.3 24 10.0 24 4.2 24 11.1 999.9 77.0 52.0 0.00G 999.9 000000 724050 13743 20110512 62.9 24 53.6 24 1017.6 24 1015.5 24 10.0 24 6.7 24 11.1 999.9 77.0 54.0 0.00G 999.9 000000 724050 13743 20110513 62.9 24 58.2 24 1013.1 19 1010.9 24 9.5 24 6.3 24 14.0 999.9 73.9 54.0 0.00G 999.9 010000 724050 13743 20110514 61.9 24 59.0 24 1008.4 19 1006.5 24 8.5 24 5.2 24 9.9 999.9 66.9 59.0 0.00G 999.9 010000 724050 13743 20110515 66.5 24 62.7 24 1001.3 17 999.7 24 9.0 24 6.2 24 14.0 22.9 75.0 59.0 0.48G 999.9 010010 724050 13743 20110516 67.3 24 59.7 24 1002.5 23 1000.3 24 9.6 24 4.9 24 11.1 21.0 80.1 61.0 0.00G 999.9 010010 724050 13743 20110517 66.7 24 61.4 24 1005.8 17 1003.4 24 9.8 24 10.0 24 17.1 25.1 80.1 61.0 0.19G 999.9 010000 724050 13743 20110518 65.7 24 61.0 24 1009.0 20 1006.8 24 9.5 24 8.3 24 15.0 17.1 73.0 62.1 0.05G 999.9 010000 724050 13743 20110519 63.8 24 58.8 24 1013.6 23 1011.3 24 10.0 24 2.8 24 8.9 999.9 72.0 57.9 0.16G 999.9 010010 724050 13743 20110520 63.8 24 54.3 24 1016.0 22 1013.9 24 10.0 24 5.6 24 11.1 17.1 72.0 55.0 0.12G 999.9 010010 724050 13743 20110521 68.9 24 55.1 24 1015.2 24 1013.0 24 10.0 24 4.8 24 9.9 999.9 82.9 55.0 0.00G 999.9 000000 724050 13743 20110522 70.2 24 60.0 24 1016.6 24 1014.3 24 10.0 24 4.9 24 8.9 999.9 82.9 57.0 0.00G 999.9 010000 724050 13743 20110523 71.9 24 64.7 24 1014.4 21 1012.2 24 8.9 24 8.0 24 19.0 28.0 82.9 60.1 0.02G 999.9 010000 724050 13743 20110524 75.3 24 66.0 24 1010.1 23 1007.8 24 7.9 24 7.8 24 15.0 21.0 87.1 64.0 0.03B 999.9 010010 724050 13743 20110525 75.2 24 64.3 24 1012.4 24 1010.0 24 10.0 24 5.6 24 13.0 999.9 87.1 64.9 0.00H 999.9 010010 724050 13743 20110526 78.6 24 67.1 24 1010.8 24 1008.5 24 8.6 24 7.0 24 13.0 18.1 91.9 64.9 0.00G 999.9 000000 724050 13743 20110527 79.6 24 64.9 24 1012.9 24 1010.6 24 10.0 24 8.7 24 29.9 39.0 91.9 68.0 0.00G 999.9 010010 724050 13743 20110528 73.5 24 64.2 24 1015.4 23 1013.1 24 9.9 24 8.6 24 19.0 39.0 86.0 66.0 0.06G 999.9 010010 724050 13743 20110529 75.4 24 68.9 24 1017.9 22 1015.7 24 10.0 24 8.3 24 11.1 999.9 84.0 66.0 0.00G 999.9 000000 724050 13743 20110530 81.8 24 69.9 24 1019.4 24 1017.0 24 8.6 24 5.4 24 9.9 15.0 96.1 69.1 0.00G 999.9 000000 724050 13743 20110531 85.5 24 70.2 24 1020.8 24 1018.4 24 8.7 24 3.8 24 8.0 999.9 98.1 71.1 0.00G 999.9 000000 724050 13743 20110601 85.1 24 71.6 24 1019.7 22 1016.9 24 7.5 24 7.0 24 14.0 24.1 98.1 75.9 0.00G 999.9 010110 724050 13743 20110602 81.6 24 51.8 24 1016.2 24 1013.8 24 9.6 24 10.6 24 19.0 28.0 98.1 73.9 0.16G 999.9 000000 724050 13743 20110603 72.3 24 41.7 24 1019.9 24 1017.6 24 10.0 24 9.9 24 13.0 18.1 81.0* 62.6* 0.00G 999.9 000000 724050 13743 20110604 72.4 24 46.8 24 1019.8 24 1017.5 24 10.0 24 4.3 24 15.0 999.9 84.9 61.0 0.01G 999.9 000000 724050 13743 20110605 74.5 24 59.5 24 1016.0 24 1013.7 24 10.0 24 4.7 24 8.9 999.9 84.9 61.0 0.00G 999.9 000000 724050 13743 20110606 76.5 24 60.6 24 1015.9 24 1013.6 24 9.6 24 5.1 24 9.9 999.9 88.0 66.0 0.00G 999.9 000000 724050 13743 20110607 78.5 24 62.1 24 1015.7 24 1013.4 24 9.9 24 6.5 24 12.0 18.1 90.0 66.0 0.00G 999.9 000000 724050 13743 20110608 84.1 24 67.7 24 1014.1 24 1011.7 24 9.2 24 5.0 24 8.9 15.0 99.0 68.0 0.00G 999.9 000000 724050 13743 20110609 88.8 24 71.8 24 1012.8 24 1010.4 24 7.6 24 5.5 24 9.9 15.9 102.0 72.0 0.00G 999.9 000000 724050 13743 20110610 84.5 24 66.8 24 1013.4 22 1011.1 24 9.2 24 5.5 24 15.0 22.9 102.0 73.9 0.04G 999.9 010010 724050 13743 20110611 82.4 24 68.8 24 1013.1 23 1010.7 24 8.8 24 5.7 24 12.0 15.9 93.9 73.9 0.00B 999.9 000000 724050 13743 20110612 78.9 24 68.2 24 1010.8 24 1008.5 24 9.7 24 6.8 24 14.0 20.0 93.0 71.1 0.00G 999.9 010010 724050 13743 20110613 73.5 24 56.1 24 1012.6 24 1010.3 24 10.0 24 10.5 24 18.1 22.9 90.0 64.9 0.07G 999.9 000000 724050 13743 20110614 71.0 24 50.0 24 1013.0 24 1010.7 24 10.0 24 9.6 24 15.0 22.0 81.0 64.0 0.00G 999.9 010000 724050 13743 20110615 71.3 24 50.0 24 1014.4 24 1012.1 24 10.0 24 7.6 24 13.0 14.0 84.0 59.0 0.00G 999.9 000000 724050 13743 20110616 73.1 24 58.0 24 1012.9 23 1010.6 24 9.7 24 7.0 24 14.0 18.1 84.0 59.0 0.00G 999.9 010000 724050 13743 20110617 73.8 24 64.1 24 1012.1 20 1009.7 24 9.3 24 6.7 24 19.0 45.1 88.0 64.0 0.83G 999.9 010010 724050 13743 20110618 76.7 24 66.5 24 1011.9 24 1009.7 24 9.9 24 4.9 24 9.9 999.9 89.1 64.0 0.20G 999.9 010010 724050 13743 20110619 79.5 24 66.0 24 1009.8 24 1007.5 24 10.0 24 3.3 24 6.0 999.9 89.1 69.1 0.00G 999.9 010000 724050 13743 20110620 73.6 24 64.9 24 1011.4 24 1009.1 24 8.9 24 5.4 24 8.9 999.9 84.0 66.9 0.31G 999.9 010000 724050 13743 20110621 75.7 24 67.5 24 1013.4 24 1011.2 24 10.0 24 6.8 24 8.9 999.9 87.1 66.9 0.05G 999.9 010000 724050 13743 20110622 81.4 24 70.6 24 1011.8 24 1009.5 24 10.0 24 5.8 24 14.0 15.9 90.0 70.0 0.01G 999.9 010010 724050 13743 20110623 82.0 24 71.1 24 1008.3 24 1006.0 24 10.0 24 7.9 24 15.0 18.1 90.0 73.0 0.00G 999.9 010000 724050 13743 20110624 80.7 24 65.3 24 1006.3 24 1004.0 24 10.0 24 8.7 24 15.0 22.9 90.0 73.0 0.00G 999.9 000000 724050 13743 20110625 79.0 24 57.3 24 1009.9 24 1007.6 24 10.0 24 7.0 24 11.1 19.0 90.0 72.0 0.00G 999.9 000000 724050 13743 20110626 76.8 24 57.0 24 1014.6 24 1012.3 24 10.0 24 5.0 24 11.1 14.0 86.0 66.9 0.00G 999.9 000000 724050 13743 20110627 77.1 24 63.3 24 1015.9 24 1013.6 24 9.9 24 4.1 24 9.9 999.9 86.0 66.9 0.02G 999.9 010000 724050 13743 20110628 82.3 24 67.9 24 1013.0 23 1010.5 24 9.5 24 4.4 24 11.1 999.9 95.0 70.0 0.01G 999.9 010010 724050 13743 20110629 81.3 24 61.6 24 1013.0 24 1010.7 24 10.0 24 9.2 24 17.1 20.0 95.0 73.9 0.00G 999.9 000000 724050 13743 20110630 78.7 24 53.4 24 1016.2 24 1013.9 24 10.0 24 7.7 24 14.0 19.0 89.1 66.9 0.00G 999.9 000000 724050 13743 20110701 80.7 24 51.7 24 1016.2 24 1013.8 24 10.0 24 4.5 24 8.9 14.0 91.0 69.1 0.00G 999.9 000000 724050 13743 20110702 81.7 24 55.0 24 1017.6 24 1015.2 24 10.0 24 3.6 24 9.9 999.9 95.0 68.0 0.00G 999.9 000000 724050 13743 20110703 82.0 24 66.7 24 1013.6 21 1011.3 24 9.0 24 8.5 24 31.1 45.1 95.0 68.0 0.69G 999.9 010010 724050 13743 20110704 79.6 24 67.2 24 1012.2 23 1009.9 24 9.9 24 2.9 24 8.0 999.9 93.9 70.0 0.18G 999.9 010010 724050 13743 20110705 82.5 24 66.1 24 1013.6 24 1011.3 24 9.8 24 4.5 24 8.0 999.9 91.0 73.0 0.00G 999.9 000000 724050 13743 20110706 81.7 24 71.2 24 1014.2 24 1011.9 24 8.9 24 5.2 24 9.9 999.9 91.0 73.9 0.00G 999.9 010000 724050 13743 20110707 82.6 24 69.4 24 1013.2 21 1011.0 24 8.8 24 6.2 24 11.1 999.9 95.0 73.0 0.07G 999.9 000000 724050 13743 20110708 81.3 24 71.1 24 1010.9 21 1008.1 24 9.2 24 7.5 24 15.9 22.0 95.0 73.0 0.00G 999.9 010010 724050 13743 20110709 80.3 24 65.7 24 1011.1 24 1008.7 24 9.3 24 6.2 24 11.1 17.1 91.9 72.0 0.60G 999.9 000000 724050 13743 20110710 83.0 24 65.4 24 1016.8 24 1014.4 24 9.7 24 5.9 24 12.0 18.1 91.9 72.0 0.00G 999.9 000000 724050 13743 20110711 84.9 24 69.4 24 1015.3 24 1012.9 24 9.4 24 9.9 24 15.0 19.0 95.0 73.0 0.00G 999.9 000000 724050 13743 20110712 86.0 24 69.7 24 1009.5 23 1007.2 24 9.9 24 8.6 24 18.1 22.9 97.0 75.9 0.00G 999.9 010010 724050 13743 20110713 85.5 24 66.9 24 1009.6 23 1007.2 24 9.5 24 5.4 24 21.0 34.0 93.2* 73.4* 0.00G 999.9 010010 724050 13743 20110714 77.4 24 58.1 24 1015.0 24 1012.6 24 9.7 24 8.5 24 13.0 17.1 93.0 68.0 1.05G 999.9 000000 724050 13743 20110715 75.3 24 59.1 24 1018.9 24 1016.6 24 10.0 24 6.6 24 8.9 15.0 84.9 68.0 0.00G 999.9 000000 724050 13743 20110716 77.0 24 60.3 24 1021.1 24 1018.7 24 10.0 24 7.2 24 12.0 18.1 86.0 66.9 0.00G 999.9 000000 724050 13743 20110717 80.0 24 64.0 24 1021.8 24 1019.5 24 10.0 24 8.9 24 14.0 999.9 89.1 66.9 0.00G 999.9 000000 724050 13743 20110718 82.5 24 69.1 24 1017.6 24 1015.3 24 10.0 24 7.9 24 13.0 20.0 93.0 72.0 0.00G 999.9 000000 724050 13743 20110719 86.4 24 70.9 24 1010.8 24 1008.5 24 9.4 24 5.5 24 11.1 15.9 97.0 73.0 0.00G 999.9 010000 724050 13743 20110720 84.0 24 73.3 24 1010.8 24 1008.5 24 9.0 24 3.6 24 8.9 15.0 97.0 77.0 0.24G 999.9 010010 724050 13743 20110721 88.3 24 76.4 24 1010.4 24 1008.1 24 6.4 24 7.9 24 13.0 17.1 99.0 77.0 0.00G 999.9 000000 724050 13743 20110722 92.4 24 76.3 24 1011.4 24 1009.1 24 7.9 24 6.1 24 11.1 999.9 102.0 80.1 0.00G 999.9 010010 724050 13743 20110723 92.6 24 69.7 24 1013.5 24 1011.3 24 10.0 24 4.6 24 12.0 999.9 102.0 82.9 0.00G 999.9 000000 724050 13743 20110724 90.5 24 71.5 24 1013.4 24 1011.2 24 8.9 24 6.7 24 14.0 15.0 102.0 84.0 0.00G 999.9 000000 724050 13743 20110725 84.7 24 73.9 24 1010.9 24 1008.6 24 8.2 24 3.3 24 15.0 19.0 97.0 78.1 0.00G 999.9 010010 724050 13743 20110726 83.9 24 65.8 24 1008.2 24 1005.9 24 9.7 24 6.5 24 14.0 999.9 95.0 75.9 0.20G 999.9 000000 724050 13743 20110727 86.1 24 59.1 24 1011.9 24 1009.5 24 10.0 24 7.7 24 13.0 19.0 95.0 75.9 0.00G 999.9 000000 724050 13743 20110728 85.3 24 65.8 24 1016.2 24 1013.8 24 10.0 24 5.5 24 9.9 999.9 95.0 78.1 0.00G 999.9 000000 724050 13743 20110729 90.5 24 71.6 24 1014.0 24 1011.7 24 9.0 24 6.7 24 14.0 19.0 104.0 78.1 0.00G 999.9 000000 724050 13743 20110730 89.2 24 64.6 24 1014.6 24 1012.2 24 10.0 24 7.1 24 15.9 22.9 104.0 80.1 0.00G 999.9 000000 724050 13743 20110731 88.8 24 62.1 24 1016.3 24 1013.9 24 10.0 24 4.8 24 11.1 17.1 99.0 80.1 0.00G 999.9 000000 724050 13743 20110801 86.6 24 65.8 24 1014.7 24 1012.3 24 10.0 24 6.8 24 14.0 20.0 100.0 75.0 0.00G 999.9 010010 724050 13743 20110802 84.5 24 62.8 24 1010.5 24 1008.2 24 10.0 24 7.3 24 15.0 21.0 100.0 73.9 0.00G 999.9 000000 724050 13743 20110803 84.1 24 67.1 24 1007.1 20 1004.7 24 9.3 24 6.3 24 18.1 22.9 98.1 73.9 0.00G 999.9 010000 724050 13743 20110804 79.7 24 71.7 24 1009.2 20 1006.7 24 7.1 24 6.7 24 13.0 999.9 88.0 75.9 0.29G 999.9 010000 724050 13743 20110805 79.4 24 66.1 24 1017.5 22 1015.2 24 10.0 24 6.4 24 11.1 999.9 88.0 72.0 0.01G 999.9 000000 724050 13743 20110806 80.9 24 69.4 24 1016.3 21 1013.8 24 10.0 24 7.8 24 15.9 22.9 93.0 72.0 0.00G 999.9 010000 724050 13743 20110807 82.7 24 73.7 24 1008.0 19 1005.5 24 9.2 24 8.4 24 22.9 29.9 97.0 73.9 0.04G 999.9 010010 724050 13743 20110808 83.3 24 69.1 24 1004.1 24 1001.8 24 10.0 24 7.4 24 14.0 18.1 97.0 75.9 0.67G 999.9 000000 724050 13743 20110809 85.2 24 68.8 24 1002.6 23 1000.3 24 9.5 24 4.0 24 11.1 14.0 95.0 75.9 0.00G 999.9 000000 724050 13743 20110810 85.2 24 60.7 24 1004.4 24 1002.1 24 10.0 24 8.1 24 14.0 21.0 95.0 75.0 0.00G 999.9 000000 724050 13743 20110811 81.5 24 53.8 24 1010.1 24 1007.7 24 10.0 24 6.3 24 11.1 17.1 93.0 72.0 0.00G 999.9 000000 724050 13743 20110812 79.4 24 52.7 24 1016.0 24 1013.6 24 10.0 24 4.9 24 11.1 999.9 90.0 70.0 0.00G 999.9 000000 724050 13743 20110813 78.5 24 65.1 24 1017.0 24 1014.6 24 9.8 24 6.6 24 25.1 34.0 90.0 70.0 0.00G 999.9 010010 724050 13743 20110814 77.4 24 71.0 24 1009.1 15 1008.2 24 9.3 24 8.5 24 14.0 20.0 86.0 73.0 0.43G 999.9 010010 724050 13743 20110815 75.7 24 66.4 24 1005.9 18 1003.6 24 9.6 24 7.5 24 22.9 32.1 86.0 68.0 1.35G 999.9 010010 724050 13743 20110816 78.2 24 62.4 24 1010.8 24 1008.5 24 9.9 24 9.2 24 15.9 22.9 88.0 68.0 0.00G 999.9 000000 724050 13743 20110817 80.4 24 63.0 24 1019.1 24 1016.8 24 10.0 24 3.9 24 9.9 999.9 90.0 71.1 0.00G 999.9 000000 724050 13743 20110818 81.1 24 66.1 24 1017.1 23 1014.6 24 10.0 24 9.3 24 17.1 20.0 91.0 71.1 0.00G 999.9 010010 724050 13743 20110819 78.6 24 68.2 24 1013.1 21 1010.7 24 9.0 24 4.0 24 24.1 38.1 91.0 69.1 0.08G 999.9 010010 724050 13743 20110820 76.3 24 65.6 24 1015.2 23 1012.8 24 8.6 24 3.7 24 13.0 999.9 89.1 69.1 1.53G 999.9 010010 724050 13743 20110821 80.4 24 71.1 24 1013.6 23 1011.1 24 9.4 24 8.7 24 15.0 22.0 90.0 69.1 0.00G 999.9 010010 724050 13743 20110822 79.0 24 59.9 24 1012.0 24 1009.6 24 10.0 24 9.8 24 17.1 22.0 90.0 73.9 0.27G 999.9 010000 724050 13743 20110823 73.9 24 48.4 24 1017.3 24 1015.0 24 10.0 24 6.3 24 11.1 999.9 84.0 63.0 0.00G 999.9 000000 724050 13743 20110824 75.2 24 59.7 24 1017.5 24 1015.2 24 10.0 24 7.8 24 15.9 27.0 87.1 63.0 0.00G 999.9 000000 724050 13743 20110825 78.7 24 69.2 24 1012.7 21 1010.4 24 9.4 24 8.8 24 17.1 21.0 87.1 64.9 0.00G 999.9 010010 724050 13743 20110826 77.4 24 69.0 24 1014.7 24 1012.4 24 9.8 24 3.9 24 13.0 999.9 90.0 70.0 0.42G 999.9 010000 724050 13743 20110827 77.5 24 72.3 24 1007.8 15 1005.1 24 7.8 24 11.8 24 29.9 42.9 90.0 70.0 0.01G 999.9 010000 724050 13743 20110828 76.8 24 65.1 24 996.1 21 992.2 24 7.6 24 20.3 24 35.9 49.9 87.1 71.1 3.74G 999.9 010000 724050 13743 20110829 73.8 24 56.8 24 1012.6 24 1010.2 24 10.0 24 5.6 24 8.9 999.9 87.1 66.0 0.09G 999.9 000000 724050 13743 20110830 73.0 24 54.4 24 1019.3 24 1017.0 24 10.0 24 5.6 24 8.9 999.9 82.9 63.0 0.00G 999.9 000000 724050 13743 20110831 74.3 24 57.8 24 1022.2 24 1019.8 24 10.0 24 2.4 24 8.0 999.9 84.0 63.0 0.00G 999.9 000000 724050 13743 20110901 74.4 24 61.0 24 1021.3 24 1018.9 24 10.0 24 4.3 24 8.9 999.9 84.0 66.0 0.00G 999.9 010000 724050 13743 20110902 74.0 24 63.5 24 1018.4 23 1016.2 24 9.7 24 5.9 24 11.1 999.9 82.0 66.0 0.16G 999.9 010010 724050 13743 20110903 75.3 24 64.7 24 1016.2 22 1014.2 24 10.0 24 6.4 24 9.9 999.9 82.0 68.0 0.00H 999.9 010010 724050 13743 20110904 78.9 24 70.3 24 1012.7 24 1010.4 24 9.0 24 6.7 24 12.0 999.9 87.1 70.0 0.00G 999.9 000000 724050 13743 20110905 78.5 24 69.5 24 1009.3 21 1006.8 24 9.5 24 7.0 24 21.0 24.1 87.1 73.0 0.03G 999.9 010000 724050 13743 20110906 66.6 24 63.0 24 1012.1 12 1010.2 24 8.1 24 11.7 24 21.0 24.1 84.0 64.0 1.84G 999.9 010000 724050 13743 20110907 67.9 24 65.3 24 1014.2 13 1011.7 24 6.0 24 5.9 24 15.0 999.9 73.9 64.0 0.60G 999.9 010010 724050 13743 20110908 72.8 24 70.4 24 1012.6 12 1010.4 24 7.8 24 6.2 24 14.0 15.9 79.0 64.9 2.90G 999.9 110010 724050 13743 20110909 73.7 24 70.8 24 1010.9 13 1008.8 24 7.5 24 4.6 24 12.0 999.9 82.9 71.1 1.14G 999.9 010010 724050 13743 20110910 74.9 24 67.4 24 1012.8 22 1010.4 24 9.2 24 5.5 24 11.1 15.0 84.0 68.0 0.42G 999.9 000000 724050 13743 20110911 75.1 24 65.1 24 1016.5 24 1014.2 24 9.0 24 3.8 24 11.1 999.9 84.0 68.0 0.00G 999.9 000000 724050 13743 20110912 73.0 24 61.8 24 1017.1 24 1014.8 24 10.0 24 3.4 24 14.0 999.9 84.0 64.9 0.02G 999.9 010000 724050 13743 20110913 74.2 24 63.6 24 1015.5 24 1013.2 24 9.9 24 4.8 24 12.0 999.9 82.9 64.9 0.00G 999.9 000000 724050 13743 20110914 76.0 24 65.7 24 1013.8 24 1011.4 24 9.5 24 5.7 24 9.9 999.9 87.1 64.9 0.00G 999.9 000000 724050 13743 20110915 72.3 24 62.2 24 1013.4 22 1011.2 24 9.9 24 8.9 24 22.0 31.1 81.0* 54.0* 0.00G 999.9 010000 724050 13743 20110916 57.3 24 42.9 24 1025.6 24 1023.3 24 9.9 24 7.9 24 16.9 22.9 78.1 48.9 0.03G 999.9 000000 724050 13743 20110917 59.9 24 49.8 24 1028.1 24 1025.8 24 10.0 24 5.9 24 9.9 999.9 66.0 48.9 0.00G 999.9 000000 724050 13743 20110918 60.8 24 50.8 24 1028.2 24 1025.9 24 10.0 24 6.9 24 8.9 999.9 68.0 55.0 0.00G 999.9 000000 724050 13743 20110919 64.8 24 54.4 24 1024.9 24 1022.7 24 10.0 24 5.2 24 8.0 999.9 70.0 55.0 0.00G 999.9 000000 724050 13743 20110920 66.2 24 60.8 24 1020.3 18 1018.0 24 9.4 24 6.3 24 8.9 999.9 71.6* 64.0* 0.00G 999.9 010000 724050 13743 20110921 68.5 24 65.1 24 1021.2 18 1019.1 24 7.6 24 3.0 24 8.0 999.9 75.9 64.0 0.16G 999.9 010000 724050 13743 20110922 71.9 24 68.8 24 1019.4 14 1017.2 24 9.0 24 4.2 24 8.0 999.9 77.0 64.0 0.02G 999.9 110000 724050 13743 20110923 71.3 24 70.1 24 1017.1 17 1014.6 24 6.1 24 2.4 24 7.0 999.9 77.0 68.0 0.00G 999.9 010000 724050 13743 20110924 70.2 24 66.4 24 1016.0 19 1013.8 24 10.0 24 3.3 24 6.0 999.9 75.9 66.0 0.97G 999.9 000000 724050 13743 20110925 72.7 24 67.7 24 1018.6 20 1016.2 24 8.7 24 1.5 24 5.1 999.9 79.0 66.0 0.07G 999.9 010000 724050 13743 20110926 73.8 24 68.5 24 1015.4 18 1013.3 24 9.8 24 3.5 24 8.0 999.9 80.1 69.1 0.00I 999.9 000000 724050 13743 20110927 73.5 24 70.1 24 1013.1 18 1010.6 24 9.4 24 4.4 24 8.0 999.9 80.1 70.0 0.01G 999.9 010000 724050 13743 20110928 72.8 24 67.5 24 1010.8 16 1009.0 24 9.3 24 3.8 24 9.9 999.9 80.1 68.0 0.27G 999.9 010010 724050 13743 20110929 72.1 24 62.9 24 1007.7 22 1005.5 24 8.9 24 7.4 24 14.0 19.0 80.1 69.1 0.20G 999.9 010010 724050 13743 20110930 67.3 24 55.1 24 1006.4 24 1004.1 24 10.0 24 5.4 24 13.0 20.0 78.1 61.0 0.00G 999.9 000000 724050 13743 20111001 55.6 24 45.1 24 1008.0 23 1005.8 24 9.9 24 11.4 24 15.0 24.1 75.9 50.0 0.00G 999.9 010000 724050 13743 20111002 48.1 24 42.3 24 1011.2 19 1008.6 24 9.5 24 8.3 24 13.0 20.0 59.0 45.0 0.43G 999.9 010000 724050 13743 20111003 49.8 24 42.1 24 1016.1 21 1014.0 24 10.0 24 4.2 24 8.9 999.9 53.1 45.0 0.04G 999.9 010000 724050 13743 20111004 57.3 24 48.4 24 1020.2 23 1017.7 24 10.0 24 6.0 24 14.0 20.0 70.0 46.9 0.00G 999.9 010000 724050 13743 20111005 63.7 24 50.7 24 1022.1 24 1019.7 24 10.0 24 7.2 24 14.0 18.1 73.9 53.1 0.00G 999.9 000000 724050 13743 20111006 61.1 24 46.9 24 1027.2 24 1024.9 24 10.0 24 5.5 24 9.9 999.9 73.9 51.1 0.00G 999.9 000000 724050 13743 20111007 60.8 24 50.8 24 1029.7 24 1027.4 24 10.0 24 1.5 24 8.9 999.9 75.0 51.1 0.00G 999.9 000000 724050 13743 20111008 62.8 24 50.1 24 1032.6 24 1030.4 24 10.0 24 1.3 24 5.1 999.9 75.0 51.1 0.00G 999.9 000000 724050 13743 20111009 64.2 24 53.5 24 1030.9 24 1028.6 24 10.0 24 2.0 24 6.0 999.9 78.1 53.1 0.00G 999.9 000000 724050 13743 20111010 66.8 24 56.4 24 1025.4 24 1023.2 24 9.2 24 1.6 24 6.0 18.1 82.9 53.1 0.00G 999.9 000000 724050 13743 20111011 66.8 24 60.4 24 1020.5 24 1018.3 24 10.0 24 4.0 24 8.9 999.9 82.9 55.9 0.00G 999.9 010000 724050 13743 20111012 65.6 24 61.5 24 1015.9 12 1013.4 24 9.4 24 9.5 24 15.9 21.0 71.1 62.1 0.01G 999.9 010000 724050 13743 20111013 67.7 24 65.0 24 1006.9 15 1004.8 24 6.0 24 4.2 24 9.9 22.0 77.0 64.0 0.61G 999.9 110010 724050 13743 20111014 67.6 24 60.2 24 1000.2 20 997.7 24 9.4 24 7.9 24 22.9 31.1 72.0* 62.6* 0.55G 999.9 010010 724050 13743 20111015 61.4 24 41.2 24 1006.9 24 1004.6 24 10.0 24 10.0 24 20.0 27.0 73.0 50.0 0.24G 999.9 000000 724050 13743 20111016 60.9 24 40.2 24 1013.7 24 1011.4 24 10.0 24 8.3 24 17.1 22.0 71.1 50.0 0.00G 999.9 000000 724050 13743 20111017 64.6 24 46.7 24 1009.0 24 1006.7 24 10.0 24 9.0 24 17.1 21.0 71.1 50.0 0.00G 999.9 000000 724050 13743 20111018 63.2 24 52.9 24 1010.3 24 1008.0 24 9.5 24 3.4 24 8.9 999.9 73.9 54.0 0.00G 999.9 000000 724050 13743 20111019 63.6 24 58.3 24 1003.7 18 999.9 24 8.0 24 8.4 24 22.0 27.0 73.9 54.0 0.38G 999.9 010000 724050 13743 20111020 61.6 24 51.9 24 999.1 18 994.8 24 9.6 24 14.3 24 21.0 32.1 70.0 54.0 0.12G 999.9 010000 724050 13743 20111021 54.6 24 39.5 24 1013.8 24 1011.2 24 10.0 24 8.5 24 14.0 20.0 66.9 46.9 0.00G 999.9 000000 724050 13743 20111022 54.1 24 40.2 24 1020.2 24 1017.9 24 10.0 24 5.1 24 14.0 999.9 62.1 46.9 0.00G 999.9 000000 724050 13743 20111023 53.1 24 44.6 24 1020.5 24 1018.2 24 9.3 24 2.9 24 8.9 999.9 64.0 43.0 0.00G 999.9 000000 724050 13743 20111024 56.7 24 49.0 24 1018.9 24 1016.6 24 9.1 24 4.4 24 8.9 999.9 66.9 43.0 0.00G 999.9 000000 724050 13743 20111025 58.7 24 45.3 24 1020.4 24 1017.8 24 9.7 24 6.0 24 14.0 21.0 68.0 48.9 0.13G 999.9 010000 724050 13743 20111026 58.7 24 48.3 24 1014.6 24 1012.5 24 10.0 24 6.6 24 12.0 999.9 68.0 48.9 0.00G 999.9 010000 724050 13743 20111027 60.1 24 56.3 24 1006.3 22 1003.6 24 9.2 24 4.0 24 24.1 34.0 68.0 52.0 0.04G 999.9 010000 724050 13743 20111028 47.0 24 32.7 24 1020.8 24 1019.1 24 10.0 24 10.0 24 19.0 26.0 66.0 41.0 0.10G 999.9 000000 724050 13743 20111029 40.4 24 35.7 24 1018.8 17 1015.5 24 7.2 24 12.2 24 19.0 25.1 48.0* 33.8* 0.48G 999.9 011000 724050 13743 20111030 42.1 24 30.5 24 1023.0 24 1020.7 24 10.0 24 8.2 24 14.0 19.0 55.0 34.0 0.78G 999.9 010000 724050 13743 20111031 45.3 24 34.8 24 1027.7 24 1025.4 24 10.0 24 2.7 24 8.0 999.9 55.9 35.1 0.00G 999.9 000000 724050 13743 20111101 51.8 24 40.9 24 1025.7 24 1023.3 24 10.0 24 5.8 24 8.9 999.9 61.0 37.9 0.00G 999.9 010000 724050 13743 20111102 49.5 24 40.7 24 1028.5 24 1026.2 24 9.2 24 2.2 24 7.0 999.9 61.0 41.0 0.00G 999.9 000000 724050 13743 20111103 52.1 24 41.9 24 1021.5 24 1019.1 24 10.0 24 5.2 24 8.9 999.9 64.0 41.0 0.00G 999.9 000000 724050 13743 20111104 53.1 24 42.2 24 1015.1 24 1012.8 24 9.4 24 8.1 24 18.1 25.1 64.0 44.1 0.00G 999.9 000000 724050 13743 20111105 46.0 24 26.8 24 1028.0 24 1025.7 24 10.0 24 9.2 24 13.0 18.1 59.0 37.9 0.00G 999.9 000000 724050 13743 20111106 46.2 24 36.1 24 1032.6 24 1030.2 24 10.0 24 2.7 24 8.0 999.9 59.0 37.0 0.00G 999.9 000000 724050 13743 20111107 50.9 24 42.7 24 1028.8 24 1026.4 24 9.3 24 2.3 24 7.0 999.9 66.9 37.0 0.00G 999.9 100000 724050 13743 20111108 52.6 24 42.7 24 1025.6 24 1023.2 24 9.7 24 3.0 24 6.0 999.9 68.0 39.9 0.00G 999.9 000000 724050 13743 20111109 51.5 24 42.8 24 1021.7 24 1019.3 24 9.6 24 2.1 24 8.0 999.9 68.0 41.0 0.00G 999.9 000000 724050 13743 20111110 51.0 24 46.7 24 1013.5 21 1011.1 24 7.4 24 5.1 24 14.0 24.1 64.0 42.1 0.00G 999.9 110000 724050 13743 20111111 45.7 24 27.0 24 1012.6 24 1010.3 24 10.0 24 11.9 24 20.0 31.1 59.0 41.0 0.06G 999.9 000000 724050 13743 20111112 45.7 24 28.9 24 1020.5 24 1018.2 24 10.0 24 6.9 24 11.1 18.1 63.0 33.1 0.00G 999.9 000000 724050 13743 20111113 54.0 24 34.0 24 1019.4 24 1017.1 24 10.0 24 9.6 24 18.1 28.9 64.0 33.1 0.00G 999.9 000000 724050 13743 20111114 61.6 24 44.5 24 1014.5 24 1012.2 24 10.0 24 11.0 24 15.9 21.0 73.0 44.1 0.00G 999.9 000000 724050 13743 20111115 65.7 24 52.3 24 1011.6 24 1009.3 24 10.0 24 8.4 24 13.0 22.9 73.0 54.0 0.00G 999.9 010000 724050 13743 20111116 57.6 24 55.4 24 1012.4 15 1009.3 24 5.7 24 4.4 24 14.0 22.9 68.0 55.0 0.08G 999.9 110000 724050 13743 20111117 49.5 24 38.0 24 1013.8 23 1011.1 24 9.8 24 10.7 24 17.1 28.0 59.0 43.0 0.47G 999.9 010000 724050 13743 20111118 40.8 24 18.0 24 1028.2 24 1025.9 24 10.0 24 7.0 24 12.0 22.0 53.1 34.0 0.01G 999.9 000000 724050 13743 20111119 43.7 24 24.6 24 1030.1 24 1027.8 24 10.0 24 8.4 24 12.0 999.9 55.0 34.0 0.00G 999.9 000000 724050 13743 20111120 55.2 24 43.7 24 1023.8 24 1021.4 24 10.0 24 7.2 24 9.9 999.9 64.9 37.0 0.00G 999.9 000000 724050 13743 20111121 57.9 24 54.3 24 1022.2 16 1020.1 24 6.2 24 4.1 24 11.1 999.9 64.9 51.1 0.05G 999.9 110000 724050 13743 20111122 51.9 24 50.2 24 1023.4 14 1020.7 24 3.0 24 4.6 24 8.0 999.9 64.0 50.0 0.13G 999.9 010000 724050 13743 20111123 57.5 24 52.0 24 1008.2 20 1005.6 24 7.9 24 9.9 24 19.0 34.0 64.0 50.0 0.73G 999.9 110000 724050 13743 20111124 49.3 24 31.9 24 1022.3 24 1019.9 24 10.0 24 8.2 24 17.1 25.1 64.0 37.9 0.01G 999.9 000000 724050 13743 20111125 49.3 24 36.8 24 1024.7 24 1022.3 24 10.0 24 4.3 24 8.0 999.9 63.0 37.9 0.00G 999.9 000000 724050 13743 20111126 49.3 24 38.4 24 1023.5 24 1021.2 24 10.0 24 2.8 24 6.0 999.9 63.0 37.9 0.00G 999.9 000000 724050 13743 20111127 55.1 24 45.4 24 1021.0 24 1018.6 24 10.0 24 5.7 24 17.1 27.0 72.0 39.9 0.00G 999.9 000000 724050 13743 20111128 60.0 24 50.8 24 1018.8 24 1016.5 24 10.0 24 5.8 24 11.1 999.9 72.0 46.0 0.00G 999.9 000000 724050 13743 20111129 59.7 24 54.4 24 1011.8 19 1009.0 24 8.9 24 8.2 24 18.1 24.1 71.1 51.1 0.01G 999.9 010000 724050 13743 20111130 46.5 24 35.4 24 1008.8 24 1006.1 24 10.0 24 9.8 24 15.0 21.0 66.0 39.9 0.40G 999.9 000000 724050 13743 20111201 43.9 24 27.2 24 1023.0 24 1020.7 24 10.0 24 9.9 24 15.0 22.0 52.0 37.9 0.00G 999.9 000000 724050 13743 20111202 43.5 24 31.2 24 1027.8 24 1025.5 24 9.9 24 2.4 24 8.9 999.9 55.0 34.0 0.00G 999.9 000000 724050 13743 20111203 43.4 24 29.4 24 1036.3 24 1033.9 24 10.0 24 4.5 24 9.9 999.9 55.0 34.0 0.00G 999.9 000000 724050 13743 20111204 44.6 24 36.4 24 1033.9 24 1031.5 24 9.7 24 3.2 24 8.0 999.9 55.0 35.1 0.00G 999.9 000000 724050 13743 20111205 48.6 24 43.1 24 1027.5 24 1025.1 24 9.6 24 2.3 24 5.1 999.9 60.1 37.9 0.00G 999.9 000000 724050 13743 20111206 57.3 24 54.9 24 1019.2 21 1016.7 24 8.8 24 7.3 24 13.0 15.9 60.8* 55.0* 0.01G 999.9 010000 724050 13743 20111207 55.8 24 55.5 24 1013.2 9 1007.2 24 4.6 24 6.5 24 22.9 29.9 60.1 48.0 1.17G 999.9 110000 724050 13743 20111208 40.5 24 28.4 24 1019.5 22 1015.2 24 9.2 24 11.7 24 27.0 35.0 60.1 35.1 2.16G 999.9 011000 724050 13743 20111209 41.3 24 30.7 24 1026.6 24 1024.3 24 10.0 24 3.9 24 11.1 999.9 51.1 34.0 0.00G 999.9 000000 724050 13743 20111210 42.0 24 27.2 24 1026.6 24 1024.3 24 10.0 24 6.9 24 15.0 22.9 51.1 34.0 0.00G 999.9 000000 724050 13743 20111211 35.9 24 15.9 24 1036.3 24 1034.0 24 10.0 24 3.5 24 9.9 999.9 46.9 28.9 0.00G 999.9 000000 724050 13743 20111212 36.2 24 25.1 24 1035.9 24 1033.5 24 10.0 24 2.6 24 7.0 999.9 46.0 28.9 0.00G 999.9 000000 724050 13743 20111213 40.4 24 27.5 24 1031.4 24 1029.1 24 9.8 24 4.3 24 13.0 999.9 52.0 29.1 0.00G 999.9 000000 724050 13743 20111214 43.7 24 31.7 24 1029.7 24 1027.4 24 9.9 24 2.1 24 6.0 999.9 52.0 30.2 0.00G 999.9 000000 724050 13743 20111215 50.5 24 38.8 24 1021.1 24 1018.8 24 10.0 24 8.6 24 18.1 26.0 63.0 39.0 0.00G 999.9 010000 724050 13743 20111216 53.3 24 36.1 24 1018.1 24 1015.7 24 10.0 24 10.5 24 15.0 22.0 63.0 43.0 0.02G 999.9 000000 724050 13743 20111217 41.1 24 23.8 24 1023.0 24 1020.7 24 10.0 24 8.6 24 14.0 19.0 44.1* 37.9* 0.00G 999.9 001000 724050 13743 20111218 36.8 24 23.9 24 1024.6 24 1022.3 24 10.0 24 6.7 24 12.0 14.0 44.1 32.0 0.00G 999.9 001000 724050 13743 20111219 38.3 24 27.1 24 1024.6 24 1022.3 24 10.0 24 5.9 24 12.0 999.9 52.0 28.9 0.00G 999.9 000000 724050 13743 20111220 50.7 24 35.7 24 1020.0 24 1017.7 24 10.0 24 3.4 24 7.0 999.9 55.9* 46.9* 0.00G 999.9 000000 724050 13743 20111221 52.3 24 45.8 24 1016.7 19 1013.6 24 9.4 24 6.0 24 15.9 20.0 60.1 45.0 0.00G 999.9 010000 724050 13743 20111222 55.7 24 48.6 24 1016.8 23 1013.9 24 10.0 24 3.6 24 13.0 19.0 62.1 46.0 0.12G 999.9 000000 724050 13743 20111223 50.6 24 41.7 24 1017.1 22 1013.7 24 8.3 24 8.6 24 19.0 25.1 62.1 46.0 0.82G 999.9 010000 724050 13743 20111224 44.2 24 28.7 24 1027.9 24 1025.4 24 10.0 24 8.0 24 18.1 28.0 53.1 39.9 0.29G 999.9 010000 724050 13743 20111225 39.6 24 29.5 24 1026.0 24 1024.1 24 10.0 24 5.3 24 11.1 999.9 48.0 34.0 0.00G 999.9 000000 724050 13743 20111226 45.3 24 26.5 24 1022.5 24 1020.2 24 10.0 24 9.3 24 21.0 26.0 50.0 34.0 0.00G 999.9 000000 724050 13743 20111227 44.0 24 35.4 24 1017.8 20 1012.9 24 8.4 24 6.5 24 15.9 22.0 55.4* 39.0* 0.00G 999.9 010000 724050 13743 20111228 44.3 24 30.7 24 1005.7 24 1002.7 24 10.0 24 9.8 24 20.0 31.1 54.0 37.9 0.61G 999.9 000000 724050 13743 20111229 36.9 24 21.4 24 1017.2 24 1014.9 24 10.0 24 4.8 24 8.9 999.9 48.9 30.9 0.00G 999.9 000000 724050 13743 20111230 42.8 24 30.9 24 1015.7 24 1013.4 24 10.0 24 4.1 24 8.9 999.9 54.0 31.1 0.00G 999.9 000000 724050 13743 20111231 51.9 24 39.2 24 1012.6 24 1010.3 24 10.0 24 7.9 24 18.1 24.1 62.1 35.1 0.00G 999.9 010000 fluids-1.0.22/tests/gsod/2011/722324-03071.op0000644000175000017500000014305714302004506016650 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20110101 40.9 24 9.0 24 9999.9 0 921.4 18 10.0 24 7.2 24 15.9 19.0 48.4* 29.5* 99.99 999.9 010000 722324 03071 20110102 36.3 24 7.5 24 9999.9 0 924.5 24 10.0 24 3.8 24 8.9 999.9 53.1 22.5 0.00I 999.9 000000 722324 03071 20110103 41.5 24 19.9 24 9999.9 0 920.0 24 10.0 24 3.0 24 11.1 15.0 63.5 28.8 0.00I 999.9 000000 722324 03071 20110104 45.6 24 28.1 24 9999.9 0 919.1 24 9.4 24 5.0 24 11.1 14.0 59.7 28.9 0.00I 999.9 000000 722324 03071 20110105 47.4 24 15.9 24 9999.9 0 919.2 24 10.0 24 8.1 24 21.0 27.0 65.7 28.6 0.00I 999.9 000000 722324 03071 20110106 44.4 24 9.6 24 9999.9 0 920.7 24 10.0 24 4.5 24 9.9 999.9 59.2 33.1 0.00I 999.9 000000 722324 03071 20110107 45.7 24 16.0 24 9999.9 0 916.1 24 10.0 24 1.9 24 5.1 999.9 66.6 32.9 0.00I 999.9 000000 722324 03071 20110108 45.5 24 22.4 24 9999.9 0 913.5 24 10.0 24 5.4 24 14.0 18.1 63.5 30.0 0.00I 999.9 000000 722324 03071 20110109 50.4 24 25.8 24 9999.9 0 908.4 24 10.0 24 5.5 24 14.0 20.0 67.6 36.9 0.00I 999.9 000000 722324 03071 20110110 47.2 24 25.8 24 9999.9 0 913.6 24 9.5 24 8.2 24 15.0 18.1 64.4 29.3 99.99 999.9 101000 722324 03071 20110111 30.4 24 13.1 24 9999.9 0 930.7 24 10.0 24 7.7 24 18.1 24.1 41.7 21.6 0.00I 999.9 000000 722324 03071 20110112 31.1 24 12.2 24 9999.9 0 933.7 24 10.0 24 6.6 24 12.0 15.9 38.3 24.4 0.00I 999.9 000000 722324 03071 20110113 34.8 24 15.6 24 9999.9 0 930.9 24 10.0 24 6.5 24 13.0 15.9 53.6 23.9 0.00I 999.9 000000 722324 03071 20110114 41.7 24 28.7 24 9999.9 0 922.1 16 8.9 24 6.4 24 9.9 999.9 61.2 29.7 0.00I 999.9 000000 722324 03071 20110115 46.5 24 38.9 24 9999.9 0 923.1 24 9.0 24 4.3 24 9.9 999.9 56.1* 39.2* 0.00I 999.9 000000 722324 03071 20110116 45.1 24 34.2 24 9999.9 0 919.8 11 9.6 24 1.5 24 6.0 999.9 61.7 31.1 0.00I 999.9 000000 722324 03071 20110117 52.3 24 31.4 24 9999.9 0 907.5 9 9.8 24 6.6 24 17.1 22.9 77.5* 32.0* 0.00I 999.9 000000 722324 03071 20110118 58.1 24 31.6 24 9999.9 0 913.0 24 9.9 24 8.2 24 18.1 22.9 77.0 39.2 0.00I 999.9 000000 722324 03071 20110119 55.6 24 35.4 24 9999.9 0 914.4 24 10.0 24 9.4 24 21.0 26.0 77.4 41.0 0.00I 999.9 000000 722324 03071 20110120 45.4 24 26.1 24 9999.9 0 918.5 24 9.5 24 12.0 24 22.0 31.1 73.2 32.2 0.00I 999.9 000000 722324 03071 20110121 40.3 24 13.7 24 9999.9 0 919.4 24 10.0 24 7.3 24 19.0 25.1 64.6 27.9 0.00I 999.9 000000 722324 03071 20110122 46.3 24 17.2 24 9999.9 0 916.9 4 10.0 24 6.6 24 19.0 23.9 69.8 27.5 0.00I 999.9 000000 722324 03071 20110123 48.1 24 24.0 24 9999.9 0 915.0 24 10.0 24 8.3 24 15.9 22.9 66.9 38.3 0.00I 999.9 000000 722324 03071 20110124 45.3 24 22.3 24 9999.9 0 916.9 24 10.0 24 6.7 24 20.0 25.1 64.2 31.1 0.00I 999.9 000000 722324 03071 20110125 42.9 24 24.8 24 9999.9 0 921.6 24 9.8 24 8.6 24 20.0 28.9 59.5 34.2 0.00I 999.9 000000 722324 03071 20110126 42.7 24 21.3 24 9999.9 0 921.0 24 10.0 24 3.4 24 8.0 999.9 57.2 34.7 0.00I 999.9 000000 722324 03071 20110127 43.5 24 18.6 24 9999.9 0 924.3 24 10.0 24 4.9 24 11.1 15.9 63.9 27.0 0.00I 999.9 000000 722324 03071 20110128 50.6 24 12.8 24 9999.9 0 922.4 11 10.0 24 6.1 24 14.0 15.0 68.7 35.6 0.00I 999.9 000000 722324 03071 20110129 53.8 24 12.8 24 9999.9 0 9999.9 0 10.0 24 6.7 24 20.0 29.9 75.2* 33.8* 0.00I 999.9 000000 722324 03071 20110130 53.3 24 22.0 24 9999.9 0 916.2 24 10.0 24 8.7 24 14.0 19.0 71.4 36.5 0.00I 999.9 000000 722324 03071 20110131 51.9 24 23.6 24 9999.9 0 914.4 24 10.0 24 4.3 24 13.0 15.0 73.6 33.8 0.00I 999.9 000000 722324 03071 20110201 27.1 24 17.8 24 9999.9 0 918.9 24 7.3 24 14.8 24 27.0 32.1 9999.9 15.8* 99.99 999.9 011000 722324 03071 20110202 13.3 24 5.8 24 9999.9 0 929.7 24 7.6 24 11.2 24 15.9 22.0 19.4* 8.6* 99.99 999.9 001000 722324 03071 20110203 14.0 24 7.3 24 9999.9 0 931.5 24 7.5 24 8.7 24 14.0 17.1 20.3 10.9 99.99 999.9 001000 722324 03071 20110204 22.5 24 10.3 24 9999.9 0 924.2 24 9.6 24 7.8 24 15.0 19.0 41.7 12.2 99.99 999.9 001000 722324 03071 20110205 39.3 24 17.8 24 9999.9 0 915.2 24 10.0 24 9.8 24 15.9 22.0 61.2 28.2 0.00I 999.9 000000 722324 03071 20110206 45.6 24 30.6 24 9999.9 0 912.5 24 10.0 24 9.2 24 15.0 20.0 57.7 37.8 99.99 999.9 010000 722324 03071 20110207 36.4 24 25.6 24 9999.9 0 924.6 19 10.0 24 8.1 24 15.9 24.1 51.4 26.1 99.99 999.9 010000 722324 03071 20110208 48.2 24 20.6 24 9999.9 0 913.6 24 9.7 24 13.0 24 21.0 27.0 68.0* 38.7* 0.00I 999.9 000000 722324 03071 20110209 21.6 24 5.5 24 9999.9 0 924.2 24 6.0 24 16.3 24 22.9 32.1 41.4* 13.1* 0.00I 999.9 000000 722324 03071 20110210 24.1 24 5.3 24 9999.9 0 926.1 24 10.0 24 4.6 24 13.0 17.1 45.3* 11.8* 0.00I 999.9 000000 722324 03071 20110211 37.2 24 4.7 24 9999.9 0 923.1 24 9.9 24 2.9 24 8.9 999.9 60.8* 18.3* 0.00I 999.9 000000 722324 03071 20110212 44.7 24 7.3 24 9999.9 0 928.5 24 10.0 24 4.8 24 15.0 20.0 65.8* 24.6* 0.00I 999.9 000000 722324 03071 20110213 53.8 24 8.7 24 9999.9 0 923.9 24 10.0 24 8.6 24 19.0 24.1 76.8* 35.2* 0.00I 999.9 000000 722324 03071 20110214 57.2 24 17.6 24 9999.9 0 920.7 24 10.0 24 6.5 24 15.9 20.0 74.8* 39.4* 0.00I 999.9 000000 722324 03071 20110215 57.2 24 21.7 24 9999.9 0 920.0 24 10.0 24 3.5 24 9.9 999.9 83.3* 37.9* 0.00I 999.9 000000 722324 03071 20110216 63.8 24 28.8 24 9999.9 0 916.3 24 10.0 24 4.3 24 12.0 17.1 86.7* 43.2* 0.00I 999.9 000000 722324 03071 20110217 67.5 24 43.6 24 9999.9 0 913.6 24 10.0 24 9.8 24 15.0 20.0 81.1* 55.6* 0.00I 999.9 000000 722324 03071 20110218 65.8 24 37.6 24 9999.9 0 918.6 24 9.5 24 3.1 24 13.0 14.0 82.2* 48.4* 0.00I 999.9 000000 722324 03071 20110219 66.0 24 55.8 24 9999.9 0 919.0 24 7.7 24 7.9 24 17.1 21.0 75.2* 58.6* 0.00I 999.9 000000 722324 03071 20110220 66.6 24 50.5 24 9999.9 0 912.0 24 8.9 24 10.9 24 17.1 24.1 82.6* 57.4* 0.00I 999.9 000000 722324 03071 20110221 63.3 24 29.1 24 9999.9 0 911.6 24 9.9 24 7.6 24 15.9 19.0 80.8* 46.9* 0.00I 999.9 000000 722324 03071 20110222 53.1 24 27.2 24 9999.9 0 916.8 24 10.0 24 5.8 24 12.0 15.9 73.2* 38.7* 0.00I 999.9 000000 722324 03071 20110223 64.4 24 46.9 24 9999.9 0 914.5 24 9.4 24 4.4 24 8.9 18.1 79.5* 54.1* 0.00I 999.9 000000 722324 03071 20110224 64.6 24 29.0 24 9999.9 0 912.1 24 9.9 24 9.6 24 28.9 38.1 78.1* 53.8* 0.00I 999.9 000000 722324 03071 20110225 52.2 24 18.8 24 9999.9 0 917.0 24 10.0 24 7.6 24 15.9 22.9 77.5* 32.0* 0.00I 999.9 000000 722324 03071 20110226 66.5 24 15.9 24 9999.9 0 912.5 24 10.0 24 8.0 24 12.0 19.0 82.6* 53.1* 0.00I 999.9 000000 722324 03071 20110227 69.7 24 32.3 24 9999.9 0 906.4 24 8.5 24 11.0 24 28.9 41.0 83.7* 58.3* 0.00I 999.9 000000 722324 03071 20110228 53.4 24 16.8 24 9999.9 0 919.8 24 9.5 24 13.3 24 27.0 36.9 69.8* 38.8* 0.00I 999.9 000000 722324 03071 20110301 55.7 24 21.5 24 9999.9 0 924.3 18 10.0 24 6.2 24 13.0 19.0 75.4* 39.2* 0.00I 999.9 000000 722324 03071 20110302 63.0 24 22.2 24 9999.9 0 919.7 24 10.0 24 5.8 24 11.1 14.0 84.4* 45.0* 0.00I 999.9 000000 722324 03071 20110303 69.2 24 26.9 24 9999.9 0 916.1 24 10.0 24 6.9 24 15.0 17.1 85.6* 54.5* 0.00I 999.9 000000 722324 03071 20110304 71.6 24 30.4 24 9999.9 0 913.0 24 9.8 24 8.6 24 15.9 21.0 83.3* 61.5* 0.00I 999.9 000000 722324 03071 20110305 53.8 24 29.9 24 9999.9 0 924.0 24 9.5 24 11.1 24 25.1 35.9 74.1* 40.5* 99.99 999.9 010000 722324 03071 20110306 51.2 24 18.5 24 9999.9 0 922.2 24 10.0 24 7.3 24 15.9 21.0 68.7* 36.5* 0.00I 999.9 000000 722324 03071 20110307 64.3 22 23.2 22 9999.9 0 908.5 22 10.0 22 12.9 22 19.0 28.9 82.9* 48.9* 0.00I 999.9 000000 722324 03071 20110308 65.7 24 22.6 24 9999.9 0 907.7 24 9.1 24 12.8 24 28.0 36.9 80.1* 44.1* 0.00I 999.9 000000 722324 03071 20110309 51.6 24 23.5 24 9999.9 0 921.1 24 10.0 24 5.3 24 15.0 21.0 72.1* 34.7* 0.00I 999.9 000000 722324 03071 20110310 55.4 24 20.0 24 9999.9 0 928.6 24 10.0 24 7.6 24 17.1 22.0 74.3* 41.4* 0.00I 999.9 000000 722324 03071 20110311 64.9 24 19.8 24 9999.9 0 920.8 24 10.0 24 11.4 24 15.9 22.0 85.3* 53.4* 0.00I 999.9 000000 722324 03071 20110312 70.0 24 26.1 24 9999.9 0 915.8 24 10.0 24 9.3 24 13.0 17.1 85.6* 54.7* 0.00I 999.9 000000 722324 03071 20110313 63.9 24 26.4 24 9999.9 0 916.6 24 10.0 24 3.5 24 9.9 15.9 81.5* 49.5* 0.00I 999.9 000000 722324 03071 20110314 55.7 24 30.7 24 9999.9 0 923.4 24 10.0 24 6.5 24 13.0 21.0 76.6* 39.2* 0.00I 999.9 000000 722324 03071 20110315 60.7 24 30.5 24 9999.9 0 920.3 24 10.0 24 6.0 24 11.1 15.9 85.8* 45.0* 0.00I 999.9 000000 722324 03071 20110316 70.6 24 47.5 24 9999.9 0 918.1 24 9.6 24 7.6 24 15.9 22.0 88.7* 53.2* 0.00I 999.9 000000 722324 03071 20110317 70.0 17 53.9 17 9999.9 0 917.0 17 10.0 17 11.8 17 17.1 22.0 85.5* 61.7* 0.00I 999.9 000000 722324 03071 20110319 71.9 14 56.5 14 9999.9 0 917.7 14 9.8 14 13.3 14 20.0 27.0 80.6* 62.1* 0.00I 999.9 000000 722324 03071 20110320 71.9 24 53.1 24 9999.9 0 917.2 24 10.0 24 9.0 24 15.0 22.0 87.4* 60.8* 0.00I 999.9 000000 722324 03071 20110321 71.4 24 57.4 24 9999.9 0 916.9 24 10.0 24 14.5 24 22.0 28.9 81.3* 65.3* 0.00I 999.9 000000 722324 03071 20110322 73.3 24 47.1 24 9999.9 0 912.3 24 10.0 24 18.0 24 27.0 34.0 84.6* 63.5* 0.00I 999.9 000000 722324 03071 20110323 67.1 24 16.0 24 9999.9 0 915.1 24 10.0 24 8.4 24 18.1 22.9 81.3* 49.5* 0.00I 999.9 000000 722324 03071 20110324 67.7 24 28.1 24 9999.9 0 915.1 24 10.0 24 9.3 24 22.0 28.9 85.5* 53.1* 0.00I 999.9 000000 722324 03071 20110325 71.3 24 44.2 24 9999.9 0 911.3 24 9.0 24 7.7 24 19.0 24.1 86.9* 53.2* 0.00I 999.9 000000 722324 03071 20110326 72.7 24 15.4 24 9999.9 0 909.4 24 10.0 24 8.6 24 15.0 18.1 84.4* 56.5* 0.00I 999.9 000000 722324 03071 20110327 57.6 24 34.7 24 9999.9 0 911.7 24 9.5 24 6.8 24 15.9 22.0 82.0* 40.1* 0.00I 999.9 000000 722324 03071 20110328 61.6 24 37.8 24 9999.9 0 912.6 24 10.0 24 8.1 24 17.1 24.1 90.1* 42.3* 0.00I 999.9 000000 722324 03071 20110329 61.9 24 44.4 23 9999.9 0 913.7 24 8.5 24 10.5 24 17.1 22.9 88.0* 45.9* 0.00I 999.9 000000 722324 03071 20110330 46.9 24 34.6 24 9999.9 0 919.4 24 9.6 24 5.5 24 18.1 22.0 69.6* 33.8* 0.00I 999.9 000000 722324 03071 20110331 63.5 24 29.5 24 9999.9 0 912.5 24 10.0 24 6.3 24 15.0 19.0 83.7* 43.3* 0.00I 999.9 000000 722324 03071 20110401 73.3 24 24.3 24 9999.9 0 911.6 18 10.0 24 7.3 24 14.0 22.9 89.4* 51.4* 0.00I 999.9 000000 722324 03071 20110402 72.9 24 31.0 24 9999.9 0 915.6 24 10.0 24 6.6 24 13.0 22.0 95.2* 49.1* 0.00I 999.9 000000 722324 03071 20110403 82.8 24 40.7 24 9999.9 0 910.3 24 9.9 24 13.5 24 25.1 34.0 96.1* 69.8* 0.00I 999.9 000000 722324 03071 20110404 67.8 24 20.6 24 9999.9 0 915.4 24 8.2 24 15.0 24 22.9 33.0 93.4* 45.9* 0.00I 999.9 000000 722324 03071 20110405 59.7 24 11.6 24 9999.9 0 920.1 24 10.0 24 8.1 24 15.0 21.0 84.4* 44.8* 0.00I 999.9 000000 722324 03071 20110406 75.4 24 23.7 24 9999.9 0 912.8 24 10.0 24 12.2 24 19.0 28.0 96.8* 58.6* 0.00I 999.9 000000 722324 03071 20110407 79.0 24 32.1 24 9999.9 0 911.1 24 10.0 24 10.4 24 22.0 29.9 92.8* 63.0* 0.00I 999.9 000000 722324 03071 20110408 74.6 24 27.5 24 9999.9 0 910.0 24 10.0 24 4.4 24 15.0 22.0 93.6* 57.0* 0.00I 999.9 000000 722324 03071 20110409 82.8 24 39.7 24 9999.9 0 909.6 24 9.9 24 12.6 24 25.1 34.0 95.4* 71.1* 0.00I 999.9 000000 722324 03071 20110410 78.0 24 36.8 24 9999.9 0 910.5 24 9.5 24 10.9 24 24.1 35.0 94.3* 63.9* 0.00I 999.9 000000 722324 03071 20110411 66.3 24 19.7 24 9999.9 0 919.7 24 9.8 24 13.5 24 22.9 33.0 82.4* 53.1* 0.00I 999.9 000000 722324 03071 20110412 66.6 24 22.6 24 9999.9 0 921.3 24 9.9 24 8.0 24 20.0 27.0 83.1* 52.0* 0.00I 999.9 000000 722324 03071 20110413 73.1 24 25.9 24 9999.9 0 914.4 24 10.0 24 8.5 24 15.0 24.1 90.5* 57.6* 0.00I 999.9 000000 722324 03071 20110414 76.3 24 16.9 24 9999.9 0 911.0 24 9.9 24 13.1 24 26.0 33.0 87.1* 61.5* 0.00I 999.9 000000 722324 03071 20110415 65.9 24 13.1 24 9999.9 0 915.7 24 9.8 24 11.0 24 21.0 28.0 84.7* 49.6* 0.00I 999.9 000000 722324 03071 20110416 63.2 24 11.1 24 9999.9 0 918.8 24 8.0 24 8.1 24 19.0 24.1 82.0* 47.1* 0.00I 999.9 000000 722324 03071 20110417 73.1 24 25.8 24 9999.9 0 912.2 24 8.8 24 10.9 24 21.0 25.1 95.2* 58.5* 0.00I 999.9 000000 722324 03071 20110418 81.0 24 34.6 24 9999.9 0 909.2 24 10.0 24 11.9 24 26.0 31.1 95.0* 65.3* 0.00I 999.9 000000 722324 03071 20110419 81.8 24 17.5 24 9999.9 0 908.7 24 10.0 24 9.8 24 18.1 26.0 93.6* 68.9* 0.00I 999.9 000000 722324 03071 20110420 75.1 24 29.3 24 9999.9 0 913.7 24 10.0 24 6.9 24 18.1 19.0 91.8* 57.0* 0.00I 999.9 000000 722324 03071 20110421 70.9 24 46.4 24 9999.9 0 915.2 24 9.9 24 8.9 24 19.0 26.0 95.4* 57.6* 0.00I 999.9 000000 722324 03071 20110422 82.1 24 47.9 24 9999.9 0 910.7 24 9.8 24 12.7 24 19.0 28.0 95.2* 69.8* 0.00I 999.9 000000 722324 03071 20110423 82.5 24 42.5 24 9999.9 0 910.1 24 9.8 24 9.7 24 15.0 22.0 95.4* 69.1* 0.00I 999.9 000000 722324 03071 20110424 74.6 24 40.3 24 9999.9 0 911.5 24 10.0 24 7.7 24 18.1 27.0 92.1* 59.0* 0.00I 999.9 000000 722324 03071 20110425 78.5 24 24.7 22 9999.9 0 908.5 24 10.0 24 12.8 24 22.9 34.0 90.1* 67.5* 0.00I 999.9 000000 722324 03071 20110426 73.5 24 26.0 24 9999.9 0 904.8 24 9.6 24 11.1 24 31.1 39.0 88.7* 54.7* 0.00I 999.9 000000 722324 03071 20110427 70.0 24 17.5 24 9999.9 0 909.3 24 8.7 24 14.0 24 25.1 31.1 88.2* 55.9* 0.00I 999.9 000000 722324 03071 20110428 64.3 24 31.9 24 9999.9 0 921.2 24 10.0 24 6.3 24 12.0 20.0 84.2* 46.0* 0.00I 999.9 000000 722324 03071 20110429 76.6 24 36.0 24 9999.9 0 913.7 24 9.8 24 13.1 24 22.0 31.1 95.2* 63.5* 0.00I 999.9 000000 722324 03071 20110430 78.2 24 40.5 24 9999.9 0 908.6 24 9.7 24 11.5 24 21.0 27.0 91.4* 67.3* 0.00I 999.9 000000 722324 03071 20110501 63.4 24 34.0 24 9999.9 0 915.0 18 7.8 24 16.2 24 31.1 35.9 87.8* 51.6* 0.00I 999.9 000000 722324 03071 20110502 53.6 24 30.1 24 9999.9 0 923.3 24 10.0 24 10.8 24 17.1 22.0 68.2* 46.6* 0.00I 999.9 000000 722324 03071 20110503 57.9 24 20.9 24 9999.9 0 928.4 24 10.0 24 3.1 24 12.0 19.0 74.1* 41.7* 0.00I 999.9 000000 722324 03071 20110504 65.6 24 23.2 24 9999.9 0 925.3 24 10.0 24 11.1 24 17.1 25.1 81.5* 52.9* 0.00I 999.9 000000 722324 03071 20110505 70.4 24 32.6 24 9999.9 0 921.0 24 10.0 24 10.2 24 15.9 22.0 82.8* 60.1* 0.00I 999.9 000000 722324 03071 20110506 72.6 24 33.5 24 9999.9 0 918.4 24 9.9 24 7.2 24 22.0 29.9 93.0* 57.2* 0.00I 999.9 000000 722324 03071 20110507 80.3 24 36.7 24 9999.9 0 912.4 24 10.0 24 11.7 24 20.0 24.1 100.0* 65.3* 0.00I 999.9 000000 722324 03071 20110508 86.2 24 30.6 24 9999.9 0 910.8 24 10.0 24 8.7 24 15.0 28.0 100.4* 71.4* 0.00I 999.9 000000 722324 03071 20110509 87.6 24 28.3 24 9999.9 0 908.8 24 10.0 24 11.7 24 19.0 25.1 98.2* 74.5* 0.00I 999.9 000000 722324 03071 20110510 85.3 24 38.4 22 9999.9 0 907.7 24 10.0 24 9.4 24 19.0 27.0 95.4* 76.6* 0.00I 999.9 000000 722324 03071 20110511 80.3 24 39.6 24 9999.9 0 908.5 24 9.9 24 15.0 24 27.0 35.0 90.3* 70.3* 0.00I 999.9 000000 722324 03071 20110512 74.8 24 19.6 24 9999.9 0 914.1 24 10.0 24 9.0 24 18.1 26.0 89.1* 58.3* 0.00I 999.9 000000 722324 03071 20110513 72.5 24 30.7 24 9999.9 0 918.5 24 10.0 24 7.3 24 18.1 22.0 88.5* 56.7* 0.00I 999.9 000000 722324 03071 20110514 67.7 24 30.7 24 9999.9 0 920.3 24 10.0 24 8.4 24 14.0 19.0 82.6* 52.3* 0.00I 999.9 000000 722324 03071 20110515 66.9 24 33.2 24 9999.9 0 918.5 24 10.0 24 9.3 24 14.0 20.0 78.3* 55.0* 0.00I 999.9 000000 722324 03071 20110516 69.3 24 40.4 24 9999.9 0 918.1 24 10.0 24 7.0 24 15.0 25.1 87.3* 53.6* 0.00I 999.9 000000 722324 03071 20110517 78.1 24 40.4 24 9999.9 0 911.1 24 10.0 24 9.3 24 18.1 26.0 94.5* 60.6* 0.00I 999.9 000000 722324 03071 20110518 81.0 24 32.4 24 9999.9 0 906.6 24 10.0 24 9.9 24 19.0 28.0 92.7* 67.5* 0.00I 999.9 000000 722324 03071 20110519 83.4 24 44.9 24 9999.9 0 905.2 24 9.9 24 10.5 24 15.9 22.9 94.3* 72.0* 0.00I 999.9 000000 722324 03071 20110520 77.6 24 36.8 24 9999.9 0 910.1 24 9.9 24 8.3 24 19.0 28.0 93.2* 63.5* 99.99 999.9 010010 722324 03071 20110521 77.2 24 21.4 24 9999.9 0 913.2 24 10.0 24 10.4 24 19.0 28.9 92.1* 65.1* 0.00I 999.9 000000 722324 03071 20110522 80.6 24 32.5 24 9999.9 0 912.2 24 10.0 24 4.9 24 15.9 28.9 96.8* 63.3* 0.00I 999.9 000000 722324 03071 20110523 84.5 24 46.1 24 9999.9 0 910.3 24 9.5 24 9.3 24 17.1 24.1 98.4* 72.1* 0.00I 999.9 000000 722324 03071 20110524 83.2 24 26.5 24 9999.9 0 909.3 24 9.5 24 9.7 24 28.0 39.0 96.3* 65.5* 0.00I 999.9 000000 722324 03071 20110525 80.1 24 15.9 24 9999.9 0 912.8 24 9.9 24 11.0 24 21.0 31.1 93.0* 64.8* 0.00I 999.9 000000 722324 03071 20110526 75.8 24 38.9 24 9999.9 0 917.6 24 10.0 24 7.9 24 13.0 20.0 93.9* 60.8* 0.00I 999.9 000000 722324 03071 20110527 88.7 24 42.1 24 9999.9 0 910.7 24 10.0 24 10.9 24 17.1 26.0 105.8* 77.9* 0.00I 999.9 000000 722324 03071 20110528 92.6 24 28.1 23 9999.9 0 907.4 24 10.0 24 10.0 24 22.0 28.0 106.7* 77.0* 0.00I 999.9 000000 722324 03071 20110529 91.0 24 51.5 24 9999.9 0 906.6 24 10.0 24 11.0 24 19.0 25.1 105.1* 78.6* 0.00I 999.9 000000 722324 03071 20110530 86.7 24 61.1 24 9999.9 0 909.3 24 9.4 24 16.1 24 22.9 38.1 97.7* 74.7* 0.00I 999.9 000000 722324 03071 20110531 86.1 24 62.0 24 9999.9 0 918.4 24 10.0 24 9.3 24 15.9 22.0 96.8* 75.4* 0.00I 999.9 000000 722324 03071 20110601 85.3 24 58.7 24 9999.9 0 922.3 17 10.0 24 12.6 24 20.0 26.0 94.6* 76.1* 0.00I 999.9 000000 722324 03071 20110602 84.0 24 51.0 24 9999.9 0 918.1 24 10.0 24 15.0 24 21.0 27.0 96.4* 72.7* 0.00I 999.9 000000 722324 03071 20110603 84.7 24 43.1 24 9999.9 0 916.7 24 10.0 24 13.0 24 22.0 26.0 97.3* 71.4* 0.00I 999.9 000000 722324 03071 20110604 84.3 24 48.0 24 9999.9 0 920.0 24 10.0 24 10.9 24 17.1 22.9 94.8* 72.9* 0.00I 999.9 000000 722324 03071 20110605 84.3 24 44.9 24 9999.9 0 922.4 24 10.0 24 9.2 24 15.0 21.0 95.4* 72.5* 0.00I 999.9 000000 722324 03071 20110606 85.1 24 36.0 24 9999.9 0 919.0 24 10.0 24 9.9 24 19.0 25.1 97.9* 71.1* 0.00I 999.9 000000 722324 03071 20110607 87.9 24 40.1 24 9999.9 0 914.5 24 10.0 24 10.7 24 18.1 22.9 101.8* 75.6* 0.00I 999.9 000000 722324 03071 20110608 90.8 24 45.1 24 9999.9 0 912.9 24 10.0 24 11.3 24 15.9 21.0 104.9* 78.6* 0.00I 999.9 000000 722324 03071 20110609 89.9 24 48.1 24 9999.9 0 913.3 24 10.0 24 10.5 24 21.0 27.0 103.8* 77.0* 0.00I 999.9 000000 722324 03071 20110610 90.3 24 50.6 24 9999.9 0 912.4 24 10.0 24 12.0 24 18.1 25.1 103.5* 77.4* 0.00I 999.9 000000 722324 03071 20110611 87.8 24 52.7 24 9999.9 0 913.5 24 9.9 24 11.2 24 21.0 26.0 101.3* 75.2* 0.00I 999.9 000000 722324 03071 20110612 88.9 24 51.2 24 9999.9 0 913.3 24 10.0 24 12.3 24 17.1 24.1 104.2* 75.2* 0.00I 999.9 000000 722324 03071 20110613 90.8 24 44.9 24 9999.9 0 915.4 24 10.0 24 12.8 24 20.0 25.1 103.6* 77.5* 0.00I 999.9 000000 722324 03071 20110614 90.6 24 42.4 24 9999.9 0 914.5 24 10.0 24 10.8 24 17.1 25.1 107.4* 77.4* 0.00I 999.9 000000 722324 03071 20110615 91.4 24 38.9 24 9999.9 0 911.4 24 10.0 24 5.3 24 14.0 20.0 106.9* 69.4* 0.00I 999.9 000000 722324 03071 20110616 93.5 24 45.4 24 9999.9 0 910.2 24 10.0 24 9.5 24 18.1 22.9 108.9* 79.2* 0.00I 999.9 000000 722324 03071 20110617 94.4 24 41.7 24 9999.9 0 909.9 24 10.0 24 11.8 24 20.0 26.0 106.9* 80.8* 0.00I 999.9 000000 722324 03071 20110618 94.8 24 41.0 24 9999.9 0 912.6 24 10.0 24 8.1 24 13.0 20.0 107.1* 82.4* 0.00I 999.9 000000 722324 03071 20110619 94.8 24 47.9 24 9999.9 0 910.2 24 10.0 24 13.1 24 21.0 28.0 107.1* 82.4* 0.00I 999.9 000000 722324 03071 20110620 92.1 24 46.5 24 9999.9 0 907.0 24 9.6 24 14.3 24 22.9 32.1 103.1* 80.2* 0.00I 999.9 000000 722324 03071 20110621 86.6 24 39.2 24 9999.9 0 911.1 24 9.8 24 9.2 24 18.1 24.1 101.8* 73.2* 0.00I 999.9 000000 722324 03071 20110622 84.2 24 54.3 24 9999.9 0 915.4 24 10.0 24 6.7 24 18.1 22.9 97.2* 70.0* 0.00I 999.9 000000 722324 03071 20110623 84.1 19 47.3 19 9999.9 0 917.2 19 10.0 19 9.2 19 15.0 21.0 96.1* 72.7* 0.00I 999.9 000000 722324 03071 20110624 90.2 24 45.9 24 9999.9 0 913.4 24 10.0 24 12.0 24 15.0 22.0 106.5* 75.7* 0.00I 999.9 000000 722324 03071 20110625 93.2 24 48.4 24 9999.9 0 911.4 24 10.0 24 12.1 24 17.1 22.9 110.5* 77.4* 0.00I 999.9 000000 722324 03071 20110626 94.0 24 54.6 24 9999.9 0 912.3 24 10.0 24 14.5 24 20.0 26.0 109.4* 78.8* 0.00I 999.9 000000 722324 03071 20110627 92.0 24 54.0 24 9999.9 0 914.1 24 10.0 24 13.1 24 19.0 27.0 104.5* 79.9* 0.00I 999.9 000000 722324 03071 20110628 90.7 24 52.2 24 9999.9 0 918.5 24 10.0 24 8.2 24 15.0 18.1 102.6* 76.3* 0.00I 999.9 000000 722324 03071 20110629 90.6 24 52.4 24 9999.9 0 918.5 24 10.0 24 10.3 24 18.1 25.1 101.5* 77.9* 0.00I 999.9 000000 722324 03071 20110630 88.7 24 52.9 24 9999.9 0 917.6 24 10.0 24 11.0 24 18.1 22.9 99.0* 76.3* 0.00I 999.9 000000 722324 03071 20110701 85.2 24 55.6 24 9999.9 0 917.9 18 9.9 24 12.5 24 18.1 29.9 96.8* 72.7* 0.00I 999.9 000000 722324 03071 20110702 85.7 24 56.8 24 9999.9 0 919.9 24 10.0 24 10.4 24 14.0 26.0 96.1* 75.2* 0.00I 999.9 000000 722324 03071 20110703 86.8 24 55.5 24 9999.9 0 919.3 24 10.0 24 7.6 24 15.0 28.0 97.5* 75.7* 99.99 999.9 010000 722324 03071 20110704 86.9 24 49.5 24 9999.9 0 917.2 24 10.0 24 5.1 24 14.0 18.1 99.3* 73.2* 0.00I 999.9 000000 722324 03071 20110705 89.0 24 48.4 24 9999.9 0 917.5 24 10.0 24 6.3 24 15.0 21.0 99.5* 76.1* 0.00I 999.9 000000 722324 03071 20110706 89.4 24 47.2 24 9999.9 0 918.3 24 10.0 24 6.6 24 15.9 28.0 100.2* 75.6* 0.00I 999.9 000000 722324 03071 20110707 90.2 24 47.2 24 9999.9 0 917.2 24 10.0 24 6.7 24 13.0 15.9 101.5* 77.9* 0.00I 999.9 000000 722324 03071 20110708 91.6 24 48.2 24 9999.9 0 914.9 24 10.0 24 7.2 24 14.0 20.0 102.7* 78.8* 0.00I 999.9 000000 722324 03071 20110709 91.9 24 49.8 24 9999.9 0 914.4 24 10.0 24 8.6 24 15.9 22.9 102.4* 79.2* 0.00I 999.9 000000 722324 03071 20110710 89.5 24 52.2 24 9999.9 0 915.8 24 10.0 24 9.3 24 17.1 24.1 100.0* 77.5* 0.00I 999.9 000000 722324 03071 20110711 88.0 24 57.0 24 9999.9 0 916.8 24 10.0 24 9.5 24 15.9 21.0 98.8* 77.4* 0.00I 999.9 000000 722324 03071 20110712 89.0 24 61.0 24 9999.9 0 916.5 24 10.0 24 9.9 24 19.0 28.9 100.8* 79.3* 99.99 999.9 010010 722324 03071 20110713 86.6 24 61.6 24 9999.9 0 915.9 24 10.0 24 6.6 24 15.9 20.0 102.0* 78.3* 0.00I 999.9 000000 722324 03071 20110714 90.3 24 53.1 24 9999.9 0 914.3 24 10.0 24 8.2 24 14.0 20.0 102.2* 77.7* 0.00I 999.9 000000 722324 03071 20110715 91.3 24 53.1 24 9999.9 0 913.6 24 10.0 24 9.3 24 14.0 20.0 102.4* 78.6* 0.00I 999.9 000000 722324 03071 20110716 91.7 24 52.3 24 9999.9 0 914.8 24 10.0 24 8.2 24 17.1 25.1 100.9* 79.7* 0.00I 999.9 000000 722324 03071 20110717 88.2 24 55.6 24 9999.9 0 918.5 24 10.0 24 7.8 24 15.9 20.0 98.2* 77.9* 0.00I 999.9 000000 722324 03071 20110718 88.1 24 49.7 24 9999.9 0 920.4 24 10.0 24 5.0 24 12.0 19.0 99.5* 72.7* 0.00I 999.9 000000 722324 03071 20110719 91.1 24 54.2 24 9999.9 0 917.9 24 10.0 24 4.5 24 11.1 22.0 101.5* 77.9* 0.00I 999.9 000000 722324 03071 20110720 89.0 24 56.6 24 9999.9 0 915.2 24 10.0 24 8.3 24 15.0 20.0 102.0* 75.4* 0.00I 999.9 000000 722324 03071 20110721 90.8 24 57.6 24 9999.9 0 913.8 24 10.0 24 8.9 24 15.0 21.0 100.8* 79.7* 0.00I 999.9 000000 722324 03071 20110722 89.3 24 60.2 24 9999.9 0 914.2 24 10.0 24 10.1 24 14.0 19.0 98.6* 78.4* 0.00I 999.9 000000 722324 03071 20110723 86.1 24 60.8 24 9999.9 0 915.8 24 10.0 24 9.7 24 18.1 22.0 97.5* 74.5* 0.00I 999.9 000000 722324 03071 20110724 88.2 24 60.7 24 9999.9 0 919.3 24 10.0 24 9.0 24 15.9 20.0 99.5* 79.3* 0.00I 999.9 000000 722324 03071 20110725 90.3 24 56.3 24 9999.9 0 918.8 24 10.0 24 7.8 24 14.0 18.1 102.4* 77.2* 0.00I 999.9 000000 722324 03071 20110726 92.7 24 49.5 24 9999.9 0 914.8 24 9.9 24 8.9 24 14.0 20.0 103.6* 80.8* 0.00I 999.9 000000 722324 03071 20110727 92.5 24 52.6 24 9999.9 0 913.2 24 10.0 24 10.2 24 18.1 27.0 103.1* 79.9* 0.00I 999.9 000000 722324 03071 20110728 91.5 24 52.3 24 9999.9 0 914.6 24 10.0 24 9.2 24 14.0 22.0 102.0* 78.6* 0.00I 999.9 000000 722324 03071 20110729 88.9 24 57.4 24 9999.9 0 917.6 24 9.9 24 8.2 24 18.1 31.1 99.7* 79.7* 0.00I 999.9 000000 722324 03071 20110730 87.9 24 60.4 24 9999.9 0 919.4 24 10.0 24 7.2 24 15.0 20.0 98.2* 79.0* 0.00I 999.9 000000 722324 03071 20110731 87.5 24 61.3 24 9999.9 0 921.6 23 10.0 24 9.1 24 15.9 25.1 98.6* 77.2* 0.00I 999.9 000000 722324 03071 20110801 89.1 24 52.4 24 9999.9 0 920.7 18 9.9 24 7.4 24 13.0 20.0 100.4* 76.3* 0.00I 999.9 000000 722324 03071 20110802 91.9 24 49.3 24 9999.9 0 917.4 24 9.9 24 8.4 24 14.0 18.1 103.3* 79.0* 0.00I 999.9 000000 722324 03071 20110803 92.6 24 52.5 24 9999.9 0 916.1 24 9.9 24 5.4 24 13.0 19.0 102.7* 82.0* 0.00I 999.9 000000 722324 03071 20110804 92.5 24 54.3 24 9999.9 0 915.6 24 10.0 24 5.4 24 12.0 17.1 102.6* 79.3* 0.00I 999.9 000000 722324 03071 20110805 93.3 24 51.1 24 9999.9 0 915.6 24 10.0 24 8.6 24 15.0 24.1 103.6* 81.0* 0.00I 999.9 000000 722324 03071 20110806 93.1 24 53.3 24 9999.9 0 915.6 24 10.0 24 8.8 24 15.0 21.0 103.3* 80.8* 0.00I 999.9 000000 722324 03071 20110807 92.7 24 52.4 24 9999.9 0 915.3 24 10.0 24 8.0 24 14.0 20.0 104.2* 79.2* 0.00I 999.9 000000 722324 03071 20110808 92.6 24 54.4 24 9999.9 0 913.6 24 10.0 24 7.7 24 14.0 19.0 104.4* 80.1* 0.00I 999.9 000000 722324 03071 20110809 92.9 24 54.8 24 9999.9 0 912.9 24 10.0 24 8.8 24 15.9 22.9 104.2* 80.2* 0.00I 999.9 000000 722324 03071 20110810 93.3 24 56.3 24 9999.9 0 912.6 24 10.0 24 8.4 24 13.0 19.0 105.1* 81.0* 0.00I 999.9 000000 722324 03071 20110811 91.5 24 56.4 24 9999.9 0 912.7 24 10.0 24 7.9 24 22.0 31.1 103.3* 79.0* 0.00I 999.9 000000 722324 03071 20110812 81.9 24 64.8 24 9999.9 0 915.5 24 9.8 24 8.9 24 25.1 33.0 96.6* 75.7* 99.99 999.9 010010 722324 03071 20110813 85.5 24 64.6 24 9999.9 0 916.7 24 10.0 24 8.7 24 15.0 22.0 95.9* 75.0* 99.99 999.9 010010 722324 03071 20110814 80.1 24 63.5 24 9999.9 0 919.9 24 9.9 24 5.6 24 14.0 22.0 88.2* 72.3* 99.99 999.9 010000 722324 03071 20110815 84.8 24 60.8 24 9999.9 0 917.3 24 10.0 24 8.2 24 15.9 22.9 98.2* 75.2* 0.00I 999.9 000000 722324 03071 20110816 88.5 24 54.4 24 9999.9 0 916.1 24 10.0 24 9.7 24 14.0 21.0 100.0* 76.8* 0.00I 999.9 000000 722324 03071 20110817 89.5 24 56.7 24 9999.9 0 919.5 24 10.0 24 8.7 24 12.0 15.9 98.4* 78.4* 0.00I 999.9 000000 722324 03071 20110818 89.5 24 56.7 24 9999.9 0 919.1 24 10.0 24 5.6 24 11.1 18.1 99.5* 77.7* 0.00I 999.9 000000 722324 03071 20110819 90.3 24 51.1 24 9999.9 0 915.5 24 10.0 24 8.6 24 14.0 21.0 100.2* 78.4* 0.00I 999.9 000000 722324 03071 20110820 89.2 24 51.8 24 9999.9 0 915.2 24 10.0 24 9.9 24 17.1 22.9 101.1* 76.5* 0.00I 999.9 000000 722324 03071 20110821 89.1 24 53.4 24 9999.9 0 917.9 24 10.0 24 8.0 24 15.9 19.0 99.5* 76.8* 0.00I 999.9 000000 722324 03071 20110822 88.1 24 54.4 24 9999.9 0 919.4 24 10.0 24 6.8 24 12.0 17.1 99.0* 76.8* 0.00I 999.9 000000 722324 03071 20110823 89.3 24 55.9 24 9999.9 0 917.4 24 10.0 24 7.2 24 14.0 20.0 99.9* 77.9* 0.00I 999.9 000000 722324 03071 20110824 89.9 24 53.9 24 9999.9 0 916.6 24 10.0 24 5.0 24 11.1 15.9 101.1* 77.9* 0.00I 999.9 000000 722324 03071 20110825 90.8 24 55.6 24 9999.9 0 917.7 24 10.0 24 4.1 24 25.1 38.1 102.6* 77.5* 99.99 999.9 010010 722324 03071 20110826 85.0 24 62.6 24 9999.9 0 919.0 24 10.0 24 3.8 24 19.0 27.0 100.2* 74.8* 99.99 999.9 010010 722324 03071 20110827 89.4 24 52.3 24 9999.9 0 919.1 24 10.0 24 4.5 24 9.9 15.9 101.3* 73.9* 0.00I 999.9 000000 722324 03071 20110828 91.0 24 45.9 24 9999.9 0 917.3 21 10.0 24 6.1 24 11.1 21.0 103.3* 75.7* 0.00I 999.9 000000 722324 03071 20110829 92.2 24 43.1 24 9999.9 0 915.1 22 10.0 24 4.2 24 12.0 15.9 105.1* 77.0* 0.00I 999.9 000000 722324 03071 20110830 94.5 24 45.4 24 9999.9 0 913.9 24 10.0 24 11.4 24 18.1 26.0 105.4* 83.5* 0.00I 999.9 000000 722324 03071 20110831 92.0 24 46.6 24 9999.9 0 915.4 24 10.0 24 11.9 24 18.1 25.1 104.0* 81.7* 0.00I 999.9 000000 722324 03071 20110901 86.8 24 50.3 24 9999.9 0 918.4 18 10.0 24 9.0 24 13.0 17.1 98.6* 75.2* 0.00I 999.9 000000 722324 03071 20110902 85.1 24 49.3 24 9999.9 0 916.7 24 10.0 24 6.0 24 12.0 17.1 97.0* 72.5* 0.00I 999.9 000000 722324 03071 20110903 87.7 24 53.0 24 9999.9 0 914.4 24 10.0 24 4.3 24 11.1 15.0 98.8* 75.2* 0.00I 999.9 000000 722324 03071 20110904 79.9 24 57.1 24 9999.9 0 917.7 24 9.1 24 10.9 24 20.0 25.1 97.0* 69.6* 99.99 999.9 010000 722324 03071 20110905 71.0 24 43.6 24 9999.9 0 922.7 24 10.0 24 9.0 24 15.9 20.0 83.7* 60.3* 0.00I 999.9 000000 722324 03071 20110906 71.9 24 31.2 24 9999.9 0 921.6 24 10.0 24 3.2 24 7.0 14.0 87.6* 57.2* 0.00I 999.9 000000 722324 03071 20110907 76.4 24 23.6 24 9999.9 0 921.6 24 10.0 24 4.9 24 12.0 15.0 92.7* 56.8* 0.00I 999.9 000000 722324 03071 20110908 77.8 24 32.0 24 9999.9 0 925.0 24 10.0 24 8.1 24 15.9 22.9 89.6* 68.2* 0.00I 999.9 000000 722324 03071 20110909 76.7 24 39.3 24 9999.9 0 921.8 24 10.0 24 3.9 24 12.0 15.9 87.3* 61.9* 0.00I 999.9 000000 722324 03071 20110910 78.6 24 39.6 24 9999.9 0 920.9 24 10.0 24 6.0 24 15.0 18.1 88.2* 70.5* 0.00I 999.9 000000 722324 03071 20110911 78.7 24 44.1 24 9999.9 0 922.3 24 10.0 24 3.5 24 12.0 15.9 93.4* 64.8* 0.00I 999.9 000000 722324 03071 20110912 83.9 24 40.7 24 9999.9 0 921.8 24 9.9 24 4.4 24 14.0 18.1 98.8* 68.0* 0.00I 999.9 000000 722324 03071 20110913 86.7 24 40.3 24 9999.9 0 919.4 24 10.0 24 7.0 24 12.0 17.1 100.2* 69.8* 0.00I 999.9 000000 722324 03071 20110914 85.6 24 46.8 24 9999.9 0 916.9 24 9.8 24 7.4 24 22.0 29.9 97.0* 73.4* 0.00I 999.9 000000 722324 03071 20110915 67.5 24 58.2 24 9999.9 0 920.5 24 9.1 24 11.5 24 22.0 28.0 87.4* 58.5* 99.99 999.9 010010 722324 03071 20110916 65.1 24 58.3 24 9999.9 0 920.7 24 9.0 24 6.2 24 11.1 999.9 83.8* 58.3* 99.99 999.9 010000 722324 03071 20110917 79.6 24 60.0 24 9999.9 0 918.2 24 10.0 24 7.3 24 11.1 19.0 93.2* 70.0* 0.00I 999.9 000000 722324 03071 20110918 79.8 24 56.2 24 9999.9 0 918.5 24 9.3 24 9.6 24 22.0 26.0 90.7* 69.8* 0.00I 999.9 000000 722324 03071 20110919 76.9 24 48.0 24 9999.9 0 921.9 24 10.0 24 4.9 24 8.9 999.9 88.5* 63.0* 0.00I 999.9 000000 722324 03071 20110920 78.6 24 40.8 24 9999.9 0 919.3 24 10.0 24 7.4 24 14.0 19.0 93.7* 64.9* 0.00I 999.9 000000 722324 03071 20110921 80.4 24 46.3 24 9999.9 0 917.4 24 10.0 24 4.7 24 12.0 22.9 92.7* 67.8* 99.99 999.9 010010 722324 03071 20110922 72.3 24 47.8 24 9999.9 0 921.3 24 9.5 24 10.9 24 20.0 26.0 90.9* 59.9* 99.99 999.9 010010 722324 03071 20110923 69.5 24 51.7 24 9999.9 0 923.7 24 10.0 24 3.0 24 7.0 999.9 84.2* 58.6* 0.00I 999.9 000000 722324 03071 20110924 78.6 24 43.1 24 9999.9 0 918.7 24 10.0 24 6.2 24 13.0 17.1 96.6* 65.3* 0.00I 999.9 000000 722324 03071 20110925 83.3 24 34.0 24 9999.9 0 913.0 24 10.0 24 5.8 24 13.0 18.1 98.6* 67.3* 0.00I 999.9 000000 722324 03071 20110926 79.3 24 41.6 24 9999.9 0 913.2 24 10.0 24 4.2 24 15.0 29.9 98.1* 61.7* 99.99 999.9 010010 722324 03071 20110927 82.6 24 36.4 24 9999.9 0 915.1 24 10.0 24 3.7 24 8.9 15.0 98.2* 62.6* 0.00I 999.9 000000 722324 03071 20110928 81.3 24 47.3 24 9999.9 0 917.2 24 10.0 24 4.0 24 9.9 999.9 95.9* 67.1* 0.00I 999.9 000000 722324 03071 20110929 83.0 24 43.9 24 9999.9 0 917.2 24 10.0 24 4.8 24 12.0 17.1 96.4* 69.8* 0.00I 999.9 000000 722324 03071 20110930 75.4 24 35.3 24 9999.9 0 924.3 24 9.3 24 11.6 24 20.0 25.1 93.2* 64.0* 99.99 999.9 010000 722324 03071 20111001 70.3 24 30.8 24 9999.9 0 924.1 18 10.0 24 3.5 24 8.9 14.0 85.5* 55.9* 0.00I 999.9 000000 722324 03071 20111002 74.8 24 37.8 24 9999.9 0 923.0 24 9.9 24 5.7 24 11.1 15.9 89.2* 61.3* 0.00G 999.9 000000 722324 03071 20111003 76.3 24 45.4 24 9999.9 0 922.6 24 10.0 24 7.2 24 15.0 19.0 85.6* 64.0* 0.00G 999.9 000000 722324 03071 20111004 72.3 24 42.3 24 9999.9 0 922.4 24 9.8 24 9.9 24 18.1 25.1 83.1* 60.4* 0.00G 999.9 000000 722324 03071 20111005 72.5 24 50.9 24 9999.9 0 918.5 24 9.6 24 13.1 24 22.9 29.9 82.9* 63.3* 0.02G 999.9 010010 722324 03071 20111006 75.5 24 57.8 24 9999.9 0 914.2 24 10.0 24 14.5 24 24.1 29.9 88.3* 66.2* 0.00G 999.9 000000 722324 03071 20111007 78.9 24 59.2 24 9999.9 0 913.2 24 10.0 24 18.1 24 24.1 29.9 87.8* 70.9* 0.00G 999.9 000000 722324 03071 20111008 70.6 24 55.7 24 9999.9 0 914.8 24 9.7 24 13.2 24 27.0 35.9 83.7* 61.2* 0.11G 999.9 010010 722324 03071 20111009 62.6 24 55.6 24 9999.9 0 917.6 24 9.1 24 5.3 24 11.1 15.0 72.5* 58.1* 0.48G 999.9 010000 722324 03071 20111010 65.3 24 56.0 24 9999.9 0 919.9 24 9.2 24 5.5 24 9.9 15.0 74.8* 59.7* 0.00G 999.9 000000 722324 03071 20111011 67.1 24 57.6 24 9999.9 0 915.9 24 9.4 24 8.3 24 13.0 18.1 80.1* 58.3* 0.00G 999.9 000000 722324 03071 20111012 72.5 24 52.7 24 9999.9 0 913.1 24 10.0 24 8.9 24 14.0 19.0 84.0* 60.6* 0.00G 999.9 000000 722324 03071 20111013 68.5 24 50.9 24 9999.9 0 919.0 24 9.2 24 4.4 24 11.1 18.1 81.5* 55.4* 0.00G 999.9 000000 722324 03071 20111014 74.6 24 43.3 24 9999.9 0 916.0 24 10.0 24 8.7 24 12.0 17.1 90.9* 64.4* 0.00G 999.9 000000 722324 03071 20111015 72.9 24 45.7 24 9999.9 0 918.2 24 10.0 24 4.8 24 14.0 19.0 86.4* 56.5* 0.00G 999.9 000000 722324 03071 20111016 74.4 24 46.4 24 9999.9 0 919.5 24 9.9 24 6.7 24 12.0 17.1 90.5* 59.7* 0.00G 999.9 000000 722324 03071 20111017 78.2 24 43.9 24 9999.9 0 914.4 24 9.9 24 10.6 24 20.0 28.0 96.1* 63.5* 0.00G 999.9 000000 722324 03071 20111018 62.8 24 36.0 24 9999.9 0 921.7 24 8.2 24 13.6 24 26.0 38.1 89.2* 48.4* 0.00G 999.9 000000 722324 03071 20111019 56.8 24 24.6 24 9999.9 0 924.7 24 9.5 24 4.3 24 8.9 999.9 70.9* 43.9* 0.00G 999.9 000000 722324 03071 20111020 65.7 24 27.4 24 9999.9 0 918.2 24 10.0 24 7.9 24 15.0 22.0 90.5* 50.0* 0.00G 999.9 000000 722324 03071 20111021 67.9 24 31.5 24 9999.9 0 919.0 24 10.0 24 2.2 24 8.9 999.9 87.1* 48.0* 0.00G 999.9 000000 722324 03071 20111022 72.7 24 41.9 24 9999.9 0 918.2 24 10.0 24 6.1 24 15.0 20.0 90.3* 56.3* 0.00G 999.9 000000 722324 03071 20111023 68.8 24 35.8 24 9999.9 0 919.5 24 10.0 24 3.8 24 7.0 999.9 84.0* 52.7* 0.00G 999.9 000000 722324 03071 20111024 70.6 24 45.6 24 9999.9 0 922.6 24 10.0 24 7.9 24 15.9 22.0 86.4* 56.8* 0.00G 999.9 000000 722324 03071 20111025 75.5 24 45.6 24 9999.9 0 918.8 24 10.0 24 9.6 24 13.0 15.9 90.5* 63.9* 0.00G 999.9 000000 722324 03071 20111026 75.7 24 47.8 24 9999.9 0 915.2 24 10.0 24 8.1 24 14.0 19.0 85.6* 68.9* 0.00G 999.9 000000 722324 03071 20111027 52.4 24 42.5 24 9999.9 0 917.6 24 8.1 24 14.9 24 24.1 33.0 73.0* 43.9* 0.00G 999.9 010000 722324 03071 20111028 47.3 24 35.4 24 9999.9 0 925.7 24 9.9 24 5.7 24 8.9 999.9 58.8* 41.4* 0.09G 999.9 000000 722324 03071 20111029 51.6 24 32.2 24 9999.9 0 925.2 24 9.9 24 4.5 24 14.0 19.0 67.8* 37.6* 0.00G 999.9 000000 722324 03071 20111030 58.1 24 35.9 24 9999.9 0 919.2 24 10.0 24 6.9 24 12.0 14.0 72.3* 45.1* 0.00G 999.9 000000 722324 03071 20111031 57.5 24 38.5 24 9999.9 0 923.3 24 10.0 24 3.4 24 11.1 15.9 77.2* 42.3* 0.00G 999.9 000000 722324 03071 20111101 67.3 24 46.0 24 9999.9 0 917.3 18 10.0 24 10.7 24 15.9 20.0 83.3* 57.6* 0.00G 999.9 000000 722324 03071 20111102 66.2 24 44.5 24 9999.9 0 916.7 24 8.3 24 13.8 24 28.0 36.9 78.4* 52.5* 0.00G 999.9 000000 722324 03071 20111103 43.8 24 23.9 24 9999.9 0 930.9 24 9.3 24 7.3 24 22.0 28.0 57.4* 32.0* 0.00G 999.9 000000 722324 03071 20111104 51.5 24 17.8 24 9999.9 0 922.8 24 9.9 24 7.4 24 15.9 20.0 68.0* 40.1* 0.00G 999.9 000000 722324 03071 20111105 60.2 24 25.4 24 9999.9 0 912.8 24 9.8 24 13.1 24 22.0 28.9 77.9* 50.9* 0.00G 999.9 000000 722324 03071 20111106 64.1 23 35.3 23 9999.9 0 914.9 23 10.0 23 7.2 23 13.0 20.0 75.0* 52.3* 0.00G 999.9 000000 722324 03071 20111107 69.2 24 50.5 24 9999.9 0 914.2 24 10.0 24 8.8 24 18.1 24.1 82.2* 60.4* 0.00G 999.9 000000 722324 03071 20111108 60.9 24 33.4 24 9999.9 0 915.7 24 9.9 24 9.7 24 22.9 48.0 76.6* 48.4* 0.39G 999.9 010010 722324 03071 20111109 48.0 24 31.3 24 9999.9 0 927.6 24 10.0 24 7.9 24 14.0 18.1 59.0* 36.7* 0.08G 999.9 000000 722324 03071 20111110 46.8 24 29.8 24 9999.9 0 931.8 24 10.0 24 2.5 24 8.0 999.9 60.6* 34.5* 0.00G 999.9 000000 722324 03071 20111111 53.0 24 21.0 24 9999.9 0 923.0 24 10.0 24 8.7 24 14.0 18.1 67.8* 43.2* 0.00G 999.9 000000 722324 03071 20111112 62.0 24 24.7 24 9999.9 0 915.1 24 10.0 24 11.0 24 18.1 26.0 76.3* 54.5* 0.00G 999.9 000000 722324 03071 20111113 67.4 24 32.7 24 9999.9 0 913.6 24 10.0 24 11.6 24 20.0 27.0 78.1* 55.9* 0.00G 999.9 000000 722324 03071 20111114 65.9 24 44.4 24 9999.9 0 913.4 24 10.0 24 5.8 24 14.0 18.1 73.6* 57.6* 0.00G 999.9 010000 722324 03071 20111115 64.6 24 41.9 24 9999.9 0 912.1 24 10.0 24 6.2 24 14.0 19.0 75.6* 52.9* 0.00G 999.9 000000 722324 03071 20111116 56.0 24 30.7 24 9999.9 0 915.8 24 10.0 24 5.2 24 14.0 19.0 69.3* 42.3* 0.00G 999.9 000000 722324 03071 20111117 44.6 24 23.2 24 9999.9 0 928.2 24 10.0 24 7.8 24 14.0 20.0 59.0* 31.8* 0.00G 999.9 000000 722324 03071 20111118 54.2 24 37.4 24 9999.9 0 918.7 24 9.8 24 10.4 24 15.9 22.9 73.9* 44.8* 0.00G 999.9 000000 722324 03071 20111119 61.5 24 44.3 24 9999.9 0 913.1 24 9.8 24 11.7 24 20.0 27.0 76.6* 51.8* 0.00G 999.9 000000 722324 03071 20111120 58.4 24 33.8 24 9999.9 0 917.3 24 10.0 24 6.3 24 15.0 18.1 72.3* 50.4* 0.00G 999.9 000000 722324 03071 20111121 50.1 24 46.6 24 9999.9 0 918.7 24 3.7 24 6.1 24 9.9 999.9 56.5* 46.8* 0.00G 999.9 110000 722324 03071 20111122 53.2 24 44.7 24 9999.9 0 920.1 24 6.9 24 6.7 24 15.9 20.0 64.8* 45.7* 0.00G 999.9 110000 722324 03071 20111123 52.8 24 40.4 24 9999.9 0 925.6 24 8.6 24 2.7 24 9.9 999.9 72.9* 38.3* 0.00G 999.9 000000 722324 03071 20111124 57.2 24 37.4 24 9999.9 0 923.2 24 10.0 24 6.2 24 15.9 21.0 74.1* 41.9* 0.00G 999.9 000000 722324 03071 20111125 58.7 23 46.5 23 9999.9 0 915.9 23 10.0 23 8.8 23 18.1 22.9 65.3* 51.8* 0.00G 999.9 010000 722324 03071 20111126 52.6 24 35.6 24 9999.9 0 919.0 24 7.6 24 14.2 24 28.9 40.0 60.3* 47.5* 0.00G 999.9 000000 722324 03071 20111127 42.2 24 9.7 24 9999.9 0 931.7 24 9.3 24 9.5 24 15.9 22.0 57.7* 29.8* 0.00G 999.9 000000 722324 03071 20111128 51.2 24 11.3 24 9999.9 0 923.3 24 10.0 24 6.8 24 12.0 15.9 75.2* 37.4* 0.00G 999.9 000000 722324 03071 20111129 52.5 24 21.2 24 9999.9 0 923.1 24 10.0 24 6.5 24 15.0 18.1 69.8* 42.4* 0.00G 999.9 000000 722324 03071 20111130 46.8 24 26.2 24 9999.9 0 924.0 18 10.0 24 4.6 24 13.0 17.1 66.2* 32.0* 0.00G 999.9 000000 722324 03071 20111201 53.5 24 33.7 24 9999.9 0 916.9 22 10.0 24 9.8 24 20.0 24.1 65.1* 44.6* 0.00G 999.9 000000 722324 03071 20111202 40.3 24 32.0 24 9999.9 0 925.4 24 6.2 24 12.3 24 20.0 27.0 57.0* 34.2* 0.00G 999.9 010000 722324 03071 20111203 44.3 24 37.4 24 9999.9 0 917.0 24 5.7 24 7.9 24 15.9 21.0 61.7* 35.8* 0.00G 999.9 110000 722324 03071 20111204 44.0 24 32.9 24 9999.9 0 920.5 24 10.0 24 7.0 24 14.0 18.1 57.4* 36.5* 0.07G 999.9 010000 722324 03071 20111205 34.8 24 30.8 24 9999.9 0 922.2 24 7.0 24 9.4 24 18.1 22.0 46.4* 29.3* 0.18G 999.9 011010 722324 03071 20111206 24.9 24 20.1 24 9999.9 0 927.3 24 9.8 24 7.3 24 12.0 15.9 29.3* 19.4* 0.00G 999.9 000000 722324 03071 20111207 31.3 24 22.9 24 9999.9 0 925.8 24 9.9 24 3.6 24 8.0 999.9 49.3* 21.0* 0.00G 999.9 000000 722324 03071 20111208 42.7 24 28.4 24 9999.9 0 920.9 24 10.0 24 5.2 24 11.1 15.0 60.4* 32.7* 0.00G 999.9 000000 722324 03071 20111209 42.1 24 31.7 24 9999.9 0 922.8 24 10.0 24 6.0 24 12.0 15.9 55.4* 32.2* 0.00G 999.9 000000 722324 03071 20111210 35.2 24 32.0 24 9999.9 0 930.9 24 5.7 24 5.8 24 11.1 999.9 43.9* 31.6* 0.00G 999.9 000000 722324 03071 20111211 39.2 24 37.7 24 9999.9 0 926.4 24 3.7 24 6.4 24 12.0 15.0 43.0* 36.1* 0.00G 999.9 010000 722324 03071 20111212 44.4 24 43.2 24 9999.9 0 921.0 24 2.7 24 6.9 24 11.1 15.0 49.5* 42.1* 0.03G 999.9 100000 722324 03071 20111213 53.7 24 51.6 24 9999.9 0 919.8 24 7.1 24 9.9 24 22.0 31.1 58.1* 49.3* 0.00G 999.9 000000 722324 03071 20111214 59.6 24 49.8 24 9999.9 0 916.6 24 9.0 24 15.4 24 22.9 32.1 63.1* 54.9* 0.00G 999.9 000000 722324 03071 20111215 49.5 24 35.9 24 9999.9 0 920.8 24 10.0 24 6.7 24 15.0 18.1 57.7* 44.8* 0.00G 999.9 000000 722324 03071 20111216 42.7 24 31.7 24 9999.9 0 927.1 24 10.0 24 5.9 24 11.1 17.1 51.8* 34.7* 0.00G 999.9 010000 722324 03071 20111217 44.3 24 28.2 24 9999.9 0 930.9 24 10.0 24 2.1 24 6.0 999.9 54.7* 35.6* 0.00G 999.9 000000 722324 03071 20111218 50.6 24 35.4 24 9999.9 0 926.3 24 10.0 24 6.3 24 12.0 15.0 54.5* 48.0* 0.00G 999.9 000000 722324 03071 20111219 52.8 24 44.9 24 9999.9 0 912.7 24 9.3 24 15.1 24 25.1 34.0 57.0* 49.1* 0.00G 999.9 010010 722324 03071 20111220 41.9 23 29.2 23 9999.9 0 916.8 23 10.0 23 12.1 23 26.0 32.1 54.0* 34.2* 0.20G 999.9 000000 722324 03071 20111221 42.3 24 28.8 24 9999.9 0 915.6 24 10.0 24 5.4 24 15.0 17.1 59.9* 33.3* 0.00G 999.9 000000 722324 03071 20111222 44.0 24 31.0 24 9999.9 0 917.0 24 10.0 24 8.5 24 15.9 22.9 55.4* 36.3* 0.00G 999.9 000000 722324 03071 20111223 34.3 24 27.8 24 9999.9 0 927.5 24 9.8 24 12.4 24 17.1 21.0 42.6* 30.7* 0.00G 999.9 001000 722324 03071 20111224 32.0 24 29.3 24 9999.9 0 928.8 24 3.4 24 4.9 24 8.9 999.9 33.8* 30.6* 0.00G 999.9 011000 722324 03071 20111225 33.7 24 32.0 24 9999.9 0 929.5 24 6.3 24 2.5 24 8.0 999.9 37.2* 30.7* 0.18G 999.9 111000 722324 03071 20111226 38.0 24 31.4 24 9999.9 0 924.7 24 8.9 24 8.0 24 17.1 21.0 50.0* 32.5* 0.00G 999.9 000000 722324 03071 20111227 40.9 24 28.7 24 9999.9 0 924.1 24 10.0 24 5.5 24 8.9 999.9 54.0* 32.2* 0.00G 999.9 000000 722324 03071 20111228 48.2 24 27.8 24 9999.9 0 920.7 24 10.0 24 8.4 24 15.9 21.0 62.2* 39.9* 0.00G 999.9 000000 722324 03071 20111229 50.7 22 29.1 22 9999.9 0 918.1 22 10.0 22 5.1 22 12.0 15.9 70.2* 35.2* 0.00G 999.9 000000 722324 03071 20111230 53.2 24 29.9 24 9999.9 0 918.2 24 10.0 24 6.1 24 8.9 999.9 64.8* 40.3* 0.00G 999.9 000000 722324 03071 20111231 57.2 24 28.4 24 9999.9 0 917.9 24 10.0 24 6.8 24 15.0 19.0 78.6* 42.1* 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/2006/0000755000175000017500000000000014302004506015067 5ustar nileshnileshfluids-1.0.22/tests/gsod/2006/724050-13743.op0000644000175000017500000014327214302004506016660 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20060101 44.4 24 32.7 24 1015.9 24 1013.6 24 9.5 24 5.4 24 10.9 999.9 48.9 37.9 0.01G 999.9 000000 724050 13743 20060102 38.8 24 34.4 24 1020.9 20 1018.5 24 7.2 24 3.4 24 8.9 999.9 48.9 33.1 0.00G 999.9 010000 724050 13743 20060103 43.1 24 41.3 24 1010.3 20 1007.3 24 8.1 24 9.9 24 15.9 999.9 44.6* 41.0* 0.46G 999.9 010010 724050 13743 20060104 40.3 24 36.0 24 1016.2 22 1014.2 24 9.8 24 6.9 24 12.8 999.9 42.1* 37.4* 0.11G 999.9 000000 724050 13743 20060105 44.5 24 37.7 24 1008.0 21 1005.6 24 7.0 24 7.1 24 15.0 19.8 54.0 37.9 0.00G 999.9 000000 724050 13743 20060106 40.5 24 27.9 24 1008.8 24 1006.5 24 10.0 24 10.0 24 19.0 22.9 54.0 34.0 0.00G 999.9 010000 724050 13743 20060107 31.7 24 17.2 24 1015.0 24 1012.8 24 10.0 24 7.5 24 12.0 15.9 43.0 25.0 0.00G 999.9 000000 724050 13743 20060108 37.5 24 25.3 24 1016.8 24 1014.5 24 10.0 24 7.2 24 9.9 999.9 48.0 25.0 0.00G 999.9 000000 724050 13743 20060109 50.5 24 36.9 24 1016.0 24 1013.7 24 10.0 24 10.1 24 15.0 999.9 63.0 30.0 0.00G 999.9 000000 724050 13743 20060110 48.0 24 35.5 24 1029.4 24 1027.1 24 9.0 24 6.4 24 15.0 999.9 63.0 41.0 0.00G 999.9 000000 724050 13743 20060111 43.7 24 40.8 24 1025.5 18 1022.4 24 4.5 24 5.3 24 8.9 999.9 51.1 39.0 0.00G 999.9 010000 724050 13743 20060112 47.9 24 44.5 24 1016.3 17 1014.4 24 4.5 24 4.9 24 9.9 999.9 59.0 39.0 0.20G 999.9 100000 724050 13743 20060113 46.7 24 43.9 24 1013.5 21 1011.7 24 6.5 24 4.2 24 11.1 999.9 59.0* 35.6* 0.00G 999.9 100000 724050 13743 20060114 51.9 24 46.2 24 995.9 20 992.8 24 8.9 24 13.8 24 27.8 46.6 61.0 36.0 0.54G 999.9 111010 724050 13743 20060115 33.6 24 13.3 24 1006.4 24 1003.5 24 9.9 24 19.9 24 28.7 45.6 39.9* 27.0* 0.00H 999.9 001000 724050 13743 20060116 36.1 24 16.4 24 1014.5 24 1012.3 24 10.0 24 7.2 24 12.8 18.8 43.0 27.0 0.00G 999.9 000000 724050 13743 20060117 37.2 24 25.1 24 1016.9 24 1014.6 24 10.0 24 5.6 24 8.9 999.9 45.0 32.0 0.00G 999.9 010000 724050 13743 20060118 50.9 24 41.5 24 1006.1 23 1002.8 24 9.1 24 15.2 24 27.8 38.7 63.0 32.0 0.40G 999.9 010000 724050 13743 20060119 38.5 24 23.8 24 1024.6 24 1022.3 24 10.0 24 5.9 24 8.9 15.0 63.0 28.0 0.22G 999.9 000000 724050 13743 20060120 46.6 24 34.2 24 1023.3 24 1021.0 24 10.0 24 8.4 24 11.8 999.9 60.1 28.0 0.00G 999.9 000000 724050 13743 20060121 53.0 24 39.9 24 1019.7 24 1017.3 24 10.0 24 11.8 24 21.8 27.8 64.9 39.9 0.00G 999.9 000000 724050 13743 20060122 40.2 24 23.9 24 1035.4 24 1033.0 24 10.0 24 9.6 24 22.0 28.0 64.9 32.0 0.00G 999.9 000000 724050 13743 20060123 38.4 24 35.0 24 1022.9 24 1020.6 24 7.4 24 5.7 24 10.9 999.9 46.0 32.0 0.97G 999.9 010000 724050 13743 20060124 40.8 24 34.7 24 1014.4 24 1012.1 24 9.9 24 6.8 24 15.5 999.9 48.0 35.1 0.01G 999.9 000000 724050 13743 20060125 40.9 24 26.6 24 1009.0 24 1006.7 24 10.0 24 12.7 24 24.9 33.6 48.0 35.1 0.02G 999.9 010010 724050 13743 20060126 34.1 24 14.5 24 1023.5 24 1021.2 24 10.0 24 15.2 24 20.8 28.7 43.0 28.9 0.00G 999.9 001000 724050 13743 20060127 34.2 24 14.8 24 1035.4 24 1033.1 24 10.0 24 8.2 24 13.0 15.0 45.0 26.1 0.00G 999.9 000000 724050 13743 20060128 41.1 24 21.3 24 1028.9 24 1026.5 24 10.0 24 6.7 24 12.8 999.9 57.9 26.1 0.00G 999.9 000000 724050 13743 20060129 47.8 24 36.3 24 1015.5 24 1013.2 24 9.9 24 9.2 24 15.9 20.8 60.1 33.1 0.00G 999.9 010000 724050 13743 20060130 51.9 24 45.0 24 1007.7 24 1005.3 24 7.9 24 6.0 24 12.8 999.9 64.0 39.9 0.02G 999.9 100000 724050 13743 20060131 47.5 24 39.8 24 1005.0 24 1002.7 24 8.1 24 12.0 24 21.8 30.7 64.0 39.9 0.35G 999.9 010000 724050 13743 20060201 41.8 24 25.9 24 1016.0 24 1013.7 24 10.0 24 8.4 24 15.0 18.8 50.0 37.9 0.06G 999.9 000000 724050 13743 20060202 43.2 24 32.5 24 1014.3 24 1012.0 24 9.6 24 5.0 24 9.9 999.9 57.0 36.0 0.00G 999.9 000000 724050 13743 20060203 52.7 24 46.4 24 1006.5 22 1003.6 24 8.0 24 9.0 24 15.9 23.7 62.1 36.0 0.43G 999.9 010000 724050 13743 20060204 49.7 24 43.9 24 1006.9 21 1003.7 24 8.5 24 6.7 24 15.0 16.9 62.1 44.1 0.41G 999.9 010010 724050 13743 20060205 44.4 24 32.5 24 998.9 24 996.1 24 10.0 24 9.1 24 17.9 30.7 59.0 36.0 0.66G 999.9 010010 724050 13743 20060206 37.4 24 18.8 24 1011.2 24 1008.9 24 10.0 24 9.0 24 17.9 24.9 46.9 28.9 0.00G 999.9 000000 724050 13743 20060207 37.6 24 13.5 24 1016.0 24 1013.7 24 10.0 24 8.3 24 15.0 18.8 46.9 29.1 0.00G 999.9 000000 724050 13743 20060208 33.1 24 14.4 24 1019.4 24 1017.2 24 10.0 24 8.4 24 14.0 17.9 44.1 27.0 0.00G 999.9 000000 724050 13743 20060209 32.8 24 14.5 24 1019.5 24 1017.3 24 10.0 24 9.3 24 13.8 20.8 39.0 27.0 0.00G 999.9 000000 724050 13743 20060210 33.7 24 13.5 24 1022.1 24 1019.8 24 10.0 24 7.7 24 12.0 18.1 43.0 26.1 0.00G 999.9 000000 724050 13743 20060211 36.5 24 29.0 24 1017.1 21 1014.9 24 7.4 24 5.9 24 13.8 999.9 43.0 26.2 0.00G 999.9 111000 724050 13743 20060212 32.0 24 28.6 24 1005.8 18 1002.9 24 3.6 24 12.3 24 16.9 23.7 35.1* 28.4* 1.02G 3.9 101000 724050 13743 20060213 30.6 24 16.1 24 1015.2 24 1012.9 24 10.0 24 7.9 24 12.8 15.9 37.9 24.1 0.07G 2.0 000000 724050 13743 20060214 35.1 24 20.7 24 1018.8 24 1016.5 24 10.0 24 7.6 24 13.0 999.9 45.0 24.1 0.00G 1.2 000000 724050 13743 20060215 42.8 24 29.2 24 1022.6 24 1020.2 24 10.0 24 4.8 24 9.9 999.9 57.9 27.1 0.00G 2.0 000000 724050 13743 20060216 49.3 24 35.6 24 1023.9 24 1021.5 24 10.0 24 5.9 24 16.9 999.9 66.0 33.1 0.00G 999.9 000000 724050 13743 20060217 54.6 24 36.6 24 1017.9 24 1015.6 24 10.0 24 14.9 24 27.8 37.7 66.0 39.0 0.00G 999.9 010000 724050 13743 20060218 37.1 24 18.1 24 1024.4 24 1022.1 24 10.0 24 10.1 24 16.9 25.8 46.0* 27.0* 0.00G 999.9 001000 724050 13743 20060219 20.7 24 -1.8 24 1031.5 24 1029.2 24 10.0 24 11.3 24 21.8 26.8 37.9 14.0 0.00G 999.9 000000 724050 13743 20060220 31.4 24 8.6 24 1023.5 24 1021.2 24 10.0 24 4.6 24 7.0 999.9 41.0 14.0 0.00G 999.9 000000 724050 13743 20060221 37.3 24 23.8 24 1016.8 24 1014.5 24 9.2 24 4.8 24 13.0 16.9 50.0 28.0 0.00G 999.9 000000 724050 13743 20060222 37.4 24 28.4 24 1018.1 24 1015.8 24 7.2 24 3.3 24 9.9 999.9 50.0 28.2 0.01G 999.9 011000 724050 13743 20060223 42.0 24 34.1 24 1013.9 24 1011.6 24 5.0 24 5.0 24 16.9 27.8 54.0 33.1 0.24G 999.9 010000 724050 13743 20060224 41.5 24 17.4 24 1020.7 24 1018.4 24 10.0 24 12.2 24 19.8 30.7 54.0 36.0 0.00G 999.9 000000 724050 13743 20060225 38.4 24 19.1 24 1022.4 24 1020.1 24 10.0 24 8.3 24 16.9 23.7 59.0 27.0 0.00G 999.9 000000 724050 13743 20060226 34.9 24 8.5 24 1021.9 24 1019.6 24 10.0 24 16.9 24 28.9 40.6 59.0 27.0 0.00G 999.9 000000 724050 13743 20060227 29.7 24 9.2 24 1021.4 24 1019.1 24 10.0 24 9.5 24 15.9 23.7 39.9 21.0 0.00G 999.9 000000 724050 13743 20060228 37.8 24 21.4 24 1014.4 24 1012.1 24 9.9 24 7.5 24 11.8 999.9 45.0 21.2 0.00G 999.9 001000 724050 13743 20060301 41.1 24 21.8 24 1013.3 24 1010.9 24 10.0 24 4.1 24 9.9 999.9 50.0 32.0 0.00G 999.9 000000 724050 13743 20060302 41.8 24 32.5 24 1006.1 24 1003.8 24 9.3 24 4.8 24 17.9 22.7 50.0 32.0 0.03G 999.9 010000 724050 13743 20060303 39.4 24 22.6 24 1014.0 24 1011.6 24 9.7 24 14.8 24 20.0 26.8 50.0 32.0 0.00H 999.9 001000 724050 13743 20060304 35.8 24 15.0 24 1020.2 24 1017.9 24 10.0 24 15.4 24 21.8 29.7 46.9 28.0 0.00G 999.9 000000 724050 13743 20060305 41.1 24 18.1 24 1023.2 24 1020.8 24 10.0 24 12.7 24 16.9 22.7 52.0 28.2 0.00G 999.9 000000 724050 13743 20060306 42.5 24 22.8 24 1018.2 24 1016.0 24 10.0 24 5.9 24 11.8 999.9 52.0 33.1 0.00G 999.9 000000 724050 13743 20060307 41.1 24 20.0 24 1020.0 24 1017.6 24 10.0 24 9.7 24 15.0 20.0 50.0 30.9 0.00G 999.9 000000 724050 13743 20060308 41.1 24 20.7 24 1021.7 24 1019.3 24 10.0 24 4.9 24 10.9 999.9 52.0 31.1 0.00G 999.9 000000 724050 13743 20060309 51.3 24 33.5 24 1012.7 24 1010.4 24 10.0 24 6.6 24 15.0 18.8 68.0 32.0 0.00G 999.9 010000 724050 13743 20060310 66.5 24 45.5 24 1006.7 24 1004.4 24 10.0 24 15.4 24 21.0 37.7 78.1* 57.9* 0.00G 999.9 000000 724050 13743 20060311 61.1 24 42.5 24 1020.6 24 1018.4 24 10.0 24 4.8 24 11.1 999.9 78.1 48.0 0.00G 999.9 000000 724050 13743 20060312 60.8 24 47.8 24 1020.8 24 1018.5 24 10.0 24 6.0 24 12.8 16.9 71.1 48.0 0.00G 999.9 010000 724050 13743 20060313 65.0 24 53.5 24 1012.2 24 1009.9 24 8.0 24 7.4 24 20.8 25.8 84.9 52.0 0.00G 999.9 000000 724050 13743 20060314 65.0 24 39.7 24 1002.9 24 1000.6 24 10.0 24 15.3 24 24.9 32.6 84.9 48.9 0.00G 999.9 010000 724050 13743 20060315 45.8 24 18.2 24 1013.4 24 1011.0 24 10.0 24 16.6 24 25.8 31.7 52.0* 39.9* 0.00G 999.9 000000 724050 13743 20060316 47.2 24 18.1 24 1018.7 24 1016.3 24 10.0 24 8.6 24 11.8 20.8 57.0 39.0 0.00G 999.9 000000 724050 13743 20060317 48.5 24 21.8 24 1017.2 24 1014.8 24 10.0 24 8.6 24 13.8 999.9 57.0 39.0 0.00G 999.9 010000 724050 13743 20060318 40.4 24 10.3 24 1019.3 24 1017.0 24 10.0 24 13.0 24 21.0 28.7 52.0 30.0 0.00G 999.9 000000 724050 13743 20060319 40.7 24 11.5 24 1018.5 24 1016.2 24 10.0 24 11.3 24 17.9 25.8 53.1 28.0 0.00G 999.9 000000 724050 13743 20060320 42.3 24 18.8 24 1019.0 24 1016.6 24 10.0 24 9.6 24 15.9 20.8 53.1 28.2 0.00G 999.9 000000 724050 13743 20060321 36.6 24 18.7 24 1015.0 24 1012.7 24 9.9 24 8.8 24 13.8 999.9 48.0 30.0 0.00G 999.9 001000 724050 13743 20060322 38.0 24 20.8 24 1013.9 24 1011.6 24 9.3 24 12.7 24 20.8 27.8 46.9 30.2 0.01G 999.9 001000 724050 13743 20060323 41.3 24 22.1 24 1022.4 24 1020.1 24 10.0 24 8.9 24 15.0 20.8 51.1 32.0 0.00G 999.9 000000 724050 13743 20060324 44.4 24 25.2 24 1019.2 24 1016.8 24 10.0 24 7.2 24 11.8 15.9 53.1 32.0 0.00G 999.9 000000 724050 13743 20060325 44.7 24 28.6 24 1014.7 24 1012.4 24 9.7 24 8.1 24 12.8 14.0 54.0 37.0 0.00G 999.9 000000 724050 13743 20060326 43.8 24 24.5 24 1016.8 24 1014.5 24 10.0 24 10.6 24 13.0 18.8 54.0 35.1 0.00G 999.9 000000 724050 13743 20060327 48.0 24 24.1 24 1023.3 24 1021.0 24 10.0 24 9.8 24 12.8 20.8 57.9 35.1 0.00G 999.9 000000 724050 13743 20060328 50.5 24 31.4 24 1022.4 24 1020.1 24 10.0 24 2.7 24 7.0 999.9 63.0 37.9 0.00G 999.9 010000 724050 13743 20060329 54.6 24 38.3 24 1022.8 24 1020.5 24 8.6 24 5.0 24 9.9 999.9 64.9 43.0 0.01G 999.9 010000 724050 13743 20060330 54.8 24 39.0 24 1026.3 24 1023.9 24 8.8 24 6.1 24 11.1 999.9 69.1 42.1 0.00G 999.9 000000 724050 13743 20060331 60.3 24 40.4 24 1023.0 24 1020.6 24 9.9 24 10.4 24 15.0 999.9 77.0* 48.9* 0.00G 999.9 000000 724050 13743 20060401 66.8 24 52.6 24 1012.6 23 1010.2 24 9.1 24 12.1 24 21.0 29.7 75.0 50.0 0.01G 999.9 010000 724050 13743 20060402 60.4 24 42.6 24 1016.7 24 1014.4 24 10.0 24 7.5 24 15.0 16.9 75.0 53.1 0.00I 999.9 000000 724050 13743 20060403 59.8 24 49.0 24 1010.9 22 1008.6 24 9.9 24 8.7 24 15.9 34.8 72.0 53.1 0.01G 999.9 010110 724050 13743 20060404 52.7 24 31.3 24 1008.8 24 1006.4 24 9.7 24 14.0 24 23.7 30.7 72.0 45.0 0.55G 999.9 010010 724050 13743 20060405 49.2 24 25.1 24 1009.6 24 1007.1 24 9.8 24 12.6 24 23.7 29.7 55.9* 39.2* 0.00G 999.9 010000 724050 13743 20060406 52.7 24 30.9 24 1013.8 24 1011.4 24 10.0 24 6.5 24 12.8 16.9 64.9 43.0 0.02G 999.9 000000 724050 13743 20060407 59.2 24 45.0 24 1008.0 24 1005.8 24 9.9 24 7.1 24 26.8 34.8 80.1 46.0 0.05G 999.9 010010 724050 13743 20060408 56.6 24 51.5 24 1005.6 19 1003.5 24 8.3 24 10.8 24 22.7 31.7 80.1 42.1 0.13G 999.9 010010 724050 13743 20060409 44.5 24 24.7 24 1019.5 24 1017.2 24 10.0 24 10.7 24 15.9 16.9 64.9 34.0 0.49G 999.9 000000 724050 13743 20060410 51.3 24 30.7 24 1024.5 24 1022.1 24 10.0 24 4.5 24 9.9 18.1 64.0 34.0 0.00G 999.9 000000 724050 13743 20060411 57.7 24 38.2 24 1026.5 24 1024.1 24 10.0 24 8.2 24 11.1 999.9 72.0 39.0 0.00G 999.9 000000 724050 13743 20060412 61.2 24 43.9 24 1026.0 24 1023.7 24 10.0 24 9.8 24 16.9 19.8 73.0 46.9 0.00G 999.9 000000 724050 13743 20060413 67.5 24 50.6 24 1019.2 24 1016.9 24 10.0 24 9.6 24 15.9 999.9 79.0 51.1 0.00G 999.9 000000 724050 13743 20060414 66.0 24 53.1 24 1012.2 24 1010.0 24 9.5 24 6.8 24 15.0 20.8 79.0 57.9 0.00G 999.9 000000 724050 13743 20060415 70.7 24 56.3 24 1002.7 24 1000.6 24 10.0 24 9.6 24 18.8 25.8 82.9 57.9 0.00G 999.9 010000 724050 13743 20060416 66.3 24 37.7 24 1006.7 24 1004.4 24 10.0 24 7.9 24 13.0 999.9 82.9 57.0 0.00G 999.9 000000 724050 13743 20060417 56.0 24 45.2 24 1007.9 23 1005.5 24 9.3 24 5.3 24 15.0 999.9 72.0 46.9 0.18G 999.9 010010 724050 13743 20060418 55.9 24 41.6 24 1012.7 24 1010.4 24 10.0 24 6.9 24 9.9 999.9 70.0 46.9 0.18G 999.9 000000 724050 13743 20060419 63.2 24 41.7 24 1012.4 24 1010.1 24 10.0 24 6.4 24 15.0 19.0 75.9 46.9 0.00G 999.9 000000 724050 13743 20060420 67.3 24 40.4 24 1013.3 24 1011.0 24 10.0 24 5.2 24 10.9 15.0 82.0 51.1 0.00G 999.9 000000 724050 13743 20060421 63.4 24 50.0 24 1016.6 22 1014.6 24 9.7 24 6.0 24 13.8 16.9 82.0 52.0 0.00G 999.9 010000 724050 13743 20060422 59.6 24 58.3 24 1016.9 18 1014.4 24 6.0 24 7.9 24 15.0 17.9 66.9 55.0 0.37G 999.9 010000 724050 13743 20060423 57.0 24 53.5 24 1012.1 21 1010.0 24 8.1 24 6.8 24 11.8 16.9 71.1 50.0 1.08G 999.9 010000 724050 13743 20060424 63.2 24 53.4 24 1010.0 20 1007.6 24 6.8 24 6.2 24 15.0 19.8 73.0 50.0 0.00G 999.9 100000 724050 13743 20060425 63.7 24 48.6 24 1010.0 24 1007.7 24 9.5 24 4.6 24 9.9 16.9 75.9 52.0 0.00G 999.9 000000 724050 13743 20060426 53.7 24 38.2 24 1013.6 24 1011.3 24 9.8 24 10.4 24 21.0 32.6 75.9 44.1 0.03G 999.9 010000 724050 13743 20060427 57.3 24 36.8 24 1012.2 24 1009.9 24 10.0 24 5.9 24 9.9 999.9 72.0 44.1 0.02G 999.9 000000 724050 13743 20060428 59.6 24 33.8 24 1019.3 24 1017.0 24 10.0 24 9.9 24 18.1 22.0 72.0 45.0 0.00G 999.9 000000 724050 13743 20060429 56.6 24 36.2 24 1028.3 24 1025.9 24 10.0 24 5.9 24 8.9 999.9 66.9 44.1 0.00G 999.9 000000 724050 13743 20060430 56.2 24 34.2 24 1029.4 24 1027.0 24 10.0 24 5.9 24 11.8 999.9 68.0 44.1 0.00G 999.9 000000 724050 13743 20060501 58.7 24 36.3 24 1026.2 24 1023.8 24 10.0 24 7.9 24 15.0 20.8 70.0 45.0 0.00G 999.9 000000 724050 13743 20060502 61.3 24 41.7 24 1018.1 24 1015.7 24 10.0 24 6.4 24 9.9 999.9 79.0 45.0 0.00G 999.9 000000 724050 13743 20060503 68.4 24 48.6 24 1011.2 24 1008.9 24 10.0 24 9.2 24 15.0 19.8 79.0 46.9 0.00G 999.9 000000 724050 13743 20060504 69.2 24 47.6 24 1012.3 24 1010.0 24 10.0 24 5.8 24 10.9 15.9 82.0 55.9 0.00G 999.9 000000 724050 13743 20060505 71.7 24 54.3 24 1008.8 24 1006.5 24 10.0 24 4.8 24 8.9 999.9 82.0 55.9 0.00G 999.9 000000 724050 13743 20060506 69.6 24 50.1 24 1008.3 24 1006.0 24 10.0 24 9.3 24 19.8 25.8 81.0 62.1 0.00G 999.9 000000 724050 13743 20060507 59.2 24 35.5 24 1018.0 24 1015.7 24 10.0 24 8.2 24 13.0 999.9 80.1 51.1 0.00G 999.9 010000 724050 13743 20060508 53.4 24 47.4 24 1019.0 24 1016.6 24 9.3 24 7.7 24 12.0 999.9 66.0 51.1 0.12G 999.9 010000 724050 13743 20060509 59.9 24 37.4 24 1017.4 24 1015.0 24 10.0 24 5.9 24 8.9 999.9 71.1 51.1 0.06G 999.9 000000 724050 13743 20060510 64.8 24 44.2 24 1012.4 24 1010.0 24 10.0 24 4.2 24 8.0 18.1 78.1 50.0 0.00G 999.9 000000 724050 13743 20060511 64.6 24 57.4 24 1006.1 22 1003.9 24 7.2 24 9.6 24 16.9 23.7 78.1 50.0 0.00G 999.9 110010 724050 13743 20060512 60.3 24 51.5 24 1005.1 24 1002.6 24 9.0 24 6.8 24 19.8 32.6 71.1 50.0 0.81G 999.9 010010 724050 13743 20060513 62.5 24 50.9 24 1009.3 24 1007.0 24 9.4 24 6.2 24 17.9 999.9 71.1 50.0 0.28G 999.9 010000 724050 13743 20060514 60.3 24 53.5 24 1012.2 23 1010.0 24 8.5 24 8.6 24 16.9 999.9 71.1 52.0 0.00G 999.9 010010 724050 13743 20060515 61.2 24 53.3 24 1010.5 21 1008.2 24 8.9 24 10.3 24 15.0 999.9 69.8* 55.4* 0.50G 999.9 010000 724050 13743 20060516 60.3 24 45.2 24 1007.2 24 1005.0 24 10.0 24 7.6 24 11.1 15.9 71.1 54.0 0.10G 999.9 000000 724050 13743 20060517 61.6 24 48.0 24 1004.8 22 1002.3 24 10.0 24 6.3 24 11.8 18.8 73.0 51.1 0.00G 999.9 010010 724050 13743 20060518 61.7 24 52.5 24 1000.1 23 997.8 24 8.7 24 7.4 24 14.0 25.8 73.0 51.1 0.13G 999.9 010000 724050 13743 20060519 60.0 24 42.5 24 1003.1 24 1000.7 24 10.0 24 9.9 24 15.9 20.8 73.0 52.0 0.20G 999.9 010000 724050 13743 20060520 63.3 24 45.4 24 1006.6 24 1004.3 24 10.0 24 6.8 24 15.0 21.8 73.9 54.0 0.03G 999.9 010000 724050 13743 20060521 62.8 24 40.9 24 1008.6 24 1006.3 24 10.0 24 9.8 24 20.8 27.8 75.9 48.9 0.00G 999.9 000000 724050 13743 20060522 59.4 24 38.0 24 1014.1 24 1011.8 24 10.0 24 10.8 24 21.8 26.8 70.0 48.9 0.00G 999.9 000000 724050 13743 20060523 56.8 24 35.8 24 1019.0 24 1016.6 24 10.0 24 9.2 24 12.8 19.8 68.0 46.0 0.00G 999.9 000000 724050 13743 20060524 62.2 24 39.7 24 1018.6 24 1016.3 24 10.0 24 6.2 24 12.0 999.9 73.9 48.9 0.00G 999.9 000000 724050 13743 20060525 65.0 24 51.8 24 1013.3 24 1011.0 24 10.0 24 6.1 24 10.9 999.9 75.9 48.9 0.00G 999.9 010000 724050 13743 20060526 70.1 24 63.6 24 1005.4 23 1003.1 24 6.8 24 5.4 24 12.8 15.9 79.0 57.0 0.00G 999.9 010010 724050 13743 20060527 72.6 24 63.5 24 1007.6 24 1004.9 24 9.7 24 8.2 24 14.0 19.8 82.9 63.0 0.11G 999.9 010010 724050 13743 20060528 75.3 24 60.3 24 1018.0 24 1015.7 24 9.9 24 3.7 24 9.9 999.9 87.1 64.0 0.00G 999.9 000000 724050 13743 20060529 76.3 24 63.6 24 1020.1 24 1017.8 24 8.8 24 5.7 24 9.9 999.9 88.0 64.0 0.00G 999.9 000000 724050 13743 20060530 80.2 24 66.6 24 1018.0 24 1015.6 24 6.9 24 5.6 24 8.9 999.9 95.0 64.0 0.00G 999.9 000000 724050 13743 20060531 79.7 24 67.9 24 1019.7 24 1017.4 24 6.2 24 6.1 24 9.9 999.9 95.0 69.1 0.00G 999.9 000000 724050 13743 20060601 79.8 24 69.6 24 1016.8 24 1014.4 24 7.6 24 8.1 24 12.0 999.9 91.0 71.1 0.00G 999.9 000000 724050 13743 20060602 76.8 24 67.9 24 1011.4 22 1009.4 24 7.5 24 4.9 24 15.9 999.9 91.0 71.1 0.00G 999.9 010010 724050 13743 20060603 71.9 24 62.9 24 1007.0 21 1004.5 24 8.4 24 11.0 24 15.9 23.7 84.9 64.9 0.05G 999.9 010010 724050 13743 20060604 69.1 24 53.3 24 1008.9 24 1006.6 24 10.0 24 7.4 24 13.0 999.9 79.0 60.1 0.00I 999.9 000000 724050 13743 20060605 66.8 24 52.9 24 1010.9 23 1008.8 24 10.0 24 6.7 24 11.1 15.0 79.0 59.0 0.00G 999.9 010000 724050 13743 20060606 69.6 24 56.0 24 1013.2 24 1010.9 24 9.4 24 7.2 24 12.8 999.9 79.0 59.0 0.00G 999.9 000000 724050 13743 20060607 72.6 24 57.0 24 1010.5 24 1008.2 24 10.0 24 8.6 24 15.9 19.8 84.9 60.1 0.00G 999.9 000000 724050 13743 20060608 72.9 24 58.8 24 1009.0 24 1006.8 24 10.0 24 7.5 24 10.9 999.9 84.9 62.1 0.01G 999.9 010010 724050 13743 20060609 72.4 24 59.2 24 1008.4 19 1005.9 24 8.8 24 8.0 24 28.7 35.7 84.9 63.0 0.00G 999.9 010010 724050 13743 20060610 66.5 24 48.9 24 1008.4 24 1006.0 24 9.8 24 10.1 24 17.9 24.9 84.9 60.1 0.18G 999.9 010000 724050 13743 20060611 66.0 24 39.0 24 1010.7 24 1008.4 24 10.0 24 9.6 24 14.0 19.8 77.0 54.0 0.00G 999.9 000000 724050 13743 20060612 64.9 24 50.2 24 1013.5 23 1011.3 24 9.0 24 5.2 24 9.9 999.9 77.0 54.0 0.20G 999.9 010000 724050 13743 20060613 69.8 24 55.5 24 1016.6 24 1014.2 24 10.0 24 6.6 24 10.9 13.8 82.0 57.0 0.19G 999.9 000000 724050 13743 20060614 69.4 24 62.5 24 1014.9 23 1012.6 24 8.0 24 5.3 24 9.9 999.9 82.0 60.1 0.00G 999.9 000000 724050 13743 20060615 73.5 24 54.8 24 1014.5 24 1012.2 24 9.2 24 10.2 24 16.9 22.0 84.9 64.9 0.00G 999.9 010000 724050 13743 20060616 74.5 24 48.6 24 1021.0 24 1018.6 24 10.0 24 4.0 24 8.9 999.9 86.0 61.0 0.00G 999.9 000000 724050 13743 20060617 75.7 24 58.5 24 1021.3 24 1019.0 24 9.9 24 7.6 24 11.8 999.9 88.0 61.0 0.00G 999.9 000000 724050 13743 20060618 79.9 24 65.9 24 1018.9 24 1016.6 24 6.7 24 8.3 24 12.0 17.9 93.0 64.0 0.00G 999.9 000000 724050 13743 20060619 78.8 24 65.9 24 1015.1 22 1012.6 24 6.4 24 9.6 24 17.9 24.9 93.0 69.1 0.00G 999.9 110010 724050 13743 20060620 76.5 24 65.2 24 1013.6 24 1011.3 24 7.0 24 5.9 24 11.1 16.9 90.0 69.1 1.99G 999.9 010010 724050 13743 20060621 80.0 24 60.1 24 1017.6 24 1015.3 24 9.7 24 4.2 24 8.9 999.9 90.0 69.1 0.03G 999.9 000000 724050 13743 20060622 80.9 24 66.6 24 1018.4 24 1016.1 24 8.8 24 7.4 24 12.0 999.9 91.9 69.1 0.00G 999.9 010000 724050 13743 20060623 79.1 24 68.7 24 1017.9 20 1015.6 24 8.9 24 6.6 24 31.7 39.6 86.0* 69.8* 0.71G 999.9 110010 724050 13743 20060624 77.2 24 70.3 24 1017.7 24 1015.3 24 8.7 24 7.9 24 13.0 999.9 86.0 70.0 0.01G 999.9 010010 724050 13743 20060625 74.2 24 71.5 24 1017.5 17 1015.2 24 8.0 24 5.5 24 10.9 999.9 84.9 71.1 0.21G 999.9 110010 724050 13743 20060626 74.6 24 72.6 24 1016.1 12 1013.9 24 7.9 24 7.5 24 22.7 26.8 80.1* 69.8* 7.09G 999.9 110010 724050 13743 20060627 75.4 24 73.2 24 1017.1 15 1014.8 24 8.4 24 8.5 24 16.9 24.9 81.0 71.1 2.56G 999.9 110010 724050 13743 20060628 77.4 24 70.2 24 1016.5 21 1014.1 24 8.7 24 5.4 24 11.8 15.0 87.1* 71.6* 0.76G 999.9 010000 724050 13743 20060629 76.6 24 63.6 24 1017.5 24 1015.1 24 9.1 24 6.1 24 13.0 999.9 88.0 68.0 0.03G 999.9 010010 724050 13743 20060630 74.7 24 57.8 24 1017.5 24 1015.1 24 9.8 24 6.3 24 14.0 16.9 86.0 64.9 0.00G 999.9 000000 724050 13743 20060701 75.9 24 62.1 24 1020.8 24 1018.5 24 9.4 24 6.9 24 12.8 16.9 86.0 66.0 0.00G 999.9 000000 724050 13743 20060702 78.6 24 67.2 24 1019.4 23 1017.1 24 6.6 24 10.6 24 31.7 45.6 93.0 66.0 0.00G 999.9 010110 724050 13743 20060703 79.3 24 69.5 24 1018.1 24 1015.9 24 7.3 24 5.5 24 12.0 999.9 93.0 71.1 0.70G 999.9 010010 724050 13743 20060704 81.7 24 71.0 24 1015.6 24 1013.3 24 6.9 24 8.1 24 25.8 40.6 93.9 69.1 0.00G 999.9 010010 724050 13743 20060705 75.5 24 70.5 24 1014.0 22 1011.7 24 6.8 24 5.5 24 16.9 999.9 93.9 69.1 0.35G 999.9 010010 724050 13743 20060706 72.1 24 65.2 24 1017.2 18 1013.8 24 7.3 24 8.7 24 15.0 19.0 80.1* 66.2* 1.48G 999.9 010000 724050 13743 20060707 71.1 24 56.3 24 1023.3 24 1021.0 24 10.0 24 7.6 24 11.1 999.9 80.1 62.1 0.61G 999.9 000000 724050 13743 20060708 72.7 24 60.9 24 1022.9 24 1020.6 24 10.0 24 4.3 24 8.0 999.9 82.0 62.1 0.00G 999.9 000000 724050 13743 20060709 73.9 24 63.1 24 1018.8 24 1016.5 24 10.0 24 7.5 24 15.0 18.8 82.9 64.0 0.00G 999.9 000000 724050 13743 20060710 76.2 24 66.9 24 1017.1 24 1014.8 24 7.1 24 8.4 24 14.0 18.1 84.9 66.0 0.00G 999.9 000000 724050 13743 20060711 80.4 24 70.9 24 1019.0 24 1016.7 24 5.3 24 8.9 24 12.8 999.9 88.0 68.0 0.00G 999.9 000000 724050 13743 20060712 81.4 24 73.6 24 1018.7 22 1016.2 24 4.8 24 8.1 24 20.8 30.7 89.1* 73.4* 0.00G 999.9 010010 724050 13743 20060713 77.6 24 72.7 24 1015.4 24 1013.1 24 6.8 24 6.7 24 9.9 999.9 84.0* 73.4* 0.69G 999.9 010000 724050 13743 20060714 80.6 24 73.3 24 1015.5 24 1013.1 24 7.8 24 4.7 24 9.9 999.9 84.9 73.9 0.00G 999.9 010000 724050 13743 20060715 80.0 24 74.6 24 1014.3 19 1011.9 24 4.6 24 4.9 24 19.8 23.7 90.0 75.0 0.00G 999.9 010010 724050 13743 20060716 82.8 24 67.7 24 1015.7 24 1013.4 24 9.9 24 8.5 24 11.8 16.9 91.9 73.0 0.00G 999.9 000000 724050 13743 20060717 85.1 24 69.1 24 1016.4 24 1014.0 24 10.0 24 4.7 24 8.9 999.9 96.1 73.0 0.00G 999.9 000000 724050 13743 20060718 86.4 24 72.6 24 1015.2 24 1012.9 24 7.8 24 5.4 24 8.9 999.9 97.0 73.9 0.00G 999.9 000000 724050 13743 20060719 82.3 24 67.6 24 1018.1 24 1015.7 24 8.9 24 5.8 24 23.7 30.7 97.0 73.0 0.00G 999.9 000000 724050 13743 20060720 81.4 24 71.3 24 1019.0 24 1016.6 24 7.9 24 6.3 24 12.8 999.9 91.9 73.0 0.00G 999.9 010000 724050 13743 20060721 82.5 24 72.4 24 1014.2 24 1011.8 24 6.3 24 7.0 24 13.8 999.9 91.9 73.9 0.00G 999.9 000000 724050 13743 20060722 80.5 24 71.9 24 1008.6 22 1006.2 24 8.1 24 10.1 24 16.9 27.8 89.1* 73.4* 0.00G 999.9 010000 724050 13743 20060723 75.4 24 66.8 24 1011.1 23 1008.6 24 9.3 24 6.8 24 14.0 28.0 89.1 71.1 0.34G 999.9 010010 724050 13743 20060724 77.0 24 62.2 24 1016.2 24 1013.8 24 10.0 24 4.6 24 9.9 999.9 86.0 66.9 0.00G 999.9 000000 724050 13743 20060725 77.7 24 68.8 24 1017.5 24 1015.2 24 9.2 24 8.7 24 12.0 999.9 86.0 66.9 0.00G 999.9 000000 724050 13743 20060726 79.6 24 70.9 24 1015.4 24 1013.1 24 8.7 24 6.7 24 12.8 999.9 88.0 72.0 0.00G 999.9 000000 724050 13743 20060727 82.4 24 72.7 24 1014.9 24 1012.6 24 8.1 24 8.9 24 12.0 999.9 93.9 73.0 0.00G 999.9 000000 724050 13743 20060728 84.5 24 72.2 24 1015.3 23 1013.0 24 8.5 24 9.7 24 16.9 25.8 93.9 75.0 0.00G 999.9 000000 724050 13743 20060729 83.3 24 67.9 24 1015.2 24 1012.9 24 10.0 24 5.6 24 13.0 999.9 93.9 75.9 0.00G 999.9 010010 724050 13743 20060730 85.1 24 70.7 24 1011.7 24 1009.4 24 8.3 24 6.1 24 11.1 16.9 93.9 75.9 0.00G 999.9 000000 724050 13743 20060731 87.1 24 71.0 24 1012.1 24 1009.7 24 7.7 24 6.2 24 10.9 999.9 96.1 77.0 0.00G 999.9 000000 724050 13743 20060801 88.4 24 72.6 24 1014.5 24 1012.1 24 6.1 24 6.2 24 27.0 35.0 98.1 79.0 0.00G 999.9 010000 724050 13743 20060802 90.3 24 72.7 24 1013.8 24 1011.5 24 5.7 24 6.2 24 12.8 15.0 99.0 79.0 0.00G 999.9 000000 724050 13743 20060803 90.6 24 73.0 24 1011.0 24 1008.8 24 6.3 24 7.2 24 11.8 15.9 100.9 80.1 0.00G 999.9 000000 724050 13743 20060804 87.3 24 70.2 24 1011.3 24 1008.8 24 9.4 24 7.4 24 16.9 19.8 100.9 79.0 0.00G 999.9 010010 724050 13743 20060805 82.4 24 62.0 24 1017.5 24 1015.1 24 10.0 24 6.8 24 12.0 999.9 93.9 73.0 0.00G 999.9 000000 724050 13743 20060806 81.4 24 61.3 24 1021.0 24 1018.7 24 10.0 24 6.2 24 10.9 999.9 91.9 72.0 0.00G 999.9 000000 724050 13743 20060807 81.7 24 69.3 24 1018.6 24 1016.5 24 8.2 24 8.7 24 11.1 999.9 93.0 71.1 0.57G 999.9 010010 724050 13743 20060808 82.5 24 68.4 24 1016.7 24 1014.3 24 7.5 24 7.5 24 24.9 34.8 93.0 71.1 0.22G 999.9 010010 724050 13743 20060809 77.6 24 57.8 24 1019.4 24 1017.1 24 10.0 24 7.1 24 12.0 15.0 90.0 68.0 0.00G 999.9 000000 724050 13743 20060810 73.7 24 65.8 24 1014.1 21 1011.6 24 8.3 24 8.1 24 13.0 18.1 84.9 68.0 0.00G 999.9 010000 724050 13743 20060811 74.8 24 62.8 24 1012.0 24 1009.5 24 7.5 24 7.4 24 12.8 999.9 82.0* 69.8* 0.17G 999.9 000000 724050 13743 20060812 73.1 24 51.1 24 1016.9 24 1014.6 24 10.0 24 5.8 24 10.9 999.9 82.9 63.0 0.00G 999.9 000000 724050 13743 20060813 72.9 24 55.1 24 1018.8 24 1016.6 24 10.0 24 5.3 24 9.9 15.9 84.0 61.0 0.00G 999.9 000000 724050 13743 20060814 77.1 24 63.5 24 1016.1 24 1013.8 24 10.0 24 10.2 24 13.8 18.8 89.1 61.0 0.00G 999.9 000000 724050 13743 20060815 81.0 24 68.4 24 1011.9 24 1009.5 24 9.2 24 9.2 24 14.0 999.9 89.1 68.0 0.00G 999.9 000000 724050 13743 20060816 80.1 24 58.4 24 1018.3 24 1016.0 24 10.0 24 6.6 24 9.9 999.9 90.0 70.0 0.00G 999.9 000000 724050 13743 20060817 78.2 24 61.1 24 1021.8 24 1019.4 24 9.9 24 6.0 24 10.9 15.9 90.0 69.1 0.00G 999.9 000000 724050 13743 20060818 77.0 24 62.9 24 1021.7 24 1019.4 24 10.0 24 5.2 24 9.9 999.9 88.0 68.0 0.00G 999.9 000000 724050 13743 20060819 79.1 24 70.1 24 1016.8 21 1014.9 24 10.0 24 7.5 24 12.8 999.9 89.1 68.0 0.00G 999.9 000000 724050 13743 20060820 82.6 24 69.4 24 1011.5 24 1009.2 24 9.2 24 8.1 24 16.9 23.7 91.9 73.0 0.00G 999.9 000000 724050 13743 20060821 77.8 24 59.1 24 1016.4 24 1014.1 24 9.6 24 7.9 24 14.0 999.9 91.9 66.0 0.00G 999.9 000000 724050 13743 20060822 78.3 24 62.4 24 1018.2 24 1015.9 24 10.0 24 5.0 24 10.9 999.9 89.1 66.0 0.00G 999.9 000000 724050 13743 20060823 80.5 24 62.2 24 1016.0 24 1013.6 24 9.6 24 5.6 24 11.1 999.9 90.0 69.1 0.00G 999.9 000000 724050 13743 20060824 80.6 24 62.4 24 1014.2 24 1011.9 24 8.5 24 5.2 24 9.9 999.9 91.9 70.0 0.00G 999.9 000000 724050 13743 20060825 82.5 24 65.8 24 1014.6 24 1012.3 24 7.2 24 6.1 24 9.9 999.9 93.0 71.1 0.00G 999.9 000000 724050 13743 20060826 81.5 24 68.2 24 1016.3 23 1014.0 24 6.5 24 8.0 24 15.0 999.9 93.0 73.0 0.00G 999.9 000000 724050 13743 20060827 80.5 24 69.2 24 1017.8 24 1015.6 24 9.4 24 10.1 24 15.0 999.9 89.1 75.0 0.00G 999.9 010000 724050 13743 20060828 84.0 24 68.0 24 1012.7 24 1010.4 24 10.0 24 9.3 24 15.0 19.0 93.0 75.0 0.00G 999.9 010000 724050 13743 20060829 83.0 24 72.3 24 1008.8 24 1006.4 24 7.9 24 6.3 24 11.8 999.9 95.0 75.9 0.01G 999.9 010000 724050 13743 20060830 76.9 24 70.1 24 1011.0 21 1009.0 24 10.0 24 8.6 24 13.0 999.9 95.0 71.1 0.06G 999.9 010000 724050 13743 20060831 71.6 24 64.2 24 1018.1 23 1015.7 24 9.6 24 10.7 24 15.9 20.8 80.1 69.1 0.00H 999.9 010000 724050 13743 20060901 65.6 24 59.4 24 1017.9 20 1015.5 24 7.5 24 19.6 24 28.9 39.0 75.9 62.1 0.11G 999.9 010000 724050 13743 20060902 64.3 24 62.4 24 1012.1 10 1009.0 24 4.9 24 12.1 24 28.0 35.0 69.8* 60.8* 2.52G 999.9 010000 724050 13743 20060903 68.6 24 59.8 24 1017.6 24 1015.3 24 10.0 24 2.3 24 7.0 999.9 79.0 61.0 0.08G 999.9 000000 724050 13743 20060904 71.5 24 59.0 24 1019.7 24 1017.4 24 10.0 24 5.1 24 7.0 999.9 79.0 63.0 0.00G 999.9 010000 724050 13743 20060905 65.6 24 63.5 24 1017.8 18 1015.2 24 7.0 24 7.9 24 14.0 999.9 78.1 64.0 1.04G 999.9 010000 724050 13743 20060906 67.9 24 61.8 24 1016.2 24 1013.9 24 6.5 24 3.7 24 8.9 999.9 75.9 63.0 0.73G 999.9 010000 724050 13743 20060907 70.9 24 60.5 24 1018.3 24 1016.0 24 7.4 24 2.1 24 8.0 999.9 82.0 61.0 0.00G 999.9 000000 724050 13743 20060908 72.6 24 64.2 24 1018.6 24 1016.4 24 6.0 24 4.2 24 9.9 999.9 82.0 61.0 0.00G 999.9 000000 724050 13743 20060909 74.2 24 63.7 24 1017.9 24 1015.5 24 6.2 24 5.1 24 8.9 999.9 84.9 64.9 0.00G 999.9 000000 724050 13743 20060910 73.3 24 61.9 24 1019.5 24 1017.2 24 7.3 24 5.1 24 9.9 18.1 84.9 64.0 0.00G 999.9 000000 724050 13743 20060911 67.4 24 59.6 24 1024.3 21 1022.2 24 9.9 24 7.2 24 11.1 999.9 82.9 63.0 0.00G 999.9 010000 724050 13743 20060912 64.9 24 50.4 24 1025.1 24 1022.7 24 10.0 24 4.9 24 8.0 999.9 70.0 62.1 0.00G 999.9 000000 724050 13743 20060913 64.2 24 54.8 24 1018.8 24 1016.5 24 10.0 24 7.7 24 9.9 999.9 70.0 61.0 0.00G 999.9 010000 724050 13743 20060914 65.0 24 62.1 24 1014.3 15 1011.9 23 6.1 24 5.7 24 12.0 999.9 68.0* 60.8* 0.49G 999.9 010000 724050 13743 20060915 66.3 24 62.1 24 1015.2 23 1012.9 24 7.8 24 8.0 24 15.9 20.0 75.0 60.1 0.22G 999.9 000000 724050 13743 20060916 68.5 24 64.4 24 1018.2 22 1015.9 24 9.5 24 8.1 24 11.1 15.0 75.0 60.1 0.02G 999.9 010000 724050 13743 20060917 70.4 24 63.4 24 1016.6 24 1014.3 24 8.8 24 4.7 24 8.0 999.9 81.0 62.1 0.05G 999.9 000000 724050 13743 20060918 72.3 24 65.4 24 1012.8 24 1010.5 24 9.2 24 4.1 24 8.9 999.9 82.0 62.1 0.00G 999.9 000000 724050 13743 20060919 72.3 24 65.0 24 1008.0 24 1005.6 24 6.8 24 7.5 24 11.1 999.9 82.0 64.0 0.00G 999.9 000000 724050 13743 20060920 64.8 24 48.9 24 1010.0 24 1007.7 24 10.0 24 9.7 24 20.0 24.1 80.1 57.9 0.00G 999.9 000000 724050 13743 20060921 59.5 24 44.1 24 1018.6 24 1016.3 24 10.0 24 5.3 24 8.9 999.9 70.0 50.0 0.00G 999.9 000000 724050 13743 20060922 60.7 24 50.0 24 1022.0 24 1019.6 24 10.0 24 6.1 24 13.0 999.9 70.0 50.0 0.00G 999.9 000000 724050 13743 20060923 70.5 24 62.4 24 1014.7 23 1012.6 24 8.7 24 11.6 24 18.1 22.9 80.1 53.1 0.00G 999.9 000000 724050 13743 20060924 75.2 24 68.0 24 1008.1 24 1005.8 24 8.9 24 10.3 24 15.9 22.0 82.9 64.9 0.00G 999.9 000000 724050 13743 20060925 70.2 24 53.0 24 1011.0 24 1008.7 24 10.0 24 8.0 24 14.0 18.1 82.9 62.1 0.00G 999.9 000000 724050 13743 20060926 66.2 24 46.8 24 1016.0 23 1013.7 24 10.0 24 4.9 24 11.1 999.9 75.9 55.0 0.00G 999.9 000000 724050 13743 20060927 65.7 24 53.9 24 1015.6 24 1013.4 24 10.0 24 4.6 24 8.0 999.9 75.0 55.0 0.00G 999.9 000000 724050 13743 20060928 66.7 24 57.4 24 1010.2 23 1007.8 24 9.6 24 9.5 24 29.9 41.0 78.1 55.9 0.00G 999.9 010010 724050 13743 20060929 59.1 24 49.6 24 1011.2 23 1008.4 24 9.3 24 7.3 24 15.0 20.0 78.1 55.0 1.04G 999.9 010010 724050 13743 20060930 57.7 24 48.2 24 1018.9 24 1016.6 24 10.0 24 3.3 24 14.0 999.9 68.0 50.0 0.00G 999.9 010000 724050 13743 20061001 63.6 24 53.8 24 1017.1 24 1014.8 24 9.6 24 6.0 24 13.0 999.9 73.0 52.0 0.21G 999.9 010000 724050 13743 20061002 63.1 24 49.4 24 1022.2 24 1019.9 24 10.0 24 4.4 24 8.9 999.9 75.0 51.1 0.20G 999.9 000000 724050 13743 20061003 68.2 24 58.5 24 1022.2 24 1019.9 24 10.0 24 5.2 24 8.9 999.9 80.1 51.1 0.00G 999.9 010000 724050 13743 20061004 71.5 24 62.5 24 1019.4 24 1017.1 24 9.6 24 5.3 24 11.1 999.9 82.0 60.1 0.00G 999.9 000000 724050 13743 20061005 68.1 24 58.2 24 1018.7 24 1016.4 24 9.4 24 6.8 24 13.0 22.0 82.0 61.0 0.00G 999.9 000000 724050 13743 20061006 55.0 24 52.6 24 1023.3 17 1020.7 24 6.7 24 13.4 24 19.0 26.0 61.0* 51.8* 1.49G 999.9 010000 724050 13743 20061007 52.7 24 47.5 24 1025.4 21 1023.1 24 9.9 24 16.1 24 22.0 28.9 57.0* 48.2* 0.55G 999.9 010000 724050 13743 20061008 60.2 24 51.6 24 1026.7 24 1024.5 24 10.0 24 6.0 24 11.1 999.9 71.6* 54.0* 0.01G 999.9 000000 724050 13743 20061009 62.6 24 52.8 24 1022.2 24 1020.0 24 9.6 24 1.5 24 6.0 32.1 77.0 52.0 0.00G 999.9 000000 724050 13743 20061010 66.3 24 57.4 24 1016.9 24 1014.6 24 9.8 24 2.3 24 6.0 18.1 80.1 52.0 0.00G 999.9 000000 724050 13743 20061011 64.3 24 60.9 24 1011.8 20 1009.2 24 6.2 24 3.3 24 8.9 999.9 80.1 55.9 0.00G 999.9 000000 724050 13743 20061012 65.6 24 56.4 24 1003.4 21 1000.7 24 8.7 24 8.6 24 19.0 28.9 73.0 55.9 0.23G 999.9 010010 724050 13743 20061013 48.3 24 27.2 24 1012.7 24 1010.4 24 10.0 24 6.7 24 15.0 25.1 55.9* 41.0* 0.00A 999.9 000000 724050 13743 20061014 49.9 24 31.4 24 1012.9 24 1010.6 24 10.0 24 6.7 24 13.0 20.0 62.1 37.9 0.00G 999.9 000000 724050 13743 20061015 50.1 24 30.1 24 1018.8 24 1016.4 24 10.0 24 5.0 24 8.0 999.9 62.1 37.9 0.00G 999.9 000000 724050 13743 20061016 52.5 24 40.9 24 1023.9 24 1021.6 24 10.0 24 2.8 24 9.9 999.9 64.0 37.9 0.00G 999.9 000000 724050 13743 20061017 58.4 24 53.3 24 1020.4 20 1017.0 24 8.6 24 7.4 24 15.0 20.0 64.0 41.0 0.02G 999.9 010000 724050 13743 20061018 66.0 24 62.5 24 1011.1 21 1008.7 24 7.2 24 4.8 24 9.9 999.9 73.9 55.0 0.53G 999.9 010000 724050 13743 20061019 64.3 24 62.6 24 1010.8 17 1008.5 24 4.8 24 3.8 24 8.0 999.9 68.0* 60.8* 0.00G 999.9 110000 724050 13743 20061020 63.9 24 56.6 24 1004.4 17 1000.5 24 6.1 24 9.7 24 24.1 36.9 70.0 54.0 0.24G 999.9 010000 724050 13743 20061021 52.7 24 36.3 24 1016.3 24 1013.9 24 10.0 24 5.8 24 9.9 15.9 70.0 45.0 0.22G 999.9 000000 724050 13743 20061022 51.7 24 44.5 24 1015.5 24 1013.2 24 10.0 24 7.1 24 17.1 22.0 62.1 44.1 0.00G 999.9 000000 724050 13743 20061023 50.2 24 35.7 24 1010.7 24 1008.4 24 9.7 24 10.0 24 17.1 26.0 62.1 44.1 0.00G 999.9 010000 724050 13743 20061024 44.7 24 27.2 24 1012.8 24 1010.5 24 10.0 24 13.3 24 20.0 29.9 52.0 39.9 0.00G 999.9 000000 724050 13743 20061025 46.5 24 28.5 24 1017.9 24 1015.6 24 10.0 24 10.9 24 18.1 31.1 55.0 39.0 0.00G 999.9 000000 724050 13743 20061026 46.2 24 29.9 24 1022.5 24 1020.2 24 10.0 24 7.7 24 14.0 17.1 55.0 39.0 0.00G 999.9 000000 724050 13743 20061027 48.2 24 39.5 24 1020.6 22 1018.1 24 9.0 24 3.9 24 11.1 999.9 54.0 39.9 0.00G 999.9 010000 724050 13743 20061028 57.1 24 49.5 24 997.2 17 995.5 24 7.8 24 10.7 24 22.9 35.9 64.0 46.9 1.78G 999.9 010000 724050 13743 20061029 49.9 24 26.9 24 1007.2 24 1004.9 24 10.0 24 10.5 24 18.1 26.0 64.0 39.9 0.01G 999.9 000000 724050 13743 20061030 50.7 24 38.4 24 1018.2 24 1015.9 24 10.0 24 4.0 24 11.1 999.9 68.0 39.0 0.00G 999.9 000000 724050 13743 20061031 57.7 24 46.5 24 1016.8 24 1014.4 24 10.0 24 4.6 24 9.9 999.9 73.0 39.0 0.00G 999.9 000000 724050 13743 20061101 60.3 24 50.5 24 1015.5 24 1013.2 24 10.0 24 5.3 24 8.9 999.9 73.0 48.9 0.00G 999.9 000000 724050 13743 20061102 54.1 24 41.1 24 1016.3 18 1013.3 24 9.3 24 11.0 24 19.0 24.1 60.1* 46.4* 0.38G 999.9 010000 724050 13743 20061103 41.6 24 19.1 24 1026.5 24 1024.2 24 10.0 24 12.2 24 15.9 26.0 60.1 35.1 0.00I 999.9 000000 724050 13743 20061104 37.9 24 19.2 24 1033.8 24 1031.4 24 10.0 24 5.2 24 14.0 999.9 46.0 28.9 0.00G 999.9 000000 724050 13743 20061105 42.2 24 26.4 24 1034.2 24 1031.9 24 10.0 24 2.4 24 6.0 999.9 51.1 29.1 0.00G 999.9 000000 724050 13743 20061106 45.2 24 34.1 24 1031.4 24 1029.1 24 10.0 24 1.8 24 6.0 999.9 54.0 35.1 0.00G 999.9 000000 724050 13743 20061107 46.5 24 42.7 24 1024.8 21 1022.5 24 7.4 24 2.6 24 7.0 999.9 55.9 37.9 0.00G 999.9 110000 724050 13743 20061108 57.0 24 56.3 24 1004.4 13 1002.9 24 3.8 24 7.2 24 13.0 999.9 63.0 37.9 1.64G 999.9 010000 724050 13743 20061109 61.8 24 51.3 24 1002.6 23 999.9 24 9.2 24 9.0 24 18.1 22.9 70.0 54.0 0.11G 999.9 010000 724050 13743 20061110 59.1 24 49.4 24 1012.0 24 1009.7 24 9.1 24 3.1 24 6.0 12.0 73.9 48.0 0.00G 999.9 000000 724050 13743 20061111 61.2 24 52.0 24 1013.1 24 1010.8 24 8.8 24 5.9 24 11.1 999.9 73.9 48.0 0.00G 999.9 000000 724050 13743 20061112 54.5 24 49.4 24 1011.1 18 1009.0 24 8.0 24 14.9 24 22.9 32.1 66.9* 46.4* 0.29G 999.9 010000 724050 13743 20061113 50.2 24 47.4 24 1012.7 20 1010.4 24 9.6 24 13.7 24 20.0 29.9 64.0 46.0 0.84G 999.9 010000 724050 13743 20061114 56.2 24 50.4 24 1010.3 21 1008.0 24 10.0 24 5.9 24 12.0 15.9 64.9 48.0 0.01G 999.9 000000 724050 13743 20061115 55.6 24 51.9 24 1012.1 23 1009.8 24 7.0 24 2.3 24 5.1 999.9 64.9 48.9 0.00G 999.9 000000 724050 13743 20061116 62.4 24 58.8 24 1005.8 20 1003.1 24 7.7 24 9.3 24 24.1 35.9 69.8* 55.0* 0.00G 999.9 010010 724050 13743 20061117 55.3 24 44.2 24 1006.4 24 1004.1 24 10.0 24 9.8 24 18.1 22.0 69.1 48.0 1.01G 999.9 000000 724050 13743 20061118 45.0 24 30.8 24 1016.8 24 1014.5 24 10.0 24 8.4 24 14.0 18.1 60.1 37.9 0.00G 999.9 000000 724050 13743 20061119 44.4 24 33.4 24 1015.7 24 1013.4 24 10.0 24 7.1 24 8.9 999.9 51.1 37.9 0.00G 999.9 000000 724050 13743 20061120 42.6 24 30.9 24 1019.7 24 1017.4 24 10.0 24 8.8 24 14.0 18.1 50.0 37.9 0.00G 999.9 000000 724050 13743 20061121 40.9 24 28.2 24 1029.7 24 1027.4 24 10.0 24 10.1 24 15.0 24.1 46.9 36.0 0.00G 999.9 000000 724050 13743 20061122 42.2 24 32.1 24 1024.9 21 1022.5 24 8.7 24 15.5 24 22.0 28.0 46.9 37.0 0.00G 999.9 010000 724050 13743 20061123 42.8 24 39.9 24 1019.9 17 1017.5 24 8.3 24 13.2 24 15.9 22.9 46.9 39.0 0.86G 999.9 010000 724050 13743 20061124 50.5 24 35.2 24 1021.5 23 1018.9 24 9.7 24 9.5 24 14.0 19.0 63.0 39.9 0.02G 999.9 000000 724050 13743 20061125 45.9 24 35.3 24 1027.0 24 1024.7 24 10.0 24 2.3 24 7.0 999.9 63.0 34.0 0.00G 999.9 000000 724050 13743 20061126 47.5 24 41.6 24 1028.4 24 1026.1 24 8.9 24 2.5 24 7.0 999.9 59.0 34.0 0.00G 999.9 000000 724050 13743 20061127 48.8 24 43.3 24 1027.2 24 1024.9 24 8.7 24 2.2 24 7.0 999.9 59.0 39.0 0.00G 999.9 000000 724050 13743 20061128 49.6 24 44.3 24 1026.3 24 1024.0 24 6.8 24 1.3 24 4.1 999.9 61.0 39.9 0.00G 999.9 000000 724050 13743 20061129 52.5 24 48.9 24 1027.1 22 1024.8 24 6.0 24 3.2 24 8.9 999.9 61.0* 46.4* 0.00G 999.9 100000 724050 13743 20061130 58.7 24 54.3 24 1022.9 18 1021.1 24 5.6 24 5.8 24 15.0 19.0 70.0 50.0 0.00G 999.9 110000 724050 13743 20061201 65.3 24 60.2 24 1010.2 22 1008.2 24 9.4 24 13.0 24 27.0 35.0 75.0 50.0 0.02G 999.9 010000 724050 13743 20061202 47.3 24 27.8 24 1020.6 24 1018.3 24 10.0 24 11.4 24 20.0 26.0 75.0 39.9 0.04G 999.9 000000 724050 13743 20061203 39.9 24 25.0 24 1030.9 24 1028.6 24 10.0 24 4.8 24 11.1 999.9 48.9 34.0 0.00G 999.9 000000 724050 13743 20061204 37.9 24 19.7 24 1024.0 24 1021.7 24 10.0 24 10.0 24 22.0 29.9 44.1 32.0 0.00G 999.9 000000 724050 13743 20061205 34.3 24 15.3 24 1025.8 24 1023.5 24 10.0 24 5.1 24 9.9 17.1 42.1 28.0 0.00G 999.9 000000 724050 13743 20061206 38.5 24 23.0 24 1026.9 24 1024.6 24 10.0 24 6.9 24 15.0 21.0 51.1 28.2 0.00G 999.9 000000 724050 13743 20061207 46.3 24 28.5 24 1016.6 24 1014.0 24 10.0 24 10.1 24 22.0 29.9 55.9 29.1 0.00G 999.9 000000 724050 13743 20061208 28.8 24 8.0 24 1027.5 24 1025.3 24 10.0 24 14.0 24 24.1 35.0 36.0* 24.1* 0.00G 999.9 001000 724050 13743 20061209 28.2 24 11.1 24 1032.4 24 1030.1 24 10.0 24 5.9 24 9.9 19.0 41.0 19.0 0.00G 999.9 000000 724050 13743 20061210 37.5 24 18.7 24 1030.0 24 1027.7 24 9.9 24 5.0 24 9.9 18.1 54.0 19.9 0.00G 999.9 000000 724050 13743 20061211 45.3 24 28.9 24 1030.1 24 1027.8 24 10.0 24 2.6 24 6.0 999.9 63.0 28.2 0.00G 999.9 000000 724050 13743 20061212 44.8 24 34.2 24 1032.9 24 1030.6 24 10.0 24 3.2 24 8.9 999.9 63.0 33.1 0.00G 999.9 000000 724050 13743 20061213 48.0 24 45.6 24 1025.7 19 1023.5 24 6.9 24 4.9 24 8.0 999.9 55.9 34.0 0.00G 999.9 110000 724050 13743 20061214 46.5 24 44.3 24 1018.5 20 1016.5 24 4.1 24 5.2 24 8.0 999.9 59.0 41.0 0.09G 999.9 100000 724050 13743 20061215 47.1 24 42.3 24 1010.6 24 1008.3 24 7.5 24 4.4 24 8.9 999.9 59.0 39.0 0.00G 999.9 000000 724050 13743 20061216 49.8 24 30.2 24 1018.0 24 1015.6 24 10.0 24 7.0 24 12.0 17.1 59.0 39.0 0.00G 999.9 000000 724050 13743 20061217 45.6 24 35.3 24 1022.5 24 1020.1 24 10.0 24 3.8 24 8.0 999.9 61.0 36.0 0.00G 999.9 000000 724050 13743 20061218 54.8 24 43.6 24 1020.1 24 1017.7 24 10.0 24 7.0 24 14.0 20.0 73.9 36.0 0.00G 999.9 000000 724050 13743 20061219 49.7 24 29.7 24 1025.4 24 1023.1 24 10.0 24 8.9 24 14.0 17.1 73.9 44.1 0.00G 999.9 000000 724050 13743 20061220 40.5 24 26.3 24 1031.2 24 1028.8 24 10.0 24 4.3 24 12.0 999.9 51.1 32.0 0.00G 999.9 000000 724050 13743 20061221 42.3 24 30.8 24 1028.3 24 1026.0 24 10.0 24 5.6 24 8.9 999.9 48.0 32.0 0.00G 999.9 010000 724050 13743 20061222 46.9 24 40.4 24 1026.3 20 1023.7 24 7.3 24 2.2 24 9.9 27.0 52.0 39.0 0.00G 999.9 010000 724050 13743 20061223 55.8 24 48.9 24 1013.3 17 1010.5 24 6.1 24 6.3 24 12.0 21.0 62.1 46.0 0.76G 999.9 110000 724050 13743 20061224 48.1 24 33.1 24 1019.4 24 1017.0 24 10.0 24 6.5 24 13.0 19.0 57.9 42.1 0.06G 999.9 000000 724050 13743 20061225 41.6 24 36.3 24 1023.0 20 1019.6 24 8.2 24 3.2 24 9.9 999.9 54.0 37.0 0.00G 999.9 010000 724050 13743 20061226 49.0 24 46.4 24 1001.1 18 998.4 24 6.3 24 6.3 24 15.9 25.1 54.0 37.0 0.49G 999.9 010000 724050 13743 20061227 44.5 24 27.1 24 1012.8 24 1010.5 24 10.0 24 9.8 24 19.0 26.0 48.0 42.1 0.10G 999.9 000000 724050 13743 20061228 40.7 24 27.7 24 1027.9 24 1025.6 24 10.0 24 2.4 24 6.0 999.9 48.9 32.0 0.00G 999.9 000000 724050 13743 20061229 43.9 24 35.0 24 1033.7 24 1031.3 24 9.9 24 4.0 24 9.9 999.9 53.1 32.0 0.00G 999.9 000000 724050 13743 20061230 42.5 24 39.1 24 1033.2 22 1030.9 24 5.5 24 3.4 24 8.0 999.9 53.1 36.0 0.00G 999.9 100000 724050 13743 20061231 42.3 24 36.1 24 1030.0 24 1027.8 24 8.8 24 4.3 24 9.9 14.0 48.0 37.9 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/2006/722324-03071.op0000644000175000017500000014327214302004506016653 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20060101 64.7 24 23.9 24 9999.9 0 9999.9 0 9.6 24 17.4 24 33.0 42.9 73.4* 55.4* 0.00I 999.9 000000 722324 03071 20060102 55.9 24 15.6 24 9999.9 0 9999.9 0 10.0 24 7.6 24 18.1 27.0 71.6* 41.0* 0.00I 999.9 000000 722324 03071 20060103 60.8 24 24.8 24 9999.9 0 9999.9 0 10.0 24 5.1 24 15.0 19.0 82.4* 42.8* 0.00I 999.9 000000 722324 03071 20060104 59.2 24 23.1 24 9999.9 0 9999.9 0 10.0 24 7.5 24 13.0 20.0 73.4* 51.8* 0.00I 999.9 000000 722324 03071 20060105 47.2 24 23.5 24 9999.9 0 9999.9 0 10.0 24 7.3 24 15.9 22.0 59.0* 35.6* 0.00I 999.9 000000 722324 03071 20060106 45.2 24 17.9 24 9999.9 0 9999.9 0 10.0 24 7.0 24 13.0 19.0 66.2* 32.0* 0.00I 999.9 000000 722324 03071 20060107 55.4 24 18.4 24 9999.9 0 9999.9 0 10.0 24 8.5 24 18.1 22.9 73.4* 39.2* 0.00I 999.9 000000 722324 03071 20060108 62.7 24 19.3 24 9999.9 0 9999.9 0 10.0 24 10.0 24 16.9 26.0 77.0* 48.2* 0.00I 999.9 000000 722324 03071 20060109 47.4 24 18.8 24 9999.9 0 9999.9 0 9.1 24 7.1 24 19.0 27.0 68.0* 35.6* 0.00I 999.9 000000 722324 03071 20060110 39.0 23 24.6 23 9999.9 0 9999.9 0 9.9 23 8.0 23 15.9 23.9 57.2* 26.6* 0.00I 999.9 000000 722324 03071 20060111 47.8 24 13.8 24 9999.9 0 9999.9 0 10.0 24 7.6 24 14.0 16.9 71.6* 33.8* 0.00I 999.9 000000 722324 03071 20060112 59.1 24 21.6 24 9999.9 0 9999.9 0 10.0 24 10.8 24 21.0 28.0 73.4* 48.2* 0.00I 999.9 000000 722324 03071 20060113 44.7 24 21.0 24 9999.9 0 9999.9 0 9.8 24 7.0 24 20.0 28.0 66.2* 32.0* 0.00I 999.9 000000 722324 03071 20060114 43.3 24 16.6 24 9999.9 0 9999.9 0 10.0 24 4.5 24 14.0 19.0 59.0* 30.2* 0.00I 999.9 000000 722324 03071 20060115 56.5 24 24.7 24 9999.9 0 9999.9 0 10.0 24 11.0 24 20.0 27.0 73.4* 50.0* 0.00I 999.9 000000 722324 03071 20060116 55.2 24 25.0 24 9999.9 0 9999.9 0 10.0 24 13.0 24 22.9 28.0 69.8* 46.4* 0.00I 999.9 000000 722324 03071 20060117 39.7 24 23.2 24 9999.9 0 9999.9 0 9.5 24 10.2 24 22.0 34.0 55.4* 30.2* 0.00I 999.9 000000 722324 03071 20060118 49.2 24 9.5 24 9999.9 0 9999.9 0 10.0 24 10.6 24 22.0 27.0 71.6* 35.6* 0.00I 999.9 000000 722324 03071 20060119 56.1 24 14.7 24 9999.9 0 9999.9 0 10.0 24 9.8 24 16.9 22.0 73.4* 42.8* 0.00I 999.9 000000 722324 03071 20060120 52.2 24 25.9 24 9999.9 0 9999.9 0 10.0 24 9.7 24 15.9 22.0 68.0* 37.4* 0.00I 999.9 000000 722324 03071 20060121 39.9 24 24.1 24 9999.9 0 9999.9 0 10.0 24 6.0 24 11.1 16.9 53.6* 28.4* 0.00I 999.9 000000 722324 03071 20060122 45.2 24 28.6 24 9999.9 0 9999.9 0 10.0 24 6.2 24 9.9 15.0 50.0* 41.0* 0.00I 999.9 000000 722324 03071 20060123 39.0 24 28.3 24 9999.9 0 9999.9 0 10.0 24 2.3 24 5.1 999.9 53.6* 28.4* 0.00I 999.9 000000 722324 03071 20060124 43.4 24 26.8 24 9999.9 0 9999.9 0 10.0 24 1.2 24 5.1 999.9 62.6* 28.4* 0.00I 999.9 000000 722324 03071 20060125 46.4 24 23.3 24 9999.9 0 9999.9 0 10.0 24 3.0 24 13.0 15.0 60.8* 32.0* 0.00I 999.9 000000 722324 03071 20060126 51.3 24 31.2 24 9999.9 0 9999.9 0 10.0 24 11.7 24 21.0 27.0 62.6* 44.6* 99.99 999.9 010000 722324 03071 20060127 53.3 24 44.5 24 9999.9 0 9999.9 0 9.4 24 10.5 24 18.1 20.0 62.6* 46.4* 99.99 999.9 010010 722324 03071 20060128 54.5 24 40.5 24 9999.9 0 9999.9 0 9.5 24 12.4 24 26.0 33.0 60.8* 46.4* 99.99 999.9 010010 722324 03071 20060129 50.7 24 19.5 24 9999.9 0 9999.9 0 10.0 24 8.8 24 15.0 19.0 69.8* 37.4* 0.00I 999.9 000000 722324 03071 20060130 48.2 24 19.0 24 9999.9 0 9999.9 0 10.0 24 5.4 24 12.0 16.9 64.4* 32.0* 0.00I 999.9 000000 722324 03071 20060131 52.6 24 22.1 24 9999.9 0 9999.9 0 10.0 24 9.4 24 16.9 22.9 71.6* 41.0* 0.00I 999.9 000000 722324 03071 20060201 54.3 24 32.8 24 9999.9 0 9999.9 0 10.0 24 9.2 24 15.0 18.1 69.8* 39.2* 0.00I 999.9 000000 722324 03071 20060202 58.8 24 26.0 24 9999.9 0 9999.9 0 10.0 24 11.4 24 16.9 22.0 71.6* 46.4* 0.00I 999.9 000000 722324 03071 20060203 55.3 24 27.0 24 9999.9 0 9999.9 0 10.0 24 9.2 24 19.0 28.0 68.0* 41.0* 0.00I 999.9 000000 722324 03071 20060204 45.1 24 19.5 24 9999.9 0 9999.9 0 10.0 24 4.2 24 8.9 14.0 59.0* 32.0* 0.00I 999.9 000000 722324 03071 20060205 54.1 24 18.7 24 9999.9 0 9999.9 0 10.0 24 8.7 24 16.9 22.9 78.8* 42.8* 0.00I 999.9 000000 722324 03071 20060206 48.4 24 21.9 24 9999.9 0 9999.9 0 9.9 24 10.6 24 18.1 26.0 71.6* 32.0* 0.00I 999.9 000000 722324 03071 20060207 43.8 24 15.4 24 9999.9 0 9999.9 0 10.0 24 5.3 24 18.1 23.9 62.6* 28.4* 0.00I 999.9 000000 722324 03071 20060208 51.5 24 14.7 24 9999.9 0 9999.9 0 10.0 24 5.4 24 9.9 999.9 69.8* 32.0* 0.00I 999.9 000000 722324 03071 20060209 49.7 24 19.9 24 9999.9 0 9999.9 0 10.0 24 5.4 24 15.0 19.0 66.2* 32.0* 0.00I 999.9 000000 722324 03071 20060210 47.4 24 30.0 24 9999.9 0 9999.9 0 9.8 24 10.4 24 22.0 32.1 59.0* 37.4* 99.99 999.9 010000 722324 03071 20060211 37.4 24 9.9 24 9999.9 0 9999.9 0 10.0 24 9.1 24 15.9 21.0 46.4* 32.0* 0.00I 999.9 000000 722324 03071 20060212 38.5 24 10.2 24 9999.9 0 9999.9 0 10.0 24 5.9 24 13.0 15.9 59.0* 26.6* 0.00I 999.9 000000 722324 03071 20060213 46.2 24 12.2 24 9999.9 0 9999.9 0 10.0 24 5.6 24 19.0 28.9 66.2* 30.2* 0.00I 999.9 000000 722324 03071 20060214 51.7 24 12.2 24 9999.9 0 9999.9 0 10.0 24 8.3 24 16.9 21.0 69.8* 37.4* 0.00I 999.9 000000 722324 03071 20060215 62.1 24 20.6 24 9999.9 0 9999.9 0 10.0 24 11.5 24 20.0 27.0 77.0* 50.0* 0.00I 999.9 000000 722324 03071 20060216 64.2 24 24.7 24 9999.9 0 9999.9 0 10.0 24 10.8 24 23.9 32.1 78.8* 51.8* 0.00I 999.9 000000 722324 03071 20060217 36.2 24 15.8 24 9999.9 0 9999.9 0 9.6 24 14.3 24 26.0 33.0 9999.9 24.8* 0.00I 999.9 000000 722324 03071 20060218 29.0 24 15.5 24 9999.9 0 9999.9 0 10.0 24 9.4 24 14.0 18.1 33.8* 24.8* 0.00I 999.9 000000 722324 03071 20060219 27.1 24 17.0 24 9999.9 0 9999.9 0 10.0 24 7.0 24 12.0 15.0 44.6* 21.2* 0.00I 999.9 000000 722324 03071 20060220 42.5 24 29.3 24 9999.9 0 9999.9 0 10.0 24 5.4 24 11.1 999.9 64.4* 33.8* 0.00I 999.9 000000 722324 03071 20060221 53.2 24 35.5 24 9999.9 0 9999.9 0 10.0 24 6.0 24 12.0 20.0 73.4* 39.2* 0.00I 999.9 000000 722324 03071 20060222 59.7 24 31.2 24 9999.9 0 9999.9 0 10.0 24 4.9 24 11.1 15.9 69.8* 51.8* 0.00I 999.9 000000 722324 03071 20060223 46.8 24 35.4 24 9999.9 0 9999.9 0 7.6 24 5.4 24 9.9 999.9 64.4* 41.0* 99.99 999.9 010000 722324 03071 20060224 47.5 24 43.5 24 9999.9 0 9999.9 0 6.7 24 4.8 24 15.0 20.0 59.0* 44.6* 99.99 999.9 010000 722324 03071 20060225 52.0 24 47.7 24 9999.9 0 9999.9 0 7.4 24 8.6 24 19.0 26.0 59.0* 44.6* 99.99 999.9 110010 722324 03071 20060226 43.0 24 38.4 24 9999.9 0 9999.9 0 9.2 24 5.1 24 15.0 999.9 51.8* 33.8* 0.00I 999.9 000000 722324 03071 20060227 52.5 24 41.3 24 9999.9 0 9999.9 0 10.0 24 8.9 24 16.9 21.0 73.4* 44.6* 0.00I 999.9 000000 722324 03071 20060228 62.8 24 39.7 24 9999.9 0 9999.9 0 10.0 24 7.6 24 14.0 20.0 82.4* 46.4* 0.00I 999.9 000000 722324 03071 20060301 70.8 24 33.3 24 9999.9 0 9999.9 0 10.0 24 9.2 24 15.0 19.0 86.0* 53.6* 0.00I 999.9 000000 722324 03071 20060302 67.0 24 34.9 24 9999.9 0 9999.9 0 10.0 24 9.7 24 20.0 25.1 80.6* 55.4* 0.00I 999.9 000000 722324 03071 20060303 56.6 24 34.5 24 9999.9 0 9999.9 0 10.0 24 11.5 24 14.0 22.0 69.8* 46.4* 0.00I 999.9 000000 722324 03071 20060304 62.5 24 51.4 24 9999.9 0 9999.9 0 9.9 24 10.8 24 18.1 22.9 69.8* 57.2* 0.00I 999.9 000000 722324 03071 20060305 62.4 24 49.9 24 9999.9 0 9999.9 0 9.0 24 7.3 24 16.9 22.9 78.8* 50.0* 0.00I 999.9 000000 722324 03071 20060306 63.7 24 37.2 24 9999.9 0 9999.9 0 10.0 24 4.3 24 12.0 18.1 82.4* 46.4* 0.00I 999.9 000000 722324 03071 20060307 69.4 24 50.9 24 9999.9 0 9999.9 0 10.0 24 8.9 24 13.0 19.0 82.4* 57.2* 0.00I 999.9 000000 722324 03071 20060308 67.0 24 45.0 24 9999.9 0 9999.9 0 10.0 24 8.6 24 15.0 22.9 78.8* 55.4* 0.00I 999.9 000000 722324 03071 20060309 57.2 24 26.2 24 9999.9 0 9999.9 0 9.9 24 16.2 24 27.0 36.9 71.6* 44.6* 0.00I 999.9 000000 722324 03071 20060310 58.9 24 19.7 24 9999.9 0 9999.9 0 10.0 24 7.4 24 19.0 27.0 75.2* 42.8* 0.00I 999.9 000000 722324 03071 20060311 59.6 24 26.4 24 9999.9 0 9999.9 0 10.0 24 3.4 24 13.0 22.0 77.0* 41.0* 0.00I 999.9 000000 722324 03071 20060312 65.2 24 21.9 24 9999.9 0 9999.9 0 10.0 24 8.9 24 23.9 33.0 80.6* 42.8* 0.00I 999.9 000000 722324 03071 20060313 52.6 24 13.6 24 9999.9 0 9999.9 0 9.9 24 10.4 24 18.1 25.1 77.0* 35.6* 0.00I 999.9 000000 722324 03071 20060314 47.9 24 14.4 24 9999.9 0 9999.9 0 10.0 24 5.1 24 14.0 19.0 66.2* 30.2* 0.00I 999.9 000000 722324 03071 20060315 57.7 24 23.7 24 9999.9 0 9999.9 0 10.0 24 11.7 24 21.0 27.0 73.4* 46.4* 0.00I 999.9 000000 722324 03071 20060316 60.3 23 34.7 23 9999.9 0 9999.9 0 10.0 23 11.4 23 22.0 28.0 69.8* 46.4* 0.00I 999.9 000000 722324 03071 20060317 54.9 24 23.4 24 9999.9 0 9999.9 0 10.0 24 10.5 24 15.9 22.0 68.0* 50.0* 0.00I 999.9 000000 722324 03071 20060318 46.7 24 40.8 24 9999.9 0 9999.9 0 7.4 24 8.5 24 14.0 19.0 57.2* 44.6* 99.99 999.9 110000 722324 03071 20060319 49.4 24 48.8 24 9999.9 0 9999.9 0 4.7 24 8.7 24 18.1 26.0 53.6* 46.4* 99.99 999.9 110010 722324 03071 20060320 49.4 24 36.7 24 9999.9 0 9999.9 0 9.7 24 17.3 24 28.9 40.0 60.8* 41.0* 99.99 999.9 010010 722324 03071 20060321 42.4 24 27.9 24 9999.9 0 9999.9 0 10.0 24 7.5 24 15.0 28.0 60.8* 30.2* 0.00I 999.9 000000 722324 03071 20060322 39.4 24 30.5 24 9999.9 0 9999.9 0 10.0 24 12.6 24 16.9 22.9 51.8* 32.0* 0.00I 999.9 000000 722324 03071 20060323 37.1 24 31.7 24 9999.9 0 9999.9 0 8.7 24 7.3 24 14.0 19.0 42.8* 32.0* 99.99 999.9 010000 722324 03071 20060324 38.9 24 29.5 24 9999.9 0 9999.9 0 9.2 24 2.7 24 8.9 15.9 57.2* 28.4* 0.00I 999.9 000000 722324 03071 20060325 50.2 24 29.5 24 9999.9 0 9999.9 0 10.0 24 6.5 24 14.0 20.0 69.8* 35.6* 0.00I 999.9 000000 722324 03071 20060326 59.8 24 33.4 24 9999.9 0 9999.9 0 10.0 24 11.6 24 19.0 23.9 78.8* 46.4* 0.00I 999.9 000000 722324 03071 20060327 60.8 24 45.3 24 9999.9 0 9999.9 0 9.9 24 12.6 24 22.9 29.9 73.4* 53.6* 0.00I 999.9 000000 722324 03071 20060328 58.2 24 37.5 24 9999.9 0 9999.9 0 10.0 24 8.3 24 13.0 19.0 69.8* 51.8* 99.99 999.9 010000 722324 03071 20060329 61.7 24 52.5 24 9999.9 0 9999.9 0 9.5 24 9.2 24 15.9 27.0 77.0* 53.6* 99.99 999.9 010010 722324 03071 20060330 68.1 24 52.2 24 9999.9 0 9999.9 0 9.6 24 14.2 24 22.0 32.1 75.2* 60.8* 0.00I 999.9 000000 722324 03071 20060331 65.7 24 36.9 24 9999.9 0 9999.9 0 10.0 24 4.3 24 13.0 16.9 80.6* 51.8* 0.00I 999.9 000000 722324 03071 20060401 70.3 24 54.3 24 9999.9 0 9999.9 0 8.5 24 8.2 24 18.1 22.9 82.4* 60.8* 0.00I 999.9 000000 722324 03071 20060402 70.3 24 39.5 24 9999.9 0 9999.9 0 10.0 24 8.2 24 16.9 25.1 80.6* 57.2* 0.00I 999.9 000000 722324 03071 20060403 63.6 24 34.8 24 9999.9 0 9999.9 0 10.0 24 8.1 24 18.1 23.9 80.6* 51.8* 0.00I 999.9 000000 722324 03071 20060404 64.6 24 45.5 24 9999.9 0 9999.9 0 10.0 24 9.5 24 15.9 22.0 84.2* 55.4* 0.00I 999.9 000000 722324 03071 20060405 74.5 24 49.9 24 9999.9 0 9999.9 0 10.0 24 8.4 24 15.0 21.0 89.6* 62.6* 0.00I 999.9 000000 722324 03071 20060406 72.1 24 42.4 24 9999.9 0 9999.9 0 9.9 24 14.9 24 33.0 43.9 86.0* 64.4* 0.00I 999.9 000000 722324 03071 20060407 64.6 24 19.5 24 9999.9 0 9999.9 0 10.0 24 12.6 24 23.9 33.0 77.0* 50.0* 0.00I 999.9 000000 722324 03071 20060408 55.0 24 33.9 24 9999.9 0 9999.9 0 9.4 24 7.3 24 22.0 27.0 75.2* 41.0* 0.00I 999.9 000000 722324 03071 20060409 62.5 24 35.5 24 9999.9 0 9999.9 0 10.0 24 6.1 24 13.0 19.0 80.6* 50.0* 0.00I 999.9 000000 722324 03071 20060410 67.8 24 39.4 24 9999.9 0 9999.9 0 10.0 24 10.3 24 18.1 22.9 80.6* 55.4* 0.00I 999.9 000000 722324 03071 20060411 68.5 24 48.7 24 9999.9 0 9999.9 0 10.0 24 8.3 24 15.9 21.0 78.8* 59.0* 0.00I 999.9 000000 722324 03071 20060412 72.3 24 51.1 24 9999.9 0 9999.9 0 10.0 24 7.6 24 21.0 23.9 89.6* 59.0* 0.00I 999.9 000000 722324 03071 20060413 73.6 24 54.6 24 9999.9 0 9999.9 0 10.0 24 9.6 24 15.9 21.0 87.8* 59.0* 0.00I 999.9 000000 722324 03071 20060414 76.7 23 52.1 23 9999.9 0 9999.9 0 10.0 23 9.8 23 16.9 21.0 91.4* 64.4* 0.00I 999.9 000000 722324 03071 20060415 79.5 24 47.0 24 9999.9 0 9999.9 0 9.9 24 13.2 24 29.9 41.0 91.4* 68.0* 0.00I 999.9 000000 722324 03071 20060416 74.9 24 26.0 24 9999.9 0 9999.9 0 10.0 24 9.4 24 18.1 28.0 89.6* 55.4* 0.00I 999.9 000000 722324 03071 20060417 76.4 24 25.2 24 9999.9 0 9999.9 0 10.0 24 9.3 24 19.0 28.9 91.4* 59.0* 0.00I 999.9 000000 722324 03071 20060418 79.0 24 23.2 24 9999.9 0 9999.9 0 10.0 24 10.8 24 16.9 22.9 89.6* 62.6* 0.00I 999.9 000000 722324 03071 20060419 67.1 24 29.4 24 9999.9 0 9999.9 0 10.0 24 10.0 24 20.0 26.0 87.8* 51.8* 0.00I 999.9 000000 722324 03071 20060420 61.4 24 49.3 24 9999.9 0 9999.9 0 10.0 24 7.9 24 20.0 26.0 73.4* 55.4* 99.99 999.9 010010 722324 03071 20060421 58.9 24 51.4 24 9999.9 0 9999.9 0 8.8 24 5.4 24 20.0 23.9 78.8* 48.2* 0.00I 999.9 100000 722324 03071 20060422 70.2 24 54.8 24 9999.9 0 9999.9 0 9.8 24 8.6 24 21.0 27.0 86.0* 55.4* 0.00I 999.9 000000 722324 03071 20060423 75.6 24 60.6 24 9999.9 0 9999.9 0 9.4 24 10.6 24 16.9 26.0 89.6* 64.4* 99.99 999.9 010010 722324 03071 20060424 77.8 24 49.8 24 9999.9 0 9999.9 0 10.0 24 10.9 24 16.9 22.0 87.8* 68.0* 0.00I 999.9 000000 722324 03071 20060425 63.4 24 37.9 24 9999.9 0 9999.9 0 10.0 24 8.1 24 18.1 27.0 87.8* 46.4* 0.00I 999.9 000000 722324 03071 20060426 58.5 24 38.1 24 9999.9 0 9999.9 0 10.0 24 6.9 24 14.0 16.9 71.6* 44.6* 0.00I 999.9 000000 722324 03071 20060427 64.4 24 47.0 24 9999.9 0 9999.9 0 10.0 24 9.0 24 20.0 27.0 78.8* 51.8* 0.00I 999.9 000000 722324 03071 20060428 73.2 24 56.4 24 9999.9 0 9999.9 0 9.9 24 14.2 24 22.9 30.9 86.0* 68.0* 0.00I 999.9 000000 722324 03071 20060429 61.5 24 39.2 24 9999.9 0 9999.9 0 10.0 24 11.8 24 20.0 28.0 80.6* 46.4* 99.99 999.9 010000 722324 03071 20060430 66.3 24 33.7 24 9999.9 0 9999.9 0 10.0 24 8.3 24 18.1 27.0 87.8* 51.8* 0.00I 999.9 000000 722324 03071 20060501 77.3 24 34.9 24 9999.9 0 9999.9 0 10.0 24 8.5 24 15.0 22.0 93.2* 64.4* 0.00I 999.9 000000 722324 03071 20060502 75.9 24 47.8 24 9999.9 0 9999.9 0 9.9 24 8.2 24 26.0 41.0 93.2* 60.8* 99.99 999.9 010000 722324 03071 20060503 74.9 24 50.8 24 9999.9 0 9999.9 0 10.0 24 11.3 24 20.0 25.1 89.6* 62.6* 0.00I 999.9 000000 722324 03071 20060504 73.5 24 56.1 24 9999.9 0 9999.9 0 9.9 24 10.7 24 21.0 26.0 87.8* 59.0* 0.00I 999.9 000000 722324 03071 20060505 69.6 24 59.6 24 9999.9 0 9999.9 0 9.4 24 10.7 24 18.1 23.9 80.6* 60.8* 99.99 999.9 010000 722324 03071 20060506 65.2 24 54.3 24 9999.9 0 9999.9 0 9.8 24 9.6 24 19.0 26.0 80.6* 57.2* 99.99 999.9 010000 722324 03071 20060507 64.0 24 56.1 24 9999.9 0 9999.9 0 9.1 24 8.4 24 14.0 18.1 78.8* 53.6* 0.00I 999.9 000000 722324 03071 20060508 74.9 24 52.0 24 9999.9 0 9999.9 0 9.0 24 9.6 24 16.9 29.9 95.0* 62.6* 0.00I 999.9 000000 722324 03071 20060509 80.1 24 25.0 24 9999.9 0 9999.9 0 10.0 24 10.2 24 18.1 26.0 95.0* 62.6* 0.00I 999.9 000000 722324 03071 20060510 73.0 24 39.7 24 9999.9 0 9999.9 0 10.0 24 11.7 24 19.0 25.1 91.4* 59.0* 0.00I 999.9 000000 722324 03071 20060511 62.3 24 39.6 24 9999.9 0 9999.9 0 10.0 24 5.2 24 13.0 16.9 75.2* 48.2* 0.00I 999.9 000000 722324 03071 20060512 69.3 24 34.6 24 9999.9 0 9999.9 0 10.0 24 7.9 24 16.9 20.0 89.6* 53.6* 0.00I 999.9 000000 722324 03071 20060513 80.8 24 38.2 24 9999.9 0 9999.9 0 10.0 24 10.4 24 16.9 21.0 100.4* 64.4* 0.00I 999.9 000000 722324 03071 20060514 78.0 24 49.0 24 9999.9 0 9999.9 0 10.0 24 11.8 24 23.9 28.9 96.8* 64.4* 0.00I 999.9 000000 722324 03071 20060515 65.8 24 45.4 24 9999.9 0 9999.9 0 10.0 24 9.2 24 20.0 26.0 82.4* 59.0* 99.99 999.9 010000 722324 03071 20060516 63.0 24 45.9 24 9999.9 0 9999.9 0 10.0 24 3.3 24 9.9 999.9 82.4* 48.2* 99.99 999.9 010000 722324 03071 20060517 72.4 24 39.7 24 9999.9 0 9999.9 0 9.8 24 3.8 24 9.9 999.9 87.8* 53.6* 0.00I 999.9 000000 722324 03071 20060518 77.6 24 35.5 24 9999.9 0 9999.9 0 10.0 24 5.6 24 11.1 15.0 95.0* 60.8* 0.00I 999.9 000000 722324 03071 20060519 84.0 24 36.1 24 9999.9 0 9999.9 0 10.0 24 4.7 24 15.9 26.0 98.6* 64.4* 0.00I 999.9 000000 722324 03071 20060520 85.4 24 37.5 24 9999.9 0 9999.9 0 10.0 24 6.9 24 14.0 18.1 100.4* 71.6* 0.00I 999.9 000000 722324 03071 20060521 84.9 24 46.8 24 9999.9 0 9999.9 0 10.0 24 10.1 24 15.9 26.0 96.8* 71.6* 0.00I 999.9 000000 722324 03071 20060522 82.3 24 49.0 24 9999.9 0 9999.9 0 10.0 24 12.0 24 19.0 26.0 95.0* 68.0* 0.00I 999.9 000000 722324 03071 20060523 81.5 23 51.3 23 9999.9 0 9999.9 0 10.0 23 12.6 23 19.0 23.9 96.8* 71.6* 0.00I 999.9 000000 722324 03071 20060524 82.9 24 54.8 24 9999.9 0 9999.9 0 10.0 24 7.7 24 18.1 22.9 98.6* 69.8* 0.00I 999.9 000000 722324 03071 20060525 81.8 24 57.3 24 9999.9 0 9999.9 0 9.8 24 9.0 24 20.0 27.0 96.8* 68.0* 99.99 999.9 010010 722324 03071 20060526 83.8 24 56.8 24 9999.9 0 9999.9 0 10.0 24 11.4 24 15.9 23.9 96.8* 69.8* 0.00I 999.9 000000 722324 03071 20060527 81.9 24 51.7 24 9999.9 0 9999.9 0 10.0 24 11.1 24 22.9 30.9 95.0* 68.0* 0.00I 999.9 000010 722324 03071 20060528 80.8 24 51.9 24 9999.9 0 9999.9 0 10.0 24 11.1 24 19.0 28.9 96.8* 69.8* 0.00I 999.9 000000 722324 03071 20060529 81.4 24 57.6 24 9999.9 0 9999.9 0 10.0 24 7.4 24 18.1 27.0 96.8* 68.0* 0.00I 999.9 000000 722324 03071 20060530 79.0 24 54.5 24 9999.9 0 9999.9 0 10.0 24 11.1 24 22.0 34.0 95.0* 64.4* 99.99 999.9 010010 722324 03071 20060531 76.8 24 55.9 24 9999.9 0 9999.9 0 10.0 24 9.8 24 20.0 27.0 89.6* 62.6* 0.00I 999.9 000010 722324 03071 20060601 72.7 24 59.7 24 9999.9 0 9999.9 0 10.0 24 6.4 24 13.0 20.0 82.4* 62.6* 99.99 999.9 010010 722324 03071 20060602 74.9 24 56.5 24 9999.9 0 9999.9 0 10.0 24 5.7 24 13.0 20.0 86.0* 62.6* 0.00I 999.9 000000 722324 03071 20060603 77.1 24 51.7 24 9999.9 0 9999.9 0 10.0 24 6.5 24 9.9 15.9 91.4* 64.4* 0.00I 999.9 000000 722324 03071 20060604 82.1 24 48.6 24 9999.9 0 9999.9 0 10.0 24 7.9 24 15.0 18.1 95.0* 68.0* 0.00I 999.9 000000 722324 03071 20060605 85.1 24 44.3 24 9999.9 0 9999.9 0 10.0 24 9.8 24 15.9 22.0 98.6* 71.6* 0.00I 999.9 000000 722324 03071 20060606 85.2 24 47.5 24 9999.9 0 9999.9 0 10.0 24 8.8 24 13.0 20.0 98.6* 71.6* 0.00I 999.9 000000 722324 03071 20060607 86.4 24 48.9 24 9999.9 0 9999.9 0 10.0 24 7.6 24 14.0 20.0 98.6* 69.8* 0.00I 999.9 000000 722324 03071 20060608 82.0 24 48.5 24 9999.9 0 9999.9 0 10.0 24 7.2 24 15.9 21.0 96.8* 66.2* 0.00I 999.9 000000 722324 03071 20060609 83.4 24 49.4 24 9999.9 0 9999.9 0 10.0 24 8.2 24 14.0 20.0 95.0* 69.8* 0.00I 999.9 000000 722324 03071 20060610 83.9 24 50.3 24 9999.9 0 9999.9 0 10.0 24 8.1 24 15.0 18.1 98.6* 69.8* 0.00I 999.9 000000 722324 03071 20060611 87.6 24 48.6 24 9999.9 0 9999.9 0 10.0 24 7.6 24 14.0 20.0 102.2* 73.4* 0.00I 999.9 000000 722324 03071 20060612 87.0 24 50.2 24 9999.9 0 9999.9 0 10.0 24 8.2 24 16.9 22.9 98.6* 71.6* 0.00I 999.9 000000 722324 03071 20060613 85.5 24 50.6 24 9999.9 0 9999.9 0 10.0 24 6.5 24 12.0 19.0 98.6* 69.8* 0.00I 999.9 000000 722324 03071 20060614 86.9 24 50.7 24 9999.9 0 9999.9 0 10.0 24 7.2 24 11.1 15.9 98.6* 71.6* 0.00I 999.9 000000 722324 03071 20060615 87.4 24 52.6 24 9999.9 0 9999.9 0 10.0 24 11.8 24 16.9 23.9 98.6* 73.4* 0.00I 999.9 000000 722324 03071 20060616 84.9 24 56.3 24 9999.9 0 9999.9 0 9.5 24 15.8 24 25.1 35.0 98.6* 71.6* 0.00I 999.9 000000 722324 03071 20060617 84.0 24 55.1 24 9999.9 0 9999.9 0 10.0 24 8.8 24 15.0 26.0 98.6* 69.8* 99.99 999.9 010000 722324 03071 20060618 83.8 24 58.0 24 9999.9 0 9999.9 0 10.0 24 8.5 24 15.0 20.0 96.8* 68.0* 0.00I 999.9 000000 722324 03071 20060619 85.6 24 52.4 24 9999.9 0 9999.9 0 10.0 24 9.7 24 15.0 21.0 98.6* 71.6* 0.00I 999.9 000000 722324 03071 20060620 82.9 24 54.8 24 9999.9 0 9999.9 0 10.0 24 6.8 24 14.0 19.0 96.8* 68.0* 0.00I 999.9 000000 722324 03071 20060621 84.4 24 59.2 24 9999.9 0 9999.9 0 10.0 24 10.3 24 15.9 21.0 96.8* 71.6* 0.00I 999.9 000000 722324 03071 20060622 83.8 24 60.1 24 9999.9 0 9999.9 0 10.0 24 11.3 24 18.1 22.0 95.0* 73.4* 0.00I 999.9 000000 722324 03071 20060623 71.8 24 61.9 24 9999.9 0 9999.9 0 8.9 24 8.7 24 28.0 35.0 91.4* 62.6* 99.99 999.9 010010 722324 03071 20060624 77.3 24 61.0 24 9999.9 0 9999.9 0 10.0 24 3.8 24 14.0 19.0 89.6* 64.4* 0.00I 999.9 000000 722324 03071 20060625 78.8 24 58.9 24 9999.9 0 9999.9 0 10.0 24 6.9 24 15.0 22.0 89.6* 68.0* 0.00I 999.9 000000 722324 03071 20060626 75.3 24 54.6 24 9999.9 0 9999.9 0 10.0 24 8.9 24 19.0 25.1 86.0* 68.0* 0.00I 999.9 000000 722324 03071 20060627 71.9 24 49.5 24 9999.9 0 9999.9 0 10.0 24 3.4 24 8.9 15.9 84.2* 60.8* 0.00I 999.9 000000 722324 03071 20060628 76.6 24 48.9 24 9999.9 0 9999.9 0 10.0 24 6.6 24 15.9 20.0 86.0* 66.2* 0.00I 999.9 000000 722324 03071 20060629 76.0 24 53.2 24 9999.9 0 9999.9 0 10.0 24 6.9 24 15.0 19.0 86.0* 68.0* 0.00I 999.9 000000 722324 03071 20060630 78.3 24 53.8 24 9999.9 0 9999.9 0 10.0 24 6.3 24 14.0 20.0 87.8* 68.0* 0.00I 999.9 000000 722324 03071 20060701 78.5 24 57.6 24 9999.9 0 9999.9 0 10.0 24 7.4 24 13.0 16.9 91.4* 66.2* 0.00I 999.9 000000 722324 03071 20060702 79.3 24 59.3 24 9999.9 0 9999.9 0 10.0 24 7.4 24 16.9 22.0 91.4* 66.2* 0.00I 999.9 000000 722324 03071 20060703 78.6 24 58.2 24 9999.9 0 9999.9 0 10.0 24 8.0 24 15.0 22.0 89.6* 66.2* 0.00I 999.9 000000 722324 03071 20060704 79.0 24 60.3 24 9999.9 0 9999.9 0 10.0 24 6.4 24 16.9 22.0 91.4* 68.0* 0.00I 999.9 000000 722324 03071 20060705 81.4 24 61.2 24 9999.9 0 9999.9 0 10.0 24 7.3 24 15.0 20.0 91.4* 71.6* 0.00I 999.9 000000 722324 03071 20060706 79.8 24 60.4 24 9999.9 0 9999.9 0 10.0 24 8.2 24 15.0 19.0 89.6* 69.8* 99.99 999.9 010000 722324 03071 20060707 80.2 24 58.9 24 9999.9 0 9999.9 0 10.0 24 7.2 24 14.0 22.0 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20060708 80.3 24 56.4 24 9999.9 0 9999.9 0 10.0 24 8.0 24 11.1 15.9 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20060709 82.8 24 56.3 24 9999.9 0 9999.9 0 10.0 24 6.5 24 11.1 21.0 95.0* 71.6* 0.00I 999.9 000000 722324 03071 20060710 85.7 24 60.5 24 9999.9 0 9999.9 0 10.0 24 9.7 24 15.9 22.0 95.0* 75.2* 0.00I 999.9 000000 722324 03071 20060711 84.6 24 60.4 24 9999.9 0 9999.9 0 10.0 24 8.9 24 14.0 21.0 98.6* 73.4* 0.00I 999.9 000000 722324 03071 20060712 87.3 24 58.2 24 9999.9 0 9999.9 0 10.0 24 9.2 24 14.0 19.0 98.6* 75.2* 0.00I 999.9 000000 722324 03071 20060713 87.5 24 55.6 24 9999.9 0 9999.9 0 10.0 24 8.9 24 19.0 22.9 100.4* 75.2* 99.99 999.9 010000 722324 03071 20060714 88.1 24 55.2 24 9999.9 0 9999.9 0 10.0 24 7.4 24 13.0 19.0 100.4* 73.4* 0.00I 999.9 000000 722324 03071 20060715 85.5 24 56.1 24 9999.9 0 9999.9 0 9.8 24 6.9 24 27.0 34.0 98.6* 75.2* 99.99 999.9 010000 722324 03071 20060716 85.4 24 56.1 24 9999.9 0 9999.9 0 10.0 24 6.1 24 12.0 21.0 96.8* 75.2* 0.00I 999.9 000000 722324 03071 20060717 88.3 24 53.4 24 9999.9 0 9999.9 0 10.0 24 6.4 24 11.1 18.1 100.4* 75.2* 0.00I 999.9 000000 722324 03071 20060718 90.4 24 56.7 24 9999.9 0 9999.9 0 10.0 24 5.9 24 18.1 21.0 100.4* 78.8* 0.00I 999.9 000000 722324 03071 20060719 88.2 24 55.9 24 9999.9 0 9999.9 0 10.0 24 6.2 24 12.0 21.0 98.6* 75.2* 99.99 999.9 010000 722324 03071 20060720 87.2 24 58.5 24 9999.9 0 9999.9 0 10.0 24 6.0 24 15.0 19.0 98.6* 75.2* 0.00I 999.9 000000 722324 03071 20060721 85.0 24 57.8 24 9999.9 0 9999.9 0 10.0 24 6.2 24 14.0 18.1 96.8* 71.6* 0.00I 999.9 000000 722324 03071 20060722 85.0 24 59.7 24 9999.9 0 9999.9 0 10.0 24 7.2 24 15.9 22.9 95.0* 73.4* 0.00I 999.9 000000 722324 03071 20060723 81.8 24 51.7 24 9999.9 0 9999.9 0 10.0 24 7.0 24 14.0 22.0 93.2* 66.2* 0.00I 999.9 000000 722324 03071 20060724 85.0 24 55.3 24 9999.9 0 9999.9 0 10.0 24 5.5 24 11.1 19.0 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20060725 85.8 24 58.0 24 9999.9 0 9999.9 0 10.0 24 7.7 24 12.0 18.1 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20060726 85.9 24 59.1 24 9999.9 0 9999.9 0 10.0 24 6.9 24 12.0 18.1 98.6* 73.4* 0.00I 999.9 000000 722324 03071 20060727 88.0 24 59.4 24 9999.9 0 9999.9 0 10.0 24 7.1 24 13.0 21.0 100.4* 75.2* 0.00I 999.9 000000 722324 03071 20060728 85.2 24 64.0 24 9999.9 0 9999.9 0 10.0 24 8.4 24 16.1 20.0 98.6* 71.6* 99.99 999.9 010010 722324 03071 20060729 80.3 24 67.4 24 9999.9 0 9999.9 0 9.9 24 8.5 24 18.1 28.0 93.2* 69.8* 99.99 999.9 010010 722324 03071 20060730 82.0 24 63.1 24 9999.9 0 9999.9 0 10.0 24 7.9 24 15.0 19.0 93.2* 73.4* 0.00I 999.9 000000 722324 03071 20060731 85.8 24 62.0 24 9999.9 0 9999.9 0 10.0 24 10.5 24 15.9 21.0 96.8* 77.0* 0.00I 999.9 000000 722324 03071 20060801 84.1 24 63.6 24 9999.9 0 9999.9 0 10.0 24 10.8 24 19.0 27.0 95.0* 75.2* 0.00I 999.9 000010 722324 03071 20060802 77.6 24 67.4 24 9999.9 0 9999.9 0 9.4 24 7.5 24 14.0 26.0 91.4* 71.6* 99.99 999.9 010010 722324 03071 20060803 77.5 24 66.7 24 9999.9 0 9999.9 0 10.0 24 7.4 24 23.9 33.0 86.0* 71.6* 99.99 999.9 010010 722324 03071 20060804 76.0 24 66.9 24 9999.9 0 9999.9 0 9.9 24 6.2 24 14.0 26.0 86.0* 69.8* 99.99 999.9 010010 722324 03071 20060805 78.0 24 67.2 24 9999.9 0 9999.9 0 9.8 24 5.3 24 18.1 28.9 91.4* 68.0* 99.99 999.9 010010 722324 03071 20060806 82.0 24 65.2 24 9999.9 0 9999.9 0 10.0 24 4.4 24 13.0 20.0 93.2* 71.6* 99.99 999.9 010010 722324 03071 20060807 82.5 24 64.2 24 9999.9 0 9999.9 0 10.0 24 4.9 24 13.0 19.0 93.2* 71.6* 0.00I 999.9 000010 722324 03071 20060808 80.5 24 66.1 24 9999.9 0 9999.9 0 10.0 24 5.5 24 12.0 19.0 91.4* 71.6* 0.00I 999.9 000000 722324 03071 20060809 83.3 24 62.6 24 9999.9 0 9999.9 0 10.0 24 7.8 24 13.0 18.1 93.2* 71.6* 0.00I 999.9 000000 722324 03071 20060810 84.6 24 61.0 24 9999.9 0 9999.9 0 10.0 24 8.0 24 14.0 21.0 96.8* 71.6* 0.00I 999.9 000000 722324 03071 20060811 87.7 24 60.4 24 9999.9 0 9999.9 0 10.0 24 8.8 24 14.0 19.0 98.6* 75.2* 0.00I 999.9 000000 722324 03071 20060812 83.3 24 62.8 24 9999.9 0 9999.9 0 10.0 24 5.2 24 15.0 26.0 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20060813 83.7 24 64.1 24 9999.9 0 9999.9 0 9.9 24 8.8 24 20.0 27.0 95.0* 75.2* 99.99 999.9 010000 722324 03071 20060814 80.1 23 63.5 23 9999.9 0 9999.9 0 10.0 23 6.8 23 21.0 28.0 91.4* 71.6* 99.99 999.9 010000 722324 03071 20060815 75.7 24 67.7 24 9999.9 0 9999.9 0 10.0 24 5.4 24 13.0 15.0 82.4* 68.0* 99.99 999.9 010010 722324 03071 20060816 72.7 24 70.0 24 9999.9 0 9999.9 0 9.0 24 4.5 24 20.0 26.0 80.6* 69.8* 99.99 999.9 010010 722324 03071 20060817 77.7 24 68.2 24 9999.9 0 9999.9 0 10.0 24 5.9 24 16.9 20.0 91.4* 69.8* 99.99 999.9 010000 722324 03071 20060818 80.2 23 64.5 23 9999.9 0 9999.9 0 10.0 23 6.6 23 13.0 16.9 93.2* 71.6* 99.99 999.9 010000 722324 03071 20060819 82.2 22 63.7 22 9999.9 0 9999.9 0 10.0 22 3.4 22 11.1 18.1 93.2* 73.4* 0.00I 999.9 000000 722324 03071 20060820 82.8 24 64.8 24 9999.9 0 9999.9 0 10.0 24 4.9 24 13.0 19.0 91.4* 71.6* 0.00I 999.9 000000 722324 03071 20060821 80.3 24 67.4 24 9999.9 0 9999.9 0 9.9 24 6.5 24 13.0 21.0 89.6* 69.8* 99.99 999.9 010010 722324 03071 20060822 80.7 24 68.1 24 9999.9 0 9999.9 0 9.9 24 4.5 24 13.0 18.1 89.6* 71.6* 0.00I 999.9 000000 722324 03071 20060823 81.9 24 65.3 24 9999.9 0 9999.9 0 10.0 24 4.5 24 13.0 999.9 93.2* 71.6* 0.00I 999.9 000000 722324 03071 20060824 85.6 24 62.3 24 9999.9 0 9999.9 0 10.0 24 5.9 24 9.9 15.9 96.8* 75.2* 0.00I 999.9 000000 722324 03071 20060825 86.9 24 61.4 24 9999.9 0 9999.9 0 10.0 24 7.7 24 14.0 16.9 96.8* 75.2* 0.00I 999.9 000000 722324 03071 20060826 82.2 24 64.8 24 9999.9 0 9999.9 0 10.0 24 4.3 24 20.0 23.9 93.2* 73.4* 99.99 999.9 010000 722324 03071 20060827 75.9 24 69.6 24 9999.9 0 9999.9 0 9.8 24 6.8 24 19.0 27.0 91.4* 69.8* 99.99 999.9 010010 722324 03071 20060828 73.8 24 67.4 24 9999.9 0 9999.9 0 9.9 24 7.6 24 20.0 25.1 82.4* 66.2* 99.99 999.9 010010 722324 03071 20060829 73.7 24 65.2 24 9999.9 0 9999.9 0 10.0 24 5.8 24 15.0 19.0 82.4* 66.2* 0.00I 999.9 000000 722324 03071 20060830 73.5 24 63.6 24 9999.9 0 9999.9 0 10.0 24 4.6 24 12.0 15.0 86.0* 64.4* 0.00I 999.9 000000 722324 03071 20060831 78.2 24 65.8 24 9999.9 0 9999.9 0 10.0 24 7.3 24 18.1 27.0 89.6* 69.8* 0.00I 999.9 000010 722324 03071 20060901 74.2 24 67.4 24 9999.9 0 9999.9 0 9.5 24 7.3 24 22.9 33.0 82.4* 68.0* 99.99 999.9 010010 722324 03071 20060902 74.5 24 65.1 24 9999.9 0 9999.9 0 10.0 24 8.4 24 16.9 22.0 80.6* 69.8* 0.00I 999.9 000000 722324 03071 20060903 63.2 24 62.5 24 9999.9 0 9999.9 0 5.4 24 9.6 24 16.9 21.0 71.6* 60.8* 99.99 999.9 010000 722324 03071 20060904 64.0 24 64.0 24 9999.9 0 9999.9 0 6.4 24 6.6 24 9.9 999.9 64.4* 62.6* 99.99 999.9 010000 722324 03071 20060905 66.1 24 62.7 24 9999.9 0 9999.9 0 9.6 24 4.9 24 9.9 999.9 77.0* 60.8* 99.99 999.9 010000 722324 03071 20060906 69.3 24 60.9 24 9999.9 0 9999.9 0 10.0 24 2.4 24 8.9 999.9 78.8* 62.6* 0.00I 999.9 000000 722324 03071 20060907 69.3 24 55.8 24 9999.9 0 9999.9 0 10.0 24 5.1 24 11.1 15.9 78.8* 59.0* 0.00I 999.9 000000 722324 03071 20060908 70.0 24 54.6 24 9999.9 0 9999.9 0 10.0 24 7.9 24 15.0 20.0 78.8* 62.6* 0.00I 999.9 000000 722324 03071 20060909 71.1 21 62.3 21 9999.9 0 9999.9 0 9.9 21 6.4 21 12.0 15.0 82.4* 60.8* 0.00I 999.9 000000 722324 03071 20060910 75.7 24 64.6 24 9999.9 0 9999.9 0 9.3 24 5.4 24 8.9 999.9 87.8* 66.2* 0.00I 999.9 000000 722324 03071 20060911 74.9 24 61.7 24 9999.9 0 9999.9 0 10.0 24 7.5 24 14.0 16.9 84.2* 64.4* 0.00I 999.9 000000 722324 03071 20060912 72.1 24 63.5 24 9999.9 0 9999.9 0 10.0 24 7.5 24 15.0 20.0 80.6* 64.4* 99.99 999.9 010000 722324 03071 20060913 71.7 24 61.6 24 9999.9 0 9999.9 0 10.0 24 4.5 24 8.9 999.9 82.4* 62.6* 0.00I 999.9 000000 722324 03071 20060914 72.9 24 61.3 24 9999.9 0 9999.9 0 10.0 24 7.8 24 15.9 21.0 84.2* 64.4* 99.99 999.9 010000 722324 03071 20060915 77.4 24 66.9 24 9999.9 0 9999.9 0 10.0 24 10.6 24 16.9 21.0 89.6* 69.8* 99.99 999.9 010000 722324 03071 20060916 81.0 24 69.2 24 9999.9 0 9999.9 0 10.0 24 14.2 24 19.0 27.0 89.6* 73.4* 0.00I 999.9 000000 722324 03071 20060917 76.0 24 66.7 24 9999.9 0 9999.9 0 10.0 24 10.4 24 16.9 23.9 82.4* 71.6* 0.00I 999.9 000000 722324 03071 20060918 63.9 24 50.9 24 9999.9 0 9999.9 0 10.0 24 3.9 24 8.9 999.9 75.2* 51.8* 0.00I 999.9 000000 722324 03071 20060919 68.4 24 47.1 24 9999.9 0 9999.9 0 9.8 24 7.2 24 13.0 18.1 80.6* 55.4* 0.00I 999.9 000000 722324 03071 20060920 72.1 24 54.3 24 9999.9 0 9999.9 0 10.0 24 9.9 24 19.0 23.9 87.8* 59.0* 0.00I 999.9 000000 722324 03071 20060921 75.9 24 53.0 24 9999.9 0 9999.9 0 10.0 24 12.9 24 22.9 30.9 87.8* 66.2* 0.00I 999.9 000000 722324 03071 20060922 78.3 24 50.6 24 9999.9 0 9999.9 0 10.0 24 11.5 24 22.0 27.0 91.4* 66.2* 0.00I 999.9 000000 722324 03071 20060923 75.2 24 50.0 24 9999.9 0 9999.9 0 10.0 24 6.2 24 11.1 15.0 89.6* 60.8* 0.00I 999.9 000000 722324 03071 20060924 63.7 24 45.1 24 9999.9 0 9999.9 0 10.0 24 8.7 24 15.9 21.0 78.8* 55.4* 99.99 999.9 010000 722324 03071 20060925 63.9 24 45.5 24 9999.9 0 9999.9 0 10.0 24 3.3 24 11.1 14.0 77.0* 55.4* 0.00I 999.9 000000 722324 03071 20060926 70.1 24 48.7 24 9999.9 0 9999.9 0 10.0 24 5.7 24 13.0 15.9 87.8* 55.4* 0.00I 999.9 000000 722324 03071 20060927 77.4 24 51.7 24 9999.9 0 9999.9 0 10.0 24 7.3 24 14.0 18.1 91.4* 64.4* 0.00I 999.9 000000 722324 03071 20060928 69.0 24 46.0 24 9999.9 0 9999.9 0 9.1 24 10.0 24 20.0 28.0 87.8* 60.8* 0.00I 999.9 000000 722324 03071 20060929 67.0 24 46.9 24 9999.9 0 9999.9 0 10.0 24 5.1 24 14.0 19.0 87.8* 55.4* 0.00I 999.9 000000 722324 03071 20060930 76.0 24 55.8 24 9999.9 0 9999.9 0 10.0 24 6.1 24 9.9 14.0 91.4* 64.4* 0.00I 999.9 000000 722324 03071 20061001 76.8 24 61.2 24 9999.9 0 9999.9 0 10.0 24 9.8 24 15.0 19.0 87.8* 66.2* 0.00I 999.9 000000 722324 03071 20061002 76.6 24 61.8 24 9999.9 0 9999.9 0 9.9 24 9.5 24 15.0 19.0 87.8* 66.2* 0.00I 999.9 000000 722324 03071 20061003 75.0 24 59.8 24 9999.9 0 9999.9 0 10.0 24 8.7 24 14.0 19.0 87.8* 62.6* 0.00I 999.9 000000 722324 03071 20061004 74.1 24 60.4 24 9999.9 0 9999.9 0 10.0 24 7.5 24 13.0 15.9 84.2* 62.6* 0.00I 999.9 000000 722324 03071 20061005 72.7 24 58.2 24 9999.9 0 9999.9 0 10.0 24 4.7 24 14.0 19.0 82.4* 60.8* 0.00I 999.9 000000 722324 03071 20061006 72.3 24 54.3 24 9999.9 0 9999.9 0 10.0 24 6.1 24 15.9 22.9 84.2* 57.2* 0.00I 999.9 000000 722324 03071 20061007 72.8 24 54.9 24 9999.9 0 9999.9 0 10.0 24 6.6 24 18.1 22.0 82.4* 62.6* 0.00I 999.9 000000 722324 03071 20061008 70.4 24 58.2 24 9999.9 0 9999.9 0 9.3 24 7.6 24 15.0 18.1 80.6* 60.8* 99.99 999.9 010010 722324 03071 20061009 63.4 24 62.2 24 9999.9 0 9999.9 0 6.6 24 6.0 24 13.0 16.9 68.0* 57.2* 99.99 999.9 010010 722324 03071 20061010 59.3 24 55.2 24 9999.9 0 9999.9 0 7.6 24 7.2 24 13.0 16.9 71.6* 53.6* 99.99 999.9 010010 722324 03071 20061011 65.5 24 51.1 24 9999.9 0 9999.9 0 10.0 24 6.6 24 14.0 19.0 80.6* 53.6* 0.00I 999.9 000000 722324 03071 20061012 63.9 24 47.8 24 9999.9 0 9999.9 0 10.0 24 6.1 24 22.9 999.9 77.0* 51.8* 0.00I 999.9 000000 722324 03071 20061013 55.8 24 47.0 24 9999.9 0 9999.9 0 10.0 24 5.7 24 9.9 999.9 71.6* 42.8* 0.00I 999.9 000000 722324 03071 20061014 65.9 24 62.0 24 9999.9 0 9999.9 0 10.0 24 7.8 24 13.0 16.9 71.6* 62.6* 99.99 999.9 010000 722324 03071 20061015 67.2 24 66.0 24 9999.9 0 9999.9 0 8.5 24 6.9 24 12.0 999.9 71.6* 64.4* 99.99 999.9 010010 722324 03071 20061016 64.8 24 57.9 24 9999.9 0 9999.9 0 9.4 24 9.0 24 20.0 29.9 71.6* 59.0* 99.99 999.9 010000 722324 03071 20061017 66.7 24 47.2 24 9999.9 0 9999.9 0 10.0 24 9.8 24 15.9 18.1 80.6* 57.2* 0.00I 999.9 000000 722324 03071 20061018 63.9 24 51.1 24 9999.9 0 9999.9 0 10.0 24 7.1 24 16.9 21.0 73.4* 55.4* 0.00I 999.9 000000 722324 03071 20061019 52.4 24 44.9 24 9999.9 0 9999.9 0 10.0 24 7.9 24 15.9 20.0 64.4* 44.6* 0.00I 999.9 000000 722324 03071 20061020 58.2 24 44.8 24 9999.9 0 9999.9 0 10.0 24 8.6 24 15.0 22.0 75.2* 48.2* 0.00I 999.9 000000 722324 03071 20061021 61.1 24 47.5 24 9999.9 0 9999.9 0 10.0 24 8.1 24 13.0 19.0 71.6* 50.0* 0.00I 999.9 000000 722324 03071 20061022 49.3 24 37.1 24 9999.9 0 9999.9 0 10.0 24 7.7 24 18.1 23.9 60.8* 39.2* 0.00I 999.9 000000 722324 03071 20061023 52.5 24 37.5 24 9999.9 0 9999.9 0 10.0 24 5.6 24 12.0 15.0 69.8* 39.2* 0.00I 999.9 000000 722324 03071 20061024 58.2 24 44.5 24 9999.9 0 9999.9 0 10.0 24 7.3 24 16.9 19.0 69.8* 50.0* 99.99 999.9 010000 722324 03071 20061025 65.2 24 56.5 24 9999.9 0 9999.9 0 10.0 24 9.8 24 15.9 22.9 80.6* 59.0* 99.99 999.9 010000 722324 03071 20061026 67.3 24 49.0 24 9999.9 0 9999.9 0 10.0 24 8.0 24 20.0 23.9 75.2* 60.8* 0.00I 999.9 000000 722324 03071 20061027 56.7 24 31.3 24 9999.9 0 9999.9 0 10.0 24 12.6 24 21.0 28.0 66.2* 46.4* 0.00I 999.9 000000 722324 03071 20061028 55.1 24 33.3 24 9999.9 0 9999.9 0 10.0 24 5.2 24 12.0 16.9 73.4* 39.2* 0.00I 999.9 000000 722324 03071 20061029 60.7 24 31.0 24 9999.9 0 9999.9 0 10.0 24 6.9 24 14.0 20.0 78.8* 44.6* 0.00I 999.9 000000 722324 03071 20061030 67.2 24 39.1 24 9999.9 0 9999.9 0 10.0 24 10.2 24 16.9 22.9 77.0* 59.0* 0.00I 999.9 000000 722324 03071 20061031 56.3 24 36.8 24 9999.9 0 919.8 11 9.9 24 7.2 24 14.0 19.0 71.6* 46.4* 0.00I 999.9 000000 722324 03071 20061101 47.7 24 36.1 24 9999.9 0 920.5 22 10.0 24 5.4 24 12.0 15.9 57.2* 37.4* 0.00I 999.9 000000 722324 03071 20061102 43.5 24 28.9 24 9999.9 0 927.2 12 10.0 24 5.4 24 9.9 999.9 55.4* 33.8* 0.00I 999.9 000000 722324 03071 20061103 55.5 24 36.7 24 9999.9 0 925.4 21 10.0 24 9.3 24 16.9 22.0 66.2* 50.0* 0.00I 999.9 000000 722324 03071 20061104 57.6 24 45.0 24 9999.9 0 919.9 22 10.0 24 9.1 24 13.0 18.1 73.4* 48.2* 0.00I 999.9 000000 722324 03071 20061105 63.8 24 54.4 24 9999.9 0 918.2 21 10.0 24 8.7 24 15.0 19.0 75.2* 57.2* 0.00I 999.9 000000 722324 03071 20061106 58.5 24 42.8 24 9999.9 0 919.9 19 7.8 24 4.3 24 9.9 15.0 75.2* 42.8* 99.99 999.9 010000 722324 03071 20061107 59.1 24 40.0 24 9999.9 0 919.4 22 9.8 24 3.9 24 11.1 17.1 78.8* 44.6* 0.00I 999.9 000000 722324 03071 20061108 65.6 24 33.5 24 9999.9 0 912.3 24 10.0 24 5.0 24 13.0 15.9 84.2* 48.2* 0.00I 999.9 000000 722324 03071 20061109 70.0 24 33.9 24 9999.9 0 908.6 22 10.0 24 8.2 24 15.9 19.0 84.2* 57.2* 0.00I 999.9 000000 722324 03071 20061110 64.2 24 31.9 24 9999.9 0 914.5 23 10.0 24 8.7 24 13.0 18.1 77.0* 50.0* 0.00I 999.9 000000 722324 03071 20061111 49.2 24 28.0 24 9999.9 0 927.8 21 10.0 24 6.6 24 18.1 22.0 62.6* 35.6* 0.00I 999.9 000000 722324 03071 20061112 53.5 24 27.9 24 9999.9 0 917.9 23 10.0 24 9.3 24 15.9 19.0 71.6* 44.6* 0.00I 999.9 000000 722324 03071 20061113 52.0 24 33.6 24 9999.9 0 920.0 23 10.0 24 6.2 24 11.1 14.0 64.4* 37.4* 0.00I 999.9 000000 722324 03071 20061114 57.7 24 33.6 24 9999.9 0 910.9 24 9.5 24 9.5 24 30.9 37.9 78.8* 42.8* 0.00I 999.9 000000 722324 03071 20061115 55.1 24 20.7 24 9999.9 0 917.7 23 8.5 24 16.1 24 24.1 34.0 73.4* 42.8* 0.00I 999.9 000000 722324 03071 20061116 45.8 24 14.5 24 9999.9 0 919.9 23 10.0 24 5.4 24 13.0 17.1 66.2* 30.2* 0.00I 999.9 000000 722324 03071 20061117 56.4 24 16.7 24 9999.9 0 915.7 23 10.0 24 8.2 24 15.0 18.1 71.6* 44.6* 0.00I 999.9 000000 722324 03071 20061118 51.7 24 24.6 24 9999.9 0 922.6 23 10.0 24 3.9 24 8.9 999.9 68.0* 37.4* 0.00I 999.9 000000 722324 03071 20061119 50.6 24 32.8 24 9999.9 0 927.1 24 10.0 24 3.4 24 7.0 999.9 62.6* 39.2* 0.00I 999.9 000000 722324 03071 20061120 49.9 24 34.7 24 9999.9 0 931.8 23 10.0 24 3.8 24 9.9 14.0 62.6* 37.4* 0.00I 999.9 000000 722324 03071 20061121 54.7 24 35.2 24 9999.9 0 927.6 23 10.0 24 8.1 24 13.0 19.0 71.6* 44.6* 0.00I 999.9 000000 722324 03071 20061122 58.6 24 34.9 24 9999.9 0 922.8 23 10.0 24 8.4 24 14.0 18.1 73.4* 46.4* 0.00I 999.9 000000 722324 03071 20061123 59.9 24 34.2 24 9999.9 0 920.2 23 10.0 24 7.3 24 13.0 19.0 75.2* 46.4* 0.00I 999.9 000000 722324 03071 20061124 61.0 24 36.0 24 9999.9 0 918.4 22 10.0 24 4.6 24 9.9 999.9 77.0* 44.6* 0.00I 999.9 000000 722324 03071 20061125 59.6 24 41.4 24 9999.9 0 916.8 23 10.0 24 8.0 24 15.9 23.9 69.8* 51.8* 0.00I 999.9 000000 722324 03071 20061126 58.5 24 48.4 24 9999.9 0 917.4 20 10.0 24 8.6 24 14.0 18.1 66.2* 50.0* 0.00I 999.9 000000 722324 03071 20061127 60.2 24 50.2 24 9999.9 0 916.8 23 10.0 24 6.1 24 16.9 21.0 71.6* 51.8* 0.00I 999.9 000000 722324 03071 20061128 60.6 24 43.2 24 9999.9 0 914.4 23 9.9 24 8.9 24 19.0 26.0 73.4* 48.2* 99.99 999.9 010010 722324 03071 20061129 60.7 24 40.8 24 9999.9 0 911.3 24 10.0 24 5.9 24 9.9 999.9 69.8* 51.8* 0.00I 999.9 000000 722324 03071 20061130 32.0 24 18.9 24 9999.9 0 921.8 23 7.8 24 16.2 24 22.9 34.0 9999.9 21.2* 99.99 999.9 001000 722324 03071 20061201 37.9 24 13.3 24 9999.9 0 923.3 24 10.0 24 7.3 24 12.0 18.1 57.2* 28.4* 0.00I 999.9 000000 722324 03071 20061202 41.5 24 12.4 24 9999.9 0 922.4 24 10.0 24 5.7 24 13.0 14.0 51.8* 26.6* 0.00I 999.9 000000 722324 03071 20061203 33.3 24 22.2 24 9999.9 0 935.0 23 9.9 24 7.6 24 11.1 15.9 42.8* 26.6* 0.00I 999.9 000000 722324 03071 20061204 32.6 24 17.1 24 9999.9 0 934.8 23 10.0 24 3.7 24 12.0 15.0 50.0* 19.4* 0.00I 999.9 000000 722324 03071 20061205 42.8 24 24.2 24 9999.9 0 925.9 24 10.0 24 5.5 24 12.0 15.0 60.8* 30.2* 0.00I 999.9 000000 722324 03071 20061206 48.0 24 26.1 24 9999.9 0 921.9 23 10.0 24 8.8 24 15.9 21.0 60.8* 35.6* 0.00I 999.9 000000 722324 03071 20061207 38.8 24 23.7 24 9999.9 0 931.8 24 10.0 24 7.9 24 17.1 22.9 48.2* 30.2* 0.00I 999.9 000000 722324 03071 20061208 32.4 24 17.4 24 9999.9 0 935.2 22 10.0 24 4.6 24 12.0 15.9 48.2* 23.0* 0.00I 999.9 000000 722324 03071 20061209 42.0 24 32.8 24 9999.9 0 926.2 23 10.0 24 8.6 24 14.0 15.9 53.6* 37.4* 0.00I 999.9 000000 722324 03071 20061210 45.6 24 36.5 24 9999.9 0 920.5 24 7.5 24 9.7 24 13.0 21.0 66.2* 37.4* 0.00I 999.9 100000 722324 03071 20061211 51.8 24 33.7 24 9999.9 0 919.5 23 10.0 24 11.0 24 22.0 28.0 64.4* 39.2* 0.00I 999.9 000000 722324 03071 20061212 51.0 24 19.1 24 9999.9 0 924.0 23 10.0 24 10.5 24 17.1 21.0 62.6* 41.0* 0.00I 999.9 000000 722324 03071 20061213 47.4 24 13.6 24 9999.9 0 922.4 23 10.0 24 3.5 24 13.0 15.9 68.0* 28.4* 0.00I 999.9 000000 722324 03071 20061214 51.1 24 14.8 24 9999.9 0 918.4 24 10.0 24 6.0 24 12.0 14.0 69.8* 37.4* 0.00I 999.9 000000 722324 03071 20061215 54.2 24 22.6 24 9999.9 0 915.6 22 10.0 24 5.2 24 12.0 15.0 73.4* 37.4* 0.00I 999.9 000000 722324 03071 20061216 59.7 24 24.3 24 9999.9 0 913.1 22 10.0 24 7.3 24 14.0 17.1 75.2* 46.4* 0.00I 999.9 000000 722324 03071 20061217 58.2 24 38.3 24 9999.9 0 916.1 22 7.4 24 5.7 24 11.1 15.0 73.4* 41.0* 0.00I 999.9 100000 722324 03071 20061218 53.1 24 43.0 24 9999.9 0 920.5 23 8.0 24 7.5 24 14.0 18.1 68.0* 44.6* 0.00I 999.9 000000 722324 03071 20061219 37.5 24 35.6 24 9999.9 0 923.7 24 4.3 24 9.6 24 15.0 19.0 44.6* 35.6* 99.99 999.9 010000 722324 03071 20061220 40.1 24 30.9 24 9999.9 0 916.2 23 8.0 24 12.7 24 28.9 36.9 51.8* 33.8* 99.99 999.9 010000 722324 03071 20061221 43.0 24 22.8 24 9999.9 0 917.3 24 10.0 24 7.8 24 14.0 18.1 51.8* 32.0* 0.00I 999.9 000000 722324 03071 20061222 41.4 24 26.5 24 9999.9 0 918.5 23 10.0 24 2.6 24 8.9 15.0 57.2* 28.4* 0.00I 999.9 000000 722324 03071 20061223 40.0 24 30.7 24 9999.9 0 921.5 23 9.1 24 4.3 24 9.9 999.9 53.6* 35.6* 99.99 999.9 010000 722324 03071 20061224 40.8 24 36.0 24 9999.9 0 921.7 23 9.3 24 5.5 24 14.0 20.0 53.6* 33.8* 0.00I 999.9 000000 722324 03071 20061225 41.1 24 26.4 24 9999.9 0 924.9 21 9.5 24 15.0 24 28.0 39.0 51.8* 32.0* 99.99 999.9 010000 722324 03071 20061226 42.9 24 23.2 24 9999.9 0 922.6 24 10.0 24 4.6 24 8.9 999.9 62.6* 30.2* 0.00I 999.9 000000 722324 03071 20061227 50.5 24 27.3 24 9999.9 0 915.9 24 10.0 24 6.9 24 14.0 16.9 69.8* 35.6* 0.00I 999.9 000000 722324 03071 20061228 52.7 24 39.4 24 9999.9 0 907.5 24 10.0 24 12.8 24 22.0 28.9 62.6* 46.4* 0.00I 999.9 000000 722324 03071 20061229 44.6 24 38.9 24 9999.9 0 914.0 24 9.2 24 4.2 24 15.0 25.1 57.2* 39.2* 99.99 999.9 010010 722324 03071 20061230 36.6 24 31.3 24 9999.9 0 916.2 22 10.0 24 8.6 24 14.0 22.9 42.8* 30.2* 0.00I 999.9 000000 722324 03071 20061231 39.7 24 26.7 24 9999.9 0 922.0 23 10.0 24 10.0 24 20.0 27.0 51.8* 32.0* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1948/0000755000175000017500000000000014302004506015105 5ustar nileshnileshfluids-1.0.22/tests/gsod/1948/724050-13743.op0000644000175000017500000014350514302004506016675 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19480101 41.1 24 33.6 24 1012.2 24 1011.5 24 3.3 24 3.1 24 9.9 999.9 45.3* 38.3* 99.99 999.9 110010 724050 13743 19480102 38.6 24 35.2 24 996.9 24 996.3 24 6.0 24 11.2 24 19.0 999.9 43.3* 34.3* 99.99 999.9 111000 724050 13743 19480103 37.3 24 27.6 24 1013.6 24 1012.9 24 11.2 24 7.6 24 13.0 999.9 42.4* 34.3* 0.00I 999.9 000000 724050 13743 19480104 33.5 24 26.6 24 1017.1 24 1016.4 24 6.4 24 3.0 24 9.9 999.9 38.3* 29.3* 99.99 999.9 001000 724050 13743 19480105 36.5 24 30.0 24 1015.3 24 1014.6 24 5.3 24 9.7 24 15.9 999.9 43.3* 33.4* 99.99 999.9 101000 724050 13743 19480106 32.2 24 28.0 23 1019.0 24 1018.3 24 3.7 24 5.4 24 22.0 999.9 36.3* 26.4* 99.99 999.9 101000 724050 13743 19480107 33.4 24 24.0 24 1016.2 24 1015.6 24 10.9 24 14.0 24 26.0 999.9 37.4* 30.4* 99.99 999.9 101000 724050 13743 19480108 30.9 24 21.1 24 1020.8 24 1020.1 24 8.5 24 4.8 24 9.9 999.9 41.4* 24.4* 0.00I 999.9 000000 724050 13743 19480109 43.7 24 30.6 24 1008.3 24 1007.7 24 7.1 24 7.5 24 26.0 999.9 60.3* 34.3* 99.99 999.9 110000 724050 13743 19480110 38.7 24 24.2 24 1019.5 24 1018.8 24 14.2 24 15.3 24 23.9 999.9 44.4* 33.4* 0.00I 999.9 000000 724050 13743 19480111 31.7 24 15.4 24 1030.8 24 1030.2 24 10.3 24 7.0 24 14.0 999.9 42.4* 24.4* 0.00I 999.9 000000 724050 13743 19480112 35.0 24 19.6 24 1027.0 24 1026.3 24 7.3 24 7.7 24 14.0 999.9 45.3* 26.4* 99.99 999.9 010000 724050 13743 19480113 36.8 24 35.4 24 1015.4 24 1014.9 24 2.9 24 5.3 24 11.1 999.9 39.4* 33.4* 99.99 999.9 111000 724050 13743 19480114 31.6 24 20.1 24 1014.9 24 1014.3 24 8.5 24 9.9 24 21.0 999.9 36.3* 25.3* 0.00I 999.9 000000 724050 13743 19480115 19.8 24 7.4 24 1027.8 24 1027.1 24 11.3 24 10.8 24 21.0 999.9 26.4* 14.4* 0.00I 999.9 000000 724050 13743 19480116 29.4 24 14.3 24 1027.6 24 1026.9 24 12.3 24 8.7 24 13.0 999.9 49.3* 20.3* 0.00I 999.9 000000 724050 13743 19480117 35.9 24 25.7 24 1024.4 24 1023.6 24 4.9 24 4.9 24 12.0 999.9 40.3* 31.3* 0.00I 999.9 000000 724050 13743 19480118 26.9 24 17.1 24 1024.2 24 1023.5 24 10.3 24 16.4 24 25.1 999.9 33.4* 22.5* 99.99 999.9 001000 724050 13743 19480119 20.3 24 7.8 24 1031.8 24 1031.2 24 10.7 24 8.5 24 15.9 999.9 29.3* 11.3* 0.00I 999.9 000000 724050 13743 19480120 27.7 24 18.2 24 1028.6 24 1028.0 24 4.6 24 3.0 24 8.9 999.9 39.4* 17.4* 99.99 999.9 001000 724050 13743 19480121 35.8 24 32.8 24 1011.2 24 1010.5 24 2.8 24 4.6 24 8.9 999.9 42.4* 32.4* 99.99 999.9 111000 724050 13743 19480122 36.9 24 31.9 24 997.9 24 997.2 24 6.6 24 6.6 24 15.0 999.9 40.3* 32.4* 99.99 999.9 101000 724050 13743 19480123 25.5 24 16.6 24 1013.1 24 1012.5 24 6.8 24 9.7 24 14.0 999.9 30.4* 22.5* 99.99 999.9 001000 724050 13743 19480124 15.1 24 7.8 24 1023.4 24 1022.8 24 4.6 24 11.5 24 18.1 999.9 22.5* 10.4* 99.99 999.9 001000 724050 13743 19480125 16.6 24 9.8 24 1025.0 24 1024.3 24 9.4 24 10.9 24 21.0 999.9 24.4* 12.4* 99.99 999.9 001000 724050 13743 19480126 20.1 24 12.7 24 1032.0 24 1031.3 24 5.5 24 6.1 24 8.9 999.9 32.4* 10.4* 0.00I 999.9 000000 724050 13743 19480127 27.6 24 22.0 24 1027.4 24 1026.8 24 5.4 24 4.7 24 9.9 999.9 31.3* 25.3* 99.99 999.9 001000 724050 13743 19480128 22.0 24 12.5 24 1028.8 24 1028.1 24 9.6 24 12.1 24 21.0 999.9 32.4* 13.5* 0.00I 999.9 000000 724050 13743 19480129 26.0 24 13.5 24 1021.1 24 1020.4 24 6.4 24 4.4 24 15.9 999.9 35.4* 20.3* 0.00I 999.9 000000 724050 13743 19480130 26.8 24 15.9 24 1021.3 24 1020.6 24 6.8 24 11.3 24 19.0 999.9 31.3* 23.4* 0.00I 999.9 000000 724050 13743 19480131 16.2 24 4.2 24 1029.5 24 1028.8 24 9.4 24 7.2 24 11.1 999.9 24.4* 7.3* 0.00I 999.9 000000 724050 13743 19480201 23.3 24 12.3 24 1025.2 24 1024.5 24 8.0 24 8.8 24 15.0 999.9 31.3* 18.3* 0.00I 999.9 000000 724050 13743 19480202 28.0 24 15.3 24 1025.3 24 1024.6 24 5.1 24 4.5 24 9.9 999.9 38.3* 18.3* 0.00I 999.9 000000 724050 13743 19480203 33.4 24 19.1 24 1024.2 24 1023.6 24 5.9 24 5.1 24 15.9 999.9 42.4* 27.3* 0.00I 999.9 000000 724050 13743 19480204 33.2 24 26.7 24 1020.5 24 1019.9 24 3.6 24 5.6 24 12.0 999.9 37.4* 30.4* 99.99 999.9 111000 724050 13743 19480205 27.8 24 21.2 24 1019.9 24 1019.2 24 3.6 24 8.2 24 16.9 999.9 35.4* 21.4* 99.99 999.9 111000 724050 13743 19480206 30.9 24 22.6 24 1021.6 24 1020.9 24 3.1 24 1.8 24 5.1 999.9 40.3* 25.3* 99.99 999.9 001000 724050 13743 19480207 29.1 24 21.0 24 1022.7 24 1022.1 24 3.7 24 5.2 24 8.9 999.9 35.4* 22.5* 99.99 999.9 001000 724050 13743 19480208 32.1 24 25.2 24 1016.1 24 1015.4 24 4.1 24 6.7 24 22.0 999.9 38.3* 27.3* 0.00I 999.9 100000 724050 13743 19480209 21.1 24 7.3 24 1030.4 24 1029.7 24 11.0 24 9.7 24 15.9 999.9 30.4* 16.3* 0.00I 999.9 000000 724050 13743 19480210 19.1 24 4.0 24 1033.5 24 1032.8 24 11.0 24 9.3 24 14.0 999.9 27.3* 12.4* 0.00I 999.9 000000 724050 13743 19480211 23.5 24 14.9 24 1037.0 24 1036.4 24 4.8 24 5.7 24 12.0 999.9 30.4* 17.4* 99.99 999.9 111000 724050 13743 19480212 34.3 24 30.8 24 1024.4 24 1023.7 24 1.4 24 0.7 24 4.1 999.9 44.4* 29.3* 99.99 999.9 110000 724050 13743 19480213 35.9 24 33.7 24 1021.2 24 1020.5 24 0.9 24 1.6 24 8.0 999.9 40.3* 33.4* 99.99 999.9 110000 724050 13743 19480214 45.8 24 39.3 24 1001.6 24 1001.0 24 6.5 24 12.8 24 29.9 999.9 52.3* 38.3* 99.99 999.9 110000 724050 13743 19480215 39.1 24 24.0 24 1031.1 24 1030.5 24 14.1 24 8.4 24 22.0 999.9 51.3* 30.4* 0.00I 999.9 000000 724050 13743 19480216 39.1 24 30.0 24 1035.6 24 1034.9 24 8.0 24 3.7 24 9.9 999.9 50.4* 31.3* 0.00I 999.9 000000 724050 13743 19480217 52.1 24 41.6 23 1022.1 24 1021.4 24 8.2 24 7.0 24 16.9 999.9 69.3* 43.3* 99.99 999.9 010000 724050 13743 19480218 52.3 24 35.8 24 1019.6 24 1018.9 24 9.2 24 4.5 24 8.9 999.9 70.3* 38.3* 0.00I 999.9 000000 724050 13743 19480219 53.1 24 41.8 23 1016.4 24 1015.7 24 7.5 24 5.9 24 16.9 999.9 71.2* 39.4* 0.00I 999.9 000000 724050 13743 19480220 51.4 24 34.9 24 1017.0 24 1016.3 24 10.6 24 12.1 24 21.0 999.9 64.4* 37.4* 0.00I 999.9 000000 724050 13743 19480221 32.1 24 17.2 24 1029.5 24 1028.8 24 11.5 24 8.0 24 12.0 999.9 37.4* 26.4* 0.00I 999.9 000000 724050 13743 19480222 29.6 24 25.2 24 1025.3 24 1024.6 24 6.8 24 10.1 24 15.9 999.9 33.4* 25.3* 99.99 999.9 001000 724050 13743 19480223 29.9 24 19.7 24 1034.1 24 1033.5 24 10.9 24 7.1 24 9.9 999.9 36.3* 25.3* 0.00I 999.9 000000 724050 13743 19480224 29.9 24 19.6 24 1042.8 24 1042.1 24 7.9 24 4.7 24 8.0 999.9 38.3* 20.3* 0.00I 999.9 000000 724050 13743 19480225 42.3 24 36.8 24 1029.0 24 1028.2 24 8.1 24 5.5 24 9.9 999.9 58.3* 34.3* 99.99 999.9 010000 724050 13743 19480226 54.4 24 49.1 24 1013.4 24 1012.7 24 5.1 24 6.2 24 26.0 999.9 64.4* 48.4* 99.99 999.9 110000 724050 13743 19480227 49.4 24 35.4 24 1017.0 24 1016.4 24 8.4 24 3.7 24 8.9 999.9 62.4* 33.4* 99.99 999.9 010000 724050 13743 19480228 57.1 24 43.9 24 1006.1 24 1005.5 24 10.0 24 9.4 24 26.0 999.9 80.2* 43.3* 99.99 999.9 010000 724050 13743 19480229 52.7 24 31.7 24 1010.9 24 1010.2 24 12.9 24 12.8 24 22.0 999.9 66.4* 45.3* 0.00I 999.9 000000 724050 13743 19480301 37.2 24 24.5 24 1029.3 24 1028.6 24 10.7 24 9.7 24 15.9 999.9 44.4* 28.4* 0.00I 999.9 000000 724050 13743 19480302 36.7 24 31.7 24 1020.6 24 1019.7 24 6.0 24 5.6 24 9.9 999.9 41.4* 34.3* 99.99 999.9 110000 724050 13743 19480303 43.7 24 40.9 24 1013.9 24 1013.2 24 4.5 24 4.7 24 9.9 999.9 54.3* 39.4* 99.99 999.9 110000 724050 13743 19480304 39.8 24 35.3 24 1022.6 24 1021.9 24 5.4 24 10.6 24 22.0 999.9 46.4* 36.3* 99.99 999.9 110000 724050 13743 19480305 27.0 24 8.1 24 1041.2 24 1040.5 24 14.1 24 12.5 24 19.0 999.9 36.3* 18.3* 0.00I 999.9 000000 724050 13743 19480306 29.4 24 15.1 24 1039.5 24 1038.8 24 7.2 24 2.9 24 7.0 999.9 40.3* 19.4* 0.00I 999.9 000000 724050 13743 19480307 37.4 24 31.1 24 1017.9 24 1017.1 24 5.8 24 4.8 24 8.9 999.9 48.4* 32.4* 99.99 999.9 111000 724050 13743 19480308 43.2 24 31.1 24 1011.7 24 1010.9 24 8.6 24 8.5 24 23.9 999.9 50.4* 37.4* 0.00I 999.9 100000 724050 13743 19480309 38.7 24 30.5 24 1019.5 24 1018.8 24 3.6 24 1.3 24 6.0 999.9 44.4* 32.4* 99.99 999.9 010000 724050 13743 19480310 45.1 24 40.7 24 1015.2 24 1014.5 24 2.2 24 3.9 24 8.9 999.9 58.3* 39.4* 99.99 999.9 110000 724050 13743 19480311 46.4 24 43.3 24 1015.8 24 1015.2 24 3.0 24 5.3 24 13.0 999.9 52.3* 40.3* 99.99 999.9 110000 724050 13743 19480312 31.7 24 21.9 24 1024.3 24 1023.6 24 12.2 24 13.2 24 16.9 999.9 38.3* 24.4* 0.00I 999.9 000000 724050 13743 19480313 33.7 24 18.5 24 1027.8 24 1027.2 24 10.1 24 7.0 24 14.0 999.9 45.3* 25.3* 0.00I 999.9 000000 724050 13743 19480314 39.0 24 23.0 24 1027.7 24 1027.0 24 7.1 24 4.4 24 9.9 999.9 57.4* 26.4* 0.00I 999.9 000000 724050 13743 19480315 52.6 24 38.3 24 1019.8 24 1019.1 24 10.4 24 10.0 24 16.9 999.9 70.3* 43.3* 0.00I 999.9 000000 724050 13743 19480316 63.8 24 54.5 24 1012.5 24 1011.8 24 11.5 24 12.3 24 15.9 999.9 65.3* 60.3* 99.99 999.9 010000 724050 13743 19480317 58.1 24 47.4 24 1014.9 24 1014.2 24 9.7 24 10.2 24 16.9 999.9 61.3* 54.3* 99.99 999.9 010000 724050 13743 19480318 48.5 24 34.9 23 1027.0 24 1026.4 24 6.3 24 4.2 24 9.9 999.9 60.3* 36.3* 0.00I 999.9 000000 724050 13743 19480319 49.1 24 42.3 24 1023.4 24 1022.7 24 6.0 24 5.6 24 13.0 999.9 62.4* 41.4* 99.99 999.9 110000 724050 13743 19480320 69.3 24 54.4 24 1015.5 24 1014.8 24 11.3 24 6.3 24 16.9 999.9 82.4* 60.3* 99.99 999.9 010000 724050 13743 19480321 73.3 24 58.8 24 1014.1 24 1013.4 24 8.5 24 6.0 24 15.9 999.9 88.3* 58.3* 0.00I 999.9 100000 724050 13743 19480322 75.4 24 57.2 24 1007.1 24 1006.5 24 14.7 24 10.5 24 15.9 999.9 84.4* 66.4* 0.00I 999.9 000000 724050 13743 19480323 60.3 24 53.2 24 1009.6 24 1009.0 24 6.6 24 5.4 24 13.0 999.9 75.4* 48.4* 99.99 999.9 110000 724050 13743 19480324 51.1 24 44.4 24 1008.0 24 1007.5 24 7.4 24 10.1 24 16.9 999.9 68.4* 44.4* 99.99 999.9 110010 724050 13743 19480325 56.6 24 32.5 24 1022.5 24 1021.8 24 13.5 24 7.0 24 13.0 999.9 63.3* 47.3* 0.00I 999.9 000000 724050 13743 19480326 52.4 24 40.3 24 1022.0 24 1021.3 24 9.5 24 4.7 24 9.9 999.9 72.3* 41.4* 0.00I 999.9 000000 724050 13743 19480327 66.6 24 59.3 24 1001.8 24 1001.1 24 10.1 24 11.9 24 26.0 999.9 73.4* 62.4* 99.99 999.9 010000 724050 13743 19480328 46.1 24 29.8 24 1004.8 24 1004.2 24 14.5 24 19.2 24 26.0 999.9 65.3* 37.4* 0.00I 999.9 000000 724050 13743 19480329 41.6 24 27.9 21 1016.7 24 1016.0 24 12.3 24 7.7 24 13.0 999.9 54.3* 29.3* 0.00I 999.9 000000 724050 13743 19480330 54.4 24 43.1 24 1014.7 24 1014.0 24 12.6 24 11.6 24 15.9 999.9 73.4* 44.4* 0.00I 999.9 000000 724050 13743 19480331 62.8 24 52.9 24 1013.6 24 1012.9 24 13.3 24 11.0 24 16.9 999.9 70.3* 56.3* 0.00I 999.9 000000 724050 13743 19480401 63.3 24 59.3 24 1006.1 24 1005.4 24 9.4 24 8.2 24 16.9 999.9 71.2* 59.4* 99.99 999.9 110000 724050 13743 19480402 59.4 24 52.2 24 1008.6 24 1007.9 24 10.8 24 10.9 24 22.0 999.9 65.3* 50.4* 99.99 999.9 010000 724050 13743 19480403 49.3 24 37.1 24 1025.3 24 1024.6 24 14.1 24 13.0 24 22.0 999.9 54.3* 43.3* 0.00I 999.9 000000 724050 13743 19480404 48.3 24 35.8 24 1033.1 24 1032.4 24 14.0 24 6.4 24 12.0 999.9 62.4* 36.3* 0.00I 999.9 000000 724050 13743 19480405 58.8 24 44.1 24 1024.7 24 1024.0 24 13.3 24 8.5 24 13.0 999.9 80.2* 48.4* 0.00I 999.9 000000 724050 13743 19480406 67.8 24 56.0 24 1016.9 24 1016.2 24 13.1 24 7.8 24 9.9 999.9 75.4* 61.3* 99.99 999.9 010000 724050 13743 19480407 60.0 24 54.8 24 1019.3 24 1018.6 24 8.8 24 7.2 24 11.1 999.9 70.3* 56.3* 0.00I 999.9 000000 724050 13743 19480408 55.6 24 52.1 24 1015.8 24 1015.0 24 4.1 24 4.4 24 8.0 999.9 67.3* 50.4* 99.99 999.9 110000 724050 13743 19480409 56.9 24 44.1 24 1015.4 24 1014.7 24 12.3 24 16.5 24 30.9 999.9 64.4* 49.3* 0.00I 999.9 000000 724050 13743 19480410 47.8 24 32.1 24 1026.7 24 1026.1 24 14.0 24 9.8 24 19.0 999.9 62.4* 38.3* 0.00I 999.9 000000 724050 13743 19480411 51.4 24 43.4 24 1019.6 24 1018.9 24 9.4 24 8.4 24 15.0 999.9 55.4* 48.4* 99.99 999.9 110000 724050 13743 19480412 67.6 24 61.9 24 1010.6 24 1009.9 24 10.6 24 9.8 24 16.9 999.9 78.3* 54.3* 99.99 999.9 110000 724050 13743 19480413 56.2 24 50.3 24 1023.6 24 1022.9 24 9.3 24 6.9 24 9.9 999.9 67.3* 48.4* 99.99 999.9 110010 724050 13743 19480414 44.6 24 41.9 24 1023.0 24 1022.3 24 4.5 24 5.6 24 9.9 999.9 50.4* 40.3* 99.99 999.9 110000 724050 13743 19480415 52.0 24 45.8 24 1020.1 24 1019.5 24 7.2 24 5.3 24 14.0 999.9 62.4* 46.4* 99.99 999.9 110000 724050 13743 19480416 54.9 24 46.3 24 1019.3 24 1018.7 24 6.6 24 3.9 24 9.9 999.9 72.3* 42.4* 0.00I 999.9 100000 724050 13743 19480417 54.5 24 39.9 24 1020.8 24 1020.1 24 13.0 24 13.7 24 22.0 999.9 64.4* 46.4* 99.99 999.9 010000 724050 13743 19480418 50.0 24 33.2 24 1031.6 24 1030.8 24 12.1 24 5.2 24 12.0 999.9 64.4* 37.4* 0.00I 999.9 000000 724050 13743 19480419 54.1 24 43.2 24 1030.1 24 1029.4 24 14.1 24 4.8 24 8.9 999.9 71.2* 41.4* 0.00I 999.9 000000 724050 13743 19480420 66.3 24 50.9 24 1021.9 24 1021.2 24 14.8 24 7.8 24 8.9 999.9 85.3* 54.3* 0.00I 999.9 000000 724050 13743 19480421 68.7 24 52.9 24 1014.7 24 1014.0 24 10.8 24 10.6 24 21.0 999.9 78.3* 62.4* 0.00I 999.9 000000 724050 13743 19480422 55.9 24 40.8 24 1025.6 24 1024.9 24 12.6 24 8.8 24 16.9 999.9 62.4* 49.3* 0.00I 999.9 000000 724050 13743 19480423 53.3 24 33.8 24 1027.8 24 1027.1 24 11.5 24 3.5 24 8.9 999.9 71.2* 37.4* 0.00I 999.9 000000 724050 13743 19480424 61.7 24 44.8 24 1022.1 24 1021.4 24 13.1 24 4.2 24 7.0 999.9 79.3* 49.3* 0.00I 999.9 000000 724050 13743 19480425 70.8 24 58.3 24 1014.5 24 1013.8 24 9.3 24 6.5 24 15.9 999.9 84.4* 62.4* 99.99 999.9 010000 724050 13743 19480426 63.7 24 52.5 24 1017.2 24 1016.6 24 10.1 24 5.2 24 8.9 999.9 78.3* 52.3* 0.00I 999.9 000000 724050 13743 19480427 59.3 24 53.7 24 1012.8 24 1012.2 24 9.0 24 4.9 24 9.9 999.9 67.3* 55.4* 99.99 999.9 110000 724050 13743 19480428 45.8 24 41.3 23 1008.5 24 1007.9 24 8.2 24 7.3 24 12.0 999.9 51.3* 39.4* 99.99 999.9 010010 724050 13743 19480429 50.3 24 40.6 24 1008.8 24 1008.1 24 11.8 24 5.9 24 13.0 999.9 61.3* 44.4* 99.99 999.9 010000 724050 13743 19480430 56.2 24 40.9 24 1004.9 24 1004.2 24 11.5 24 7.4 24 15.9 999.9 70.3* 45.3* 0.00I 999.9 100000 724050 13743 19480501 61.3 24 44.4 24 1006.5 24 1005.8 24 12.7 24 8.1 24 15.9 999.9 68.4* 54.3* 99.99 999.9 010000 724050 13743 19480502 57.1 24 52.8 24 1010.7 24 1010.0 24 3.2 24 2.5 24 8.0 999.9 70.3* 48.4* 99.99 999.9 110010 724050 13743 19480503 59.0 24 55.9 24 1006.4 24 1005.7 24 3.6 24 5.1 24 16.9 999.9 66.4* 54.3* 99.99 999.9 110010 724050 13743 19480504 59.2 24 49.3 24 1014.0 24 1013.3 24 6.0 24 4.9 24 11.1 999.9 68.4* 53.4* 0.00I 999.9 100000 724050 13743 19480505 57.7 24 51.5 24 1007.3 24 1006.6 24 8.2 24 10.3 24 22.0 999.9 61.3* 54.3* 99.99 999.9 010000 724050 13743 19480506 56.6 24 46.7 24 1015.0 24 1014.3 24 11.0 24 5.4 24 9.9 999.9 66.4* 46.4* 0.00I 999.9 000000 724050 13743 19480507 55.5 24 50.3 24 1004.3 24 1003.6 24 8.0 24 6.8 24 12.0 999.9 61.3* 51.3* 99.99 999.9 110000 724050 13743 19480508 57.8 24 39.3 24 1008.4 24 1007.7 24 14.3 24 12.4 24 22.0 999.9 70.3* 47.3* 0.00I 999.9 000000 724050 13743 19480509 63.5 24 46.4 24 1017.9 24 1017.2 24 12.2 24 4.8 24 13.0 999.9 84.4* 46.4* 0.00I 999.9 100000 724050 13743 19480510 75.5 24 55.2 24 1017.4 24 1016.7 24 14.5 24 8.7 24 12.0 999.9 90.3* 64.4* 0.00I 999.9 000000 724050 13743 19480511 78.7 24 59.5 24 1017.9 24 1017.2 24 12.0 24 6.6 24 9.9 999.9 94.3* 66.4* 0.00I 999.9 000000 724050 13743 19480512 77.3 24 64.0 24 1017.0 24 1016.3 24 13.8 24 8.6 24 11.1 999.9 86.4* 68.4* 0.00I 999.9 000000 724050 13743 19480513 71.0 24 67.9 24 1013.5 24 1012.9 24 7.0 24 5.6 24 15.9 999.9 79.3* 63.3* 99.99 999.9 110000 724050 13743 19480514 61.5 24 56.2 24 1011.9 24 1011.3 24 4.8 24 6.0 24 13.0 999.9 75.4* 55.4* 99.99 999.9 110010 724050 13743 19480515 64.9 24 49.3 24 1015.4 24 1014.7 24 11.1 24 8.1 24 15.9 999.9 74.3* 56.3* 0.00I 999.9 100000 724050 13743 19480516 65.7 24 55.5 24 1016.4 24 1015.7 24 11.7 24 8.1 24 15.0 999.9 74.3* 60.3* 99.99 999.9 010000 724050 13743 19480517 68.3 24 59.3 24 1008.6 24 1008.0 24 10.4 24 5.7 24 15.0 999.9 78.3* 62.4* 99.99 999.9 110010 724050 13743 19480518 64.6 24 49.7 24 1010.2 24 1009.6 24 13.3 24 12.1 24 18.1 999.9 72.3* 56.3* 99.99 999.9 010000 724050 13743 19480519 61.8 24 47.2 24 1016.7 24 1016.0 24 13.2 24 11.6 24 16.9 999.9 70.3* 53.4* 0.00I 999.9 000000 724050 13743 19480520 60.0 24 47.5 24 1014.2 24 1013.5 24 14.7 24 11.7 24 15.9 999.9 68.4* 50.4* 99.99 999.9 010000 724050 13743 19480521 68.6 24 56.9 24 1001.2 24 1000.5 24 10.4 24 7.5 24 15.9 999.9 84.4* 57.4* 99.99 999.9 010000 724050 13743 19480522 61.2 24 49.6 24 1004.9 24 1004.2 24 14.7 24 14.1 24 26.0 999.9 76.3* 50.4* 99.99 999.9 010010 724050 13743 19480523 65.2 24 54.8 24 1012.0 24 1011.3 24 11.1 24 6.5 24 12.0 999.9 80.2* 52.3* 0.00I 999.9 000000 724050 13743 19480524 69.2 24 61.1 24 1012.3 24 1011.6 24 14.0 24 6.5 24 8.9 999.9 82.4* 57.4* 0.00I 999.9 000000 724050 13743 19480525 67.8 24 62.1 24 1012.7 24 1012.1 24 9.2 24 5.2 24 16.9 999.9 73.4* 61.3* 99.99 999.9 010010 724050 13743 19480526 64.8 24 62.4 24 1015.2 24 1014.5 24 3.6 24 5.5 24 9.9 999.9 71.2* 61.3* 99.99 999.9 110000 724050 13743 19480527 66.2 24 63.0 24 1017.0 24 1016.6 24 3.5 24 3.6 24 7.0 999.9 73.4* 62.4* 99.99 999.9 110000 724050 13743 19480528 71.4 24 66.1 24 1015.9 24 1015.3 24 7.3 24 2.5 24 8.0 999.9 80.2* 64.4* 99.99 999.9 110000 724050 13743 19480529 72.3 24 66.4 24 1012.1 24 1011.4 24 12.0 24 5.5 24 8.9 999.9 80.2* 66.4* 99.99 999.9 010000 724050 13743 19480530 71.2 24 68.4 24 1011.3 24 1010.7 24 4.8 24 2.4 24 7.0 999.9 76.3* 68.4* 99.99 999.9 110010 724050 13743 19480531 69.6 24 64.9 24 1013.7 24 1013.0 24 5.0 24 6.9 24 9.9 999.9 77.4* 65.3* 99.99 999.9 110010 724050 13743 19480601 70.5 24 59.9 24 1015.2 24 1014.5 24 7.7 24 8.3 24 12.0 999.9 79.3* 64.4* 0.00I 999.9 100000 724050 13743 19480602 72.1 24 56.9 24 1013.6 24 1012.9 24 10.7 24 3.7 24 9.9 999.9 83.3* 63.3* 0.00I 999.9 000000 724050 13743 19480603 66.6 24 54.5 24 1012.7 24 1012.1 24 9.0 24 6.9 24 13.0 999.9 77.4* 61.3* 99.99 999.9 010000 724050 13743 19480604 65.1 24 55.6 24 1007.3 24 1006.6 24 11.6 24 6.1 24 8.9 999.9 82.4* 56.3* 99.99 999.9 010000 724050 13743 19480605 71.1 24 63.7 24 1005.0 24 1004.5 24 9.4 24 7.0 24 12.0 999.9 80.2* 64.4* 99.99 999.9 010000 724050 13743 19480606 68.6 24 55.4 23 1015.5 23 1014.8 23 12.3 24 4.5 24 9.9 999.9 77.4* 57.4* 0.00I 999.9 000000 724050 13743 19480607 71.4 24 64.7 24 1007.7 24 1007.0 24 11.1 24 8.8 24 23.9 999.9 83.3* 64.4* 99.99 999.9 010010 724050 13743 19480608 75.2 24 61.5 24 999.2 24 998.5 24 11.8 24 8.1 24 15.9 999.9 86.4* 68.4* 99.99 999.9 010010 724050 13743 19480609 67.4 24 57.6 24 1002.7 24 1002.0 24 11.4 24 6.4 24 14.0 999.9 74.3* 60.3* 0.00I 999.9 000000 724050 13743 19480610 70.2 24 56.4 24 1010.8 24 1010.1 24 10.4 24 4.9 24 13.0 999.9 82.4* 58.3* 0.00I 999.9 000000 724050 13743 19480611 72.9 24 59.1 24 1014.2 24 1013.7 24 7.2 24 3.8 24 8.9 999.9 86.4* 61.3* 0.00I 999.9 000000 724050 13743 19480612 77.6 24 64.4 24 1011.2 24 1010.5 24 5.1 24 2.9 24 8.9 999.9 91.2* 67.3* 0.00I 999.9 100000 724050 13743 19480613 76.4 24 66.9 24 1008.1 24 1007.4 24 8.5 24 6.5 24 13.0 999.9 81.3* 70.3* 99.99 999.9 010000 724050 13743 19480614 73.4 24 59.3 24 1014.0 24 1013.4 24 10.4 24 4.2 24 9.9 999.9 84.4* 62.4* 0.00I 999.9 100000 724050 13743 19480615 75.3 24 61.3 24 1012.9 24 1012.2 24 9.9 24 3.9 24 7.0 999.9 88.3* 65.3* 0.00I 999.9 000000 724050 13743 19480616 67.6 24 63.2 24 1012.0 24 1011.4 24 5.6 24 7.1 24 15.0 999.9 82.4* 59.4* 99.99 999.9 110010 724050 13743 19480617 65.7 24 54.6 24 1016.0 24 1015.5 24 8.9 24 2.9 24 7.0 999.9 80.2* 53.4* 0.00I 999.9 000000 724050 13743 19480618 71.3 24 60.3 24 1017.5 24 1016.7 24 9.7 24 3.3 24 8.0 999.9 80.2* 63.3* 99.99 999.9 010000 724050 13743 19480619 75.5 24 66.6 24 1012.9 24 1012.1 24 8.7 24 7.6 24 12.0 999.9 90.3* 68.4* 99.99 999.9 110010 724050 13743 19480620 69.2 24 64.5 24 1014.0 24 1013.2 24 6.3 24 6.5 24 15.9 999.9 74.3* 66.4* 99.99 999.9 110010 724050 13743 19480621 70.2 24 60.7 24 1019.3 24 1018.6 24 6.9 24 3.7 24 7.0 999.9 82.4* 60.3* 0.00I 999.9 100000 724050 13743 19480622 74.7 24 65.2 24 1018.9 24 1018.2 24 10.9 24 5.6 24 16.9 999.9 86.4* 65.3* 0.00I 999.9 000000 724050 13743 19480623 75.0 24 64.9 24 1019.7 24 1019.0 24 6.0 24 5.5 24 8.9 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19480624 82.5 24 72.9 24 1014.3 24 1013.5 24 7.4 24 5.4 24 21.0 999.9 97.3* 73.4* 99.99 999.9 110010 724050 13743 19480625 79.8 24 67.4 24 1011.8 24 1011.2 24 13.8 24 7.1 24 14.0 999.9 92.3* 71.2* 0.00I 999.9 000000 724050 13743 19480626 82.3 24 68.4 24 1015.3 24 1014.6 24 8.6 24 2.0 24 7.0 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19480627 83.0 24 71.2 24 1016.6 24 1015.9 24 7.9 24 3.9 24 9.9 999.9 97.3* 73.4* 0.00I 999.9 000000 724050 13743 19480628 83.2 24 69.9 24 1015.9 24 1015.2 24 12.3 24 6.2 24 9.9 999.9 95.4* 73.4* 99.99 999.9 010000 724050 13743 19480629 85.9 24 72.9 24 1014.9 24 1014.2 24 13.0 24 6.2 24 12.0 999.9 96.3* 76.3* 0.00I 999.9 000000 724050 13743 19480630 80.3 24 69.2 24 1012.8 24 1012.1 24 11.3 24 6.0 24 16.9 999.9 95.4* 72.3* 99.99 999.9 010010 724050 13743 19480701 76.5 24 66.9 24 1015.4 24 1014.7 24 8.8 24 6.4 24 13.0 999.9 84.4* 70.3* 99.99 999.9 010000 724050 13743 19480702 73.5 24 55.1 24 1021.7 24 1021.1 24 12.6 24 7.2 24 9.9 999.9 82.4* 63.3* 0.00I 999.9 000000 724050 13743 19480703 76.7 24 61.6 24 1019.4 24 1018.8 24 9.4 24 3.0 24 6.0 999.9 90.3* 67.3* 0.00I 999.9 000000 724050 13743 19480704 80.8 24 72.0 22 1017.8 24 1017.1 24 7.1 24 4.3 24 9.9 999.9 94.3* 71.2* 0.00I 999.9 100000 724050 13743 19480705 83.8 24 75.0 24 1017.8 24 1017.1 24 7.1 24 4.9 24 9.9 999.9 95.4* 74.3* 0.00I 999.9 100000 724050 13743 19480706 82.6 24 71.2 24 1009.1 24 1008.4 24 12.1 24 9.0 24 21.0 999.9 94.3* 74.3* 99.99 999.9 010010 724050 13743 19480707 72.0 24 63.7 24 1008.9 24 1008.2 24 12.6 24 9.2 24 15.9 999.9 75.4* 68.4* 0.00I 999.9 000000 724050 13743 19480708 71.4 24 60.7 23 1021.1 24 1020.5 24 11.6 24 3.3 24 8.9 999.9 82.4* 60.3* 0.00I 999.9 000000 724050 13743 19480709 73.0 24 61.3 24 1024.9 24 1024.2 24 12.2 24 4.6 24 9.9 999.9 85.3* 58.3* 0.00I 999.9 000000 724050 13743 19480710 74.7 24 63.7 24 1023.3 24 1022.6 24 12.6 24 6.4 24 8.9 999.9 87.3* 63.3* 0.00I 999.9 000000 724050 13743 19480711 78.1 24 68.4 24 1018.3 24 1017.6 24 11.3 24 7.3 24 9.9 999.9 89.2* 68.4* 0.00I 999.9 000000 724050 13743 19480712 80.4 24 70.5 24 1015.6 24 1014.9 24 9.7 24 7.9 24 12.0 999.9 93.4* 71.2* 0.00I 999.9 100000 724050 13743 19480713 81.0 24 73.2 24 1011.9 24 1011.3 24 10.3 24 8.4 24 12.0 999.9 92.3* 73.4* 99.99 999.9 010010 724050 13743 19480714 75.7 24 72.6 24 1010.4 24 1009.7 24 6.1 24 4.8 24 9.9 999.9 78.3* 72.3* 99.99 999.9 110000 724050 13743 19480715 74.7 24 69.9 24 1014.1 24 1013.5 24 6.5 24 7.6 24 9.9 999.9 80.2* 70.3* 99.99 999.9 110000 724050 13743 19480716 73.0 24 64.7 24 1018.1 24 1017.3 24 11.2 24 3.9 24 9.9 999.9 83.3* 63.3* 0.00I 999.9 000000 724050 13743 19480717 78.3 24 71.2 24 1014.8 24 1014.2 24 9.1 24 6.1 24 9.9 999.9 91.2* 70.3* 99.99 999.9 110000 724050 13743 19480718 81.3 24 74.2 14 1012.2 24 1011.6 24 10.0 24 5.4 24 14.0 999.9 90.3* 73.4* 0.00I 999.9 100000 724050 13743 19480719 81.1 24 73.4 24 1013.0 24 1012.3 24 7.7 24 3.2 24 9.9 999.9 89.2* 72.3* 99.99 999.9 010000 724050 13743 19480720 81.4 24 73.9 24 1012.5 24 1011.9 24 4.9 24 2.3 24 6.0 999.9 89.2* 74.3* 99.99 999.9 110000 724050 13743 19480721 82.1 24 75.2 24 1009.5 24 1008.8 24 8.6 24 4.6 24 9.9 999.9 91.2* 74.3* 0.00I 999.9 000000 724050 13743 19480722 85.2 24 75.6 24 1005.9 24 1005.2 24 12.5 24 7.3 24 12.0 999.9 93.4* 78.3* 99.99 999.9 010000 724050 13743 19480723 80.1 24 74.5 16 1006.7 24 1006.0 24 13.2 24 7.0 24 13.0 999.9 86.4* 75.4* 99.99 999.9 010010 724050 13743 19480724 78.6 24 67.0 24 1011.4 24 1010.8 24 9.2 24 8.9 24 15.9 999.9 83.3* 73.4* 0.00I 999.9 000000 724050 13743 19480725 76.5 24 63.8 24 1015.8 24 1015.1 24 10.9 24 6.0 24 9.9 999.9 85.3* 65.3* 0.00I 999.9 000000 724050 13743 19480726 77.0 24 65.8 24 1014.2 24 1013.6 24 11.6 24 7.8 24 15.9 999.9 90.3* 66.4* 0.00I 999.9 000000 724050 13743 19480727 81.7 24 74.1 24 1012.3 24 1011.7 24 6.8 24 5.7 24 9.9 999.9 88.3* 78.3* 99.99 999.9 010000 724050 13743 19480728 79.1 24 73.3 24 1011.7 24 1011.0 24 9.4 24 6.1 24 8.9 999.9 91.2* 72.3* 99.99 999.9 110000 724050 13743 19480729 79.3 24 70.2 24 1013.6 24 1012.9 24 8.9 24 4.0 24 7.0 999.9 90.3* 70.3* 0.00I 999.9 100000 724050 13743 19480730 81.2 24 74.1 24 1012.5 24 1011.8 24 10.1 24 6.9 24 9.9 999.9 91.2* 74.3* 0.00I 999.9 000000 724050 13743 19480731 80.5 24 74.3 24 1009.4 24 1008.7 24 11.3 24 7.0 24 9.9 999.9 90.3* 72.3* 99.99 999.9 010010 724050 13743 19480801 71.6 24 69.7 24 1012.4 24 1011.8 24 5.3 24 5.9 24 8.9 999.9 74.3* 69.3* 99.99 999.9 110010 724050 13743 19480802 75.2 24 69.8 24 1016.6 24 1015.9 24 7.2 24 6.6 24 9.9 999.9 87.3* 69.3* 99.99 999.9 110000 724050 13743 19480803 75.9 24 72.0 24 1015.7 24 1015.1 24 11.7 24 7.1 24 9.9 999.9 85.3* 71.2* 99.99 999.9 010000 724050 13743 19480804 72.5 24 70.8 24 1012.1 24 1011.4 24 4.3 24 4.2 24 7.0 999.9 76.3* 70.3* 99.99 999.9 110000 724050 13743 19480805 72.3 24 66.5 24 1008.7 24 1008.0 24 6.7 24 8.1 24 20.0 999.9 80.2* 68.4* 99.99 999.9 110000 724050 13743 19480806 67.4 24 53.2 24 1013.5 24 1012.8 24 14.1 24 12.4 24 19.0 999.9 78.3* 58.3* 0.00I 999.9 000000 724050 13743 19480807 71.2 24 58.3 24 1016.4 24 1015.7 24 10.7 24 5.7 24 9.9 999.9 80.2* 62.4* 0.00I 999.9 000000 724050 13743 19480808 72.6 24 60.9 24 1016.1 24 1015.4 24 10.4 24 5.5 24 9.9 999.9 83.3* 62.4* 0.00I 999.9 000000 724050 13743 19480809 73.1 24 63.0 24 1017.2 24 1016.5 24 8.2 24 4.2 24 8.9 999.9 85.3* 62.4* 0.00I 999.9 000000 724050 13743 19480810 72.2 24 62.5 24 1019.5 24 1018.8 24 6.1 24 3.2 24 8.9 999.9 83.3* 62.4* 0.00I 999.9 000000 724050 13743 19480811 74.7 24 67.1 24 1017.7 24 1017.1 24 5.6 24 5.4 24 9.9 999.9 86.4* 67.3* 99.99 999.9 110000 724050 13743 19480812 73.2 24 69.9 24 1012.5 24 1011.9 24 6.1 24 8.0 24 13.0 999.9 81.3* 70.3* 99.99 999.9 110010 724050 13743 19480813 75.1 24 66.1 24 1009.3 24 1008.7 24 9.9 24 7.9 24 20.0 999.9 84.4* 65.3* 0.00I 999.9 100000 724050 13743 19480814 72.9 24 62.7 24 1011.5 24 1010.9 24 9.9 24 6.5 24 15.9 999.9 81.3* 66.4* 0.00I 999.9 000000 724050 13743 19480815 74.3 24 61.6 24 1014.1 24 1013.4 24 11.3 24 6.8 24 9.9 999.9 85.3* 63.3* 0.00I 999.9 000000 724050 13743 19480816 74.3 24 62.9 24 1014.0 24 1013.3 24 11.1 24 3.4 24 7.0 999.9 85.3* 64.4* 0.00I 999.9 000000 724050 13743 19480817 72.2 24 64.1 24 1014.5 24 1013.9 24 9.6 24 4.2 24 8.9 999.9 82.4* 63.3* 0.00I 999.9 000000 724050 13743 19480818 74.7 24 66.9 24 1013.7 24 1013.0 24 10.7 24 4.0 24 8.9 999.9 86.4* 66.4* 0.00I 999.9 100000 724050 13743 19480819 71.0 24 65.4 24 1014.1 24 1013.4 24 7.2 24 5.0 24 16.9 999.9 82.4* 64.4* 99.99 999.9 110010 724050 13743 19480820 73.4 24 66.1 24 1014.5 24 1013.8 24 6.2 24 5.1 24 13.0 999.9 82.4* 66.4* 99.99 999.9 110010 724050 13743 19480821 74.1 24 65.9 24 1016.7 24 1016.0 24 4.9 24 2.1 24 6.0 999.9 85.3* 66.4* 99.99 999.9 110000 724050 13743 19480822 74.3 24 67.7 24 1019.1 24 1018.4 24 6.6 24 2.9 24 14.0 999.9 81.3* 69.3* 99.99 999.9 010000 724050 13743 19480823 76.1 24 69.3 24 1021.1 24 1020.5 24 6.3 24 3.4 24 8.0 999.9 88.3* 69.3* 0.00I 999.9 100000 724050 13743 19480824 78.7 24 68.2 24 1019.9 24 1019.2 24 4.7 24 1.8 24 7.0 999.9 91.2* 70.3* 0.00I 999.9 100000 724050 13743 19480825 81.3 24 72.6 24 1016.6 24 1016.0 24 4.9 24 4.6 24 8.0 999.9 95.4* 71.2* 0.00I 999.9 100000 724050 13743 19480826 86.2 24 74.8 24 1016.8 24 1016.2 24 4.5 24 3.4 24 7.0 999.9 101.3* 75.4* 0.00I 999.9 000000 724050 13743 19480827 87.3 24 74.4 24 1020.0 24 1019.3 24 4.0 24 2.0 24 6.0 999.9 105.3* 75.4* 0.00I 999.9 000000 724050 13743 19480828 86.9 24 74.8 24 1019.8 24 1019.2 24 6.1 24 2.2 24 8.0 999.9 102.4* 75.4* 0.00I 999.9 000000 724050 13743 19480829 86.1 24 73.7 24 1015.5 24 1014.9 24 8.6 24 4.3 24 35.0 999.9 97.3* 77.4* 99.99 999.9 010000 724050 13743 19480830 81.4 24 68.9 24 1013.0 24 1012.3 24 10.1 24 3.8 24 8.9 999.9 93.4* 71.2* 99.99 999.9 010000 724050 13743 19480831 74.0 24 63.7 24 1012.0 24 1011.3 24 10.0 24 9.0 24 15.9 999.9 79.3* 70.3* 0.00I 999.9 000000 724050 13743 19480901 68.4 24 49.2 24 1020.4 24 1019.7 24 14.0 24 7.6 24 11.1 999.9 77.4* 55.4* 0.00I 999.9 000000 724050 13743 19480902 66.0 24 53.5 24 1020.4 24 1019.7 24 11.4 24 3.0 24 8.9 999.9 80.2* 53.4* 0.00I 999.9 000000 724050 13743 19480903 70.9 24 58.4 24 1017.8 24 1017.1 24 12.1 24 3.9 24 8.9 999.9 84.4* 59.4* 0.00I 999.9 000000 724050 13743 19480904 74.0 24 63.7 24 1018.5 24 1017.8 24 11.7 24 6.0 24 12.0 999.9 85.3* 66.4* 0.00I 999.9 000000 724050 13743 19480905 76.5 24 67.2 24 1021.3 24 1020.6 24 11.1 24 3.6 24 8.9 999.9 85.3* 69.3* 0.00I 999.9 000000 724050 13743 19480906 74.7 24 66.1 24 1021.6 24 1020.9 24 10.1 24 4.1 24 8.9 999.9 86.4* 65.3* 0.00I 999.9 100000 724050 13743 19480907 74.7 24 67.7 24 1016.6 24 1015.9 24 11.0 24 6.8 24 8.9 999.9 82.4* 68.4* 99.99 999.9 010000 724050 13743 19480908 75.5 24 68.8 24 1012.2 24 1011.6 24 7.7 24 5.6 24 8.0 999.9 87.3* 69.3* 0.00I 999.9 100000 724050 13743 19480909 78.9 24 70.4 24 1010.4 24 1009.7 24 6.7 24 4.8 24 9.9 999.9 91.2* 70.3* 99.99 999.9 110000 724050 13743 19480910 68.6 24 65.0 24 1013.2 24 1012.6 24 6.7 24 6.9 24 12.0 999.9 71.2* 63.3* 99.99 999.9 110010 724050 13743 19480911 68.9 24 58.3 24 1015.4 24 1014.7 24 9.8 24 5.2 24 9.9 999.9 80.2* 60.3* 0.00I 999.9 000000 724050 13743 19480912 73.5 24 61.3 24 1016.9 24 1016.2 24 11.3 24 6.3 24 9.9 999.9 86.4* 62.4* 0.00I 999.9 000000 724050 13743 19480913 77.2 24 64.9 24 1018.2 24 1017.5 24 9.7 24 4.0 24 8.0 999.9 91.2* 65.3* 0.00I 999.9 000000 724050 13743 19480914 76.8 24 63.2 24 1015.9 24 1015.2 24 9.5 24 5.7 24 11.1 999.9 83.3* 70.3* 0.00I 999.9 000000 724050 13743 19480915 67.8 24 50.4 24 1022.1 24 1021.4 24 14.0 24 6.3 24 9.9 999.9 76.3* 58.3* 0.00I 999.9 000000 724050 13743 19480916 66.0 24 53.0 24 1027.3 24 1026.7 24 8.0 24 3.7 24 7.0 999.9 78.3* 55.4* 0.00I 999.9 000000 724050 13743 19480917 68.7 24 58.0 24 1030.2 24 1029.5 24 12.3 24 7.0 24 13.0 999.9 78.3* 62.4* 0.00I 999.9 000000 724050 13743 19480918 74.5 24 63.8 24 1020.9 24 1020.2 24 12.4 24 8.2 24 11.1 999.9 90.3* 67.3* 0.00I 999.9 000000 724050 13743 19480919 76.3 24 65.4 24 1013.7 24 1013.0 24 8.4 24 4.1 24 8.0 999.9 83.3* 69.3* 0.00I 999.9 000000 724050 13743 19480920 77.0 24 67.8 24 1009.9 24 1009.2 24 9.2 24 4.4 24 15.0 999.9 90.3* 67.3* 99.99 999.9 010010 724050 13743 19480921 70.3 24 62.5 24 1008.1 24 1007.4 24 6.4 24 5.6 24 11.1 999.9 80.2* 60.3* 99.99 999.9 110000 724050 13743 19480922 60.6 24 50.2 24 1008.5 24 1007.9 24 10.6 24 5.6 24 8.9 999.9 70.3* 55.4* 99.99 999.9 110000 724050 13743 19480923 59.0 24 47.3 24 1007.2 24 1006.5 24 11.6 24 6.8 24 11.1 999.9 68.4* 51.3* 0.00I 999.9 000000 724050 13743 19480924 60.8 24 47.7 24 1010.3 24 1009.6 24 12.0 24 6.8 24 9.9 999.9 65.3* 57.4* 0.00I 999.9 000000 724050 13743 19480925 60.5 24 45.8 24 1020.9 24 1020.2 24 12.3 24 7.0 24 9.9 999.9 70.3* 53.4* 0.00I 999.9 000000 724050 13743 19480926 60.3 24 48.8 24 1027.0 24 1026.3 24 9.2 24 5.2 24 12.0 999.9 72.3* 50.4* 0.00I 999.9 100000 724050 13743 19480927 62.2 24 49.5 24 1027.0 24 1026.4 24 9.3 24 5.4 24 9.9 999.9 76.3* 50.4* 0.00I 999.9 000000 724050 13743 19480928 63.1 24 53.3 24 1023.3 24 1022.6 24 5.0 24 3.1 24 7.0 999.9 72.3* 54.3* 0.00I 999.9 000000 724050 13743 19480929 65.8 24 55.2 24 1021.0 24 1020.3 24 4.1 24 3.8 24 7.0 999.9 76.3* 58.3* 99.99 999.9 010000 724050 13743 19480930 69.6 24 64.9 24 1017.0 24 1016.3 24 5.7 24 2.2 24 7.0 999.9 74.3* 66.4* 99.99 999.9 110000 724050 13743 19481001 71.3 24 64.4 24 1014.6 24 1014.0 24 6.2 23 4.0 24 9.9 999.9 82.4* 65.3* 99.99 999.9 110000 724050 13743 19481002 68.9 24 58.7 24 1016.8 24 1016.1 24 8.7 24 4.3 24 11.1 999.9 78.3* 60.3* 0.00I 999.9 000000 724050 13743 19481003 63.6 24 57.2 24 1021.1 24 1020.4 24 5.6 24 5.2 24 14.0 999.9 68.4* 60.3* 0.00I 999.9 100000 724050 13743 19481004 54.3 24 39.0 23 1027.1 24 1026.4 24 12.8 24 9.4 24 14.0 999.9 61.3* 46.4* 0.00I 999.9 000000 724050 13743 19481005 51.4 24 45.9 24 1018.2 24 1017.5 24 6.4 24 10.5 24 16.9 999.9 56.3* 49.3* 99.99 999.9 110000 724050 13743 19481006 53.1 24 46.5 19 1011.8 24 1011.1 24 8.0 24 12.9 24 19.0 999.9 62.4* 47.3* 99.99 999.9 110000 724050 13743 19481007 60.6 24 9999.9 0 1013.6 24 1013.0 24 6.6 24 6.1 24 8.9 999.9 65.3* 57.4* 0.00I 999.9 000000 724050 13743 19481008 61.2 24 9999.9 0 1010.7 24 1010.0 24 3.5 24 5.4 24 14.0 999.9 65.3* 59.4* 99.99 999.9 110000 724050 13743 19481009 58.4 24 9999.9 0 1010.5 24 1009.8 24 12.8 24 7.4 24 15.0 999.9 68.4* 49.3* 0.00I 999.9 000000 724050 13743 19481010 63.3 24 9999.9 0 1012.1 24 1011.4 24 10.9 24 6.8 24 13.0 999.9 77.4* 54.3* 0.00I 999.9 000000 724050 13743 19481011 64.8 24 9999.9 0 1011.6 24 1011.0 24 9.7 24 9.0 24 13.0 999.9 69.3* 61.3* 99.99 999.9 010000 724050 13743 19481012 62.9 24 9999.9 0 1012.6 24 1011.9 24 10.0 24 8.0 24 13.0 999.9 69.3* 58.3* 0.00I 999.9 000000 724050 13743 19481013 58.6 24 9999.9 0 1013.2 24 1012.4 24 12.3 24 7.4 24 12.0 999.9 65.3* 49.3* 0.00I 999.9 000000 724050 13743 19481014 55.3 24 9999.9 0 1012.6 24 1011.9 24 11.6 24 9.8 24 19.0 999.9 60.3* 48.4* 99.99 999.9 010000 724050 13743 19481015 55.9 24 9999.9 0 1020.4 24 1019.7 24 12.6 24 7.3 24 11.1 999.9 67.3* 47.3* 0.00I 999.9 000000 724050 13743 19481016 54.1 24 9999.9 0 1024.0 24 1023.3 24 7.7 24 5.0 24 8.9 999.9 69.3* 41.4* 0.00I 999.9 100000 724050 13743 19481017 63.0 24 9999.9 0 1016.9 24 1016.3 24 11.4 24 9.9 24 14.0 999.9 78.3* 54.3* 0.00I 999.9 000000 724050 13743 19481018 49.9 23 39.5 8 1016.1 23 1015.4 23 11.2 23 14.7 23 21.0 999.9 71.2* 38.3* 99.99 999.9 010000 724050 13743 19481019 44.7 24 36.4 24 1018.9 24 1018.2 24 11.5 24 5.3 24 9.9 999.9 56.3* 35.4* 0.00I 999.9 100000 724050 13743 19481020 48.9 24 37.9 24 1018.5 24 1017.9 24 12.2 24 11.8 24 20.0 999.9 55.4* 44.4* 0.00I 999.9 000000 724050 13743 19481021 45.6 24 34.3 24 1028.7 24 1028.0 24 11.1 24 5.5 24 9.9 999.9 55.4* 36.3* 0.00I 999.9 000000 724050 13743 19481022 47.3 24 40.1 24 1031.3 24 1030.7 24 4.3 24 2.0 24 7.0 999.9 55.4* 41.4* 0.00I 999.9 100000 724050 13743 19481023 51.9 24 48.8 24 1025.3 24 1024.6 24 4.7 24 5.8 24 8.9 999.9 54.3* 49.3* 99.99 999.9 110000 724050 13743 19481024 55.5 24 47.1 24 1020.9 24 1020.2 24 9.8 24 11.0 24 18.1 999.9 61.3* 49.3* 99.99 999.9 110000 724050 13743 19481025 57.8 24 42.3 24 1017.3 24 1016.6 24 13.8 24 16.7 24 22.0 999.9 63.3* 53.4* 99.99 999.9 010000 724050 13743 19481026 56.2 24 36.8 24 1017.5 24 1016.8 24 13.0 24 10.9 24 15.9 999.9 67.3* 46.4* 0.00I 999.9 000000 724050 13743 19481027 57.0 24 42.3 24 1021.1 24 1020.4 24 9.1 24 7.1 24 9.9 999.9 72.3* 47.3* 0.00I 999.9 100000 724050 13743 19481028 53.8 24 45.6 24 1022.7 24 1021.9 24 2.4 24 0.9 24 9.9 999.9 68.4* 44.4* 0.00I 999.9 100000 724050 13743 19481029 57.1 24 48.2 24 1021.8 24 1021.1 24 2.2 24 0.0 24 999.9 999.9 73.4* 48.4* 0.00I 999.9 000000 724050 13743 19481030 52.4 24 47.0 24 1022.4 24 1021.8 24 1.8 24 2.3 24 8.9 999.9 62.4* 44.4* 0.00I 999.9 000000 724050 13743 19481031 51.1 24 48.6 24 1020.4 24 1019.7 24 1.8 24 2.2 24 8.0 999.9 63.3* 44.4* 99.99 999.9 110000 724050 13743 19481101 60.1 24 54.1 24 1016.4 24 1015.7 24 4.1 24 2.3 24 9.9 999.9 73.4* 54.3* 99.99 999.9 110000 724050 13743 19481102 56.5 24 52.0 24 1022.8 24 1022.1 24 4.9 24 7.0 24 9.9 999.9 60.3* 54.3* 99.99 999.9 010000 724050 13743 19481103 52.4 24 48.6 24 1021.4 24 1020.7 24 5.6 24 8.0 24 13.0 999.9 58.3* 46.4* 99.99 999.9 110010 724050 13743 19481104 64.6 23 60.5 23 1013.0 23 1012.3 23 8.5 23 5.7 23 9.9 999.9 71.2* 58.3* 99.99 999.9 110000 724050 13743 19481105 66.1 24 62.8 24 1015.3 24 1014.6 24 7.3 24 5.4 24 13.0 999.9 75.4* 60.3* 99.99 999.9 110000 724050 13743 19481106 73.3 24 65.5 24 1012.1 24 1011.4 24 12.8 24 12.3 24 22.0 999.9 78.3* 69.3* 99.99 999.9 010000 724050 13743 19481107 59.6 24 48.2 24 1016.3 24 1015.6 24 10.7 24 8.8 24 19.0 999.9 75.4* 52.3* 99.99 999.9 010000 724050 13743 19481108 51.7 24 40.1 24 1028.0 24 1027.3 24 9.0 24 2.3 24 8.9 999.9 65.3* 40.3* 0.00I 999.9 000000 724050 13743 19481109 51.4 24 45.3 24 1021.9 24 1021.3 24 4.0 24 2.1 24 8.0 999.9 63.3* 44.4* 99.99 999.9 110000 724050 13743 19481110 58.0 24 55.7 24 1012.1 24 1011.4 24 4.2 24 5.4 24 21.0 999.9 68.4* 52.3* 99.99 999.9 110000 724050 13743 19481111 47.2 24 35.3 24 1023.2 24 1022.5 24 12.0 24 10.2 24 22.9 999.9 57.4* 38.3* 99.99 999.9 010000 724050 13743 19481112 46.4 24 35.8 24 1028.0 24 1027.3 24 6.8 24 1.2 24 8.9 999.9 57.4* 36.3* 0.00I 999.9 100000 724050 13743 19481113 52.1 24 43.9 24 1016.1 24 1015.4 24 10.1 24 7.8 24 16.9 999.9 61.3* 47.3* 99.99 999.9 110000 724050 13743 19481114 47.3 24 31.6 24 1020.8 24 1020.1 24 14.0 24 7.5 24 16.9 999.9 53.4* 41.4* 0.00I 999.9 000000 724050 13743 19481115 48.3 24 35.5 24 1017.7 24 1017.0 24 10.5 24 5.6 24 9.9 999.9 58.3* 40.3* 0.00I 999.9 000000 724050 13743 19481116 46.8 24 37.6 24 1023.2 24 1022.5 24 5.4 24 2.6 24 8.0 999.9 58.3* 35.4* 0.00I 999.9 100000 724050 13743 19481117 55.1 24 43.5 24 1014.8 24 1014.1 24 9.4 24 8.4 24 13.0 999.9 66.4* 49.3* 99.99 999.9 010000 724050 13743 19481118 50.4 24 36.0 24 1022.6 24 1022.0 24 8.6 24 3.4 24 8.0 999.9 65.3* 38.3* 0.00I 999.9 000000 724050 13743 19481119 53.5 24 50.3 24 1019.4 24 1018.7 24 5.4 24 6.5 24 42.9 999.9 66.4* 43.3* 99.99 999.9 110000 724050 13743 19481120 67.8 24 57.1 24 1005.4 24 1004.7 24 14.0 24 13.3 24 18.1 999.9 72.3* 57.4* 99.99 999.9 010000 724050 13743 19481121 51.1 24 40.1 24 1017.4 24 1016.7 24 9.4 24 1.9 24 9.9 999.9 63.3* 40.3* 0.00I 999.9 000000 724050 13743 19481122 49.8 24 46.9 24 1017.2 24 1016.6 24 6.5 24 2.4 24 9.9 999.9 54.3* 46.4* 99.99 999.9 110000 724050 13743 19481123 48.4 24 43.0 24 1011.8 24 1011.1 24 6.3 24 4.2 24 16.9 999.9 53.4* 43.3* 0.00I 999.9 100000 724050 13743 19481124 44.7 24 40.0 24 1010.6 24 1010.0 24 5.2 24 1.9 24 7.0 999.9 48.4* 41.4* 99.99 999.9 110000 724050 13743 19481125 46.5 24 40.0 24 1012.4 24 1011.7 24 6.1 24 7.1 24 12.0 999.9 52.3* 40.3* 99.99 999.9 110000 724050 13743 19481126 45.2 24 39.2 24 1018.4 24 1017.7 24 5.1 24 3.9 24 9.9 999.9 58.3* 35.4* 0.00I 999.9 000000 724050 13743 19481127 54.9 24 46.5 24 1011.4 24 1010.7 24 9.8 24 9.1 24 21.0 999.9 63.3* 50.4* 99.99 999.9 110000 724050 13743 19481128 42.3 24 35.5 24 1020.5 24 1019.8 24 6.8 24 2.7 24 7.0 999.9 52.3* 36.3* 99.99 999.9 111000 724050 13743 19481129 40.3 24 39.9 24 1009.7 24 1009.0 24 5.0 24 10.5 24 15.0 999.9 41.4* 38.3* 99.99 999.9 110000 724050 13743 19481130 41.4 24 36.9 24 1021.9 24 1021.2 24 8.5 24 3.5 24 13.0 999.9 50.4* 34.3* 0.00I 999.9 100000 724050 13743 19481201 41.3 24 35.4 24 1025.6 24 1024.9 24 4.4 24 1.1 24 6.0 999.9 57.4* 31.3* 0.00I 999.9 100000 724050 13743 19481202 40.0 24 34.4 24 1029.5 24 1028.9 24 3.5 24 1.1 24 6.0 999.9 50.4* 30.4* 0.00I 999.9 000000 724050 13743 19481203 45.4 24 43.7 24 1021.0 24 1020.3 24 2.9 24 4.0 24 14.0 999.9 48.4* 42.4* 99.99 999.9 110000 724050 13743 19481204 53.7 24 49.6 22 1012.7 24 1012.0 24 7.5 24 11.8 24 16.9 999.9 62.4* 48.4* 99.99 999.9 110000 724050 13743 19481205 47.6 24 38.6 18 1017.8 24 1017.2 24 6.5 24 1.7 24 8.9 999.9 57.4* 38.3* 0.00I 999.9 000000 724050 13743 19481206 55.2 24 44.5 24 1010.5 24 1009.9 24 11.6 24 9.0 24 15.0 999.9 64.4* 50.4* 99.99 999.9 010000 724050 13743 19481207 44.8 24 35.5 24 1014.7 24 1014.0 24 8.1 24 1.6 24 8.0 999.9 57.4* 34.3* 0.00I 999.9 100000 724050 13743 19481208 50.1 24 39.4 24 1009.1 24 1008.4 24 8.6 24 7.6 24 19.0 999.9 53.4* 46.4* 0.00I 999.9 000000 724050 13743 19481209 39.6 24 25.5 24 1019.1 24 1018.4 24 10.4 24 6.7 24 8.9 999.9 45.3* 34.3* 0.00I 999.9 000000 724050 13743 19481210 37.2 24 24.4 24 1020.8 24 1020.1 24 8.1 24 10.1 24 21.0 999.9 42.4* 32.4* 0.00I 999.9 000000 724050 13743 19481211 33.4 24 21.0 24 1030.3 24 1029.6 24 9.7 24 6.6 24 12.0 999.9 40.3* 27.3* 0.00I 999.9 000000 724050 13743 19481212 43.0 24 33.1 24 1022.5 24 1021.8 24 7.4 24 8.7 24 15.9 999.9 52.3* 36.3* 99.99 999.9 110000 724050 13743 19481213 54.1 24 47.6 24 1017.5 24 1016.9 24 7.8 24 4.5 24 9.9 999.9 67.3* 45.3* 0.00I 999.9 000000 724050 13743 19481214 54.7 24 46.9 24 1019.5 24 1018.8 24 9.3 24 6.8 24 12.0 999.9 61.3* 46.4* 0.00I 999.9 000000 724050 13743 19481215 40.2 24 34.3 24 1023.1 24 1022.4 24 6.1 24 7.6 24 12.0 999.9 51.3* 34.3* 99.99 999.9 110000 724050 13743 19481216 38.5 24 38.4 24 1015.0 24 1014.3 24 2.8 24 6.4 24 8.9 999.9 42.4* 36.3* 99.99 999.9 110000 724050 13743 19481217 43.1 24 37.3 24 1017.1 24 1016.4 24 9.3 24 9.0 24 15.0 999.9 50.4* 38.3* 99.99 999.9 110000 724050 13743 19481218 37.8 24 28.9 24 1022.1 24 1021.4 24 9.4 24 7.9 24 12.0 999.9 44.4* 34.3* 0.00I 999.9 000000 724050 13743 19481219 32.2 24 29.3 24 1007.5 24 1006.9 24 4.7 24 6.3 24 12.0 999.9 34.3* 30.4* 99.99 999.9 111000 724050 13743 19481220 32.5 24 28.9 24 1005.6 24 1005.0 24 8.9 24 6.9 24 11.1 999.9 34.3* 29.3* 0.00I 999.9 000000 724050 13743 19481221 37.9 24 32.5 24 1011.6 24 1010.9 24 6.5 24 5.4 24 12.0 999.9 51.3* 29.3* 0.00I 999.9 100000 724050 13743 19481222 41.8 24 35.0 24 1014.9 24 1014.3 24 6.9 24 3.6 24 13.0 999.9 50.4* 35.4* 0.00I 999.9 100000 724050 13743 19481223 37.9 24 28.1 24 1021.3 24 1020.6 24 9.9 24 10.6 24 15.9 999.9 42.4* 35.4* 0.00I 999.9 000000 724050 13743 19481224 32.8 24 23.6 24 1024.4 24 1023.7 24 8.9 24 9.4 24 13.0 999.9 36.3* 29.3* 0.00I 999.9 000000 724050 13743 19481225 30.5 24 21.9 20 1019.9 24 1019.3 24 6.6 24 4.9 24 26.0 999.9 34.3* 24.4* 0.00I 999.9 000000 724050 13743 19481226 20.9 24 5.7 23 1032.6 24 1031.8 24 14.7 24 15.8 24 26.0 999.9 27.3* 15.4* 0.00I 999.9 000000 724050 13743 19481227 24.4 23 15.4 12 1030.0 23 1029.3 23 10.2 23 3.8 23 11.1 999.9 39.4* 15.4* 0.00I 999.9 000000 724050 13743 19481228 33.4 24 22.9 23 1026.8 24 1026.1 24 7.1 24 2.8 24 9.9 999.9 50.4* 21.4* 0.00I 999.9 000000 724050 13743 19481229 42.4 24 39.7 24 1021.6 24 1021.0 24 4.8 24 4.6 24 14.0 999.9 58.3* 34.3* 99.99 999.9 110000 724050 13743 19481230 48.3 24 46.7 24 1009.4 24 1008.8 24 5.2 24 9.2 24 15.9 999.9 60.3* 38.3* 99.99 999.9 110000 724050 13743 19481231 36.3 24 29.8 24 1003.4 24 1002.7 24 11.0 24 17.6 24 22.0 999.9 39.4* 32.4* 99.99 999.9 001000 fluids-1.0.22/tests/gsod/1958/0000755000175000017500000000000014302004506015106 5ustar nileshnileshfluids-1.0.22/tests/gsod/1958/724050-13743.op0000644000175000017500000014327214302004506016677 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19580101 43.5 24 34.1 24 1014.5 24 1013.5 24 9.4 24 9.0 24 25.1 999.9 47.3* 35.4* 99.99 999.9 010000 724050 13743 19580102 28.6 24 8.3 24 1021.8 24 1020.7 24 10.5 24 13.5 24 22.0 999.9 33.4* 25.3* 0.00I 999.9 000000 724050 13743 19580103 26.2 24 9.1 24 1029.2 24 1028.1 24 11.3 24 6.4 24 22.0 999.9 36.3* 20.3* 0.00I 999.9 000000 724050 13743 19580104 23.3 24 4.6 24 1035.8 24 1034.8 24 11.4 24 15.3 24 23.9 999.9 27.3* 19.4* 0.00I 999.9 000000 724050 13743 19580105 24.0 24 10.3 24 1039.4 24 1038.4 24 11.1 24 12.3 24 18.1 999.9 31.3* 19.4* 0.00I 999.9 000000 724050 13743 19580106 30.2 24 18.2 24 1028.0 24 1027.0 24 8.3 24 4.4 24 9.9 999.9 45.3* 21.4* 0.00I 999.9 000000 724050 13743 19580107 35.6 24 22.0 24 1009.0 24 1008.0 24 7.3 24 7.2 24 12.0 999.9 39.4* 32.4* 99.99 999.9 111000 724050 13743 19580108 29.0 24 14.3 24 1003.6 24 1002.6 24 11.4 24 19.8 24 28.0 999.9 34.3* 25.3* 0.00I 999.9 000000 724050 13743 19580109 25.5 24 8.8 24 1016.6 24 1015.6 24 11.5 24 14.8 24 22.0 999.9 34.3* 20.3* 0.00I 999.9 000000 724050 13743 19580110 28.7 24 14.2 24 1018.0 24 1017.0 24 9.7 24 3.0 24 8.9 999.9 42.4* 20.3* 0.00I 999.9 000000 724050 13743 19580111 35.9 24 22.1 24 1013.3 24 1012.3 24 8.5 24 9.8 24 22.9 999.9 44.4* 28.4* 0.00I 999.9 000000 724050 13743 19580112 30.7 24 16.9 24 1027.0 24 1026.0 24 10.9 24 7.4 24 19.0 999.9 38.3* 22.5* 0.00I 999.9 000000 724050 13743 19580113 26.9 24 17.7 24 1028.5 24 1027.5 24 8.2 24 0.7 24 9.9 999.9 35.4* 20.3* 0.00I 999.9 000000 724050 13743 19580114 38.2 24 34.9 24 1012.3 24 1011.3 24 3.2 24 8.2 24 15.0 999.9 45.3* 33.4* 99.99 999.9 110000 724050 13743 19580115 40.2 24 36.9 24 1004.8 24 1003.8 24 9.6 24 10.3 24 20.0 999.9 41.4* 39.4* 99.99 999.9 110000 724050 13743 19580116 36.3 24 32.0 24 1004.0 24 1002.9 24 7.3 24 11.4 24 19.0 999.9 40.3* 34.3* 99.99 999.9 111000 724050 13743 19580117 35.2 24 24.5 24 1004.2 24 1003.2 24 9.4 24 17.6 24 22.0 999.9 38.3* 32.4* 0.00I 999.9 000000 724050 13743 19580118 33.9 24 20.1 24 1006.8 24 1005.8 24 11.4 24 19.9 24 28.0 999.9 35.4* 31.3* 0.00I 999.9 000000 724050 13743 19580119 28.2 24 13.3 24 1019.6 24 1018.6 24 11.9 24 20.2 24 29.9 999.9 36.3* 22.5* 0.00I 999.9 000000 724050 13743 19580120 32.4 24 16.0 24 1025.1 24 1024.1 24 9.2 24 3.5 24 11.1 999.9 44.4* 24.4* 0.00I 999.9 000000 724050 13743 19580121 36.4 24 27.0 24 1016.2 24 1015.2 24 5.5 24 1.7 24 8.0 999.9 41.4* 32.4* 99.99 999.9 110000 724050 13743 19580122 43.0 24 37.8 24 998.6 24 997.6 24 6.1 24 8.2 24 20.0 999.9 56.3* 39.4* 99.99 999.9 110000 724050 13743 19580123 40.4 24 25.9 24 1015.1 24 1014.1 24 9.9 24 10.0 24 20.0 999.9 48.4* 36.3* 0.00I 999.9 000000 724050 13743 19580124 35.8 24 24.6 24 1018.5 24 1017.5 24 8.5 24 3.3 24 9.9 999.9 43.3* 32.4* 99.99 999.9 011000 724050 13743 19580125 40.2 24 36.8 24 998.9 24 997.8 24 5.1 24 12.9 24 21.0 999.9 47.3* 33.4* 99.99 999.9 110000 724050 13743 19580126 40.5 24 29.4 24 1002.1 24 1001.1 24 8.9 24 10.1 24 15.9 999.9 44.4* 37.4* 0.00I 999.9 000000 724050 13743 19580127 39.7 24 28.8 24 1002.1 24 1001.0 24 7.2 24 2.9 24 15.9 999.9 50.4* 31.3* 0.00I 999.9 000000 724050 13743 19580128 39.9 24 27.9 24 1006.9 24 1005.9 24 9.9 24 11.8 24 18.1 999.9 44.4* 36.3* 99.99 999.9 011000 724050 13743 19580129 38.9 24 25.4 24 1013.4 24 1012.4 24 10.9 24 5.9 24 12.0 999.9 44.4* 34.3* 0.00I 999.9 000000 724050 13743 19580130 39.2 24 27.9 24 1012.2 24 1011.2 24 6.6 24 3.7 24 11.1 999.9 46.4* 30.4* 99.99 999.9 101000 724050 13743 19580131 40.0 24 26.7 24 1008.7 24 1007.7 24 7.8 24 2.5 24 9.9 999.9 45.3* 35.4* 99.99 999.9 010000 724050 13743 19580201 36.1 24 31.9 24 996.7 24 995.7 24 4.9 24 11.3 24 16.9 999.9 43.3* 31.3* 99.99 999.9 111000 724050 13743 19580202 30.8 24 21.7 24 998.8 24 997.8 24 10.4 24 11.3 24 16.9 999.9 36.3* 27.3* 99.99 999.9 001000 724050 13743 19580203 28.9 24 19.1 24 1001.7 24 1000.7 24 10.3 24 15.7 24 26.0 999.9 34.3* 25.3* 0.00I 999.9 000000 724050 13743 19580204 30.3 24 15.5 24 1007.1 24 1006.1 24 11.8 24 20.3 24 26.0 999.9 37.4* 26.4* 0.00I 999.9 000000 724050 13743 19580205 33.8 24 21.3 24 1014.6 24 1013.6 24 10.3 24 4.8 24 15.9 999.9 37.4* 30.4* 99.99 999.9 011000 724050 13743 19580206 39.6 24 30.1 24 1013.4 24 1012.4 24 6.7 24 1.3 24 5.1 999.9 47.3* 35.4* 0.00I 999.9 000000 724050 13743 19580207 38.6 24 36.3 24 1006.6 24 1005.5 24 2.6 24 5.3 24 15.9 999.9 42.4* 36.3* 99.99 999.9 110000 724050 13743 19580208 31.2 24 22.4 24 1006.4 24 1005.4 24 10.2 24 23.0 24 29.9 999.9 38.3* 22.5* 99.99 999.9 010000 724050 13743 19580209 18.5 24 4.1 24 1016.0 24 1014.9 24 11.8 24 22.8 24 30.9 999.9 21.4* 14.4* 0.00I 999.9 000000 724050 13743 19580210 19.4 24 5.4 24 1017.3 24 1016.3 24 11.9 24 10.6 24 19.0 999.9 27.3* 15.4* 0.00I 999.9 000000 724050 13743 19580211 23.6 24 10.1 24 1016.9 24 1015.9 24 10.9 24 4.2 24 9.9 999.9 35.4* 16.3* 0.00I 999.9 000000 724050 13743 19580212 28.8 24 13.3 24 1013.7 24 1012.7 24 9.3 24 5.9 24 11.1 999.9 35.4* 25.3* 0.00I 999.9 000000 724050 13743 19580213 25.6 24 10.4 24 1013.2 24 1012.2 24 10.4 24 11.8 24 23.9 999.9 31.3* 20.3* 0.00I 999.9 000000 724050 13743 19580214 25.0 24 11.8 24 1018.5 24 1017.5 24 10.9 24 10.4 24 20.0 999.9 32.4* 20.3* 99.99 999.9 001000 724050 13743 19580215 30.1 24 20.3 24 1013.3 24 1012.3 24 6.7 24 3.6 24 12.0 999.9 32.4* 27.3* 99.99 999.9 101000 724050 13743 19580216 27.1 24 21.2 24 996.8 24 995.8 24 3.4 24 22.6 24 28.9 999.9 32.4* 21.4* 99.99 999.9 101000 724050 13743 19580217 11.0 24 -3.4 24 1005.1 24 1004.1 24 10.3 24 21.8 24 37.9 999.9 18.3* 4.5* 0.00I 999.9 000000 724050 13743 19580218 13.1 24 -2.0 24 1009.7 24 1008.7 24 11.3 24 20.3 24 25.1 999.9 17.4* 10.4* 0.00I 999.9 000000 724050 13743 19580219 22.7 24 10.4 24 1010.4 24 1009.4 24 11.0 24 21.3 24 28.9 999.9 33.4* 14.4* 99.99 999.9 001000 724050 13743 19580220 29.6 24 17.7 24 1019.1 24 1018.1 24 11.8 24 17.2 24 23.9 999.9 36.3* 26.4* 0.00I 999.9 000000 724050 13743 19580221 33.9 24 16.9 24 1025.8 24 1024.7 24 10.4 24 8.2 24 16.9 999.9 47.3* 24.4* 0.00I 999.9 000000 724050 13743 19580222 42.4 24 27.2 24 1014.5 24 1013.5 24 10.1 24 6.7 24 21.0 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19580223 36.8 24 23.0 24 1017.0 24 1016.0 24 11.9 24 9.1 24 22.9 999.9 46.4* 27.3* 0.00I 999.9 000000 724050 13743 19580224 44.8 24 29.2 24 1011.7 24 1010.7 24 8.3 24 2.5 24 8.0 999.9 65.3* 32.4* 0.00I 999.9 000000 724050 13743 19580225 51.5 24 35.9 24 1008.9 24 1007.8 24 11.1 24 10.5 24 18.1 999.9 56.3* 47.3* 0.00I 999.9 000000 724050 13743 19580226 43.3 24 28.4 24 1017.9 24 1016.8 24 9.1 24 4.8 24 12.0 999.9 48.4* 37.4* 99.99 999.9 011000 724050 13743 19580227 40.8 24 39.3 24 1004.4 24 1003.4 24 2.7 24 6.3 24 12.0 999.9 45.3* 36.3* 99.99 999.9 111000 724050 13743 19580228 46.2 24 41.1 24 995.8 24 994.8 24 5.8 24 4.2 24 8.9 999.9 57.4* 40.3* 99.99 999.9 110000 724050 13743 19580301 48.1 24 33.7 24 1006.4 24 1005.3 24 11.1 24 10.3 24 18.1 999.9 54.3* 42.4* 99.99 999.9 010000 724050 13743 19580302 46.3 24 33.7 24 1015.8 24 1014.7 24 10.0 24 5.6 24 15.9 999.9 53.4* 38.3* 0.00I 999.9 000000 724050 13743 19580303 48.7 24 38.3 24 1011.2 24 1010.2 24 7.3 24 5.3 24 20.0 999.9 58.3* 41.4* 99.99 999.9 110010 724050 13743 19580304 40.8 24 26.8 24 1014.7 24 1013.7 24 9.8 24 14.3 24 20.0 999.9 46.4* 33.4* 0.00I 999.9 000000 724050 13743 19580305 41.8 24 27.2 24 1023.4 24 1022.4 24 8.9 24 6.7 24 18.1 999.9 50.4* 34.3* 0.00I 999.9 000000 724050 13743 19580306 44.0 24 31.5 24 1018.7 24 1017.7 24 7.4 24 2.3 24 15.9 999.9 57.4* 37.4* 99.99 999.9 010000 724050 13743 19580307 46.2 24 28.9 24 1016.9 24 1015.9 24 11.0 24 13.5 24 20.0 999.9 53.4* 38.3* 0.00I 999.9 000000 724050 13743 19580308 44.1 24 22.2 24 1013.6 24 1012.6 24 11.7 24 14.8 24 20.0 999.9 54.3* 34.3* 0.00I 999.9 000000 724050 13743 19580309 39.1 24 24.2 24 1012.5 24 1011.5 24 9.7 24 4.0 24 9.9 999.9 48.4* 32.4* 99.99 999.9 101000 724050 13743 19580310 38.6 24 30.8 24 1012.5 24 1011.5 24 7.8 24 6.2 24 12.0 999.9 51.3* 31.3* 99.99 999.9 101000 724050 13743 19580311 41.8 24 29.7 24 1016.2 24 1015.1 24 7.1 24 6.3 24 15.0 999.9 47.3* 35.4* 0.00I 999.9 000000 724050 13743 19580312 41.8 24 27.4 24 1017.7 24 1016.7 24 9.4 24 14.6 24 19.0 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19580313 37.1 24 27.3 24 1017.7 24 1016.7 24 6.7 24 2.2 24 13.0 999.9 46.4* 32.4* 99.99 999.9 111000 724050 13743 19580314 37.0 24 33.9 24 1005.5 24 1004.5 24 4.7 24 12.6 24 23.9 999.9 42.4* 34.3* 99.99 999.9 111000 724050 13743 19580315 39.4 24 24.8 24 1007.8 24 1006.8 24 10.0 24 18.2 24 28.0 999.9 44.4* 35.4* 0.00I 999.9 000000 724050 13743 19580316 38.2 24 23.6 24 1010.1 24 1009.1 24 11.8 24 14.1 24 22.9 999.9 43.3* 34.3* 99.99 999.9 001000 724050 13743 19580317 39.4 24 27.4 24 1015.5 24 1014.5 24 11.8 24 8.7 24 15.9 999.9 45.3* 35.4* 0.00I 999.9 000000 724050 13743 19580318 38.4 24 27.9 24 1020.2 24 1019.2 24 8.1 24 3.2 24 9.9 999.9 44.4* 32.4* 99.99 999.9 111000 724050 13743 19580319 37.5 24 35.7 24 1018.8 24 1017.8 24 4.1 24 7.9 24 14.0 999.9 39.4* 33.4* 99.99 999.9 111000 724050 13743 19580320 34.5 24 33.6 24 1006.1 24 1005.1 24 2.8 24 13.0 24 19.0 999.9 36.3* 33.4* 99.99 999.9 111000 724050 13743 19580321 35.6 24 31.9 24 1001.8 24 1000.8 24 5.5 24 12.2 24 20.0 999.9 39.4* 32.4* 99.99 999.9 111000 724050 13743 19580322 42.4 24 28.3 24 1007.0 24 1006.0 24 10.9 24 14.0 24 21.0 999.9 50.4* 36.3* 99.99 999.9 010000 724050 13743 19580323 44.9 24 25.1 24 1019.8 24 1018.8 24 11.9 24 9.0 24 21.0 999.9 54.3* 37.4* 0.00I 999.9 000000 724050 13743 19580324 41.7 24 29.0 24 1026.6 24 1025.6 24 10.3 24 2.3 24 8.9 999.9 48.4* 33.4* 0.00I 999.9 000000 724050 13743 19580325 41.9 24 39.0 24 1021.3 24 1020.3 24 5.8 24 4.2 24 8.9 999.9 45.3* 39.4* 99.99 999.9 110000 724050 13743 19580326 43.7 24 41.9 24 1012.5 24 1011.5 24 2.2 24 9.0 24 13.0 999.9 44.4* 42.4* 99.99 999.9 110000 724050 13743 19580327 41.0 24 36.4 24 1010.1 24 1009.1 24 4.0 24 11.6 24 18.1 999.9 44.4* 38.3* 99.99 999.9 110000 724050 13743 19580328 45.3 24 30.4 24 1015.1 24 1014.1 24 9.7 24 3.5 24 8.9 999.9 55.4* 37.4* 0.00I 999.9 000000 724050 13743 19580329 47.4 24 29.1 24 1018.7 24 1017.7 24 11.3 24 2.9 24 8.0 999.9 59.4* 39.4* 0.00I 999.9 000000 724050 13743 19580330 46.8 24 34.3 24 1020.4 24 1019.4 24 10.7 24 5.0 24 8.9 999.9 52.3* 41.4* 99.99 999.9 010000 724050 13743 19580331 43.0 24 39.4 24 1014.0 24 1013.0 24 5.0 24 7.8 24 16.9 999.9 46.4* 40.3* 99.99 999.9 110000 724050 13743 19580401 47.3 24 36.3 24 1014.0 24 1013.0 24 9.8 24 14.5 24 25.1 999.9 56.3* 42.4* 99.99 999.9 110000 724050 13743 19580402 49.5 24 26.9 24 1016.4 24 1015.4 24 11.9 24 12.1 24 16.9 999.9 60.3* 40.3* 0.00I 999.9 000000 724050 13743 19580403 49.1 24 29.2 24 1016.4 24 1015.4 24 10.9 24 4.3 24 8.0 999.9 60.3* 37.4* 0.00I 999.9 000000 724050 13743 19580404 50.3 24 34.9 24 1016.9 24 1015.9 24 10.8 24 2.6 24 9.9 999.9 62.4* 40.3* 0.00I 999.9 000000 724050 13743 19580405 49.3 24 34.1 24 1018.8 24 1017.8 24 10.9 24 5.0 24 11.1 999.9 56.3* 43.3* 0.00I 999.9 000000 724050 13743 19580406 52.4 24 40.6 24 1006.4 24 1005.4 24 8.2 24 4.8 24 12.0 999.9 60.3* 47.3* 99.99 999.9 110000 724050 13743 19580407 56.3 24 47.3 24 994.4 24 993.4 24 8.8 24 12.1 24 29.9 999.9 63.3* 51.3* 99.99 999.9 110000 724050 13743 19580408 47.6 24 26.7 24 1009.4 24 1008.4 24 11.6 24 18.0 24 28.9 999.9 59.4* 38.3* 0.00I 999.9 000000 724050 13743 19580409 47.9 24 23.5 24 1020.1 24 1019.1 24 11.9 24 7.8 24 23.9 999.9 55.4* 37.4* 0.00I 999.9 000000 724050 13743 19580410 47.4 24 30.8 24 1021.9 24 1020.9 24 9.9 24 4.5 24 12.0 999.9 54.3* 41.4* 99.99 999.9 010000 724050 13743 19580411 43.9 24 40.0 24 1011.4 24 1010.4 24 4.1 24 7.6 24 11.1 999.9 48.4* 41.4* 99.99 999.9 110000 724050 13743 19580412 44.8 24 37.6 24 1012.7 24 1011.7 24 8.3 24 8.2 24 16.9 999.9 50.4* 40.3* 99.99 999.9 110000 724050 13743 19580413 51.5 24 36.5 24 1019.1 24 1018.1 24 10.5 24 11.7 24 18.1 999.9 64.4* 44.4* 0.00I 999.9 000000 724050 13743 19580414 59.4 24 34.7 24 1020.8 24 1019.8 24 11.9 24 5.4 24 13.0 999.9 72.3* 48.4* 0.00I 999.9 000000 724050 13743 19580415 62.2 24 39.2 24 1018.0 24 1017.0 24 9.8 24 3.3 24 15.0 999.9 75.4* 46.4* 0.00I 999.9 000000 724050 13743 19580416 61.1 24 45.7 24 1018.4 24 1017.4 24 9.4 24 5.1 24 9.9 999.9 69.3* 53.4* 0.00I 999.9 000000 724050 13743 19580417 61.1 24 48.2 24 1019.7 24 1018.7 24 9.4 24 5.3 24 8.9 999.9 73.4* 50.4* 0.00I 999.9 000000 724050 13743 19580418 63.9 24 44.2 24 1016.1 24 1015.0 24 7.2 24 0.4 24 5.1 999.9 80.2* 51.3* 0.00I 999.9 000000 724050 13743 19580419 72.6 24 46.6 24 1011.7 24 1010.7 24 9.1 24 2.8 24 12.0 999.9 88.3* 60.3* 0.00I 999.9 000000 724050 13743 19580420 69.0 24 51.8 24 1012.7 24 1011.7 24 8.0 24 4.5 24 19.0 999.9 85.3* 57.4* 99.99 999.9 010010 724050 13743 19580421 72.2 24 54.2 24 1009.7 24 1008.7 24 10.9 24 9.7 24 14.0 999.9 81.3* 65.3* 0.00I 999.9 000000 724050 13743 19580422 65.4 24 57.2 24 1005.4 24 1004.4 24 10.0 24 5.9 24 12.0 999.9 73.4* 59.4* 99.99 999.9 010010 724050 13743 19580423 64.2 24 52.2 24 1003.6 24 1002.6 24 9.6 24 13.2 24 23.9 999.9 71.2* 57.4* 99.99 999.9 110010 724050 13743 19580424 62.4 24 48.1 24 1011.4 24 1010.4 24 9.3 24 2.5 24 8.0 999.9 73.4* 56.3* 99.99 999.9 010010 724050 13743 19580425 65.5 24 46.3 24 1015.9 24 1014.9 24 10.9 24 11.5 24 23.9 999.9 72.3* 57.4* 0.00I 999.9 000000 724050 13743 19580426 60.1 24 30.0 24 1025.9 24 1024.9 24 11.9 24 5.3 24 12.0 999.9 68.4* 50.4* 0.00I 999.9 000000 724050 13743 19580427 53.9 24 41.9 24 1028.6 24 1027.6 24 8.4 24 3.4 24 8.9 999.9 63.3* 48.4* 99.99 999.9 110000 724050 13743 19580428 57.2 24 51.9 24 1020.4 24 1019.4 24 6.6 24 5.1 24 8.9 999.9 70.3* 47.3* 99.99 999.9 110000 724050 13743 19580429 69.3 24 60.7 24 1014.1 24 1013.1 24 9.4 24 9.8 24 20.0 999.9 77.4* 64.4* 99.99 999.9 010000 724050 13743 19580430 59.3 24 41.1 24 1021.7 24 1020.7 24 9.7 24 8.5 24 20.0 999.9 70.3* 49.3* 99.99 999.9 110000 724050 13743 19580501 54.7 24 41.3 24 1023.4 24 1022.4 24 10.4 24 5.6 24 8.0 999.9 60.3* 50.4* 99.99 999.9 010000 724050 13743 19580502 62.2 24 55.2 24 1025.2 24 1024.2 24 4.5 24 3.4 24 8.0 999.9 73.4* 56.3* 0.00I 999.9 100000 724050 13743 19580503 63.4 24 58.7 24 1023.0 24 1022.0 24 4.6 24 5.5 24 8.9 999.9 70.3* 59.4* 99.99 999.9 110000 724050 13743 19580504 73.4 24 65.8 24 1014.1 24 1013.0 24 7.1 24 4.2 24 8.9 999.9 86.4* 66.4* 99.99 999.9 010010 724050 13743 19580505 60.3 24 56.7 24 1015.1 24 1014.1 24 3.7 24 6.4 24 9.9 999.9 75.4* 51.3* 99.99 999.9 110000 724050 13743 19580506 50.2 24 48.0 24 1012.8 24 1011.8 24 4.6 24 7.0 24 11.1 999.9 52.3* 48.4* 99.99 999.9 110000 724050 13743 19580507 48.6 24 46.1 24 1003.7 24 1002.7 24 3.5 24 9.3 24 13.0 999.9 50.4* 46.4* 99.99 999.9 110000 724050 13743 19580508 55.0 24 42.9 24 1002.4 24 1001.4 24 9.5 24 10.0 24 16.9 999.9 69.3* 47.3* 99.99 999.9 110000 724050 13743 19580509 62.4 24 41.9 24 1008.4 24 1007.4 24 11.9 24 5.8 24 19.0 999.9 73.4* 52.3* 0.00I 999.9 000000 724050 13743 19580510 61.2 24 44.4 24 1017.2 24 1016.2 24 11.6 24 5.7 24 13.0 999.9 70.3* 53.4* 0.00I 999.9 000000 724050 13743 19580511 65.4 24 54.3 24 1016.8 24 1015.8 24 9.1 24 4.5 24 12.0 999.9 79.3* 56.3* 99.99 999.9 010000 724050 13743 19580512 72.2 24 57.3 24 1014.6 24 1013.6 24 9.3 24 5.1 24 11.1 999.9 80.2* 64.4* 0.00I 999.9 000000 724050 13743 19580513 65.5 24 39.1 24 1020.5 24 1019.5 24 11.9 24 7.7 24 19.0 999.9 74.3* 55.4* 0.00I 999.9 000000 724050 13743 19580514 64.7 24 36.6 24 1023.0 24 1022.0 24 11.9 24 4.0 24 9.9 999.9 79.3* 49.3* 0.00I 999.9 000000 724050 13743 19580515 67.6 24 48.6 24 1018.0 24 1017.0 24 10.0 24 3.6 24 9.9 999.9 73.4* 60.3* 99.99 999.9 010000 724050 13743 19580516 65.3 24 52.2 24 1017.8 24 1016.7 24 8.5 24 4.4 24 11.1 999.9 79.3* 58.3* 99.99 999.9 010000 724050 13743 19580517 67.0 24 53.5 24 1019.7 24 1018.7 24 7.7 24 4.3 24 9.9 999.9 78.3* 55.4* 0.00I 999.9 000000 724050 13743 19580518 72.4 24 58.8 24 1017.5 24 1016.4 24 9.5 24 6.4 24 9.9 999.9 85.3* 63.3* 99.99 999.9 010000 724050 13743 19580519 74.0 24 64.2 24 1016.5 24 1015.5 24 8.9 24 5.9 24 12.0 999.9 83.3* 68.4* 99.99 999.9 010010 724050 13743 19580520 67.4 24 61.7 24 1017.3 24 1016.2 24 7.0 24 2.4 24 8.0 999.9 74.3* 63.3* 99.99 999.9 110000 724050 13743 19580521 68.5 24 44.5 24 1014.2 24 1013.2 24 10.3 24 5.9 24 11.1 999.9 77.4* 61.3* 0.00I 999.9 000000 724050 13743 19580522 68.8 24 46.3 24 1014.7 24 1013.7 24 9.8 24 4.1 24 14.0 999.9 83.3* 52.3* 0.00I 999.9 000000 724050 13743 19580523 72.3 24 55.8 24 1012.9 24 1011.9 24 10.0 24 5.0 24 9.9 999.9 80.2* 66.4* 99.99 999.9 010000 724050 13743 19580524 64.6 24 48.9 24 1020.0 24 1019.0 24 9.4 24 3.1 24 7.0 999.9 75.4* 55.4* 0.00I 999.9 000000 724050 13743 19580525 69.5 24 62.3 21 1014.5 24 1013.5 24 6.7 24 6.3 24 8.9 999.9 78.3* 64.4* 99.99 999.9 110000 724050 13743 19580526 69.4 24 53.2 24 1013.5 24 1012.5 24 10.0 24 6.1 24 12.0 999.9 74.3* 64.4* 99.99 999.9 110000 724050 13743 19580527 65.9 24 42.8 24 1015.6 24 1014.6 24 9.8 24 1.6 24 8.0 999.9 80.2* 52.3* 0.00I 999.9 000000 724050 13743 19580528 67.4 24 54.8 24 1011.1 24 1010.1 24 7.1 24 3.5 24 20.0 999.9 77.4* 58.3* 99.99 999.9 110010 724050 13743 19580529 64.5 24 49.0 24 1012.5 24 1011.7 24 11.2 24 8.8 24 19.0 999.9 76.3* 55.4* 0.00I 999.9 000000 724050 13743 19580530 68.5 24 47.9 24 1017.0 24 1016.0 24 11.8 24 4.4 24 9.9 999.9 81.3* 55.4* 0.00I 999.9 000000 724050 13743 19580531 74.6 24 56.8 24 1016.0 24 1015.0 24 10.9 24 6.2 24 12.0 999.9 87.3* 64.4* 0.00I 999.9 000000 724050 13743 19580601 77.7 24 60.7 24 1014.1 24 1013.1 24 11.5 24 9.3 24 13.0 999.9 87.3* 68.4* 0.00I 999.9 000000 724050 13743 19580602 74.6 24 64.5 24 1012.1 24 1011.1 24 8.2 24 8.0 24 18.1 999.9 82.4* 69.3* 99.99 999.9 110010 724050 13743 19580603 64.9 24 53.2 24 1021.9 24 1020.9 24 9.1 24 6.9 24 14.0 999.9 75.4* 60.3* 0.00I 999.9 000000 724050 13743 19580604 67.4 24 51.7 24 1027.5 24 1026.5 24 9.2 24 2.6 24 7.0 999.9 76.3* 58.3* 0.00I 999.9 000000 724050 13743 19580605 67.4 24 52.7 24 1022.6 24 1021.6 24 11.8 24 3.4 24 7.0 999.9 78.3* 57.4* 0.00I 999.9 000000 724050 13743 19580606 72.8 24 57.2 24 1014.5 24 1013.5 24 10.0 24 7.7 24 12.0 999.9 76.3* 67.3* 99.99 999.9 010000 724050 13743 19580607 66.0 24 43.3 24 1020.3 24 1019.2 24 11.8 24 3.9 24 8.0 999.9 75.4* 55.4* 0.00I 999.9 000000 724050 13743 19580608 69.5 24 51.1 24 1017.2 24 1016.1 24 11.4 24 8.7 24 18.1 999.9 82.4* 60.3* 0.00I 999.9 000000 724050 13743 19580609 80.7 24 67.3 24 1011.7 24 1010.7 24 9.5 24 6.7 24 9.9 999.9 90.3* 73.4* 99.99 999.9 010000 724050 13743 19580610 78.5 24 70.0 24 1011.6 24 1010.6 24 8.5 24 3.1 24 12.0 999.9 92.3* 72.3* 99.99 999.9 010010 724050 13743 19580611 80.6 24 70.6 24 1009.4 24 1008.4 24 9.2 24 4.4 24 16.9 999.9 93.4* 73.4* 99.99 999.9 010010 724050 13743 19580612 78.0 24 66.8 24 1013.3 24 1012.3 24 7.4 24 1.0 24 6.0 999.9 88.3* 71.2* 99.99 999.9 010000 724050 13743 19580613 80.3 24 68.9 24 1012.5 24 1011.5 24 8.1 24 4.6 24 8.9 999.9 88.3* 72.3* 0.00I 999.9 000000 724050 13743 19580614 78.6 24 60.4 24 1008.0 24 1007.0 24 10.6 24 10.4 24 28.0 999.9 86.4* 74.3* 99.99 999.9 010010 724050 13743 19580615 68.2 24 44.6 24 1008.9 24 1007.9 24 11.1 24 3.7 24 9.9 999.9 78.3* 63.3* 99.99 999.9 010000 724050 13743 19580616 67.3 24 46.1 24 1005.2 24 1004.2 24 11.9 24 10.0 24 20.0 999.9 77.4* 58.3* 0.00I 999.9 000000 724050 13743 19580617 70.6 24 41.2 24 1008.7 24 1007.6 24 11.9 24 10.3 24 15.9 999.9 79.3* 61.3* 0.00I 999.9 000000 724050 13743 19580618 69.3 24 53.0 24 1010.9 24 1009.9 24 9.2 24 2.8 24 8.0 999.9 78.3* 58.3* 99.99 999.9 010010 724050 13743 19580619 67.2 24 52.7 24 1015.8 24 1014.8 24 9.0 24 5.3 24 9.9 999.9 80.2* 56.3* 0.00I 999.9 100000 724050 13743 19580620 65.3 24 60.3 24 1014.1 24 1013.1 24 3.9 24 5.5 24 9.9 999.9 74.3* 62.4* 99.99 999.9 110000 724050 13743 19580621 65.1 24 60.1 24 1012.2 24 1011.2 24 4.6 24 2.9 24 9.9 999.9 74.3* 60.3* 99.99 999.9 110000 724050 13743 19580622 65.0 24 52.5 24 1010.1 24 1009.1 24 9.4 24 6.4 24 13.0 999.9 75.4* 58.3* 99.99 999.9 010000 724050 13743 19580623 65.4 24 54.0 24 1007.9 24 1006.9 24 9.9 24 2.5 24 7.0 999.9 72.3* 60.3* 99.99 999.9 010000 724050 13743 19580624 67.2 24 59.5 24 1010.9 24 1009.9 24 7.1 24 3.3 24 6.0 999.9 75.4* 59.4* 0.00I 999.9 000000 724050 13743 19580625 73.3 24 63.6 24 1016.5 24 1015.4 24 8.3 24 5.6 24 9.9 999.9 87.3* 64.4* 0.00I 999.9 000000 724050 13743 19580626 79.4 24 69.6 24 1013.5 24 1012.5 24 9.4 24 9.6 24 20.0 999.9 89.2* 72.3* 99.99 999.9 010010 724050 13743 19580627 71.6 24 56.2 24 1015.2 24 1014.2 24 10.9 24 6.9 24 9.9 999.9 81.3* 62.4* 99.99 999.9 010000 724050 13743 19580628 73.3 23 53.6 23 1017.5 23 1016.5 23 11.1 23 2.7 23 8.9 999.9 83.3* 61.3* 0.00I 999.9 000000 724050 13743 19580629 75.4 24 52.7 24 1020.4 24 1019.3 24 10.9 24 1.4 24 4.1 999.9 86.4* 63.3* 0.00I 999.9 000000 724050 13743 19580630 77.4 24 59.2 24 1020.6 24 1019.6 24 9.2 24 2.5 24 8.9 999.9 88.3* 68.4* 0.00I 999.9 000000 724050 13743 19580701 81.1 24 65.3 24 1019.6 12 1018.6 12 8.2 24 3.7 24 8.0 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19580702 83.6 24 67.9 24 1018.5 8 1017.5 8 8.0 24 4.3 24 11.1 999.9 93.4* 74.3* 0.00I 999.9 000000 724050 13743 19580703 85.3 24 68.0 24 1015.5 8 1014.5 8 7.9 24 4.9 24 13.0 999.9 94.3* 74.3* 0.00I 999.9 000000 724050 13743 19580704 84.0 24 69.7 24 1015.7 8 1014.7 8 8.5 24 1.5 24 8.0 999.9 93.4* 73.4* 0.00I 999.9 000000 724050 13743 19580705 83.9 24 70.9 24 1015.1 8 1014.1 8 10.6 24 5.1 24 9.9 999.9 94.3* 77.4* 99.99 999.9 010010 724050 13743 19580706 82.8 24 70.8 24 1015.8 8 1014.8 8 11.1 24 6.4 24 12.0 999.9 92.3* 74.3* 99.99 999.9 010010 724050 13743 19580707 77.7 24 72.0 24 1017.7 8 1016.7 8 9.2 24 4.0 24 18.1 999.9 90.3* 73.4* 99.99 999.9 010010 724050 13743 19580708 81.0 24 73.2 24 1016.2 8 1015.2 8 9.6 24 6.7 24 13.0 999.9 90.3* 74.3* 0.00I 999.9 000000 724050 13743 19580709 72.5 24 69.3 24 1021.3 8 1020.2 8 5.0 24 1.5 24 9.9 999.9 79.3* 68.4* 99.99 999.9 110010 724050 13743 19580710 74.9 24 67.3 24 1022.6 8 1021.6 8 6.5 24 2.5 24 8.9 999.9 87.3* 66.4* 0.00I 999.9 000000 724050 13743 19580711 80.2 24 72.9 24 1016.1 8 1015.1 8 9.4 24 6.7 24 18.1 999.9 91.2* 72.3* 99.99 999.9 010010 724050 13743 19580712 77.2 24 71.5 24 1012.8 8 1011.8 8 8.8 24 7.5 24 12.0 999.9 88.3* 72.3* 99.99 999.9 010010 724050 13743 19580713 76.6 24 68.7 24 1016.2 8 1015.2 8 7.3 24 1.7 24 5.1 999.9 87.3* 70.3* 99.99 999.9 110000 724050 13743 19580714 76.5 24 69.9 24 1020.0 8 1019.1 8 8.9 24 5.3 24 8.0 999.9 85.3* 70.3* 99.99 999.9 010010 724050 13743 19580715 82.4 24 72.6 24 1018.4 8 1017.3 8 10.4 24 6.5 24 11.1 999.9 92.3* 77.4* 0.00I 999.9 000000 724050 13743 19580716 84.1 24 72.0 24 1013.8 8 1012.6 8 11.3 24 8.2 24 15.9 999.9 90.3* 77.4* 0.00I 999.9 000000 724050 13743 19580717 79.0 24 62.3 24 1017.1 8 1016.1 8 9.9 24 3.9 24 9.9 999.9 86.4* 72.3* 99.99 999.9 010000 724050 13743 19580718 71.3 24 59.9 24 1018.4 8 1017.3 8 7.7 24 0.9 24 5.1 999.9 78.3* 66.4* 99.99 999.9 110000 724050 13743 19580719 76.7 24 65.2 24 1009.4 8 1008.3 8 6.7 24 6.9 24 19.0 999.9 87.3* 69.3* 0.00I 999.9 100000 724050 13743 19580720 75.3 24 57.9 24 1011.8 8 1010.8 8 11.9 24 4.8 24 12.0 999.9 82.4* 70.3* 99.99 999.9 010000 724050 13743 19580721 71.4 24 61.7 24 1016.9 8 1015.9 8 9.9 24 0.8 24 5.1 999.9 76.3* 66.4* 99.99 999.9 010000 724050 13743 19580722 76.0 24 69.3 24 1016.1 8 1015.1 8 5.5 24 0.9 24 7.0 999.9 86.4* 71.2* 99.99 999.9 110010 724050 13743 19580723 77.9 24 73.1 24 1013.4 8 1012.4 8 7.0 24 3.5 24 20.0 999.9 87.3* 73.4* 99.99 999.9 010010 724050 13743 19580724 78.4 24 72.4 24 1012.6 8 1011.6 8 7.7 24 1.3 24 6.0 999.9 85.3* 73.4* 99.99 999.9 010000 724050 13743 19580725 79.2 24 70.5 24 1009.0 8 1008.0 8 6.6 24 1.7 24 8.0 999.9 87.3* 73.4* 99.99 999.9 110000 724050 13743 19580726 82.0 24 71.2 24 1011.9 8 1010.8 8 5.5 24 0.9 24 4.1 999.9 90.3* 73.4* 0.00I 999.9 000000 724050 13743 19580727 81.5 24 71.3 24 1015.9 8 1014.9 8 7.5 24 3.7 24 12.0 999.9 88.3* 74.3* 99.99 999.9 010000 724050 13743 19580728 80.9 24 71.4 24 1015.7 8 1014.7 8 6.5 24 1.0 24 5.1 999.9 90.3* 74.3* 99.99 999.9 110000 724050 13743 19580729 81.9 24 67.8 24 1012.0 8 1011.0 8 10.9 24 4.8 24 14.0 999.9 88.3* 73.4* 99.99 999.9 010010 724050 13743 19580730 80.8 24 62.5 24 1013.8 8 1012.8 8 11.4 24 2.5 24 8.9 999.9 92.3* 69.3* 0.00I 999.9 000000 724050 13743 19580731 84.8 24 71.0 24 1013.9 8 1012.8 8 9.5 24 3.9 24 8.9 999.9 95.4* 74.3* 0.00I 999.9 000000 724050 13743 19580801 75.5 24 70.1 24 1014.2 8 1013.1 8 5.9 24 4.2 24 9.9 999.9 80.2* 71.2* 99.99 999.9 110000 724050 13743 19580802 76.6 24 65.4 24 1016.1 8 1015.1 8 8.0 24 2.1 24 8.9 999.9 84.4* 71.2* 0.00I 999.9 000000 724050 13743 19580803 73.0 24 63.3 24 1011.4 8 1010.4 8 9.6 24 0.7 24 5.1 999.9 78.3* 69.3* 99.99 999.9 010000 724050 13743 19580804 71.0 24 61.8 24 1009.9 8 1008.9 8 7.0 24 5.2 24 9.9 999.9 83.3* 64.4* 99.99 999.9 110000 724050 13743 19580805 79.0 24 64.0 24 1015.2 8 1014.1 8 8.5 24 2.4 24 7.0 999.9 87.3* 70.3* 0.00I 999.9 000000 724050 13743 19580806 79.2 24 67.2 24 1018.0 8 1016.9 8 5.6 24 1.5 24 6.0 999.9 88.3* 70.3* 99.99 999.9 110000 724050 13743 19580807 81.1 24 67.9 24 1015.4 8 1014.4 8 5.1 24 4.8 24 8.0 999.9 91.2* 73.4* 0.00I 999.9 000000 724050 13743 19580808 81.1 24 68.7 24 1011.6 8 1010.6 8 8.2 24 4.6 24 12.0 999.9 89.2* 75.4* 99.99 999.9 010000 724050 13743 19580809 77.2 24 62.5 24 1014.8 8 1013.8 8 10.6 24 5.9 24 13.0 999.9 84.4* 71.2* 99.99 999.9 010010 724050 13743 19580810 79.1 24 61.6 24 1014.3 8 1013.2 8 11.3 24 3.4 24 9.9 999.9 90.3* 68.4* 0.00I 999.9 000000 724050 13743 19580811 81.0 24 66.3 24 1012.3 8 1011.3 8 9.0 24 2.2 24 8.0 999.9 87.3* 74.3* 99.99 999.9 010000 724050 13743 19580812 79.7 24 70.7 24 1014.1 8 1013.1 8 7.7 24 1.5 24 8.9 999.9 88.3* 72.3* 99.99 999.9 010000 724050 13743 19580813 76.8 24 72.1 24 1014.5 8 1013.5 8 6.6 24 5.2 24 11.1 999.9 84.4* 72.3* 99.99 999.9 010010 724050 13743 19580814 77.5 24 72.2 24 1015.3 8 1014.3 8 8.8 24 6.8 24 13.0 999.9 84.4* 73.4* 99.99 999.9 010010 724050 13743 19580815 80.2 24 71.5 24 1014.5 8 1013.5 8 9.3 24 5.1 24 8.9 999.9 92.3* 73.4* 0.00I 999.9 100000 724050 13743 19580816 76.9 24 67.4 24 1012.4 8 1011.4 8 6.8 24 3.2 24 9.9 999.9 86.4* 70.3* 99.99 999.9 110010 724050 13743 19580817 75.7 24 64.4 24 1007.7 8 1006.6 8 8.0 24 3.7 24 11.1 999.9 83.3* 67.3* 99.99 999.9 110000 724050 13743 19580818 74.5 24 56.8 24 1007.4 8 1006.4 8 10.9 24 5.0 24 15.0 999.9 82.4* 66.4* 0.00I 999.9 000000 724050 13743 19580819 70.9 24 53.4 24 1015.5 8 1014.5 8 11.9 24 3.2 24 7.0 999.9 81.3* 60.3* 0.00I 999.9 000000 724050 13743 19580820 73.1 24 60.2 24 1018.8 8 1017.7 8 10.2 24 1.8 24 8.9 999.9 84.4* 63.3* 0.00I 999.9 000000 724050 13743 19580821 78.6 24 68.7 24 1015.8 8 1014.7 8 9.4 24 5.8 24 12.0 999.9 91.2* 70.3* 0.00I 999.9 100000 724050 13743 19580822 80.2 24 69.3 24 1011.5 8 1010.5 8 7.7 24 4.4 24 9.9 999.9 84.4* 75.4* 0.00I 999.9 000000 724050 13743 19580823 73.9 24 61.5 24 1017.6 8 1016.7 8 9.7 24 2.5 24 5.1 999.9 80.2* 65.3* 0.00I 999.9 000000 724050 13743 19580824 73.9 24 68.4 24 1015.8 8 1014.7 8 6.9 24 3.7 24 8.0 999.9 85.3* 65.3* 99.99 999.9 110010 724050 13743 19580825 74.2 24 70.6 24 1009.5 8 1008.5 8 6.7 24 4.8 24 16.9 999.9 82.4* 69.3* 99.99 999.9 110010 724050 13743 19580826 70.7 24 64.1 24 1013.5 8 1012.5 8 5.6 24 1.7 24 8.0 999.9 75.4* 67.3* 0.00I 999.9 100000 724050 13743 19580827 69.1 24 58.9 24 1016.4 8 1015.4 8 8.6 24 3.1 24 8.9 999.9 78.3* 59.4* 0.00I 999.9 000000 724050 13743 19580828 69.2 24 61.0 24 1015.2 8 1014.2 8 6.7 24 4.5 24 9.9 999.9 74.3* 64.4* 0.00I 999.9 000000 724050 13743 19580829 74.5 24 62.3 24 1012.3 8 1011.3 8 8.5 24 6.4 24 9.9 999.9 85.3* 66.4* 0.00I 999.9 000000 724050 13743 19580830 75.4 24 63.2 24 1016.6 8 1015.6 8 8.0 24 1.9 24 6.0 999.9 88.3* 65.3* 0.00I 999.9 000000 724050 13743 19580831 78.5 24 67.9 24 1015.5 8 1014.5 8 8.1 24 4.5 24 8.0 999.9 89.2* 68.4* 0.00I 999.9 000000 724050 13743 19580901 76.9 24 64.7 24 1011.9 8 1010.9 8 10.3 24 4.5 24 13.0 999.9 84.4* 68.4* 0.00I 999.9 000000 724050 13743 19580902 66.7 24 51.5 24 1019.5 8 1018.5 8 11.9 24 8.5 24 14.0 999.9 75.4* 57.4* 0.00I 999.9 000000 724050 13743 19580903 66.5 24 55.8 24 1025.3 8 1024.3 8 10.1 24 2.3 24 6.0 999.9 78.3* 56.3* 0.00I 999.9 000000 724050 13743 19580904 69.9 24 59.8 24 1026.1 8 1025.1 8 8.5 24 3.5 24 8.0 999.9 81.3* 60.3* 0.00I 999.9 000000 724050 13743 19580905 75.9 24 64.9 24 1022.2 8 1021.2 8 8.2 24 1.9 24 6.0 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19580906 78.7 24 67.0 24 1018.8 8 1017.8 8 9.1 24 2.8 24 8.0 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19580907 76.3 24 66.0 24 1012.6 8 1011.6 8 10.5 24 6.7 24 18.1 999.9 83.3* 68.4* 99.99 999.9 010000 724050 13743 19580908 71.9 24 54.8 24 1012.6 8 1011.6 8 10.9 24 11.7 24 22.0 999.9 76.3* 65.3* 0.00I 999.9 000000 724050 13743 19580909 66.2 24 48.4 24 1018.6 8 1017.6 8 11.9 24 4.7 24 8.9 999.9 76.3* 58.3* 0.00I 999.9 000000 724050 13743 19580910 68.3 24 55.3 24 1012.3 8 1011.3 8 10.9 24 8.3 24 15.0 999.9 75.4* 63.3* 0.00I 999.9 000000 724050 13743 19580911 63.4 24 47.5 24 1017.2 8 1016.2 8 11.0 24 9.1 24 14.0 999.9 68.4* 56.3* 0.00I 999.9 000000 724050 13743 19580912 60.9 24 47.0 24 1020.9 8 1019.9 8 9.4 24 1.7 24 6.0 999.9 73.4* 50.4* 0.00I 999.9 000000 724050 13743 19580913 62.8 24 50.6 24 1020.3 8 1019.3 8 8.8 24 1.1 24 6.0 999.9 76.3* 50.4* 0.00I 999.9 000000 724050 13743 19580914 67.8 24 56.2 24 1021.6 8 1020.6 8 9.4 24 2.1 24 8.0 999.9 80.2* 58.3* 0.00I 999.9 000000 724050 13743 19580915 71.4 24 61.5 24 1022.0 8 1021.0 8 8.9 24 5.4 24 8.9 999.9 85.3* 59.4* 0.00I 999.9 100000 724050 13743 19580916 76.9 24 67.6 24 1018.2 8 1017.1 8 8.0 24 5.1 24 8.0 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19580917 81.7 24 71.3 24 1013.5 8 1012.5 8 8.4 24 3.4 24 8.9 999.9 92.3* 73.4* 0.00I 999.9 000000 724050 13743 19580918 75.2 24 63.2 24 1011.3 8 1010.3 8 9.9 24 9.9 24 18.1 999.9 85.3* 70.3* 99.99 999.9 010000 724050 13743 19580919 68.4 24 55.1 24 1017.6 8 1016.6 8 11.9 24 7.0 24 14.0 999.9 76.3* 61.3* 0.00I 999.9 000000 724050 13743 19580920 66.6 24 58.8 24 1020.2 8 1019.2 8 8.1 24 3.7 24 8.9 999.9 72.3* 61.3* 99.99 999.9 110000 724050 13743 19580921 64.8 24 62.1 24 1015.6 8 1014.6 8 4.8 24 7.1 24 12.0 999.9 69.3* 61.3* 99.99 999.9 110000 724050 13743 19580922 70.5 24 61.8 24 1014.3 8 1013.3 8 7.4 24 2.9 24 9.9 999.9 80.2* 64.4* 0.00I 999.9 100000 724050 13743 19580923 66.9 24 53.1 24 1022.7 8 1021.7 8 8.9 24 1.1 24 6.0 999.9 80.2* 56.3* 0.00I 999.9 000000 724050 13743 19580924 66.9 24 57.2 24 1023.9 8 1022.9 8 8.0 24 1.8 24 5.1 999.9 77.4* 58.3* 0.00I 999.9 000000 724050 13743 19580925 70.4 24 61.0 24 1019.7 8 1018.7 8 7.7 24 4.1 24 8.0 999.9 83.3* 61.3* 0.00I 999.9 000000 724050 13743 19580926 77.6 24 66.3 24 1015.2 8 1014.1 8 7.5 24 3.0 24 8.0 999.9 89.2* 68.4* 0.00I 999.9 000000 724050 13743 19580927 75.5 24 69.1 24 1010.0 8 1009.0 8 6.9 24 6.1 24 18.1 999.9 82.4* 63.3* 99.99 999.9 110010 724050 13743 19580928 62.6 24 50.1 24 1011.4 8 1010.4 8 10.9 24 13.1 24 18.1 999.9 68.4* 57.4* 99.99 999.9 010000 724050 13743 19580929 59.0 24 44.7 24 1019.2 8 1018.2 8 10.2 24 2.2 24 9.9 999.9 68.4* 48.4* 0.00I 999.9 000000 724050 13743 19580930 61.4 24 52.3 24 1020.8 8 1019.8 8 10.6 24 6.8 24 9.9 999.9 70.3* 55.4* 0.00I 999.9 000000 724050 13743 19581001 61.6 24 57.4 24 1017.2 8 1016.2 8 6.3 24 9.7 24 21.0 999.9 68.4* 53.4* 99.99 999.9 110000 724050 13743 19581002 55.5 24 41.3 24 1028.1 8 1027.0 8 9.2 24 5.0 24 8.9 999.9 61.3* 47.3* 0.00I 999.9 000000 724050 13743 19581003 56.7 24 48.0 24 1025.1 8 1024.1 8 6.9 24 2.1 24 6.0 999.9 58.3* 53.4* 99.99 999.9 110000 724050 13743 19581004 60.7 24 53.6 24 1018.6 8 1017.6 8 6.0 24 1.3 24 7.0 999.9 70.3* 56.3* 99.99 999.9 110000 724050 13743 19581005 61.5 24 52.5 24 1012.8 8 1011.8 8 6.1 24 6.0 24 19.0 999.9 75.4* 52.3* 0.00I 999.9 100000 724050 13743 19581006 52.1 24 32.1 24 1024.7 8 1023.7 8 10.6 24 5.9 24 18.1 999.9 65.3* 41.4* 0.00I 999.9 000000 724050 13743 19581007 54.3 24 43.5 24 1025.8 8 1024.8 8 9.1 24 2.4 24 7.0 999.9 67.3* 42.4* 0.00I 999.9 000000 724050 13743 19581008 59.8 24 52.4 24 1018.7 8 1017.7 8 5.7 24 0.6 24 4.1 999.9 74.3* 50.4* 0.00I 999.9 100000 724050 13743 19581009 65.7 24 57.4 24 1014.2 8 1013.2 8 4.8 24 1.2 24 8.0 999.9 80.2* 55.4* 0.00I 999.9 100000 724050 13743 19581010 71.4 24 61.6 24 1011.1 8 1010.1 8 6.8 24 2.7 24 8.0 999.9 85.3* 61.3* 0.00I 999.9 000000 724050 13743 19581011 62.6 24 31.8 24 1015.1 8 1014.1 8 10.6 24 15.0 24 27.0 999.9 77.4* 51.3* 0.00I 999.9 000000 724050 13743 19581012 56.9 24 36.1 24 1024.9 8 1023.9 8 11.9 24 8.7 24 15.9 999.9 64.4* 49.3* 0.00I 999.9 000000 724050 13743 19581013 56.1 24 40.3 24 1028.3 8 1027.3 8 10.1 24 1.8 24 8.9 999.9 69.3* 46.4* 0.00I 999.9 000000 724050 13743 19581014 57.0 24 45.9 24 1030.5 8 1029.5 8 7.7 24 3.3 24 12.0 999.9 64.4* 51.3* 99.99 999.9 010000 724050 13743 19581015 65.9 24 56.3 24 1024.5 8 1023.5 8 7.2 24 3.5 24 8.0 999.9 82.4* 58.3* 0.00I 999.9 000000 724050 13743 19581016 69.3 24 55.3 24 1019.0 8 1018.0 8 8.8 24 2.2 24 6.0 999.9 83.3* 57.4* 0.00I 999.9 000000 724050 13743 19581017 70.8 24 55.6 24 1014.5 8 1013.5 8 10.7 24 3.5 24 8.9 999.9 81.3* 60.3* 0.00I 999.9 000000 724050 13743 19581018 65.4 24 48.3 24 1016.6 8 1015.6 8 10.1 24 5.3 24 9.9 999.9 73.4* 55.4* 0.00I 999.9 000000 724050 13743 19581019 55.4 24 37.2 24 1020.8 8 1019.8 8 10.2 24 4.0 24 8.9 999.9 62.4* 46.4* 0.00I 999.9 000000 724050 13743 19581020 55.3 24 34.7 24 1017.4 8 1016.4 8 11.0 24 6.8 24 15.0 999.9 66.4* 46.4* 0.00I 999.9 000000 724050 13743 19581021 54.6 24 43.5 24 1023.7 8 1022.7 8 8.1 24 8.3 24 12.0 999.9 60.3* 49.3* 0.00I 999.9 000000 724050 13743 19581022 58.3 24 55.6 24 1020.1 8 1019.1 8 3.6 24 8.1 24 14.0 999.9 63.3* 54.3* 99.99 999.9 110000 724050 13743 19581023 64.9 24 62.9 24 1012.7 8 1011.7 8 3.1 24 2.5 24 7.0 999.9 70.3* 62.4* 99.99 999.9 110000 724050 13743 19581024 66.5 24 53.0 24 1011.1 8 1010.1 8 9.3 24 1.6 24 8.0 999.9 77.4* 60.3* 0.00I 999.9 000000 724050 13743 19581025 60.7 24 44.2 24 1009.3 8 1008.3 8 11.9 24 6.7 24 14.0 999.9 66.4* 52.3* 0.00I 999.9 000000 724050 13743 19581026 52.4 24 44.9 24 1010.0 8 1009.0 8 8.9 24 6.5 24 8.9 999.9 58.3* 49.3* 99.99 999.9 110000 724050 13743 19581027 50.8 24 38.7 24 1011.3 8 1010.3 8 10.7 24 6.7 24 18.1 999.9 59.4* 43.3* 99.99 999.9 010000 724050 13743 19581028 50.8 24 41.6 24 1009.9 8 1009.0 8 11.4 24 10.3 24 22.9 999.9 57.4* 46.4* 99.99 999.9 010000 724050 13743 19581029 53.5 24 38.4 24 1013.9 8 1012.9 8 11.7 24 12.2 24 20.0 999.9 62.4* 47.3* 99.99 999.9 010000 724050 13743 19581030 56.0 24 36.5 24 1019.3 8 1018.0 8 10.9 24 11.2 24 20.0 999.9 66.4* 47.3* 0.00I 999.9 000000 724050 13743 19581031 55.8 24 36.5 24 1019.6 8 1018.6 8 11.9 24 6.0 24 18.1 999.9 70.3* 44.4* 0.00I 999.9 000000 724050 13743 19581101 56.9 24 38.9 24 1013.8 8 1012.8 8 9.4 24 1.1 24 6.0 999.9 65.3* 46.4* 0.00I 999.9 000000 724050 13743 19581102 48.5 24 44.5 24 1012.3 8 1011.3 8 4.5 24 8.0 24 12.0 999.9 59.4* 44.4* 99.99 999.9 110000 724050 13743 19581103 47.9 24 39.7 24 1007.6 8 1006.6 8 9.0 24 11.9 24 19.0 999.9 60.3* 42.4* 99.99 999.9 110000 724050 13743 19581104 52.9 24 38.4 24 1017.0 8 1016.0 8 8.8 24 2.3 24 8.9 999.9 62.4* 43.3* 0.00I 999.9 000000 724050 13743 19581105 54.5 24 42.3 24 1014.4 8 1013.4 8 7.7 24 3.1 24 9.9 999.9 69.3* 42.4* 0.00I 999.9 000000 724050 13743 19581106 58.1 24 42.9 24 1010.2 8 1009.2 8 10.5 24 7.2 24 14.0 999.9 61.3* 52.3* 0.00I 999.9 000000 724050 13743 19581107 51.9 24 29.2 24 1015.3 8 1014.3 8 10.9 24 9.6 24 20.0 999.9 57.4* 47.3* 99.99 999.9 010000 724050 13743 19581108 45.4 24 31.4 24 1020.7 8 1019.7 8 8.6 24 3.3 24 12.0 999.9 58.3* 35.4* 0.00I 999.9 000000 724050 13743 19581109 53.6 24 37.1 24 1009.0 8 1008.0 8 10.9 24 5.2 24 11.1 999.9 59.4* 49.3* 99.99 999.9 010000 724050 13743 19581110 49.3 24 35.0 24 1004.6 8 1003.6 8 11.1 24 11.5 24 25.1 999.9 52.3* 43.3* 99.99 999.9 010000 724050 13743 19581111 49.4 24 34.4 24 1019.4 8 1018.4 8 11.9 24 7.8 24 16.9 999.9 59.4* 42.4* 0.00I 999.9 000000 724050 13743 19581112 54.3 24 36.3 24 1021.7 8 1020.7 8 9.5 24 3.7 24 9.9 999.9 66.4* 44.4* 0.00I 999.9 000000 724050 13743 19581113 55.9 24 40.4 24 1023.4 8 1022.4 8 5.7 24 0.2 24 4.1 999.9 69.3* 47.3* 0.00I 999.9 000000 724050 13743 19581114 57.8 24 43.3 24 1019.9 8 1018.9 8 6.1 24 2.1 24 8.0 999.9 75.4* 46.4* 0.00I 999.9 000000 724050 13743 19581115 64.0 24 53.3 24 1018.5 8 1017.5 8 8.2 24 4.1 24 7.0 999.9 70.3* 58.3* 99.99 999.9 110000 724050 13743 19581116 61.9 24 60.0 24 1019.9 8 1018.9 8 1.5 24 2.3 24 6.0 999.9 64.4* 58.3* 99.99 999.9 110000 724050 13743 19581117 55.5 24 53.8 24 1026.0 8 1025.0 8 2.2 24 2.2 24 8.9 999.9 58.3* 53.4* 99.99 999.9 110000 724050 13743 19581118 60.6 24 58.9 24 1019.1 8 1018.1 8 2.6 24 2.4 24 6.0 999.9 68.4* 57.4* 99.99 999.9 110000 724050 13743 19581119 61.7 24 51.6 24 1013.0 8 1012.0 8 8.5 24 10.9 24 22.9 999.9 66.4* 55.4* 0.00I 999.9 100000 724050 13743 19581120 51.4 24 30.2 24 1019.3 8 1018.2 8 11.9 24 3.7 24 12.0 999.9 62.4* 41.4* 0.00I 999.9 000000 724050 13743 19581121 51.8 24 29.6 24 1014.8 8 1013.8 8 11.9 24 8.6 24 19.0 999.9 57.4* 47.3* 0.00I 999.9 000000 724050 13743 19581122 47.5 24 24.9 24 1018.3 8 1017.3 8 11.8 24 5.3 24 19.0 999.9 56.3* 40.3* 0.00I 999.9 000000 724050 13743 19581123 44.4 24 30.6 24 1027.0 8 1025.9 8 8.9 24 3.8 24 9.9 999.9 56.3* 34.3* 0.00I 999.9 000000 724050 13743 19581124 57.0 24 44.5 24 1019.8 8 1018.7 8 9.7 24 7.4 24 15.9 999.9 73.4* 48.4* 0.00I 999.9 000000 724050 13743 19581125 45.8 24 28.5 24 1026.9 8 1025.9 8 11.9 24 7.5 24 20.0 999.9 65.3* 36.3* 0.00I 999.9 000000 724050 13743 19581126 47.9 24 39.6 24 1017.7 8 1016.6 8 8.3 24 1.6 24 8.0 999.9 55.4* 42.4* 99.99 999.9 010000 724050 13743 19581127 39.5 24 20.2 24 1019.5 8 1018.5 8 11.3 24 13.6 24 22.0 999.9 53.4* 33.4* 0.00I 999.9 000000 724050 13743 19581128 35.8 24 25.3 24 1023.1 8 1022.1 8 7.9 24 1.3 24 7.0 999.9 39.4* 32.4* 99.99 999.9 111000 724050 13743 19581129 37.4 24 24.5 24 1014.1 8 1013.1 8 10.0 24 15.1 24 26.0 999.9 44.4* 31.3* 99.99 999.9 110000 724050 13743 19581130 28.1 24 11.5 24 1030.3 8 1029.2 8 11.9 24 13.8 24 26.0 999.9 41.4* 19.4* 0.00I 999.9 000000 724050 13743 19581201 28.6 24 10.6 24 1031.1 8 1030.1 8 11.4 24 6.6 24 15.9 999.9 40.3* 22.5* 0.00I 999.9 000000 724050 13743 19581202 36.5 24 24.3 24 1023.1 8 1022.1 8 9.0 24 3.1 24 15.0 999.9 44.4* 28.4* 0.00I 999.9 000000 724050 13743 19581203 38.4 24 33.3 24 1019.5 8 1018.5 8 4.4 24 1.3 24 6.0 999.9 44.4* 34.3* 99.99 999.9 111000 724050 13743 19581204 42.6 24 41.5 24 1004.5 8 1003.5 8 2.1 24 1.4 24 8.0 999.9 44.4* 39.4* 99.99 999.9 110000 724050 13743 19581205 45.6 24 40.5 24 1004.5 8 1003.5 8 4.5 24 5.5 24 35.9 999.9 58.3* 39.4* 99.99 999.9 110000 724050 13743 19581206 35.7 24 19.6 24 1016.1 8 1015.1 8 11.9 24 14.8 24 30.9 999.9 43.3* 29.3* 0.00I 999.9 000000 724050 13743 19581207 24.7 24 8.0 24 1027.9 8 1026.9 8 11.9 24 12.0 24 18.1 999.9 29.3* 20.3* 0.00I 999.9 000000 724050 13743 19581208 30.1 24 12.2 24 1023.5 8 1022.5 8 11.2 24 1.9 24 7.0 999.9 35.4* 25.3* 0.00I 999.9 000000 724050 13743 19581209 33.6 24 21.0 24 1019.1 8 1018.1 8 9.4 24 8.7 24 19.0 999.9 37.4* 30.4* 0.00I 999.9 000000 724050 13743 19581210 24.1 24 5.9 24 1030.6 8 1029.6 8 11.9 24 13.7 24 22.0 999.9 32.4* 18.3* 0.00I 999.9 000000 724050 13743 19581211 20.7 24 6.0 24 1028.6 8 1027.5 8 8.4 24 5.7 24 8.9 999.9 23.4* 17.4* 99.99 999.9 001000 724050 13743 19581212 24.8 24 11.2 24 1017.7 8 1016.7 8 8.9 24 6.8 24 13.0 999.9 34.3* 18.3* 99.99 999.9 001000 724050 13743 19581213 28.2 24 12.7 24 1025.0 8 1024.0 8 8.7 24 6.2 24 16.9 999.9 33.4* 24.4* 0.00I 999.9 000000 724050 13743 19581214 24.8 24 13.7 24 1033.2 8 1032.2 8 6.5 24 0.0 24 999.9 999.9 29.3* 20.3* 99.99 999.9 101000 724050 13743 19581215 25.9 24 16.7 24 1027.5 8 1026.5 8 7.0 24 5.9 24 26.0 999.9 27.3* 23.4* 0.00I 999.9 100000 724050 13743 19581216 24.1 24 5.6 24 1026.4 8 1025.4 8 11.2 24 5.0 24 16.9 999.9 33.4* 17.4* 0.00I 999.9 000000 724050 13743 19581217 32.9 24 17.2 24 1021.4 8 1020.4 8 9.1 24 4.9 24 9.9 999.9 46.4* 25.3* 0.00I 999.9 000000 724050 13743 19581218 36.5 24 21.8 24 1020.3 8 1019.3 8 9.2 24 5.7 24 23.9 999.9 46.4* 28.4* 0.00I 999.9 000000 724050 13743 19581219 36.8 24 24.6 24 1016.8 8 1015.8 8 6.1 24 3.3 24 9.9 999.9 50.4* 28.4* 0.00I 999.9 000000 724050 13743 19581220 40.3 24 25.7 24 1012.8 8 1011.8 8 10.8 24 8.6 24 15.0 999.9 49.3* 29.3* 0.00I 999.9 000000 724050 13743 19581221 27.4 24 15.0 24 1026.3 8 1025.3 8 11.7 24 5.1 24 13.0 999.9 32.4* 21.4* 0.00I 999.9 000000 724050 13743 19581222 30.4 24 14.6 24 1030.6 8 1029.6 8 10.8 24 3.5 24 8.0 999.9 38.3* 24.4* 0.00I 999.9 000000 724050 13743 19581223 41.6 24 27.0 24 1015.1 8 1014.1 8 9.4 24 5.0 24 8.0 999.9 58.3* 31.3* 0.00I 999.9 000000 724050 13743 19581224 46.9 24 30.7 24 1010.0 8 1009.0 8 10.6 24 8.1 24 19.0 999.9 55.4* 39.4* 99.99 999.9 010000 724050 13743 19581225 31.7 24 13.9 24 1023.2 8 1022.2 8 11.9 24 13.6 24 21.0 999.9 38.3* 27.3* 0.00I 999.9 000000 724050 13743 19581226 27.6 24 12.0 24 1034.1 8 1033.1 8 11.9 24 3.9 24 9.9 999.9 36.3* 20.3* 0.00I 999.9 000000 724050 13743 19581227 29.5 24 18.6 24 1029.6 8 1028.5 8 11.0 24 2.5 24 5.1 999.9 43.3* 21.4* 0.00I 999.9 000000 724050 13743 19581228 39.0 24 28.9 24 1024.4 8 1023.4 8 6.7 24 2.0 24 6.0 999.9 49.3* 33.4* 99.99 999.9 010000 724050 13743 19581229 45.2 24 38.2 24 1019.5 8 1018.5 8 4.5 24 12.0 24 15.9 999.9 50.4* 42.4* 99.99 999.9 110000 724050 13743 19581230 46.1 24 37.8 24 1020.0 8 1018.9 8 8.6 24 9.8 24 20.0 999.9 55.4* 40.3* 99.99 999.9 110000 724050 13743 19581231 37.5 24 22.0 24 1029.0 8 1028.0 8 10.3 24 8.4 24 21.0 999.9 46.4* 30.4* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/2012/0000755000175000017500000000000014302004506015064 5ustar nileshnileshfluids-1.0.22/tests/gsod/2012/724050-13743.op0000644000175000017500000014350514302004506016654 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20120101 48.4 24 38.0 24 1017.3 24 1014.9 24 9.7 24 6.0 24 14.0 999.9 62.1 37.9 0.00G 999.9 010000 724050 13743 20120102 44.1 24 21.7 24 1012.1 24 1009.9 24 10.0 24 12.6 24 25.1 35.0 60.1 36.0 0.00G 999.9 000000 724050 13743 20120103 31.3 24 11.1 24 1016.8 24 1014.2 24 10.0 24 13.3 24 24.1 34.0 48.0 26.1 0.00G 999.9 001000 724050 13743 20120104 24.0 24 3.9 24 1024.4 24 1022.2 24 10.0 24 8.2 24 15.9 27.0 34.0 17.1 0.00G 999.9 000000 724050 13743 20120105 38.6 24 20.7 24 1015.9 23 1013.7 24 9.9 24 4.7 24 11.1 17.1 50.0 17.1 0.00G 999.9 000000 724050 13743 20120106 44.1 24 28.2 24 1013.7 24 1011.2 24 10.0 24 5.7 24 9.9 999.9 63.0 30.2 0.00G 999.9 000000 724050 13743 20120107 50.1 24 33.3 24 1010.6 24 1008.3 24 9.9 24 5.8 24 11.1 17.1 68.0 33.1 0.00G 999.9 000000 724050 13743 20120108 48.8 24 27.4 24 1021.6 24 1019.2 24 10.0 24 7.5 24 11.1 18.1 68.0 36.0 0.00G 999.9 000000 724050 13743 20120109 37.1 24 25.7 24 1027.0 19 1023.7 24 8.5 24 4.2 24 8.9 999.9 52.0 33.1 0.00G 999.9 111000 724050 13743 20120110 39.5 24 31.2 24 1017.5 24 1015.2 24 7.6 24 6.1 24 13.0 18.1 54.0 32.0 0.16G 999.9 100000 724050 13743 20120111 39.9 24 34.6 24 1015.3 24 1013.4 24 8.4 24 4.3 24 8.9 999.9 54.0 32.0 0.00G 999.9 010000 724050 13743 20120112 48.9 24 44.1 24 1000.1 18 997.8 24 7.6 24 6.4 24 12.0 18.1 57.0 33.1 0.75G 999.9 010000 724050 13743 20120113 43.6 24 27.7 24 1002.0 24 999.1 24 10.0 24 13.4 24 22.0 32.1 57.0 36.0 0.05G 999.9 010000 724050 13743 20120114 32.6 24 13.8 24 1017.3 24 1015.0 24 10.0 24 6.9 24 12.0 17.1 51.1 27.0 0.00I 999.9 000000 724050 13743 20120115 31.1 24 10.6 24 1026.5 24 1024.2 24 10.0 24 10.0 24 14.0 18.1 39.0 27.0 0.00G 999.9 000000 724050 13743 20120116 31.4 24 14.3 24 1034.0 24 1031.7 24 10.0 24 7.1 24 15.9 22.9 41.0 25.0 0.00G 999.9 000000 724050 13743 20120117 46.0 24 36.6 24 1017.0 23 1014.4 24 9.5 24 11.5 24 20.0 27.0 59.0 25.2 0.11G 999.9 010000 724050 13743 20120118 47.3 24 28.8 24 1013.4 24 1011.4 24 10.0 24 15.4 24 21.0 33.0 60.1 35.1 0.18G 999.9 000000 724050 13743 20120119 32.0 24 14.9 24 1021.5 24 1019.2 24 10.0 24 7.7 24 15.9 21.0 39.9* 26.1* 0.00G 999.9 000000 724050 13743 20120120 36.6 24 16.9 24 1020.2 24 1017.9 24 10.0 24 8.7 24 15.9 22.0 41.0 25.2 0.00G 999.9 000000 724050 13743 20120121 31.6 24 24.4 24 1019.2 15 1016.8 24 7.0 24 6.7 24 15.0 999.9 39.9 28.0 0.27G 1.2 111000 724050 13743 20120122 30.9 24 24.2 24 1028.5 22 1026.4 24 10.0 24 8.5 24 12.0 999.9 34.0 28.0 0.01G 1.2 011000 724050 13743 20120123 33.7 24 31.1 24 1023.9 18 1021.5 24 3.6 24 3.0 24 8.9 999.9 39.9 30.0 0.00G 999.9 110000 724050 13743 20120124 45.7 24 41.4 24 1017.1 22 1014.5 24 8.0 24 6.0 24 12.0 19.0 55.9 32.0 0.03G 999.9 000000 724050 13743 20120125 42.8 24 32.2 24 1025.1 24 1022.8 24 10.0 24 5.2 24 12.0 999.9 55.9 36.0 0.00G 999.9 000000 724050 13743 20120126 45.0 24 37.2 24 1019.9 24 1017.8 24 8.7 24 2.5 24 7.0 999.9 55.0 36.0 0.00G 999.9 000000 724050 13743 20120127 54.6 24 48.2 24 1004.9 19 1001.5 24 9.5 24 9.8 24 21.0 34.0 62.6* 46.9* 0.01G 999.9 010010 724050 13743 20120128 43.9 24 29.4 24 1016.1 24 1013.9 24 10.0 24 7.9 24 20.0 26.0 62.1 33.1 0.62G 999.9 000000 724050 13743 20120129 41.9 24 13.1 24 1023.0 24 1020.6 24 10.0 24 9.1 24 22.0 28.9 55.0 32.0 0.00G 999.9 000000 724050 13743 20120130 40.5 24 15.5 24 1025.3 24 1023.0 24 10.0 24 8.9 24 15.0 21.0 48.9 32.0 0.00G 999.9 000000 724050 13743 20120131 48.7 24 25.9 24 1023.2 24 1020.8 24 10.0 24 9.1 24 15.9 21.0 66.0 34.0 0.00G 999.9 000000 724050 13743 20120201 56.7 24 36.9 24 1017.7 24 1015.3 24 10.0 24 7.7 24 12.0 17.1 72.0 39.9 0.02G 999.9 010000 724050 13743 20120202 53.9 24 43.5 24 1017.4 24 1014.8 24 9.4 24 5.1 24 19.0 25.1 72.0 48.0 0.07G 999.9 010000 724050 13743 20120203 44.2 24 27.1 24 1029.8 24 1027.4 24 10.0 24 8.7 24 19.0 22.9 57.9 37.0 0.02G 999.9 000000 724050 13743 20120204 40.7 24 31.8 24 1026.4 23 1023.9 24 9.7 24 4.1 24 9.9 999.9 52.0 35.1 0.00G 999.9 010000 724050 13743 20120205 39.6 24 31.3 24 1021.0 22 1018.7 24 8.6 24 6.7 24 11.1 17.1 46.0 35.1 0.08G 999.9 010000 724050 13743 20120206 40.1 24 27.5 24 1023.3 24 1020.9 24 10.0 24 5.6 24 12.0 999.9 53.1 28.9 0.00G 999.9 000000 724050 13743 20120207 47.1 24 28.9 24 1020.1 24 1017.6 24 10.0 24 5.7 24 12.0 17.1 55.9 29.1 0.00G 999.9 000000 724050 13743 20120208 40.7 24 30.1 24 1023.7 23 1021.2 24 9.3 24 5.1 24 9.9 999.9 55.9 37.0 0.00G 999.9 011000 724050 13743 20120209 38.8 24 25.6 24 1023.0 23 1020.6 24 9.0 24 8.2 24 15.9 21.0 46.9 33.1 0.11G 999.9 010000 724050 13743 20120210 40.8 24 24.3 24 1020.9 24 1018.6 24 10.0 24 4.0 24 8.9 18.1 46.9 33.1 0.00G 999.9 010000 724050 13743 20120211 39.0 24 31.3 24 1010.4 18 1007.6 24 8.2 24 7.8 24 28.0 38.1 46.9 30.9 0.10G 999.9 011000 724050 13743 20120212 27.1 24 9.2 24 1016.2 23 1013.9 24 9.0 24 16.4 24 26.0 38.1 43.0 23.0 0.01G 999.9 001000 724050 13743 20120213 33.7 24 11.0 24 1021.2 24 1018.8 24 10.0 24 7.0 24 12.0 19.0 50.0 23.0 0.00I 999.9 000000 724050 13743 20120214 43.5 24 25.4 24 1017.8 24 1015.5 24 10.0 24 5.1 24 15.9 21.0 55.9 24.3 0.00G 999.9 000000 724050 13743 20120215 47.6 24 30.8 24 1020.4 24 1018.1 24 10.0 24 6.5 24 14.0 22.0 55.9 37.0 0.00G 999.9 000000 724050 13743 20120216 44.6 24 35.1 24 1023.3 23 1021.3 24 9.5 24 3.8 24 8.9 999.9 55.0 41.0 0.00G 999.9 010000 724050 13743 20120217 46.1 24 35.2 24 1017.9 20 1015.5 24 6.6 24 6.6 24 15.0 22.0 54.0 39.0 0.09G 999.9 100000 724050 13743 20120218 46.4 24 29.2 24 1018.1 24 1015.8 24 10.0 24 6.3 24 13.0 17.1 59.0 34.0 0.00G 999.9 000000 724050 13743 20120219 43.3 24 23.8 24 1017.5 24 1015.2 24 10.0 24 10.0 24 15.9 20.0 59.0 35.1 0.00G 999.9 000000 724050 13743 20120220 40.3 24 24.5 24 1020.4 23 1017.4 24 9.3 24 8.5 24 15.9 21.0 50.0 34.0 0.08G 999.9 011000 724050 13743 20120221 41.0 24 25.9 24 1024.3 24 1022.0 24 10.0 24 6.5 24 15.9 22.9 50.0 32.0 0.00G 999.9 000000 724050 13743 20120222 49.6 24 35.5 24 1009.6 24 1007.3 24 10.0 24 8.2 24 17.1 24.1 63.0 32.0 0.00G 999.9 000000 724050 13743 20120223 57.0 24 38.7 24 1001.0 24 998.7 24 10.0 24 7.5 24 9.9 19.0 66.9 43.0 0.00G 999.9 010000 724050 13743 20120224 53.3 24 44.9 24 1000.6 20 997.8 23 8.9 24 6.3 24 13.0 18.1 66.9 46.9 0.03G 999.9 010010 724050 13743 20120225 44.4 24 22.1 24 1009.7 23 1006.6 24 9.6 24 15.5 24 28.9 39.0 57.0 35.1 0.29G 999.9 001000 724050 13743 20120226 40.1 24 17.1 24 1028.4 24 1026.0 24 10.0 24 9.5 24 20.0 31.1 48.9 34.0 0.00G 999.9 000000 724050 13743 20120227 46.5 24 27.0 24 1027.9 24 1025.6 24 10.0 24 9.4 24 15.9 22.9 64.0 34.0 0.00G 999.9 000000 724050 13743 20120228 49.8 24 25.0 24 1028.2 24 1025.9 24 10.0 24 7.9 24 17.1 22.9 64.0 36.0 0.00G 999.9 000000 724050 13743 20120229 45.3 24 35.9 24 1023.5 17 1018.6 24 8.6 24 6.8 24 28.0 34.0 55.9 39.9 0.00G 999.9 010000 724050 13743 20120301 59.4 24 46.8 24 1006.0 17 1003.1 24 8.1 24 7.7 24 15.0 22.0 70.0 41.0 1.49G 999.9 110000 724050 13743 20120302 48.2 24 34.0 24 1015.5 23 1013.1 24 9.4 24 6.8 24 17.1 999.9 70.0 39.9 0.05G 999.9 010000 724050 13743 20120303 52.0 24 40.8 24 1004.2 20 1001.9 24 8.1 24 6.2 24 13.0 20.0 63.0 39.9 0.40G 999.9 010010 724050 13743 20120304 47.6 24 22.0 24 1006.8 24 1004.4 24 10.0 24 11.8 24 22.0 27.0 63.0 41.0 0.10G 999.9 000000 724050 13743 20120305 38.2 24 21.3 24 1016.2 24 1013.9 24 10.0 24 7.3 24 24.1 28.9 48.9 32.0 0.00G 999.9 001000 724050 13743 20120306 38.2 24 17.2 24 1034.8 24 1032.5 24 10.0 24 8.9 24 21.0 28.9 48.9 28.9 0.00G 999.9 000000 724050 13743 20120307 49.8 24 31.5 24 1033.9 24 1031.5 24 10.0 24 12.0 24 18.1 28.9 66.9 29.1 0.00G 999.9 000000 724050 13743 20120308 61.4 24 46.2 24 1024.8 24 1022.5 24 10.0 24 15.3 24 25.1 34.0 73.9 39.9 0.00G 999.9 000000 724050 13743 20120309 56.8 24 33.0 24 1019.5 24 1016.9 24 10.0 24 15.1 24 22.0 28.0 73.9 46.0 0.01G 999.9 010000 724050 13743 20120310 42.5 24 15.7 24 1031.4 24 1029.0 24 10.0 24 9.4 24 18.1 22.9 50.0* 35.1* 0.00I 999.9 000000 724050 13743 20120311 46.0 24 25.2 24 1033.6 24 1031.3 24 10.0 24 8.0 24 13.0 18.1 63.0 34.0 0.00G 999.9 000000 724050 13743 20120312 55.7 24 35.9 24 1026.8 24 1024.4 24 10.0 24 7.3 24 15.9 20.0 72.0 35.1 0.00G 999.9 000000 724050 13743 20120313 66.3 24 51.4 24 1018.6 24 1016.4 24 10.0 24 9.0 24 14.0 22.0 81.0 45.0 0.01G 999.9 010000 724050 13743 20120314 67.3 24 47.0 24 1019.7 24 1017.4 24 10.0 24 4.3 24 12.0 17.1 81.0 54.0 0.00A 999.9 000000 724050 13743 20120315 66.6 24 48.3 24 1021.5 24 1019.2 24 10.0 24 4.7 24 14.0 17.1 82.0 54.0 0.00G 999.9 000000 724050 13743 20120316 56.3 24 50.3 24 1021.6 22 1019.4 24 6.0 24 5.8 24 13.0 999.9 82.0 51.1 0.00G 999.9 010000 724050 13743 20120317 60.9 24 53.4 24 1023.7 23 1021.3 24 6.3 24 2.9 24 11.1 999.9 73.9* 51.8* 0.02G 999.9 000000 724050 13743 20120318 58.8 24 52.1 24 1026.4 22 1024.4 24 8.3 24 4.5 24 7.0 999.9 75.0 52.0 0.00G 999.9 010000 724050 13743 20120319 63.8 24 54.6 24 1022.4 24 1020.1 24 10.0 24 5.7 24 8.9 999.9 75.9 52.0 0.00G 999.9 000000 724050 13743 20120320 66.6 24 60.0 24 1022.9 18 1020.8 24 9.6 24 4.8 24 8.9 999.9 75.9 55.9 0.12G 999.9 010010 724050 13743 20120321 63.3 24 58.0 24 1025.3 15 1023.2 24 7.2 24 2.8 24 9.9 999.9 70.0 59.0 0.11G 999.9 110000 724050 13743 20120322 65.0 24 59.4 24 1022.9 18 1021.1 24 7.1 24 3.7 24 9.9 999.9 78.1 59.0 0.00G 999.9 110000 724050 13743 20120323 69.4 24 58.8 24 1018.0 24 1015.9 24 7.6 24 4.1 24 9.9 999.9 82.9 59.0 0.00G 999.9 000000 724050 13743 20120324 63.6 24 57.7 24 1013.6 18 1011.3 24 6.6 24 6.9 24 15.0 999.9 82.9 57.0 0.00G 999.9 010000 724050 13743 20120325 54.5 24 52.0 24 1009.6 19 1007.5 24 7.7 24 8.5 24 15.0 999.9 64.9 51.1 0.30G 999.9 010000 724050 13743 20120326 57.6 24 39.7 24 1011.3 24 1008.9 24 10.0 24 12.1 24 25.1 34.0 62.1 51.1 0.20G 999.9 000000 724050 13743 20120327 44.6 24 13.1 24 1025.5 24 1023.2 24 10.0 24 9.2 24 19.0 27.0 60.1 34.0 0.00G 999.9 000000 724050 13743 20120328 56.4 24 33.8 24 1015.3 24 1013.0 24 10.0 24 10.3 24 15.9 22.9 72.0 34.0 0.00G 999.9 010000 724050 13743 20120329 62.2 24 41.0 24 1009.3 24 1007.4 24 10.0 24 11.0 24 18.1 22.9 72.0 46.0 0.01G 999.9 000000 724050 13743 20120330 49.9 24 33.6 24 1017.7 24 1015.4 24 10.0 24 6.0 24 11.1 999.9 69.1 43.0 0.00G 999.9 010000 724050 13743 20120331 53.6 24 45.2 24 1010.2 19 1007.6 24 10.0 24 7.7 24 17.1 21.0 64.0 43.0 0.00G 999.9 000000 724050 13743 20120401 52.5 24 42.3 24 1011.1 24 1008.8 24 10.0 24 7.1 24 14.0 999.9 64.0 46.9 0.00G 999.9 000000 724050 13743 20120402 55.6 24 39.0 24 1008.1 24 1005.4 24 9.3 24 10.4 24 19.0 25.1 64.0 46.9 0.15G 999.9 010000 724050 13743 20120403 56.6 24 28.8 24 1014.6 24 1012.3 24 10.0 24 4.7 24 8.9 15.9 73.0 42.1 0.08G 999.9 000000 724050 13743 20120404 63.7 24 44.3 24 1006.5 24 1004.2 24 10.0 24 4.7 24 15.0 21.0 75.9 42.1 0.00G 999.9 000000 724050 13743 20120405 57.5 24 28.6 24 1009.5 24 1007.2 24 10.0 24 8.4 24 15.9 22.0 75.9 46.9 0.00G 999.9 000000 724050 13743 20120406 52.0 24 27.4 24 1015.2 24 1012.9 24 10.0 24 10.6 24 17.1 22.9 63.0 42.1 0.00G 999.9 000000 724050 13743 20120407 54.4 24 20.2 24 1020.3 24 1018.0 24 10.0 24 10.0 24 15.0 26.0 64.9 42.1 0.00G 999.9 000000 724050 13743 20120408 60.3 24 23.6 24 1016.4 24 1014.1 24 10.0 24 7.9 24 15.9 26.0 73.9 42.1 0.00G 999.9 000000 724050 13743 20120409 60.6 24 29.3 24 1011.8 24 1009.5 24 10.0 24 12.1 24 26.0 36.9 73.9 48.0 0.00G 999.9 000000 724050 13743 20120410 57.0 24 32.7 24 1009.2 24 1006.9 24 10.0 24 9.0 24 19.0 24.1 69.1 45.0 0.00G 999.9 010000 724050 13743 20120411 48.2 24 26.4 24 1013.4 24 1011.1 24 10.0 24 11.5 24 18.1 27.0 68.0 39.9 0.00G 999.9 010000 724050 13743 20120412 50.4 24 31.1 24 1019.1 24 1016.7 24 10.0 24 11.3 24 15.9 21.0 63.0 39.9 0.01G 999.9 000000 724050 13743 20120413 55.3 24 29.2 24 1023.3 24 1020.9 24 10.0 24 6.5 24 9.9 17.1 66.9 42.1 0.00G 999.9 000000 724050 13743 20120414 59.1 24 38.8 24 1022.7 24 1020.4 24 10.0 24 6.6 24 15.9 22.0 75.0 45.0 0.00G 999.9 000000 724050 13743 20120415 68.9 24 49.5 24 1017.7 24 1015.4 24 10.0 24 7.3 24 14.0 999.9 82.9 46.0 0.00G 999.9 000000 724050 13743 20120416 75.0 24 57.3 24 1016.1 24 1013.8 24 10.0 24 10.4 24 17.1 22.9 89.1 60.1 0.00G 999.9 000000 724050 13743 20120417 72.6 24 46.8 24 1019.3 24 1017.0 24 10.0 24 9.8 24 18.1 22.0 89.1 63.0 0.00G 999.9 010000 724050 13743 20120418 59.4 24 38.6 24 1023.3 23 1021.0 24 9.9 24 7.3 24 11.1 999.9 77.0 53.1 0.00G 999.9 010000 724050 13743 20120419 58.9 24 46.3 24 1019.6 23 1017.6 24 9.2 24 2.2 24 8.0 999.9 72.0 50.0 0.05G 999.9 010000 724050 13743 20120420 62.9 24 50.6 24 1015.3 24 1013.1 24 9.9 24 5.4 24 9.9 19.0 75.9 50.0 0.00G 999.9 000000 724050 13743 20120421 68.4 24 55.5 24 1008.0 23 1005.6 24 9.9 24 9.5 24 25.1 33.0 82.0 52.0 0.00G 999.9 010000 724050 13743 20120422 53.6 24 48.4 24 1007.4 20 1004.2 24 7.8 24 11.7 24 20.0 27.0 62.1* 48.2* 0.18G 999.9 010000 724050 13743 20120423 45.5 24 38.8 24 996.1 15 993.8 24 9.1 24 13.0 24 21.0 28.0 57.0 42.1 1.28G 999.9 010000 724050 13743 20120424 50.9 24 31.5 24 1001.5 24 999.3 24 10.0 24 9.0 24 15.0 21.0 64.0 42.1 0.07G 999.9 000000 724050 13743 20120425 57.5 24 30.9 24 1009.1 24 1006.7 24 10.0 24 5.2 24 13.0 21.0 71.1 42.1 0.00G 999.9 000000 724050 13743 20120426 60.7 24 49.5 24 1008.6 21 1006.1 24 9.8 24 5.7 24 15.0 21.0 71.1 44.1 0.01G 999.9 010000 724050 13743 20120427 58.3 24 37.2 24 1013.1 24 1010.8 24 10.0 24 12.2 24 20.0 35.9 64.9 50.0 0.02G 999.9 000000 724050 13743 20120428 50.9 24 28.5 24 1023.6 24 1021.3 24 10.0 24 5.8 24 11.1 999.9 64.0 45.0 0.00G 999.9 010000 724050 13743 20120429 55.0 24 40.4 24 1022.5 23 1020.2 24 9.4 24 4.5 24 11.1 999.9 71.1 45.0 0.15G 999.9 010000 724050 13743 20120430 57.5 24 41.2 24 1024.3 24 1021.9 24 10.0 24 5.0 24 8.9 999.9 71.1 46.0 0.03G 999.9 000000 724050 13743 20120501 69.1 24 55.9 24 1017.4 22 1015.0 24 9.7 24 6.2 24 9.9 15.0 84.0 52.0 0.15G 999.9 010010 724050 13743 20120502 68.3 24 60.9 24 1017.0 22 1014.8 24 8.4 24 4.5 24 8.9 999.9 84.0 60.1 0.02G 999.9 010010 724050 13743 20120503 64.4 24 56.7 24 1019.6 22 1017.5 24 9.1 24 6.2 24 8.9 999.9 81.0* 55.4* 0.00H 999.9 010000 724050 13743 20120504 72.4 24 63.0 24 1015.9 19 1013.3 24 9.8 24 5.3 24 22.9 32.1 84.0 55.9 0.00G 999.9 010010 724050 13743 20120505 72.4 24 63.3 24 1012.1 23 1009.7 24 9.5 24 5.0 24 14.0 999.9 84.0 64.0 0.12G 999.9 010010 724050 13743 20120506 66.7 24 58.5 24 1016.6 23 1014.4 24 9.5 24 5.7 24 9.9 999.9 71.1* 60.8* 0.00G 999.9 010000 724050 13743 20120507 64.2 24 53.9 24 1018.4 20 1016.3 24 10.0 24 8.2 24 14.0 999.9 73.0 57.0 0.00G 999.9 000000 724050 13743 20120508 66.8 24 54.2 24 1014.3 23 1012.2 24 9.8 24 10.2 24 15.0 19.0 75.0 57.0 0.00G 999.9 010000 724050 13743 20120509 70.1 24 60.1 24 1007.9 22 1005.7 24 9.0 24 8.1 24 21.0 35.0 75.0 60.1 0.20G 999.9 010000 724050 13743 20120510 61.3 24 46.4 24 1006.5 24 1004.0 24 9.3 24 11.4 24 19.0 28.0 75.0 55.9 0.41G 999.9 010000 724050 13743 20120511 62.3 24 35.6 24 1017.5 24 1015.1 24 10.0 24 8.7 24 15.0 25.1 73.0 52.0 0.00G 999.9 000000 724050 13743 20120512 66.5 24 42.0 24 1023.9 24 1021.6 24 10.0 24 4.7 24 8.0 999.9 78.1 52.0 0.00G 999.9 000000 724050 13743 20120513 70.3 24 54.3 24 1022.2 24 1019.9 24 10.0 24 7.6 24 15.0 20.0 80.1 52.0 0.00G 999.9 000000 724050 13743 20120514 68.1 24 59.2 24 1019.4 20 1017.1 24 8.6 24 8.2 24 12.0 999.9 80.1 62.1 0.12G 999.9 010000 724050 13743 20120515 70.5 24 63.7 24 1014.9 19 1012.6 24 9.0 24 4.8 24 9.9 999.9 79.0 62.1 1.11G 999.9 010000 724050 13743 20120516 72.8 24 61.4 24 1013.2 23 1011.0 24 9.7 24 5.1 24 9.9 999.9 82.0 63.0 0.23G 999.9 010010 724050 13743 20120517 70.4 24 52.7 24 1016.6 24 1014.5 24 10.0 24 8.6 24 15.9 21.0 82.0 63.0 0.00G 999.9 000000 724050 13743 20120518 66.5 24 46.8 24 1020.8 24 1018.5 24 10.0 24 5.2 24 8.9 999.9 77.0 55.0 0.00G 999.9 000000 724050 13743 20120519 68.7 24 45.9 24 1020.9 24 1018.6 24 10.0 24 3.4 24 12.0 999.9 84.0 55.0 0.00G 999.9 000000 724050 13743 20120520 71.7 24 51.2 24 1020.8 24 1018.4 24 10.0 24 7.3 24 15.0 21.0 84.0 55.9 0.00G 999.9 000000 724050 13743 20120521 69.8 24 63.7 24 1016.9 19 1014.8 24 7.4 24 9.3 24 15.0 19.0 81.0 59.0 0.02G 999.9 010000 724050 13743 20120522 71.2 24 62.8 24 1011.6 21 1009.5 24 9.9 24 3.9 24 9.9 999.9 81.0 66.0 0.03G 999.9 010000 724050 13743 20120523 72.4 24 64.0 24 1011.7 17 1009.4 24 9.7 24 4.2 24 14.0 19.0 81.0 66.0 0.02G 999.9 010010 724050 13743 20120524 74.5 24 64.4 24 1016.9 22 1014.4 24 9.0 24 5.6 24 13.0 18.1 82.9 66.0 0.29G 999.9 000000 724050 13743 20120525 76.6 24 67.7 24 1019.5 21 1017.3 24 10.0 24 5.6 24 9.9 999.9 86.0 69.1 0.00G 999.9 010000 724050 13743 20120526 77.6 24 68.2 24 1020.4 24 1018.2 24 10.0 24 6.9 24 9.9 999.9 86.0 71.1 0.00G 999.9 000000 724050 13743 20120527 78.8 24 67.1 24 1020.1 24 1017.8 24 10.0 24 8.0 24 11.1 999.9 87.1 71.1 0.00G 999.9 000000 724050 13743 20120528 78.7 24 67.3 24 1016.9 24 1014.5 24 9.9 24 6.5 24 15.0 27.0 90.0 70.0 0.05G 999.9 010010 724050 13743 20120529 82.7 24 69.4 24 1011.7 24 1009.4 24 10.0 24 10.4 24 18.1 25.1 91.0 70.0 0.00G 999.9 000000 724050 13743 20120530 75.2 24 63.6 24 1008.6 23 1006.4 24 9.7 24 5.3 24 19.0 24.1 91.0 69.1 0.51G 999.9 010010 724050 13743 20120531 77.1 24 56.2 24 1009.1 24 1006.8 24 10.0 24 6.6 24 14.0 17.1 84.9 69.1 0.00G 999.9 000000 724050 13743 20120601 75.6 24 63.1 24 1011.1 16 1008.1 24 8.6 24 7.2 24 27.0 41.0 82.4* 69.8* 0.00G 999.9 010010 724050 13743 20120602 68.7 24 53.9 24 1008.5 22 1005.9 24 9.6 24 7.3 24 13.0 21.0 75.0 61.0 1.22G 999.9 010000 724050 13743 20120603 69.5 24 48.5 24 1009.7 24 1007.4 24 10.0 24 6.5 24 12.0 20.0 80.1 57.9 0.00G 999.9 000000 724050 13743 20120604 70.3 24 49.3 24 1005.6 24 1003.3 24 10.0 24 9.8 24 18.1 25.1 80.1 57.9 0.00G 999.9 010000 724050 13743 20120605 64.9 24 50.0 24 1010.8 20 1008.1 24 10.0 24 8.9 24 15.0 999.9 75.0 57.9 0.00G 999.9 010000 724050 13743 20120606 66.0 24 49.9 24 1015.2 24 1012.9 24 9.9 24 3.1 24 11.1 999.9 75.0 57.9 0.00G 999.9 010000 724050 13743 20120607 68.8 24 53.3 24 1016.0 24 1013.7 24 10.0 24 5.6 24 12.0 20.0 82.9 57.9 0.03G 999.9 000000 724050 13743 20120608 73.1 24 50.3 24 1015.6 24 1013.3 24 10.0 24 6.9 24 14.0 19.0 84.9 57.9 0.00G 999.9 000000 724050 13743 20120609 79.2 24 52.8 24 1014.8 24 1012.5 24 10.0 24 5.1 24 11.1 19.0 91.4* 66.9* 0.00G 999.9 000000 724050 13743 20120610 81.0 24 59.9 24 1017.3 24 1015.0 24 10.0 24 5.0 24 9.9 999.9 91.9 66.9 0.01G 999.9 000000 724050 13743 20120611 80.7 24 64.1 24 1019.5 24 1017.2 24 10.0 24 7.3 24 15.0 999.9 91.9 69.1 0.00G 999.9 000000 724050 13743 20120612 75.3 24 67.6 24 1015.7 19 1012.9 24 9.0 24 8.1 24 13.0 999.9 82.0* 69.8* 0.11G 999.9 010000 724050 13743 20120613 75.3 24 61.1 24 1013.4 24 1010.9 24 9.7 24 11.0 24 21.0 27.0 82.0 69.1 0.15G 999.9 010000 724050 13743 20120614 74.1 24 55.6 24 1019.7 24 1017.4 24 10.0 24 9.8 24 15.0 999.9 82.9 68.0 0.00G 999.9 000000 724050 13743 20120615 73.1 24 57.6 24 1024.2 24 1021.9 24 10.0 24 6.5 24 9.9 15.9 82.9 64.0 0.00G 999.9 000000 724050 13743 20120616 72.9 24 52.4 24 1025.3 24 1023.0 24 10.0 24 5.5 24 8.9 15.0 82.0 63.0 0.00G 999.9 000000 724050 13743 20120617 69.6 24 54.1 24 1021.9 24 1019.8 24 10.0 24 5.8 24 11.1 17.1 82.0 62.1 0.00G 999.9 000000 724050 13743 20120618 66.9 24 58.4 24 1019.1 21 1016.8 24 9.3 24 6.8 24 8.9 999.9 77.0 62.1 0.12G 999.9 010000 724050 13743 20120619 75.4 24 64.9 24 1019.8 24 1017.6 24 10.0 24 5.3 24 8.9 999.9 88.0 63.0 0.16G 999.9 010000 724050 13743 20120620 85.0 24 69.2 24 1019.2 24 1016.8 24 8.8 24 4.4 24 8.9 999.9 98.1 69.1 0.00G 999.9 000000 724050 13743 20120621 88.3 24 68.7 24 1014.8 24 1012.2 24 9.2 24 4.2 24 8.0 999.9 99.0 73.9 0.00G 999.9 000000 724050 13743 20120622 87.7 24 69.2 24 1010.0 24 1007.7 24 9.2 24 5.7 24 19.0 26.0 99.0 78.1 0.00G 999.9 000000 724050 13743 20120623 80.8 24 62.4 24 1012.7 24 1010.4 24 9.5 24 7.2 24 18.1 22.0 97.0 73.0 0.00G 999.9 010000 724050 13743 20120624 82.6 24 57.7 24 1015.5 24 1013.2 24 10.0 24 4.9 24 11.1 17.1 93.0 72.0 0.00G 999.9 000000 724050 13743 20120625 81.6 24 61.9 24 1009.0 24 1006.7 24 10.0 24 9.3 24 17.1 24.1 93.0 72.0 0.00G 999.9 010000 724050 13743 20120626 72.6 24 43.8 24 1010.5 24 1008.2 24 10.0 24 13.5 24 18.1 26.0 89.1 62.1 0.00G 999.9 000000 724050 13743 20120627 77.5 24 47.6 24 1011.8 24 1009.5 24 10.0 24 10.3 24 17.1 25.1 89.1 62.1 0.00G 999.9 000000 724050 13743 20120628 82.7 24 54.6 24 1011.8 24 1009.5 24 10.0 24 5.8 24 12.0 15.0 96.1 66.0 0.00G 999.9 000000 724050 13743 20120629 89.6 24 66.1 24 1007.2 24 1004.9 24 9.9 24 6.5 24 11.1 17.1 104.0 70.0 0.00G 999.9 000000 724050 13743 20120630 85.0 24 66.9 24 1009.1 23 1006.7 24 9.7 24 5.6 24 42.9 61.0 98.1* 71.6* 0.59G 999.9 010010 724050 13743 20120701 88.2 24 68.8 24 1011.0 23 1008.6 23 10.0 24 6.5 24 13.0 20.0 98.1* 77.0* 0.00G 999.9 000000 724050 13743 20120702 87.3 24 61.1 23 1013.5 24 1011.1 24 10.0 24 7.0 24 15.0 999.9 93.9 77.0 0.00G 999.9 010010 724050 13743 20120703 86.9 24 61.6 24 1014.0 24 1011.6 24 10.0 24 4.2 24 8.0 15.0 98.1 75.9 0.00G 999.9 000000 724050 13743 20120704 85.0 24 66.4 24 1011.9 24 1009.6 24 9.9 24 5.2 24 18.1 26.0 99.0 75.0 0.02G 999.9 010010 724050 13743 20120705 90.3 24 66.0 24 1010.2 23 1008.0 24 9.9 24 6.8 24 13.0 22.9 100.0 75.0 0.00G 999.9 000000 724050 13743 20120706 90.4 24 64.5 24 1012.2 24 1010.0 24 10.0 24 5.8 24 8.9 999.9 100.0 80.1 0.00G 999.9 000000 724050 13743 20120707 92.6 24 68.9 24 1012.2 24 1010.1 24 9.5 24 5.9 24 13.0 15.9 105.1 81.0 0.00G 999.9 000000 724050 13743 20120708 92.4 24 71.1 24 1010.4 24 1008.2 24 9.8 24 5.5 24 12.0 999.9 105.1 82.0 0.00G 999.9 010010 724050 13743 20120709 80.4 24 69.1 24 1012.9 19 1010.4 24 9.0 24 6.3 24 20.0 24.1 86.0* 73.9* 0.95G 999.9 010010 724050 13743 20120710 82.2 24 66.2 24 1015.5 21 1013.0 24 10.0 24 5.3 24 15.9 21.0 90.0 73.9 0.26G 999.9 010010 724050 13743 20120711 79.0 24 66.1 24 1019.2 24 1016.7 24 9.7 24 5.7 24 25.1 35.9 88.0* 71.6* 0.60G 999.9 010010 724050 13743 20120712 80.3 24 61.1 24 1021.8 24 1019.5 24 10.0 24 5.4 24 8.9 999.9 89.1 72.0 0.00G 999.9 000000 724050 13743 20120713 81.4 24 59.9 24 1022.7 24 1020.3 24 10.0 24 4.0 24 8.0 999.9 90.0 72.0 0.00G 999.9 000000 724050 13743 20120714 79.8 24 65.1 24 1021.9 22 1019.7 24 9.9 24 4.7 24 14.0 22.0 90.0 71.1 0.04G 999.9 010000 724050 13743 20120715 82.8 24 71.5 24 1019.6 24 1017.2 24 10.0 24 5.7 24 18.1 25.1 96.1 73.0 0.04G 999.9 010000 724050 13743 20120716 83.9 24 70.2 24 1014.5 24 1012.2 24 10.0 24 6.1 24 21.0 28.9 96.1 75.9 0.03G 999.9 010010 724050 13743 20120717 88.3 24 67.8 24 1011.8 24 1009.4 24 9.9 24 4.3 24 8.9 14.0 100.0 75.9 0.01G 999.9 000000 724050 13743 20120718 88.9 24 69.1 24 1011.2 24 1008.9 24 9.7 24 7.1 24 25.1 31.1 100.9 77.0 0.00G 999.9 010010 724050 13743 20120719 85.8 24 68.4 24 1012.8 24 1010.5 24 10.0 24 5.1 24 9.9 999.9 100.9 79.0 0.00G 999.9 000000 724050 13743 20120720 78.4 24 71.4 24 1012.1 18 1009.9 24 9.2 24 7.1 24 27.0 35.0 95.0 73.9 0.42G 999.9 110010 724050 13743 20120721 69.8 24 65.6 24 1017.0 20 1014.7 24 7.4 24 9.0 24 14.0 999.9 82.0 66.9 0.20G 999.9 010000 724050 13743 20120722 73.9 24 66.8 24 1020.9 21 1018.6 24 9.5 24 3.4 24 8.0 999.9 82.0 66.9 0.20G 999.9 010000 724050 13743 20120723 81.4 24 70.7 24 1018.3 23 1016.3 24 9.6 24 5.0 24 8.9 999.9 90.0 70.0 0.00G 999.9 000000 724050 13743 20120724 83.6 24 69.6 24 1009.9 24 1007.5 24 9.8 24 7.7 24 12.0 18.1 93.0 73.9 0.00G 999.9 000000 724050 13743 20120725 81.2 24 58.4 24 1011.6 24 1009.3 24 10.0 24 6.9 24 12.0 19.0 93.0 72.0 0.00G 999.9 000000 724050 13743 20120726 83.9 24 66.7 24 1008.8 24 1006.4 24 9.2 24 8.7 24 15.0 22.9 100.0 72.0 0.00G 999.9 000000 724050 13743 20120727 86.7 24 69.5 24 1008.8 23 1006.3 24 10.0 24 7.2 24 22.0 36.9 100.0 73.9 0.00G 999.9 010000 724050 13743 20120728 86.2 24 67.8 24 1011.8 24 1009.5 24 10.0 24 5.9 24 25.1 35.9 97.0 77.0 0.00G 999.9 010010 724050 13743 20120729 80.0 24 66.0 24 1014.7 24 1012.2 24 10.0 24 6.3 24 18.1 35.9 97.0 72.0 0.27G 999.9 010010 724050 13743 20120730 81.4 24 68.6 24 1017.0 24 1014.7 24 9.6 24 4.8 24 15.0 18.1 90.0 72.0 0.00G 999.9 000000 724050 13743 20120731 80.5 24 68.7 24 1015.6 23 1013.2 24 9.9 24 5.4 24 14.0 17.1 90.0 73.9 0.00G 999.9 010010 724050 13743 20120801 79.8 24 67.9 24 1011.9 21 1009.6 24 10.0 24 5.8 24 13.0 999.9 91.0 73.0 0.03G 999.9 010010 724050 13743 20120802 83.0 24 69.7 24 1011.6 24 1009.3 24 10.0 24 4.5 24 17.1 999.9 96.1 73.0 0.00G 999.9 000000 724050 13743 20120803 84.5 24 70.1 24 1014.9 24 1012.6 24 9.9 24 7.4 24 11.1 999.9 96.1 75.0 0.00G 999.9 000000 724050 13743 20120804 86.9 24 71.5 24 1019.4 24 1017.1 24 9.9 24 8.5 24 15.0 20.0 96.1 75.0 0.00G 999.9 000000 724050 13743 20120805 86.7 24 70.6 24 1019.6 24 1017.3 24 10.0 24 11.9 24 19.0 28.0 98.1 78.1 0.00G 999.9 010010 724050 13743 20120806 82.8 24 70.3 24 1017.1 24 1014.9 24 9.8 24 5.2 24 8.0 15.9 98.1 78.1 0.03G 999.9 010000 724050 13743 20120807 82.3 24 70.7 24 1015.5 24 1013.1 24 9.1 24 4.8 24 9.9 999.9 93.0 77.0 0.02G 999.9 010000 724050 13743 20120808 82.9 24 71.0 24 1014.7 24 1012.4 24 9.7 24 3.3 24 9.9 999.9 91.0 77.0 0.00G 999.9 000000 724050 13743 20120809 84.6 24 69.2 24 1013.3 24 1011.0 24 9.0 24 5.9 24 11.1 999.9 95.0* 75.2* 0.00G 999.9 000000 724050 13743 20120810 79.8 24 68.4 24 1009.2 23 1007.0 24 9.7 24 8.2 24 17.1 22.0 89.1* 71.6* 0.26G 999.9 010000 724050 13743 20120811 79.9 24 67.9 24 1010.3 23 1007.8 24 9.9 24 7.7 24 13.0 19.0 89.1 71.1 0.40G 999.9 010000 724050 13743 20120812 78.1 24 62.0 24 1014.4 23 1011.9 24 9.9 24 5.4 24 15.0 999.9 89.1 71.1 0.03G 999.9 010000 724050 13743 20120813 80.5 24 60.2 24 1016.1 24 1013.7 24 10.0 24 3.7 24 9.9 999.9 90.0 72.0 0.00G 999.9 000000 724050 13743 20120814 80.7 24 68.5 24 1013.0 24 1010.8 24 9.2 24 6.2 24 12.0 999.9 90.0 72.0 0.20G 999.9 010000 724050 13743 20120815 80.3 24 66.2 24 1011.6 24 1009.3 24 10.0 24 6.4 24 11.1 999.9 90.0 72.0 0.00B 999.9 000000 724050 13743 20120816 79.8 24 60.6 24 1014.1 24 1011.8 24 9.9 24 5.6 24 12.0 17.1 91.0 69.1 0.00G 999.9 000000 724050 13743 20120817 81.8 24 61.3 24 1011.7 24 1009.4 24 9.6 24 7.4 24 17.1 24.1 93.9 69.1 0.00G 999.9 000000 724050 13743 20120818 77.2 24 62.0 24 1012.0 22 1009.7 24 9.9 24 7.9 24 14.0 15.0 93.9 69.1 0.17G 999.9 010000 724050 13743 20120819 74.0 24 62.0 24 1013.8 23 1011.5 24 9.4 24 2.6 24 7.0 999.9 86.0 69.1 0.16G 999.9 010000 724050 13743 20120820 73.5 24 63.5 24 1012.5 24 1010.2 24 9.7 24 4.8 24 9.9 999.9 82.0 69.1 0.36G 999.9 010000 724050 13743 20120821 73.6 24 61.4 24 1016.4 22 1014.0 24 9.3 24 3.3 24 9.9 14.0 86.0 66.0 0.00G 999.9 010000 724050 13743 20120822 75.8 24 63.8 24 1019.8 23 1017.4 24 8.8 24 2.7 24 22.0 29.9 86.0 66.0 0.59G 999.9 010000 724050 13743 20120823 77.5 24 64.5 24 1020.7 24 1018.4 24 8.5 24 2.6 24 8.0 999.9 89.1 68.0 0.35G 999.9 000000 724050 13743 20120824 79.1 24 63.6 24 1020.8 24 1018.5 24 9.8 24 2.3 24 8.0 999.9 89.1 70.0 0.00G 999.9 000000 724050 13743 20120825 76.8 24 65.3 24 1021.8 24 1019.5 24 9.9 24 7.4 24 17.1 25.1 88.0 72.0 0.00G 999.9 010000 724050 13743 20120826 74.5 24 68.9 24 1022.1 16 1019.9 24 9.6 24 9.0 24 15.0 22.0 82.9* 71.6* 0.06G 999.9 010010 724050 13743 20120827 77.3 24 68.3 24 1019.6 20 1017.7 24 10.0 24 3.8 24 11.1 999.9 88.0 71.1 0.28G 999.9 000000 724050 13743 20120828 81.5 24 68.0 24 1013.9 24 1011.7 24 10.0 24 7.9 24 14.0 20.0 91.0 71.1 0.03G 999.9 010000 724050 13743 20120829 78.2 24 59.5 24 1014.8 24 1012.5 24 10.0 24 4.3 24 8.0 999.9 91.0 69.1 0.00I 999.9 000000 724050 13743 20120830 78.4 24 61.3 24 1018.1 24 1015.8 24 10.0 24 2.7 24 8.0 999.9 89.1 69.1 0.00G 999.9 000000 724050 13743 20120831 83.6 24 65.3 24 1018.7 24 1016.3 24 8.8 24 5.8 24 12.0 18.1 97.0 69.1 0.00G 999.9 000000 724050 13743 20120901 85.2 24 68.3 24 1017.0 24 1014.7 24 10.0 24 4.9 24 9.9 999.9 97.0 73.9 0.00G 999.9 000000 724050 13743 20120902 79.1 24 72.1 24 1016.5 21 1014.3 24 9.2 24 1.6 24 27.0 42.9 95.0 73.0 1.64G 999.9 110010 724050 13743 20120903 79.3 24 71.8 24 1016.8 21 1014.5 24 9.8 24 5.3 24 11.1 999.9 84.9 73.9 0.05G 999.9 010000 724050 13743 20120904 80.7 24 72.3 24 1015.0 23 1012.9 24 9.8 24 7.8 24 17.1 22.9 89.1 75.0 0.00G 999.9 010000 724050 13743 20120905 82.4 24 72.5 24 1010.6 23 1008.2 24 9.8 24 8.3 24 11.1 18.1 90.0 75.9 0.00G 999.9 010000 724050 13743 20120906 79.6 24 72.9 24 1011.4 19 1009.2 24 9.1 24 4.1 24 9.9 999.9 84.0* 75.2* 0.02G 999.9 010000 724050 13743 20120907 78.3 24 69.0 24 1013.3 24 1010.9 24 10.0 24 6.0 24 12.0 999.9 89.1 72.0 0.24G 999.9 000000 724050 13743 20120908 78.4 24 69.6 24 1008.2 18 1005.7 24 8.9 24 10.6 24 33.0 49.9 91.0 66.0 0.00G 999.9 110010 724050 13743 20120909 70.3 24 55.7 24 1011.2 24 1009.0 24 10.0 24 7.4 24 11.1 14.0 91.0 62.1 0.49G 999.9 010000 724050 13743 20120910 68.8 24 48.5 24 1016.9 24 1014.6 24 10.0 24 9.9 24 14.0 17.1 80.1 60.1 0.00G 999.9 000000 724050 13743 20120911 67.8 24 46.3 24 1024.1 24 1021.8 24 10.0 24 4.1 24 11.1 999.9 78.1 57.0 0.00G 999.9 000000 724050 13743 20120912 69.2 24 52.5 24 1027.0 24 1024.7 24 10.0 24 4.8 24 11.1 999.9 81.0 57.0 0.00G 999.9 000000 724050 13743 20120913 70.7 24 56.0 24 1027.7 24 1025.4 24 10.0 24 3.2 24 8.9 999.9 81.0 60.1 0.00G 999.9 000000 724050 13743 20120914 72.4 24 59.9 24 1023.9 24 1021.6 24 10.0 24 3.8 24 8.0 999.9 82.9 60.1 0.00G 999.9 000000 724050 13743 20120915 71.8 24 53.1 24 1021.4 24 1019.0 24 10.0 24 9.5 24 19.0 24.1 82.9 64.0 0.00G 999.9 000000 724050 13743 20120916 67.9 24 50.2 24 1020.8 24 1018.5 24 10.0 24 3.3 24 6.0 999.9 78.1 60.1 0.00G 999.9 000000 724050 13743 20120917 67.3 24 56.8 24 1019.3 21 1016.9 24 10.0 24 4.9 24 11.1 999.9 75.9 59.0 0.00G 999.9 000000 724050 13743 20120918 73.1 24 67.7 24 1009.8 12 1007.1 24 9.2 24 12.4 24 31.1 53.0 80.1 59.0 0.19G 999.9 110000 724050 13743 20120919 67.0 24 51.6 24 1015.6 24 1012.9 24 9.8 24 9.0 24 17.1 25.1 80.1 62.1 0.88G 999.9 010000 724050 13743 20120920 64.2 24 49.2 24 1021.0 24 1018.7 24 10.0 24 4.3 24 8.9 999.9 75.0 54.0 0.00G 999.9 000000 724050 13743 20120921 68.6 24 56.4 24 1017.8 24 1015.6 24 10.0 24 4.9 24 11.1 999.9 80.1 54.0 0.00G 999.9 000000 724050 13743 20120922 73.6 24 61.4 24 1012.6 23 1010.1 24 10.0 24 10.2 24 14.0 21.0 84.9 59.0 0.00G 999.9 000000 724050 13743 20120923 66.0 24 45.3 24 1017.6 24 1015.3 24 10.0 24 8.9 24 13.0 21.0 84.9 55.0 0.00G 999.9 000000 724050 13743 20120924 62.3 24 41.5 24 1022.2 24 1019.9 24 10.0 24 5.6 24 11.1 15.9 70.0 55.0 0.00G 999.9 000000 724050 13743 20120925 63.4 24 46.6 24 1021.8 24 1019.4 24 10.0 24 7.5 24 12.0 17.1 75.9 53.1 0.00G 999.9 000000 724050 13743 20120926 72.2 24 57.3 24 1019.5 24 1017.2 24 10.0 24 9.5 24 12.0 18.1 84.0 53.1 0.00G 999.9 000000 724050 13743 20120927 75.0 24 62.2 24 1020.1 23 1017.8 24 9.8 24 5.1 24 15.9 21.0 84.9 64.9 0.05G 999.9 010010 724050 13743 20120928 72.4 24 62.8 24 1017.4 21 1015.4 24 8.8 24 5.8 24 11.1 17.1 79.0* 66.2* 0.73G 999.9 010010 724050 13743 20120929 65.9 24 48.4 24 1015.7 24 1013.3 24 10.0 24 8.4 24 13.0 15.0 81.0 59.0 0.24G 999.9 010000 724050 13743 20120930 63.4 24 46.5 24 1012.3 24 1010.0 24 10.0 24 5.6 24 17.1 28.9 73.9 54.0 0.00G 999.9 000000 724050 13743 20121001 61.8 24 49.1 24 1013.7 24 1011.4 24 10.0 24 3.4 24 8.9 999.9 73.9 54.0 0.00G 999.9 010000 724050 13743 20121002 67.6 24 62.2 24 1013.4 18 1011.0 24 6.5 24 4.1 24 9.9 21.0 72.0 54.0 0.08G 999.9 010000 724050 13743 20121003 73.8 24 68.4 24 1017.1 20 1014.2 24 5.1 24 2.9 24 7.0 999.9 82.0 64.9 0.35G 999.9 110000 724050 13743 20121004 75.7 24 66.7 24 1019.8 24 1017.6 24 9.6 24 3.5 24 12.0 999.9 82.0 70.0 0.01G 999.9 010000 724050 13743 20121005 71.8 24 55.9 24 1019.4 24 1016.9 24 10.0 24 3.1 24 8.9 999.9 82.9 61.0 0.00I 999.9 000000 724050 13743 20121006 68.1 24 57.3 24 1013.2 24 1010.9 24 10.0 24 9.9 24 19.0 26.0 82.9 59.0 0.00G 999.9 000000 724050 13743 20121007 54.5 24 42.9 24 1018.7 22 1016.3 24 9.3 24 5.5 24 8.9 999.9 59.0* 51.1* 0.00G 999.9 010000 724050 13743 20121008 49.9 24 41.8 24 1023.9 24 1021.6 24 10.0 24 6.1 24 9.9 999.9 55.9 45.0 0.11G 999.9 010000 724050 13743 20121009 54.0 24 46.5 24 1022.0 20 1019.7 24 9.2 24 7.5 24 11.1 999.9 64.4* 48.0* 0.13G 999.9 010000 724050 13743 20121010 61.9 24 50.3 24 1015.7 20 1013.6 24 8.7 24 4.6 24 21.0 28.0 71.1 48.0 0.09G 999.9 010000 724050 13743 20121011 56.4 24 34.8 24 1022.5 24 1020.1 24 10.0 24 8.9 24 21.0 25.1 71.1 48.9 0.00G 999.9 000000 724050 13743 20121012 55.6 24 39.1 24 1023.1 24 1020.7 24 10.0 24 8.0 24 17.1 26.0 66.9 46.0 0.00G 999.9 000000 724050 13743 20121013 50.8 24 31.4 24 1031.4 24 1029.1 24 10.0 24 5.9 24 11.1 999.9 66.9 41.0 0.00G 999.9 000000 724050 13743 20121014 60.1 24 45.6 24 1023.2 24 1020.8 24 10.0 24 9.0 24 15.9 25.1 75.9 41.0 0.00G 999.9 000000 724050 13743 20121015 67.6 24 57.9 24 1010.2 23 1007.7 24 9.8 24 10.7 24 15.9 21.0 75.9 52.0 0.00G 999.9 010000 724050 13743 20121016 59.1 24 43.3 24 1011.2 24 1008.9 24 9.9 24 8.4 24 15.0 20.0 72.0 51.1 0.06G 999.9 010000 724050 13743 20121017 56.4 24 44.0 24 1014.8 24 1012.3 24 10.0 24 2.3 24 8.0 999.9 69.1 46.0 0.00G 999.9 000000 724050 13743 20121018 61.5 24 52.2 24 1013.5 24 1011.2 24 10.0 24 8.5 24 13.0 20.0 72.0 46.0 0.00G 999.9 000000 724050 13743 20121019 67.3 24 60.6 24 1007.3 19 1004.8 24 9.5 24 5.2 24 13.0 20.0 75.9 54.0 0.07G 999.9 010000 724050 13743 20121020 60.2 24 47.0 24 1007.2 24 1005.0 24 10.0 24 4.1 24 9.9 15.9 75.9 51.1 0.17G 999.9 000000 724050 13743 20121021 57.8 24 38.7 24 1016.7 24 1014.3 24 10.0 24 6.5 24 12.0 15.9 69.1 48.9 0.00G 999.9 000000 724050 13743 20121022 59.0 24 40.6 24 1021.3 24 1019.0 24 10.0 24 3.1 24 7.0 999.9 73.0 48.0 0.00G 999.9 000000 724050 13743 20121023 63.2 24 50.0 24 1019.6 24 1017.1 24 10.0 24 3.6 24 8.0 999.9 78.1 48.0 0.00G 999.9 000000 724050 13743 20121024 67.9 24 54.5 24 1018.9 24 1016.6 24 10.0 24 2.6 24 8.9 999.9 84.0 52.0 0.00G 999.9 000000 724050 13743 20121025 66.6 24 58.4 24 1021.6 22 1019.3 24 7.6 24 4.5 24 7.0 999.9 84.0 59.0 0.00G 999.9 000000 724050 13743 20121026 65.1 24 58.8 24 1021.2 21 1019.0 24 7.9 24 4.9 24 7.0 999.9 71.1 62.1 0.00G 999.9 000000 724050 13743 20121027 63.4 24 54.7 24 1015.4 24 1013.1 24 10.0 24 7.6 24 11.1 999.9 71.1 59.0 0.00G 999.9 000000 724050 13743 20121028 60.3 24 48.4 24 1008.4 24 1006.2 24 9.5 24 13.5 24 20.0 25.1 70.0 54.0 0.00G 999.9 010000 724050 13743 20121029 52.6 24 48.6 24 993.9 21 991.4 24 6.1 24 18.4 24 33.0 49.9 61.0 48.9 0.87G 999.9 010000 724050 13743 20121030 44.3 24 40.0 24 985.2 16 982.9 23 7.3 24 15.4 24 33.0 52.1 55.0 42.1 3.79G 999.9 010000 724050 13743 20121031 46.3 24 38.1 24 1000.4 24 998.1 24 10.0 24 5.9 24 9.9 14.0 55.0 42.1 0.18G 999.9 000000 724050 13743 20121101 49.0 24 34.6 24 1005.3 24 1003.0 24 10.0 24 5.1 24 8.0 15.0 55.0 43.0 0.00G 999.9 010000 724050 13743 20121102 48.1 24 31.4 24 1008.6 24 1006.3 24 10.0 24 8.8 24 18.1 24.1 55.0 41.0 0.00G 999.9 000000 724050 13743 20121103 47.2 24 28.5 24 1015.7 24 1013.4 24 10.0 24 11.3 24 17.1 28.0 55.0 41.0 0.00G 999.9 000000 724050 13743 20121104 45.3 24 29.4 24 1018.3 24 1016.0 24 10.0 24 5.6 24 12.0 14.0 53.1 37.9 0.00G 999.9 000000 724050 13743 20121105 44.9 24 26.6 24 1018.8 24 1016.5 24 10.0 24 8.9 24 13.0 17.1 53.1 37.9 0.00G 999.9 000000 724050 13743 20121106 40.9 24 26.0 24 1021.8 24 1019.5 24 10.0 24 6.1 24 11.1 999.9 50.0 34.0 0.00G 999.9 000000 724050 13743 20121107 42.4 24 27.4 24 1014.7 24 1012.5 24 10.0 24 10.6 24 14.0 19.0 48.0 34.0 0.00G 999.9 011000 724050 13743 20121108 46.0 24 19.8 24 1013.9 23 1011.5 24 10.0 24 12.2 24 21.0 26.0 55.9 39.9 0.03G 999.9 011000 724050 13743 20121109 48.8 24 28.7 24 1020.6 24 1018.2 24 10.0 24 10.0 24 17.1 22.9 57.9 39.0 0.01G 999.9 000000 724050 13743 20121110 49.5 24 37.8 24 1025.5 24 1023.2 24 9.7 24 2.3 24 7.0 999.9 64.9 37.9 0.00G 999.9 000000 724050 13743 20121111 53.2 24 40.7 24 1029.5 24 1027.1 24 9.7 24 3.7 24 8.0 999.9 71.1 37.9 0.00G 999.9 000000 724050 13743 20121112 57.8 24 48.5 24 1028.4 24 1026.0 24 9.9 24 5.8 24 9.9 999.9 72.0 43.0 0.00G 999.9 000000 724050 13743 20121113 51.3 24 41.7 24 1026.4 23 1023.7 24 8.7 24 11.3 24 22.9 29.9 72.0 43.0 0.36G 999.9 010000 724050 13743 20121114 41.9 24 26.0 24 1033.1 24 1030.7 24 10.0 24 9.3 24 14.0 21.0 54.0 36.0 0.15G 999.9 000000 724050 13743 20121115 44.0 24 31.3 24 1029.4 24 1027.2 24 10.0 24 5.1 24 8.9 999.9 51.1 36.0 0.00G 999.9 000000 724050 13743 20121116 46.5 24 30.8 24 1027.4 24 1025.0 24 10.0 24 5.5 24 9.9 999.9 55.0 39.0 0.00G 999.9 000000 724050 13743 20121117 45.5 24 28.1 24 1033.5 24 1031.1 24 10.0 24 7.4 24 11.1 15.0 55.0 36.0 0.00G 999.9 000000 724050 13743 20121118 45.8 24 35.8 24 1035.7 24 1033.4 24 10.0 24 7.4 24 12.0 18.1 55.0 36.0 0.00G 999.9 000000 724050 13743 20121119 49.9 24 38.0 24 1030.9 24 1028.5 24 10.0 24 8.4 24 11.1 999.9 57.0 39.9 0.00G 999.9 000000 724050 13743 20121120 49.6 24 38.3 24 1022.5 24 1020.1 24 10.0 24 4.4 24 9.9 999.9 57.0* 44.6* 0.00G 999.9 000000 724050 13743 20121121 47.9 24 35.6 24 1021.8 24 1019.4 24 9.1 24 3.5 24 8.0 999.9 57.9 39.0 0.00G 999.9 000000 724050 13743 20121122 46.7 24 30.0 24 1023.9 24 1021.6 24 10.0 24 2.4 24 7.0 999.9 60.1 35.1 0.00G 999.9 000000 724050 13743 20121123 46.9 24 33.5 24 1017.0 24 1014.7 24 10.0 24 3.2 24 9.9 999.9 61.0 35.1 0.00G 999.9 000000 724050 13743 20121124 44.8 24 21.8 24 1013.1 24 1010.8 24 10.0 24 14.1 24 22.0 29.9 61.0 37.0 0.00G 999.9 000000 724050 13743 20121125 37.7 24 18.1 24 1017.4 24 1015.1 24 10.0 24 7.3 24 13.0 18.1 46.9 33.1 0.00G 999.9 000000 724050 13743 20121126 42.3 24 25.5 24 1019.3 24 1017.0 24 10.0 24 1.7 24 11.1 999.9 55.9 32.0 0.00G 999.9 000000 724050 13743 20121127 43.4 24 35.6 24 1022.9 22 1020.6 24 8.4 24 6.8 24 14.0 999.9 55.9 32.0 0.00G 999.9 010000 724050 13743 20121128 41.8 24 26.8 24 1025.5 24 1023.2 24 10.0 24 8.4 24 14.0 22.9 50.0 36.0 0.06G 999.9 000000 724050 13743 20121129 41.0 24 23.9 24 1029.5 24 1027.1 24 10.0 24 4.4 24 9.9 999.9 50.0 30.9 0.01G 999.9 000000 724050 13743 20121130 42.1 24 29.8 24 1027.9 24 1025.5 24 9.8 24 2.7 24 7.0 999.9 54.0 31.1 0.00G 999.9 000000 724050 13743 20121201 42.6 24 36.0 24 1028.7 20 1026.8 24 7.0 24 2.5 24 8.9 999.9 54.0 34.0 0.00G 999.9 000000 724050 13743 20121202 44.9 24 39.9 24 1026.6 22 1024.8 24 5.1 24 2.5 24 8.9 999.9 57.0 37.0 0.00G 999.9 010000 724050 13743 20121203 56.0 24 48.4 24 1022.6 24 1020.3 24 9.6 24 3.7 24 8.0 999.9 71.1 37.0 0.02G 999.9 000000 724050 13743 20121204 57.9 24 50.0 24 1022.8 24 1020.5 24 9.9 24 5.2 24 9.9 999.9 72.0 44.1 0.00G 999.9 000000 724050 13743 20121205 58.1 24 40.3 24 1019.4 24 1016.8 24 10.0 24 10.4 24 18.1 24.1 72.0 48.9 0.00G 999.9 010000 724050 13743 20121206 40.5 24 22.1 24 1027.0 24 1024.7 24 10.0 24 8.1 24 15.0 22.0 63.0 35.1 0.00G 999.9 000000 724050 13743 20121207 42.2 24 33.6 24 1022.3 22 1020.0 24 10.0 24 5.5 24 8.9 999.9 50.0 35.1 0.00G 999.9 010000 724050 13743 20121208 50.0 24 47.2 24 1014.6 21 1012.2 24 5.6 24 4.3 24 9.9 999.9 54.0 37.9 0.05G 999.9 110000 724050 13743 20121209 50.6 24 48.0 24 1019.0 17 1016.5 24 4.8 24 5.4 24 11.1 999.9 54.0 48.0 0.01G 999.9 110000 724050 13743 20121210 53.1 24 51.4 24 1010.1 14 1008.1 24 2.6 24 5.2 24 9.9 999.9 63.0* 48.2* 0.14G 999.9 110000 724050 13743 20121211 51.1 24 39.7 24 1011.1 24 1008.7 24 9.8 24 10.7 24 17.1 29.9 63.0 45.0 0.07G 999.9 010000 724050 13743 20121212 42.9 24 27.2 24 1027.1 24 1024.8 24 10.0 24 6.0 24 8.9 999.9 53.1 39.0 0.00I 999.9 000000 724050 13743 20121213 42.8 24 24.3 24 1030.4 24 1028.0 24 10.0 24 7.6 24 9.9 999.9 50.0 37.9 0.00G 999.9 000000 724050 13743 20121214 40.5 24 27.7 24 1027.1 24 1024.8 24 9.9 24 4.2 24 8.0 999.9 52.0 30.0 0.00G 999.9 000000 724050 13743 20121215 44.1 24 32.8 24 1024.5 24 1022.2 24 10.0 24 3.5 24 8.9 999.9 54.0 30.2 0.00G 999.9 000000 724050 13743 20121216 48.2 24 41.2 24 1017.5 23 1015.4 24 8.8 24 4.0 24 7.0 999.9 54.0 37.0 0.03G 999.9 010000 724050 13743 20121217 50.3 24 47.5 24 1009.8 19 1007.6 24 5.4 24 2.6 24 8.9 999.9 53.1 46.0 0.08G 999.9 010000 724050 13743 20121218 53.9 24 45.5 24 1003.0 22 1000.3 24 8.1 24 8.2 24 18.1 27.0 62.1 48.0 0.05G 999.9 010000 724050 13743 20121219 45.9 24 32.5 24 1012.2 24 1009.9 24 10.0 24 6.8 24 14.0 22.0 62.1 36.0 0.00G 999.9 000000 724050 13743 20121220 45.4 24 33.1 24 1020.4 24 1018.0 24 10.0 24 5.0 24 14.0 999.9 54.0 36.0 0.00G 999.9 010000 724050 13743 20121221 46.9 24 34.4 24 997.9 21 995.5 24 8.1 24 12.9 24 21.0 32.1 59.0 39.0 0.82G 999.9 010000 724050 13743 20121222 40.9 24 19.7 24 1006.8 24 1004.5 24 10.0 24 15.3 24 24.1 36.9 59.0 37.9 0.26G 999.9 000000 724050 13743 20121223 37.5 24 19.9 24 1016.7 24 1014.4 24 10.0 24 6.5 24 13.0 15.9 46.9 28.9 0.00G 999.9 000000 724050 13743 20121224 36.8 24 28.1 24 1016.5 23 1014.1 24 9.0 24 2.5 24 8.9 999.9 46.9 30.2 0.00G 999.9 011000 724050 13743 20121225 40.5 24 34.4 24 1018.4 16 1014.7 24 5.5 24 4.8 24 12.0 999.9 51.1 31.1 0.14G 999.9 010000 724050 13743 20121226 37.8 24 31.2 24 1018.8 17 1015.2 24 6.8 24 10.9 24 17.1 22.9 51.1 33.1 0.00G 999.9 011000 724050 13743 20121227 39.5 24 30.4 24 1005.2 20 1001.5 24 8.9 24 13.1 24 19.0 32.1 45.0 34.0 1.44G 999.9 010000 724050 13743 20121228 38.8 24 24.7 24 1018.3 24 1016.0 24 10.0 24 6.7 24 9.9 19.0 45.0 36.0 0.02G 999.9 000000 724050 13743 20121229 38.0 24 31.0 24 1012.2 19 1009.0 24 8.3 24 3.0 24 8.9 27.0 43.0* 33.8* 0.00G 999.9 011000 724050 13743 20121230 39.9 24 21.9 24 1016.1 24 1013.8 24 10.0 24 14.2 24 24.1 42.9 44.1 35.1 0.18G 999.9 000000 724050 13743 20121231 34.5 24 19.9 24 1024.7 24 1022.4 24 10.0 24 6.2 24 12.0 999.9 42.1 28.9 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/2012/722324-03071.op0000644000175000017500000014350514302004506016647 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20120101 47.6 20 24.0 20 9999.9 0 934.4 15 10.0 20 6.8 20 21.0 30.9 73.4* 32.7* 0.00G 999.9 000000 722324 03071 20120102 43.4 12 18.2 12 9999.9 0 938.3 12 10.0 12 2.1 12 5.1 999.9 53.8* 27.9* 0.00G 999.9 000000 722324 03071 20120103 52.6 15 22.2 15 9999.9 0 928.6 15 10.0 15 7.9 15 14.0 15.0 66.2* 37.6* 0.00G 999.9 000000 722324 03071 20120104 52.3 24 26.1 24 9999.9 0 925.4 24 10.0 24 10.1 24 20.0 24.1 64.0* 38.5* 0.00G 999.9 000000 722324 03071 20120105 51.1 15 25.0 15 9999.9 0 926.6 15 10.0 15 5.4 15 11.1 14.0 64.0* 33.1* 0.00G 999.9 000000 722324 03071 20120106 56.4 16 20.2 16 9999.9 0 915.2 16 10.0 16 10.3 16 18.1 22.0 72.5* 42.4* 0.00G 999.9 000000 722324 03071 20120107 49.5 18 25.4 18 9999.9 0 918.8 18 10.0 18 4.7 18 9.9 999.9 65.1* 33.3* 0.00G 999.9 000000 722324 03071 20120108 47.0 23 30.3 23 9999.9 0 917.2 23 10.0 23 4.8 23 14.0 19.0 56.1* 39.2* 0.00G 999.9 000000 722324 03071 20120109 38.0 22 33.3 22 9999.9 0 922.5 22 6.2 22 10.9 22 15.9 22.9 50.5* 33.4* 0.00G 999.9 011000 722324 03071 20120110 39.1 9 33.1 9 9999.9 0 920.2 9 5.5 9 7.7 9 13.0 15.0 46.4* 34.0* 0.07G 999.9 001000 722324 03071 20120111 47.5 24 34.1 24 9999.9 0 912.8 24 9.8 24 11.9 24 20.0 27.0 63.1* 40.1* 0.00G 999.9 000000 722324 03071 20120112 35.6 22 21.7 22 9999.9 0 924.0 22 10.0 22 8.1 22 15.0 25.1 48.7* 28.0* 0.00G 999.9 000000 722324 03071 20120113 38.6 24 22.9 24 9999.9 0 924.0 24 10.0 24 4.0 24 8.9 999.9 52.7* 30.7* 0.00G 999.9 000000 722324 03071 20120114 45.8 24 22.0 24 9999.9 0 925.5 24 10.0 24 5.5 24 9.9 999.9 65.7* 31.6* 0.00G 999.9 000000 722324 03071 20120115 52.2 24 24.1 24 9999.9 0 923.0 24 10.0 24 8.3 24 15.9 20.0 70.7* 40.8* 0.00G 999.9 000000 722324 03071 20120116 58.0 24 40.7 24 9999.9 0 917.8 24 9.2 24 9.2 24 13.0 17.1 71.8* 48.7* 0.00G 999.9 000000 722324 03071 20120117 53.7 24 32.0 24 9999.9 0 920.3 24 10.0 24 8.5 24 18.1 20.0 69.1* 44.1* 0.00G 999.9 000000 722324 03071 20120118 42.1 24 24.5 24 9999.9 0 924.6 24 10.0 24 6.9 24 14.0 18.1 67.8* 30.7* 0.00G 999.9 000000 722324 03071 20120119 60.3 24 24.9 24 9999.9 0 915.9 24 10.0 24 9.7 24 15.0 21.0 77.7* 49.6* 0.00G 999.9 000000 722324 03071 20120120 64.0 24 21.7 24 9999.9 0 912.2 24 10.0 24 10.6 24 20.0 25.1 81.9* 52.9* 0.00G 999.9 000000 722324 03071 20120121 51.7 24 23.2 24 9999.9 0 917.1 24 10.0 24 5.5 24 12.0 14.0 73.9* 34.9* 0.00G 999.9 000000 722324 03071 20120122 59.9 24 20.6 24 9999.9 0 909.9 24 9.1 24 15.0 24 34.0 42.0 68.9* 52.3* 0.00G 999.9 000000 722324 03071 20120123 50.7 24 20.7 24 9999.9 0 918.1 24 10.0 24 5.0 24 12.0 17.1 66.9* 36.9* 0.00G 999.9 000000 722324 03071 20120124 54.1 24 32.1 24 9999.9 0 913.5 24 8.9 24 8.8 24 20.0 26.0 64.0* 42.3* 0.00G 999.9 000000 722324 03071 20120125 47.2 24 41.9 24 9999.9 0 916.3 24 7.4 24 10.4 24 20.0 28.0 63.1* 39.2* 0.00G 999.9 010000 722324 03071 20120126 46.4 24 35.5 24 9999.9 0 919.2 24 9.9 24 7.3 24 15.0 19.0 65.5* 37.0* 0.29G 999.9 010000 722324 03071 20120127 56.3 24 32.6 24 9999.9 0 916.7 24 10.0 24 8.4 24 14.0 21.0 74.5* 45.3* 0.00G 999.9 000000 722324 03071 20120128 47.8 24 26.2 24 9999.9 0 927.4 24 10.0 24 9.2 24 18.1 25.1 68.9* 37.6* 0.00G 999.9 000000 722324 03071 20120129 45.8 24 25.6 24 9999.9 0 928.8 24 10.0 24 5.5 24 14.0 20.0 63.5* 35.1* 0.00G 999.9 000000 722324 03071 20120130 53.1 24 34.1 24 9999.9 0 922.2 24 10.0 24 9.5 24 15.0 19.0 70.7* 42.4* 0.00G 999.9 000000 722324 03071 20120131 57.6 24 41.7 24 9999.9 0 918.3 24 7.8 24 10.0 24 17.1 21.0 74.7* 45.9* 0.00G 999.9 000000 722324 03071 20120201 59.7 24 31.7 24 9999.9 0 921.5 18 10.0 24 5.7 24 12.0 18.1 73.4* 46.0* 0.00G 999.9 000000 722324 03071 20120202 55.2 24 34.4 24 9999.9 0 918.4 24 9.7 24 7.4 24 22.9 28.0 71.4* 41.4* 0.00G 999.9 000000 722324 03071 20120203 62.8 24 47.2 24 9999.9 0 914.1 24 8.8 24 12.7 24 20.0 25.1 68.2* 55.2* 0.00G 999.9 000000 722324 03071 20120204 46.2 23 29.2 23 9999.9 0 924.5 23 10.0 23 11.4 23 17.1 22.9 55.8* 39.9* 0.00G 999.9 000000 722324 03071 20120205 42.6 24 26.5 24 9999.9 0 929.1 24 10.0 24 9.2 24 15.9 20.0 52.0* 35.1* 0.00G 999.9 000000 722324 03071 20120206 44.3 24 26.0 24 9999.9 0 925.8 24 10.0 24 5.1 24 11.1 15.9 55.6* 39.2* 0.00G 999.9 000000 722324 03071 20120207 45.5 23 31.3 23 9999.9 0 921.8 23 10.0 23 7.9 23 17.1 22.9 54.7* 35.2* 0.00G 999.9 000000 722324 03071 20120208 39.8 16 26.2 16 9999.9 0 929.0 16 10.0 16 4.0 16 12.0 999.9 50.5* 27.1* 0.00G 999.9 000000 722324 03071 20120209 46.7 24 34.1 24 9999.9 0 922.8 24 10.0 24 5.8 24 13.0 18.1 63.7* 36.7* 0.00G 999.9 000000 722324 03071 20120210 49.5 24 34.6 24 9999.9 0 922.4 24 9.9 24 6.8 24 15.0 20.0 61.0* 37.0* 0.00G 999.9 000000 722324 03071 20120211 39.0 24 22.4 24 9999.9 0 927.4 24 9.9 24 9.9 24 19.0 25.1 56.3* 27.3* 0.00G 999.9 000000 722324 03071 20120212 30.7 24 17.0 24 9999.9 0 928.0 24 9.3 24 10.5 24 15.9 21.0 35.2* 27.5* 0.00G 999.9 011000 722324 03071 20120213 40.3 24 33.4 24 9999.9 0 915.9 24 6.8 24 10.4 24 20.0 26.0 65.7* 30.9* 0.04G 999.9 111000 722324 03071 20120214 55.0 24 30.8 24 9999.9 0 912.8 24 10.0 24 4.4 24 11.1 18.1 73.4* 37.6* 0.00G 999.9 000000 722324 03071 20120215 59.0 24 29.5 24 9999.9 0 914.9 24 10.0 24 10.1 24 21.0 26.0 68.7* 47.8* 0.00G 999.9 010000 722324 03071 20120216 45.0 24 30.8 24 9999.9 0 921.8 24 9.9 24 7.0 24 14.0 18.1 62.8* 36.0* 0.00G 999.9 010010 722324 03071 20120217 44.1 24 41.0 24 9999.9 0 920.1 24 6.2 24 5.1 24 8.0 999.9 53.1* 39.2* 0.03G 999.9 010000 722324 03071 20120218 47.4 24 43.6 24 9999.9 0 917.4 24 8.2 24 7.0 24 15.0 22.0 52.0* 44.6* 0.00G 999.9 010000 722324 03071 20120219 46.4 24 41.4 24 9999.9 0 918.9 24 7.5 24 6.8 24 17.1 24.1 63.0* 38.8* 0.03G 999.9 100000 722324 03071 20120220 55.4 24 34.2 24 9999.9 0 914.2 24 10.0 24 14.8 24 22.9 28.9 68.5* 45.5* 0.00G 999.9 000000 722324 03071 20120221 52.0 24 20.0 24 9999.9 0 920.1 24 9.8 24 6.2 24 15.0 22.9 73.9* 34.0* 0.00G 999.9 000000 722324 03071 20120222 62.1 24 18.1 24 9999.9 0 914.9 24 10.0 24 10.3 24 20.0 28.9 80.2* 45.9* 0.00G 999.9 000000 722324 03071 20120223 69.4 24 13.5 24 9999.9 0 906.9 24 10.0 24 15.7 24 24.1 32.1 83.8* 56.5* 0.00G 999.9 000000 722324 03071 20120224 49.5 24 19.3 24 9999.9 0 920.9 24 9.9 24 10.2 24 22.0 32.1 76.1* 36.0* 0.00G 999.9 000000 722324 03071 20120225 48.7 24 17.8 24 9999.9 0 925.9 24 10.0 24 10.1 24 21.0 27.0 63.3* 37.6* 0.00G 999.9 000000 722324 03071 20120226 54.3 24 29.6 24 9999.9 0 916.9 24 10.0 24 12.1 24 20.0 22.9 77.5* 41.0* 0.00G 999.9 000000 722324 03071 20120227 56.6 24 45.9 24 9999.9 0 919.2 24 9.0 24 8.0 24 15.0 18.1 72.7* 51.3* 0.00G 999.9 010000 722324 03071 20120228 65.8 24 51.8 24 9999.9 0 916.0 24 10.0 24 14.4 24 25.1 32.1 84.2* 58.1* 0.00G 999.9 000000 722324 03071 20120229 60.6 24 15.6 24 9999.9 0 918.4 24 9.0 24 5.9 24 17.1 26.0 80.6* 41.2* 0.00I 999.9 000000 722324 03071 20120301 62.6 24 10.8 24 9999.9 0 913.4 18 10.0 24 8.5 24 20.0 28.0 80.8* 41.9* 0.00G 999.9 000000 722324 03071 20120302 62.3 24 11.7 24 9999.9 0 910.3 24 10.0 24 8.7 24 17.1 22.9 77.7* 45.7* 0.00G 999.9 000000 722324 03071 20120303 49.4 24 22.3 24 9999.9 0 919.3 24 9.7 24 10.8 24 21.0 28.9 72.0* 35.1* 0.00G 999.9 000000 722324 03071 20120304 54.3 24 7.5 24 9999.9 0 922.1 24 10.0 24 5.2 24 11.1 18.1 75.7* 41.2* 0.00G 999.9 000000 722324 03071 20120305 58.3 24 18.4 24 9999.9 0 922.9 24 10.0 24 5.5 24 17.1 22.0 77.7* 39.4* 0.00G 999.9 000000 722324 03071 20120306 63.4 24 39.7 24 9999.9 0 917.5 24 10.0 24 15.2 24 24.1 31.1 74.3* 54.1* 0.00G 999.9 000000 722324 03071 20120307 65.5 24 48.8 24 9999.9 0 911.9 24 10.0 24 15.6 24 20.0 28.9 81.1* 56.3* 0.00G 999.9 000000 722324 03071 20120308 55.8 24 46.1 24 9999.9 0 916.4 24 8.3 24 12.2 24 27.0 33.0 79.7* 36.0* 0.00G 999.9 010000 722324 03071 20120309 37.7 24 29.7 24 9999.9 0 930.5 24 9.9 24 12.6 24 18.1 28.0 42.3* 35.6* 0.00G 999.9 010000 722324 03071 20120310 39.5 24 35.7 24 9999.9 0 925.0 24 6.9 24 6.3 24 13.0 15.9 43.2* 37.4* 0.02G 999.9 010000 722324 03071 20120311 49.4 24 36.0 24 9999.9 0 918.0 24 9.6 24 8.0 24 18.1 26.0 74.5* 38.8* 0.00G 999.9 000000 722324 03071 20120312 63.7 24 19.8 24 9999.9 0 917.2 24 10.0 24 8.3 24 14.0 24.1 80.6* 47.1* 0.00G 999.9 000000 722324 03071 20120313 66.9 24 38.7 24 9999.9 0 918.8 24 9.5 24 4.7 24 14.0 17.1 81.9* 51.6* 0.00G 999.9 000000 722324 03071 20120314 68.2 24 58.3 24 9999.9 0 918.0 24 8.2 24 7.9 24 15.0 21.0 79.7* 58.1* 0.00G 999.9 110000 722324 03071 20120315 69.1 24 56.1 24 9999.9 0 919.1 24 8.6 24 7.3 24 15.0 15.9 84.6* 58.3* 0.00G 999.9 000000 722324 03071 20120316 68.5 24 58.5 24 9999.9 0 918.1 24 9.5 24 10.8 24 21.0 26.0 79.0* 59.2* 0.00G 999.9 000000 722324 03071 20120317 70.8 24 54.7 23 9999.9 0 914.7 24 10.0 24 9.7 24 21.0 25.1 88.3* 60.8* 0.00G 999.9 000000 722324 03071 20120318 72.8 24 54.3 24 9999.9 0 911.8 24 10.0 24 16.5 24 25.1 31.1 85.5* 65.7* 0.00G 999.9 000000 722324 03071 20120319 62.8 24 47.5 24 9999.9 0 908.3 24 8.3 24 13.8 24 25.1 34.0 78.1* 53.2* 0.00G 999.9 010010 722324 03071 20120320 49.3 22 30.6 22 9999.9 0 910.2 22 10.0 22 12.8 22 28.0 41.0 57.4* 40.1* 0.15G 999.9 010000 722324 03071 20120321 50.4 24 32.3 24 9999.9 0 912.6 24 10.0 24 9.7 24 20.0 28.0 66.4* 42.1* 0.00G 999.9 010000 722324 03071 20120322 58.1 24 29.1 24 9999.9 0 913.4 24 10.0 24 7.8 24 19.0 24.1 77.2* 43.0* 0.00G 999.9 000000 722324 03071 20120323 59.4 24 37.4 24 9999.9 0 917.4 24 10.0 24 5.6 24 13.0 999.9 83.1* 43.0* 0.00G 999.9 000000 722324 03071 20120324 69.9 24 40.1 24 9999.9 0 917.2 24 10.0 24 3.5 24 9.9 999.9 90.9* 50.2* 0.00G 999.9 000000 722324 03071 20120325 74.0 24 42.6 24 9999.9 0 917.6 24 10.0 24 7.2 24 15.9 22.9 89.6* 54.3* 0.00G 999.9 000000 722324 03071 20120326 71.3 24 45.0 24 9999.9 0 917.0 24 10.0 24 11.2 24 19.0 26.0 84.9* 57.0* 0.00G 999.9 000000 722324 03071 20120327 74.2 24 49.2 24 9999.9 0 915.8 24 9.6 24 7.5 24 18.1 24.1 89.4* 60.3* 0.00G 999.9 000000 722324 03071 20120328 75.4 21 42.5 21 9999.9 0 916.4 21 10.0 21 6.9 21 17.1 22.9 87.3* 59.0* 0.00G 999.9 000000 722324 03071 20120329 74.3 24 45.7 24 9999.9 0 914.1 24 9.5 24 8.1 24 15.0 20.0 90.1* 61.0* 0.00G 999.9 000000 722324 03071 20120330 75.7 24 32.0 24 9999.9 0 912.3 24 10.0 24 8.8 24 15.0 22.0 90.9* 57.9* 0.00G 999.9 000000 722324 03071 20120331 75.5 24 17.6 24 9999.9 0 913.0 24 10.0 24 5.1 24 9.9 15.0 92.5* 56.7* 0.00G 999.9 000000 722324 03071 20120401 78.5 24 26.9 24 9999.9 0 909.7 18 10.0 24 8.8 24 17.1 25.1 93.4* 64.0* 0.00G 999.9 000000 722324 03071 20120402 76.0 24 30.7 24 9999.9 0 905.4 24 10.0 24 10.3 24 19.0 27.0 91.0* 64.6* 0.00G 999.9 000000 722324 03071 20120403 64.1 24 16.1 24 9999.9 0 911.4 24 10.0 24 9.4 24 20.0 25.1 75.7* 52.0* 0.00G 999.9 000000 722324 03071 20120404 60.5 24 32.2 24 9999.9 0 915.8 24 10.0 24 6.9 24 17.1 22.9 78.8* 45.1* 0.00G 999.9 000000 722324 03071 20120405 67.9 24 28.0 24 9999.9 0 913.4 24 10.0 24 2.7 24 8.0 999.9 90.0* 48.6* 0.00G 999.9 000000 722324 03071 20120406 74.4 24 43.3 24 9999.9 0 914.4 24 10.0 24 9.7 24 19.0 28.0 90.7* 58.6* 0.00G 999.9 000000 722324 03071 20120407 77.3 24 50.6 24 9999.9 0 917.5 24 10.0 24 7.9 24 25.1 35.9 89.2* 64.8* 0.00G 999.9 000000 722324 03071 20120408 66.8 24 50.0 24 9999.9 0 925.7 24 9.9 24 9.3 24 20.0 28.9 77.2* 56.1* 0.00G 999.9 010010 722324 03071 20120409 69.9 24 55.1 24 9999.9 0 922.6 24 10.0 24 7.5 24 17.1 22.0 83.7* 60.6* 0.00G 999.9 000000 722324 03071 20120410 73.4 24 53.5 24 9999.9 0 919.5 24 10.0 24 7.9 24 15.0 22.0 86.2* 62.4* 0.00G 999.9 010000 722324 03071 20120411 71.5 24 54.3 24 9999.9 0 918.9 24 9.8 24 9.9 24 19.0 26.0 82.2* 59.9* 0.00G 999.9 010000 722324 03071 20120412 71.9 24 54.5 24 9999.9 0 915.2 24 10.0 24 13.6 24 21.0 27.0 87.4* 64.4* 0.01G 999.9 010000 722324 03071 20120413 75.8 24 55.9 24 9999.9 0 913.1 24 9.9 24 9.7 24 17.1 24.1 88.0* 68.4* 0.00G 999.9 000000 722324 03071 20120414 77.5 24 57.8 24 9999.9 0 908.1 24 10.0 24 18.3 24 27.0 34.0 89.8* 69.8* 0.00G 999.9 000000 722324 03071 20120415 68.9 24 29.1 24 9999.9 0 910.1 24 9.6 24 14.5 24 27.0 35.9 85.3* 53.4* 0.00G 999.9 010000 722324 03071 20120416 63.6 24 20.7 24 9999.9 0 919.1 24 9.7 24 6.1 24 15.0 18.1 77.4* 47.1* 0.00G 999.9 000000 722324 03071 20120417 66.1 24 37.5 24 9999.9 0 923.5 24 10.0 24 8.2 24 12.0 22.0 81.9* 52.7* 0.00G 999.9 000000 722324 03071 20120418 72.5 24 36.8 24 9999.9 0 920.1 24 10.0 24 11.6 24 18.1 22.9 89.8* 59.0* 0.00G 999.9 000000 722324 03071 20120419 77.4 24 36.8 24 9999.9 0 913.7 24 10.0 24 10.2 24 17.1 22.0 92.5* 65.3* 0.00G 999.9 000000 722324 03071 20120420 73.9 24 39.3 24 9999.9 0 915.5 24 9.6 24 11.3 24 19.0 24.1 90.1* 61.7* 0.00G 999.9 000000 722324 03071 20120421 68.3 24 36.3 24 9999.9 0 920.2 24 10.0 24 6.5 24 12.0 19.0 87.1* 53.6* 0.00G 999.9 000000 722324 03071 20120422 75.6 24 34.1 24 9999.9 0 919.8 24 10.0 24 5.2 24 12.0 20.0 91.4* 54.9* 0.00G 999.9 000000 722324 03071 20120423 72.2 24 36.0 24 9999.9 0 922.8 24 10.0 24 11.2 24 17.1 22.0 89.4* 57.7* 0.00G 999.9 000000 722324 03071 20120424 74.4 24 40.5 24 9999.9 0 917.7 24 10.0 24 6.0 24 11.1 19.0 95.9* 57.9* 0.00G 999.9 000000 722324 03071 20120425 85.5 24 38.2 24 9999.9 0 913.0 24 10.0 24 10.0 24 15.9 22.0 103.3* 67.3* 0.00G 999.9 000000 722324 03071 20120426 86.4 24 34.3 24 9999.9 0 912.8 24 10.0 24 5.9 24 12.0 15.9 100.2* 69.6* 0.00G 999.9 000000 722324 03071 20120427 81.9 24 31.6 24 9999.9 0 911.1 24 9.9 24 8.1 24 17.1 25.1 95.4* 66.6* 0.00G 999.9 000000 722324 03071 20120428 81.7 24 37.2 24 9999.9 0 910.1 24 10.0 24 6.0 24 17.1 22.9 97.2* 60.6* 0.00G 999.9 000000 722324 03071 20120429 78.7 24 57.5 24 9999.9 0 911.7 24 10.0 24 11.1 24 19.0 25.1 91.4* 71.1* 0.00G 999.9 000000 722324 03071 20120430 76.8 24 59.5 24 9999.9 0 914.4 24 10.0 24 9.8 24 26.0 32.1 93.7* 64.4* 0.00G 999.9 010010 722324 03071 20120501 78.8 24 50.6 24 9999.9 0 912.3 18 9.8 24 10.3 24 18.1 30.9 97.5* 64.9* 0.03G 999.9 000000 722324 03071 20120502 81.4 24 55.1 24 9999.9 0 911.8 24 9.8 24 10.2 24 22.0 28.0 98.2* 69.4* 0.00G 999.9 000000 722324 03071 20120503 84.0 24 45.6 24 9999.9 0 913.9 24 10.0 24 6.8 24 17.1 22.9 98.1* 71.2* 0.00G 999.9 000000 722324 03071 20120504 84.7 24 38.6 24 9999.9 0 915.4 24 10.0 24 7.7 24 18.1 24.1 99.7* 70.9* 0.00G 999.9 000000 722324 03071 20120505 86.5 24 43.1 24 9999.9 0 913.8 24 9.9 24 8.5 24 13.0 21.0 99.0* 72.5* 0.00G 999.9 000000 722324 03071 20120506 84.9 24 27.0 22 9999.9 0 913.3 24 10.0 24 7.5 24 14.0 20.0 97.5* 71.8* 0.00G 999.9 000000 722324 03071 20120507 76.1 24 46.7 24 9999.9 0 915.4 24 10.0 24 10.4 24 20.0 25.1 95.9* 64.6* 0.00G 999.9 000000 722324 03071 20120508 63.4 24 54.2 24 9999.9 0 919.3 24 10.0 24 11.8 24 18.1 21.0 73.4* 56.3* 0.01G 999.9 010010 722324 03071 20120509 66.1 24 46.6 24 9999.9 0 920.7 24 10.0 24 5.1 24 12.0 15.0 80.1* 57.0* 0.08G 999.9 000000 722324 03071 20120510 65.2 24 54.1 24 9999.9 0 915.3 24 8.8 24 7.9 24 15.9 21.0 78.4* 59.2* 0.00G 999.9 010010 722324 03071 20120511 63.0 24 53.8 24 9999.9 0 914.3 24 9.8 24 4.3 24 9.9 999.9 72.3* 57.9* 1.99G 999.9 010000 722324 03071 20120512 64.0 24 52.2 24 9999.9 0 922.8 24 10.0 24 7.1 24 15.0 22.0 74.5* 57.7* 0.00G 999.9 000000 722324 03071 20120513 67.0 24 52.4 24 9999.9 0 925.0 24 9.9 24 5.7 24 13.0 18.1 77.7* 57.2* 0.00G 999.9 000000 722324 03071 20120514 66.0 24 55.4 24 9999.9 0 922.4 24 9.8 24 6.8 24 17.1 21.0 75.7* 60.1* 0.07G 999.9 010010 722324 03071 20120515 64.5 24 52.0 24 9999.9 0 922.5 24 9.8 24 5.0 24 19.0 22.0 77.9* 55.8* 0.07G 999.9 010000 722324 03071 20120516 71.3 24 45.8 24 9999.9 0 921.9 24 10.0 24 3.8 24 8.9 999.9 84.6* 58.3* 0.00G 999.9 000000 722324 03071 20120517 75.3 24 44.6 24 9999.9 0 918.7 24 10.0 24 7.3 24 15.0 19.0 87.6* 60.8* 0.00G 999.9 000000 722324 03071 20120518 78.1 24 48.5 24 9999.9 0 913.1 24 10.0 24 12.4 24 18.1 22.0 94.1* 66.6* 0.00G 999.9 000000 722324 03071 20120519 80.5 24 52.1 24 9999.9 0 912.1 24 10.0 24 12.6 24 18.1 25.1 95.4* 69.1* 0.00G 999.9 000000 722324 03071 20120520 78.6 24 55.8 24 9999.9 0 917.3 24 10.0 24 8.9 24 15.9 22.0 93.4* 67.1* 0.00G 999.9 000000 722324 03071 20120521 77.8 24 56.0 24 9999.9 0 922.5 24 10.0 24 8.3 24 14.0 20.0 87.6* 66.4* 0.00G 999.9 000000 722324 03071 20120522 77.3 24 54.1 24 9999.9 0 919.1 24 10.0 24 9.2 24 18.1 24.1 92.1* 63.9* 0.00G 999.9 000000 722324 03071 20120523 84.1 24 47.3 24 9999.9 0 908.9 24 10.0 24 11.1 24 15.9 22.0 101.5* 71.2* 0.00G 999.9 000000 722324 03071 20120524 88.3 24 39.0 24 9999.9 0 905.6 24 10.0 24 11.6 24 17.1 25.1 100.0* 75.6* 0.00G 999.9 000000 722324 03071 20120525 86.7 24 49.0 24 9999.9 0 909.5 24 10.0 24 8.2 24 19.0 26.0 98.8* 75.7* 0.00G 999.9 000000 722324 03071 20120526 82.7 24 60.2 24 9999.9 0 914.4 24 10.0 24 16.0 24 22.9 29.9 92.1* 75.0* 0.00G 999.9 000000 722324 03071 20120527 81.5 24 59.2 24 9999.9 0 914.0 24 10.0 24 12.7 24 22.0 28.9 91.8* 73.2* 0.00G 999.9 000000 722324 03071 20120528 82.4 24 63.2 24 9999.9 0 913.9 24 10.0 24 8.0 24 15.0 20.0 97.5* 71.8* 0.00G 999.9 000000 722324 03071 20120529 86.2 24 57.2 24 9999.9 0 914.3 24 10.0 24 8.2 24 14.0 19.0 101.1* 71.8* 0.00G 999.9 000000 722324 03071 20120530 88.8 24 40.8 24 9999.9 0 912.5 24 10.0 24 8.5 24 17.1 22.9 102.4* 76.1* 0.00G 999.9 000000 722324 03071 20120531 83.4 24 52.7 24 9999.9 0 911.7 24 10.0 24 11.5 24 22.0 29.9 100.6* 73.0* 0.00G 999.9 000000 722324 03071 20120601 78.7 24 57.8 24 9999.9 0 917.8 18 10.0 24 10.8 24 15.9 21.0 92.1* 67.3* 0.00G 999.9 000000 722324 03071 20120602 83.2 24 57.4 24 9999.9 0 914.7 24 10.0 24 8.6 24 14.0 21.0 97.9* 70.9* 0.00G 999.9 000000 722324 03071 20120603 86.2 24 53.6 24 9999.9 0 913.3 24 10.0 24 11.9 24 18.1 24.1 97.5* 75.2* 0.00G 999.9 000000 722324 03071 20120604 86.5 24 54.8 24 9999.9 0 913.0 24 10.0 24 8.4 24 15.0 22.0 100.8* 71.2* 0.00G 999.9 000000 722324 03071 20120605 80.3 24 54.9 24 9999.9 0 914.4 24 9.7 24 7.2 24 20.0 24.1 96.8* 70.2* 0.00G 999.9 000000 722324 03071 20120606 82.1 24 56.7 24 9999.9 0 913.2 24 10.0 24 10.5 24 19.0 25.1 96.4* 70.7* 0.00G 999.9 000000 722324 03071 20120607 79.9 24 58.8 24 9999.9 0 914.3 24 10.0 24 11.6 24 19.0 25.1 91.2* 68.5* 0.00G 999.9 000000 722324 03071 20120608 77.6 24 60.3 24 9999.9 0 917.2 24 10.0 24 10.5 24 15.9 22.0 89.1* 68.4* 0.00G 999.9 000000 722324 03071 20120609 83.1 24 55.4 24 9999.9 0 912.5 24 10.0 24 9.0 24 15.0 18.1 104.4* 68.9* 0.00G 999.9 000000 722324 03071 20120610 92.1 24 43.1 24 9999.9 0 909.6 24 10.0 24 10.9 24 17.1 22.0 105.4* 78.8* 0.00G 999.9 000000 722324 03071 20120611 93.2 24 36.0 24 9999.9 0 913.4 24 10.0 24 6.7 24 13.0 21.0 106.3* 81.3* 0.00G 999.9 000000 722324 03071 20120612 85.1 24 57.0 24 9999.9 0 917.7 24 9.8 24 8.7 24 20.0 28.0 98.1* 73.0* 0.00G 999.9 000000 722324 03071 20120613 82.0 20 62.4 20 9999.9 0 916.6 20 9.9 20 14.6 20 22.0 28.9 92.5* 67.1* 0.05G 999.9 010010 722324 03071 20120614 86.2 24 60.1 24 9999.9 0 913.1 24 10.0 24 9.3 24 17.1 24.1 100.0* 74.1* 0.00G 999.9 000000 722324 03071 20120615 85.8 24 56.9 24 9999.9 0 914.1 24 10.0 24 12.1 24 22.0 26.0 99.1* 71.2* 0.00G 999.9 000000 722324 03071 20120616 84.8 24 53.9 24 9999.9 0 917.4 24 9.8 24 10.1 24 17.1 21.0 96.8* 71.2* 0.00G 999.9 000000 722324 03071 20120617 83.0 24 55.6 24 9999.9 0 918.6 24 9.9 24 8.2 24 26.0 33.0 97.0* 71.4* 0.00G 999.9 010000 722324 03071 20120618 87.0 24 55.7 24 9999.9 0 911.2 24 10.0 24 11.2 24 19.0 24.1 103.1* 73.8* 0.00G 999.9 000000 722324 03071 20120619 88.9 23 57.2 23 9999.9 0 909.3 23 10.0 23 16.2 23 22.9 28.0 100.4* 74.8* 0.00G 999.9 000000 722324 03071 20120620 86.3 24 59.6 24 9999.9 0 911.2 24 10.0 24 15.9 24 21.0 28.9 98.1* 75.2* 0.00G 999.9 000000 722324 03071 20120621 85.6 24 57.6 24 9999.9 0 916.9 24 10.0 24 11.2 24 15.9 21.0 96.4* 73.8* 0.00G 999.9 000000 722324 03071 20120622 83.2 24 58.5 24 9999.9 0 918.6 24 10.0 24 7.2 24 25.1 35.0 95.4* 73.4* 0.00G 999.9 010010 722324 03071 20120623 86.0 24 51.7 24 9999.9 0 916.3 24 10.0 24 8.4 24 14.0 22.9 96.3* 73.8* 0.00G 999.9 000000 722324 03071 20120624 86.7 24 50.7 24 9999.9 0 917.8 24 10.0 24 7.8 24 14.0 19.0 98.1* 73.6* 0.00G 999.9 000000 722324 03071 20120625 89.0 24 49.5 24 9999.9 0 918.1 24 10.0 24 5.1 24 9.9 15.0 102.6* 73.4* 0.00G 999.9 000000 722324 03071 20120626 92.0 24 45.2 24 9999.9 0 915.6 24 10.0 24 4.6 24 12.0 15.9 106.0* 76.1* 0.00G 999.9 000000 722324 03071 20120627 94.8 24 44.8 24 9999.9 0 915.0 24 10.0 24 6.3 24 13.0 18.1 105.4* 80.2* 0.00G 999.9 000000 722324 03071 20120628 91.9 24 49.9 24 9999.9 0 917.8 24 10.0 24 7.9 24 14.0 18.1 102.9* 79.2* 0.00G 999.9 000000 722324 03071 20120629 89.9 24 49.5 24 9999.9 0 917.4 24 10.0 24 8.0 24 13.0 18.1 100.4* 76.6* 0.00G 999.9 000000 722324 03071 20120630 88.7 24 51.6 24 9999.9 0 914.9 24 10.0 24 8.6 24 14.0 18.1 99.0* 77.5* 0.00G 999.9 000000 722324 03071 20120701 85.7 24 56.9 24 9999.9 0 916.5 18 10.0 24 9.2 24 15.0 21.0 98.6* 74.3* 0.00G 999.9 000000 722324 03071 20120702 81.7 24 60.1 24 9999.9 0 917.7 24 10.0 24 11.7 24 18.1 24.1 91.6* 72.3* 0.00G 999.9 000000 722324 03071 20120703 84.8 24 60.7 24 9999.9 0 917.0 24 10.0 24 12.1 24 18.1 22.9 95.4* 76.5* 0.00G 999.9 000000 722324 03071 20120704 86.8 24 58.3 24 9999.9 0 916.0 24 10.0 24 12.5 24 22.0 34.0 96.4* 78.3* 0.00G 999.9 010010 722324 03071 20120705 81.8 24 58.7 24 9999.9 0 917.5 24 10.0 24 10.8 24 21.0 29.9 92.7* 73.9* 0.00G 999.9 010010 722324 03071 20120706 80.1 24 58.8 24 9999.9 0 919.3 24 10.0 24 8.5 24 17.1 22.0 95.7* 69.6* 0.00G 999.9 010000 722324 03071 20120707 86.4 24 53.7 24 9999.9 0 920.2 24 10.0 24 4.6 24 11.1 15.9 97.3* 72.7* 0.00G 999.9 000000 722324 03071 20120708 87.9 24 54.5 24 9999.9 0 919.4 24 10.0 24 4.5 24 15.0 21.0 99.0* 75.2* 0.00G 999.9 000000 722324 03071 20120709 82.4 24 60.9 24 9999.9 0 919.9 24 10.0 24 7.5 24 14.0 21.0 92.7* 71.4* 0.00G 999.9 000000 722324 03071 20120710 81.8 24 63.3 24 9999.9 0 919.3 24 10.0 24 7.2 24 15.0 17.1 91.0* 75.2* 0.00G 999.9 000000 722324 03071 20120711 76.3 24 66.1 24 9999.9 0 920.1 24 9.1 24 6.0 24 15.0 26.0 90.1* 70.2* 0.06G 999.9 010010 722324 03071 20120712 83.3 24 59.7 24 9999.9 0 919.2 24 10.0 24 4.7 24 13.0 17.1 94.5* 72.3* 0.04G 999.9 000000 722324 03071 20120713 85.8 24 53.6 24 9999.9 0 919.2 24 10.0 24 4.6 24 8.9 15.9 97.5* 73.6* 0.00G 999.9 000000 722324 03071 20120714 86.2 24 54.5 24 9999.9 0 919.3 24 10.0 24 5.0 24 12.0 15.9 97.7* 74.1* 0.00G 999.9 000000 722324 03071 20120715 86.5 24 52.7 24 9999.9 0 919.2 24 10.0 24 5.7 24 11.1 17.1 96.8* 74.3* 0.00G 999.9 000000 722324 03071 20120716 82.0 24 57.8 24 9999.9 0 917.4 24 9.5 24 10.0 24 27.0 36.9 95.5* 70.5* 0.00G 999.9 010010 722324 03071 20120717 81.0 24 60.9 24 9999.9 0 916.5 24 9.9 24 9.7 24 22.9 28.9 95.4* 75.2* 0.76G 999.9 010000 722324 03071 20120718 85.0 24 59.0 24 9999.9 0 917.6 24 10.0 24 11.1 24 15.0 21.0 95.7* 74.5* 0.00G 999.9 000000 722324 03071 20120719 83.1 24 58.1 24 9999.9 0 920.8 24 10.0 24 9.2 24 17.1 22.9 93.9* 70.7* 0.00G 999.9 000000 722324 03071 20120720 85.3 24 59.7 24 9999.9 0 922.0 24 10.0 24 8.0 24 14.0 19.0 96.4* 75.4* 0.00G 999.9 000000 722324 03071 20120721 88.6 24 56.0 24 9999.9 0 920.6 24 10.0 24 4.3 24 8.9 999.9 98.8* 77.2* 0.00G 999.9 000000 722324 03071 20120722 88.5 24 53.4 24 9999.9 0 918.9 24 9.9 24 3.0 24 12.0 18.1 99.5* 75.2* 0.00G 999.9 010000 722324 03071 20120723 87.9 24 53.5 24 9999.9 0 919.5 24 10.0 24 8.7 24 25.1 29.9 98.2* 78.6* 0.01G 999.9 000000 722324 03071 20120724 83.9 24 60.2 24 9999.9 0 919.2 24 10.0 24 11.2 24 20.0 25.1 97.3* 74.3* 0.00G 999.9 000000 722324 03071 20120725 88.7 24 56.7 24 9999.9 0 915.9 24 10.0 24 10.5 24 17.1 21.0 101.7* 78.4* 0.00G 999.9 000000 722324 03071 20120726 87.1 24 58.1 24 9999.9 0 914.5 24 9.6 24 8.4 24 22.0 27.0 97.9* 77.4* 0.00G 999.9 010010 722324 03071 20120727 77.7 24 66.5 24 9999.9 0 918.8 24 10.0 24 6.8 24 18.1 22.9 89.8* 72.0* 0.11G 999.9 010000 722324 03071 20120728 81.0 23 64.5 23 9999.9 0 922.2 23 9.9 23 6.0 23 14.0 18.1 94.8* 73.8* 0.03G 999.9 010000 722324 03071 20120729 87.1 17 56.7 17 9999.9 0 921.7 17 10.0 17 8.2 17 14.0 20.0 98.6* 76.1* 0.00G 999.9 000000 722324 03071 20120730 88.8 24 49.6 24 9999.9 0 919.6 24 10.0 24 6.8 24 14.0 20.0 98.8* 77.4* 0.00G 999.9 000000 722324 03071 20120731 90.3 24 52.4 24 9999.9 0 918.8 24 10.0 24 5.9 24 12.0 19.0 100.9* 77.7* 0.00G 999.9 000000 722324 03071 20120801 92.0 24 50.1 24 9999.9 0 918.2 18 10.0 24 6.8 24 12.0 20.0 102.9* 79.5* 0.00I 999.9 000000 722324 03071 20120802 92.7 24 47.2 24 9999.9 0 915.5 24 10.0 24 8.4 24 13.0 15.9 106.0* 79.9* 0.00G 999.9 000000 722324 03071 20120803 92.0 24 49.9 24 9999.9 0 913.8 24 10.0 24 9.6 24 15.9 21.0 104.9* 76.5* 0.00G 999.9 000000 722324 03071 20120804 90.7 24 54.7 24 9999.9 0 915.1 24 10.0 24 10.9 24 14.0 20.0 102.2* 77.9* 0.00G 999.9 000000 722324 03071 20120805 88.2 24 56.6 24 9999.9 0 920.9 24 10.0 24 7.3 24 13.0 20.0 98.8* 75.4* 0.00G 999.9 000000 722324 03071 20120806 88.2 24 55.1 24 9999.9 0 922.4 24 10.0 24 5.9 24 15.0 22.0 101.1* 76.1* 0.00G 999.9 000000 722324 03071 20120807 91.3 24 53.2 24 9999.9 0 919.4 24 10.0 24 7.2 24 12.0 15.9 101.3* 82.4* 0.00G 999.9 000000 722324 03071 20120808 88.4 24 53.6 24 9999.9 0 919.1 24 10.0 24 5.6 24 11.1 19.0 99.7* 80.6* 0.00G 999.9 010000 722324 03071 20120809 85.7 24 56.8 24 9999.9 0 919.7 24 10.0 24 4.0 24 13.0 18.1 100.8* 73.0* 0.00G 999.9 000000 722324 03071 20120810 88.2 24 52.6 24 9999.9 0 918.9 24 10.0 24 6.2 24 12.0 19.0 100.0* 74.7* 0.00G 999.9 000000 722324 03071 20120811 86.9 24 46.2 24 9999.9 0 918.4 24 10.0 24 4.8 24 11.1 999.9 102.0* 70.9* 0.00G 999.9 000000 722324 03071 20120812 93.1 24 48.0 24 9999.9 0 916.6 24 10.0 24 7.4 24 11.1 34.0 105.4* 81.5* 0.00G 999.9 000000 722324 03071 20120813 85.4 24 57.9 24 9999.9 0 920.1 24 10.0 24 7.2 24 12.0 17.1 102.4* 72.1* 0.00G 999.9 010010 722324 03071 20120814 86.1 24 58.2 24 9999.9 0 918.1 24 10.0 24 5.7 24 18.1 26.0 99.9* 72.9* 0.09G 999.9 000000 722324 03071 20120815 88.5 24 54.8 24 9999.9 0 914.2 24 10.0 24 10.2 24 19.0 25.1 101.3* 74.5* 0.00G 999.9 000000 722324 03071 20120816 87.4 24 57.9 24 9999.9 0 916.1 24 9.6 24 9.2 24 15.9 21.0 99.5* 74.5* 0.00G 999.9 010000 722324 03071 20120817 85.0 24 60.3 24 9999.9 0 918.3 24 10.0 24 5.7 24 18.1 22.9 95.5* 73.9* 0.00G 999.9 010010 722324 03071 20120818 79.1 24 64.1 24 9999.9 0 917.5 24 10.0 24 7.2 24 12.0 15.0 90.5* 71.6* 0.03G 999.9 010010 722324 03071 20120819 78.9 24 63.4 24 9999.9 0 917.4 24 9.8 24 7.6 24 27.0 36.9 89.2* 68.2* 0.00G 999.9 010010 722324 03071 20120820 78.1 24 61.4 24 9999.9 0 919.2 24 10.0 24 3.7 24 12.0 17.1 94.3* 67.5* 0.03G 999.9 000000 722324 03071 20120821 82.2 24 55.7 24 9999.9 0 917.7 24 9.9 24 8.7 24 15.0 19.0 92.5* 71.1* 0.00G 999.9 000000 722324 03071 20120822 78.5 24 60.1 24 9999.9 0 919.5 24 10.0 24 9.0 24 14.0 20.0 94.3* 68.0* 0.00G 999.9 000000 722324 03071 20120823 83.8 24 60.4 24 9999.9 0 917.7 24 10.0 24 11.9 24 15.9 21.0 93.4* 77.0* 0.00G 999.9 010000 722324 03071 20120824 85.1 20 59.8 20 9999.9 0 915.1 20 9.7 20 9.1 20 15.9 27.0 95.5* 71.6* 0.00G 999.9 010000 722324 03071 20120825 84.8 24 59.4 24 9999.9 0 912.7 24 10.0 24 10.1 24 19.0 26.0 98.4* 74.1* 0.10G 999.9 010000 722324 03071 20120826 82.2 24 63.3 24 9999.9 0 916.2 24 9.9 24 7.9 24 20.0 29.9 95.7* 73.0* 0.05G 999.9 010010 722324 03071 20120827 77.7 24 64.5 24 9999.9 0 921.0 24 10.0 24 5.1 24 15.9 20.0 91.8* 69.8* 0.41G 999.9 010010 722324 03071 20120828 79.4 24 61.6 24 9999.9 0 921.4 24 9.0 24 7.0 24 13.0 21.0 91.4* 69.8* 0.00G 999.9 010000 722324 03071 20120829 81.9 24 55.2 24 9999.9 0 918.9 24 10.0 24 6.8 24 11.1 17.1 91.4* 72.7* 0.00G 999.9 000000 722324 03071 20120830 79.1 24 43.4 24 9999.9 0 916.8 24 10.0 24 3.3 24 11.1 14.0 91.4* 64.4* 0.00G 999.9 000000 722324 03071 20120831 81.6 24 46.3 24 9999.9 0 917.6 24 10.0 24 2.2 24 6.0 14.0 93.9* 68.2* 0.00G 999.9 000000 722324 03071 20120901 85.2 24 53.6 24 9999.9 0 919.7 18 9.9 24 3.6 24 11.1 15.9 96.6* 74.7* 0.00G 999.9 000000 722324 03071 20120902 86.2 24 58.5 24 9999.9 0 918.9 24 9.8 24 8.2 24 13.0 17.1 95.9* 74.5* 0.00G 999.9 000000 722324 03071 20120903 86.7 24 60.0 24 9999.9 0 917.3 24 9.3 24 4.2 24 14.0 18.1 99.9* 73.9* 0.00G 999.9 000000 722324 03071 20120904 89.7 24 56.8 24 9999.9 0 916.1 24 10.0 24 8.3 24 13.0 15.9 101.1* 78.8* 0.00G 999.9 000000 722324 03071 20120905 90.7 24 56.4 24 9999.9 0 914.8 24 10.0 24 8.1 24 12.0 15.9 102.2* 78.8* 0.00G 999.9 000000 722324 03071 20120906 86.9 24 57.3 24 9999.9 0 916.9 24 9.9 24 6.0 24 12.0 19.0 99.7* 74.3* 0.00G 999.9 000000 722324 03071 20120907 90.1 24 47.6 24 9999.9 0 915.9 24 10.0 24 7.8 24 12.0 21.0 102.2* 78.8* 0.00G 999.9 000000 722324 03071 20120908 74.0 24 48.6 24 9999.9 0 922.9 24 9.0 24 13.9 24 25.1 32.1 99.7* 56.8* 0.00G 999.9 010000 722324 03071 20120909 72.2 24 45.8 24 9999.9 0 925.0 24 10.0 24 4.5 24 8.9 999.9 84.2* 64.4* 0.02G 999.9 000000 722324 03071 20120910 77.9 24 38.2 24 9999.9 0 922.1 24 10.0 24 5.4 24 9.9 17.1 91.8* 66.9* 0.00G 999.9 000000 722324 03071 20120911 81.1 24 41.5 24 9999.9 0 918.6 24 10.0 24 8.1 24 15.0 20.0 95.4* 66.9* 0.00G 999.9 000000 722324 03071 20120912 81.7 24 48.5 24 9999.9 0 917.6 24 10.0 24 8.0 24 13.0 15.9 91.8* 75.2* 0.00G 999.9 010000 722324 03071 20120913 70.0 24 59.4 24 9999.9 0 921.5 24 9.0 24 9.5 24 18.1 25.1 89.4* 60.3* 0.00G 999.9 010010 722324 03071 20120914 60.3 24 54.2 24 9999.9 0 927.7 24 9.7 24 9.3 24 14.0 20.0 67.8* 57.4* 0.13G 999.9 010000 722324 03071 20120915 58.5 24 53.8 24 9999.9 0 926.5 24 8.8 24 3.0 24 12.0 999.9 66.2* 54.1* 0.00G 999.9 010000 722324 03071 20120916 63.8 24 54.0 24 9999.9 0 921.4 24 8.8 24 0.5 24 6.0 999.9 81.0* 54.3* 0.19G 999.9 000000 722324 03071 20120917 72.3 24 53.4 24 9999.9 0 916.2 24 10.0 24 3.3 24 8.0 999.9 88.0* 59.2* 0.00G 999.9 000000 722324 03071 20120918 72.6 24 52.5 24 9999.9 0 919.7 24 10.0 24 6.2 24 17.1 20.0 87.1* 61.9* 0.00G 999.9 000000 722324 03071 20120919 74.6 24 52.5 24 9999.9 0 921.6 24 10.0 24 6.7 24 12.0 17.1 89.8* 63.1* 0.00G 999.9 000000 722324 03071 20120920 79.2 24 48.4 24 9999.9 0 919.5 24 10.0 24 9.7 24 15.0 20.0 94.5* 64.6* 0.00G 999.9 000000 722324 03071 20120921 81.1 24 44.5 24 9999.9 0 917.8 24 10.0 24 9.8 24 14.0 18.1 95.7* 67.8* 0.00G 999.9 000000 722324 03071 20120922 79.9 24 41.6 24 9999.9 0 920.1 24 10.0 24 5.9 24 12.0 15.9 93.4* 60.3* 0.00G 999.9 000000 722324 03071 20120923 79.1 24 41.3 24 9999.9 0 923.1 24 10.0 24 8.4 24 17.1 21.0 90.0* 67.5* 0.00G 999.9 000000 722324 03071 20120924 79.5 24 50.5 24 9999.9 0 921.4 24 10.0 24 10.3 24 15.9 24.1 91.2* 68.2* 0.00G 999.9 000000 722324 03071 20120925 81.8 24 52.4 24 9999.9 0 916.0 24 10.0 24 12.4 24 21.0 27.0 94.6* 71.8* 0.00G 999.9 000000 722324 03071 20120926 79.3 24 58.5 24 9999.9 0 915.5 24 10.0 24 10.4 24 15.0 22.9 91.4* 70.0* 0.00G 999.9 010010 722324 03071 20120927 73.4 24 64.0 24 9999.9 0 919.6 24 9.7 24 6.6 24 17.1 20.0 78.4* 68.5* 0.00G 999.9 010010 722324 03071 20120928 66.9 24 63.8 24 9999.9 0 920.4 24 8.0 24 6.2 24 15.9 20.0 69.3* 63.5* 0.16G 999.9 010000 722324 03071 20120929 65.0 24 62.0 24 9999.9 0 918.4 24 8.5 24 11.1 24 17.1 22.9 70.7* 62.6* 3.77G 999.9 010000 722324 03071 20120930 65.7 24 58.5 24 9999.9 0 919.0 24 9.9 24 3.5 24 8.0 999.9 78.8* 57.4* 0.23G 999.9 000000 722324 03071 20121001 70.0 24 55.9 24 9999.9 0 918.0 18 9.9 24 7.2 24 17.1 24.1 80.8* 60.1* 0.11G 999.9 010010 722324 03071 20121002 66.7 24 52.0 24 9999.9 0 920.3 24 9.8 24 4.0 24 8.9 999.9 76.5* 59.7* 0.00G 999.9 010000 722324 03071 20121003 70.7 24 49.2 24 9999.9 0 915.7 24 10.0 24 9.0 24 13.0 18.1 88.3* 59.4* 0.01G 999.9 000000 722324 03071 20121004 71.2 24 51.8 24 9999.9 0 918.9 24 9.4 24 10.1 24 17.1 25.1 85.6* 61.7* 0.00G 999.9 000000 722324 03071 20121005 61.7 24 53.3 24 9999.9 0 921.5 24 8.0 24 5.6 24 11.1 999.9 76.5* 54.0* 0.00G 999.9 000000 722324 03071 20121006 56.9 24 47.2 24 9999.9 0 921.0 24 9.7 24 12.3 24 18.1 22.9 70.7* 49.3* 0.00G 999.9 000000 722324 03071 20121007 47.4 24 32.4 24 9999.9 0 924.9 24 10.0 24 9.5 24 15.9 21.0 52.5* 44.1* 0.00G 999.9 000000 722324 03071 20121008 50.0 24 37.3 24 9999.9 0 923.0 24 10.0 24 5.7 24 12.0 17.1 69.3* 41.2* 0.00G 999.9 000000 722324 03071 20121009 66.1 24 48.5 24 9999.9 0 916.8 24 10.0 24 8.1 24 12.0 15.9 89.6* 53.6* 0.00G 999.9 000000 722324 03071 20121010 65.7 24 50.5 24 9999.9 0 920.0 24 10.0 24 7.0 24 15.0 21.0 84.7* 55.4* 0.00G 999.9 000000 722324 03071 20121011 66.5 24 57.4 24 9999.9 0 920.5 24 8.5 24 5.6 24 18.1 21.0 85.3* 55.0* 0.00G 999.9 000000 722324 03071 20121012 75.2 24 64.9 24 9999.9 0 920.0 24 10.0 24 10.3 24 18.1 22.9 84.2* 68.2* 0.00G 999.9 000000 722324 03071 20121013 76.3 24 59.6 24 9999.9 0 917.0 24 10.0 24 11.2 24 21.0 28.0 86.9* 68.5* 0.00G 999.9 010000 722324 03071 20121014 68.7 24 38.1 24 9999.9 0 920.9 24 10.0 24 7.0 24 12.0 15.9 81.9* 54.7* 0.03G 999.9 000000 722324 03071 20121015 67.7 24 41.5 24 9999.9 0 922.5 24 10.0 24 4.3 24 11.1 15.9 80.1* 56.1* 0.00G 999.9 000000 722324 03071 20121016 72.4 24 52.7 24 9999.9 0 914.6 24 10.0 24 9.5 24 13.0 19.0 83.5* 66.4* 0.00G 999.9 000000 722324 03071 20121017 75.2 24 45.5 24 9999.9 0 909.6 24 10.0 24 9.3 24 15.9 21.0 90.7* 64.6* 0.00G 999.9 000000 722324 03071 20121018 65.3 24 35.0 24 9999.9 0 916.0 24 10.0 24 5.1 24 11.1 15.0 81.1* 52.3* 0.00G 999.9 000000 722324 03071 20121019 64.0 24 36.7 24 9999.9 0 918.2 24 10.0 24 5.7 24 14.0 17.1 79.9* 47.8* 0.00G 999.9 000000 722324 03071 20121020 71.3 24 47.2 24 9999.9 0 913.4 24 10.0 24 7.6 24 15.0 20.0 90.9* 57.9* 0.00G 999.9 000000 722324 03071 20121021 77.6 24 52.9 24 9999.9 0 912.7 24 10.0 24 8.2 24 12.0 15.9 91.0* 67.1* 0.00G 999.9 000000 722324 03071 20121022 74.9 24 56.2 24 9999.9 0 915.0 24 10.0 24 6.8 24 14.0 31.1 83.7* 63.3* 0.00G 999.9 010010 722324 03071 20121023 74.6 24 58.9 24 9999.9 0 915.2 24 10.0 24 7.5 24 11.1 17.1 87.8* 64.2* 0.12G 999.9 000000 722324 03071 20121024 75.1 24 60.3 24 9999.9 0 914.1 24 10.0 24 10.2 24 18.1 22.9 87.8* 67.3* 0.00G 999.9 000000 722324 03071 20121025 70.0 24 57.3 24 9999.9 0 914.1 24 9.9 24 11.7 24 20.0 26.0 80.8* 63.1* 0.00G 999.9 000000 722324 03071 20121026 50.9 24 32.9 24 9999.9 0 924.7 24 10.0 24 11.4 24 17.1 22.0 62.6* 41.9* 0.00G 999.9 000000 722324 03071 20121027 47.5 24 22.4 24 9999.9 0 926.7 24 10.0 24 6.1 24 13.0 15.9 57.7* 37.8* 0.00G 999.9 000000 722324 03071 20121028 49.7 24 25.9 24 9999.9 0 923.8 24 10.0 24 4.2 24 8.0 999.9 66.2* 36.5* 0.00G 999.9 000000 722324 03071 20121029 56.0 24 32.8 24 9999.9 0 922.5 24 10.0 24 6.6 24 13.0 17.1 73.6* 42.8* 0.00G 999.9 000000 722324 03071 20121030 59.7 23 36.8 23 9999.9 0 918.8 23 10.0 23 2.3 23 8.9 999.9 78.6* 43.9* 0.00G 999.9 000000 722324 03071 20121031 62.7 24 40.9 24 9999.9 0 919.5 23 10.0 24 2.3 24 9.9 14.0 81.9* 46.8* 0.00G 999.9 000000 722324 03071 20121101 66.2 24 41.7 24 9999.9 0 919.8 18 10.0 24 4.7 24 11.1 15.9 82.4* 48.7* 0.00G 999.9 000000 722324 03071 20121102 68.3 24 47.5 24 9999.9 0 917.3 24 9.9 24 4.5 24 9.9 999.9 84.7* 55.8* 0.00G 999.9 000000 722324 03071 20121103 67.2 24 49.2 24 9999.9 0 918.4 24 10.0 24 6.5 24 11.1 18.1 77.0* 57.9* 0.00G 999.9 000000 722324 03071 20121104 60.8 24 45.7 24 9999.9 0 922.6 24 10.0 24 3.4 24 7.0 999.9 76.3* 47.8* 0.00G 999.9 000000 722324 03071 20121105 64.6 24 44.6 24 9999.9 0 921.5 24 9.9 24 6.8 24 15.0 19.0 74.7* 50.4* 0.00G 999.9 000000 722324 03071 20121106 61.5 24 36.7 24 9999.9 0 922.6 24 10.0 24 2.4 24 8.0 999.9 79.5* 45.7* 0.00G 999.9 000000 722324 03071 20121107 67.7 22 40.5 22 9999.9 0 921.8 22 9.9 22 5.5 22 13.0 17.1 81.7* 52.9* 0.00G 999.9 000000 722324 03071 20121108 70.3 24 47.0 24 9999.9 0 917.8 24 10.0 24 10.0 24 14.0 19.0 86.0* 61.3* 0.00G 999.9 000000 722324 03071 20121109 71.9 24 49.6 24 9999.9 0 915.8 24 10.0 24 10.5 24 15.0 20.0 83.3* 60.3* 0.00G 999.9 000000 722324 03071 20121110 70.9 24 53.0 24 9999.9 0 912.9 24 10.0 24 13.9 24 22.0 27.0 82.6* 61.5* 0.00G 999.9 000000 722324 03071 20121111 62.1 24 37.2 24 9999.9 0 914.5 24 10.0 24 12.1 24 24.1 33.0 75.0* 48.2* 0.00G 999.9 000000 722324 03071 20121112 45.1 24 10.1 24 9999.9 0 928.4 24 10.0 24 3.8 24 8.0 999.9 56.3* 32.5* 0.00G 999.9 000000 722324 03071 20121113 47.5 24 18.6 24 9999.9 0 928.6 24 10.0 24 7.7 24 14.0 21.0 59.4* 39.4* 0.00G 999.9 000000 722324 03071 20121114 47.2 24 21.5 24 9999.9 0 926.9 24 10.0 24 3.2 24 8.0 999.9 63.1* 34.9* 0.00G 999.9 000000 722324 03071 20121115 53.2 24 35.5 24 9999.9 0 923.5 24 10.0 24 5.0 24 9.9 999.9 70.7* 41.5* 0.00G 999.9 000000 722324 03071 20121116 55.2 24 39.7 24 9999.9 0 926.2 24 10.0 24 3.2 24 9.9 15.0 66.6* 43.0* 0.00G 999.9 000000 722324 03071 20121117 58.0 24 44.0 24 9999.9 0 925.5 24 10.0 24 6.5 24 11.1 15.9 67.6* 47.5* 0.00G 999.9 000000 722324 03071 20121118 60.4 24 45.8 24 9999.9 0 922.2 24 10.0 24 7.6 24 13.0 17.1 67.8* 54.9* 0.00G 999.9 010000 722324 03071 20121119 61.3 24 47.9 24 9999.9 0 922.8 24 9.3 24 5.7 24 12.0 17.1 75.7* 50.4* 0.00G 999.9 000000 722324 03071 20121120 60.3 23 32.3 23 9999.9 0 924.1 23 10.0 23 3.2 23 7.0 999.9 74.7* 44.2* 0.00G 999.9 000000 722324 03071 20121121 61.5 24 36.4 24 9999.9 0 923.8 24 10.0 24 4.8 24 15.0 19.0 76.1* 50.7* 0.00G 999.9 000000 722324 03071 20121122 67.5 24 49.2 24 9999.9 0 919.6 23 10.0 24 9.6 24 13.0 19.0 79.2* 60.1* 0.00G 999.9 010000 722324 03071 20121123 57.7 24 27.9 24 9999.9 0 927.1 24 9.8 24 10.9 24 20.0 29.9 73.0* 48.2* 0.00G 999.9 000000 722324 03071 20121124 48.0 24 22.3 24 9999.9 0 928.8 24 10.0 24 3.8 24 13.0 17.1 66.4* 35.4* 0.00G 999.9 000000 722324 03071 20121125 59.1 24 34.8 24 9999.9 0 917.2 24 10.0 24 8.7 24 13.0 20.0 78.1* 46.2* 0.00G 999.9 000000 722324 03071 20121126 62.3 24 30.4 24 9999.9 0 916.3 24 10.0 24 7.8 24 15.0 18.1 72.1* 50.7* 0.00G 999.9 000000 722324 03071 20121127 45.3 24 25.3 24 9999.9 0 928.6 24 10.0 24 6.2 24 15.0 21.0 59.2* 32.0* 0.00G 999.9 000000 722324 03071 20121128 52.2 24 28.5 24 9999.9 0 926.3 24 10.0 24 4.1 24 12.0 14.0 74.7* 36.0* 0.00G 999.9 000000 722324 03071 20121129 59.6 24 40.0 24 9999.9 0 922.1 24 10.0 24 7.6 24 9.9 15.9 76.6* 47.3* 0.00G 999.9 000000 722324 03071 20121130 59.8 24 43.4 24 9999.9 0 920.3 23 7.6 24 6.6 24 11.1 15.0 76.8* 46.6* 0.00G 999.9 110000 722324 03071 20121201 64.4 24 43.0 24 9999.9 0 918.6 19 9.5 24 7.4 24 12.0 18.1 81.1* 51.3* 0.00G 999.9 000000 722324 03071 20121202 65.1 24 46.8 24 9999.9 0 919.3 24 8.5 24 6.1 24 12.0 15.9 78.6* 49.5* 0.00G 999.9 100000 722324 03071 20121203 66.1 24 48.1 24 9999.9 0 917.2 24 7.3 24 10.2 24 17.1 22.0 79.5* 57.0* 0.00G 999.9 000000 722324 03071 20121204 57.4 24 32.9 24 9999.9 0 923.0 24 10.0 24 5.5 24 12.0 19.0 73.6* 45.9* 0.00G 999.9 000000 722324 03071 20121205 52.4 24 27.1 24 9999.9 0 925.8 24 10.0 24 3.5 24 11.1 14.0 70.7* 37.9* 0.00G 999.9 000000 722324 03071 20121206 62.4 24 31.2 24 9999.9 0 915.1 24 10.0 24 7.4 24 11.1 15.0 81.9* 49.5* 0.00G 999.9 000000 722324 03071 20121207 57.2 24 30.6 24 9999.9 0 913.2 24 10.0 24 3.2 24 8.9 999.9 74.3* 42.8* 0.00G 999.9 000000 722324 03071 20121208 56.1 24 32.6 24 9999.9 0 913.2 24 10.0 24 4.3 24 17.1 22.9 74.5* 41.0* 0.00G 999.9 000000 722324 03071 20121209 57.2 24 28.8 24 9999.9 0 913.3 24 10.0 24 7.8 24 15.0 19.0 68.2* 50.4* 0.00G 999.9 000000 722324 03071 20121210 36.4 24 16.2 24 9999.9 0 921.5 24 9.9 24 8.7 24 19.0 28.9 49.5* 26.2* 0.00G 999.9 001000 722324 03071 20121211 39.4 24 11.2 24 9999.9 0 918.4 20 10.0 24 5.8 24 14.0 16.9 55.4* 29.8* 0.00G 999.9 000000 722324 03071 20121212 44.6 24 14.2 24 9999.9 0 921.2 23 10.0 24 5.4 24 13.0 18.1 65.3* 29.3* 0.00G 999.9 000000 722324 03071 20121213 51.9 24 26.1 24 9999.9 0 920.6 24 10.0 24 10.7 24 18.1 21.0 64.9* 44.2* 0.00G 999.9 000000 722324 03071 20121214 56.9 24 48.7 24 9999.9 0 915.6 24 9.8 24 16.1 24 22.9 31.1 65.8* 52.9* 0.00G 999.9 000000 722324 03071 20121215 52.1 24 28.2 24 9999.9 0 915.3 24 10.0 24 10.2 24 14.0 21.0 61.7* 43.9* 0.00G 999.9 000000 722324 03071 20121216 55.9 24 31.3 24 9999.9 0 913.6 24 10.0 24 10.2 24 21.0 25.1 65.7* 48.6* 0.00G 999.9 000000 722324 03071 20121217 51.9 24 27.5 24 9999.9 0 915.6 24 10.0 24 10.6 24 18.1 22.9 67.1* 36.0* 0.00G 999.9 000000 722324 03071 20121218 58.4 24 22.1 24 9999.9 0 913.3 24 10.0 24 8.5 24 13.0 18.1 76.5* 45.3* 0.00G 999.9 000000 722324 03071 20121219 61.1 24 20.3 24 9999.9 0 908.4 24 9.6 24 9.1 24 31.1 40.0 71.4* 52.3* 0.00G 999.9 000000 722324 03071 20121220 42.4 24 9.8 24 9999.9 0 925.8 24 8.7 24 10.9 24 28.0 38.1 60.6* 27.5* 0.00G 999.9 000000 722324 03071 20121221 39.7 24 4.6 24 9999.9 0 929.5 24 10.0 24 3.9 24 13.0 15.0 58.1* 23.7* 0.00G 999.9 000000 722324 03071 20121222 47.1 24 4.6 24 9999.9 0 923.1 24 10.0 24 5.9 24 13.0 999.9 63.5* 36.7* 0.00G 999.9 000000 722324 03071 20121223 53.1 24 17.6 24 9999.9 0 917.8 24 10.0 24 5.9 24 13.0 999.9 66.4* 43.7* 0.00G 999.9 000000 722324 03071 20121224 48.3 24 21.5 24 9999.9 0 915.7 24 10.0 24 3.8 24 9.9 999.9 66.0* 33.3* 0.00G 999.9 000000 722324 03071 20121225 47.8 24 23.0 24 9999.9 0 911.8 24 8.2 24 13.2 24 21.0 35.0 64.0* 30.0* 0.00G 999.9 000000 722324 03071 20121226 27.4 24 13.8 24 9999.9 0 922.7 24 9.9 24 7.2 24 15.9 25.1 40.6* 21.6* 0.00G 999.9 000000 722324 03071 20121227 38.5 24 18.0 24 9999.9 0 913.0 24 10.0 24 4.9 24 14.0 17.1 55.6* 30.0* 0.00G 999.9 000000 722324 03071 20121228 40.4 24 20.6 24 9999.9 0 914.8 24 10.0 24 7.3 24 15.0 20.0 50.4* 28.9* 0.00G 999.9 000000 722324 03071 20121229 34.5 24 15.4 24 9999.9 0 925.8 24 10.0 24 2.9 24 8.9 999.9 49.6* 24.1* 0.00G 999.9 000000 722324 03071 20121230 39.7 24 14.2 24 9999.9 0 923.9 24 10.0 24 10.4 24 20.0 25.1 47.3* 32.7* 0.00G 999.9 000000 722324 03071 20121231 45.9 24 32.0 24 9999.9 0 916.7 24 10.0 24 11.8 24 26.0 32.1 60.1* 38.8* 0.04G 999.9 010000 fluids-1.0.22/tests/gsod/1984/0000755000175000017500000000000014302004506015105 5ustar nileshnileshfluids-1.0.22/tests/gsod/1984/724050-13743.op0000644000175000017500000014350514302004506016675 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19840101 27.9 24 11.5 24 1036.5 24 1034.0 24 14.5 24 3.6 24 7.0 999.9 39.9* 12.0 0.00G 999.9 000000 724050 13743 19840102 31.2 23 19.4 23 1032.2 23 1029.8 23 9.4 23 3.2 23 7.0 999.9 41.0 19.0 0.00G 999.9 000000 724050 13743 19840103 36.5 23 25.1 23 1026.6 23 1024.2 23 6.9 23 3.6 23 5.8 999.9 45.0* 26.1 0.00D 999.9 000000 724050 13743 19840104 35.8 24 26.0 24 1018.7 24 1016.3 24 7.6 24 5.0 24 8.9 999.9 50.0* 25.0 0.00G 999.9 100000 724050 13743 19840105 42.2 24 30.9 24 1012.6 24 1010.1 24 9.2 24 3.5 24 8.0 999.9 50.0 25.0 0.00G 999.9 010000 724050 13743 19840106 41.9 24 31.0 24 1005.2 24 1002.8 24 10.3 24 5.4 24 9.9 999.9 50.0 35.1 0.00D 999.9 010000 724050 13743 19840107 41.0 23 23.1 23 1010.3 23 1007.9 23 16.2 23 10.0 23 15.0 21.0 48.9 35.1* 0.00D 999.9 000000 724050 13743 19840108 32.1 24 15.6 24 1017.7 24 1015.3 24 17.2 24 7.0 24 12.8 999.9 46.0 23.0 0.00G 999.9 000000 724050 13743 19840109 35.6 24 19.1 24 1026.0 24 1023.6 24 14.5 24 4.1 24 7.0 999.9 44.1 23.0 0.00G 999.9 000000 724050 13743 19840110 36.2 20 27.0 20 1021.6 20 1019.3 20 8.4 20 3.8 20 9.9 999.9 41.0 30.0 0.00D 999.9 110000 724050 13743 19840111 31.7 24 19.8 24 1019.6 24 1017.1 24 11.9 24 13.9 24 18.8 24.9 39.9 26.2* 0.79G 0.8 011000 724050 13743 19840112 21.9 24 5.7 24 1034.7 24 1032.3 24 14.8 24 9.5 24 15.0 22.0 32.0 14.0 0.00G 0.4 000000 724050 13743 19840113 27.1 24 16.1 24 1037.0 24 1034.5 24 9.4 24 8.3 23 12.0 999.9 33.1* 14.0 0.00D 999.9 000000 724050 13743 19840114 34.3 22 26.3 22 1030.3 22 1027.9 22 5.5 22 6.5 22 11.8 15.0 42.1* 23.0 0.02G 999.9 110000 724050 13743 19840115 31.5 23 16.7 23 1030.7 23 1028.3 23 11.1 23 7.9 23 12.8 15.9 42.1 28.0 0.00G 999.9 000000 724050 13743 19840116 25.1 22 15.3 22 1024.6 22 1022.2 22 7.8 22 3.8 22 7.0 999.9 30.2* 20.8 0.00G 2.0 101000 724050 13743 19840117 31.0 24 22.6 24 1024.5 24 1022.1 24 4.8 24 2.5 24 5.8 999.9 36.0* 21.0 0.09G 1.2 000000 724050 13743 19840118 31.6 23 24.6 23 1026.4 23 1024.0 23 2.6 23 4.4 22 8.9 999.9 43.0* 27.0 0.00G 3.9 111000 724050 13743 19840119 28.9 24 18.2 24 1020.1 24 1017.7 24 7.9 24 9.6 24 15.9 22.0 32.0 23.2* 0.55G 3.9 111000 724050 13743 19840120 19.2 20 -1.8 20 1029.7 20 1027.2 20 15.9 20 8.2 20 12.8 17.9 32.0 9.0 0.03G 3.1 000000 724050 13743 19840121 16.4 24 -3.5 24 1035.3 24 1032.8 24 13.8 24 9.0 24 15.0 999.9 25.2* 9.0 0.00G 3.1 000000 724050 13743 19840122 13.5 24 -1.3 23 1039.8 24 1037.4 24 8.7 24 2.8 24 5.1 999.9 26.2* 3.0 0.00G 3.1 000000 724050 13743 19840123 25.2 23 13.4 23 1037.0 23 1034.6 23 10.0 23 3.2 22 7.0 999.9 37.0* 3.0 0.00G 2.8 000000 724050 13743 19840124 36.0 23 29.0 23 1024.6 23 1022.2 23 5.0 23 2.7 23 5.8 999.9 39.0* 34.0* 0.10G 2.0 110000 724050 13743 19840125 41.8 21 34.2 21 1012.0 21 1009.6 21 4.0 21 3.6 21 8.0 999.9 55.9* 34.0 0.11G 1.2 100000 724050 13743 19840126 43.1 23 29.5 23 1018.2 23 1015.8 23 15.8 23 5.9 23 8.9 999.9 57.9* 32.0 0.00G 999.9 000000 724050 13743 19840127 42.0 22 27.7 22 1012.9 22 1010.5 22 14.1 22 4.1 22 9.9 999.9 59.0 30.9 0.00D 999.9 000000 724050 13743 19840128 36.9 24 20.2 24 1012.2 24 1009.8 24 15.3 24 7.7 24 13.0 18.1 59.0 28.0 0.00G 999.9 000000 724050 13743 19840129 33.8 24 22.2 24 1009.9 24 1007.5 24 11.8 24 3.8 24 8.0 999.9 42.1* 28.0 0.00G 999.9 011000 724050 13743 19840130 37.5 24 26.3 24 1011.6 24 1009.2 24 12.5 24 4.3 24 9.9 999.9 43.0* 28.0 0.00G 999.9 110000 724050 13743 19840131 35.4 23 20.4 22 1010.1 23 1007.7 23 11.8 23 11.8 23 22.9 35.0 43.0 28.0 0.04G 999.9 110000 724050 13743 19840201 27.7 21 10.1 21 1020.9 21 1018.4 21 14.8 21 7.7 21 14.0 19.0 37.9 19.0 0.00G 999.9 000000 724050 13743 19840202 32.9 22 19.3 22 1026.3 22 1023.9 22 12.4 22 2.5 22 6.0 999.9 48.0* 23.0 0.00D 999.9 000000 724050 13743 19840203 39.6 24 30.8 24 1019.1 24 1016.7 24 9.4 24 3.6 24 9.9 999.9 48.9 23.0 0.02G 999.9 110000 724050 13743 19840204 45.0 22 38.8 22 1009.0 22 1006.6 22 5.4 22 3.2 22 8.9 999.9 52.0* 35.1 0.23G 999.9 110000 724050 13743 19840205 40.7 23 34.0 23 1003.4 23 1001.0 23 8.5 23 6.2 22 15.0 999.9 52.0 37.0 0.27G 999.9 111000 724050 13743 19840206 34.5 23 24.6 23 1010.0 23 1007.6 23 11.3 23 6.2 23 14.0 21.0 42.1 30.9 0.19G 999.9 011000 724050 13743 19840207 29.4 22 12.4 22 1020.0 22 1017.6 22 14.5 22 12.3 22 17.1 24.1 37.9 21.9 0.00G 999.9 000000 724050 13743 19840208 27.5 24 9.9 24 1030.8 24 1028.3 24 14.9 24 9.9 24 16.9 20.0 37.0* 19.0 0.00D 999.9 000000 724050 13743 19840209 33.3 24 20.1 24 1025.9 24 1023.5 24 10.7 24 4.4 24 8.0 999.9 44.1* 25.0 0.00D 999.9 000000 724050 13743 19840210 39.8 24 27.9 24 1028.3 24 1025.8 24 8.3 24 3.7 23 7.0 999.9 57.9* 28.9 0.00D 999.9 000000 724050 13743 19840211 50.7 23 41.6 23 1024.5 23 1022.1 23 10.5 23 7.0 23 13.0 18.1 62.1 28.9 0.01G 999.9 010000 724050 13743 19840212 49.0 17 45.5 17 1026.8 17 1024.5 17 3.0 17 3.5 17 7.0 999.9 63.0 39.0 0.01G 999.9 100000 724050 13743 19840213 46.4 24 45.1 24 1027.0 24 1024.6 24 0.7 24 5.8 24 8.0 999.9 63.0 41.0 0.01G 999.9 110000 724050 13743 19840214 58.8 23 54.5 23 1016.0 23 1013.5 23 7.3 23 10.9 23 15.9 22.9 63.0 43.0 0.71G 999.9 110000 724050 13743 19840215 52.5 24 47.7 24 1014.3 24 1011.7 24 9.7 24 8.7 24 18.1 26.0 63.0 48.9 0.92G 999.9 110000 724050 13743 19840216 51.5 24 43.9 24 1020.0 24 1017.7 24 12.3 24 7.6 24 18.1 22.9 57.0 48.9 0.22G 999.9 010000 724050 13743 19840217 49.6 24 45.7 24 1019.7 24 1017.2 24 5.7 24 3.6 24 6.0 999.9 57.0 46.9 0.00G 999.9 110000 724050 13743 19840218 51.9 24 45.4 24 1017.7 24 1015.3 24 7.3 24 3.9 24 9.9 999.9 61.0 46.9 0.09G 999.9 110000 724050 13743 19840219 52.1 24 43.8 24 1017.2 24 1014.9 24 10.2 24 3.6 24 8.9 999.9 62.1* 44.1 0.00G 999.9 000000 724050 13743 19840220 53.7 23 38.2 23 1009.9 23 1007.5 23 15.0 23 11.1 23 22.0 28.0 63.0 44.1 0.00G 999.9 010000 724050 13743 19840221 46.6 22 26.2 22 1011.0 22 1008.5 22 14.5 22 9.5 22 15.9 21.0 59.0 33.1 0.00D 999.9 000000 724050 13743 19840222 44.0 24 27.7 24 1017.6 24 1015.2 24 14.2 24 5.4 24 8.9 13.0 57.0* 32.0 0.00G 999.9 000000 724050 13743 19840223 44.4 24 35.6 24 1012.0 24 1009.6 24 11.0 24 7.6 24 20.0 24.1 57.0 32.0 0.00G 999.9 110000 724050 13743 19840224 57.4 18 39.1 18 1003.0 18 1000.7 18 11.9 18 9.6 18 16.9 21.0 71.1* 39.9 0.71G 999.9 110000 724050 13743 19840225 51.4 17 37.9 17 1001.8 17 999.4 17 15.3 17 8.4 16 21.0 32.1 55.0* 43.0* 0.01G 999.9 010000 724050 13743 19840226 38.7 24 19.3 24 1018.2 24 1015.9 24 17.2 24 12.0 24 17.1 25.1 54.0 30.9 0.03G 999.9 000000 724050 13743 19840227 36.1 24 21.9 24 1023.3 24 1020.9 24 13.9 24 7.8 24 13.0 999.9 46.9 30.9 0.00G 999.9 001000 724050 13743 19840228 43.2 24 38.9 24 998.0 24 995.6 24 6.2 24 10.9 24 18.1 27.0 48.9* 33.1 0.58G 999.9 111000 724050 13743 19840229 36.2 24 19.7 24 998.0 24 995.7 24 14.5 24 14.3 24 20.0 29.9 48.9 30.0 0.05G 999.9 011000 724050 13743 19840301 30.9 19 10.3 19 1012.1 19 1009.7 19 18.9 19 11.7 19 21.0 28.0 39.0 25.0 0.00G 999.9 000000 724050 13743 19840302 32.9 17 15.6 17 1016.5 17 1014.1 17 15.6 17 5.5 17 11.1 999.9 43.0 25.0 0.00D 999.9 000000 724050 13743 19840303 34.7 24 12.9 24 1021.9 24 1019.4 24 15.4 24 7.7 24 14.0 999.9 44.1 25.0 0.00G 999.9 000000 724050 13743 19840304 34.5 23 14.8 23 1027.5 23 1025.1 23 16.4 23 5.4 23 9.9 999.9 44.1 25.0 0.00D 999.9 000000 724050 13743 19840305 39.4 21 30.8 21 1020.9 21 1018.5 21 8.4 21 4.4 21 6.0 999.9 45.0* 25.0 0.04G 999.9 111000 724050 13743 19840306 45.4 23 36.5 23 1009.0 23 1006.6 23 8.1 23 7.9 23 13.0 19.0 48.0* 36.0 0.38G 999.9 111000 724050 13743 19840307 41.0 24 22.5 24 1015.5 24 1013.1 24 12.9 24 9.0 24 13.0 15.9 48.0 36.0 0.01G 999.9 001000 724050 13743 19840308 36.1 24 20.6 24 1019.0 24 1016.6 24 10.6 24 8.2 24 15.9 999.9 46.0 30.9 0.00G 999.9 111010 724050 13743 19840309 26.9 24 15.0 24 1019.6 24 1017.2 24 13.7 24 12.3 24 18.1 25.1 42.1 21.0 0.28G 2.0 011010 724050 13743 19840310 26.5 24 6.9 24 1027.6 24 1025.2 24 15.8 24 6.4 24 11.1 999.9 35.1* 19.9 0.00G 0.8 000000 724050 13743 19840311 36.8 24 19.9 24 1017.7 24 1015.3 24 15.4 24 8.1 24 18.1 26.0 51.1* 27.0 0.00D 999.9 000000 724050 13743 19840312 31.0 23 10.0 23 1031.0 23 1028.6 23 14.8 23 10.0 22 16.9 20.0 51.1 21.9 0.00G 999.9 000000 724050 13743 19840313 33.1 23 24.4 23 1030.0 23 1027.5 23 7.5 23 7.5 23 999.9 999.9 37.0 28.9 0.08G 999.9 111000 724050 13743 19840314 41.6 23 32.8 23 1021.9 23 1019.5 23 8.6 23 9.6 23 15.9 22.9 54.0 33.1 0.06G 999.9 110000 724050 13743 19840315 45.2 24 29.9 24 1028.9 24 1026.5 24 10.1 24 5.6 24 9.9 999.9 60.1* 33.1 0.00G 999.9 000000 724050 13743 19840316 52.4 23 38.6 23 1019.4 23 1017.0 23 8.3 23 2.6 23 15.0 999.9 68.0* 33.1 0.00G 999.9 000000 724050 13743 19840317 47.4 23 33.1 23 1023.0 23 1020.6 23 14.4 23 12.7 23 20.0 26.0 69.1 39.9 0.00G 999.9 000000 724050 13743 19840318 47.2 21 32.4 21 1022.5 21 1020.1 21 14.5 21 5.1 21 9.9 999.9 57.0* 39.9 0.00G 999.9 000000 724050 13743 19840319 50.1 24 38.1 24 1018.0 24 1015.6 24 8.4 24 4.4 24 8.9 999.9 62.1* 42.1 0.00G 999.9 100000 724050 13743 19840320 51.2 24 39.9 24 1014.9 24 1012.5 24 7.6 24 4.5 24 9.9 15.9 64.0* 41.0 0.00G 999.9 100000 724050 13743 19840321 54.0 21 43.4 21 1002.2 21 999.8 21 10.1 21 13.1 21 25.1 40.0 64.0 41.0 0.61G 999.9 110010 724050 13743 19840322 49.6 23 32.8 22 1004.3 23 1001.9 23 16.0 23 12.9 23 20.0 24.1 63.0 42.1 0.23G 999.9 000000 724050 13743 19840323 48.2 23 28.1 23 1012.9 23 1010.5 23 17.2 23 11.2 23 18.1 26.0 55.9 42.1 0.00G 999.9 000000 724050 13743 19840324 43.7 22 25.2 22 1021.4 22 1019.0 22 16.1 22 4.7 22 8.9 999.9 57.9* 28.0 0.00G 999.9 000000 724050 13743 19840325 46.1 24 38.0 24 1013.2 24 1010.8 24 8.6 24 7.1 24 13.0 999.9 57.9 32.0 0.49G 999.9 110000 724050 13743 19840326 46.1 23 34.4 23 1008.5 23 1006.1 23 8.4 23 9.9 22 14.0 19.0 57.9* 34.0 0.63G 999.9 111000 724050 13743 19840327 45.3 23 30.7 23 1012.6 23 1010.2 23 14.0 23 3.7 23 8.0 999.9 57.9 34.0 0.00D 999.9 000000 724050 13743 19840328 45.9 24 39.4 24 1002.7 24 1000.3 24 8.9 24 10.0 24 18.1 22.9 51.1 37.0 0.70G 999.9 110000 724050 13743 19840329 40.9 20 35.8 20 984.4 20 982.1 20 6.5 20 17.1 20 26.0 33.0 46.9 36.0 1.84G 999.9 111000 724050 13743 19840330 44.0 23 29.6 23 1004.1 23 1001.9 22 16.2 23 12.5 23 18.1 28.9 51.1 36.0 0.28G 999.9 010000 724050 13743 19840331 45.0 24 28.8 24 1014.7 24 1012.3 24 16.3 24 8.8 24 13.0 20.0 52.0* 37.0 0.00G 999.9 000000 724050 13743 19840401 47.3 24 26.3 24 1018.1 24 1015.7 24 17.0 24 6.6 24 12.0 15.9 55.9* 36.0 0.00G 999.9 000000 724050 13743 19840402 49.6 23 31.2 23 1020.3 23 1017.9 23 12.6 23 4.4 23 9.9 999.9 64.0* 36.0 0.00G 999.9 000000 724050 13743 19840403 55.0 21 34.4 21 1021.8 21 1019.4 21 14.3 21 6.8 21 15.9 999.9 64.9 36.0 0.00G 999.9 000000 724050 13743 19840404 51.1 23 40.0 23 1016.2 23 1013.8 23 8.2 23 7.1 23 11.1 999.9 64.0 46.0 0.52G 999.9 110000 724050 13743 19840405 60.0 23 54.3 23 997.6 23 995.2 23 9.0 23 6.4 23 19.0 24.1 64.9* 46.9 1.10G 999.9 110010 724050 13743 19840406 51.0 24 38.5 24 999.4 24 997.1 24 17.7 24 5.9 24 12.0 17.1 64.9 45.0 0.06G 999.9 010000 724050 13743 19840407 48.6 24 31.7 24 1008.7 24 1006.3 24 18.2 23 9.8 24 18.1 28.0 53.1 45.0 0.00G 999.9 010000 724050 13743 19840408 50.4 22 31.1 22 1020.2 22 1017.8 22 16.7 22 9.6 22 15.9 999.9 64.0* 39.9 0.00G 999.9 000000 724050 13743 19840409 51.4 22 29.4 22 1025.0 22 1022.6 22 14.9 22 6.5 22 8.9 999.9 64.0 39.9 0.00G 999.9 000000 724050 13743 19840410 49.1 22 30.8 22 1019.9 22 1017.5 22 11.8 22 3.5 22 7.0 999.9 62.1* 37.0 0.00G 999.9 000000 724050 13743 19840411 52.1 24 28.0 24 1014.6 24 1012.2 24 14.8 24 5.2 24 11.1 999.9 63.0 37.0 0.00G 999.9 000000 724050 13743 19840412 55.7 23 38.0 23 1014.8 23 1012.4 23 12.9 22 3.4 23 7.0 999.9 70.0* 37.9 0.00D 999.9 000000 724050 13743 19840413 59.7 23 47.7 23 1012.6 23 1010.2 23 11.9 23 6.1 23 9.9 15.9 70.0 41.0 0.00G 999.9 010000 724050 13743 19840414 55.3 24 51.6 24 1012.3 24 1009.9 24 5.8 24 6.9 24 20.0 999.9 69.1 52.0 0.42G 999.9 110010 724050 13743 19840415 51.7 23 48.6 23 1008.4 23 1006.0 23 4.7 23 5.9 23 12.0 999.9 59.0* 48.0 0.24G 999.9 110010 724050 13743 19840416 56.3 22 50.7 22 999.2 22 996.8 22 7.4 22 5.1 22 14.0 999.9 64.9* 48.0 0.54G 999.9 110010 724050 13743 19840417 56.2 20 44.5 20 999.3 20 997.0 20 14.2 19 6.9 20 14.0 20.0 66.0 46.0 0.20G 999.9 110000 724050 13743 19840418 53.9 22 44.5 22 1005.0 22 1002.6 22 11.8 22 3.8 22 8.9 999.9 66.9 46.0 0.01G 999.9 010000 724050 13743 19840419 54.1 22 36.3 22 1013.8 22 1011.4 22 15.3 22 6.4 22 12.0 17.1 63.0 44.1 0.02G 999.9 010000 724050 13743 19840420 56.7 24 40.1 24 1016.9 24 1014.5 24 12.2 24 6.1 24 13.0 999.9 64.0 44.1 0.00G 999.9 010000 724050 13743 19840421 58.3 24 35.8 24 1019.8 24 1017.4 24 12.5 24 9.2 24 13.0 999.9 66.0 45.0 0.00G 999.9 000000 724050 13743 19840422 48.9 23 24.2 23 1023.4 23 1021.0 23 15.8 23 8.1 23 17.1 21.0 66.0 42.1 0.00G 999.9 011000 724050 13743 19840423 44.8 23 41.3 23 1010.3 23 1007.9 23 4.5 23 6.5 23 12.0 999.9 53.1 39.0 0.69G 999.9 110110 724050 13743 19840424 53.2 24 43.0 24 999.2 24 996.8 24 9.8 24 9.0 24 19.0 28.9 61.0 39.9 0.03G 999.9 110000 724050 13743 19840425 57.3 24 39.3 24 1006.1 24 1003.7 24 13.4 24 11.6 24 20.0 33.0 72.0* 46.0 0.00D 999.9 000000 724050 13743 19840426 63.8 24 44.2 24 1015.5 24 1013.1 24 13.4 24 4.6 24 9.9 999.9 80.1* 45.0 0.00G 999.9 100000 724050 13743 19840427 67.1 24 50.3 24 1016.7 24 1014.4 24 12.0 24 4.5 23 9.9 999.9 80.1 45.0 0.00G 999.9 000000 724050 13743 19840428 61.0 24 46.9 24 1021.9 24 1019.6 24 14.3 24 6.5 24 13.0 999.9 79.0 54.0 0.00G 999.9 010000 724050 13743 19840429 62.6 23 49.0 22 1024.3 23 1021.9 23 15.1 23 4.0 23 8.9 999.9 75.9* 54.0 0.47G 999.9 110110 724050 13743 19840430 64.7 24 56.8 24 1016.3 24 1013.9 24 10.0 24 8.8 24 20.0 26.0 77.0* 54.0 0.04G 999.9 110000 724050 13743 19840501 67.7 24 36.6 24 1014.0 24 1011.6 24 15.7 24 11.5 24 15.9 25.1 77.0 57.0 0.00D 999.9 010010 724050 13743 19840502 61.3 23 37.2 23 1016.8 23 1014.4 23 14.8 23 5.7 23 12.0 999.9 73.0 46.9 0.00G 999.9 010000 724050 13743 19840503 61.2 24 51.8 24 1010.2 24 1007.8 24 11.0 24 5.0 24 9.9 999.9 71.1 46.9 0.00G 999.9 110000 724050 13743 19840504 66.2 22 59.7 22 995.0 22 992.6 22 8.4 22 8.8 22 14.0 20.0 73.9* 57.9 0.89G 999.9 110010 724050 13743 19840505 62.3 23 47.3 23 1009.7 23 1007.4 23 13.7 23 7.5 23 16.9 24.1 73.9 52.0 0.08G 999.9 000000 724050 13743 19840506 59.8 24 52.9 24 1017.0 24 1014.5 24 7.1 24 5.3 24 8.9 999.9 72.0 55.0* 0.00G 999.9 110000 724050 13743 19840507 56.9 21 54.6 21 1018.5 21 1016.1 21 2.8 21 4.5 21 7.0 999.9 62.1 55.0 0.12G 999.9 110000 724050 13743 19840508 63.1 18 60.1 18 1011.7 18 1009.3 18 3.0 18 4.5 18 14.0 20.0 79.0* 55.0 0.24G 999.9 110010 724050 13743 19840509 57.4 23 39.1 23 1009.9 23 1007.5 23 16.6 23 9.1 23 18.1 31.1 64.9* 46.0 0.37G 999.9 010000 724050 13743 19840510 57.5 21 39.4 21 1015.9 21 1013.5 21 15.9 21 7.8 21 13.0 999.9 69.1* 46.0 0.00G 999.9 010000 724050 13743 19840511 63.4 21 50.3 21 1018.5 21 1016.1 21 12.4 21 9.0 20 15.9 17.1 75.0* 46.9 0.00G 999.9 000000 724050 13743 19840512 70.5 24 54.8 24 1013.0 24 1010.6 24 13.8 24 9.8 24 15.0 21.0 82.0* 52.0 0.00G 999.9 010000 724050 13743 19840513 68.5 24 47.0 24 1016.8 24 1014.6 24 16.5 23 7.0 24 15.0 24.1 82.0 53.1 0.00G 999.9 000000 724050 13743 19840514 65.9 23 47.0 23 1013.2 23 1010.8 23 15.1 22 12.3 23 20.0 25.1 75.9 53.1 0.00G 999.9 010000 724050 13743 19840515 57.0 20 34.1 20 1018.6 20 1016.2 20 17.0 20 10.7 20 19.0 22.0 66.9 48.9 0.00G 999.9 000000 724050 13743 19840516 54.5 24 32.2 24 1020.6 24 1018.2 24 16.7 24 13.2 24 19.0 26.0 64.9 46.0 0.00G 999.9 000000 724050 13743 19840517 57.2 24 31.4 24 1024.0 24 1021.6 24 16.7 24 10.4 24 14.0 22.0 69.1* 41.0 0.00G 999.9 000000 724050 13743 19840518 58.6 22 41.3 22 1023.1 22 1020.7 22 12.5 22 2.8 22 7.0 999.9 69.1 41.0 0.00G 999.9 010000 724050 13743 19840519 69.8 23 52.3 23 1012.5 23 1010.2 23 13.2 23 7.7 23 15.9 22.0 89.1* 50.0 0.01G 999.9 010000 724050 13743 19840520 76.5 24 60.2 24 1009.6 24 1007.2 24 9.8 24 6.2 24 9.9 999.9 89.1 54.0 0.00D 999.9 010000 724050 13743 19840521 75.9 22 63.0 22 1013.0 22 1010.6 22 7.5 22 4.4 22 14.0 999.9 86.0 62.1 0.00G 999.9 010000 724050 13743 19840522 77.4 23 65.0 23 1017.3 23 1014.9 23 9.1 23 7.5 23 15.9 22.0 90.0* 66.0 0.00G 999.9 100000 724050 13743 19840523 75.9 18 66.2 18 1014.6 18 1012.2 18 11.9 18 11.0 18 19.0 24.1 90.0 66.0 0.00G 999.9 010010 724050 13743 19840524 69.2 23 53.4 23 1018.8 23 1016.4 23 15.0 23 5.9 23 13.0 999.9 81.0 57.9 0.88G 999.9 010000 724050 13743 19840525 71.1 22 55.5 22 1018.5 22 1016.1 22 14.9 22 9.3 22 15.9 21.0 82.0* 57.9 0.00G 999.9 000000 724050 13743 19840526 77.6 23 66.4 23 1014.0 23 1011.6 23 12.2 23 11.0 23 15.9 20.0 88.0* 59.0 0.00G 999.9 010010 724050 13743 19840527 70.9 23 62.7 23 1021.1 23 1018.7 23 11.7 23 5.1 23 17.1 22.0 88.0 66.0 0.46G 999.9 010010 724050 13743 19840528 69.2 24 63.9 24 1020.7 24 1018.3 24 8.5 24 6.4 24 11.1 999.9 79.0* 62.1 0.01G 999.9 110000 724050 13743 19840529 72.0 24 67.9 24 1014.4 24 1012.0 24 7.6 24 9.8 24 14.0 18.1 79.0 62.1 0.04G 999.9 110010 724050 13743 19840530 59.2 22 51.4 22 1016.6 22 1014.2 22 7.2 22 10.2 22 15.9 22.0 75.0 54.0 0.60G 999.9 110000 724050 13743 19840531 58.5 22 41.4 22 1014.9 22 1012.5 22 13.7 22 11.7 22 15.9 20.0 66.9* 48.0 0.01G 999.9 000000 724050 13743 19840601 61.5 22 46.7 22 1012.3 22 1009.9 22 13.7 22 6.7 22 14.0 22.0 73.0* 48.0 0.00G 999.9 000000 724050 13743 19840602 68.1 23 46.3 23 1008.7 23 1006.3 23 15.8 23 11.4 23 19.0 28.0 82.0* 48.9 0.00G 999.9 010000 724050 13743 19840603 71.1 21 55.3 21 1010.3 21 1007.9 21 13.1 21 7.0 21 15.9 21.0 86.0* 53.1 0.00D 999.9 000000 724050 13743 19840604 74.0 23 48.3 23 1015.2 23 1012.8 23 14.2 23 6.9 23 13.0 999.9 86.0 59.0 0.00G 999.9 000000 724050 13743 19840605 72.3 23 58.4 23 1019.1 23 1016.7 23 13.5 23 6.4 23 11.1 999.9 86.0 59.0 0.00G 999.9 000000 724050 13743 19840606 79.3 24 68.0 24 1018.8 24 1016.4 24 7.5 24 5.8 24 8.9 999.9 93.0* 59.0 0.00G 999.9 110000 724050 13743 19840607 81.9 24 67.1 24 1019.4 24 1017.0 24 6.0 24 4.4 24 8.9 999.9 93.9* 70.0 0.00G 999.9 100000 724050 13743 19840608 82.2 24 71.0 24 1018.8 24 1016.4 24 6.4 24 6.2 24 9.9 999.9 93.9 72.0 0.00G 999.9 000000 724050 13743 19840609 84.2 24 71.2 24 1017.4 24 1015.0 24 6.2 24 7.0 24 12.0 999.9 95.0* 72.0 0.00G 999.9 000000 724050 13743 19840610 84.2 24 71.9 24 1017.3 24 1014.9 24 7.0 24 7.4 24 11.1 999.9 95.0 75.0 0.00G 999.9 000000 724050 13743 19840611 85.1 24 69.1 24 1017.4 24 1015.0 24 7.4 24 7.1 24 12.0 999.9 96.1 73.9 0.00G 999.9 000000 724050 13743 19840612 83.9 22 68.6 22 1020.0 22 1017.6 22 6.3 22 6.7 22 12.0 999.9 97.0 73.9 0.00G 999.9 000000 724050 13743 19840613 84.0 22 72.4 22 1018.9 22 1016.5 22 5.7 22 8.1 22 14.0 999.9 93.9* 75.0 0.00G 999.9 000000 724050 13743 19840614 84.1 24 68.9 24 1014.8 24 1012.4 24 5.9 24 7.2 24 13.0 999.9 95.0 75.0 0.00G 999.9 000010 724050 13743 19840615 77.2 24 56.3 24 1019.3 24 1016.9 24 12.6 24 8.7 24 14.0 999.9 91.9 68.0 0.05G 999.9 000000 724050 13743 19840616 66.7 23 53.6 23 1025.5 23 1023.1 23 12.9 23 8.5 23 12.0 999.9 82.0 63.0 0.03G 999.9 110000 724050 13743 19840617 67.3 24 62.5 24 1021.6 24 1019.2 24 6.6 24 6.5 24 9.9 999.9 73.9* 63.0 0.02G 999.9 110000 724050 13743 19840618 77.6 21 70.1 21 1013.4 21 1011.0 21 4.5 21 6.5 21 14.0 999.9 91.9* 64.9 0.00D 999.9 110010 724050 13743 19840619 81.3 24 70.2 24 1011.9 24 1009.5 24 9.0 23 8.6 24 20.0 25.1 91.9 71.1 0.28G 999.9 110010 724050 13743 19840620 78.7 23 60.5 23 1016.6 23 1014.2 23 14.9 23 7.5 23 13.0 999.9 91.0 66.9 0.00G 999.9 000000 724050 13743 19840621 75.1 24 57.4 24 1018.4 24 1016.0 24 16.0 24 6.6 24 9.9 999.9 86.0 64.0 0.00G 999.9 000000 724050 13743 19840622 76.0 24 61.4 24 1018.4 24 1016.0 24 10.8 24 6.6 24 12.0 999.9 84.9 64.0 0.00G 999.9 100000 724050 13743 19840623 74.3 23 58.8 23 1017.6 23 1015.2 23 14.0 22 8.2 23 12.0 999.9 84.9 66.0 0.00G 999.9 000000 724050 13743 19840624 75.0 22 65.9 22 1014.4 22 1012.0 22 12.8 22 10.3 22 13.0 999.9 82.9 66.0 0.00G 999.9 010000 724050 13743 19840625 77.3 22 60.8 22 1011.7 22 1009.3 22 10.6 22 9.4 22 13.0 999.9 86.0* 70.0 0.06G 999.9 110010 724050 13743 19840626 72.4 24 50.8 24 1012.6 24 1010.2 24 16.3 24 9.5 24 15.9 24.1 87.1 60.1 0.00G 999.9 000000 724050 13743 19840627 76.9 24 56.5 24 1011.4 24 1009.0 24 12.7 24 8.8 24 17.1 24.1 93.0* 60.1 0.00G 999.9 000000 724050 13743 19840628 79.7 24 63.8 24 1012.1 24 1009.7 24 10.5 24 10.7 24 25.1 999.9 93.0 63.0 0.00G 999.9 010010 724050 13743 19840629 73.7 24 64.0 24 1014.0 24 1011.6 24 10.2 24 8.8 24 12.0 999.9 90.0 64.9 0.03G 999.9 100010 724050 13743 19840630 74.4 24 68.7 24 1010.9 24 1008.5 24 7.2 24 7.3 24 18.1 22.9 86.0 64.9 0.38G 999.9 110010 724050 13743 19840701 75.7 24 68.7 24 1010.1 24 1007.7 24 8.8 24 7.5 24 11.1 999.9 84.9* 70.0 1.71G 999.9 110010 724050 13743 19840702 76.4 21 66.8 21 1016.7 21 1014.3 21 11.0 21 6.3 21 9.9 999.9 86.0 69.1 0.28G 999.9 000000 724050 13743 19840703 74.6 23 65.2 23 1017.1 23 1014.7 23 5.8 23 6.8 23 13.0 26.0 87.1* 66.0 0.24G 999.9 110010 724050 13743 19840704 80.4 23 68.3 23 1014.9 23 1012.5 23 5.6 23 8.6 23 15.0 20.0 90.0* 66.0 0.00G 999.9 100000 724050 13743 19840705 82.1 23 71.4 23 1011.1 23 1008.7 23 6.9 23 13.5 23 18.1 24.1 90.0 71.1 0.00G 999.9 010000 724050 13743 19840706 77.8 24 70.4 24 1012.6 24 1010.2 24 10.4 24 12.8 24 22.0 28.0 89.1 72.0 0.37G 999.9 010010 724050 13743 19840707 77.3 24 67.4 24 1012.2 24 1009.8 24 11.2 23 10.7 24 20.0 35.0 84.0 72.0 0.58G 999.9 010010 724050 13743 19840708 68.9 23 49.5 23 1018.7 23 1016.3 23 18.6 23 11.2 23 15.0 20.0 82.0 57.9 0.00G 999.9 000000 724050 13743 19840709 70.5 23 53.6 23 1020.1 23 1017.7 23 15.1 23 5.7 23 8.9 999.9 80.1 57.9 0.00G 999.9 000000 724050 13743 19840710 72.4 24 64.7 24 1016.0 24 1013.6 24 8.9 24 7.5 24 14.0 999.9 80.1 59.0 0.11G 999.9 010010 724050 13743 19840711 81.2 24 73.0 24 1010.4 24 1008.0 24 6.7 24 8.4 24 15.9 999.9 93.0* 68.0 0.00D 999.9 100000 724050 13743 19840712 80.7 24 67.7 24 1009.9 24 1007.5 24 10.4 24 8.0 24 20.0 28.0 93.0 71.1 0.06G 999.9 010010 724050 13743 19840713 80.0 23 64.8 23 1015.4 23 1013.0 23 9.0 23 5.4 23 8.9 999.9 88.0 70.0 0.00G 999.9 000000 724050 13743 19840714 80.8 23 68.6 23 1019.7 23 1017.3 23 7.2 23 7.2 23 11.1 999.9 88.0 70.0 0.00G 999.9 000000 724050 13743 19840715 80.8 24 70.2 24 1018.5 24 1016.1 24 9.1 24 8.0 23 12.0 999.9 90.0 71.1 0.00G 999.9 000000 724050 13743 19840716 83.0 24 73.6 24 1011.4 24 1009.0 24 6.8 24 10.0 24 15.9 34.0 90.0 71.1 0.00G 999.9 010010 724050 13743 19840717 80.0 23 68.6 23 1011.3 23 1008.9 23 8.3 23 7.9 23 13.0 999.9 89.1* 71.1 0.04G 999.9 000000 724050 13743 19840718 76.5 24 69.8 24 1008.4 24 1006.0 24 8.4 24 9.9 24 15.9 22.9 89.1 70.0* 0.16G 999.9 110010 724050 13743 19840719 72.9 24 59.3 24 1017.2 24 1014.8 24 15.2 24 7.6 24 11.1 999.9 82.9 66.0 0.40G 999.9 000000 724050 13743 19840720 75.9 24 64.6 24 1020.9 24 1018.5 24 10.0 24 7.0 24 11.1 999.9 84.9* 66.0 0.00G 999.9 000000 724050 13743 19840721 72.5 21 67.1 21 1019.9 21 1017.5 21 10.0 21 6.8 21 20.0 27.0 84.9 66.9 1.12G 999.9 110010 724050 13743 19840722 74.8 24 69.5 24 1020.6 24 1018.2 24 9.8 24 8.4 24 13.0 999.9 81.0 69.1 0.12G 999.9 110000 724050 13743 19840723 78.5 24 72.0 24 1021.3 24 1018.9 24 10.8 24 6.1 24 11.1 999.9 86.0* 71.1 0.07G 999.9 010000 724050 13743 19840724 82.3 23 71.2 23 1017.3 23 1014.9 23 10.2 23 8.2 23 13.0 999.9 91.9 73.0 0.00G 999.9 000000 724050 13743 19840725 80.3 24 62.0 24 1018.2 24 1015.6 24 14.5 24 9.3 24 14.0 19.0 91.9 71.1 0.00D 999.9 010000 724050 13743 19840726 74.9 24 63.3 24 1019.0 24 1016.6 24 13.9 24 5.8 24 9.9 999.9 84.0 71.1 0.00G 999.9 010000 724050 13743 19840727 76.0 23 68.3 23 1012.1 23 1009.7 23 7.4 23 9.5 23 15.0 19.0 82.9* 71.1 0.13G 999.9 110000 724050 13743 19840728 71.1 24 59.7 24 1018.9 24 1016.5 24 13.7 24 8.5 24 12.0 999.9 82.9 66.9 0.01G 999.9 000000 724050 13743 19840729 70.4 23 61.9 23 1023.8 23 1021.4 23 12.0 23 6.8 23 11.1 999.9 75.9* 64.9 0.00G 999.9 000000 724050 13743 19840730 72.3 24 63.1 24 1023.6 24 1021.1 24 11.5 24 6.1 24 8.0 999.9 80.1* 64.9 0.01G 999.9 010000 724050 13743 19840731 74.4 23 65.7 23 1022.5 23 1020.1 23 8.7 23 5.9 23 9.9 999.9 82.0* 66.9 0.00D 999.9 000000 724050 13743 19840801 78.6 23 71.2 23 1020.7 23 1018.3 23 7.9 23 7.7 23 9.9 999.9 88.0* 66.9 0.00G 999.9 100000 724050 13743 19840802 80.5 24 74.5 23 1020.9 24 1018.5 24 8.6 24 5.3 24 13.0 15.0 88.0 72.0 0.06G 999.9 110010 724050 13743 19840803 78.6 24 73.7 24 1018.7 24 1016.3 24 7.2 24 6.4 24 9.9 999.9 88.0 73.9 0.22G 999.9 110010 724050 13743 19840804 79.0 24 72.1 24 1016.4 24 1014.0 24 7.1 24 6.5 24 12.0 999.9 87.1* 72.0 0.29G 999.9 110000 724050 13743 19840805 78.9 24 70.9 24 1016.6 24 1014.2 24 6.9 24 7.5 24 12.0 999.9 87.1 72.0 0.02G 999.9 110000 724050 13743 19840806 79.4 24 68.2 24 1016.4 24 1014.0 24 7.5 24 6.3 24 12.0 999.9 90.0* 70.0 0.00G 999.9 100000 724050 13743 19840807 82.5 24 71.8 24 1011.6 24 1009.2 24 5.9 24 7.2 24 12.0 17.1 91.0 70.0 0.00G 999.9 000000 724050 13743 19840808 82.3 24 71.2 24 1010.2 24 1007.9 24 5.0 24 6.7 24 15.9 20.0 91.0 73.0 0.07G 999.9 000010 724050 13743 19840809 82.5 23 73.8 23 1013.0 23 1010.6 23 3.9 23 5.9 23 9.9 999.9 91.0 75.0 0.00G 999.9 110010 724050 13743 19840810 79.1 24 73.3 24 1015.3 24 1012.9 24 4.6 24 6.5 24 12.0 999.9 91.0 75.0 0.03G 999.9 110010 724050 13743 19840811 79.6 23 72.0 23 1014.5 23 1012.1 23 6.0 23 6.1 23 8.9 999.9 86.0* 75.0 0.01G 999.9 010000 724050 13743 19840812 78.4 24 72.6 23 1015.5 24 1013.1 24 7.1 24 6.0 24 12.0 999.9 86.0 75.0 0.19G 999.9 110000 724050 13743 19840813 78.8 24 74.7 24 1017.0 24 1014.6 24 5.9 24 6.0 24 15.0 999.9 84.9 75.0 0.25G 999.9 110010 724050 13743 19840814 79.0 23 74.1 23 1016.6 23 1014.2 23 6.5 23 5.3 23 8.0 999.9 84.0 75.0 0.45G 999.9 110000 724050 13743 19840815 81.7 24 70.8 24 1016.3 24 1013.9 24 8.6 24 7.8 24 13.0 20.0 89.1* 75.0 0.01G 999.9 100000 724050 13743 19840816 79.3 23 67.0 23 1016.1 23 1013.6 23 7.9 23 5.5 23 9.9 999.9 89.1 71.1 0.00G 999.9 000000 724050 13743 19840817 80.8 24 65.3 24 1013.4 24 1011.0 24 9.5 24 7.9 24 13.0 15.9 88.0 71.1 0.00G 999.9 000000 724050 13743 19840818 76.2 24 64.8 24 1011.7 24 1009.3 24 9.9 24 5.6 24 8.0 999.9 87.1 69.1 0.00G 999.9 000000 724050 13743 19840819 75.2 23 67.3 22 1009.8 23 1007.4 23 7.1 22 6.0 23 9.9 999.9 84.0 66.9* 0.00G 999.9 000010 724050 13743 19840820 70.9 23 60.9 23 1013.3 23 1010.9 23 12.0 23 9.0 23 14.0 18.1 82.0 64.0 0.71G 999.9 110010 724050 13743 19840821 69.6 24 53.7 24 1020.9 24 1018.4 24 17.3 24 6.1 24 9.9 999.9 80.1* 59.0 0.00G 999.9 000000 724050 13743 19840822 72.6 24 62.7 24 1020.0 24 1017.6 24 13.9 24 8.0 24 14.0 999.9 82.9 59.0 0.00G 999.9 000000 724050 13743 19840823 75.2 23 65.9 23 1012.6 23 1010.2 23 9.5 22 9.5 23 13.0 999.9 82.9 62.1 0.00G 999.9 000000 724050 13743 19840824 72.1 23 59.7 23 1015.2 23 1012.8 23 14.3 23 8.8 23 12.0 999.9 80.1 63.0 0.00G 999.9 000000 724050 13743 19840825 71.2 23 57.8 22 1021.0 23 1018.6 23 18.4 23 7.8 23 9.9 999.9 82.0* 62.1 0.00G 999.9 000000 724050 13743 19840826 72.8 24 57.6 23 1023.5 24 1021.1 24 16.4 24 5.2 24 8.9 999.9 82.0 61.0 0.00G 999.9 000000 724050 13743 19840827 74.3 24 62.2 24 1020.9 24 1018.5 24 14.0 24 6.8 24 11.1 999.9 86.0 61.0 0.00G 999.9 000000 724050 13743 19840828 76.1 22 66.9 22 1017.7 22 1015.4 22 9.3 22 8.9 22 9.9 999.9 86.0 64.0 0.00G 999.9 000000 724050 13743 19840829 76.7 17 69.3 17 1016.0 17 1013.6 17 6.1 17 9.4 17 13.0 999.9 86.0 70.0 0.00G 999.9 000000 724050 13743 19840830 78.2 22 71.7 22 1013.0 22 1010.7 22 4.7 22 6.6 22 9.9 999.9 89.1* 72.0 0.00G 999.9 100000 724050 13743 19840831 81.0 24 63.5 24 1010.8 24 1008.4 24 11.4 24 9.6 24 15.0 21.0 89.1 72.0 0.00G 999.9 000000 724050 13743 19840901 73.9 23 53.5 23 1017.5 23 1015.0 23 14.5 23 8.0 23 999.9 999.9 88.0 62.1 0.00G 999.9 000000 724050 13743 19840902 75.9 24 61.7 23 1017.4 24 1014.9 24 15.1 24 6.5 24 15.0 999.9 89.1* 62.1 0.00G 999.9 000000 724050 13743 19840903 80.4 23 68.5 23 1011.4 23 1008.9 23 8.6 23 8.2 23 29.9 40.0 91.9* 66.0 0.00G 999.9 110010 724050 13743 19840904 71.1 24 65.9 24 1011.8 24 1009.4 24 6.6 24 8.2 24 14.0 17.1 73.0* 70.0 0.79G 999.9 110010 724050 13743 19840905 68.4 23 54.6 23 1019.2 23 1016.8 23 13.1 23 8.9 23 15.0 999.9 75.9 57.9 0.06G 999.9 000000 724050 13743 19840906 65.8 24 49.0 24 1023.8 24 1021.4 24 16.6 24 7.9 24 12.0 18.1 75.9 57.9 0.00G 999.9 010000 724050 13743 19840907 64.1 24 48.3 24 1028.6 24 1026.2 24 15.1 24 5.6 24 11.1 999.9 72.0 55.0 0.00G 999.9 000000 724050 13743 19840908 66.2 22 52.7 22 1030.9 22 1028.5 22 15.3 22 6.5 22 13.0 999.9 75.9* 55.0 0.00G 999.9 000000 724050 13743 19840909 69.0 24 58.2 24 1026.2 24 1023.8 24 15.0 24 6.9 24 12.0 999.9 80.1* 57.0 0.00G 999.9 000000 724050 13743 19840910 72.7 23 66.1 23 1019.0 23 1016.6 23 12.0 23 6.8 23 12.0 999.9 82.0* 60.1 0.01G 999.9 010000 724050 13743 19840911 72.6 24 65.9 24 1016.0 24 1013.6 24 10.0 24 5.0 24 8.9 999.9 82.0 64.9 0.00D 999.9 100000 724050 13743 19840912 74.0 24 67.7 24 1018.0 24 1015.6 24 7.3 24 8.0 24 14.0 999.9 81.0 64.9 0.00G 999.9 100000 724050 13743 19840913 72.3 24 63.8 24 1021.3 24 1018.9 24 9.3 24 5.9 24 9.9 999.9 79.0 66.9 0.00G 999.9 000000 724050 13743 19840914 76.4 22 71.1 22 1014.1 22 1011.7 22 3.9 22 5.9 22 8.9 999.9 84.9 66.9 0.00G 999.9 110000 724050 13743 19840915 71.1 24 62.4 24 1011.8 24 1009.4 24 8.8 24 9.9 24 20.0 28.0 84.9 66.0 0.66G 999.9 110000 724050 13743 19840916 60.2 24 44.6 24 1024.6 24 1022.1 24 17.3 24 8.4 24 15.9 31.1 73.0 50.0 0.03G 999.9 000000 724050 13743 19840917 61.0 23 44.3 23 1030.1 23 1027.7 23 17.6 23 7.6 23 12.0 999.9 72.0* 50.0 0.00G 999.9 000000 724050 13743 19840918 62.2 24 48.9 24 1028.8 24 1026.3 24 14.9 24 5.4 24 8.0 999.9 72.0 50.0 0.00G 999.9 000000 724050 13743 19840919 64.7 23 52.2 23 1020.4 23 1018.0 23 11.9 23 5.5 23 9.9 999.9 77.0* 51.1 0.00G 999.9 000000 724050 13743 19840920 69.2 24 57.4 24 1013.3 24 1010.9 24 9.7 24 7.8 24 13.0 999.9 82.9 51.1 0.00G 999.9 100000 724050 13743 19840921 73.0 24 59.3 24 1014.4 24 1012.0 24 9.6 24 6.8 24 9.9 999.9 82.9 57.0 0.00G 999.9 000000 724050 13743 19840922 71.7 24 58.7 24 1024.9 24 1022.4 24 12.0 24 6.2 24 11.1 999.9 82.0 63.0 0.00G 999.9 000000 724050 13743 19840923 72.0 23 62.8 23 1025.8 23 1023.4 23 11.0 23 9.3 23 13.0 999.9 82.9* 63.0 0.00G 999.9 000000 724050 13743 19840924 76.1 23 65.3 23 1021.6 23 1019.2 23 9.3 23 5.9 23 8.0 999.9 88.0* 63.0 0.00G 999.9 010000 724050 13743 19840925 78.1 24 68.6 24 1018.0 24 1015.6 24 6.8 24 5.3 24 9.9 999.9 88.0 69.1 0.00G 999.9 010000 724050 13743 19840926 72.0 23 60.9 23 1017.0 23 1014.6 23 12.0 23 9.8 23 20.0 28.0 87.1 66.9* 0.00G 999.9 110000 724050 13743 19840927 56.9 24 38.0 24 1027.9 24 1025.5 24 18.7 24 10.5 24 15.0 999.9 73.9 51.1 0.00G 999.9 010000 724050 13743 19840928 49.7 24 46.3 24 1025.5 24 1023.1 24 4.2 24 11.6 24 15.0 999.9 59.0 46.9 0.66G 999.9 110000 724050 13743 19840929 54.7 23 50.8 23 1021.7 23 1019.3 23 6.9 23 11.0 23 13.0 999.9 61.0* 46.9 0.08G 999.9 110000 724050 13743 19840930 60.1 24 49.5 24 1020.5 24 1018.1 24 12.5 24 9.2 24 13.0 999.9 66.9* 52.0 0.02G 999.9 010000 724050 13743 19841001 56.1 24 52.5 24 1016.2 24 1013.8 24 5.9 24 11.9 24 25.1 32.1 66.9 52.0 0.95G 999.9 110000 724050 13743 19841002 55.4 23 45.2 23 1019.4 23 1017.0 23 13.5 23 11.4 23 17.1 24.1 63.0* 51.1 0.63G 999.9 110000 724050 13743 19841003 57.1 23 42.3 23 1017.5 23 1015.1 23 16.7 23 9.2 23 15.0 21.0 70.0* 46.0 0.00G 999.9 000000 724050 13743 19841004 61.6 23 48.4 22 1018.3 23 1015.8 23 12.3 23 6.5 23 12.0 999.9 71.1* 46.0 0.00G 999.9 000000 724050 13743 19841005 62.4 24 51.3 24 1024.0 24 1021.6 24 10.9 24 5.9 24 9.9 999.9 72.0* 54.0 0.00G 999.9 000000 724050 13743 19841006 59.1 24 46.7 24 1031.5 24 1029.1 24 13.4 24 8.0 24 12.0 999.9 72.0 51.1 0.00D 999.9 000000 724050 13743 19841007 58.7 22 49.6 22 1033.6 22 1031.2 22 13.4 22 5.6 22 8.0 999.9 66.0 55.9 0.00D 999.9 000000 724050 13743 19841008 60.9 21 52.7 21 1027.9 21 1025.5 21 16.3 21 5.7 21 9.9 999.9 69.1* 55.0 0.00C 999.9 000000 724050 13743 19841009 66.5 24 60.2 24 1024.2 24 1021.8 24 9.4 24 4.9 24 8.0 999.9 75.0* 62.1 0.00D 999.9 010000 724050 13743 19841010 66.6 24 61.6 24 1026.4 24 1024.0 24 5.1 24 4.8 24 8.9 999.9 75.0 61.0 0.00D 999.9 100000 724050 13743 19841011 65.3 24 59.8 24 1027.4 24 1025.0 24 4.2 24 4.6 24 8.0 999.9 73.9 60.1 0.00D 999.9 100000 724050 13743 19841012 65.0 24 56.1 24 1023.2 24 1020.8 24 6.2 24 5.6 24 8.9 999.9 77.0* 54.0 0.00D 999.9 100000 724050 13743 19841013 64.4 24 54.0 24 1017.3 24 1014.9 24 8.4 24 9.7 24 13.0 999.9 77.0 59.0 0.00D 999.9 000000 724050 13743 19841014 63.3 24 49.8 24 1012.4 24 1010.0 24 13.5 24 11.0 24 15.0 999.9 73.9* 53.1 0.00D 999.9 000000 724050 13743 19841015 63.0 24 50.8 24 1013.6 24 1011.2 24 12.3 24 4.8 24 8.0 999.9 75.0* 52.0 0.00D 999.9 000000 724050 13743 19841016 64.2 24 55.7 24 1018.2 24 1015.8 24 11.4 24 4.7 24 8.9 999.9 75.0 57.9 0.12G 999.9 010000 724050 13743 19841017 65.0 24 57.2 24 1022.7 24 1020.3 24 13.3 24 5.7 24 8.0 999.9 71.1 57.9 0.10G 999.9 000000 724050 13743 19841018 68.1 24 61.2 24 1020.7 24 1018.3 24 9.5 24 5.0 24 8.9 999.9 78.1* 61.0 0.00G 999.9 010000 724050 13743 19841019 65.7 23 63.0 23 1018.1 23 1015.7 23 3.4 23 5.3 23 9.9 999.9 78.1 63.0 0.00D 999.9 110000 724050 13743 19841020 68.6 24 64.7 24 1017.1 24 1014.7 24 4.0 24 5.1 24 8.0 999.9 78.1* 63.0 0.00D 999.9 110000 724050 13743 19841021 71.6 24 64.4 24 1018.6 24 1016.2 24 6.5 24 8.3 24 18.1 26.0 82.9* 64.0 0.00D 999.9 100000 724050 13743 19841022 75.0 24 65.9 24 1019.6 24 1017.2 24 11.6 24 11.4 24 17.1 22.9 82.9 64.0 0.00G 999.9 010000 724050 13743 19841023 69.8 23 64.2 23 1021.6 23 1019.2 23 9.9 23 7.6 23 15.0 999.9 82.0 66.0 0.04G 999.9 110000 724050 13743 19841024 58.2 24 54.9 24 1025.7 24 1023.2 24 4.6 24 8.7 24 17.1 999.9 73.0 55.0 0.71G 999.9 110000 724050 13743 19841025 60.5 23 55.9 23 1029.1 23 1026.7 23 5.8 23 5.4 23 7.0 999.9 64.0* 57.9 0.28G 999.9 100000 724050 13743 19841026 66.4 23 62.2 23 1024.0 23 1021.6 23 6.0 23 8.6 23 12.0 999.9 75.0* 62.1 0.00G 999.9 110000 724050 13743 19841027 70.4 24 65.8 24 1021.9 24 1019.5 24 6.9 24 5.7 24 8.0 999.9 79.0* 62.1 0.00G 999.9 100000 724050 13743 19841028 72.0 24 66.0 24 1019.2 24 1016.8 24 10.0 24 9.0 24 13.0 999.9 82.0* 64.9 0.00G 999.9 110000 724050 13743 19841029 72.1 24 67.5 24 1017.3 24 1014.9 24 7.2 24 5.3 24 14.0 999.9 82.0 66.0 0.78G 999.9 110010 724050 13743 19841030 64.0 24 54.9 24 1023.4 24 1021.0 24 12.6 24 8.1 24 15.0 999.9 79.0 57.0 0.01G 999.9 000000 724050 13743 19841031 65.0 24 58.1 24 1027.3 24 1024.8 24 5.8 24 4.8 24 8.0 15.0 73.0* 57.0 0.00G 999.9 100000 724050 13743 19841101 62.8 24 56.7 24 1029.0 24 1026.5 24 6.3 24 5.9 24 8.9 999.9 73.0 57.9 0.00D 999.9 100000 724050 13743 19841102 62.5 24 49.8 24 1020.2 24 1017.7 24 10.8 24 11.5 24 18.1 24.1 68.0 53.1* 0.00D 999.9 100000 724050 13743 19841103 46.1 24 27.5 24 1027.3 24 1024.9 24 18.4 24 10.7 23 15.0 19.0 64.9 37.9 0.00G 999.9 000000 724050 13743 19841104 51.8 24 42.2 24 1021.0 24 1018.5 24 12.6 24 7.0 24 9.9 999.9 62.1* 37.9 0.00G 999.9 010000 724050 13743 19841105 60.0 24 54.0 24 1007.7 23 1005.4 23 9.1 24 6.8 24 14.0 999.9 64.9* 43.0 0.91G 999.9 110000 724050 13743 19841106 52.7 23 37.5 23 1012.1 23 1009.7 23 14.3 23 10.4 23 999.9 999.9 64.9 46.0 0.01G 999.9 000000 724050 13743 19841107 45.3 22 28.2 22 1024.4 22 1022.0 22 17.2 22 11.2 22 15.0 999.9 57.0 39.0 0.00G 999.9 000000 724050 13743 19841108 41.9 24 26.6 24 1029.7 24 1027.3 24 15.8 24 5.5 24 8.9 999.9 52.0 33.1 0.00D 999.9 000000 724050 13743 19841109 45.6 24 34.2 24 1025.9 24 1023.4 24 10.2 24 5.1 24 11.1 999.9 57.0* 36.0 0.00D 999.9 100000 724050 13743 19841110 54.9 23 40.5 23 1017.1 23 1014.7 23 11.7 23 9.9 23 18.1 25.1 66.0* 36.0 0.00G 999.9 000000 724050 13743 19841111 57.2 24 48.7 24 1008.4 24 1006.0 24 11.6 24 10.2 24 14.0 999.9 66.0 55.0 0.01G 999.9 110000 724050 13743 19841112 45.8 24 29.5 24 1012.8 24 1010.4 24 16.7 24 13.4 24 19.0 27.0 60.1 39.9 0.17G 999.9 000000 724050 13743 19841113 42.4 22 26.6 22 1016.5 22 1014.1 22 17.6 22 14.1 22 22.9 32.1 50.0* 39.0 0.00G 999.9 000000 724050 13743 19841114 45.0 23 22.0 23 1023.3 23 1020.9 23 17.5 23 11.6 23 17.1 20.0 55.0* 37.0 0.00G 999.9 000000 724050 13743 19841115 46.1 23 27.8 23 1023.5 23 1021.1 23 15.9 23 8.9 23 19.0 25.1 62.1* 34.0 0.00D 999.9 000000 724050 13743 19841116 54.5 24 29.2 24 1014.5 24 1012.1 24 15.8 24 11.4 24 15.0 21.0 63.0 48.9 0.00D 999.9 010000 724050 13743 19841117 42.2 23 15.0 23 1022.2 23 1019.8 23 19.1 23 10.6 23 18.1 29.9 57.0 36.0 0.00G 999.9 000000 724050 13743 19841118 39.9 24 27.0 24 1022.9 24 1020.5 24 11.4 24 5.3 24 8.9 999.9 48.9 35.1 0.00G 999.9 111000 724050 13743 19841119 39.8 24 36.0 24 1014.8 24 1012.4 24 5.4 24 8.0 24 15.0 999.9 45.0 35.1 0.73G 999.9 110000 724050 13743 19841120 34.2 24 18.6 24 1026.2 24 1023.8 24 16.7 24 13.0 24 17.1 20.0 42.1 28.0 0.13G 999.9 000000 724050 13743 19841121 33.5 24 18.7 24 1034.4 24 1031.9 24 17.3 24 8.9 24 14.0 999.9 43.0* 25.0 0.00G 999.9 000000 724050 13743 19841122 33.9 24 21.1 24 1036.8 24 1034.4 24 15.7 24 7.2 24 9.9 999.9 43.0 21.0 0.00D 999.9 000000 724050 13743 19841123 35.8 23 23.1 23 1029.4 23 1026.9 23 9.4 23 5.5 23 8.9 999.9 53.1* 25.0 0.00D 999.9 100000 724050 13743 19841124 39.9 23 27.2 23 1023.5 23 1021.1 23 9.5 23 3.9 23 8.0 999.9 53.1 30.0 0.00C 999.9 000000 724050 13743 19841125 42.5 24 32.1 24 1023.6 24 1021.2 24 8.9 24 4.0 24 8.9 999.9 55.9* 30.0 0.00G 999.9 000000 724050 13743 19841126 43.2 24 34.5 24 1026.2 24 1023.7 24 6.6 24 3.3 24 8.0 999.9 55.9 32.0 0.00G 999.9 100000 724050 13743 19841127 45.4 24 37.0 24 1028.0 24 1025.6 24 6.6 24 4.4 24 9.9 999.9 62.1* 33.1 0.00G 999.9 100000 724050 13743 19841128 56.9 24 50.2 24 1017.0 24 1014.6 24 13.0 24 10.9 24 20.0 33.0 66.9* 35.1 0.00G 999.9 110000 724050 13743 19841129 44.5 23 33.2 23 1011.1 23 1008.7 23 14.2 23 13.8 23 22.9 35.9 52.0* 37.9 1.69G 999.9 110000 724050 13743 19841130 41.3 24 32.5 24 1013.9 24 1011.5 24 11.2 23 5.5 24 9.9 999.9 54.0* 32.0 0.00G 999.9 100000 724050 13743 19841201 47.4 24 33.4 24 1013.5 24 1011.1 24 15.4 24 7.9 24 13.0 18.1 55.9* 32.0 0.00G 999.9 000000 724050 13743 19841202 43.6 24 32.3 24 1025.4 24 1023.0 24 13.0 24 6.7 24 8.9 999.9 55.9 34.0 0.00G 999.9 000000 724050 13743 19841203 47.1 24 40.3 24 1019.7 24 1017.3 24 6.9 24 6.6 24 12.0 999.9 54.0* 34.0 0.11G 999.9 110000 724050 13743 19841204 39.8 24 20.3 24 1025.5 24 1023.1 24 15.3 24 10.1 24 17.1 20.0 54.0 34.0 0.01G 999.9 000000 724050 13743 19841205 37.8 24 18.8 24 1030.4 24 1028.0 24 14.5 24 8.3 24 12.0 999.9 43.0 34.0 0.00G 999.9 011000 724050 13743 19841206 36.3 24 30.3 24 1010.1 24 1007.7 24 10.3 24 10.4 24 20.0 22.9 42.1* 34.0 0.87G 999.9 111000 724050 13743 19841207 28.3 23 10.6 23 1019.0 23 1016.6 23 18.4 23 13.8 23 18.1 29.9 42.1 21.9 0.00G 999.9 000000 724050 13743 19841208 33.0 23 16.9 23 1018.4 23 1016.0 23 17.8 23 7.3 22 11.1 999.9 45.0* 21.9 0.00G 999.9 000000 724050 13743 19841209 37.6 23 28.5 23 1023.3 23 1020.9 23 8.9 23 6.0 23 9.9 999.9 51.1* 24.1 0.00G 999.9 100000 724050 13743 19841210 40.8 23 35.9 22 1019.0 23 1016.6 23 4.6 23 5.3 22 7.0 999.9 52.0 28.9 0.00G 999.9 110000 724050 13743 19841211 45.9 24 38.6 24 1016.0 24 1013.6 24 6.0 24 8.0 24 12.0 999.9 52.0* 36.0 0.00G 999.9 100000 724050 13743 19841212 40.5 24 36.0 24 1016.2 24 1013.8 24 4.6 24 5.7 24 11.1 999.9 53.1 33.1 0.00G 999.9 100000 724050 13743 19841213 50.0 23 44.4 23 1014.7 23 1012.3 23 4.5 23 5.1 23 8.0 999.9 64.0* 43.0 0.00D 999.9 100000 724050 13743 19841214 52.8 22 46.0 22 1026.6 22 1024.2 22 6.4 22 7.0 22 9.9 999.9 64.0 50.0 0.00C 999.9 100000 724050 13743 19841215 49.5 22 47.1 22 1028.5 22 1026.1 21 2.6 22 5.0 22 11.1 999.9 55.9 46.0 0.00G 999.9 100000 724050 13743 19841216 45.4 24 43.4 24 1030.3 24 1027.8 24 3.1 24 6.8 24 14.0 999.9 55.9 43.0 0.00G 999.9 110000 724050 13743 19841217 52.3 24 49.0 24 1022.5 24 1020.1 24 4.2 24 7.9 24 11.1 999.9 64.0* 43.0 0.00G 999.9 110000 724050 13743 19841218 57.6 24 48.6 24 1019.4 24 1017.0 24 8.4 24 8.2 24 14.0 999.9 71.1* 48.0 0.00G 999.9 000000 724050 13743 19841219 51.1 20 36.0 20 1020.0 20 1017.6 20 12.7 20 7.4 20 15.0 999.9 72.0 46.9* 0.00G 999.9 010000 724050 13743 19841220 49.3 23 40.6 23 1016.7 23 1014.3 23 11.2 23 5.6 23 8.0 999.9 55.9 42.1 0.00C 999.9 000000 724050 13743 19841221 42.8 23 36.7 23 1021.2 23 1018.8 23 7.4 23 6.4 23 9.9 999.9 53.1 37.9* 0.12D 999.9 110000 724050 13743 19841222 51.5 24 44.3 24 1010.2 24 1007.9 24 8.7 24 9.4 24 15.0 24.1 64.0* 37.9 0.05D 999.9 110000 724050 13743 19841223 44.2 24 20.4 24 1024.5 24 1022.0 24 19.8 24 8.9 24 20.0 27.0 64.0 35.1 0.00D 999.9 000000 724050 13743 19841224 40.3 24 28.8 24 1021.8 24 1019.4 24 16.2 24 6.6 24 9.9 999.9 50.0 32.0 0.00D 999.9 010000 724050 13743 19841225 45.2 21 29.2 21 1023.1 21 1020.7 21 13.2 21 12.3 21 19.0 27.0 54.0 33.1* 0.02G 999.9 010000 724050 13743 19841226 34.1 23 17.1 23 1038.6 23 1036.2 23 12.1 23 4.8 23 8.9 999.9 54.0 26.1 0.00G 999.9 000000 724050 13743 19841227 41.1 24 26.9 24 1034.9 24 1032.4 24 12.3 24 5.2 24 8.0 999.9 48.0* 37.0 0.00D 999.9 010000 724050 13743 19841228 49.7 23 40.9 23 1025.7 23 1023.2 23 10.0 23 5.2 23 11.1 999.9 71.1* 41.0 0.00D 999.9 000000 724050 13743 19841229 57.6 24 48.2 24 1018.3 24 1015.9 24 13.7 24 9.1 24 13.0 999.9 75.0* 41.0 0.00G 999.9 000000 724050 13743 19841230 57.2 24 45.2 24 1020.8 24 1018.4 24 15.3 24 9.3 24 15.9 999.9 75.0 48.0 0.00G 999.9 010000 724050 13743 19841231 45.8 24 36.1 24 1029.4 24 1027.0 24 9.2 24 6.0 24 9.9 999.9 63.0 43.0 0.01G 999.9 110000 fluids-1.0.22/tests/gsod/1999/0000755000175000017500000000000014302004506015113 5ustar nileshnileshfluids-1.0.22/tests/gsod/1999/724050-13743.op0000644000175000017500000014327214302004506016704 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19990101 25.9 24 14.1 24 1024.1 24 1021.8 24 8.2 24 7.1 24 19.0 26.0 30.9* 21.0* 0.00A 999.9 100000 724050 13743 19990102 22.7 24 4.0 24 1034.5 24 1032.3 24 9.9 24 10.0 24 15.0 18.1 32.0 19.0 0.00G 999.9 000000 724050 13743 19990103 38.2 24 32.7 24 1010.4 24 1008.4 24 6.8 24 11.1 24 25.1 30.9 55.4* 21.2* 0.80G 999.9 111000 724050 13743 19990104 29.4 24 8.7 24 1018.2 24 1015.6 22 9.9 24 11.0 24 15.9 21.0 37.9* 24.1* 0.36G 999.9 000000 724050 13743 19990105 22.0 24 2.1 24 1027.7 24 1025.5 23 9.9 24 11.0 24 17.1 22.9 26.1* 18.0* 0.00G 999.9 000000 724050 13743 19990106 23.1 24 8.7 24 1026.7 24 1024.4 24 9.9 24 7.2 24 15.9 21.0 33.1* 17.1* 0.00G 999.9 000000 724050 13743 19990107 35.0 24 13.2 24 1022.5 24 1020.4 23 9.9 24 11.1 24 17.1 22.9 39.0* 30.9* 0.00G 999.9 000000 724050 13743 19990108 26.0 24 12.8 24 1030.2 24 1027.9 24 6.2 24 5.8 24 12.0 999.9 30.0* 23.0* 0.00G 2.0 111000 724050 13743 19990109 34.3 24 30.5 24 1012.7 24 1010.4 24 3.7 24 9.9 24 18.1 26.0 45.0* 25.0* 0.38G 1.2 110000 724050 13743 19990110 26.0 24 9.5 24 1021.0 24 9999.9 0 9.9 24 11.8 24 18.1 999.9 33.1* 19.9* 0.04G 2.0 000000 724050 13743 19990111 27.8 24 9.8 24 1021.4 24 1019.1 24 9.9 24 6.3 24 15.0 18.1 32.0* 24.1* 0.00G 999.9 000000 724050 13743 19990112 42.2 24 24.5 24 1017.5 24 1015.2 24 9.9 24 9.9 24 15.0 999.9 57.0* 28.9* 0.00G 999.9 000000 724050 13743 19990113 50.1 24 35.1 24 1018.4 24 1016.1 24 9.9 24 7.8 24 11.1 999.9 57.0 30.9 0.00G 999.9 010000 724050 13743 19990114 34.2 24 30.0 24 1026.2 24 1023.9 24 6.4 24 11.9 24 17.1 19.0 52.0* 28.0* 0.01G 999.9 110000 724050 13743 19990115 32.8 24 28.0 24 1016.0 24 1013.8 22 6.3 24 8.8 24 18.1 28.9 37.9 28.0 0.87G 999.9 111000 724050 13743 19990116 35.9 24 22.5 24 1017.8 24 1015.5 24 9.9 24 8.4 24 15.9 20.0 53.1* 27.0* 0.06G 999.9 000000 724050 13743 19990117 44.4 24 28.7 24 1021.8 24 1019.5 24 9.9 24 4.5 24 11.1 999.9 57.0* 33.1* 0.00G 999.9 000000 724050 13743 19990118 48.5 24 42.8 24 1014.4 24 1012.0 24 7.3 24 7.5 24 22.0 37.9 59.0* 39.2* 0.47G 999.9 110010 724050 13743 19990119 43.9 24 28.5 24 1014.5 24 1012.2 24 9.9 24 7.0 24 11.1 20.0 59.0 37.0 0.32G 999.9 000000 724050 13743 19990120 44.9 24 31.1 24 1019.8 24 1017.5 24 9.9 24 4.7 24 14.0 19.0 55.0 36.0 0.01G 999.9 010000 724050 13743 19990121 40.7 24 36.3 24 1019.3 24 1017.0 24 7.1 24 3.2 24 8.0 999.9 46.4* 34.0* 99.99 999.9 110000 724050 13743 19990122 45.6 24 43.6 24 1022.2 24 1020.7 20 3.2 24 4.7 24 8.0 999.9 51.8* 41.0* 0.46G 999.9 100000 724050 13743 19990123 54.8 24 51.2 24 1021.8 24 1019.5 24 4.3 24 8.4 24 19.0 22.9 70.0* 46.0* 0.00G 999.9 110000 724050 13743 19990124 56.1 24 52.1 24 1013.4 24 1011.1 24 7.7 24 9.8 24 16.9 21.0 71.1 46.0 0.78G 999.9 110000 724050 13743 19990125 42.3 24 29.8 24 1021.6 24 1019.3 24 9.9 24 7.6 24 12.0 19.0 50.0* 36.0* 0.87G 999.9 010000 724050 13743 19990126 42.9 24 26.9 24 1030.4 24 1028.1 24 9.9 24 6.9 24 13.0 20.0 50.0 36.0 0.00G 999.9 000000 724050 13743 19990127 41.5 24 32.7 24 1023.4 24 1021.1 24 9.7 24 4.4 24 8.9 999.9 54.0* 33.1* 0.00G 999.9 000000 724050 13743 19990128 48.8 24 40.9 24 1014.3 24 1011.9 22 9.8 24 6.0 24 12.0 999.9 62.1* 41.0* 0.00G 999.9 000000 724050 13743 19990129 49.6 24 33.5 24 1023.4 24 1021.1 24 9.9 24 10.6 24 17.1 21.0 63.0 39.9 0.00G 999.9 000000 724050 13743 19990130 39.8 24 29.2 24 1032.0 24 1029.6 22 9.9 24 5.5 24 12.0 999.9 46.9* 33.1* 0.00G 999.9 000000 724050 13743 19990131 33.3 24 21.4 24 1040.5 24 1038.1 24 9.9 24 10.4 24 15.0 999.9 42.1* 28.0* 0.00G 999.9 000000 724050 13743 19990201 31.0 24 24.4 24 1036.2 23 1035.7 5 9.9 24 2.9 24 6.0 999.9 39.0* 25.0* 0.00G 999.9 010000 724050 13743 19990202 42.0 24 41.8 24 1016.6 18 1018.1 5 4.5 24 4.4 24 8.9 999.9 53.1* 37.0* 0.44G 999.9 110000 724050 13743 19990203 48.0 24 38.1 24 1013.9 21 1009.4 6 7.3 24 3.8 24 10.1 999.9 57.0* 42.1* 0.04G 999.9 100000 724050 13743 19990204 46.4 24 40.1 24 1013.5 22 1011.6 5 7.6 24 6.0 24 18.1 28.0 57.0 41.0 0.00G 999.9 110010 724050 13743 19990205 44.8 24 25.5 24 1022.6 24 1018.9 7 9.9 24 11.5 24 17.1 26.0 50.0* 37.9* 0.04G 999.9 000000 724050 13743 19990206 43.5 24 32.2 24 1017.9 24 1015.1 5 9.9 24 4.7 24 8.9 999.9 51.1 37.9 0.00G 999.9 010000 724050 13743 19990207 42.8 24 36.2 24 1014.6 23 1012.2 4 9.1 24 6.0 24 14.0 999.9 54.0* 36.0* 0.04G 999.9 111000 724050 13743 19990208 41.0 24 37.3 24 1011.6 22 1008.4 4 6.3 24 8.3 24 17.1 23.9 48.0 35.1 0.02G 999.9 110000 724050 13743 19990209 42.2 24 35.9 24 1019.9 24 1018.2 4 8.9 24 6.7 24 14.0 18.1 57.9* 32.0* 0.00G 999.9 100000 724050 13743 19990210 50.8 24 31.7 24 1020.3 24 1017.0 4 9.9 24 6.3 24 14.0 16.9 59.0* 39.9* 0.00G 999.9 000000 724050 13743 19990211 47.6 24 35.7 24 1024.9 24 1022.9 5 9.9 24 5.2 24 12.0 999.9 61.0* 36.0* 0.00G 999.9 000000 724050 13743 19990212 58.0 24 49.9 24 1014.6 22 1012.8 5 9.2 24 14.2 24 21.0 33.0 73.9* 42.8* 0.00G 999.9 110010 724050 13743 19990213 35.9 24 21.7 24 1018.1 23 9999.9 0 9.9 24 12.7 24 22.9 28.9 43.0* 30.9* 0.48G 999.9 010000 724050 13743 19990214 33.2 24 13.5 24 1026.5 24 1024.0 4 9.9 24 11.8 24 17.1 27.0 42.1* 28.0* 0.00G 999.9 000000 724050 13743 19990215 37.9 24 19.2 24 1026.9 24 1025.1 4 9.9 24 6.1 24 11.1 999.9 50.0* 28.9* 0.00G 999.9 000000 724050 13743 19990216 45.6 24 30.1 24 1020.6 24 1018.8 4 9.9 24 2.5 24 10.1 999.9 64.0* 34.0* 0.00G 999.9 000000 724050 13743 19990217 47.0 24 40.5 24 1013.7 23 1011.7 4 9.4 24 2.2 24 8.9 999.9 64.0 32.0 0.00G 999.9 110000 724050 13743 19990218 47.0 24 43.7 24 1011.3 19 9999.9 0 6.2 24 9.5 24 14.0 999.9 57.0 39.0 0.63G 999.9 110000 724050 13743 19990219 39.4 24 29.5 24 1014.2 24 1011.6 6 9.9 24 8.0 24 11.1 999.9 46.0* 33.1* 0.15G 999.9 000000 724050 13743 19990220 37.4 24 25.3 24 1014.6 23 1011.9 4 9.9 24 11.6 24 17.1 19.0 42.1* 30.9* 0.00G 999.9 000000 724050 13743 19990221 32.0 24 16.4 24 1017.9 24 1015.4 5 9.9 24 14.3 24 18.1 23.9 43.0 27.0 0.00G 999.9 000000 724050 13743 19990222 28.4 24 7.4 24 1023.3 24 1019.7 5 9.9 24 15.0 24 22.0 29.9 33.8* 21.9* 0.00G 999.9 000000 724050 13743 19990223 26.0 24 3.9 24 1030.6 24 1027.0 4 9.9 24 7.8 24 14.0 19.0 34.0 19.9 0.00G 999.9 000000 724050 13743 19990224 29.7 23 24.3 23 1029.1 20 9999.9 0 8.0 23 6.9 23 10.1 999.9 39.0* 24.1* 0.00G 999.9 101000 724050 13743 19990225 33.3 24 29.6 24 1023.4 21 1022.3 6 9.3 24 3.1 24 7.0 999.9 39.0 24.1 0.00G 999.9 111000 724050 13743 19990226 38.1 24 29.3 24 1018.9 22 1015.5 5 8.3 24 9.9 24 15.9 23.9 48.0* 30.9* 0.01G 999.9 111000 724050 13743 19990227 41.3 24 24.2 24 1019.1 24 1017.2 4 9.4 24 4.5 24 10.1 999.9 51.1* 30.9* 0.00G 999.9 000000 724050 13743 19990228 44.4 24 38.4 24 1005.4 20 1009.5 4 5.8 24 4.7 24 10.1 999.9 52.0 30.0 0.13G 999.9 110000 724050 13743 19990301 43.8 24 31.4 24 997.8 24 994.9 4 9.5 24 10.4 24 22.0 32.1 48.0* 39.0* 0.55G 999.9 110000 724050 13743 19990302 44.3 24 22.2 24 1008.8 24 1005.3 4 9.9 24 10.4 24 17.1 22.0 57.0* 37.0* 0.00G 999.9 000000 724050 13743 19990303 52.8 24 38.2 24 1006.3 23 1005.5 4 9.9 24 10.7 24 25.1 34.0 68.0* 43.0* 0.00G 999.9 010010 724050 13743 19990304 41.4 24 30.0 24 1002.1 19 995.1 4 7.9 24 16.8 24 24.1 35.9 57.9* 35.1* 0.44G 999.9 111000 724050 13743 19990305 38.5 24 20.4 24 1025.6 24 1023.3 5 9.9 24 5.6 24 12.0 20.0 48.0* 33.1* 0.09G 999.9 000000 724050 13743 19990306 43.9 24 32.2 24 1021.1 21 1022.9 4 9.7 24 9.5 24 15.0 999.9 55.9* 39.9* 0.00G 999.9 110000 724050 13743 19990307 35.4 24 18.0 24 1022.6 24 1017.9 6 9.9 24 17.7 24 24.1 34.0 53.1* 25.0* 0.14G 999.9 010000 724050 13743 19990308 29.2 24 6.7 24 1035.8 24 1033.6 6 9.9 24 11.6 24 15.9 22.9 39.0* 19.9* 0.00G 999.9 000000 724050 13743 19990309 28.8 24 15.4 24 1028.5 21 1027.1 6 6.0 24 5.9 24 10.1 999.9 39.9 19.9 0.00G 999.9 101000 724050 13743 19990310 30.1 24 24.6 24 1014.1 19 1012.6 5 6.3 24 6.8 24 12.0 999.9 37.0* 26.1* 0.72G 7.9 101000 724050 13743 19990311 34.0 24 16.1 24 1014.1 24 1012.3 5 9.9 24 13.2 24 20.0 27.0 42.1* 27.0* 0.00G 3.9 000000 724050 13743 19990312 37.5 24 19.5 24 1014.8 24 1012.1 4 9.9 24 16.4 24 25.1 30.9 46.0* 32.0* 0.00G 1.2 000000 724050 13743 19990313 39.4 24 22.6 24 1021.0 24 1018.6 5 9.9 24 11.1 24 17.1 25.1 46.0 30.9 0.00G 1.2 000000 724050 13743 19990314 38.2 24 29.8 24 1018.3 22 1017.5 5 6.9 24 5.9 24 12.0 999.9 46.9 32.0 0.00G 999.9 111000 724050 13743 19990315 38.5 24 32.4 24 1006.0 21 9999.9 0 8.0 24 16.4 24 24.1 28.9 46.9* 33.8* 1.11G 999.9 111000 724050 13743 19990316 43.4 24 20.3 24 1015.8 24 1013.2 4 9.9 24 9.9 24 14.0 20.0 55.9* 35.1* 0.15G 999.9 000000 724050 13743 19990317 52.8 24 32.5 24 1013.0 24 1010.9 4 9.9 24 8.4 24 14.0 999.9 75.9 34.0 0.00G 999.9 000000 724050 13743 19990318 60.6 23 34.7 23 1008.5 23 9999.9 0 9.9 23 11.6 23 27.0 33.0 75.9 39.0 0.00G 999.9 000000 724050 13743 19990319 48.4 24 26.2 24 1019.6 23 1016.4 4 9.9 24 14.0 24 21.0 28.0 54.0* 44.1* 0.00G 999.9 000000 724050 13743 19990320 43.2 24 23.3 24 1024.8 24 1023.0 5 9.9 24 7.4 24 15.9 21.0 54.0* 32.0* 0.00G 999.9 000000 724050 13743 19990321 44.8 24 33.5 24 1017.0 22 1016.4 6 8.1 24 6.4 24 9.9 999.9 55.9 32.0 0.00G 999.9 110010 724050 13743 19990322 44.6 24 29.8 24 1009.5 24 1005.8 5 9.3 24 12.3 24 20.0 28.0 53.1* 39.9* 1.26G 999.9 110000 724050 13743 19990323 43.8 24 27.8 24 1021.6 24 1019.2 5 9.9 24 6.4 24 12.0 999.9 53.1* 33.1* 0.00G 999.9 000000 724050 13743 19990324 49.7 24 41.9 24 1017.1 24 1015.4 4 9.7 24 4.0 24 10.1 999.9 57.9* 46.0* 0.01G 999.9 010000 724050 13743 19990325 49.9 24 34.8 24 1016.9 24 1013.9 4 9.7 24 7.9 24 13.0 14.0 55.0* 44.1* 0.01G 999.9 000000 724050 13743 19990326 42.8 24 23.1 24 1022.9 22 1020.0 4 9.9 23 10.4 23 15.9 999.9 51.8* 34.0* 0.00G 999.9 000000 724050 13743 19990327 44.5 24 27.7 24 1021.3 24 1019.4 5 9.9 24 7.6 24 14.0 999.9 52.0 34.0 0.00G 999.9 000000 724050 13743 19990328 50.1 24 33.1 24 1015.3 24 1013.1 6 9.9 24 13.2 24 19.0 29.9 60.1* 43.0* 0.04G 999.9 010000 724050 13743 19990329 57.1 24 34.0 24 1016.4 24 1014.0 6 9.9 24 7.7 24 15.9 25.1 71.6* 43.0* 0.00I 999.9 000000 724050 13743 19990330 57.7 24 24.3 24 1024.3 24 1020.6 5 9.9 24 7.6 24 14.0 18.1 71.1 43.0 0.00G 999.9 000000 724050 13743 19990331 56.4 24 29.0 24 1025.3 24 1023.7 5 9.9 24 8.5 24 18.1 27.0 71.1* 41.0* 0.00G 999.9 000000 724050 13743 19990401 58.2 24 46.8 24 1018.2 21 1016.5 4 7.9 24 5.7 24 12.0 999.9 72.0 39.9 0.01G 999.9 110000 724050 13743 19990402 62.2 24 56.8 24 1016.5 19 1013.9 4 5.8 24 4.4 24 7.0 999.9 71.1* 55.4* 0.24G 999.9 100000 724050 13743 19990403 58.1 24 48.7 24 1019.8 24 1018.0 5 9.4 24 6.8 24 12.0 999.9 70.0* 50.0* 0.00G 999.9 000000 724050 13743 19990404 64.9 24 56.7 24 1012.3 22 1009.9 5 7.0 24 6.6 24 18.1 25.1 82.0* 55.9* 0.00G 999.9 110010 724050 13743 19990405 53.1 24 39.2 24 1021.6 21 1018.8 4 8.7 24 8.2 24 21.0 25.1 66.0* 46.0* 0.56G 999.9 110000 724050 13743 19990406 52.5 24 36.7 24 1024.5 24 1024.3 4 9.9 24 9.1 24 15.9 20.0 64.9* 42.1* 0.02G 999.9 000000 724050 13743 19990407 63.0 24 46.2 24 1018.0 24 1016.2 5 9.9 24 9.5 24 15.0 22.0 73.9* 52.0* 0.00G 999.9 000000 724050 13743 19990408 66.0 24 47.1 24 1012.9 24 1012.2 5 9.9 24 6.5 24 14.0 20.0 84.0* 48.9* 0.00G 999.9 000000 724050 13743 19990409 64.3 24 48.3 24 1002.9 23 1001.9 6 9.9 24 8.3 24 19.0 28.9 84.9 48.0 0.00G 999.9 010010 724050 13743 19990410 52.7 24 40.1 24 1010.3 23 1005.3 5 9.4 24 10.2 24 15.0 21.0 62.1* 46.0* 0.30G 999.9 110000 724050 13743 19990411 50.3 24 41.7 24 1015.3 23 1012.9 6 8.1 24 6.1 24 15.0 15.9 62.1 46.0 0.12G 999.9 110000 724050 13743 19990412 50.4 24 42.4 24 1009.9 22 1007.7 6 8.9 24 11.4 24 21.0 28.9 55.9* 45.0* 0.23G 999.9 110000 724050 13743 19990413 52.2 24 26.8 24 1014.4 23 1012.4 5 9.9 24 15.0 24 24.1 30.9 63.0* 43.0* 0.00G 999.9 000000 724050 13743 19990414 57.7 24 25.9 24 1012.3 23 1010.0 5 9.9 24 12.9 24 19.0 35.9 70.0* 46.0* 0.00G 999.9 000000 724050 13743 19990415 55.1 24 35.7 24 1010.1 23 1008.2 5 9.8 24 5.7 24 10.1 999.9 70.0 46.0 0.00G 999.9 010000 724050 13743 19990416 55.0 24 44.7 24 1000.7 22 999.1 5 8.3 24 8.3 24 22.0 29.9 69.1* 48.2* 0.14G 999.9 110000 724050 13743 19990417 55.9 24 29.5 24 1006.3 24 1003.3 6 9.9 24 7.5 24 12.0 22.9 64.9* 46.9* 0.00G 999.9 010000 724050 13743 19990418 53.2 24 35.2 24 1014.3 23 1011.6 8 9.9 24 10.0 24 15.9 23.9 60.1* 44.1* 0.00G 999.9 010000 724050 13743 19990419 51.8 24 36.5 24 1018.4 24 1016.3 7 9.9 24 7.1 24 13.0 20.0 60.1* 42.1* 0.00G 999.9 010000 724050 13743 19990420 54.5 24 42.3 24 1014.4 24 1013.3 5 9.6 24 8.8 24 17.1 22.0 60.1 41.0 0.03G 999.9 010000 724050 13743 19990421 49.4 24 41.2 24 1018.7 24 1016.2 5 8.3 24 5.5 24 12.0 999.9 55.0* 43.0* 0.02A 999.9 110000 724050 13743 19990422 57.7 24 51.6 24 1015.1 21 1012.9 7 5.3 24 4.7 24 10.1 999.9 81.0* 48.2* 0.18G 999.9 110010 724050 13743 19990423 62.3 24 54.8 24 1011.1 21 1008.7 6 5.8 24 6.9 24 15.0 999.9 82.0 48.9 0.02G 999.9 110010 724050 13743 19990424 53.1 24 35.6 24 1021.5 23 1015.8 5 9.1 24 10.9 24 17.1 23.9 62.1* 42.1* 0.28G 999.9 100000 724050 13743 19990425 53.0 24 29.6 24 1023.3 24 1020.5 6 9.9 24 6.0 24 11.1 14.0 63.0 41.0 0.00G 999.9 000000 724050 13743 19990426 59.5 24 38.4 24 1014.9 23 1013.9 7 9.9 24 6.1 24 12.0 18.1 77.0* 46.0* 0.00G 999.9 000000 724050 13743 19990427 62.4 24 35.1 24 1014.0 24 1011.1 8 9.9 24 7.6 24 14.0 999.9 77.0 44.1 0.00G 999.9 000000 724050 13743 19990428 56.7 24 41.6 24 1021.5 24 1018.3 6 9.9 24 6.5 24 11.1 14.0 69.1 50.0 0.00G 999.9 000000 724050 13743 19990429 56.8 24 42.4 24 1022.3 24 1020.4 5 9.9 24 8.0 24 13.0 15.0 66.9* 46.9* 0.00G 999.9 000000 724050 13743 19990430 57.4 24 39.0 24 1023.8 24 1021.2 7 9.9 24 9.3 24 17.1 26.0 68.0 46.0 0.00G 999.9 000000 724050 13743 19990501 56.4 24 36.5 24 1023.5 24 1021.6 6 9.8 24 10.1 24 15.9 22.0 66.9* 46.9* 0.00G 999.9 000000 724050 13743 19990502 57.2 24 37.6 24 1020.6 23 1018.5 5 9.9 24 12.1 24 20.0 26.0 69.1* 48.9* 0.00G 999.9 000000 724050 13743 19990503 56.7 24 42.8 24 1017.5 24 1015.5 7 9.9 24 9.9 24 18.1 22.0 69.1 48.0 0.00G 999.9 010000 724050 13743 19990504 62.9 23 51.2 23 1015.1 22 1013.4 4 9.9 23 6.5 23 14.0 999.9 77.0* 55.0* 0.00G 999.9 000000 724050 13743 19990505 64.6 24 54.7 24 1014.2 23 1011.9 6 9.3 24 5.3 24 10.1 999.9 75.0* 53.1* 0.00G 999.9 110000 724050 13743 19990506 63.6 24 58.8 24 1013.3 23 1010.9 4 7.8 24 6.3 24 13.0 999.9 77.0 53.1 0.00G 999.9 110000 724050 13743 19990507 65.1 24 60.3 24 1012.7 20 1010.6 6 4.9 24 6.5 24 11.1 999.9 77.0* 57.9* 0.00G 999.9 110000 724050 13743 19990508 69.1 24 62.7 24 1010.6 19 1008.5 5 6.2 24 6.0 24 12.0 15.0 78.1 57.9 0.17G 999.9 110010 724050 13743 19990509 69.7 24 57.2 24 1013.5 24 1010.7 6 9.9 24 5.5 24 13.0 15.9 78.1* 61.0* 0.08G 999.9 000000 724050 13743 19990510 66.5 24 45.7 24 1018.2 24 1015.8 6 9.8 24 6.5 24 14.0 999.9 77.0* 55.0* 0.00G 999.9 000000 724050 13743 19990511 67.5 24 48.4 24 1021.5 24 1018.7 5 9.8 24 4.9 24 13.0 19.0 78.1 54.0 0.00G 999.9 000000 724050 13743 19990512 69.9 24 56.0 24 1017.3 24 1016.2 6 9.7 24 8.2 24 12.0 999.9 84.9* 59.0* 0.00G 999.9 000000 724050 13743 19990513 67.9 24 57.7 24 1011.4 21 9999.9 0 8.8 24 8.9 24 15.0 999.9 84.9 57.9 0.00G 999.9 100000 724050 13743 19990514 60.9 24 43.8 24 1018.6 24 9999.9 0 9.9 24 11.4 24 15.0 20.0 71.1 55.9 0.00G 999.9 000000 724050 13743 19990515 61.3 24 40.2 24 1024.5 23 1022.0 5 9.9 24 11.9 24 20.0 25.1 73.4* 52.0* 0.00G 999.9 000000 724050 13743 19990516 60.2 24 45.3 24 1025.9 24 1023.9 5 9.9 24 8.6 24 15.0 22.0 71.1* 51.1* 0.00G 999.9 000000 724050 13743 19990517 63.7 24 55.0 24 1024.3 22 9999.9 0 10.0 24 5.3 24 8.9 999.9 73.9* 55.0* 0.00G 999.9 000000 724050 13743 19990518 67.2 24 56.7 24 1020.5 24 1018.8 4 9.0 24 5.7 24 11.1 999.9 78.8* 57.0* 0.00G 999.9 110000 724050 13743 19990519 71.5 24 60.3 24 1015.3 21 9999.9 0 9.6 24 8.0 24 15.9 22.0 79.0 57.0 0.00G 999.9 000000 724050 13743 19990520 68.4 24 46.8 24 1018.7 24 9999.9 0 10.0 24 10.9 24 14.0 20.0 77.0* 57.9* 0.00G 999.9 000000 724050 13743 19990521 68.1 24 46.8 24 1020.2 24 1018.0 5 9.9 24 4.5 24 13.0 999.9 80.6* 53.1* 0.00G 999.9 000000 724050 13743 19990522 71.3 24 56.9 24 1015.5 24 1012.8 6 9.7 24 5.5 24 29.9 37.9 87.1* 61.0* 0.00G 999.9 010000 724050 13743 19990523 71.1 24 63.2 24 1009.9 21 9999.9 0 7.8 24 7.9 24 21.0 26.0 88.0 60.1 0.71G 999.9 110010 724050 13743 19990524 71.5 24 60.0 24 1003.9 19 9999.9 0 7.3 24 8.0 24 21.0 29.9 82.0 64.0 0.30G 999.9 110010 724050 13743 19990525 65.5 24 43.6 24 1008.5 23 1006.0 4 9.9 24 10.1 24 18.1 22.9 75.0* 55.9* 0.02G 999.9 000000 724050 13743 19990526 68.6 24 43.5 24 1010.6 24 1008.3 4 9.9 24 9.0 24 15.9 22.0 78.1* 57.9* 0.00G 999.9 000000 724050 13743 19990527 65.7 24 45.1 24 1013.8 23 1011.1 4 10.0 24 10.2 24 17.1 22.0 80.1 57.0 0.00G 999.9 000000 724050 13743 19990528 72.0 24 46.4 24 1017.1 24 1013.5 5 9.9 24 6.9 24 12.0 18.1 84.9* 57.0* 0.00G 999.9 000000 724050 13743 19990529 76.2 24 50.6 24 1020.2 24 1017.4 4 9.9 24 5.1 24 10.1 15.9 89.6* 61.0* 0.00G 999.9 000000 724050 13743 19990530 78.0 24 57.9 24 1021.9 24 1019.9 5 9.9 24 4.3 24 7.0 999.9 91.9* 64.0* 0.00G 999.9 000000 724050 13743 19990531 78.2 24 61.7 24 1019.9 24 1018.0 4 8.6 24 7.0 24 14.0 22.9 91.9 63.0 0.00G 999.9 100000 724050 13743 19990601 77.4 24 61.8 24 1017.2 23 9999.9 0 9.9 24 9.8 24 20.0 22.9 91.0 66.0 0.00G 999.9 000000 724050 13743 19990602 78.5 24 62.4 24 1015.5 24 1013.5 4 9.9 24 10.4 24 15.9 21.0 90.0* 69.1* 0.00G 999.9 000000 724050 13743 19990603 78.4 24 62.6 24 1013.6 24 1010.9 4 9.8 24 11.1 24 18.1 22.0 90.0 69.1 0.00G 999.9 000000 724050 13743 19990604 71.2 24 52.7 24 1018.9 24 1015.8 4 9.9 24 9.3 24 15.9 19.0 78.8* 62.1* 0.00G 999.9 000000 724050 13743 19990605 72.4 24 53.0 24 1023.0 23 1020.2 4 9.9 24 5.8 24 10.1 999.9 84.9* 60.1* 0.00G 999.9 000000 724050 13743 19990606 73.6 24 58.0 24 1024.8 23 1022.6 4 9.9 24 8.0 24 12.0 999.9 89.1* 61.0* 0.00G 999.9 000000 724050 13743 19990607 83.1 24 64.4 24 1019.6 24 1017.7 5 8.5 24 6.6 24 8.9 999.9 96.8* 70.9* 0.00G 999.9 000000 724050 13743 19990608 87.5 24 66.9 24 1014.1 24 9999.9 0 7.3 24 8.3 24 15.0 21.0 98.1 71.1 0.00G 999.9 000000 724050 13743 19990609 88.1 24 59.6 24 1013.9 23 9999.9 0 9.9 24 8.5 24 13.0 16.9 97.0* 75.0* 0.00G 999.9 000000 724050 13743 19990610 73.4 24 63.2 24 1021.3 24 1017.2 5 8.5 24 8.8 24 12.0 999.9 98.1 69.1 0.00G 999.9 010000 724050 13743 19990611 69.4 24 55.5 24 1025.5 24 1023.4 4 9.9 24 6.6 24 10.1 999.9 80.1* 61.0* 0.00G 999.9 000000 724050 13743 19990612 69.1 24 58.1 24 1024.0 23 9999.9 0 9.8 24 9.3 24 13.0 999.9 77.0* 60.1* 0.00G 999.9 010000 724050 13743 19990613 74.0 24 66.4 24 1019.9 18 9999.9 0 9.3 24 10.1 24 15.0 999.9 82.0 60.1 0.00G 999.9 110000 724050 13743 19990614 74.7 24 66.9 24 1014.9 19 1012.9 4 8.0 24 6.2 24 35.9 52.1 89.1* 66.2* 0.07G 999.9 110010 724050 13743 19990615 75.4 24 61.8 24 1015.3 24 1012.5 4 8.5 24 7.0 24 11.1 999.9 91.0 66.0 1.32G 999.9 100000 724050 13743 19990616 71.8 24 55.6 24 1018.2 24 1015.6 4 9.9 24 9.2 24 15.0 999.9 77.0* 64.9* 0.00G 999.9 000000 724050 13743 19990617 67.4 24 61.4 24 1016.8 18 9999.9 0 8.5 24 5.7 24 9.9 999.9 70.0* 64.0* 0.01G 999.9 110000 724050 13743 19990618 64.1 24 53.7 24 1022.7 24 9999.9 0 9.5 24 9.5 24 13.0 999.9 73.4* 57.0* 0.16G 999.9 100000 724050 13743 19990619 68.5 24 52.4 24 1027.6 24 1025.6 4 9.9 24 5.8 24 11.1 999.9 78.8* 57.0* 0.00G 999.9 000000 724050 13743 19990620 63.5 24 57.4 24 1028.4 21 1025.7 4 7.8 24 8.2 24 12.0 999.9 79.0 57.0 0.08G 999.9 110000 724050 13743 19990621 63.7 24 60.7 24 1024.5 21 9999.9 0 6.6 24 10.4 24 14.0 999.9 68.0* 60.8* 0.46G 999.9 110000 724050 13743 19990622 70.1 24 59.6 24 1022.7 22 9999.9 0 8.8 24 6.5 24 10.1 999.9 80.6* 62.1* 0.03G 999.9 110000 724050 13743 19990623 73.2 24 57.6 24 1020.4 24 1018.3 4 9.2 24 4.4 24 12.0 999.9 82.9* 61.0* 0.00G 999.9 100000 724050 13743 19990624 72.6 24 56.2 24 1018.5 24 1016.4 5 9.9 24 7.6 24 13.0 999.9 84.0 61.0 0.00G 999.9 000000 724050 13743 19990625 74.0 24 65.1 24 1015.5 24 1013.5 4 9.4 24 7.9 24 13.0 999.9 84.9* 66.0* 0.00G 999.9 100000 724050 13743 19990626 79.5 24 69.7 24 1014.8 24 1012.4 4 9.7 24 7.3 24 11.1 999.9 91.0* 70.0* 0.00G 999.9 000000 724050 13743 19990627 81.9 24 73.2 24 1014.1 24 1011.9 4 8.5 24 8.3 24 15.0 999.9 91.0 70.0 0.00G 999.9 010000 724050 13743 19990628 80.5 24 73.4 24 1009.6 20 9999.9 0 8.9 24 11.0 24 15.9 21.0 90.0 73.9 0.00G 999.9 010010 724050 13743 19990629 81.5 24 73.0 24 1004.2 23 1001.8 5 7.3 24 8.4 24 16.9 21.0 91.4* 75.2* 0.01G 999.9 110010 724050 13743 19990630 74.6 24 66.2 24 1012.0 24 1008.7 4 8.7 24 7.2 24 12.0 999.9 78.1* 71.1* 0.15G 999.9 100000 724050 13743 19990701 76.8 24 72.1 24 1016.4 17 9999.9 0 6.4 24 7.4 24 18.1 23.9 84.9* 73.0* 0.00G 999.9 110000 724050 13743 19990702 80.3 24 71.3 24 1017.4 24 9999.9 0 9.0 24 14.9 24 20.0 26.0 88.0 73.0 0.04G 999.9 010000 724050 13743 19990703 81.1 24 74.1 24 1020.2 22 9999.9 0 6.3 24 5.6 24 12.0 999.9 91.9* 73.0* 0.15G 999.9 110010 724050 13743 19990704 87.0 24 74.2 24 1019.7 24 1017.7 5 7.1 24 7.6 24 15.9 999.9 98.1* 77.0* 0.00G 999.9 100000 724050 13743 19990705 90.9 24 74.4 24 1016.7 24 1015.0 5 7.1 24 5.3 24 12.0 18.1 100.9* 81.0* 0.00G 999.9 100000 724050 13743 19990706 92.9 24 71.8 24 1013.8 24 9999.9 0 7.8 24 6.5 24 17.1 25.1 102.2* 82.9* 0.00G 999.9 000000 724050 13743 19990707 88.5 24 67.7 24 1012.7 24 1010.1 4 9.2 24 7.3 24 12.0 999.9 98.1* 81.0* 0.00G 999.9 000000 724050 13743 19990708 83.8 24 60.7 24 1014.4 24 1011.7 5 9.6 24 8.5 24 13.0 18.1 91.0* 73.9* 0.00G 999.9 000000 724050 13743 19990709 85.3 24 62.1 24 1014.2 24 1012.4 5 9.6 24 7.3 24 15.9 21.0 99.0* 75.0* 0.00G 999.9 000000 724050 13743 19990710 85.8 24 69.0 24 1010.7 24 1008.2 5 7.8 24 9.6 24 17.1 34.0 99.0 73.0 0.00G 999.9 010000 724050 13743 19990711 76.8 24 52.6 24 1019.4 24 1016.2 4 9.9 24 10.8 24 18.1 27.0 86.0* 66.9* 0.05G 999.9 000000 724050 13743 19990712 70.2 24 58.0 24 1023.5 23 1020.6 4 9.6 24 5.3 24 8.9 999.9 78.1* 64.4* 0.00G 999.9 010000 724050 13743 19990713 70.1 24 60.2 24 1022.1 24 1019.8 4 9.9 24 6.1 24 9.9 999.9 81.0* 64.0* 0.28G 999.9 010000 724050 13743 19990714 71.3 24 60.6 24 1022.8 24 1020.2 4 9.9 24 6.4 24 10.1 999.9 82.0 63.0 0.00G 999.9 000000 724050 13743 19990715 74.6 24 63.0 24 1022.1 24 1020.2 5 9.9 24 5.0 24 10.1 999.9 87.1* 64.0* 0.00G 999.9 000000 724050 13743 19990716 81.7 24 68.6 24 1021.4 24 1019.0 4 9.4 24 7.5 24 12.0 999.9 93.9* 73.0* 0.00G 999.9 000000 724050 13743 19990717 82.8 24 69.6 24 1021.1 24 1018.9 4 8.7 24 8.8 24 12.0 999.9 93.9* 73.0* 0.00G 999.9 100000 724050 13743 19990718 84.7 24 70.3 24 1019.5 24 1017.5 4 6.6 24 6.6 24 18.1 21.0 97.0* 75.9* 0.00G 999.9 000000 724050 13743 19990719 85.7 24 68.3 24 1016.5 24 1014.6 5 5.3 24 6.3 24 10.1 999.9 98.1* 73.9* 0.00G 999.9 000000 724050 13743 19990720 83.9 24 70.0 24 1015.8 24 1013.0 4 7.0 24 5.8 24 13.0 999.9 99.0 73.9 0.00G 999.9 010000 724050 13743 19990721 79.4 24 70.7 24 1019.4 24 1016.8 4 8.9 24 6.4 24 12.0 999.9 88.0* 75.0* 0.00G 999.9 000000 724050 13743 19990722 80.9 24 73.2 24 1016.1 20 9999.9 0 6.8 24 6.7 24 13.0 999.9 90.0* 73.9* 0.26G 999.9 110010 724050 13743 19990723 86.7 24 71.5 24 1013.5 24 1011.6 5 6.4 24 5.2 24 10.1 999.9 96.8* 78.1* 0.00I 999.9 100000 724050 13743 19990724 83.3 24 73.9 24 1011.1 23 9999.9 0 5.2 24 8.2 24 15.9 999.9 98.1 77.0 0.00G 999.9 110010 724050 13743 19990725 83.7 23 67.3 23 1009.5 22 1007.7 4 8.8 23 7.7 23 15.0 21.0 98.1* 72.0* 0.19G 999.9 110010 724050 13743 19990726 82.6 24 65.1 24 1009.1 22 9999.9 0 9.8 24 8.2 24 30.1 35.0 93.0* 71.6* 0.02G 999.9 010010 724050 13743 19990727 84.0 24 64.3 24 1011.4 24 1008.9 4 9.8 24 4.8 24 10.1 999.9 93.9* 75.0* 0.00G 999.9 000000 724050 13743 19990728 85.8 24 67.2 24 1012.2 24 1009.8 4 8.8 24 5.3 24 17.1 22.0 96.1* 73.4* 0.00G 999.9 010000 724050 13743 19990729 78.2 24 67.3 24 1008.3 24 1007.1 4 8.0 24 5.6 24 11.1 15.9 93.9* 69.1* 0.02G 999.9 100000 724050 13743 19990730 86.0 24 69.5 24 1005.7 23 9999.9 0 8.9 24 6.7 24 20.0 23.9 96.1* 75.0* 0.00G 999.9 000000 724050 13743 19990731 87.7 24 69.9 24 1007.8 24 1005.4 4 7.3 24 6.0 24 13.0 999.9 100.0* 78.1* 0.00G 999.9 010010 724050 13743 19990801 87.4 24 72.0 24 1008.7 24 1006.1 5 8.9 24 7.7 24 20.0 26.0 100.9 77.0 0.00G 999.9 010010 724050 13743 19990802 82.0 24 61.6 24 1013.8 24 1012.2 4 9.9 24 9.8 24 15.0 21.0 90.0* 73.0* 0.00G 999.9 000000 724050 13743 19990803 80.0 24 49.3 24 1017.8 24 1015.2 4 9.9 24 8.9 24 13.0 999.9 90.0* 71.1* 0.00G 999.9 000000 724050 13743 19990804 81.7 24 57.4 24 1015.5 24 9999.9 0 9.9 24 5.2 24 10.1 999.9 91.4* 70.0* 0.00G 999.9 000000 724050 13743 19990805 81.3 24 62.0 24 1010.3 22 9999.9 0 9.9 24 8.1 24 12.0 16.9 91.9 70.0 0.00G 999.9 000000 724050 13743 19990806 80.8 24 58.0 24 1013.0 24 1010.6 4 9.9 24 5.5 24 10.1 15.9 91.4* 70.0* 0.00G 999.9 000000 724050 13743 19990807 82.1 24 59.1 24 1015.5 24 1013.0 4 9.9 24 5.3 24 8.9 999.9 91.9 69.1 0.00G 999.9 000000 724050 13743 19990808 82.5 24 69.1 24 1010.3 23 1008.4 4 6.9 24 9.9 24 16.9 27.0 93.0* 78.1* 0.00G 999.9 110010 724050 13743 19990809 77.7 24 58.0 24 1010.2 24 1007.5 4 9.9 24 9.8 24 15.0 999.9 82.9* 70.0* 0.02G 999.9 000000 724050 13743 19990810 75.0 24 55.0 24 1011.6 24 1009.5 4 9.9 24 5.3 24 11.1 999.9 86.0* 64.0* 0.00G 999.9 000000 724050 13743 19990811 82.7 24 64.8 24 1009.3 24 1007.1 6 9.7 24 7.8 24 13.0 15.0 95.0* 73.0* 0.00G 999.9 000000 724050 13743 19990812 84.4 24 67.2 24 1013.0 24 1010.4 4 8.6 24 5.6 24 10.1 999.9 96.1 73.0 0.00G 999.9 000000 724050 13743 19990813 85.0 24 74.9 24 1012.5 23 1010.6 4 5.3 24 9.3 24 17.1 19.0 96.8* 77.0* 0.00G 999.9 100000 724050 13743 19990814 81.9 24 74.0 24 1008.7 20 9999.9 0 7.5 24 9.5 24 22.0 28.0 93.0* 73.0* 0.13G 999.9 110010 724050 13743 19990815 76.9 24 68.5 24 1014.8 24 1012.1 5 9.6 24 7.8 24 13.0 999.9 84.2* 72.0* 0.23G 999.9 000000 724050 13743 19990816 78.3 23 63.8 23 1022.1 23 9999.9 0 9.9 23 6.2 23 11.1 15.9 90.0* 68.0* 0.00G 999.9 000000 724050 13743 19990817 83.4 24 68.8 24 1017.4 24 1015.9 4 7.7 24 7.5 24 11.1 14.0 96.8* 73.9* 0.00G 999.9 100000 724050 13743 19990818 85.3 24 65.4 24 1010.7 24 1008.5 5 9.1 24 6.4 24 14.0 16.9 99.0 73.9 0.00G 999.9 000000 724050 13743 19990819 79.8 24 59.7 24 1014.2 24 1011.8 5 9.9 24 8.1 24 14.0 21.0 89.1* 72.0* 0.00G 999.9 000000 724050 13743 19990820 76.4 24 67.2 24 1014.5 21 1012.3 4 9.6 24 6.6 24 12.0 20.0 84.9* 69.1* 0.00G 999.9 110010 724050 13743 19990821 73.1 24 64.8 24 1015.1 19 9999.9 0 9.9 24 8.2 24 14.0 999.9 81.0* 66.2* 0.01G 999.9 010010 724050 13743 19990822 71.8 24 62.3 24 1017.0 22 1014.4 4 6.4 24 4.8 24 15.9 19.0 82.4* 64.9* 0.10G 999.9 110000 724050 13743 19990823 75.7 24 64.2 24 1018.0 24 1015.6 4 7.8 24 5.7 24 12.0 999.9 86.0* 66.9* 0.00G 999.9 100000 724050 13743 19990824 76.0 24 66.2 24 1018.0 22 9999.9 0 7.9 24 9.3 24 14.0 999.9 87.1 66.0 0.76G 999.9 110010 724050 13743 19990825 73.7 24 68.7 24 1017.1 18 9999.9 0 8.3 24 8.0 24 15.0 999.9 86.0 69.1 0.68G 999.9 110000 724050 13743 19990826 76.8 24 71.8 24 1011.7 19 9999.9 0 8.3 24 5.6 24 14.0 999.9 86.0* 71.6* 1.37G 999.9 110010 724050 13743 19990827 75.0 24 68.2 24 1012.3 21 1009.6 4 6.4 24 5.0 24 18.1 23.9 86.0 69.1 2.03G 999.9 110010 724050 13743 19990828 77.3 24 67.4 24 1014.0 24 1011.5 4 5.7 24 5.0 24 10.1 999.9 88.0* 70.0* 0.22G 999.9 100000 724050 13743 19990829 80.7 24 67.8 24 1013.2 24 1011.0 5 6.3 24 6.6 24 15.9 21.0 90.0* 72.0* 0.00G 999.9 100000 724050 13743 19990830 69.2 24 48.8 24 1018.3 24 1015.0 4 9.9 24 17.4 24 22.0 28.9 82.0* 62.1* 0.00G 999.9 000000 724050 13743 19990831 68.4 24 51.7 24 1022.2 24 1019.6 4 9.9 24 12.6 24 15.0 20.0 73.0* 64.0* 0.00G 999.9 000000 724050 13743 19990901 71.5 24 53.5 24 1020.1 24 1018.0 4 9.9 24 11.5 24 15.0 16.9 81.0* 66.0* 0.00G 999.9 000000 724050 13743 19990902 72.1 24 53.5 24 1017.9 24 1015.9 5 9.9 24 9.1 24 14.0 999.9 82.9* 64.0* 0.00G 999.9 000000 724050 13743 19990903 74.0 24 61.5 24 1016.7 24 1014.4 4 9.9 24 7.1 24 11.1 999.9 84.0* 64.9* 0.00G 999.9 000000 724050 13743 19990904 75.1 24 70.9 24 1016.9 20 1014.4 4 8.3 24 10.1 24 18.1 20.0 84.0 64.9 0.00G 999.9 110010 724050 13743 19990905 77.2 24 73.0 24 1013.2 21 1011.5 4 8.7 24 15.2 24 22.0 26.0 82.9* 73.9* 0.99G 999.9 110000 724050 13743 19990906 77.8 24 71.9 24 1012.4 19 9999.9 0 7.8 24 9.4 24 17.1 21.0 82.9* 73.4* 0.26G 999.9 110000 724050 13743 19990907 77.1 24 71.6 24 1010.1 19 9999.9 0 4.6 24 7.4 24 15.0 19.0 84.9* 73.0* 1.06G 999.9 110000 724050 13743 19990908 77.1 24 68.5 24 1010.5 22 1008.4 5 7.8 24 5.5 24 12.0 19.0 86.0* 68.0* 0.20G 999.9 110010 724050 13743 19990909 77.9 24 71.4 24 1010.1 19 9999.9 0 5.7 24 5.7 24 14.0 15.9 86.0 66.9 99.99 999.9 110010 724050 13743 19990910 73.8 24 63.3 24 1009.3 20 1007.1 4 7.6 24 7.4 24 15.9 18.1 81.0* 66.2* 0.37G 999.9 110010 724050 13743 19990911 71.4 24 49.7 24 1014.9 24 1012.4 5 9.9 24 7.7 24 17.1 20.0 79.0* 60.1* 0.04G 999.9 000000 724050 13743 19990912 71.0 24 55.8 24 1021.4 24 1019.0 5 9.9 24 3.0 24 8.9 999.9 81.0* 61.0* 0.00G 999.9 000000 724050 13743 19990913 70.7 24 59.1 24 1021.5 24 9999.9 0 9.6 24 5.1 24 11.1 999.9 81.0 60.1 0.00G 999.9 000000 724050 13743 19990914 73.6 24 66.5 24 1018.9 23 9999.9 0 9.1 24 5.4 24 11.1 999.9 82.0* 68.0* 0.00G 999.9 100000 724050 13743 19990915 71.3 24 67.1 24 1017.3 18 9999.9 0 7.2 24 7.3 24 13.0 999.9 75.9* 66.2* 0.03G 999.9 110000 724050 13743 19990916 66.2 24 64.2 24 1004.3 22 9999.9 0 5.1 24 17.9 24 34.0 40.0 69.8* 60.8* 2.64G 999.9 110000 724050 13743 19990917 65.1 24 48.1 24 1013.7 24 9999.9 0 10.0 24 14.6 24 26.0 35.0 73.0* 59.0* 1.90G 999.9 000000 724050 13743 19990918 63.8 24 49.6 24 1020.7 24 1018.2 4 9.9 24 5.1 24 8.9 999.9 72.0* 54.0* 0.00G 999.9 000000 724050 13743 19990919 64.5 24 56.3 24 1020.3 24 1018.2 5 9.9 24 4.6 24 10.1 999.9 73.9* 55.9* 0.00G 999.9 000000 724050 13743 19990920 67.4 24 60.0 24 1016.9 24 1015.2 4 9.9 24 8.2 24 14.0 999.9 75.9* 61.0* 0.00G 999.9 000000 724050 13743 19990921 64.7 24 62.1 24 1011.9 18 1009.5 4 4.6 24 7.8 24 18.1 22.9 73.0* 55.0* 0.48G 999.9 110000 724050 13743 19990922 55.8 24 46.0 24 1011.5 22 1009.2 4 9.9 24 13.6 24 20.0 25.1 64.4* 48.9* 0.62G 999.9 010000 724050 13743 19990923 60.3 24 44.4 24 1014.0 24 9999.9 0 9.9 24 6.7 24 12.0 999.9 73.0* 50.0* 0.09G 999.9 000000 724050 13743 19990924 64.7 24 53.0 24 1013.6 24 1011.6 5 9.9 24 8.5 24 12.0 999.9 77.0* 55.0* 0.00G 999.9 000000 724050 13743 19990925 68.6 24 58.5 24 1014.5 24 1012.4 4 9.7 24 6.2 24 12.0 999.9 80.6* 60.1* 0.00G 999.9 000000 724050 13743 19990926 69.5 24 61.7 24 1021.5 24 1018.5 4 8.7 24 5.9 24 10.1 999.9 82.0 59.0 0.00G 999.9 100000 724050 13743 19990927 71.3 24 68.3 24 1024.8 21 1022.7 5 4.8 24 5.1 24 8.9 999.9 80.1 60.1 0.00G 999.9 110000 724050 13743 19990928 71.6 24 68.2 24 1024.8 22 9999.9 0 5.1 24 6.8 24 13.0 999.9 75.9 69.1 0.02G 999.9 110000 724050 13743 19990929 69.8 24 67.1 24 1019.8 19 9999.9 0 5.8 24 5.9 24 8.9 999.9 73.9 66.9 0.11G 999.9 110000 724050 13743 19990930 64.4 24 52.9 24 1011.1 23 9999.9 0 8.4 24 13.1 24 27.0 39.0 72.0 57.0 1.59G 999.9 110000 724050 13743 19991001 60.2 24 47.0 24 1017.5 24 9999.9 0 10.0 24 5.1 24 10.1 14.0 71.1 50.0 0.73G 999.9 000000 724050 13743 19991002 63.1 24 54.7 24 1020.7 24 9999.9 0 9.7 24 6.3 24 14.0 999.9 73.9 50.0 0.00G 999.9 100000 724050 13743 19991003 66.5 24 57.8 24 1022.6 24 9999.9 0 9.7 24 6.3 24 10.1 999.9 79.0 54.0 0.00G 3.1 000000 724050 13743 19991004 67.0 24 63.1 24 1018.7 23 9999.9 0 9.0 24 7.5 24 18.1 26.0 79.0 57.0 0.29G 3.1 110000 724050 13743 19991005 55.8 24 47.3 24 1019.4 24 9999.9 0 9.9 24 10.5 24 15.9 22.9 70.0 50.0 0.23G 2.0 010000 724050 13743 19991006 54.9 24 44.2 24 1020.8 24 9999.9 0 9.7 24 5.2 24 11.1 15.9 69.1 44.1 0.00G 0.4 100000 724050 13743 19991007 54.3 23 40.4 23 1027.4 23 9999.9 0 10.0 23 7.5 23 13.0 19.0 69.1 44.1 0.00G 999.9 000000 724050 13743 19991008 54.0 24 43.7 24 1030.9 24 9999.9 0 9.8 24 5.1 24 10.1 999.9 64.9 46.0 0.00G 999.9 000000 724050 13743 19991009 60.4 24 55.6 24 1025.0 24 9999.9 0 9.4 24 6.6 24 11.1 999.9 68.0 46.0 0.00G 0.4 010000 724050 13743 19991010 65.5 24 64.2 24 1019.4 22 9999.9 0 5.2 24 6.6 24 12.0 999.9 70.0 54.0 0.42G 2.0 110000 724050 13743 19991011 69.3 24 61.7 24 1017.6 24 9999.9 0 7.0 24 7.9 24 15.9 22.0 77.0 63.0 0.34G 999.9 110000 724050 13743 19991012 58.9 24 46.3 24 1026.7 24 9999.9 0 10.0 24 4.9 24 8.9 999.9 77.0 48.9 0.01G 999.9 000000 724050 13743 19991013 59.0 24 51.7 24 1020.9 24 9999.9 0 10.0 24 7.7 24 17.1 22.0 70.0 48.9 0.00G 2.0 000000 724050 13743 19991014 59.6 24 44.0 24 1014.6 24 9999.9 0 9.7 24 13.9 24 26.0 30.9 70.0 51.1 0.04G 0.8 110000 724050 13743 19991015 53.8 24 36.7 24 1025.1 24 9999.9 0 10.0 24 4.5 24 8.9 999.9 64.0 43.0 0.00G 999.9 000000 724050 13743 19991016 58.6 24 52.2 24 1023.6 24 9999.9 0 9.1 24 3.9 24 6.0 999.9 72.0 43.0 0.00G 2.0 100000 724050 13743 19991017 62.3 24 59.7 24 1016.7 20 9999.9 0 7.6 24 3.9 24 8.9 999.9 72.0 48.0 0.00G 2.8 110000 724050 13743 19991018 60.9 24 49.2 24 1011.1 22 9999.9 0 8.4 24 13.7 24 28.0 35.0 66.9 55.0 0.12G 2.8 110000 724050 13743 19991019 51.7 24 40.1 24 1025.9 24 9999.9 0 10.0 24 5.7 24 8.9 999.9 64.9 45.0 0.00G 2.0 010000 724050 13743 19991020 53.7 24 49.2 24 1023.6 23 9999.9 0 7.5 24 5.2 24 10.1 999.9 57.9 45.0 0.24G 999.9 110000 724050 13743 19991021 53.6 24 42.7 24 1020.7 24 9999.9 0 9.9 24 5.2 24 8.9 999.9 62.1 45.0 0.30G 999.9 000000 724050 13743 19991022 54.5 24 46.6 24 1009.0 24 9999.9 0 9.6 24 9.3 24 18.1 999.9 66.0 45.0 0.00G 3.1 010000 724050 13743 19991023 51.5 24 38.6 24 1003.9 24 9999.9 0 9.8 24 9.2 24 18.1 22.9 66.0 45.0 0.18G 0.8 010000 724050 13743 19991024 47.4 24 35.5 24 1013.3 24 9999.9 0 10.0 24 8.7 24 17.1 21.0 57.0 39.0 0.00G 999.9 000000 724050 13743 19991025 49.0 24 35.7 24 1022.8 24 9999.9 0 9.9 24 7.1 24 12.0 15.9 61.0 39.0 0.00G 999.9 000000 724050 13743 19991026 52.5 24 41.8 24 1020.4 24 9999.9 0 10.0 24 7.7 24 10.1 999.9 64.0 39.0 0.00G 999.9 000000 724050 13743 19991027 55.0 24 42.4 24 1021.0 24 9999.9 0 10.0 24 6.6 24 14.0 999.9 64.0 45.0 0.00G 2.0 000000 724050 13743 19991028 50.3 24 39.7 24 1028.8 24 9999.9 0 9.9 24 5.4 24 13.0 999.9 64.0 41.0 0.00G 999.9 000000 724050 13743 19991029 53.8 24 46.9 24 1027.7 24 9999.9 0 8.5 24 4.9 24 8.0 999.9 68.0 41.0 0.00G 999.9 100000 724050 13743 19991030 57.1 24 50.8 24 1028.9 24 9999.9 0 7.3 24 3.9 24 8.0 999.9 71.1 45.0 0.00G 999.9 100000 724050 13743 19991031 60.7 24 56.1 24 1026.7 24 9999.9 0 6.9 24 4.4 24 8.0 999.9 73.0 48.0 0.00G 999.9 100000 724050 13743 19991101 62.1 24 56.6 24 1022.3 24 9999.9 0 6.8 24 4.2 24 8.0 999.9 73.0 53.1 0.00G 999.9 100000 724050 13743 19991102 63.4 24 60.6 24 1008.6 19 9999.9 0 4.9 24 8.2 24 26.0 35.0 73.0 54.0 0.00G 999.9 110000 724050 13743 19991103 50.9 24 31.9 24 1006.8 24 9999.9 0 10.0 24 12.6 24 18.1 28.9 66.9* 42.8* 0.26G 999.9 000000 724050 13743 19991104 44.7 24 23.0 24 1024.1 24 9999.9 0 10.0 24 8.9 24 15.0 16.9 59.0* 33.8* 0.00G 999.9 000000 724050 13743 19991105 49.1 24 34.4 24 1029.2 24 9999.9 0 10.0 24 6.2 24 10.1 999.9 64.9 34.0 0.00G 999.9 000000 724050 13743 19991106 57.1 24 43.2 24 1023.9 24 9999.9 0 10.0 24 7.1 24 13.0 999.9 73.9 36.0 0.00G 999.9 000000 724050 13743 19991107 54.7 24 32.3 24 1023.9 24 9999.9 0 10.0 24 10.1 24 19.0 23.9 66.9* 44.6* 0.00G 999.9 000000 724050 13743 19991108 48.3 24 29.4 24 1025.3 24 9999.9 0 10.0 24 5.4 24 10.1 999.9 59.0 37.9 0.00G 999.9 000000 724050 13743 19991109 51.8 24 42.1 24 1022.5 24 9999.9 0 10.0 24 5.3 24 10.1 999.9 69.1 37.9 0.00G 999.9 000000 724050 13743 19991110 60.8 24 52.8 24 1016.1 24 9999.9 0 8.4 24 7.2 24 14.0 999.9 75.9 42.1 0.00G 999.9 100000 724050 13743 19991111 57.3 24 49.6 24 1017.6 22 9999.9 0 8.8 24 8.3 24 18.1 22.9 75.9 48.0 0.00G 999.9 110000 724050 13743 19991112 47.5 24 37.4 24 1028.7 24 9999.9 0 9.9 24 5.8 24 10.1 999.9 63.0 44.1 0.00G 999.9 000000 724050 13743 19991113 53.0 24 45.5 24 1020.7 24 9999.9 0 9.3 24 4.0 24 8.0 999.9 64.9 44.1 0.00G 999.9 000000 724050 13743 19991114 57.6 24 49.7 24 1010.5 24 9999.9 0 6.2 24 6.8 24 23.9 30.9 73.9 45.0 0.00G 999.9 100000 724050 13743 19991115 49.8 24 29.4 24 1010.3 24 9999.9 0 10.0 24 14.8 24 24.1 30.9 73.9 45.0 0.00G 999.9 000000 724050 13743 19991116 45.0 24 22.3 24 1007.7 24 9999.9 0 10.0 24 12.6 24 20.0 28.9 53.1 39.9 0.00G 999.9 000000 724050 13743 19991117 41.0 24 21.3 24 1017.9 24 9999.9 0 10.0 24 9.4 24 15.0 20.0 48.0* 33.8* 0.00G 999.9 000000 724050 13743 19991118 42.0 24 28.8 24 1026.1 24 9999.9 0 10.0 24 4.3 24 10.1 999.9 55.4* 33.1* 0.00G 999.9 000000 724050 13743 19991119 49.0 24 35.8 24 1027.4 24 9999.9 0 10.0 24 5.6 24 11.1 15.9 62.1 30.9 0.00G 999.9 000000 724050 13743 19991120 57.9 24 51.5 24 1022.6 24 9999.9 0 10.0 24 8.8 24 14.0 22.9 71.1 37.9 0.00G 999.9 000000 724050 13743 19991121 57.5 24 51.8 24 1021.5 24 9999.9 0 8.6 24 3.4 24 8.0 999.9 73.0 46.0 0.00G 999.9 100000 724050 13743 19991122 58.1 24 54.9 24 1024.1 23 9999.9 0 6.8 24 4.9 24 13.0 999.9 73.0 46.0 0.00G 999.9 100000 724050 13743 19991123 58.7 24 57.5 24 1025.7 18 9999.9 0 3.4 24 3.6 24 13.0 999.9 70.0 50.0 0.00G 999.9 110000 724050 13743 19991124 59.6 24 57.6 24 1023.1 20 9999.9 0 5.2 24 7.0 24 11.1 999.9 64.9 55.9 0.00G 999.9 110000 724050 13743 19991125 58.0 24 56.1 24 1021.6 19 9999.9 0 4.8 24 5.9 24 11.1 999.9 64.9 53.1 0.00G 999.9 110000 724050 13743 19991126 59.9 24 57.5 24 1015.1 20 9999.9 0 5.3 24 8.2 24 25.1 30.9 70.0 53.1 0.04G 999.9 110010 724050 13743 19991127 55.2 24 43.8 24 1014.3 23 9999.9 0 9.0 24 7.3 24 18.1 25.1 70.0 48.0 1.52G 999.9 110000 724050 13743 19991128 51.0 24 33.3 24 1021.4 24 9999.9 0 10.0 24 8.3 24 14.0 20.0 60.1 44.1 0.00G 999.9 000000 724050 13743 19991129 45.1 24 25.0 24 1028.4 24 9999.9 0 10.0 24 8.9 24 17.1 23.9 50.0* 39.2* 0.00G 999.9 000000 724050 13743 19991130 37.0 24 18.8 24 1032.2 24 9999.9 0 10.0 24 12.3 24 19.0 22.0 50.0 32.0 0.00G 999.9 000000 724050 13743 19991201 32.0 24 13.0 24 1032.1 24 9999.9 0 10.0 24 14.7 24 20.0 27.0 41.0 26.1 0.00G 999.9 000000 724050 13743 19991202 37.2 24 16.3 24 1028.1 24 9999.9 0 10.0 24 5.9 24 8.0 999.9 50.0 26.1 0.00G 999.9 000000 724050 13743 19991203 44.3 24 28.1 24 1024.0 24 9999.9 0 10.0 24 5.1 24 8.9 999.9 61.0 28.9 0.00G 999.9 000000 724050 13743 19991204 54.1 24 35.9 24 1022.4 24 9999.9 0 10.0 24 4.9 24 10.1 999.9 68.0 33.1 0.00G 999.9 000000 724050 13743 19991205 56.3 24 45.2 24 1021.2 24 9999.9 0 8.5 24 5.2 24 19.0 22.9 68.0 45.0 0.00G 999.9 100000 724050 13743 19991206 56.8 24 51.1 24 1012.7 23 9999.9 0 7.7 24 8.8 24 15.0 19.0 68.0 48.0 0.23G 999.9 110000 724050 13743 19991207 45.8 24 32.1 24 1019.9 24 9999.9 0 10.0 24 13.6 24 20.0 27.0 60.1 39.9 0.27G 999.9 010000 724050 13743 19991208 40.8 24 29.4 24 1028.6 24 9999.9 0 10.0 24 4.9 24 8.0 999.9 50.0 33.1 0.00G 999.9 000000 724050 13743 19991209 43.3 24 34.6 24 1028.5 24 9999.9 0 8.5 24 3.0 24 11.1 999.9 57.0 33.1 0.00G 999.9 100000 724050 13743 19991210 52.3 24 45.4 24 1016.2 24 9999.9 0 8.3 24 7.4 24 21.0 999.9 57.9 34.0 0.00G 999.9 110000 724050 13743 19991211 44.7 24 24.4 24 1020.6 24 9999.9 0 10.0 24 11.3 24 22.9 35.9 59.0 37.9 0.52G 999.9 000000 724050 13743 19991212 43.4 24 22.8 24 1021.7 24 9999.9 0 10.0 24 5.3 24 10.1 999.9 53.1 33.1 0.00G 999.9 000000 724050 13743 19991213 43.5 24 35.5 24 1018.5 20 9999.9 0 8.1 24 3.1 24 8.9 999.9 53.1 33.1 0.00G 999.9 110000 724050 13743 19991214 46.4 24 44.5 24 1013.4 21 9999.9 0 6.0 24 9.0 24 15.9 21.0 48.9 37.0 0.69G 999.9 110000 724050 13743 19991215 42.0 24 39.8 24 1017.1 21 9999.9 0 6.6 24 4.5 24 11.1 999.9 48.9 37.9 0.62G 999.9 100000 724050 13743 19991216 46.5 24 34.6 24 1015.4 24 9999.9 0 8.9 24 7.4 24 17.1 25.1 51.1 37.9 0.00G 999.9 100000 724050 13743 19991217 41.4 24 19.2 24 1021.8 24 9999.9 0 10.0 24 6.7 24 12.0 999.9 51.1 32.0 0.00G 999.9 000000 724050 13743 19991218 43.6 24 30.8 24 1023.4 24 9999.9 0 10.0 24 4.9 24 10.1 999.9 51.1 32.0 0.00G 999.9 000000 724050 13743 19991219 41.1 24 32.5 24 1026.9 24 9999.9 0 10.0 24 9.0 24 14.0 999.9 51.1 34.0 0.00G 999.9 000000 724050 13743 19991220 43.5 24 40.2 24 1022.5 20 9999.9 0 5.6 24 8.1 24 12.0 999.9 48.9 37.9 0.03G 999.9 110000 724050 13743 19991221 43.3 24 35.3 24 1020.2 22 9999.9 0 8.9 24 6.1 24 12.0 999.9 46.4* 39.0* 0.07G 999.9 110000 724050 13743 19991222 36.9 24 21.8 24 1024.9 22 9999.9 0 9.9 24 7.9 24 14.0 15.9 46.0 32.0 0.06G 999.9 011000 724050 13743 19991223 34.7 24 24.0 24 1024.9 22 9999.9 0 8.8 24 6.4 24 15.9 22.0 46.0 27.0 0.03G 999.9 110000 724050 13743 19991224 30.6 24 10.0 24 1023.2 24 9999.9 0 10.0 24 10.7 24 15.9 20.0 41.0* 26.6* 0.00G 999.9 000000 724050 13743 19991225 25.6 24 8.7 24 1028.9 24 9999.9 0 10.0 24 10.2 24 14.0 999.9 32.0 21.0 0.00G 999.9 000000 724050 13743 19991226 31.1 24 14.7 24 1014.4 24 9999.9 0 10.0 24 8.0 24 13.0 15.9 45.0 21.0 0.00G 999.9 000000 724050 13743 19991227 36.5 24 19.1 24 1010.8 24 9999.9 0 9.6 24 8.4 24 17.1 22.0 45.0 24.1 0.00G 999.9 001000 724050 13743 19991228 32.1 24 15.7 24 1010.1 24 9999.9 0 9.9 24 7.9 24 14.0 18.1 39.9 27.0 0.00G 999.9 001000 724050 13743 19991229 34.3 24 18.7 24 1009.3 24 9999.9 0 9.8 24 9.0 24 15.9 20.0 42.1 27.0 0.00G 999.9 001000 724050 13743 19991230 42.7 24 25.4 24 1011.6 24 9999.9 0 10.0 24 8.3 24 13.0 999.9 57.9 28.9 0.00G 999.9 000000 724050 13743 19991231 47.7 24 32.6 24 1015.8 24 9999.9 0 9.6 24 5.5 24 8.9 999.9 57.9 36.0 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/1990/0000755000175000017500000000000014302004506015102 5ustar nileshnileshfluids-1.0.22/tests/gsod/1990/724050-13743.op0000644000175000017500000014327214302004506016673 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19900101 42.5 24 30.7 24 1009.2 24 1006.8 24 11.7 24 14.1 24 21.0 28.0 46.0 33.1 1.24G 999.9 110000 724050 13743 19900102 36.7 24 22.6 24 1028.5 24 1026.1 24 16.6 24 8.2 24 15.9 21.0 46.0 28.0 0.08G 999.9 000000 724050 13743 19900103 36.7 24 26.5 24 1027.7 24 1025.3 24 10.6 24 5.2 24 9.9 999.9 50.0* 28.0 0.00G 999.9 000000 724050 13743 19900104 38.4 23 34.6 23 1021.1 23 1018.6 23 8.0 23 7.6 23 15.0 20.0 55.0* 28.9 0.06G 999.9 110000 724050 13743 19900105 46.8 24 39.6 24 1018.7 24 1016.3 24 11.4 24 7.4 24 13.0 999.9 55.0 28.9 0.00D 999.9 100000 724050 13743 19900106 42.9 23 33.1 23 1018.7 23 1016.3 23 9.3 23 6.4 23 13.0 15.9 51.1 37.9 0.04G 999.9 110000 724050 13743 19900107 35.5 23 29.3 23 1021.9 23 1019.5 23 9.5 23 4.7 23 8.0 999.9 48.9 27.0 0.00D 999.9 000000 724050 13743 19900108 35.3 24 32.0 24 1014.3 24 1011.9 24 6.2 24 6.0 24 13.0 999.9 43.0 27.0 0.30G 999.9 111000 724050 13743 19900109 33.5 24 32.4 24 1014.5 24 1012.1 24 5.1 24 7.0 24 9.9 999.9 37.9 30.0 0.22G 0.4 110000 724050 13743 19900110 43.7 24 35.7 24 1007.3 24 1004.9 24 10.8 24 10.4 24 17.1 26.0 51.1 30.0 0.01G 999.9 110000 724050 13743 19900111 40.5 22 29.6 22 1009.7 22 1007.3 22 12.0 22 10.6 22 20.0 29.9 53.1* 32.0 0.00D 999.9 000000 724050 13743 19900112 43.6 24 20.8 24 1001.3 24 998.9 24 17.6 24 12.9 24 18.1 29.9 53.1 32.0 0.00G 999.9 011000 724050 13743 19900113 33.2 24 14.4 24 1016.7 24 1014.3 24 17.1 24 14.9 24 18.1 26.0 48.0 28.9 0.00G 999.9 000000 724050 13743 19900114 33.9 24 16.6 24 1029.0 24 1026.5 24 18.7 24 6.9 24 12.0 999.9 46.0* 26.1 0.00G 999.9 000000 724050 13743 19900115 41.0 24 29.3 24 1025.7 24 1023.2 24 15.0 21 6.4 24 9.9 999.9 52.0* 26.1 0.02G 999.9 011000 724050 13743 19900116 43.3 23 34.5 23 1026.6 23 1024.1 23 9.2 23 7.1 23 13.0 999.9 63.0* 33.1 0.00D 999.9 000000 724050 13743 19900117 49.8 24 41.1 24 1025.6 24 1023.2 24 9.0 24 6.2 24 12.0 999.9 64.0 33.1 0.00G 999.9 100000 724050 13743 19900118 59.8 24 50.4 24 1017.4 24 1015.0 24 11.3 24 11.4 24 15.0 999.9 68.0 53.1* 0.00G 999.9 010000 724050 13743 19900119 46.9 24 28.6 24 1026.6 24 1024.2 24 12.9 24 10.6 24 19.0 27.0 69.1 39.9 0.00G 999.9 000000 724050 13743 19900120 40.0 23 32.2 23 1023.9 23 1021.5 23 8.4 23 7.5 23 13.0 999.9 50.0 36.0 0.04G 999.9 111000 724050 13743 19900121 49.0 24 43.0 24 1008.4 24 1006.0 24 8.2 24 7.7 24 18.1 25.1 60.1* 36.0 0.07G 999.9 110000 724050 13743 19900122 44.3 23 31.1 23 1012.1 23 1009.7 23 14.5 23 7.7 23 12.0 999.9 60.1 36.0 0.00G 999.9 000000 724050 13743 19900123 44.5 24 31.8 24 1017.3 24 1014.9 24 13.4 24 7.0 24 12.0 999.9 53.1 34.0 0.00G 999.9 000000 724050 13743 19900124 50.1 22 39.7 22 1014.7 22 1012.4 22 11.3 22 9.7 22 14.0 999.9 61.0 34.0 0.01G 999.9 010000 724050 13743 19900125 51.0 24 48.4 24 1013.1 24 1010.7 24 6.1 24 7.9 24 15.0 999.9 61.0 45.0 0.61G 999.9 110000 724050 13743 19900126 44.4 23 37.9 23 1009.2 23 1006.8 23 9.5 22 12.2 23 19.0 27.0 57.0 36.0 0.81G 999.9 111000 724050 13743 19900127 38.6 24 25.1 24 1025.6 24 1023.2 24 16.1 24 8.1 24 14.0 999.9 57.0 28.9 0.08G 999.9 000000 724050 13743 19900128 46.6 24 30.7 24 1023.9 24 1021.5 24 13.6 24 8.9 24 15.9 999.9 61.0* 28.9 0.00G 999.9 000000 724050 13743 19900129 43.1 24 30.4 24 1019.2 24 1016.8 24 11.9 24 9.4 24 15.0 999.9 61.0 37.9 0.00G 999.9 110000 724050 13743 19900130 45.0 24 32.7 24 1010.8 24 1008.5 24 15.5 24 10.3 24 21.0 29.9 50.0 39.9 0.56G 999.9 110000 724050 13743 19900131 44.4 22 29.2 22 1022.5 22 1020.1 22 11.3 22 4.3 22 9.9 999.9 55.9* 32.0 0.00G 999.9 000000 724050 13743 19900201 44.3 23 32.7 23 1025.2 23 1022.8 23 10.5 23 6.3 23 12.0 999.9 59.0* 32.0 0.00G 999.9 100000 724050 13743 19900202 54.0 23 42.0 23 1014.8 23 1012.4 23 11.0 23 6.2 23 11.1 999.9 72.0* 33.1 0.00G 999.9 000000 724050 13743 19900203 48.6 23 44.5 23 1020.2 23 1017.8 23 6.9 23 6.6 23 11.1 999.9 72.0 43.0* 0.00G 999.9 110000 724050 13743 19900204 44.9 24 43.6 24 1010.9 24 1008.5 24 4.9 24 7.7 24 21.0 999.9 54.0 43.0 0.29G 999.9 110000 724050 13743 19900205 39.2 24 26.7 24 1020.8 24 1018.4 24 15.5 24 11.3 24 21.0 25.1 50.0 30.0 0.05G 999.9 010000 724050 13743 19900206 42.5 24 29.6 24 1023.3 24 1020.9 24 14.7 24 8.2 24 9.9 999.9 59.0* 30.0 0.00G 999.9 000000 724050 13743 19900207 49.6 24 38.1 24 1017.9 24 1015.5 24 11.3 24 7.3 24 17.1 22.9 60.1 33.1 0.04G 999.9 010000 724050 13743 19900208 48.1 23 38.8 23 1023.5 23 1021.1 23 8.9 23 6.6 23 11.1 999.9 57.0 37.0 0.00D 999.9 100000 724050 13743 19900209 53.7 24 44.3 24 1016.5 24 1014.1 24 9.7 24 11.3 24 15.0 19.0 66.0 37.0 0.00G 999.9 010000 724050 13743 19900210 54.6 23 48.5 23 1004.1 23 1001.7 23 9.2 23 12.3 23 24.1 33.0 66.0 46.0 0.43G 999.9 110000 724050 13743 19900211 40.2 24 25.3 24 1013.1 24 1010.7 24 14.3 24 7.9 24 13.0 999.9 63.0 30.9 0.04G 999.9 000000 724050 13743 19900212 42.0 24 28.5 24 1016.1 24 1013.6 24 12.3 24 9.1 24 15.9 22.0 48.9 30.9 0.02G 999.9 010000 724050 13743 19900213 46.0 23 30.2 23 1022.0 23 1019.6 23 12.2 23 10.1 23 19.0 25.1 64.0* 33.1 0.00G 999.9 000000 724050 13743 19900214 60.6 24 41.1 24 1016.8 24 1014.4 24 14.3 24 9.8 24 15.0 999.9 72.0* 52.0* 0.00G 999.9 000000 724050 13743 19900215 47.6 24 41.8 24 1021.2 24 1018.8 24 8.1 23 8.7 24 15.9 999.9 73.0 42.1 0.00G 999.9 110000 724050 13743 19900216 56.1 23 53.7 23 1012.2 23 1009.8 23 7.9 23 9.7 23 17.1 25.1 66.9 42.1 0.08G 999.9 110000 724050 13743 19900217 52.2 22 33.9 22 1018.9 22 1016.4 22 16.5 22 15.4 22 22.0 27.0 66.9 39.9* 0.05G 999.9 000000 724050 13743 19900218 36.5 23 21.0 23 1036.3 23 1033.8 23 14.3 23 9.3 23 13.0 999.9 45.0* 28.9 0.00G 999.9 000000 724050 13743 19900219 48.3 24 34.4 24 1020.9 24 1018.5 24 10.9 24 10.5 24 15.0 24.1 63.0* 28.9 0.00G 999.9 110000 724050 13743 19900220 40.5 23 11.2 23 1028.6 23 1026.2 23 18.6 23 12.8 23 15.9 20.0 63.0 32.0 0.00G 999.9 000000 724050 13743 19900221 38.5 23 20.6 23 1036.4 23 1034.0 23 12.2 23 7.2 23 13.0 999.9 52.0* 28.0 0.00G 999.9 000000 724050 13743 19900222 48.1 19 41.6 18 1023.8 19 1021.4 19 10.0 18 9.0 19 15.9 17.1 57.9* 28.0 0.00G 999.9 110000 724050 13743 19900223 60.9 23 55.7 23 1004.3 23 1001.9 23 12.6 23 13.3 23 18.1 24.1 64.9* 55.9* 0.31G 999.9 110000 724050 13743 19900224 45.8 24 31.8 24 1003.6 24 1001.2 24 14.9 23 13.6 24 22.9 31.1 66.0 37.9 0.08G 999.9 111110 724050 13743 19900225 28.5 24 3.1 24 1024.6 24 1022.2 24 17.6 24 17.6 24 25.1 35.0 48.0 21.0 0.00G 999.9 001000 724050 13743 19900226 21.4 23 -0.8 23 1044.4 23 1041.9 23 16.8 23 10.5 23 15.9 24.1 32.0 14.0 0.00G 999.9 000000 724050 13743 19900227 30.1 24 19.3 24 1036.7 24 1034.2 24 14.5 24 10.2 24 17.1 999.9 39.9* 14.0 0.00G 999.9 011000 724050 13743 19900228 41.4 24 27.1 24 1028.7 24 1026.3 24 10.0 24 8.5 24 15.9 22.0 51.1 23.0 0.01G 999.9 000000 724050 13743 19900301 37.8 24 14.2 24 1031.1 24 1028.7 24 13.2 24 8.4 24 12.0 999.9 52.0 28.0 0.00G 999.9 000000 724050 13743 19900302 40.9 24 31.5 24 1020.9 24 1018.5 24 9.5 24 9.9 24 13.0 999.9 48.9 28.0 0.01G 999.9 110000 724050 13743 19900303 51.1 24 43.5 24 1010.7 24 1008.3 24 5.7 23 6.8 24 12.0 999.9 60.1 34.0 0.05G 999.9 110000 724050 13743 19900304 38.3 22 17.5 22 1019.0 22 1016.6 22 13.9 22 10.9 22 20.0 21.0 61.0 28.0 0.01G 999.9 000000 724050 13743 19900305 38.3 20 24.4 20 1027.2 20 1024.7 20 14.5 20 6.6 20 12.0 999.9 53.1* 28.0 0.00G 999.9 000000 724050 13743 19900306 43.6 16 34.9 16 1029.0 16 1026.6 16 9.4 16 9.1 16 15.0 999.9 55.0 30.0 0.00D 999.9 100000 724050 13743 19900307 32.5 19 8.9 19 1042.6 19 1040.2 19 14.5 19 10.5 19 17.1 999.9 51.1 21.9 0.00G 999.9 000000 724050 13743 19900308 34.2 24 14.2 24 1039.5 24 1037.1 24 11.8 24 6.0 24 8.9 999.9 46.9* 21.9 0.00G 999.9 000000 724050 13743 19900309 47.8 23 32.9 23 1025.8 23 1023.4 23 10.7 23 7.4 23 11.1 999.9 66.0* 39.0* 0.00G 999.9 010000 724050 13743 19900310 54.8 24 47.4 24 1023.4 24 1020.9 24 6.1 24 5.5 24 13.0 999.9 69.1* 39.0 0.01G 999.9 110000 724050 13743 19900311 55.9 24 49.9 24 1023.3 24 1021.0 24 5.8 24 4.6 24 8.0 999.9 70.0 46.9 0.01G 999.9 110000 724050 13743 19900312 65.6 24 53.8 24 1021.2 24 1018.8 24 9.3 24 6.7 24 14.0 17.1 88.0* 48.0 0.00D 999.9 100000 724050 13743 19900313 72.7 24 52.9 24 1019.4 24 1017.0 24 14.0 24 8.5 24 12.0 18.1 89.1 51.1 0.00G 999.9 000000 724050 13743 19900314 70.0 24 53.1 24 1017.7 24 1015.3 24 11.4 24 5.9 24 12.0 999.9 87.1 55.0 0.00G 999.9 000000 724050 13743 19900315 69.7 23 55.2 23 1018.8 23 1016.4 23 11.8 23 10.7 23 15.9 22.0 86.0 55.9 0.00G 999.9 000000 724050 13743 19900316 69.2 24 60.6 24 1018.2 24 1015.8 24 11.4 23 11.1 24 20.0 32.1 81.0 60.1 0.00G 999.9 010000 724050 13743 19900317 67.5 23 63.0 23 1009.4 23 1007.0 23 10.0 22 11.5 23 22.9 32.1 81.0 63.0 0.72G 999.9 010000 724050 13743 19900318 56.6 24 38.4 24 1011.9 24 1009.5 24 12.8 24 9.5 24 15.9 22.9 72.0 50.0 0.66G 999.9 110000 724050 13743 19900319 54.9 24 32.3 24 1021.5 24 1019.1 24 14.6 24 9.9 24 15.0 999.9 64.0 48.0 0.00G 999.9 000000 724050 13743 19900320 40.4 23 33.4 23 1018.9 23 1016.5 23 10.5 23 15.3 23 20.0 26.0 66.0 34.0 0.11G 999.9 111000 724050 13743 19900321 41.9 23 23.6 23 1021.9 23 1019.5 23 12.2 23 14.0 23 18.1 25.1 57.0* 34.0 0.06G 999.9 101000 724050 13743 19900322 52.3 24 33.1 24 1024.9 24 1022.5 24 12.5 24 8.4 24 17.1 22.9 69.1* 34.0 0.00G 999.9 000000 724050 13743 19900323 61.8 24 36.5 24 1019.0 24 1016.6 24 13.6 24 12.7 24 20.0 26.0 71.1 53.1* 0.00G 999.9 000000 724050 13743 19900324 40.0 24 29.0 24 1029.0 24 1026.5 24 8.0 24 11.6 24 16.9 24.1 54.0* 32.0 0.16G 1.2 101000 724050 13743 19900325 38.5 24 33.2 24 1028.2 24 1025.8 24 7.2 24 5.9 24 8.9 999.9 46.9* 32.0 0.16G 0.4 111000 724050 13743 19900326 44.6 22 29.6 22 1025.8 22 1023.4 22 10.0 22 9.0 22 15.0 21.0 54.0* 35.1 0.10G 999.9 000000 724050 13743 19900327 42.3 22 20.1 22 1028.9 22 1026.5 22 13.5 22 9.1 22 12.0 15.0 55.0 34.0 0.00G 999.9 000000 724050 13743 19900328 41.8 22 26.5 22 1031.7 22 1029.2 22 11.2 22 6.7 22 14.0 999.9 54.0* 32.0 0.00G 999.9 000000 724050 13743 19900329 46.8 24 36.1 24 1031.2 24 1028.8 24 10.2 24 8.5 24 13.0 999.9 55.0 32.0 0.04G 999.9 010000 724050 13743 19900330 44.5 24 41.8 24 1026.1 24 1023.7 24 5.3 24 10.7 24 14.0 999.9 50.0 43.0 0.19G 999.9 110000 724050 13743 19900331 45.7 24 43.5 24 1019.1 24 1016.7 24 5.3 24 5.0 24 8.9 999.9 50.0 43.0 0.45G 999.9 110000 724050 13743 19900401 50.3 24 47.3 24 1015.8 24 1013.4 24 4.1 24 5.1 24 8.0 999.9 55.9* 43.0 0.03G 999.9 100000 724050 13743 19900402 54.1 24 51.3 24 1011.6 24 1009.2 24 4.0 24 7.7 24 15.0 25.1 66.0* 46.9 0.36G 999.9 110010 724050 13743 19900403 51.3 22 42.3 22 1005.3 22 1002.9 22 10.2 22 12.7 22 17.1 24.1 66.0 46.9* 0.57G 999.9 110010 724050 13743 19900404 42.9 24 31.5 24 1000.5 24 998.1 24 12.1 23 13.1 24 18.1 26.0 55.9 37.0 0.01G 999.9 011000 724050 13743 19900405 52.9 23 30.4 23 1004.9 23 1002.6 23 14.8 23 10.2 23 14.0 22.0 64.0* 37.0 0.01G 999.9 000000 724050 13743 19900406 47.8 23 37.9 23 1013.6 23 1011.2 23 11.3 23 9.4 23 14.0 999.9 64.0 37.9* 0.03G 999.9 110000 724050 13743 19900407 39.9 24 33.0 24 1016.6 24 1014.2 24 9.7 24 10.0 24 17.1 25.1 54.0 34.0 0.62G 999.9 111000 724050 13743 19900408 42.8 24 23.1 24 1025.7 24 1023.3 24 17.7 24 9.5 24 15.0 21.0 55.9* 30.9 0.08G 999.9 000000 724050 13743 19900409 50.3 23 30.0 23 1030.9 23 1028.4 23 14.9 23 8.7 23 17.1 24.1 64.9* 30.9 0.00G 999.9 000000 724050 13743 19900410 57.8 24 45.9 24 1020.8 24 1018.4 24 12.9 24 14.2 24 22.0 27.0 68.0 52.0* 0.00G 999.9 010000 724050 13743 19900411 58.8 23 43.8 23 1007.7 23 1005.3 23 12.4 23 16.6 23 22.0 28.9 68.0 51.1* 0.02G 999.9 010000 724050 13743 19900412 46.0 22 25.3 22 1019.3 22 1016.9 22 14.7 22 10.8 22 15.9 24.1 64.0 37.0 0.00D 999.9 000000 724050 13743 19900413 43.8 23 24.5 23 1030.6 23 1028.2 23 12.5 23 6.9 23 13.0 999.9 54.0* 32.0 0.00G 999.9 000000 724050 13743 19900414 50.5 24 37.3 24 1027.1 24 1024.7 24 11.9 23 10.4 24 20.0 27.0 64.9* 32.0 0.00G 999.9 010000 724050 13743 19900415 58.6 24 51.9 24 1015.9 24 1013.5 24 9.4 23 5.6 24 11.1 999.9 68.0* 41.0 1.08G 999.9 110000 724050 13743 19900416 59.3 23 45.3 23 1015.4 23 1013.0 23 12.4 23 5.7 23 8.9 999.9 69.1 48.0 0.66G 999.9 000000 724050 13743 19900417 57.0 24 46.9 24 1013.1 24 1010.6 24 10.6 23 12.0 24 20.0 27.0 73.0 46.9* 0.00G 999.9 010000 724050 13743 19900418 45.8 23 24.4 23 1027.7 23 1025.2 23 16.2 23 11.5 23 19.0 22.9 55.0* 37.0 0.12G 999.9 000000 724050 13743 19900419 50.4 24 29.7 24 1036.2 24 1033.8 24 12.9 24 7.2 24 13.0 999.9 63.0* 36.0 0.00G 999.9 000000 724050 13743 19900420 55.3 24 42.9 24 1032.5 24 1030.1 24 12.2 24 12.0 24 15.0 17.1 64.9* 36.0 0.00G 999.9 010000 724050 13743 19900421 60.9 24 55.5 24 1019.3 24 1016.9 24 8.6 24 7.8 24 12.0 999.9 66.0 48.9 0.14G 999.9 110000 724050 13743 19900422 60.1 24 49.0 24 1019.3 24 1016.9 24 9.7 24 7.0 24 9.9 999.9 72.0* 48.0 0.03G 999.9 110000 724050 13743 19900423 65.2 24 45.5 24 1017.9 24 1015.5 24 10.8 24 5.6 24 8.9 999.9 82.9* 48.0 0.00G 999.9 100000 724050 13743 19900424 67.5 23 49.1 23 1018.2 23 1015.9 23 9.7 23 6.3 23 12.0 999.9 82.9 50.0 0.00G 999.9 000000 724050 13743 19900425 65.0 24 54.0 24 1019.4 24 1017.0 24 7.5 24 7.4 24 11.1 999.9 84.0* 51.1 0.00G 999.9 100000 724050 13743 19900426 77.3 24 60.9 24 1015.1 24 1012.7 24 8.9 24 7.3 24 12.0 999.9 91.0* 51.1 0.00G 999.9 100000 724050 13743 19900427 77.5 24 62.1 24 1014.9 24 1012.5 24 8.0 24 4.3 24 9.9 999.9 91.9 64.0 0.00G 999.9 100000 724050 13743 19900428 76.2 23 60.3 23 1012.8 23 1010.4 23 8.1 23 7.8 23 14.0 15.9 93.0 64.9 0.00G 999.9 100000 724050 13743 19900429 68.8 20 59.3 20 1013.6 20 1011.2 20 8.3 20 10.0 20 17.1 999.9 86.0 60.1 0.50G 999.9 110010 724050 13743 19900430 60.1 23 56.8 23 1014.9 23 1012.5 23 8.0 23 7.0 23 11.1 999.9 73.9 57.0 0.60G 999.9 110010 724050 13743 19900501 64.6 23 59.1 23 1014.1 23 1011.7 23 6.1 23 5.2 23 9.9 999.9 79.0* 55.9 0.01G 999.9 100000 724050 13743 19900502 66.3 24 45.2 24 1018.6 24 1016.2 24 12.8 24 10.4 24 15.9 999.9 81.0 55.9 0.00G 999.9 000000 724050 13743 19900503 61.7 24 43.1 24 1027.0 24 1024.5 24 13.0 24 6.9 24 9.9 999.9 70.0 57.9 0.00G 999.9 010000 724050 13743 19900504 57.9 21 50.8 21 1024.0 21 1021.6 21 9.8 21 7.9 21 11.1 999.9 69.1 55.9 0.00G 999.9 110000 724050 13743 19900505 62.0 24 57.0 24 1005.8 24 1003.5 24 5.6 24 6.4 24 17.1 25.1 75.0 54.0 0.83G 999.9 110010 724050 13743 19900506 59.8 22 43.2 22 1008.5 22 1006.1 22 13.3 22 12.0 22 14.0 22.0 75.0 51.1 0.02G 999.9 000000 724050 13743 19900507 62.0 24 41.4 24 1014.9 24 1012.5 24 13.6 24 10.1 24 14.0 15.9 73.9* 50.0 0.00G 999.9 000000 724050 13743 19900508 67.2 23 48.6 23 1017.6 23 1015.2 23 12.8 23 8.6 23 13.0 18.1 80.1 50.0 0.00G 999.9 000000 724050 13743 19900509 69.3 24 55.3 24 1016.9 24 1014.5 24 12.1 24 9.0 24 19.0 22.9 81.0 54.0 0.00G 999.9 000000 724050 13743 19900510 65.6 24 62.2 24 1006.3 24 1003.9 24 6.9 24 13.1 24 20.0 29.9 81.0 59.0 1.34G 999.9 110010 724050 13743 19900511 60.2 23 38.9 23 1010.5 23 1008.1 23 16.7 23 11.8 23 15.9 22.0 73.0 48.0 0.19G 999.9 010000 724050 13743 19900512 57.1 24 40.4 24 1024.5 24 1022.1 24 13.8 24 9.0 24 14.0 999.9 71.1 48.0 0.00G 999.9 010000 724050 13743 19900513 63.8 22 59.0 22 1015.8 22 1013.4 22 9.4 22 10.6 22 17.1 22.9 73.0* 48.9 0.20G 999.9 110010 724050 13743 19900514 65.1 24 53.2 24 1018.3 24 1015.9 24 13.5 24 9.1 24 14.0 19.0 75.9* 55.9 0.14G 999.9 000000 724050 13743 19900515 64.4 22 57.4 22 1021.8 22 1019.4 22 10.9 22 7.8 22 13.0 999.9 77.0 55.0 0.00G 999.9 100000 724050 13743 19900516 71.1 24 64.5 24 1016.3 24 1013.9 24 8.2 24 8.6 24 15.0 999.9 82.9* 55.0 0.00G 999.9 110000 724050 13743 19900517 76.3 24 65.9 24 1007.7 24 1005.3 24 8.7 24 11.6 24 18.1 26.0 84.0* 63.0 0.00G 999.9 110010 724050 13743 19900518 70.4 23 38.0 23 1010.6 23 1008.2 23 12.8 23 12.5 23 19.0 32.1 84.9 59.0 0.00C 999.9 000000 724050 13743 19900519 67.7 23 44.8 23 1014.9 23 1012.5 23 13.9 23 7.8 23 13.0 18.1 80.1* 54.0 0.00G 999.9 000000 724050 13743 19900520 72.4 24 60.0 24 1011.7 24 1009.3 24 11.3 24 7.0 24 11.1 999.9 80.1 54.0 0.00G 999.9 010000 724050 13743 19900521 65.2 23 61.2 23 1009.2 23 1006.8 23 5.7 23 8.1 23 14.0 999.9 79.0 60.1 0.12G 999.9 110000 724050 13743 19900522 55.4 24 49.1 24 1015.4 24 1013.0 24 7.9 24 8.9 24 14.0 999.9 70.0 51.1 0.08G 999.9 110000 724050 13743 19900523 59.2 24 45.5 24 1015.4 24 1013.0 24 12.0 24 8.2 24 14.0 17.1 71.1* 48.0 0.01G 999.9 000000 724050 13743 19900524 64.7 23 46.3 23 1016.7 23 1014.3 23 13.3 23 5.6 23 9.9 999.9 75.0 48.0 0.00G 999.9 000000 724050 13743 19900525 67.0 23 52.7 23 1020.1 23 1017.7 23 10.1 23 5.3 23 20.0 25.1 77.0 54.0 0.00C 999.9 000000 724050 13743 19900526 65.3 24 62.9 24 1013.3 24 1010.9 24 4.2 24 9.6 24 18.1 24.1 77.0 54.0 0.77G 999.9 110000 724050 13743 19900527 61.4 24 55.3 24 1011.2 24 1008.8 24 8.7 24 9.6 24 15.0 999.9 72.0 57.0 0.01G 999.9 110000 724050 13743 19900528 62.5 24 57.5 24 1013.1 24 1010.7 24 8.7 24 4.7 24 8.9 999.9 70.0 57.0 0.00G 999.9 110000 724050 13743 19900529 57.1 24 54.1 24 1005.5 24 1003.1 24 6.8 24 11.2 24 19.0 22.0 66.9 52.0 1.48G 999.9 110000 724050 13743 19900530 61.7 24 48.3 24 1009.5 24 1007.1 24 16.1 24 14.0 24 17.1 24.1 71.1* 52.0 0.02G 999.9 010000 724050 13743 19900531 64.4 24 43.1 24 1020.6 24 1018.2 24 16.9 24 7.1 24 11.1 999.9 73.0* 52.0 0.00G 999.9 000000 724050 13743 19900601 66.0 23 56.2 23 1023.7 23 1021.3 23 12.6 23 6.8 23 12.0 999.9 79.0* 52.0 0.00G 999.9 000000 724050 13743 19900602 72.9 24 64.2 24 1022.1 24 1019.6 24 9.1 24 10.8 24 18.1 25.1 82.9* 55.0 0.00G 999.9 000000 724050 13743 19900603 74.9 24 64.8 24 1014.5 24 1012.1 24 10.2 22 13.3 24 22.9 38.1 82.9 64.9 0.00G 999.9 010010 724050 13743 19900604 70.3 24 61.1 24 1008.8 24 1006.4 24 10.2 24 10.5 24 19.0 28.9 82.9 64.9* 0.08G 999.9 000010 724050 13743 19900605 60.7 24 44.1 24 1017.2 24 1014.8 24 13.5 24 9.1 24 14.0 18.1 79.0 50.0 0.00G 999.9 000000 724050 13743 19900606 67.7 24 55.3 24 1017.4 24 1015.0 24 11.2 24 11.4 24 18.1 22.9 82.9* 50.0 0.00G 999.9 000000 724050 13743 19900607 77.2 24 65.9 24 1014.6 24 1012.2 24 8.1 24 9.0 24 14.0 21.0 84.0 57.0 0.00G 999.9 010000 724050 13743 19900608 76.5 23 67.9 23 1017.8 23 1015.4 23 6.9 23 5.8 23 12.0 999.9 86.0* 68.0 0.00G 999.9 000000 724050 13743 19900609 80.4 23 71.3 23 1013.5 23 1011.1 23 5.6 23 8.6 23 36.9 999.9 91.9* 68.0 0.00G 999.9 110010 724050 13743 19900610 75.3 24 65.3 24 1012.2 24 1009.8 24 8.2 24 7.9 24 13.0 22.0 93.0 68.0 2.19G 999.9 110010 724050 13743 19900611 69.9 24 54.2 24 1014.1 24 1011.7 24 14.9 24 13.7 24 21.0 28.0 82.0 63.0 0.00G 999.9 000000 724050 13743 19900612 69.2 23 49.1 23 1021.0 23 1018.6 23 15.9 23 11.2 23 22.0 31.1 81.0* 57.0 0.00G 999.9 000000 724050 13743 19900613 70.4 23 54.9 23 1021.8 23 1019.4 23 12.1 23 5.0 23 8.9 999.9 81.0 57.0 0.00G 999.9 000000 724050 13743 19900614 74.2 23 63.8 23 1016.2 23 1013.8 23 8.8 23 5.1 23 9.9 999.9 89.1* 57.9 0.00G 999.9 000000 724050 13743 19900615 69.2 22 61.7 22 1014.3 22 1011.9 22 7.4 22 7.4 22 12.0 999.9 89.1 61.0 0.21G 999.9 110000 724050 13743 19900616 73.2 24 62.1 24 1018.2 24 1015.8 24 7.8 24 4.3 24 7.0 999.9 84.0* 61.0 0.00D 999.9 100000 724050 13743 19900617 76.5 24 66.6 24 1020.1 24 1017.7 24 7.8 24 5.2 24 9.9 999.9 84.9 63.0 0.00G 999.9 100000 724050 13743 19900618 75.9 22 68.0 22 1014.5 22 1012.1 22 8.6 22 8.8 22 15.0 999.9 87.1* 66.9 0.00G 999.9 110010 724050 13743 19900619 75.1 23 69.0 23 1007.6 23 1005.2 23 7.0 23 7.9 23 25.1 32.1 88.0 68.0 0.32G 999.9 110010 724050 13743 19900620 72.9 22 57.7 22 1011.5 22 1009.1 22 11.1 22 9.6 22 14.0 21.0 86.0 63.0 0.03G 999.9 010000 724050 13743 19900621 79.6 24 66.0 24 1011.5 24 1009.1 24 8.4 24 8.8 24 12.0 19.0 90.0* 63.0 0.00G 999.9 010000 724050 13743 19900622 79.4 24 64.7 24 1013.2 24 1010.9 24 9.0 24 6.8 24 21.0 34.0 90.0 66.9 0.00G 999.9 110010 724050 13743 19900623 76.2 23 67.0 23 1005.8 23 1003.4 23 8.4 22 8.5 23 15.0 999.9 89.1 66.9 0.10G 999.9 110010 724050 13743 19900624 74.8 23 56.7 23 1007.7 23 1005.3 23 14.9 23 8.4 23 12.0 18.1 86.0 66.9 0.02G 999.9 000000 724050 13743 19900625 72.5 23 54.5 23 1016.5 23 1014.1 23 13.9 23 7.7 23 11.1 17.1 82.0 62.1 0.01G 999.9 010010 724050 13743 19900626 77.2 22 63.0 22 1019.9 22 1017.4 22 11.6 22 7.4 22 13.0 20.0 88.0* 62.1 0.00G 999.9 000000 724050 13743 19900627 79.0 23 66.9 23 1016.9 23 1014.5 23 9.4 23 8.1 23 12.0 999.9 89.1 66.9 0.00G 999.9 000000 724050 13743 19900628 81.6 22 66.2 22 1017.9 22 1015.5 22 7.8 22 7.3 22 12.0 999.9 91.0 70.0 0.00G 999.9 100000 724050 13743 19900629 83.5 24 67.7 24 1016.1 24 1013.7 24 5.8 24 8.4 24 15.9 999.9 96.1 70.0 0.00G 999.9 000000 724050 13743 19900630 84.3 24 68.1 24 1012.2 24 1009.8 24 7.5 24 9.0 24 13.0 999.9 97.0 73.0 0.13G 999.9 110010 724050 13743 19900701 78.3 23 66.7 23 1008.9 23 1006.5 23 9.8 23 9.5 23 20.0 29.9 93.0 70.0 0.13G 999.9 010010 724050 13743 19900702 74.8 23 58.3 23 1012.3 23 1009.9 23 16.2 23 11.8 23 15.0 21.0 90.0 64.9 0.37G 999.9 000000 724050 13743 19900703 76.7 22 61.4 22 1017.3 22 1014.9 22 11.3 22 7.6 22 12.0 999.9 89.1 64.9 0.00G 999.9 100000 724050 13743 19900704 81.8 24 63.4 24 1015.5 24 1013.1 24 10.5 24 10.7 24 15.9 20.0 95.0* 66.0 0.00G 999.9 000000 724050 13743 19900705 87.2 24 71.7 24 1011.2 24 1008.8 24 7.1 24 8.5 24 25.1 36.9 100.0 71.1 0.00G 999.9 110010 724050 13743 19900706 80.9 24 67.4 24 1012.5 24 1010.1 24 10.5 23 6.7 24 9.9 999.9 100.0 72.0 0.78G 999.9 010010 724050 13743 19900707 75.9 23 63.4 23 1019.6 23 1017.2 23 11.8 23 9.5 23 18.1 999.9 91.0 71.1 0.00G 999.9 000000 724050 13743 19900708 76.4 24 66.8 24 1023.3 24 1020.9 24 10.9 24 8.4 24 12.0 999.9 84.0* 70.0 0.00G 999.9 000000 724050 13743 19900709 83.2 24 75.2 24 1017.1 24 1014.7 24 7.3 24 9.6 24 13.0 999.9 96.1* 70.0 0.00G 999.9 000000 724050 13743 19900710 85.8 24 72.0 24 1014.7 24 1012.3 24 8.2 24 7.3 24 13.0 999.9 96.1 75.9 0.00G 999.9 010000 724050 13743 19900711 79.1 24 71.1 24 1016.3 24 1013.9 24 6.9 24 8.1 24 17.1 999.9 93.9 71.1* 0.00G 999.9 010010 724050 13743 19900712 76.3 22 70.7 22 1015.0 22 1012.6 22 5.2 22 6.8 22 14.0 21.0 89.1* 70.0 0.18G 999.9 110010 724050 13743 19900713 67.0 24 64.6 24 1018.4 24 1016.0 24 7.8 24 10.3 24 18.1 999.9 89.1 63.0 0.68G 999.9 110010 724050 13743 19900714 72.1 23 69.8 23 1018.3 23 1015.9 23 4.4 23 7.1 23 20.0 25.1 82.9 63.0 0.15G 999.9 110010 724050 13743 19900715 79.1 24 73.4 24 1014.5 24 1012.1 24 10.3 23 11.7 24 15.9 999.9 84.9 68.0 1.08G 999.9 010000 724050 13743 19900716 77.4 23 66.7 23 1021.2 23 1018.8 23 8.5 23 4.9 23 9.9 999.9 84.9 68.0 0.01G 999.9 110000 724050 13743 19900717 78.2 24 69.3 24 1025.1 24 1022.7 24 5.7 24 5.4 24 11.1 999.9 87.1 68.0 0.00G 999.9 100000 724050 13743 19900718 79.5 24 70.6 24 1023.6 24 1021.2 24 7.0 24 6.8 24 11.1 999.9 88.0 70.0 0.00G 999.9 100000 724050 13743 19900719 82.2 24 70.2 24 1021.0 24 1018.6 24 6.2 24 7.7 24 11.1 999.9 89.1 70.0 0.00G 999.9 000000 724050 13743 19900720 80.9 23 70.6 23 1017.7 23 1015.3 23 6.4 23 8.3 23 12.0 999.9 91.0 72.0 0.00G 999.9 000000 724050 13743 19900721 80.1 23 69.8 23 1014.4 23 1012.0 23 7.4 23 5.5 23 18.1 24.1 91.9 72.0 0.00G 999.9 110010 724050 13743 19900722 78.0 24 71.3 24 1013.1 24 1010.7 24 7.2 24 4.8 24 8.0 999.9 91.9 72.0 0.39G 999.9 100000 724050 13743 19900723 82.3 23 72.4 23 1010.7 23 1008.3 23 7.7 23 8.2 23 17.1 999.9 90.0 72.0 0.00G 999.9 100010 724050 13743 19900724 77.3 24 62.7 24 1016.3 24 1013.8 24 11.3 24 10.4 24 15.0 999.9 90.0 69.1 0.03G 999.9 000000 724050 13743 19900725 79.2 24 63.0 24 1019.2 24 1016.8 24 11.6 24 7.7 24 13.0 999.9 89.1 69.1 0.00G 999.9 000000 724050 13743 19900726 80.6 23 61.5 23 1022.4 23 1020.0 23 10.9 23 8.9 23 12.0 999.9 89.1 69.1 0.00G 999.9 000000 724050 13743 19900727 78.6 24 67.6 24 1022.1 24 1019.7 24 8.4 24 9.7 24 15.9 999.9 90.0 71.1 0.00G 999.9 100000 724050 13743 19900728 77.9 24 68.6 24 1020.9 24 1018.5 24 11.5 24 8.3 24 12.0 999.9 84.9 72.0 0.00G 999.9 000000 724050 13743 19900729 75.3 24 69.3 24 1017.7 24 1015.3 24 9.1 24 9.1 24 15.0 999.9 86.0 72.0 0.03G 999.9 110000 724050 13743 19900730 77.4 24 69.4 24 1014.8 24 1012.4 24 10.0 24 5.4 24 11.1 999.9 84.9 71.1 0.02G 999.9 000000 724050 13743 19900731 80.1 22 68.8 22 1011.1 22 1008.7 22 8.5 22 8.6 22 15.9 20.0 89.1 71.1 0.00G 999.9 010000 724050 13743 19900801 74.9 24 56.8 24 1016.4 24 1014.0 24 12.8 24 11.7 24 15.9 21.0 90.0 64.0 0.00G 999.9 000000 724050 13743 19900802 75.8 23 54.7 23 1020.1 23 1017.6 23 13.3 23 6.4 23 11.1 999.9 87.1* 64.0 0.00G 999.9 000000 724050 13743 19900803 78.0 23 58.4 23 1019.8 23 1017.4 23 12.1 23 5.1 23 9.9 999.9 89.1 64.9 0.00G 999.9 000000 724050 13743 19900804 78.6 22 62.5 22 1018.4 22 1016.0 22 10.3 22 6.9 22 9.9 999.9 90.0* 66.0 0.00G 999.9 000000 724050 13743 19900805 78.5 24 68.1 24 1016.6 24 1014.2 24 8.2 24 9.4 24 12.0 999.9 90.0 68.0 0.03G 999.9 010000 724050 13743 19900806 76.0 24 72.1 24 1014.7 24 1012.3 24 5.4 23 7.4 24 15.0 17.1 84.0 71.1 1.57G 999.9 110010 724050 13743 19900807 75.9 24 64.6 24 1016.7 24 1014.2 24 7.5 24 8.6 24 15.0 18.1 82.9* 70.0 0.35G 999.9 100000 724050 13743 19900808 75.7 24 60.3 24 1020.3 24 1017.9 24 8.0 24 5.4 24 8.9 999.9 86.0* 66.0 0.00G 999.9 100000 724050 13743 19900809 71.1 24 66.0 24 1021.5 24 1019.1 24 4.9 24 6.4 24 13.0 999.9 87.1 66.0 1.13G 999.9 110000 724050 13743 19900810 70.2 24 67.3 24 1018.5 24 1016.1 24 4.7 24 7.3 24 9.9 999.9 77.0* 66.9 1.31G 999.9 110000 724050 13743 19900811 76.2 24 68.9 24 1016.9 24 1014.5 24 7.4 24 5.3 24 8.9 999.9 84.9* 66.9 0.20G 999.9 110000 724050 13743 19900812 77.5 24 67.3 24 1019.8 24 1017.4 24 5.8 24 5.0 24 9.9 999.9 87.1* 68.0 0.00G 999.9 110000 724050 13743 19900813 80.0 24 70.7 24 1018.2 24 1015.8 24 4.8 24 8.9 24 17.1 24.1 91.0* 68.0 0.00G 999.9 110000 724050 13743 19900814 76.5 24 67.5 24 1017.7 24 1015.3 24 8.9 24 6.8 24 20.0 29.9 91.0 71.1 1.03G 999.9 110010 724050 13743 19900815 77.7 24 69.3 24 1019.2 24 1016.8 24 9.7 24 6.0 24 11.1 999.9 84.9 70.0 0.00G 999.9 100000 724050 13743 19900816 77.1 23 71.0 23 1019.2 23 1016.8 23 5.9 23 5.3 23 9.9 999.9 86.0 70.0 0.00G 999.9 100000 724050 13743 19900817 79.0 22 70.5 22 1019.6 22 1017.2 22 4.6 22 4.5 22 8.9 999.9 88.0* 71.1 0.00G 999.9 100000 724050 13743 19900818 78.5 24 68.0 24 1019.0 24 1016.6 24 6.1 24 5.7 24 9.9 999.9 87.1 70.0 0.00G 999.9 000000 724050 13743 19900819 80.7 24 69.4 24 1015.8 24 1013.4 24 6.6 23 6.0 24 8.9 999.9 90.0 70.0 0.00G 999.9 000000 724050 13743 19900820 68.5 20 63.5 20 1020.1 20 1017.7 20 6.9 20 11.5 20 17.1 999.9 90.0 64.0 0.57G 999.9 110010 724050 13743 19900821 66.0 24 61.1 24 1021.7 24 1019.3 24 6.5 24 8.0 24 11.1 999.9 72.0 62.1 0.00D 999.9 110000 724050 13743 19900822 68.0 24 65.9 24 1019.4 24 1017.0 24 4.1 24 8.0 24 11.1 999.9 72.0 62.1 0.12G 999.9 110000 724050 13743 19900823 69.6 23 67.2 23 1017.6 23 1015.3 23 5.0 23 9.4 23 13.0 999.9 72.0 66.0 0.52G 999.9 110000 724050 13743 19900824 73.1 24 69.0 24 1017.9 24 1015.5 24 4.0 24 6.5 24 11.1 999.9 80.1* 66.9 0.06G 999.9 110000 724050 13743 19900825 77.0 24 71.3 24 1019.5 24 1017.1 24 5.0 24 4.6 24 8.0 999.9 84.9* 70.0 0.02G 999.9 110000 724050 13743 19900826 79.7 24 71.7 24 1019.2 24 1016.8 24 4.9 24 4.5 24 8.0 999.9 90.0 71.1 0.00D 999.9 100000 724050 13743 19900827 81.1 24 70.6 24 1016.2 24 1013.8 24 4.2 24 5.7 24 9.9 999.9 91.0 72.0 0.00G 999.9 100000 724050 13743 19900828 83.3 24 71.2 24 1011.8 24 1009.4 24 4.7 24 6.1 24 11.1 999.9 91.0* 72.0 0.00G 999.9 100000 724050 13743 19900829 81.5 24 68.4 24 1008.7 24 1006.3 24 7.4 24 7.4 24 17.1 22.0 93.0 73.9 0.00G 999.9 010010 724050 13743 19900830 75.3 24 60.9 24 1012.7 24 1010.3 24 14.3 24 7.5 24 15.9 999.9 90.0 66.0 0.03G 999.9 100000 724050 13743 19900831 74.7 24 60.4 24 1020.0 24 1017.6 24 12.0 24 4.9 24 9.9 999.9 84.9 64.0 0.00G 999.9 000000 724050 13743 19900901 74.8 24 62.4 24 1022.9 24 1020.5 24 10.8 24 6.3 24 11.1 999.9 84.9 64.0 0.00G 999.9 000000 724050 13743 19900902 77.6 24 65.5 24 1019.2 24 1016.8 24 9.7 24 7.4 24 12.0 999.9 89.1 66.0 0.00G 999.9 000000 724050 13743 19900903 79.3 24 65.7 24 1019.6 24 1017.2 24 7.6 24 8.5 24 12.0 999.9 90.0 68.0 0.00G 999.9 000000 724050 13743 19900904 73.1 24 59.8 24 1027.2 24 1024.8 24 13.5 24 6.6 24 12.0 999.9 84.0 66.9 0.00G 999.9 000000 724050 13743 19900905 71.8 24 61.9 24 1022.1 24 1019.7 24 10.6 24 6.3 24 11.1 999.9 81.0 62.1 0.00G 999.9 000000 724050 13743 19900906 79.0 24 69.5 24 1015.6 24 1013.2 24 5.1 24 5.8 24 9.9 999.9 89.1* 62.1 0.00G 999.9 100000 724050 13743 19900907 81.2 24 71.5 24 1010.2 24 1007.8 24 4.8 23 7.8 24 15.0 999.9 91.9* 70.0 0.00G 999.9 100000 724050 13743 19900908 74.1 24 63.4 24 1017.3 24 1014.9 24 11.6 24 9.7 24 14.0 999.9 93.0 69.1 0.00G 999.9 000000 724050 13743 19900909 68.2 24 59.9 24 1021.6 24 1019.1 24 12.5 24 7.3 24 8.9 999.9 77.0 64.9 0.00G 999.9 000000 724050 13743 19900910 76.1 24 63.8 24 1017.6 24 1015.2 24 11.0 24 8.6 24 14.0 999.9 86.0* 64.9 0.00G 999.9 100000 724050 13743 19900911 75.5 23 62.7 23 1021.0 23 1018.6 23 10.3 23 3.7 23 8.9 999.9 88.0 64.9 0.00G 999.9 000000 724050 13743 19900912 76.6 23 66.5 23 1022.1 23 1019.7 23 7.5 23 4.2 23 8.9 999.9 89.1 64.9 0.00G 999.9 100000 724050 13743 19900913 73.0 24 66.4 24 1021.9 24 1019.5 24 6.7 23 4.7 24 9.9 999.9 86.0 70.0 0.14G 999.9 110000 724050 13743 19900914 72.4 24 66.1 24 1017.0 24 1014.6 24 7.5 24 5.2 24 9.9 999.9 77.0* 68.0 0.11G 999.9 110000 724050 13743 19900915 74.5 24 61.3 24 1006.5 24 1004.1 24 10.5 24 10.6 24 15.9 21.0 80.1* 68.0 0.01G 999.9 110000 724050 13743 19900916 65.8 24 52.2 24 1008.4 24 1006.1 24 12.3 24 7.9 24 19.0 28.9 80.1 57.0 0.00D 999.9 010010 724050 13743 19900917 59.9 24 46.3 24 1017.2 24 1014.8 24 16.9 24 12.1 24 18.1 24.1 77.0 53.1 0.42G 999.9 010000 724050 13743 19900918 56.8 24 39.0 24 1026.1 24 1023.7 24 15.6 24 7.4 24 11.1 999.9 66.0* 46.0 0.00G 999.9 000000 724050 13743 19900919 59.7 24 53.5 24 1019.4 24 1017.0 24 10.5 24 7.1 24 14.0 20.0 66.9 46.0 0.01G 999.9 110000 724050 13743 19900920 67.7 23 56.1 23 1015.1 23 1012.7 23 9.6 23 9.7 23 15.0 999.9 75.0 55.0 0.00D 999.9 000000 724050 13743 19900921 64.6 24 52.5 24 1020.3 24 1017.9 24 12.1 24 6.2 24 11.1 999.9 75.9 55.0 0.00G 999.9 000000 724050 13743 19900922 66.8 24 60.1 24 1010.6 24 1008.2 24 8.4 23 9.6 24 15.0 999.9 75.9* 55.0 0.17G 999.9 110000 724050 13743 19900923 63.4 23 48.5 23 1008.2 23 1005.8 23 16.8 23 9.3 23 15.9 22.0 77.0 57.0 0.11G 999.9 000000 724050 13743 19900924 57.5 24 40.8 24 1015.9 24 1013.5 24 18.1 24 8.7 24 14.0 17.1 68.0 48.0 0.00G 999.9 000000 724050 13743 19900925 59.9 24 46.4 24 1017.1 24 1014.8 24 14.9 24 6.3 24 13.0 999.9 72.0 48.0 0.00G 999.9 000000 724050 13743 19900926 61.9 24 52.9 24 1011.9 24 1009.5 24 10.8 24 7.5 24 11.1 999.9 73.0 48.0 0.00G 999.9 010000 724050 13743 19900927 64.5 24 56.6 24 1017.6 24 1015.2 24 6.7 24 6.1 24 8.9 999.9 78.1* 53.1 0.06G 999.9 100000 724050 13743 19900928 66.1 24 60.4 24 1021.9 24 1019.5 24 5.8 24 3.8 24 8.0 999.9 78.1 53.1 0.00G 999.9 100000 724050 13743 19900929 68.9 24 63.1 24 1021.2 24 1018.8 24 5.4 24 6.6 24 11.1 999.9 78.1 57.0 0.00G 999.9 100000 724050 13743 19900930 69.9 24 64.0 24 1017.3 24 1014.9 24 6.4 24 8.3 24 13.0 999.9 81.0* 62.1 0.00G 999.9 110000 724050 13743 19901001 63.1 24 50.7 24 1018.6 24 1016.2 24 13.3 24 7.9 24 13.0 14.0 81.0 53.1* 0.06G 999.9 100000 724050 13743 19901002 63.6 24 47.4 24 1018.3 24 1015.9 24 11.5 24 9.0 24 15.9 18.1 73.0 54.0 0.00G 999.9 000000 724050 13743 19901003 61.2 23 47.0 23 1026.3 23 1023.9 23 11.0 23 5.2 23 12.0 999.9 73.9 48.9 0.00G 999.9 000000 724050 13743 19901004 68.3 23 61.8 23 1018.3 23 1015.9 23 10.8 23 11.4 23 24.1 31.1 78.1 64.0* 0.00G 999.9 110000 724050 13743 19901005 63.7 24 51.5 24 1018.8 24 1016.4 24 15.1 24 8.0 24 15.0 999.9 79.0* 51.1 0.11G 999.9 000000 724050 13743 19901006 69.1 23 57.2 23 1019.7 23 1017.3 23 14.0 23 8.0 23 14.0 999.9 82.9 51.1 0.00G 999.9 000000 724050 13743 19901007 69.5 23 57.2 23 1020.9 23 1018.5 23 13.7 23 7.4 23 15.0 999.9 84.9* 55.9 0.00G 999.9 000000 724050 13743 19901008 71.6 23 65.7 23 1020.7 23 1018.3 23 10.8 23 6.2 23 11.1 999.9 84.9 57.0 0.00G 999.9 000000 724050 13743 19901009 77.1 24 67.9 24 1019.2 24 1016.8 24 12.7 24 10.1 24 15.0 999.9 86.0* 64.0 0.00G 999.9 000000 724050 13743 19901010 75.0 23 67.8 23 1018.0 23 1015.6 23 11.6 23 9.3 23 13.0 999.9 86.0 69.1 0.00G 999.9 000000 724050 13743 19901011 74.4 24 69.3 24 1017.0 24 1014.6 24 10.2 22 11.4 24 15.0 22.9 86.0 66.0* 0.12G 999.9 110000 724050 13743 19901012 71.1 24 66.7 24 1017.6 24 1015.2 24 10.7 23 5.2 24 9.9 999.9 81.0 64.9 0.04G 999.9 110000 724050 13743 19901013 74.6 24 71.3 24 1009.8 24 1007.4 24 6.4 24 5.6 24 9.9 999.9 81.0 64.9 0.05G 999.9 110000 724050 13743 19901014 73.9 24 62.6 24 1010.0 24 1007.6 24 12.7 24 8.0 24 13.0 999.9 81.0 69.1 0.02G 999.9 000000 724050 13743 19901015 70.0 23 56.8 23 1012.7 23 1010.3 23 10.7 23 7.3 23 13.0 19.0 80.1 61.0 0.00G 999.9 000000 724050 13743 19901016 62.0 24 40.0 24 1023.2 24 1020.8 24 15.7 24 5.3 24 14.0 999.9 79.0 50.0 0.00G 999.9 000000 724050 13743 19901017 62.1 23 51.0 23 1025.5 23 1023.1 23 12.2 23 7.0 23 13.0 999.9 75.9* 50.0 0.00G 999.9 000000 724050 13743 19901018 68.1 23 62.4 23 1013.7 23 1011.3 23 9.7 23 13.1 23 34.0 49.9 75.9 51.1 0.01G 999.9 110010 724050 13743 19901019 53.3 24 32.6 24 1015.0 24 1012.6 24 21.3 24 14.7 24 20.0 32.1 73.0 48.9 1.66G 999.9 000000 724050 13743 19901020 50.6 24 34.8 24 1026.0 24 1023.6 24 16.1 24 9.6 24 17.1 999.9 62.1* 39.9 0.00G 999.9 000000 724050 13743 19901021 55.0 24 47.2 24 1026.1 24 1023.7 24 11.8 24 6.8 24 12.0 999.9 66.9* 39.9 0.00G 999.9 100000 724050 13743 19901022 62.2 24 57.1 24 1020.5 24 1018.1 24 9.5 24 6.1 24 9.9 999.9 71.1 46.0 0.00G 999.9 110000 724050 13743 19901023 64.5 24 62.2 24 1010.5 24 1008.1 24 8.2 24 8.2 24 18.1 999.9 71.1 57.0 0.80G 999.9 110000 724050 13743 19901024 61.2 21 48.9 21 1010.1 21 1007.7 21 13.4 21 12.1 21 15.9 20.0 68.0 55.9 0.03G 999.9 000000 724050 13743 19901025 55.2 23 44.1 23 1010.8 23 1008.4 23 10.6 23 8.2 23 15.9 21.0 66.0 46.9 0.00G 999.9 000000 724050 13743 19901026 52.2 23 34.3 23 1010.2 23 1007.8 23 15.6 23 19.7 23 24.1 35.0 64.9 46.9 0.00G 999.9 000000 724050 13743 19901027 44.7 24 27.6 24 1022.3 24 1019.9 24 13.4 24 8.1 24 15.0 999.9 55.9* 35.1 0.00G 999.9 000000 724050 13743 19901028 51.8 24 32.9 24 1018.6 24 1016.2 24 15.8 24 11.1 24 15.9 26.0 62.1 35.1 0.00G 999.9 000000 724050 13743 19901029 47.2 23 26.9 23 1024.3 23 1021.9 23 18.8 23 10.3 23 17.1 22.9 62.1 41.0 0.00G 999.9 000000 724050 13743 19901030 47.7 24 35.1 24 1026.5 24 1024.1 24 13.9 24 5.1 24 9.9 999.9 61.0* 36.0 0.00G 999.9 000000 724050 13743 19901031 55.1 22 42.9 22 1022.8 22 1020.4 22 9.8 22 4.4 22 8.9 999.9 72.0 36.0 0.00G 999.9 000000 724050 13743 19901101 58.0 24 49.0 24 1024.0 24 1021.6 24 6.9 24 4.9 24 8.0 999.9 75.0* 45.0 0.00G 999.9 100000 724050 13743 19901102 61.4 22 50.1 22 1023.7 22 1021.2 22 7.4 22 5.7 22 9.9 999.9 75.0 48.0 0.00C 999.9 100000 724050 13743 19901103 63.4 24 48.6 24 1022.6 24 1020.1 24 12.0 24 6.5 24 9.9 999.9 79.0 50.0 0.00G 999.9 100000 724050 13743 19901104 61.0 23 49.6 23 1019.1 23 1016.7 23 7.8 23 4.2 23 18.1 24.1 79.0 50.0 0.00G 999.9 100000 724050 13743 19901105 61.0 24 51.9 24 1011.8 24 1009.4 24 8.7 24 5.8 24 15.0 19.0 75.0 50.0 0.00G 999.9 100000 724050 13743 19901106 59.1 24 43.2 24 1009.8 24 1007.4 24 17.0 24 13.1 24 18.1 27.0 73.0 51.1 0.06G 999.9 110000 724050 13743 19901107 47.1 23 32.9 23 1020.1 23 1017.7 23 13.6 23 7.1 23 13.0 999.9 66.0 37.9 0.00G 999.9 000000 724050 13743 19901108 47.0 24 29.3 24 1022.3 24 1019.8 24 14.7 24 12.2 24 19.0 28.9 55.0 37.9 0.00G 999.9 000000 724050 13743 19901109 43.6 24 30.5 24 1025.9 24 1023.5 24 13.1 24 6.3 24 12.0 999.9 53.1 36.0 0.00G 999.9 000000 724050 13743 19901110 51.2 24 47.4 24 1005.8 24 1003.4 24 7.0 24 10.9 24 20.0 28.0 55.9 36.0 1.82G 999.9 110000 724050 13743 19901111 48.6 24 28.1 24 1012.7 24 1010.3 24 17.9 24 11.3 24 15.9 25.1 55.9 43.0 0.51G 999.9 000000 724050 13743 19901112 48.3 24 23.2 24 1016.8 24 1014.4 24 19.6 24 13.0 24 15.9 24.1 57.0 39.9 0.00G 999.9 000000 724050 13743 19901113 42.8 23 22.7 23 1021.7 23 1019.3 23 19.4 23 9.7 23 18.1 27.0 53.1 35.1 0.00G 999.9 000000 724050 13743 19901114 43.4 24 24.6 24 1030.0 24 1027.6 24 15.9 24 9.6 24 15.0 21.0 52.0* 35.1 0.00G 999.9 000000 724050 13743 19901115 46.7 24 34.5 24 1029.9 24 1027.4 24 12.4 24 5.9 24 8.0 999.9 66.0* 35.1 0.00G 999.9 000000 724050 13743 19901116 52.6 24 42.4 24 1022.2 24 1019.8 24 10.2 24 6.6 24 9.9 999.9 70.0* 35.1 0.00G 999.9 000000 724050 13743 19901117 53.3 24 40.5 24 1013.8 24 1011.4 24 10.5 24 11.6 24 18.1 20.0 70.0 39.9 0.14G 999.9 010000 724050 13743 19901118 42.5 24 23.6 24 1020.5 24 1018.1 24 19.7 24 12.8 24 16.9 999.9 59.0 34.0 0.00D 999.9 000000 724050 13743 19901119 41.6 23 20.2 23 1018.9 23 1016.5 23 17.4 23 8.8 23 12.0 999.9 54.0* 28.9 0.00G 999.9 000000 724050 13743 19901120 47.0 22 29.6 22 1021.6 22 1019.2 22 12.6 22 5.0 22 11.1 999.9 55.9 28.9 0.00G 999.9 000000 724050 13743 19901121 45.3 24 31.9 24 1026.3 24 1023.8 24 10.4 24 3.6 24 8.0 999.9 55.9 35.1 0.00G 999.9 000000 724050 13743 19901122 47.0 24 38.6 24 1021.7 24 1019.2 24 9.4 24 3.8 24 8.0 999.9 61.0* 35.1 0.00G 999.9 100000 724050 13743 19901123 54.6 23 46.8 23 1008.7 23 1006.4 23 7.5 23 4.8 23 8.9 999.9 68.0* 37.9 0.11G 999.9 110000 724050 13743 19901124 53.6 24 32.2 24 1005.8 24 1003.4 24 17.7 24 10.0 24 18.1 35.0 68.0 42.1 0.01G 999.9 000000 724050 13743 19901125 57.2 23 38.7 23 1010.3 23 1007.9 23 16.8 23 9.9 23 15.9 999.9 73.0* 42.1 0.00G 999.9 000000 724050 13743 19901126 56.3 24 44.5 24 1018.9 24 1016.5 24 14.2 24 5.4 24 11.1 999.9 73.0 45.0 0.00G 999.9 000000 724050 13743 19901127 54.5 23 48.6 23 1023.7 23 1021.3 23 7.8 23 6.0 23 9.9 999.9 68.0 45.0 0.00G 999.9 100000 724050 13743 19901128 60.2 22 56.4 22 1019.1 22 1016.7 22 8.5 22 9.4 22 15.0 999.9 69.1* 48.9 0.03G 999.9 110000 724050 13743 19901129 55.7 24 43.7 24 1020.3 24 1017.9 24 13.1 23 13.9 24 19.0 28.0 71.1 44.1* 0.01G 999.9 010000 724050 13743 19901130 40.2 21 21.1 21 1030.3 21 1027.9 21 16.3 21 9.8 21 14.0 18.1 46.0* 34.0 0.00C 999.9 000000 724050 13743 19901201 41.2 24 27.8 24 1030.0 24 1027.6 24 14.4 24 7.6 24 11.1 999.9 55.0* 33.1 0.00G 999.9 000000 724050 13743 19901202 46.9 24 33.3 24 1027.7 24 1025.3 24 11.1 24 5.4 24 9.9 999.9 57.0 33.1 0.00G 999.9 000000 724050 13743 19901203 47.3 23 40.5 23 1027.1 23 1024.7 23 8.4 23 8.3 23 14.0 999.9 57.9 39.9 0.14G 999.9 110000 724050 13743 19901204 52.7 23 44.2 23 1010.7 23 1008.3 23 11.7 23 15.1 23 21.0 31.1 64.9 39.0* 0.92G 999.9 110000 724050 13743 19901205 36.1 24 17.2 24 1019.6 24 1017.2 24 17.9 24 13.5 24 18.1 27.0 41.0* 32.0 0.13G 999.9 000000 724050 13743 19901206 38.0 24 24.2 24 1018.6 24 1016.1 24 14.2 24 5.1 24 9.9 17.1 51.1* 28.9 0.00G 999.9 000000 724050 13743 19901207 42.4 22 32.1 22 1019.7 22 1017.3 22 11.4 22 5.1 22 8.0 999.9 52.0 28.9 0.00H 999.9 010000 724050 13743 19901208 44.0 24 32.6 24 1019.2 24 1016.8 24 8.9 24 7.2 24 13.0 999.9 51.1* 37.0 0.00G 999.9 010000 724050 13743 19901209 42.9 24 27.6 24 1020.9 24 1018.5 24 14.0 24 7.9 24 13.0 999.9 52.0* 33.1 0.00G 999.9 000000 724050 13743 19901210 46.5 23 32.5 23 1016.4 23 1014.0 23 14.6 23 7.9 23 11.1 17.1 60.1* 33.1 0.00C 999.9 000000 724050 13743 19901211 42.6 24 22.2 24 1023.2 24 1020.8 24 14.9 24 8.3 24 14.0 21.0 60.1 33.1 0.00G 999.9 000000 724050 13743 19901212 40.8 24 30.5 24 1020.5 24 1018.0 24 11.7 24 4.4 24 8.9 999.9 55.9* 30.9 0.00D 999.9 000000 724050 13743 19901213 52.2 24 40.8 24 1012.9 24 1010.5 24 11.2 24 8.6 24 15.0 22.0 66.9* 30.9 0.00G 999.9 000000 724050 13743 19901214 41.9 24 21.7 24 1027.6 24 1025.2 24 14.4 24 11.8 24 19.0 28.9 68.0 34.0 0.00G 999.9 000000 724050 13743 19901215 37.0 24 31.6 24 1025.6 24 1023.2 24 8.9 24 7.6 24 13.0 999.9 44.1 32.0 0.48G 999.9 110000 724050 13743 19901216 45.9 23 39.1 23 1015.7 23 1013.3 23 7.6 23 10.5 23 19.0 28.9 51.1 36.0 0.22G 999.9 110000 724050 13743 19901217 42.6 23 33.6 23 1022.7 23 1020.3 23 11.0 23 6.8 23 11.1 999.9 51.1 37.0 0.00G 999.9 010000 724050 13743 19901218 50.8 24 46.6 24 1007.6 24 1005.2 24 7.4 23 13.7 24 21.0 28.9 66.9* 37.0 0.19G 999.9 111000 724050 13743 19901219 52.0 24 43.0 24 1012.7 24 1010.4 24 11.8 24 11.3 24 25.1 33.0 69.1 44.1 0.11G 999.9 010000 724050 13743 19901220 40.4 24 32.7 24 1033.3 24 1030.8 24 13.0 24 7.8 24 9.9 999.9 54.0 36.0 0.00G 999.9 000000 724050 13743 19901221 45.9 23 44.6 23 1029.5 23 1027.1 23 3.7 23 5.6 23 8.9 999.9 48.9 36.0 0.45G 999.9 110000 724050 13743 19901222 52.6 24 51.9 24 1021.2 24 1018.8 24 3.4 23 9.2 24 14.0 999.9 63.0* 43.0 0.01G 999.9 110000 724050 13743 19901223 61.5 23 59.8 23 1014.0 23 1011.6 23 6.7 23 10.2 23 15.9 999.9 70.0* 46.9 0.01G 999.9 110000 724050 13743 19901224 50.3 24 40.8 24 1009.6 24 1007.2 24 13.2 23 15.5 24 26.0 36.9 71.1 33.1* 0.91G 999.9 110000 724050 13743 19901225 27.4 23 8.6 23 1028.7 23 1026.3 23 19.7 23 9.0 23 14.0 21.0 33.1* 19.9 0.66G 999.9 000000 724050 13743 19901226 31.9 24 17.7 24 1032.2 24 1029.7 24 14.9 24 6.6 24 12.0 999.9 39.9* 19.9 0.00G 999.9 000000 724050 13743 19901227 30.4 24 16.9 24 1040.7 24 1038.3 24 12.8 24 9.7 24 13.0 999.9 39.9 25.0 0.00G 999.9 101000 724050 13743 19901228 31.4 24 30.7 24 1033.2 24 1030.8 24 3.3 24 8.6 24 12.0 999.9 34.0 26.1 0.97G 3.1 111000 724050 13743 19901229 36.1 24 34.9 24 1029.3 24 1026.8 24 1.6 24 5.5 24 12.0 999.9 45.0* 30.9 0.50G 1.2 110000 724050 13743 19901230 57.9 22 54.0 22 1017.4 22 1015.1 22 6.6 22 13.0 22 20.0 28.0 68.0* 33.1 0.00G 999.9 110000 724050 13743 19901231 49.5 24 39.4 24 1020.2 24 1017.8 24 15.4 24 14.2 24 33.0 48.0 70.0 36.0* 0.32G 999.9 110000 fluids-1.0.22/tests/gsod/2000/0000755000175000017500000000000014302004506015061 5ustar nileshnileshfluids-1.0.22/tests/gsod/2000/724050-13743.op0000644000175000017500000014350514302004506016651 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20000101 43.4 24 36.1 24 1023.2 21 9999.9 0 6.0 24 3.1 24 10.1 999.9 57.0 33.1 0.00G 999.9 100000 724050 13743 20000102 52.9 24 44.7 24 1021.5 24 9999.9 0 8.4 24 8.9 24 21.0 23.9 68.0 33.1 0.00G 999.9 100000 724050 13743 20000103 58.2 24 51.8 24 1017.9 24 9999.9 0 8.7 24 9.6 24 14.0 999.9 68.0 44.1 0.00G 999.9 100000 724050 13743 20000104 61.1 24 54.0 24 1010.4 23 9999.9 0 9.1 24 14.0 24 22.0 28.9 71.1 52.0 0.00G 999.9 110000 724050 13743 20000105 44.1 24 26.5 24 1018.2 24 9999.9 0 10.0 24 13.2 24 22.9 33.0 53.1* 37.9* 1.22G 999.9 010000 724050 13743 20000106 37.8 24 24.3 24 1033.4 24 9999.9 0 10.0 24 5.5 24 13.0 999.9 48.0 30.0 0.00G 999.9 000000 724050 13743 20000107 41.5 24 27.3 24 1026.1 24 9999.9 0 9.9 24 7.7 24 24.1 28.9 54.0 30.0 0.00G 999.9 000000 724050 13743 20000108 39.2 24 21.0 24 1028.0 24 9999.9 0 10.0 24 5.8 24 12.0 999.9 54.0 30.0 0.00G 999.9 000000 724050 13743 20000109 42.6 24 32.9 24 1020.6 24 9999.9 0 10.0 24 6.2 24 10.1 999.9 46.9 30.0 0.00G 999.9 010000 724050 13743 20000110 45.9 24 44.0 24 1009.4 21 9999.9 0 4.5 24 5.1 24 11.1 999.9 52.0 39.0 0.01G 999.9 110000 724050 13743 20000111 48.4 24 32.6 24 1005.9 24 9999.9 0 10.0 24 10.8 24 22.0 37.9 57.0 39.9 0.67G 999.9 010000 724050 13743 20000112 43.7 24 21.5 24 1020.5 24 9999.9 0 10.0 24 8.5 24 19.0 28.9 57.0 36.0 0.01G 999.9 000000 724050 13743 20000113 45.8 24 28.3 24 1012.7 24 9999.9 0 10.0 24 9.1 24 27.0 48.0 62.6* 37.0* 0.00G 999.9 000000 724050 13743 20000114 29.0 24 7.2 24 1031.9 24 9999.9 0 10.0 24 16.4 24 22.0 32.1 37.0* 23.0* 0.00G 999.9 000000 724050 13743 20000115 28.2 24 8.5 24 1038.4 24 9999.9 0 10.0 24 7.5 24 15.0 19.0 36.0 21.9 0.00G 999.9 000000 724050 13743 20000116 42.7 24 20.7 24 1022.6 24 9999.9 0 10.0 24 10.9 24 22.9 33.0 62.1 21.9 0.00G 999.9 000000 724050 13743 20000117 27.2 24 -1.6 24 1029.2 24 9999.9 0 10.0 24 16.0 24 22.0 28.9 44.1* 19.4* 0.00G 999.9 000000 724050 13743 20000118 19.8 24 -6.6 24 1025.6 21 9999.9 0 8.8 24 8.5 24 14.0 999.9 23.0* 17.6* 0.00G 999.9 001000 724050 13743 20000119 26.6 24 13.9 24 1015.6 24 9999.9 0 9.8 24 6.7 24 15.9 25.1 39.9 18.0 0.00G 999.9 000000 724050 13743 20000120 33.3 24 24.8 24 1006.3 19 9999.9 0 6.1 24 6.8 24 18.1 25.1 39.9 18.0 0.06G 3.9 101000 724050 13743 20000121 22.9 24 4.8 24 1012.4 23 9999.9 0 10.0 24 16.2 24 24.1 32.1 35.1 18.0 0.14G 2.0 000000 724050 13743 20000122 19.0 24 0.0 24 1022.9 24 9999.9 0 10.0 24 8.3 24 15.9 21.0 25.0 14.0 0.00G 2.0 000000 724050 13743 20000123 26.8 24 15.0 24 1022.1 24 9999.9 0 9.5 24 5.2 24 8.0 999.9 30.2* 24.1* 0.00G 1.2 001000 724050 13743 20000124 32.4 24 25.1 24 1019.0 24 9999.9 0 7.9 24 7.1 24 14.0 999.9 39.9 24.1 0.00G 1.2 100000 724050 13743 20000125 29.9 24 22.5 24 1004.8 18 9999.9 0 4.0 24 18.0 24 28.0 36.9 35.1* 24.8* 0.11G 5.9 101000 724050 13743 20000126 26.8 24 12.7 24 1007.1 24 9999.9 0 8.8 24 14.7 24 21.0 32.1 33.8* 21.2* 0.05G 9.1 001000 724050 13743 20000127 23.2 24 3.5 24 1020.4 24 9999.9 0 9.9 24 15.1 24 22.0 29.9 34.0 19.0 0.00G 7.9 000000 724050 13743 20000128 23.3 24 3.0 24 1031.0 24 9999.9 0 9.9 24 10.1 24 18.1 25.1 33.1 17.1 0.00G 8.7 000000 724050 13743 20000129 27.4 24 9.5 24 1035.4 24 9999.9 0 9.9 24 6.9 24 11.1 18.1 37.0* 19.4* 0.00G 5.9 000000 724050 13743 20000130 27.9 24 18.6 24 1029.7 23 9999.9 0 8.0 24 4.4 24 12.0 999.9 37.9 19.0 0.00G 5.9 111000 724050 13743 20000131 31.5 24 21.3 24 1014.2 23 9999.9 0 8.9 24 7.9 24 15.9 21.0 39.0 24.1 0.70G 5.9 111000 724050 13743 20000201 31.3 24 18.7 24 1015.2 24 9999.9 0 9.8 24 7.0 24 15.9 21.0 39.0 21.9 0.00G 5.1 000000 724050 13743 20000202 31.3 24 12.5 24 1020.9 24 9999.9 0 10.0 24 11.7 24 20.0 27.0 39.0 21.9 0.00G 3.9 000000 724050 13743 20000203 30.9 24 16.0 24 1017.3 24 9999.9 0 9.9 24 4.8 24 10.1 999.9 37.9 25.0 0.00G 3.9 000000 724050 13743 20000204 34.1 24 26.7 24 1010.6 21 9999.9 0 7.7 24 4.5 24 8.9 999.9 39.0 25.0 0.00G 3.9 101000 724050 13743 20000205 36.2 24 19.2 24 1017.8 24 9999.9 0 9.9 24 9.4 24 18.1 23.9 42.1 30.0 0.03G 3.9 000000 724050 13743 20000206 35.5 24 15.7 24 1025.8 24 9999.9 0 10.0 24 6.8 24 11.1 18.1 42.1 30.9 0.00G 3.1 000000 724050 13743 20000207 38.4 24 22.3 24 1022.0 24 9999.9 0 10.0 24 7.7 24 15.0 19.0 50.0 30.0 0.00G 1.2 000000 724050 13743 20000208 35.4 24 18.2 24 1030.8 24 9999.9 0 9.9 24 8.7 24 15.9 999.9 46.0* 28.4* 0.00G 1.2 000000 724050 13743 20000209 34.2 24 22.0 24 1026.5 24 9999.9 0 10.0 24 6.0 24 10.1 999.9 50.0 24.1 0.00G 1.2 000000 724050 13743 20000210 42.5 24 31.1 24 1016.6 24 9999.9 0 8.0 24 4.4 24 8.9 999.9 57.9 24.1 0.00G 999.9 100000 724050 13743 20000211 48.0 24 35.1 24 1009.4 24 9999.9 0 9.1 24 7.0 24 17.1 23.9 63.0 30.9 0.00G 999.9 010000 724050 13743 20000212 34.9 24 20.6 24 1023.0 24 9999.9 0 9.9 24 12.1 24 22.9 30.9 46.9* 28.4* 0.01G 999.9 001000 724050 13743 20000213 30.3 24 21.0 24 1024.4 24 9999.9 0 9.6 24 4.7 24 11.1 999.9 39.0 26.1 0.00G 999.9 110000 724050 13743 20000214 44.5 24 39.6 24 1008.0 19 9999.9 0 5.8 24 9.2 24 15.0 22.0 63.0 26.1 0.11G 999.9 110110 724050 13743 20000215 41.3 24 25.9 24 1018.6 23 9999.9 0 10.0 24 11.9 24 19.0 28.0 53.1* 35.6* 0.35G 999.9 000000 724050 13743 20000216 45.8 24 32.0 24 1018.7 24 9999.9 0 9.6 24 8.1 24 20.0 26.0 66.0 33.1 0.01G 999.9 010000 724050 13743 20000217 39.8 24 18.3 24 1030.3 24 9999.9 0 10.0 24 11.8 24 20.0 32.1 66.0 32.0 0.00I 999.9 000000 724050 13743 20000218 34.0 24 25.1 24 1028.3 19 9999.9 0 7.1 24 5.5 24 11.1 999.9 37.4* 30.2* 0.10G 999.9 111000 724050 13743 20000219 45.8 24 39.0 24 1013.6 21 9999.9 0 6.6 24 9.6 24 17.1 29.9 55.9 30.9 0.67G 999.9 110000 724050 13743 20000220 40.8 24 24.2 24 1023.9 24 9999.9 0 10.0 24 10.1 24 15.0 23.9 55.9 35.1 0.19G 999.9 000000 724050 13743 20000221 41.4 24 23.0 24 1030.4 24 9999.9 0 10.0 24 7.9 24 13.0 16.9 48.9 35.1 0.00G 999.9 000000 724050 13743 20000222 41.8 24 27.6 24 1033.5 24 9999.9 0 9.5 24 6.0 24 11.1 999.9 55.0 33.1 0.00G 999.9 000000 724050 13743 20000223 45.3 24 32.3 24 1033.0 24 9999.9 0 8.9 24 6.1 24 14.0 19.0 60.1 33.1 0.00G 999.9 010000 724050 13743 20000224 53.1 24 39.2 24 1026.7 24 9999.9 0 10.0 24 5.9 24 12.0 999.9 71.1 37.0 0.00G 999.9 000000 724050 13743 20000225 59.0 24 47.6 24 1022.3 24 9999.9 0 9.9 24 7.7 24 11.1 999.9 75.9 41.0 0.00G 999.9 000000 724050 13743 20000226 48.7 24 44.6 24 1027.8 20 9999.9 0 5.1 24 8.6 24 15.0 999.9 75.9 44.1 0.00G 999.9 110000 724050 13743 20000227 50.0 24 47.5 24 1023.8 19 9999.9 0 3.3 24 6.7 24 12.0 999.9 64.0 44.1 0.00G 999.9 110000 724050 13743 20000228 53.8 24 37.8 24 1019.0 24 9999.9 0 9.4 24 11.5 24 21.0 27.0 64.0 45.0 0.78G 999.9 010010 724050 13743 20000229 49.8 24 19.7 24 1024.3 24 9999.9 0 9.9 24 8.2 24 14.0 16.9 60.1* 37.4* 0.00G 999.9 000000 724050 13743 20000301 51.0 24 31.7 24 1017.5 24 9999.9 0 10.0 24 3.9 24 10.1 999.9 64.4* 41.0* 0.14G 999.9 010000 724050 13743 20000302 52.3 24 31.4 24 1011.1 24 9999.9 0 10.0 24 12.8 24 21.0 33.0 64.0 39.9 0.00G 999.9 000000 724050 13743 20000303 43.3 24 20.1 24 1014.9 24 9999.9 0 10.0 24 11.4 24 17.1 27.0 60.1 35.1 0.00G 999.9 000000 724050 13743 20000304 46.9 24 18.5 24 1012.1 24 9999.9 0 10.0 24 7.0 24 11.1 15.9 57.9 35.1 0.00G 999.9 000000 724050 13743 20000305 52.6 24 27.4 24 1010.5 24 9999.9 0 10.0 24 8.2 24 18.1 27.0 66.9 35.1 0.00G 999.9 000000 724050 13743 20000306 52.9 24 24.0 24 1019.2 24 9999.9 0 10.0 24 8.4 24 15.9 20.0 66.9 39.9 0.00G 999.9 000000 724050 13743 20000307 52.1 24 33.2 24 1023.8 24 9999.9 0 10.0 24 6.6 24 13.0 999.9 70.0 37.9 0.00G 999.9 000000 724050 13743 20000308 65.8 24 43.1 24 1015.4 24 9999.9 0 10.0 24 7.9 24 14.0 19.0 84.9 37.9 0.00G 999.9 000000 724050 13743 20000309 65.3 24 47.0 24 1009.1 24 9999.9 0 10.0 24 7.0 24 15.9 999.9 84.9 50.0 0.00G 999.9 010010 724050 13743 20000310 66.2 24 41.8 24 1013.1 24 9999.9 0 10.0 24 8.3 24 14.0 999.9 79.0 52.0 0.00G 999.9 000000 724050 13743 20000311 54.7 24 47.8 24 1015.5 21 9999.9 0 7.2 24 7.3 24 12.0 999.9 72.0 50.0 0.00G 999.9 110010 724050 13743 20000312 49.1 24 39.6 24 1008.5 22 9999.9 0 8.1 24 12.2 24 25.1 35.0 57.9 41.0 0.24G 999.9 110010 724050 13743 20000313 40.8 24 19.8 24 1025.4 24 9999.9 0 10.0 24 7.9 24 15.9 18.1 55.0 33.1 0.18G 999.9 000000 724050 13743 20000314 46.5 24 28.5 24 1026.3 24 9999.9 0 10.0 24 8.1 24 12.0 999.9 60.1 33.1 0.00G 999.9 000000 724050 13743 20000315 54.8 24 34.5 24 1023.8 24 9999.9 0 10.0 24 11.3 24 18.1 26.0 70.0 36.0 0.00G 999.9 000000 724050 13743 20000316 59.1 24 40.7 24 1019.4 24 9999.9 0 9.8 24 9.2 24 18.1 999.9 70.0 45.0 0.00G 999.9 010000 724050 13743 20000317 52.4 24 43.9 24 1014.1 20 9999.9 0 8.2 24 12.4 24 22.0 27.0 69.1 41.0 0.39G 999.9 110000 724050 13743 20000318 34.8 24 11.8 24 1034.4 24 9999.9 0 10.0 24 12.3 24 21.0 27.0 42.1* 27.0* 0.09G 999.9 000000 724050 13743 20000319 39.1 24 27.8 24 1033.1 24 9999.9 0 10.0 24 8.2 24 12.0 999.9 46.9* 33.1* 0.00G 999.9 000000 724050 13743 20000320 43.9 24 35.8 24 1028.2 22 9999.9 0 9.9 24 10.5 24 15.0 999.9 48.9 32.0 0.00G 999.9 000000 724050 13743 20000321 42.8 24 38.9 24 1025.8 17 9999.9 0 5.5 24 12.6 24 19.0 23.9 48.9 39.9 0.15G 999.9 110000 724050 13743 20000322 43.8 24 40.4 24 1026.7 22 9999.9 0 6.7 24 13.5 24 19.0 23.9 48.2* 41.0* 1.84G 999.9 110000 724050 13743 20000323 50.7 24 42.7 24 1027.7 23 9999.9 0 8.1 24 6.1 24 11.1 999.9 63.0 42.1 0.16G 999.9 000000 724050 13743 20000324 55.7 24 43.8 24 1023.2 24 9999.9 0 9.4 24 3.9 24 8.9 999.9 69.1 42.1 0.00G 999.9 000000 724050 13743 20000325 57.0 24 46.9 24 1016.2 24 9999.9 0 9.1 24 6.8 24 20.0 32.1 75.0* 48.0* 0.00G 999.9 010010 724050 13743 20000326 60.7 24 38.0 24 1009.0 24 9999.9 0 8.8 24 10.9 24 20.0 28.0 75.0 46.9 0.42G 999.9 110010 724050 13743 20000327 55.7 24 39.6 24 1004.5 22 9999.9 0 9.4 24 5.9 24 14.0 999.9 69.8* 44.1* 0.00G 999.9 110010 724050 13743 20000328 53.0 24 42.5 24 993.7 22 9999.9 0 8.3 24 9.9 24 22.0 28.9 69.1 43.0 0.89G 999.9 110000 724050 13743 20000329 50.6 24 32.4 24 1005.1 24 9999.9 0 10.0 24 10.5 24 22.0 32.1 62.1 43.0 0.05G 999.9 000000 724050 13743 20000330 52.1 24 34.9 24 1013.5 24 9999.9 0 10.0 24 4.0 24 8.9 999.9 64.0 41.0 0.00G 999.9 000000 724050 13743 20000331 51.7 24 28.3 24 1018.5 24 9999.9 0 10.0 24 8.3 24 17.1 21.0 64.0 39.9 0.00G 999.9 000000 724050 13743 20000401 53.8 24 35.5 24 1023.0 24 9999.9 0 10.0 24 5.3 24 11.1 999.9 68.0 39.9 0.00G 999.9 000000 724050 13743 20000402 59.3 24 43.7 24 1019.0 24 9999.9 0 9.6 24 12.4 24 18.1 30.9 68.0* 55.0* 0.00G 999.9 010000 724050 13743 20000403 63.3 24 58.0 24 1012.7 22 9999.9 0 9.3 24 9.5 24 15.0 22.9 75.0 55.0 0.04G 999.9 010000 724050 13743 20000404 62.0 24 55.4 24 1002.1 23 9999.9 0 8.6 24 10.4 24 22.9 32.1 68.0* 53.6* 0.35G 999.9 110010 724050 13743 20000405 47.4 24 24.3 24 1010.8 22 9999.9 0 10.0 24 14.0 24 22.0 30.9 69.1 39.0 0.10G 999.9 000000 724050 13743 20000406 59.0 24 32.9 24 1007.7 24 9999.9 0 9.9 24 10.5 24 19.0 28.0 82.0 39.0 0.00G 999.9 000000 724050 13743 20000407 66.0 24 36.8 24 1012.3 24 9999.9 0 9.9 24 9.1 24 17.1 18.1 82.0 46.9 0.00G 999.9 000000 724050 13743 20000408 65.2 24 47.1 24 1004.2 23 9999.9 0 9.2 24 15.2 24 23.9 43.9 78.1 46.0 0.00G 999.9 110000 724050 13743 20000409 42.9 24 27.7 24 1009.3 23 9999.9 0 8.2 24 17.3 24 24.1 41.0 53.6* 33.8* 0.88G 999.9 111000 724050 13743 20000410 50.8 24 29.5 24 1019.9 24 9999.9 0 9.9 24 7.9 24 22.0 999.9 66.0 34.0 0.05G 999.9 000000 724050 13743 20000411 56.2 24 38.0 24 1023.3 23 9999.9 0 9.9 24 8.4 24 15.0 16.9 66.0 39.9 0.00G 999.9 010000 724050 13743 20000412 54.2 24 43.4 24 1022.8 24 9999.9 0 9.9 24 11.5 24 21.0 27.0 57.0* 46.4* 0.04G 999.9 010000 724050 13743 20000413 46.1 24 27.4 24 1032.9 24 9999.9 0 9.9 24 8.0 24 14.0 16.9 57.0 39.0 0.01G 999.9 000000 724050 13743 20000414 49.5 24 36.7 24 1029.3 24 9999.9 0 9.9 24 5.5 24 8.9 999.9 60.1 39.0 0.00G 999.9 000000 724050 13743 20000415 56.1 24 53.1 24 1022.1 21 9999.9 0 7.1 24 4.3 24 8.0 999.9 62.1 41.0 0.02G 999.9 110000 724050 13743 20000416 64.5 24 60.8 24 1014.8 23 9999.9 0 5.7 24 5.0 24 10.1 999.9 77.0 51.1 0.16G 999.9 110000 724050 13743 20000417 59.4 24 56.8 24 1014.9 20 9999.9 0 7.3 24 8.2 24 15.9 20.0 77.0 50.0 0.80G 999.9 110010 724050 13743 20000418 47.2 24 45.6 24 1014.3 20 9999.9 0 5.3 24 13.7 24 16.9 22.0 50.0* 46.0* 0.67G 999.9 110000 724050 13743 20000419 52.8 24 45.8 24 1016.3 24 9999.9 0 9.1 24 12.0 24 19.0 22.0 66.9 46.0 0.21G 999.9 110000 724050 13743 20000420 58.5 24 51.8 24 1017.3 24 9999.9 0 9.0 24 7.5 24 15.9 999.9 69.1 46.9 0.00G 999.9 100000 724050 13743 20000421 59.7 24 55.3 24 1005.5 22 9999.9 0 9.3 24 7.4 24 15.9 20.0 69.1 48.9 0.00G 999.9 110010 724050 13743 20000422 53.2 24 47.9 24 1003.2 22 9999.9 0 10.0 24 10.9 24 15.9 16.9 68.0 46.9 0.86G 999.9 010000 724050 13743 20000423 52.7 24 43.4 24 1007.4 24 9999.9 0 9.9 24 11.5 24 19.0 23.9 57.0 46.9 0.01G 999.9 010000 724050 13743 20000424 56.4 24 41.4 24 1011.7 24 9999.9 0 9.9 24 6.6 24 11.1 999.9 68.0 46.0 0.00G 999.9 000000 724050 13743 20000425 52.7 24 48.4 24 1011.2 23 9999.9 0 8.4 24 8.5 24 15.9 999.9 68.0 46.0 0.10G 999.9 110000 724050 13743 20000426 49.2 24 41.7 24 1015.5 24 9999.9 0 10.0 24 4.2 24 8.9 999.9 57.2* 41.0* 0.90G 999.9 000000 724050 13743 20000427 49.7 24 45.2 24 1016.2 24 9999.9 0 9.4 24 7.3 24 11.1 999.9 57.0 41.0 0.00G 999.9 110000 724050 13743 20000428 53.4 24 48.6 24 1013.9 24 9999.9 0 9.3 24 5.2 24 8.0 999.9 61.0 46.9 0.00G 999.9 100000 724050 13743 20000429 58.1 24 46.5 24 1013.9 24 9999.9 0 8.1 24 5.1 24 12.0 999.9 70.0 48.9 0.00G 999.9 100000 724050 13743 20000430 62.3 24 39.5 24 1017.3 24 9999.9 0 9.9 24 9.4 24 17.1 22.0 71.6* 53.1* 0.00G 999.9 000000 724050 13743 20000501 61.3 24 44.9 24 1018.1 24 9999.9 0 9.8 24 7.2 24 17.1 22.9 78.1 46.0 0.00G 999.9 000000 724050 13743 20000502 67.4 24 51.6 24 1012.5 24 9999.9 0 9.8 24 9.2 24 15.0 25.1 78.1 46.0 0.03G 999.9 010000 724050 13743 20000503 62.6 24 48.6 24 1024.0 24 9999.9 0 9.9 24 4.9 24 11.1 999.9 73.9 48.9 0.00I 999.9 000000 724050 13743 20000504 64.1 24 53.5 24 1025.0 24 9999.9 0 9.9 24 8.6 24 12.0 999.9 75.9 48.9 0.00G 999.9 000000 724050 13743 20000505 72.2 24 60.2 24 1021.4 24 9999.9 0 9.9 24 7.8 24 16.9 20.0 87.1 53.1 0.00G 999.9 010000 724050 13743 20000506 76.4 24 65.3 24 1019.1 24 9999.9 0 7.0 24 5.8 24 11.1 15.0 88.0 62.1 0.00G 999.9 100000 724050 13743 20000507 78.6 24 65.3 24 1016.2 23 9999.9 0 7.5 24 5.6 24 11.1 999.9 90.0 64.9 0.00G 999.9 100000 724050 13743 20000508 79.1 24 66.3 24 1012.4 24 9999.9 0 9.1 24 7.2 24 12.0 999.9 90.0 66.9 0.00G 999.9 000000 724050 13743 20000509 78.7 24 66.2 24 1008.3 24 9999.9 0 8.7 24 9.7 24 15.9 19.0 90.0 69.1 0.00G 999.9 000000 724050 13743 20000510 76.7 24 66.0 24 1005.0 23 9999.9 0 8.6 24 10.0 24 18.1 35.9 88.0 66.0 0.00G 999.9 010010 724050 13743 20000511 66.2 24 46.5 24 1012.7 24 9999.9 0 9.9 24 9.6 24 22.0 28.0 87.1 55.0 0.39G 999.9 000000 724050 13743 20000512 74.4 24 58.1 24 1009.2 24 9999.9 0 9.9 24 8.9 24 12.0 16.9 88.0 55.0 0.00G 999.9 000000 724050 13743 20000513 80.1 24 70.6 24 1006.1 23 9999.9 0 7.0 24 6.0 24 28.9 35.0 91.0 64.9 0.00G 999.9 110010 724050 13743 20000514 68.2 24 49.9 24 1014.4 24 9999.9 0 9.8 24 8.4 24 18.1 26.0 75.9* 62.1* 0.61G 999.9 010010 724050 13743 20000515 63.3 24 37.7 24 1020.0 24 9999.9 0 9.9 24 6.6 24 13.0 999.9 77.0 54.0 0.00G 999.9 000000 724050 13743 20000516 62.8 24 40.9 24 1021.4 24 9999.9 0 9.9 24 5.7 24 14.0 999.9 72.0 50.0 0.00G 999.9 000000 724050 13743 20000517 67.2 24 52.1 24 1019.4 24 9999.9 0 9.9 24 7.3 24 15.0 999.9 77.0 50.0 0.00G 999.9 010000 724050 13743 20000518 73.2 24 62.3 24 1017.4 24 9999.9 0 9.2 24 12.2 24 19.0 28.0 84.9 60.1 0.00G 999.9 000000 724050 13743 20000519 73.4 24 63.9 24 1014.2 24 9999.9 0 8.6 24 7.1 24 12.0 999.9 84.9 66.9 0.00G 999.9 010000 724050 13743 20000520 59.5 24 57.3 24 1017.0 22 9999.9 0 6.6 24 9.1 24 14.0 999.9 69.8* 55.4* 0.36G 999.9 110000 724050 13743 20000521 60.1 24 56.4 24 1017.1 21 9999.9 0 8.4 24 5.8 24 11.1 999.9 68.0 55.9 0.11G 999.9 110000 724050 13743 20000522 62.2 24 58.5 24 1012.2 24 9999.9 0 7.5 24 7.4 24 14.0 999.9 68.0 55.9 0.40G 999.9 110000 724050 13743 20000523 63.8 24 58.3 24 1009.1 23 9999.9 0 9.0 24 8.1 24 14.0 999.9 72.0 59.0 0.41G 999.9 010000 724050 13743 20000524 72.8 24 62.3 24 1002.0 24 9999.9 0 7.4 24 8.3 24 14.0 15.9 84.9 60.1 0.03G 999.9 110000 724050 13743 20000525 71.1 24 56.8 24 1003.6 23 9999.9 0 9.6 24 7.0 24 27.0 48.0 84.9 62.1 0.36G 999.9 010010 724050 13743 20000526 70.1 24 45.4 24 1012.2 24 9999.9 0 10.0 24 8.7 24 15.9 19.0 80.1 57.0 0.00G 999.9 000000 724050 13743 20000527 64.6 24 53.2 24 1015.3 21 9999.9 0 9.3 24 5.9 24 11.1 999.9 80.1 57.0 0.00G 999.9 110000 724050 13743 20000528 59.9 24 55.1 24 1011.0 20 9999.9 0 7.3 24 6.9 24 15.9 999.9 66.9 57.0 0.11G 999.9 110000 724050 13743 20000529 58.6 24 51.7 24 1013.8 23 9999.9 0 9.5 24 11.1 24 17.1 999.9 64.9* 55.4* 0.27G 999.9 110000 724050 13743 20000530 58.1 24 48.1 24 1022.0 23 9999.9 0 10.0 24 9.1 24 11.1 16.9 64.9 52.0 0.00G 999.9 000000 724050 13743 20000531 60.7 24 49.5 24 1023.4 24 9999.9 0 9.9 24 4.2 24 8.0 999.9 73.0 50.0 0.00G 999.9 000000 724050 13743 20000601 71.8 24 61.8 24 1018.6 24 9999.9 0 8.8 24 6.2 24 10.1 999.9 88.0 50.0 0.00G 999.9 000000 724050 13743 20000602 79.2 24 69.9 24 1015.9 22 9999.9 0 5.7 24 7.2 24 22.9 37.9 91.4* 69.1* 0.00G 999.9 110010 724050 13743 20000603 71.5 24 59.2 24 1016.6 24 9999.9 0 8.5 24 9.3 24 15.0 999.9 75.0* 66.2* 0.79G 999.9 110010 724050 13743 20000604 67.1 24 56.4 24 1019.5 24 9999.9 0 9.9 24 5.1 24 8.9 999.9 75.0 60.1 0.00G 999.9 000000 724050 13743 20000605 64.8 24 56.9 24 1017.3 24 9999.9 0 9.9 24 8.2 24 13.0 999.9 73.9 60.1 0.00G 999.9 000000 724050 13743 20000606 61.8 24 57.9 24 1011.6 23 9999.9 0 8.3 24 9.3 24 16.9 22.0 69.1 60.1 0.43G 999.9 110000 724050 13743 20000607 65.2 24 50.9 24 1018.7 24 9999.9 0 10.0 24 11.4 24 15.0 20.0 77.0 55.9 0.02G 999.9 000000 724050 13743 20000608 70.6 24 55.0 24 1020.8 24 9999.9 0 9.9 24 8.5 24 18.1 23.9 81.0 55.9 0.00G 999.9 000000 724050 13743 20000609 75.0 24 60.6 24 1018.9 24 9999.9 0 9.9 24 8.2 24 14.0 999.9 89.1 59.0 0.00G 999.9 000000 724050 13743 20000610 78.5 24 67.9 24 1019.1 24 9999.9 0 8.4 24 8.3 24 14.0 15.9 90.0 62.1 0.00G 999.9 000000 724050 13743 20000611 81.6 24 70.2 24 1018.5 24 9999.9 0 7.0 24 8.4 24 13.0 20.0 93.9 69.1 0.00G 999.9 100000 724050 13743 20000612 82.6 24 72.2 24 1018.1 24 9999.9 0 5.4 24 6.0 24 12.0 18.1 93.9 72.0 0.00G 999.9 110010 724050 13743 20000613 70.0 24 67.7 24 1019.4 22 9999.9 0 4.5 24 6.5 24 12.0 999.9 77.0* 64.4* 0.34G 999.9 110000 724050 13743 20000614 67.5 24 64.8 24 1019.8 22 9999.9 0 3.9 24 6.3 24 9.9 999.9 77.0 64.0 0.02G 999.9 110000 724050 13743 20000615 73.4 24 69.3 24 1015.6 21 9999.9 0 5.4 24 7.4 24 14.0 19.0 82.9 64.0 0.01G 999.9 110000 724050 13743 20000616 75.5 24 70.3 24 1014.6 22 9999.9 0 9.3 24 10.9 24 18.1 37.9 84.9 68.0 0.64G 999.9 110010 724050 13743 20000617 79.7 24 71.9 24 1016.2 24 9999.9 0 9.3 24 9.0 24 14.0 18.1 89.1 70.0 0.00G 999.9 110010 724050 13743 20000618 77.1 24 72.2 24 1017.9 22 9999.9 0 7.7 24 6.3 24 11.1 15.0 87.1* 71.6* 0.66G 999.9 110010 724050 13743 20000619 71.7 24 66.4 24 1019.6 24 9999.9 0 9.2 24 6.2 24 11.1 999.9 88.0 68.0 0.13G 999.9 010010 724050 13743 20000620 70.1 24 58.5 24 1021.9 24 9999.9 0 9.2 24 5.6 24 11.1 999.9 82.0 57.9 0.01G 999.9 000000 724050 13743 20000621 74.8 24 65.8 24 1016.7 24 9999.9 0 7.8 24 11.2 24 18.1 22.9 84.9 57.9 0.00G 999.9 000000 724050 13743 20000622 77.5 24 68.5 24 1010.7 23 9999.9 0 9.0 24 9.3 24 15.0 21.0 87.1 66.9 1.15G 999.9 010010 724050 13743 20000623 78.3 24 62.3 24 1013.7 24 9999.9 0 9.9 24 6.5 24 13.0 18.1 87.1 69.1 0.08G 999.9 000000 724050 13743 20000624 78.7 24 67.4 24 1018.4 24 9999.9 0 8.9 24 5.9 24 12.0 999.9 87.1 69.1 0.00G 999.9 000000 724050 13743 20000625 81.1 24 72.4 24 1016.3 24 9999.9 0 8.6 24 11.1 24 15.0 999.9 89.1 70.0 0.00G 999.9 000000 724050 13743 20000626 80.5 24 71.9 24 1014.7 22 9999.9 0 7.9 24 8.3 24 26.0 42.0 89.6* 73.0* 0.53G 999.9 110010 724050 13743 20000627 79.0 24 69.8 24 1014.8 23 9999.9 0 9.3 24 8.7 24 13.0 18.1 90.0 72.0 0.05G 999.9 010010 724050 13743 20000628 72.5 24 69.4 24 1016.0 20 9999.9 0 7.8 24 3.3 24 11.1 999.9 87.1 71.1 0.16G 999.9 110000 724050 13743 20000629 73.6 24 66.4 24 1010.8 23 9999.9 0 7.5 24 4.5 24 9.9 999.9 81.0 68.0 0.04G 999.9 110000 724050 13743 20000630 72.9 24 57.5 24 1013.5 24 9999.9 0 9.6 24 6.6 24 14.0 20.0 81.0 64.0 0.02G 999.9 010010 724050 13743 20000701 75.4 24 55.4 24 1017.2 24 9999.9 0 9.9 24 4.1 24 8.9 999.9 82.9 64.0 0.00G 999.9 000000 724050 13743 20000702 75.7 24 61.4 24 1018.1 24 9999.9 0 9.1 24 6.0 24 13.0 999.9 84.9 66.0 0.00G 999.9 000000 724050 13743 20000703 78.3 24 66.3 24 1016.9 24 9999.9 0 8.0 24 8.0 24 12.0 999.9 88.0 66.0 0.00G 999.9 000000 724050 13743 20000704 76.9 24 71.7 24 1013.7 20 9999.9 0 6.5 24 5.5 24 16.9 21.0 88.0 69.1 0.65G 999.9 110010 724050 13743 20000705 79.8 24 66.6 24 1011.8 24 9999.9 0 7.8 24 6.6 24 10.1 999.9 86.0 72.0 0.03G 999.9 000000 724050 13743 20000706 76.1 24 59.5 24 1012.0 24 9999.9 0 9.9 24 6.8 24 11.1 999.9 84.0 68.0 0.00G 999.9 000000 724050 13743 20000707 74.5 24 55.7 24 1015.2 24 9999.9 0 9.9 24 8.9 24 14.0 18.1 84.0 68.0 0.00G 999.9 000000 724050 13743 20000708 70.7 24 50.2 24 1021.4 24 9999.9 0 9.9 24 7.3 24 12.0 999.9 80.1 60.1 0.00G 999.9 000000 724050 13743 20000709 74.8 24 63.6 24 1017.5 24 9999.9 0 10.0 24 8.1 24 12.0 999.9 86.0 60.1 0.00G 999.9 000000 724050 13743 20000710 82.1 24 69.9 24 1010.1 24 9999.9 0 7.0 24 8.4 24 28.0 41.0 91.0 66.9 0.00G 999.9 010010 724050 13743 20000711 74.4 24 65.9 24 1011.7 24 9999.9 0 9.2 24 5.5 24 15.0 999.9 91.0 68.0 0.09G 999.9 110000 724050 13743 20000712 75.1 24 57.5 24 1015.4 24 9999.9 0 9.9 24 5.9 24 13.0 999.9 84.0 68.0 0.00G 999.9 000000 724050 13743 20000713 73.1 24 58.4 24 1016.8 24 9999.9 0 9.9 24 5.4 24 11.1 999.9 84.0 66.9 0.00G 999.9 010000 724050 13743 20000714 74.2 24 64.7 24 1012.2 20 9999.9 0 8.8 24 8.2 24 28.0 46.0 84.9 66.9 0.00G 999.9 010010 724050 13743 20000715 71.8 24 64.1 24 1005.9 22 9999.9 0 8.2 24 5.2 24 22.0 28.9 84.9 64.9 1.39G 999.9 110010 724050 13743 20000716 72.3 24 64.7 24 1007.9 24 9999.9 0 8.4 24 3.5 24 25.1 32.1 80.1 64.9 0.07G 999.9 110010 724050 13743 20000717 74.0 24 64.6 24 1013.1 24 9999.9 0 8.7 24 4.5 24 10.1 999.9 84.0 66.0 0.49G 999.9 110000 724050 13743 20000718 79.0 24 66.3 24 1013.9 24 9999.9 0 8.3 24 7.3 24 14.0 15.9 89.1 66.0 0.00G 999.9 000000 724050 13743 20000719 74.8 24 63.4 24 1014.2 23 9999.9 0 9.1 24 8.3 24 14.0 999.9 86.0* 64.4* 0.00G 999.9 110000 724050 13743 20000720 68.6 24 60.9 24 1012.2 23 9999.9 0 7.9 24 9.0 24 17.5 999.9 78.1* 62.6* 0.59G 999.9 110000 724050 13743 20000721 74.5 24 60.6 24 1012.6 24 9999.9 0 9.9 24 6.3 24 15.5 999.9 82.0 63.0 0.07G 999.9 000000 724050 13743 20000722 74.9 24 62.7 24 1014.5 24 9999.9 0 9.6 24 5.6 24 10.1 999.9 82.0 64.9 0.00G 999.9 000000 724050 13743 20000723 72.8 24 61.2 24 1019.6 24 9999.9 0 9.8 24 4.9 24 8.0 999.9 82.0 66.0 0.00G 999.9 000000 724050 13743 20000724 70.0 24 63.2 24 1020.0 23 9999.9 0 8.7 24 8.5 24 12.0 999.9 80.1 66.0 0.01G 999.9 110000 724050 13743 20000725 69.1 24 62.4 24 1021.4 24 9999.9 0 8.7 24 7.5 24 10.1 999.9 77.0 64.0 0.33G 999.9 100000 724050 13743 20000726 69.0 24 65.1 24 1021.3 20 9999.9 0 7.7 24 9.9 24 14.0 999.9 77.0 64.0 0.52G 999.9 110000 724050 13743 20000727 71.2 24 67.0 24 1019.1 22 9999.9 0 7.9 24 5.1 24 11.1 999.9 80.1 66.9 0.14G 999.9 110000 724050 13743 20000728 75.7 24 69.7 24 1017.3 22 9999.9 0 6.7 24 3.0 24 21.0 23.9 84.9 66.9 0.01G 999.9 110010 724050 13743 20000729 72.5 24 67.3 24 1017.2 22 9999.9 0 7.5 24 5.1 24 21.0 999.9 84.9 66.0 0.75G 999.9 110010 724050 13743 20000730 77.5 24 72.3 24 1017.5 24 9999.9 0 7.5 24 5.4 24 28.0 35.9 86.0 66.0 0.00G 999.9 110010 724050 13743 20000731 77.3 24 73.2 24 1018.0 22 9999.9 0 8.5 24 7.2 24 14.0 20.0 86.0 72.0 0.53G 999.9 100000 724050 13743 20000801 78.9 24 73.3 24 1017.0 21 9999.9 0 9.3 24 8.7 24 11.1 999.9 87.1 72.0 0.02G 999.9 010010 724050 13743 20000802 77.3 24 72.1 24 1016.3 24 9999.9 0 9.9 24 8.3 24 12.0 15.9 87.1 72.0 0.17G 999.9 010010 724050 13743 20000803 77.1 24 72.4 24 1015.8 23 9999.9 0 9.7 24 7.4 24 15.9 19.0 82.9 72.0 0.00G 999.9 110010 724050 13743 20000804 74.0 24 70.0 24 1015.9 22 9999.9 0 8.0 24 4.8 24 11.1 999.9 82.9 69.1 0.35G 999.9 110010 724050 13743 20000805 73.9 24 63.5 24 1016.5 24 9999.9 0 7.3 24 5.5 24 12.0 15.0 82.9 66.9 0.29G 999.9 110010 724050 13743 20000806 72.0 24 66.7 24 1016.8 21 9999.9 0 7.2 24 7.1 24 21.0 999.9 81.0 66.9 0.01G 999.9 110010 724050 13743 20000807 81.2 24 75.4 24 1014.3 22 9999.9 0 5.4 24 7.5 24 28.9 39.0 91.9 66.9 0.75G 999.9 110110 724050 13743 20000808 80.8 24 70.7 24 1015.7 23 9999.9 0 9.7 24 5.3 24 12.0 999.9 91.9 73.0 0.61G 999.9 010010 724050 13743 20000809 82.9 24 71.9 24 1014.2 23 9999.9 0 8.8 24 7.3 22 14.0 27.0 90.0 73.0 0.00G 999.9 110010 724050 13743 20000810 78.1 24 68.0 24 1012.7 24 9999.9 0 9.7 24 7.1 24 12.0 18.1 90.0 72.0 0.07G 999.9 000000 724050 13743 20000811 79.2 24 67.1 24 1012.8 24 9999.9 0 8.7 24 5.4 24 13.0 999.9 88.0 72.0 0.00G 999.9 100000 724050 13743 20000812 74.6 24 61.5 24 1012.5 24 9999.9 0 9.9 24 10.1 24 15.9 16.9 86.0 66.9 0.00G 999.9 000000 724050 13743 20000813 69.0 24 61.4 24 1013.5 22 9999.9 0 9.5 24 10.3 24 13.0 999.9 80.1 64.9 0.00G 999.9 010000 724050 13743 20000814 71.4 24 62.1 24 1015.1 24 9999.9 0 9.8 24 11.0 24 15.9 20.0 80.1 64.9 0.11G 999.9 010000 724050 13743 20000815 74.8 24 64.9 24 1018.3 24 9999.9 0 9.4 24 6.4 24 12.0 16.9 86.0 66.0 0.02G 999.9 010000 724050 13743 20000816 79.8 24 66.6 24 1014.6 24 9999.9 0 7.4 24 8.6 24 15.9 22.9 89.6* 72.0* 0.00I 999.9 100000 724050 13743 20000817 71.6 24 54.3 24 1017.8 24 9999.9 0 9.9 24 6.9 24 10.1 999.9 89.1 61.0 0.00G 999.9 000000 724050 13743 20000818 71.2 24 63.7 24 1014.5 21 9999.9 0 8.5 24 5.1 24 11.1 999.9 79.0 61.0 0.07G 999.9 110000 724050 13743 20000819 69.8 24 59.3 24 1017.9 24 9999.9 0 9.0 24 7.3 24 11.1 15.9 78.1 62.1 0.01G 999.9 000000 724050 13743 20000820 70.6 24 55.4 24 1022.2 24 9999.9 0 9.9 24 5.4 24 11.1 999.9 79.0 62.1 0.00G 999.9 000000 724050 13743 20000821 68.2 24 53.6 24 1025.7 24 9999.9 0 9.9 24 5.4 24 8.9 999.9 79.0 60.1 0.00G 999.9 000000 724050 13743 20000822 69.9 24 60.2 24 1026.3 24 9999.9 0 9.9 24 6.6 24 13.0 999.9 79.0 59.0 0.00G 999.9 000000 724050 13743 20000823 72.3 24 63.9 24 1022.1 24 9999.9 0 9.6 24 11.4 24 15.0 999.9 81.0 62.1 0.00G 999.9 010000 724050 13743 20000824 76.0 24 70.6 24 1016.9 24 9999.9 0 5.1 24 4.7 24 8.9 999.9 86.0 64.9 0.00G 999.9 100010 724050 13743 20000825 74.9 24 65.6 24 1017.2 24 9999.9 0 8.4 24 5.9 24 11.1 999.9 86.0 66.0 0.00G 999.9 100000 724050 13743 20000826 74.3 24 65.1 24 1016.1 24 9999.9 0 8.8 24 4.7 24 11.1 999.9 84.9 64.9 0.00G 999.9 100000 724050 13743 20000827 74.9 24 70.1 24 1014.0 23 9999.9 0 5.6 24 8.0 24 18.1 26.0 84.9 64.9 0.00G 999.9 110010 724050 13743 20000828 71.9 24 68.7 24 1016.1 16 9999.9 0 7.9 24 5.3 24 13.0 16.9 81.0 66.0 0.28G 999.9 110010 724050 13743 20000829 73.4 24 70.8 24 1018.3 20 9999.9 0 7.1 24 9.6 24 15.0 999.9 81.0 66.0 0.17G 999.9 110000 724050 13743 20000830 74.4 24 72.0 24 1019.4 19 9999.9 0 8.5 24 9.8 24 12.0 15.9 80.1 70.0 0.23G 999.9 110000 724050 13743 20000831 76.5 24 74.2 24 1018.3 18 9999.9 0 8.0 24 10.2 24 15.9 19.0 81.0 71.1 0.05G 999.9 110000 724050 13743 20000901 79.2 24 75.2 24 1018.4 21 9999.9 0 8.3 24 6.2 24 8.9 20.0 88.0 73.0 0.60G 999.9 110000 724050 13743 20000902 77.6 24 75.0 24 1016.2 19 9999.9 0 8.1 24 4.4 24 11.1 23.9 88.0 73.0 0.06G 999.9 110010 724050 13743 20000903 76.0 24 73.4 24 1013.1 23 9999.9 0 9.7 24 3.4 24 15.0 20.0 84.9 73.0 1.65G 999.9 010000 724050 13743 20000904 76.4 24 73.4 24 1010.6 23 9999.9 0 6.9 24 3.8 24 12.0 999.9 84.9 73.0 0.10G 999.9 110010 724050 13743 20000905 67.0 24 57.4 24 1020.5 24 9999.9 0 9.9 24 12.9 24 18.1 26.0 84.9 62.1 0.08G 999.9 010000 724050 13743 20000906 62.4 24 52.6 24 1029.0 24 9999.9 0 9.9 24 9.4 24 14.0 999.9 71.1 55.0 0.00G 999.9 000000 724050 13743 20000907 64.3 24 55.1 24 1028.2 24 9999.9 0 9.9 24 5.7 24 10.1 999.9 73.0 55.0 0.00G 999.9 000000 724050 13743 20000908 66.6 24 60.8 24 1022.3 24 9999.9 0 9.7 24 6.3 24 10.1 999.9 77.0 57.0 0.00G 999.9 100000 724050 13743 20000909 73.2 24 67.6 24 1019.9 24 9999.9 0 9.5 24 5.5 24 8.9 999.9 82.0 59.0 0.00G 999.9 010000 724050 13743 20000910 75.8 24 69.9 24 1020.1 24 9999.9 0 8.6 24 3.6 24 8.9 999.9 84.0 68.0 0.00G 999.9 100000 724050 13743 20000911 74.0 24 68.4 24 1020.0 21 9999.9 0 9.1 24 6.7 24 8.9 999.9 84.0 68.0 0.00G 999.9 100000 724050 13743 20000912 75.5 24 70.2 24 1016.9 24 9999.9 0 8.5 24 9.4 24 13.0 19.0 82.9 68.0 0.00G 999.9 100000 724050 13743 20000913 77.5 24 69.2 24 1014.0 24 9999.9 0 9.9 24 8.2 24 11.1 15.0 84.0 70.0 0.00G 999.9 000000 724050 13743 20000914 72.2 24 62.0 24 1015.1 24 9999.9 0 9.9 24 5.8 24 10.1 999.9 84.0 64.0 0.00G 999.9 000000 724050 13743 20000915 71.7 24 61.3 24 1007.5 21 9999.9 0 9.0 24 11.9 24 29.9 42.9 75.2* 60.8* 0.03G 999.9 110010 724050 13743 20000916 60.0 24 48.6 24 1013.0 24 9999.9 0 9.9 24 10.2 24 15.9 21.0 75.0 53.1 0.01G 999.9 000000 724050 13743 20000917 60.6 24 47.1 24 1020.2 24 9999.9 0 9.9 24 8.0 24 13.0 15.9 72.0 48.9 0.00G 999.9 000000 724050 13743 20000918 63.2 24 54.8 24 1020.0 24 9999.9 0 9.9 24 6.1 24 8.9 999.9 72.0 48.9 0.00G 999.9 000000 724050 13743 20000919 64.9 24 62.9 24 1015.1 19 9999.9 0 7.7 24 8.8 24 15.9 22.9 72.0 55.0 0.00G 999.9 110000 724050 13743 20000920 67.3 24 62.8 24 1013.6 24 9999.9 0 9.4 24 6.1 24 11.1 999.9 84.9 57.0 0.85G 999.9 000000 724050 13743 20000921 73.8 24 61.7 24 1011.1 24 9999.9 0 9.9 24 11.4 24 15.0 22.9 84.9 57.0 0.00G 999.9 000000 724050 13743 20000922 64.4 24 52.9 24 1021.0 24 9999.9 0 9.9 24 6.4 24 12.0 999.9 78.1 55.0 0.00G 999.9 000000 724050 13743 20000923 66.4 24 63.2 24 1017.3 23 9999.9 0 8.0 24 4.8 24 12.0 999.9 73.0 55.0 0.00G 999.9 110000 724050 13743 20000924 72.1 24 69.4 24 1009.8 22 9999.9 0 5.5 24 5.6 24 11.1 15.0 82.4* 66.2* 0.00G 999.9 100000 724050 13743 20000925 58.5 24 56.5 24 1013.2 17 9999.9 0 7.2 24 11.6 24 17.1 20.0 72.0* 51.8* 0.09G 999.9 110000 724050 13743 20000926 51.6 24 50.9 24 1013.1 17 9999.9 0 8.0 24 12.9 24 21.0 25.1 63.0 48.0 1.97G 999.9 110000 724050 13743 20000927 57.3 24 50.8 24 1021.2 24 9999.9 0 9.9 24 5.5 24 8.9 999.9 69.1 48.0 0.08G 999.9 000000 724050 13743 20000928 61.4 24 54.5 24 1020.9 24 9999.9 0 10.0 24 6.5 24 15.9 999.9 73.0 48.0 0.00G 999.9 000000 724050 13743 20000929 56.8 24 47.1 24 1027.9 24 9999.9 0 9.9 24 9.2 24 15.9 999.9 73.0 48.0 0.00G 999.9 000000 724050 13743 20000930 56.9 24 51.4 24 1027.7 24 9999.9 0 9.9 24 4.1 24 7.0 999.9 68.0 48.0 0.00G 999.9 000000 724050 13743 20001001 60.2 24 57.7 24 1022.2 22 9999.9 0 7.9 24 3.1 24 7.0 999.9 69.8* 53.1* 0.00G 999.9 100000 724050 13743 20001002 66.0 24 60.3 24 1016.2 24 9999.9 0 9.4 24 4.3 24 6.0 999.9 75.9 53.1 0.00G 999.9 100000 724050 13743 20001003 68.7 24 62.4 24 1013.5 24 9999.9 0 8.6 24 7.2 24 11.1 999.9 84.0 57.9 0.00G 999.9 100000 724050 13743 20001004 71.8 24 67.6 24 1015.0 24 9999.9 0 6.3 24 5.1 24 14.0 999.9 84.0 57.9 0.00G 999.9 100000 724050 13743 20001005 68.0 24 65.0 24 1014.9 24 9999.9 0 6.1 24 6.3 24 10.1 999.9 82.9 64.0 0.00G 999.9 100000 724050 13743 20001006 69.3 24 65.6 24 1011.1 22 9999.9 0 4.6 24 7.2 24 15.9 21.0 80.1 64.9 0.00G 999.9 100000 724050 13743 20001007 57.4 24 44.1 24 1019.5 24 9999.9 0 9.9 24 10.1 24 15.9 22.9 66.0* 51.1* 0.00G 999.9 000000 724050 13743 20001008 48.5 24 32.5 24 1023.9 24 9999.9 0 9.9 24 8.1 24 14.0 18.1 60.1 39.9 0.00G 999.9 000000 724050 13743 20001009 44.7 24 35.5 24 1023.7 24 9999.9 0 9.9 24 10.6 24 22.9 28.9 57.0 37.9 0.00G 999.9 010000 724050 13743 20001010 49.4 24 38.4 24 1020.0 24 9999.9 0 9.9 24 8.8 24 14.0 22.9 62.1 37.9 0.01G 999.9 010000 724050 13743 20001011 56.3 24 38.0 24 1022.1 24 9999.9 0 9.9 24 7.9 24 14.0 19.0 70.0 43.0 0.00G 999.9 000000 724050 13743 20001012 59.4 24 44.3 24 1026.0 24 9999.9 0 9.9 24 4.4 24 11.1 999.9 73.0 45.0 0.00G 999.9 000000 724050 13743 20001013 59.9 24 50.1 24 1024.9 24 9999.9 0 9.9 24 3.9 24 8.9 999.9 75.9 46.0 0.00G 999.9 000000 724050 13743 20001014 62.5 24 51.8 24 1021.7 24 9999.9 0 9.9 24 4.0 24 10.1 999.9 79.0 46.0 0.00G 999.9 000000 724050 13743 20001015 64.5 24 54.4 24 1018.8 24 9999.9 0 9.9 24 4.8 24 11.1 999.9 80.1 48.9 0.00G 999.9 000000 724050 13743 20001016 66.1 24 58.9 24 1018.9 24 9999.9 0 6.8 24 3.1 24 8.9 999.9 80.1 52.0 0.00G 999.9 100000 724050 13743 20001017 63.1 24 60.7 24 1021.9 20 9999.9 0 6.5 24 6.5 24 9.9 999.9 77.0 57.9 0.00G 999.9 110000 724050 13743 20001018 63.4 24 59.8 24 1018.5 22 9999.9 0 7.0 24 5.3 24 12.0 15.0 71.1* 60.8* 0.00G 999.9 110000 724050 13743 20001019 61.6 24 49.5 24 1019.7 24 9999.9 0 9.7 24 9.2 24 14.0 21.0 71.1* 51.8* 0.01G 999.9 000000 724050 13743 20001020 59.2 24 51.3 24 1024.3 24 9999.9 0 9.3 24 4.2 24 8.9 999.9 71.1 48.9 0.00G 999.9 100000 724050 13743 20001021 62.5 24 53.3 24 1022.1 24 9999.9 0 8.1 24 5.1 24 8.9 999.9 78.1 48.9 0.00G 999.9 100000 724050 13743 20001022 62.4 24 53.2 24 1027.3 24 9999.9 0 8.3 24 5.3 24 14.0 15.9 78.1 51.1 0.00G 999.9 100000 724050 13743 20001023 55.0 24 44.5 24 1035.3 24 9999.9 0 9.9 24 3.3 24 8.0 999.9 70.0 45.0 0.00G 999.9 000000 724050 13743 20001024 55.5 24 47.7 24 1031.3 24 9999.9 0 9.9 24 4.8 24 8.9 999.9 66.0 45.0 0.00G 999.9 000000 724050 13743 20001025 63.1 24 55.3 24 1026.0 24 9999.9 0 8.8 24 2.3 24 7.0 999.9 70.0 46.9 0.00G 999.9 100000 724050 13743 20001026 58.4 24 56.2 24 1025.5 23 9999.9 0 3.2 24 3.5 24 7.0 999.9 64.0* 53.6* 0.00G 999.9 100000 724050 13743 20001027 59.7 24 53.8 24 1020.6 24 9999.9 0 4.5 24 4.1 24 7.0 999.9 73.9 51.1 0.00G 999.9 100000 724050 13743 20001028 63.4 24 50.8 24 1015.9 24 9999.9 0 7.4 24 9.5 24 21.0 25.1 73.9 51.1 0.00G 999.9 100000 724050 13743 20001029 49.1 24 24.6 24 1023.5 24 9999.9 0 9.9 24 10.9 24 18.1 22.0 70.0 37.0 0.00G 999.9 000000 724050 13743 20001030 52.0 24 25.0 24 1020.7 24 9999.9 0 9.9 24 10.4 24 17.1 21.0 63.0 37.0 0.00G 999.9 000000 724050 13743 20001031 50.4 24 32.9 24 1021.6 24 9999.9 0 9.9 24 10.2 24 15.0 20.0 63.0 39.0 0.00G 999.9 000000 724050 13743 20001101 50.7 24 34.1 24 1021.4 24 9999.9 0 9.9 24 7.5 24 11.1 999.9 62.1 39.0 0.00G 999.9 000000 724050 13743 20001102 53.9 24 34.3 24 1020.9 24 9999.9 0 9.9 24 6.3 24 10.1 999.9 69.1 39.0 0.00I 999.9 000000 724050 13743 20001103 55.8 24 41.1 24 1020.0 24 9999.9 0 9.9 24 2.5 24 6.0 999.9 71.1 41.0 0.00I 999.9 000000 724050 13743 20001104 59.5 24 47.1 24 1016.0 24 9999.9 0 9.5 24 5.7 24 12.0 21.0 71.1 43.0 0.00I 999.9 100000 724050 13743 20001105 54.7 24 36.7 24 1014.8 24 9999.9 0 9.9 24 10.6 24 18.1 22.9 68.0 46.0 0.00I 999.9 000000 724050 13743 20001106 47.5 24 30.8 24 1018.7 24 9999.9 0 9.9 24 5.8 24 8.0 999.9 59.0 37.0 0.00I 999.9 000000 724050 13743 20001107 49.5 24 37.9 24 1019.1 24 9999.9 0 9.9 24 2.9 24 8.0 999.9 63.0* 39.2* 0.00H 999.9 010000 724050 13743 20001108 55.6 24 43.7 24 1018.1 24 9999.9 0 7.9 24 1.5 24 5.1 999.9 66.0 39.9 0.00I 999.9 000000 724050 13743 20001109 59.5 24 53.0 24 1013.1 24 9999.9 0 5.4 24 3.3 24 7.0 999.9 66.0 46.9 0.07B 999.9 110000 724050 13743 20001110 60.4 24 49.8 24 1003.9 24 9999.9 0 7.6 24 10.9 24 20.0 28.9 66.9* 53.6* 0.45G 999.9 110000 724050 13743 20001111 54.1 24 39.2 24 1013.1 24 9999.9 0 9.9 24 14.6 24 22.0 28.0 66.0 51.1 0.00G 999.9 000000 724050 13743 20001112 49.8 24 38.6 24 1018.4 24 9999.9 0 9.9 24 9.7 24 15.9 999.9 60.1 43.0 0.00I 999.9 000000 724050 13743 20001113 47.6 24 41.1 24 1017.8 24 9999.9 0 9.3 24 5.6 24 10.1 999.9 57.0 39.9 0.00I 999.9 100000 724050 13743 20001114 51.5 24 43.6 24 1012.3 24 9999.9 0 8.4 24 7.5 24 21.0 27.0 57.0 39.9 0.16G 999.9 110000 724050 13743 20001115 42.6 24 25.0 24 1015.3 24 9999.9 0 9.9 24 10.4 24 19.0 27.0 57.0 37.9 0.10G 999.9 000000 724050 13743 20001116 40.1 24 29.3 24 1017.9 24 9999.9 0 9.6 24 7.9 24 14.0 16.9 52.0 30.0 0.00G 999.9 000000 724050 13743 20001117 48.6 24 35.8 24 1009.7 24 9999.9 0 9.9 24 9.4 24 20.0 27.0 57.9 30.0 0.01G 999.9 010000 724050 13743 20001118 39.9 24 22.9 24 1021.3 24 9999.9 0 10.0 24 7.6 23 15.0 21.0 57.9 34.0 0.00G 999.9 000000 724050 13743 20001119 38.5 24 22.5 24 1021.4 24 9999.9 0 9.9 24 6.3 24 10.1 999.9 46.0 34.0 0.00I 999.9 000000 724050 13743 20001120 36.4 24 30.3 24 1017.0 23 9999.9 0 8.1 24 8.1 24 19.0 35.9 51.1 28.9 0.00H 999.9 110000 724050 13743 20001121 34.6 24 16.6 24 1018.3 24 9999.9 0 9.9 24 10.0 24 22.0 27.0 51.1 28.9 0.03A 999.9 000000 724050 13743 20001122 30.5 24 8.0 24 1022.8 24 9999.9 0 9.9 24 10.9 24 17.1 28.9 37.9* 24.8* 0.00I 999.9 000000 724050 13743 20001123 32.4 24 11.7 24 1026.3 24 9999.9 0 9.9 24 8.7 24 14.0 21.0 37.9 25.0 0.00I 999.9 000000 724050 13743 20001124 32.4 24 19.1 24 1029.7 24 9999.9 0 9.9 24 4.8 24 8.0 999.9 42.1* 24.8* 0.00I 999.9 000000 724050 13743 20001125 35.8 24 32.2 24 1028.4 23 9999.9 0 9.1 24 5.7 24 13.0 999.9 51.1 25.0 0.18B 999.9 110000 724050 13743 20001126 50.0 24 47.2 24 1011.1 22 9999.9 0 5.6 24 7.3 24 13.0 22.0 59.0* 42.1* 0.67G 999.9 110000 724050 13743 20001127 51.2 24 42.3 24 1008.3 24 9999.9 0 8.8 24 6.8 24 11.1 999.9 59.0 43.0 0.05G 999.9 100000 724050 13743 20001128 46.1 24 36.8 24 1014.9 24 9999.9 0 9.9 24 5.6 24 11.1 999.9 59.0 36.0 0.00G 999.9 000000 724050 13743 20001129 42.3 24 31.1 24 1020.0 24 9999.9 0 9.5 24 7.9 24 11.1 999.9 55.9 33.1 0.13A 999.9 110010 724050 13743 20001130 42.8 23 32.9 23 1016.6 23 9999.9 0 9.0 23 11.0 23 22.0 32.1 51.1 33.1 0.03A 999.9 110000 724050 13743 20001201 40.1 24 28.5 24 1024.9 24 9999.9 0 9.9 24 6.5 24 10.1 999.9 50.0 33.1 0.00I 999.9 000000 724050 13743 20001202 37.1 24 21.9 24 1029.8 24 9999.9 0 9.9 24 9.3 24 14.0 999.9 48.0 30.9 0.00I 999.9 000000 724050 13743 20001203 29.4 24 13.6 24 1034.6 24 9999.9 0 9.9 24 11.1 24 15.0 999.9 41.0 24.1 0.00I 999.9 000000 724050 13743 20001204 32.4 24 13.2 24 1031.0 24 9999.9 0 9.9 24 6.3 24 11.1 999.9 46.9 21.9 0.00I 999.9 000000 724050 13743 20001205 38.1 24 19.5 24 1020.0 24 9999.9 0 9.9 24 7.5 24 15.0 23.9 52.0 21.9 0.00I 999.9 000000 724050 13743 20001206 31.7 24 10.8 24 1022.4 24 9999.9 0 9.9 24 8.1 24 14.0 19.0 52.0 26.1 0.00I 999.9 000000 724050 13743 20001207 34.7 24 17.7 24 1014.4 24 9999.9 0 9.9 24 7.3 24 10.1 18.1 41.0 26.1 0.00I 999.9 000000 724050 13743 20001208 38.4 24 26.9 24 1015.3 24 9999.9 0 9.9 24 4.2 24 10.1 999.9 45.0 32.0 0.00I 999.9 000000 724050 13743 20001209 37.3 24 22.9 24 1026.6 24 9999.9 0 9.9 24 9.0 24 15.0 999.9 45.0 30.9 0.00I 999.9 000000 724050 13743 20001210 33.1 24 27.2 24 1028.4 24 9999.9 0 8.8 24 3.2 24 6.0 999.9 42.1 27.0 0.02A 999.9 110000 724050 13743 20001211 36.3 24 35.4 24 1022.2 24 9999.9 0 4.8 24 3.6 24 8.9 999.9 41.0 27.0 0.00I 999.9 100000 724050 13743 20001212 42.7 24 31.6 24 1014.9 21 9999.9 0 7.2 24 14.4 24 27.0 35.0 52.0 30.0 0.00H 999.9 110000 724050 13743 20001213 30.0 24 12.8 24 1036.4 24 9999.9 0 9.9 24 8.1 24 11.1 19.0 35.1* 26.1* 0.00I 999.9 000000 724050 13743 20001214 33.6 24 31.2 24 1026.4 19 9999.9 0 6.2 24 5.7 24 8.9 999.9 37.9 25.0 0.71G 999.9 110000 724050 13743 20001215 36.9 24 30.7 24 1032.8 24 9999.9 0 9.4 24 6.2 24 12.0 999.9 42.1 30.0 0.00G 999.9 100000 724050 13743 20001216 36.4 24 35.5 24 1027.6 21 9999.9 0 5.6 24 4.8 24 8.9 999.9 42.1 30.9 0.09G 999.9 110000 724050 13743 20001217 45.3 24 40.1 24 1004.5 19 9999.9 0 5.2 24 11.3 24 26.0 39.0 60.8* 35.6* 0.00G 999.9 110010 724050 13743 20001218 31.2 24 14.5 24 1017.4 24 9999.9 0 9.9 24 8.6 24 20.0 999.9 37.0* 26.1* 0.33G 999.9 000000 724050 13743 20001219 32.5 24 27.0 24 1014.6 21 9999.9 0 8.0 24 4.2 24 11.1 999.9 37.0 26.1 0.00G 1.2 101000 724050 13743 20001220 25.6 24 14.9 24 1016.2 24 9999.9 0 8.3 24 12.9 24 21.0 28.9 37.0 18.0 0.13G 1.2 101000 724050 13743 20001221 26.4 24 16.2 24 1025.6 24 9999.9 0 9.9 24 5.2 24 10.1 18.1 34.0 18.0 0.00G 1.2 000000 724050 13743 20001222 30.7 24 21.2 24 1020.2 24 9999.9 0 9.3 24 8.1 24 19.0 28.9 34.0* 19.4* 0.00H 999.9 101000 724050 13743 20001223 19.7 24 3.5 24 1032.8 24 9999.9 0 9.9 24 9.8 24 15.0 22.9 34.0 14.0 0.00I 999.9 000000 724050 13743 20001224 28.3 24 16.3 24 1027.6 24 9999.9 0 9.9 24 6.1 24 12.0 999.9 39.9 14.0 0.00I 999.9 000000 724050 13743 20001225 25.6 24 7.9 24 1032.1 24 9999.9 0 9.9 24 12.0 24 17.1 27.0 37.0* 19.4* 0.00I 999.9 000000 724050 13743 20001226 21.6 24 6.3 24 1034.9 24 9999.9 0 9.9 24 8.2 24 12.0 15.0 28.9 16.0 0.00I 999.9 000000 724050 13743 20001227 28.3 24 13.8 24 1023.8 24 9999.9 0 9.9 24 4.5 24 8.0 999.9 33.1 16.0 0.00I 999.9 000000 724050 13743 20001228 28.4 24 13.7 24 1017.0 24 9999.9 0 9.9 24 11.4 24 23.9 32.1 33.1 21.9 0.00H 999.9 001000 724050 13743 20001229 24.5 24 14.0 24 1016.1 24 9999.9 0 9.9 24 7.0 24 15.0 999.9 30.9 19.0 0.00I 999.9 000000 724050 13743 20001230 26.7 24 18.4 24 1009.3 24 9999.9 0 9.9 24 8.4 24 15.9 22.0 33.1 19.0 0.00I 999.9 000000 724050 13743 20001231 27.4 24 12.5 24 1012.4 24 9999.9 0 9.9 24 13.1 24 21.0 28.9 37.4* 19.0* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/2004/0000755000175000017500000000000014302004506015065 5ustar nileshnileshfluids-1.0.22/tests/gsod/2004/724050-13743.op0000644000175000017500000014350514302004506016655 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20040101 46.6 24 27.3 24 1026.2 24 9999.9 0 9.9 24 5.3 24 8.9 999.9 55.0 28.9 0.00D 999.9 000000 724050 13743 20040102 45.8 24 35.9 24 1022.7 24 9999.9 0 9.5 24 4.1 24 11.1 999.9 55.0 35.1 0.10G 999.9 010000 724050 13743 20040103 50.3 24 45.1 24 1016.4 24 9999.9 0 8.5 24 3.0 24 12.0 999.9 68.0 42.1 0.05G 999.9 100000 724050 13743 20040104 57.7 24 51.1 24 1012.4 24 9999.9 0 9.0 24 9.1 24 13.0 999.9 72.0 43.0 0.01G 999.9 110000 724050 13743 20040105 46.5 24 43.0 24 1010.6 20 9999.9 0 5.9 24 6.7 24 12.0 999.9 50.0* 44.1* 0.00G 999.9 110000 724050 13743 20040106 40.0 24 24.3 24 1019.4 24 9999.9 0 9.9 24 11.8 24 18.1 27.0 48.9 30.0 0.31G 999.9 000000 724050 13743 20040107 25.2 24 1.8 24 1027.7 24 9999.9 0 9.9 24 12.3 24 19.0 27.0 30.9* 19.4* 0.00G 999.9 000000 724050 13743 20040108 27.3 24 7.1 24 1028.2 24 9999.9 0 9.9 24 6.0 24 11.1 999.9 35.6* 19.9* 0.00G 999.9 000000 724050 13743 20040109 31.2 24 19.8 24 1024.4 23 9999.9 0 8.2 24 7.0 24 14.0 16.9 35.1 19.9 0.01G 999.9 101000 724050 13743 20040110 16.2 24 -2.3 24 1029.6 24 9999.9 0 9.9 24 11.6 24 15.0 999.9 34.0 8.1 0.00C 999.9 000000 724050 13743 20040111 20.3 24 0.7 24 1030.4 24 9999.9 0 9.9 24 8.9 24 15.0 999.9 30.9 8.1 0.00G 999.9 000000 724050 13743 20040112 36.6 24 21.5 24 1017.6 24 9999.9 0 9.7 24 9.1 24 15.0 19.0 52.0 14.0 0.00G 999.9 000000 724050 13743 20040113 44.4 24 27.8 24 1016.5 24 9999.9 0 10.0 24 10.4 24 20.0 28.9 54.0 28.0 0.00G 999.9 000000 724050 13743 20040114 31.2 24 13.4 24 1019.8 23 9999.9 0 10.0 24 9.7 24 15.0 22.9 54.0 25.0 0.00G 999.9 000000 724050 13743 20040115 30.6 24 16.9 24 1009.5 24 9999.9 0 9.7 24 11.7 24 19.0 28.0 36.0 24.1 0.00G 999.9 001000 724050 13743 20040116 21.9 24 -1.9 24 1019.5 24 9999.9 0 10.0 24 14.3 24 20.0 28.9 36.0 15.1 0.00G 999.9 000000 724050 13743 20040117 27.0 24 2.3 24 1021.8 24 9999.9 0 10.0 24 7.6 24 15.0 22.0 36.0 15.1 0.00G 999.9 011000 724050 13743 20040118 34.3 24 31.9 24 1005.1 20 9999.9 0 5.2 24 5.8 24 14.0 999.9 39.2* 28.9* 0.23G 999.9 111000 724050 13743 20040119 28.3 24 12.3 24 1009.0 24 9999.9 0 10.0 24 14.3 24 20.0 26.0 39.0 24.1 0.20G 999.9 000000 724050 13743 20040120 25.5 24 5.7 24 1018.4 24 9999.9 0 9.9 24 14.7 24 22.9 28.9 30.9 23.0 0.00G 999.9 000000 724050 13743 20040121 23.9 24 4.7 24 1023.1 24 9999.9 0 9.9 24 9.7 24 15.0 21.0 30.9 19.0 0.00G 999.9 000000 724050 13743 20040122 33.4 24 16.3 24 1012.2 24 9999.9 0 9.9 24 8.6 24 15.9 22.9 48.9 19.0 0.00G 999.9 000000 724050 13743 20040123 23.7 24 0.3 24 1016.3 24 9999.9 0 9.9 24 13.7 24 21.0 30.9 48.9 17.1 0.00G 999.9 000000 724050 13743 20040124 23.1 24 10.2 24 1014.0 24 9999.9 0 9.6 24 7.1 24 14.0 18.1 28.4* 19.4* 0.00G 999.9 001000 724050 13743 20040125 19.0 24 -0.5 24 1026.6 24 9999.9 0 9.9 24 7.4 24 15.0 15.9 28.0 14.0 0.00G 999.9 000000 724050 13743 20040126 18.7 24 13.9 24 1024.9 17 9999.9 0 2.8 24 8.6 24 12.0 999.9 21.9 14.0 0.34G 5.1 111000 724050 13743 20040127 24.7 24 22.5 24 1017.2 16 9999.9 0 2.8 24 8.4 24 15.0 999.9 30.9 16.0 0.10G 3.9 111000 724050 13743 20040128 27.1 24 15.8 24 1010.2 23 9999.9 0 8.9 24 9.8 24 21.0 30.9 30.9 21.0 0.11G 5.1 101000 724050 13743 20040129 26.5 24 15.1 24 1013.5 24 9999.9 0 9.6 24 4.9 24 10.1 15.0 39.9 16.0 0.00G 3.9 000000 724050 13743 20040130 28.3 24 13.3 24 1009.8 24 9999.9 0 9.7 24 10.4 24 20.0 26.0 39.9 16.0 0.00G 3.9 001000 724050 13743 20040131 19.5 24 1.1 24 1016.3 24 9999.9 0 10.0 24 11.9 24 18.1 22.9 30.0 14.0 0.00G 3.9 000000 724050 13743 20040201 23.4 24 6.9 24 1028.0 24 9999.9 0 9.9 24 7.8 24 11.1 999.9 34.0 14.0 0.00G 3.1 000000 724050 13743 20040202 28.0 24 15.3 24 1032.5 24 9999.9 0 9.2 24 3.1 24 10.1 999.9 39.0 15.1 0.00G 3.1 000000 724050 13743 20040203 33.7 24 28.0 24 1021.6 20 9999.9 0 6.7 24 5.9 24 10.1 999.9 42.1 18.0 0.00G 2.0 110000 724050 13743 20040204 38.4 24 26.2 24 1023.6 24 9999.9 0 9.7 24 9.7 24 15.9 20.0 43.0 28.0 0.53G 1.2 000000 724050 13743 20040205 32.9 24 18.2 24 1035.2 24 9999.9 0 9.9 24 5.2 24 12.0 999.9 43.0 26.1 0.00G 1.2 000000 724050 13743 20040206 33.0 24 29.6 24 1024.3 11 9999.9 0 3.3 24 4.4 24 14.0 999.9 37.0 26.1 0.35G 1.2 111000 724050 13743 20040207 39.4 24 30.4 24 1007.2 24 9999.9 0 7.5 24 9.8 24 20.0 26.0 46.0 30.9 1.32G 999.9 110000 724050 13743 20040208 32.1 24 11.5 24 1026.7 24 9999.9 0 10.0 24 12.6 24 19.0 28.0 46.0 26.1 0.00G 999.9 000000 724050 13743 20040209 35.2 24 18.4 24 1030.8 24 9999.9 0 9.9 24 9.0 24 15.0 21.0 48.9 26.1 0.00G 999.9 000000 724050 13743 20040210 42.4 24 30.8 24 1019.9 24 9999.9 0 9.9 24 6.5 24 11.1 999.9 54.0 26.1 0.00G 999.9 000000 724050 13743 20040211 41.7 24 20.5 24 1019.4 24 9999.9 0 9.9 24 8.7 24 15.0 18.1 54.0 34.0 0.00G 999.9 000000 724050 13743 20040212 37.4 24 23.2 24 1024.2 24 9999.9 0 10.0 24 4.0 24 10.1 999.9 45.0 33.1 0.00G 999.9 000000 724050 13743 20040213 39.4 24 26.2 24 1020.2 24 9999.9 0 9.7 24 7.1 24 11.1 16.9 51.1 30.0 0.00G 999.9 000000 724050 13743 20040214 39.9 24 23.7 24 1016.6 24 9999.9 0 10.0 24 2.7 24 8.0 999.9 51.1 30.0 0.00G 999.9 000000 724050 13743 20040215 37.2 24 20.0 24 1018.4 24 9999.9 0 9.9 24 8.6 24 15.9 19.0 45.0* 30.2* 0.00G 999.9 000000 724050 13743 20040216 26.6 24 2.3 24 1031.4 24 9999.9 0 9.9 24 10.3 24 17.1 999.9 42.1 19.0 0.00G 999.9 000000 724050 13743 20040217 30.6 24 14.0 24 1035.1 24 9999.9 0 9.9 24 5.1 24 8.0 999.9 37.9 19.0 0.00G 999.9 000000 724050 13743 20040218 36.1 24 16.3 24 1025.2 24 9999.9 0 10.0 24 11.2 24 20.0 27.0 45.0 25.0 0.00G 999.9 000000 724050 13743 20040219 44.3 24 18.6 24 1015.7 24 9999.9 0 9.9 24 7.8 24 15.9 22.9 60.1 28.0 0.00G 999.9 000000 724050 13743 20040220 46.5 24 31.9 24 1012.5 24 9999.9 0 8.9 24 4.7 24 11.1 999.9 60.1 33.1 0.00G 999.9 000000 724050 13743 20040221 52.4 24 32.4 24 1002.7 24 9999.9 0 10.0 24 11.5 24 21.0 32.1 59.0 36.0 0.00G 999.9 000000 724050 13743 20040222 42.6 24 22.7 24 1018.1 24 9999.9 0 9.9 24 11.3 24 15.9 32.1 59.0 37.0 0.00G 999.9 000000 724050 13743 20040223 39.2 24 21.2 24 1024.7 24 9999.9 0 9.9 24 6.4 24 10.1 999.9 48.0 30.9 0.00G 999.9 000000 724050 13743 20040224 40.7 24 30.0 24 1018.4 23 9999.9 0 8.5 24 5.5 24 16.9 999.9 48.0 30.9 0.00G 999.9 110000 724050 13743 20040225 36.4 24 19.9 24 1021.3 24 9999.9 0 9.7 24 12.8 24 18.1 20.0 45.0 28.9 0.08G 999.9 000000 724050 13743 20040226 36.1 24 17.2 24 1027.0 24 9999.9 0 9.9 24 8.9 24 15.0 999.9 45.0 28.9 0.00G 999.9 000000 724050 13743 20040227 41.2 24 16.0 24 1025.6 24 9999.9 0 10.0 24 11.1 24 20.0 22.9 51.1 30.0 0.00G 999.9 000000 724050 13743 20040228 43.5 24 16.5 24 1028.2 24 9999.9 0 10.0 24 7.5 24 15.0 999.9 59.0 30.9 0.00G 999.9 000000 724050 13743 20040229 46.3 24 24.6 24 1027.3 24 9999.9 0 9.9 24 4.5 24 8.9 999.9 66.0 30.9 0.00D 999.9 000000 724050 13743 20040301 50.6 24 29.0 24 1024.0 24 9999.9 0 9.9 24 4.5 24 15.0 20.0 69.1 30.9 0.00G 999.9 000000 724050 13743 20040302 59.8 24 48.0 24 1018.3 24 9999.9 0 9.5 24 10.4 24 17.1 22.9 73.0 37.0 0.16G 999.9 110000 724050 13743 20040303 58.0 24 39.5 24 1024.1 24 9999.9 0 9.9 24 5.7 24 10.1 14.0 73.0 48.9 0.00D 999.9 000000 724050 13743 20040304 54.8 24 44.8 24 1021.5 24 9999.9 0 7.5 24 4.5 24 8.0 16.9 66.9 48.9 0.09G 999.9 110000 724050 13743 20040305 55.4 24 47.4 24 1018.1 24 9999.9 0 5.5 24 7.2 24 18.1 22.9 77.0 48.0 0.00D 999.9 100000 724050 13743 20040306 65.1 24 56.6 24 1006.3 23 9999.9 0 8.1 24 11.3 24 23.9 46.0 77.0 48.0 0.76G 999.9 110000 724050 13743 20040307 52.4 24 33.3 24 1014.4 24 9999.9 0 9.9 24 9.5 24 19.0 22.0 73.0 43.0 0.09G 999.9 000000 724050 13743 20040308 44.3 24 30.9 24 1009.4 24 9999.9 0 9.7 24 12.6 24 22.9 35.0 52.0* 39.2* 0.15G 999.9 110000 724050 13743 20040309 39.3 24 24.4 24 1017.6 24 9999.9 0 9.9 24 5.6 24 11.1 15.0 48.9 30.9 0.00G 999.9 000000 724050 13743 20040310 40.1 24 30.6 24 1023.6 21 9999.9 0 8.3 24 9.8 24 15.0 18.1 46.9 30.9 0.00G 999.9 111000 724050 13743 20040311 43.2 24 26.4 24 1021.0 24 9999.9 0 10.0 24 8.7 24 12.0 14.0 55.9 32.0 0.01G 999.9 000000 724050 13743 20040312 45.6 24 23.1 24 1013.6 24 9999.9 0 10.0 24 10.5 24 22.0 28.0 55.9 32.0 0.00G 999.9 000000 724050 13743 20040313 38.8 24 16.3 24 1025.8 24 9999.9 0 9.9 24 11.1 24 15.9 21.0 50.0 30.9 0.00G 999.9 000000 724050 13743 20040314 42.3 24 24.1 24 1030.1 24 9999.9 0 10.0 24 6.7 24 14.0 999.9 54.0 30.9 0.00G 999.9 000000 724050 13743 20040315 55.2 24 30.3 24 1021.8 24 9999.9 0 10.0 24 8.6 24 14.0 22.9 64.0* 50.0* 0.00G 999.9 000000 724050 13743 20040316 43.3 24 32.4 24 1017.5 23 9999.9 0 8.0 24 11.1 24 18.1 22.9 57.0* 35.6* 0.09G 999.9 111000 724050 13743 20040317 37.6 24 31.3 24 1013.2 23 9999.9 0 9.2 24 6.5 24 12.0 999.9 51.1 35.1 0.29G 999.9 110000 724050 13743 20040318 38.7 24 33.6 24 1019.0 21 9999.9 0 6.0 24 4.1 24 11.1 999.9 48.9* 33.8* 0.08G 999.9 111000 724050 13743 20040319 43.3 24 34.4 24 1023.6 20 9999.9 0 8.1 24 10.1 24 20.0 27.0 50.0 34.0 0.15G 999.9 110000 724050 13743 20040320 44.8 24 32.1 24 1028.2 24 9999.9 0 8.7 24 8.1 24 18.1 26.0 62.1 33.1 0.11G 999.9 100000 724050 13743 20040321 52.6 24 34.3 24 1011.2 24 9999.9 0 9.9 24 14.5 24 20.0 29.9 62.1 33.1 0.01G 999.9 010000 724050 13743 20040322 34.9 24 11.6 24 1022.6 24 9999.9 0 9.9 24 14.6 24 19.0 28.9 41.0* 28.4* 0.00G 999.9 000000 724050 13743 20040323 37.0 24 12.7 24 1031.1 24 9999.9 0 9.9 24 7.9 24 13.0 16.9 51.1 26.1 0.00G 999.9 000000 724050 13743 20040324 46.8 24 23.5 24 1032.1 24 9999.9 0 10.0 24 7.1 24 13.0 18.1 63.0 26.1 0.00G 999.9 000000 724050 13743 20040325 55.8 24 37.6 24 1032.5 24 9999.9 0 9.9 24 8.3 24 11.1 999.9 70.0 34.0 0.06G 999.9 010000 724050 13743 20040326 62.3 24 45.9 24 1030.0 24 9999.9 0 9.9 24 7.2 24 12.0 999.9 75.9 46.9 0.00D 999.9 000000 724050 13743 20040327 61.6 24 52.1 24 1023.7 24 9999.9 0 8.3 24 6.7 24 11.1 999.9 75.9 52.0 0.00G 999.9 110000 724050 13743 20040328 58.9 24 46.8 24 1025.7 24 9999.9 0 9.9 24 8.1 24 14.0 999.9 70.0 53.1 0.09G 999.9 000000 724050 13743 20040329 48.3 24 37.0 24 1029.6 24 9999.9 0 10.0 24 8.2 24 14.0 999.9 64.9 43.0 0.00G 999.9 000000 724050 13743 20040330 42.5 24 35.1 24 1024.7 24 9999.9 0 10.0 24 6.4 24 8.9 999.9 53.1 37.9 0.00G 999.9 000000 724050 13743 20040331 46.9 24 42.9 24 1014.2 21 9999.9 0 6.8 24 6.0 24 10.1 999.9 53.1 37.9 0.00G 999.9 110000 724050 13743 20040401 47.7 24 44.2 24 1002.6 19 9999.9 0 5.8 24 8.3 24 12.0 16.9 53.1 44.1 0.51G 999.9 110000 724050 13743 20040402 45.6 24 42.0 24 1002.7 22 9999.9 0 8.5 24 5.9 24 15.0 999.9 48.9 44.1 0.55G 999.9 110000 724050 13743 20040403 47.3 24 40.2 24 1005.9 22 9999.9 0 9.1 24 8.1 24 13.0 21.0 55.0 43.0 0.27G 999.9 110000 724050 13743 20040404 46.5 24 33.4 24 1001.9 24 9999.9 0 9.9 24 12.4 24 26.0 35.0 55.0 42.1 0.05G 999.9 010000 724050 13743 20040405 39.8 24 11.2 24 1010.6 24 9999.9 0 9.9 24 18.2 24 24.1 34.0 50.0 30.9 0.00D 999.9 000000 724050 13743 20040406 46.1 24 13.8 24 1016.2 24 9999.9 0 9.9 24 10.3 24 15.9 21.0 62.1 30.9 0.00G 999.9 000000 724050 13743 20040407 59.4 24 33.8 24 1009.1 24 9999.9 0 10.0 24 8.2 24 15.9 27.0 77.0 35.1 0.00G 999.9 000000 724050 13743 20040408 53.5 24 35.4 24 1006.9 24 9999.9 0 9.4 24 6.9 24 12.0 999.9 77.0 46.9 0.00G 999.9 010000 724050 13743 20040409 53.0 24 39.0 24 1009.2 21 9999.9 0 7.1 24 8.6 24 17.1 22.0 66.0 42.1 0.01G 999.9 110000 724050 13743 20040410 55.5 24 32.0 24 1016.2 24 9999.9 0 10.0 24 4.7 24 11.1 999.9 66.0 42.1 0.00G 999.9 000000 724050 13743 20040411 49.8 24 37.8 24 1017.2 23 9999.9 0 8.9 24 8.3 24 15.0 999.9 64.0 44.1 0.01G 999.9 110000 724050 13743 20040412 45.9 24 41.6 24 1019.5 22 9999.9 0 5.4 24 10.0 24 15.9 22.9 53.1 44.1 0.08G 999.9 110000 724050 13743 20040413 46.9 24 45.1 24 1010.4 16 9999.9 0 3.8 24 9.4 24 18.1 23.9 52.0 44.1 1.14G 999.9 110000 724050 13743 20040414 49.5 24 45.5 24 1004.6 18 9999.9 0 8.4 24 8.7 24 15.9 22.0 53.1 44.1 0.22G 999.9 110000 724050 13743 20040415 53.1 24 31.5 24 1015.2 24 9999.9 0 10.0 24 13.7 24 20.0 27.0 64.0 45.0 0.22G 999.9 000000 724050 13743 20040416 52.6 24 25.3 24 1025.3 24 9999.9 0 10.0 24 6.2 24 11.1 999.9 66.9 39.9 0.00G 999.9 000000 724050 13743 20040417 59.7 24 42.2 24 1023.9 24 9999.9 0 10.0 24 6.6 24 12.0 999.9 84.0 39.9 0.00G 999.9 000000 724050 13743 20040418 69.9 24 49.5 24 1023.6 24 9999.9 0 10.0 24 7.4 24 14.0 999.9 87.1 46.0 0.00G 999.9 000000 724050 13743 20040419 73.0 24 53.4 24 1019.9 24 9999.9 0 9.8 24 10.3 24 19.0 23.9 91.0 57.0 0.00G 999.9 000000 724050 13743 20040420 76.1 24 51.3 24 1015.9 24 9999.9 0 10.0 24 8.5 24 14.0 15.9 91.0 60.1 0.00G 999.9 000000 724050 13743 20040421 66.5 24 54.0 24 1015.8 24 9999.9 0 10.0 24 7.3 24 13.0 999.9 81.0 57.0 0.00G 999.9 010000 724050 13743 20040422 71.3 24 56.6 24 1015.3 24 9999.9 0 9.8 24 6.6 24 10.1 18.1 82.0 57.0 0.00G 999.9 000000 724050 13743 20040423 71.2 24 58.0 24 1016.1 23 9999.9 0 9.4 24 6.6 24 27.0 35.0 82.4* 62.1* 0.00G 999.9 110010 724050 13743 20040424 65.3 24 53.0 24 1021.0 20 9999.9 0 8.2 24 6.9 24 14.0 15.9 73.0* 57.2* 0.31G 999.9 100000 724050 13743 20040425 61.6 24 49.4 24 1023.7 24 9999.9 0 9.2 24 7.7 24 14.0 20.0 73.0 55.9 0.00G 999.9 000000 724050 13743 20040426 62.8 24 56.3 24 1015.9 16 9999.9 0 8.5 24 8.1 24 18.1 27.0 69.8* 57.2* 0.11G 999.9 110000 724050 13743 20040427 58.2 24 45.4 24 1009.6 23 9999.9 0 8.7 24 7.6 24 28.9 34.0 69.1 53.1 0.41G 999.9 110000 724050 13743 20040428 50.0 24 27.3 24 1020.4 24 9999.9 0 10.0 24 10.6 24 18.1 27.0 66.9 39.9 0.01G 999.9 000000 724050 13743 20040429 61.5 24 42.3 24 1026.9 24 9999.9 0 10.0 24 10.4 24 17.1 22.0 78.1 39.9 0.00G 999.9 000000 724050 13743 20040430 66.4 24 53.8 24 1024.1 24 9999.9 0 10.0 24 10.8 24 19.0 22.0 78.1 50.0 0.00G 999.9 000000 724050 13743 20040501 68.4 24 59.0 24 1019.4 23 9999.9 0 9.5 24 10.5 24 17.1 22.0 79.0 57.9 0.00G 999.9 010000 724050 13743 20040502 70.8 24 64.7 24 1012.0 21 9999.9 0 9.1 24 10.7 24 21.0 28.9 80.1* 66.0* 0.08G 999.9 110000 724050 13743 20040503 54.7 24 48.6 24 1013.8 20 9999.9 0 7.8 24 11.5 24 22.9 37.9 81.0 48.0 0.78G 999.9 110000 724050 13743 20040504 52.4 24 34.3 24 1017.8 24 9999.9 0 9.8 24 8.8 24 21.0 23.9 64.0 44.1 0.24G 999.9 010000 724050 13743 20040505 58.5 24 44.8 24 1016.0 24 9999.9 0 9.6 24 7.5 24 21.0 30.9 71.1 44.1 0.00G 999.9 011110 724050 13743 20040506 62.3 24 47.7 24 1018.1 24 9999.9 0 9.6 24 5.7 24 10.1 999.9 75.9 48.9 0.41G 999.9 100000 724050 13743 20040507 70.0 24 57.4 24 1018.1 24 9999.9 0 9.6 24 6.8 24 13.0 25.1 89.1 50.0 0.00G 999.9 010010 724050 13743 20040508 63.8 24 51.1 24 1025.3 23 9999.9 0 9.4 24 9.3 24 13.0 15.9 68.0* 59.0* 0.20G 999.9 110000 724050 13743 20040509 64.4 24 53.9 24 1021.7 24 9999.9 0 9.6 24 7.8 24 12.0 999.9 82.9 54.0 0.00G 999.9 000000 724050 13743 20040510 74.4 24 64.1 24 1018.9 24 9999.9 0 7.8 24 6.8 24 15.9 999.9 86.0 54.0 0.01G 999.9 110010 724050 13743 20040511 77.9 24 64.7 24 1019.6 24 9999.9 0 7.3 24 5.8 24 8.9 999.9 89.6* 69.1* 0.00D 999.9 110010 724050 13743 20040512 76.3 24 64.7 24 1021.3 24 9999.9 0 7.1 24 8.1 24 13.0 16.9 89.1 68.0 0.00G 999.9 100000 724050 13743 20040513 76.1 24 65.5 24 1021.6 24 9999.9 0 8.9 24 8.8 24 12.0 18.1 86.0 68.0 0.00G 999.9 000000 724050 13743 20040514 77.8 24 64.8 24 1021.6 24 9999.9 0 8.7 24 10.2 24 17.1 21.0 87.1 68.0 0.00G 999.9 000000 724050 13743 20040515 77.9 24 63.5 24 1020.4 24 9999.9 0 9.9 24 10.0 24 15.9 999.9 88.0 70.0 0.00G 999.9 000000 724050 13743 20040516 73.2 24 63.8 24 1023.6 23 9999.9 0 9.6 24 4.5 24 22.0 27.0 81.0* 66.2* 0.15G 999.9 010010 724050 13743 20040517 75.1 24 65.7 24 1026.0 24 9999.9 0 8.3 24 6.4 24 20.0 999.9 81.0 66.9 0.01G 999.9 010010 724050 13743 20040518 74.2 24 65.1 24 1023.1 24 9999.9 0 8.2 24 9.6 24 18.1 22.9 84.2* 66.2* 0.02G 999.9 110010 724050 13743 20040519 72.0 24 64.4 24 1019.6 22 9999.9 0 9.2 24 4.9 24 11.1 999.9 84.9 66.9 0.09G 999.9 010000 724050 13743 20040520 69.2 24 62.9 24 1022.6 21 9999.9 0 9.0 24 7.0 24 10.1 999.9 79.0 66.0 0.06G 999.9 000000 724050 13743 20040521 73.8 24 65.1 24 1018.8 22 9999.9 0 6.4 24 8.0 24 11.1 999.9 86.0 66.0 0.00G 999.9 110000 724050 13743 20040522 76.9 24 63.7 24 1015.3 24 9999.9 0 9.8 24 6.4 24 20.0 29.9 89.6* 66.0* 0.04G 999.9 010010 724050 13743 20040523 81.1 24 69.0 24 1012.0 24 9999.9 0 9.6 24 7.2 24 11.1 16.9 91.9 64.9 0.00G 999.9 000000 724050 13743 20040524 81.1 24 67.5 24 1010.5 24 9999.9 0 9.0 24 9.9 24 15.9 22.0 91.9 72.0 0.00G 999.9 000000 724050 13743 20040525 80.5 24 64.3 24 1010.8 24 9999.9 0 9.7 24 7.2 24 13.0 999.9 90.0 72.0 0.00G 999.9 010010 724050 13743 20040526 75.7 24 65.5 24 1008.6 22 9999.9 0 8.2 24 5.6 24 20.0 33.0 88.0 69.1 0.46G 999.9 110110 724050 13743 20040527 75.3 24 63.3 24 1006.8 24 9999.9 0 9.9 24 7.5 24 15.9 23.9 86.0 69.1 0.07G 999.9 010000 724050 13743 20040528 74.9 24 63.8 24 1004.6 22 9999.9 0 9.9 24 9.1 24 17.1 22.0 82.9 68.0 0.13G 999.9 010010 724050 13743 20040529 67.0 24 48.2 24 1014.3 24 9999.9 0 10.0 24 8.8 24 15.0 20.0 81.0 57.0 0.11G 999.9 010000 724050 13743 20040530 66.3 24 51.0 24 1016.4 24 9999.9 0 9.8 24 4.7 24 8.9 999.9 73.9 57.0 0.00G 999.9 010000 724050 13743 20040531 68.5 24 64.1 24 1007.3 20 9999.9 0 6.8 24 5.9 24 12.0 999.9 75.9 62.1 0.02G 999.9 110000 724050 13743 20040601 69.6 24 58.3 24 1006.0 24 9999.9 0 8.1 24 6.7 24 26.0 34.0 82.9 61.0 0.17G 999.9 110000 724050 13743 20040602 72.5 24 53.8 24 1010.6 24 9999.9 0 10.0 24 7.3 24 13.0 18.1 84.9 61.0 0.24G 999.9 000000 724050 13743 20040603 72.6 24 54.8 24 1016.3 24 9999.9 0 10.0 24 8.0 24 15.9 20.0 84.9 61.0 0.02G 999.9 000000 724050 13743 20040604 67.8 24 54.2 24 1021.5 24 9999.9 0 9.8 24 7.1 24 13.0 999.9 81.0 64.0 0.08D 999.9 010000 724050 13743 20040605 62.5 24 59.3 24 1016.6 19 9999.9 0 6.7 24 13.3 24 19.0 26.0 69.1 59.0 0.73G 999.9 110010 724050 13743 20040606 62.1 24 55.9 24 1018.3 23 9999.9 0 8.0 24 8.0 24 12.0 999.9 72.0 57.0 0.25G 999.9 110000 724050 13743 20040607 69.7 24 61.5 24 1020.9 24 9999.9 0 7.0 24 5.0 24 10.1 999.9 80.1 57.0 0.00G 999.9 100000 724050 13743 20040608 72.5 24 65.5 24 1023.1 24 9999.9 0 5.2 24 6.8 24 12.0 999.9 82.9 63.0 0.00G 999.9 100000 724050 13743 20040609 78.9 24 68.6 24 1019.7 24 9999.9 0 4.5 24 7.1 24 14.0 15.0 91.9 64.0 0.00G 999.9 100000 724050 13743 20040610 81.3 24 67.3 24 1013.7 24 9999.9 0 7.6 24 7.3 24 13.0 15.9 91.9 70.0 0.00G 999.9 100000 724050 13743 20040611 70.9 24 63.6 24 1012.8 22 9999.9 0 9.0 24 8.5 24 14.0 999.9 80.6* 60.8* 0.00G 999.9 110000 724050 13743 20040612 65.9 24 54.2 24 1018.6 22 9999.9 0 8.8 24 6.3 24 12.0 999.9 77.0 57.9 0.95G 999.9 110000 724050 13743 20040613 67.0 24 52.5 24 1022.5 24 9999.9 0 10.0 24 8.7 24 12.0 999.9 75.9 57.9 0.00G 999.9 000000 724050 13743 20040614 75.1 24 65.5 24 1017.9 24 9999.9 0 9.8 24 10.5 24 16.9 20.0 84.9 62.1 0.00G 999.9 000000 724050 13743 20040615 79.3 24 72.2 24 1017.0 23 9999.9 0 8.1 24 9.2 24 12.0 999.9 86.0 69.1 0.00G 999.9 010000 724050 13743 20040616 77.8 24 72.3 24 1019.3 24 9999.9 0 7.6 24 7.0 24 12.0 999.9 84.9* 73.4* 0.03G 999.9 110000 724050 13743 20040617 79.8 24 73.3 24 1017.4 20 9999.9 0 7.4 24 8.5 24 32.1 35.9 91.9 73.9 0.00G 999.9 110010 724050 13743 20040618 79.7 24 72.1 24 1014.1 19 9999.9 0 9.0 24 5.2 24 12.0 999.9 91.9 73.0 0.76G 999.9 110010 724050 13743 20040619 77.6 24 64.5 24 1013.3 24 9999.9 0 8.8 24 7.1 24 13.0 16.9 89.1 72.0 0.00G 999.9 010010 724050 13743 20040620 68.1 24 47.1 24 1017.6 24 9999.9 0 10.0 24 8.3 24 15.0 21.0 84.9 57.9 0.00G 999.9 000000 724050 13743 20040621 69.9 24 55.0 24 1016.6 24 9999.9 0 10.0 24 6.6 24 14.0 19.0 81.0 57.9 0.00G 999.9 000000 724050 13743 20040622 75.7 24 65.2 24 1011.1 23 9999.9 0 9.4 24 10.4 24 30.9 35.9 84.9 59.0 0.00G 999.9 110010 724050 13743 20040623 73.9 24 66.8 24 1013.6 24 9999.9 0 8.8 24 4.9 24 13.0 19.0 84.9 71.1 1.30G 999.9 110000 724050 13743 20040624 75.1 24 65.9 24 1016.8 24 9999.9 0 8.3 24 4.7 24 12.0 999.9 84.2* 68.0* 0.03G 999.9 100000 724050 13743 20040625 76.3 24 68.1 24 1017.4 23 9999.9 0 6.5 24 7.4 24 22.9 27.0 84.0 66.9 0.00G 999.9 110000 724050 13743 20040626 74.9 24 63.9 24 1013.3 24 9999.9 0 7.0 24 7.8 24 19.0 22.0 84.0 71.1 0.29G 999.9 110000 724050 13743 20040627 72.1 24 51.3 24 1019.4 24 9999.9 0 10.0 24 7.2 24 12.0 16.9 82.9 61.0 0.03G 999.9 000000 724050 13743 20040628 74.0 24 59.5 24 1018.5 24 9999.9 0 9.5 24 5.4 24 10.1 999.9 81.0 61.0 0.00G 999.9 000000 724050 13743 20040629 72.8 24 56.6 24 1019.0 24 9999.9 0 9.8 24 8.5 24 12.0 16.9 81.0 64.0 0.00G 999.9 000000 724050 13743 20040630 75.2 24 58.4 24 1021.4 24 9999.9 0 9.6 24 4.1 24 8.9 999.9 84.9 64.0 0.00G 999.9 000000 724050 13743 20040701 76.8 24 67.2 24 1020.4 22 9999.9 0 6.2 24 7.1 24 15.0 999.9 86.0 64.9 0.00G 999.9 100010 724050 13743 20040702 80.9 24 63.1 24 1017.1 24 9999.9 0 7.4 24 4.8 24 8.9 999.9 91.9 70.0 0.00G 999.9 000000 724050 13743 20040703 80.6 24 66.2 24 1015.5 24 9999.9 0 6.8 24 5.6 24 10.1 999.9 91.9 70.0 0.00G 999.9 000000 724050 13743 20040704 76.8 24 70.8 24 1014.9 20 9999.9 0 5.0 24 7.3 24 18.1 21.0 89.1 73.0 0.00G 999.9 110010 724050 13743 20040705 80.2 24 71.9 24 1012.1 21 9999.9 0 7.2 24 7.5 24 13.0 16.9 91.9 73.0 2.33G 999.9 110000 724050 13743 20040706 82.3 24 66.0 24 1013.5 24 9999.9 0 9.9 24 8.6 24 13.0 21.0 91.9 73.9 0.16G 999.9 000000 724050 13743 20040707 80.3 24 70.6 24 1011.5 24 9999.9 0 7.7 24 6.1 24 18.1 25.1 89.1 73.0 0.00G 999.9 110010 724050 13743 20040708 77.7 24 66.8 24 1011.4 24 9999.9 0 10.0 24 6.3 24 13.0 999.9 89.1 70.0 0.49G 999.9 010000 724050 13743 20040709 79.8 24 60.6 24 1015.6 24 9999.9 0 9.9 24 5.9 24 12.0 999.9 88.0 70.0 0.04G 999.9 000000 724050 13743 20040710 78.1 24 61.9 24 1019.2 24 9999.9 0 9.8 24 4.8 24 8.9 999.9 88.0 70.0 0.00G 999.9 000000 724050 13743 20040711 80.5 24 68.5 24 1018.7 24 9999.9 0 5.5 24 4.2 24 8.0 999.9 88.0 70.0 0.00G 999.9 000000 724050 13743 20040712 79.7 24 71.9 24 1015.5 24 9999.9 0 5.4 24 9.2 24 12.0 15.0 88.0 73.9 0.00G 999.9 110000 724050 13743 20040713 78.9 24 70.7 24 1010.2 20 9999.9 0 7.5 24 5.7 24 13.0 999.9 87.1* 73.4* 0.03G 999.9 100000 724050 13743 20040714 78.2 24 70.3 24 1005.6 21 9999.9 0 6.6 24 6.6 24 25.1 35.9 90.0 73.0 0.00G 999.9 010010 724050 13743 20040715 76.5 24 58.3 24 1004.5 24 9999.9 0 10.0 24 9.4 24 15.9 22.0 90.0 66.0 0.06G 999.9 000000 724050 13743 20040716 76.9 24 56.7 24 1008.2 24 9999.9 0 10.0 24 7.9 24 13.0 19.0 86.0 57.0 0.00G 999.9 000000 724050 13743 20040717 77.9 24 60.4 24 1011.0 23 9999.9 0 8.2 24 3.6 24 15.9 18.1 87.1 66.9 0.00G 999.9 010010 724050 13743 20040718 71.6 24 65.9 24 1010.9 24 9999.9 0 7.4 24 8.1 24 14.0 999.9 87.1 66.9 0.46G 999.9 110010 724050 13743 20040719 74.3 24 64.1 24 1009.7 21 9999.9 0 7.6 24 6.3 24 11.1 999.9 82.9 68.0 0.22G 999.9 010110 724050 13743 20040720 77.2 24 62.0 24 1012.9 24 9999.9 0 7.9 24 4.6 24 8.9 999.9 87.1 68.0 0.09G 999.9 000000 724050 13743 20040721 79.8 24 64.2 24 1015.1 24 9999.9 0 7.7 24 4.5 24 8.9 999.9 87.8* 71.6* 0.00G 999.9 000000 724050 13743 20040722 80.5 24 69.5 24 1013.0 24 9999.9 0 4.9 24 8.0 24 23.9 30.9 89.6* 73.0* 0.00G 999.9 110010 724050 13743 20040723 76.6 24 70.6 24 1012.2 23 9999.9 0 5.6 24 6.1 24 11.1 999.9 90.0 73.0 0.75G 999.9 110010 724050 13743 20040724 74.7 24 66.6 24 1018.9 23 9999.9 0 7.8 24 9.3 24 16.9 21.0 79.0* 69.8* 0.01G 999.9 110000 724050 13743 20040725 72.4 24 65.8 24 1022.8 23 9999.9 0 8.7 24 9.4 24 12.0 999.9 75.9* 69.8* 0.01G 999.9 110000 724050 13743 20040726 72.6 24 66.2 24 1020.9 21 9999.9 0 9.8 24 6.7 24 11.1 999.9 78.8* 69.1* 0.00G 999.9 010000 724050 13743 20040727 77.2 24 72.1 24 1015.1 19 9999.9 0 7.8 24 6.2 24 15.0 15.9 87.1 69.1 1.43G 999.9 110010 724050 13743 20040728 77.4 24 69.3 24 1014.7 19 9999.9 0 7.4 24 4.9 24 15.9 28.0 84.2* 71.6* 1.28G 999.9 110010 724050 13743 20040729 77.3 24 65.2 24 1017.9 24 9999.9 0 7.1 24 5.4 24 10.1 999.9 84.9 69.1 0.03G 999.9 010000 724050 13743 20040730 79.8 24 71.5 24 1018.7 22 9999.9 0 8.5 24 8.4 24 13.0 999.9 88.0 69.1 0.00G 999.9 100000 724050 13743 20040731 81.2 24 72.3 24 1018.2 24 9999.9 0 9.9 24 11.1 24 15.9 16.9 88.0 73.9 0.00G 999.9 010000 724050 13743 20040801 79.0 24 73.6 24 1017.3 24 9999.9 0 9.3 24 6.6 24 11.1 14.0 88.0 75.9 0.00G 999.9 110010 724050 13743 20040802 78.0 24 73.2 24 1015.2 21 9999.9 0 8.2 24 3.9 24 8.9 999.9 84.9 75.0 0.22G 999.9 110010 724050 13743 20040803 78.8 24 71.9 24 1011.3 22 9999.9 0 8.6 24 4.3 24 10.1 999.9 88.0 73.9 0.25G 999.9 110000 724050 13743 20040804 82.2 24 69.6 24 1008.4 24 9999.9 0 7.8 24 7.6 24 15.0 26.0 91.0 73.9 0.02G 999.9 000000 724050 13743 20040805 75.0 24 66.4 24 1008.1 22 9999.9 0 8.7 24 7.9 24 18.1 999.9 91.0 71.1 0.27G 999.9 110000 724050 13743 20040806 69.2 24 51.4 24 1012.3 24 9999.9 0 10.0 24 13.1 24 19.0 22.9 78.1 62.1 0.01G 999.9 010000 724050 13743 20040807 67.3 24 49.9 24 1015.0 24 9999.9 0 10.0 24 7.0 24 14.0 20.0 77.0 57.9 0.00G 999.9 000000 724050 13743 20040808 70.7 24 52.4 24 1019.7 24 9999.9 0 10.0 24 4.1 24 10.1 999.9 82.9 57.9 0.00G 999.9 000000 724050 13743 20040809 74.2 24 58.1 24 1020.4 24 9999.9 0 10.0 24 4.7 24 10.1 999.9 84.2* 64.4* 0.00G 999.9 000000 724050 13743 20040810 76.3 24 65.3 24 1016.5 24 9999.9 0 7.6 24 7.8 24 14.0 999.9 86.0 64.0 0.00G 999.9 100000 724050 13743 20040811 76.6 24 67.3 24 1012.7 23 9999.9 0 6.3 24 8.6 24 22.9 28.0 86.0 69.1 0.00G 999.9 010110 724050 13743 20040812 74.4 24 68.7 24 1013.2 22 9999.9 0 4.9 24 5.4 24 11.1 20.0 86.0 69.1 0.82G 999.9 110010 724050 13743 20040813 72.8 24 66.2 24 1013.0 21 9999.9 0 9.2 24 6.6 24 13.0 999.9 82.9 68.0 2.43G 999.9 110000 724050 13743 20040814 68.5 24 60.3 24 1020.3 24 9999.9 0 7.1 24 5.5 24 12.0 999.9 80.1 64.0 0.17G 999.9 110000 724050 13743 20040815 69.3 24 62.7 24 1023.1 24 9999.9 0 7.3 24 4.5 24 8.9 999.9 75.9 64.0 0.44G 999.9 110000 724050 13743 20040816 74.6 24 63.0 24 1022.3 24 9999.9 0 8.1 24 4.9 24 10.1 999.9 82.9 64.0 0.00G 999.9 100000 724050 13743 20040817 74.0 24 66.1 24 1020.3 24 9999.9 0 6.1 24 5.0 24 14.0 999.9 82.9 68.0 0.00G 999.9 110000 724050 13743 20040818 75.8 24 67.4 24 1016.5 22 9999.9 0 7.1 24 7.6 24 16.9 35.0 86.0 68.0 0.00G 999.9 110010 724050 13743 20040819 76.5 24 70.5 24 1015.7 23 9999.9 0 7.3 24 8.9 24 13.0 14.0 86.0 69.1 0.14G 999.9 100000 724050 13743 20040820 80.1 24 72.0 24 1016.5 24 9999.9 0 7.7 24 7.3 24 15.0 19.0 89.1 72.0 0.00G 999.9 100000 724050 13743 20040821 78.4 24 70.6 24 1011.9 21 9999.9 0 5.7 24 10.2 24 15.0 22.9 89.1 72.0 0.00G 999.9 010000 724050 13743 20040822 70.3 24 58.4 24 1017.4 24 9999.9 0 10.0 24 6.0 24 12.0 999.9 78.1* 62.6* 0.23G 999.9 000000 724050 13743 20040823 73.2 24 61.7 24 1017.0 24 9999.9 0 8.8 24 4.8 24 8.0 999.9 84.0 63.0 0.00G 999.9 100000 724050 13743 20040824 76.6 24 65.1 24 1018.9 24 9999.9 0 6.8 24 3.5 24 8.9 999.9 86.0 64.9 0.00G 999.9 100000 724050 13743 20040825 76.5 24 67.3 24 1023.6 24 9999.9 0 4.8 24 6.4 24 12.0 999.9 86.0 68.0 0.00G 999.9 100000 724050 13743 20040826 76.2 24 67.2 24 1023.8 21 9999.9 0 7.2 24 6.3 24 9.9 999.9 84.0 71.1 0.00G 999.9 100000 724050 13743 20040827 76.9 24 69.4 24 1021.4 20 9999.9 0 8.4 24 7.1 24 10.1 999.9 84.0 71.1 0.00G 999.9 100000 724050 13743 20040828 79.2 24 70.7 24 1017.2 24 9999.9 0 9.5 24 8.1 24 11.1 999.9 87.8* 73.0* 0.00G 999.9 100000 724050 13743 20040829 79.3 24 70.3 24 1014.7 24 9999.9 0 9.8 24 8.2 24 12.0 999.9 87.1 72.0 0.00G 999.9 000000 724050 13743 20040830 78.7 24 71.5 24 1014.2 21 9999.9 0 9.8 24 7.7 24 14.0 999.9 87.1 73.0 0.00G 999.9 010000 724050 13743 20040831 78.7 24 67.5 24 1015.5 24 9999.9 0 10.0 24 11.0 24 14.0 19.0 84.9 73.0 0.08G 999.9 000000 724050 13743 20040901 75.4 24 58.6 24 1021.8 24 9999.9 0 9.9 24 4.5 24 8.9 999.9 84.2* 66.0* 0.00G 999.9 000000 724050 13743 20040902 74.9 24 60.4 24 1023.3 24 9999.9 0 9.9 24 4.8 24 10.1 999.9 84.0 66.0 0.00G 999.9 000000 724050 13743 20040903 74.2 24 61.5 24 1023.6 24 9999.9 0 9.5 24 4.8 24 8.0 999.9 84.0 66.9 0.00G 999.9 000000 724050 13743 20040904 76.2 24 64.9 24 1021.4 24 9999.9 0 9.8 24 4.4 24 8.9 999.9 84.9 66.9 0.00G 999.9 000000 724050 13743 20040905 74.5 24 64.4 24 1022.5 24 9999.9 0 8.3 24 6.2 24 15.9 22.9 84.9 68.0 0.00G 999.9 110000 724050 13743 20040906 69.6 24 62.8 24 1024.0 20 9999.9 0 9.8 24 11.0 24 14.0 999.9 75.9* 64.4* 0.01G 999.9 010000 724050 13743 20040907 73.5 24 66.8 24 1018.8 21 9999.9 0 9.2 24 6.0 24 12.0 999.9 81.0 64.9 0.03G 999.9 110000 724050 13743 20040908 75.8 24 71.4 24 1014.5 22 9999.9 0 8.6 24 7.8 24 15.0 18.1 81.0 68.0 0.09G 999.9 110000 724050 13743 20040909 77.4 24 69.5 24 1009.8 19 9999.9 0 9.5 24 14.1 24 22.0 28.9 82.9 73.0 0.33G 999.9 010010 724050 13743 20040910 73.4 24 59.8 24 1019.9 24 9999.9 0 10.0 24 6.3 24 10.1 999.9 82.9 64.0 0.02G 999.9 000000 724050 13743 20040911 71.6 24 60.6 24 1023.3 24 9999.9 0 10.0 24 6.0 24 10.1 999.9 82.9 64.0 0.00G 999.9 000000 724050 13743 20040912 71.7 24 62.1 24 1023.1 24 9999.9 0 9.9 24 4.0 24 8.0 999.9 80.1 64.0 0.00G 999.9 000000 724050 13743 20040913 73.4 24 63.1 24 1022.2 24 9999.9 0 8.4 24 3.7 24 8.0 999.9 84.9 64.9 0.00G 999.9 100000 724050 13743 20040914 72.7 24 64.9 24 1023.9 22 9999.9 0 5.9 24 3.4 24 11.1 20.0 84.9 64.9 0.00G 999.9 110000 724050 13743 20040915 68.2 24 63.7 24 1024.0 20 9999.9 0 8.6 24 8.1 24 11.1 999.9 71.1* 64.4* 0.09G 999.9 110000 724050 13743 20040916 71.2 24 66.1 24 1019.1 21 9999.9 0 6.2 24 4.0 24 10.1 999.9 77.0 64.9 0.15G 999.9 110000 724050 13743 20040917 74.6 24 69.4 24 1013.5 21 9999.9 0 8.1 24 7.3 24 16.9 23.9 81.0 68.0 0.00G 999.9 110010 724050 13743 20040918 70.1 24 62.4 24 1006.3 17 9999.9 0 8.6 24 15.5 24 27.0 35.0 78.8* 62.6* 0.81G 999.9 110010 724050 13743 20040919 61.8 24 43.4 24 1022.0 24 9999.9 0 10.0 24 12.6 24 22.9 27.0 73.9 51.1 0.02G 999.9 000000 724050 13743 20040920 61.8 24 43.8 24 1027.9 24 9999.9 0 10.0 24 6.7 24 12.0 999.9 72.0* 53.1* 0.00G 999.9 000000 724050 13743 20040921 65.4 24 50.8 24 1026.0 24 9999.9 0 10.0 24 1.5 24 7.0 999.9 79.0 52.0 0.00G 999.9 000000 724050 13743 20040922 71.6 24 55.3 24 1024.0 24 9999.9 0 10.0 24 3.5 24 8.9 999.9 86.0 54.0 0.00G 999.9 000000 724050 13743 20040923 72.5 24 58.4 24 1022.8 24 9999.9 0 9.0 24 2.8 24 7.0 999.9 87.1 60.1 0.00G 999.9 100000 724050 13743 20040924 72.3 24 62.2 24 1023.3 24 9999.9 0 8.6 24 2.3 24 7.0 999.9 87.1 61.0 0.00G 999.9 100000 724050 13743 20040925 68.9 24 59.6 24 1021.2 24 9999.9 0 9.8 24 3.2 24 8.9 999.9 80.1 59.0 0.00G 999.9 000000 724050 13743 20040926 68.2 24 60.2 24 1019.4 24 9999.9 0 9.3 24 3.3 24 8.9 999.9 78.1 62.1 0.00G 999.9 000000 724050 13743 20040927 69.8 24 61.8 24 1019.9 22 9999.9 0 9.0 24 4.0 24 9.9 999.9 77.0 62.1 0.00G 999.9 110000 724050 13743 20040928 72.5 24 69.5 24 1008.8 17 9999.9 0 6.5 24 7.8 24 23.9 30.9 77.0 64.0 0.00G 999.9 110000 724050 13743 20040929 68.3 24 60.9 24 1010.0 24 9999.9 0 9.9 24 11.6 24 20.0 23.9 77.0 64.0 2.46G 999.9 010000 724050 13743 20040930 68.9 24 59.1 24 1017.2 24 9999.9 0 7.6 24 4.7 24 10.1 999.9 75.9 64.0 0.00G 999.9 110000 724050 13743 20041001 65.2 24 55.0 24 1022.3 24 9999.9 0 9.0 24 3.7 24 8.9 999.9 73.9 55.0 0.00G 999.9 000000 724050 13743 20041002 67.7 24 62.1 24 1021.3 19 9999.9 0 6.3 24 5.1 24 30.9 36.9 73.9 55.0 0.33G 999.9 110010 724050 13743 20041003 64.4 24 53.3 24 1021.6 24 9999.9 0 8.5 24 5.7 24 14.0 20.0 70.0* 57.2* 0.51G 999.9 100000 724050 13743 20041004 64.3 24 54.8 24 1019.1 24 9999.9 0 9.9 24 4.5 24 11.1 999.9 73.4* 57.9* 0.00G 999.9 000000 724050 13743 20041005 59.7 24 44.0 24 1024.0 24 9999.9 0 9.9 24 8.8 24 13.0 19.0 73.0 53.1 0.00G 999.9 000000 724050 13743 20041006 55.2 24 40.4 24 1030.1 24 9999.9 0 10.0 24 3.7 24 8.9 999.9 66.0 45.0 0.00G 999.9 000000 724050 13743 20041007 60.0 24 47.1 24 1030.6 24 9999.9 0 10.0 24 3.5 24 8.0 999.9 75.0 45.0 0.00G 999.9 000000 724050 13743 20041008 63.4 24 52.5 24 1028.4 24 9999.9 0 9.5 24 3.4 24 8.9 999.9 75.0 48.9 0.00G 999.9 000000 724050 13743 20041009 63.5 24 56.8 24 1022.3 22 9999.9 0 7.8 24 5.7 24 10.1 999.9 75.0 53.1 0.00G 999.9 100000 724050 13743 20041010 65.1 24 52.8 24 1017.8 24 9999.9 0 9.3 24 7.6 24 15.9 21.0 71.6* 59.0* 0.00G 999.9 100000 724050 13743 20041011 56.5 24 41.9 24 1019.4 24 9999.9 0 10.0 24 10.4 24 15.9 999.9 71.1 51.1 0.00G 999.9 000000 724050 13743 20041012 54.5 24 40.0 24 1014.0 24 9999.9 0 10.0 24 7.2 24 12.0 999.9 66.9* 44.1* 0.00G 999.9 000000 724050 13743 20041013 55.2 24 45.3 24 1007.5 24 9999.9 0 10.0 24 2.7 24 6.0 999.9 66.9 44.1 0.00G 999.9 010000 724050 13743 20041014 59.7 24 51.4 24 1002.2 24 9999.9 0 9.3 24 5.4 24 8.9 999.9 70.0 46.9 0.00G 999.9 010000 724050 13743 20041015 61.7 24 56.1 24 1000.7 18 9999.9 0 8.6 24 6.5 24 15.0 25.1 70.0 53.1 0.01G 999.9 110010 724050 13743 20041016 53.5 24 43.8 24 1002.5 23 9999.9 0 10.0 24 9.3 24 28.0 43.9 64.0 48.0 0.07G 999.9 010000 724050 13743 20041017 52.4 24 32.0 24 1011.0 24 9999.9 0 10.0 24 9.6 24 15.9 23.9 64.4* 44.1* 0.02G 999.9 000000 724050 13743 20041018 52.8 24 36.3 24 1018.6 24 9999.9 0 10.0 24 3.3 24 12.0 999.9 66.0 41.0 0.00G 999.9 000000 724050 13743 20041019 58.5 24 53.6 24 1014.8 22 9999.9 0 6.6 24 7.2 24 15.0 999.9 66.0 41.0 0.01G 999.9 110000 724050 13743 20041020 54.1 24 52.2 24 1017.4 23 9999.9 0 4.6 24 10.3 24 13.0 999.9 62.1 53.1 0.28G 999.9 110000 724050 13743 20041021 53.9 24 51.5 24 1019.9 19 9999.9 0 5.3 24 6.0 24 8.9 999.9 55.9 52.0 0.33G 999.9 110000 724050 13743 20041022 53.3 24 48.0 24 1022.9 23 9999.9 0 8.7 24 8.0 24 10.1 999.9 57.2* 51.1* 0.01G 999.9 110000 724050 13743 20041023 50.5 24 41.2 24 1022.9 24 9999.9 0 9.8 24 4.9 24 8.9 999.9 68.0 43.0 0.00G 999.9 000000 724050 13743 20041024 49.6 24 43.1 24 1016.9 24 9999.9 0 9.7 24 2.2 24 6.0 999.9 59.0 43.0 0.06G 999.9 010000 724050 13743 20041025 52.9 24 47.9 24 1018.1 19 9999.9 0 6.9 24 1.4 24 6.0 999.9 57.9 46.0 0.02G 999.9 110000 724050 13743 20041026 55.5 24 48.6 24 1021.2 22 9999.9 0 6.1 24 2.5 24 7.0 999.9 66.9 46.0 0.00G 999.9 110000 724050 13743 20041027 56.3 24 45.9 24 1023.0 24 9999.9 0 9.8 24 2.7 24 7.0 999.9 66.9 46.0 0.00G 999.9 000000 724050 13743 20041028 56.3 24 46.6 24 1024.9 24 9999.9 0 10.0 24 2.8 24 8.9 999.9 64.4* 51.1* 0.00G 999.9 000000 724050 13743 20041029 56.0 24 50.9 24 1020.4 23 9999.9 0 8.4 24 5.7 24 8.9 999.9 64.0 51.1 0.00G 999.9 110000 724050 13743 20041030 61.6 24 58.9 24 1012.1 18 9999.9 0 3.1 24 5.8 24 10.1 999.9 72.0 54.0 0.07G 999.9 110000 724050 13743 20041031 68.4 24 54.2 24 1009.5 24 9999.9 0 6.6 24 8.9 24 17.1 23.9 78.8* 60.8* 0.01G 999.9 100000 724050 13743 20041101 63.3 24 39.4 24 1018.6 24 9999.9 0 9.9 24 5.9 24 14.0 999.9 79.0 55.0 0.00G 999.9 000000 724050 13743 20041102 61.0 24 50.1 24 1019.4 24 9999.9 0 9.7 24 3.1 24 7.0 999.9 71.6* 51.8* 0.00G 999.9 000000 724050 13743 20041103 63.8 24 49.9 24 1017.2 24 9999.9 0 9.4 24 9.5 24 19.0 25.1 71.1 52.0 0.00G 999.9 000000 724050 13743 20041104 51.3 24 39.4 24 1019.5 19 9999.9 0 7.4 24 3.7 24 10.1 999.9 57.2* 46.4* 0.00G 999.9 110000 724050 13743 20041105 52.3 24 33.6 24 1009.9 22 9999.9 0 10.0 24 12.6 24 21.0 29.9 57.0 46.9 1.71G 999.9 000000 724050 13743 20041106 50.2 24 30.6 24 1014.8 24 9999.9 0 10.0 24 5.2 24 15.0 19.0 64.0 37.0 0.00G 999.9 000000 724050 13743 20041107 54.3 24 40.6 24 1012.2 24 9999.9 0 10.0 24 4.0 24 11.1 999.9 69.1 37.0 0.00G 999.9 000000 724050 13743 20041108 52.4 24 33.8 24 1018.1 24 9999.9 0 10.0 24 10.7 24 19.0 22.9 69.1 43.0 0.00G 999.9 000000 724050 13743 20041109 43.2 24 22.6 24 1030.5 24 9999.9 0 10.0 24 8.0 24 15.0 20.0 60.1 36.0 0.00G 999.9 000000 724050 13743 20041110 42.1 24 27.0 24 1034.8 24 9999.9 0 10.0 24 4.5 24 11.1 999.9 51.1 34.0 0.00G 999.9 000000 724050 13743 20041111 48.5 24 35.5 24 1028.2 24 9999.9 0 10.0 24 8.4 24 12.0 999.9 55.9 34.0 0.00G 999.9 000000 724050 13743 20041112 47.9 24 43.4 24 1022.9 19 9999.9 0 5.8 24 5.8 24 13.0 999.9 55.9 43.0 0.46G 999.9 110000 724050 13743 20041113 44.2 24 32.8 24 1028.7 22 9999.9 0 9.0 24 14.5 24 18.1 25.1 50.0 39.0 1.65G 999.9 110000 724050 13743 20041114 41.1 24 21.2 24 1039.9 24 9999.9 0 10.0 24 9.9 24 17.1 999.9 51.1 33.1 0.05G 999.9 000000 724050 13743 20041115 45.6 24 26.5 24 1036.9 24 9999.9 0 9.8 24 4.3 24 11.1 15.0 60.1 33.1 0.00G 999.9 000000 724050 13743 20041116 50.2 24 31.9 24 1030.6 24 9999.9 0 10.0 24 2.0 24 8.9 999.9 63.0 34.0 0.00G 999.9 000000 724050 13743 20041117 50.7 24 36.4 24 1027.2 24 9999.9 0 9.9 24 2.2 24 8.0 999.9 63.0 39.0 0.00G 999.9 000000 724050 13743 20041118 52.8 24 44.8 24 1023.7 24 9999.9 0 9.5 24 3.1 24 8.9 999.9 63.0 41.0 0.03G 999.9 010000 724050 13743 20041119 53.4 24 49.2 24 1021.0 23 9999.9 0 6.8 24 1.1 24 6.0 999.9 59.0* 46.4* 0.00D 999.9 110000 724050 13743 20041120 55.9 24 52.1 24 1019.9 23 9999.9 0 4.0 24 1.4 24 6.0 999.9 61.0 46.9 0.02G 999.9 110000 724050 13743 20041121 56.5 24 52.0 24 1022.8 21 9999.9 0 4.4 24 2.9 24 8.9 999.9 64.0 52.0 0.15G 999.9 110000 724050 13743 20041122 54.8 24 50.1 24 1022.0 24 9999.9 0 5.5 24 1.5 24 7.0 999.9 64.0 52.0 0.00G 999.9 100000 724050 13743 20041123 52.2 24 49.8 24 1018.5 17 9999.9 0 2.3 24 4.4 24 8.9 999.9 57.9 50.0 0.02G 999.9 110000 724050 13743 20041124 55.7 24 54.2 24 1012.5 19 9999.9 0 3.3 24 5.2 24 12.0 999.9 62.6* 51.8* 0.04G 999.9 110000 724050 13743 20041125 58.8 24 49.6 24 999.4 20 9999.9 0 8.6 24 14.5 24 28.0 35.9 66.0 44.1 0.17G 999.9 110000 724050 13743 20041126 40.5 24 19.2 24 1019.1 24 9999.9 0 10.0 24 9.8 24 20.0 28.0 48.0* 33.8* 0.04G 999.9 000000 724050 13743 20041127 44.1 24 29.6 24 1025.2 24 9999.9 0 10.0 24 7.0 24 13.0 999.9 53.6* 37.0* 0.00G 999.9 000000 724050 13743 20041128 54.5 24 46.1 24 1013.9 20 9999.9 0 8.9 24 9.9 24 19.0 30.9 60.1 37.0 0.20G 999.9 110000 724050 13743 20041129 45.1 24 28.4 24 1024.8 24 9999.9 0 10.0 24 6.5 24 14.0 19.0 60.1 39.0 0.17G 999.9 000000 724050 13743 20041130 47.3 24 35.0 24 1024.7 24 9999.9 0 10.0 24 2.1 24 7.0 999.9 54.0 39.0 0.00G 999.9 010000 724050 13743 20041201 50.9 24 40.1 24 1012.9 23 9999.9 0 8.5 24 11.6 24 22.0 36.9 57.9 43.0 0.26G 999.9 110000 724050 13743 20041202 44.7 24 24.5 24 1019.4 24 9999.9 0 10.0 24 2.5 24 10.1 999.9 57.9 33.1 0.13G 999.9 000000 724050 13743 20041203 43.4 24 27.5 24 1013.5 24 9999.9 0 10.0 24 5.0 24 17.1 23.9 52.0 33.1 0.00G 999.9 000000 724050 13743 20041204 39.7 24 25.6 24 1018.5 24 9999.9 0 9.5 24 6.2 24 12.0 999.9 52.0 30.0 0.00G 999.9 000000 724050 13743 20041205 45.3 24 32.1 24 1019.9 24 9999.9 0 10.0 24 5.8 24 11.1 999.9 59.0 30.0 0.00G 999.9 000000 724050 13743 20041206 47.3 24 37.9 24 1022.6 24 9999.9 0 9.8 24 4.2 24 10.1 999.9 59.0 34.0 0.00G 999.9 010000 724050 13743 20041207 51.1 24 47.4 24 1016.3 18 9999.9 0 4.6 24 3.2 24 10.1 999.9 60.8* 48.0* 0.30G 999.9 110000 724050 13743 20041208 59.0 24 44.0 24 1013.9 24 9999.9 0 9.7 24 8.5 24 15.9 19.0 64.4* 51.8* 0.26G 999.9 110010 724050 13743 20041209 47.1 24 39.6 24 1021.2 21 9999.9 0 8.6 24 4.1 24 8.9 999.9 63.0 41.0 0.00G 999.9 110000 724050 13743 20041210 51.4 24 49.8 24 1004.9 16 9999.9 0 2.4 24 3.6 24 8.9 999.9 54.0 41.0 0.69G 999.9 110000 724050 13743 20041211 50.2 24 45.9 24 998.2 19 9999.9 0 7.4 24 5.5 24 14.0 18.1 54.0 45.0 0.20G 999.9 110100 724050 13743 20041212 44.2 24 29.3 24 1006.7 24 9999.9 0 10.0 24 8.6 24 15.0 22.0 54.0 41.0 0.26G 999.9 010000 724050 13743 20041213 45.9 24 28.1 24 1005.3 24 9999.9 0 10.0 24 11.2 24 17.1 29.9 50.0 41.0 0.00G 999.9 010000 724050 13743 20041214 36.8 24 18.2 24 1018.7 24 9999.9 0 10.0 24 12.9 24 18.1 25.1 41.0* 33.8* 0.00G 999.9 000000 724050 13743 20041215 31.6 24 13.2 24 1030.5 24 9999.9 0 9.9 24 11.3 24 15.9 22.0 41.0 25.0 0.00G 999.9 000000 724050 13743 20041216 33.6 24 18.0 24 1031.3 24 9999.9 0 10.0 24 5.0 24 10.1 999.9 46.0 24.1 0.00G 999.9 000000 724050 13743 20041217 42.1 24 21.5 24 1023.9 24 9999.9 0 10.0 24 6.7 24 13.0 15.9 50.0 24.1 0.00G 999.9 000000 724050 13743 20041218 37.9 24 25.8 24 1022.3 24 9999.9 0 9.8 24 3.1 24 7.0 999.9 50.0 28.9 0.00G 999.9 000000 724050 13743 20041219 37.2 24 32.4 24 1009.8 23 9999.9 0 5.6 24 2.5 24 21.0 30.9 50.0 28.9 0.00G 999.9 111000 724050 13743 20041220 18.7 24 -1.0 24 1015.5 24 9999.9 0 8.9 24 19.4 24 30.1 37.9 30.9* 10.4* 0.08G 999.9 001000 724050 13743 20041221 28.0 24 7.6 24 1020.6 24 9999.9 0 10.0 24 7.4 24 13.0 999.9 43.0 10.9 0.00G 999.9 000000 724050 13743 20041222 41.1 24 27.0 24 1022.8 24 9999.9 0 9.7 24 3.8 24 14.0 19.0 60.1 21.0 0.00G 999.9 000000 724050 13743 20041223 52.9 24 45.8 24 1014.7 22 9999.9 0 8.6 24 11.3 24 27.0 37.9 60.8* 42.8* 0.01G 999.9 110010 724050 13743 20041224 32.7 24 17.3 24 1021.9 24 9999.9 0 10.0 24 12.1 24 19.0 29.9 43.0* 28.9* 0.88G 999.9 000000 724050 13743 20041225 27.4 24 12.1 24 1025.2 24 9999.9 0 10.0 24 6.5 24 12.0 999.9 34.0 24.1 0.00G 999.9 000000 724050 13743 20041226 27.4 24 12.0 24 1023.8 24 9999.9 0 10.0 24 8.5 24 13.0 999.9 34.0 21.9 0.00G 999.9 000000 724050 13743 20041227 29.3 24 7.4 24 1028.1 24 9999.9 0 10.0 24 13.3 24 22.0 27.0 34.0 21.9 0.00G 999.9 000000 724050 13743 20041228 27.0 24 7.9 24 1036.4 24 9999.9 0 10.0 24 7.8 24 12.0 16.9 36.0 19.9 0.00G 999.9 000000 724050 13743 20041229 38.1 24 20.1 24 1025.4 24 9999.9 0 10.0 24 6.4 24 10.1 999.9 50.0 19.9 0.00G 999.9 000000 724050 13743 20041230 42.1 24 30.7 24 1029.2 24 9999.9 0 9.2 24 1.2 24 6.0 999.9 50.0 32.0 0.00G 999.9 000000 724050 13743 20041231 46.8 24 37.6 24 1030.1 24 9999.9 0 7.5 24 6.8 24 14.0 16.9 59.0 32.0 0.00G 999.9 100000 fluids-1.0.22/tests/gsod/1972/0000755000175000017500000000000014302004506015102 5ustar nileshnileshfluids-1.0.22/tests/gsod/1972/724050-13743.op0000644000175000017500000000001114302004506016652 0ustar nileshnileshExceptionfluids-1.0.22/tests/gsod/2003/0000755000175000017500000000000014302004506015064 5ustar nileshnileshfluids-1.0.22/tests/gsod/2003/724050-13743.op0000644000175000017500000014327214302004506016655 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20030101 49.5 24 45.6 24 1010.4 24 9999.9 0 5.3 24 8.4 24 17.1 999.9 61.0 36.0 0.52G 999.9 110010 724050 13743 20030102 42.3 24 38.8 24 1011.1 24 9999.9 0 9.5 24 10.0 24 20.0 28.9 46.9* 39.2* 1.00G 999.9 110000 724050 13743 20030103 38.7 24 38.1 24 1012.6 24 9999.9 0 3.6 24 9.9 24 14.0 999.9 43.0 36.0 0.25G 999.9 110000 724050 13743 20030104 36.2 24 26.7 24 1012.1 24 9999.9 0 9.9 24 12.5 24 18.1 23.9 41.0 34.0 0.19G 999.9 000000 724050 13743 20030105 31.2 24 24.3 24 1019.5 24 9999.9 0 7.3 24 3.6 24 7.0 999.9 41.0 28.0 0.00G 3.1 101000 724050 13743 20030106 34.0 24 31.8 24 1015.2 24 9999.9 0 5.9 24 3.6 24 15.0 21.0 37.4* 32.0* 0.20G 1.2 111000 724050 13743 20030107 30.4 24 15.9 24 1016.7 24 9999.9 0 9.9 24 13.5 24 22.9 30.9 35.1* 24.8* 0.01G 3.1 000000 724050 13743 20030108 40.9 24 24.4 24 1000.6 24 9999.9 0 9.9 24 8.7 24 21.0 28.0 54.0 25.0 0.00G 999.9 000000 724050 13743 20030109 49.1 24 33.7 24 993.8 24 9999.9 0 9.9 24 7.6 24 15.0 21.0 62.1 35.1 0.00G 999.9 000000 724050 13743 20030110 44.8 24 29.9 24 1001.7 24 9999.9 0 9.9 24 9.7 24 20.0 22.9 62.1 37.0 0.00G 999.9 010000 724050 13743 20030111 32.6 24 14.4 24 1015.6 24 9999.9 0 9.9 24 11.1 24 18.1 27.0 50.0 26.1 0.00G 999.9 000000 724050 13743 20030112 28.2 24 9.4 24 1025.4 24 9999.9 0 9.9 24 11.0 24 18.1 23.9 43.0 23.0 0.00G 999.9 000000 724050 13743 20030113 31.5 23 17.9 23 1020.7 23 9999.9 0 9.9 23 5.6 23 12.0 999.9 46.0* 24.1* 0.00G 999.9 000000 724050 13743 20030114 31.4 24 16.8 24 1020.6 24 9999.9 0 10.0 24 9.4 24 15.9 20.0 46.0 23.0 0.00G 999.9 000000 724050 13743 20030115 28.8 24 16.1 24 1022.0 24 9999.9 0 9.7 24 8.2 24 13.0 21.0 33.8* 24.1* 0.00G 999.9 101000 724050 13743 20030116 24.0 24 7.6 24 1026.6 24 9999.9 0 9.9 24 8.2 24 12.0 999.9 30.0* 19.4* 0.00G 999.9 000000 724050 13743 20030117 25.9 24 20.0 24 1014.7 24 9999.9 0 8.0 24 9.5 24 18.1 25.1 32.0 19.9 0.03G 1.2 101000 724050 13743 20030118 19.2 24 6.0 24 1021.7 24 9999.9 0 9.9 24 9.1 24 19.0 25.1 32.0 10.9 0.00G 1.2 000000 724050 13743 20030119 24.7 24 11.5 24 1016.5 24 9999.9 0 9.8 24 8.8 24 15.0 26.0 33.1 10.9 0.00G 999.9 001000 724050 13743 20030120 33.6 24 19.4 24 1010.4 24 9999.9 0 9.9 24 11.5 24 18.1 23.9 41.0 19.0 0.00G 999.9 000000 724050 13743 20030121 26.7 24 16.2 24 1017.8 24 9999.9 0 8.3 24 7.5 24 14.0 999.9 41.0 21.9 0.00G 1.2 101000 724050 13743 20030122 21.8 24 8.1 24 1020.4 24 9999.9 0 9.9 24 9.8 24 16.9 21.0 28.0* 15.8* 0.02G 999.9 000000 724050 13743 20030123 18.1 24 0.4 24 1018.5 24 9999.9 0 10.0 24 15.7 24 22.0 30.9 28.0 14.0 0.00G 999.9 000000 724050 13743 20030124 21.8 24 7.7 24 1021.9 24 9999.9 0 9.3 24 16.1 24 22.9 32.1 35.1 14.0 0.00G 999.9 101000 724050 13743 20030125 25.3 24 13.3 24 1028.0 24 9999.9 0 10.0 24 7.2 24 13.0 999.9 36.0 14.0 0.00G 999.9 000000 724050 13743 20030126 29.8 24 24.4 24 1020.7 24 9999.9 0 9.6 24 4.4 24 14.0 999.9 42.1 16.0 0.00G 999.9 101000 724050 13743 20030127 22.3 24 9.8 24 1026.9 24 9999.9 0 9.4 24 14.8 24 21.0 26.0 42.1 14.0 0.00G 999.9 101000 724050 13743 20030128 22.6 24 7.1 24 1028.6 24 9999.9 0 9.9 24 7.1 24 10.1 999.9 35.1 14.0 0.00G 999.9 000000 724050 13743 20030129 33.3 24 28.6 24 1020.1 24 9999.9 0 8.2 24 4.5 24 8.0 999.9 36.0* 32.0* 0.00G 999.9 110000 724050 13743 20030130 32.2 24 26.2 24 1028.2 24 9999.9 0 5.8 24 7.4 24 11.1 999.9 36.0 28.9 0.08G 999.9 101000 724050 13743 20030131 33.9 24 29.4 24 1024.9 24 9999.9 0 4.6 24 8.5 24 12.0 999.9 36.0 28.9 0.00G 999.9 110000 724050 13743 20030201 36.7 24 34.9 24 1013.1 24 9999.9 0 3.6 24 6.9 24 11.1 999.9 41.0 33.1 0.18G 999.9 110000 724050 13743 20030202 42.0 24 29.8 24 1011.3 24 9999.9 0 9.9 24 8.2 24 13.0 20.0 50.0 34.0 0.07G 999.9 000000 724050 13743 20030203 39.8 24 27.8 24 1013.9 24 9999.9 0 9.4 24 5.5 24 8.9 999.9 50.0 30.9 0.00G 999.9 100000 724050 13743 20030204 43.5 24 32.6 24 1002.1 24 9999.9 0 8.5 24 7.5 24 26.0 35.0 54.0 30.9 0.00G 999.9 110000 724050 13743 20030205 35.8 24 12.9 24 1016.3 24 9999.9 0 9.9 24 11.7 24 17.1 23.9 54.0 28.9 0.21G 999.9 000000 724050 13743 20030206 31.4 24 13.1 24 1028.0 24 9999.9 0 9.9 24 5.5 24 11.1 999.9 37.9 26.1 0.00G 999.9 000000 724050 13743 20030207 32.2 24 26.6 24 1017.6 24 9999.9 0 4.1 24 6.9 24 11.1 18.1 37.9 27.0 0.24G 5.9 101000 724050 13743 20030208 29.8 24 12.2 24 1020.5 24 9999.9 0 9.9 24 7.3 24 17.1 999.9 37.9 21.9 0.33G 5.1 000000 724050 13743 20030209 30.3 24 13.8 24 1020.5 24 9999.9 0 10.0 24 5.9 24 14.0 18.1 42.1 19.9 0.00G 2.0 000000 724050 13743 20030210 35.3 24 28.6 24 1012.1 24 9999.9 0 7.1 24 4.6 24 11.1 999.9 42.1 19.9 0.00G 2.0 101000 724050 13743 20030211 34.1 24 18.9 24 1011.9 24 9999.9 0 9.9 24 8.5 24 14.0 22.0 39.9 25.0 0.04G 1.2 000000 724050 13743 20030212 34.3 24 16.8 24 1011.3 24 9999.9 0 9.8 24 10.3 24 20.0 27.0 41.0 25.0 0.00G 1.2 000000 724050 13743 20030213 31.4 24 2.5 24 1017.3 24 9999.9 0 9.9 24 9.9 24 22.9 33.0 39.0 24.1 0.00G 999.9 000000 724050 13743 20030214 32.4 24 15.6 24 1021.7 24 9999.9 0 9.9 24 4.5 24 8.0 999.9 41.0 23.0 0.00G 999.9 000000 724050 13743 20030215 33.2 24 28.3 24 1022.0 24 9999.9 0 4.7 24 9.3 24 17.1 25.1 41.0 23.0 0.30G 999.9 111000 724050 13743 20030216 19.6 24 12.9 24 1033.0 24 9999.9 0 3.5 23 14.5 24 18.1 21.0 35.1 15.1 0.27G 7.9 101000 724050 13743 20030217 21.7 24 17.6 24 1020.7 24 9999.9 0 4.3 24 15.4 24 20.0 22.0 27.0 15.1 0.93G 15.0 101000 724050 13743 20030218 29.2 24 22.0 24 1019.0 24 9999.9 0 7.1 24 6.6 24 10.1 999.9 39.9 18.0 0.09G 11.0 101000 724050 13743 20030219 34.4 24 25.8 24 1025.1 24 9999.9 0 7.9 24 2.8 24 8.9 999.9 44.1 25.0 0.01G 9.1 110000 724050 13743 20030220 39.5 24 29.4 24 1025.3 24 9999.9 0 7.6 24 4.1 24 14.0 999.9 46.0 26.1 0.00G 9.1 100000 724050 13743 20030221 36.1 24 31.7 24 1021.4 24 9999.9 0 5.5 24 2.1 24 6.0 999.9 46.0 30.9 0.00G 5.9 110000 724050 13743 20030222 37.2 24 36.4 24 1008.0 24 9999.9 0 1.8 24 5.2 24 22.0 999.9 42.1 31.1 0.56G 5.1 110000 724050 13743 20030223 37.6 24 31.8 24 993.7 24 9999.9 0 5.3 20 8.9 24 22.9 34.0 43.0 35.1 2.27G 3.1 110000 724050 13743 20030224 36.5 24 22.4 24 1019.0 24 9999.9 0 9.9 24 7.6 24 15.9 25.1 51.1 28.0 0.13G 2.0 000000 724050 13743 20030225 35.1 24 18.5 24 1026.4 24 9999.9 0 9.9 24 11.1 24 15.0 22.9 51.1 28.0 0.00G 2.0 000000 724050 13743 20030226 25.9 24 14.8 24 1028.7 24 9999.9 0 5.6 24 8.9 24 12.0 999.9 39.0 21.9 0.00G 2.0 101000 724050 13743 20030227 27.6 24 22.9 24 1023.1 24 9999.9 0 6.0 24 8.7 24 12.0 999.9 32.0 21.9 0.06G 3.1 101000 724050 13743 20030228 31.7 24 28.0 24 1019.1 24 9999.9 0 4.4 24 7.1 24 11.1 999.9 37.0 25.0 0.14G 3.9 101000 724050 13743 20030301 35.7 24 32.5 24 1023.2 24 9999.9 0 5.0 24 6.2 24 11.1 999.9 39.9* 33.1* 0.03G 3.1 111000 724050 13743 20030302 41.9 24 37.0 24 1009.9 24 9999.9 0 6.2 24 5.9 24 14.0 20.0 52.0 33.1 0.38G 1.2 110000 724050 13743 20030303 31.9 24 11.3 24 1015.5 24 9999.9 0 9.9 24 12.8 24 20.0 26.0 46.9* 19.4* 0.03G 1.2 000000 724050 13743 20030304 30.6 24 14.0 24 1023.0 24 9999.9 0 10.0 24 6.0 24 8.9 999.9 46.0 19.9 0.00G 999.9 000000 724050 13743 20030305 46.1 24 39.1 24 1010.8 24 9999.9 0 8.1 24 4.3 24 11.1 999.9 66.9* 39.0* 0.06G 999.9 110000 724050 13743 20030306 44.9 24 39.5 24 1008.1 24 9999.9 0 6.9 24 9.1 24 21.0 999.9 68.0 33.1 0.11G 999.9 110000 724050 13743 20030307 30.9 24 19.6 24 1024.4 24 9999.9 0 9.9 24 8.7 24 19.0 999.9 37.9* 24.8* 0.12G 999.9 000000 724050 13743 20030308 38.7 24 28.0 24 1021.4 24 9999.9 0 9.4 24 4.4 24 15.0 999.9 57.0 25.0 0.00G 999.9 100000 724050 13743 20030309 51.1 24 34.5 24 1010.2 24 9999.9 0 9.9 24 12.2 24 19.0 22.9 60.1* 44.6* 0.00G 999.9 000000 724050 13743 20030310 33.7 24 11.6 24 1019.1 24 9999.9 0 9.9 24 11.6 24 18.1 21.0 44.1* 26.1* 0.00G 999.9 000000 724050 13743 20030311 34.0 24 20.1 24 1023.8 24 9999.9 0 9.1 24 7.6 24 12.0 999.9 44.1 26.1 0.00G 999.9 101000 724050 13743 20030312 41.7 24 33.1 24 1019.1 24 9999.9 0 8.9 24 5.8 24 10.1 999.9 59.0 28.9 0.00G 999.9 100000 724050 13743 20030313 52.7 24 41.1 24 1016.1 24 9999.9 0 8.9 24 4.2 24 15.9 999.9 69.1 32.0 0.00G 999.9 010000 724050 13743 20030314 39.3 24 22.5 24 1024.8 24 9999.9 0 8.7 24 11.0 24 20.0 25.1 50.0* 30.2* 0.16G 999.9 110000 724050 13743 20030315 41.8 24 26.6 24 1025.0 24 9999.9 0 9.9 24 8.8 24 15.0 999.9 59.0 30.0 0.00G 999.9 000000 724050 13743 20030316 51.6 24 40.9 24 1018.7 24 9999.9 0 9.9 24 4.3 24 10.1 999.9 66.9 32.0 0.00G 999.9 010000 724050 13743 20030317 57.4 24 54.8 24 1010.8 24 9999.9 0 6.5 24 5.7 24 8.9 999.9 66.9 43.0 0.02G 999.9 110000 724050 13743 20030318 59.8 24 52.0 24 1007.8 24 9999.9 0 6.2 24 6.1 24 13.0 999.9 68.0 53.1 0.01G 999.9 100000 724050 13743 20030319 48.5 24 38.5 24 1020.5 24 9999.9 0 8.8 24 11.7 24 17.1 23.9 60.1* 42.8* 0.00G 999.9 000000 724050 13743 20030320 41.9 24 37.8 24 1020.8 24 9999.9 0 6.4 24 10.5 24 15.9 999.9 51.1 39.0 0.07G 999.9 110000 724050 13743 20030321 47.8 24 45.5 24 1008.1 24 9999.9 0 5.4 24 3.3 24 7.0 999.9 57.9 39.0 1.88G 999.9 110000 724050 13743 20030322 55.3 24 47.4 24 1009.2 24 9999.9 0 6.3 24 6.0 24 12.0 999.9 66.9 42.1 0.02G 999.9 110000 724050 13743 20030323 57.1 24 37.4 24 1013.7 24 9999.9 0 9.9 24 6.9 24 17.1 18.1 66.9 43.0 0.00G 999.9 000000 724050 13743 20030324 57.5 24 38.7 24 1016.5 24 9999.9 0 9.9 24 4.7 24 12.0 15.9 66.9 45.0 0.00G 999.9 000000 724050 13743 20030325 56.5 24 42.4 24 1017.0 24 9999.9 0 9.5 24 7.9 24 15.0 999.9 71.1 45.0 0.00G 999.9 000000 724050 13743 20030326 60.4 24 46.2 24 1010.6 24 9999.9 0 9.3 24 10.7 24 26.0 34.0 75.9 46.0 0.00G 999.9 110000 724050 13743 20030327 51.4 24 42.7 24 1018.9 24 9999.9 0 7.9 24 5.2 24 12.0 999.9 75.9 41.0 0.43G 999.9 110000 724050 13743 20030328 51.5 24 42.4 24 1022.7 24 9999.9 0 9.7 24 5.1 24 8.9 999.9 64.9 41.0 0.00G 999.9 010000 724050 13743 20030329 61.3 24 57.5 24 1015.4 24 9999.9 0 7.8 24 8.2 24 15.9 18.1 72.0 44.1 0.07G 999.9 110000 724050 13743 20030330 44.8 24 39.9 24 1014.8 24 9999.9 0 7.5 24 12.7 24 17.1 26.0 72.0 34.0 0.38G 999.9 111000 724050 13743 20030331 36.5 24 22.3 24 1016.7 24 9999.9 0 9.8 24 12.9 24 19.0 30.9 53.1 30.9 0.46G 999.9 011000 724050 13743 20030401 44.0 24 29.8 24 1018.7 24 9999.9 0 9.9 24 10.1 24 21.0 26.0 63.0 30.9 0.00G 999.9 010000 724050 13743 20030402 60.0 24 43.3 24 1014.2 24 9999.9 0 9.9 24 6.9 24 15.0 19.0 80.1 32.0 0.00G 999.9 000000 724050 13743 20030403 66.9 24 47.4 24 1013.1 24 9999.9 0 9.9 24 6.5 24 13.0 16.9 82.9 45.0 0.00G 999.9 000000 724050 13743 20030404 52.5 24 46.2 24 1012.1 24 9999.9 0 5.2 24 8.3 24 12.0 999.9 73.0* 46.4* 0.00G 999.9 100000 724050 13743 20030405 48.7 24 45.3 24 1011.4 24 9999.9 0 5.7 24 7.9 24 12.0 999.9 59.0* 44.6* 0.00G 999.9 110000 724050 13743 20030406 49.6 24 31.0 24 1023.2 24 9999.9 0 9.6 24 9.6 24 22.0 28.9 59.0 39.9 0.00G 999.9 000000 724050 13743 20030407 42.9 24 33.8 24 1029.2 24 9999.9 0 7.0 24 10.3 24 17.1 22.0 55.9 37.9 0.14G 999.9 111000 724050 13743 20030408 38.4 24 36.0 24 1026.2 24 9999.9 0 6.6 24 8.7 24 13.0 999.9 48.0 37.0 0.54G 999.9 110000 724050 13743 20030409 40.0 24 37.4 24 1021.2 24 9999.9 0 7.6 24 10.8 24 14.0 999.9 46.0 37.0 0.32G 999.9 110000 724050 13743 20030410 45.3 24 38.2 24 1018.3 24 9999.9 0 9.1 24 15.7 24 22.9 28.0 52.0 37.9 0.19G 999.9 100000 724050 13743 20030411 44.1 24 39.2 24 1009.9 24 9999.9 0 6.2 24 13.8 24 24.1 33.0 52.0 39.9 0.24G 999.9 110000 724050 13743 20030412 55.8 24 39.1 24 1004.7 24 9999.9 0 9.8 24 13.1 24 17.1 23.9 70.0 39.9 0.01G 999.9 000000 724050 13743 20030413 57.5 24 32.1 24 1017.4 24 9999.9 0 9.9 24 7.6 24 13.0 16.9 70.0 44.1 0.00G 999.9 000000 724050 13743 20030414 56.4 24 39.0 24 1026.7 24 9999.9 0 9.9 24 4.1 24 11.1 999.9 69.1 43.0 0.00G 999.9 000000 724050 13743 20030415 62.2 24 43.9 24 1022.4 24 9999.9 0 9.9 24 8.5 24 12.0 18.1 82.9* 51.8* 0.00G 999.9 000000 724050 13743 20030416 70.4 24 51.2 24 1013.8 24 9999.9 0 9.9 24 8.2 24 11.1 999.9 84.9 50.0 0.00G 999.9 000000 724050 13743 20030417 57.5 24 42.8 24 1018.9 24 9999.9 0 9.9 24 14.0 24 22.9 32.1 84.9 44.1 0.00G 999.9 000000 724050 13743 20030418 41.7 24 38.8 24 1028.2 24 9999.9 0 6.2 24 12.1 24 17.1 21.0 46.4* 39.0* 0.00G 999.9 110000 724050 13743 20030419 50.0 24 44.8 24 1028.5 24 9999.9 0 6.6 24 7.6 24 11.1 999.9 62.1 39.0 0.13G 999.9 110000 724050 13743 20030420 55.0 24 42.4 24 1025.5 24 9999.9 0 9.9 24 3.7 24 10.1 999.9 66.9 44.1 0.01G 999.9 000000 724050 13743 20030421 55.9 24 49.8 24 1016.1 24 9999.9 0 8.9 24 5.2 24 8.9 999.9 68.0 44.1 0.00G 999.9 110000 724050 13743 20030422 59.4 24 50.8 24 1007.0 24 9999.9 0 8.9 24 5.7 24 14.0 22.0 68.0 48.9 0.15G 999.9 110000 724050 13743 20030423 53.5 24 31.8 24 1012.1 24 9999.9 0 10.0 24 13.1 24 22.9 28.9 66.9 45.0 0.00C 999.9 000000 724050 13743 20030424 54.2 24 19.7 24 1016.4 24 9999.9 0 9.9 24 10.3 24 17.1 25.1 66.0 43.0 0.00G 999.9 000000 724050 13743 20030425 58.0 24 41.2 24 1011.9 24 9999.9 0 9.7 24 4.9 24 13.0 999.9 69.1 43.0 0.00G 999.9 110000 724050 13743 20030426 58.1 24 55.1 24 1005.6 24 9999.9 0 6.2 24 5.7 24 11.1 999.9 69.1 48.9 0.40G 999.9 110000 724050 13743 20030427 61.7 24 48.1 24 1012.5 24 9999.9 0 9.2 24 8.4 24 12.0 15.0 71.1 52.0 0.30G 999.9 100000 724050 13743 20030428 61.8 24 45.0 24 1016.6 24 9999.9 0 9.9 24 6.1 24 11.1 999.9 75.9 46.9 0.00G 999.9 000000 724050 13743 20030429 66.0 24 54.7 24 1012.3 24 9999.9 0 8.8 24 6.9 24 13.0 19.0 75.9 46.9 0.00G 999.9 010000 724050 13743 20030430 65.8 24 47.8 24 1017.3 24 9999.9 0 9.6 24 5.9 24 12.0 999.9 75.9 54.0 0.00G 999.9 000000 724050 13743 20030501 66.5 24 59.1 24 1016.8 24 9999.9 0 5.9 24 8.5 24 17.1 999.9 78.1 54.0 0.13G 999.9 110010 724050 13743 20030502 70.6 24 60.9 24 1009.6 24 9999.9 0 9.7 24 7.2 24 11.1 16.9 81.0 59.0 0.00G 999.9 100000 724050 13743 20030503 62.2 24 48.4 24 1014.0 24 9999.9 0 9.9 24 10.6 24 18.1 999.9 78.1* 53.6* 0.00G 999.9 000000 724050 13743 20030504 57.8 24 43.8 24 1020.9 24 9999.9 0 9.9 24 5.8 24 8.9 999.9 66.0 53.1 0.00G 999.9 000000 724050 13743 20030505 52.3 24 42.6 24 1020.9 24 9999.9 0 9.2 24 5.5 24 9.9 999.9 64.9 48.9 0.00G 999.9 110000 724050 13743 20030506 55.7 24 52.9 24 1014.9 24 9999.9 0 4.2 24 3.8 24 10.1 999.9 63.0 48.9 0.15G 999.9 110000 724050 13743 20030507 64.0 24 59.4 24 1013.4 24 9999.9 0 4.7 23 4.8 24 15.9 26.0 80.1 52.0 0.01G 999.9 110010 724050 13743 20030508 69.0 24 63.3 24 1011.9 24 9999.9 0 7.4 24 4.0 24 15.0 999.9 80.1 54.0 0.38G 999.9 110010 724050 13743 20030509 63.4 24 60.3 24 1014.3 24 9999.9 0 5.1 24 5.5 24 13.0 999.9 73.0* 60.8* 0.11G 999.9 110010 724050 13743 20030510 63.2 24 60.8 24 1013.3 24 9999.9 0 4.2 24 6.5 24 13.0 999.9 73.0 60.1 0.25G 999.9 110000 724050 13743 20030511 70.0 24 65.9 24 1006.0 24 9999.9 0 5.1 24 7.1 24 18.1 28.9 82.0 60.1 0.36G 999.9 100000 724050 13743 20030512 69.1 24 47.6 24 1002.7 24 9999.9 0 10.0 24 11.2 24 15.9 22.9 82.0 62.1 0.01G 999.9 000000 724050 13743 20030513 60.6 24 42.5 24 1008.4 24 9999.9 0 9.9 24 13.3 24 25.1 35.0 72.0 57.0 0.00G 999.9 000000 724050 13743 20030514 62.0 24 40.8 24 1013.0 24 1010.2 8 9.9 24 7.3 24 14.0 16.9 73.0 48.9 0.00G 999.9 000000 724050 13743 20030515 63.8 24 51.0 24 1016.2 24 1013.9 13 9.9 24 7.1 24 17.1 22.0 73.9 48.9 0.00G 999.9 010000 724050 13743 20030516 59.5 24 56.2 24 1018.5 24 1016.3 24 7.0 24 12.5 24 18.1 22.9 73.9 54.0 1.64G 999.9 110010 724050 13743 20030517 51.4 24 48.8 24 1026.5 24 1024.0 24 7.2 24 9.8 24 14.0 999.9 62.1 48.9 0.10G 999.9 110000 724050 13743 20030518 51.6 24 48.3 24 1027.1 24 1024.6 22 7.1 24 6.4 24 11.1 999.9 55.0 48.9 0.31G 999.9 110000 724050 13743 20030519 56.8 24 48.6 24 1027.0 24 1024.5 24 8.7 24 4.9 24 10.1 999.9 71.1 45.0 0.05G 999.9 100000 724050 13743 20030520 61.4 24 49.0 24 1025.5 24 9999.9 0 9.9 24 4.0 24 11.1 999.9 73.9 45.0 0.01G 999.9 000000 724050 13743 20030521 60.6 24 53.5 24 1020.5 24 1018.1 24 7.2 24 7.0 24 15.0 999.9 73.9 48.9 0.00G 999.9 110000 724050 13743 20030522 57.6 24 53.4 24 1022.4 24 1020.0 24 7.1 24 7.0 24 10.1 999.9 62.1 55.0 0.68G 999.9 110000 724050 13743 20030523 56.3 24 53.8 24 1021.6 24 1019.2 24 5.7 24 7.9 24 10.1 999.9 60.1 54.0 0.02G 999.9 110000 724050 13743 20030524 60.0 24 57.0 24 1015.4 24 1012.9 23 6.8 24 3.8 24 8.0 999.9 66.9 54.0 0.21G 999.9 110000 724050 13743 20030525 62.1 24 59.4 24 1015.2 24 1012.8 24 6.8 24 4.5 24 8.0 999.9 66.9 57.0 0.02G 999.9 110000 724050 13743 20030526 62.4 24 57.9 24 1013.3 24 1010.9 24 7.2 24 7.5 24 11.1 999.9 70.0* 57.2* 1.57G 999.9 110000 724050 13743 20030527 60.1 24 55.8 24 1016.6 24 1014.3 23 9.2 24 3.0 24 8.0 999.9 71.1 57.0 0.01G 999.9 110000 724050 13743 20030528 59.3 24 54.2 24 1012.4 24 1009.5 22 6.4 24 5.6 24 11.1 999.9 68.0 54.0 0.05G 999.9 110000 724050 13743 20030529 60.6 24 55.6 24 1006.0 24 1003.6 24 7.1 24 4.2 24 11.1 999.9 68.0 55.0 0.30G 999.9 110000 724050 13743 20030530 66.2 24 55.4 24 1003.8 24 1001.5 24 7.6 24 6.5 24 12.0 19.0 80.1 54.0 0.05G 999.9 100000 724050 13743 20030531 67.2 24 59.3 24 1000.9 24 998.6 24 8.3 24 8.9 24 20.0 25.1 80.1 54.0 0.00G 999.9 110010 724050 13743 20030601 63.6 24 52.7 24 999.8 24 997.7 24 9.3 24 15.2 24 26.0 35.9 72.0 60.1 0.80G 999.9 110010 724050 13743 20030602 62.9 24 41.1 24 1014.6 24 1012.5 24 9.9 24 9.2 24 14.0 19.0 73.0 53.1 0.00G 999.9 000000 724050 13743 20030603 61.4 24 53.1 24 1016.0 24 1013.6 24 9.2 24 5.6 24 8.9 999.9 73.0 53.1 0.00G 999.9 110000 724050 13743 20030604 58.3 24 56.5 24 1010.8 24 1008.4 24 4.0 24 7.7 24 10.1 999.9 64.9 57.0 0.26G 999.9 110000 724050 13743 20030605 65.4 24 54.8 24 1011.0 24 1008.6 24 6.6 24 7.4 24 14.0 22.0 75.9 57.0 0.33G 999.9 110000 724050 13743 20030606 68.7 24 53.1 24 1015.2 24 1013.0 24 9.7 24 5.9 24 12.0 16.9 80.1 59.0 0.05G 999.9 000000 724050 13743 20030607 67.0 24 62.3 24 1012.4 24 1010.0 24 6.2 24 5.5 24 13.0 999.9 80.1 60.1 0.39G 999.9 110000 724050 13743 20030608 65.2 24 60.4 24 1011.1 24 1008.8 24 8.3 24 5.7 24 10.1 999.9 73.0 62.1 0.89G 999.9 100000 724050 13743 20030609 68.7 24 60.6 24 1011.3 24 1009.0 24 6.3 24 5.1 24 8.9 999.9 80.1 62.1 0.46G 999.9 110010 724050 13743 20030610 71.5 24 61.6 24 1016.3 24 1013.9 24 9.7 24 5.1 24 12.0 999.9 81.0 62.1 0.00D 999.9 000000 724050 13743 20030611 73.9 24 67.1 24 1013.9 24 1011.5 24 7.1 24 5.6 24 10.1 999.9 87.1 62.1 0.00G 999.9 110000 724050 13743 20030612 74.5 24 70.1 24 1013.0 24 1010.5 24 6.5 24 7.5 24 26.0 34.0 87.1 66.0 0.26G 999.9 110010 724050 13743 20030613 74.9 24 70.8 24 1012.0 24 1009.6 24 5.8 24 5.9 24 9.9 999.9 84.9 68.0 1.13G 999.9 110000 724050 13743 20030614 75.2 24 70.5 24 1012.3 24 1009.9 23 7.0 24 4.2 24 11.1 999.9 88.0 69.1 0.37G 999.9 110010 724050 13743 20030615 73.7 24 65.8 24 1014.7 24 1012.2 24 9.0 24 5.1 24 10.1 999.9 88.0 69.1 0.02G 999.9 100000 724050 13743 20030616 70.5 24 61.8 24 1019.8 24 1017.5 24 9.1 24 6.9 24 15.9 999.9 75.9* 64.4* 0.00G 999.9 100000 724050 13743 20030617 62.9 24 57.4 24 1023.9 24 1021.5 24 8.8 24 7.6 24 12.0 999.9 73.9 60.1 0.00G 999.9 110000 724050 13743 20030618 64.8 24 61.6 24 1016.2 24 1013.8 24 6.9 24 3.9 24 11.1 999.9 75.0 60.1 0.84G 999.9 110000 724050 13743 20030619 72.7 24 67.9 24 1009.4 24 1007.0 24 5.2 24 3.0 24 7.0 999.9 82.0 61.0 0.17G 999.9 110000 724050 13743 20030620 67.6 24 63.5 24 1010.3 24 1007.9 24 5.7 24 8.4 24 15.0 21.0 82.0 64.0 1.47G 999.9 110010 724050 13743 20030621 63.8 24 55.9 24 1011.4 24 1008.9 24 9.9 24 8.8 24 14.0 16.9 71.1 57.9 0.65G 999.9 000000 724050 13743 20030622 66.9 24 57.3 24 1011.1 24 1008.6 22 9.9 24 9.5 24 15.9 21.0 77.0 57.9 0.03G 999.9 010000 724050 13743 20030623 75.6 24 57.1 24 1011.5 24 1009.1 24 9.9 24 8.3 24 15.9 19.0 87.1 61.0 0.00G 999.9 000000 724050 13743 20030624 78.7 24 60.0 24 1016.1 24 1013.6 24 9.9 24 6.1 24 13.0 999.9 90.0 64.9 0.00G 999.9 000000 724050 13743 20030625 79.7 24 63.7 24 1017.6 24 1015.0 24 7.7 24 5.1 24 11.1 15.9 91.9 66.0 0.00G 999.9 100000 724050 13743 20030626 82.3 24 66.7 24 1014.0 24 1011.5 24 5.1 24 6.0 24 15.9 999.9 93.0 66.0 0.00G 999.9 100000 724050 13743 20030627 79.7 24 69.8 24 1011.4 24 1009.0 24 4.7 24 6.8 24 15.0 21.0 93.0 71.1 0.00G 999.9 110000 724050 13743 20030628 73.9 24 58.0 24 1017.5 24 1015.1 24 9.9 24 6.9 24 11.1 999.9 89.1 66.9 0.09G 999.9 000000 724050 13743 20030629 76.0 24 66.3 24 1020.5 24 1018.0 24 7.8 24 7.0 24 10.1 999.9 86.0 66.9 0.00G 999.9 100000 724050 13743 20030630 81.4 24 68.4 24 1020.4 24 1017.9 24 6.7 24 5.4 24 10.1 999.9 91.0 68.0 0.00G 999.9 100000 724050 13743 20030701 75.9 24 65.7 24 1020.3 24 1017.9 24 8.3 24 6.9 24 28.0 999.9 91.0 66.0 1.65G 999.9 110010 724050 13743 20030702 73.0 24 67.6 24 1016.3 24 1013.9 24 6.9 24 5.8 24 8.9 999.9 81.0 66.0 1.14G 999.9 110000 724050 13743 20030703 70.3 24 67.7 24 1010.6 24 1008.3 24 7.0 24 10.2 24 13.0 999.9 75.9 68.0 0.95G 999.9 110000 724050 13743 20030704 78.5 24 69.5 24 1012.8 24 1010.4 24 7.2 24 5.8 24 14.0 999.9 91.0 68.0 0.07G 999.9 100000 724050 13743 20030705 82.8 24 70.2 24 1013.3 24 1010.9 24 6.3 24 7.5 24 12.0 999.9 93.9 69.1 0.01G 999.9 100000 724050 13743 20030706 84.1 24 71.1 24 1013.7 24 1011.3 24 8.6 24 5.5 24 12.0 15.0 93.9 73.0 0.00G 999.9 000000 724050 13743 20030707 79.9 24 71.0 24 1014.6 24 1012.1 24 9.2 24 6.0 24 12.0 15.9 91.9 73.0 0.00G 999.9 110010 724050 13743 20030708 80.1 24 70.5 24 1015.2 24 1012.7 24 9.9 24 6.7 24 13.0 21.0 90.0 73.0 0.57G 999.9 010000 724050 13743 20030709 81.8 24 70.5 24 1013.9 24 1011.4 24 9.6 24 6.2 24 12.0 15.0 91.9 73.9 0.00G 999.9 110010 724050 13743 20030710 73.9 24 70.7 24 1013.3 24 1010.7 24 6.3 24 6.6 24 11.1 999.9 91.9 71.1 0.53G 999.9 100000 724050 13743 20030711 77.0 24 70.1 24 1008.8 24 1006.4 24 7.7 24 7.0 24 15.9 20.0 86.0* 69.8* 1.02G 999.9 110010 724050 13743 20030712 76.9 24 60.9 24 1013.3 24 1010.8 24 10.0 24 7.2 24 12.0 16.9 87.1 66.0 0.00G 999.9 000000 724050 13743 20030713 75.3 24 63.0 24 1018.4 24 1016.0 24 9.9 24 4.8 24 19.0 32.1 84.9 66.0 0.03G 999.9 010010 724050 13743 20030714 75.8 24 64.1 24 1021.0 24 1018.6 24 9.9 24 6.0 24 11.1 999.9 82.9 68.0 0.03G 999.9 010000 724050 13743 20030715 75.6 24 67.2 24 1020.2 24 1017.8 24 9.2 24 5.4 24 12.0 999.9 84.0 68.0 0.00D 999.9 000000 724050 13743 20030716 80.5 24 69.1 24 1015.0 24 1012.5 24 8.4 24 10.3 24 15.0 20.0 90.0 68.0 0.00G 999.9 100000 724050 13743 20030717 78.6 24 59.8 24 1018.5 24 1016.0 24 9.9 24 7.1 24 12.0 15.9 90.0 69.1 0.00G 999.9 000000 724050 13743 20030718 76.6 24 64.0 24 1017.1 24 1014.7 24 9.3 24 5.5 24 10.1 999.9 84.9 66.0 0.00G 999.9 010010 724050 13743 20030719 76.3 24 66.1 24 1015.0 24 1012.6 24 7.8 24 6.2 24 11.1 999.9 84.9 66.0 0.00G 999.9 000000 724050 13743 20030720 76.4 24 64.7 24 1016.5 24 1014.0 24 8.0 24 5.0 24 13.0 999.9 84.9 66.0 0.00G 999.9 100000 724050 13743 20030721 80.3 24 71.2 24 1012.0 24 1009.6 24 5.2 24 10.4 24 18.1 25.1 91.0 66.0 0.00G 999.9 100000 724050 13743 20030722 81.6 24 71.2 24 1007.9 24 1005.5 24 6.7 24 12.2 24 18.1 22.9 91.0 73.0 0.00G 999.9 000000 724050 13743 20030723 75.1 24 69.5 24 1010.1 24 1007.7 24 8.3 24 7.7 24 15.0 999.9 88.0 70.0 0.53G 999.9 110010 724050 13743 20030724 76.2 24 64.6 24 1014.8 24 1012.4 24 9.8 24 7.9 24 12.0 999.9 82.9 69.1 0.00G 999.9 010000 724050 13743 20030725 77.1 24 60.0 24 1022.8 24 1020.3 24 9.9 24 4.5 24 8.9 999.9 87.1 66.0 0.00G 999.9 000000 724050 13743 20030726 78.9 24 66.5 24 1024.6 24 1022.1 24 8.3 24 7.8 24 13.0 19.0 88.0 66.0 0.00G 999.9 100000 724050 13743 20030727 81.5 24 69.3 24 1018.0 24 1015.6 24 7.6 24 8.7 24 14.0 16.9 91.0 70.0 0.00G 999.9 000000 724050 13743 20030728 80.9 24 70.3 24 1011.8 24 1009.4 24 8.6 24 6.4 24 13.0 999.9 91.0 73.0 0.00G 999.9 010000 724050 13743 20030729 74.3 24 65.6 24 1013.7 24 1011.3 24 8.7 24 5.2 24 8.9 999.9 86.0 70.0 0.89G 999.9 110000 724050 13743 20030730 73.8 24 64.3 24 1019.4 24 1017.0 24 9.8 24 6.0 24 11.1 999.9 77.0* 69.8* 0.02G 999.9 000000 724050 13743 20030731 73.7 24 67.2 24 1020.6 24 1018.2 24 9.4 24 5.5 24 8.9 999.9 81.0* 69.8* 0.01G 999.9 010000 724050 13743 20030801 76.8 24 72.5 24 1017.3 24 1014.8 24 6.9 24 7.6 24 10.1 15.0 81.0 70.0 0.00G 999.9 110000 724050 13743 20030802 77.8 24 73.7 24 1016.8 24 1014.3 24 4.7 24 8.3 24 12.0 999.9 84.0 75.0 0.89G 999.9 110000 724050 13743 20030803 78.2 24 73.2 24 1017.3 24 1014.9 24 8.9 24 10.4 24 21.0 25.1 84.9 75.0 0.01G 999.9 010000 724050 13743 20030804 77.0 24 72.2 24 1014.8 24 1012.4 24 9.9 24 7.7 24 12.0 999.9 84.9 73.0 0.24G 999.9 010000 724050 13743 20030805 78.3 24 71.6 24 1011.6 24 1009.2 24 8.5 24 7.3 24 12.0 999.9 84.0 73.0 0.03G 999.9 110000 724050 13743 20030806 75.0 24 66.3 24 1011.4 24 1009.0 24 9.5 24 4.3 24 11.1 999.9 84.0 68.0 0.36G 999.9 010010 724050 13743 20030807 76.6 24 69.7 24 1011.6 24 1009.2 24 7.0 24 4.9 24 11.1 999.9 84.0 68.0 0.00G 999.9 110000 724050 13743 20030808 77.6 24 69.3 24 1012.1 24 1009.8 24 6.6 24 4.7 24 10.1 999.9 84.2* 73.0* 0.00G 999.9 100000 724050 13743 20030809 77.0 24 71.8 24 1014.1 24 1011.6 24 8.6 24 4.7 24 10.1 999.9 84.0 72.0 0.00G 999.9 110000 724050 13743 20030810 76.4 24 71.4 24 1014.7 24 1012.3 24 9.1 24 6.5 24 10.1 999.9 82.0 71.1 0.45G 999.9 110010 724050 13743 20030811 77.4 24 71.7 24 1013.9 24 1011.5 24 9.5 24 6.6 24 12.0 999.9 82.9 71.1 0.01G 999.9 010000 724050 13743 20030812 79.0 24 71.8 24 1017.6 24 1015.2 24 7.8 24 4.1 24 10.1 999.9 88.0 73.0 0.04G 999.9 100000 724050 13743 20030813 79.6 24 71.7 24 1024.4 24 1022.0 24 6.9 24 4.7 24 8.9 999.9 88.0 73.0 0.00G 999.9 100000 724050 13743 20030814 83.3 24 72.6 24 1026.2 24 1023.8 24 6.1 24 2.7 24 8.9 999.9 91.9 75.0 0.00G 999.9 100000 724050 13743 20030815 83.9 24 71.3 24 1022.6 24 1019.7 22 6.2 24 4.8 24 10.1 999.9 93.0 75.9 0.00G 999.9 100000 724050 13743 20030816 81.4 24 70.1 24 1014.1 24 1011.6 24 6.2 24 6.2 24 17.1 32.1 93.0 73.0 0.00G 999.9 110010 724050 13743 20030817 76.5 24 68.3 24 1011.3 24 1008.9 24 8.9 24 5.8 24 12.0 999.9 90.0 69.1 0.82G 999.9 110010 724050 13743 20030818 76.9 24 65.7 24 1016.2 24 1013.9 24 9.9 24 6.4 24 11.1 999.9 87.1 69.1 0.20G 999.9 000000 724050 13743 20030819 76.8 24 67.0 24 1021.4 24 1019.0 24 9.0 24 4.6 24 8.9 999.9 84.9 71.1 0.00G 999.9 100000 724050 13743 20030820 78.0 24 69.3 24 1021.9 24 1019.5 24 9.8 24 7.1 24 11.1 999.9 86.0 71.1 0.00G 999.9 000000 724050 13743 20030821 80.3 24 71.8 24 1019.0 24 1016.5 24 6.8 24 7.6 24 13.0 999.9 89.1 71.1 0.00G 999.9 100000 724050 13743 20030822 83.5 24 73.1 24 1013.5 24 1011.0 24 5.2 24 6.8 24 13.0 999.9 93.9 73.0 0.00G 999.9 100010 724050 13743 20030823 79.1 24 64.6 24 1013.8 24 1011.4 24 8.7 24 8.3 24 15.0 16.9 93.9 73.9 0.00G 999.9 010010 724050 13743 20030824 73.9 24 51.0 24 1019.2 24 1016.8 24 9.9 24 6.7 24 10.1 15.0 84.9 64.0 0.00G 999.9 000000 724050 13743 20030825 75.6 24 57.6 24 1017.4 24 1015.0 24 10.0 24 6.3 24 10.1 14.0 90.0 64.0 0.00G 999.9 000000 724050 13743 20030826 80.5 24 66.7 24 1015.1 24 1012.7 24 8.7 24 5.6 24 17.1 35.0 90.0 64.9 0.00G 999.9 010010 724050 13743 20030827 77.7 24 68.6 24 1013.5 24 1011.1 24 8.0 24 4.1 24 8.0 16.9 90.0 69.1 0.96G 999.9 100010 724050 13743 20030828 76.0 24 67.8 24 1018.2 24 1015.8 24 8.9 24 4.6 24 13.0 999.9 87.1 69.1 0.56G 999.9 110010 724050 13743 20030829 79.8 24 72.0 24 1018.7 24 1016.1 23 5.5 24 6.0 24 10.1 999.9 90.0 69.1 0.04G 999.9 110010 724050 13743 20030830 78.2 24 72.3 24 1018.0 24 1015.6 24 8.1 24 6.4 24 22.9 27.0 91.9 73.0 0.02G 999.9 110010 724050 13743 20030831 72.8 24 63.1 24 1024.5 24 1022.1 24 9.9 24 7.6 24 12.0 999.9 77.0* 66.2* 0.23G 999.9 010000 724050 13743 20030901 76.1 24 69.4 24 1022.1 24 1019.6 24 8.9 24 6.9 24 11.1 999.9 84.9 66.9 0.01G 999.9 110000 724050 13743 20030902 77.7 24 71.9 24 1018.0 24 1015.6 24 8.5 24 6.4 24 12.0 999.9 84.9 70.0 0.18G 999.9 110000 724050 13743 20030903 74.8 24 71.9 24 1017.9 24 1015.5 24 6.0 24 5.1 24 15.0 999.9 80.1* 71.6* 0.24G 999.9 110000 724050 13743 20030904 74.5 24 71.1 24 1011.9 24 1009.5 24 8.0 24 6.6 24 11.1 999.9 81.0 72.0 0.25G 999.9 110000 724050 13743 20030905 70.8 24 60.8 24 1014.9 24 1012.4 24 9.5 24 9.6 24 15.0 19.0 77.0 64.0 0.12G 999.9 000000 724050 13743 20030906 67.1 24 55.5 24 1019.6 24 1017.2 24 9.9 24 5.0 24 11.1 999.9 77.0 57.9 0.00G 999.9 000000 724050 13743 20030907 69.4 24 58.0 24 1018.5 24 1016.1 24 9.9 24 2.8 24 7.0 999.9 78.1 57.9 0.00G 999.9 000000 724050 13743 20030908 71.7 24 60.5 24 1017.6 24 1015.2 24 9.9 24 4.5 24 8.9 999.9 81.0 60.1 0.00G 999.9 000000 724050 13743 20030909 71.1 24 60.2 24 1021.8 24 1019.3 22 9.8 24 9.7 24 15.9 999.9 81.0 63.0 0.00G 999.9 000000 724050 13743 20030910 66.8 24 54.0 24 1024.7 24 1022.3 24 9.9 24 8.7 24 11.1 999.9 75.9 59.0 0.00G 999.9 000000 724050 13743 20030911 68.6 24 55.6 24 1023.1 24 1020.7 24 9.9 24 7.4 24 14.0 999.9 79.0 59.0 0.00G 999.9 000000 724050 13743 20030912 65.7 24 59.4 24 1022.1 24 1019.6 23 8.5 24 11.1 24 17.1 20.0 79.0 59.0 0.00G 999.9 110000 724050 13743 20030913 70.4 24 67.0 24 1018.4 24 1016.0 24 7.0 24 10.2 24 15.9 999.9 82.0 62.1 1.06G 999.9 110000 724050 13743 20030914 73.0 24 68.2 24 1021.4 24 1019.1 24 9.9 24 5.1 24 8.0 999.9 82.0 66.0 0.05G 999.9 000000 724050 13743 20030915 75.5 24 69.3 24 1018.6 24 1016.2 24 8.6 24 2.6 24 8.0 999.9 87.1* 69.8* 0.00G 999.9 010000 724050 13743 20030916 70.8 24 57.2 24 1019.8 24 1017.5 24 9.8 24 8.0 24 15.0 999.9 84.0 63.0 0.08G 999.9 100000 724050 13743 20030917 68.5 24 56.9 24 1023.4 24 1021.0 24 9.9 24 8.4 24 15.9 999.9 78.1 57.9 0.00G 999.9 000000 724050 13743 20030918 67.4 24 62.2 24 1018.3 24 1016.0 24 8.2 24 17.0 24 33.0 44.9 78.1 57.9 0.00G 999.9 110000 724050 13743 20030919 72.9 24 67.4 24 1007.3 24 1004.9 24 8.8 24 20.6 24 39.0 49.0 79.0 66.0 2.29G 999.9 110000 724050 13743 20030920 72.5 24 67.0 24 1020.2 24 1017.7 24 7.7 24 2.0 24 6.0 999.9 84.9 64.0 0.02G 999.9 100000 724050 13743 20030921 72.5 24 65.7 24 1023.8 24 1021.4 22 7.7 24 6.0 24 8.0 999.9 84.9 64.0 0.01G 999.9 100000 724050 13743 20030922 72.0 24 68.1 24 1021.1 24 1018.7 24 7.1 24 7.0 24 15.0 18.1 80.1 66.0 0.00G 999.9 110000 724050 13743 20030923 71.7 24 63.4 24 1011.6 24 1009.2 24 8.2 24 10.5 24 17.1 22.0 80.1 64.0 2.45G 999.9 110000 724050 13743 20030924 66.1 24 54.0 24 1019.2 24 1016.8 24 9.9 24 5.0 24 8.9 999.9 79.0 55.9 1.67G 999.9 000000 724050 13743 20030925 67.8 24 62.8 24 1016.5 24 1014.2 24 8.4 24 6.8 24 11.1 999.9 79.0 55.9 0.00G 999.9 100000 724050 13743 20030926 71.7 24 65.9 24 1015.8 24 1013.4 24 8.9 24 5.4 24 12.0 16.9 80.1 61.0 0.00G 999.9 100000 724050 13743 20030927 71.7 24 67.5 24 1013.2 24 1010.8 24 7.3 24 7.2 24 12.0 999.9 81.0 64.9 0.00G 999.9 100000 724050 13743 20030928 68.6 24 59.8 24 1008.6 24 1006.2 24 9.8 24 7.7 24 15.9 21.0 81.0 62.1 0.10G 999.9 010000 724050 13743 20030929 59.8 24 47.9 24 1014.9 24 1012.5 24 9.8 24 9.7 24 15.9 22.0 72.0 54.0 0.02G 999.9 010000 724050 13743 20030930 57.3 23 43.6 23 1024.3 23 1021.8 23 9.5 23 5.9 23 8.9 999.9 66.9 48.9 0.00G 999.9 000000 724050 13743 20031001 56.1 24 46.0 24 1023.1 24 1020.5 24 10.0 24 5.9 24 10.1 999.9 66.0 48.9 0.00G 999.9 000000 724050 13743 20031002 53.7 24 35.4 24 1020.7 24 1018.3 24 9.9 24 8.1 24 17.1 25.1 60.1 46.0 0.00G 999.9 000000 724050 13743 20031003 49.2 24 32.8 24 1023.1 24 1020.7 24 9.9 24 6.9 24 13.0 999.9 59.0 39.0 0.00G 999.9 000000 724050 13743 20031004 55.5 24 43.2 24 1013.2 24 1010.8 24 10.0 24 10.3 24 17.1 23.9 69.1 39.0 0.00G 999.9 010000 724050 13743 20031005 56.3 24 41.9 24 1016.0 24 1013.5 24 9.9 24 5.6 24 10.1 15.9 69.1 48.0 0.00G 999.9 000000 724050 13743 20031006 57.6 24 43.9 24 1019.1 24 1016.7 24 9.9 24 4.8 24 8.0 999.9 68.0 48.0 0.00G 999.9 000000 724050 13743 20031007 58.3 24 47.6 24 1021.9 24 1019.5 24 9.9 24 5.5 24 10.1 999.9 71.1 48.9 0.00G 999.9 000000 724050 13743 20031008 63.3 24 56.9 24 1023.3 24 1020.7 23 6.4 24 3.2 24 10.1 999.9 75.2* 55.0* 0.00G 999.9 100000 724050 13743 20031009 66.7 24 59.2 24 1022.9 24 1020.5 24 6.8 24 2.1 24 6.0 999.9 77.0 55.0 0.00G 999.9 100000 724050 13743 20031010 63.6 24 57.7 24 1020.8 24 1018.4 24 5.5 24 6.8 24 17.1 20.0 77.0 55.9 0.00G 999.9 100000 724050 13743 20031011 65.5 24 57.0 24 1019.6 24 1017.2 24 6.4 24 9.7 24 13.0 999.9 73.9 55.9 0.01G 999.9 010000 724050 13743 20031012 66.8 24 53.9 24 1014.1 24 1011.7 24 9.2 24 7.2 24 11.1 999.9 78.1 55.0 0.00G 999.9 110000 724050 13743 20031013 65.8 24 50.7 24 1014.8 24 1012.6 22 9.7 24 7.5 24 17.1 22.0 78.1 55.0 0.00G 999.9 100000 724050 13743 20031014 60.8 24 53.7 24 1011.3 24 1008.9 24 10.0 24 4.4 24 15.0 19.0 73.0 55.9 0.00G 999.9 010000 724050 13743 20031015 60.6 24 43.1 24 1001.7 24 999.3 24 9.0 24 13.5 24 27.0 41.0 66.9 55.9 1.21G 999.9 110010 724050 13743 20031016 56.7 24 38.1 24 1017.7 24 1015.2 24 10.0 24 9.0 24 14.0 19.0 69.1 45.0 0.00G 999.9 000000 724050 13743 20031017 56.8 24 46.8 24 1020.5 24 1018.0 24 9.9 24 6.5 24 13.0 999.9 69.1 50.0 0.00G 999.9 010000 724050 13743 20031018 53.5 24 41.3 24 1019.9 24 1017.5 24 8.8 24 7.8 24 13.0 999.9 60.8* 46.4* 0.00G 999.9 000000 724050 13743 20031019 54.6 24 41.2 24 1016.6 24 1014.1 24 9.9 24 6.8 24 15.0 16.9 68.0 46.0 0.00G 999.9 000000 724050 13743 20031020 54.8 24 44.8 24 1021.8 24 1019.4 24 9.9 24 4.6 24 11.1 999.9 68.0 45.0 0.00G 999.9 000000 724050 13743 20031021 63.1 24 53.0 24 1007.8 24 1005.4 24 9.9 24 10.4 24 15.9 999.9 73.9 45.0 0.00G 999.9 000000 724050 13743 20031022 59.1 24 43.7 24 1002.6 24 1000.3 23 9.9 24 11.5 24 22.9 35.0 71.1* 46.4* 0.00G 999.9 010010 724050 13743 20031023 46.2 24 29.1 24 1007.8 24 1005.4 24 9.9 24 10.6 24 17.1 23.9 61.0 41.0 0.05G 999.9 000000 724050 13743 20031024 46.4 24 30.1 24 1020.3 24 1017.9 24 9.9 24 5.3 24 10.1 999.9 57.9 37.0 0.00G 999.9 000000 724050 13743 20031025 50.3 24 41.2 24 1029.3 24 1026.7 24 9.9 24 5.4 24 14.0 999.9 62.1 37.0 0.00G 999.9 000000 724050 13743 20031026 63.6 24 57.6 24 1023.0 24 1020.6 24 8.6 24 9.5 24 15.9 21.0 71.1* 59.0* 0.00G 999.9 110000 724050 13743 20031027 60.9 24 59.0 24 1011.2 24 1008.9 24 4.8 24 8.0 24 14.0 19.0 64.9* 51.8* 0.72G 999.9 110000 724050 13743 20031028 49.6 24 41.3 24 1013.1 24 1010.7 24 9.9 24 4.2 24 8.9 999.9 64.9 42.1 1.03G 999.9 010000 724050 13743 20031029 51.0 24 46.7 24 1008.1 24 1005.6 23 8.0 24 6.2 24 10.1 999.9 59.0 42.1 0.88G 999.9 110000 724050 13743 20031030 52.1 24 44.3 24 1021.8 24 1019.3 24 8.8 24 3.7 24 8.9 999.9 64.9 42.1 0.04G 999.9 100000 724050 13743 20031031 56.8 24 47.9 24 1025.8 24 1023.3 24 9.7 24 4.0 24 7.0 999.9 70.0 42.1 0.01G 999.9 000000 724050 13743 20031101 61.7 24 54.1 24 1023.8 24 1021.4 24 7.7 24 2.6 24 7.0 999.9 81.0 46.9 0.00G 999.9 100000 724050 13743 20031102 64.2 24 58.1 24 1023.6 24 1021.2 24 7.6 24 4.0 24 8.9 999.9 81.0 51.1 0.00G 999.9 100000 724050 13743 20031103 64.9 24 56.9 24 1021.6 24 1019.2 24 7.1 24 6.2 24 8.9 999.9 77.0 55.0 0.00G 999.9 100000 724050 13743 20031104 65.6 24 57.1 24 1019.5 24 1017.1 24 9.3 24 6.1 24 8.9 999.9 78.1* 57.2* 0.00G 999.9 000000 724050 13743 20031105 70.8 24 65.9 24 1018.4 24 1016.0 24 6.9 24 7.1 24 15.0 21.0 81.0 57.0 0.00G 999.9 110010 724050 13743 20031106 66.6 24 64.8 24 1018.3 24 1015.9 24 6.1 24 4.1 24 9.9 999.9 71.1* 62.6* 0.55G 999.9 110000 724050 13743 20031107 60.3 24 51.2 24 1020.4 24 1018.0 24 7.0 24 7.8 24 15.9 19.0 68.0 55.0 0.45G 999.9 110000 724050 13743 20031108 49.8 24 28.4 24 1028.4 24 1025.9 24 9.9 24 9.9 24 14.0 22.9 57.0* 42.8* 0.00G 999.9 000000 724050 13743 20031109 39.4 24 17.0 24 1038.5 24 1036.1 24 9.9 24 7.8 24 13.0 999.9 53.1 33.1 0.00G 999.9 000000 724050 13743 20031110 40.2 24 26.2 24 1034.8 24 1032.3 24 9.9 24 3.4 24 8.0 999.9 50.0 30.9 0.00G 999.9 000000 724050 13743 20031111 48.9 24 40.5 24 1024.8 24 1021.9 24 10.0 24 7.0 24 14.0 19.0 59.0 30.9 0.00G 999.9 010000 724050 13743 20031112 55.6 24 51.4 24 1013.8 24 1011.4 24 7.1 24 4.3 24 9.9 999.9 59.0 42.1 0.14G 999.9 110000 724050 13743 20031113 53.5 24 37.3 24 1006.4 24 1003.9 24 8.9 24 18.6 24 31.1 44.9 63.0* 39.2* 0.43G 999.9 110000 724050 13743 20031114 41.9 24 18.2 24 1017.0 24 1014.5 24 9.9 24 13.9 24 22.0 32.1 63.0 36.0 0.01G 999.9 000000 724050 13743 20031115 48.0 24 22.7 24 1019.7 24 1017.4 24 9.9 24 7.5 24 12.0 999.9 55.0 36.0 0.00G 999.9 000000 724050 13743 20031116 48.2 24 39.4 24 1022.4 24 1020.0 24 9.9 24 4.2 24 8.0 999.9 55.0 42.1 0.00G 999.9 010000 724050 13743 20031117 52.3 24 46.2 24 1023.0 24 1020.5 24 5.8 24 3.9 24 8.0 999.9 64.0 44.1 0.04G 999.9 110000 724050 13743 20031118 49.7 24 46.0 24 1025.6 24 1023.1 24 4.7 24 4.3 24 8.9 999.9 64.0 44.1 0.00G 999.9 100000 724050 13743 20031119 60.6 24 56.7 24 1010.2 20 9999.9 0 7.4 24 9.6 24 25.1 34.0 70.0 44.1 0.00G 999.9 110000 724050 13743 20031120 54.3 24 39.6 24 1009.2 23 9999.9 0 9.4 24 11.2 24 19.0 25.1 70.0 48.9 1.47G 999.9 110000 724050 13743 20031121 53.1 24 37.1 24 1016.0 24 1013.6 24 9.9 24 5.6 24 8.9 999.9 73.9 39.9 0.00G 999.9 000000 724050 13743 20031122 55.2 24 43.7 24 1018.9 24 1016.5 24 9.9 24 1.6 24 6.0 999.9 73.9 39.9 0.00G 999.9 000000 724050 13743 20031123 52.4 24 45.9 24 1021.8 24 1019.0 22 7.9 24 2.7 24 10.1 999.9 66.0 44.1 0.00G 999.9 100000 724050 13743 20031124 55.7 24 49.9 24 1015.3 24 1012.9 24 8.3 24 5.3 24 27.0 36.9 66.0 44.1 0.00G 999.9 110000 724050 13743 20031125 40.0 24 26.5 24 1019.6 24 1017.2 24 9.3 24 9.5 24 24.1 30.9 46.9* 33.1* 0.32G 999.9 110000 724050 13743 20031126 41.2 24 29.0 24 1022.4 24 1020.1 24 9.9 24 4.7 24 11.1 999.9 50.0 33.1 0.00G 999.9 000000 724050 13743 20031127 47.3 24 38.9 24 1023.1 24 1020.6 24 9.2 24 3.6 24 10.1 999.9 55.9 36.0 0.00G 999.9 000000 724050 13743 20031128 55.0 24 51.3 24 1010.1 24 1007.0 24 6.8 24 8.6 24 22.0 28.0 63.0 41.0 0.01G 999.9 110000 724050 13743 20031129 42.3 24 26.3 24 1007.1 24 1004.7 24 9.5 24 14.7 24 22.9 35.9 63.0 36.0 0.82G 999.9 010000 724050 13743 20031130 40.3 24 25.3 24 1017.2 24 1014.8 24 10.0 24 8.0 24 12.0 20.0 50.0 34.0 0.01G 999.9 000000 724050 13743 20031201 47.8 24 28.9 24 1014.4 24 1011.9 24 9.9 24 9.6 24 20.0 27.0 55.0 36.0 0.00G 999.9 000000 724050 13743 20031202 39.5 24 12.2 24 1025.4 24 1023.0 24 9.9 24 11.7 24 20.0 29.9 44.1* 35.6* 0.00G 999.9 000000 724050 13743 20031203 33.3 24 15.5 24 1034.1 24 1031.7 24 10.0 24 8.5 24 13.0 999.9 43.0 28.0 0.00G 999.9 000000 724050 13743 20031204 34.0 24 19.0 24 1032.8 24 1030.4 24 9.9 24 4.4 24 10.1 999.9 39.2* 30.0* 0.00G 999.9 000000 724050 13743 20031205 35.6 24 31.0 24 1020.1 24 1017.7 24 5.1 24 9.3 24 14.0 19.0 39.0 28.9 0.53G 1.2 111000 724050 13743 20031206 31.8 24 27.2 24 1014.3 24 1011.9 24 5.2 24 14.1 24 18.1 22.9 36.0* 28.4* 0.49G 1.2 111000 724050 13743 20031207 31.5 24 18.0 24 1016.4 24 1014.1 24 9.9 24 12.8 24 24.1 32.1 37.0 28.0 0.01G 1.2 000000 724050 13743 20031208 33.4 24 20.1 24 1021.6 24 1019.2 24 9.9 24 7.2 24 12.0 999.9 41.0* 26.6* 0.00G 999.9 000000 724050 13743 20031209 37.5 24 27.0 24 1023.7 24 1021.3 24 9.8 24 2.4 24 8.0 999.9 46.9 27.0 0.00G 999.9 000000 724050 13743 20031210 39.0 24 34.3 24 1018.5 24 1016.1 23 6.1 24 5.6 24 11.1 999.9 46.9 32.0 0.00G 999.9 110000 724050 13743 20031211 51.1 24 42.9 24 998.6 24 996.6 24 8.0 24 15.4 24 27.0 42.9 57.9 34.0 1.03G 999.9 110000 724050 13743 20031212 39.7 24 23.1 24 1016.8 24 1014.4 24 9.9 24 11.1 24 17.1 30.9 57.9 35.1 0.75G 999.9 000000 724050 13743 20031213 33.2 24 16.6 24 1029.1 24 1026.7 24 10.0 24 7.8 24 13.0 999.9 45.0 28.0 0.00G 999.9 000000 724050 13743 20031214 33.5 24 26.9 24 1020.5 24 1018.1 24 5.4 24 10.4 24 15.0 21.0 37.9 28.0 0.21G 1.2 111000 724050 13743 20031215 37.6 24 28.0 24 1011.9 24 1009.5 24 9.9 24 10.2 24 18.1 26.0 43.0 28.9 0.57G 3.1 011000 724050 13743 20031216 38.7 24 30.5 24 1021.5 24 1018.9 24 8.8 24 5.2 24 11.1 999.9 51.1 30.0 0.00G 999.9 100000 724050 13743 20031217 43.9 24 39.2 24 1008.9 24 1006.5 24 6.6 24 8.5 24 19.0 28.0 51.1 30.0 0.47G 999.9 111000 724050 13743 20031218 34.4 24 19.6 24 1008.5 24 1006.1 23 9.9 24 8.7 24 15.9 21.0 50.0 32.0 0.29G 999.9 000000 724050 13743 20031219 33.3 24 20.5 24 1009.9 24 1007.6 24 9.9 24 8.1 24 12.0 999.9 37.9 30.0 0.00G 999.9 000000 724050 13743 20031220 33.7 24 20.2 24 1015.2 24 1012.9 24 9.9 24 8.7 24 15.9 22.0 39.9 28.0 0.00G 999.9 000000 724050 13743 20031221 33.4 24 16.7 24 1027.0 24 1024.6 24 9.9 24 8.2 24 14.0 18.1 44.1 25.0 0.00G 999.9 000000 724050 13743 20031222 42.0 24 21.7 24 1022.0 24 1019.5 24 9.9 24 8.1 24 12.0 999.9 57.0 25.0 0.00G 999.9 000000 724050 13743 20031223 50.8 24 30.7 24 1018.4 24 1016.0 24 10.0 24 10.4 24 17.1 22.9 62.1 34.0 0.00G 999.9 000000 724050 13743 20031224 51.1 24 46.8 24 1010.4 24 1008.0 24 6.7 24 9.1 24 22.0 34.0 55.9* 42.8* 0.19G 999.9 110000 724050 13743 20031225 37.6 24 22.3 24 1015.7 24 1013.1 21 9.9 24 9.6 24 18.1 23.9 55.9 30.9 0.39G 999.9 000000 724050 13743 20031226 37.3 24 21.0 24 1022.7 24 1020.6 18 10.0 24 9.0 24 15.9 22.9 44.1 33.1 0.00G 999.9 000000 724050 13743 20031227 43.1 24 20.5 24 1024.3 24 1021.9 24 10.0 24 8.9 24 13.0 19.0 54.0 33.1 0.00G 999.9 000000 724050 13743 20031228 40.3 24 28.1 24 1027.9 24 1025.4 24 9.9 24 2.6 24 6.0 999.9 54.0 28.9 0.00G 999.9 000000 724050 13743 20031229 43.5 24 31.4 24 1022.8 24 1020.4 24 9.7 24 5.2 24 13.0 999.9 60.1 28.9 0.00G 999.9 000000 724050 13743 20031230 51.0 24 35.4 24 1015.0 24 1012.6 24 9.8 24 11.7 24 20.0 33.0 60.1 33.1 0.03G 999.9 010000 724050 13743 20031231 39.6 24 27.5 24 1026.6 24 1024.1 24 10.0 24 5.8 24 12.0 999.9 54.0 28.9 0.04G 999.9 000000 fluids-1.0.22/tests/gsod/2008/0000755000175000017500000000000014302004506015071 5ustar nileshnileshfluids-1.0.22/tests/gsod/2008/724050-13743.op0000644000175000017500000014350514302004506016661 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20080101 45.2 24 31.0 24 1013.9 24 1011.6 24 10.0 24 10.7 24 19.0 27.0 54.0 34.0 0.01G 999.9 000000 724050 13743 20080102 34.5 24 13.6 24 1016.2 24 1013.9 24 9.9 24 13.9 24 26.0 35.0 42.1* 28.4* 0.00G 999.9 001000 724050 13743 20080103 27.5 24 6.0 24 1035.6 24 1033.3 24 10.0 24 12.4 24 22.9 35.0 37.9 21.9 0.00G 999.9 000000 724050 13743 20080104 29.3 24 11.1 24 1038.2 24 1035.9 24 10.0 24 5.6 24 11.1 999.9 41.0 21.0 0.00G 999.9 000000 724050 13743 20080105 35.3 24 18.9 24 1029.6 24 1027.3 24 10.0 24 3.2 24 6.0 999.9 43.0 22.1 0.00G 999.9 010000 724050 13743 20080106 43.4 24 34.0 24 1024.8 24 1022.4 24 9.4 24 3.6 24 8.0 999.9 55.0 28.2 0.19G 999.9 010000 724050 13743 20080107 53.7 24 43.3 24 1023.8 24 1021.5 24 9.9 24 5.0 24 9.9 999.9 69.1 37.9 0.01G 999.9 000000 724050 13743 20080108 58.4 24 47.5 24 1021.8 24 1019.5 24 10.0 24 9.0 24 19.0 25.1 73.0 48.0 0.00G 999.9 000000 724050 13743 20080109 62.0 24 45.2 24 1014.7 24 1012.1 24 10.0 24 12.1 24 19.0 26.0 73.0 48.0 0.00G 999.9 000000 724050 13743 20080110 47.6 24 30.3 24 1021.7 23 1019.5 24 9.9 24 3.3 24 8.0 18.1 68.0 39.9 0.00G 999.9 010000 724050 13743 20080111 47.9 24 43.3 24 1009.8 17 1007.2 24 4.5 24 3.1 24 11.1 21.0 59.0 39.9 0.19G 999.9 110000 724050 13743 20080112 48.6 24 32.6 24 1016.0 24 1013.6 24 10.0 24 6.2 24 11.1 21.0 59.0 42.1 0.14G 999.9 000000 724050 13743 20080113 42.6 24 31.4 24 1020.0 23 1017.6 24 9.2 24 6.1 24 12.0 999.9 54.0 36.0 0.00G 999.9 010000 724050 13743 20080114 43.0 24 31.9 24 1013.4 18 1011.0 24 9.4 24 6.8 24 14.0 24.1 48.9 36.0 0.03G 999.9 010000 724050 13743 20080115 35.8 24 17.0 24 1014.9 24 1012.6 24 10.0 24 7.9 24 13.0 25.1 46.9 30.0 0.00G 999.9 001000 724050 13743 20080116 36.3 24 18.1 24 1024.2 24 1021.9 24 10.0 24 8.3 24 15.9 22.0 44.1 31.1 0.00G 999.9 000000 724050 13743 20080117 36.6 24 26.2 24 1026.9 18 1023.7 24 7.3 24 3.8 24 8.9 999.9 44.1 32.0 0.00G 1.2 011000 724050 13743 20080118 37.8 24 31.9 24 1015.8 19 1013.2 24 6.7 24 6.3 24 11.1 999.9 48.9 33.1 0.75G 1.2 010000 724050 13743 20080119 39.3 24 19.9 24 1019.3 24 1017.0 24 10.0 24 5.6 24 11.1 999.9 48.9 34.0 0.00G 1.2 000000 724050 13743 20080120 29.0 24 7.7 24 1021.9 24 1019.6 24 10.0 24 13.4 24 22.0 29.9 42.1 21.9 0.00G 999.9 001000 724050 13743 20080121 23.5 24 -4.3 24 1040.3 24 1038.1 24 10.0 24 6.4 24 12.0 18.1 37.0 18.0 0.00G 999.9 000000 724050 13743 20080122 32.6 24 14.4 24 1029.9 23 1027.7 24 10.0 24 9.8 24 14.0 999.9 42.8* 27.0* 0.00G 999.9 010000 724050 13743 20080123 41.0 24 20.5 24 1017.0 24 1014.7 24 10.0 24 8.3 24 18.1 26.0 48.0 27.1 0.00G 999.9 000000 724050 13743 20080124 34.8 24 14.7 24 1017.5 24 1015.2 24 10.0 24 6.3 24 14.0 21.0 48.0 28.0 0.00G 999.9 000000 724050 13743 20080125 29.3 24 7.8 24 1029.2 24 1027.0 24 10.0 24 11.0 24 19.0 27.0 43.0 21.9 0.00G 999.9 000000 724050 13743 20080126 33.4 24 8.9 24 1025.9 24 1023.7 24 10.0 24 3.6 24 8.0 999.9 39.9 21.9 0.00G 999.9 000000 724050 13743 20080127 36.8 24 17.8 24 1019.4 24 1017.2 24 10.0 24 7.1 24 13.0 18.1 45.0 29.1 0.00G 999.9 000000 724050 13743 20080128 39.0 24 23.9 24 1021.1 24 1018.8 24 9.9 24 7.1 24 11.1 14.0 46.9 30.2 0.00G 999.9 000000 724050 13743 20080129 41.0 24 29.1 24 1013.3 24 1011.0 24 9.3 24 3.2 24 7.0 999.9 53.1 33.1 0.00G 999.9 010000 724050 13743 20080130 48.7 24 24.9 24 1007.1 23 1004.0 24 10.0 24 11.8 24 22.0 34.0 55.9 33.1 0.06G 999.9 010000 724050 13743 20080131 36.8 24 4.3 24 1031.0 24 1028.2 24 10.0 24 7.9 24 13.0 20.0 55.9 28.0 0.01G 999.9 000000 724050 13743 20080201 39.3 24 28.8 24 1025.0 15 1020.2 24 6.7 24 6.7 24 12.0 21.0 46.9 29.1 0.28G 999.9 110000 724050 13743 20080202 41.8 24 31.4 24 1021.0 24 1018.4 24 10.0 24 4.2 24 9.9 999.9 51.1 32.0 1.77G 999.9 000000 724050 13743 20080203 42.3 24 32.3 24 1023.0 24 1020.7 24 8.7 24 3.4 24 7.0 999.9 57.0 32.0 0.00G 999.9 000000 724050 13743 20080204 47.0 24 36.8 24 1023.7 24 1021.3 24 9.5 24 3.2 24 8.0 999.9 57.0 32.0 0.00G 999.9 010000 724050 13743 20080205 49.2 24 43.1 24 1017.3 17 1014.6 24 6.0 24 3.5 24 21.0 31.1 64.9 39.9 0.01G 999.9 100000 724050 13743 20080206 62.8 24 52.4 24 1006.0 24 1004.1 24 10.0 24 11.5 24 21.0 28.0 73.9 41.0 0.00G 999.9 010000 724050 13743 20080207 55.4 24 36.1 24 1006.0 24 1003.0 24 9.9 24 11.8 24 17.1 27.0 73.9 44.1 0.14G 999.9 010010 724050 13743 20080208 42.9 24 27.4 24 1015.2 24 1012.8 24 10.0 24 4.2 24 9.9 15.0 59.0 36.0 0.00G 999.9 000000 724050 13743 20080209 46.0 24 33.5 24 1014.6 24 1012.6 24 10.0 24 4.5 24 8.9 999.9 59.0 36.0 0.00G 999.9 000000 724050 13743 20080210 46.8 24 22.9 24 1010.3 24 1007.7 24 10.0 24 9.7 24 25.1 39.0 59.0 32.0 0.00G 999.9 010000 724050 13743 20080211 24.1 24 -6.0 24 1027.1 24 1024.9 24 10.0 24 11.6 24 25.1 38.1 32.0* 17.1* 0.00G 999.9 000000 724050 13743 20080212 28.2 24 9.8 24 1029.4 19 1026.5 24 9.7 24 7.3 24 9.9 999.9 32.0 16.0 0.00G 999.9 011000 724050 13743 20080213 35.3 24 30.5 24 1009.5 16 1006.2 24 4.6 24 6.9 24 17.1 22.0 41.0 25.0 1.12G 999.9 010000 724050 13743 20080214 34.5 24 19.3 24 1016.6 24 1014.3 24 10.0 24 13.0 24 21.0 29.9 44.1 28.0 0.23G 999.9 000000 724050 13743 20080215 42.1 24 27.5 24 1021.0 24 1018.7 24 10.0 24 6.4 24 15.9 24.1 57.9 28.2 0.00G 999.9 000000 724050 13743 20080216 41.4 24 23.0 24 1025.5 24 1023.2 24 10.0 24 9.0 24 17.1 22.0 57.9 32.0 0.00G 999.9 000000 724050 13743 20080217 40.5 24 29.5 24 1023.1 24 1020.8 24 10.0 24 4.2 24 8.9 999.9 51.1 32.0 0.00G 999.9 000000 724050 13743 20080218 58.3 24 49.3 24 1003.7 22 1001.1 24 9.2 24 10.9 24 18.1 31.1 73.9 33.1 0.10G 999.9 010000 724050 13743 20080219 44.1 24 19.1 24 1011.4 24 1009.1 24 10.0 24 10.4 24 20.0 35.0 50.0* 39.0* 0.12G 999.9 000000 724050 13743 20080220 32.9 24 13.8 24 1019.4 22 1016.8 24 8.9 24 5.8 24 15.0 22.0 50.0 28.0 0.00G 1.2 001000 724050 13743 20080221 28.3 24 10.1 24 1029.1 24 1026.6 24 9.7 24 8.1 24 17.1 999.9 36.0 21.0 0.02G 1.2 001000 724050 13743 20080222 32.6 24 24.7 24 1020.7 17 1018.3 24 5.9 24 5.7 24 13.0 999.9 36.0 21.0 0.12G 1.2 011000 724050 13743 20080223 37.2 24 33.3 24 1013.7 20 1010.9 24 5.9 24 4.8 24 11.1 999.9 41.0 30.2 0.17G 999.9 010000 724050 13743 20080224 36.8 24 21.5 24 1021.9 24 1019.6 24 9.9 24 5.8 24 12.0 999.9 44.1 28.9 0.00G 999.9 000000 724050 13743 20080225 43.0 24 29.8 24 1016.4 24 1014.1 24 9.9 24 5.4 24 11.1 14.0 51.1 29.1 0.00G 999.9 000000 724050 13743 20080226 45.2 24 38.7 24 1006.4 22 1003.6 24 6.0 24 4.4 24 11.1 14.0 54.0 37.9 0.04G 999.9 010000 724050 13743 20080227 42.5 24 27.4 24 1000.7 24 998.5 24 9.2 24 12.2 24 21.0 29.9 54.0 34.0 0.05G 999.9 000000 724050 13743 20080228 29.1 24 6.8 24 1019.1 24 1016.9 24 10.0 24 12.1 24 15.9 28.9 44.1 21.9 0.00G 999.9 000000 724050 13743 20080229 33.6 24 13.1 24 1030.6 24 1028.3 24 10.0 24 6.7 24 15.0 18.1 46.9 21.9 0.00G 999.9 000000 724050 13743 20080301 47.9 24 25.6 24 1018.4 24 1015.8 24 10.0 24 13.2 24 20.0 31.1 51.1* 44.1* 0.00G 999.9 010000 724050 13743 20080302 41.0 24 17.3 24 1025.4 24 1023.1 24 10.0 24 7.2 24 15.0 22.0 53.1 30.9 0.00G 999.9 000000 724050 13743 20080303 50.5 24 30.7 24 1023.8 24 1021.5 24 10.0 24 9.6 24 21.0 25.1 70.0 31.1 0.00G 999.9 000000 724050 13743 20080304 62.3 24 50.7 24 1013.0 24 1010.7 24 9.9 24 12.4 24 21.0 27.0 72.0* 55.9* 0.00G 999.9 010000 724050 13743 20080305 57.5 24 44.9 24 1004.8 23 1001.5 24 9.0 24 13.9 24 32.1 63.9 72.0 46.9 0.71G 999.9 010010 724050 13743 20080306 44.3 24 28.3 24 1020.8 24 1018.6 24 10.0 24 6.6 24 31.1 40.0 62.1 37.0 0.45G 999.9 000000 724050 13743 20080307 45.2 24 37.9 24 1019.6 17 1017.0 24 7.2 24 6.1 24 11.1 999.9 57.0 37.0 0.00G 999.9 010000 724050 13743 20080308 51.1 24 46.4 24 1002.1 17 998.7 24 6.0 24 8.2 24 35.9 52.1 64.9 39.0 0.65G 999.9 010000 724050 13743 20080309 37.0 24 13.6 24 1019.8 24 1018.5 24 10.0 24 13.8 24 22.9 38.1 46.0* 28.9* 0.12G 999.9 010000 724050 13743 20080310 41.2 24 21.0 24 1029.4 24 1027.1 24 10.0 24 6.5 24 15.0 21.0 51.1 29.1 0.00G 999.9 000000 724050 13743 20080311 46.1 24 34.4 24 1021.3 24 1019.1 24 9.0 24 2.9 24 8.0 999.9 54.0 33.1 0.00G 999.9 010000 724050 13743 20080312 48.7 24 31.1 24 1009.8 24 1007.5 24 10.0 24 9.0 24 18.1 27.0 59.0 37.9 0.00G 999.9 000000 724050 13743 20080313 47.0 24 28.8 24 1014.3 24 1012.3 24 10.0 24 6.7 24 15.0 999.9 62.1 36.0 0.00G 999.9 000000 724050 13743 20080314 53.7 24 41.4 24 1008.0 24 1005.7 24 9.0 24 5.3 24 9.9 999.9 69.1 36.0 0.00G 999.9 000000 724050 13743 20080315 55.3 24 40.8 24 1005.0 22 1002.6 24 8.7 24 8.1 24 19.0 25.1 69.1 44.1 0.00G 999.9 010000 724050 13743 20080316 49.4 24 37.9 24 1014.2 21 1010.8 24 8.6 24 10.0 24 19.0 28.9 63.0 44.1 0.56G 999.9 010000 724050 13743 20080317 42.7 24 19.4 24 1032.0 24 1029.7 24 10.0 24 10.1 24 17.1 22.0 53.1 34.0 0.04G 999.9 000000 724050 13743 20080318 48.4 24 25.8 24 1029.7 24 1027.3 24 10.0 24 7.5 24 15.9 20.0 55.9 34.0 0.00G 999.9 000000 724050 13743 20080319 56.5 24 46.0 24 1011.8 21 1009.3 24 8.9 24 7.7 24 22.9 31.1 68.0 44.1 0.00G 999.9 010000 724050 13743 20080320 54.5 24 35.7 24 1006.1 23 1002.7 24 9.7 24 17.5 24 28.0 42.9 70.0 44.1 0.54G 999.9 010000 724050 13743 20080321 47.2 24 17.7 24 1021.3 24 1019.0 24 10.0 24 10.0 24 20.0 27.0 64.0 39.0 0.03G 999.9 000000 724050 13743 20080322 47.3 24 25.9 24 1014.7 24 1012.4 24 10.0 24 7.3 24 15.9 999.9 57.9 39.0 0.00G 999.9 000000 724050 13743 20080323 42.0 24 18.3 24 1020.6 24 1018.3 24 10.0 24 8.0 24 15.9 19.0 51.1 34.0 0.00G 999.9 000000 724050 13743 20080324 44.4 24 20.5 24 1023.2 24 1020.8 24 10.0 24 4.8 24 12.0 19.0 52.0 34.0 0.00G 999.9 000000 724050 13743 20080325 43.3 24 19.5 24 1025.5 24 1023.2 24 10.0 24 8.7 24 18.1 25.1 54.0 34.0 0.00G 999.9 000000 724050 13743 20080326 57.0 24 27.7 24 1018.2 24 1015.9 24 10.0 24 11.6 24 15.9 25.1 71.1 34.0 0.00G 999.9 000000 724050 13743 20080327 55.3 24 39.6 24 1016.9 24 1014.5 24 10.0 24 4.3 24 11.1 999.9 71.1 48.0 0.00G 999.9 010000 724050 13743 20080328 58.2 24 43.7 24 1010.5 24 1007.8 24 9.5 24 8.2 24 21.0 28.0 73.9 46.9 0.01G 999.9 000000 724050 13743 20080329 46.5 24 24.4 24 1026.6 24 1024.3 24 10.0 24 10.7 24 22.0 28.0 57.0* 37.9* 0.00G 999.9 000000 724050 13743 20080330 43.2 24 20.8 24 1035.9 24 1033.6 24 10.0 24 7.7 24 13.0 999.9 53.1 35.1 0.00G 999.9 000000 724050 13743 20080331 46.5 24 37.9 24 1032.3 19 1030.2 24 6.5 24 2.9 24 7.0 999.9 52.0 35.1 0.00G 999.9 010000 724050 13743 20080401 59.5 24 53.2 24 1016.9 15 1015.4 24 6.6 24 9.3 24 20.0 28.9 75.9 42.1 0.10G 999.9 010000 724050 13743 20080402 55.2 24 31.6 24 1023.5 24 1021.2 24 10.0 24 13.7 24 21.0 29.9 75.9 44.1 0.04G 999.9 000000 724050 13743 20080403 46.2 24 28.2 24 1032.1 24 1029.7 24 9.4 24 5.4 24 18.1 22.0 51.1* 39.2* 0.00G 999.9 010000 724050 13743 20080404 48.0 24 43.2 24 1014.2 20 1014.2 24 7.1 24 6.5 24 18.1 25.1 63.0* 39.2* 0.75G 999.9 010000 724050 13743 20080405 59.2 24 48.5 24 1012.7 24 1010.4 24 9.3 24 6.2 24 15.0 999.9 64.9 43.0 0.09G 999.9 000000 724050 13743 20080406 50.5 24 42.8 24 1020.3 21 1017.9 24 8.7 24 10.7 24 15.9 19.0 59.0* 46.4* 0.28G 999.9 010000 724050 13743 20080407 46.4 24 41.1 24 1025.1 15 1022.8 24 7.8 24 7.5 24 13.0 999.9 50.0 44.1 0.10G 999.9 010000 724050 13743 20080408 48.9 24 42.3 24 1026.3 24 1024.0 24 9.7 24 6.2 24 12.0 999.9 54.0 44.1 0.00G 999.9 010000 724050 13743 20080409 53.9 24 46.2 24 1024.2 22 1022.1 24 8.5 24 4.3 24 8.0 999.9 66.9 46.0 0.00G 999.9 000000 724050 13743 20080410 60.0 24 52.1 24 1020.4 18 1018.6 24 6.5 24 2.0 24 8.9 18.1 75.9 48.0 0.00G 999.9 100000 724050 13743 20080411 67.2 24 56.1 24 1014.0 21 1011.9 23 10.0 24 7.9 24 15.0 21.0 82.0 52.0 0.00G 999.9 000000 724050 13743 20080412 69.7 24 59.9 24 1002.0 22 1000.0 24 9.2 24 6.8 24 24.1 42.0 82.0 57.0 0.09G 999.9 010010 724050 13743 20080413 55.7 24 37.1 24 1006.9 24 1004.6 24 10.0 24 9.7 24 22.9 33.0 75.0 48.9 0.23G 999.9 000000 724050 13743 20080414 49.3 24 30.7 24 1015.2 24 1012.9 24 10.0 24 9.1 24 15.9 19.0 57.9 41.0 0.02G 999.9 010000 724050 13743 20080415 51.7 24 24.0 24 1021.2 24 1018.9 24 10.0 24 9.7 24 15.0 19.0 61.0 41.0 0.01G 999.9 000000 724050 13743 20080416 55.9 24 27.6 24 1024.3 24 1021.9 24 10.0 24 2.8 24 12.0 999.9 70.0 43.0 0.00G 999.9 000000 724050 13743 20080417 60.3 24 35.3 24 1021.5 24 1019.2 24 10.0 24 3.3 24 7.0 999.9 77.0 43.0 0.00G 999.9 000000 724050 13743 20080418 68.0 24 41.6 24 1016.8 24 1014.5 24 10.0 24 2.9 24 6.0 999.9 84.9 46.0 0.00G 999.9 000000 724050 13743 20080419 69.5 24 48.5 24 1013.9 24 1011.7 24 10.0 24 5.0 24 14.0 19.0 84.9 52.0 0.00G 999.9 000000 724050 13743 20080420 65.0 24 55.4 24 1013.2 21 1010.9 24 8.8 24 7.3 24 25.1 33.0 82.0 55.9 0.12G 999.9 110010 724050 13743 20080421 61.5 24 57.6 24 1018.1 16 1016.0 22 8.0 24 11.3 24 15.9 25.1 66.0 59.0 1.50G 999.9 010010 724050 13743 20080422 61.3 24 54.0 24 1021.9 19 1019.6 23 8.9 24 10.4 24 15.0 18.1 72.0 55.9 0.45G 999.9 010000 724050 13743 20080423 64.2 24 55.3 24 1022.3 23 1020.1 24 8.5 24 4.6 24 8.0 999.9 75.0 55.9 0.00G 999.9 000000 724050 13743 20080424 67.7 24 54.0 24 1021.7 24 1019.3 24 9.5 24 5.2 24 9.9 999.9 79.0 57.0 0.00G 999.9 000000 724050 13743 20080425 68.0 24 53.4 24 1019.4 24 1017.1 24 9.9 24 3.5 24 9.9 999.9 81.0 55.9 0.00G 999.9 000000 724050 13743 20080426 71.9 24 58.7 24 1015.2 24 1012.9 24 9.9 24 3.6 24 14.0 15.0 84.0 55.9 0.00G 999.9 000000 724050 13743 20080427 58.1 24 53.5 24 1020.4 17 1017.8 24 6.7 24 10.2 24 17.1 22.0 84.0 54.0 0.29G 999.9 010010 724050 13743 20080428 56.1 24 53.7 24 1012.1 15 1009.5 22 5.3 24 4.7 24 18.1 24.1 64.9* 51.8* 0.09G 999.9 010000 724050 13743 20080429 56.5 24 43.5 24 1009.4 24 1007.1 24 10.0 24 9.8 24 21.0 28.9 64.9 51.1 0.90G 999.9 010000 724050 13743 20080430 53.9 24 34.3 24 1017.9 24 1015.5 24 10.0 24 5.8 24 9.9 18.1 62.1 45.0 0.00G 999.9 010000 724050 13743 20080501 55.7 24 43.2 24 1019.9 24 1017.5 24 9.9 24 4.3 24 9.9 999.9 71.1 48.0 0.00G 999.9 010000 724050 13743 20080502 66.5 24 53.7 24 1014.6 24 1012.3 24 9.8 24 7.7 24 15.0 17.1 81.0 48.0 0.04G 999.9 000000 724050 13743 20080503 70.5 24 56.3 24 1012.4 24 1010.3 24 9.4 24 8.4 24 17.1 22.9 82.9 55.0 0.00G 999.9 000000 724050 13743 20080504 69.1 24 51.9 24 1013.1 24 1010.8 24 9.2 24 9.2 24 15.9 22.0 82.9 60.1 0.00G 999.9 010000 724050 13743 20080505 63.0 24 45.2 24 1018.3 24 1016.0 24 10.0 24 5.7 24 9.9 999.9 73.0 52.0 0.00G 999.9 000000 724050 13743 20080506 66.6 24 48.3 24 1016.5 24 1014.2 24 9.2 24 4.7 24 12.0 17.1 79.0 52.0 0.00G 999.9 000000 724050 13743 20080507 69.2 24 49.7 24 1014.3 24 1012.0 24 9.8 24 7.3 24 14.0 22.0 82.0 55.0 0.00G 999.9 000000 724050 13743 20080508 70.9 24 57.5 24 1008.3 21 1006.0 21 9.2 24 10.7 24 15.9 21.0 82.0 55.9 0.02G 999.9 010000 724050 13743 20080509 63.9 24 60.2 24 1004.4 12 1001.5 22 5.4 24 8.1 24 17.1 22.0 73.0 57.9 2.88G 999.9 110010 724050 13743 20080510 58.0 24 49.1 24 1008.5 20 1006.1 23 9.0 24 6.2 24 14.0 18.1 66.2* 51.8* 0.84G 999.9 010000 724050 13743 20080511 56.8 24 48.7 24 1009.7 21 1006.8 22 9.1 24 5.9 24 21.0 26.0 66.9 50.0 0.02G 999.9 010000 724050 13743 20080512 50.8 24 46.9 24 1001.0 16 997.6 23 5.6 24 19.8 24 28.0 36.9 63.0 48.0 3.45G 999.9 010000 724050 13743 20080513 58.8 24 43.0 24 1016.5 24 1014.2 24 10.0 24 8.6 24 13.0 20.0 73.9 48.0 0.50G 999.9 010000 724050 13743 20080514 62.5 24 48.5 24 1018.1 24 1015.9 24 10.0 24 6.0 24 11.1 999.9 75.0 48.0 0.00G 999.9 000000 724050 13743 20080515 68.6 24 53.9 24 1014.1 24 1011.8 24 10.0 24 5.5 24 12.0 15.9 80.1 51.1 0.00G 999.9 000000 724050 13743 20080516 66.1 24 59.3 24 1005.5 19 1003.7 24 7.5 24 8.3 24 19.0 28.9 80.1 59.0 0.82G 999.9 010000 724050 13743 20080517 63.4 24 44.7 24 1005.0 24 1002.9 24 10.0 24 11.2 24 17.1 24.1 77.0 51.1 0.53G 999.9 000000 724050 13743 20080518 65.7 24 51.3 24 999.0 24 996.8 24 9.9 24 8.7 24 14.0 22.0 77.0 51.1 0.01G 999.9 010000 724050 13743 20080519 61.2 24 39.9 24 1001.9 24 999.7 24 10.0 24 9.9 24 15.9 26.0 70.0 53.1 0.05G 999.9 000000 724050 13743 20080520 57.1 24 46.5 24 1002.5 23 1000.0 24 9.4 24 4.8 24 18.1 22.9 70.0 53.1 0.54G 999.9 010000 724050 13743 20080521 60.4 24 43.0 24 1001.0 23 998.7 24 10.0 24 6.2 24 28.0 47.0 72.0 51.1 0.04G 999.9 010000 724050 13743 20080522 60.9 24 42.5 24 1005.5 24 1003.3 24 10.0 24 8.7 24 18.1 28.0 72.0 51.1 0.00G 999.9 010000 724050 13743 20080523 61.4 24 39.9 24 1014.2 24 1011.9 24 10.0 24 7.3 24 15.0 19.0 72.0 51.1 0.00G 999.9 000000 724050 13743 20080524 66.4 24 43.5 24 1015.9 24 1013.6 24 10.0 24 7.6 24 11.1 18.1 75.0 52.0 0.00G 999.9 000000 724050 13743 20080525 67.7 24 44.0 24 1018.9 24 1016.6 24 10.0 24 5.3 24 12.0 999.9 78.1 54.0 0.00G 999.9 000000 724050 13743 20080526 70.3 24 53.1 24 1016.1 24 1013.8 24 10.0 24 9.4 24 15.9 22.0 84.9 55.9 0.00G 999.9 000000 724050 13743 20080527 75.6 24 62.6 24 1012.7 24 1010.4 24 9.7 24 7.9 24 13.0 999.9 84.9 59.0 0.00G 999.9 010000 724050 13743 20080528 67.9 24 48.0 24 1020.1 24 1017.8 24 10.0 24 9.7 24 20.0 28.9 82.9 57.9 0.00G 999.9 010000 724050 13743 20080529 64.8 24 47.3 24 1022.6 24 1020.3 24 10.0 24 6.4 24 12.0 14.0 77.0 53.1 0.00G 999.9 000000 724050 13743 20080530 70.5 24 56.9 24 1019.1 24 1016.8 24 10.0 24 7.3 24 13.0 15.9 82.0 53.1 0.00G 999.9 000000 724050 13743 20080531 74.9 24 65.3 24 1011.7 22 1009.1 24 9.6 24 9.1 24 28.9 39.0 87.1 59.0 0.00G 999.9 110010 724050 13743 20080601 75.9 24 62.6 24 1009.4 24 1007.0 24 9.2 24 7.5 24 15.9 21.0 87.1 68.0 1.45G 999.9 000000 724050 13743 20080602 71.5 24 51.2 24 1013.8 24 1011.4 24 10.0 24 7.4 24 12.0 18.1 86.0 62.1 0.00G 999.9 000000 724050 13743 20080603 71.9 24 55.8 24 1015.0 24 1012.6 24 10.0 24 7.6 24 19.0 35.0 81.0 62.1 0.00G 999.9 010000 724050 13743 20080604 73.1 24 67.4 24 1008.5 19 1006.3 24 8.3 24 8.4 24 33.0 51.1 84.0 62.1 1.25G 999.9 010010 724050 13743 20080605 75.7 24 67.0 24 1014.4 22 1011.4 24 9.6 24 5.3 24 14.0 18.1 87.1 66.9 1.03G 999.9 010010 724050 13743 20080606 74.9 24 67.2 24 1020.4 24 1018.2 24 7.6 24 6.2 24 9.9 999.9 87.1 66.9 0.00G 999.9 000000 724050 13743 20080607 82.6 24 72.9 24 1018.4 18 1016.3 24 4.8 24 4.5 24 9.9 999.9 97.0* 73.4* 0.00G 999.9 100000 724050 13743 20080608 84.2 24 71.3 24 1015.5 22 1013.4 24 9.0 24 6.8 24 15.0 19.0 98.1 73.9 0.15G 999.9 010010 724050 13743 20080609 87.4 24 71.4 24 1013.3 24 1011.0 24 9.4 24 6.0 24 12.0 15.0 96.1 73.9 0.00G 999.9 000000 724050 13743 20080610 86.4 24 73.1 24 1012.4 23 1010.1 24 9.1 24 5.3 24 15.9 22.9 96.1 77.0 0.00G 999.9 000000 724050 13743 20080611 79.6 24 62.1 24 1017.8 23 1015.0 24 9.9 24 7.3 24 24.1 35.9 96.1 72.0 0.33G 999.9 010110 724050 13743 20080612 81.3 24 61.0 24 1022.2 24 1019.9 24 10.0 24 3.1 24 8.0 999.9 91.0 70.0 0.00G 999.9 010000 724050 13743 20080613 80.5 24 64.9 24 1022.6 24 1020.2 24 9.1 24 6.3 24 14.0 999.9 91.0 70.0 0.00G 999.9 000000 724050 13743 20080614 79.0 24 65.7 24 1016.9 24 1014.6 24 8.1 24 7.4 24 20.0 28.0 89.1 72.0 0.00G 999.9 010010 724050 13743 20080615 76.9 24 65.3 24 1012.3 24 1010.0 24 9.7 24 6.9 24 15.0 19.0 89.1 71.1 0.13G 999.9 010000 724050 13743 20080616 76.5 24 60.2 24 1010.5 22 1008.4 24 8.9 24 7.0 24 29.9 46.0 87.1 66.0 0.00G 999.9 110010 724050 13743 20080617 71.1 24 59.0 24 1009.7 22 1007.4 24 10.0 24 8.4 24 17.1 27.0 87.1 64.9 0.88G 999.9 010010 724050 13743 20080618 69.8 24 49.1 24 1010.1 23 1007.7 24 10.0 24 7.7 24 19.0 32.1 81.0 57.9 0.00G 999.9 010010 724050 13743 20080619 68.2 24 52.1 24 1012.7 24 1010.3 24 10.0 24 5.2 24 9.9 19.0 81.0 57.9 0.00G 999.9 010000 724050 13743 20080620 72.1 24 56.3 24 1016.1 24 1013.8 24 10.0 24 5.8 24 11.1 15.9 82.9 60.1 0.00G 999.9 000000 724050 13743 20080621 76.1 24 61.9 24 1017.1 22 1014.9 24 9.5 24 6.0 24 15.9 31.1 84.9 61.0 0.08G 999.9 010010 724050 13743 20080622 76.3 24 64.4 24 1014.5 24 1012.3 24 9.7 24 6.1 24 19.0 22.9 84.9 66.9 0.00H 999.9 010010 724050 13743 20080623 75.6 24 63.8 24 1013.8 22 1011.5 24 8.6 24 6.6 24 21.0 24.1 86.0 69.1 0.06G 999.9 010010 724050 13743 20080624 73.0 24 56.8 24 1018.5 24 1016.2 24 10.0 24 8.2 24 15.0 22.0 86.0 62.1 0.14G 999.9 010000 724050 13743 20080625 77.7 24 57.7 24 1022.5 24 1020.2 24 10.0 24 5.0 24 9.9 15.0 87.1 62.1 0.00G 999.9 000000 724050 13743 20080626 81.4 24 65.1 24 1015.2 24 1013.1 24 9.6 24 6.5 24 14.0 24.1 93.9 66.0 0.00G 999.9 000000 724050 13743 20080627 84.0 24 69.9 24 1011.7 21 1009.3 24 9.2 24 5.4 24 15.9 22.0 93.9 72.0 0.00G 999.9 010010 724050 13743 20080628 80.2 24 71.3 24 1011.6 23 1009.3 24 9.6 24 5.5 24 15.0 999.9 91.0* 73.4* 0.09G 999.9 010000 724050 13743 20080629 81.1 24 70.0 24 1010.2 24 1008.1 24 9.9 24 6.2 24 20.0 28.9 91.9 73.9 0.50G 999.9 010010 724050 13743 20080630 79.6 24 63.7 24 1008.7 24 1006.4 24 9.7 24 7.5 24 15.9 22.9 89.1 73.0 0.00G 999.9 010010 724050 13743 20080701 73.0 24 60.2 24 1012.6 23 1010.2 24 9.7 24 5.4 24 20.0 28.0 84.9 64.9 0.16G 999.9 010010 724050 13743 20080702 77.0 24 55.1 24 1016.9 24 1014.5 24 10.0 24 6.4 24 12.0 18.1 86.0 64.9 0.00G 999.9 000000 724050 13743 20080703 79.8 24 58.3 24 1016.0 24 1013.7 24 10.0 24 8.3 24 15.9 22.9 93.0 68.0 0.00G 999.9 000000 724050 13743 20080704 80.2 24 64.1 24 1015.9 23 1013.5 24 9.8 24 6.3 24 13.0 999.9 93.0 68.0 0.00G 999.9 010010 724050 13743 20080705 75.4 24 68.2 24 1015.9 19 1013.6 24 5.4 24 3.0 24 8.9 999.9 82.9* 71.6* 0.07G 999.9 010000 724050 13743 20080706 77.0 24 68.3 24 1016.7 19 1014.4 24 8.7 24 4.2 24 9.9 999.9 84.2* 72.0* 0.05G 999.9 010010 724050 13743 20080707 78.1 24 69.9 24 1017.4 20 1015.1 24 9.0 24 6.1 24 13.0 999.9 86.0 72.0 0.01G 999.9 000000 724050 13743 20080708 80.2 24 66.9 24 1016.1 24 1013.8 24 9.9 24 8.5 24 17.1 20.0 91.0 71.1 0.00G 999.9 000000 724050 13743 20080709 79.5 24 68.7 24 1012.1 24 1009.8 24 10.0 24 10.3 24 18.1 22.9 91.0 71.1 0.00G 999.9 010000 724050 13743 20080710 82.1 24 64.2 24 1015.2 22 1012.3 24 9.8 24 7.6 24 12.0 18.1 89.1 73.0 0.01G 999.9 000000 724050 13743 20080711 80.5 24 62.8 24 1017.8 24 1015.5 24 10.0 24 4.2 24 8.9 19.0 90.0 71.1 0.00G 999.9 000000 724050 13743 20080712 82.6 24 67.2 24 1018.6 24 1016.2 24 9.4 24 7.1 24 12.0 999.9 91.0 71.1 0.00G 999.9 000000 724050 13743 20080713 81.8 24 65.3 24 1013.0 23 1010.5 24 9.7 24 11.2 24 15.9 18.1 91.9 73.9 0.00G 999.9 010010 724050 13743 20080714 77.3 24 65.6 24 1010.9 18 1008.4 24 8.2 24 4.5 24 8.9 999.9 91.9 71.1 1.11G 999.9 010010 724050 13743 20080715 79.9 24 60.5 24 1016.9 24 1014.6 24 9.4 24 3.6 24 6.0 999.9 89.1 69.1 0.53G 999.9 000000 724050 13743 20080716 82.3 24 60.4 24 1020.7 24 1018.3 24 9.3 24 4.1 24 8.9 999.9 93.0 69.1 0.00G 999.9 000000 724050 13743 20080717 83.6 24 63.5 24 1020.4 23 1018.0 24 9.3 24 3.5 24 21.0 27.0 93.9 70.0 0.00G 999.9 010010 724050 13743 20080718 84.3 24 67.5 24 1018.3 24 1016.0 24 8.0 24 6.7 24 11.1 15.0 93.9 73.0 0.26G 999.9 000000 724050 13743 20080719 84.2 24 68.4 24 1016.7 24 1014.3 24 9.5 24 7.6 24 11.1 17.1 93.9 73.9 0.00G 999.9 000000 724050 13743 20080720 85.9 24 71.6 24 1014.7 24 1012.3 24 8.4 24 8.6 24 12.0 999.9 95.0 73.9 0.00G 999.9 000000 724050 13743 20080721 85.1 24 67.6 24 1011.5 24 1009.2 24 9.0 24 7.7 24 13.0 21.0 96.1 75.0 0.00G 999.9 010010 724050 13743 20080722 84.4 24 66.1 24 1012.4 24 1010.2 24 9.7 24 5.7 24 26.0 44.1 96.1 75.0 0.00G 999.9 010010 724050 13743 20080723 82.9 24 66.8 24 1013.0 24 1010.7 24 10.0 24 6.0 24 13.0 21.0 91.9 75.9 0.04G 999.9 010010 724050 13743 20080724 75.0 24 61.0 24 1015.2 22 1012.6 24 9.0 24 5.8 24 28.0 38.1 87.1 66.9 1.09G 999.9 010010 724050 13743 20080725 78.7 24 57.8 24 1019.6 24 1017.3 24 10.0 24 4.5 24 12.0 19.0 88.0 66.9 0.00G 999.9 000000 724050 13743 20080726 80.3 24 63.4 24 1016.2 24 1014.2 24 10.0 24 9.3 24 13.0 19.0 89.1 68.0 0.00G 999.9 000000 724050 13743 20080727 80.4 24 68.8 24 1010.4 23 1008.0 24 9.1 24 6.9 24 28.9 36.9 89.1 73.0 0.00G 999.9 110010 724050 13743 20080728 78.2 24 62.3 24 1012.0 24 1009.7 24 9.7 24 4.4 24 9.9 999.9 89.1 69.1 0.95G 999.9 000000 724050 13743 20080729 81.7 24 65.2 24 1013.4 24 1011.0 24 8.2 24 4.0 24 8.0 999.9 91.0 69.1 0.01G 999.9 010000 724050 13743 20080730 83.7 24 70.5 24 1010.2 24 1007.9 24 7.7 24 4.3 24 12.0 999.9 91.9 73.9 0.00I 999.9 000000 724050 13743 20080731 83.7 24 67.8 24 1006.2 24 1003.9 24 9.2 24 4.4 24 11.1 999.9 91.9 78.1 0.00G 999.9 010000 724050 13743 20080801 83.7 24 67.4 24 1007.0 24 1004.7 24 9.8 24 6.5 24 12.0 15.9 93.0 75.0 0.00G 999.9 000000 724050 13743 20080802 81.3 24 66.0 24 1007.1 22 1004.7 24 9.8 24 4.4 24 24.1 28.9 90.0* 73.4* 0.00G 999.9 011110 724050 13743 20080803 78.6 24 62.2 24 1011.1 24 1008.6 24 10.0 24 7.5 24 14.0 19.0 90.0 70.0 0.23G 999.9 010000 724050 13743 20080804 80.0 24 59.2 24 1015.4 24 1013.1 24 10.0 24 6.9 24 12.0 15.9 89.1 70.0 0.00G 999.9 000000 724050 13743 20080805 81.2 24 63.3 24 1015.0 24 1012.6 24 10.0 24 4.5 24 8.9 999.9 89.1 70.0 0.00G 999.9 000000 724050 13743 20080806 83.3 24 67.6 24 1011.5 24 1009.1 24 8.7 24 7.5 24 15.0 22.9 93.9 75.0 0.00G 999.9 000000 724050 13743 20080807 80.2 24 60.4 24 1009.7 23 1007.4 24 10.0 24 4.9 24 20.0 26.0 93.9 72.0 0.00G 999.9 010010 724050 13743 20080808 76.7 24 57.2 24 1008.2 24 1005.9 24 10.0 24 9.4 24 20.0 26.0 87.1 69.1 0.13G 999.9 010000 724050 13743 20080809 75.0 24 51.6 24 1012.2 24 1009.9 24 10.0 24 6.3 24 11.1 999.9 86.0 64.0 0.00G 999.9 000000 724050 13743 20080810 75.7 24 56.5 24 1010.9 24 1008.6 24 10.0 24 4.5 24 15.0 24.1 88.0 64.0 0.00G 999.9 010000 724050 13743 20080811 72.4 24 53.3 24 1010.0 24 1007.7 24 10.0 24 8.3 24 15.9 24.1 88.0 66.0 0.00G 999.9 000000 724050 13743 20080812 75.0 24 53.3 24 1011.0 24 1008.7 24 10.0 24 7.8 24 13.0 18.1 86.0 64.0 0.00G 999.9 000000 724050 13743 20080813 77.7 24 60.0 24 1009.7 24 1007.5 24 10.0 24 4.5 24 11.1 999.9 87.1 64.0 0.00G 999.9 000000 724050 13743 20080814 76.4 24 61.2 24 1008.8 23 1006.4 24 10.0 24 5.6 24 27.0 39.0 87.1 66.9 0.00G 999.9 010010 724050 13743 20080815 75.1 24 61.0 24 1014.1 24 1011.7 24 9.5 24 4.2 24 8.0 999.9 87.1 66.9 0.20G 999.9 010000 724050 13743 20080816 76.1 24 57.4 24 1016.6 24 1014.2 24 9.5 24 6.5 24 12.0 17.1 86.0 66.0 0.00G 999.9 010000 724050 13743 20080817 78.1 24 53.9 24 1016.8 24 1014.4 24 10.0 24 4.5 24 8.9 999.9 89.1 66.0 0.00G 999.9 000000 724050 13743 20080818 79.6 24 61.1 24 1015.5 24 1013.2 24 8.8 24 5.3 24 12.0 15.9 93.0 66.0 0.00G 999.9 000000 724050 13743 20080819 82.6 24 61.8 24 1014.6 24 1012.2 24 8.6 24 6.7 24 11.1 15.9 93.9 69.1 0.00G 999.9 000000 724050 13743 20080820 76.1 24 53.1 24 1021.1 24 1018.8 24 10.0 24 8.4 24 15.9 21.0 93.9 66.9 0.00G 999.9 000000 724050 13743 20080821 76.3 24 56.8 24 1023.9 24 1021.6 24 10.0 24 3.0 24 8.0 999.9 86.0 66.9 0.00G 999.9 000000 724050 13743 20080822 76.7 24 59.0 24 1025.9 24 1023.6 24 10.0 24 6.3 24 11.1 15.9 86.0 66.9 0.00G 999.9 000000 724050 13743 20080823 76.4 24 62.4 24 1025.0 24 1022.6 24 10.0 24 4.4 24 11.1 999.9 86.0 66.9 0.00G 999.9 000000 724050 13743 20080824 79.3 24 64.2 24 1018.9 24 1016.6 24 10.0 24 7.0 24 12.0 999.9 89.1 68.0 0.00G 999.9 000000 724050 13743 20080825 81.2 24 64.5 24 1013.0 24 1010.7 24 10.0 24 7.5 24 13.0 15.0 91.9 71.1 0.00G 999.9 000000 724050 13743 20080826 77.0 24 55.2 24 1016.3 24 1014.0 24 10.0 24 7.9 24 17.1 22.0 91.9 69.1 0.00G 999.9 000000 724050 13743 20080827 73.8 24 54.2 24 1017.9 24 1015.6 24 10.0 24 5.4 24 9.9 14.0 82.0 68.0 0.00G 999.9 010000 724050 13743 20080828 71.7 24 63.1 24 1015.6 22 1013.3 24 9.1 24 7.0 24 9.9 15.9 79.0 68.0 0.10G 999.9 010000 724050 13743 20080829 72.8 24 66.4 24 1014.3 18 1012.0 24 9.1 24 5.7 24 8.9 14.0 78.1 69.1 0.44G 999.9 010000 724050 13743 20080830 77.7 24 67.2 24 1016.2 22 1013.8 24 8.4 24 5.0 24 8.0 999.9 90.0 69.1 0.13G 999.9 000000 724050 13743 20080831 81.2 24 59.9 24 1020.4 24 1018.0 24 7.7 24 5.2 24 11.1 999.9 90.0 71.1 0.00G 999.9 000000 724050 13743 20080901 77.0 24 54.6 24 1022.0 24 1019.7 24 10.0 24 3.5 24 9.9 999.9 89.1 64.9 0.00G 999.9 000000 724050 13743 20080902 78.4 24 55.7 24 1019.3 24 1017.0 24 10.0 24 4.0 24 8.0 999.9 91.9 64.9 0.00G 999.9 000000 724050 13743 20080903 81.6 24 58.8 24 1014.3 24 1012.0 24 10.0 24 4.0 24 9.9 999.9 95.0 64.9 0.00G 999.9 000000 724050 13743 20080904 83.6 24 64.6 24 1013.9 24 1011.6 24 10.0 24 4.4 24 12.0 999.9 95.0 69.1 0.00G 999.9 000000 724050 13743 20080905 81.3 24 64.9 24 1016.2 24 1013.8 24 10.0 24 8.3 24 11.1 15.9 95.0 73.0 0.00G 999.9 010000 724050 13743 20080906 77.0 24 72.1 24 1009.0 14 1005.7 24 6.2 24 9.9 24 27.0 35.0 90.0 73.0 0.43G 999.9 010000 724050 13743 20080907 75.3 24 58.6 24 1014.9 24 1013.1 24 10.0 24 6.5 24 12.0 19.0 84.9 66.0 3.47G 999.9 000000 724050 13743 20080908 77.7 24 62.6 24 1020.5 24 1018.2 24 9.9 24 3.5 24 8.0 999.9 87.1 66.0 0.00G 999.9 000000 724050 13743 20080909 77.2 24 68.0 24 1017.3 20 1014.8 24 8.6 24 7.1 24 18.1 999.9 87.1 69.1 0.00G 999.9 010000 724050 13743 20080910 73.4 24 57.1 24 1021.5 24 1019.2 24 9.9 24 7.7 24 13.0 18.1 81.0 68.0 0.18G 999.9 010000 724050 13743 20080911 73.5 24 57.0 24 1025.8 24 1023.5 24 10.0 24 5.6 24 8.9 999.9 80.1 68.0 0.00G 999.9 000000 724050 13743 20080912 74.6 24 64.7 24 1021.7 22 1019.5 24 9.8 24 7.9 24 13.0 21.0 81.0 68.0 0.00G 999.9 010000 724050 13743 20080913 81.4 24 69.3 24 1014.8 24 1012.5 24 10.0 24 4.1 24 8.0 999.9 93.0 70.0 0.03G 999.9 010000 724050 13743 20080914 82.3 24 72.2 24 1010.3 24 1008.0 24 9.4 24 7.3 24 15.9 22.0 93.0 73.9 0.00G 999.9 000000 724050 13743 20080915 82.9 24 62.4 24 1009.4 24 1007.1 24 10.0 24 11.9 24 17.1 26.0 91.9 75.0 0.00G 999.9 000000 724050 13743 20080916 72.4 24 53.4 24 1019.5 24 1017.2 24 10.0 24 8.7 24 15.0 26.0 86.0 68.0 0.00G 999.9 000000 724050 13743 20080917 69.2 24 53.7 24 1021.7 24 1019.4 24 10.0 24 4.4 24 8.9 999.9 79.0 61.0 0.00G 999.9 000000 724050 13743 20080918 71.6 24 54.9 24 1021.3 24 1018.9 24 10.0 24 5.7 24 14.0 15.0 82.9 61.0 0.00G 999.9 000000 724050 13743 20080919 69.0 24 50.7 24 1027.7 24 1025.3 24 10.0 24 8.4 24 12.0 21.0 82.9 61.0 0.00G 999.9 000000 724050 13743 20080920 65.1 24 49.3 24 1026.4 24 1024.1 24 10.0 24 5.6 24 12.0 999.9 75.0 55.9 0.00G 999.9 000000 724050 13743 20080921 67.8 24 53.2 24 1024.2 24 1021.9 24 10.0 24 1.8 24 7.0 999.9 82.0 55.9 0.01G 999.9 000000 724050 13743 20080922 71.5 24 58.6 24 1025.8 24 1023.5 24 9.6 24 4.6 24 8.0 999.9 82.9 55.9 0.01G 999.9 000000 724050 13743 20080923 70.5 24 55.5 24 1029.4 22 1027.1 24 8.4 24 9.1 24 14.0 17.1 82.9 62.1 0.00G 999.9 000000 724050 13743 20080924 66.0 24 51.7 24 1029.2 24 1026.9 24 10.0 24 8.3 24 15.9 999.9 75.9 57.0 0.00G 999.9 000000 724050 13743 20080925 63.4 24 51.8 24 1026.0 23 1024.0 24 9.9 24 13.3 24 18.1 25.1 73.9 57.0 0.00G 999.9 010000 724050 13743 20080926 64.8 24 59.4 24 1018.7 19 1016.9 24 7.1 24 13.5 24 20.0 27.0 70.0 59.0 0.22G 999.9 010000 724050 13743 20080927 73.2 24 67.7 24 1014.6 15 1012.6 24 7.1 24 5.5 24 13.0 999.9 80.1 62.1 0.95G 999.9 010010 724050 13743 20080928 72.6 24 67.1 24 1012.5 18 1010.1 24 8.5 24 2.5 24 15.9 20.0 78.1* 69.8* 0.04G 999.9 010000 724050 13743 20080929 70.7 24 60.5 24 1015.3 24 1013.0 24 10.0 24 7.3 24 14.0 19.0 80.1 64.9 0.65G 999.9 000000 724050 13743 20080930 67.9 24 59.2 24 1013.0 24 1010.7 24 8.3 24 3.4 24 8.9 999.9 78.1 61.0 0.00G 999.9 010010 724050 13743 20081001 65.2 24 57.0 24 1006.3 22 1004.3 24 8.7 24 4.1 24 20.0 27.0 75.0 59.0 0.44G 999.9 010010 724050 13743 20081002 59.9 24 43.2 24 1008.5 24 1006.3 24 9.8 24 8.6 24 19.0 24.1 73.9 52.0 0.04G 999.9 010000 724050 13743 20081003 61.2 24 44.0 24 1014.5 24 1012.2 24 10.0 24 5.8 24 8.9 999.9 75.0 51.1 0.00G 999.9 000000 724050 13743 20081004 65.6 24 48.6 24 1021.7 24 1019.3 24 10.0 24 4.9 24 9.9 999.9 75.0 51.1 0.00G 999.9 000000 724050 13743 20081005 66.1 24 52.6 24 1023.9 24 1021.5 24 9.2 24 3.8 24 8.9 15.9 75.9 57.9 0.00G 999.9 000000 724050 13743 20081006 63.3 24 46.5 24 1025.6 24 1023.3 24 10.0 24 5.8 24 11.1 999.9 75.9 55.9 0.00G 999.9 000000 724050 13743 20081007 58.5 24 39.2 24 1028.7 24 1026.2 24 10.0 24 5.7 24 11.1 999.9 71.1 50.0 0.00G 999.9 000000 724050 13743 20081008 59.5 24 47.9 24 1021.9 24 1019.8 24 10.0 24 6.8 24 13.0 999.9 70.0 50.0 0.00G 999.9 010000 724050 13743 20081009 69.0 24 58.7 24 1016.0 24 1013.6 24 9.9 24 6.5 24 9.9 999.9 79.0 52.0 0.00G 999.9 010000 724050 13743 20081010 69.5 24 55.0 24 1021.3 24 1019.0 24 10.0 24 4.7 24 8.9 12.0 79.0 60.1 0.00G 999.9 000000 724050 13743 20081011 65.3 24 49.6 24 1028.2 24 1025.9 24 10.0 24 4.3 24 8.0 999.9 77.0 54.0 0.00G 999.9 000000 724050 13743 20081012 65.4 24 50.5 24 1032.2 24 1029.8 24 10.0 24 2.3 24 5.1 999.9 78.1 54.0 0.00G 999.9 000000 724050 13743 20081013 66.1 24 53.6 24 1030.0 24 1027.7 24 10.0 24 3.7 24 7.0 999.9 82.0 54.0 0.00G 999.9 000000 724050 13743 20081014 67.8 24 56.5 24 1023.8 24 1021.5 24 10.0 24 3.2 24 8.0 999.9 82.0 55.0 0.00G 999.9 000000 724050 13743 20081015 73.3 24 63.2 24 1019.7 24 1017.3 24 10.0 24 3.6 24 9.9 999.9 82.0 57.9 0.00G 999.9 000000 724050 13743 20081016 70.1 24 62.9 24 1015.7 24 1013.4 24 7.6 24 5.9 24 15.0 19.0 82.0 64.0 0.00G 999.9 010000 724050 13743 20081017 61.3 24 43.6 24 1018.8 24 1016.5 24 10.0 24 11.2 24 19.0 24.1 82.0 55.0 0.00G 999.9 000000 724050 13743 20081018 54.1 24 35.6 24 1020.3 24 1017.9 24 10.0 24 11.1 24 15.0 19.0 63.0 48.9 0.00G 999.9 000000 724050 13743 20081019 51.2 24 29.6 24 1026.2 24 1023.9 24 10.0 24 11.2 24 15.0 20.0 61.0 44.1 0.00G 999.9 000000 724050 13743 20081020 49.8 24 30.8 24 1025.7 24 1023.4 24 10.0 24 4.8 24 8.9 999.9 62.1 37.9 0.00G 999.9 000000 724050 13743 20081021 52.9 24 36.9 24 1018.5 24 1016.2 24 10.0 24 8.3 24 20.0 31.1 64.9 37.9 0.00G 999.9 000000 724050 13743 20081022 50.5 24 30.1 24 1025.2 24 1022.8 24 10.0 24 12.6 24 19.0 27.0 64.9 44.1 0.00G 999.9 000000 724050 13743 20081023 47.1 24 33.7 24 1035.4 24 1033.0 24 10.0 24 7.3 24 12.0 999.9 57.9 39.0 0.00G 999.9 000000 724050 13743 20081024 50.3 24 41.7 24 1032.3 24 1030.0 24 10.0 24 4.2 24 11.1 999.9 57.9 39.0 0.00G 999.9 000000 724050 13743 20081025 60.2 24 55.9 24 1018.2 17 1014.5 24 8.5 24 8.8 24 22.9 32.1 68.0 44.1 0.04G 999.9 110000 724050 13743 20081026 53.9 24 46.2 24 1013.6 24 1011.3 24 9.3 24 4.6 24 14.0 18.1 68.0 45.0 0.80G 999.9 000000 724050 13743 20081027 49.1 24 39.7 24 1014.0 23 1011.9 24 9.8 24 8.6 24 17.1 25.1 63.0 39.9 0.00G 999.9 010000 724050 13743 20081028 45.6 24 34.5 24 1009.9 22 1008.0 24 10.0 24 12.8 24 22.9 39.0 52.0 39.9 0.25G 999.9 010000 724050 13743 20081029 45.6 24 25.4 24 1013.2 24 1010.9 24 10.0 24 13.2 24 20.0 35.0 52.0 41.0 0.07G 999.9 000000 724050 13743 20081030 44.1 24 26.7 24 1027.5 24 1025.1 24 10.0 24 7.7 24 15.0 20.0 54.0 37.0 0.00G 999.9 000000 724050 13743 20081031 46.7 24 34.5 24 1033.0 24 1030.7 24 10.0 24 4.6 24 9.9 999.9 62.1 36.0 0.00G 999.9 000000 724050 13743 20081101 54.2 24 41.3 24 1026.2 24 1023.9 24 10.0 24 5.4 24 8.0 999.9 73.9 37.0 0.00G 999.9 000000 724050 13743 20081102 54.3 24 42.7 24 1028.5 24 1026.1 24 10.0 24 7.5 24 13.0 999.9 73.9 41.0 0.00G 999.9 000000 724050 13743 20081103 51.8 24 43.7 24 1032.2 21 1029.8 24 9.8 24 3.9 24 8.9 999.9 57.9* 48.2* 0.00G 999.9 010000 724050 13743 20081104 54.9 24 50.6 24 1028.0 24 1025.5 24 8.4 24 5.0 24 8.0 999.9 59.0 48.9 0.00G 999.9 010000 724050 13743 20081105 58.9 24 53.3 24 1020.4 22 1018.5 24 8.1 24 10.0 24 14.0 21.0 68.0 52.0 0.08G 999.9 010000 724050 13743 20081106 61.2 24 54.4 24 1012.9 24 1010.6 24 9.9 24 13.1 24 17.1 22.0 68.0 55.0 0.02G 999.9 010000 724050 13743 20081107 63.2 24 56.2 24 1012.8 24 1010.7 24 9.5 24 4.8 24 12.0 999.9 70.0 54.0 0.01G 999.9 000000 724050 13743 20081108 59.7 24 51.2 24 1006.1 24 1003.8 24 9.8 24 3.9 24 14.0 19.0 70.0 55.0 0.00G 999.9 010000 724050 13743 20081109 54.4 24 33.9 24 1008.7 24 1006.4 24 10.0 24 5.9 24 13.0 21.0 66.9 46.0 0.00G 999.9 000000 724050 13743 20081110 47.5 24 28.9 24 1017.8 24 1015.5 24 10.0 24 8.1 24 15.9 20.0 60.1 39.9 0.00G 999.9 000000 724050 13743 20081111 41.4 24 23.2 24 1027.3 24 1025.0 24 10.0 24 7.4 24 15.9 999.9 52.0 35.1 0.00G 999.9 000000 724050 13743 20081112 46.5 24 31.3 24 1028.8 24 1026.5 24 10.0 24 4.2 24 7.0 999.9 50.0 35.1 0.00G 999.9 010000 724050 13743 20081113 48.4 24 42.8 24 1022.2 21 1019.7 24 9.9 24 3.8 24 15.9 18.1 52.0 44.1 0.01G 999.9 010000 724050 13743 20081114 53.1 24 51.8 24 1014.1 13 1011.8 24 3.2 24 2.8 24 7.0 999.9 55.9 46.0 0.75G 999.9 110000 724050 13743 20081115 61.2 24 58.2 24 1001.9 14 1001.6 24 6.1 24 6.8 24 24.1 31.1 73.9 51.1 0.54G 999.9 110010 724050 13743 20081116 48.9 24 31.5 24 1006.8 24 1004.5 24 10.0 24 12.5 24 19.0 28.0 73.9 43.0 0.21G 999.9 000000 724050 13743 20081117 40.9 24 24.4 24 1018.3 24 1016.0 24 10.0 24 6.7 24 14.0 19.0 50.0 35.1 0.00G 999.9 010000 724050 13743 20081118 36.1 24 23.8 24 1019.9 24 1017.6 24 10.0 24 11.8 24 20.0 28.9 46.9 32.0 0.00G 999.9 001000 724050 13743 20081119 32.6 24 14.6 24 1023.8 24 1021.5 24 10.0 24 11.6 24 17.1 22.9 39.9 27.0 0.00G 999.9 000000 724050 13743 20081120 39.0 24 19.1 24 1014.9 24 1012.6 24 10.0 24 8.0 24 18.1 26.0 46.9 27.1 0.00G 999.9 000000 724050 13743 20081121 36.7 24 18.9 24 1018.2 23 1015.9 24 9.8 24 10.3 24 20.0 28.0 46.9 30.9 0.00G 999.9 001000 724050 13743 20081122 30.9 24 10.6 24 1031.4 24 1029.1 24 10.0 24 11.1 24 21.0 27.0 39.9 26.1 0.00G 999.9 000000 724050 13743 20081123 33.5 24 11.9 24 1032.6 24 1030.3 24 10.0 24 6.3 24 9.9 999.9 42.1 26.1 0.00G 999.9 000000 724050 13743 20081124 38.2 24 22.5 24 1024.8 24 1022.4 24 10.0 24 6.1 24 15.9 19.0 53.1 27.0 0.00G 999.9 010000 724050 13743 20081125 44.6 24 30.3 24 1010.7 22 1008.2 24 10.0 24 10.1 24 15.0 24.1 53.1 30.2 0.08G 999.9 010000 724050 13743 20081126 39.3 24 23.0 24 1015.1 24 1012.9 24 10.0 24 8.4 24 14.0 22.0 45.0 32.0 0.00G 999.9 000000 724050 13743 20081127 38.0 24 25.5 24 1017.9 24 1015.6 24 10.0 24 3.9 24 7.0 999.9 48.9 28.9 0.00G 999.9 000000 724050 13743 20081128 41.0 24 29.8 24 1012.0 24 1009.8 24 10.0 24 2.3 24 6.0 999.9 48.9 30.2 0.00G 999.9 000000 724050 13743 20081129 40.4 24 24.3 24 1014.9 24 1012.6 24 10.0 24 3.5 24 13.0 17.1 48.9 30.9 0.00G 999.9 000000 724050 13743 20081130 40.1 24 34.4 24 1007.7 20 1005.2 24 6.1 24 5.3 24 12.0 999.9 48.9 31.1 0.18G 999.9 010000 724050 13743 20081201 45.2 24 39.7 24 1001.1 18 996.9 24 8.3 24 10.6 24 18.1 27.0 50.0 37.0 0.56G 999.9 110000 724050 13743 20081202 40.4 24 27.9 24 1017.0 24 1014.7 24 10.0 24 6.6 24 13.0 19.0 50.0 33.1 0.00G 999.9 000000 724050 13743 20081203 38.1 24 24.8 24 1025.4 24 1023.1 24 10.0 24 4.5 24 9.9 999.9 46.0 28.0 0.00G 999.9 000000 724050 13743 20081204 43.6 24 30.3 24 1020.6 24 1018.2 24 10.0 24 7.2 24 11.1 999.9 53.1 28.2 0.00G 999.9 000000 724050 13743 20081205 38.4 24 23.2 24 1024.5 24 1022.2 24 9.9 24 8.6 24 15.0 19.0 53.1 32.0 0.04G 999.9 010000 724050 13743 20081206 30.2 24 16.9 24 1022.5 22 1019.7 24 9.3 24 6.6 24 14.0 20.0 39.9 24.1 0.00G 999.9 001000 724050 13743 20081207 32.2 24 18.6 24 1014.0 24 1011.3 24 8.9 24 11.5 24 26.0 35.9 36.0 24.3 0.00G 999.9 001000 724050 13743 20081208 26.8 24 6.4 24 1028.4 24 1026.1 24 10.0 24 6.0 24 13.0 15.9 35.1 21.9 0.00G 999.9 000000 724050 13743 20081209 38.7 24 25.0 24 1027.8 24 1025.5 24 10.0 24 6.7 24 12.0 999.9 48.9 21.9 0.00G 999.9 000000 724050 13743 20081210 56.2 24 50.9 24 1016.3 19 1013.6 24 9.2 24 8.6 24 15.0 22.9 66.2* 44.1* 0.08G 999.9 010000 724050 13743 20081211 47.3 24 45.4 24 1013.0 14 1010.8 24 4.8 24 8.4 24 14.0 21.0 59.0* 39.2* 0.07G 999.9 010000 724050 13743 20081212 40.5 24 33.1 24 1006.6 19 1002.7 24 8.4 24 11.9 24 22.0 28.9 55.9 37.0 1.65G 999.9 010000 724050 13743 20081213 33.7 24 14.5 24 1025.7 24 1023.4 24 10.0 24 8.0 24 15.0 20.0 44.1 28.9 0.05G 999.9 000000 724050 13743 20081214 37.2 24 24.5 24 1032.4 24 1030.0 24 10.0 24 7.6 24 15.0 21.0 48.0 28.9 0.00G 999.9 000000 724050 13743 20081215 50.4 24 39.9 24 1028.1 24 1025.8 24 10.0 24 8.1 24 17.1 22.9 66.9 30.2 0.00G 999.9 010000 724050 13743 20081216 46.8 24 37.8 24 1029.3 24 1027.0 24 9.5 24 9.8 24 18.1 24.1 66.9 36.0 0.09G 999.9 010000 724050 13743 20081217 38.8 24 35.9 24 1021.4 14 1020.8 24 7.4 24 5.3 24 12.0 999.9 46.4* 33.8* 0.57G 999.9 010000 724050 13743 20081218 41.6 24 35.2 24 1025.9 22 1023.6 24 9.9 24 3.4 24 7.0 999.9 46.9 34.0 0.12G 999.9 000000 724050 13743 20081219 41.5 24 38.1 24 1023.4 14 1016.7 24 5.5 24 3.0 24 8.9 999.9 46.9 39.0 0.01G 999.9 010000 724050 13743 20081220 39.1 24 34.3 24 1015.1 22 1012.1 24 8.2 24 7.4 24 11.1 999.9 46.9 34.0 0.32G 999.9 010000 724050 13743 20081221 34.2 24 25.3 24 1009.6 15 1008.2 24 8.1 24 7.6 24 19.0 28.0 44.1 30.0 0.02G 999.9 010000 724050 13743 20081222 24.6 24 -0.9 24 1018.9 24 1016.7 24 10.0 24 14.1 24 21.0 34.0 44.1 16.0 0.08G 999.9 000000 724050 13743 20081223 23.6 24 6.1 24 1037.7 24 1035.4 24 10.0 24 6.0 24 9.9 15.0 33.1 17.1 0.00G 999.9 000000 724050 13743 20081224 39.3 24 26.4 24 1027.4 23 1025.7 24 10.0 24 10.5 24 20.0 27.0 51.1 17.1 0.00G 999.9 000000 724050 13743 20081225 49.8 24 32.3 24 1022.4 24 1019.4 24 10.0 24 9.5 24 19.0 28.9 57.9 34.0 0.00G 999.9 010000 724050 13743 20081226 35.1 24 21.9 24 1033.8 24 1031.5 24 10.0 24 4.5 24 13.0 999.9 42.1* 30.0* 0.00G 999.9 000000 724050 13743 20081227 44.8 24 38.8 24 1027.7 22 1025.8 24 9.2 24 5.3 24 11.1 999.9 59.0 29.1 0.04G 999.9 010000 724050 13743 20081228 58.9 24 51.4 24 1017.6 19 1015.6 24 9.8 24 12.1 24 19.0 28.0 70.0 39.0 0.00G 999.9 010000 724050 13743 20081229 48.5 24 24.6 24 1018.9 24 1016.5 24 10.0 24 8.0 24 15.0 18.1 70.0 37.9 0.00G 999.9 000000 724050 13743 20081230 45.8 24 18.2 24 1013.7 24 1011.4 24 10.0 24 8.9 24 19.0 28.0 54.0 37.9 0.00G 999.9 000000 724050 13743 20081231 39.7 24 20.1 24 1008.2 23 1005.1 24 9.6 24 10.8 24 31.1 44.1 54.0 28.9 0.00G 999.9 011000 fluids-1.0.22/tests/gsod/2008/722324-03071.op0000644000175000017500000014350514302004506016654 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20080101 34.9 24 8.6 24 9999.9 0 936.2 24 10.0 24 4.0 24 8.9 999.9 46.4* 21.2* 0.00I 999.9 000000 722324 03071 20080102 34.2 24 6.9 24 9999.9 0 940.6 24 10.0 24 5.1 24 13.0 19.0 46.4* 23.0* 0.00I 999.9 000000 722324 03071 20080103 39.7 24 7.3 24 9999.9 0 932.8 24 10.0 24 10.1 24 19.0 24.1 50.0* 33.8* 0.00I 999.9 000000 722324 03071 20080104 45.7 24 18.8 24 9999.9 0 923.4 24 10.0 24 10.4 24 13.0 18.1 59.0* 37.4* 0.00I 999.9 000000 722324 03071 20080105 55.8 24 28.6 24 9999.9 0 918.6 24 10.0 24 9.9 24 20.0 26.0 77.0* 44.6* 0.00I 999.9 000000 722324 03071 20080106 61.5 24 33.0 24 9999.9 0 914.4 24 10.0 24 8.6 24 20.0 26.0 77.0* 46.4* 0.00I 999.9 000000 722324 03071 20080107 58.2 24 35.9 24 9999.9 0 912.6 24 10.0 24 5.6 24 14.0 20.0 73.4* 41.0* 0.00I 999.9 000000 722324 03071 20080108 52.4 24 25.6 24 9999.9 0 918.0 24 10.0 24 6.3 24 15.9 21.0 68.0* 44.6* 0.00I 999.9 000000 722324 03071 20080109 46.0 24 21.0 24 9999.9 0 919.4 24 10.0 24 6.9 24 17.1 21.0 68.0* 33.8* 0.00I 999.9 000000 722324 03071 20080110 51.5 24 21.4 24 9999.9 0 915.6 24 10.0 24 9.4 24 14.0 21.0 62.6* 41.0* 0.00I 999.9 000000 722324 03071 20080111 48.4 24 15.9 24 9999.9 0 914.9 24 10.0 24 5.4 24 15.9 22.0 69.8* 33.8* 0.00I 999.9 000000 722324 03071 20080112 47.8 24 18.6 24 9999.9 0 916.2 24 10.0 24 7.5 24 15.0 19.0 62.6* 35.6* 0.00I 999.9 000000 722324 03071 20080113 41.8 24 17.8 24 9999.9 0 922.0 24 10.0 24 3.0 24 12.0 15.0 57.2* 28.4* 0.00I 999.9 000000 722324 03071 20080114 43.1 24 16.6 24 9999.9 0 926.0 24 10.0 24 2.4 24 8.0 999.9 57.2* 28.4* 0.00I 999.9 000000 722324 03071 20080115 41.9 24 23.6 24 9999.9 0 923.2 24 10.0 24 5.3 24 19.0 25.1 51.8* 32.0* 99.99 999.9 010000 722324 03071 20080116 40.9 24 29.1 24 9999.9 0 913.2 24 10.0 24 10.7 24 15.9 22.0 50.0* 32.0* 0.00I 999.9 000000 722324 03071 20080117 30.4 24 13.7 24 9999.9 0 921.1 24 10.0 24 6.9 24 15.0 20.0 39.2* 24.8* 0.00I 999.9 000000 722324 03071 20080118 35.0 24 11.8 24 9999.9 0 919.4 24 10.0 24 2.7 24 8.9 999.9 51.8* 23.0* 0.00I 999.9 000000 722324 03071 20080119 33.2 24 14.1 24 9999.9 0 926.0 24 10.0 24 5.2 24 9.9 15.0 46.4* 23.0* 0.00I 999.9 000000 722324 03071 20080120 37.2 24 15.8 24 9999.9 0 924.0 24 10.0 24 8.2 24 19.0 22.9 53.6* 26.6* 0.00I 999.9 000000 722324 03071 20080121 46.7 24 28.7 24 9999.9 0 918.8 24 10.0 24 12.2 24 19.0 26.0 64.4* 39.2* 0.00I 999.9 000000 722324 03071 20080122 39.4 24 29.8 24 9999.9 0 923.0 14 7.0 24 7.5 24 15.0 17.1 62.6* 30.2* 99.99 999.9 011000 722324 03071 20080123 34.3 24 29.5 24 9999.9 0 921.8 24 5.5 24 1.3 24 6.0 999.9 50.0* 30.2* 0.00I 999.9 100000 722324 03071 20080124 37.2 24 26.0 24 9999.9 0 924.1 24 9.9 24 9.3 24 15.0 22.0 50.0* 32.0* 99.99 999.9 011000 722324 03071 20080125 37.0 24 32.0 24 9999.9 0 924.8 24 7.9 24 4.9 24 12.0 18.1 59.0* 32.0* 99.99 999.9 001000 722324 03071 20080126 46.4 24 33.0 24 9999.9 0 925.0 24 9.1 24 5.2 24 9.9 14.0 66.2* 33.8* 0.00I 999.9 000000 722324 03071 20080127 51.4 24 33.2 24 9999.9 0 924.4 24 10.0 24 3.8 24 14.0 19.0 71.6* 35.6* 0.00I 999.9 000000 722324 03071 20080128 61.1 24 40.8 24 9999.9 0 915.0 24 9.9 24 12.5 24 26.0 35.9 77.0* 53.6* 0.00I 999.9 000000 722324 03071 20080129 57.7 24 23.4 24 9999.9 0 913.0 24 9.0 24 15.6 24 27.0 36.9 69.8* 44.6* 0.00I 999.9 000000 722324 03071 20080130 46.8 24 9.5 24 9999.9 0 914.5 24 9.6 24 11.8 24 21.0 31.1 68.0* 35.6* 0.00I 999.9 000000 722324 03071 20080131 45.0 24 12.9 24 9999.9 0 916.0 24 9.9 24 15.5 24 32.1 45.1 60.8* 33.8* 0.00I 999.9 000000 722324 03071 20080201 42.6 24 3.1 24 9999.9 0 920.6 24 10.0 24 8.2 24 19.0 22.9 66.2* 30.2* 0.00I 999.9 000000 722324 03071 20080202 51.0 24 12.7 24 9999.9 0 916.6 24 10.0 24 6.5 24 15.0 21.0 71.6* 32.0* 0.00I 999.9 000000 722324 03071 20080203 60.6 24 20.5 24 9999.9 0 914.4 24 10.0 24 9.5 24 20.0 26.0 78.8* 46.4* 0.00I 999.9 000000 722324 03071 20080204 64.9 24 21.3 24 9999.9 0 909.0 24 10.0 24 11.1 24 18.1 29.9 78.8* 53.6* 0.00I 999.9 000000 722324 03071 20080205 56.7 24 24.1 24 9999.9 0 909.7 24 9.8 24 10.8 24 21.0 26.0 75.2* 44.6* 99.99 999.9 010000 722324 03071 20080206 39.6 24 17.0 24 9999.9 0 919.5 24 10.0 24 7.5 24 17.1 22.0 60.8* 26.6* 0.00I 999.9 000000 722324 03071 20080207 47.9 24 8.7 24 9999.9 0 917.7 24 9.9 24 10.0 24 19.0 25.1 59.0* 35.6* 0.00I 999.9 000000 722324 03071 20080208 55.3 24 14.4 24 9999.9 0 914.8 24 9.9 24 10.0 24 24.1 29.9 71.6* 44.6* 0.00I 999.9 000000 722324 03071 20080209 52.5 24 9.1 24 9999.9 0 919.5 24 9.6 24 4.2 24 18.1 24.1 69.8* 35.6* 0.00I 999.9 000000 722324 03071 20080210 53.2 24 22.4 24 9999.9 0 924.1 24 9.4 24 6.3 24 18.1 22.9 69.8* 33.8* 0.00I 999.9 000000 722324 03071 20080211 60.5 24 44.9 24 9999.9 0 917.6 24 8.4 24 7.3 24 13.0 19.0 78.8* 50.0* 0.00I 999.9 000000 722324 03071 20080212 52.0 24 23.2 24 9999.9 0 916.8 24 10.0 24 5.5 24 15.9 22.9 73.4* 37.4* 0.00I 999.9 000000 722324 03071 20080213 49.8 24 21.7 24 9999.9 0 919.1 24 10.0 24 5.8 24 19.0 24.1 71.6* 32.0* 0.00I 999.9 000000 722324 03071 20080214 60.4 24 20.8 24 9999.9 0 911.4 24 10.0 24 12.6 24 19.0 25.1 77.0* 46.4* 0.00I 999.9 000000 722324 03071 20080215 44.8 24 29.1 24 9999.9 0 919.1 24 9.9 24 9.9 24 17.1 22.0 73.4* 32.0* 0.00I 999.9 000000 722324 03071 20080216 37.4 24 32.0 24 9999.9 0 916.7 24 6.1 24 9.1 24 19.0 27.0 55.4* 32.0* 99.99 999.9 011000 722324 03071 20080217 52.3 24 29.1 24 9999.9 0 910.5 24 10.0 24 12.6 24 22.9 33.0 62.6* 41.0* 0.00I 999.9 000000 722324 03071 20080218 44.8 24 29.6 24 9999.9 0 920.2 24 10.0 24 6.4 24 15.9 20.0 59.0* 32.0* 0.00I 999.9 000000 722324 03071 20080219 49.3 24 31.4 24 9999.9 0 921.0 24 10.0 24 7.0 24 17.1 20.0 71.6* 33.8* 0.00I 999.9 000000 722324 03071 20080220 59.1 24 38.3 24 9999.9 0 916.2 24 8.6 24 9.1 24 15.0 19.0 78.8* 44.6* 0.00I 999.9 000000 722324 03071 20080221 49.8 24 28.1 24 9999.9 0 913.4 24 7.0 24 7.2 24 24.1 29.9 77.0* 33.8* 0.00I 999.9 100000 722324 03071 20080222 54.0 24 20.4 24 9999.9 0 914.9 24 10.0 24 8.6 24 20.0 27.0 69.8* 35.6* 0.00I 999.9 000000 722324 03071 20080223 63.4 24 22.8 24 9999.9 0 914.1 24 10.0 24 11.4 24 25.1 34.0 78.8* 53.6* 0.00I 999.9 000000 722324 03071 20080224 57.7 24 20.1 24 9999.9 0 921.7 24 10.0 24 7.0 24 19.0 26.0 77.0* 41.0* 0.00I 999.9 000000 722324 03071 20080225 69.0 24 16.9 23 9999.9 0 914.9 24 9.5 24 13.6 24 26.0 39.0 84.2* 59.0* 0.00I 999.9 000000 722324 03071 20080226 49.6 24 24.5 24 9999.9 0 924.6 24 9.6 24 10.5 24 20.0 31.1 71.6* 33.8* 0.00I 999.9 000000 722324 03071 20080227 49.9 24 13.2 24 9999.9 0 925.9 24 10.0 24 7.2 24 15.0 21.0 69.8* 37.4* 0.00I 999.9 000000 722324 03071 20080228 58.6 24 12.9 24 9999.9 0 916.9 24 10.0 24 10.2 24 15.9 24.1 80.6* 44.6* 0.00I 999.9 000000 722324 03071 20080229 59.5 24 24.6 24 9999.9 0 918.6 24 10.0 24 9.8 24 17.1 25.1 80.6* 42.8* 0.00I 999.9 000000 722324 03071 20080301 55.3 24 32.3 24 9999.9 0 924.3 23 10.0 24 6.5 24 17.1 22.9 77.0* 39.2* 0.00I 999.9 000000 722324 03071 20080302 67.6 24 45.1 23 9999.9 0 910.5 24 10.0 24 15.6 24 24.1 31.1 80.6* 59.0* 0.00I 999.9 000000 722324 03071 20080303 46.1 24 24.6 23 9999.9 0 915.7 24 7.8 24 17.5 24 27.0 42.0 9999.9 35.6* 99.99 999.9 011000 722324 03071 20080304 45.3 24 11.3 24 9999.9 0 919.1 24 10.0 24 11.9 24 21.0 28.0 69.8* 32.0* 0.00I 999.9 000000 722324 03071 20080305 54.8 24 8.7 24 9999.9 0 912.5 24 10.0 24 8.1 24 15.0 22.9 69.8* 41.0* 0.00I 999.9 000000 722324 03071 20080306 43.3 24 25.9 24 9999.9 0 918.0 24 10.0 24 13.2 24 22.0 26.0 62.6* 35.6* 0.00I 999.9 000000 722324 03071 20080307 38.8 24 18.8 24 9999.9 0 923.0 24 10.0 24 10.0 24 21.0 31.1 57.2* 26.6* 0.00I 999.9 000000 722324 03071 20080308 47.2 24 3.7 24 9999.9 0 919.2 24 10.0 24 7.3 24 19.0 25.1 69.8* 28.4* 0.00I 999.9 000000 722324 03071 20080309 55.8 24 14.1 24 9999.9 0 915.1 24 10.0 24 6.4 24 17.1 21.0 69.8* 35.6* 0.00I 999.9 000000 722324 03071 20080310 52.1 24 30.9 24 9999.9 0 924.6 24 10.0 24 8.0 24 15.0 19.0 66.2* 37.4* 0.00I 999.9 000000 722324 03071 20080311 54.3 24 35.1 24 9999.9 0 925.4 24 10.0 24 6.6 24 13.0 15.9 69.8* 42.8* 0.00I 999.9 000000 722324 03071 20080312 60.2 24 29.5 24 9999.9 0 918.3 24 10.0 24 8.3 24 14.0 21.0 78.8* 44.6* 0.00I 999.9 000000 722324 03071 20080313 66.1 24 25.1 24 9999.9 0 911.2 23 10.0 24 11.2 24 22.0 32.1 78.8* 50.0* 0.00I 999.9 000000 722324 03071 20080314 68.5 24 14.0 24 9999.9 0 908.4 22 9.9 24 11.0 24 32.1 38.1 86.0* 53.6* 0.00I 999.9 000000 722324 03071 20080315 64.8 24 17.0 24 9999.9 0 910.2 24 9.5 24 8.9 24 28.0 36.9 84.2* 42.8* 0.00I 999.9 000000 722324 03071 20080316 66.6 24 31.4 24 9999.9 0 910.5 24 10.0 24 11.8 24 25.1 28.0 87.8* 53.6* 0.00I 999.9 000000 722324 03071 20080317 70.0 24 40.0 24 9999.9 0 907.8 24 9.9 24 11.9 24 24.1 33.0 82.4* 60.8* 0.00I 999.9 000000 722324 03071 20080318 54.1 24 39.2 24 9999.9 0 911.0 24 9.5 24 11.9 24 18.1 24.1 73.4* 46.4* 99.99 999.9 010000 722324 03071 20080319 49.4 24 23.5 24 9999.9 0 921.2 24 10.0 24 5.0 24 12.0 25.1 68.0* 33.8* 0.00I 999.9 000000 722324 03071 20080320 59.9 24 18.1 24 9999.9 0 922.2 24 10.0 24 10.8 24 19.0 28.9 78.8* 44.6* 0.00I 999.9 000000 722324 03071 20080321 64.5 24 20.8 24 9999.9 0 918.8 24 10.0 24 11.7 24 22.0 26.0 78.8* 46.4* 0.00I 999.9 000000 722324 03071 20080322 61.2 24 32.2 24 9999.9 0 920.1 24 10.0 24 6.7 24 14.0 19.0 78.8* 42.8* 99.99 999.9 010000 722324 03071 20080323 48.7 24 38.0 24 9999.9 0 926.6 24 9.4 24 14.7 24 24.1 32.1 64.4* 41.0* 99.99 999.9 010010 722324 03071 20080324 49.5 24 37.8 24 9999.9 0 928.4 24 10.0 24 6.2 24 15.0 21.0 69.8* 42.8* 0.00I 999.9 000000 722324 03071 20080325 63.3 24 36.3 24 9999.9 0 919.1 24 10.0 24 10.7 24 15.0 22.0 86.0* 50.0* 0.00I 999.9 000000 722324 03071 20080326 72.1 24 32.7 24 9999.9 0 916.5 24 10.0 24 11.2 24 22.0 31.1 87.8* 57.2* 0.00I 999.9 000000 722324 03071 20080327 73.8 24 13.7 24 9999.9 0 912.3 24 10.0 24 9.8 24 18.1 22.9 86.0* 55.4* 0.00I 999.9 000000 722324 03071 20080328 59.4 24 26.5 24 9999.9 0 914.4 24 9.8 24 9.5 24 18.1 24.1 84.2* 46.4* 0.00I 999.9 000000 722324 03071 20080329 50.0 24 42.0 24 9999.9 0 917.5 24 7.4 24 4.9 24 12.0 15.9 69.8* 44.6* 0.00I 999.9 000000 722324 03071 20080330 71.1 24 51.4 23 9999.9 0 914.1 24 9.5 24 10.8 24 15.9 25.1 87.8* 60.8* 0.00I 999.9 000000 722324 03071 20080331 74.5 24 38.3 23 9999.9 0 912.3 24 9.3 24 12.7 24 26.0 33.0 86.0* 62.6* 0.00I 999.9 000000 722324 03071 20080401 61.6 24 23.0 24 9999.9 0 919.0 24 10.0 24 11.7 24 22.9 31.1 82.4* 44.6* 0.00I 999.9 000000 722324 03071 20080402 59.2 24 37.6 24 9999.9 0 921.1 24 10.0 24 8.7 24 14.0 17.1 73.4* 55.4* 0.00I 999.9 000000 722324 03071 20080403 73.8 24 48.2 24 9999.9 0 913.8 24 9.0 24 10.6 24 21.0 28.0 87.8* 66.2* 0.00I 999.9 000000 722324 03071 20080404 62.8 24 29.7 20 9999.9 0 916.1 24 10.0 24 9.7 24 18.1 22.9 86.0* 46.4* 0.00I 999.9 000000 722324 03071 20080405 62.8 24 27.6 24 9999.9 0 915.5 24 10.0 24 8.9 24 18.1 25.1 78.8* 50.0* 0.00I 999.9 000000 722324 03071 20080406 70.2 24 23.5 24 9999.9 0 910.8 24 10.0 24 9.1 24 18.1 24.1 84.2* 57.2* 0.00I 999.9 000000 722324 03071 20080407 70.3 24 20.5 24 9999.9 0 912.6 24 9.8 24 7.2 24 19.0 27.0 89.6* 51.8* 0.00I 999.9 000000 722324 03071 20080408 71.5 24 27.0 24 9999.9 0 912.0 24 9.9 24 8.9 24 15.0 24.1 87.8* 51.8* 0.00I 999.9 000000 722324 03071 20080409 65.4 24 45.1 24 9999.9 0 910.1 24 9.8 24 11.0 24 15.9 24.1 80.6* 55.4* 0.00I 999.9 000000 722324 03071 20080410 60.9 24 32.1 24 9999.9 0 906.1 24 9.1 24 15.9 24 31.1 46.0 75.2* 51.8* 99.99 999.9 010010 722324 03071 20080411 58.8 24 17.7 24 9999.9 0 915.6 24 9.7 24 7.3 24 22.9 32.1 75.2* 41.0* 0.00I 999.9 000000 722324 03071 20080412 55.4 24 23.7 24 9999.9 0 923.9 24 10.0 24 7.4 24 24.1 28.9 73.4* 41.0* 0.00I 999.9 000000 722324 03071 20080413 55.0 24 22.2 24 9999.9 0 927.5 24 9.9 24 5.6 24 12.0 18.1 68.0* 42.8* 0.00I 999.9 000000 722324 03071 20080414 60.0 24 23.9 24 9999.9 0 926.1 24 10.0 24 4.3 24 14.0 19.0 78.8* 44.6* 0.00I 999.9 000000 722324 03071 20080415 68.5 24 28.1 24 9999.9 0 918.7 24 10.0 24 13.0 24 22.0 26.0 86.0* 55.4* 0.00I 999.9 000000 722324 03071 20080416 73.1 24 38.9 24 9999.9 0 912.2 24 10.0 24 14.5 24 22.9 31.1 91.4* 59.0* 0.00I 999.9 000000 722324 03071 20080417 72.1 24 39.3 24 9999.9 0 910.5 24 9.9 24 15.0 24 28.0 35.0 86.0* 60.8* 0.00I 999.9 000000 722324 03071 20080418 54.7 24 28.5 24 9999.9 0 920.6 24 9.5 24 8.4 24 25.1 32.1 75.2* 41.0* 0.00I 999.9 000000 722324 03071 20080419 68.4 24 14.4 24 9999.9 0 916.7 24 10.0 24 7.5 24 11.1 18.1 87.8* 53.6* 0.00I 999.9 000000 722324 03071 20080420 77.0 24 23.4 24 9999.9 0 911.7 24 10.0 24 10.8 24 21.0 32.1 91.4* 62.6* 0.00I 999.9 000000 722324 03071 20080421 77.2 24 19.8 18 9999.9 0 912.3 24 10.0 24 8.0 24 15.9 22.0 91.4* 60.8* 0.00I 999.9 000000 722324 03071 20080422 76.4 24 31.1 18 9999.9 0 914.3 24 8.9 24 5.9 24 11.1 19.0 91.4* 60.8* 0.00I 999.9 100000 722324 03071 20080423 76.5 24 51.6 24 9999.9 0 913.7 24 9.3 24 10.4 24 21.0 27.0 89.6* 69.8* 0.00I 999.9 000000 722324 03071 20080424 77.2 24 45.3 24 9999.9 0 912.1 24 8.5 24 10.2 24 18.1 28.9 93.2* 62.6* 0.00I 999.9 000000 722324 03071 20080425 75.2 24 30.1 16 9999.9 0 914.1 24 9.5 24 9.9 24 15.9 22.0 91.4* 59.0* 0.00I 999.9 000000 722324 03071 20080426 68.4 24 39.2 24 9999.9 0 917.5 24 10.0 24 6.1 24 11.1 17.1 87.8* 53.6* 0.00I 999.9 000000 722324 03071 20080427 61.2 24 35.5 24 9999.9 0 921.8 24 9.5 24 12.9 24 27.0 35.0 86.0* 46.4* 99.99 999.9 010010 722324 03071 20080428 59.2 24 20.4 24 9999.9 0 925.7 24 10.0 24 5.9 24 12.0 20.0 78.8* 42.8* 0.00I 999.9 000000 722324 03071 20080429 68.5 24 17.1 24 9999.9 0 919.1 24 10.0 24 9.6 24 15.9 22.9 87.8* 53.6* 0.00I 999.9 000000 722324 03071 20080430 76.2 24 22.2 24 9999.9 0 910.5 24 10.0 24 13.3 24 24.1 33.0 95.0* 60.8* 0.00I 999.9 000000 722324 03071 20080501 79.8 24 18.8 21 9999.9 0 906.1 21 10.0 24 14.8 24 28.9 36.9 93.2* 66.2* 0.00I 999.9 000000 722324 03071 20080502 69.8 24 3.9 24 9999.9 0 910.4 24 10.0 24 10.3 24 20.0 27.0 89.6* 50.0* 0.00I 999.9 000000 722324 03071 20080503 59.8 24 15.9 24 9999.9 0 920.0 24 9.8 24 8.6 24 19.0 25.1 82.4* 42.8* 0.00I 999.9 000000 722324 03071 20080504 65.2 24 36.7 24 9999.9 0 918.9 24 10.0 24 9.0 24 20.0 25.1 78.8* 53.6* 0.00I 999.9 000000 722324 03071 20080505 71.5 24 58.8 24 9999.9 0 917.4 24 9.1 24 10.4 24 19.0 26.0 80.6* 66.2* 99.99 999.9 010000 722324 03071 20080506 73.7 24 59.5 24 9999.9 0 914.2 24 9.8 24 12.5 24 20.0 27.0 87.8* 64.4* 0.00I 999.9 000000 722324 03071 20080507 75.1 24 43.3 24 9999.9 0 907.6 24 9.7 24 18.7 24 32.1 39.0 86.0* 68.0* 99.99 999.9 010000 722324 03071 20080508 70.7 24 40.9 24 9999.9 0 911.7 24 10.0 24 7.0 24 18.1 28.9 93.2* 51.8* 0.00I 999.9 000000 722324 03071 20080509 77.8 24 22.4 24 9999.9 0 911.9 24 10.0 24 7.5 24 17.1 24.1 91.4* 59.0* 0.00I 999.9 000000 722324 03071 20080510 81.9 24 28.9 24 9999.9 0 911.6 24 10.0 24 8.4 24 19.0 26.0 95.0* 64.4* 0.00I 999.9 000000 722324 03071 20080511 68.3 24 21.7 24 9999.9 0 919.9 24 9.7 24 9.6 24 22.9 32.1 91.4* 53.6* 0.00I 999.9 000000 722324 03071 20080512 72.5 24 29.5 24 9999.9 0 913.7 24 10.0 24 8.4 24 15.9 22.0 95.0* 59.0* 0.00I 999.9 000000 722324 03071 20080513 82.1 24 43.4 22 9999.9 0 909.8 24 9.4 24 12.5 24 21.0 26.0 95.0* 68.0* 0.00I 999.9 000000 722324 03071 20080514 75.7 24 46.3 22 9999.9 0 912.7 24 10.0 24 8.4 24 17.1 24.1 95.0* 64.4* 99.99 999.9 010000 722324 03071 20080515 64.5 24 46.9 24 9999.9 0 916.8 24 10.0 24 8.5 24 18.1 29.9 77.0* 53.6* 0.00I 999.9 000000 722324 03071 20080516 66.1 24 42.8 24 9999.9 0 922.1 24 10.0 24 7.2 24 19.0 25.1 77.0* 55.4* 99.99 999.9 010000 722324 03071 20080517 66.8 24 40.3 24 9999.9 0 920.2 24 10.0 24 4.7 24 22.0 22.9 77.0* 60.8* 99.99 999.9 010000 722324 03071 20080518 68.9 24 40.5 24 9999.9 0 917.9 24 10.0 24 5.6 24 8.0 999.9 89.6* 53.6* 0.00I 999.9 000000 722324 03071 20080519 81.6 24 26.8 24 9999.9 0 914.0 24 10.0 24 7.4 24 14.0 19.0 98.6* 66.2* 0.00I 999.9 000000 722324 03071 20080520 86.5 24 26.9 24 9999.9 0 911.5 24 10.0 24 6.1 24 12.0 17.1 100.4* 68.0* 0.00I 999.9 000000 722324 03071 20080521 83.8 24 39.2 24 9999.9 0 907.3 24 10.0 24 9.9 24 20.0 27.0 102.2* 64.4* 0.00I 999.9 000000 722324 03071 20080522 85.9 24 43.9 24 9999.9 0 899.1 24 10.0 24 17.5 24 24.1 33.0 98.6* 73.4* 0.00I 999.9 000000 722324 03071 20080523 86.5 24 29.9 19 9999.9 0 902.7 24 10.0 24 14.3 24 21.0 29.9 98.6* 69.8* 0.00I 999.9 000000 722324 03071 20080524 82.8 24 31.5 24 9999.9 0 911.2 24 10.0 24 8.4 24 15.0 25.1 98.6* 64.4* 0.00I 999.9 000000 722324 03071 20080525 82.9 24 55.0 24 9999.9 0 913.4 24 10.0 24 12.7 24 22.0 28.9 95.0* 73.4* 0.00I 999.9 000000 722324 03071 20080526 81.9 24 57.9 24 9999.9 0 912.1 24 10.0 24 9.5 24 24.1 28.9 95.0* 71.6* 99.99 999.9 010010 722324 03071 20080527 83.4 24 61.9 24 9999.9 0 912.9 24 10.0 24 10.3 24 19.0 28.9 95.0* 71.6* 0.00I 999.9 000000 722324 03071 20080528 79.7 24 56.7 24 9999.9 0 918.6 24 9.9 24 13.5 24 24.1 35.0 93.2* 68.0* 0.00I 999.9 000000 722324 03071 20080529 83.3 24 49.8 24 9999.9 0 919.2 22 10.0 24 14.5 24 22.9 28.9 95.0* 71.6* 0.00I 999.9 000000 722324 03071 20080530 84.4 24 47.6 24 9999.9 0 9999.9 0 10.0 24 11.1 24 19.0 23.9 102.2* 71.6* 0.00I 999.9 000000 722324 03071 20080531 89.1 24 45.5 24 9999.9 0 914.8 7 10.0 24 9.3 24 16.9 22.0 105.8* 73.4* 0.00I 999.9 000000 722324 03071 20080601 90.3 24 46.9 24 9999.9 0 914.5 24 10.0 24 12.7 24 18.1 25.1 105.8* 77.0* 0.00I 999.9 000000 722324 03071 20080602 89.6 24 41.2 24 9999.9 0 913.9 24 10.0 24 14.5 24 19.0 29.9 102.2* 75.2* 0.00I 999.9 000000 722324 03071 20080603 89.2 24 43.2 24 9999.9 0 910.7 23 10.0 24 10.2 24 17.1 22.9 105.8* 77.0* 0.00I 999.9 000000 722324 03071 20080604 91.0 24 44.5 24 9999.9 0 906.0 24 10.0 24 13.3 24 21.0 28.0 104.0* 77.0* 0.00I 999.9 000000 722324 03071 20080605 88.1 24 53.6 24 9999.9 0 902.8 24 9.4 24 17.9 24 31.1 39.0 102.2* 73.4* 0.00I 999.9 000000 722324 03071 20080606 82.8 24 31.7 24 9999.9 0 911.3 23 10.0 24 6.9 24 22.9 31.1 98.6* 64.4* 0.00I 999.9 000000 722324 03071 20080607 84.6 24 61.9 24 9999.9 0 913.4 24 10.0 24 16.3 24 22.0 32.1 95.0* 75.2* 0.00I 999.9 000000 722324 03071 20080608 85.2 24 59.8 24 9999.9 0 912.6 23 10.0 24 18.3 24 26.0 33.0 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20080609 84.4 24 58.2 24 9999.9 0 912.3 24 9.8 24 11.5 24 22.0 28.9 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20080610 82.9 24 58.2 24 9999.9 0 914.8 23 9.9 24 10.7 24 20.0 26.0 96.8* 68.0* 0.00I 999.9 000000 722324 03071 20080611 88.9 24 52.6 24 9999.9 0 911.4 24 10.0 24 16.4 24 22.9 32.1 104.0* 77.0* 0.00I 999.9 000000 722324 03071 20080612 87.7 24 53.0 24 9999.9 0 911.5 23 10.0 24 11.8 24 25.1 32.1 100.4* 75.2* 0.00I 999.9 000000 722324 03071 20080613 88.1 24 53.1 24 9999.9 0 914.9 24 10.0 24 8.3 24 19.0 24.1 100.4* 75.2* 0.00I 999.9 000000 722324 03071 20080614 83.9 24 57.2 24 9999.9 0 917.6 23 9.3 24 10.0 24 25.1 29.9 100.4* 71.6* 99.99 999.9 010010 722324 03071 20080615 88.9 24 51.7 24 9999.9 0 915.3 24 10.0 24 11.0 24 15.9 21.0 104.0* 75.2* 0.00I 999.9 000000 722324 03071 20080616 90.9 24 48.5 24 9999.9 0 913.2 24 10.0 24 12.8 24 19.0 25.1 104.0* 77.0* 99.99 999.9 010000 722324 03071 20080617 86.3 24 53.6 24 9999.9 0 917.3 24 9.0 24 11.2 24 28.0 54.0 100.4* 73.4* 99.99 999.9 010010 722324 03071 20080618 82.8 24 54.5 24 9999.9 0 917.7 24 9.6 24 10.4 24 35.0 47.0 98.6* 66.2* 99.99 999.9 010010 722324 03071 20080619 87.2 24 54.9 24 9999.9 0 914.5 24 10.0 24 9.5 24 19.0 24.1 102.2* 73.4* 99.99 999.9 010000 722324 03071 20080620 79.0 24 56.4 24 9999.9 0 918.5 21 9.1 24 10.4 24 34.0 45.1 100.4* 68.0* 99.99 999.9 010010 722324 03071 20080621 81.1 24 57.6 24 9999.9 0 922.9 24 10.0 24 7.3 24 15.0 18.1 89.6* 71.6* 0.00I 999.9 000000 722324 03071 20080622 81.7 24 51.9 24 9999.9 0 922.5 24 10.0 24 4.6 24 13.0 17.1 95.0* 69.8* 0.00I 999.9 000000 722324 03071 20080623 84.7 24 46.0 24 9999.9 0 919.4 24 9.8 24 6.4 24 19.0 22.9 98.6* 69.8* 0.00I 999.9 000000 722324 03071 20080624 85.6 24 48.4 24 9999.9 0 919.1 22 9.7 24 13.2 24 19.0 26.0 96.8* 71.6* 99.99 999.9 010000 722324 03071 20080625 83.4 24 54.8 24 9999.9 0 919.5 22 9.6 24 11.9 24 22.0 31.1 96.8* 69.8* 99.99 999.9 010010 722324 03071 20080626 87.0 24 51.9 24 9999.9 0 917.2 24 10.0 24 9.7 24 15.9 20.0 98.6* 77.0* 0.00I 999.9 000000 722324 03071 20080627 87.9 24 50.1 24 9999.9 0 914.4 22 10.0 24 9.2 24 15.9 22.9 100.4* 77.0* 0.00I 999.9 000000 722324 03071 20080628 85.5 24 55.8 24 9999.9 0 916.3 24 10.0 24 10.3 24 22.9 29.9 98.6* 77.0* 99.99 999.9 010010 722324 03071 20080629 72.3 24 61.6 24 9999.9 0 922.6 22 10.0 24 7.9 24 19.0 22.9 78.8* 66.2* 99.99 999.9 010000 722324 03071 20080630 72.4 24 61.6 24 9999.9 0 924.1 22 9.5 24 5.1 24 9.9 999.9 78.8* 68.0* 99.99 999.9 010000 722324 03071 20080701 75.5 24 60.3 24 9999.9 0 921.5 24 10.0 24 6.7 24 14.0 19.0 87.8* 68.0* 0.00I 999.9 000000 722324 03071 20080702 76.6 24 59.9 24 9999.9 0 918.2 24 10.0 24 9.8 24 15.9 20.0 87.8* 68.0* 0.00I 999.9 000000 722324 03071 20080703 77.2 24 61.5 24 9999.9 0 918.3 23 9.8 24 7.8 24 17.1 19.0 86.0* 69.8* 99.99 999.9 010000 722324 03071 20080704 78.3 24 60.4 24 9999.9 0 920.0 24 10.0 24 6.8 24 14.0 17.1 89.6* 69.8* 0.00I 999.9 000000 722324 03071 20080705 79.8 24 58.9 24 9999.9 0 918.7 24 10.0 24 8.6 24 15.9 22.9 89.6* 69.8* 0.00I 999.9 000000 722324 03071 20080706 77.7 24 60.0 24 9999.9 0 917.0 23 10.0 24 12.0 24 21.0 24.1 86.0* 68.0* 0.00I 999.9 000000 722324 03071 20080707 77.2 24 60.5 24 9999.9 0 917.2 24 10.0 24 13.1 24 20.0 26.0 86.0* 69.8* 0.00I 999.9 000000 722324 03071 20080708 76.5 24 61.9 24 9999.9 0 917.6 24 10.0 24 12.6 24 19.0 26.0 86.0* 68.0* 99.99 999.9 010000 722324 03071 20080709 76.5 24 61.6 24 9999.9 0 919.1 20 10.0 24 12.6 24 22.0 28.0 87.8* 69.8* 0.00I 999.9 000000 722324 03071 20080710 80.3 24 59.5 24 9999.9 0 919.4 20 10.0 24 12.0 24 18.1 24.1 91.4* 71.6* 0.00I 999.9 000000 722324 03071 20080711 81.7 24 58.5 24 9999.9 0 918.6 24 10.0 24 10.6 24 19.0 22.9 95.0* 71.6* 0.00I 999.9 000000 722324 03071 20080712 85.6 24 58.7 24 9999.9 0 918.1 24 10.0 24 10.1 24 17.1 21.0 100.4* 73.4* 0.00I 999.9 000000 722324 03071 20080713 81.1 24 60.9 24 9999.9 0 919.8 24 10.0 24 8.7 24 20.0 25.1 98.6* 69.8* 99.99 999.9 010010 722324 03071 20080714 82.4 24 60.1 24 9999.9 0 918.4 24 10.0 24 7.1 24 15.0 20.0 96.8* 69.8* 0.00I 999.9 000000 722324 03071 20080715 85.5 24 56.2 24 9999.9 0 917.4 24 10.0 24 8.2 24 15.9 24.1 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20080716 85.0 24 54.1 24 9999.9 0 918.9 24 10.0 24 7.9 24 14.0 19.0 96.8* 78.8* 99.99 999.9 010000 722324 03071 20080717 84.5 24 55.5 24 9999.9 0 919.0 24 10.0 24 9.1 24 17.1 21.0 95.0* 75.2* 99.99 999.9 010000 722324 03071 20080718 84.7 24 54.1 24 9999.9 0 917.3 24 10.0 24 10.2 24 15.9 21.0 93.2* 75.2* 0.00I 999.9 000000 722324 03071 20080719 82.7 24 53.2 24 9999.9 0 917.6 24 10.0 24 9.7 24 15.9 21.0 93.2* 71.6* 0.00I 999.9 000000 722324 03071 20080720 83.5 24 53.2 24 9999.9 0 919.8 24 10.0 24 9.8 24 15.0 20.0 95.0* 71.6* 0.00I 999.9 000000 722324 03071 20080721 85.0 24 49.2 24 9999.9 0 919.0 24 10.0 24 7.9 24 15.0 26.0 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20080722 86.8 24 46.8 24 9999.9 0 916.9 24 10.0 24 8.7 24 15.0 22.0 98.6* 71.6* 0.00I 999.9 000000 722324 03071 20080723 86.0 24 49.8 24 9999.9 0 917.5 24 10.0 24 6.3 24 14.0 20.0 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20080724 85.6 24 55.4 24 9999.9 0 917.6 24 10.0 24 7.8 24 15.9 22.0 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20080725 79.9 24 62.5 24 9999.9 0 919.9 24 10.0 24 11.9 24 19.0 24.1 91.4* 71.6* 0.00I 999.9 000000 722324 03071 20080726 80.9 24 61.6 24 9999.9 0 921.0 24 9.8 24 9.4 24 15.0 21.0 93.2* 71.6* 0.00I 999.9 000000 722324 03071 20080727 85.0 24 60.8 24 9999.9 0 917.4 24 10.0 24 7.7 24 13.0 17.1 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20080728 88.1 24 58.0 24 9999.9 0 914.3 24 10.0 24 10.2 24 15.9 24.1 100.4* 78.8* 0.00I 999.9 000000 722324 03071 20080729 89.4 24 55.5 24 9999.9 0 913.0 24 10.0 24 9.4 24 17.1 22.0 98.6* 80.6* 0.00I 999.9 000000 722324 03071 20080730 87.1 24 59.6 24 9999.9 0 913.9 24 10.0 24 4.7 24 15.0 22.9 100.4* 75.2* 99.99 999.9 010010 722324 03071 20080731 80.7 24 60.2 24 9999.9 0 914.7 24 10.0 24 5.4 24 12.0 17.1 100.4* 69.8* 0.00I 999.9 000000 722324 03071 20080801 87.7 24 55.2 24 9999.9 0 914.9 22 9.6 24 2.6 24 22.0 35.9 98.6* 71.6* 99.99 999.9 010010 722324 03071 20080802 77.2 24 62.4 24 9999.9 0 917.4 24 9.7 24 6.7 24 17.1 28.0 93.2* 68.0* 99.99 999.9 010010 722324 03071 20080803 84.9 24 57.9 24 9999.9 0 917.2 23 10.0 24 8.7 24 15.0 22.0 96.8* 71.6* 0.00I 999.9 000000 722324 03071 20080804 86.4 24 50.8 24 9999.9 0 917.7 24 10.0 24 8.0 24 15.0 22.0 98.6* 73.4* 0.00I 999.9 000000 722324 03071 20080805 87.9 24 52.0 24 9999.9 0 918.5 24 10.0 24 3.9 24 13.0 17.1 100.4* 73.4* 0.00I 999.9 000000 722324 03071 20080806 84.8 24 49.7 24 9999.9 0 918.7 23 10.0 24 6.6 24 12.0 19.0 98.6* 69.8* 0.00I 999.9 000000 722324 03071 20080807 81.5 24 60.2 24 9999.9 0 918.8 24 10.0 24 7.1 24 11.1 15.0 89.6* 73.4* 0.00I 999.9 000000 722324 03071 20080808 83.3 24 57.4 24 9999.9 0 917.7 24 10.0 24 7.6 24 12.0 20.0 95.0* 73.4* 0.00I 999.9 000000 722324 03071 20080809 87.2 24 54.6 24 9999.9 0 915.5 24 10.0 24 7.7 24 14.0 19.0 98.6* 77.0* 0.00I 999.9 000000 722324 03071 20080810 89.8 24 55.0 24 9999.9 0 913.0 24 10.0 24 8.0 24 14.0 31.1 102.2* 78.8* 0.00I 999.9 000000 722324 03071 20080811 80.1 24 65.0 24 9999.9 0 914.2 23 10.0 24 8.7 24 22.9 32.1 93.2* 71.6* 99.99 999.9 010010 722324 03071 20080812 81.9 24 63.9 24 9999.9 0 914.8 24 10.0 24 3.1 24 12.0 18.1 96.8* 73.4* 0.00I 999.9 000000 722324 03071 20080813 83.5 24 57.6 24 9999.9 0 916.0 24 10.0 24 5.2 24 12.0 18.1 96.8* 69.8* 0.00I 999.9 000000 722324 03071 20080814 84.6 24 49.8 24 9999.9 0 916.8 24 9.8 24 6.4 24 15.9 22.9 95.0* 77.0* 99.99 999.9 010000 722324 03071 20080815 79.0 24 56.7 24 9999.9 0 917.5 24 10.0 24 7.9 24 15.0 26.0 93.2* 66.2* 0.00I 999.9 000000 722324 03071 20080816 73.4 24 62.7 24 9999.9 0 920.2 24 9.3 24 8.1 24 20.0 27.0 87.8* 66.2* 99.99 999.9 010010 722324 03071 20080817 69.5 24 63.7 24 9999.9 0 919.9 24 8.4 24 6.8 24 13.0 19.0 73.4* 66.2* 99.99 999.9 010000 722324 03071 20080818 72.0 24 63.7 24 9999.9 0 916.7 24 7.9 24 6.1 24 11.1 15.0 82.4* 68.0* 99.99 999.9 010000 722324 03071 20080819 73.6 24 59.7 24 9999.9 0 916.8 24 10.0 24 6.1 24 11.1 17.1 82.4* 64.4* 0.00I 999.9 000000 722324 03071 20080820 72.2 24 58.1 24 9999.9 0 917.0 24 10.0 24 4.1 24 9.9 15.9 86.0* 64.4* 0.00I 999.9 000000 722324 03071 20080821 79.5 24 58.4 24 9999.9 0 915.2 24 10.0 24 6.6 24 11.1 15.0 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20080822 81.2 24 57.3 24 9999.9 0 915.7 24 10.0 24 9.4 24 17.1 28.9 93.2* 69.8* 0.00I 999.9 000000 722324 03071 20080823 78.7 24 63.4 24 9999.9 0 919.5 23 10.0 24 7.0 24 12.0 18.1 91.4* 71.6* 0.00I 999.9 000000 722324 03071 20080824 79.3 24 60.6 24 9999.9 0 920.1 24 10.0 24 3.9 24 19.0 31.1 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20080825 78.6 24 59.8 24 9999.9 0 918.1 24 10.0 24 3.6 24 17.1 999.9 89.6* 68.0* 0.00I 999.9 000000 722324 03071 20080826 79.4 24 59.1 24 9999.9 0 915.3 23 10.0 24 4.0 24 14.0 22.0 93.2* 68.0* 0.00I 999.9 000000 722324 03071 20080827 82.2 24 59.8 24 9999.9 0 914.6 23 10.0 24 7.3 24 13.0 20.0 91.4* 71.6* 0.00I 999.9 000000 722324 03071 20080828 80.5 24 64.1 24 9999.9 0 915.0 24 9.8 24 6.9 24 12.0 18.1 89.6* 71.6* 99.99 999.9 010000 722324 03071 20080829 76.3 24 64.3 24 9999.9 0 917.8 23 10.0 24 4.3 24 15.0 19.0 86.0* 69.8* 99.99 999.9 010000 722324 03071 20080830 72.1 24 63.8 24 9999.9 0 919.9 24 10.0 24 5.3 24 15.9 26.0 80.6* 66.2* 99.99 999.9 010000 722324 03071 20080831 74.7 24 63.4 24 9999.9 0 918.2 24 9.9 24 6.6 24 22.9 29.9 86.0* 68.0* 99.99 999.9 010000 722324 03071 20080901 78.6 24 57.4 24 9999.9 0 915.3 24 10.0 24 6.2 24 13.0 14.0 91.4* 66.2* 0.00I 999.9 000000 722324 03071 20080902 81.0 24 60.9 24 9999.9 0 914.6 24 10.0 24 4.2 24 21.0 29.9 91.4* 69.8* 99.99 999.9 010010 722324 03071 20080903 71.2 24 63.1 24 9999.9 0 918.5 24 9.6 24 7.8 24 13.0 17.1 78.8* 68.0* 99.99 999.9 010000 722324 03071 20080904 72.3 24 60.3 24 9999.9 0 917.0 24 10.0 24 2.3 24 8.0 999.9 86.0* 62.6* 0.00I 999.9 000000 722324 03071 20080905 78.1 24 58.6 24 9999.9 0 916.0 23 10.0 24 5.8 24 11.1 15.0 91.4* 68.0* 0.00I 999.9 000000 722324 03071 20080906 81.3 24 57.6 24 9999.9 0 916.9 24 10.0 24 8.8 24 15.9 21.0 91.4* 69.8* 0.00I 999.9 000000 722324 03071 20080907 78.4 24 56.4 24 9999.9 0 918.5 24 9.9 24 9.6 24 15.9 22.0 89.6* 68.0* 0.00I 999.9 000000 722324 03071 20080908 76.0 24 57.9 24 9999.9 0 917.4 24 9.9 24 6.8 24 13.0 22.9 84.2* 68.0* 99.99 999.9 010010 722324 03071 20080909 65.8 24 62.5 24 9999.9 0 919.8 24 7.8 24 9.7 24 15.0 19.0 77.0* 60.8* 99.99 999.9 010000 722324 03071 20080910 64.6 24 63.3 24 9999.9 0 917.8 24 5.2 24 5.0 24 8.9 999.9 71.6* 62.6* 99.99 999.9 010000 722324 03071 20080911 71.6 24 68.5 24 9999.9 0 915.2 24 9.2 24 8.1 24 15.0 19.0 77.0* 69.8* 99.99 999.9 010000 722324 03071 20080912 74.8 24 69.0 24 9999.9 0 913.5 24 8.8 24 3.8 24 8.0 999.9 82.4* 71.6* 99.99 999.9 010000 722324 03071 20080913 75.9 24 66.7 24 9999.9 0 911.4 24 8.2 24 2.8 24 9.9 15.9 86.0* 68.0* 0.00I 999.9 100000 722324 03071 20080914 74.0 24 60.8 24 9999.9 0 918.0 24 10.0 24 9.3 24 18.1 25.1 82.4* 68.0* 99.99 999.9 010000 722324 03071 20080915 66.7 24 51.0 24 9999.9 0 926.2 24 10.0 24 7.3 24 12.0 18.1 77.0* 55.4* 0.00I 999.9 000000 722324 03071 20080916 67.5 24 48.9 24 9999.9 0 927.2 24 10.0 24 2.6 24 7.0 999.9 78.8* 57.2* 0.00I 999.9 000000 722324 03071 20080917 68.2 24 48.0 24 9999.9 0 924.7 24 10.0 24 2.6 24 8.9 999.9 78.8* 55.4* 0.00I 999.9 000000 722324 03071 20080918 69.0 24 46.0 24 9999.9 0 922.6 24 10.0 24 4.6 24 11.1 15.9 78.8* 55.4* 0.00I 999.9 000000 722324 03071 20080919 68.5 24 51.7 24 9999.9 0 921.4 24 10.0 24 4.9 24 11.1 15.0 80.6* 55.4* 0.00I 999.9 000000 722324 03071 20080920 71.5 24 52.2 24 9999.9 0 920.9 24 10.0 24 4.4 24 9.9 15.0 82.4* 59.0* 0.00I 999.9 000000 722324 03071 20080921 73.0 24 52.9 24 9999.9 0 921.4 24 10.0 24 5.8 24 15.9 19.0 82.4* 60.8* 0.00I 999.9 000000 722324 03071 20080922 72.2 24 55.8 24 9999.9 0 921.9 24 9.9 24 8.0 24 17.1 22.9 82.4* 60.8* 0.00I 999.9 000000 722324 03071 20080923 72.7 24 55.9 24 9999.9 0 922.3 24 10.0 24 6.7 24 13.0 15.9 84.2* 60.8* 0.00I 999.9 000000 722324 03071 20080924 73.5 24 58.5 24 9999.9 0 924.0 24 10.0 24 3.6 24 15.0 19.0 86.0* 62.6* 0.00I 999.9 000000 722324 03071 20080925 72.2 24 54.2 24 9999.9 0 925.1 24 10.0 24 4.8 24 9.9 999.9 82.4* 59.0* 0.00I 999.9 000000 722324 03071 20080926 71.2 24 51.2 24 9999.9 0 923.0 24 10.0 24 3.7 24 8.0 999.9 82.4* 59.0* 0.00I 999.9 000000 722324 03071 20080927 71.2 24 51.1 24 9999.9 0 921.3 24 10.0 24 2.2 24 8.9 999.9 82.4* 59.0* 0.00I 999.9 000000 722324 03071 20080928 70.3 24 48.5 24 9999.9 0 922.2 24 10.0 24 2.3 24 9.9 999.9 82.4* 55.4* 0.00I 999.9 000000 722324 03071 20080929 70.7 24 46.7 24 9999.9 0 923.4 24 10.0 24 2.7 24 8.9 999.9 84.2* 55.4* 0.00I 999.9 000000 722324 03071 20080930 70.2 24 48.7 24 9999.9 0 924.9 24 9.9 24 1.8 24 7.0 999.9 86.0* 55.4* 0.00I 999.9 000000 722324 03071 20081001 73.6 24 42.6 24 9999.9 0 922.5 24 10.0 24 4.2 24 12.0 17.1 89.6* 59.0* 0.00I 999.9 000000 722324 03071 20081002 70.7 24 42.3 24 9999.9 0 919.0 24 10.0 24 2.4 24 7.0 14.0 89.6* 53.6* 0.00I 999.9 000000 722324 03071 20081003 76.2 24 40.1 24 9999.9 0 915.8 21 10.0 24 6.5 24 12.0 19.0 89.6* 57.2* 0.00I 999.9 000000 722324 03071 20081004 75.3 24 48.6 24 9999.9 0 916.3 21 10.0 24 12.3 24 22.0 27.0 86.0* 64.4* 0.00I 999.9 000000 722324 03071 20081005 72.3 24 54.2 24 9999.9 0 914.0 20 9.9 24 15.6 24 22.0 28.9 80.6* 68.0* 99.99 999.9 010010 722324 03071 20081006 65.5 24 54.0 24 9999.9 0 914.1 18 9.8 24 7.5 24 15.0 21.0 78.8* 59.0* 99.99 999.9 010010 722324 03071 20081007 64.8 24 50.5 24 9999.9 0 924.1 20 10.0 24 5.1 24 12.0 15.9 75.2* 53.6* 0.00I 999.9 000000 722324 03071 20081008 67.8 24 43.8 24 9999.9 0 921.4 21 10.0 24 6.3 24 14.0 19.0 80.6* 59.0* 0.00I 999.9 000000 722324 03071 20081009 70.2 24 46.9 24 9999.9 0 916.5 20 10.0 24 9.3 24 17.1 21.0 82.4* 59.0* 0.00I 999.9 000000 722324 03071 20081010 74.3 24 47.3 24 9999.9 0 913.7 20 10.0 24 9.8 24 15.0 20.0 87.8* 64.4* 0.00I 999.9 000000 722324 03071 20081011 73.8 24 60.9 24 9999.9 0 915.3 21 10.0 24 13.3 24 21.0 28.9 82.4* 68.0* 0.00I 999.9 000000 722324 03071 20081012 72.0 24 64.0 24 9999.9 0 914.2 20 9.6 24 15.0 24 22.0 29.9 77.0* 69.8* 99.99 999.9 010000 722324 03071 20081013 74.1 24 66.9 24 9999.9 0 918.0 19 9.9 24 9.8 24 15.9 19.0 82.4* 69.8* 99.99 999.9 010000 722324 03071 20081014 61.1 24 58.5 24 9999.9 0 920.4 20 5.3 24 7.7 24 15.9 21.0 78.8* 53.6* 99.99 999.9 010000 722324 03071 20081015 55.2 24 50.4 24 9999.9 0 924.1 17 8.6 24 8.2 24 13.0 16.9 64.4* 50.0* 99.99 999.9 010000 722324 03071 20081016 57.3 24 49.3 24 9999.9 0 927.8 21 10.0 24 6.5 24 9.9 15.0 64.4* 51.8* 0.00I 999.9 000000 722324 03071 20081017 59.1 24 48.2 24 9999.9 0 926.3 20 10.0 24 0.7 24 5.1 999.9 75.2* 46.4* 0.00I 999.9 000000 722324 03071 20081018 63.4 24 49.0 24 9999.9 0 927.0 20 10.0 24 2.2 24 11.1 14.0 77.0* 51.8* 0.00I 999.9 000000 722324 03071 20081019 63.8 24 45.6 24 9999.9 0 923.0 21 10.0 24 4.9 24 12.0 15.0 80.6* 46.4* 0.00I 999.9 000000 722324 03071 20081020 68.4 24 48.5 24 9999.9 0 922.3 21 10.0 24 5.3 24 8.9 999.9 82.4* 59.0* 0.00I 999.9 000000 722324 03071 20081021 66.6 24 51.3 24 9999.9 0 921.3 23 10.0 24 6.1 24 12.0 15.9 77.0* 57.2* 0.00I 999.9 000000 722324 03071 20081022 62.6 24 46.1 24 9999.9 0 919.2 23 10.0 24 13.2 24 28.0 35.9 71.6* 53.6* 0.00I 999.9 000000 722324 03071 20081023 50.4 24 29.0 24 9999.9 0 924.8 24 10.0 24 5.2 24 14.0 20.0 66.2* 37.4* 0.00I 999.9 000000 722324 03071 20081024 56.4 24 32.1 24 9999.9 0 919.3 24 10.0 24 2.9 24 8.0 999.9 77.0* 41.0* 0.00I 999.9 000000 722324 03071 20081025 60.5 24 36.6 24 9999.9 0 919.4 24 10.0 24 2.1 24 9.9 999.9 80.6* 44.6* 0.00I 999.9 000000 722324 03071 20081026 66.0 24 43.8 24 9999.9 0 920.3 24 9.9 24 4.7 24 22.0 27.0 82.4* 50.0* 0.00I 999.9 000000 722324 03071 20081027 54.0 24 28.6 24 9999.9 0 936.0 24 9.9 24 11.0 24 22.9 31.1 69.8* 42.8* 0.00I 999.9 000000 722324 03071 20081028 55.7 24 29.6 24 9999.9 0 932.1 24 10.0 24 6.4 24 13.0 17.1 71.6* 44.6* 0.00I 999.9 000000 722324 03071 20081029 60.4 24 36.8 24 9999.9 0 926.2 24 10.0 24 4.5 24 9.9 999.9 78.8* 46.4* 0.00I 999.9 000000 722324 03071 20081030 65.3 24 46.5 24 9999.9 0 924.5 24 10.0 24 7.9 24 11.1 15.0 80.6* 55.4* 0.00I 999.9 000000 722324 03071 20081031 65.4 24 51.5 24 9999.9 0 927.7 24 10.0 24 6.2 24 11.1 999.9 78.8* 53.6* 0.00I 999.9 000000 722324 03071 20081101 63.0 24 49.9 24 9999.9 0 927.7 24 8.1 24 3.0 24 9.9 999.9 78.8* 46.4* 0.00I 999.9 100000 722324 03071 20081102 66.0 24 49.0 24 9999.9 0 923.4 24 10.0 24 7.9 24 15.9 20.0 78.8* 53.6* 0.00I 999.9 000000 722324 03071 20081103 65.5 24 49.4 24 9999.9 0 918.6 24 10.0 24 9.9 24 15.9 22.0 78.8* 55.4* 0.00I 999.9 000000 722324 03071 20081104 67.2 24 54.7 24 9999.9 0 916.2 24 9.9 24 11.1 24 18.1 24.1 78.8* 59.0* 0.00I 999.9 000000 722324 03071 20081105 70.0 24 48.7 24 9999.9 0 911.9 23 10.0 24 13.7 24 24.1 31.1 80.6* 60.8* 99.99 999.9 010000 722324 03071 20081106 55.9 24 17.8 24 9999.9 0 917.6 24 10.0 24 8.4 24 18.1 29.9 73.4* 41.0* 0.00I 999.9 000000 722324 03071 20081107 49.7 24 18.1 24 9999.9 0 921.4 24 10.0 24 4.7 24 8.9 999.9 64.4* 33.8* 0.00I 999.9 000000 722324 03071 20081108 50.4 24 17.4 24 9999.9 0 920.8 24 10.0 24 3.3 24 8.9 999.9 68.0* 35.6* 0.00I 999.9 000000 722324 03071 20081109 54.6 24 31.6 24 9999.9 0 915.8 24 10.0 24 5.4 24 15.9 22.0 73.4* 37.4* 0.00I 999.9 000000 722324 03071 20081110 64.5 24 47.4 24 9999.9 0 911.9 24 9.9 24 12.7 24 18.1 28.0 73.4* 55.4* 0.00I 999.9 000000 722324 03071 20081111 59.8 24 32.8 24 9999.9 0 915.4 24 10.0 24 6.8 24 18.1 22.9 69.8* 46.4* 0.00I 999.9 000000 722324 03071 20081112 53.8 24 31.5 24 9999.9 0 916.0 24 10.0 24 3.3 24 6.0 999.9 68.0* 39.2* 0.00I 999.9 000000 722324 03071 20081113 57.0 24 30.4 24 9999.9 0 914.9 24 9.6 24 6.6 24 15.9 21.0 71.6* 42.8* 0.00I 999.9 000000 722324 03071 20081114 58.9 24 33.2 24 9999.9 0 912.0 24 9.4 24 12.1 24 28.0 35.0 66.2* 50.0* 0.00I 999.9 000000 722324 03071 20081115 45.4 24 19.9 24 9999.9 0 930.8 24 10.0 24 6.7 24 14.0 21.0 57.2* 32.0* 0.00I 999.9 000000 722324 03071 20081116 46.0 24 19.9 24 9999.9 0 928.7 24 10.0 24 3.0 24 8.9 999.9 66.2* 32.0* 0.00I 999.9 000000 722324 03071 20081117 52.8 24 25.6 24 9999.9 0 927.0 24 10.0 24 2.0 24 6.0 999.9 73.4* 33.8* 0.00I 999.9 000000 722324 03071 20081118 51.6 24 31.4 24 9999.9 0 930.8 24 10.0 24 2.8 24 9.9 999.9 68.0* 33.8* 0.00I 999.9 000000 722324 03071 20081119 55.4 24 29.5 24 9999.9 0 925.8 24 10.0 24 4.0 24 14.0 17.1 75.2* 37.4* 0.00I 999.9 000000 722324 03071 20081120 50.8 24 30.5 24 9999.9 0 924.4 24 9.8 24 10.5 24 22.0 31.1 66.2* 37.4* 0.00I 999.9 000000 722324 03071 20081121 37.9 24 22.0 24 9999.9 0 933.1 24 10.0 24 6.0 24 12.0 17.1 48.2* 28.4* 0.00I 999.9 000000 722324 03071 20081122 46.6 24 28.0 24 9999.9 0 925.6 24 10.0 24 6.3 24 11.1 999.9 66.2* 33.8* 0.00I 999.9 000000 722324 03071 20081123 54.1 24 39.0 24 9999.9 0 921.5 24 9.3 24 7.1 24 11.1 15.9 73.4* 42.8* 0.00I 999.9 000000 722324 03071 20081124 52.4 24 32.1 24 9999.9 0 925.7 24 10.0 24 7.9 24 15.9 22.9 66.2* 39.2* 0.00I 999.9 000000 722324 03071 20081125 47.7 24 27.1 24 9999.9 0 927.0 24 10.0 24 3.7 24 14.0 18.1 68.0* 32.0* 0.00I 999.9 000000 722324 03071 20081126 56.7 24 31.5 24 9999.9 0 920.3 24 10.0 24 5.1 24 11.1 999.9 66.2* 51.8* 0.00I 999.9 000000 722324 03071 20081127 55.8 24 37.0 24 9999.9 0 918.5 24 10.0 24 0.9 24 7.0 999.9 68.0* 48.2* 99.99 999.9 010000 722324 03071 20081128 51.5 24 42.5 24 9999.9 0 917.1 24 10.0 24 6.3 24 12.0 15.9 64.4* 42.8* 99.99 999.9 010000 722324 03071 20081129 48.7 24 34.9 24 9999.9 0 913.9 24 10.0 24 7.1 24 13.0 19.0 60.8* 37.4* 99.99 999.9 010000 722324 03071 20081130 46.4 24 32.3 24 9999.9 0 916.2 24 10.0 24 7.6 24 17.1 22.0 51.8* 41.0* 0.00I 999.9 000000 722324 03071 20081201 48.3 24 28.3 24 9999.9 0 922.7 24 10.0 24 6.9 24 17.1 20.0 57.2* 44.6* 0.00I 999.9 000000 722324 03071 20081202 55.3 24 26.8 24 9999.9 0 919.2 24 10.0 24 9.0 24 14.0 19.0 80.6* 42.8* 0.00I 999.9 000000 722324 03071 20081203 58.9 24 27.4 24 9999.9 0 915.3 24 9.9 24 11.5 24 20.0 28.9 73.4* 46.4* 0.00I 999.9 000000 722324 03071 20081204 36.9 24 17.4 24 9999.9 0 927.6 24 10.0 24 6.8 24 12.0 19.0 46.4* 26.6* 0.00I 999.9 000000 722324 03071 20081205 34.9 24 13.3 24 9999.9 0 929.0 24 10.0 24 7.6 24 13.0 19.0 46.4* 26.6* 0.00I 999.9 000000 722324 03071 20081206 42.6 24 17.8 24 9999.9 0 921.5 24 10.0 24 4.8 24 9.9 999.9 62.6* 32.0* 0.00I 999.9 000000 722324 03071 20081207 48.0 24 22.3 24 9999.9 0 922.0 24 10.0 24 3.1 24 15.0 19.0 69.8* 32.0* 0.00I 999.9 000000 722324 03071 20081208 58.3 24 39.7 24 9999.9 0 911.8 24 9.7 24 11.5 24 22.9 32.1 71.6* 50.0* 0.00I 999.9 000000 722324 03071 20081209 50.5 24 31.2 24 9999.9 0 911.3 24 9.9 24 12.3 24 26.0 35.0 62.6* 35.6* 99.99 999.9 010000 722324 03071 20081210 35.0 24 21.4 24 9999.9 0 926.7 24 10.0 24 9.1 24 20.0 27.0 50.0* 24.8* 0.00I 999.9 000000 722324 03071 20081211 43.8 24 25.6 24 9999.9 0 923.9 24 10.0 24 5.0 24 8.9 999.9 62.6* 33.8* 0.00I 999.9 000000 722324 03071 20081212 49.5 24 28.4 24 9999.9 0 923.2 24 10.0 24 7.6 24 18.1 22.0 62.6* 37.4* 0.00I 999.9 000000 722324 03071 20081213 53.6 24 30.6 24 9999.9 0 912.7 24 10.0 24 14.4 24 21.0 26.0 62.6* 46.4* 0.00I 999.9 000000 722324 03071 20081214 58.9 24 35.6 24 9999.9 0 907.7 24 10.0 24 11.8 24 26.0 34.0 77.0* 44.6* 0.00I 999.9 000000 722324 03071 20081215 36.1 24 12.7 24 9999.9 0 922.8 24 10.0 24 10.4 24 19.0 25.1 9999.9 23.0* 0.00I 999.9 000000 722324 03071 20081216 32.2 24 14.8 24 9999.9 0 921.7 24 10.0 24 7.1 24 13.0 16.9 53.6* 23.0* 0.00I 999.9 000000 722324 03071 20081217 47.8 24 27.5 24 9999.9 0 917.7 24 10.0 24 1.9 24 8.0 999.9 68.0* 37.4* 0.00I 999.9 000000 722324 03071 20081218 52.8 24 39.2 24 9999.9 0 918.0 24 8.6 24 7.5 24 15.0 19.0 62.6* 41.0* 0.00I 999.9 000000 722324 03071 20081219 52.6 24 33.9 24 9999.9 0 920.1 24 10.0 24 5.9 24 15.0 25.1 69.8* 35.6* 0.00I 999.9 000000 722324 03071 20081220 59.4 24 30.7 24 9999.9 0 917.7 23 10.0 24 5.8 24 11.1 999.9 71.6* 50.0* 0.00I 999.9 000000 722324 03071 20081221 35.1 24 9.2 24 9999.9 0 925.1 24 10.0 24 9.6 24 14.0 19.0 60.8* 23.0* 0.00I 999.9 000000 722324 03071 20081222 31.7 24 4.9 24 9999.9 0 926.6 24 10.0 24 11.2 24 19.0 24.1 44.6* 24.8* 0.00I 999.9 000000 722324 03071 20081223 43.4 24 30.9 24 9999.9 0 912.2 24 9.9 24 10.3 24 15.9 22.9 71.6* 33.8* 0.00I 999.9 000000 722324 03071 20081224 52.9 24 26.9 24 9999.9 0 917.5 24 10.0 24 5.4 24 15.9 21.0 64.4* 41.0* 0.00I 999.9 000000 722324 03071 20081225 52.6 24 30.4 24 9999.9 0 918.8 24 10.0 24 7.0 24 15.0 19.0 71.6* 39.2* 0.00I 999.9 000000 722324 03071 20081226 61.7 24 44.7 24 9999.9 0 911.6 24 9.6 24 11.8 24 18.1 26.0 77.0* 53.6* 0.00I 999.9 000000 722324 03071 20081227 51.3 24 25.2 24 9999.9 0 914.5 24 9.8 24 13.4 24 28.0 42.0 71.6* 35.6* 0.00I 999.9 000000 722324 03071 20081228 40.5 24 3.6 24 9999.9 0 923.4 24 10.0 24 4.3 24 14.0 15.9 59.0* 28.4* 0.00I 999.9 000000 722324 03071 20081229 45.1 24 11.1 24 9999.9 0 926.3 24 10.0 24 2.6 24 8.9 999.9 68.0* 30.2* 0.00I 999.9 000000 722324 03071 20081230 54.0 24 17.9 24 9999.9 0 921.8 24 10.0 24 7.9 24 14.0 19.0 73.4* 39.2* 0.00I 999.9 000000 722324 03071 20081231 48.2 24 21.6 24 9999.9 0 925.1 24 9.8 24 8.8 24 22.0 29.9 66.2* 35.6* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1966/0000755000175000017500000000000014302004506015105 5ustar nileshnileshfluids-1.0.22/tests/gsod/1966/724050-13743.op0000644000175000017500000010645414302004506016677 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19660101 59.3 24 45.6 24 1017.7 8 1016.6 8 10.2 24 8.4 24 13.0 999.9 66.4* 53.4* 99.99 999.9 010000 724050 13743 19660102 46.9 24 42.7 24 1021.7 8 1020.7 8 6.2 24 4.9 24 8.9 999.9 52.3* 44.4* 99.99 999.9 110000 724050 13743 19660103 45.2 24 35.1 24 1018.8 8 1017.8 8 5.4 24 8.3 24 22.0 999.9 50.4* 42.4* 99.99 999.9 110000 724050 13743 19660104 41.9 24 17.6 24 1031.6 8 1030.6 8 13.1 24 9.5 24 15.9 999.9 50.4* 36.3* 0.00I 999.9 000000 724050 13743 19660105 37.9 24 23.8 24 1029.6 8 1028.6 8 9.5 24 1.5 24 7.0 999.9 46.4* 29.3* 0.00I 999.9 000000 724050 13743 19660106 43.8 24 40.0 24 1011.7 8 1010.6 8 2.8 24 6.3 24 9.9 999.9 47.3* 39.4* 99.99 999.9 110000 724050 13743 19660107 44.1 24 36.2 24 1010.5 8 1009.5 8 5.6 24 7.7 24 13.0 999.9 50.4* 39.4* 99.99 999.9 110000 724050 13743 19660108 34.6 24 22.8 24 1012.5 8 1011.4 8 8.6 24 18.4 24 33.0 999.9 46.4* 24.4* 0.00I 999.9 000000 724050 13743 19660109 25.0 24 4.6 24 1027.6 8 1026.6 8 11.6 24 13.6 24 25.1 999.9 37.4* 19.4* 0.00I 999.9 000000 724050 13743 19660110 37.6 24 14.6 24 1024.4 8 1023.4 8 10.5 24 8.5 24 12.0 999.9 52.3* 29.3* 0.00I 999.9 000000 724050 13743 19660111 33.0 13 8.4 13 1024.7 4 1023.7 4 13.9 13 16.6 13 21.0 999.9 35.4* 31.3* 0.00I 999.9 000000 724050 13743 19660112 25.0 13 5.8 13 1030.9 4 1029.9 4 13.9 13 10.7 13 15.9 999.9 31.3* 19.4* 0.00I 999.9 000000 724050 13743 19660113 30.2 14 11.9 14 1023.0 5 1022.0 5 7.3 14 7.8 14 12.0 999.9 33.4* 26.4* 99.99 999.9 011000 724050 13743 19660114 38.3 13 23.8 13 1016.4 4 1015.3 4 7.3 13 10.7 13 18.1 999.9 41.4* 35.4* 0.00I 999.9 000000 724050 13743 19660117 30.5 13 10.8 13 1019.5 4 1018.5 4 11.5 13 18.1 13 23.9 999.9 35.4* 25.3* 0.00I 999.9 000000 724050 13743 19660118 29.8 13 10.7 13 1019.2 4 1018.2 4 11.9 13 15.4 13 20.0 999.9 34.3* 24.4* 0.00I 999.9 000000 724050 13743 19660119 30.7 14 11.4 14 1017.7 5 1016.7 5 9.9 14 17.9 14 20.0 999.9 35.4* 24.4* 0.00I 999.9 000000 724050 13743 19660120 38.3 13 21.1 13 1023.2 4 1022.2 4 13.1 13 9.6 13 14.0 999.9 44.4* 32.4* 0.00I 999.9 000000 724050 13743 19660121 39.4 13 20.4 13 1026.6 4 1025.6 4 11.0 13 5.5 13 9.9 999.9 45.3* 34.3* 0.00I 999.9 000000 724050 13743 19660124 28.2 13 10.8 13 1021.6 4 1020.6 4 13.1 13 15.5 13 19.0 999.9 30.4* 26.4* 0.00I 999.9 000000 724050 13743 19660125 27.4 13 10.6 13 1027.5 4 1026.5 4 11.9 13 8.0 13 11.1 999.9 30.4* 24.4* 0.00I 999.9 000000 724050 13743 19660126 22.8 14 16.8 14 1021.7 5 1020.6 5 3.3 14 9.2 14 12.0 999.9 27.3* 21.4* 99.99 999.9 101000 724050 13743 19660127 25.7 13 12.4 13 1011.3 4 1010.4 4 10.7 13 13.0 13 18.1 999.9 31.3* 19.4* 0.00I 999.9 000000 724050 13743 19660128 17.2 13 -5.5 13 1019.9 4 1018.9 4 14.0 13 18.1 13 28.0 999.9 19.4* 15.4* 0.00I 999.9 000000 724050 13743 19660131 26.1 12 8.2 12 1011.3 4 1010.3 4 14.9 12 16.3 12 29.9 999.9 32.4* 13.5* 0.00I 999.9 000000 724050 13743 19660201 29.3 13 7.7 13 1015.2 4 1014.2 4 13.8 13 3.6 13 8.0 999.9 35.4* 21.4* 0.00I 999.9 000000 724050 13743 19660202 29.1 13 25.1 13 1010.2 4 1009.2 4 3.5 13 7.3 13 13.0 999.9 30.4* 27.3* 99.99 999.9 101000 724050 13743 19660203 31.1 13 15.3 13 1019.1 4 1018.0 4 8.4 13 8.0 13 14.0 999.9 35.4* 25.3* 0.00I 999.9 000000 724050 13743 19660204 30.9 13 15.6 13 1017.5 4 1016.5 4 9.5 13 11.2 13 15.9 999.9 33.4* 25.3* 0.00I 999.9 000000 724050 13743 19660205 27.9 9 13.6 9 9999.9 0 9999.9 0 12.0 9 18.3 9 25.1 999.9 30.4* 23.4* 0.00I 999.9 000000 724050 13743 19660207 32.4 13 24.2 13 1026.5 4 1025.5 4 4.5 13 3.2 13 5.1 999.9 36.3* 29.3* 99.99 999.9 011000 724050 13743 19660208 38.5 13 28.4 13 1033.8 4 1032.8 4 2.6 13 0.7 13 2.9 999.9 43.3* 33.4* 0.00I 999.9 000000 724050 13743 19660209 37.6 13 26.3 13 1036.4 4 1035.4 4 3.0 13 3.5 13 8.9 999.9 41.4* 32.4* 0.00I 999.9 000000 724050 13743 19660210 46.7 13 37.8 13 1027.3 4 1026.2 4 5.7 13 2.3 13 6.0 999.9 56.3* 37.4* 0.00I 999.9 000000 724050 13743 19660211 56.2 13 52.7 13 1018.6 4 1017.5 4 5.2 13 2.8 13 9.9 999.9 58.3* 54.3* 0.00I 999.9 000000 724050 13743 19660214 51.1 13 28.5 13 1018.0 4 1016.9 4 14.5 13 7.3 13 11.1 999.9 58.3* 43.3* 0.00I 999.9 000000 724050 13743 19660215 48.0 13 31.0 13 1027.1 4 1026.1 4 11.7 13 8.8 13 18.1 999.9 49.3* 46.4* 0.00I 999.9 000000 724050 13743 19660216 39.8 15 34.5 15 1018.0 5 1016.9 5 4.0 15 2.9 15 6.0 999.9 45.3* 35.4* 99.99 999.9 111000 724050 13743 19660217 38.3 13 18.0 13 1014.6 4 1013.6 4 14.9 13 17.4 13 23.9 999.9 41.4* 35.4* 0.00I 999.9 000000 724050 13743 19660218 41.0 13 20.9 13 1022.2 4 1021.2 4 10.0 13 4.4 13 8.9 999.9 47.3* 32.4* 0.00I 999.9 000000 724050 13743 19660221 30.3 13 7.1 13 1028.8 4 1027.8 4 11.9 13 15.5 13 19.0 999.9 36.3* 24.4* 0.00I 999.9 000000 724050 13743 19660222 33.2 13 14.9 13 1031.4 4 1030.4 4 12.2 13 13.8 13 15.9 999.9 39.4* 26.4* 0.00I 999.9 000000 724050 13743 19660223 36.7 13 22.2 13 1036.4 4 1035.4 4 9.3 13 5.3 13 8.0 999.9 43.3* 29.3* 0.00I 999.9 000000 724050 13743 19660224 32.9 13 29.8 13 1026.9 4 1025.9 4 0.7 13 4.6 13 8.9 999.9 34.3* 31.3* 99.99 999.9 111000 724050 13743 19660225 40.3 13 31.2 13 1008.6 4 1007.6 4 6.8 13 11.4 13 15.9 999.9 44.4* 33.4* 99.99 999.9 010000 724050 13743 19660228 39.9 13 36.3 13 1017.1 4 1016.1 4 4.1 13 3.8 13 9.9 999.9 45.3* 37.4* 99.99 999.9 110000 724050 13743 19660301 52.2 13 30.9 13 1003.6 4 1002.6 4 13.2 13 22.0 13 29.9 999.9 58.3* 44.4* 99.99 999.9 010000 724050 13743 19660302 53.7 13 17.7 13 1021.4 4 1020.4 4 14.9 13 10.4 13 20.0 999.9 63.3* 43.3* 0.00I 999.9 000000 724050 13743 19660303 57.5 13 37.5 13 1017.4 4 1016.4 4 8.8 13 3.0 13 7.0 999.9 68.4* 44.4* 0.00I 999.9 000000 724050 13743 19660304 61.5 13 57.2 13 1009.8 4 1008.7 4 5.9 13 5.0 13 8.9 999.9 66.4* 57.4* 99.99 999.9 110000 724050 13743 19660307 36.2 13 17.8 13 1020.5 4 1019.5 4 13.5 13 8.4 13 20.0 999.9 38.3* 30.4* 0.00I 999.9 000000 724050 13743 19660308 32.1 13 14.2 13 1034.4 4 1033.4 4 14.7 13 10.4 13 15.9 999.9 38.3* 25.3* 0.00I 999.9 000000 724050 13743 19660309 38.1 16 18.0 16 1036.8 5 1035.8 5 12.9 16 3.8 16 8.9 999.9 46.4* 28.4* 0.00I 999.9 000000 724050 13743 19660310 45.8 15 23.6 15 1032.7 5 1031.7 5 7.8 15 4.9 15 8.9 999.9 57.4* 32.4* 0.00I 999.9 000000 724050 13743 19660311 54.1 13 31.3 13 1027.3 4 1026.3 4 7.0 13 4.2 13 12.0 999.9 60.3* 43.3* 99.99 999.9 010000 724050 13743 19660314 42.2 13 38.4 13 1025.1 4 1024.1 4 3.0 13 5.2 13 8.0 999.9 43.3* 40.3* 99.99 999.9 110000 724050 13743 19660315 50.7 13 37.9 13 1019.6 4 1018.6 4 4.2 13 4.9 13 8.0 999.9 58.3* 43.3* 0.00I 999.9 100000 724050 13743 19660316 42.7 13 13.5 13 1026.8 4 1026.2 4 14.9 13 6.3 13 9.9 999.9 49.3* 34.3* 0.00I 999.9 000000 724050 13743 19660317 46.2 15 20.0 15 1027.7 5 1026.7 5 12.3 15 5.3 15 8.0 999.9 55.4* 34.3* 0.00I 999.9 000000 724050 13743 19660318 57.1 13 31.7 13 1021.1 4 1020.1 4 9.2 13 6.6 13 9.9 999.9 72.3* 37.4* 0.00I 999.9 000000 724050 13743 19660321 51.8 13 29.0 13 1023.3 4 1022.2 4 9.7 13 2.9 13 8.0 999.9 62.4* 38.3* 0.00I 999.9 000000 724050 13743 19660322 65.6 13 43.2 13 1014.7 4 1013.7 4 9.8 13 7.4 13 9.9 999.9 80.2* 48.4* 0.00I 999.9 000000 724050 13743 19660323 64.6 13 46.7 13 1013.0 4 1011.9 4 5.2 13 6.3 13 9.9 999.9 73.4* 53.4* 0.00I 999.9 000000 724050 13743 19660324 50.2 14 44.1 14 1009.6 5 1008.6 5 5.3 14 10.0 14 20.0 999.9 64.4* 40.3* 99.99 999.9 110000 724050 13743 19660325 41.1 13 16.7 13 1019.0 4 1018.0 4 14.9 13 13.0 13 19.0 999.9 47.3* 34.3* 0.00I 999.9 000000 724050 13743 19660328 36.3 13 11.8 13 1015.2 4 1014.2 4 14.3 13 15.5 13 20.0 999.9 41.4* 27.3* 0.00I 999.9 000000 724050 13743 19660329 42.2 18 14.7 18 1014.0 6 1013.0 6 14.3 18 9.5 18 15.0 999.9 53.4* 30.4* 0.00I 999.9 000000 724050 13743 19660330 51.4 13 27.0 13 999.6 4 998.6 4 9.3 13 4.3 13 9.9 999.9 58.3* 39.4* 99.99 999.9 010000 724050 13743 19660331 44.7 14 29.7 14 1000.1 5 999.1 5 9.5 14 14.2 14 20.0 999.9 49.3* 38.3* 99.99 999.9 010000 724050 13743 19660401 54.4 13 28.3 13 992.2 4 991.2 4 12.4 13 6.8 13 14.0 999.9 63.3* 45.3* 0.00I 999.9 000000 724050 13743 19660404 47.7 13 40.1 13 999.4 4 998.4 4 4.3 13 7.8 13 14.0 999.9 50.4* 45.3* 0.00I 999.9 000000 724050 13743 19660405 47.2 13 21.8 13 1005.8 4 1004.8 4 14.3 13 12.0 13 18.1 999.9 51.3* 40.3* 0.00I 999.9 000000 724050 13743 19660406 50.3 15 23.7 15 1008.2 5 1007.2 5 14.7 15 6.5 15 9.9 999.9 55.4* 41.4* 0.00I 999.9 000000 724050 13743 19660407 53.8 15 27.8 15 1009.2 5 1008.2 5 12.9 15 6.7 15 13.0 999.9 62.4* 43.3* 99.99 999.9 010000 724050 13743 19660408 49.7 13 23.6 13 1013.0 4 1012.0 4 14.7 13 9.7 13 15.9 999.9 54.3* 42.4* 0.00I 999.9 000000 724050 13743 19660411 51.3 13 30.7 13 1019.3 4 1018.3 4 10.4 13 3.2 13 7.0 999.9 57.4* 39.4* 0.00I 999.9 000000 724050 13743 19660412 45.4 13 41.5 13 1022.6 4 1021.6 4 3.4 13 5.5 13 9.9 999.9 47.3* 43.3* 99.99 999.9 110000 724050 13743 19660413 41.0 13 37.9 13 1020.6 4 1019.6 4 4.0 13 7.1 13 9.9 999.9 41.4* 39.4* 99.99 999.9 110000 724050 13743 19660414 49.2 13 32.2 13 1023.4 4 1022.4 4 10.1 13 7.2 13 12.0 999.9 54.3* 39.4* 0.00I 999.9 000000 724050 13743 19660415 53.7 13 27.3 13 1020.9 4 1019.9 4 11.0 13 2.4 13 6.0 999.9 59.4* 39.4* 0.00I 999.9 000000 724050 13743 19660418 58.3 13 41.0 13 1020.0 4 1019.0 4 6.4 13 4.4 13 9.9 999.9 65.3* 49.3* 99.99 999.9 010000 724050 13743 19660419 58.7 13 44.4 13 1023.0 4 1022.0 4 5.8 13 6.7 13 9.9 999.9 65.3* 50.4* 0.00I 999.9 000000 724050 13743 19660420 59.5 16 48.3 16 1025.1 5 1024.0 5 5.0 16 5.3 16 9.9 999.9 70.3* 48.4* 0.00I 999.9 000000 724050 13743 19660421 69.7 16 54.3 16 1025.1 5 1024.1 5 9.5 16 6.1 16 12.0 999.9 80.2* 51.3* 0.00I 999.9 000000 724050 13743 19660422 59.3 13 56.3 13 1029.9 4 1028.9 4 3.0 13 5.2 13 8.0 999.9 61.3* 53.4* 99.99 999.9 110000 724050 13743 19660425 66.3 13 55.3 13 1015.8 4 1014.7 4 8.6 13 6.5 13 12.0 999.9 73.4* 61.3* 99.99 999.9 010000 724050 13743 19660426 63.3 13 33.2 13 1022.3 4 1021.3 4 12.8 13 3.4 13 8.0 999.9 69.3* 51.3* 0.00I 999.9 000000 724050 13743 19660427 50.2 16 40.4 16 1025.2 5 1024.1 5 8.0 16 8.5 16 14.0 999.9 64.4* 42.4* 99.99 999.9 110000 724050 13743 19660428 43.4 13 40.4 13 1029.9 4 1028.9 4 3.7 13 5.0 13 8.9 999.9 44.4* 41.4* 99.99 999.9 110000 724050 13743 19660429 47.0 13 42.1 13 1031.2 4 1030.2 4 3.0 13 2.2 13 4.1 999.9 49.3* 44.4* 99.99 999.9 110000 724050 13743 19660502 50.9 13 41.2 13 1026.0 4 1025.0 4 8.2 13 3.6 13 6.0 999.9 55.4* 46.4* 99.99 999.9 010000 724050 13743 19660503 58.0 13 42.1 13 1024.1 4 1023.0 4 9.7 13 6.5 13 9.9 999.9 69.3* 44.4* 0.00I 999.9 000000 724050 13743 19660504 53.9 13 26.5 13 1029.9 4 1028.8 4 14.5 13 13.7 13 20.0 999.9 60.3* 47.3* 0.00I 999.9 000000 724050 13743 19660505 61.1 13 38.1 13 1026.2 4 1025.2 4 12.3 13 8.5 13 14.0 999.9 73.4* 45.3* 0.00I 999.9 000000 724050 13743 19660506 76.9 13 47.4 13 1009.2 4 1008.2 4 11.7 13 13.1 13 20.0 999.9 89.2* 62.4* 0.00I 999.9 000000 724050 13743 19660509 51.7 13 46.0 13 1008.8 4 1007.8 4 5.2 13 9.8 13 15.9 999.9 56.3* 47.3* 99.99 999.9 110000 724050 13743 19660510 47.5 13 19.7 13 1023.4 4 1022.4 4 14.9 13 12.7 13 18.1 999.9 56.3* 37.4* 0.00I 999.9 000000 724050 13743 19660511 55.6 13 26.4 13 1029.1 4 1028.0 4 9.0 13 3.4 13 8.0 999.9 64.4* 37.4* 0.00I 999.9 000000 724050 13743 19660512 63.3 13 49.2 13 1021.4 4 1020.4 4 9.5 13 9.8 13 15.0 999.9 71.2* 51.3* 0.00I 999.9 000000 724050 13743 19660513 70.9 13 56.8 13 1014.5 4 1013.5 4 8.6 13 6.6 13 9.9 999.9 76.3* 63.3* 0.00I 999.9 000000 724050 13743 19660516 66.9 13 42.7 13 1016.2 4 1015.2 4 13.3 13 6.6 13 9.9 999.9 77.4* 52.3* 0.00I 999.9 000000 724050 13743 19660517 67.2 13 51.1 13 1015.1 4 1014.1 4 6.2 13 4.2 13 9.9 999.9 80.2* 52.3* 0.00I 999.9 000000 724050 13743 19660518 72.2 15 58.5 15 1014.2 5 1013.2 5 7.0 15 6.8 15 14.0 999.9 78.3* 59.4* 0.00I 999.9 000000 724050 13743 19660519 75.9 13 65.2 13 1011.8 4 1010.8 4 12.0 13 3.8 13 9.9 999.9 83.3* 68.4* 99.99 999.9 010000 724050 13743 19660520 75.7 13 49.0 13 1015.0 4 1014.0 4 12.8 13 2.9 13 6.0 999.9 82.4* 65.3* 0.00I 999.9 000000 724050 13743 19660523 71.1 13 53.4 13 1020.4 4 1019.4 4 8.3 13 4.5 13 8.0 999.9 77.4* 58.3* 0.00I 999.9 000000 724050 13743 19660524 70.0 13 52.6 13 1019.6 4 1018.6 4 12.2 13 4.5 13 9.9 999.9 76.3* 58.3* 0.00I 999.9 000000 724050 13743 19660525 70.4 13 62.9 13 1016.2 4 1015.2 4 5.1 13 2.6 13 5.1 999.9 75.4* 65.3* 99.99 999.9 110000 724050 13743 19660526 75.1 13 64.2 13 1012.1 4 1011.1 4 5.6 13 2.6 13 7.0 999.9 82.4* 67.3* 99.99 999.9 110000 724050 13743 19660527 71.9 13 66.4 13 1010.4 4 1009.3 4 6.7 13 3.8 13 9.9 999.9 77.4* 67.3* 99.99 999.9 010000 724050 13743 19660531 60.2 13 48.4 13 1016.6 4 1015.6 4 8.9 13 2.9 13 9.9 999.9 66.4* 55.4* 99.99 999.9 010000 724050 13743 19660601 58.8 13 40.2 13 1018.2 4 1017.2 4 14.2 13 10.9 13 15.9 999.9 63.3* 49.3* 99.99 999.9 010000 724050 13743 19660602 61.5 13 39.5 13 1022.3 4 1021.3 4 14.2 13 8.8 13 12.0 999.9 68.4* 50.4* 0.00I 999.9 000000 724050 13743 19660603 70.6 13 45.7 13 1024.2 4 1023.2 4 13.8 13 6.7 13 8.9 999.9 80.2* 55.4* 0.00I 999.9 000000 724050 13743 19660606 78.7 13 60.7 13 1018.0 4 1017.0 4 6.6 13 6.1 13 9.9 999.9 86.4* 69.3* 0.00I 999.9 000000 724050 13743 19660607 76.2 13 62.5 13 1015.4 4 1014.4 4 6.1 13 5.5 13 9.9 999.9 83.3* 70.3* 99.99 999.9 010000 724050 13743 19660608 79.1 13 65.3 13 1016.2 4 1015.2 4 6.0 13 3.7 13 8.0 999.9 86.4* 68.4* 0.00I 999.9 000000 724050 13743 19660609 81.2 13 68.6 13 1015.2 4 1014.2 4 5.9 13 4.2 13 9.9 999.9 89.2* 70.3* 0.00I 999.9 100000 724050 13743 19660610 78.1 13 68.2 13 1010.2 4 1009.2 4 13.6 13 9.1 13 15.9 999.9 86.4* 73.4* 99.99 999.9 010010 724050 13743 19660613 73.6 13 59.5 13 1017.5 4 1016.5 4 13.6 13 6.4 13 11.1 999.9 84.4* 64.4* 0.00I 999.9 000000 724050 13743 19660614 76.1 13 64.2 13 1013.5 4 1012.4 4 5.8 13 5.7 13 9.9 999.9 87.3* 69.3* 99.99 999.9 010010 724050 13743 19660615 79.1 13 58.1 13 1014.4 4 1013.4 4 11.2 13 6.0 13 12.0 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19660616 79.1 13 59.7 13 1010.5 4 1009.5 4 10.9 13 7.9 13 12.0 999.9 88.3* 64.4* 0.00I 999.9 000000 724050 13743 19660617 71.1 13 62.2 13 1013.0 4 1012.0 4 7.6 13 2.4 13 6.0 999.9 77.4* 67.3* 99.99 999.9 010000 724050 13743 19660620 76.0 13 58.5 13 1021.5 4 1020.5 4 7.6 13 5.4 13 8.9 999.9 84.4* 63.3* 0.00I 999.9 000000 724050 13743 19660621 82.5 13 57.3 13 1021.1 4 1020.1 4 7.8 13 5.1 13 9.9 999.9 90.3* 67.3* 0.00I 999.9 000000 724050 13743 19660622 80.5 15 57.8 15 1022.5 4 1021.4 4 12.1 15 5.8 15 8.0 999.9 87.3* 70.3* 0.00I 999.9 000000 724050 13743 19660623 81.6 13 62.0 13 1019.0 4 1018.0 4 7.3 13 2.4 13 5.1 999.9 91.2* 67.3* 0.00I 999.9 000000 724050 13743 19660624 85.9 13 64.0 13 1015.4 4 1014.4 4 4.4 13 7.3 13 13.0 999.9 94.3* 73.4* 0.00I 999.9 000000 724050 13743 19660627 85.4 13 69.6 13 1018.2 4 1017.2 4 3.4 13 5.1 13 9.9 999.9 92.3* 76.3* 0.00I 999.9 000000 724050 13743 19660628 86.3 13 68.9 13 1014.4 4 1013.4 4 3.8 13 4.6 13 8.0 999.9 93.4* 78.3* 99.99 999.9 010010 724050 13743 19660629 82.0 13 67.9 13 1012.7 4 1011.7 4 7.3 13 6.7 13 13.0 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19660630 86.1 13 60.4 13 1013.7 4 1012.7 4 11.0 13 3.5 13 8.0 999.9 94.3* 72.3* 0.00I 999.9 000000 724050 13743 19660701 84.6 13 67.4 13 1017.2 4 1016.2 4 3.5 13 2.6 13 6.0 999.9 92.3* 74.3* 0.00I 999.9 000000 724050 13743 19660705 81.8 13 67.6 13 1009.2 4 1008.2 4 4.4 13 6.7 13 9.9 999.9 88.3* 78.3* 0.00I 999.9 000000 724050 13743 19660706 81.9 13 69.9 13 1008.6 4 1007.6 4 3.6 13 3.3 13 13.0 999.9 89.2* 72.3* 0.00I 999.9 000000 724050 13743 19660707 85.6 13 66.5 13 1006.6 4 1005.6 4 9.2 13 6.4 13 9.9 999.9 92.3* 75.4* 0.00I 999.9 000000 724050 13743 19660708 84.6 13 60.2 13 1011.8 4 1010.8 4 10.9 13 7.0 13 13.0 999.9 89.2* 75.4* 0.00I 999.9 000000 724050 13743 19660711 87.3 13 64.5 13 1013.2 4 1012.2 4 11.6 13 8.9 13 20.0 999.9 95.4* 78.3* 99.99 999.9 010010 724050 13743 19660712 87.4 13 67.0 13 1012.7 5 1011.7 5 14.5 13 6.5 13 12.0 999.9 94.3* 76.3* 0.00I 999.9 000000 724050 13743 19660713 89.3 13 66.7 13 1009.4 4 1008.7 4 14.2 13 4.5 13 9.9 999.9 96.3* 78.3* 0.00I 999.9 000000 724050 13743 19660714 88.8 14 65.4 14 1012.0 4 1011.0 4 12.3 14 5.9 14 11.1 999.9 95.4* 80.2* 0.00I 999.9 000000 724050 13743 19660715 72.0 13 58.3 13 1014.4 4 1013.4 4 12.2 13 6.8 13 9.9 999.9 76.3* 70.3* 0.00I 999.9 000000 724050 13743 19660718 81.4 13 61.3 13 1015.5 4 1014.5 4 11.3 13 5.0 13 9.9 999.9 91.2* 69.3* 0.00I 999.9 000000 724050 13743 19660719 83.0 13 67.6 13 1005.8 4 1004.8 4 5.6 13 8.6 13 16.9 999.9 90.3* 73.4* 0.00I 999.9 000000 724050 13743 19660720 76.7 13 50.3 13 1010.3 4 1009.3 4 13.4 13 12.2 13 18.1 999.9 81.3* 72.3* 0.00I 999.9 000000 724050 13743 19660721 73.8 13 40.4 13 1018.4 4 1017.4 4 14.9 13 4.3 13 7.0 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19660722 79.0 13 52.0 13 1021.0 4 1020.0 4 14.0 13 4.4 13 9.9 999.9 87.3* 66.4* 0.00I 999.9 000000 724050 13743 19660725 80.6 13 60.0 13 1021.9 4 1020.9 4 14.0 13 5.3 13 9.9 999.9 88.3* 70.3* 0.00I 999.9 000000 724050 13743 19660726 85.7 13 65.7 13 1015.3 4 1014.3 4 7.1 13 4.5 13 7.0 999.9 95.4* 71.2* 0.00I 999.9 000000 724050 13743 19660727 86.6 13 67.8 13 1013.3 4 1012.3 4 4.1 13 3.5 13 8.9 999.9 93.4* 78.3* 0.00I 999.9 000000 724050 13743 19660728 82.1 13 70.7 13 1010.8 4 1009.8 4 10.5 13 7.3 13 9.9 999.9 89.2* 76.3* 99.99 999.9 010000 724050 13743 19660729 82.6 13 70.6 13 1008.6 4 1007.6 4 4.6 13 4.8 13 9.9 999.9 88.3* 76.3* 0.00I 999.9 000000 724050 13743 19660801 80.6 13 57.6 13 1017.2 4 1016.2 4 10.7 13 5.7 13 9.9 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19660802 79.0 13 62.8 13 1009.9 4 1008.9 4 6.4 13 7.5 13 9.9 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19660803 76.4 13 52.0 13 1013.5 4 1012.5 4 14.3 13 5.4 13 12.0 999.9 82.4* 71.2* 0.00I 999.9 000000 724050 13743 19660804 75.3 13 57.3 13 1016.8 4 1015.8 4 10.8 13 5.1 13 9.9 999.9 80.2* 65.3* 99.99 999.9 010000 724050 13743 19660805 69.4 15 58.0 15 1015.1 4 1014.1 4 8.4 15 6.7 15 9.9 999.9 76.3* 63.3* 99.99 999.9 010000 724050 13743 19660808 81.0 13 65.8 13 1015.0 4 1014.0 4 8.3 13 2.9 13 8.0 999.9 88.3* 71.2* 0.00I 999.9 000000 724050 13743 19660809 80.4 13 70.3 13 1016.1 4 1015.1 4 6.3 13 6.0 13 9.9 999.9 86.4* 73.4* 99.99 999.9 010000 724050 13743 19660810 81.0 13 70.0 13 1014.9 4 1013.9 4 6.4 13 3.8 13 8.0 999.9 88.3* 73.4* 0.00I 999.9 100000 724050 13743 19660811 80.5 13 70.8 13 1012.5 4 1012.5 4 8.8 13 9.6 13 15.9 999.9 89.2* 70.3* 99.99 999.9 010010 724050 13743 19660812 79.2 13 60.9 13 1016.7 4 1015.7 4 11.2 13 7.9 13 9.9 999.9 86.4* 73.4* 99.99 999.9 010000 724050 13743 19660815 77.6 13 71.2 13 1016.2 4 1015.2 4 6.1 13 2.3 13 6.0 999.9 82.4* 74.3* 99.99 999.9 110000 724050 13743 19660816 83.0 13 69.7 13 1012.5 4 1011.5 4 7.2 13 4.2 13 9.9 999.9 91.2* 72.3* 0.00I 999.9 100010 724050 13743 19660817 81.1 13 60.3 13 1014.1 4 1013.0 4 11.5 13 8.7 13 15.9 999.9 88.3* 74.3* 0.00I 999.9 000000 724050 13743 19660818 84.2 13 59.6 13 1015.8 4 1014.8 4 9.3 13 3.7 13 9.9 999.9 92.3* 71.2* 0.00I 999.9 000000 724050 13743 19660819 85.2 13 64.9 13 1015.4 4 1014.4 4 7.3 13 4.5 13 9.9 999.9 92.3* 76.3* 0.00I 999.9 000000 724050 13743 19660822 85.0 13 71.6 13 1013.8 4 1012.8 4 4.0 13 3.6 13 12.0 999.9 91.2* 76.3* 99.99 999.9 110000 724050 13743 19660823 82.2 13 70.0 13 1013.3 4 1012.3 4 8.0 13 7.8 13 14.0 999.9 85.3* 79.3* 0.00I 999.9 000000 724050 13743 19660824 74.2 13 51.4 13 1017.6 4 1016.6 4 14.2 13 9.1 13 12.0 999.9 79.3* 67.3* 0.00I 999.9 000000 724050 13743 19660825 74.6 13 52.5 13 1016.7 4 1015.7 4 10.8 13 2.9 13 8.0 999.9 80.2* 66.4* 0.00I 999.9 000000 724050 13743 19660826 77.6 13 53.4 13 1017.3 4 1016.3 4 13.8 13 6.0 13 12.0 999.9 86.4* 66.4* 0.00I 999.9 000000 724050 13743 19660829 83.1 13 58.9 13 1018.8 4 1017.8 4 6.0 13 3.0 13 7.0 999.9 92.3* 70.3* 0.00I 999.9 000000 724050 13743 19660830 82.2 13 62.6 13 1019.7 4 1018.6 4 5.0 13 4.1 13 6.0 999.9 88.3* 73.4* 0.00I 999.9 000000 724050 13743 19660831 82.3 13 65.2 13 1016.5 4 1015.5 4 3.9 13 0.6 13 4.1 999.9 92.3* 71.2* 0.00I 999.9 000000 724050 13743 19660901 81.3 13 62.8 13 1012.1 4 1011.1 4 4.5 13 3.1 13 6.0 999.9 89.2* 71.2* 0.00I 999.9 000000 724050 13743 19660902 82.1 13 60.2 13 1012.5 4 1011.5 4 6.2 13 4.8 13 8.0 999.9 91.2* 73.4* 0.00I 999.9 000000 724050 13743 19660906 77.6 13 51.0 13 1011.5 4 1010.5 4 14.7 13 4.8 13 9.9 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19660907 70.8 13 47.5 13 1022.6 4 1021.6 4 14.9 13 7.8 13 12.0 999.9 76.3* 63.3* 0.00I 999.9 000000 724050 13743 19660908 70.0 13 50.3 13 1025.9 4 1024.9 4 14.9 13 5.3 13 9.9 999.9 77.4* 63.3* 0.00I 999.9 000000 724050 13743 19660909 71.4 15 47.8 15 1022.2 5 1021.2 5 14.9 15 4.6 15 8.9 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19660912 72.9 13 61.5 13 1025.5 4 1024.4 4 5.4 13 2.0 13 7.0 999.9 79.3* 64.4* 99.99 999.9 010000 724050 13743 19660913 68.7 13 60.3 13 1024.4 4 1023.5 4 12.8 13 3.1 13 8.0 999.9 73.4* 65.3* 99.99 999.9 010000 724050 13743 19660914 69.3 13 66.9 13 1006.7 4 1005.7 4 3.0 13 4.5 13 11.1 999.9 70.3* 68.4* 99.99 999.9 110000 724050 13743 19660915 69.0 13 61.3 13 1004.4 4 1003.4 4 9.9 13 8.8 13 18.1 999.9 74.3* 65.3* 99.99 999.9 010000 724050 13743 19660916 60.6 15 39.8 15 1015.2 5 1014.2 5 14.5 15 4.3 15 9.9 999.9 67.3* 50.4* 0.00I 999.9 000000 724050 13743 19660919 67.8 13 56.6 13 1019.0 4 1018.0 4 5.3 13 0.9 13 4.1 999.9 72.3* 62.4* 99.99 999.9 010000 724050 13743 19660920 62.8 13 60.6 13 1014.3 4 1013.3 4 3.8 13 8.8 13 14.0 999.9 63.3* 61.3* 99.99 999.9 110000 724050 13743 19660921 65.2 13 62.4 13 1009.0 4 1008.0 4 4.9 13 4.6 13 9.9 999.9 68.4* 63.3* 99.99 999.9 110000 724050 13743 19660922 67.7 14 62.5 14 1004.2 4 1003.2 4 6.3 14 3.5 14 12.0 999.9 73.4* 62.4* 99.99 999.9 110000 724050 13743 19660923 68.5 15 46.1 15 1006.3 5 1005.3 5 14.3 15 9.2 15 15.0 999.9 74.3* 62.4* 99.99 999.9 010000 724050 13743 19660926 58.3 13 45.8 13 1017.5 4 1016.5 4 10.2 13 0.7 13 4.1 999.9 60.3* 57.4* 0.00I 999.9 000000 724050 13743 19660927 54.7 13 52.5 13 1013.9 4 1012.9 4 2.7 13 0.3 13 4.1 999.9 56.3* 53.4* 99.99 999.9 110000 724050 13743 19660928 57.1 13 55.2 13 1008.7 4 1007.7 4 1.6 13 0.3 13 1.9 999.9 58.3* 56.3* 99.99 999.9 110000 724050 13743 19660929 60.1 14 56.3 14 1001.1 4 1000.1 4 3.9 14 1.2 14 8.9 999.9 65.3* 57.4* 99.99 999.9 110000 724050 13743 19660930 69.5 14 53.4 14 1006.0 5 1005.0 5 10.9 14 5.4 14 11.1 999.9 78.3* 60.3* 0.00I 999.9 000000 724050 13743 19661003 58.3 13 43.1 13 1022.7 4 1021.7 4 9.4 13 3.5 13 8.9 999.9 66.4* 47.3* 0.00I 999.9 000000 724050 13743 19661004 65.9 13 55.4 13 1014.7 4 1013.7 4 10.9 13 6.1 13 11.1 999.9 76.3* 52.3* 0.00I 999.9 000000 724050 13743 19661005 63.6 13 45.7 13 1010.3 4 1009.3 4 11.9 13 12.1 13 22.0 999.9 67.3* 58.3* 99.99 999.9 010000 724050 13743 19661006 55.5 13 33.9 13 1019.3 4 1018.3 4 14.9 13 14.3 13 22.0 999.9 60.3* 50.4* 0.00I 999.9 000000 724050 13743 19661007 58.4 13 39.5 13 1023.2 4 1022.2 4 12.1 13 4.4 13 11.1 999.9 66.4* 45.3* 0.00I 999.9 000000 724050 13743 19661010 70.2 13 53.2 13 1006.6 4 1005.6 4 10.6 13 9.8 13 15.9 999.9 76.3* 64.4* 99.99 999.9 010000 724050 13743 19661011 63.6 13 35.1 13 1007.7 4 1006.7 4 14.9 13 8.6 13 16.9 999.9 70.3* 53.4* 0.00I 999.9 000000 724050 13743 19661012 64.4 13 31.5 13 1013.3 4 1012.3 4 14.9 13 9.4 13 14.0 999.9 71.2* 57.4* 0.00I 999.9 000000 724050 13743 19661013 60.7 13 45.0 13 1022.6 4 1021.6 4 7.7 13 2.2 13 6.0 999.9 74.3* 48.4* 0.00I 999.9 000000 724050 13743 19661014 64.3 13 54.3 13 1027.2 4 1026.2 4 6.7 13 1.4 13 6.0 999.9 74.3* 52.3* 0.00I 999.9 100000 724050 13743 19661017 52.0 13 36.4 13 1017.8 4 1016.8 4 7.6 13 8.1 13 12.0 999.9 55.4* 47.3* 0.00I 999.9 000000 724050 13743 19661018 49.8 13 38.6 13 1021.5 4 1020.5 4 5.0 13 1.9 13 8.0 999.9 54.3* 42.4* 99.99 999.9 010000 724050 13743 19661019 49.9 13 47.9 13 1007.9 4 1006.9 4 3.6 13 4.3 13 8.9 999.9 51.3* 48.4* 99.99 999.9 110000 724050 13743 19661020 53.1 13 35.4 13 1017.2 4 1016.2 4 14.9 13 15.8 13 22.0 999.9 58.3* 48.4* 0.00I 999.9 000000 724050 13743 19661021 54.0 13 34.0 13 1026.8 4 1025.8 4 10.1 13 1.8 13 8.0 999.9 62.4* 41.4* 0.00I 999.9 000000 724050 13743 19661023 61.2 9 54.2 9 9999.9 0 9999.9 0 3.8 9 2.0 9 5.1 999.9 70.3* 55.4* 0.00I 999.9 100000 724050 13743 19661024 60.2 13 43.0 13 1020.6 4 1019.5 4 7.6 13 5.9 13 9.9 999.9 64.4* 56.3* 0.00I 999.9 000000 724050 13743 19661025 54.6 13 45.8 13 1020.9 4 1019.9 4 5.7 13 4.2 13 8.0 999.9 55.4* 53.4* 99.99 999.9 010000 724050 13743 19661026 59.4 13 34.7 13 1020.7 4 1019.7 4 6.7 13 3.6 13 6.0 999.9 67.3* 51.3* 0.00I 999.9 000000 724050 13743 19661027 55.1 13 38.0 13 1021.0 4 1020.0 4 4.2 13 4.4 13 7.0 999.9 64.4* 42.4* 0.00I 999.9 000000 724050 13743 19661028 57.6 13 40.1 13 1018.0 4 1017.0 4 3.8 13 2.2 13 8.0 999.9 71.2* 42.4* 0.00I 999.9 000000 724050 13743 19661031 51.1 13 35.9 13 1015.8 4 1014.8 4 12.2 13 6.8 13 9.9 999.9 60.3* 37.4* 0.00I 999.9 000000 724050 13743 19661101 61.6 13 50.1 13 1014.7 4 1013.7 4 6.7 13 5.9 13 8.0 999.9 68.4* 52.3* 0.00I 999.9 000000 724050 13743 19661102 64.8 13 61.8 13 1007.5 4 1006.5 4 3.9 13 7.1 13 9.9 999.9 68.4* 60.3* 99.99 999.9 110000 724050 13743 19661103 48.0 13 29.6 13 1005.4 4 1004.4 4 14.9 13 12.6 13 15.9 999.9 50.4* 42.4* 0.00I 999.9 000000 724050 13743 19661104 43.0 13 18.0 13 1026.6 4 1025.6 4 14.9 13 8.5 13 13.0 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19661107 48.3 13 33.8 13 1027.6 4 1026.6 4 5.6 13 2.8 13 8.0 999.9 54.3* 37.4* 0.00I 999.9 000000 724050 13743 19661108 57.0 13 43.9 13 1020.6 4 1019.6 4 6.3 13 7.0 13 9.9 999.9 65.3* 46.4* 0.00I 999.9 000000 724050 13743 19661109 65.6 13 51.5 13 1017.1 4 1016.1 4 7.0 13 7.2 13 9.9 999.9 73.4* 57.4* 0.00I 999.9 000000 724050 13743 19661110 68.1 13 61.1 13 1014.2 4 1013.2 4 7.3 13 8.6 13 9.9 999.9 72.3* 64.4* 99.99 999.9 110000 724050 13743 19661114 46.2 13 24.1 13 1028.1 4 1027.1 4 7.6 13 1.2 13 2.9 999.9 54.3* 36.3* 0.00I 999.9 000000 724050 13743 19661115 46.2 13 27.3 13 1029.9 4 1028.8 4 12.4 13 8.0 13 9.9 999.9 50.4* 41.4* 0.00I 999.9 000000 724050 13743 19661116 48.3 13 29.4 13 1028.8 4 1027.8 4 6.9 13 3.9 13 7.0 999.9 55.4* 37.4* 0.00I 999.9 000000 724050 13743 19661117 57.3 13 35.0 13 1026.4 4 1025.4 4 6.7 13 4.2 13 6.0 999.9 67.3* 47.3* 0.00I 999.9 000000 724050 13743 19661118 59.6 13 44.1 13 1021.0 4 1020.0 4 5.6 13 3.9 13 8.9 999.9 66.4* 52.3* 99.99 999.9 010000 724050 13743 19661121 41.4 13 28.0 13 1034.2 4 1033.2 4 5.8 13 4.6 13 8.0 999.9 46.4* 34.3* 0.00I 999.9 000000 724050 13743 19661122 43.6 13 27.3 13 1033.4 4 1032.4 4 6.3 13 3.6 13 6.0 999.9 52.3* 32.4* 0.00I 999.9 000000 724050 13743 19661123 47.2 13 32.8 13 1029.2 4 1028.2 4 3.5 13 1.4 13 4.1 999.9 55.4* 35.4* 0.00I 999.9 000000 724050 13743 19661128 53.4 13 50.0 13 992.9 4 991.9 4 5.7 13 11.2 13 26.0 999.9 58.3* 39.4* 99.99 999.9 110010 724050 13743 19661129 40.6 13 25.1 13 1001.8 4 1000.8 4 14.1 13 7.4 13 9.9 999.9 43.3* 38.3* 0.00I 999.9 000000 724050 13743 19661130 39.1 13 25.3 13 1009.9 4 1008.9 4 11.6 13 11.9 13 20.0 999.9 42.4* 34.3* 99.99 999.9 001000 724050 13743 19661201 42.9 13 27.7 13 1018.7 4 1017.6 4 11.3 13 4.1 13 8.0 999.9 48.4* 36.3* 0.00I 999.9 000000 724050 13743 19661202 38.1 13 20.5 13 1018.5 4 1017.5 4 14.0 13 12.1 13 15.9 999.9 43.3* 33.4* 0.00I 999.9 000000 724050 13743 19661205 34.0 13 22.6 13 1030.8 4 1029.8 4 6.0 13 1.7 13 4.1 999.9 39.4* 26.4* 0.00I 999.9 000000 724050 13743 19661206 43.2 13 30.8 13 1024.3 4 1023.3 4 4.7 13 0.6 13 1.9 999.9 47.3* 39.4* 0.00I 999.9 000000 724050 13743 19661207 48.8 13 36.6 13 1020.2 4 1019.2 4 4.3 13 1.4 13 4.1 999.9 54.3* 43.3* 0.00I 999.9 000000 724050 13743 19661208 64.2 13 53.8 13 1015.8 4 1014.7 4 9.4 13 6.9 13 8.0 999.9 71.2* 58.3* 0.00I 999.9 000000 724050 13743 19661209 63.8 13 55.6 13 1017.4 4 1016.4 4 11.9 13 8.2 13 9.9 999.9 69.3* 58.3* 0.00I 999.9 000000 724050 13743 19661212 38.4 13 22.9 13 1029.6 4 1028.6 4 14.1 13 9.7 13 14.0 999.9 41.4* 35.4* 0.00I 999.9 000000 724050 13743 19661213 33.4 13 29.5 13 1024.7 4 1023.7 4 3.3 13 9.2 13 11.1 999.9 35.4* 31.3* 99.99 999.9 101000 724050 13743 19661214 37.7 13 31.4 13 1018.2 4 1017.1 4 6.7 13 10.8 13 13.0 999.9 40.3* 35.4* 99.99 999.9 110000 724050 13743 19661215 35.1 13 22.9 13 1027.2 4 1026.2 4 4.6 13 12.4 13 15.0 999.9 38.3* 30.4* 0.00I 999.9 000000 724050 13743 19661216 37.7 13 25.7 13 1027.1 4 1026.1 4 3.4 13 3.5 13 9.9 999.9 45.3* 25.3* 0.00I 999.9 000000 724050 13743 19661219 35.8 13 23.4 13 1014.4 4 1013.4 4 14.0 13 10.6 13 18.1 999.9 39.4* 34.3* 0.00I 999.9 000000 724050 13743 19661220 34.6 13 29.3 13 1006.8 4 1005.8 4 3.2 13 3.5 13 9.9 999.9 36.3* 33.4* 99.99 999.9 111000 724050 13743 19661221 36.8 13 26.9 13 1012.8 4 1011.8 4 7.3 13 9.7 13 14.0 999.9 39.4* 33.4* 0.00I 999.9 000000 724050 13743 19661222 40.8 13 25.9 13 1018.7 4 1017.7 4 4.1 13 0.7 13 2.9 999.9 45.3* 35.4* 0.00I 999.9 000000 724050 13743 19661223 34.9 13 17.5 13 1020.2 4 1019.2 4 10.0 13 8.6 13 12.0 999.9 35.4* 33.4* 0.00I 999.9 000000 724050 13743 19661227 30.0 13 13.3 13 1027.7 4 1026.7 4 12.0 13 5.7 13 12.0 999.9 32.4* 25.3* 0.00I 999.9 000000 724050 13743 19661228 29.2 13 23.3 13 1024.7 4 1023.6 4 2.3 13 3.0 13 6.0 999.9 33.4* 26.4* 99.99 999.9 111000 724050 13743 19661229 36.4 13 26.8 13 1002.2 4 1001.2 4 9.5 13 9.1 13 20.0 999.9 39.4* 34.3* 0.00I 999.9 100000 724050 13743 19661230 33.7 13 15.9 13 1020.2 4 1019.2 4 13.2 13 6.7 13 12.0 999.9 37.4* 26.4* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1936/0000755000175000017500000000000014302004506015102 5ustar nileshnileshfluids-1.0.22/tests/gsod/1936/724050-13743.op0000644000175000017500000004131114302004506016662 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19360901 76.1 11 54.1 11 9999.9 0 9999.9 0 6.1 11 5.3 11 9.9 999.9 85.3* 60.3* 0.00I 999.9 000000 724050 13743 19360902 72.3 11 61.0 11 9999.9 0 9999.9 0 5.2 11 5.1 11 7.0 999.9 77.4* 66.4* 99.99 999.9 010000 724050 13743 19360903 73.9 11 65.1 11 9999.9 0 9999.9 0 5.8 11 3.1 11 5.1 999.9 77.4* 66.4* 0.00I 999.9 000000 724050 13743 19360904 75.1 11 56.4 11 9999.9 0 9999.9 0 6.4 11 6.3 11 9.9 999.9 82.4* 61.3* 0.00I 999.9 100000 724050 13743 19360905 74.0 11 54.8 11 9999.9 0 9999.9 0 5.8 11 4.1 11 8.9 999.9 80.2* 56.3* 0.00I 999.9 000000 724050 13743 19360906 73.0 11 56.8 11 9999.9 0 9999.9 0 7.6 11 4.6 11 8.0 999.9 78.3* 59.4* 0.00I 999.9 000000 724050 13743 19360907 76.7 11 61.6 11 9999.9 0 9999.9 0 11.8 11 5.9 11 8.9 999.9 86.4* 62.4* 0.00I 999.9 000000 724050 13743 19360908 82.8 11 65.2 11 9999.9 0 9999.9 0 9.5 11 4.9 11 8.9 999.9 91.2* 69.3* 0.00I 999.9 000000 724050 13743 19360909 85.9 11 62.0 11 9999.9 0 9999.9 0 8.1 11 3.2 11 6.0 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19360910 78.1 11 67.2 11 9999.9 0 9999.9 0 3.2 11 3.3 11 5.1 999.9 82.4* 71.2* 0.00I 999.9 100000 724050 13743 19360911 80.7 11 70.6 11 9999.9 0 9999.9 0 5.4 11 3.3 11 5.1 999.9 87.3* 71.2* 0.00I 999.9 100000 724050 13743 19360912 84.6 11 71.1 11 9999.9 0 9999.9 0 8.6 11 6.9 11 9.9 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19360913 84.6 11 68.3 11 9999.9 0 9999.9 0 6.1 11 6.1 11 8.9 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19360914 75.6 11 61.1 11 9999.9 0 9999.9 0 8.7 11 6.6 11 9.9 999.9 80.2* 68.4* 0.00I 999.9 000000 724050 13743 19360915 75.8 11 64.3 11 9999.9 0 9999.9 0 8.5 11 4.4 11 7.0 999.9 81.3* 65.3* 0.00I 999.9 000000 724050 13743 19360916 79.6 11 64.2 11 9999.9 0 9999.9 0 12.0 11 6.4 11 8.9 999.9 86.4* 67.3* 0.00I 999.9 000000 724050 13743 19360917 76.6 11 64.3 11 9999.9 0 9999.9 0 5.2 11 7.4 11 15.9 999.9 85.3* 64.4* 0.00I 999.9 000000 724050 13743 19360918 68.5 11 57.8 11 9999.9 0 9999.9 0 7.2 11 19.7 11 26.0 999.9 69.3* 68.4* 0.00I 999.9 000000 724050 13743 19360919 75.0 11 54.4 11 9999.9 0 9999.9 0 14.0 11 6.9 11 8.9 999.9 83.3* 64.4* 0.00I 999.9 000000 724050 13743 19360920 69.3 10 64.0 10 9999.9 0 9999.9 0 5.8 10 2.2 10 5.1 999.9 71.2* 62.4* 99.99 999.9 110000 724050 13743 19360921 77.1 11 63.2 11 9999.9 0 9999.9 0 3.6 11 3.4 11 8.9 999.9 86.4* 65.3* 0.00I 999.9 100000 724050 13743 19360922 81.8 11 65.9 11 9999.9 0 9999.9 0 4.9 11 2.9 11 4.1 999.9 93.4* 67.3* 0.00I 999.9 100000 724050 13743 19360923 80.3 10 67.0 10 9999.9 0 9999.9 0 5.8 10 5.8 10 8.9 999.9 90.3* 66.4* 99.99 999.9 110000 724050 13743 19360924 75.2 11 65.3 11 9999.9 0 9999.9 0 6.4 11 7.4 11 9.9 999.9 81.3* 69.3* 99.99 999.9 010000 724050 13743 19360925 61.1 11 39.1 11 9999.9 0 9999.9 0 14.9 11 9.9 11 16.9 999.9 70.3* 51.3* 0.00I 999.9 000000 724050 13743 19360926 65.0 11 48.1 11 9999.9 0 9999.9 0 9.0 11 6.0 10 9.9 999.9 74.3* 45.3* 0.00I 999.9 000000 724050 13743 19360927 69.7 11 63.0 11 9999.9 0 9999.9 0 5.9 11 5.1 11 9.9 999.9 77.4* 56.3* 0.00I 999.9 100000 724050 13743 19360928 74.6 11 60.7 11 9999.9 0 9999.9 0 10.5 11 8.7 11 14.0 999.9 78.3* 68.4* 0.00I 999.9 000000 724050 13743 19360929 57.7 11 49.0 11 9999.9 0 9999.9 0 5.9 11 8.3 11 9.9 999.9 60.3* 55.4* 99.99 999.9 110000 724050 13743 19360930 53.8 11 52.3 10 9999.9 0 9999.9 0 1.5 11 7.3 11 9.9 999.9 58.3* 51.3* 99.99 999.9 110000 724050 13743 19361001 65.9 11 55.4 11 9999.9 0 9999.9 0 9.5 11 7.8 11 13.0 999.9 72.3* 56.3* 0.00I 999.9 000000 724050 13743 19361002 66.6 11 50.3 11 9999.9 0 9999.9 0 7.3 11 4.0 9 7.0 999.9 74.3* 52.3* 0.00I 999.9 100000 724050 13743 19361003 64.8 11 50.2 11 9999.9 0 9999.9 0 4.7 11 5.7 11 8.9 999.9 70.3* 54.3* 0.00I 999.9 100000 724050 13743 19361004 61.6 10 48.6 10 9999.9 0 9999.9 0 5.0 10 3.6 10 5.1 999.9 70.3* 44.4* 0.00I 999.9 100000 724050 13743 19361005 64.1 11 52.6 11 9999.9 0 9999.9 0 5.0 11 2.8 11 6.0 999.9 73.4* 47.3* 99.99 999.9 010000 724050 13743 19361006 67.8 11 60.1 11 9999.9 0 9999.9 0 5.1 11 4.8 11 7.0 999.9 76.3* 56.3* 0.00I 999.9 100000 724050 13743 19361007 72.1 10 62.1 10 9999.9 0 9999.9 0 7.1 10 6.5 10 9.9 999.9 80.2* 65.3* 0.00I 999.9 000000 724050 13743 19361008 77.0 11 68.1 11 9999.9 0 9999.9 0 14.5 11 3.6 11 7.0 999.9 84.4* 66.4* 99.99 999.9 110000 724050 13743 19361009 69.9 11 68.5 11 9999.9 0 9999.9 0 0.9 11 4.4 11 8.9 999.9 71.2* 67.3* 99.99 999.9 110000 724050 13743 19361010 75.6 11 69.5 11 9999.9 0 9999.9 0 8.0 11 11.1 11 16.9 999.9 79.3* 71.2* 99.99 999.9 111000 724050 13743 19361011 66.1 11 53.3 11 9999.9 0 9999.9 0 8.3 11 8.1 11 13.0 999.9 69.3* 61.3* 0.00I 999.9 000000 724050 13743 19361012 66.4 11 43.5 11 9999.9 0 9999.9 0 12.2 11 12.1 11 16.9 999.9 74.3* 52.3* 0.00I 999.9 000000 724050 13743 19361013 59.4 11 43.9 11 9999.9 0 9999.9 0 7.3 11 5.7 11 7.0 999.9 67.3* 45.3* 0.00I 999.9 000000 724050 13743 19361014 67.8 11 59.0 11 9999.9 0 9999.9 0 5.0 11 2.5 11 4.1 999.9 72.3* 61.3* 0.00I 999.9 100000 724050 13743 19361015 70.0 11 63.5 11 9999.9 0 9999.9 0 6.0 11 4.6 11 8.9 999.9 75.4* 62.4* 99.99 999.9 110000 724050 13743 19361016 67.9 11 64.4 11 9999.9 0 9999.9 0 3.1 11 3.3 11 6.0 999.9 71.2* 63.3* 99.99 999.9 110000 724050 13743 19361017 69.7 11 59.1 11 9999.9 0 9999.9 0 9.9 11 11.5 11 22.0 999.9 76.3* 62.4* 99.99 999.9 110000 724050 13743 19361018 55.0 11 34.6 11 9999.9 0 9999.9 0 14.2 11 14.4 11 16.9 999.9 58.3* 52.3* 0.00I 999.9 000000 724050 13743 19361019 62.3 11 46.1 11 9999.9 0 9999.9 0 6.8 11 4.9 11 8.9 999.9 71.2* 46.4* 0.00I 999.9 000000 724050 13743 19361020 69.3 11 53.5 11 9999.9 0 9999.9 0 8.0 11 6.2 11 9.9 999.9 78.3* 54.3* 0.00I 999.9 000000 724050 13743 19361021 69.3 10 57.0 10 9999.9 0 9999.9 0 7.9 10 8.2 10 13.0 999.9 77.4* 55.4* 0.00I 999.9 000000 724050 13743 19361022 73.3 11 60.7 11 9999.9 0 9999.9 0 8.1 11 5.9 11 8.9 999.9 80.2* 59.4* 0.00I 999.9 100000 724050 13743 19361023 63.0 11 55.8 11 9999.9 0 9999.9 0 4.5 11 8.2 11 18.1 999.9 65.3* 58.3* 0.00I 999.9 100000 724050 13743 19361024 60.6 11 46.5 11 9999.9 0 9999.9 0 9.7 11 9.4 11 14.0 999.9 65.3* 54.3* 0.00I 999.9 000000 724050 13743 19361025 58.0 11 42.9 11 9999.9 0 9999.9 0 5.8 11 4.6 11 7.0 999.9 65.3* 41.4* 0.00I 999.9 100000 724050 13743 19361026 61.3 11 55.0 11 9999.9 0 9999.9 0 6.8 11 10.1 11 16.9 999.9 64.4* 56.3* 99.99 999.9 011000 724050 13743 19361027 40.2 11 23.0 11 9999.9 0 9999.9 0 12.1 11 5.9 11 9.9 999.9 47.3* 32.4* 0.00I 999.9 000000 724050 13743 19361028 44.6 11 29.6 11 9999.9 0 9999.9 0 4.6 11 3.6 11 7.0 999.9 53.4* 26.4* 0.00I 999.9 100000 724050 13743 19361029 54.0 11 35.3 10 9999.9 0 9999.9 0 6.7 11 6.5 11 13.0 999.9 63.3* 37.4* 0.00I 999.9 100000 724050 13743 19361030 51.2 10 31.2 10 9999.9 0 9999.9 0 8.7 10 22.2 10 29.9 999.9 54.3* 44.4* 0.00I 999.9 000000 724050 13743 19361031 49.5 11 31.4 11 9999.9 0 9999.9 0 7.4 11 4.1 11 8.9 999.9 58.3* 34.3* 0.00I 999.9 000000 724050 13743 19361101 54.8 10 42.0 10 9999.9 0 9999.9 0 7.8 10 6.7 10 8.9 999.9 57.4* 50.4* 99.99 999.9 010000 724050 13743 19361102 69.2 11 57.1 11 9999.9 0 9999.9 0 7.0 11 7.7 11 9.9 999.9 75.4* 58.3* 0.00I 999.9 000000 724050 13743 19361103 72.2 11 60.9 11 9999.9 0 9999.9 0 8.9 11 11.8 11 15.9 999.9 78.3* 61.3* 0.00I 999.9 000000 724050 13743 19361104 74.1 10 63.4 10 9999.9 0 9999.9 0 7.7 10 9.5 10 15.9 999.9 80.2* 65.3* 0.00I 999.9 000000 724050 13743 19361105 47.9 11 35.1 11 9999.9 0 9999.9 0 13.2 11 11.7 11 15.0 999.9 52.3* 43.3* 0.00I 999.9 000000 724050 13743 19361106 49.3 11 38.4 11 9999.9 0 9999.9 0 6.2 11 6.0 11 8.9 999.9 54.3* 41.4* 0.00I 999.9 000000 724050 13743 19361107 54.2 11 45.3 11 9999.9 0 9999.9 0 2.9 11 2.0 11 2.9 999.9 57.4* 47.3* 0.00I 999.9 000000 724050 13743 19361108 55.5 10 54.8 10 9999.9 0 9999.9 0 1.1 10 3.2 10 5.1 999.9 57.4* 52.3* 99.99 999.9 110000 724050 13743 19361109 52.0 11 36.1 11 9999.9 0 9999.9 0 4.4 11 2.9 11 7.0 999.9 56.3* 45.3* 0.00I 999.9 000000 724050 13743 19361110 50.3 11 33.6 11 9999.9 0 9999.9 0 10.0 11 13.1 11 18.1 999.9 53.4* 45.3* 0.00I 999.9 000000 724050 13743 19361111 43.6 10 28.7 10 9999.9 0 9999.9 0 6.2 10 4.1 10 8.9 999.9 53.4* 28.4* 0.00I 999.9 100000 724050 13743 19361112 47.8 11 40.8 11 9999.9 0 9999.9 0 2.8 11 1.3 11 4.1 999.9 51.3* 42.4* 99.99 999.9 011000 724050 13743 19361113 50.4 10 38.9 10 9999.9 0 9999.9 0 4.9 10 9.6 10 16.9 999.9 56.3* 41.4* 0.00I 999.9 000000 724050 13743 19361114 51.3 11 38.3 11 9999.9 0 9999.9 0 4.3 11 7.3 11 13.0 999.9 64.4* 31.3* 0.00I 999.9 100000 724050 13743 19361115 45.3 11 30.1 11 9999.9 0 9999.9 0 9.7 11 18.7 11 35.0 999.9 52.3* 37.4* 0.00I 999.9 000000 724050 13743 19361116 40.4 10 18.6 10 9999.9 0 9999.9 0 11.9 10 19.5 10 26.0 999.9 44.4* 35.4* 0.00I 999.9 000000 724050 13743 19361117 48.2 11 23.2 11 9999.9 0 9999.9 0 7.4 11 9.1 11 16.9 999.9 59.4* 32.4* 0.00I 999.9 000000 724050 13743 19361118 48.3 11 28.8 11 9999.9 0 9999.9 0 9.7 11 14.7 11 22.0 999.9 52.3* 41.4* 0.00I 999.9 000000 724050 13743 19361119 30.4 11 11.3 10 9999.9 0 9999.9 0 6.8 11 4.0 11 7.0 999.9 37.4* 19.4* 0.00I 999.9 000000 724050 13743 19361120 45.9 11 24.8 11 9999.9 0 9999.9 0 4.6 11 7.2 11 9.9 999.9 57.4* 32.4* 0.00I 999.9 000000 724050 13743 19361121 55.4 11 38.2 11 9999.9 0 9999.9 0 4.5 11 5.7 11 12.0 999.9 62.4* 40.3* 0.00I 999.9 000000 724050 13743 19361122 42.8 12 22.8 12 9999.9 0 9999.9 0 9.7 12 12.1 12 19.0 999.9 46.4* 40.3* 0.00I 999.9 000000 724050 13743 19361123 43.3 11 24.5 11 9999.9 0 9999.9 0 5.3 11 4.3 11 7.0 999.9 47.3* 36.3* 0.00I 999.9 000000 724050 13743 19361124 45.5 11 30.0 11 9999.9 0 9999.9 0 5.4 11 8.6 11 19.0 999.9 49.3* 39.4* 0.00I 999.9 000000 724050 13743 19361125 43.5 11 35.7 11 9999.9 0 9999.9 0 1.7 11 4.0 11 8.9 999.9 53.4* 29.3* 0.00I 999.9 100000 724050 13743 19361126 34.4 11 14.9 11 9999.9 0 9999.9 0 10.1 11 12.3 11 21.0 999.9 37.4* 31.3* 0.00I 999.9 000000 724050 13743 19361127 29.3 11 12.7 11 9999.9 0 9999.9 0 6.8 11 10.3 11 15.0 999.9 32.4* 22.5* 0.00I 999.9 000000 724050 13743 19361128 34.6 11 15.6 11 9999.9 0 9999.9 0 7.3 11 12.3 11 16.9 999.9 42.4* 23.4* 0.00I 999.9 000000 724050 13743 19361129 44.2 11 23.5 11 9999.9 0 9999.9 0 7.0 11 9.6 11 13.0 999.9 47.3* 35.4* 0.00I 999.9 000000 724050 13743 19361130 32.9 11 18.8 11 9999.9 0 9999.9 0 7.1 11 6.8 11 13.0 999.9 37.4* 23.4* 0.00I 999.9 000000 724050 13743 19361201 27.6 11 10.2 10 9999.9 0 9999.9 0 6.8 11 6.6 11 9.9 999.9 37.4* 16.3* 0.00I 999.9 000000 724050 13743 19361202 36.7 11 35.7 11 9999.9 0 9999.9 0 0.9 11 5.6 11 9.9 999.9 38.3* 34.3* 99.99 999.9 110000 724050 13743 19361203 41.4 11 34.7 11 9999.9 0 9999.9 0 3.5 11 4.5 11 5.1 999.9 44.4* 37.4* 0.00I 999.9 100000 724050 13743 19361204 43.9 11 32.4 11 9999.9 0 9999.9 0 4.1 11 6.6 11 13.0 999.9 53.4* 32.4* 0.00I 999.9 100000 724050 13743 19361205 37.3 11 23.9 11 9999.9 0 9999.9 0 6.6 11 7.7 11 13.0 999.9 41.4* 33.4* 0.00I 999.9 000000 724050 13743 19361206 35.0 11 32.4 11 9999.9 0 9999.9 0 1.7 11 1.7 11 4.1 999.9 36.3* 33.4* 99.99 999.9 110000 724050 13743 19361207 38.7 11 26.4 11 9999.9 0 9999.9 0 7.0 11 12.3 11 15.9 999.9 45.3* 32.4* 0.00I 999.9 000000 724050 13743 19361208 31.4 11 17.2 11 9999.9 0 9999.9 0 7.6 11 7.4 11 9.9 999.9 38.3* 23.4* 0.00I 999.9 000000 724050 13743 19361209 38.3 11 30.7 11 9999.9 0 9999.9 0 1.9 11 8.2 11 12.0 999.9 41.4* 34.3* 99.99 999.9 010000 724050 13743 19361210 42.3 11 41.2 11 9999.9 0 9999.9 0 1.2 11 5.0 11 7.0 999.9 47.3* 37.4* 99.99 999.9 110000 724050 13743 19361211 44.7 10 43.8 10 9999.9 0 9999.9 0 0.6 10 2.8 10 5.1 999.9 46.4* 42.4* 99.99 999.9 110000 724050 13743 19361212 41.0 11 35.8 11 9999.9 0 9999.9 0 3.8 11 11.4 11 13.0 999.9 43.3* 39.4* 99.99 999.9 110000 724050 13743 19361213 38.5 11 26.9 11 9999.9 0 9999.9 0 7.4 11 9.1 11 13.0 999.9 44.4* 32.4* 0.00I 999.9 000000 724050 13743 19361214 40.1 11 26.2 11 9999.9 0 9999.9 0 2.4 11 3.5 11 6.0 999.9 49.3* 28.4* 0.00I 999.9 000000 724050 13743 19361215 44.1 11 30.1 11 9999.9 0 9999.9 0 4.3 11 5.2 11 8.9 999.9 52.3* 29.3* 0.00I 999.9 000000 724050 13743 19361216 38.0 10 33.7 10 9999.9 0 9999.9 0 0.6 10 5.1 10 8.0 999.9 42.4* 29.3* 99.99 999.9 110000 724050 13743 19361217 48.9 10 39.5 10 9999.9 0 9999.9 0 5.3 10 9.1 10 15.9 999.9 53.4* 42.4* 0.00I 999.9 000000 724050 13743 19361218 36.0 11 22.6 11 9999.9 0 9999.9 0 8.0 11 7.9 11 13.0 999.9 39.4* 32.4* 0.00I 999.9 000000 724050 13743 19361219 33.3 11 30.6 11 9999.9 0 9999.9 0 1.1 11 6.8 11 9.9 999.9 38.3* 28.4* 99.99 999.9 111000 724050 13743 19361220 40.7 11 28.2 11 9999.9 0 9999.9 0 8.2 11 14.0 11 23.9 999.9 43.3* 37.4* 0.00I 999.9 000000 724050 13743 19361221 39.6 11 23.4 11 9999.9 0 9999.9 0 16.7 11 8.3 11 12.0 999.9 44.4* 32.4* 0.00I 999.9 000000 724050 13743 19361222 35.8 11 17.9 11 9999.9 0 9999.9 0 7.6 11 9.9 11 13.0 999.9 39.4* 32.4* 0.00I 999.9 000000 724050 13743 19361223 31.7 10 19.1 10 9999.9 0 9999.9 0 4.8 10 4.2 10 7.0 999.9 39.4* 21.4* 0.00I 999.9 000000 724050 13743 19361224 37.8 11 24.8 11 9999.9 0 9999.9 0 2.9 11 4.2 11 8.0 999.9 51.3* 22.5* 0.00I 999.9 000000 724050 13743 19361225 43.0 11 28.6 11 9999.9 0 9999.9 0 3.0 11 4.3 11 7.0 999.9 57.4* 26.4* 0.00I 999.9 100000 724050 13743 19361226 48.1 11 33.6 11 9999.9 0 9999.9 0 3.7 11 3.5 11 5.1 999.9 63.3* 30.4* 0.00I 999.9 000000 724050 13743 19361227 56.5 11 44.9 11 9999.9 0 9999.9 0 7.9 11 9.8 11 13.0 999.9 64.4* 40.3* 0.00I 999.9 000000 724050 13743 19361228 56.4 11 46.3 11 9999.9 0 9999.9 0 6.8 11 6.7 11 9.9 999.9 62.4* 50.4* 0.00I 999.9 100000 724050 13743 19361229 41.4 11 28.9 11 9999.9 0 9999.9 0 6.2 11 6.1 11 8.9 999.9 45.3* 30.4* 0.00I 999.9 000000 724050 13743 19361230 43.7 11 42.0 10 9999.9 0 9999.9 0 1.1 11 2.3 11 5.1 999.9 46.4* 40.3* 99.99 999.9 110000 724050 13743 19361231 56.9 11 54.7 11 9999.9 0 9999.9 0 2.7 11 7.4 11 11.1 999.9 60.3* 51.3* 99.99 999.9 110000 fluids-1.0.22/tests/gsod/1982/0000755000175000017500000000000014302004506015103 5ustar nileshnileshfluids-1.0.22/tests/gsod/1982/724050-13743.op0000644000175000017500000014327214302004506016674 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19820101 44.0 23 37.5 23 1012.5 23 1010.0 23 9.3 23 13.9 23 19.8 31.9 50.0* 21.0 0.05G 999.9 110000 724050 13743 19820102 37.1 24 18.0 24 1026.8 24 1024.4 24 16.8 24 10.4 23 19.8 25.8 50.0 30.0 0.00G 999.9 000000 724050 13743 19820103 33.6 24 22.4 24 1028.0 24 1025.6 24 9.7 24 5.1 24 8.0 999.9 45.0 28.9 0.00G 999.9 111000 724050 13743 19820104 42.8 24 39.6 24 1010.0 24 1007.6 24 5.4 24 10.3 24 22.0 30.9 51.1* 25.0 0.81G 999.9 110010 724050 13743 19820105 43.0 22 23.0 22 1013.0 22 1010.6 22 16.8 22 13.9 22 21.0 31.9 51.1 36.0 0.71G 999.9 000000 724050 13743 19820106 41.8 20 25.2 20 1017.9 20 1015.5 20 12.4 20 9.4 20 15.9 18.8 48.9 36.0 0.00G 999.9 000000 724050 13743 19820107 48.6 22 32.4 22 1012.9 22 1010.5 22 12.7 22 10.1 22 15.9 24.9 54.0 36.0 0.00G 999.9 011000 724050 13743 19820108 33.2 22 15.4 22 1022.4 22 1020.0 22 14.8 22 11.2 22 16.9 25.8 54.0 26.1 0.00G 999.9 010000 724050 13743 19820109 32.8 20 15.0 20 1008.4 20 1006.0 20 13.9 20 11.6 20 24.9 37.9 37.0 24.3* 0.00D 999.9 001000 724050 13743 19820110 11.5 21 -10.0 21 1011.7 21 1009.3 21 18.2 21 17.9 21 28.0 39.8 37.9 5.0 0.00G 999.9 001000 724050 13743 19820111 9.2 24 -13.3 24 1014.1 24 1011.5 24 18.3 23 14.2 24 17.9 28.9 19.2* 1.9 0.00G 999.9 001000 724050 13743 19820112 18.9 23 -1.8 23 1023.7 23 1021.2 23 15.0 23 9.5 23 19.8 29.9 27.1* 1.9 0.00G 999.9 000000 724050 13743 19820113 23.4 22 17.5 22 1021.8 22 1019.4 22 6.3 22 7.1 22 12.8 999.9 27.0 12.0 0.01G 2.8 101000 724050 13743 19820114 25.5 23 22.3 23 1006.2 23 1003.8 23 4.6 23 9.8 23 17.9 999.9 30.2* 21.0 0.34G 5.9 101000 724050 13743 19820115 24.2 24 11.9 24 1008.8 24 1006.4 24 8.6 24 12.1 24 18.8 25.8 30.0 16.0 0.11G 5.9 101000 724050 13743 19820116 26.7 24 22.2 24 1013.6 24 1011.2 24 4.3 24 8.4 24 18.8 25.8 39.0* 16.0 0.02G 5.5 111000 724050 13743 19820117 7.2 24 -15.6 24 1024.1 24 1021.7 24 17.8 24 15.3 24 31.9 43.9 34.0* -5.1 0.00G 3.1 001000 724050 13743 19820118 13.6 24 -2.7 24 1026.8 24 1024.4 24 10.0 24 4.7 24 9.9 999.9 25.2* -5.1 0.00G 3.1 001000 724050 13743 19820119 20.3 24 13.2 24 1026.2 24 1023.8 24 7.9 24 7.0 24 11.8 999.9 25.0 7.0 0.00G 3.1 111000 724050 13743 19820120 28.0 24 24.7 24 1024.1 24 1021.7 24 4.3 24 5.3 24 8.9 999.9 42.1* 18.0 0.00G 3.1 111000 724050 13743 19820121 30.1 22 26.6 22 1025.6 22 1023.2 22 4.8 22 7.2 22 11.8 999.9 43.0 19.9 0.02G 5.9 111000 724050 13743 19820122 25.1 22 18.7 22 1035.4 22 1032.9 22 6.6 22 8.2 22 11.8 999.9 35.1 22.1* 0.25G 6.3 110000 724050 13743 19820123 23.0 23 20.2 23 1022.3 23 1020.0 23 3.1 23 7.1 23 12.8 999.9 31.1* 17.1 0.48G 9.8 111000 724050 13743 19820124 30.4 22 22.2 22 1003.6 22 1001.3 22 10.8 22 10.6 22 22.0 36.9 34.0 17.1 0.09G 7.1 100000 724050 13743 19820125 20.4 20 7.4 20 1016.6 20 1014.2 20 11.6 20 5.1 20 11.8 18.8 34.0 10.9 0.00G 7.1 000000 724050 13743 19820126 20.1 23 11.8 23 1020.5 23 1018.1 23 11.7 23 12.5 23 19.8 28.0 26.2* 10.9 0.01G 7.5 101000 724050 13743 19820127 18.5 22 5.8 22 1030.6 22 1028.2 22 13.0 22 7.9 22 15.0 21.0 30.2* 10.0 0.00D 7.5 000000 724050 13743 19820128 29.8 23 15.2 23 1023.4 23 1020.9 23 11.5 23 10.3 23 14.0 999.9 43.0* 10.0 0.00C 6.3 000000 724050 13743 19820129 38.4 23 17.9 23 1028.4 23 1026.0 23 16.6 23 6.8 23 11.8 999.9 43.0 21.0 0.00G 5.9 000000 724050 13743 19820130 35.2 24 22.0 24 1027.8 24 1025.4 24 12.4 23 8.1 24 17.9 22.9 48.9* 24.1 0.00G 5.1 100000 724050 13743 19820131 48.3 24 41.7 24 1017.1 24 1014.7 24 8.2 24 9.8 24 16.9 26.8 59.0* 43.0* 0.01G 2.4 110000 724050 13743 19820201 49.5 24 37.4 24 1017.1 24 1014.7 24 16.1 24 15.9 24 19.8 38.9 61.0 37.9 0.05G 999.9 010000 724050 13743 19820202 33.7 24 22.9 24 1035.7 24 1033.3 24 16.0 24 7.5 24 10.9 999.9 37.0* 28.0 0.00G 999.9 010000 724050 13743 19820203 37.4 24 36.5 24 1021.4 24 1018.9 24 3.1 24 7.1 24 15.0 999.9 41.0* 28.0 1.11G 999.9 110000 724050 13743 19820204 45.1 23 40.1 23 1021.2 23 1018.8 23 8.8 23 9.2 23 15.0 23.9 48.9 33.1 0.02G 999.9 110000 724050 13743 19820205 37.2 23 26.9 23 1031.3 23 1028.9 23 8.9 23 5.5 23 10.9 999.9 50.0 33.1 0.00G 999.9 000000 724050 13743 19820206 39.1 24 30.0 24 1021.6 24 1019.2 24 7.8 24 9.5 24 19.8 26.8 43.0* 33.1 0.00G 999.9 110000 724050 13743 19820207 30.1 23 11.3 23 1028.8 23 1026.4 23 16.9 23 9.4 23 19.8 28.0 43.0 19.9 0.00G 999.9 000000 724050 13743 19820208 36.0 24 15.2 24 1026.7 24 1024.3 24 13.0 24 5.8 24 10.9 999.9 50.0* 19.9 0.00G 999.9 000000 724050 13743 19820209 39.6 22 29.6 22 1016.0 22 1013.6 22 9.0 22 5.8 22 8.9 999.9 50.0 21.9 0.54G 999.9 111000 724050 13743 19820210 33.0 24 19.1 24 1018.6 24 1016.3 24 17.9 24 10.9 24 18.8 29.9 42.1 25.0 0.02G 999.9 011000 724050 13743 19820211 33.7 24 17.0 24 1027.1 24 1024.7 24 14.9 24 5.1 24 8.9 999.9 43.0* 25.0 0.00G 999.9 000000 724050 13743 19820212 35.4 24 19.3 24 1029.9 24 1027.5 24 14.0 24 5.3 24 10.9 999.9 43.0 25.0 0.00G 999.9 000000 724050 13743 19820213 34.3 23 24.6 23 1021.9 23 1019.5 23 7.0 23 9.2 22 19.8 28.0 43.0 25.0 0.03G 1.2 101000 724050 13743 19820214 35.6 22 20.0 22 1024.8 22 1022.4 22 12.0 22 6.1 21 11.8 999.9 48.9* 24.1 0.07G 999.9 000000 724050 13743 19820215 44.5 24 34.9 24 1023.9 24 1021.5 24 8.9 24 7.2 24 12.8 17.9 68.0* 24.1 0.00G 999.9 100000 724050 13743 19820216 56.0 23 51.5 23 1017.1 23 1014.7 23 6.6 23 7.7 23 11.8 999.9 68.0 50.0* 0.08G 999.9 110000 724050 13743 19820217 42.5 23 39.0 23 1015.8 23 1013.4 23 4.4 23 14.5 23 19.8 28.0 64.9 32.0* 0.12G 999.9 111000 724050 13743 19820218 31.8 23 28.6 22 1022.8 23 1020.4 23 4.8 23 12.0 23 15.9 22.0 46.9 28.9 2.01G 0.8 111000 724050 13743 19820219 37.4 21 34.4 21 1018.5 21 1016.1 21 5.5 21 5.8 20 15.0 23.9 46.0* 28.9 0.36G 999.9 110000 724050 13743 19820220 44.3 20 32.0 20 1012.2 20 1009.8 20 14.8 20 11.9 19 999.9 999.9 52.0* 34.0 0.35G 999.9 000000 724050 13743 19820221 44.0 23 35.9 23 1002.6 23 1000.2 23 10.5 23 8.3 23 15.5 22.0 52.0 37.9 0.00G 999.9 110000 724050 13743 19820222 42.4 24 30.0 24 1009.7 24 1007.3 24 15.4 24 15.6 24 23.9 31.9 48.0 37.9 0.00D 999.9 010000 724050 13743 19820223 43.0 24 29.6 24 1017.4 24 1015.0 24 15.8 24 7.8 24 15.0 19.8 55.0* 27.0 0.00G 999.9 000000 724050 13743 19820224 45.5 22 32.8 22 1014.3 22 1011.9 22 11.4 22 7.7 22 14.0 999.9 55.0 30.9 0.00G 999.9 000000 724050 13743 19820225 35.9 23 18.9 23 1024.6 23 1022.2 23 16.2 23 14.4 23 24.9 30.9 48.0 27.0 0.00G 999.9 000000 724050 13743 19820226 30.9 24 2.5 24 1038.4 24 1035.9 24 19.9 24 8.0 24 10.9 999.9 39.0 21.9 0.00G 999.9 000000 724050 13743 19820227 33.7 24 15.5 24 1034.6 24 1032.2 24 15.3 24 5.5 24 9.9 999.9 37.9 21.9 0.00G 999.9 101000 724050 13743 19820228 37.2 24 23.8 24 1029.6 24 1027.2 24 10.7 24 6.6 24 10.9 999.9 48.0* 30.0 0.07G 3.1 101000 724050 13743 19820301 39.0 23 25.8 23 1027.9 23 1025.5 23 12.4 23 5.7 23 10.9 999.9 51.1* 28.9 0.00G 999.9 000000 724050 13743 19820302 44.2 24 30.1 24 1014.7 24 1012.2 24 13.0 24 8.1 24 15.9 999.9 55.9* 28.9 0.00D 999.9 000000 724050 13743 19820303 38.6 23 24.4 23 1017.2 23 1014.8 23 12.5 23 10.8 23 15.9 999.9 55.9 30.9 0.00G 999.9 011000 724050 13743 19820304 36.6 23 24.1 23 1021.8 23 1019.4 23 12.3 22 7.1 23 10.9 999.9 42.1 32.9 0.00G 999.9 111000 724050 13743 19820305 46.2 20 35.6 20 1013.0 20 1010.6 20 8.6 20 9.6 20 17.9 21.0 57.9* 33.1 0.01G 999.9 110000 724050 13743 19820306 39.4 23 28.1 23 1020.7 23 1018.4 23 11.3 23 10.9 23 15.0 999.9 57.9 36.0 0.04G 999.9 010000 724050 13743 19820307 36.5 24 34.4 24 1009.6 24 1007.3 24 4.0 24 7.6 24 17.9 26.8 39.9 34.0 0.51G 999.9 111000 724050 13743 19820308 33.8 23 21.6 23 1022.7 23 1020.3 23 12.6 23 13.4 23 22.0 30.9 41.0* 26.1 0.20G 999.9 111000 724050 13743 19820309 40.7 24 24.9 24 1028.8 24 1026.4 24 13.6 24 13.0 24 21.0 30.9 55.0* 26.1 0.00G 999.9 000000 724050 13743 19820310 37.9 23 20.5 23 1032.6 23 1030.2 23 16.1 23 7.1 23 14.0 18.8 55.9 29.8 0.00G 999.9 000000 724050 13743 19820311 48.3 24 40.5 24 1022.4 24 1020.1 24 6.8 24 6.7 24 15.9 22.0 68.0* 30.0 0.00G 999.9 110000 724050 13743 19820312 58.7 22 48.5 22 1016.3 22 1013.8 22 9.0 22 7.5 22 22.0 28.9 69.1* 39.0 0.32G 999.9 110000 724050 13743 19820313 56.5 23 48.6 23 1013.7 23 1011.3 23 12.4 23 6.6 23 19.8 25.8 70.0 46.0 0.05G 999.9 110000 724050 13743 19820314 57.4 24 24.7 24 1017.4 24 1014.9 24 18.8 24 11.2 24 17.9 26.8 68.0 46.9 0.07G 999.9 000000 724050 13743 19820315 47.8 21 26.3 20 1024.3 21 1021.9 21 16.1 20 8.7 21 11.8 18.8 63.0 39.9 0.00G 999.9 110000 724050 13743 19820316 41.3 23 35.5 23 1023.7 23 1021.3 23 11.6 23 6.8 23 12.8 999.9 54.0 37.9 0.11G 999.9 110010 724050 13743 19820317 45.6 24 43.0 24 1011.6 24 1009.2 24 4.6 24 6.7 24 15.0 999.9 59.0* 37.9 0.50G 999.9 110000 724050 13743 19820318 47.6 23 38.9 23 1022.4 23 1020.0 23 10.2 23 8.0 23 16.9 999.9 59.0 39.9 0.01G 999.9 000000 724050 13743 19820319 50.4 24 40.5 24 1017.6 24 1015.2 24 9.5 24 6.5 24 9.9 999.9 61.0* 39.0 0.00G 999.9 100000 724050 13743 19820320 45.0 24 40.1 24 1017.0 24 1014.6 24 5.5 24 7.5 24 11.8 999.9 62.1 39.0 0.20G 999.9 110000 724050 13743 19820321 47.0 23 44.8 23 1010.6 23 1008.2 23 4.8 23 8.2 23 10.9 999.9 52.0* 41.0 0.10G 999.9 110000 724050 13743 19820322 48.2 23 33.5 23 1011.2 23 1008.8 23 16.5 23 13.1 23 22.0 35.9 54.0 39.0 0.01G 999.9 100000 724050 13743 19820323 46.2 24 27.5 24 1018.2 24 1015.8 24 14.5 24 7.6 24 15.0 19.8 55.0* 36.0 0.00G 999.9 000000 724050 13743 19820324 48.3 24 34.2 24 1017.5 24 1015.1 24 13.3 24 7.2 24 12.8 999.9 62.1* 36.0 0.00G 999.9 000000 724050 13743 19820325 51.9 23 41.2 23 1014.3 23 1011.9 23 10.9 23 6.1 23 15.0 999.9 66.9* 36.0 0.00D 999.9 100000 724050 13743 19820326 49.0 24 34.1 24 1008.9 24 1006.5 24 12.9 24 14.1 24 22.0 31.9 66.9 41.0 0.17G 999.9 111000 724050 13743 19820327 36.9 24 16.7 24 1019.7 24 1017.3 24 18.6 24 15.1 24 24.9 29.9 54.0 32.0 0.11G 999.9 000000 724050 13743 19820328 33.7 24 10.2 24 1033.1 24 1030.7 24 19.9 24 12.1 24 19.8 25.8 46.9* 23.0 0.00G 999.9 000000 724050 13743 19820329 43.3 24 21.7 24 1034.3 24 1031.9 24 17.4 24 7.4 24 11.1 999.9 60.1* 23.0 0.00G 999.9 000000 724050 13743 19820330 50.9 22 35.8 22 1029.3 22 1026.9 22 15.5 22 9.0 22 15.0 999.9 68.0* 28.9 0.00G 999.9 000000 724050 13743 19820331 57.9 22 51.7 22 1018.7 22 1016.3 22 12.3 22 12.5 22 18.8 26.8 68.0 52.0* 0.14G 999.9 110010 724050 13743 19820401 61.8 23 33.6 23 1016.1 23 1013.7 23 19.2 23 13.1 23 21.0 39.8 73.9* 46.9 0.23G 999.9 010010 724050 13743 19820402 58.6 24 20.9 24 1019.5 24 1017.1 24 19.1 24 10.4 24 16.9 25.8 73.9 45.0 0.21G 999.9 000000 724050 13743 19820403 56.0 24 45.7 24 1007.5 24 1005.1 24 11.3 24 13.3 24 23.9 34.0 72.0* 45.0 0.17G 999.9 110000 724050 13743 19820404 54.9 24 26.3 24 999.6 24 997.2 24 18.0 24 19.2 24 31.9 42.9 73.0 46.0 0.08G 999.9 010000 724050 13743 19820405 43.5 22 19.3 22 1016.0 22 1013.6 22 17.7 22 11.2 22 22.0 29.9 55.9 32.9 0.00G 999.9 000000 724050 13743 19820406 41.2 23 30.1 23 1000.3 23 997.9 23 10.6 23 17.3 22 31.9 49.0 54.0 33.1 0.32G 999.9 111010 724050 13743 19820407 33.4 24 9.6 24 1015.7 24 1013.3 24 18.5 24 22.8 24 31.9 42.9 45.0 23.9 0.04G 999.9 000000 724050 13743 19820408 37.8 23 9.9 23 1020.8 23 1018.3 23 15.4 22 12.0 23 21.0 29.9 48.9* 24.1 0.00G 999.9 000000 724050 13743 19820409 40.3 23 32.4 23 1008.2 23 1005.9 23 7.7 23 5.2 23 15.0 17.9 50.0 28.9 0.20G 999.9 111000 724050 13743 19820410 43.6 24 26.2 24 1016.8 24 1014.4 24 15.6 24 8.6 24 14.0 19.8 55.0* 32.9 0.09G 999.9 010000 724050 13743 19820411 46.9 23 30.3 23 1016.0 23 1013.6 23 14.3 23 7.6 23 16.9 23.9 57.9 33.1 0.00G 999.9 000000 724050 13743 19820412 47.8 24 25.8 24 1017.7 24 1015.3 24 14.9 24 7.5 24 14.0 999.9 61.0* 34.0 0.00G 999.9 000000 724050 13743 19820413 58.3 24 40.4 24 1010.3 24 1008.0 24 12.2 24 11.6 24 23.9 32.8 77.0* 34.0 0.00G 999.9 010000 724050 13743 19820414 57.0 24 37.3 24 1015.2 24 1012.8 24 14.1 24 11.4 24 19.8 24.9 77.0 43.0 0.00G 999.9 010010 724050 13743 19820415 54.4 23 37.7 23 1022.6 23 1020.2 23 11.1 23 6.2 23 12.8 999.9 66.0 43.0 0.00G 999.9 000000 724050 13743 19820416 58.2 24 46.6 24 1025.6 24 1023.2 24 10.9 24 6.8 24 10.9 15.9 75.9* 44.1 0.00G 999.9 100000 724050 13743 19820417 69.0 24 60.1 24 1018.4 24 1016.0 24 10.6 24 12.9 24 22.9 30.9 81.0* 48.0 0.00G 999.9 000000 724050 13743 19820418 61.6 24 39.4 24 1016.9 24 1014.5 24 17.6 24 13.1 24 32.8 42.9 82.0 50.0 0.54G 999.9 110000 724050 13743 19820419 60.7 24 33.2 24 1022.3 24 1019.9 24 16.7 24 8.1 24 15.0 19.8 75.0* 45.0 0.00G 999.9 000000 724050 13743 19820420 61.4 24 43.7 24 1019.9 24 1017.5 24 11.8 23 11.2 24 15.0 21.0 75.0 45.0 0.00G 999.9 000000 724050 13743 19820421 62.5 24 45.4 24 1019.4 24 1017.0 24 12.8 24 12.0 24 19.8 28.0 68.0* 54.0 0.00G 999.9 010000 724050 13743 19820422 54.6 24 24.1 24 1024.0 24 1021.6 24 15.9 24 11.8 24 19.8 26.8 68.0 44.1 0.00D 999.9 000000 724050 13743 19820423 54.5 22 21.5 22 1026.6 22 1024.2 22 16.7 22 12.7 22 19.4 28.0 66.9* 39.9 0.00G 999.9 000000 724050 13743 19820424 60.8 24 32.5 24 1023.3 24 1020.8 24 14.3 24 7.4 24 10.9 999.9 75.9* 39.9 0.00G 999.9 000000 724050 13743 19820425 63.2 23 41.6 23 1021.2 23 1018.8 23 13.3 23 8.5 23 15.0 19.8 78.1* 43.0 0.00G 999.9 000000 724050 13743 19820426 63.5 24 56.7 24 1017.2 24 1014.8 24 7.9 24 9.5 23 14.0 999.9 78.1 46.0 0.72G 999.9 110000 724050 13743 19820427 62.8 24 61.1 24 1013.7 24 1011.3 24 4.5 24 6.4 24 11.8 999.9 66.0 57.9 0.89G 999.9 110000 724050 13743 19820428 55.5 23 44.2 23 1017.8 23 1015.4 23 14.8 23 15.2 23 22.9 24.9 64.9 48.9 0.54G 999.9 110000 724050 13743 19820429 56.3 22 31.6 22 1025.9 22 1023.4 22 16.0 22 8.8 22 15.0 999.9 66.9* 42.1 0.00G 999.9 000000 724050 13743 19820430 59.3 24 37.9 24 1025.9 24 1023.5 24 14.1 24 5.3 24 8.9 999.9 72.0* 42.1 0.00G 999.9 000000 724050 13743 19820501 63.1 24 42.1 24 1020.7 24 1018.3 24 14.0 24 6.7 24 12.8 15.9 77.0 44.1 0.00G 999.9 000000 724050 13743 19820502 66.7 24 43.9 24 1019.3 24 1016.9 24 13.2 24 9.2 24 15.0 23.9 77.0 48.0 0.00G 999.9 010000 724050 13743 19820503 64.9 24 43.4 24 1019.5 24 1017.1 24 12.9 24 6.1 23 10.9 999.9 75.0* 52.0 0.00G 999.9 000000 724050 13743 19820504 64.5 23 42.6 23 1021.0 23 1018.6 23 14.1 23 7.1 23 12.8 22.9 75.0 52.0 0.00G 999.9 000000 724050 13743 19820505 64.8 24 41.4 24 1022.7 24 1020.3 24 12.8 24 5.4 24 9.9 999.9 75.9* 52.0 0.00G 999.9 000000 724050 13743 19820506 64.8 22 49.4 22 1021.8 22 1019.4 22 11.2 22 8.6 22 12.8 999.9 78.1* 50.0 0.00G 999.9 000000 724050 13743 19820507 69.8 22 55.5 22 1015.2 22 1012.8 22 8.2 22 5.6 22 14.0 19.8 86.0* 50.0 0.00G 999.9 000000 724050 13743 19820508 65.7 24 58.5 24 1013.9 24 1011.5 24 7.6 24 6.5 24 11.8 999.9 86.0 59.0 0.07G 999.9 110010 724050 13743 19820509 62.4 24 46.9 24 1016.0 24 1013.6 24 14.9 24 12.2 24 18.8 24.9 72.0* 51.1 0.23G 999.9 110000 724050 13743 19820510 65.8 23 37.8 23 1017.1 23 1014.7 23 19.9 23 13.5 23 21.0 29.9 78.1* 51.1 0.00G 999.9 000000 724050 13743 19820511 64.7 22 35.0 22 1018.9 22 1016.5 22 17.6 22 8.8 22 11.8 18.8 78.1 50.0 0.00G 999.9 000000 724050 13743 19820512 70.8 24 50.4 24 1017.5 24 1015.1 24 13.5 24 5.2 24 10.9 999.9 89.1* 50.0 0.00G 999.9 000000 724050 13743 19820513 72.6 24 58.9 24 1017.2 24 1014.8 24 8.1 24 6.3 24 15.0 21.0 90.0 55.0 0.00G 999.9 100000 724050 13743 19820514 71.6 23 57.6 23 1018.1 23 1015.7 23 7.2 22 8.2 23 11.8 15.9 84.9 60.1 0.00G 999.9 100000 724050 13743 19820515 69.2 24 53.6 24 1019.5 24 1017.1 24 9.3 24 5.1 24 10.9 999.9 84.0* 55.0 0.00G 999.9 100000 724050 13743 19820516 70.1 23 54.0 23 1020.5 23 1018.1 23 10.1 23 5.9 23 9.9 999.9 86.0* 55.0 0.00G 999.9 000000 724050 13743 19820517 75.7 24 56.5 24 1018.3 24 1015.9 24 10.5 24 5.4 24 9.9 999.9 87.1* 57.0 0.00G 999.9 000000 724050 13743 19820518 76.0 24 59.5 24 1019.3 24 1016.9 24 9.1 24 7.0 24 12.8 999.9 87.1 63.0 0.00G 999.9 000000 724050 13743 19820519 73.3 24 63.9 24 1017.4 24 1015.0 24 6.6 24 8.3 24 17.9 23.9 86.0 64.9 0.00G 999.9 110010 724050 13743 19820520 74.0 24 62.8 24 1014.3 24 1011.9 24 7.6 24 8.1 24 11.8 999.9 84.9* 64.0 0.92G 999.9 110000 724050 13743 19820521 75.3 23 60.8 23 1015.3 23 1012.9 23 9.9 23 6.2 23 11.8 999.9 84.9 64.0 0.00G 999.9 010000 724050 13743 19820522 66.9 24 60.5 24 1019.7 24 1017.3 24 5.0 24 8.2 24 12.8 999.9 82.0 64.0 1.13G 999.9 110000 724050 13743 19820523 61.5 24 57.5 24 1021.3 24 1018.9 24 3.8 24 9.4 24 14.0 999.9 66.9 60.1 0.61G 999.9 110000 724050 13743 19820524 60.9 24 56.7 24 1020.3 24 1017.9 24 3.5 24 6.5 24 9.9 999.9 64.0* 57.9 0.00G 999.9 110000 724050 13743 19820525 66.0 24 61.1 24 1015.7 24 1013.3 24 3.0 24 5.3 24 8.0 999.9 73.0* 57.9 0.01G 999.9 110000 724050 13743 19820526 69.9 24 62.1 24 1015.0 24 1012.6 24 3.8 24 4.2 24 9.9 999.9 79.0* 59.9 0.00G 999.9 100000 724050 13743 19820527 70.5 24 63.9 24 1015.5 24 1013.1 24 3.4 24 5.9 24 8.9 999.9 81.0 60.1 0.00G 999.9 100000 724050 13743 19820528 72.6 24 66.4 24 1014.5 24 1012.1 24 5.1 24 6.7 24 9.9 999.9 79.0* 64.9 0.04G 999.9 110010 724050 13743 19820529 73.1 23 65.9 23 1011.8 23 1009.3 23 5.9 23 6.4 23 15.9 22.0 84.0* 66.9 1.54G 999.9 110010 724050 13743 19820530 76.0 24 66.7 24 1009.0 24 1006.5 24 11.0 24 7.7 24 14.0 23.9 84.9 68.0 0.19G 999.9 010010 724050 13743 19820531 78.3 24 67.1 24 1008.9 24 1006.5 24 8.0 24 6.2 24 19.8 25.8 88.0* 68.0 0.98G 999.9 010010 724050 13743 19820601 78.1 22 68.4 22 1006.9 22 1004.5 22 8.4 22 8.6 22 24.9 39.8 88.0 69.1 0.00G 999.9 010010 724050 13743 19820602 71.7 24 57.0 24 1010.3 24 1007.7 24 17.8 24 9.4 24 18.8 24.9 88.0 64.0 1.11G 999.9 010000 724050 13743 19820603 72.6 23 57.8 23 1016.3 23 1013.9 23 11.7 22 7.2 23 14.0 19.8 80.1* 63.9 0.00G 999.9 000000 724050 13743 19820604 65.2 24 58.2 24 1018.3 24 1015.9 24 8.6 24 8.7 24 15.9 16.9 81.0 60.1 0.54G 999.9 110010 724050 13743 19820605 66.3 23 61.4 23 1011.4 23 1009.0 23 6.0 23 6.8 23 12.8 999.9 71.1* 60.1 0.39G 999.9 110000 724050 13743 19820606 67.0 23 56.7 23 1009.6 23 1007.2 23 13.7 23 6.1 23 11.8 19.8 72.0 60.1 0.01G 999.9 010010 724050 13743 19820607 67.8 24 57.6 24 1014.8 24 1012.4 24 12.6 24 9.7 24 14.0 17.9 78.1* 60.1 0.14G 999.9 110000 724050 13743 19820608 69.5 24 58.5 24 1015.1 24 1012.7 24 9.9 24 4.5 24 8.9 999.9 78.1 61.0 0.05G 999.9 000000 724050 13743 19820609 72.7 24 60.8 24 1015.8 24 1013.4 24 7.9 24 3.7 24 7.0 999.9 82.9* 61.0 0.00G 999.9 000000 724050 13743 19820610 67.4 23 58.4 23 1016.5 23 1014.1 23 10.0 23 5.5 23 9.9 999.9 82.9 64.0 0.27G 999.9 110000 724050 13743 19820611 68.2 24 58.8 24 1017.3 24 1014.9 24 12.3 24 3.4 24 7.0 999.9 71.1 64.0 0.02G 999.9 010000 724050 13743 19820612 65.1 24 53.4 24 1020.5 24 1018.1 24 13.0 24 5.2 24 9.9 999.9 71.1 60.1 0.00D 999.9 010000 724050 13743 19820613 63.2 24 57.6 24 1017.1 24 1014.7 24 7.1 24 6.7 24 15.9 21.0 71.1 60.1 1.79G 999.9 110000 724050 13743 19820614 66.4 24 54.5 24 1016.5 24 1014.1 24 11.1 24 9.4 24 15.9 999.9 80.1* 57.9 0.08G 999.9 010000 724050 13743 19820615 72.5 24 60.5 24 1016.4 24 1014.0 24 8.5 24 8.1 24 15.0 22.9 84.9 57.9 0.00G 999.9 000000 724050 13743 19820616 79.3 23 66.8 23 1010.6 23 1008.2 23 6.3 23 12.9 23 16.9 22.9 88.0 60.1 0.00G 999.9 010010 724050 13743 19820617 77.2 24 66.6 24 1009.7 24 1007.3 24 8.8 24 7.9 24 15.9 22.0 88.0 72.0 0.04G 999.9 010000 724050 13743 19820618 73.0 24 62.7 24 1013.3 24 1010.9 24 6.3 24 6.0 24 9.9 999.9 82.0 68.0 0.06G 999.9 000000 724050 13743 19820619 75.4 24 63.5 24 1008.2 24 1005.7 24 5.2 24 6.0 24 11.8 999.9 84.9* 66.9 0.00G 999.9 000000 724050 13743 19820620 74.4 24 52.5 24 1010.7 24 1008.4 24 11.8 24 10.0 24 15.0 21.0 84.9 64.0 0.00G 999.9 000000 724050 13743 19820621 74.6 23 59.9 23 1010.6 23 1008.3 23 10.0 23 7.3 23 9.9 19.8 84.9* 64.0 0.00D 999.9 100000 724050 13743 19820622 74.5 21 60.4 21 1012.2 21 1009.8 21 9.4 21 4.5 21 9.9 999.9 87.1 64.9 0.00G 999.9 000000 724050 13743 19820623 72.8 24 55.5 24 1015.3 24 1012.9 24 15.6 24 8.8 24 14.0 18.8 82.9 64.9 0.07G 999.9 010010 724050 13743 19820624 71.6 24 50.4 24 1019.4 24 1017.0 24 17.0 24 6.3 24 9.9 18.8 80.1 59.0 0.00G 999.9 000000 724050 13743 19820625 75.1 22 59.0 22 1019.4 22 1017.0 22 10.1 22 7.6 22 11.8 19.8 84.0 59.0 0.00G 999.9 000000 724050 13743 19820626 79.7 23 65.0 23 1017.8 23 1015.4 23 6.9 23 6.6 23 12.8 15.9 89.1* 64.0 0.00G 999.9 000000 724050 13743 19820627 78.9 24 68.5 24 1017.1 24 1014.7 24 6.0 24 5.1 24 9.9 999.9 89.1 70.0 0.00G 999.9 000000 724050 13743 19820628 80.6 21 69.7 21 1014.0 21 1011.7 21 9.5 21 7.1 21 10.9 999.9 90.0* 70.0 0.00D 999.9 000000 724050 13743 19820629 81.0 24 70.3 24 1008.0 24 1005.6 24 10.2 24 8.9 24 22.0 34.0 91.0* 75.9 0.00D 999.9 010010 724050 13743 19820630 78.9 23 66.3 23 1007.2 23 1004.8 23 8.3 23 8.2 23 11.8 999.9 91.0 72.9 0.39G 999.9 000000 724050 13743 19820701 73.8 24 51.4 24 1016.2 24 1013.8 24 12.5 24 8.9 24 14.0 18.8 84.9 61.9 0.00G 999.9 000000 724050 13743 19820702 73.5 23 52.5 23 1020.6 23 1018.2 23 14.8 23 5.8 23 14.0 17.9 84.0* 62.1 0.00G 999.9 000000 724050 13743 19820703 76.2 24 63.3 24 1012.5 24 1010.1 24 11.1 24 7.4 24 15.0 18.8 84.9 62.1 0.00D 999.9 110000 724050 13743 19820704 73.2 23 61.2 23 1011.3 23 1008.9 23 8.1 23 8.0 23 15.9 18.8 84.0 64.9 0.31G 999.9 110000 724050 13743 19820705 75.1 23 60.2 23 1019.3 23 1016.9 23 11.8 23 6.0 23 8.9 999.9 82.9* 64.9 0.00G 999.9 000000 724050 13743 19820706 73.6 24 57.7 24 1023.6 24 1021.2 23 15.3 24 5.8 24 8.9 999.9 84.0* 64.0 0.00D 999.9 000000 724050 13743 19820707 78.8 23 66.2 23 1021.5 23 1019.1 23 12.4 23 8.7 23 11.8 18.8 91.9* 64.0 0.00D 999.9 000000 724050 13743 19820708 83.6 23 70.3 23 1017.3 23 1014.9 23 6.7 23 6.6 23 15.0 15.9 93.9 69.1 0.00D 999.9 000010 724050 13743 19820709 80.9 23 68.4 23 1015.8 23 1013.4 23 5.7 23 5.0 23 8.9 999.9 95.0 73.0 0.01G 999.9 010000 724050 13743 19820710 81.2 23 70.9 23 1016.3 23 1013.9 23 4.7 23 4.9 23 8.9 999.9 91.0 73.0 0.01G 999.9 110010 724050 13743 19820711 78.9 22 71.0 22 1014.7 22 1012.3 22 5.2 22 5.8 22 8.0 999.9 86.0 75.0 0.01G 999.9 110000 724050 13743 19820712 82.0 23 69.5 23 1014.0 23 1011.6 23 8.5 23 7.0 23 10.9 999.9 91.9* 73.9 0.06G 999.9 010000 724050 13743 19820713 84.7 23 63.9 23 1018.5 23 1016.1 23 10.9 23 5.4 23 8.0 999.9 93.0 73.9 0.00D 999.9 000000 724050 13743 19820714 80.5 21 68.7 21 1020.1 21 1017.6 21 8.0 21 4.0 21 8.9 999.9 93.0 77.0 0.00H 999.9 010010 724050 13743 19820715 78.7 19 70.5 19 1020.8 19 1018.4 19 5.1 19 4.8 19 12.8 999.9 88.0* 73.9 0.05G 999.9 100000 724050 13743 19820716 83.9 23 71.7 23 1020.9 23 1018.5 23 4.7 23 6.0 23 9.9 999.9 91.9* 73.9 0.00G 999.9 000000 724050 13743 19820717 84.9 22 73.2 22 1019.5 22 1017.1 22 7.0 22 7.3 22 11.8 999.9 93.9 75.9 0.00D 999.9 000000 724050 13743 19820718 86.7 24 73.0 24 1016.7 24 1014.3 24 6.7 23 7.3 24 12.8 17.9 96.1* 77.0 0.00D 999.9 000000 724050 13743 19820719 85.6 23 69.7 22 1013.0 23 1010.6 23 9.9 23 6.7 23 15.9 22.0 97.0 75.9 0.00H 999.9 010010 724050 13743 19820720 80.2 23 70.6 23 1011.1 23 1008.7 23 6.9 23 6.0 23 15.0 18.8 93.9 75.0 0.73G 999.9 110000 724050 13743 19820721 79.2 23 58.1 23 1015.9 23 1013.5 23 17.1 23 8.2 23 11.8 17.9 90.0 70.9 0.00G 999.9 000000 724050 13743 19820722 78.4 23 61.2 23 1016.5 23 1014.1 23 14.7 23 6.6 23 9.9 999.9 89.1* 64.9 0.00G 999.9 000000 724050 13743 19820723 79.5 24 71.0 23 1015.1 24 1012.7 23 5.7 23 6.6 24 15.0 21.0 91.0 64.9 0.00G 999.9 010010 724050 13743 19820724 78.6 22 65.1 22 1017.8 22 1015.3 22 9.8 21 6.5 22 9.9 999.9 89.1* 72.9 0.06G 999.9 100000 724050 13743 19820725 81.8 23 66.7 23 1019.8 23 1017.4 23 11.2 23 6.7 23 11.8 999.9 91.0 72.0 0.00G 999.9 000000 724050 13743 19820726 84.8 24 67.0 24 1017.4 24 1015.0 24 6.9 24 6.5 24 9.9 999.9 96.1* 72.0 0.00D 999.9 000000 724050 13743 19820727 87.0 23 68.4 23 1017.2 23 1014.8 23 5.3 23 5.5 23 9.9 999.9 96.1 73.9 0.00C 999.9 000000 724050 13743 19820728 82.1 22 72.4 22 1012.3 22 1009.9 22 3.7 22 8.1 22 15.0 22.0 93.9 77.0 0.12G 999.9 110010 724050 13743 19820729 79.0 21 59.1 21 1015.5 21 1013.1 21 15.2 21 7.4 21 10.9 16.9 91.0 69.1 0.10G 999.9 000000 724050 13743 19820730 74.4 24 63.9 24 1018.5 24 1016.2 24 11.7 23 4.9 24 11.8 999.9 88.0 66.0 0.92G 999.9 110010 724050 13743 19820731 75.7 24 68.9 24 1015.4 24 1013.0 24 6.5 24 3.8 24 8.9 999.9 82.0* 70.0 0.76G 999.9 110000 724050 13743 19820801 77.7 24 64.4 24 1013.8 24 1011.4 24 8.9 24 6.8 24 9.9 999.9 84.9* 72.0 0.01G 999.9 100000 724050 13743 19820802 78.3 24 62.7 24 1014.5 24 1012.2 24 8.0 24 4.4 24 11.8 16.9 89.1* 69.1 0.00G 999.9 000010 724050 13743 19820803 76.5 24 64.2 24 1014.5 24 1012.1 24 6.9 24 6.2 24 15.0 999.9 89.1 68.0 0.10G 999.9 010010 724050 13743 19820804 78.0 17 67.3 17 1016.2 17 1013.8 17 5.5 17 3.5 17 11.8 999.9 89.1* 68.0 0.00G 999.9 100000 724050 13743 19820805 81.3 24 71.9 24 1017.1 24 1014.7 24 3.9 24 6.1 24 9.9 17.9 90.0 71.1 0.00G 999.9 010000 724050 13743 19820806 76.9 24 71.5 24 1020.2 24 1017.8 24 3.6 24 5.8 24 9.9 999.9 88.0 72.9 0.40G 999.9 110000 724050 13743 19820807 75.5 24 67.8 24 1022.1 24 1019.7 24 7.1 23 5.8 24 7.0 999.9 82.0* 71.1 0.05G 999.9 000000 724050 13743 19820808 78.9 23 71.0 23 1018.1 23 1015.7 23 8.0 23 6.3 23 14.0 17.9 84.0 71.1 0.00G 999.9 010000 724050 13743 19820809 77.7 22 71.6 22 1013.6 22 1011.2 22 8.4 22 6.7 22 15.0 15.9 87.1 75.0 0.00G 999.9 110010 724050 13743 19820810 80.5 24 68.0 24 1015.9 24 1013.5 24 10.5 24 6.6 24 11.8 999.9 89.1 73.9 0.84G 999.9 110000 724050 13743 19820811 77.4 24 61.9 24 1019.5 24 1017.1 24 12.9 24 7.2 24 12.8 15.9 89.1 70.9 0.00G 999.9 000000 724050 13743 19820812 70.4 24 57.7 24 1020.0 24 1017.6 24 11.2 23 8.7 24 12.8 999.9 82.9 63.0 0.02G 999.9 110000 724050 13743 19820813 71.2 24 55.8 24 1019.9 24 1017.5 24 11.6 24 4.2 24 7.0 999.9 81.0* 62.1 0.00G 999.9 000000 724050 13743 19820814 74.0 24 60.0 24 1019.3 24 1016.9 24 8.5 24 3.1 24 4.9 999.9 82.0* 62.1 0.00G 999.9 000000 724050 13743 19820815 74.8 23 61.6 23 1019.2 23 1016.8 23 6.3 23 3.6 23 8.0 999.9 84.9 64.9 0.00G 999.9 100000 724050 13743 19820816 76.4 23 63.1 23 1019.5 23 1017.1 23 8.0 23 4.4 23 8.0 999.9 87.1 64.9 0.00G 999.9 000000 724050 13743 19820817 80.7 23 66.3 23 1016.3 23 1013.9 23 5.2 23 6.6 23 22.9 28.0 91.0* 66.9 0.00G 999.9 110010 724050 13743 19820818 72.7 24 59.8 24 1017.8 24 1015.4 24 12.5 24 5.4 24 10.9 999.9 91.0 63.9 0.66G 999.9 010010 724050 13743 19820819 75.2 22 61.0 22 1020.8 22 1018.3 22 13.6 22 4.5 22 8.9 999.9 84.0* 63.9 0.00G 999.9 000000 724050 13743 19820820 78.3 24 63.9 24 1017.4 24 1015.0 24 9.6 24 7.4 24 10.9 15.9 88.0 64.0 0.00G 999.9 000000 724050 13743 19820821 77.0 23 63.0 23 1013.2 23 1010.8 23 10.2 23 7.3 23 19.8 35.9 88.0 68.0 0.04G 999.9 110010 724050 13743 19820822 68.2 24 53.3 24 1019.6 24 1017.2 24 19.0 24 6.5 24 12.8 15.0 82.0 60.1 0.40G 999.9 000000 724050 13743 19820823 73.4 23 64.9 23 1016.9 23 1014.5 23 10.9 23 6.9 23 11.8 999.9 82.0 60.1 0.00G 999.9 110000 724050 13743 19820824 79.0 23 66.5 23 1015.6 23 1013.2 23 6.1 23 4.3 23 7.0 999.9 87.1* 66.0 0.00G 999.9 010000 724050 13743 19820825 81.4 23 66.0 23 1009.8 23 1007.4 23 9.1 23 11.7 23 18.8 24.9 91.9 72.0 0.00G 999.9 110000 724050 13743 19820826 73.7 23 51.6 23 1018.3 23 1015.9 23 20.0 23 6.0 23 12.8 999.9 91.9 62.1 0.00G 999.9 000000 724050 13743 19820827 70.8 22 60.7 22 1016.4 22 1014.0 22 13.9 22 6.4 22 14.0 17.9 82.9 62.1 0.00G 999.9 010000 724050 13743 19820828 73.4 23 57.7 23 1016.9 23 1014.5 23 11.1 23 7.5 23 14.0 25.8 80.1* 63.0 0.00G 999.9 000000 724050 13743 19820829 64.2 23 37.6 23 1026.5 23 1024.1 23 19.9 23 7.8 23 14.0 21.0 80.1 53.1 0.00G 999.9 000000 724050 13743 19820830 63.2 17 48.2 17 1026.8 17 1024.4 17 18.9 17 7.8 17 9.9 999.9 75.0* 53.1 0.00G 999.9 000000 724050 13743 19820831 74.3 24 62.3 24 1022.8 24 1020.4 24 8.5 24 7.1 24 15.9 19.8 87.1* 57.0 0.00G 999.9 000000 724050 13743 19820901 76.9 23 66.1 23 1018.7 23 1016.3 23 7.4 23 10.0 23 16.9 22.0 87.1 66.0 0.00G 999.9 010000 724050 13743 19820902 80.7 24 69.3 24 1012.2 24 1009.8 24 7.9 24 8.5 24 12.8 999.9 90.0* 72.0 0.00G 999.9 100010 724050 13743 19820903 78.1 22 60.2 22 1010.8 22 1008.4 22 14.9 22 8.4 22 18.8 28.9 91.0 72.0 0.06G 999.9 010010 724050 13743 19820904 71.5 23 49.7 23 1018.8 23 1016.4 23 19.2 23 5.5 23 10.9 11.8 84.9 60.1 0.00G 999.9 000000 724050 13743 19820905 69.4 23 51.7 23 1024.0 23 1021.5 23 16.7 23 4.0 23 7.0 999.9 81.0* 57.0 0.00G 999.9 000000 724050 13743 19820906 71.3 24 54.6 23 1022.9 24 1020.5 24 14.5 24 3.0 24 7.0 999.9 84.9* 57.0 0.00G 999.9 000000 724050 13743 19820907 73.6 24 58.8 24 1022.5 24 1020.1 24 10.1 24 4.8 24 8.0 999.9 84.9 57.9 0.00G 999.9 000000 724050 13743 19820908 69.5 23 60.5 22 1025.3 23 1022.9 23 6.8 23 6.0 23 10.9 999.9 84.9 62.1 0.00G 999.9 010000 724050 13743 19820909 70.5 24 59.1 24 1026.0 24 1023.6 24 8.8 24 4.4 24 7.0 999.9 77.0 64.0 0.00G 999.9 000000 724050 13743 19820910 72.3 24 61.0 24 1022.2 24 1019.8 24 5.7 24 5.6 24 9.9 999.9 84.9* 63.0 0.00G 999.9 100000 724050 13743 19820911 73.8 23 62.2 23 1020.2 23 1017.9 23 5.1 23 3.6 23 7.0 999.9 87.1* 63.0 0.00G 999.9 100000 724050 13743 19820912 75.1 22 63.8 22 1022.2 22 1019.8 22 5.0 22 3.0 21 8.0 999.9 88.0 64.0 0.00D 999.9 100000 724050 13743 19820913 76.1 23 64.3 23 1024.0 23 1021.6 23 6.0 23 3.8 23 8.0 999.9 87.1 66.0 0.00G 999.9 100000 724050 13743 19820914 75.5 23 65.5 23 1021.9 23 1019.5 23 3.9 23 3.9 23 8.0 999.9 86.0 66.9 0.00G 999.9 100000 724050 13743 19820915 75.8 24 65.2 23 1016.8 24 1014.4 24 4.2 24 4.0 24 7.0 999.9 84.9 68.0 0.00G 999.9 100000 724050 13743 19820916 79.8 24 65.4 24 1014.2 24 1011.8 24 5.7 24 6.1 24 12.8 15.9 88.0 68.0 0.00D 999.9 000000 724050 13743 19820917 70.9 22 51.3 22 1017.6 22 1015.2 22 17.1 22 7.6 22 11.8 999.9 88.0 61.0 0.00G 999.9 000000 724050 13743 19820918 70.4 24 55.8 24 1013.0 24 1010.6 24 14.9 24 5.7 24 14.0 999.9 88.0 59.0 0.00G 999.9 010000 724050 13743 19820919 69.0 24 50.5 24 1016.0 24 1013.6 24 16.8 24 6.0 24 9.9 999.9 88.0 57.0 0.00G 999.9 000000 724050 13743 19820920 67.2 24 58.7 24 1014.0 24 1011.6 24 6.8 22 4.5 24 8.0 999.9 77.0 57.0 0.20G 999.9 110000 724050 13743 19820921 65.4 24 58.4 23 1016.2 24 1013.8 24 4.9 24 5.1 24 8.0 999.9 70.0 55.9* 0.01G 999.9 100000 724050 13743 19820922 62.7 24 56.6 23 1015.3 24 1012.9 24 7.5 24 9.2 24 12.8 999.9 71.1 57.0* 0.94G 999.9 110000 724050 13743 19820923 61.6 23 48.0 23 1018.3 23 1015.9 23 13.6 23 7.1 23 15.0 19.8 71.1* 52.0 0.12G 999.9 010000 724050 13743 19820924 63.0 24 49.3 24 1020.8 24 1018.4 24 12.8 24 4.7 24 8.0 999.9 73.9* 51.1 0.00G 999.9 000000 724050 13743 19820925 66.8 23 55.3 23 1017.8 23 1015.4 23 10.1 23 3.6 23 7.0 999.9 75.0 51.1 0.00G 999.9 100000 724050 13743 19820926 63.3 24 56.9 24 1017.2 24 1014.8 24 7.2 24 7.7 24 14.0 19.8 75.0 57.9 0.03G 999.9 110000 724050 13743 19820927 69.5 24 60.7 24 1009.6 24 1007.2 24 13.1 24 8.2 24 16.9 24.9 77.0* 57.9 0.45G 999.9 110000 724050 13743 19820928 66.2 24 55.7 24 1018.7 24 1016.3 24 13.5 24 5.8 24 11.8 999.9 77.0 55.9 0.01G 999.9 000000 724050 13743 19820929 66.9 24 56.6 24 1023.6 24 1021.2 24 11.0 24 6.0 24 8.0 999.9 75.9 55.9 0.00G 999.9 000000 724050 13743 19820930 67.0 23 57.2 23 1025.4 23 1023.0 23 8.9 23 7.0 23 10.9 999.9 77.0 57.0 0.00D 999.9 010000 724050 13743 19821001 66.2 24 55.0 24 1019.5 24 1017.1 24 7.4 24 4.9 24 8.9 999.9 78.1* 55.0 0.00G 999.9 100000 724050 13743 19821002 68.4 24 53.8 24 1015.9 24 1013.5 24 11.8 24 4.7 24 10.9 999.9 78.1 55.0 0.00G 999.9 000000 724050 13743 19821003 63.9 23 53.0 23 1018.2 23 1015.8 23 13.9 23 3.6 23 8.0 999.9 77.0* 52.0 0.00G 999.9 000000 724050 13743 19821004 69.6 22 59.9 22 1016.7 22 1014.3 22 9.4 22 4.0 22 5.8 999.9 80.1* 52.0 0.00G 999.9 000000 724050 13743 19821005 71.7 24 62.1 24 1020.3 24 1017.9 24 4.9 24 3.6 24 5.8 999.9 80.1 63.0 0.00G 999.9 100000 724050 13743 19821006 71.2 21 65.3 21 1024.0 21 1021.6 21 3.4 21 3.6 21 4.9 999.9 80.1 64.9 0.00G 999.9 100000 724050 13743 19821007 71.3 23 63.6 22 1021.8 23 1019.5 23 4.8 23 5.7 23 8.9 999.9 80.1 64.9 0.00D 999.9 100000 724050 13743 19821008 73.0 22 61.6 22 1017.6 22 1015.2 22 5.6 22 7.5 22 11.8 999.9 84.0* 64.9 0.00G 999.9 100000 724050 13743 19821009 72.6 24 62.5 24 1012.3 24 1009.9 24 9.2 24 5.7 24 8.9 999.9 84.0 64.9 0.00G 999.9 100000 724050 13743 19821010 61.3 23 49.7 23 1019.5 23 1017.1 23 13.4 23 7.6 23 12.8 999.9 79.0 57.0 0.00G 999.9 000000 724050 13743 19821011 57.0 23 44.1 23 1022.0 23 1019.6 23 14.9 23 4.7 23 8.9 999.9 64.0 52.9 0.00G 999.9 000000 724050 13743 19821012 62.2 23 52.2 23 1020.4 23 1018.0 23 12.2 23 4.3 23 5.8 999.9 69.1 53.1 0.00G 999.9 010000 724050 13743 19821013 63.6 24 57.6 24 1016.5 24 1014.1 24 6.0 24 5.7 24 9.9 999.9 70.0 57.9 0.11G 999.9 110000 724050 13743 19821014 61.2 23 50.5 23 1010.6 23 1008.2 23 10.5 23 7.3 23 9.9 999.9 71.1 53.1 0.24G 999.9 110000 724050 13743 19821015 60.6 22 43.5 22 1007.3 22 1005.0 22 15.1 22 8.1 22 14.0 19.8 71.1 50.0 0.00G 999.9 000000 724050 13743 19821016 56.5 17 40.6 17 1008.2 17 1005.8 17 16.2 16 9.6 17 15.9 22.0 71.1 50.0 0.11G 999.9 010000 724050 13743 19821017 48.0 23 30.0 23 1021.7 23 1019.3 23 19.9 23 9.2 23 14.0 22.0 59.0 39.0 0.00G 999.9 000000 724050 13743 19821018 49.2 24 33.4 24 1029.8 24 1027.4 24 14.0 24 5.1 24 9.9 999.9 62.1* 36.0 0.00G 999.9 000000 724050 13743 19821019 56.9 21 42.7 21 1030.2 21 1027.8 21 13.2 21 5.8 21 8.9 999.9 70.0* 36.0 0.00G 999.9 000000 724050 13743 19821020 62.4 23 54.8 23 1025.5 23 1023.1 23 11.2 23 5.2 23 10.9 999.9 73.9* 48.9 0.00G 999.9 100000 724050 13743 19821021 60.2 23 46.7 23 1021.8 23 1019.4 23 13.7 23 10.7 23 15.9 17.9 73.9 53.1 0.11G 999.9 010000 724050 13743 19821022 48.5 20 31.8 20 1027.3 20 1024.9 20 15.0 20 8.6 20 10.9 999.9 66.0 39.9 0.08G 999.9 000000 724050 13743 19821023 46.0 22 29.3 22 1030.0 22 1027.6 22 15.5 22 7.9 22 11.8 999.9 57.9 37.9 0.00G 999.9 000000 724050 13743 19821024 46.8 24 29.6 24 1030.7 24 1028.3 24 15.1 24 9.6 24 12.8 15.9 54.0 37.9 0.00G 999.9 000000 724050 13743 19821025 49.3 24 40.5 24 1020.8 24 1018.4 24 7.9 24 15.2 24 19.8 34.0 54.0* 39.9 0.75G 999.9 110000 724050 13743 19821026 55.3 23 38.3 23 1020.2 23 1017.8 23 12.8 23 11.8 22 16.9 22.0 68.0* 45.0 0.44G 999.9 110000 724050 13743 19821027 53.6 21 40.1 21 1026.7 21 1024.3 21 13.1 21 3.3 21 7.0 999.9 69.1* 42.1 0.01G 999.9 000000 724050 13743 19821028 54.2 24 41.8 24 1026.6 24 1024.2 24 7.6 24 2.1 24 4.9 999.9 70.0* 39.9 0.00G 999.9 100000 724050 13743 19821029 56.2 23 44.4 23 1023.9 23 1021.5 23 9.3 23 3.9 23 8.0 999.9 72.0* 39.9 0.00G 999.9 100000 724050 13743 19821030 57.2 24 46.5 24 1023.3 24 1020.8 24 9.4 24 4.3 24 5.8 999.9 73.0* 44.1 0.00G 999.9 000000 724050 13743 19821031 60.8 24 49.2 24 1023.2 24 1020.8 24 9.6 23 4.3 24 5.8 999.9 75.9* 46.0 0.00G 999.9 000000 724050 13743 19821101 65.8 24 53.1 24 1019.1 24 1016.7 24 11.1 24 5.8 24 8.0 999.9 80.1* 51.1 0.00G 999.9 000000 724050 13743 19821102 67.9 24 58.2 24 1016.2 24 1013.8 24 10.7 24 5.9 24 8.0 999.9 82.0 54.0 0.00G 999.9 000000 724050 13743 19821103 67.9 23 60.8 23 1013.7 23 1011.3 23 8.5 23 6.0 23 8.9 999.9 80.1 57.9 0.00G 999.9 100000 724050 13743 19821104 68.9 24 62.0 23 1009.0 24 1006.6 24 10.7 24 9.8 24 17.9 23.9 79.0 57.0* 0.00G 999.9 010000 724050 13743 19821105 49.2 20 32.3 20 1014.5 20 1012.1 20 14.8 20 13.2 20 16.9 24.9 55.9* 43.0* 0.37G 999.9 010000 724050 13743 19821106 41.2 23 21.7 23 1026.2 23 1023.8 23 16.6 23 6.1 23 12.8 15.9 52.0 30.0 0.00G 999.9 000000 724050 13743 19821107 44.1 24 28.7 24 1028.0 24 1025.6 24 10.9 24 3.5 24 7.0 999.9 59.0* 30.0 0.00G 999.9 000000 724050 13743 19821108 48.8 23 34.1 23 1025.7 23 1023.3 23 13.6 23 5.0 23 8.0 999.9 66.0* 32.0 0.00G 999.9 000000 724050 13743 19821109 56.7 23 41.7 23 1025.6 23 1023.2 23 11.8 23 4.2 23 8.0 999.9 66.9 37.0 0.00G 999.9 000000 724050 13743 19821110 54.0 21 33.0 21 1030.8 21 1028.4 21 13.8 21 5.8 21 8.9 999.9 66.9 46.0 0.00G 999.9 000000 724050 13743 19821111 51.7 23 40.4 23 1027.8 23 1025.4 23 11.3 23 5.7 23 10.9 999.9 63.0 41.0 0.00G 999.9 000000 724050 13743 19821112 63.8 22 52.7 22 1016.7 22 1014.3 22 11.3 22 11.1 22 18.8 23.9 71.1* 57.9* 0.00C 999.9 010000 724050 13743 19821113 53.6 22 40.1 22 1015.0 22 1012.6 22 14.8 22 14.1 22 17.9 28.9 73.0 43.0* 0.82G 999.9 010000 724050 13743 19821114 41.1 24 26.3 24 1027.6 24 1025.2 24 17.0 24 6.1 24 10.9 15.9 48.0* 33.1 0.40G 999.9 000000 724050 13743 19821115 44.7 22 26.8 22 1023.8 22 1021.3 22 14.5 22 8.6 22 18.8 25.8 48.9 33.1 0.00G 999.9 010000 724050 13743 19821116 39.1 24 23.3 24 1031.4 24 1029.0 24 13.4 24 5.2 24 9.9 999.9 50.0* 28.9 0.00G 999.9 000000 724050 13743 19821117 41.9 22 32.5 22 1028.3 22 1025.9 22 10.6 22 3.4 22 8.0 999.9 50.0 28.9 0.00G 999.9 000000 724050 13743 19821118 48.7 23 38.0 23 1029.0 23 1026.6 23 8.4 23 3.6 23 5.8 999.9 61.0* 34.0 0.00G 999.9 000000 724050 13743 19821119 52.1 24 45.4 24 1031.1 24 1028.7 24 5.4 24 5.8 24 8.9 999.9 61.0 41.0 0.00G 999.9 110000 724050 13743 19821120 54.6 24 44.8 24 1032.2 24 1029.8 24 9.6 24 6.5 24 9.9 999.9 60.1 46.9 0.00G 999.9 010000 724050 13743 19821121 56.0 24 51.6 24 1027.8 24 1025.4 24 4.8 24 3.4 24 7.0 999.9 61.0* 50.0 0.01G 999.9 110000 724050 13743 19821122 57.9 24 52.3 24 1021.3 24 1018.9 24 6.3 24 2.9 24 8.0 999.9 66.9* 52.0 0.00G 999.9 110000 724050 13743 19821123 58.8 23 51.8 23 1016.0 23 1013.6 23 7.6 23 2.2 23 3.9 999.9 66.9 52.0 0.00G 999.9 100000 724050 13743 19821124 55.7 22 43.1 21 1014.1 22 1011.7 22 14.4 22 10.4 21 22.9 34.0 66.0 44.1* 0.01G 999.9 110000 724050 13743 19821125 39.1 24 19.9 24 1033.3 24 1030.9 24 19.9 24 6.3 24 15.0 23.9 61.0 28.9 0.00D 999.9 000000 724050 13743 19821126 45.9 24 30.1 24 1030.0 24 1027.5 24 16.3 24 7.5 24 12.8 999.9 59.0* 28.9 0.00G 999.9 000000 724050 13743 19821127 48.9 19 30.2 19 1027.9 19 1025.5 19 15.7 19 9.4 19 15.0 19.8 59.0 37.9 0.00G 999.9 010000 724050 13743 19821128 37.8 23 28.0 23 1029.5 23 1027.1 23 11.0 23 3.5 23 9.9 999.9 52.0 33.1 0.07G 999.9 110000 724050 13743 19821129 50.7 24 44.5 24 1011.2 24 1008.8 24 9.9 24 6.7 24 12.8 999.9 64.9* 33.1 1.68G 999.9 110000 724050 13743 19821130 53.1 24 41.7 24 1019.7 24 1017.3 24 13.8 24 5.3 24 11.8 999.9 66.0 42.1 0.89G 999.9 000000 724050 13743 19821201 53.7 24 48.9 24 1023.5 24 1021.1 24 8.8 24 5.2 24 8.9 999.9 63.0 46.0 0.45G 999.9 110000 724050 13743 19821202 56.0 19 52.0 19 1026.6 19 1024.2 19 3.8 19 3.5 19 7.0 999.9 57.9 50.0 0.01C 999.9 110000 724050 13743 19821203 55.1 18 52.1 18 1028.9 18 1026.5 18 2.4 18 4.2 18 4.9 999.9 57.9 53.1 0.00G 999.9 110000 724050 13743 19821204 67.6 16 59.3 16 1018.9 16 1016.5 16 11.1 16 9.0 16 15.0 999.9 75.0* 53.1 0.00G 999.9 010000 724050 13743 19821205 63.7 24 57.7 24 1016.3 24 1013.9 24 12.8 24 6.7 24 11.8 999.9 75.0 55.9 0.00G 999.9 000000 724050 13743 19821206 66.9 21 55.9 21 1012.3 21 1009.9 21 14.3 21 7.7 21 12.8 15.9 72.0 55.9 0.00G 999.9 010000 724050 13743 19821207 53.4 24 30.4 24 1027.9 24 1025.5 24 17.1 24 8.5 24 14.0 22.0 70.0 45.0 0.00G 999.9 000000 724050 13743 19821208 46.2 24 30.5 24 1036.6 24 1034.2 24 14.6 24 3.7 24 5.8 999.9 57.0* 35.1 0.00G 999.9 000000 724050 13743 19821209 43.9 23 28.9 23 1030.3 23 1027.9 23 16.9 23 9.3 23 17.9 26.8 57.0 35.1 0.00G 999.9 000000 724050 13743 19821210 31.1 24 11.3 24 1031.5 24 1029.1 24 15.7 24 7.2 24 11.8 999.9 48.0 21.9 0.00G 999.9 000000 724050 13743 19821211 39.9 23 30.7 23 1018.9 23 1016.5 23 10.0 23 4.7 23 8.9 999.9 42.1 37.0* 0.08G 999.9 110000 724050 13743 19821212 32.3 24 23.8 24 1017.1 24 1014.7 24 7.3 24 11.5 24 17.9 23.9 42.1 26.1 0.33G 5.9 111000 724050 13743 19821213 27.7 23 11.8 23 1025.7 23 1023.3 23 13.1 23 6.3 23 9.9 999.9 39.9 19.9 0.05G 3.9 000000 724050 13743 19821214 30.9 22 18.9 22 1030.3 22 1027.9 22 11.0 22 8.3 22 11.8 999.9 39.9* 19.9 0.00G 2.8 000000 724050 13743 19821215 40.0 24 29.2 24 1027.5 24 1025.0 24 13.4 24 7.5 24 11.8 999.9 53.1* 24.1 0.00G 2.4 010000 724050 13743 19821216 54.2 24 44.6 24 1015.4 24 1013.0 24 10.1 24 8.9 24 16.9 28.0 62.1 32.0 0.69G 999.9 010000 724050 13743 19821217 42.5 24 26.3 24 1018.9 24 1016.5 24 14.8 24 11.8 24 15.9 19.8 46.9* 36.0* 0.50G 999.9 000000 724050 13743 19821218 31.3 24 13.0 24 1023.7 24 1021.5 24 14.2 24 8.2 24 12.8 17.9 45.0 25.0 0.00G 999.9 000000 724050 13743 19821219 31.6 24 24.1 24 1018.3 24 1015.9 24 7.6 23 4.1 24 8.9 999.9 37.9 25.0 0.00G 999.9 101000 724050 13743 19821220 37.5 24 28.2 24 1008.0 24 1005.6 24 7.9 24 7.5 24 17.9 22.9 44.1 27.0 0.10G 999.9 111000 724050 13743 19821221 39.2 23 21.3 23 1014.1 23 1011.7 23 15.8 23 9.5 23 21.0 25.8 46.0* 30.9 0.00G 999.9 000000 724050 13743 19821222 39.8 23 21.9 23 1025.5 23 1023.1 23 14.5 23 6.0 23 10.9 999.9 46.0 32.9 0.00D 999.9 000000 724050 13743 19821223 41.6 24 29.2 24 1025.7 24 1023.3 24 12.1 24 5.3 24 9.9 999.9 50.0* 33.1 0.00D 999.9 010000 724050 13743 19821224 48.1 22 38.9 22 1025.8 22 1023.3 22 10.8 22 4.6 22 11.8 999.9 64.9* 35.1 0.00G 999.9 000000 724050 13743 19821225 55.8 24 49.7 24 1026.7 24 1024.3 24 11.8 24 7.8 24 12.8 17.9 70.0* 35.1 0.00G 999.9 100000 724050 13743 19821226 62.0 24 51.2 24 1022.0 24 1019.6 24 13.7 24 9.7 24 15.0 18.8 70.0 48.0 0.02G 999.9 010000 724050 13743 19821227 49.4 24 37.6 24 1029.9 24 1027.5 24 12.6 24 6.2 24 11.8 999.9 66.9 35.1 0.01G 999.9 010000 724050 13743 19821228 53.0 24 48.3 24 1020.2 24 1017.8 24 5.8 24 7.0 24 16.9 21.0 70.0* 44.1 0.00D 999.9 110000 724050 13743 19821229 59.0 23 45.7 23 1012.3 23 1009.9 23 13.3 23 7.5 23 14.0 18.8 70.0 46.0 0.05G 999.9 010000 724050 13743 19821230 38.6 24 21.7 24 1026.2 24 1023.7 24 14.7 24 6.3 24 10.9 999.9 48.0* 33.1 0.00D 999.9 000000 724050 13743 19821231 38.8 23 22.8 23 1028.4 23 1026.0 23 12.6 23 4.3 23 7.0 999.9 43.0* 33.1 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/1998/0000755000175000017500000000000014302004506015112 5ustar nileshnileshfluids-1.0.22/tests/gsod/1998/724050-13743.op0000644000175000017500000014327214302004506016703 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19980101 26.6 24 7.9 24 1031.4 24 1029.3 24 13.9 24 9.2 24 15.0 22.0 39.2 17.8 0.00G 999.9 000000 724050 13743 19980102 40.9 24 20.2 24 1027.1 24 1024.9 23 12.1 24 9.1 24 15.0 16.9 57.6* 32.5* 0.00C 999.9 000000 724050 13743 19980103 47.7 24 27.4 24 1026.7 24 1024.6 23 12.5 24 7.9 24 11.1 999.9 62.4* 39.0* 0.00G 999.9 000000 724050 13743 19980104 50.3 24 40.3 24 1026.5 24 1024.4 21 10.6 24 5.4 24 10.1 999.9 65.7* 38.1* 0.00G 999.9 000000 724050 13743 19980105 48.7 24 43.5 24 1027.0 24 1024.8 22 10.5 24 3.9 24 10.1 999.9 67.1 36.9 0.00G 999.9 000000 724050 13743 19980106 55.2 24 53.0 24 1021.5 24 1019.1 24 8.4 24 8.3 24 11.1 999.9 65.1 37.4 0.00G 999.9 110000 724050 13743 19980107 60.1 24 59.8 24 1015.9 24 1013.9 23 4.5 24 6.9 24 10.1 999.9 63.3* 54.9* 0.01G 999.9 110000 724050 13743 19980108 62.7 24 61.2 24 1004.7 24 1002.6 22 9.3 24 11.9 24 15.0 999.9 68.9 54.3 0.13G 999.9 110000 724050 13743 19980109 58.9 24 51.7 24 1002.9 24 1000.7 24 13.6 24 11.2 24 18.1 26.0 68.9 54.0 0.11G 999.9 000000 724050 13743 19980110 45.8 24 30.6 24 1017.8 24 1015.8 22 12.5 24 7.8 24 20.0 22.0 63.1 37.0 0.07G 999.9 000000 724050 13743 19980111 44.0 24 31.7 24 1020.7 24 1018.4 22 10.8 24 5.1 24 10.1 999.9 52.2* 36.9* 0.00G 999.9 000000 724050 13743 19980112 41.0 24 23.9 24 1024.3 24 1022.2 24 12.1 24 5.2 24 10.1 999.9 52.3 36.1 0.00G 999.9 011000 724050 13743 19980113 44.1 24 38.1 24 1020.8 24 1018.6 20 9.7 24 8.4 24 14.0 23.9 52.5* 38.1* 0.10G 999.9 110000 724050 13743 19980114 34.1 24 16.6 24 1028.9 24 1026.5 23 14.3 24 9.7 24 22.0 999.9 53.1 28.0 0.02G 999.9 000000 724050 13743 19980115 33.3 24 24.9 24 1022.9 24 1020.7 23 9.4 24 7.6 24 12.0 999.9 39.4* 30.6* 0.15G 0.4 111000 724050 13743 19980116 39.6 24 34.6 24 1005.4 24 1003.2 22 6.8 24 10.5 24 15.9 999.9 44.6* 35.6* 0.60G 999.9 110000 724050 13743 19980117 41.2 24 35.8 24 1010.7 24 1008.3 21 11.0 24 7.9 24 14.0 999.9 45.5* 38.8* 0.00G 999.9 010000 724050 13743 19980118 38.9 24 31.5 24 1014.8 24 1012.6 24 11.5 24 7.5 24 13.0 999.9 45.5 34.2 0.09G 999.9 110000 724050 13743 19980119 37.7 24 32.0 24 1016.1 24 1014.0 20 10.1 24 4.4 24 8.0 999.9 43.0 34.2 0.04G 999.9 111000 724050 13743 19980120 36.6 24 26.8 24 1017.2 24 1014.9 23 10.3 24 10.1 24 15.0 999.9 40.3* 32.7* 0.08G 999.9 111000 724050 13743 19980121 34.4 24 20.2 24 1024.4 24 1022.2 22 14.4 24 7.6 24 11.1 999.9 40.8 28.9 0.00G 999.9 000000 724050 13743 19980122 36.2 24 26.6 24 1026.2 24 1024.0 24 12.7 24 5.5 24 8.0 999.9 41.4 28.9 0.00G 999.9 000000 724050 13743 19980123 41.9 24 40.5 24 1019.9 24 1017.3 23 3.7 24 7.0 24 12.0 999.9 51.8* 35.6* 1.70G 999.9 110000 724050 13743 19980124 42.3 24 38.1 24 1010.2 24 1007.9 23 10.6 24 9.5 24 15.0 20.0 50.0* 35.6* 0.18G 999.9 111000 724050 13743 19980125 37.7 24 26.7 24 1015.3 24 1012.9 22 9.1 24 11.5 24 17.1 22.9 50.7 33.3 0.14G 999.9 111000 724050 13743 19980126 37.0 24 25.5 24 1026.8 24 1024.7 23 12.5 24 4.8 24 11.1 999.9 44.8 29.8 0.00G 999.9 000000 724050 13743 19980127 37.5 24 31.2 24 1026.0 24 1024.1 21 10.8 24 7.2 24 13.0 999.9 44.6 29.8 0.00G 999.9 110000 724050 13743 19980128 38.9 24 37.3 24 1008.7 24 1006.4 24 6.1 24 17.5 24 22.9 29.9 43.3 30.7 1.73G 999.9 110000 724050 13743 19980129 43.9 24 35.2 24 1010.2 24 1008.2 23 13.1 24 7.6 24 13.0 999.9 55.2 36.1 0.34G 999.9 010000 724050 13743 19980130 44.5 24 33.3 24 1008.2 24 1005.9 21 12.5 24 9.5 23 15.0 21.0 55.4 36.1 0.00G 999.9 000000 724050 13743 19980131 39.0 24 25.0 24 1015.1 24 1013.2 19 11.5 24 11.5 24 15.0 999.9 47.7 33.6 0.00G 999.9 000000 724050 13743 19980201 37.0 24 22.9 24 1023.2 24 1020.9 24 10.6 24 5.4 24 10.1 999.9 46.9 28.0 0.00D 999.9 000000 724050 13743 19980202 38.6 24 29.1 24 1024.5 24 1022.2 24 9.9 24 4.7 24 10.1 999.9 48.9 28.0 0.00G 999.9 000000 724050 13743 19980203 42.8 24 35.4 24 1021.6 24 1019.3 22 8.8 24 4.1 24 19.0 999.9 48.9 28.9 0.00G 999.9 010000 724050 13743 19980204 39.3 24 34.3 24 1010.5 24 1008.2 24 4.9 24 18.8 24 30.9 42.0 46.0 37.0 0.50G 999.9 110000 724050 13743 19980205 39.6 24 37.0 24 1000.4 24 998.2 24 4.3 24 15.9 24 26.0 36.9 42.1 37.0 1.84G 999.9 110000 724050 13743 19980206 39.6 24 33.2 24 1010.0 24 1007.7 24 8.1 24 7.6 24 15.0 19.0 44.1 36.0 0.13G 999.9 111000 724050 13743 19980207 38.8 24 28.6 24 1015.2 24 1012.9 24 8.0 24 7.4 24 13.0 999.9 44.6* 35.1* 0.05G 999.9 111000 724050 13743 19980208 41.1 24 23.3 24 1014.9 24 1012.5 24 9.9 24 10.6 24 14.0 999.9 51.1 34.0 0.01G 999.9 000000 724050 13743 19980209 37.9 24 27.4 24 1020.6 24 1018.3 24 9.4 24 3.1 24 6.0 999.9 51.1 28.0 0.00G 999.9 000000 724050 13743 19980210 40.1 24 30.3 24 1023.7 24 1021.3 24 8.9 24 3.7 24 8.0 999.9 54.0 28.0 0.00G 999.9 100000 724050 13743 19980211 43.0 24 37.2 24 1019.7 24 1017.4 24 8.2 24 4.0 24 8.9 999.9 54.0 30.0 0.00G 999.9 110000 724050 13743 19980212 51.2 24 44.2 24 1003.8 24 1001.5 24 7.8 24 8.3 24 21.0 28.9 57.9 34.0 0.45G 999.9 110000 724050 13743 19980213 41.9 24 25.2 24 1015.3 24 1013.2 22 9.9 24 11.1 24 25.1 32.1 48.0 34.0 0.02G 999.9 000000 724050 13743 19980214 38.0 24 23.6 24 1020.4 24 1018.1 24 9.5 24 9.6 24 15.0 20.0 48.0 34.0 0.00G 999.9 001000 724050 13743 19980215 34.2 24 19.7 24 1030.5 24 1028.2 24 9.9 24 5.0 24 12.0 999.9 42.1 27.0 0.00G 999.9 000000 724050 13743 19980216 35.4 24 25.7 24 1031.9 24 1029.6 24 9.9 24 5.9 24 13.0 999.9 43.0 27.0 0.00G 999.9 010000 724050 13743 19980217 45.2 24 41.8 24 1016.9 24 1014.8 23 7.2 24 14.1 24 22.9 30.9 53.6* 39.9* 0.01G 999.9 110000 724050 13743 19980218 52.4 24 48.9 24 1000.8 24 998.5 24 8.2 24 6.7 24 14.0 20.0 57.0 41.0 0.89G 999.9 110010 724050 13743 19980219 50.1 24 42.2 24 1007.3 24 1005.0 24 8.9 24 7.4 24 15.9 22.0 57.0 45.0 0.06G 999.9 110000 724050 13743 19980220 45.2 24 39.0 24 1009.4 24 1007.1 24 9.3 24 3.3 24 10.1 999.9 55.0 39.0 0.00G 999.9 110000 724050 13743 19980221 48.2 24 34.2 24 1011.2 24 1008.9 24 9.9 24 10.8 24 18.1 27.0 51.1 39.0 0.06G 999.9 000000 724050 13743 19980222 46.7 24 30.6 24 1020.0 24 1017.7 24 9.9 24 6.7 24 13.0 15.9 52.0 43.0 0.00G 999.9 000000 724050 13743 19980223 42.9 24 36.5 24 1010.8 24 1008.5 24 6.9 24 11.7 24 21.0 32.1 46.0* 39.2* 0.00G 999.9 110000 724050 13743 19980224 41.1 24 35.6 24 998.7 24 996.4 24 7.1 24 18.5 24 28.0 40.0 46.0 35.1 1.18G 999.9 110000 724050 13743 19980225 47.4 24 29.3 24 1008.1 24 1005.8 24 9.9 24 19.1 24 28.0 39.0 55.9 35.1 0.22G 999.9 010000 724050 13743 19980226 48.3 24 30.9 24 1016.5 24 1014.1 23 9.9 24 8.4 24 13.0 21.0 60.1 39.0 0.00G 999.9 000000 724050 13743 19980227 48.4 24 35.4 24 1012.7 24 1010.0 22 9.9 24 2.6 24 10.1 999.9 61.0 37.0 0.00G 999.9 000000 724050 13743 19980228 53.2 24 46.1 24 1008.9 24 1006.5 24 9.0 24 3.7 24 8.9 18.1 62.6* 46.4* 0.00G 999.9 100000 724050 13743 19980301 49.8 24 45.0 24 1008.4 24 1006.1 24 7.7 24 3.9 24 13.0 999.9 62.1 46.0 0.05G 999.9 110000 724050 13743 19980302 47.7 24 43.1 24 1005.1 24 1002.8 24 8.0 24 3.0 24 12.0 999.9 55.0 43.0 0.02G 999.9 110000 724050 13743 19980303 41.3 24 33.0 24 1002.7 24 1000.3 23 8.9 24 10.8 24 16.9 22.9 54.0 36.0 0.58G 999.9 111000 724050 13743 19980304 41.6 24 26.0 24 1010.6 24 1008.3 24 9.9 24 7.1 24 12.0 18.1 50.0 33.1 0.01G 999.9 000000 724050 13743 19980305 41.9 24 28.1 24 1016.4 24 1014.1 24 9.9 24 6.3 24 11.1 999.9 50.0 33.1 0.00G 999.9 010000 724050 13743 19980306 41.0 24 28.5 24 1022.7 24 1020.3 24 10.0 24 5.0 24 8.9 999.9 51.1 32.0 0.00D 999.9 000000 724050 13743 19980307 46.7 24 39.5 24 1021.3 24 1019.0 24 9.3 24 7.0 24 12.0 999.9 55.0 32.0 0.00G 999.9 000000 724050 13743 19980308 46.8 24 45.7 24 1016.8 24 1014.5 24 5.4 24 9.8 24 15.9 21.0 55.0 41.0 0.21G 999.9 110000 724050 13743 19980309 55.5 24 50.8 24 999.8 24 997.5 24 7.3 24 10.7 24 22.9 28.0 71.1* 44.6* 1.44G 999.9 110010 724050 13743 19980310 44.9 24 25.4 24 1007.3 24 1005.0 24 9.9 24 15.9 24 22.9 35.0 62.1* 35.1* 0.06G 999.9 010000 724050 13743 19980311 29.1 24 7.3 24 1024.4 24 1022.1 24 9.9 24 13.0 24 19.0 27.0 34.0* 24.1* 0.00G 999.9 000000 724050 13743 19980312 28.2 24 4.9 24 1028.6 24 1026.3 23 9.9 24 13.2 24 18.1 22.0 37.9 19.9 0.00G 999.9 000000 724050 13743 19980313 31.7 24 10.8 24 1030.6 24 1028.3 22 9.9 24 7.3 24 14.0 21.0 39.2* 23.0* 0.00G 999.9 000000 724050 13743 19980314 43.3 24 20.4 24 1017.5 24 1015.2 24 9.9 24 13.5 24 24.1 33.0 57.0 23.0 0.00G 999.9 000000 724050 13743 19980315 39.5 24 17.6 24 1024.5 24 1022.1 23 9.9 24 10.8 24 15.9 26.0 57.0 33.1 0.00G 999.9 000000 724050 13743 19980316 37.9 24 19.9 24 1031.9 24 1029.5 23 9.9 24 4.9 23 12.0 999.9 46.0 32.0 0.00G 999.9 000000 724050 13743 19980317 37.9 24 24.5 24 1033.8 24 1031.5 24 9.9 24 4.8 24 13.0 999.9 44.1 32.0 0.00G 999.9 011000 724050 13743 19980318 40.3 24 36.7 24 1026.5 24 1024.1 24 5.1 24 4.7 24 8.9 999.9 44.6* 37.0* 0.57G 999.9 110000 724050 13743 19980319 48.0 24 45.3 24 1014.1 24 1011.7 24 4.8 24 3.4 24 8.0 999.9 59.0 37.0 0.81G 999.9 110000 724050 13743 19980320 45.9 24 44.7 24 1009.3 24 1007.0 24 3.1 24 7.1 24 15.9 999.9 50.0* 44.1* 0.62G 999.9 110010 724050 13743 19980321 41.5 24 39.1 24 1000.5 24 998.2 24 4.9 24 12.7 24 18.1 25.1 46.9 39.0 1.39G 999.9 110010 724050 13743 19980322 38.6 24 30.7 24 1003.8 24 1001.6 24 9.0 24 11.2 24 17.1 23.9 44.1 35.1 0.16G 999.9 111000 724050 13743 19980323 41.4 24 23.3 24 1015.0 24 1012.7 23 9.9 24 8.4 24 15.9 21.0 51.1 30.9 0.00G 999.9 000000 724050 13743 19980324 42.0 24 26.2 24 1021.8 24 1019.5 24 9.9 24 4.8 24 12.0 15.0 51.1 30.9 0.00G 999.9 000000 724050 13743 19980325 42.0 24 28.4 24 1032.9 24 1030.4 23 9.7 24 6.3 24 12.0 999.9 52.0 30.9 0.00G 999.9 000000 724050 13743 19980326 54.3 24 39.2 24 1029.3 24 1026.9 24 9.9 24 12.7 24 21.0 26.0 73.0 30.9 0.00G 999.9 010000 724050 13743 19980327 65.4 24 50.2 24 1020.9 24 1018.5 23 9.9 24 11.2 24 15.0 20.0 81.0 43.0 0.00G 999.9 000000 724050 13743 19980328 68.2 24 51.7 24 1016.3 24 1013.9 24 9.9 24 14.4 24 22.0 28.9 81.0 53.1 0.00G 999.9 000000 724050 13743 19980329 71.6 24 52.7 24 1013.9 24 1011.6 24 9.9 24 9.5 24 15.0 16.9 84.9 57.0 0.00G 999.9 000000 724050 13743 19980330 70.9 24 55.1 24 1013.8 24 1011.0 14 9.9 24 5.9 24 15.0 999.9 87.1* 57.9* 0.00G 999.9 000000 724050 13743 19980331 72.2 24 56.3 24 1012.3 24 1010.0 24 9.9 24 12.6 24 22.0 25.1 87.1 55.9 0.00G 999.9 000000 724050 13743 19980401 70.3 24 60.8 24 1008.9 24 1006.5 23 9.9 24 13.4 24 20.0 29.9 82.0 63.0 0.00G 999.9 010000 724050 13743 19980402 67.1 24 50.1 24 1007.8 24 1005.7 23 9.7 24 10.9 24 29.9 39.0 77.0 55.9 0.76G 999.9 110010 724050 13743 19980403 56.9 24 36.2 24 1012.8 24 1010.5 24 9.9 24 6.5 24 12.0 999.9 77.0 46.0 0.00G 999.9 000000 724050 13743 19980404 50.1 24 42.6 24 1004.4 24 1002.1 24 8.2 24 12.2 24 20.0 23.9 63.0 45.0 0.17G 999.9 110000 724050 13743 19980405 46.8 24 28.2 24 1010.8 24 1008.5 23 9.9 24 14.5 24 22.0 26.0 57.0 39.9 0.57G 999.9 000000 724050 13743 19980406 51.7 24 24.6 24 1011.7 24 1009.4 24 9.9 24 10.3 24 18.1 22.0 62.1 39.9 0.00G 999.9 000000 724050 13743 19980407 53.2 24 33.4 24 1014.0 24 1011.6 24 9.9 24 4.1 24 8.9 999.9 64.0 37.9 0.00G 999.9 000000 724050 13743 19980408 58.7 24 47.5 24 1009.4 24 1007.1 24 9.9 24 4.7 24 11.1 999.9 77.0 37.9 0.00G 999.9 010000 724050 13743 19980409 54.7 24 51.9 24 1000.2 24 997.9 24 6.5 24 9.8 24 25.1 33.0 77.0 48.0 0.15G 999.9 110010 724050 13743 19980410 48.2 24 39.1 24 1003.8 24 1001.5 24 9.9 24 8.8 24 13.0 15.9 59.0 44.1 1.02G 999.9 010000 724050 13743 19980411 50.9 24 29.7 24 1016.5 24 1014.2 24 9.9 24 7.1 24 11.1 15.9 61.0* 39.9* 0.13G 999.9 000000 724050 13743 19980412 54.0 24 33.5 24 1022.8 24 1020.5 22 9.9 24 3.9 24 8.9 999.9 66.0 39.0 0.00G 999.9 000000 724050 13743 19980413 55.4 24 38.6 24 1023.4 24 1021.1 24 9.9 24 5.2 24 10.1 999.9 68.2* 43.0* 0.00G 999.9 000000 724050 13743 19980414 58.0 24 46.0 24 1013.4 24 1011.0 24 9.9 24 9.9 24 15.9 22.9 68.0 43.0 0.00G 999.9 010000 724050 13743 19980415 62.6 24 50.9 24 1009.5 24 1007.2 24 8.0 24 6.7 24 13.0 20.0 75.9 51.1 0.01G 999.9 100000 724050 13743 19980416 66.2 24 55.9 24 1009.5 24 1007.2 24 8.7 24 8.4 24 21.0 27.0 79.0 51.1 0.00G 999.9 100000 724050 13743 19980417 68.3 24 60.5 24 1008.9 24 1006.6 24 9.1 24 11.9 24 20.0 27.0 79.0 55.9 0.27G 999.9 110010 724050 13743 19980418 55.9 24 39.9 24 1022.4 24 1020.0 24 9.9 24 7.9 24 14.0 19.0 63.0* 50.0* 0.24G 999.9 010000 724050 13743 19980419 52.6 24 46.4 24 1017.9 24 1015.6 24 8.5 24 6.7 24 11.1 999.9 62.1 48.9 0.02G 999.9 110000 724050 13743 19980420 53.7 24 44.5 24 1013.8 24 1011.4 24 9.0 24 9.0 24 17.1 25.1 63.0 46.9 0.58G 999.9 110000 724050 13743 19980421 57.2 24 42.8 24 1020.1 24 1017.8 24 9.7 24 3.6 24 10.1 999.9 68.0 46.9 0.01G 999.9 000000 724050 13743 19980422 57.2 24 44.5 24 1017.8 24 1015.4 24 9.9 24 6.7 24 15.0 19.0 68.0 46.9 0.00G 999.9 000000 724050 13743 19980423 55.9 24 40.8 24 1010.7 24 1008.3 24 6.6 24 5.0 24 12.0 15.9 64.9 48.0 0.00G 999.9 000000 724050 13743 19980424 61.8 24 39.2 24 1008.6 24 1006.3 24 3.7 24 7.6 24 12.0 19.0 72.0 48.0 0.00D 999.9 000000 724050 13743 19980425 65.8 24 43.5 24 1012.6 23 1010.3 23 8.7 24 7.3 24 12.0 14.0 73.9 53.1 0.00D 999.9 000000 724050 13743 19980426 64.7 24 52.7 24 1011.7 24 1009.4 24 9.8 24 6.0 24 15.0 999.9 75.9 57.9 0.00D 999.9 010000 724050 13743 19980427 52.2 24 40.3 24 1017.6 24 1015.1 24 9.0 24 12.5 24 28.9 36.9 60.8* 44.6* 0.14G 999.9 110000 724050 13743 19980428 52.6 24 34.3 24 1026.5 24 1024.2 24 9.9 24 6.3 24 11.1 15.0 64.0 42.1 0.11G 999.9 000000 724050 13743 19980429 57.1 24 45.2 24 1025.7 24 1023.3 24 9.9 24 8.0 24 14.0 18.1 72.0 42.1 0.00G 999.9 000000 724050 13743 19980430 62.9 24 53.6 24 1018.0 24 1015.7 24 9.9 24 7.0 24 14.0 999.9 70.0 57.0 0.00G 999.9 000000 724050 13743 19980501 62.1 24 58.3 24 1009.2 24 1007.0 23 8.4 24 5.3 24 13.0 999.9 70.0 57.0 0.00G 999.9 110000 724050 13743 19980502 60.5 24 58.3 24 1001.7 24 999.5 23 8.6 24 6.7 24 15.0 999.9 68.0 57.0 0.53G 999.9 110010 724050 13743 19980503 61.1 24 56.7 24 1005.2 24 1002.9 24 7.6 24 5.6 24 25.1 33.0 73.9 53.1 0.49G 999.9 110010 724050 13743 19980504 62.8 24 59.2 24 1008.0 24 1005.8 24 8.3 24 6.4 24 12.0 999.9 73.9 53.1 0.63G 999.9 110000 724050 13743 19980505 62.3 24 58.1 24 1010.3 24 1008.0 23 9.8 24 6.3 24 15.9 22.9 71.1 57.9 0.01G 999.9 110010 724050 13743 19980506 62.8 24 56.7 24 1013.6 24 1011.3 24 7.3 24 4.9 24 12.0 999.9 72.0* 55.4* 0.21G 999.9 110010 724050 13743 19980507 63.1 24 60.0 24 1012.6 24 1010.3 24 4.8 24 6.4 24 14.0 18.1 73.0 55.9 0.00G 999.9 110010 724050 13743 19980508 64.0 24 61.5 24 1002.6 24 1000.3 24 6.7 24 7.5 24 14.0 999.9 73.0 57.0 0.75G 999.9 110000 724050 13743 19980509 61.2 24 57.8 24 1004.0 24 1001.8 24 7.4 24 12.6 24 22.9 32.1 70.0 57.0 0.30G 999.9 110000 724050 13743 19980510 61.0 24 56.9 24 1006.9 24 1004.6 24 8.6 24 10.0 24 17.1 22.0 69.1 57.0 0.11G 999.9 110000 724050 13743 19980511 55.9 24 54.0 24 1006.2 24 1003.9 24 7.2 24 9.7 24 15.9 999.9 60.8* 53.6* 0.13G 999.9 110000 724050 13743 19980512 53.5 24 52.2 24 1011.0 24 1008.6 24 5.4 24 9.7 24 15.9 18.1 55.4* 51.8* 0.33G 999.9 110000 724050 13743 19980513 58.2 24 49.1 24 1018.9 24 1016.6 24 9.9 24 7.3 24 13.0 999.9 70.0* 51.8* 0.40G 999.9 010000 724050 13743 19980514 60.3 24 50.6 24 1020.7 24 1018.4 24 6.8 24 3.6 24 8.9 999.9 78.1 50.0 0.00G 999.9 100000 724050 13743 19980515 67.5 23 54.6 23 1018.5 23 1016.3 23 9.4 23 3.6 23 8.0 999.9 86.0* 54.0* 0.00G 999.9 000000 724050 13743 19980516 73.1 24 60.9 24 1015.2 24 1012.7 24 9.4 24 5.1 24 11.1 999.9 86.0 54.0 0.00G 999.9 000000 724050 13743 19980517 76.8 24 62.8 24 1015.1 24 1012.8 24 7.5 24 7.0 24 12.0 16.9 86.0 60.1 0.00G 999.9 100000 724050 13743 19980518 75.1 24 54.2 24 1017.6 24 1015.3 24 9.9 24 6.6 24 12.0 15.0 86.0 62.1 0.00G 999.9 000000 724050 13743 19980519 79.5 24 56.0 24 1014.1 24 1011.8 24 9.9 24 7.9 24 14.0 21.0 91.0 62.1 0.00G 999.9 000000 724050 13743 19980520 80.0 24 61.4 24 1010.2 24 1007.9 24 9.8 24 7.7 24 14.0 22.9 91.0 66.9 0.00G 999.9 000000 724050 13743 19980521 77.0 24 62.1 24 1007.7 24 1005.4 24 9.8 24 8.0 24 18.1 25.1 88.0 69.1 0.00G 999.9 000000 724050 13743 19980522 65.5 24 44.0 24 1012.2 24 1009.9 23 9.9 24 9.8 24 14.0 21.0 84.0 55.0 0.00G 999.9 000000 724050 13743 19980523 62.0 24 46.2 24 1014.9 24 1012.6 24 9.9 24 6.7 24 12.0 999.9 73.0 55.0 0.00G 999.9 010000 724050 13743 19980524 62.9 24 53.7 24 1015.7 24 1013.4 23 9.9 24 4.7 24 12.0 999.9 71.1 53.1 0.00G 999.9 010000 724050 13743 19980525 70.9 24 60.4 24 1011.8 24 1009.5 23 7.3 24 8.4 24 21.0 33.0 86.0 53.1 0.17G 999.9 110010 724050 13743 19980526 73.7 24 56.9 24 1012.0 24 1009.7 24 9.9 24 7.0 24 15.0 999.9 86.0 61.0 0.08G 999.9 000000 724050 13743 19980527 67.9 24 59.5 24 1016.9 24 1014.7 22 7.1 24 3.3 24 8.0 999.9 77.0 64.0 0.01G 999.9 110000 724050 13743 19980528 68.6 24 62.0 24 1018.2 24 1015.9 24 4.5 24 5.0 24 11.1 999.9 79.0* 57.2* 0.00D 999.9 100000 724050 13743 19980529 74.0 24 65.6 24 1016.2 24 1013.9 24 5.1 24 7.7 24 13.0 999.9 84.9 57.9 0.00G 999.9 100000 724050 13743 19980530 79.2 24 67.1 24 1014.4 24 1012.1 24 6.6 24 4.6 24 8.0 999.9 90.0 64.9 0.00G 999.9 100000 724050 13743 19980531 79.4 24 68.9 24 1009.9 24 1007.6 24 6.8 24 11.5 24 19.0 22.0 90.0 68.0 0.00G 999.9 100000 724050 13743 19980601 75.6 24 58.0 24 1004.7 24 1002.5 24 9.2 24 11.1 24 18.1 23.9 89.1 68.0 0.04G 999.9 010010 724050 13743 19980602 71.3 24 56.5 24 1006.5 24 1004.2 24 9.9 24 7.5 24 15.0 21.0 82.9 59.0 0.00D 999.9 010010 724050 13743 19980603 72.6 24 58.0 24 1004.4 24 1002.1 24 9.7 24 9.3 24 19.0 25.1 82.9 59.0 0.04G 999.9 110010 724050 13743 19980604 64.0 24 51.3 24 1009.7 24 1007.4 24 9.9 24 7.4 24 14.0 19.0 80.1 57.9 0.02G 999.9 010000 724050 13743 19980605 65.5 24 47.5 24 1008.8 24 1006.5 24 9.4 24 6.9 24 12.0 999.9 72.0 57.0 0.00G 999.9 110000 724050 13743 19980606 62.2 24 47.3 24 1012.0 24 1009.6 22 9.9 24 9.0 24 15.0 21.0 72.0 55.0 0.08G 999.9 000000 724050 13743 19980607 61.4 24 40.7 24 1016.7 24 1014.3 24 9.9 24 10.9 24 20.0 30.9 72.0 52.0 0.00G 999.9 000000 724050 13743 19980608 64.9 24 42.2 24 1019.9 24 1017.6 24 9.9 24 9.9 24 17.1 25.1 75.9 52.0 0.00G 999.9 000000 724050 13743 19980609 63.4 24 47.0 24 1022.7 24 1020.4 24 9.3 24 5.0 24 13.0 999.9 75.9 54.0 0.00G 999.9 110000 724050 13743 19980610 59.7 24 57.4 24 1019.9 24 1017.6 24 5.6 24 6.2 24 11.1 999.9 73.9 54.0 0.31G 999.9 110000 724050 13743 19980611 63.8 24 60.8 24 1018.9 24 1016.6 24 5.0 24 5.0 24 7.0 999.9 69.8* 60.8* 0.03G 999.9 110000 724050 13743 19980612 69.7 24 67.1 24 1013.2 24 1010.9 24 4.1 24 5.6 24 11.1 999.9 81.0 61.0 0.78G 999.9 110010 724050 13743 19980613 71.8 24 67.6 24 1004.7 24 1002.4 24 5.6 24 5.5 24 28.9 47.0 82.0 64.0 0.05G 999.9 110010 724050 13743 19980614 71.2 24 59.1 24 1001.5 24 999.3 23 9.9 24 7.8 24 15.0 19.0 82.0 62.1 0.39G 999.9 000000 724050 13743 19980615 70.2 24 64.6 24 1000.4 24 998.1 24 7.2 24 6.2 24 28.9 43.9 82.9 62.1 0.08G 999.9 110110 724050 13743 19980616 73.3 24 66.6 24 1003.6 24 1001.3 24 7.2 24 7.4 24 15.0 999.9 87.1 64.0 1.27G 999.9 110010 724050 13743 19980617 73.8 24 63.2 24 1011.2 24 1008.8 24 9.7 24 7.0 24 12.0 19.0 87.1 64.9 0.06G 999.9 000000 724050 13743 19980618 78.7 24 62.8 24 1014.2 24 1011.9 23 9.9 24 7.1 24 14.0 999.9 87.1 64.9 0.00G 999.9 000000 724050 13743 19980619 75.4 24 66.2 24 1012.0 24 1009.6 24 7.6 24 5.1 24 11.1 999.9 87.1 69.1 0.00G 999.9 110000 724050 13743 19980620 79.0 24 67.5 24 1010.5 24 1008.2 24 9.1 24 7.3 24 12.0 15.9 89.1 69.1 0.17G 999.9 110000 724050 13743 19980621 80.8 24 64.8 24 1014.4 24 1012.1 24 9.9 24 5.0 24 8.9 999.9 89.1 70.0 0.15G 999.9 000000 724050 13743 19980622 76.8 24 71.2 24 1018.1 24 1015.8 24 4.5 24 5.3 24 8.9 999.9 89.1 70.0 0.00G 999.9 110000 724050 13743 19980623 78.2 24 72.4 24 1017.3 24 1015.1 24 2.6 24 4.3 24 8.9 999.9 86.0 72.0 0.08G 999.9 110000 724050 13743 19980624 77.8 24 71.1 24 1017.0 24 1014.7 24 4.7 24 6.1 24 15.0 19.0 86.0* 71.6* 0.82G 999.9 110010 724050 13743 19980625 81.2 24 73.1 24 1018.2 24 1015.8 24 4.1 24 6.2 24 11.1 999.9 90.0 72.0 0.00G 999.9 100000 724050 13743 19980626 84.5 24 73.2 24 1012.8 24 1010.4 24 4.6 24 7.8 24 13.0 16.9 95.0 73.0 0.00G 999.9 100000 724050 13743 19980627 83.7 24 66.8 24 1008.5 24 1006.2 24 9.7 24 7.8 24 15.9 22.9 95.0 75.0 0.00G 999.9 010010 724050 13743 19980628 73.3 24 66.4 24 1014.6 24 1012.3 24 9.5 24 7.0 24 14.0 20.0 88.0 68.0 0.18G 999.9 110010 724050 13743 19980629 74.6 24 67.3 24 1014.8 24 1012.3 22 9.9 24 8.2 24 13.0 999.9 84.0 68.0 0.15G 999.9 000000 724050 13743 19980630 81.3 23 70.2 23 1004.3 23 1001.9 23 9.8 23 9.8 23 23.9 33.0 90.0 69.1 0.00G 999.9 000000 724050 13743 19980701 74.2 24 59.5 24 1006.2 24 1004.2 24 9.4 24 10.8 24 19.0 22.0 90.0 66.0 0.02G 999.9 010000 724050 13743 19980702 76.6 24 54.8 24 1015.3 24 1013.0 24 9.7 24 6.7 24 11.1 999.9 84.9 64.9 0.00G 999.9 000000 724050 13743 19980703 76.7 24 56.8 24 1018.0 24 1015.7 24 9.4 24 4.2 24 8.0 999.9 87.1 64.0 0.00G 999.9 000000 724050 13743 19980704 77.9 24 64.9 24 1014.6 24 1012.1 23 6.0 24 6.4 24 12.0 999.9 87.1 64.0 0.00G 999.9 010000 724050 13743 19980705 77.9 24 57.0 24 1014.5 24 1012.3 23 8.7 24 8.5 24 13.0 15.0 87.1* 71.1* 0.00G 999.9 000000 724050 13743 19980706 75.4 24 58.1 24 1019.5 24 1017.2 24 9.9 24 6.1 24 11.1 999.9 87.1 64.9 0.00G 999.9 000000 724050 13743 19980707 76.6 24 62.1 24 1018.7 24 1016.4 24 9.7 24 7.9 24 11.1 999.9 89.1* 66.9* 0.00G 999.9 000000 724050 13743 19980708 72.0 24 66.1 24 1013.3 24 1011.0 24 6.3 24 7.2 24 14.0 19.0 80.1* 66.2* 0.40G 999.9 110000 724050 13743 19980709 72.7 24 64.7 24 1012.7 24 1010.4 24 7.1 24 6.7 24 12.0 999.9 84.0* 64.4* 0.45G 999.9 100000 724050 13743 19980710 79.6 24 65.2 24 1011.5 24 1009.2 24 6.7 24 7.9 24 14.0 16.9 88.0 64.9 0.00G 999.9 100000 724050 13743 19980711 74.0 24 53.5 24 1015.5 24 1013.1 24 9.9 24 7.8 24 14.0 15.9 88.0 64.0 0.00G 999.9 000000 724050 13743 19980712 74.0 24 53.9 24 1016.4 24 1014.0 24 9.9 24 4.6 24 8.9 999.9 84.0 62.1 0.00G 999.9 000000 724050 13743 19980713 75.8 24 62.7 24 1017.2 24 1014.9 23 9.2 24 7.3 24 13.0 999.9 86.0 62.1 0.00G 999.9 000000 724050 13743 19980714 77.4 24 63.7 24 1018.1 24 1015.8 24 9.7 24 10.1 24 12.0 999.9 86.0 66.9 0.00G 999.9 000000 724050 13743 19980715 77.6 24 67.5 24 1018.1 24 1015.7 24 9.9 24 6.9 24 10.1 999.9 86.0 70.0 0.00G 999.9 000000 724050 13743 19980716 80.4 23 69.7 23 1015.5 23 1013.1 23 9.0 23 5.2 23 11.1 999.9 91.0* 73.0* 0.00G 999.9 000000 724050 13743 19980717 82.5 24 70.4 24 1010.5 24 1007.9 23 5.5 24 6.0 24 8.9 999.9 91.9 73.0 0.00G 999.9 000000 724050 13743 19980718 80.8 24 59.8 24 1012.4 24 1010.0 24 9.2 24 9.5 24 13.0 16.9 91.9 73.0 0.01G 999.9 000000 724050 13743 19980719 78.9 24 65.2 24 1015.6 24 1013.2 24 8.6 24 5.1 24 11.1 999.9 89.1 70.0 0.00G 999.9 000000 724050 13743 19980720 83.7 24 68.7 24 1013.9 24 1011.5 24 7.7 24 7.2 24 12.0 19.0 96.1 70.0 0.00G 999.9 100000 724050 13743 19980721 85.1 24 67.5 24 1016.6 24 1014.2 24 8.0 24 7.1 24 34.0 42.0 96.1 73.0 0.00G 999.9 010010 724050 13743 19980722 84.6 24 70.1 24 1014.5 24 1012.0 23 8.9 24 6.6 24 15.0 999.9 97.0 73.0 0.33G 999.9 000000 724050 13743 19980723 82.7 24 70.7 24 1011.9 24 1009.5 24 8.0 24 7.5 24 20.0 999.9 91.9* 73.4* 0.00G 999.9 110010 724050 13743 19980724 79.8 24 65.5 24 1014.1 24 1011.8 24 9.3 24 7.1 24 11.1 15.9 93.0 73.0 0.14G 999.9 000000 724050 13743 19980725 79.5 24 57.5 24 1018.7 24 1016.3 23 9.9 24 6.8 24 12.0 999.9 89.1 73.0 0.00G 999.9 000000 724050 13743 19980726 76.6 24 64.5 24 1018.6 24 1016.3 24 9.7 24 6.6 24 12.0 999.9 86.0 70.0 0.00G 999.9 010000 724050 13743 19980727 75.7 24 63.5 24 1018.0 24 1015.6 24 9.6 24 7.7 24 14.0 999.9 86.0 66.9 0.03G 999.9 000000 724050 13743 19980728 79.4 24 67.3 24 1014.3 24 1011.9 24 7.8 24 6.8 24 10.1 999.9 91.0 66.9 0.00G 999.9 100000 724050 13743 19980729 82.9 24 67.8 24 1012.1 24 1009.7 24 6.1 24 7.1 24 12.0 16.9 95.0 71.1 0.00G 999.9 100000 724050 13743 19980730 84.3 24 67.5 24 1013.4 24 1011.1 24 6.3 24 4.8 24 10.1 999.9 95.0 73.9 0.00G 999.9 000000 724050 13743 19980731 75.3 23 67.0 23 1014.8 23 1012.5 23 7.2 23 10.2 23 20.0 23.9 93.9 69.1 0.35G 999.9 110010 724050 13743 19980801 74.2 24 55.8 24 1023.8 24 1021.7 24 9.4 24 8.0 24 12.0 999.9 84.0 64.9 0.08G 999.9 000000 724050 13743 19980802 74.3 24 55.9 24 1025.3 24 1023.0 23 9.9 24 5.6 24 10.1 999.9 84.0 63.0 0.00G 999.9 000000 724050 13743 19980803 75.3 24 56.6 24 1022.4 24 1020.1 24 9.9 24 5.5 24 13.0 14.0 88.0 62.1 0.00D 999.9 000000 724050 13743 19980804 77.7 24 59.6 24 1021.9 24 1019.6 22 9.9 24 4.1 24 8.9 999.9 89.1 62.1 0.00C 999.9 000000 724050 13743 19980805 78.0 24 58.0 24 1022.3 24 1019.9 24 9.5 24 6.2 24 12.0 15.0 89.1 66.0 0.00D 999.9 000000 724050 13743 19980806 76.9 24 61.4 24 1022.1 24 1019.8 24 9.9 24 6.3 24 11.1 999.9 89.1 66.0 0.00D 999.9 000000 724050 13743 19980807 77.7 24 66.1 24 1022.7 24 1020.4 24 9.8 24 6.6 24 12.0 999.9 88.0 66.0 0.00D 999.9 000000 724050 13743 19980808 79.1 24 69.9 24 1025.5 24 1023.2 24 9.8 24 8.2 24 13.0 15.0 88.0 69.1 0.00D 999.9 000000 724050 13743 19980809 79.3 24 70.5 24 1023.8 24 1021.5 24 9.7 24 6.3 24 10.1 999.9 89.1 73.0 0.00D 999.9 110000 724050 13743 19980810 78.7 24 72.7 24 1016.2 24 1013.9 24 8.6 24 7.0 24 19.0 23.9 89.1 73.0 0.11D 999.9 110010 724050 13743 19980811 79.1 24 69.7 24 1011.4 24 1009.0 24 8.2 24 6.1 24 13.0 16.9 91.0 71.1 0.25G 999.9 110010 724050 13743 19980812 80.6 24 64.3 24 1015.9 24 1013.6 24 8.1 24 7.5 24 11.1 999.9 91.0 71.1 0.00G 999.9 000000 724050 13743 19980813 77.9 24 60.7 24 1020.0 24 1017.7 23 9.9 24 5.8 24 12.0 999.9 89.1 69.1 0.00D 999.9 000000 724050 13743 19980814 77.4 23 66.5 23 1017.9 23 1016.2 18 9.9 23 9.2 23 12.0 999.9 88.0 69.1 0.00H 999.9 010000 724050 13743 19980815 78.0 24 64.6 24 1015.2 24 1013.1 19 9.9 24 6.6 24 10.1 999.9 86.0 72.0 0.00H 999.9 010000 724050 13743 19980816 77.5 24 66.8 24 1017.0 24 1015.9 8 9.6 24 4.2 24 8.0 999.9 82.0* 73.0* 0.00H 999.9 010000 724050 13743 19980817 78.3 24 71.8 24 1016.6 24 1014.4 23 7.8 24 5.3 24 15.0 22.9 88.0 73.0 0.06G 999.9 110010 724050 13743 19980818 80.2 24 69.3 24 1014.9 24 1012.5 23 6.9 24 6.7 24 14.0 19.0 91.9 71.1 0.28G 999.9 100000 724050 13743 19980819 71.3 24 52.9 24 1019.5 24 1017.0 23 9.9 24 11.6 24 17.1 22.0 91.9 61.0 0.00G 999.9 000000 724050 13743 19980820 69.3 24 49.9 24 1024.7 24 1022.4 24 9.9 24 4.9 24 10.1 14.0 82.0 57.0 0.00D 999.9 000000 724050 13743 19980821 73.9 24 57.8 24 1023.4 24 1021.0 24 9.9 24 6.6 24 11.1 999.9 89.1 57.0 0.00D 999.9 000000 724050 13743 19980822 80.7 24 62.7 24 1018.7 24 1016.4 24 9.2 24 4.1 24 7.0 999.9 93.9 62.1 0.00D 999.9 000000 724050 13743 19980823 82.6 24 69.3 24 1014.6 24 1012.2 24 6.4 24 4.5 24 8.9 999.9 95.0 69.1 0.00D 999.9 100000 724050 13743 19980824 83.8 24 68.7 24 1011.7 24 1009.3 24 5.9 24 6.1 24 11.1 15.9 96.1 72.0 0.00D 999.9 100000 724050 13743 19980825 85.0 24 68.8 24 1011.2 24 1008.9 24 6.8 24 6.3 24 12.0 999.9 97.0 72.0 0.00D 999.9 100000 724050 13743 19980826 83.8 24 71.4 24 1012.3 24 1009.9 23 9.6 24 8.2 24 14.0 999.9 97.0 75.0 0.00D 999.9 000000 724050 13743 19980827 80.4 24 71.7 24 1014.3 24 1011.9 23 8.1 24 12.2 24 18.1 22.0 91.9 75.0 0.00C 999.9 000000 724050 13743 19980828 82.6 24 67.6 24 1013.2 24 1010.9 24 9.4 24 11.9 24 15.0 18.1 93.9 73.9 0.00D 999.9 000000 724050 13743 19980829 82.5 24 69.7 24 1011.8 24 1009.4 24 7.4 24 5.3 24 12.0 999.9 95.0 73.9 0.00D 999.9 100000 724050 13743 19980830 81.9 24 64.8 24 1013.9 24 1011.5 24 7.9 24 5.1 24 10.1 999.9 95.0 72.0 0.00D 999.9 000000 724050 13743 19980831 82.7 23 66.5 23 1013.3 23 1010.9 21 7.1 23 7.5 23 12.0 15.0 93.0 72.0 0.00C 999.9 100000 724050 13743 19980901 78.3 24 60.0 24 1012.9 24 1010.5 23 9.9 24 7.4 24 11.1 999.9 93.0 71.1 0.00D 999.9 000000 724050 13743 19980902 78.1 24 65.9 24 1007.9 24 1005.6 24 8.1 24 8.2 24 12.0 999.9 89.1 71.1 0.00G 999.9 110000 724050 13743 19980903 76.9 24 59.1 24 1009.8 24 1007.4 23 9.7 24 6.2 24 11.1 999.9 89.1 66.9 0.00G 999.9 000000 724050 13743 19980904 80.3 24 62.6 24 1009.0 24 1006.7 24 8.5 24 8.0 24 15.9 20.0 91.0 66.9 0.00G 999.9 000000 724050 13743 19980905 76.7 24 51.3 24 1018.1 24 1015.6 23 9.9 24 7.3 24 12.0 18.1 91.0 66.9 0.00G 999.9 000000 724050 13743 19980906 77.2 24 58.6 24 1017.4 24 1015.1 23 9.6 24 6.3 24 14.0 999.9 93.9 64.0 0.00G 999.9 000000 724050 13743 19980907 82.3 24 62.8 24 1007.8 24 1005.5 24 8.6 24 8.2 24 15.0 22.0 95.0 64.0 0.00G 999.9 000000 724050 13743 19980908 70.0 24 55.2 24 1004.3 24 1002.0 24 8.9 24 11.3 24 21.0 26.0 95.0 63.0 0.34G 999.9 110010 724050 13743 19980909 63.8 24 45.2 24 1011.8 24 1009.6 23 9.9 24 12.4 24 19.0 23.9 75.9 55.0 0.03G 999.9 000000 724050 13743 19980910 66.6 24 47.4 24 1018.0 24 1015.6 23 9.9 24 10.9 24 15.0 20.0 78.1 55.0 0.00G 999.9 000000 724050 13743 19980911 71.5 24 48.7 24 1018.0 24 1015.7 23 9.9 24 6.4 24 11.1 999.9 84.9 57.0 0.00G 999.9 000000 724050 13743 19980912 78.5 24 53.8 24 1013.2 24 1010.9 24 9.9 24 6.6 24 14.0 18.1 95.0 57.0 0.00G 999.9 000000 724050 13743 19980913 81.1 24 59.6 24 1013.7 24 1011.3 24 9.9 24 5.7 24 12.0 999.9 95.0 64.0 0.00G 999.9 010000 724050 13743 19980914 78.5 24 67.4 24 1017.7 24 1015.3 24 7.5 24 7.0 24 12.0 999.9 91.9 69.1 0.00G 999.9 100000 724050 13743 19980915 79.3 24 68.7 24 1018.4 24 1016.1 24 6.7 24 8.7 24 11.1 999.9 93.0 69.1 0.00G 999.9 100000 724050 13743 19980916 82.6 24 67.3 24 1017.0 24 1014.7 22 6.3 24 6.1 24 10.1 999.9 95.0 73.0 0.00G 999.9 100000 724050 13743 19980917 79.4 24 70.1 24 1015.7 24 1013.3 22 5.6 24 7.0 24 10.1 999.9 95.0 73.0 0.01G 999.9 100000 724050 13743 19980918 74.4 24 67.7 24 1016.6 24 1014.3 24 5.9 24 7.5 24 12.0 999.9 86.0 70.0 0.09G 999.9 110010 724050 13743 19980919 73.9 24 66.4 24 1016.4 24 1014.1 23 9.7 24 6.4 24 8.0 999.9 81.0 69.1 0.00G 999.9 000000 724050 13743 19980920 75.3 24 67.8 24 1014.4 24 1012.1 24 6.4 24 4.5 24 8.0 999.9 84.9 69.1 0.00G 999.9 100000 724050 13743 19980921 78.7 24 67.9 24 1012.2 24 1010.0 23 7.5 24 8.0 24 14.0 20.0 91.9 69.1 0.00G 999.9 110000 724050 13743 19980922 75.3 24 69.7 24 1009.2 24 1006.9 24 7.3 24 5.4 24 21.0 27.0 82.4* 69.8* 0.89G 999.9 110010 724050 13743 19980923 66.1 24 47.2 24 1017.2 24 1014.9 24 9.9 24 10.4 24 18.1 20.0 84.0 59.0 0.41G 999.9 000000 724050 13743 19980924 62.3 24 45.9 24 1022.5 24 1020.2 24 9.9 24 5.6 24 11.1 999.9 73.0 51.1 0.00G 999.9 000000 724050 13743 19980925 65.6 24 56.2 24 1020.3 24 1018.0 24 9.7 24 5.4 24 12.0 999.9 73.0 51.1 0.00G 999.9 010000 724050 13743 19980926 73.2 24 65.1 24 1019.2 24 1016.9 24 6.7 24 3.7 24 8.0 999.9 86.0 62.1 0.03G 999.9 100000 724050 13743 19980927 80.2 24 65.2 24 1013.2 24 1011.0 23 7.1 24 8.3 24 15.9 21.0 95.0 63.0 0.00G 999.9 100000 724050 13743 19980928 79.4 24 61.5 24 1010.8 24 1008.4 22 9.9 24 9.2 24 15.9 20.0 95.0 69.1 0.00G 999.9 010010 724050 13743 19980929 68.3 24 51.2 24 1016.4 24 1014.1 24 9.9 24 6.7 24 14.0 15.9 84.9 57.9 0.00G 999.9 000000 724050 13743 19980930 73.2 24 64.7 24 1012.2 24 1009.9 24 8.9 24 8.4 24 16.9 20.0 84.9 57.9 0.03G 999.9 110010 724050 13743 19981001 72.4 24 57.4 24 1009.3 24 1006.8 21 8.8 24 10.2 24 20.0 26.0 84.9 64.9 0.00D 999.9 110010 724050 13743 19981002 59.3 21 30.1 21 1019.0 21 1016.7 21 9.9 21 7.3 21 13.0 15.0 82.0 48.0 0.00G 999.9 000000 724050 13743 19981003 59.2 24 42.3 24 1022.6 24 1020.3 24 9.9 24 5.4 24 8.9 999.9 71.1 48.0 0.00G 999.9 010000 724050 13743 19981004 55.6 24 52.0 24 1023.7 24 1021.3 24 8.6 24 10.9 24 14.0 999.9 66.9 50.0 0.02G 999.9 110000 724050 13743 19981005 57.2 24 53.2 24 1026.1 24 1023.7 24 6.0 24 6.1 24 11.1 999.9 64.4* 53.1* 0.01G 999.9 110000 724050 13743 19981006 64.3 24 55.9 24 1028.3 24 1026.0 24 9.2 24 5.7 24 8.9 999.9 69.1* 60.1* 0.00G 999.9 100000 724050 13743 19981007 64.8 24 56.3 24 1026.8 24 1024.2 24 9.9 24 7.6 24 11.1 18.1 69.1 60.1 0.00G 999.9 000000 724050 13743 19981008 67.5 24 64.3 24 1016.8 24 1014.4 24 8.7 24 9.7 24 15.0 999.9 70.0 62.1 0.05G 999.9 110000 724050 13743 19981009 61.3 24 55.8 24 1015.3 24 1013.0 24 9.8 24 9.8 24 12.0 15.9 66.0* 59.0* 0.50G 999.9 010000 724050 13743 19981010 61.0 24 53.1 24 1014.8 24 1012.5 24 9.9 24 10.9 24 14.0 19.0 68.0* 57.0* 0.00G 999.9 000000 724050 13743 19981011 62.8 24 49.4 24 1018.4 24 1016.2 24 9.9 24 9.6 24 15.0 21.0 73.0* 55.0* 0.00G 999.9 000000 724050 13743 19981012 62.7 24 54.2 24 1022.0 24 1019.6 24 9.9 24 5.3 24 10.1 19.0 73.9 55.0 0.00G 999.9 010000 724050 13743 19981013 61.8 24 56.7 24 1019.2 24 1016.9 24 9.5 24 4.8 24 11.1 999.9 69.1 55.9 0.00G 999.9 000000 724050 13743 19981014 62.0 24 47.3 24 1013.8 24 1011.4 22 9.8 24 8.9 24 15.0 20.0 69.1 55.9 0.00G 999.9 010000 724050 13743 19981015 56.4 24 40.1 24 1021.3 24 1018.9 24 9.9 24 5.5 24 8.9 999.9 66.0* 46.9* 0.00G 999.9 000000 724050 13743 19981016 56.3 24 44.2 24 1028.4 24 1026.0 24 9.7 24 4.5 24 8.0 999.9 66.9 46.0 0.00G 999.9 000000 724050 13743 19981017 57.5 24 49.1 24 1028.2 24 1025.8 24 8.3 24 3.7 24 8.9 999.9 70.0* 48.9* 0.00G 999.9 100000 724050 13743 19981018 63.7 24 53.1 24 1022.7 24 1020.3 24 8.7 24 9.7 24 15.0 21.0 79.0 46.9 0.00G 999.9 100000 724050 13743 19981019 67.5 23 53.7 23 1017.9 23 1015.6 23 9.8 23 6.6 23 12.0 999.9 79.0 54.0 0.00G 999.9 010000 724050 13743 19981020 63.1 24 43.7 24 1019.5 24 1017.2 23 9.9 24 7.1 24 17.1 22.9 71.6* 55.9* 0.01G 999.9 000000 724050 13743 19981021 58.7 24 34.0 24 1019.8 24 1017.5 24 9.9 24 8.3 24 13.0 19.0 72.0 55.0 0.00G 999.9 000000 724050 13743 19981022 51.2 24 34.5 24 1022.2 24 1019.9 24 9.9 24 11.3 24 21.0 26.0 57.9* 46.9* 0.01G 999.9 010000 724050 13743 19981023 50.1 24 33.8 24 1028.6 24 1026.1 24 9.9 24 7.0 24 11.1 16.9 63.0* 41.0* 0.00D 999.9 000000 724050 13743 19981024 58.1 24 37.5 24 1027.2 24 1024.8 24 9.9 24 5.1 24 11.1 999.9 72.0* 48.0* 0.00G 999.9 000000 724050 13743 19981025 58.7 24 44.2 24 1024.5 24 1022.1 24 9.9 24 4.4 24 13.0 999.9 73.9 46.0 0.00G 999.9 000000 724050 13743 19981026 59.6 24 47.0 24 1024.3 24 1021.9 24 9.9 24 3.6 24 8.9 999.9 73.9 46.0 0.00G 999.9 000000 724050 13743 19981027 59.1 23 54.8 23 1026.8 23 1024.5 23 8.5 23 3.9 23 6.0 999.9 73.0 50.0 0.00G 999.9 100000 724050 13743 19981028 60.3 24 55.0 24 1018.3 24 1015.9 24 8.8 24 7.2 24 15.0 18.1 70.0* 55.0* 0.00G 999.9 110000 724050 13743 19981029 61.5 24 45.7 24 1012.6 24 1010.3 24 9.9 24 10.8 24 15.9 22.9 68.0* 54.0* 0.00G 999.9 000000 724050 13743 19981030 54.0 24 39.5 24 1015.1 24 1012.3 20 9.9 24 5.3 24 12.0 15.9 66.9* 42.1* 0.00G 999.9 000000 724050 13743 19981031 56.6 24 36.9 24 1014.0 24 1011.6 24 9.9 24 10.1 24 15.9 21.0 68.0 41.0 0.00G 999.9 000000 724050 13743 19981101 54.9 24 35.6 24 1017.5 24 1015.5 18 9.9 24 7.1 24 11.1 999.9 66.0 43.0 0.00G 999.9 000000 724050 13743 19981102 53.5 24 37.1 24 1017.1 24 1014.8 24 9.9 24 4.9 24 8.9 15.9 64.0 43.0 0.00G 999.9 000000 724050 13743 19981103 46.7 24 36.1 24 1016.2 24 1013.8 23 9.9 24 6.2 24 13.0 999.9 55.9* 42.1* 0.05G 999.9 010000 724050 13743 19981104 45.5 24 33.2 24 1014.0 24 1011.8 22 9.9 24 7.7 24 14.0 999.9 52.0 41.0 0.13G 999.9 000000 724050 13743 19981105 40.4 24 26.3 24 1016.7 24 1014.3 24 9.9 24 7.9 24 14.0 18.1 48.0* 30.9* 0.00G 999.9 000000 724050 13743 19981106 42.6 24 28.6 24 1016.2 24 1013.7 22 9.9 24 9.5 24 15.9 22.0 50.0 30.9 0.00G 999.9 000000 724050 13743 19981107 46.5 24 28.3 24 1025.0 24 1022.7 24 9.9 24 9.9 24 15.0 21.0 55.0* 41.0* 0.00G 999.9 000000 724050 13743 19981108 44.0 24 34.0 24 1027.0 24 1024.7 24 9.9 24 4.1 24 8.0 999.9 55.0 37.9 0.00G 999.9 010000 724050 13743 19981109 46.7 23 39.5 23 1025.5 23 1023.1 23 8.7 23 2.0 23 4.1 999.9 55.0* 41.0* 0.01G 999.9 100000 724050 13743 19981110 49.8 24 45.8 24 1025.2 24 1022.8 24 8.2 24 4.6 24 8.9 999.9 59.0* 44.1* 0.00G 999.9 110000 724050 13743 19981111 62.5 24 50.8 24 1015.6 24 1013.2 24 9.7 24 12.0 24 22.0 28.9 71.1* 53.1* 0.16G 999.9 110000 724050 13743 19981112 51.9 24 26.5 24 1028.0 24 1025.6 24 9.9 24 8.1 24 15.9 19.0 57.0* 43.0* 0.07G 999.9 000000 724050 13743 19981113 47.9 24 35.6 24 1025.5 24 1023.2 24 9.9 24 4.8 24 10.1 999.9 57.0 41.0 0.00G 999.9 000000 724050 13743 19981114 50.6 24 41.2 24 1016.7 24 1014.5 23 9.9 24 6.1 24 10.1 999.9 62.1* 43.0* 0.00G 999.9 000000 724050 13743 19981115 56.2 24 45.3 24 1009.0 24 1006.4 20 9.3 24 7.9 24 17.1 20.0 66.9* 48.0* 0.00G 999.9 100000 724050 13743 19981116 50.5 24 38.0 24 1015.2 24 1012.9 24 9.9 24 5.8 24 12.0 999.9 60.1* 39.0* 0.00G 999.9 000000 724050 13743 19981117 53.0 24 44.8 24 1011.4 24 1009.0 24 9.4 24 6.4 24 15.0 20.0 66.2* 44.1* 0.00G 999.9 100000 724050 13743 19981118 50.5 24 37.8 24 1025.5 24 1023.2 24 9.9 24 7.6 24 14.0 16.9 66.9 44.1 0.00G 999.9 000000 724050 13743 19981119 47.5 24 40.3 24 1025.2 24 1023.1 23 9.7 24 5.3 24 11.1 999.9 57.9* 39.0* 0.00G 999.9 000000 724050 13743 19981120 57.5 24 51.8 24 1013.9 24 1011.6 24 7.9 24 7.8 24 15.0 23.9 68.0* 51.8* 0.00G 999.9 110000 724050 13743 19981121 46.3 24 32.7 24 1019.3 24 1016.9 24 9.6 24 9.5 24 15.9 22.9 52.0* 42.1* 0.08G 999.9 110000 724050 13743 19981122 41.1 24 27.2 24 1029.7 24 1027.4 24 9.9 24 6.8 24 11.1 999.9 50.0* 34.0* 0.00G 999.9 000000 724050 13743 19981123 46.0 24 34.2 24 1023.6 24 1021.3 24 9.9 24 7.2 24 14.0 999.9 62.1* 35.1* 0.00G 999.9 000000 724050 13743 19981124 59.5 24 33.7 24 1017.7 24 1015.2 22 9.9 24 9.7 24 15.9 21.0 62.6* 54.0* 0.00G 999.9 000000 724050 13743 19981125 48.9 24 30.2 24 1023.1 24 1020.7 24 9.9 24 4.5 24 10.1 999.9 55.9* 39.0* 0.00G 999.9 000000 724050 13743 19981126 53.5 24 43.2 24 1011.3 24 1009.0 24 9.5 24 10.6 24 22.9 28.0 63.0* 48.2* 0.38G 999.9 010010 724050 13743 19981127 54.6 24 31.5 24 1014.3 24 1011.9 24 9.9 24 10.5 24 17.1 25.1 59.0* 46.9* 0.03G 999.9 000000 724050 13743 19981128 49.3 24 38.0 24 1020.3 24 1017.9 23 9.9 24 5.9 24 11.1 999.9 64.0* 39.0* 0.00G 999.9 000000 724050 13743 19981129 54.2 24 40.0 24 1020.2 24 1017.7 23 9.9 24 3.4 24 6.0 999.9 72.0* 41.0* 0.00G 999.9 000000 724050 13743 19981130 53.9 24 44.2 24 1020.8 24 1018.4 24 9.9 24 4.0 24 11.1 999.9 72.0 39.0 0.00G 999.9 000000 724050 13743 19981201 61.6 24 44.2 24 1018.8 24 1016.4 24 9.9 24 9.8 24 15.9 25.1 66.2* 55.0* 0.00G 999.9 000000 724050 13743 19981202 50.7 24 33.6 24 1024.7 24 1022.3 24 9.9 24 6.2 24 13.0 999.9 64.9* 37.9* 0.00G 999.9 000000 724050 13743 19981203 52.7 24 41.3 24 1016.5 24 1014.3 23 9.9 24 6.4 24 13.0 999.9 64.9 37.9 0.00G 999.9 000000 724050 13743 19981204 61.6 24 52.0 24 1016.6 24 1014.2 24 9.8 24 7.5 24 13.0 999.9 75.0* 54.0* 0.00G 999.9 000000 724050 13743 19981205 63.6 24 54.8 24 1017.9 24 1015.6 24 9.2 24 4.1 24 8.9 999.9 75.9 54.0 0.00G 999.9 100000 724050 13743 19981206 61.9 24 54.3 24 1014.9 24 1012.6 23 9.6 24 6.8 24 10.1 999.9 73.0* 54.0* 0.00G 999.9 100000 724050 13743 19981207 65.6 24 57.0 24 1013.1 24 1010.8 24 9.9 24 7.9 24 13.0 999.9 78.1 54.0 0.00G 999.9 000000 724050 13743 19981208 56.4 24 54.6 24 1018.0 24 1015.7 24 8.7 24 6.3 24 11.1 16.9 64.0* 51.8* 0.06G 999.9 110000 724050 13743 19981209 49.2 24 40.5 24 1022.9 24 1020.4 23 8.6 24 9.7 24 17.1 21.0 54.0* 45.0* 0.89G 999.9 110000 724050 13743 19981210 43.2 24 30.7 24 1029.6 24 1027.2 24 9.9 24 2.7 24 10.1 999.9 51.1* 36.0* 0.21G 999.9 000000 724050 13743 19981211 47.0 24 27.9 24 1027.1 24 1024.6 23 9.9 24 8.1 24 14.0 19.0 51.1 35.1 0.00G 999.9 000000 724050 13743 19981212 41.7 24 28.4 24 1031.1 24 1028.8 24 9.9 24 4.6 24 14.0 999.9 46.9* 36.0* 0.00G 999.9 000000 724050 13743 19981213 42.9 24 38.4 24 1020.6 24 1018.3 24 7.8 24 6.3 24 11.1 999.9 46.9 35.1 0.32G 999.9 110000 724050 13743 19981214 42.7 24 25.9 24 1020.5 24 1018.1 24 9.9 24 11.4 24 17.1 20.0 46.0* 37.9* 0.22G 999.9 000000 724050 13743 19981215 38.6 24 23.1 24 1028.1 24 1025.8 24 9.9 24 4.7 24 10.1 999.9 48.9* 30.0* 0.00G 999.9 000000 724050 13743 19981216 44.4 24 26.9 24 1017.1 24 1014.8 24 9.9 24 4.5 24 11.1 999.9 55.0* 37.9* 0.00G 999.9 000000 724050 13743 19981217 45.2 24 27.4 24 1008.8 24 1006.5 24 9.9 24 8.7 24 18.1 22.9 55.0 37.0 0.00G 999.9 010000 724050 13743 19981218 39.1 24 18.8 24 1020.4 24 1018.1 24 9.9 24 9.0 24 13.0 21.0 45.0* 35.1* 0.00G 999.9 000000 724050 13743 19981219 43.6 24 24.8 24 1026.8 24 1024.4 24 9.9 24 12.3 24 18.1 20.0 53.1* 37.9* 0.00G 999.9 000000 724050 13743 19981220 49.9 24 29.1 24 1027.2 24 1024.8 24 9.9 24 4.9 24 8.9 999.9 55.0* 43.0* 0.00G 999.9 000000 724050 13743 19981221 49.9 24 37.2 24 1027.0 24 1024.3 24 7.5 24 5.3 24 13.0 999.9 55.4* 46.0* 0.00G 999.9 100000 724050 13743 19981222 53.1 24 41.6 24 1016.0 24 1013.7 24 9.2 24 16.4 24 25.1 34.0 66.9* 35.1* 0.00G 999.9 010000 724050 13743 19981223 24.8 24 6.1 24 1035.0 24 1032.6 24 9.3 24 7.8 24 15.9 23.9 32.0* 19.9* 0.02G 999.9 011000 724050 13743 19981224 26.4 24 19.4 24 1030.0 24 1027.7 23 7.2 24 7.2 24 10.1 999.9 30.0* 24.8* 0.16G 999.9 111000 724050 13743 19981225 29.6 24 11.1 24 1032.1 24 1029.8 18 10.0 24 5.7 24 8.9 999.9 35.6* 24.1* 0.01G 999.9 000000 724050 13743 19981226 27.8 24 19.6 24 1026.3 24 1024.1 24 9.8 24 2.8 24 6.0 999.9 33.1* 23.0* 0.00G 999.9 000000 724050 13743 19981227 32.2 24 23.5 24 1027.2 24 1024.9 24 9.0 24 4.9 24 13.0 999.9 39.9* 25.0* 0.00G 999.9 100000 724050 13743 19981228 39.2 24 31.3 24 1022.1 24 1019.7 24 8.8 24 4.7 24 11.1 999.9 46.9* 35.1* 0.00G 999.9 010000 724050 13743 19981229 39.9 24 34.4 24 1013.1 24 1010.5 23 5.5 24 5.0 24 8.9 999.9 46.9 35.1 0.00G 999.9 110000 724050 13743 19981230 33.4 24 21.2 24 1006.0 24 1004.0 21 7.5 24 12.2 24 24.1 35.9 37.9* 26.1* 0.07G 999.9 110000 724050 13743 19981231 23.5 24 10.2 24 1022.1 24 1019.8 24 8.8 24 7.1 24 13.0 19.0 28.0* 21.0* 0.03G 999.9 001000 fluids-1.0.22/tests/gsod/1975/0000755000175000017500000000000014302004506015105 5ustar nileshnileshfluids-1.0.22/tests/gsod/1975/724050-13743.op0000644000175000017500000014305714302004506016677 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19750101 48.3 24 39.7 24 1013.2 24 1010.9 24 9.7 24 9.1 24 28.0 49.9 60.1* 35.1 0.24G 999.9 110000 724050 13743 19750102 40.6 22 20.8 22 1024.3 22 1022.1 22 15.2 22 15.4 22 24.9 35.9 60.1 36.0 0.01G 999.9 000000 724050 13743 19750103 36.6 24 24.6 24 1024.5 24 1022.2 24 13.8 24 4.9 24 9.9 999.9 46.9 30.0 0.00G 999.9 010000 724050 13743 19750104 43.8 24 31.6 24 1016.0 24 1013.7 24 13.5 24 7.1 24 15.0 999.9 48.0 30.0 0.01G 999.9 010000 724050 13743 19750105 38.8 24 22.5 24 1025.6 24 1023.3 24 15.2 24 6.5 24 14.0 999.9 48.0 30.0 0.00G 999.9 000000 724050 13743 19750106 37.5 24 26.3 24 1028.8 24 1026.5 24 11.0 24 4.1 24 10.9 999.9 46.9 30.0 0.00G 999.9 011000 724050 13743 19750107 40.9 24 31.6 24 1021.3 24 1019.0 24 9.9 24 7.1 24 14.0 999.9 51.1* 30.0 0.31G 999.9 111000 724050 13743 19750108 41.5 24 33.6 24 1021.6 24 1019.3 24 11.0 24 5.3 24 10.9 999.9 52.0 32.0 0.00G 999.9 000000 724050 13743 19750109 49.6 23 38.3 23 1011.9 23 1009.6 23 8.9 23 7.4 23 16.9 22.9 57.9* 32.0 0.35G 999.9 110000 724050 13743 19750110 43.7 24 35.8 24 1021.5 24 1019.2 24 10.5 24 4.3 24 8.9 999.9 59.0 34.0 0.00G 999.9 000000 724050 13743 19750111 60.7 24 52.9 24 1011.2 24 1008.9 24 10.9 24 9.1 24 16.9 28.9 73.9* 34.0 0.08G 999.9 110000 724050 13743 19750112 52.7 24 31.6 24 1020.3 24 1017.9 24 14.7 24 9.1 24 11.8 999.9 75.0 46.0 99.99 999.9 010000 724050 13743 19750113 38.8 24 31.9 24 1013.9 24 1011.6 24 5.7 24 9.9 24 14.0 999.9 45.0* 35.1* 0.51G 999.9 111000 724050 13743 19750114 29.0 24 14.1 24 1017.6 24 1015.3 24 15.5 24 11.8 24 16.9 26.8 39.9 21.9 0.12G 999.9 011000 724050 13743 19750115 26.3 24 11.9 24 1023.6 24 1021.3 24 13.2 24 7.0 24 11.8 999.9 36.0* 19.0 0.00G 999.9 000000 724050 13743 19750116 34.2 24 24.7 24 1022.9 24 1020.6 24 11.2 24 5.3 23 12.8 999.9 41.0* 19.0 0.00G 999.9 001000 724050 13743 19750117 34.6 23 12.9 23 1031.7 23 1029.4 23 15.0 23 9.2 23 17.9 25.8 41.0 27.0 0.00I 999.9 000000 724050 13743 19750118 34.6 24 23.0 24 1026.7 24 1024.4 24 10.4 24 6.7 24 14.0 999.9 41.0* 28.0 0.04G 999.9 110000 724050 13743 19750119 39.6 24 34.7 24 1012.9 24 1010.6 24 8.2 24 5.0 23 14.0 999.9 45.0* 30.9 0.24G 999.9 010000 724050 13743 19750120 35.4 24 30.8 24 1012.8 24 1010.5 24 3.1 24 11.0 24 15.9 999.9 46.0 23.2* 0.75G 999.9 111000 724050 13743 19750121 24.9 24 12.9 24 1028.2 24 1025.9 24 12.7 24 7.6 24 14.0 999.9 43.0 19.9 0.31G 3.1 001000 724050 13743 19750122 32.4 24 25.7 24 1031.0 24 1028.7 24 5.8 24 3.9 24 8.0 999.9 39.9* 19.9 0.00G 2.0 000000 724050 13743 19750123 35.5 24 29.1 24 1031.0 24 1028.7 24 6.2 24 4.8 24 8.9 999.9 45.0* 27.0 0.00G 1.2 000000 724050 13743 19750124 37.8 23 31.5 23 1022.3 23 1020.1 23 6.8 23 3.8 23 8.0 999.9 52.0* 28.0 0.00I 999.9 000000 724050 13743 19750125 49.4 24 44.8 24 1002.9 24 1000.7 24 6.9 24 6.2 24 16.9 999.9 57.0* 28.0 0.20C 999.9 110000 724050 13743 19750126 47.1 24 29.1 24 997.3 24 995.1 24 15.5 24 12.4 24 22.9 31.9 57.0 41.0 0.24A 999.9 100000 724050 13743 19750127 41.2 22 23.0 22 1019.5 22 1017.2 22 15.0 22 8.0 22 15.9 999.9 52.0 33.1 0.00I 999.9 000000 724050 13743 19750128 43.0 24 31.7 24 1024.2 24 1021.9 24 9.2 24 4.4 24 7.0 999.9 50.0* 39.0* 0.00I 999.9 000000 724050 13743 19750129 50.3 24 38.7 24 1014.5 24 1012.2 24 9.1 24 7.2 24 17.9 24.9 75.0* 37.9 0.00I 999.9 000000 724050 13743 19750130 50.5 23 28.9 23 1018.5 23 1016.3 23 13.2 23 13.1 23 24.9 41.0 75.9 37.9 0.00I 999.9 000000 724050 13743 19750131 41.3 24 32.8 24 1026.9 24 1024.5 24 6.5 24 5.5 24 8.9 999.9 57.9 37.9 0.20B 999.9 111000 724050 13743 19750201 36.5 24 29.5 24 1031.0 24 1028.6 24 5.3 24 7.3 24 11.8 999.9 45.0 34.0 0.04A 999.9 111000 724050 13743 19750202 34.3 24 26.7 24 1031.2 24 1028.8 24 6.4 24 5.9 24 14.0 999.9 37.9 30.9 0.12B 999.9 001000 724050 13743 19750203 34.4 24 21.2 24 1033.0 24 1030.6 24 15.0 24 8.1 24 11.8 999.9 41.0* 31.1* 0.00I 999.9 000000 724050 13743 19750204 32.0 24 19.1 24 1036.6 24 1034.2 24 11.2 24 6.9 24 11.8 999.9 41.0 28.0 99.99 999.9 101000 724050 13743 19750205 34.7 24 29.9 24 1019.0 24 1016.6 24 3.8 24 8.6 24 11.8 999.9 37.9* 28.0 0.55C 999.9 111000 724050 13743 19750206 40.1 24 35.7 24 1006.6 24 1004.2 24 4.7 24 6.0 24 8.9 999.9 50.0* 32.0 0.04B 999.9 110000 724050 13743 19750207 39.1 24 26.0 24 1011.3 24 1008.9 24 13.2 24 10.4 24 18.8 29.9 51.1 34.0* 0.04A 999.9 010000 724050 13743 19750208 32.9 24 14.8 24 1020.6 24 1018.2 24 15.6 24 8.8 24 17.9 999.9 46.9* 10.9 0.39A 999.9 000000 724050 13743 19750209 39.2 23 24.7 23 1016.3 23 1013.9 23 14.0 23 8.8 23 18.8 28.0 48.0 23.0 99.99 999.9 011000 724050 13743 19750210 26.4 24 8.6 24 1026.7 24 1024.3 24 12.2 24 9.7 24 15.9 999.9 44.1 17.6* 0.00I 999.9 000000 724050 13743 19750211 39.0 24 24.4 24 1017.0 24 1014.6 24 12.7 24 5.2 24 8.9 999.9 53.1* 18.0 0.00I 999.9 000000 724050 13743 19750212 38.7 23 29.2 23 1012.7 23 1010.3 23 8.1 23 8.0 23 11.8 999.9 53.1 32.0 0.16A 999.9 110000 724050 13743 19750213 35.1 24 22.3 24 1013.7 24 1011.3 24 10.7 24 8.8 24 16.9 25.8 41.0 28.9 99.99 999.9 001000 724050 13743 19750214 31.6 24 11.8 23 1021.6 24 1019.2 24 15.9 24 8.4 23 14.0 999.9 42.1* 25.0 0.00I 999.9 000000 724050 13743 19750215 36.5 24 22.4 24 1025.3 24 1022.9 24 11.4 24 3.3 24 7.0 999.9 46.0* 25.0 0.00I 999.9 000000 724050 13743 19750216 42.4 24 33.1 24 1019.9 24 1017.6 24 9.0 24 2.9 24 5.8 999.9 52.0* 28.0 99.99 999.9 010000 724050 13743 19750217 43.4 23 38.5 22 1017.9 23 1015.5 23 3.4 23 5.7 23 8.9 999.9 52.0 34.0 0.02A 999.9 110000 724050 13743 19750218 45.3 24 42.2 24 1013.9 24 1011.5 24 1.3 24 3.9 24 8.0 999.9 48.0 37.9 0.00A 999.9 110000 724050 13743 19750219 50.0 24 41.3 24 1006.9 24 1004.6 24 7.4 24 8.5 24 16.9 26.8 55.9 43.0 99.99 999.9 110000 724050 13743 19750220 40.9 24 24.9 24 1016.2 24 1013.8 24 12.6 24 5.5 24 15.0 999.9 55.9 32.0 0.00I 999.9 000000 724050 13743 19750221 42.9 24 26.5 24 1022.9 24 1020.5 24 12.9 24 5.3 24 12.8 999.9 55.9* 30.9 0.00I 999.9 000000 724050 13743 19750222 45.0 24 31.3 24 1028.0 24 1025.6 24 13.2 24 5.7 24 11.8 999.9 59.0* 30.9 0.00I 999.9 000000 724050 13743 19750223 53.8 24 44.1 24 1015.4 24 1013.0 24 10.7 24 7.4 24 9.9 999.9 60.1 48.9* 0.20A 999.9 010000 724050 13743 19750224 60.6 24 57.5 24 1004.4 24 1002.0 24 4.9 24 6.0 24 15.9 999.9 70.0 48.9 0.09B 999.9 110000 724050 13743 19750225 53.2 24 36.3 24 1001.0 24 998.6 24 15.7 24 16.0 24 23.9 35.0 70.0 44.1 0.08A 999.9 010000 724050 13743 19750226 49.8 24 18.3 24 1013.1 24 1010.8 24 15.9 24 12.0 24 19.8 30.9 60.1* 37.9 0.00I 999.9 000000 724050 13743 19750227 47.6 24 19.8 24 1017.3 24 1014.9 24 15.9 24 8.3 24 11.8 999.9 60.1 37.9 0.00I 999.9 000000 724050 13743 19750228 43.0 24 23.9 24 1015.5 24 1013.1 24 15.9 24 6.4 24 15.0 999.9 55.0* 32.0 0.00I 999.9 000000 724050 13743 19750301 44.5 23 24.2 23 1006.5 23 1004.1 23 15.7 23 9.8 23 15.9 26.8 55.0 32.0 99.99 999.9 011000 724050 13743 19750302 35.7 24 16.3 24 1004.3 24 1001.9 24 14.5 24 12.9 24 17.9 25.8 51.1 28.0 99.99 999.9 001000 724050 13743 19750303 33.2 23 11.6 23 1010.6 23 1008.2 23 16.1 23 13.4 23 17.9 28.9 39.9 30.2* 0.00I 999.9 000000 724050 13743 19750304 33.9 24 12.6 24 1018.0 24 1015.6 24 15.9 24 11.0 24 15.0 999.9 43.0* 26.1 0.00I 999.9 000000 724050 13743 19750305 36.1 24 17.9 24 1022.8 24 1020.4 24 15.3 24 5.3 24 9.9 999.9 46.9* 25.0 0.00I 999.9 000000 724050 13743 19750306 47.3 24 28.5 24 1019.2 24 1016.6 24 15.0 24 6.6 24 10.9 28.0 66.9* 25.0 0.00I 999.9 000000 724050 13743 19750307 51.9 23 36.8 23 1013.1 23 1010.7 23 11.3 23 6.4 23 14.0 999.9 66.9 37.0 99.99 999.9 010000 724050 13743 19750308 45.3 22 28.0 22 1007.8 22 1005.5 22 14.8 22 16.3 22 22.9 38.9 59.0 39.0 0.08A 999.9 010000 724050 13743 19750309 31.5 24 6.3 24 1023.1 24 1020.7 24 16.2 24 12.3 24 19.8 34.0 50.0 21.0 0.00I 999.9 000000 724050 13743 19750310 35.2 24 20.4 24 1021.8 24 1019.4 24 8.2 24 7.7 24 17.9 999.9 43.0 21.0 0.04A 999.9 011000 724050 13743 19750311 39.2 23 32.5 23 1021.0 23 1018.6 23 7.3 23 5.1 23 8.0 999.9 44.1* 32.0 0.12A 999.9 111000 724050 13743 19750312 42.3 23 35.7 23 1022.0 23 1020.1 22 5.5 23 5.3 23 15.0 999.9 46.9* 36.0 0.31A 999.9 110000 724050 13743 19750313 50.3 24 43.0 24 1012.5 24 1010.2 24 11.8 24 6.9 24 39.8 999.9 61.0 39.0 0.26C 999.9 110000 724050 13743 19750314 40.0 24 33.7 24 1015.5 24 1013.1 24 7.5 24 12.1 24 16.9 999.9 61.0 35.1 0.88D 999.9 111000 724050 13743 19750315 41.7 24 30.6 24 1019.1 24 1016.7 24 14.1 24 10.1 24 16.9 28.0 50.0* 35.1 0.08B 999.9 010000 724050 13743 19750316 41.6 24 30.6 24 1029.6 24 1027.2 24 8.9 24 3.5 24 8.9 999.9 51.1* 35.1 0.00I 999.9 000000 724050 13743 19750317 45.9 24 33.0 24 1023.1 24 1020.7 24 8.7 24 7.5 24 12.8 999.9 57.9* 35.1 0.52C 999.9 110000 724050 13743 19750318 44.5 24 32.3 24 1027.9 24 1025.5 24 12.5 24 6.4 24 14.0 999.9 57.9 34.0 0.00I 999.9 000000 724050 13743 19750319 53.8 23 47.4 23 1008.3 23 1005.9 23 7.6 23 8.9 23 19.8 29.9 60.1* 34.0 0.94B 999.9 110010 724050 13743 19750320 56.8 24 38.7 24 999.9 24 997.5 24 13.7 24 17.4 24 25.8 38.9 63.0* 46.9 0.28A 999.9 110000 724050 13743 19750321 54.4 24 25.2 24 1014.2 24 1011.8 24 15.9 24 7.3 24 12.8 999.9 64.9* 44.1 0.00I 999.9 000000 724050 13743 19750322 55.2 23 39.3 23 1006.4 23 1004.0 23 13.2 23 7.7 23 15.0 21.0 66.0 44.1 99.99 999.9 010000 724050 13743 19750323 54.8 24 37.0 24 1008.3 24 1005.9 24 15.7 24 8.6 24 15.0 999.9 66.9 44.1 0.02A 999.9 000000 724050 13743 19750324 53.8 24 45.1 24 1008.8 24 1006.4 24 6.3 24 4.0 24 8.9 999.9 64.9 44.1 0.28B 999.9 110010 724050 13743 19750325 59.8 24 45.4 24 1002.7 24 1000.3 24 14.3 24 9.5 24 17.9 22.0 66.0 48.9 1.06A 999.9 000000 724050 13743 19750326 45.1 24 24.6 24 1019.4 24 1017.0 24 15.9 24 15.6 24 22.0 29.9 66.0 39.0 0.00I 999.9 000000 724050 13743 19750327 37.2 22 14.6 22 1032.8 22 1030.4 22 16.3 22 10.4 22 15.9 19.8 48.0 28.9 0.00I 999.9 000000 724050 13743 19750328 42.6 24 16.3 24 1027.4 24 1025.0 24 16.2 24 5.1 24 9.9 999.9 54.0* 28.9 0.00I 999.9 000000 724050 13743 19750329 50.8 24 35.7 24 1013.6 24 1011.2 24 12.1 24 4.8 24 8.9 18.8 63.0* 36.0 0.02A 999.9 010000 724050 13743 19750330 53.1 23 43.5 23 999.6 23 997.3 23 10.4 23 8.8 23 16.9 25.8 64.0 45.0 0.39C 999.9 110000 724050 13743 19750331 44.0 23 19.4 23 1013.4 23 1010.9 23 16.1 23 11.4 23 17.9 26.8 57.0 34.0 0.00I 999.9 000000 724050 13743 19750401 56.6 24 32.6 24 1015.7 24 1013.3 24 16.5 24 8.6 24 12.8 999.9 70.0* 34.0 0.00I 999.9 000000 724050 13743 19750402 55.4 23 37.9 23 1015.7 23 1013.3 23 11.2 23 6.5 23 9.9 999.9 70.0 42.1 0.00I 999.9 000000 724050 13743 19750403 55.7 23 40.1 23 996.3 23 994.0 23 13.8 23 16.0 23 29.9 51.9 66.9 42.1 0.12B 999.9 110000 724050 13743 19750404 40.3 24 17.4 24 1004.9 24 1002.5 24 16.6 24 22.9 24 29.9 52.8 63.0 35.1 0.00I 999.9 000000 724050 13743 19750405 38.4 24 15.3 24 1013.5 24 1011.1 24 16.4 24 20.3 24 23.9 43.9 48.0 33.1 0.00I 999.9 000000 724050 13743 19750406 42.1 23 19.2 23 1014.0 23 1011.6 23 16.6 23 17.1 23 23.9 35.9 54.0* 33.1 0.00I 999.9 000000 724050 13743 19750407 43.6 23 22.4 23 1014.5 23 1012.1 23 16.4 23 15.6 23 19.8 29.9 54.0 33.1 0.00I 999.9 000000 724050 13743 19750408 49.0 24 24.8 24 1016.8 24 1014.4 24 16.5 24 12.3 24 15.9 25.8 61.0* 36.0 0.00I 999.9 000000 724050 13743 19750409 49.5 24 22.8 24 1018.9 24 1016.3 24 16.5 24 9.2 24 12.8 999.9 62.1 32.0 0.00I 999.9 000000 724050 13743 19750410 51.2 23 28.3 23 1015.5 23 1013.1 23 15.3 23 5.6 22 15.0 999.9 61.0 37.0 99.99 999.9 011000 724050 13743 19750411 48.2 24 30.9 24 1013.4 24 1011.0 24 13.0 24 4.7 24 8.9 999.9 61.0 39.9 0.00I 999.9 000000 724050 13743 19750412 49.3 23 26.7 23 1014.0 23 1011.6 23 16.2 23 9.7 23 15.0 999.9 57.0 39.9 0.00I 999.9 000000 724050 13743 19750413 47.0 24 23.2 24 1022.2 24 1019.8 24 15.6 24 8.2 24 14.0 999.9 57.0* 35.1 0.00I 999.9 000000 724050 13743 19750414 48.6 23 25.5 23 1026.6 23 1024.1 23 13.2 23 5.7 23 9.9 999.9 61.0* 34.0 0.00I 999.9 000000 724050 13743 19750415 47.9 24 38.0 24 1017.3 24 1014.9 24 7.6 24 8.0 24 11.8 999.9 61.0 34.0 0.59C 999.9 110000 724050 13743 19750416 50.6 24 37.4 24 1015.4 24 1013.0 24 8.9 24 12.1 24 18.8 23.9 61.0* 44.1 0.00A 999.9 010000 724050 13743 19750417 56.8 24 34.5 24 1015.7 24 1013.3 24 12.5 24 7.2 24 11.8 21.0 68.0* 34.0 0.00I 999.9 000000 724050 13743 19750418 57.8 23 44.2 23 1013.1 23 1010.7 23 9.1 23 5.5 23 11.8 999.9 69.1 48.0 0.04A 999.9 010000 724050 13743 19750419 70.2 24 54.2 24 1004.5 24 1002.1 24 12.0 24 13.9 24 17.9 31.9 77.0* 50.0 99.99 999.9 010000 724050 13743 19750420 61.7 24 33.7 24 1013.7 24 1011.3 24 16.4 24 13.0 24 22.0 35.9 77.0 51.1 0.00I 999.9 000000 724050 13743 19750421 58.5 12 27.7 12 1026.4 12 1023.9 12 19.9 12 13.6 12 15.9 22.0 64.0* 46.0 0.00I 999.9 000000 724050 13743 19750422 52.0 22 27.2 22 1030.1 22 1027.7 22 16.3 22 5.7 22 9.9 999.9 64.0 42.1 0.00I 999.9 000000 724050 13743 19750423 56.7 24 42.5 24 1026.2 24 1023.7 24 10.4 24 4.5 24 8.9 999.9 73.0* 42.1 0.00I 999.9 000000 724050 13743 19750424 70.0 24 56.0 24 1014.5 24 1012.1 24 13.6 24 10.7 24 15.9 23.9 79.0* 63.0* 0.01B 999.9 010000 724050 13743 19750425 66.5 24 59.6 24 1010.5 24 1008.1 24 7.6 24 5.8 24 16.9 22.9 79.0 60.1 0.20B 999.9 010000 724050 13743 19750426 60.0 24 44.7 24 1017.8 24 1015.4 24 13.5 24 12.9 24 31.9 42.0 73.9 53.1 0.56B 999.9 010000 724050 13743 19750427 57.2 24 31.2 24 1023.4 24 1020.9 24 16.6 24 9.8 24 14.0 999.9 68.0 45.0 0.00I 999.9 000000 724050 13743 19750428 59.0 24 36.8 24 1015.8 24 1013.4 24 15.7 24 5.4 24 8.9 999.9 66.0 45.0 0.00I 999.9 000000 724050 13743 19750429 54.3 24 47.5 24 1013.3 24 1010.9 24 7.9 24 5.9 24 9.9 999.9 66.0* 50.0 0.59B 999.9 010000 724050 13743 19750430 56.5 24 47.5 24 1021.3 24 1018.9 24 12.2 24 8.1 24 12.8 999.9 62.1* 50.0 99.99 999.9 010000 724050 13743 19750501 56.2 24 49.9 24 1021.5 24 1019.1 24 7.5 24 6.5 24 8.0 999.9 62.1 51.1 0.71B 999.9 110000 724050 13743 19750502 60.9 24 51.5 24 1019.2 24 1016.8 24 6.2 24 6.4 24 9.9 999.9 75.0* 51.1 99.99 999.9 110000 724050 13743 19750503 62.3 24 51.2 24 1018.8 24 1016.4 24 8.9 24 4.4 24 10.9 999.9 75.0 50.0 0.00I 999.9 000000 724050 13743 19750504 60.9 22 50.7 22 1007.0 22 1004.6 22 8.9 22 6.3 22 11.8 999.9 75.0 50.0 0.51C 999.9 110000 724050 13743 19750505 59.5 24 49.1 24 1008.6 24 1006.2 24 9.6 24 7.3 24 10.9 999.9 73.9 52.0 99.99 999.9 010000 724050 13743 19750506 61.1 23 50.9 23 1011.9 23 1009.5 23 9.4 23 8.5 23 18.8 999.9 78.1* 48.9 99.99 999.9 010010 724050 13743 19750507 63.5 24 46.9 24 1013.0 24 1010.6 24 15.7 24 9.3 24 14.0 999.9 78.1 48.9 0.24A 999.9 000000 724050 13743 19750508 64.9 24 49.8 24 1018.4 24 1016.0 24 14.3 24 3.9 22 8.9 999.9 77.0* 51.1 0.00I 999.9 000000 724050 13743 19750509 64.1 24 50.5 24 1019.9 24 1017.5 24 14.3 24 3.9 24 9.9 999.9 77.0 51.1 0.00I 999.9 000000 724050 13743 19750510 66.6 23 49.0 23 1018.8 23 1016.5 23 16.6 23 4.3 23 9.9 999.9 75.0* 57.0 99.99 999.9 010000 724050 13743 19750511 65.7 24 48.8 24 1016.2 24 1013.8 24 15.0 24 5.8 24 9.9 999.9 78.1* 53.1 0.00I 999.9 000000 724050 13743 19750512 67.6 24 54.8 24 1013.6 24 1011.3 24 11.5 24 8.1 24 19.8 29.9 78.1 53.1 99.99 999.9 110000 724050 13743 19750513 65.9 22 59.2 22 1012.8 22 1010.4 22 6.2 22 5.6 22 28.0 39.8 79.0 60.1 0.28B 999.9 110010 724050 13743 19750514 68.2 23 52.8 23 1016.0 23 1013.6 23 9.6 23 7.8 23 12.8 999.9 81.0* 57.9 0.16A 999.9 000000 724050 13743 19750515 69.6 24 58.0 24 1014.9 24 1012.5 24 9.0 24 5.8 24 10.9 19.8 81.0 57.9 99.99 999.9 010000 724050 13743 19750516 69.7 24 60.7 24 1012.4 24 1010.0 24 5.9 24 5.0 24 8.0 999.9 79.0 60.1 0.33C 999.9 110000 724050 13743 19750517 68.6 24 58.0 24 1020.4 24 1018.0 24 6.5 24 4.9 24 8.9 999.9 78.1 61.0 99.99 999.9 010000 724050 13743 19750518 68.6 24 59.7 24 1017.4 24 1015.0 24 6.1 24 4.5 24 8.0 999.9 75.9 61.0 99.99 999.9 010000 724050 13743 19750519 71.0 24 62.6 24 1013.9 24 1011.5 24 6.8 24 5.1 24 8.0 999.9 80.1* 61.0 99.99 999.9 010000 724050 13743 19750520 73.6 24 64.2 24 1014.8 24 1012.4 24 6.2 24 4.1 24 8.0 15.9 87.1* 62.1 0.00I 999.9 000000 724050 13743 19750521 77.4 24 66.0 24 1015.2 24 1012.8 24 5.7 24 4.9 24 8.0 999.9 90.0* 62.1 0.00I 999.9 000000 724050 13743 19750522 80.6 24 69.1 23 1014.4 24 1012.0 24 4.6 24 5.3 24 16.9 23.9 91.0 66.0 99.99 999.9 010110 724050 13743 19750523 75.0 22 66.4 22 1014.9 22 1012.5 22 6.4 22 5.0 22 14.0 999.9 91.0 68.0 0.16A 999.9 010010 724050 13743 19750524 78.2 23 68.5 23 1013.2 23 1010.8 23 5.9 23 5.2 23 11.8 999.9 88.0* 68.0 99.99 999.9 010000 724050 13743 19750525 70.9 23 65.1 23 1016.9 23 1014.5 23 5.3 23 7.1 23 12.8 999.9 88.0 64.0* 99.99 999.9 110000 724050 13743 19750526 66.1 24 59.3 24 1018.7 24 1016.3 24 5.3 24 6.7 24 9.9 999.9 79.0* 59.0 99.99 999.9 110000 724050 13743 19750527 77.3 24 65.3 24 1010.9 24 1008.5 24 7.1 24 6.7 24 12.8 999.9 88.0* 59.0 0.00I 999.9 000000 724050 13743 19750528 75.6 23 54.1 23 1015.3 23 1012.9 23 15.7 23 6.6 23 9.9 999.9 88.0 61.0 0.00I 999.9 000000 724050 13743 19750529 73.5 24 58.0 24 1018.4 24 1016.0 24 14.6 24 4.7 24 10.9 999.9 84.9 61.0 0.00I 999.9 000000 724050 13743 19750530 75.9 23 62.8 23 1013.9 23 1011.5 23 9.8 23 7.3 23 9.9 999.9 86.0 61.0 99.99 999.9 010000 724050 13743 19750601 76.4 24 69.8 24 1009.2 24 1006.8 23 8.3 24 7.7 23 17.9 999.9 84.9 72.0 0.47C 999.9 010000 724050 13743 19750602 72.9 24 56.7 24 1017.4 24 1015.0 24 11.8 24 6.4 24 8.9 999.9 82.0* 64.0 0.02A 999.9 000000 724050 13743 19750603 72.0 24 59.7 24 1013.8 24 1011.4 24 10.4 24 5.9 24 15.0 999.9 82.0 64.0 0.16B 999.9 010010 724050 13743 19750604 75.8 24 57.5 24 1011.3 24 1008.9 24 12.3 24 7.4 24 12.8 999.9 84.9* 64.0 0.00I 999.9 000000 724050 13743 19750605 77.3 24 64.7 24 1007.5 24 1005.1 24 8.4 24 6.5 24 12.8 999.9 88.0* 66.9 0.00I 999.9 000000 724050 13743 19750606 75.8 24 62.2 24 1002.7 24 1000.3 24 15.5 24 8.8 23 16.9 999.9 89.1 66.9 0.39A 999.9 010010 724050 13743 19750607 71.7 24 54.0 24 1002.8 24 1000.4 24 16.5 24 9.4 24 19.8 999.9 84.9 64.0 99.99 999.9 010000 724050 13743 19750608 67.4 24 49.9 24 1009.2 24 1006.8 24 15.3 24 10.6 24 18.8 999.9 77.0 59.0 0.00I 999.9 000000 724050 13743 19750609 67.4 24 50.3 24 1017.5 24 1015.1 24 16.8 24 6.9 24 14.0 999.9 80.1* 55.9 0.00I 999.9 000000 724050 13743 19750610 70.6 24 56.7 24 1023.4 24 1021.0 24 11.7 24 4.9 24 9.9 999.9 80.1 55.9 0.00I 999.9 000000 724050 13743 19750611 69.9 24 55.4 24 1024.3 24 1021.9 24 13.1 24 5.8 24 9.9 999.9 79.0 62.1 99.99 999.9 110000 724050 13743 19750612 68.9 23 63.5 23 1015.6 23 1013.2 23 5.7 23 10.4 23 17.9 999.9 75.9 63.0 0.45D 999.9 110000 724050 13743 19750613 77.3 24 64.4 24 1012.9 24 1010.5 24 10.8 24 5.3 24 10.9 999.9 87.1* 64.9 0.04A 999.9 010000 724050 13743 19750614 78.0 24 62.2 24 1014.1 24 1011.7 24 13.4 24 3.7 24 5.8 999.9 88.0* 66.0 0.00I 999.9 000000 724050 13743 19750615 80.2 24 65.5 24 1012.7 24 1010.3 24 11.8 24 5.9 24 12.8 999.9 90.0* 66.0 0.00I 999.9 000000 724050 13743 19750616 78.7 23 65.6 23 1013.5 23 1011.1 23 11.9 23 8.3 23 14.0 999.9 91.0 71.1 0.43A 999.9 010010 724050 13743 19750617 77.6 24 68.3 24 1017.9 24 1015.5 24 6.0 24 4.2 24 7.0 999.9 87.1* 71.1 0.00A 999.9 100000 724050 13743 19750618 81.2 24 69.3 24 1018.3 24 1015.9 24 7.3 24 5.0 24 8.9 999.9 91.9 71.1 0.00I 999.9 100000 724050 13743 19750619 82.4 23 68.7 23 1019.4 23 1017.0 23 7.3 23 6.0 23 11.8 999.9 93.9* 71.1 0.00I 999.9 000000 724050 13743 19750620 84.4 24 65.7 24 1017.1 24 1014.7 24 9.3 24 8.2 24 11.8 999.9 93.9 71.1 99.99 999.9 010010 724050 13743 19750621 78.8 23 58.2 23 1022.4 23 1020.0 23 16.6 23 7.7 23 9.9 999.9 91.0 63.0* 0.00I 999.9 000000 724050 13743 19750622 76.2 23 58.0 23 1026.2 23 1023.8 23 17.1 23 7.1 23 11.8 999.9 86.0* 66.0 0.00I 999.9 000000 724050 13743 19750623 79.5 24 63.6 24 1025.3 24 1022.9 24 12.6 24 8.2 24 15.0 999.9 90.0* 66.0 0.00I 999.9 000000 724050 13743 19750624 82.0 22 66.2 22 1023.8 22 1021.4 22 8.5 22 7.9 22 10.9 999.9 93.0* 70.0 0.00I 999.9 000000 724050 13743 19750625 85.2 24 69.0 24 1021.2 24 1018.8 24 4.8 24 5.4 24 10.9 999.9 93.0 73.0 0.94A 999.9 000010 724050 13743 19750626 75.2 24 66.0 24 1021.8 24 1019.2 24 7.3 24 8.0 23 11.8 999.9 93.0 66.9 0.24B 999.9 110010 724050 13743 19750627 73.9 23 65.3 23 1021.3 23 1018.9 23 8.8 23 6.1 23 8.0 999.9 77.0* 70.0 99.99 999.9 010000 724050 13743 19750628 76.4 23 67.1 23 1020.0 23 1017.6 23 8.3 23 4.1 23 12.8 999.9 84.0 70.0 0.06B 999.9 110010 724050 13743 19750629 76.8 24 66.2 24 1019.9 24 1017.5 24 9.7 24 4.9 24 8.9 999.9 84.9 71.1 0.00A 999.9 010000 724050 13743 19750630 77.5 24 65.0 23 1020.3 24 1017.9 24 6.5 24 8.1 24 11.8 999.9 84.9* 71.1 0.00I 999.9 000000 724050 13743 19750701 76.0 24 51.1 24 1023.4 24 1020.9 24 14.7 24 7.7 24 12.8 999.9 84.9 64.9 0.59A 999.9 000000 724050 13743 19750702 76.8 24 53.8 24 1022.3 24 1019.9 24 16.2 24 4.5 24 8.9 999.9 91.0* 61.0 0.00I 999.9 000000 724050 13743 19750703 83.0 24 61.6 24 1016.4 24 1014.0 24 9.8 24 6.5 24 35.0 38.9 95.0* 61.0 0.00I 999.9 000000 724050 13743 19750704 74.4 24 63.3 24 1013.0 24 1010.6 24 8.4 24 5.2 24 28.9 999.9 93.0 66.9 0.24B 999.9 010010 724050 13743 19750705 78.8 23 63.0 23 1012.0 23 1009.6 23 11.7 23 4.3 23 8.0 999.9 89.1* 66.9 0.00I 999.9 000000 724050 13743 19750706 80.1 24 63.8 24 1012.0 24 1009.6 24 12.1 24 4.4 24 9.9 999.9 89.1 70.0 0.00I 999.9 000000 724050 13743 19750707 76.7 23 64.6 23 1010.6 23 1008.2 23 8.1 23 5.0 23 9.9 999.9 90.0 71.1 99.99 999.9 010000 724050 13743 19750708 78.0 23 66.8 23 1008.8 23 1006.4 23 6.7 23 4.1 22 8.0 999.9 86.0 71.1 0.00I 999.9 000000 724050 13743 19750709 80.7 23 69.3 23 1008.9 23 1006.5 23 5.1 23 5.5 23 19.8 38.9 91.9* 72.0 0.00I 999.9 100010 724050 13743 19750710 79.7 23 66.0 23 1009.2 23 1006.8 23 7.1 23 5.1 23 17.9 26.8 91.9 72.0* 0.00A 999.9 010010 724050 13743 19750711 74.3 24 65.0 24 1009.4 24 1007.0 24 6.7 24 4.3 24 9.9 999.9 91.0 69.1 0.83B 999.9 010000 724050 13743 19750712 74.7 24 65.7 24 1012.0 24 1009.6 24 7.7 24 4.2 24 8.0 999.9 82.9 69.1 0.06C 999.9 010010 724050 13743 19750713 74.6 24 67.8 24 1016.4 24 1014.0 24 6.8 24 6.6 24 11.8 999.9 81.0 69.1* 1.22B 999.9 110000 724050 13743 19750714 74.4 23 68.2 23 1021.2 23 1018.9 23 9.3 23 5.1 23 9.9 999.9 80.1* 69.1 3.64D 999.9 110010 724050 13743 19750715 78.2 23 69.8 23 1023.3 23 1020.9 23 12.8 23 3.6 23 7.0 999.9 84.0 69.1 0.00B 999.9 010010 724050 13743 19750716 77.7 23 70.8 23 1024.4 23 1022.0 23 9.9 23 4.3 23 12.8 999.9 87.1* 70.0* 0.02G 999.9 110000 724050 13743 19750717 78.2 22 69.9 22 1023.7 22 1021.2 22 9.8 22 4.4 22 5.8 999.9 87.1 75.0 0.00G 999.9 000000 724050 13743 19750718 79.6 24 70.1 24 1021.5 24 1019.2 24 10.9 24 6.5 24 17.9 999.9 88.0* 73.9 0.00A 999.9 010000 724050 13743 19750719 80.1 24 70.1 24 1017.8 24 1015.4 24 17.6 24 8.8 24 12.8 999.9 88.0 73.9 0.00I 999.9 000000 724050 13743 19750720 81.6 23 72.6 23 1014.0 23 1011.6 23 12.1 23 7.2 23 15.0 999.9 89.1* 73.9 99.99 999.9 010010 724050 13743 19750721 81.8 23 69.7 23 1011.4 23 1009.0 23 8.9 23 6.4 23 16.9 25.8 91.0* 72.0* 0.59B 999.9 110010 724050 13743 19750722 82.3 23 66.7 23 1014.4 23 1012.0 23 9.1 23 7.0 23 11.8 999.9 91.0 75.0 0.00I 999.9 000000 724050 13743 19750723 82.1 24 68.0 24 1017.5 24 1015.1 24 8.5 24 4.4 24 8.9 999.9 98.1* 73.0 0.00I 999.9 000000 724050 13743 19750724 83.4 24 72.8 24 1015.4 24 1013.0 24 7.0 24 6.2 24 19.8 999.9 91.9* 73.0 99.99 999.9 010010 724050 13743 19750725 78.8 24 70.9 24 1013.2 24 1010.8 24 12.0 24 6.5 24 11.8 999.9 91.9 75.0* 0.39C 999.9 010010 724050 13743 19750726 76.1 24 58.5 24 1017.8 24 1015.4 24 19.4 24 6.4 24 11.8 999.9 82.0* 66.9 0.00I 999.9 000000 724050 13743 19750727 75.2 24 58.9 24 1017.3 24 1014.9 24 18.3 24 3.5 24 7.0 999.9 84.9* 64.0 0.00I 999.9 000000 724050 13743 19750728 79.7 24 67.2 24 1013.0 24 1010.6 24 7.4 24 6.6 24 10.9 999.9 90.0 64.0 99.99 999.9 010000 724050 13743 19750729 81.5 23 63.6 22 1017.5 23 1014.9 23 11.6 23 4.4 22 8.9 999.9 91.0 71.1 0.12A 999.9 000000 724050 13743 19750730 80.8 24 63.4 24 1022.8 24 1020.4 24 13.0 24 3.1 24 7.0 999.9 90.0 70.0 0.00I 999.9 000000 724050 13743 19750731 81.5 22 65.1 22 1023.7 22 1021.2 22 9.5 22 4.6 22 7.0 999.9 90.0* 70.0 0.00I 999.9 000000 724050 13743 19750801 77.2 13 64.2 13 1022.7 13 1020.4 13 7.4 13 3.8 13 8.9 999.9 91.0 72.0 0.00I 999.9 000000 724050 13743 19750802 86.3 24 70.2 24 1016.8 24 1014.5 24 5.9 24 4.3 24 8.0 999.9 97.0 72.0 0.00I 999.9 000000 724050 13743 19750803 85.7 23 71.5 23 1013.4 23 1011.1 23 6.3 23 5.1 23 8.9 999.9 97.0 75.0 0.00I 999.9 000000 724050 13743 19750804 86.2 24 71.0 24 1013.0 24 1010.7 24 7.3 24 4.3 24 8.0 999.9 98.1 75.9 0.00I 999.9 000000 724050 13743 19750805 81.4 24 69.2 23 1012.7 24 1010.4 24 10.4 24 5.7 23 15.0 23.9 97.0 75.0 0.08B 999.9 010010 724050 13743 19750806 76.0 23 68.1 23 1010.1 23 1007.8 23 7.4 23 5.9 23 11.8 999.9 91.0 71.1 0.24C 999.9 110000 724050 13743 19750807 71.1 24 58.7 24 1016.1 24 1013.8 24 17.4 24 11.6 24 15.0 999.9 84.0 64.9 0.16B 999.9 000000 724050 13743 19750808 73.0 24 54.5 24 1022.7 24 1020.3 24 23.8 24 7.4 24 10.9 999.9 84.0* 64.0 0.00I 999.9 000000 724050 13743 19750809 76.7 23 58.0 23 1022.3 23 1020.0 23 21.8 23 5.0 23 10.9 999.9 88.0* 64.0 0.00I 999.9 000000 724050 13743 19750810 78.7 24 61.7 24 1018.7 24 1016.4 24 10.5 24 4.0 24 8.0 17.9 90.0 66.0 0.00I 999.9 000000 724050 13743 19750811 78.7 24 66.4 24 1014.8 24 1012.5 24 6.1 24 6.5 24 14.0 28.0 88.0* 69.1 0.00A 999.9 010010 724050 13743 19750812 77.4 24 67.3 24 1015.7 24 1013.4 24 5.6 24 4.5 23 8.0 999.9 91.0 69.1 0.08A 999.9 000000 724050 13743 19750813 83.1 24 69.2 24 1017.0 24 1014.8 24 5.1 24 6.1 24 12.8 999.9 91.9* 69.1 99.99 999.9 010000 724050 13743 19750814 79.2 23 69.1 23 1016.9 23 1014.6 23 8.9 23 5.8 23 11.8 999.9 93.0 70.0 0.39G 999.9 010010 724050 13743 19750815 79.5 24 67.9 24 1016.6 24 1014.3 24 9.6 24 5.2 24 8.0 999.9 90.0 70.0 0.00G 999.9 010000 724050 13743 19750816 79.8 23 72.1 23 1014.6 23 1012.3 23 8.1 23 5.5 23 16.9 23.9 88.0 73.9 0.00A 999.9 010010 724050 13743 19750817 79.7 24 72.3 23 1013.7 23 1011.5 23 5.6 23 4.6 23 15.9 999.9 89.1 75.0 0.12B 999.9 110010 724050 13743 19750818 79.5 24 67.5 24 1014.7 24 1012.4 24 5.6 24 5.5 24 10.9 999.9 88.0* 73.0 0.43B 999.9 010010 724050 13743 19750819 79.2 24 63.6 24 1018.2 24 1016.0 24 12.3 24 5.6 24 8.9 999.9 88.0 72.0 0.00I 999.9 000000 724050 13743 19750820 77.9 23 65.7 23 1020.7 23 1018.4 23 8.8 23 6.2 23 17.9 999.9 84.0 72.0 99.99 999.9 001000 724050 13743 19750821 77.7 22 66.1 22 1023.9 22 1021.6 22 8.5 22 4.7 22 9.9 999.9 84.9* 70.0 0.00I 999.9 000000 724050 13743 19750822 82.7 24 71.7 24 1019.2 24 1016.9 24 3.7 24 8.5 24 12.8 999.9 91.0* 70.0 0.00A 999.9 010000 724050 13743 19750823 76.0 24 65.0 23 1022.2 24 1019.9 24 9.7 24 6.3 24 11.8 999.9 91.0 62.1* 0.35B 999.9 010010 724050 13743 19750824 76.8 23 69.1 23 1019.5 23 1017.1 23 7.6 23 7.1 23 17.9 26.8 89.1* 71.1 0.00A 999.9 010010 724050 13743 19750825 80.8 24 71.5 24 1015.5 24 1013.2 24 6.6 24 6.1 24 11.8 999.9 93.9* 72.0 0.02A 999.9 000000 724050 13743 19750826 85.3 24 74.5 24 1017.2 24 1014.9 24 8.3 24 4.9 24 11.8 999.9 95.0* 72.0 0.00I 999.9 000000 724050 13743 19750827 81.5 24 64.2 24 1023.0 24 1021.0 23 18.4 24 8.2 24 19.8 28.0 95.0 72.0 0.00A 999.9 010010 724050 13743 19750828 78.3 24 59.7 24 1025.8 24 1023.6 24 16.4 24 4.8 24 9.9 999.9 89.1 68.0 0.00I 999.9 000000 724050 13743 19750829 76.9 23 63.7 23 1022.3 23 1020.0 23 13.3 23 5.4 23 11.8 999.9 87.1 68.0 0.00I 999.9 000000 724050 13743 19750830 79.2 24 66.1 24 1015.7 24 1013.5 24 11.8 24 8.6 24 12.8 999.9 91.9* 68.0 99.99 999.9 010010 724050 13743 19750831 69.9 24 65.9 24 1017.8 24 1015.5 24 5.1 24 8.9 24 12.8 999.9 91.9 66.0 0.47G 999.9 110010 724050 13743 19750901 68.2 24 62.8 24 1017.6 24 1015.2 24 8.1 24 8.1 24 9.9 999.9 75.0 64.9 1.81G 999.9 110000 724050 13743 19750902 71.5 24 63.3 24 1015.7 24 1013.3 24 12.4 24 6.8 24 9.9 999.9 79.0* 64.9 0.00G 999.9 000000 724050 13743 19750903 72.6 24 59.0 24 1015.6 24 1013.2 24 14.2 24 8.0 24 12.8 999.9 80.1 64.9 0.00I 999.9 000000 724050 13743 19750904 72.8 23 60.8 23 1017.4 23 1015.0 23 13.6 23 4.9 23 14.0 999.9 84.9* 64.9 0.00A 999.9 010010 724050 13743 19750905 73.4 23 59.3 23 1019.1 23 1016.7 23 10.8 23 4.9 23 8.0 999.9 86.0 64.0 0.00I 999.9 000000 724050 13743 19750906 74.7 24 66.9 24 1015.4 24 1013.0 24 7.7 24 5.7 24 9.9 999.9 81.0 64.0 0.24G 999.9 110010 724050 13743 19750907 69.9 24 60.1 24 1020.8 24 1018.4 24 10.9 24 5.6 24 9.9 999.9 82.0 64.0 0.12G 999.9 010000 724050 13743 19750908 73.6 24 64.9 24 1021.9 24 1019.5 24 6.1 24 3.9 24 11.8 999.9 82.9* 64.0 0.00G 999.9 110000 724050 13743 19750909 72.9 24 59.4 24 1023.7 24 1021.2 24 11.9 24 9.0 24 14.0 999.9 84.0 68.0 0.00I 999.9 000000 724050 13743 19750910 65.3 24 51.5 24 1026.7 24 1024.3 24 16.2 24 5.5 24 8.0 999.9 78.1 55.9 0.00I 999.9 000000 724050 13743 19750911 70.2 24 63.2 24 1021.0 24 1018.6 24 10.9 24 6.4 24 14.0 26.8 80.1* 55.9 99.99 999.9 010000 724050 13743 19750912 75.6 24 68.6 24 1010.7 24 1008.3 24 9.0 24 14.0 24 17.9 23.9 82.9 63.0 0.20C 999.9 110000 724050 13743 19750913 62.2 24 45.8 24 1018.5 24 1016.1 24 22.0 24 8.9 24 15.0 999.9 84.0 52.0 0.28A 999.9 000000 724050 13743 19750914 59.0 23 39.2 23 1027.9 23 1025.4 23 22.7 23 7.3 23 9.9 999.9 70.0 48.0 0.00I 999.9 000000 724050 13743 19750915 60.1 24 46.9 24 1031.2 24 1028.7 24 18.0 24 4.8 24 8.0 999.9 70.0 48.0 0.00I 999.9 000000 724050 13743 19750916 64.9 24 54.4 24 1024.9 24 1022.5 24 13.6 24 4.9 24 8.0 999.9 73.9* 51.1 0.00I 999.9 000000 724050 13743 19750917 67.1 24 56.5 24 1020.8 24 1018.4 24 6.9 24 4.2 24 8.9 999.9 77.0 55.9 0.00B 999.9 010000 724050 13743 19750918 67.6 23 60.2 23 1020.1 23 1017.7 23 7.5 23 6.5 23 14.0 23.9 77.0 55.9 0.08A 999.9 010000 724050 13743 19750919 71.7 23 67.0 23 1016.6 23 1014.2 23 5.1 23 4.6 23 8.0 999.9 78.1* 64.0 0.20C 999.9 110000 724050 13743 19750920 75.9 24 69.6 24 1015.0 24 1012.6 24 6.3 24 5.7 23 9.9 999.9 82.9* 66.9 0.00I 999.9 100000 724050 13743 19750921 71.9 23 62.7 23 1015.4 23 1013.0 23 10.5 23 5.8 23 12.8 999.9 82.9 66.9* 0.00C 999.9 000000 724050 13743 19750922 65.9 24 55.2 24 1020.1 24 1017.7 24 10.0 24 3.7 24 8.0 999.9 73.9 60.1 99.99 999.9 110000 724050 13743 19750923 61.4 23 58.0 23 1016.9 23 1014.5 23 3.2 23 9.1 23 12.8 999.9 72.0 59.0 1.81D 999.9 110000 724050 13743 19750924 65.7 24 61.8 24 1014.4 24 1012.0 24 4.2 24 7.8 24 9.9 16.9 73.9* 59.0 1.02D 999.9 110010 724050 13743 19750925 66.3 24 63.6 24 1018.2 24 1015.8 24 3.1 24 7.3 24 9.9 999.9 71.1 62.1 1.38D 999.9 110010 724050 13743 19750926 71.9 24 66.6 24 1016.5 24 1014.2 24 8.6 24 6.8 24 9.9 999.9 75.9* 64.0 3.15D 999.9 110010 724050 13743 19750927 68.7 24 57.4 24 1017.0 24 1014.6 24 9.9 24 9.3 23 12.8 999.9 77.0 60.1 0.00I 999.9 000000 724050 13743 19750928 64.9 23 50.0 23 1021.3 23 1018.9 23 10.9 23 9.0 23 11.8 999.9 75.0 55.0 0.00I 999.9 000000 724050 13743 19750929 63.3 24 52.1 24 1023.6 24 1021.2 24 11.1 24 3.8 24 5.8 999.9 75.9* 51.1 0.00I 999.9 000000 724050 13743 19750930 65.5 24 57.2 24 1022.6 24 1020.2 24 8.9 24 3.6 24 8.0 999.9 77.0 51.1 0.00I 999.9 100000 724050 13743 19751001 67.2 23 60.2 23 1020.2 23 1017.8 23 6.3 23 4.2 23 8.0 999.9 79.0* 54.0 0.00I 999.9 000000 724050 13743 19751002 65.3 24 54.4 24 1015.6 24 1013.2 24 12.2 24 10.1 24 17.9 22.9 79.0 57.0 0.00B 999.9 010000 724050 13743 19751003 53.0 23 35.6 22 1030.2 23 1027.8 23 20.7 23 7.1 23 11.8 999.9 69.1 43.0 0.00I 999.9 000000 724050 13743 19751004 57.4 24 43.1 24 1029.7 24 1027.3 24 16.9 24 4.9 24 9.9 999.9 75.0* 43.0 0.00I 999.9 000000 724050 13743 19751005 62.8 23 51.5 23 1028.0 23 1025.6 23 9.7 23 4.0 23 8.0 999.9 75.0 44.1 0.00I 999.9 000000 724050 13743 19751006 69.7 20 55.4 20 1020.1 20 1017.7 20 11.3 20 6.0 20 11.8 999.9 79.0* 50.0 0.00A 999.9 010000 724050 13743 19751007 64.5 24 48.7 24 1022.1 24 1019.7 24 13.1 24 6.2 24 9.9 999.9 80.1 52.0 0.00I 999.9 000000 724050 13743 19751008 60.5 24 52.0 24 1023.1 24 1020.7 24 9.8 24 4.5 24 8.9 999.9 75.0* 48.0 99.99 999.9 010000 724050 13743 19751009 61.9 22 57.7 22 1022.5 22 1020.0 22 4.7 22 5.4 22 9.9 999.9 75.0 48.0 0.73C 999.9 110000 724050 13743 19751010 62.2 24 57.2 24 1022.8 24 1020.4 24 5.3 24 4.7 24 5.8 999.9 66.0 59.0 0.02C 999.9 110000 724050 13743 19751011 65.5 24 60.4 24 1018.7 24 1016.3 24 4.1 24 5.1 24 8.9 999.9 73.9* 59.0 0.01G 999.9 110000 724050 13743 19751012 61.6 23 47.8 22 1018.2 23 1015.8 23 14.1 23 10.6 22 15.9 22.0 73.9 52.0 0.00G 999.9 000010 724050 13743 19751013 60.8 24 47.2 24 1021.0 24 1018.6 24 11.1 24 6.4 24 9.9 999.9 75.0* 50.0 0.00I 999.9 000000 724050 13743 19751014 69.0 24 56.6 24 1017.1 24 1014.7 24 12.9 24 6.5 24 8.9 999.9 87.1* 50.0 0.00I 999.9 000000 724050 13743 19751015 71.1 24 60.4 24 1015.1 24 1012.7 24 8.5 24 5.6 24 8.9 999.9 87.1 57.0 0.00I 999.9 000000 724050 13743 19751016 69.9 24 56.6 24 1014.0 24 1011.6 24 12.7 24 7.4 24 9.9 999.9 87.1 60.1 0.00I 999.9 000000 724050 13743 19751017 59.1 24 51.5 24 1017.9 24 1015.5 24 7.9 24 8.5 24 14.0 999.9 73.9 54.0 0.28G 999.9 110000 724050 13743 19751018 72.5 23 65.0 23 1006.6 23 1004.2 23 10.5 23 8.5 23 12.8 999.9 81.0 54.0 0.55G 999.9 110000 724050 13743 19751019 66.0 24 59.9 24 1012.0 24 1009.7 24 13.7 24 6.8 24 9.9 999.9 82.0 60.1 0.00G 999.9 110000 724050 13743 19751020 59.1 24 47.7 24 1013.1 24 1010.8 24 15.6 24 9.0 24 15.0 22.0 73.0 51.1 0.00I 999.9 000000 724050 13743 19751021 57.6 23 45.0 23 1016.7 23 1014.3 23 17.6 23 7.4 23 12.8 999.9 75.0* 46.0 0.00I 999.9 000000 724050 13743 19751022 64.7 24 51.5 24 1013.9 24 1011.5 24 17.6 24 6.1 24 8.9 999.9 82.0* 46.0 0.00I 999.9 000000 724050 13743 19751023 65.5 24 54.7 24 1019.0 24 1016.6 24 11.6 24 4.2 24 8.9 999.9 82.9 51.1 0.00I 999.9 000000 724050 13743 19751024 65.6 24 60.3 24 1024.7 24 1022.3 24 5.2 24 4.3 24 8.9 999.9 81.0 53.1 0.00B 999.9 110000 724050 13743 19751025 69.5 24 64.2 24 1017.9 24 1015.5 24 6.3 24 6.2 24 8.9 999.9 77.0* 60.1 0.04G 999.9 110000 724050 13743 19751026 62.7 24 53.9 24 1017.8 24 1015.4 24 10.1 24 7.7 24 14.0 999.9 77.0 57.0* 0.00G 999.9 000000 724050 13743 19751027 58.3 24 48.5 24 1021.3 24 1018.9 24 13.5 24 7.0 24 9.9 999.9 68.0 54.0 0.00B 999.9 010000 724050 13743 19751028 62.5 24 54.7 24 1022.9 24 1020.4 24 8.4 24 3.8 24 7.0 999.9 75.0 53.1 0.00I 999.9 000000 724050 13743 19751029 63.7 24 55.0 24 1020.7 24 1018.2 24 7.2 24 5.1 24 11.8 999.9 75.0 53.1 0.00I 999.9 000000 724050 13743 19751030 55.3 24 40.1 24 1021.8 24 1019.4 24 14.9 24 12.8 24 18.8 28.0 75.0 46.9 0.21B 999.9 110000 724050 13743 19751031 43.2 22 22.8 22 1030.0 22 1027.6 22 22.6 22 8.7 22 12.8 999.9 61.0 34.0 0.00I 999.9 000000 724050 13743 19751101 47.5 24 31.9 23 1028.4 24 1025.9 24 18.4 24 8.4 24 12.8 22.0 62.1* 34.0 0.00I 999.9 000000 724050 13743 19751102 54.9 24 40.6 24 1024.3 24 1021.9 24 18.4 24 4.8 24 8.0 999.9 73.0* 37.0 0.00A 999.9 000000 724050 13743 19751103 60.6 24 49.3 24 1023.5 24 1021.1 24 10.4 24 4.3 24 7.0 999.9 78.1* 43.0 0.00I 999.9 000000 724050 13743 19751104 63.8 23 51.1 23 1021.4 23 1018.9 23 10.7 23 5.8 23 12.8 999.9 80.1* 46.9 0.00I 999.9 000000 724050 13743 19751105 66.7 23 52.4 23 1021.5 23 1019.1 23 14.0 23 6.2 23 9.9 999.9 81.0* 50.0 0.00I 999.9 000000 724050 13743 19751106 62.8 22 49.6 22 1023.5 22 1021.1 22 13.6 22 3.8 22 5.8 999.9 81.0 51.1 0.00I 999.9 000000 724050 13743 19751107 64.3 24 56.2 24 1020.1 24 1017.7 24 10.8 24 5.0 24 15.0 23.9 77.0 51.1 0.00I 999.9 000000 724050 13743 19751108 70.3 21 61.7 21 1015.2 21 1012.8 21 10.7 21 7.0 21 12.8 999.9 80.1* 55.0 0.04A 999.9 110000 724050 13743 19751109 65.1 23 60.0 23 1018.9 23 1016.3 23 8.8 23 2.9 23 7.0 999.9 81.0 57.0 0.00I 999.9 100000 724050 13743 19751110 67.8 24 63.4 24 1016.8 24 1014.4 24 5.5 24 7.5 23 15.9 24.9 77.0 57.0 0.08A 999.9 110000 724050 13743 19751111 60.4 23 35.1 23 1020.4 23 1018.0 23 20.3 23 9.3 23 19.0 28.0 75.9 48.0 0.04B 999.9 010000 724050 13743 19751112 56.0 21 47.0 21 1015.3 21 1012.8 21 12.8 21 5.9 21 15.9 999.9 64.9 48.0 0.08A 999.9 110000 724050 13743 19751113 53.2 24 43.2 24 1004.4 24 1002.0 24 11.2 24 10.6 24 19.8 32.8 62.1 46.9* 1.46C 999.9 110000 724050 13743 19751114 44.8 24 28.1 24 1005.9 24 1003.5 24 19.5 24 12.8 24 19.8 29.9 60.1 41.0* 0.00B 999.9 010000 724050 13743 19751115 43.5 24 23.1 24 1017.6 24 1015.1 24 22.4 24 9.7 24 14.0 18.8 55.0* 36.0 0.00I 999.9 000000 724050 13743 19751116 50.2 24 30.8 24 1017.9 24 1015.5 24 19.9 24 7.4 24 12.8 999.9 66.9* 36.0 0.00I 999.9 000000 724050 13743 19751117 50.3 24 39.2 24 1024.1 24 1021.7 24 10.6 24 3.5 24 9.9 999.9 66.9 37.9 0.00I 999.9 000000 724050 13743 19751118 54.0 24 41.7 24 1026.7 24 1024.3 24 11.9 24 5.6 24 11.8 999.9 72.0* 37.9 0.00I 999.9 000000 724050 13743 19751119 55.3 24 44.8 24 1026.4 24 1024.0 24 9.1 24 4.1 24 7.0 999.9 73.0 39.9 0.00I 999.9 000000 724050 13743 19751120 55.1 24 45.5 24 1019.6 24 1017.2 24 9.2 24 5.9 24 16.9 22.0 72.0 42.1 0.00I 999.9 000000 724050 13743 19751121 58.5 24 49.0 24 1008.0 24 1005.7 24 12.6 24 11.5 24 16.9 23.9 71.1 42.1 0.00B 999.9 010000 724050 13743 19751122 47.7 23 28.6 23 1016.9 23 1014.5 23 20.1 23 10.1 23 15.0 999.9 66.9 43.0 0.02A 999.9 000000 724050 13743 19751123 41.3 24 27.8 24 1027.7 24 1025.2 24 20.9 24 7.8 24 11.8 999.9 52.0 33.1 0.00I 999.9 000000 724050 13743 19751124 45.5 24 28.5 24 1022.3 24 1020.0 24 15.7 24 11.0 24 14.0 19.8 52.0* 33.1 0.00I 999.9 000000 724050 13743 19751125 41.8 23 28.7 23 1017.9 23 1015.5 23 12.2 23 3.7 23 8.9 999.9 53.1 34.0 0.00I 999.9 000000 724050 13743 19751126 43.1 24 29.0 24 1026.5 24 1024.1 24 11.7 24 5.0 24 8.0 999.9 52.0* 23.0 0.24A 999.9 000000 724050 13743 19751127 53.1 23 43.0 23 1018.2 23 1015.7 23 10.9 23 8.5 23 12.8 17.9 62.1* 33.1 0.00A 999.9 000000 724050 13743 19751128 45.4 23 27.9 23 1024.2 23 1021.8 23 15.5 23 9.3 23 11.8 999.9 63.0 36.0 0.00I 999.9 000000 724050 13743 19751129 42.2 24 28.3 24 1033.7 24 1031.3 24 9.8 24 5.7 24 9.9 999.9 53.1* 33.1 0.00I 999.9 000000 724050 13743 19751130 50.4 24 40.9 24 1028.4 24 1026.0 24 9.0 24 8.7 24 15.9 999.9 60.1* 33.1 0.00I 999.9 000000 724050 13743 19751201 55.0 24 39.4 24 1017.9 24 1015.5 24 14.7 24 16.2 24 22.9 31.9 66.0 41.0* 0.28B 999.9 110000 724050 13743 19751202 38.9 24 19.0 24 1023.1 24 1020.6 24 19.6 24 7.1 24 11.8 16.9 46.9* 26.1 0.00I 999.9 000000 724050 13743 19751203 40.5 24 23.6 24 1019.3 24 1016.9 24 19.1 24 8.7 24 16.9 25.8 52.0 30.9 0.00I 999.9 000000 724050 13743 19751204 38.1 24 18.7 24 1029.0 24 1026.6 24 19.9 24 7.1 24 12.8 23.9 53.1 28.9 0.00I 999.9 000000 724050 13743 19751205 42.5 24 31.4 24 1029.2 24 1026.8 24 13.1 24 5.0 24 7.0 999.9 57.0* 28.9 0.00I 999.9 000000 724050 13743 19751206 47.1 24 38.8 24 1023.5 24 1021.0 24 6.5 24 4.6 24 8.9 999.9 64.9* 34.0 0.00I 999.9 000000 724050 13743 19751207 45.4 24 31.5 24 1026.2 24 1023.7 24 17.4 24 11.5 24 15.9 23.9 66.0 35.1 0.08A 999.9 010000 724050 13743 19751208 37.0 24 27.5 24 1024.0 24 1021.5 24 8.1 24 9.4 24 12.8 999.9 48.0 32.0 0.10B 999.9 011000 724050 13743 19751209 43.5 23 39.7 23 1013.6 23 1011.2 23 3.2 23 8.5 23 15.9 999.9 52.0* 32.0 0.31B 999.9 110000 724050 13743 19751210 43.2 24 32.0 24 1008.3 24 1005.9 24 16.9 24 10.2 24 15.9 23.9 53.1 39.0 0.12A 999.9 100000 724050 13743 19751211 40.2 24 24.4 24 1018.7 24 1016.3 24 19.4 24 7.9 24 11.8 999.9 51.1* 30.9 0.00I 999.9 000000 724050 13743 19751212 41.1 24 32.4 24 1027.3 24 1024.9 24 9.4 24 4.3 24 8.0 999.9 52.0 30.9 0.00I 999.9 000000 724050 13743 19751213 45.9 23 39.2 23 1033.5 23 1031.1 23 6.5 23 5.4 23 8.0 999.9 52.0 32.0 0.04G 999.9 010000 724050 13743 19751214 45.1 24 41.9 24 1033.6 24 1031.2 24 2.2 24 3.9 24 5.8 999.9 53.1 41.0 0.00G 999.9 100000 724050 13743 19751215 56.4 24 46.6 24 1019.4 24 1017.0 24 10.7 24 11.4 24 16.9 26.8 68.0* 43.0 0.00I 999.9 000000 724050 13743 19751216 52.8 23 39.9 23 1014.1 23 1011.8 23 16.6 23 8.8 22 15.9 25.8 68.0 43.0* 0.02B 999.9 010000 724050 13743 19751217 42.3 23 29.7 23 1021.3 23 1018.8 23 19.6 23 3.9 23 8.9 999.9 57.0 32.0 0.00I 999.9 000000 724050 13743 19751218 36.4 24 19.0 24 1014.5 24 1012.1 24 16.6 24 11.9 24 19.8 31.9 53.1 25.2* 0.00I 999.9 000000 724050 13743 19751219 23.4 24 -0.5 24 1025.8 24 1023.4 24 22.8 24 10.4 24 15.9 999.9 42.1 17.1 0.00I 999.9 000000 724050 13743 19751220 34.0 22 12.2 22 1023.2 22 1020.8 22 19.2 22 9.7 22 15.0 22.9 44.1* 17.1 0.00I 999.9 000000 724050 13743 19751221 37.1 24 22.4 24 1019.4 24 1017.1 24 13.3 24 8.1 24 14.0 999.9 46.0 27.0 99.99 999.9 001000 724050 13743 19751222 33.1 24 16.7 24 1015.2 24 1012.8 24 14.3 24 15.3 24 19.8 26.8 37.9 27.0 0.00A 999.9 000000 724050 13743 19751223 33.7 24 16.0 24 1016.7 24 1014.4 24 16.8 24 12.4 24 15.9 19.8 42.1 27.0 0.00I 999.9 000000 724050 13743 19751224 30.8 22 11.1 22 1028.8 22 1026.3 22 19.9 22 7.4 22 14.0 999.9 42.1 23.0 0.00I 999.9 000000 724050 13743 19751225 31.7 24 16.0 24 1029.9 24 1027.5 24 19.9 24 4.7 24 8.9 999.9 39.9* 23.0 0.00I 999.9 000000 724050 13743 19751226 39.7 24 35.3 24 1010.6 24 1006.6 22 6.2 24 6.5 24 14.0 30.9 48.0* 34.0* 1.10C 999.9 111000 724050 13743 19751227 41.9 24 33.0 24 1012.2 24 1009.8 24 11.8 24 7.2 24 11.8 999.9 48.0 35.1 0.00H 999.9 010000 724050 13743 19751228 38.6 23 24.7 22 1023.8 23 1021.4 23 12.4 23 6.4 23 9.9 999.9 44.1 34.0 0.00A 999.9 000000 724050 13743 19751229 38.5 22 27.7 22 1029.6 22 1027.2 22 9.5 22 3.5 22 7.0 999.9 45.0 34.0 0.00I 999.9 000000 724050 13743 19751230 39.7 23 33.4 23 1024.7 23 1022.3 23 7.5 23 4.8 23 8.0 999.9 45.0 34.0 0.08A 999.9 110000 724050 13743 19751231 43.6 24 39.5 24 1012.9 24 1010.5 24 5.6 24 5.0 24 10.9 999.9 46.0 35.1 0.35C 999.9 110000 fluids-1.0.22/tests/gsod/2013/0000755000175000017500000000000014302004506015065 5ustar nileshnileshfluids-1.0.22/tests/gsod/2013/724050-13743.op0000644000175000017500000014327214302004506016656 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20130101 41.4 24 26.9 24 1015.7 24 1013.4 24 10.0 24 4.3 24 11.1 999.9 45.0 29.1 0.00G 999.9 000000 724050 13743 20130102 38.0 24 21.7 24 1018.5 24 1016.2 24 10.0 24 8.9 24 13.0 17.1 45.0 33.1 0.00G 999.9 000000 724050 13743 20130103 33.0 24 14.6 24 1023.5 24 1021.3 24 10.0 24 5.6 24 8.9 999.9 39.9 30.0 0.00G 999.9 000000 724050 13743 20130104 36.2 24 19.7 24 1022.3 24 1020.0 24 10.0 24 6.1 24 14.0 20.0 46.0 27.0 0.00G 999.9 000000 724050 13743 20130105 39.3 24 18.8 24 1025.1 24 1022.8 24 10.0 24 5.3 24 11.1 21.0 46.0 27.1 0.00G 999.9 000000 724050 13743 20130106 42.1 24 28.8 24 1021.0 24 1018.9 24 10.0 24 5.1 24 11.1 17.1 52.0 31.1 0.01G 999.9 011000 724050 13743 20130107 46.0 24 24.9 24 1025.7 24 1023.4 24 10.0 24 7.4 24 12.0 18.1 52.0 35.1 0.00G 999.9 000000 724050 13743 20130108 40.1 24 28.6 24 1030.0 24 1027.7 24 9.7 24 4.8 24 12.0 999.9 53.1 30.0 0.00G 999.9 000000 724050 13743 20130109 41.7 24 34.7 24 1028.0 24 1025.7 24 9.7 24 3.2 24 6.0 999.9 53.1 30.2 0.00G 999.9 010000 724050 13743 20130110 49.8 24 28.9 24 1031.9 24 1029.6 24 10.0 24 5.7 24 12.0 18.1 57.0 34.0 0.01G 999.9 000000 724050 13743 20130111 43.5 24 32.4 24 1030.8 19 1027.2 24 8.8 24 1.7 24 6.0 999.9 57.0 37.9 0.00G 999.9 110000 724050 13743 20130112 45.5 24 42.4 24 1020.9 17 1018.5 24 3.8 24 2.9 24 8.9 999.9 51.1 37.9 0.01G 999.9 110000 724050 13743 20130113 47.4 24 46.1 24 1019.9 12 1017.2 24 1.4 24 2.9 24 7.0 999.9 55.0* 42.8* 0.00G 999.9 110000 724050 13743 20130114 54.5 24 48.4 24 1018.9 21 1016.0 24 6.6 24 6.3 24 13.0 22.9 63.0 43.0 0.00G 999.9 110000 724050 13743 20130115 42.8 24 36.9 24 1025.2 16 1023.1 24 7.1 24 7.7 24 14.0 999.9 53.1* 39.2* 0.40G 999.9 010000 724050 13743 20130116 39.0 24 35.4 24 1017.1 14 1016.3 24 7.1 24 6.4 24 14.0 17.1 43.0 37.0 0.69G 999.9 010000 724050 13743 20130117 43.4 24 35.3 24 1018.0 24 1015.5 24 10.0 24 5.0 24 11.1 999.9 46.0 37.0 0.10G 999.9 010000 724050 13743 20130118 38.1 24 19.8 24 1025.9 24 1023.6 24 10.0 24 9.8 24 17.1 28.0 46.0 34.0 0.01G 999.9 000000 724050 13743 20130119 39.7 24 22.5 24 1027.7 24 1025.4 24 10.0 24 10.6 24 14.0 22.0 54.0 30.9 0.00G 999.9 000000 724050 13743 20130120 48.3 24 24.8 24 1013.8 24 1011.5 24 10.0 24 11.4 24 15.9 25.1 62.1 33.1 0.00G 999.9 000000 724050 13743 20130121 39.9 24 16.7 24 1016.8 24 1014.2 24 10.0 24 7.5 24 13.0 17.1 62.1 33.1 0.00G 999.9 000000 724050 13743 20130122 26.7 24 0.7 24 1019.2 24 1016.9 24 10.0 24 14.2 24 21.0 32.1 46.9 19.9 0.00G 999.9 000000 724050 13743 20130123 21.0 24 -2.2 24 1026.2 24 1023.7 24 10.0 24 8.6 24 13.0 17.1 30.0 15.1 0.00G 999.9 000000 724050 13743 20130124 23.8 24 8.1 24 1027.1 16 1022.5 24 7.2 24 9.8 24 21.0 27.0 28.9 15.1 0.03G 999.9 001000 724050 13743 20130125 22.4 24 2.1 24 1031.0 22 1028.1 24 9.1 24 6.5 24 12.0 19.0 28.9 19.0 0.02A 999.9 001000 724050 13743 20130126 28.0 24 17.7 24 1022.6 23 1019.9 24 9.9 24 5.0 24 8.9 15.0 37.0 19.0 0.00H 999.9 001000 724050 13743 20130127 31.7 24 18.3 24 1032.9 24 1030.5 24 10.0 24 5.9 24 8.9 999.9 37.9 25.0 0.00G 999.9 000000 724050 13743 20130128 35.7 24 28.2 24 1028.7 19 1026.4 24 7.2 24 7.4 24 13.0 19.0 44.1 27.0 0.03G 999.9 011000 724050 13743 20130129 50.1 24 42.1 24 1018.6 24 1016.3 24 8.9 24 6.0 24 9.9 999.9 69.1 33.1 0.10G 999.9 000000 724050 13743 20130130 58.0 24 51.6 24 1009.7 23 1007.7 24 10.0 24 11.5 24 19.0 25.1 72.0 41.0 0.00G 999.9 010000 724050 13743 20130131 52.2 24 36.2 24 1001.2 19 996.7 24 9.2 24 14.8 24 26.0 36.9 72.0 37.9 1.14G 999.9 010000 724050 13743 20130201 31.9 24 11.3 24 1017.0 22 1013.8 24 9.5 24 11.8 24 21.0 32.1 48.9 25.0 0.28G 999.9 001000 724050 13743 20130202 24.3 24 5.5 24 1026.8 24 1024.6 24 9.7 24 6.9 24 15.0 22.0 36.0 18.0 0.01G 999.9 001000 724050 13743 20130203 30.9 24 25.3 24 1014.2 22 1012.4 24 7.8 24 3.9 24 11.1 999.9 35.1 18.0 0.02G 999.9 001000 724050 13743 20130204 31.9 24 14.5 24 1016.4 24 1014.1 24 9.9 24 6.9 24 13.0 22.9 37.0 26.1 0.00G 999.9 001000 724050 13743 20130205 37.6 24 24.2 24 1012.8 24 1010.6 24 9.9 24 4.2 24 7.0 999.9 42.1 26.2 0.00G 999.9 000000 724050 13743 20130206 40.4 24 26.6 24 1018.3 24 1016.0 24 9.7 24 6.3 24 17.1 22.9 48.9 34.0 0.00G 999.9 010000 724050 13743 20130207 36.4 24 23.0 24 1028.8 24 1026.6 24 10.0 24 4.3 24 11.1 999.9 48.9 32.0 0.00G 999.9 000000 724050 13743 20130208 38.4 24 31.9 24 1016.4 18 1014.3 24 8.6 24 9.1 24 14.0 15.9 43.0 32.0 0.16G 999.9 010000 724050 13743 20130209 37.3 24 18.8 24 1018.9 24 1016.6 24 10.0 24 16.8 24 26.0 36.9 44.1 30.9 0.04G 999.9 000000 724050 13743 20130210 35.2 24 15.3 24 1030.1 24 1027.8 24 10.0 24 5.5 24 9.9 999.9 46.0 26.1 0.00G 999.9 000000 724050 13743 20130211 42.6 24 35.8 24 1018.1 18 1016.0 24 6.9 24 7.8 24 14.0 20.0 54.0 27.1 0.28G 999.9 010000 724050 13743 20130212 51.8 24 30.8 24 1012.0 24 1009.7 24 10.0 24 7.7 24 14.0 24.1 59.0 37.9 0.00I 999.9 000000 724050 13743 20130213 41.6 24 29.1 24 1011.9 22 1009.0 24 9.4 24 5.3 24 11.1 999.9 59.0 34.0 0.00G 999.9 010000 724050 13743 20130214 40.5 24 29.7 24 1013.7 20 1010.2 24 8.2 24 6.1 24 12.0 15.9 50.0 34.0 0.19G 999.9 011000 724050 13743 20130215 44.9 24 31.2 24 1015.9 24 1013.5 24 10.0 24 6.1 24 22.9 31.1 60.1 35.1 0.00G 999.9 010000 724050 13743 20130216 39.2 24 32.0 24 1014.2 21 1012.4 24 9.5 24 7.5 24 15.9 22.9 60.1 36.0 0.12G 999.9 011000 724050 13743 20130217 31.7 24 11.5 24 1013.3 24 1011.1 24 10.0 24 15.0 24 21.0 32.1 41.0 27.0 0.02G 999.9 000000 724050 13743 20130218 30.1 24 6.1 24 1025.4 24 1023.2 24 10.0 24 8.7 24 18.1 27.0 42.1 21.9 0.00G 999.9 000000 724050 13743 20130219 40.3 24 26.5 24 1016.9 23 1014.5 24 9.7 24 11.0 24 19.0 24.1 46.9 22.1 0.00G 999.9 011000 724050 13743 20130220 38.4 24 17.8 24 1014.2 24 1012.0 24 10.0 24 12.7 24 22.0 28.0 46.0 32.0 0.07G 999.9 000000 724050 13743 20130221 31.2 24 9.7 24 1022.2 24 1020.0 24 10.0 24 12.2 24 19.0 24.1 41.0 25.0 0.00G 999.9 000000 724050 13743 20130222 33.1 24 18.5 24 1027.5 20 1025.1 24 9.5 24 6.9 24 12.0 999.9 41.0 25.0 0.00G 999.9 011000 724050 13743 20130223 37.5 24 34.4 24 1017.8 18 1016.7 24 5.2 24 4.5 24 8.0 15.9 46.4* 33.8* 0.08G 999.9 010000 724050 13743 20130224 46.5 24 35.1 24 1011.7 21 1009.1 24 9.3 24 9.8 24 28.0 35.9 54.0 34.0 0.06G 999.9 000000 724050 13743 20130225 38.5 24 19.0 24 1021.3 24 1019.0 24 10.0 24 7.3 24 28.0 999.9 54.0 30.0 0.00G 999.9 000000 724050 13743 20130226 38.6 24 29.8 24 1020.3 23 1018.4 24 8.8 24 7.0 24 18.1 27.0 52.0 30.2 0.00G 999.9 010000 724050 13743 20130227 48.1 24 39.5 24 1003.4 23 1001.1 24 7.6 24 8.1 24 15.9 21.0 57.9 33.1 0.63G 999.9 010000 724050 13743 20130228 46.2 24 29.4 24 1004.9 24 1002.6 24 10.0 24 8.1 24 15.9 21.0 57.9 42.1 0.01G 999.9 010000 724050 13743 20130301 43.5 24 26.4 24 1008.6 24 1006.3 24 10.0 24 10.8 24 15.9 21.0 48.9 41.0 0.00I 999.9 000000 724050 13743 20130302 37.0 24 21.1 24 1011.7 24 1009.4 24 10.0 24 11.0 24 15.9 19.0 46.0 33.1 0.00G 999.9 000000 724050 13743 20130303 35.2 24 18.0 24 1011.1 24 1008.8 24 10.0 24 11.1 24 18.1 25.1 44.1 30.0 0.00G 999.9 000000 724050 13743 20130304 36.0 24 14.4 24 1014.6 24 1012.4 24 10.0 24 13.2 24 20.0 28.0 46.0 30.0 0.00G 999.9 000000 724050 13743 20130305 40.6 24 16.1 24 1017.1 24 1014.8 24 10.0 24 6.3 24 14.0 999.9 53.1 30.2 0.00G 999.9 000000 724050 13743 20130306 37.8 24 30.5 24 1008.9 14 1004.9 24 5.6 24 16.2 24 28.9 42.0 53.1 32.0 0.28G 999.9 011000 724050 13743 20130307 43.2 24 28.0 24 1017.5 24 1015.2 24 10.0 24 14.6 24 22.0 28.9 52.0 34.0 0.75G 999.9 000000 724050 13743 20130308 43.2 24 25.5 24 1021.4 24 1019.1 24 10.0 24 16.0 24 28.9 35.0 52.0 37.0 0.00G 999.9 000000 724050 13743 20130309 47.4 24 22.8 24 1025.7 24 1023.4 24 10.0 24 8.6 24 20.0 22.9 62.1 34.0 0.00G 999.9 000000 724050 13743 20130310 48.8 24 27.7 24 1026.0 24 1023.6 24 10.0 24 4.4 24 21.0 999.9 63.0 34.0 0.00G 999.9 000000 724050 13743 20130311 50.3 24 39.4 24 1021.7 21 1019.7 24 9.9 24 7.4 24 12.0 14.0 63.0 37.0 0.00G 999.9 000000 724050 13743 20130312 56.8 24 47.5 24 1011.3 21 1008.4 24 9.2 24 13.3 24 19.0 28.0 62.1 44.1 0.15G 999.9 110000 724050 13743 20130313 45.2 24 26.3 24 1014.4 24 1012.0 24 10.0 24 8.7 24 19.0 26.0 60.1 37.0 0.68G 999.9 010000 724050 13743 20130314 39.3 24 15.0 24 1018.7 24 1016.4 24 10.0 24 14.8 24 21.0 34.0 52.0 34.0 0.00G 999.9 000000 724050 13743 20130315 43.8 24 18.6 24 1016.6 24 1014.3 24 10.0 24 8.1 24 15.9 22.0 59.0 33.1 0.00G 999.9 000000 724050 13743 20130316 51.0 24 35.6 24 1008.3 24 1005.8 24 10.0 24 4.7 24 13.0 999.9 61.0 33.1 0.00G 999.9 010000 724050 13743 20130317 41.1 24 30.4 24 1018.1 24 1015.3 24 9.7 24 7.2 24 14.0 999.9 61.0 37.0 0.03G 999.9 000000 724050 13743 20130318 38.3 24 28.1 24 1025.2 16 1021.7 24 7.6 24 6.8 24 12.0 999.9 43.0 33.1 0.00G 999.9 011000 724050 13743 20130319 45.3 24 33.4 24 1010.0 16 1007.8 24 9.8 24 6.5 24 19.0 28.9 60.1 36.0 0.32G 999.9 010000 724050 13743 20130320 47.2 24 8.8 24 1013.5 24 1011.1 24 10.0 24 11.7 24 20.0 35.0 60.1 39.0 0.00G 999.9 000000 724050 13743 20130321 39.3 24 15.1 24 1009.4 24 1007.0 24 10.0 24 14.0 24 20.0 25.1 54.0 33.1 0.00G 999.9 001000 724050 13743 20130322 36.8 24 11.2 24 1013.4 24 1011.1 24 10.0 24 10.4 24 15.9 26.0 50.0 28.0 0.00G 999.9 000000 724050 13743 20130323 42.7 24 18.8 24 1015.7 24 1013.4 24 10.0 24 6.5 24 14.0 22.0 55.0 28.2 0.00G 999.9 000000 724050 13743 20130324 41.4 24 21.0 24 1013.2 24 1010.9 24 10.0 24 6.5 24 13.0 999.9 55.0 32.0 0.00G 999.9 011000 724050 13743 20130325 36.1 24 32.1 24 1002.4 12 1000.1 24 5.7 24 6.7 24 11.1 19.0 44.1 33.1 0.35G 1.2 111000 724050 13743 20130326 41.4 24 30.4 24 1009.7 23 1006.8 24 9.8 24 7.3 24 14.0 22.9 51.1 33.1 0.21G 1.2 010000 724050 13743 20130327 45.5 24 25.9 24 1016.9 24 1014.6 24 10.0 24 11.0 24 18.1 25.1 52.0 35.1 0.00G 999.9 010000 724050 13743 20130328 44.5 24 25.7 24 1020.4 24 1018.0 24 10.0 24 10.6 24 17.1 26.0 52.0 39.0 0.01G 999.9 010000 724050 13743 20130329 48.8 24 27.2 24 1023.5 24 1021.1 24 10.0 24 10.0 24 20.0 24.1 60.1 39.9 0.00G 999.9 000000 724050 13743 20130330 50.5 24 27.6 24 1022.3 24 1020.0 24 10.0 24 3.0 24 8.0 15.9 61.0 41.0 0.00G 999.9 000000 724050 13743 20130331 50.2 24 36.5 24 1016.3 22 1013.4 24 9.4 24 5.1 24 11.1 999.9 61.0 41.0 0.00G 999.9 010000 724050 13743 20130401 52.9 24 41.0 24 1008.9 19 1006.3 24 7.9 24 8.9 24 21.0 29.9 68.0 44.1 0.02G 999.9 110000 724050 13743 20130402 45.1 24 14.1 24 1017.8 24 1015.4 24 10.0 24 10.2 24 17.1 25.1 51.1* 39.0* 0.00G 999.9 000000 724050 13743 20130403 44.1 24 12.4 24 1023.5 24 1021.2 24 10.0 24 9.8 24 20.0 31.1 54.0 33.1 0.00G 999.9 000000 724050 13743 20130404 40.4 24 14.7 24 1028.1 24 1025.8 24 10.0 24 6.4 24 15.0 999.9 54.0 30.9 0.00G 999.9 000000 724050 13743 20130405 49.1 24 31.3 24 1014.4 17 1012.7 24 9.2 24 8.2 24 14.0 20.0 66.9 31.1 0.28G 999.9 010000 724050 13743 20130406 49.9 24 19.8 24 1022.5 24 1020.1 24 10.0 24 8.7 24 15.9 999.9 66.9 39.0 0.12G 999.9 000000 724050 13743 20130407 52.8 24 31.8 24 1022.8 24 1020.4 24 10.0 24 12.0 24 18.1 27.0 71.1 39.9 0.00G 999.9 000000 724050 13743 20130408 64.8 24 44.1 24 1016.8 24 1014.4 24 10.0 24 7.4 24 12.0 999.9 80.1 42.1 0.00G 999.9 000000 724050 13743 20130409 72.1 24 50.5 24 1016.2 24 1013.9 24 10.0 24 8.3 24 12.0 17.1 86.0 53.1 0.00G 999.9 000000 724050 13743 20130410 75.7 24 53.0 24 1012.9 24 1010.6 24 10.0 24 9.3 24 15.0 20.0 91.0 60.1 0.00G 999.9 000000 724050 13743 20130411 76.2 24 55.6 24 1009.9 24 1007.6 24 10.0 24 6.2 24 19.0 24.1 91.0 63.0 0.00G 999.9 000000 724050 13743 20130412 61.5 24 56.8 24 1006.1 18 1003.8 24 8.6 24 9.0 24 19.0 27.0 86.0 53.1 0.26G 999.9 110010 724050 13743 20130413 59.5 24 42.1 24 1011.0 22 1008.1 24 9.2 24 7.8 24 19.0 27.0 75.0 48.9 0.54G 999.9 000000 724050 13743 20130414 58.8 24 39.7 24 1017.4 24 1015.0 24 10.0 24 6.2 24 14.0 999.9 70.0 48.0 0.00G 999.9 000000 724050 13743 20130415 60.2 24 45.0 24 1022.6 24 1020.3 24 10.0 24 6.4 24 13.0 999.9 69.1 48.0 0.00G 999.9 010000 724050 13743 20130416 62.5 24 51.1 24 1024.7 24 1022.6 24 10.0 24 5.9 24 15.0 999.9 73.9 55.9 0.00G 999.9 000000 724050 13743 20130417 68.5 24 58.4 24 1021.5 24 1019.2 24 9.8 24 6.5 24 15.9 999.9 81.0 55.9 0.00G 999.9 010000 724050 13743 20130418 66.5 24 57.3 24 1021.7 22 1019.7 24 9.2 24 6.6 24 13.0 22.0 77.0* 60.8* 0.05G 999.9 010000 724050 13743 20130419 70.0 24 60.2 24 1011.6 19 1009.0 24 10.0 24 12.4 24 34.0 46.0 79.0 61.0 0.02G 999.9 010010 724050 13743 20130420 56.2 24 35.3 24 1015.6 23 1012.3 24 9.4 24 11.1 24 17.1 24.1 79.0 48.0 1.37G 999.9 010000 724050 13743 20130421 49.8 24 23.5 24 1031.8 24 1029.5 24 10.0 24 9.5 24 17.1 21.0 62.1 42.1 0.01G 999.9 000000 724050 13743 20130422 49.0 24 33.2 24 1034.1 24 1031.7 24 10.0 24 8.5 24 13.0 20.0 57.0 41.0 0.00G 999.9 000000 724050 13743 20130423 52.8 24 39.0 24 1026.6 24 1024.2 24 10.0 24 6.7 24 12.0 999.9 63.0 41.0 0.00G 999.9 000000 724050 13743 20130424 60.0 24 46.9 24 1017.0 24 1014.7 24 10.0 24 8.3 24 19.0 26.0 79.0 48.0 0.00G 999.9 000000 724050 13743 20130425 59.5 24 35.8 24 1021.1 23 1018.3 24 10.0 24 11.2 24 24.1 34.0 79.0 46.9 0.01G 999.9 010000 724050 13743 20130426 57.9 24 35.4 24 1028.4 24 1025.9 24 10.0 24 5.4 24 9.9 15.9 68.0 46.9 0.00I 999.9 000000 724050 13743 20130427 60.7 24 38.4 24 1029.0 24 1026.7 24 10.0 24 3.2 24 8.9 999.9 73.0 46.9 0.00G 999.9 000000 724050 13743 20130428 59.5 24 40.6 24 1024.8 24 1022.6 24 10.0 24 6.8 24 13.0 999.9 73.0 48.9 0.00G 999.9 010000 724050 13743 20130429 58.3 24 50.6 24 1020.3 15 1017.7 24 7.9 24 6.6 24 15.9 22.0 68.0 51.1 0.11G 999.9 010000 724050 13743 20130430 58.0 24 54.3 24 1021.4 9 1018.9 24 7.4 24 8.2 24 13.0 17.1 62.1 54.0 0.12G 999.9 010000 724050 13743 20130501 59.9 24 42.3 24 1027.4 24 1025.1 24 10.0 24 7.8 24 13.0 18.1 71.1 50.0 0.02G 999.9 000000 724050 13743 20130502 57.8 24 44.6 24 1029.7 23 1027.5 24 10.0 24 6.4 24 13.0 15.9 66.9* 48.2* 0.00G 999.9 000000 724050 13743 20130503 59.1 24 42.7 24 1027.6 24 1025.3 24 10.0 24 7.1 24 13.0 18.1 68.0 48.9 0.00G 999.9 000000 724050 13743 20130504 57.0 24 42.1 24 1025.6 24 1023.4 24 10.0 24 8.2 24 15.0 21.0 69.1 48.9 0.00G 999.9 000000 724050 13743 20130505 54.7 24 39.5 24 1023.5 24 1021.2 24 10.0 24 8.0 24 15.0 21.0 63.0* 46.4* 0.00G 999.9 000000 724050 13743 20130506 56.4 24 49.1 24 1020.9 22 1018.7 24 8.9 24 9.8 24 14.0 18.1 64.9 46.9 0.00G 999.9 010000 724050 13743 20130507 61.6 24 57.8 24 1016.7 22 1014.3 24 7.2 24 10.8 24 15.9 20.0 66.0 52.0 0.00G 999.9 010000 724050 13743 20130508 63.3 24 56.1 24 1015.0 21 1012.7 24 9.7 24 6.3 24 18.1 27.0 72.0 59.0 0.55G 999.9 010000 724050 13743 20130509 62.6 24 55.3 24 1014.7 22 1012.4 24 9.5 24 4.5 24 9.9 999.9 77.0 55.9 0.04G 999.9 010000 724050 13743 20130510 69.0 24 58.6 24 1015.2 24 1012.9 24 9.0 24 4.5 24 12.0 999.9 82.9 55.9 0.06G 999.9 110000 724050 13743 20130511 69.7 24 61.6 24 1009.3 21 1007.7 24 9.5 24 6.7 24 15.0 18.1 82.9 57.9 0.49G 999.9 010010 724050 13743 20130512 63.8 24 44.3 24 1010.2 23 1007.6 24 9.9 24 9.7 24 21.0 28.0 80.1 59.0 0.06G 999.9 010010 724050 13743 20130513 55.5 24 25.5 24 1018.2 24 1015.9 24 10.0 24 9.8 24 15.9 26.0 66.9 46.0 0.00G 999.9 000000 724050 13743 20130514 54.0 24 28.5 24 1021.6 24 1019.2 24 10.0 24 5.9 24 9.9 15.9 66.9 42.1 0.00G 999.9 000000 724050 13743 20130515 65.8 24 47.1 24 1013.2 22 1011.4 24 10.0 24 6.7 24 15.9 25.1 84.9* 57.9* 0.00G 999.9 010000 724050 13743 20130516 75.9 24 58.5 24 1009.1 24 1006.8 24 10.0 24 7.7 24 22.0 28.0 87.1 57.0 0.00G 999.9 010000 724050 13743 20130517 74.8 24 52.0 24 1016.2 24 1013.9 24 10.0 24 6.3 24 13.0 14.0 87.1 63.0 0.00G 999.9 000000 724050 13743 20130518 66.0 24 53.7 24 1022.3 24 1019.9 24 9.8 24 5.4 24 11.1 999.9 75.0* 60.8* 0.00G 999.9 010000 724050 13743 20130519 65.5 24 60.8 24 1022.2 13 1019.7 24 7.0 24 5.1 24 8.0 999.9 75.9* 60.8* 0.06G 999.9 110000 724050 13743 20130520 72.0 24 65.1 24 1018.2 20 1016.3 24 9.2 24 5.3 24 9.9 999.9 82.0 61.0 0.02G 999.9 010000 724050 13743 20130521 73.8 24 66.7 24 1014.9 21 1012.8 24 9.9 24 7.5 24 12.0 999.9 82.0 66.0 0.00G 999.9 000000 724050 13743 20130522 77.1 24 69.0 24 1012.1 21 1010.0 24 8.7 24 7.9 24 11.1 999.9 86.0 68.0 0.00G 999.9 000000 724050 13743 20130523 75.7 24 66.9 24 1011.2 24 1009.1 24 10.0 24 8.7 24 14.0 19.0 86.0 70.0 0.02G 999.9 010010 724050 13743 20130524 63.0 24 52.8 24 1012.3 22 1009.4 24 9.9 24 12.3 24 22.0 33.0 82.9 55.0 0.18G 999.9 010010 724050 13743 20130525 55.8 24 32.0 24 1020.8 24 1018.5 24 10.0 24 14.0 24 20.0 29.9 68.0 46.0 0.01G 999.9 000000 724050 13743 20130526 62.8 24 32.0 24 1021.7 24 1019.4 24 10.0 24 10.1 24 17.1 21.0 73.9 46.0 0.00G 999.9 000000 724050 13743 20130527 64.7 24 38.5 24 1023.9 24 1021.7 24 10.0 24 4.0 24 8.9 14.0 73.9 51.1 0.00G 999.9 000000 724050 13743 20130528 70.2 24 54.9 24 1021.5 22 1019.1 24 10.0 24 4.0 24 22.9 32.1 84.9 52.0 0.00G 999.9 010010 724050 13743 20130529 76.2 24 65.4 24 1019.3 24 1016.9 24 10.0 24 7.6 24 11.1 999.9 90.0 63.0 1.34G 999.9 000000 724050 13743 20130530 79.6 24 65.7 24 1020.7 24 1018.3 24 10.0 24 7.6 24 12.0 999.9 90.0 69.1 0.00G 999.9 000000 724050 13743 20130531 79.8 24 65.3 24 1020.1 24 1017.7 24 10.0 24 8.7 24 17.1 22.9 91.0 70.0 0.00G 999.9 000000 724050 13743 20130601 81.5 24 64.7 24 1016.5 24 1014.1 24 10.0 24 9.3 24 13.0 19.0 91.0 70.0 0.00G 999.9 000000 724050 13743 20130602 81.0 24 65.5 24 1012.5 22 1010.1 24 10.0 24 11.3 24 21.0 28.9 87.1* 71.6* 0.00G 999.9 010010 724050 13743 20130603 74.8 24 66.0 24 1011.3 21 1009.0 24 9.0 24 6.8 24 19.0 28.9 86.0 69.1 0.54G 999.9 010000 724050 13743 20130604 71.1 24 48.3 24 1016.9 24 1014.6 24 10.0 24 8.2 24 15.9 20.0 82.9 62.1 0.42G 999.9 000000 724050 13743 20130605 71.4 24 51.0 24 1020.2 24 1017.9 24 10.0 24 3.9 24 11.1 999.9 80.1 59.0 0.00G 999.9 000000 724050 13743 20130606 70.5 24 56.8 24 1016.7 23 1014.6 24 9.7 24 8.1 24 13.0 15.0 80.1 59.0 0.00G 999.9 010000 724050 13743 20130607 70.5 24 66.8 24 1008.7 13 1005.8 24 5.3 24 6.3 24 15.0 20.0 75.9 64.0 1.67G 999.9 010000 724050 13743 20130608 72.6 24 61.3 24 1011.1 24 1008.3 24 10.0 24 7.4 24 17.1 21.0 82.0 68.0 0.85G 999.9 010000 724050 13743 20130609 75.3 24 64.3 24 1020.0 23 1017.8 24 9.7 24 4.2 24 9.9 999.9 82.9 68.0 0.00G 999.9 000000 724050 13743 20130610 75.2 24 68.8 24 1016.8 14 1014.1 24 8.6 24 6.4 24 15.9 27.0 82.9 68.0 0.60G 999.9 110010 724050 13743 20130611 75.8 24 64.8 24 1009.7 23 1007.4 24 9.6 24 8.9 24 19.0 27.0 84.9 68.0 2.18G 999.9 110010 724050 13743 20130612 80.2 24 62.1 24 1010.6 24 1008.3 24 10.0 24 7.5 24 15.0 18.1 91.0 68.0 0.00G 999.9 000000 724050 13743 20130613 79.7 24 66.9 24 1004.7 20 1002.2 24 9.3 24 8.2 24 20.0 33.0 91.0 70.0 0.00G 999.9 010010 724050 13743 20130614 71.5 24 53.6 24 1007.8 22 1005.2 24 10.0 24 12.8 24 21.0 34.0 90.0 62.1 0.04G 999.9 010000 724050 13743 20130615 76.0 24 53.4 24 1016.2 24 1013.9 24 10.0 24 8.6 24 12.0 18.1 84.9 62.1 0.02G 999.9 000000 724050 13743 20130616 76.8 24 61.0 24 1015.1 23 1012.7 24 10.0 24 5.9 24 15.0 24.1 87.1 63.0 0.00G 999.9 010000 724050 13743 20130617 79.2 24 67.2 24 1013.4 24 1011.2 24 10.0 24 5.8 24 13.0 999.9 87.1 69.1 0.00G 999.9 010000 724050 13743 20130618 75.8 24 69.0 24 1011.5 23 1009.2 24 8.9 24 5.7 24 11.1 999.9 82.0* 71.6* 0.00G 999.9 010000 724050 13743 20130619 71.4 24 61.2 24 1015.2 24 1012.9 24 10.0 24 5.7 24 11.1 15.9 78.1 66.9 0.23G 999.9 000000 724050 13743 20130620 72.6 24 60.0 24 1023.1 23 1020.9 24 10.0 24 5.6 24 8.9 15.9 80.1 66.0 0.00G 999.9 000000 724050 13743 20130621 73.4 24 52.6 24 1025.4 24 1023.1 24 10.0 24 3.8 24 8.9 999.9 84.0 63.0 0.00G 999.9 000000 724050 13743 20130622 76.2 24 63.6 24 1023.9 24 1021.6 24 10.0 24 6.1 24 13.0 999.9 86.0 63.0 0.00G 999.9 000000 724050 13743 20130623 77.0 24 67.7 24 1021.1 22 1019.0 24 9.3 24 5.5 24 13.0 999.9 86.0 66.9 0.00G 999.9 010000 724050 13743 20130624 80.2 24 71.3 24 1019.4 24 1017.1 24 10.0 24 5.9 24 17.1 24.1 90.0 72.0 0.46G 999.9 010010 724050 13743 20130625 81.5 24 68.3 24 1016.3 24 1013.9 24 10.0 24 5.7 24 12.0 15.0 93.9 72.0 0.02G 999.9 000000 724050 13743 20130626 81.7 24 68.5 24 1012.4 22 1010.0 24 10.0 24 6.3 24 18.1 24.1 93.9 72.0 0.00G 999.9 010010 724050 13743 20130627 76.5 24 69.3 24 1008.2 21 1005.9 24 9.3 24 7.0 24 15.9 21.0 84.2* 71.6* 0.01G 999.9 010000 724050 13743 20130628 78.0 24 69.7 24 1002.3 20 999.7 24 9.3 24 6.0 24 40.0 46.0 89.1 69.1 0.23G 999.9 010110 724050 13743 20130629 77.8 24 66.2 24 1002.1 22 999.6 24 9.7 24 5.6 24 13.0 15.0 89.1 69.1 2.86G 999.9 000000 724050 13743 20130630 80.2 24 71.7 24 1007.1 21 1004.8 24 8.8 24 7.1 24 12.0 999.9 87.1 70.0 0.00G 999.9 010010 724050 13743 20130701 78.3 24 71.3 24 1012.3 20 1010.0 24 9.6 24 7.0 24 12.0 14.0 87.1 73.9 0.28G 999.9 010010 724050 13743 20130702 78.6 24 71.9 24 1017.9 16 1015.6 24 9.7 24 10.7 24 14.0 21.0 84.0 73.9 0.60G 999.9 010000 724050 13743 20130703 78.6 24 71.6 24 1022.5 20 1020.3 24 9.7 24 8.8 24 14.0 15.9 87.1* 73.4* 0.19G 999.9 010000 724050 13743 20130704 81.1 24 72.3 24 1023.6 21 1021.4 24 10.0 24 9.1 24 14.0 17.1 89.6* 75.2* 0.13G 999.9 000000 724050 13743 20130705 82.6 24 71.3 24 1022.9 23 1020.7 24 10.0 24 9.3 24 14.0 20.0 90.0 75.9 0.00G 999.9 000000 724050 13743 20130706 84.3 24 72.8 24 1021.3 24 1018.9 24 10.0 24 8.7 24 13.0 19.0 91.9 75.9 0.00G 999.9 000000 724050 13743 20130707 83.7 24 71.0 24 1018.7 24 1016.3 24 10.0 24 8.8 24 21.0 29.9 91.9 75.9 0.00G 999.9 010000 724050 13743 20130708 78.7 24 67.8 24 1018.6 23 1016.3 24 9.5 24 5.4 24 15.9 25.1 91.9 73.0 0.06G 999.9 010010 724050 13743 20130709 80.3 24 69.3 24 1018.6 22 1016.4 24 9.7 24 4.4 24 8.9 999.9 87.1 73.0 0.02G 999.9 010000 724050 13743 20130710 82.3 24 73.8 24 1015.0 24 1012.8 24 9.6 24 7.7 24 24.1 33.0 90.0 75.0 0.00G 999.9 010000 724050 13743 20130711 79.1 24 69.5 24 1012.6 20 1010.2 24 10.0 24 7.3 24 26.0 34.0 90.0 75.0 0.57G 999.9 010010 724050 13743 20130712 73.9 24 67.4 24 1014.6 19 1012.1 24 8.3 24 8.3 24 19.0 24.1 82.9* 69.8* 1.33G 999.9 010010 724050 13743 20130713 77.0 24 68.7 24 1019.9 19 1017.4 24 10.0 24 5.3 24 8.9 18.1 86.0 70.0 0.06G 999.9 010000 724050 13743 20130714 81.4 24 72.7 24 1025.8 23 1023.5 24 8.5 24 5.1 24 8.9 999.9 89.1 72.0 0.07G 999.9 010000 724050 13743 20130715 84.5 24 71.3 24 1025.5 24 1023.1 24 10.0 24 5.0 24 8.0 999.9 96.1 75.0 0.00G 999.9 000000 724050 13743 20130716 88.6 24 70.0 24 1022.9 24 1020.6 24 10.0 24 6.5 24 9.9 17.1 96.1 75.0 0.00G 999.9 000000 724050 13743 20130717 87.3 24 70.4 24 1022.1 24 1019.7 24 10.0 24 4.1 24 8.0 999.9 97.0 80.1 0.00G 999.9 000000 724050 13743 20130718 87.0 24 74.4 24 1019.0 24 1016.6 24 9.3 24 4.5 24 20.0 27.0 97.0 80.1 0.00G 999.9 010010 724050 13743 20130719 88.0 24 75.9 24 1015.4 24 1013.0 24 8.4 24 7.5 24 15.9 21.0 95.0 80.1 1.04G 999.9 010010 724050 13743 20130720 86.6 24 72.5 24 1011.8 24 1009.4 24 10.0 24 8.2 24 14.0 17.1 95.0 80.1 0.00G 999.9 000000 724050 13743 20130721 84.9 24 69.4 24 1012.8 22 1010.3 24 10.0 24 5.9 24 14.0 15.0 93.9 78.1 0.00G 999.9 010010 724050 13743 20130722 81.7 24 71.7 24 1012.2 24 1010.0 24 10.0 24 4.5 24 12.0 999.9 93.0 75.9 0.00G 999.9 000000 724050 13743 20130723 82.0 24 69.6 24 1006.4 23 1004.2 24 9.9 24 7.4 24 14.0 20.0 89.1* 75.2* 0.10G 999.9 010010 724050 13743 20130724 80.8 24 64.6 24 1007.5 24 1005.2 24 10.0 24 7.8 24 15.0 21.0 89.1 75.0 0.00G 999.9 000000 724050 13743 20130725 74.5 24 55.2 24 1014.4 24 1012.1 24 10.0 24 9.7 24 14.0 18.1 86.0 64.9 0.00G 999.9 000000 724050 13743 20130726 75.4 24 59.9 24 1017.7 24 1015.4 24 10.0 24 6.1 24 11.1 999.9 84.0 64.9 0.00G 999.9 000000 724050 13743 20130727 77.2 24 65.3 24 1016.6 24 1014.2 24 10.0 24 7.9 24 19.0 26.0 86.0 66.9 0.00G 999.9 010010 724050 13743 20130728 76.8 24 67.9 24 1013.5 22 1011.2 24 9.8 24 6.4 24 11.1 999.9 86.0 72.0 0.26G 999.9 010000 724050 13743 20130729 76.0 24 59.9 24 1017.6 24 1015.3 24 10.0 24 7.1 24 13.0 999.9 84.0 68.0 0.00G 999.9 000000 724050 13743 20130730 76.2 24 55.1 24 1022.1 24 1019.8 24 10.0 24 4.6 24 9.9 15.9 84.9 66.0 0.00G 999.9 000000 724050 13743 20130731 76.5 24 63.3 24 1020.4 24 1018.1 24 10.0 24 3.9 24 15.0 27.0 84.9 66.0 0.00G 999.9 010000 724050 13743 20130801 74.3 24 68.8 24 1014.0 16 1011.5 24 8.1 24 7.4 24 12.0 999.9 82.9* 69.8* 0.37G 999.9 010010 724050 13743 20130802 78.1 24 64.5 24 1012.9 24 1010.6 24 10.0 24 5.3 24 14.0 20.0 88.0 70.0 0.04G 999.9 000000 724050 13743 20130803 76.5 24 64.0 24 1014.4 24 1012.1 24 9.9 24 5.1 24 11.1 999.9 88.0 71.1 0.00G 999.9 000000 724050 13743 20130804 74.8 24 59.6 24 1014.3 24 1012.0 24 10.0 24 7.9 24 15.0 24.1 82.9 68.0 0.03G 999.9 010000 724050 13743 20130805 73.1 24 53.0 24 1017.8 24 1015.5 24 10.0 24 5.4 24 11.1 999.9 82.9 63.0 0.00G 999.9 000000 724050 13743 20130806 72.2 24 62.1 24 1017.6 21 1015.3 24 9.5 24 6.3 24 12.0 999.9 82.0 63.0 0.05G 999.9 010000 724050 13743 20130807 75.7 24 67.5 24 1017.9 22 1015.8 24 10.0 24 7.7 24 12.0 999.9 84.9 69.1 0.02G 999.9 010000 724050 13743 20130808 80.3 24 71.2 24 1016.8 24 1014.4 24 10.0 24 8.2 24 18.1 22.0 87.1 72.0 0.00G 999.9 010010 724050 13743 20130809 84.1 24 72.4 24 1013.7 24 1011.3 24 9.9 24 10.4 24 20.0 25.1 93.2* 78.1* 0.00G 999.9 010000 724050 13743 20130810 81.6 24 66.0 24 1016.0 24 1013.6 23 10.0 24 5.9 24 9.9 999.9 93.0 77.0 0.01G 999.9 010000 724050 13743 20130811 78.7 24 66.5 24 1018.6 24 1016.3 24 10.0 24 4.3 24 8.0 999.9 86.0 73.9 0.00I 999.9 000000 724050 13743 20130812 81.6 24 66.3 24 1016.2 24 1013.7 24 9.7 24 4.5 24 9.9 14.0 91.9 73.9 0.00G 999.9 000000 724050 13743 20130813 81.3 24 69.3 24 1010.2 23 1007.4 22 9.0 24 6.8 24 11.1 21.0 91.9 73.9 0.00G 999.9 010000 724050 13743 20130814 72.2 24 53.9 24 1013.7 24 1011.1 24 9.9 24 11.6 24 18.1 29.9 89.1 62.1 0.44G 999.9 010010 724050 13743 20130815 70.2 24 48.6 24 1020.4 24 1018.0 24 10.0 24 5.6 24 8.9 999.9 80.1 60.1 0.00G 999.9 000000 724050 13743 20130816 71.4 24 54.0 24 1021.3 24 1019.1 24 10.0 24 3.3 24 8.9 999.9 81.0 60.1 0.00G 999.9 000000 724050 13743 20130817 72.3 24 56.2 24 1023.7 24 1021.3 24 10.0 24 5.7 24 11.1 999.9 81.0 62.1 0.00G 999.9 000000 724050 13743 20130818 71.5 24 60.4 24 1023.3 24 1021.0 24 9.2 24 6.3 24 8.9 999.9 81.0 63.0 0.06G 999.9 010000 724050 13743 20130819 70.1 24 62.3 24 1021.2 23 1018.9 24 10.0 24 4.8 24 8.9 999.9 75.2* 66.0* 0.13G 999.9 000000 724050 13743 20130820 76.6 24 65.8 24 1020.3 23 1017.9 24 9.9 24 4.5 24 11.1 999.9 89.1 64.9 0.00G 999.9 000000 724050 13743 20130821 79.6 24 70.3 24 1021.4 24 1019.1 24 9.4 24 5.8 24 9.9 999.9 89.1 69.1 0.00G 999.9 000000 724050 13743 20130822 80.5 24 68.0 24 1017.4 24 1015.3 24 9.8 24 6.8 24 11.1 19.0 91.0 73.0 0.07G 999.9 010010 724050 13743 20130823 76.4 24 64.0 24 1015.9 23 1013.6 24 9.4 24 6.5 24 12.0 999.9 91.0 71.1 0.00G 999.9 010000 724050 13743 20130824 73.1 24 57.2 24 1022.8 24 1020.5 24 10.0 24 5.4 24 8.9 999.9 84.9 64.0 0.11G 999.9 000000 724050 13743 20130825 74.2 24 58.1 24 1028.0 24 1025.7 24 10.0 24 4.4 24 12.0 999.9 84.9 64.0 0.00G 999.9 000000 724050 13743 20130826 75.0 24 57.3 24 1023.3 24 1021.0 24 10.0 24 7.3 24 14.0 18.1 90.0 64.0 0.00G 999.9 000000 724050 13743 20130827 81.9 24 64.6 24 1014.8 24 1012.4 24 9.7 24 7.7 24 15.0 20.0 93.9 64.0 0.00G 999.9 010000 724050 13743 20130828 79.8 24 69.2 24 1012.2 22 1010.0 24 9.0 24 4.7 24 12.0 999.9 93.9 73.0 0.00G 999.9 010000 724050 13743 20130829 78.3 24 69.4 24 1013.6 18 1010.8 24 7.5 24 6.9 24 12.0 999.9 87.1* 73.4* 0.01G 999.9 010000 724050 13743 20130830 78.8 24 67.3 24 1016.0 24 1013.9 24 9.0 24 7.0 24 11.1 15.9 88.0 72.0 0.00G 999.9 000000 724050 13743 20130831 80.5 24 68.6 24 1011.7 24 1009.4 24 9.8 24 9.5 24 13.0 20.0 91.9 72.0 0.00G 999.9 000000 724050 13743 20130901 81.2 24 68.4 24 1010.0 24 1007.6 24 9.9 24 6.3 24 9.9 999.9 93.0 72.0 0.00G 999.9 000000 724050 13743 20130902 81.5 24 70.1 24 1008.6 24 1006.3 24 9.9 24 5.0 24 11.1 999.9 93.0 72.0 0.12G 999.9 010010 724050 13743 20130903 81.4 24 64.1 24 1009.4 24 1007.1 24 10.0 24 8.0 24 15.9 21.0 91.9 73.0 0.11G 999.9 000000 724050 13743 20130904 74.7 24 52.2 24 1016.6 24 1014.3 24 10.0 24 7.8 24 12.0 18.1 87.1 64.9 0.00G 999.9 000000 724050 13743 20130905 76.7 24 56.8 24 1017.4 24 1015.1 24 10.0 24 7.1 24 15.9 20.0 88.0 64.9 0.00G 999.9 000000 724050 13743 20130906 70.7 24 46.3 24 1022.1 24 1019.8 24 10.0 24 6.8 24 15.9 999.9 88.0 61.0 0.00G 999.9 000000 724050 13743 20130907 71.1 24 55.2 24 1019.2 24 1016.9 24 10.0 24 5.5 24 12.0 15.0 82.0 60.1 0.00G 999.9 000000 724050 13743 20130908 77.4 24 61.7 24 1013.4 24 1011.0 24 10.0 24 5.7 24 11.1 15.9 91.0 60.1 0.00G 999.9 010000 724050 13743 20130909 73.9 24 56.0 24 1020.0 24 1017.8 24 10.0 24 7.0 24 11.1 999.9 91.0 64.9 0.00G 999.9 000000 724050 13743 20130910 79.6 24 69.3 24 1020.8 20 1018.6 24 9.7 24 8.0 24 11.1 999.9 91.9 64.9 0.00G 999.9 000000 724050 13743 20130911 84.0 24 72.1 24 1019.7 24 1017.4 24 8.9 24 6.9 24 14.0 21.0 93.9 73.0 0.00G 999.9 000000 724050 13743 20130912 81.1 24 69.9 24 1013.9 22 1011.2 24 9.7 24 7.4 24 15.9 22.9 91.9* 73.4* 0.00G 999.9 010010 724050 13743 20130913 74.4 24 60.1 24 1008.1 24 1005.8 24 9.9 24 7.7 24 14.0 24.1 93.0 69.1 0.18G 999.9 010000 724050 13743 20130914 64.9 24 45.2 24 1016.5 24 1014.2 24 10.0 24 10.5 24 14.0 22.0 82.0 55.9 0.00G 999.9 000000 724050 13743 20130915 65.7 24 48.1 24 1022.0 24 1019.7 24 10.0 24 4.4 24 12.0 999.9 78.1 54.0 0.00G 999.9 000000 724050 13743 20130916 68.6 24 56.5 24 1019.4 22 1017.2 24 9.8 24 7.9 24 15.9 20.0 78.1 54.0 0.00G 999.9 010000 724050 13743 20130917 63.6 24 45.4 24 1026.8 24 1024.6 24 10.0 24 7.8 24 15.9 22.0 77.0 54.0 0.05G 999.9 000000 724050 13743 20130918 62.2 24 44.9 24 1026.6 24 1024.2 24 10.0 24 3.2 24 9.9 999.9 73.9 52.0 0.00G 999.9 000000 724050 13743 20130919 66.6 24 52.8 24 1022.0 24 1019.7 24 10.0 24 5.3 24 8.9 999.9 78.1 52.0 0.00G 999.9 000000 724050 13743 20130920 70.1 24 56.8 24 1018.4 24 1016.0 24 10.0 24 6.2 24 11.1 999.9 82.0 55.9 0.00G 999.9 000000 724050 13743 20130921 70.0 24 59.7 24 1012.3 23 1009.9 24 9.0 24 9.2 24 15.0 20.0 82.0 61.0 0.00G 999.9 010000 724050 13743 20130922 67.9 24 56.3 24 1009.5 22 1006.7 24 9.2 24 8.3 24 14.0 22.0 80.1 60.1 0.87G 999.9 010000 724050 13743 20130923 62.2 24 44.1 24 1016.6 24 1014.3 24 10.0 24 9.1 24 14.0 17.1 75.9 55.9 0.00G 999.9 000000 724050 13743 20130924 61.6 24 44.6 24 1018.3 24 1016.0 24 10.0 24 6.1 24 9.9 15.0 75.0 51.1 0.00G 999.9 000000 724050 13743 20130925 64.3 24 45.4 24 1014.4 24 1012.1 24 10.0 24 3.4 24 7.0 999.9 78.1 51.1 0.00G 999.9 000000 724050 13743 20130926 66.6 24 52.2 24 1014.9 24 1012.6 24 10.0 24 3.9 24 8.9 999.9 78.1 54.0 0.00G 999.9 000000 724050 13743 20130927 66.4 24 54.5 24 1020.6 24 1018.3 24 10.0 24 2.9 24 7.0 999.9 77.0 59.0 0.00G 999.9 000000 724050 13743 20130928 66.1 24 53.0 24 1024.7 24 1022.4 24 10.0 24 4.0 24 8.9 15.0 75.0 59.0 0.00G 999.9 000000 724050 13743 20130929 64.7 24 53.1 24 1021.8 24 1019.5 24 10.0 24 3.5 24 8.0 999.9 77.0 54.0 0.00G 999.9 000000 724050 13743 20130930 65.6 24 52.4 24 1018.2 24 1015.9 24 10.0 24 2.5 24 6.0 999.9 77.0 54.0 0.00G 999.9 000000 724050 13743 20131001 69.9 24 55.4 24 1017.2 24 1014.8 24 10.0 24 4.5 24 8.0 999.9 84.9 55.9 0.00G 999.9 000000 724050 13743 20131002 74.4 24 59.0 24 1017.3 24 1015.0 24 9.9 24 4.7 24 11.1 15.9 88.0 59.0 0.00G 999.9 000000 724050 13743 20131003 74.1 24 61.4 24 1018.6 24 1016.3 24 10.0 24 3.9 24 8.9 999.9 88.0 63.0 0.00G 999.9 000000 724050 13743 20131004 75.9 24 63.7 24 1018.0 24 1015.7 24 9.0 24 2.8 24 7.0 999.9 90.0 64.9 0.00G 999.9 000000 724050 13743 20131005 77.9 24 65.6 24 1017.8 24 1015.5 24 9.7 24 4.0 24 8.9 999.9 90.0 66.0 0.00G 999.9 000000 724050 13743 20131006 77.8 24 65.8 24 1016.0 24 1013.6 24 9.7 24 6.0 24 13.0 15.9 91.0 69.1 0.00G 999.9 000000 724050 13743 20131007 72.0 24 64.9 24 1012.6 20 1009.9 24 8.5 24 11.2 24 24.1 35.9 80.1* 60.8* 0.00G 999.9 010010 724050 13743 20131008 60.9 24 45.7 24 1021.8 24 1019.5 24 10.0 24 7.8 24 13.0 19.0 78.1 54.0 1.13G 999.9 000000 724050 13743 20131009 60.2 24 48.2 24 1025.5 24 1023.2 24 10.0 24 9.3 24 17.1 20.0 69.1 54.0 0.00G 999.9 010000 724050 13743 20131010 57.8 24 53.4 24 1021.5 14 1018.1 24 6.5 24 12.4 24 15.0 22.0 63.0 55.0 0.88G 999.9 010000 724050 13743 20131011 61.3 24 58.3 24 1014.9 11 1012.4 24 4.8 24 9.9 24 12.0 999.9 64.4* 57.2* 1.28G 999.9 010000 724050 13743 20131012 64.3 24 59.6 24 1017.1 13 1015.2 24 7.0 24 9.5 24 15.0 20.0 69.1 59.0 2.61G 999.9 010010 724050 13743 20131013 63.2 24 57.8 24 1023.8 22 1021.1 24 9.4 24 10.4 24 13.0 17.1 69.1 61.0 0.22G 999.9 010000 724050 13743 20131014 62.9 24 53.2 24 1026.2 24 1023.9 24 10.0 24 6.7 24 12.0 999.9 71.1 57.9 0.03G 999.9 000000 724050 13743 20131015 63.1 24 50.8 24 1022.7 23 1020.5 24 9.6 24 3.2 24 6.0 999.9 73.9 54.0 0.00G 999.9 000000 724050 13743 20131016 66.0 24 57.9 24 1017.1 20 1015.2 24 9.5 24 3.5 24 8.9 999.9 73.9 54.0 0.00G 999.9 010000 724050 13743 20131017 67.6 24 61.3 24 1011.8 24 1009.5 24 10.0 24 5.1 24 8.9 999.9 77.0 63.0 0.00G 999.9 000000 724050 13743 20131018 63.8 24 45.4 24 1013.9 23 1011.0 24 10.0 24 8.2 24 15.0 22.0 77.0 55.0 0.00G 999.9 010000 724050 13743 20131019 58.8 24 49.2 24 1014.0 23 1011.7 24 10.0 24 4.4 24 13.0 999.9 69.1 53.1 0.00G 999.9 010000 724050 13743 20131020 58.6 24 38.5 24 1015.9 23 1013.0 24 10.0 24 8.8 24 15.9 34.0 66.9 48.9 0.00G 999.9 000000 724050 13743 20131021 55.8 24 42.2 24 1019.6 24 1017.3 24 10.0 24 5.1 24 14.0 999.9 68.0 46.0 0.00G 999.9 000000 724050 13743 20131022 58.1 24 46.6 24 1012.8 24 1010.5 24 10.0 24 6.3 24 11.1 999.9 68.0 46.0 0.00G 999.9 010000 724050 13743 20131023 53.8 24 36.1 24 1008.5 24 1006.1 24 9.9 24 6.9 24 15.9 21.0 68.0 48.0 0.07G 999.9 010000 724050 13743 20131024 48.3 24 30.4 24 1015.6 24 1013.2 24 10.0 24 8.5 24 15.0 24.1 61.0 42.1 0.00A 999.9 000000 724050 13743 20131025 47.1 24 29.1 24 1023.2 24 1020.9 24 10.0 24 7.4 24 15.0 21.0 57.0 37.9 0.00G 999.9 000000 724050 13743 20131026 46.7 24 28.9 24 1023.5 24 1021.1 24 10.0 24 8.0 24 15.9 25.1 57.0 35.1 0.00G 999.9 000000 724050 13743 20131027 53.6 24 32.9 24 1016.9 24 1014.5 24 10.0 24 6.6 24 14.0 18.1 63.0 35.1 0.00G 999.9 000000 724050 13743 20131028 52.4 24 38.5 24 1022.7 24 1020.3 24 10.0 24 3.0 24 7.0 999.9 66.0 43.0 0.00G 999.9 000000 724050 13743 20131029 53.7 24 40.5 24 1027.0 24 1024.7 24 10.0 24 2.5 24 7.0 999.9 66.0 43.0 0.00G 999.9 000000 724050 13743 20131030 57.0 24 49.5 24 1025.0 17 1022.7 24 9.2 24 3.0 24 8.9 999.9 64.9 44.1 0.02G 999.9 010000 724050 13743 20131031 60.7 24 55.3 24 1019.3 24 1016.9 24 7.5 24 4.9 24 11.1 999.9 68.0 53.1 0.04G 999.9 010000 724050 13743 20131101 67.4 24 59.2 24 1005.7 23 1003.5 24 9.7 24 10.7 24 19.0 29.9 73.0 55.9 0.00G 999.9 010000 724050 13743 20131102 62.1 24 49.3 24 1005.7 24 1003.2 24 10.0 24 5.4 24 13.0 22.0 73.0 55.9 0.14G 999.9 010000 724050 13743 20131103 53.8 24 34.1 24 1018.0 24 1015.6 24 10.0 24 9.2 24 17.1 24.1 72.0 48.0 0.00G 999.9 000000 724050 13743 20131104 43.4 24 22.0 24 1034.2 24 1031.9 24 10.0 24 7.9 24 13.0 999.9 59.0 36.0 0.00G 999.9 000000 724050 13743 20131105 47.8 24 32.9 24 1035.9 24 1033.6 24 10.0 24 2.5 24 7.0 999.9 59.0 36.0 0.00G 999.9 000000 724050 13743 20131106 58.6 24 48.3 24 1028.8 24 1026.6 24 10.0 24 4.7 24 12.0 999.9 68.0 39.9 0.00G 999.9 000000 724050 13743 20131107 57.9 24 50.0 24 1016.5 20 1013.5 24 9.9 24 9.7 24 20.0 28.0 68.0 52.0 0.00G 999.9 010000 724050 13743 20131108 47.6 24 24.7 24 1021.1 24 1018.7 24 10.0 24 9.8 24 24.1 33.0 64.9 36.0 0.01G 999.9 000000 724050 13743 20131109 44.7 24 26.4 24 1025.9 24 1023.5 24 10.0 24 6.6 24 14.0 19.0 55.9 34.0 0.00G 999.9 000000 724050 13743 20131110 52.0 24 30.1 24 1017.4 24 1015.1 24 10.0 24 9.5 24 21.0 27.0 66.0 34.0 0.00G 999.9 000000 724050 13743 20131111 49.2 24 27.6 24 1024.0 24 1021.7 24 10.0 24 6.9 24 15.0 17.1 66.0 39.0 0.00G 999.9 000000 724050 13743 20131112 47.4 24 26.7 24 1020.7 24 1018.4 24 10.0 24 11.5 24 22.0 28.9 57.9 39.0 0.00G 999.9 000000 724050 13743 20131113 37.7 24 16.6 24 1030.7 24 1028.3 24 10.0 24 9.6 24 15.9 21.0 53.1 32.0 0.00G 999.9 000000 724050 13743 20131114 40.7 24 21.5 24 1028.2 24 1025.9 24 10.0 24 5.1 24 8.9 999.9 55.0 28.9 0.00G 999.9 000000 724050 13743 20131115 45.2 24 28.6 24 1024.4 24 1022.1 24 10.0 24 3.0 24 7.0 999.9 61.0 28.9 0.00G 999.9 000000 724050 13743 20131116 50.4 24 44.0 24 1025.2 22 1023.0 24 6.0 24 1.6 24 4.1 999.9 61.0 34.0 0.42G 999.9 010000 724050 13743 20131117 56.3 24 52.1 24 1020.8 20 1019.1 24 5.9 24 3.7 24 8.9 999.9 64.9 46.9 0.34G 999.9 010000 724050 13743 20131118 62.4 24 44.8 24 1008.8 21 1006.4 24 9.7 24 9.6 24 22.0 31.1 71.1 52.0 0.15G 999.9 010000 724050 13743 20131119 50.0 24 25.0 24 1018.5 24 1016.2 24 10.0 24 13.8 24 21.0 26.0 71.1 44.1 0.00I 999.9 000000 724050 13743 20131120 41.9 24 23.9 24 1031.6 24 1029.2 24 10.0 24 9.0 24 13.0 15.9 52.0 36.0 0.00G 999.9 000000 724050 13743 20131121 41.9 24 30.2 24 1034.1 24 1031.8 24 10.0 24 3.9 24 6.0 999.9 51.1 36.0 0.00G 999.9 000000 724050 13743 20131122 51.8 24 43.3 24 1024.3 24 1022.5 24 10.0 24 3.3 24 7.0 999.9 61.0 36.0 0.00G 999.9 000000 724050 13743 20131123 51.1 24 33.1 24 1018.8 24 1016.4 24 10.0 24 11.5 24 20.0 27.0 63.0 42.1 0.00G 999.9 000000 724050 13743 20131124 32.3 24 7.0 24 1027.2 24 1024.4 24 10.0 24 14.8 24 21.0 34.0 59.0 26.1 0.00G 999.9 001000 724050 13743 20131125 29.6 24 7.0 24 1033.6 24 1031.3 24 10.0 24 7.0 24 12.0 17.1 37.9 24.1 0.00G 999.9 000000 724050 13743 20131126 36.8 24 21.3 24 1025.3 22 1022.9 24 8.3 24 6.3 24 11.1 999.9 39.2* 35.1* 0.00G 999.9 011000 724050 13743 20131127 41.0 24 35.9 24 1003.9 17 1001.1 24 6.8 24 11.2 24 20.0 27.0 48.9 35.1 2.07G 999.9 011000 724050 13743 20131128 34.2 24 14.2 24 1023.5 24 1021.2 24 9.9 24 10.0 24 19.0 32.1 42.1 28.0 0.13G 999.9 001000 724050 13743 20131129 36.2 24 20.2 24 1034.6 24 1032.2 24 10.0 24 5.6 24 15.9 21.0 44.1 28.0 0.00G 999.9 000000 724050 13743 20131130 33.9 24 18.9 24 1038.9 24 1036.6 24 10.0 24 4.9 24 12.0 999.9 44.1 28.0 0.00G 999.9 000000 724050 13743 20131201 37.9 24 26.3 24 1025.5 24 1022.8 24 9.6 24 1.8 24 7.0 999.9 48.0 28.0 0.00G 999.9 000000 724050 13743 20131202 44.5 24 34.6 24 1015.2 24 1012.8 24 9.6 24 2.5 24 8.0 999.9 50.0 30.0 0.00G 999.9 000000 724050 13743 20131203 47.1 24 35.7 24 1013.3 24 1011.0 24 9.7 24 2.3 24 8.0 999.9 55.9 41.0 0.00G 999.9 000000 724050 13743 20131204 47.1 24 39.8 24 1017.0 24 1014.7 24 8.7 24 0.8 24 6.0 999.9 57.2* 39.9* 0.00G 999.9 000000 724050 13743 20131205 56.5 24 51.3 24 1017.2 24 1014.9 24 8.2 24 5.3 24 17.1 22.0 69.1 39.9 0.00G 999.9 100000 724050 13743 20131206 55.9 24 52.2 24 1016.0 15 1013.2 24 7.1 24 9.4 24 17.1 26.0 69.1 45.0 0.03G 999.9 110000 724050 13743 20131207 41.3 24 33.0 24 1026.8 19 1023.2 24 8.9 24 11.2 24 17.1 20.0 45.0* 37.0* 0.76G 999.9 010000 724050 13743 20131208 32.3 24 21.8 24 1034.6 16 1031.7 24 7.3 24 8.8 24 12.0 999.9 45.0 28.9 0.16G 1.2 011000 724050 13743 20131209 34.3 24 30.7 24 1021.4 11 1020.4 24 6.6 24 4.2 24 11.1 999.9 37.9 28.9 1.32G 999.9 010000 724050 13743 20131210 35.7 24 31.0 24 1018.7 16 1015.9 24 5.6 24 3.8 24 9.9 14.0 39.9 32.7 0.21G 1.2 111000 724050 13743 20131211 34.2 24 20.0 24 1026.1 24 1023.8 24 10.0 24 3.1 24 6.0 999.9 43.0 25.0 0.33G 999.9 000000 724050 13743 20131212 31.8 24 16.0 24 1027.5 24 1025.2 24 10.0 24 7.2 24 14.0 21.0 43.0 25.0 0.00G 999.9 000000 724050 13743 20131213 33.7 24 13.4 24 1025.5 24 1023.2 24 10.0 24 5.8 24 8.9 999.9 45.0 25.0 0.00G 999.9 000000 724050 13743 20131214 37.9 24 27.8 24 1024.7 24 1022.6 24 9.4 24 4.6 24 12.0 999.9 45.0 25.0 0.00G 999.9 010000 724050 13743 20131215 40.7 24 32.2 24 1008.9 16 1005.9 24 8.4 24 9.0 24 15.9 27.0 51.1 33.1 0.46G 999.9 010000 724050 13743 20131216 36.8 24 22.5 24 1018.0 24 1015.7 24 10.0 24 6.4 24 12.0 999.9 51.1 33.1 0.00G 999.9 000000 724050 13743 20131217 36.7 24 26.7 24 1018.8 21 1016.8 24 9.1 24 3.5 24 8.0 999.9 39.9 33.1 0.00G 999.9 010000 724050 13743 20131218 37.8 24 25.5 24 1019.6 24 1017.0 24 8.0 24 6.2 24 13.0 22.0 44.1 33.1 0.02G 999.9 011000 724050 13743 20131219 41.1 24 25.6 24 1021.7 24 1019.4 24 10.0 24 5.2 24 12.0 999.9 61.0 30.0 0.00G 999.9 000000 724050 13743 20131220 50.7 24 31.5 24 1019.3 24 1017.0 24 10.0 24 7.6 24 9.9 999.9 61.0 30.0 0.00G 999.9 000000 724050 13743 20131221 58.6 24 46.1 24 1015.9 24 1013.6 24 10.0 24 10.7 24 17.1 27.0 72.0 44.1 0.00G 999.9 000000 724050 13743 20131222 65.6 24 57.9 24 1013.7 21 1011.4 24 9.6 24 12.8 24 20.0 31.1 72.0 51.1 0.00G 999.9 010000 724050 13743 20131223 59.3 24 54.2 24 1016.8 14 1013.5 24 8.0 24 9.3 24 21.0 26.0 64.4* 48.0* 0.61G 999.9 110000 724050 13743 20131224 39.8 24 23.1 24 1024.3 24 1021.8 24 10.0 24 13.3 24 21.0 34.0 48.0* 33.1* 0.48G 999.9 001000 724050 13743 20131225 27.8 24 8.3 24 1033.3 24 1031.0 24 10.0 24 8.1 24 18.1 24.1 43.0 21.9 0.00G 999.9 000000 724050 13743 20131226 33.7 24 19.9 24 1027.4 24 1025.1 24 10.0 24 5.5 24 9.9 999.9 45.0 21.9 0.00G 999.9 000000 724050 13743 20131227 38.2 24 24.0 24 1028.7 24 1026.3 24 10.0 24 4.3 24 9.9 999.9 50.0 27.0 0.00G 999.9 000000 724050 13743 20131228 40.9 24 27.0 24 1026.0 24 1023.7 24 10.0 24 6.1 24 11.1 999.9 57.0 30.0 0.00G 999.9 000000 724050 13743 20131229 46.9 24 36.7 24 1015.0 20 1011.2 24 8.0 24 5.9 24 12.0 999.9 57.0 30.0 0.18G 999.9 010000 724050 13743 20131230 43.6 24 34.9 24 1014.2 24 1011.9 24 10.0 24 6.7 24 15.9 21.0 51.1 37.9 1.13G 999.9 000000 724050 13743 20131231 38.0 24 21.0 24 1021.9 24 1019.6 24 10.0 24 9.2 24 17.1 26.0 48.9 33.1 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/2013/722324-03071.op0000644000175000017500000014327214302004506016651 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20130101 42.9 24 29.2 24 9999.9 0 921.0 24 9.5 24 5.8 24 8.9 999.9 55.4* 34.9* 0.01G 999.9 000000 722324 03071 20130102 35.9 24 23.4 24 9999.9 0 924.3 24 10.0 24 2.6 24 7.0 999.9 49.6* 27.5* 0.00G 999.9 000000 722324 03071 20130103 36.0 24 24.6 24 9999.9 0 927.4 24 9.4 24 6.1 24 13.0 17.1 46.6* 32.2* 0.00G 999.9 011000 722324 03071 20130104 33.8 23 29.6 23 9999.9 0 929.3 23 8.4 23 4.4 23 8.9 999.9 36.9* 31.8* 0.00G 999.9 001000 722324 03071 20130105 37.7 24 29.4 24 9999.9 0 925.5 24 8.1 24 6.8 24 11.1 999.9 55.2* 29.1* 0.00G 999.9 000000 722324 03071 20130106 40.3 24 24.1 24 9999.9 0 928.0 24 10.0 24 5.1 24 8.9 999.9 54.5* 26.6* 0.00G 999.9 000000 722324 03071 20130107 42.0 24 24.4 24 9999.9 0 923.0 24 10.0 24 6.6 24 15.9 21.0 52.7* 32.4* 0.00G 999.9 000000 722324 03071 20130108 40.7 24 32.4 24 9999.9 0 916.7 24 7.6 24 3.5 24 12.0 17.1 50.5* 30.9* 0.00G 999.9 100000 722324 03071 20130109 44.7 24 42.7 24 9999.9 0 919.4 24 4.7 24 12.5 24 19.0 29.9 47.3* 41.9* 0.00G 999.9 010000 722324 03071 20130110 46.4 24 41.9 24 9999.9 0 917.0 24 8.0 24 8.5 24 18.1 21.0 58.5* 42.8* 1.11G 999.9 010000 722324 03071 20130111 54.7 24 39.2 24 9999.9 0 912.3 24 10.0 24 11.0 24 17.1 24.1 67.1* 48.2* 0.00G 999.9 000000 722324 03071 20130112 49.4 24 27.7 24 9999.9 0 912.5 24 10.0 24 6.5 24 12.0 19.0 63.0* 38.5* 0.00G 999.9 000000 722324 03071 20130113 33.9 24 23.1 24 9999.9 0 919.4 24 10.0 24 6.3 24 11.1 14.0 48.0* 24.8* 0.00G 999.9 000000 722324 03071 20130114 30.4 24 16.3 24 9999.9 0 922.4 24 10.0 24 9.9 24 14.0 18.1 38.7* 24.3* 0.00G 999.9 000000 722324 03071 20130115 30.6 24 16.2 24 9999.9 0 922.3 24 10.0 24 5.9 24 8.9 999.9 39.0* 23.9* 0.00G 999.9 000000 722324 03071 20130116 34.7 24 18.4 24 9999.9 0 924.9 24 10.0 24 7.3 24 17.1 22.9 54.9* 24.3* 0.00G 999.9 000000 722324 03071 20130117 44.4 24 26.7 24 9999.9 0 929.7 24 10.0 24 4.9 24 8.0 999.9 59.0* 32.9* 0.00G 999.9 000000 722324 03071 20130118 47.2 24 27.8 24 9999.9 0 929.5 24 10.0 24 5.7 24 17.1 21.0 61.9* 35.6* 0.00G 999.9 000000 722324 03071 20130119 52.0 24 28.0 24 9999.9 0 923.0 24 10.0 24 7.8 24 12.0 15.9 70.0* 39.9* 0.00G 999.9 000000 722324 03071 20130120 49.0 24 24.2 24 9999.9 0 923.8 24 10.0 24 2.9 24 9.9 14.0 66.2* 33.3* 0.00G 999.9 000000 722324 03071 20130121 44.0 24 25.9 24 9999.9 0 923.3 24 10.0 24 4.2 24 14.0 19.0 61.9* 33.4* 0.00G 999.9 000000 722324 03071 20130122 46.0 24 32.1 24 9999.9 0 924.0 24 10.0 24 2.5 24 8.9 999.9 66.2* 34.9* 0.00G 999.9 000000 722324 03071 20130123 56.6 24 40.7 24 9999.9 0 923.6 24 6.9 24 5.9 24 12.0 15.0 75.0* 46.2* 0.00G 999.9 110000 722324 03071 20130124 61.3 24 39.2 24 9999.9 0 923.1 24 10.0 24 7.0 24 14.0 19.0 78.8* 42.6* 0.00G 999.9 000000 722324 03071 20130125 61.5 24 34.3 24 9999.9 0 921.1 24 9.9 24 6.3 24 13.0 19.0 74.8* 53.1* 0.00G 999.9 000000 722324 03071 20130126 54.3 24 37.9 24 9999.9 0 921.0 24 10.0 24 6.0 24 15.0 17.1 74.1* 44.1* 0.00G 999.9 000000 722324 03071 20130127 65.6 24 49.5 24 9999.9 0 916.4 24 10.0 24 9.4 24 15.9 24.1 76.5* 55.9* 0.00G 999.9 010000 722324 03071 20130128 62.9 24 45.5 24 9999.9 0 915.0 24 9.8 24 6.0 24 17.1 22.0 77.9* 48.6* 0.00G 999.9 000000 722324 03071 20130129 60.0 24 36.5 24 9999.9 0 909.7 24 9.5 24 14.2 24 33.0 42.9 73.9* 49.6* 0.00G 999.9 000000 722324 03071 20130130 42.3 24 15.9 24 9999.9 0 917.4 24 9.6 24 13.3 24 22.9 33.0 52.5* 32.0* 0.00G 999.9 000000 722324 03071 20130131 47.3 24 11.2 24 9999.9 0 922.2 23 10.0 24 8.3 24 18.1 26.0 64.4* 34.9* 0.00G 999.9 000000 722324 03071 20130201 49.2 24 22.3 24 9999.9 0 924.0 18 10.0 24 5.0 24 15.9 22.0 67.8* 32.2* 0.00G 999.9 000000 722324 03071 20130202 53.2 24 25.8 24 9999.9 0 923.5 24 10.0 24 9.4 24 15.0 20.0 65.3* 41.5* 0.00G 999.9 000000 722324 03071 20130203 48.9 24 28.6 24 9999.9 0 925.6 24 10.0 24 5.2 24 17.1 22.9 63.7* 34.5* 0.00G 999.9 000000 722324 03071 20130204 58.6 24 40.9 24 9999.9 0 915.0 24 10.0 24 10.2 24 15.9 26.0 68.0* 48.2* 0.00G 999.9 000000 722324 03071 20130205 54.2 24 27.6 24 9999.9 0 916.4 24 10.0 24 2.9 24 8.0 999.9 72.7* 39.0* 0.00G 999.9 000000 722324 03071 20130206 57.8 24 32.4 24 9999.9 0 915.1 24 10.0 24 4.3 24 15.0 20.0 74.8* 42.3* 0.00G 999.9 000000 722324 03071 20130207 60.3 24 28.4 24 9999.9 0 915.7 24 9.6 24 8.9 24 15.9 25.1 71.8* 49.1* 0.00G 999.9 000000 722324 03071 20130208 49.8 24 27.7 24 9999.9 0 923.0 24 10.0 24 6.3 24 15.0 20.0 63.5* 36.1* 0.00G 999.9 000000 722324 03071 20130209 57.8 24 34.6 24 9999.9 0 913.4 24 10.0 24 13.7 24 22.0 29.9 74.8* 49.5* 0.00G 999.9 000000 722324 03071 20130210 54.3 24 18.6 24 9999.9 0 912.9 24 9.8 24 11.0 24 18.1 24.1 69.3* 40.3* 0.00G 999.9 000000 722324 03071 20130211 49.4 24 16.5 24 9999.9 0 916.9 24 10.0 24 4.8 24 15.9 21.0 67.1* 36.9* 0.00G 999.9 000000 722324 03071 20130212 51.0 24 37.1 24 9999.9 0 915.0 24 9.4 24 12.8 24 24.1 31.1 62.1* 45.5* 0.04G 999.9 010000 722324 03071 20130213 42.3 24 26.9 24 9999.9 0 920.4 24 10.0 24 6.4 24 12.0 18.1 59.2* 32.0* 0.00G 999.9 000000 722324 03071 20130214 50.1 24 12.5 24 9999.9 0 917.7 24 10.0 24 5.2 24 11.1 18.1 67.3* 35.4* 0.00G 999.9 000000 722324 03071 20130215 46.3 24 24.7 24 9999.9 0 923.8 24 10.0 24 10.1 24 17.1 22.9 64.6* 35.2* 0.00G 999.9 000000 722324 03071 20130216 43.7 24 19.3 24 9999.9 0 927.9 24 10.0 24 4.6 24 13.0 18.1 64.4* 27.5* 0.00G 999.9 000000 722324 03071 20130217 54.7 24 16.4 24 9999.9 0 918.6 24 10.0 24 8.6 24 17.1 22.0 71.6* 40.1* 0.00G 999.9 000000 722324 03071 20130218 59.1 24 25.8 24 9999.9 0 913.2 24 10.0 24 13.0 24 26.0 32.1 67.6* 49.8* 0.00G 999.9 000000 722324 03071 20130219 49.2 24 22.4 24 9999.9 0 920.8 24 10.0 24 8.3 24 19.0 22.9 59.9* 40.1* 0.00G 999.9 010000 722324 03071 20130220 51.5 24 43.1 24 9999.9 0 913.9 24 10.0 24 7.7 24 15.9 22.9 61.9* 47.8* 0.04G 999.9 010000 722324 03071 20130221 50.1 24 34.6 24 9999.9 0 907.3 24 8.0 24 14.0 24 28.9 34.0 62.2* 41.4* 0.00G 999.9 110000 722324 03071 20130222 43.4 24 23.9 24 9999.9 0 915.7 24 10.0 24 6.7 24 12.0 14.0 61.5* 27.9* 0.00G 999.9 000000 722324 03071 20130223 47.3 24 19.8 24 9999.9 0 916.6 24 10.0 24 8.4 24 17.1 22.9 64.6* 34.3* 0.00G 999.9 000000 722324 03071 20130224 58.1 24 20.3 24 9999.9 0 909.0 24 10.0 24 8.7 24 14.0 19.0 75.2* 45.9* 0.00G 999.9 000000 722324 03071 20130225 46.9 24 27.5 24 9999.9 0 909.0 24 8.6 24 16.2 24 38.1 52.1 72.9* 35.1* 0.00G 999.9 011000 722324 03071 20130226 42.1 24 20.2 24 9999.9 0 914.2 24 10.0 24 5.3 24 18.1 24.1 67.8* 26.1* 0.00G 999.9 000000 722324 03071 20130227 48.4 24 18.4 24 9999.9 0 918.7 24 10.0 24 11.0 24 26.0 28.9 67.1* 34.9* 0.00G 999.9 000000 722324 03071 20130228 42.6 24 20.8 24 9999.9 0 926.1 23 10.0 24 4.4 24 11.1 15.9 59.0* 29.7* 0.00G 999.9 000000 722324 03071 20130301 46.1 24 16.6 24 9999.9 0 924.8 18 10.0 24 6.1 24 17.1 22.0 61.7 29.3 0.00G 999.9 000000 722324 03071 20130302 48.2 24 18.1 24 9999.9 0 928.1 24 10.0 24 2.5 24 9.9 999.9 67.3 31.8 0.00G 999.9 000000 722324 03071 20130303 60.2 24 16.5 24 9999.9 0 920.5 24 10.0 24 8.3 24 18.1 29.9 84.9 46.0 0.00G 999.9 000000 722324 03071 20130304 70.8 24 11.5 24 9999.9 0 910.9 24 10.0 24 12.1 24 22.9 33.0 84.2 58.5 0.00G 999.9 000000 722324 03071 20130305 54.7 24 22.8 24 9999.9 0 922.7 24 9.6 24 9.8 24 28.0 36.9 80.6 37.4 0.00G 999.9 000000 722324 03071 20130306 49.0 24 13.0 24 9999.9 0 926.6 24 10.0 24 8.5 24 17.1 24.1 65.7 37.6 0.00G 999.9 000000 722324 03071 20130307 56.6 24 17.0 24 9999.9 0 919.1 24 10.0 24 10.8 24 15.0 20.0 74.5 45.0 0.00G 999.9 000000 722324 03071 20130308 65.3 23 47.7 23 9999.9 0 916.4 23 10.0 23 11.0 23 19.0 24.1 79.5 58.1 0.00G 999.9 000000 722324 03071 20130309 65.2 24 46.6 24 9999.9 0 911.3 24 9.6 24 13.2 24 22.0 28.9 75.7 59.2 0.00G 999.9 000000 722324 03071 20130310 52.5 24 18.5 24 9999.9 0 916.5 24 9.5 24 14.7 24 22.9 29.9 66.6 40.5 0.00G 999.9 000000 722324 03071 20130311 48.7 24 17.3 24 9999.9 0 920.9 24 10.0 24 6.4 24 15.0 19.0 71.6 32.9 0.00G 999.9 000000 722324 03071 20130312 57.5 24 18.6 24 9999.9 0 919.3 24 10.0 24 9.3 24 18.1 22.9 70.5 44.8 0.00G 999.9 000000 722324 03071 20130313 52.6 24 23.7 24 9999.9 0 927.7 24 10.0 24 5.6 24 14.0 17.1 73.4 36.5 0.00G 999.9 000000 722324 03071 20130314 64.8 24 28.4 24 9999.9 0 924.7 24 10.0 24 7.8 24 11.1 15.9 82.9 52.0 0.00G 999.9 000000 722324 03071 20130315 69.8 24 30.6 24 9999.9 0 920.4 24 10.0 24 9.8 24 15.0 20.0 87.6 54.3 0.00G 999.9 000000 722324 03071 20130316 73.1 24 28.1 24 9999.9 0 912.2 24 10.0 24 10.6 24 15.9 22.0 91.8 55.4 0.00G 999.9 000000 722324 03071 20130317 64.1 24 33.1 24 9999.9 0 910.7 24 9.9 24 7.4 24 14.0 21.0 88.2 44.8 0.00G 999.9 000000 722324 03071 20130318 66.2 24 25.1 24 9999.9 0 912.7 24 10.0 24 5.7 24 14.0 18.1 80.6 51.3 0.00G 999.9 000000 722324 03071 20130319 65.6 24 26.5 24 9999.9 0 915.4 24 10.0 24 6.7 24 19.0 24.1 79.7 50.5 0.00G 999.9 000000 722324 03071 20130320 56.7 24 32.2 24 9999.9 0 922.9 24 9.8 24 10.3 24 21.0 28.0 72.3 42.8 0.00G 999.9 000000 722324 03071 20130321 66.7 24 36.1 24 9999.9 0 911.1 24 10.0 24 10.6 24 22.9 31.1 88.2 55.6 0.00G 999.9 000000 722324 03071 20130322 63.7 24 28.2 24 9999.9 0 908.3 24 10.0 24 9.4 24 19.0 22.0 85.1 48.6 0.00G 999.9 000000 722324 03071 20130323 59.7 24 34.2 24 9999.9 0 909.2 24 10.0 24 9.6 24 27.0 40.0 81.3 44.1 0.00G 999.9 000000 722324 03071 20130324 44.7 24 13.4 24 9999.9 0 919.9 24 8.5 24 13.1 24 28.0 42.0 9999.9 28.9* 0.00G 999.9 000000 722324 03071 20130325 42.3 24 8.6 24 9999.9 0 923.7 24 10.0 24 6.7 24 11.1 18.1 55.0 29.3 0.00G 999.9 000000 722324 03071 20130326 47.6 24 12.0 24 9999.9 0 926.7 24 10.0 24 9.9 24 22.0 25.1 65.8 34.9 0.00G 999.9 000000 722324 03071 20130327 58.6 24 26.1 24 9999.9 0 920.4 24 10.0 24 11.4 24 17.1 22.9 78.1 46.4 0.00G 999.9 000000 722324 03071 20130328 63.9 24 43.1 24 9999.9 0 918.9 24 10.0 24 7.3 24 15.0 21.0 84.2 50.9 0.00G 999.9 000000 722324 03071 20130329 68.6 24 50.6 24 9999.9 0 919.1 24 10.0 24 8.4 24 17.1 22.0 82.6 58.1 0.00G 999.9 000000 722324 03071 20130330 69.8 24 48.2 24 9999.9 0 917.7 24 9.8 24 7.7 24 17.1 21.0 87.3* 54.0* 0.00G 999.9 000000 722324 03071 20130331 74.1 24 34.2 24 9999.9 0 916.5 23 10.0 24 8.3 24 21.0 35.0 87.3 60.4 0.00G 999.9 000000 722324 03071 20130401 69.5 24 44.3 24 9999.9 0 917.1 18 10.0 24 7.4 24 13.0 20.0 88.0 55.4 0.00G 999.9 000000 722324 03071 20130402 60.4 24 45.5 24 9999.9 0 915.5 24 9.2 24 9.9 24 18.1 22.0 85.1 44.8 0.00G 999.9 000000 722324 03071 20130403 44.7 24 36.3 24 9999.9 0 920.0 24 9.6 24 9.7 24 14.0 18.1 60.1 39.7 0.00G 999.9 000000 722324 03071 20130404 49.0 24 33.0 24 9999.9 0 922.9 24 10.0 24 4.6 24 8.9 999.9 75.4 33.4 0.00G 999.9 000000 722324 03071 20130405 63.6 24 32.9 24 9999.9 0 921.0 24 10.0 24 7.3 24 18.1 25.1 84.2 46.4 0.00G 999.9 000000 722324 03071 20130406 71.1 24 32.7 24 9999.9 0 914.1 24 10.0 24 11.5 24 18.1 25.1 88.0 54.9 0.00G 999.9 000000 722324 03071 20130407 73.3 24 32.1 24 9999.9 0 911.6 24 10.0 24 8.7 24 21.0 28.0 90.9 57.7 0.00G 999.9 000000 722324 03071 20130408 77.9 24 36.8 24 9999.9 0 907.5 24 10.0 24 11.1 24 20.0 27.0 91.6 64.4 0.00G 999.9 000000 722324 03071 20130409 78.6 24 42.7 24 9999.9 0 903.2 24 8.8 24 16.8 24 22.9 35.0 91.2* 66.7* 0.00G 999.9 000000 722324 03071 20130410 47.7 24 21.7 24 9999.9 0 915.0 24 8.9 24 12.0 24 25.1 33.0 70.2 35.1 0.00G 999.9 000000 722324 03071 20130411 52.1 24 24.7 24 9999.9 0 914.6 24 10.0 24 6.0 24 15.0 22.0 71.8 37.6 0.00G 999.9 000000 722324 03071 20130412 63.9 24 25.0 24 9999.9 0 912.6 24 10.0 24 5.3 24 15.9 22.9 84.4 45.7 0.00G 999.9 000000 722324 03071 20130413 67.9 24 40.5 24 9999.9 0 912.2 24 10.0 24 11.2 24 18.1 24.1 81.1 59.0 0.00G 999.9 000000 722324 03071 20130414 69.9 24 42.0 24 9999.9 0 907.7 24 10.0 24 12.8 24 18.1 29.9 89.8 56.7 0.00G 999.9 000000 722324 03071 20130415 77.7 24 21.6 24 9999.9 0 907.9 24 10.0 24 10.1 24 19.0 27.0 91.0 62.8 0.00G 999.9 000000 722324 03071 20130416 79.2 24 35.6 24 9999.9 0 910.3 24 9.8 24 6.9 24 15.9 22.9 95.0 60.8 0.00G 999.9 000000 722324 03071 20130417 81.9 24 51.4 24 9999.9 0 908.9 24 9.3 24 11.5 24 20.0 28.0 95.0 70.7 0.00G 999.9 000000 722324 03071 20130418 59.5 24 22.6 24 9999.9 0 914.2 24 9.1 24 12.8 24 24.1 35.0 9999.9 41.0* 0.00G 999.9 000000 722324 03071 20130419 50.7 24 14.0 24 9999.9 0 924.1 24 10.0 24 4.2 24 9.9 17.1 67.6 35.6 0.00G 999.9 000000 722324 03071 20130420 62.8 24 18.0 24 9999.9 0 917.7 24 10.0 24 11.7 24 21.0 28.0 81.1 50.2 0.00G 999.9 000000 722324 03071 20130421 69.3 24 25.5 24 9999.9 0 915.9 24 10.0 24 8.1 24 20.0 28.0 86.0 52.0 0.00G 999.9 000000 722324 03071 20130422 74.2 24 33.6 24 9999.9 0 915.5 24 10.0 24 9.4 24 17.1 24.1 93.4 59.2 0.00G 999.9 000000 722324 03071 20130423 61.7 24 36.5 24 9999.9 0 915.5 24 9.7 24 12.4 24 20.0 28.0 91.2 40.5 0.00G 999.9 000000 722324 03071 20130424 46.2 24 26.0 24 9999.9 0 924.6 24 10.0 24 7.5 24 20.0 28.0 64.8 34.0 0.00G 999.9 000000 722324 03071 20130425 60.9 24 30.7 24 9999.9 0 924.0 24 10.0 24 9.4 24 21.0 28.9 75.4 55.4 0.00G 999.9 000000 722324 03071 20130426 69.1 24 42.5 24 9999.9 0 918.2 24 10.0 24 12.2 24 21.0 28.0 90.9 56.3 0.00G 999.9 000000 722324 03071 20130427 73.0 24 31.7 24 9999.9 0 920.4 24 10.0 24 7.2 24 15.0 20.0 88.7 53.6 0.00G 999.9 000000 722324 03071 20130428 72.5 24 41.4 24 9999.9 0 917.7 24 10.0 24 7.0 24 15.0 22.9 87.4 60.3 0.00G 999.9 010000 722324 03071 20130429 72.5 24 45.2 24 9999.9 0 913.9 24 10.0 24 7.8 24 13.0 19.0 88.3* 59.0* 0.17G 999.9 000000 722324 03071 20130430 78.3 24 44.9 24 9999.9 0 909.4 23 10.0 24 10.4 24 15.0 22.0 97.7* 63.5* 0.00G 999.9 000000 722324 03071 20130501 81.4 24 44.1 24 9999.9 0 912.4 18 9.1 24 11.7 24 18.1 25.1 95.7* 67.1* 0.00G 999.9 000000 722324 03071 20130502 53.8 24 34.6 24 9999.9 0 926.0 24 9.2 24 17.5 24 25.1 35.0 9999.9 41.0* 0.00G 999.9 000000 722324 03071 20130503 49.3 24 19.7 24 9999.9 0 929.8 24 10.0 24 5.6 24 20.0 27.0 68.2 35.6 0.00G 999.9 000000 722324 03071 20130504 62.9 24 15.8 24 9999.9 0 918.4 24 10.0 24 4.0 24 8.0 999.9 78.8 48.9 0.00G 999.9 000000 722324 03071 20130505 63.1 24 22.5 24 9999.9 0 920.6 24 10.0 24 5.7 24 13.0 15.9 77.5 46.9 0.00G 999.9 000000 722324 03071 20130506 66.0 24 35.8 24 9999.9 0 919.6 24 10.0 24 7.3 24 14.0 20.0 75.9* 56.7* 0.00G 999.9 010000 722324 03071 20130507 68.1 24 43.7 24 9999.9 0 917.2 24 10.0 24 8.6 24 15.9 20.0 89.1 52.7 0.00G 999.9 000000 722324 03071 20130508 76.6 24 47.0 24 9999.9 0 914.6 24 9.9 24 9.2 24 15.0 22.0 90.9 62.8 0.00G 999.9 000000 722324 03071 20130509 80.2 23 36.5 23 9999.9 0 914.3 22 10.0 23 8.8 23 15.0 22.9 90.1 71.4 0.00G 999.9 000000 722324 03071 20130510 68.3 24 47.8 24 9999.9 0 917.8 24 10.0 24 10.9 24 20.0 28.9 87.8 59.4 0.00G 999.9 010010 722324 03071 20130511 66.3 24 45.9 24 9999.9 0 923.5 24 10.0 24 5.7 24 18.1 22.0 79.2 55.0 0.00G 999.9 000000 722324 03071 20130512 68.9 24 39.3 24 9999.9 0 925.1 24 10.0 24 5.0 24 12.0 20.0 82.4 54.5 0.00G 999.9 000000 722324 03071 20130513 72.5 24 34.8 24 9999.9 0 924.4 24 10.0 24 8.6 24 12.0 19.0 86.0 59.9 0.00G 999.9 000000 722324 03071 20130514 75.5 24 45.2 24 9999.9 0 921.2 24 10.0 24 8.2 24 19.0 28.9 88.5 61.7 0.00G 999.9 010010 722324 03071 20130515 73.5 24 48.9 24 9999.9 0 915.2 24 10.0 24 12.1 24 20.0 28.0 95.9 59.9 0.04G 999.9 010000 722324 03071 20130516 81.8 24 41.9 24 9999.9 0 911.5 24 9.7 24 6.7 24 15.9 22.0 101.5 63.5 0.00G 999.9 000000 722324 03071 20130517 87.6 24 24.2 24 9999.9 0 911.8 24 10.0 24 6.4 24 13.0 19.0 103.5 64.6 0.00G 999.9 000000 722324 03071 20130518 89.2 24 41.3 24 9999.9 0 912.0 24 10.0 24 10.7 24 19.0 28.0 101.3 77.9 0.00G 999.9 000000 722324 03071 20130519 85.6 24 37.5 24 9999.9 0 911.1 24 9.8 24 11.4 24 18.1 26.0 98.1 72.5 0.00G 999.9 000000 722324 03071 20130520 84.0 24 28.5 24 9999.9 0 910.8 24 10.0 24 7.3 24 14.0 25.1 96.4 71.1 0.00G 999.9 000000 722324 03071 20130521 79.8 24 36.7 22 9999.9 0 911.6 24 10.0 24 8.2 24 19.0 26.0 94.5 64.6 0.00G 999.9 000000 722324 03071 20130522 77.1 24 42.3 24 9999.9 0 914.2 24 10.0 24 9.2 24 18.1 22.9 96.1 61.7 0.00G 999.9 000000 722324 03071 20130523 85.5 24 54.6 24 9999.9 0 913.5 24 8.7 24 12.8 24 19.0 22.9 100.6 73.6 0.00G 999.9 000000 722324 03071 20130524 76.6 24 53.1 24 9999.9 0 918.9 24 9.8 24 11.5 24 24.1 32.1 89.1 66.9 0.00G 999.9 000000 722324 03071 20130525 75.4 24 58.8 24 9999.9 0 919.7 24 10.0 24 11.1 24 17.1 21.0 89.6 67.1 0.00G 999.9 000000 722324 03071 20130526 78.3 24 59.4 24 9999.9 0 917.7 24 9.9 24 11.8 24 27.0 35.0 94.1 67.5 0.01G 999.9 010010 722324 03071 20130527 83.4 24 63.1 24 9999.9 0 914.1 24 10.0 24 13.6 24 20.0 27.0 98.6 72.5 0.00G 999.9 000000 722324 03071 20130528 79.2 24 63.7 24 9999.9 0 910.8 24 9.9 24 13.4 24 20.0 26.0 89.6 73.0 0.00G 999.9 000000 722324 03071 20130529 82.3 24 52.6 24 9999.9 0 907.6 24 10.0 24 15.8 24 22.9 31.1 97.0 73.6 0.00G 999.9 000000 722324 03071 20130530 85.4 24 46.4 24 9999.9 0 908.9 24 10.0 24 11.4 24 19.0 27.0 98.6 73.2 0.00G 999.9 000000 722324 03071 20130531 87.8 24 47.5 24 9999.9 0 911.1 24 10.0 24 9.7 24 15.9 22.0 104.7 73.2 0.00G 999.9 000000 722324 03071 20130601 86.4 24 52.1 24 9999.9 0 914.0 18 9.8 24 12.5 24 22.0 27.0 102.6 72.0 0.00G 999.9 000000 722324 03071 20130602 77.5 24 44.8 24 9999.9 0 919.7 24 10.0 24 8.9 24 18.1 22.0 90.3 64.9 0.00G 999.9 000000 722324 03071 20130603 83.3 24 54.3 24 9999.9 0 916.1 24 9.2 24 8.7 24 14.0 22.0 97.9 71.8 0.00G 999.9 000000 722324 03071 20130604 90.6 24 49.3 24 9999.9 0 912.4 24 10.0 24 10.8 24 15.0 28.0 108.0 77.4 0.00G 999.9 000000 722324 03071 20130605 90.4 24 45.6 24 9999.9 0 911.9 24 10.0 24 9.2 24 18.1 25.1 104.7 74.5 0.00G 999.9 000000 722324 03071 20130606 75.6 24 58.0 24 9999.9 0 915.8 24 9.9 24 11.1 24 27.0 38.1 93.7 64.4 0.00G 999.9 010010 722324 03071 20130607 73.8 24 59.1 24 9999.9 0 918.3 24 10.0 24 7.1 24 14.0 20.0 85.8 66.4 0.00G 999.9 010010 722324 03071 20130608 77.4 24 57.3 24 9999.9 0 914.7 24 10.0 24 9.9 24 15.0 25.1 94.1 66.2 0.00G 999.9 000000 722324 03071 20130609 82.4 24 59.9 24 9999.9 0 914.0 24 10.0 24 11.7 24 25.1 33.0 94.3 69.3 0.00G 999.9 010000 722324 03071 20130610 84.3 24 55.5 24 9999.9 0 917.7 24 10.0 24 8.7 24 14.0 21.0 97.9 71.8 0.00G 999.9 000000 722324 03071 20130611 87.9 19 50.4 19 9999.9 0 917.3 19 10.0 19 8.7 19 15.0 21.0 97.0 72.5 0.00G 999.9 000000 722324 03071 20130612 83.4 24 58.9 24 9999.9 0 918.0 24 10.0 24 11.4 24 17.1 22.9 95.0 71.1 0.00G 999.9 000000 722324 03071 20130613 84.2 24 60.9 24 9999.9 0 918.9 24 10.0 24 8.9 24 14.0 24.1 95.5 74.3 0.00G 999.9 010010 722324 03071 20130614 75.6 24 65.8 24 9999.9 0 918.1 24 9.7 24 8.2 24 15.9 28.0 86.9* 72.0* 0.12G 999.9 010010 722324 03071 20130615 77.4 24 64.1 24 9999.9 0 917.8 24 9.8 24 6.6 24 15.9 22.0 90.5 70.5 0.00G 999.9 000000 722324 03071 20130616 82.4 24 64.7 24 9999.9 0 917.5 24 10.0 24 8.1 24 13.0 17.1 96.3 71.4 0.00G 999.9 000000 722324 03071 20130617 84.6 24 65.7 24 9999.9 0 916.8 24 9.8 24 8.0 24 13.0 18.1 98.8 76.1 0.00G 999.9 000000 722324 03071 20130618 78.6 24 60.2 24 9999.9 0 918.6 24 9.9 24 6.8 24 19.0 28.9 95.9 67.3 0.00G 999.9 010010 722324 03071 20130619 85.2 24 60.5 24 9999.9 0 916.1 24 10.0 24 9.9 24 19.0 26.0 99.5 74.3 0.00G 999.9 000000 722324 03071 20130620 86.5 24 58.7 24 9999.9 0 916.2 24 9.9 24 13.3 24 21.0 29.9 100.0 76.5 0.00G 999.9 010010 722324 03071 20130621 85.3 24 61.9 24 9999.9 0 917.9 24 10.0 24 12.3 24 17.1 24.1 96.6 76.3 0.00G 999.9 000000 722324 03071 20130622 85.5 24 59.5 24 9999.9 0 916.3 24 10.0 24 12.5 24 18.1 24.1 97.9 76.1 0.00G 999.9 000000 722324 03071 20130623 86.6 24 55.9 24 9999.9 0 914.5 24 10.0 24 12.5 24 19.0 26.0 99.9 77.0 0.00G 999.9 000000 722324 03071 20130624 85.4 24 60.6 24 9999.9 0 915.2 24 10.0 24 14.4 24 20.0 26.0 97.5 75.7 0.00G 999.9 000000 722324 03071 20130625 87.4 24 60.6 24 9999.9 0 915.2 24 9.8 24 11.0 24 17.1 22.9 104.5 77.0 0.00G 999.9 000000 722324 03071 20130626 91.7 24 58.5 24 9999.9 0 914.8 24 10.0 24 10.2 24 19.0 22.0 108.5 79.2 0.00G 999.9 010010 722324 03071 20130627 92.4 24 56.8 24 9999.9 0 916.8 24 9.9 24 10.4 24 18.1 22.9 106.5 77.9 0.00G 999.9 010000 722324 03071 20130628 90.4 24 49.1 24 9999.9 0 919.2 24 10.0 24 4.5 24 11.1 999.9 103.3 76.5 0.00G 999.9 000000 722324 03071 20130629 90.8 24 53.1 24 9999.9 0 917.5 24 9.3 24 5.7 24 26.0 29.9 102.7 77.5 0.00G 999.9 000000 722324 03071 20130630 85.0 24 56.3 24 9999.9 0 917.5 24 9.6 24 6.2 24 21.0 28.9 101.8 73.4 0.00G 999.9 010000 722324 03071 20130701 77.6 24 58.2 24 9999.9 0 921.8 18 10.0 24 5.8 24 14.0 20.0 92.1 67.3 0.00G 999.9 010000 722324 03071 20130702 76.9 24 52.4 24 9999.9 0 922.5 24 10.0 24 3.4 24 12.0 17.1 87.3 65.3 0.01G 999.9 000000 722324 03071 20130703 78.8 24 40.7 24 9999.9 0 920.4 24 10.0 24 5.9 24 12.0 21.0 90.9 65.5 0.00G 999.9 000000 722324 03071 20130704 80.1 24 43.8 24 9999.9 0 917.0 24 10.0 24 8.8 24 15.0 20.0 91.4 68.7 0.00G 999.9 010010 722324 03071 20130705 83.5 24 50.7 24 9999.9 0 916.0 24 10.0 24 10.2 24 15.9 25.1 96.6 72.0 0.00G 999.9 000000 722324 03071 20130706 85.9 24 50.5 24 9999.9 0 915.2 24 10.0 24 12.4 24 17.1 22.9 97.0 75.2 0.00G 999.9 000000 722324 03071 20130707 85.3 24 51.6 24 9999.9 0 916.5 24 9.8 24 8.9 24 15.0 21.0 96.3 72.9 0.00G 999.9 000000 722324 03071 20130708 85.9 24 56.3 24 9999.9 0 919.3 24 10.0 24 6.8 24 17.1 18.1 95.7 73.8 0.00G 999.9 000000 722324 03071 20130709 84.5 24 59.4 24 9999.9 0 921.1 24 10.0 24 9.9 24 15.0 22.9 94.1 74.5 0.00G 999.9 000000 722324 03071 20130710 85.7 24 59.0 24 9999.9 0 920.4 24 10.0 24 8.2 24 14.0 19.0 98.6 73.9 0.00G 999.9 000000 722324 03071 20130711 88.2 24 55.3 24 9999.9 0 918.6 24 10.0 24 7.5 24 11.1 18.1 98.2 76.6 0.00G 999.9 000000 722324 03071 20130712 88.6 24 53.9 24 9999.9 0 917.2 24 10.0 24 6.9 24 13.0 18.1 99.5 76.6 0.00G 999.9 000000 722324 03071 20130713 88.8 24 48.8 24 9999.9 0 918.0 24 9.5 24 6.8 24 14.0 19.0 100.4 73.8 0.00G 999.9 000000 722324 03071 20130714 90.1 24 44.8 24 9999.9 0 916.5 24 9.4 24 5.5 24 9.9 999.9 102.2 77.9 0.00G 999.9 000000 722324 03071 20130715 71.7 24 58.6 24 9999.9 0 918.1 24 8.2 24 11.3 24 22.9 34.0 98.8 62.6 0.23G 999.9 010000 722324 03071 20130716 66.7 24 62.1 24 9999.9 0 921.7 24 7.9 24 3.9 24 8.9 999.9 72.7 64.6 0.27G 999.9 010000 722324 03071 20130717 72.0 24 67.1 24 9999.9 0 924.4 24 9.5 24 5.9 24 9.9 14.0 81.5 69.3 0.25G 999.9 010000 722324 03071 20130718 72.9 24 67.0 24 9999.9 0 924.1 24 9.8 24 6.1 24 14.0 19.0 82.8 69.8 0.10G 999.9 010010 722324 03071 20130719 75.9 24 65.2 24 9999.9 0 921.2 24 10.0 24 6.2 24 15.0 18.1 87.8 69.8 0.01G 999.9 000000 722324 03071 20130720 80.3 24 63.3 24 9999.9 0 918.2 24 10.0 24 6.1 24 14.0 19.0 91.4 70.7 0.00G 999.9 000000 722324 03071 20130721 81.0 24 62.1 24 9999.9 0 916.8 24 10.0 24 6.7 24 14.0 20.0 91.9 70.2 0.00G 999.9 000000 722324 03071 20130722 82.7 24 65.1 24 9999.9 0 916.8 24 9.8 24 8.1 24 13.0 19.0 94.5 73.0 0.00G 999.9 000000 722324 03071 20130723 85.9 24 64.1 24 9999.9 0 916.8 24 10.0 24 8.2 24 15.0 18.1 97.9 74.8 0.00G 999.9 000000 722324 03071 20130724 87.7 24 63.3 24 9999.9 0 916.8 24 10.0 24 7.0 24 15.0 19.0 97.9 77.4 0.00G 999.9 000000 722324 03071 20130725 86.6 24 61.3 24 9999.9 0 919.4 24 10.0 24 3.8 24 11.1 15.9 97.7 75.7 0.00G 999.9 000000 722324 03071 20130726 88.2 24 57.7 24 9999.9 0 919.3 24 10.0 24 6.5 24 14.0 21.0 98.8 77.9 0.00G 999.9 000000 722324 03071 20130727 82.3 24 58.2 24 9999.9 0 921.1 24 9.9 24 6.0 24 14.0 999.9 94.1 70.7 0.00G 999.9 000000 722324 03071 20130728 82.4 24 54.0 24 9999.9 0 917.2 24 9.9 24 7.6 24 17.1 20.0 96.8 69.8 0.00G 999.9 000000 722324 03071 20130729 86.6 24 62.3 24 9999.9 0 916.3 24 10.0 24 8.9 24 14.0 22.0 97.5 77.5 0.00G 999.9 010010 722324 03071 20130730 85.9 24 63.3 24 9999.9 0 918.9 24 10.0 24 6.5 24 11.1 15.0 103.3 77.0 0.00G 999.9 010010 722324 03071 20130731 88.9 24 61.1 24 9999.9 0 920.6 24 9.8 24 5.1 24 12.0 17.1 100.0 79.2 0.02G 999.9 000000 722324 03071 20130801 89.2 24 59.0 24 9999.9 0 920.8 19 9.5 24 3.4 24 11.1 15.9 100.4 77.0 0.00G 999.9 000000 722324 03071 20130802 90.2 24 51.3 24 9999.9 0 917.7 24 9.5 24 7.4 24 15.9 19.0 102.4 78.4 0.00G 999.9 000000 722324 03071 20130803 90.7 24 51.7 24 9999.9 0 917.1 24 9.3 24 9.3 24 14.0 17.1 102.4 79.2 0.00G 999.9 000000 722324 03071 20130804 88.5 24 56.3 24 9999.9 0 918.9 24 10.0 24 11.2 24 15.0 21.0 99.7 77.0 0.00G 999.9 000000 722324 03071 20130805 88.7 24 56.6 24 9999.9 0 918.1 24 9.3 24 8.1 24 13.0 19.0 101.5 76.5 0.00G 999.9 000000 722324 03071 20130806 91.1 24 53.7 24 9999.9 0 915.3 24 10.0 24 6.2 24 22.0 31.1 104.0 79.7 0.00G 999.9 010010 722324 03071 20130807 85.5 24 58.9 24 9999.9 0 915.6 24 9.7 24 6.8 24 21.0 33.0 101.3 77.4 0.09G 999.9 010010 722324 03071 20130808 87.4 24 55.3 24 9999.9 0 914.9 23 9.9 24 5.1 24 12.0 15.9 102.0 77.2 0.00G 999.9 000000 722324 03071 20130809 87.0 24 57.4 24 9999.9 0 916.3 24 9.9 24 4.3 24 12.0 22.0 100.2 77.0 0.00G 999.9 010000 722324 03071 20130810 83.1 24 60.3 24 9999.9 0 921.9 22 9.8 24 7.6 24 15.0 18.1 94.1 73.6 0.00G 999.9 000000 722324 03071 20130811 84.7 24 61.0 24 9999.9 0 921.4 24 10.0 24 3.9 24 12.0 15.9 97.7 73.9 0.00G 999.9 000000 722324 03071 20130812 86.5 23 59.1 23 9999.9 0 920.3 20 9.2 23 4.1 23 12.0 14.0 97.5 74.3 0.00G 999.9 000000 722324 03071 20130813 86.5 24 58.8 24 9999.9 0 919.2 19 9.6 24 6.4 24 11.1 14.0 97.2 76.1 0.00G 999.9 000000 722324 03071 20130814 81.4 24 60.9 24 9999.9 0 920.1 24 9.8 24 5.0 24 20.0 26.0 95.9 68.0 0.00G 999.9 010000 722324 03071 20130815 81.1 24 61.8 24 9999.9 0 920.2 24 10.0 24 1.3 24 9.9 15.0 96.1 69.8 0.14G 999.9 000000 722324 03071 20130816 82.1 24 59.4 24 9999.9 0 919.8 24 9.9 24 5.6 24 19.0 27.0 94.1 70.7 0.00G 999.9 000000 722324 03071 20130817 83.6 24 55.7 24 9999.9 0 920.6 24 10.0 24 3.4 24 11.1 15.9 97.3 70.9 0.00G 999.9 000000 722324 03071 20130818 86.0 24 51.9 24 9999.9 0 919.1 24 10.0 24 3.7 24 13.0 17.1 100.2 71.2 0.00G 999.9 000000 722324 03071 20130819 85.9 24 53.3 24 9999.9 0 918.7 24 10.0 24 3.3 24 11.1 22.0 99.9 72.5 0.00G 999.9 000000 722324 03071 20130820 87.0 24 51.9 24 9999.9 0 918.2 24 10.0 24 2.4 24 9.9 18.1 97.7 77.0 0.00G 999.9 000000 722324 03071 20130821 83.8 24 52.7 24 9999.9 0 919.8 24 10.0 24 0.0 24 4.1 15.0 94.1 71.6 0.00G 999.9 000000 722324 03071 20130822 83.5 24 55.8 24 9999.9 0 920.5 24 10.0 24 1.0 24 12.0 15.9 95.2 72.9 0.00G 999.9 010000 722324 03071 20130823 84.5 24 57.4 24 9999.9 0 919.5 24 9.7 24 1.9 24 20.0 36.9 95.9* 72.1* 0.00G 999.9 010010 722324 03071 20130824 81.5 24 60.9 24 9999.9 0 920.2 24 10.0 24 1.7 24 14.0 19.0 95.5 71.6 0.07G 999.9 010000 722324 03071 20130825 85.1 24 58.5 24 9999.9 0 921.7 24 10.0 24 1.5 24 12.0 19.0 96.8 73.6 0.00G 999.9 000000 722324 03071 20130826 84.0 24 58.6 24 9999.9 0 922.7 24 10.0 24 0.0 24 4.1 999.9 93.6 73.0 0.00G 999.9 000000 722324 03071 20130827 81.5 24 59.3 24 9999.9 0 921.2 24 10.0 24 0.0 16 999.9 999.9 90.9 70.7 0.00G 999.9 000000 722324 03071 20130828 80.9 24 60.8 24 9999.9 0 920.7 24 10.0 24 999.9 0 999.9 999.9 91.9 70.9 0.00G 999.9 010000 722324 03071 20130829 82.7 24 54.4 24 9999.9 0 921.5 24 10.0 24 999.9 0 999.9 999.9 97.0 71.2 0.00G 999.9 000000 722324 03071 20130830 86.8 24 53.1 24 9999.9 0 920.2 24 10.0 24 6.8 24 13.0 21.0 98.2 72.7 0.00G 999.9 000000 722324 03071 20130831 88.5 24 52.3 24 9999.9 0 917.4 24 10.0 24 7.9 24 11.1 18.1 99.1 77.5 0.00G 999.9 000000 722324 03071 20130901 88.8 24 52.2 24 9999.9 0 916.2 24 10.0 24 5.7 24 13.0 18.1 99.7 76.1 0.00G 999.9 000000 722324 03071 20130902 87.7 24 56.2 24 9999.9 0 918.0 24 10.0 24 6.2 24 14.0 22.9 97.7 79.2 0.00G 999.9 000000 722324 03071 20130903 84.3 24 55.5 24 9999.9 0 919.6 24 10.0 24 5.0 24 12.0 18.1 97.2 71.2 0.00G 999.9 000000 722324 03071 20130904 84.9 24 52.0 24 9999.9 0 920.6 24 10.0 24 3.4 24 12.0 20.0 97.9 70.0 0.00G 999.9 000000 722324 03071 20130905 84.1 24 54.5 24 9999.9 0 921.8 24 10.0 24 3.4 24 12.0 17.1 95.9 70.2 0.00G 999.9 000000 722324 03071 20130906 83.7 24 58.9 24 9999.9 0 921.8 24 10.0 24 6.5 24 15.0 22.9 95.7 73.4 0.00G 999.9 000000 722324 03071 20130907 84.0 24 55.5 24 9999.9 0 920.0 24 10.0 24 4.6 24 12.0 17.1 95.2 72.1 0.00G 999.9 000000 722324 03071 20130908 84.3 24 56.0 24 9999.9 0 917.9 24 10.0 24 6.4 24 11.1 19.0 93.9* 73.4* 0.00G 999.9 000000 722324 03071 20130909 79.4 24 60.2 24 9999.9 0 917.0 24 10.0 24 10.6 24 17.1 22.0 91.6 68.2 0.00G 999.9 000000 722324 03071 20130910 79.2 24 61.5 24 9999.9 0 918.1 24 10.0 24 10.4 24 15.9 20.0 88.3 70.3 0.00G 999.9 010000 722324 03071 20130911 77.3 24 64.6 24 9999.9 0 920.4 24 9.8 24 12.1 24 18.1 22.9 86.0 73.0 0.00G 999.9 010000 722324 03071 20130912 79.0 24 60.6 24 9999.9 0 920.6 24 10.0 24 8.4 24 15.0 20.0 90.1 69.1 0.10G 999.9 000000 722324 03071 20130913 80.0 24 53.3 24 9999.9 0 918.9 24 10.0 24 6.5 24 14.0 19.0 92.7 68.2 0.00G 999.9 000000 722324 03071 20130914 80.1 24 52.4 24 9999.9 0 916.8 24 10.0 24 6.2 24 15.9 24.1 90.9 67.3 0.00G 999.9 000000 722324 03071 20130915 81.1 24 52.1 24 9999.9 0 917.7 24 10.0 24 8.1 24 15.9 22.9 92.7 68.5 0.00G 999.9 000000 722324 03071 20130916 81.1 24 57.9 24 9999.9 0 920.5 24 10.0 24 6.3 24 13.0 18.1 89.6 70.7 0.00G 999.9 010010 722324 03071 20130917 74.2 24 65.3 24 9999.9 0 921.2 24 10.0 24 5.9 24 12.0 15.9 81.7 70.7 0.35G 999.9 010000 722324 03071 20130918 76.2 24 64.6 24 9999.9 0 918.7 24 10.0 24 9.6 24 17.1 24.1 87.3 70.2 0.00G 999.9 010000 722324 03071 20130919 75.2 24 65.6 24 9999.9 0 916.9 24 10.0 24 9.8 24 15.9 22.0 84.2 70.9 0.01G 999.9 010000 722324 03071 20130920 69.5 24 65.5 24 9999.9 0 917.1 24 8.9 24 9.0 24 18.1 25.1 72.5 65.5 0.03G 999.9 010000 722324 03071 20130921 68.6 24 58.1 24 9999.9 0 919.9 24 10.0 24 4.3 24 8.0 999.9 80.2 61.7 0.01G 999.9 000000 722324 03071 20130922 72.3 24 48.8 24 9999.9 0 916.0 24 10.0 24 6.3 24 12.0 18.1 83.5 60.4 0.00G 999.9 000000 722324 03071 20130923 74.3 24 46.7 24 9999.9 0 912.0 24 10.0 24 8.4 24 14.0 21.0 91.4 61.9 0.00G 999.9 000000 722324 03071 20130924 75.7 24 40.8 24 9999.9 0 916.6 24 10.0 24 4.8 24 11.1 14.0 89.6 60.4 0.00G 999.9 000000 722324 03071 20130925 77.8 24 46.2 24 9999.9 0 915.8 24 10.0 24 5.1 24 11.1 15.9 93.2* 64.0* 0.00G 999.9 000000 722324 03071 20130926 81.5 24 50.7 24 9999.9 0 912.3 24 10.0 24 10.4 24 17.1 22.0 94.5* 69.6* 0.00G 999.9 000000 722324 03071 20130927 79.8 24 60.0 24 9999.9 0 912.5 24 10.0 24 12.4 24 21.0 26.0 91.4 69.8 0.00G 999.9 000000 722324 03071 20130928 73.1 24 58.0 24 9999.9 0 916.5 24 10.0 24 11.6 24 20.0 25.1 83.3 59.9 0.02G 999.9 010000 722324 03071 20130929 67.1 24 44.8 24 9999.9 0 922.0 24 10.0 24 2.6 24 8.9 14.0 82.2 53.6 0.00G 999.9 000000 722324 03071 20130930 75.8 24 38.4 24 9999.9 0 915.7 24 10.0 24 6.6 24 13.0 19.0 94.1 63.1 0.00G 999.9 000000 722324 03071 20131001 80.0 24 46.1 24 9999.9 0 913.2 24 10.0 24 6.9 24 12.0 17.1 96.1 66.2 0.00G 999.9 000000 722324 03071 20131002 80.4 24 46.4 24 9999.9 0 914.3 24 10.0 24 6.7 24 11.1 19.0 95.2 66.2 0.00G 999.9 000000 722324 03071 20131003 80.8 24 54.8 24 9999.9 0 913.7 24 10.0 24 9.0 24 18.1 22.9 94.1 70.2 0.00G 999.9 000000 722324 03071 20131004 81.4 24 56.4 24 9999.9 0 912.9 24 10.0 24 11.3 24 15.0 22.0 95.2 71.8 0.00G 999.9 000000 722324 03071 20131005 70.5 24 41.7 24 9999.9 0 918.5 24 10.0 24 10.0 24 18.1 26.0 91.9 55.2 0.00G 999.9 000000 722324 03071 20131006 62.3 24 28.3 24 9999.9 0 923.7 24 10.0 24 3.1 24 7.0 999.9 78.6 47.7 0.00G 999.9 000000 722324 03071 20131007 67.4 24 23.9 24 9999.9 0 923.4 24 10.0 24 2.6 24 8.0 999.9 84.0 51.3 0.00G 999.9 000000 722324 03071 20131008 70.3 24 28.2 24 9999.9 0 919.5 24 10.0 24 5.6 24 15.0 21.0 87.1 52.7 0.00G 999.9 000000 722324 03071 20131009 72.3 24 38.7 24 9999.9 0 915.8 24 10.0 24 11.4 24 15.9 20.0 88.9 59.5 0.00G 999.9 000000 722324 03071 20131010 74.1 24 51.4 24 9999.9 0 915.1 24 10.0 24 12.3 24 22.0 29.9 87.8 63.9 0.00G 999.9 000000 722324 03071 20131011 74.5 24 46.7 24 9999.9 0 914.0 24 10.0 24 9.5 24 22.9 28.9 86.4 62.1 0.00G 999.9 000000 722324 03071 20131012 72.3 24 37.2 24 9999.9 0 917.7 24 10.0 24 3.5 24 9.9 999.9 86.4 59.4 0.00G 999.9 010000 722324 03071 20131013 68.7 24 53.2 24 9999.9 0 920.8 24 9.0 24 9.4 24 17.1 26.0 83.8 62.6 0.00G 999.9 010010 722324 03071 20131014 69.5 24 64.4 24 9999.9 0 919.2 24 10.0 24 9.6 24 15.0 22.9 80.6 64.8 0.01G 999.9 000000 722324 03071 20131015 65.4 24 59.3 24 9999.9 0 917.9 24 9.9 24 9.3 24 14.0 20.0 77.2 49.1 0.00G 999.9 010000 722324 03071 20131016 52.1 24 43.8 24 9999.9 0 921.8 24 10.0 24 6.9 24 11.1 15.0 57.4 48.9 0.09G 999.9 000000 722324 03071 20131017 56.1 24 48.2 24 9999.9 0 920.4 24 10.0 24 2.7 24 11.1 14.0 72.9 46.8 0.00G 999.9 000000 722324 03071 20131018 66.8 24 55.4 24 9999.9 0 915.6 24 9.5 24 9.2 24 26.0 35.0 79.0 57.6 0.00G 999.9 000000 722324 03071 20131019 49.7 24 34.6 24 9999.9 0 923.6 24 9.6 24 9.1 24 24.1 28.9 65.3* 40.1* 0.00G 999.9 000000 722324 03071 20131020 61.5 24 39.9 24 9999.9 0 916.8 24 10.0 24 7.6 24 15.0 20.0 81.7 49.3 0.00G 999.9 000000 722324 03071 20131021 61.8 24 47.3 24 9999.9 0 916.8 24 9.9 24 10.8 24 15.9 22.9 77.7 50.7 0.00G 999.9 000000 722324 03071 20131022 58.1 24 40.6 24 9999.9 0 923.7 24 9.8 24 2.9 24 6.0 999.9 73.4 45.9 0.00G 999.9 000000 722324 03071 20131023 63.3 24 36.3 24 9999.9 0 922.6 24 10.0 24 4.9 24 13.0 19.0 77.9* 48.4* 0.00G 999.9 000000 722324 03071 20131024 63.0 24 39.8 24 9999.9 0 922.2 24 10.0 24 4.6 24 11.1 15.9 78.1 49.6 0.00G 999.9 000000 722324 03071 20131025 61.5 24 46.5 24 9999.9 0 925.2 24 10.0 24 7.2 24 18.1 22.9 73.4 50.4 0.00G 999.9 000000 722324 03071 20131026 62.4 24 50.9 24 9999.9 0 922.6 24 10.0 24 4.0 24 13.0 17.1 75.0 50.4 0.00G 999.9 000000 722324 03071 20131027 60.5 24 44.8 24 9999.9 0 922.5 24 10.0 24 4.4 24 12.0 17.1 73.0 50.0 0.00G 999.9 000000 722324 03071 20131028 66.5 24 53.9 24 9999.9 0 916.6 24 9.5 24 8.4 24 17.1 22.0 79.2 56.8 0.00G 999.9 000000 722324 03071 20131029 72.5 24 63.2 24 9999.9 0 917.0 24 10.0 24 11.1 24 15.9 22.0 79.0 68.9 0.00G 999.9 000000 722324 03071 20131030 72.0 24 63.4 24 9999.9 0 915.5 24 10.0 24 10.0 24 15.9 21.0 77.0* 68.9* 0.00G 999.9 010000 722324 03071 20131031 66.2 24 37.7 24 9999.9 0 914.7 23 10.0 24 13.1 24 21.0 29.9 73.8 54.5 0.00G 999.9 010000 722324 03071 20131101 61.7 24 25.5 24 9999.9 0 916.6 17 10.0 24 9.3 24 18.1 22.9 73.4 50.4 0.00G 999.9 000000 722324 03071 20131102 57.0 24 30.6 24 9999.9 0 925.4 24 10.0 24 4.8 24 9.9 15.0 69.3 43.0 0.00G 999.9 000000 722324 03071 20131103 55.3 24 33.0 24 9999.9 0 919.6 24 10.0 24 10.7 24 21.0 29.9 65.8 47.3 0.00G 999.9 000000 722324 03071 20131104 60.0 24 47.3 24 9999.9 0 914.6 24 10.0 24 11.1 24 22.0 28.0 74.5 52.9 0.00G 999.9 000000 722324 03071 20131105 64.6 24 51.9 24 9999.9 0 915.0 24 10.0 24 10.5 24 15.9 20.0 78.3 55.0 0.00G 999.9 000000 722324 03071 20131106 58.1 24 32.8 24 9999.9 0 923.0 24 10.0 24 7.3 24 17.1 22.0 73.9 47.3 0.00G 999.9 010000 722324 03071 20131107 50.9 24 24.8 24 9999.9 0 930.3 24 9.7 24 3.5 24 11.1 14.0 61.9 38.3 0.03G 999.9 000000 722324 03071 20131108 51.7 24 31.1 24 9999.9 0 926.6 24 10.0 24 7.8 24 17.1 22.9 58.1 46.6 0.00G 999.9 010000 722324 03071 20131109 54.1 24 42.2 24 9999.9 0 919.6 24 10.0 24 7.9 24 15.0 20.0 78.8 43.2 0.00G 999.9 000000 722324 03071 20131110 58.4 24 45.7 24 9999.9 0 923.2 24 9.9 24 3.7 24 12.0 14.0 73.4 42.1 0.00G 999.9 000000 722324 03071 20131111 61.2 24 53.2 24 9999.9 0 924.6 24 9.8 24 5.8 24 9.9 14.0 68.9 53.2 0.00G 999.9 000000 722324 03071 20131112 49.5 24 41.4 24 9999.9 0 931.8 24 8.1 24 10.6 24 25.1 31.1 64.6 40.3 0.00G 999.9 110000 722324 03071 20131113 41.2 24 17.8 24 9999.9 0 935.5 24 10.0 24 2.5 24 8.0 999.9 55.8 31.1 0.00G 999.9 000000 722324 03071 20131114 50.6 24 28.1 24 9999.9 0 922.1 24 10.0 24 8.6 24 13.0 18.1 68.0 43.0 0.00G 999.9 000000 722324 03071 20131115 56.6 24 40.2 24 9999.9 0 915.3 24 10.0 24 5.5 24 14.0 21.0 80.6 39.6 0.00G 999.9 000000 722324 03071 20131116 67.0 24 49.2 24 9999.9 0 911.0 24 10.0 24 11.3 24 19.0 25.1 81.3 56.3 0.00G 999.9 010000 722324 03071 20131117 69.5 24 44.6 24 9999.9 0 912.5 24 10.0 24 8.9 24 18.1 22.0 79.3 59.0 0.00G 999.9 000000 722324 03071 20131118 59.2 24 33.2 24 9999.9 0 920.4 24 10.0 24 4.3 24 11.1 999.9 74.3 49.6 0.00G 999.9 000000 722324 03071 20131119 56.3 24 37.0 24 9999.9 0 920.0 24 10.0 24 4.7 24 15.0 20.0 75.0 44.8 0.00G 999.9 000000 722324 03071 20131120 65.4 24 54.3 24 9999.9 0 913.9 24 9.4 24 10.8 24 18.1 25.1 78.1 57.7 0.00G 999.9 000000 722324 03071 20131121 68.0 24 56.2 24 9999.9 0 915.3 24 9.5 24 7.9 24 17.1 20.0 79.0 62.8 0.00G 999.9 000000 722324 03071 20131122 38.8 24 30.6 24 9999.9 0 927.7 24 6.7 24 13.2 24 22.0 29.9 9999.9 30.0* 0.00G 999.9 011000 722324 03071 20131123 31.6 24 29.0 24 9999.9 0 932.7 24 4.9 24 7.1 24 11.1 15.0 33.3 30.6 0.07G 999.9 001000 722324 03071 20131124 31.2 24 28.1 24 9999.9 0 931.4 24 5.3 24 4.4 24 8.0 999.9 32.0 30.2 0.01G 999.9 001000 722324 03071 20131125 34.3 24 31.3 24 9999.9 0 922.5 24 9.0 24 2.4 24 13.0 17.1 45.5 31.5 0.02G 999.9 001000 722324 03071 20131126 39.3 24 29.3 24 9999.9 0 925.8 24 9.6 24 11.3 24 15.9 24.1 50.2 32.0 0.00G 999.9 010000 722324 03071 20131127 39.2 24 29.6 24 9999.9 0 929.7 24 10.0 24 3.7 24 8.9 15.0 49.3 31.6 0.00G 999.9 000000 722324 03071 20131128 44.1 24 31.7 24 9999.9 0 925.5 24 10.0 24 5.6 24 9.9 14.0 58.1 34.2 0.00G 999.9 000000 722324 03071 20131129 45.0 24 33.1 24 9999.9 0 927.3 24 10.0 24 5.0 24 9.9 999.9 61.0 32.0 0.00G 999.9 000000 722324 03071 20131130 51.6 24 40.5 24 9999.9 0 925.0 24 9.6 24 5.2 24 11.1 15.9 68.9 38.7 0.00G 999.9 000000 722324 03071 20131201 54.4 24 46.7 24 9999.9 0 921.3 18 8.9 24 3.8 24 11.1 14.0 63.0 45.1 0.00G 999.9 100000 722324 03071 20131202 57.0 24 35.4 24 9999.9 0 915.3 24 10.0 24 8.4 24 18.1 22.0 74.3 42.8 0.00G 999.9 000000 722324 03071 20131203 62.8 24 26.2 24 9999.9 0 908.7 24 10.0 24 9.1 24 18.1 24.1 79.9 51.4 0.00G 999.9 000000 722324 03071 20131204 66.6 24 36.7 24 9999.9 0 908.0 24 10.0 24 10.2 24 24.1 28.9 77.9 56.8 0.00G 999.9 000000 722324 03071 20131205 41.3 24 27.9 24 9999.9 0 916.4 24 8.5 24 11.5 24 22.0 26.0 9999.9 26.1* 0.00G 999.9 001000 722324 03071 20131206 25.4 24 21.1 24 9999.9 0 923.4 24 7.3 24 7.9 24 11.1 15.9 28.9 23.5 0.04G 999.9 001000 722324 03071 20131207 20.9 24 13.1 24 9999.9 0 928.6 24 10.0 24 8.7 24 14.0 19.0 27.9 17.4 0.00G 999.9 000000 722324 03071 20131208 29.3 24 22.0 24 9999.9 0 919.0 24 9.4 24 4.3 24 8.9 999.9 52.9 21.0 0.00G 999.9 000000 722324 03071 20131209 33.1 24 29.6 24 9999.9 0 919.2 24 6.2 24 5.9 24 14.0 15.9 48.6 27.0 0.00G 999.9 101000 722324 03071 20131210 30.8 24 24.5 24 9999.9 0 928.3 24 4.9 24 4.4 24 9.9 999.9 48.9 23.4 0.00G 999.9 100000 722324 03071 20131211 38.8 24 23.4 24 9999.9 0 926.6 24 10.0 24 6.8 24 14.0 19.0 45.1 32.0 0.00G 999.9 000000 722324 03071 20131212 35.5 24 24.7 24 9999.9 0 932.5 24 10.0 24 2.2 24 7.0 999.9 46.0 28.0 0.00G 999.9 000000 722324 03071 20131213 46.3 24 32.8 24 9999.9 0 919.2 24 10.0 24 8.2 24 21.0 29.9 65.3 36.5 0.00G 999.9 010000 722324 03071 20131214 47.0 24 28.5 24 9999.9 0 920.1 24 10.0 24 10.2 24 15.9 22.0 60.6 35.2 0.00G 999.9 000000 722324 03071 20131215 43.2 24 25.5 24 9999.9 0 927.0 24 10.0 24 5.3 24 13.0 17.1 60.1 31.1 0.00G 999.9 000000 722324 03071 20131216 49.0 24 25.3 24 9999.9 0 923.8 24 10.0 24 5.5 24 9.9 14.0 68.2 32.9 0.00G 999.9 000000 722324 03071 20131217 49.4 24 27.5 24 9999.9 0 924.6 24 10.0 24 2.4 24 7.0 999.9 68.5 33.3 0.00G 999.9 000000 722324 03071 20131218 50.4 24 31.0 24 9999.9 0 923.1 24 10.0 24 4.2 24 13.0 17.1 69.4* 33.8* 0.00G 999.9 000000 722324 03071 20131219 58.2 24 40.8 24 9999.9 0 912.9 24 10.0 24 10.1 24 13.0 19.0 76.1 48.7 0.00G 999.9 000000 722324 03071 20131220 51.9 24 45.2 24 9999.9 0 910.4 24 7.3 24 7.1 24 15.0 21.0 67.1 37.6 0.00G 999.9 010000 722324 03071 20131221 45.6 24 38.7 24 9999.9 0 906.7 24 7.7 24 11.8 24 27.0 34.0 56.3 37.4 0.09G 999.9 011000 722324 03071 20131222 43.4 24 31.6 24 9999.9 0 916.7 24 10.0 24 9.9 24 19.0 24.1 53.2 34.0 0.08G 999.9 000000 722324 03071 20131223 41.8 24 30.4 24 9999.9 0 927.8 24 10.0 24 3.0 24 9.9 15.9 56.7 32.0 0.00G 999.9 000000 722324 03071 20131224 43.6 24 32.4 24 9999.9 0 928.3 24 9.5 24 5.7 24 18.1 19.0 59.2 32.0 0.00G 999.9 000000 722324 03071 20131225 43.8 24 32.9 24 9999.9 0 924.8 24 10.0 24 10.4 24 18.1 26.0 53.6 36.9 0.00G 999.9 000000 722324 03071 20131226 38.6 24 30.5 24 9999.9 0 929.6 24 10.0 24 3.4 24 7.0 999.9 51.3 30.0 0.00G 999.9 000000 722324 03071 20131227 39.8 24 27.5 24 9999.9 0 928.2 24 10.0 24 0.8 24 5.1 999.9 53.2 29.7 0.00G 999.9 000000 722324 03071 20131228 47.3 24 37.5 24 9999.9 0 923.0 24 10.0 24 6.8 24 15.9 21.0 59.9 41.4 0.00G 999.9 000000 722324 03071 20131229 41.1 24 35.1 24 9999.9 0 917.7 24 9.3 24 10.4 24 18.1 25.1 56.7 31.6 0.00G 999.9 000000 722324 03071 20131230 36.6 24 21.8 24 9999.9 0 924.6 23 10.0 24 5.5 24 11.1 17.1 59.7 27.0 0.00G 999.9 000000 722324 03071 20131231 41.7 24 26.9 24 9999.9 0 927.5 22 10.0 24 5.5 24 14.0 21.0 58.1 29.1 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/1937/0000755000175000017500000000000014302004506015103 5ustar nileshnileshfluids-1.0.22/tests/gsod/1937/724050-13743.op0000644000175000017500000014327214302004506016674 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19370101 44.1 11 27.6 11 9999.9 0 9999.9 0 6.4 11 4.2 11 7.0 999.9 49.3* 37.4* 0.00I 999.9 000000 724050 13743 19370102 39.7 11 37.2 11 9999.9 0 9999.9 0 1.6 11 6.6 11 9.9 999.9 42.4* 37.4* 99.99 999.9 110000 724050 13743 19370103 47.6 11 44.6 11 9999.9 0 9999.9 0 5.7 11 6.6 11 9.9 999.9 54.3* 42.4* 99.99 999.9 111000 724050 13743 19370104 38.7 12 20.2 12 9999.9 0 9999.9 0 10.7 12 8.3 12 16.9 999.9 44.4* 32.4* 0.00I 999.9 000000 724050 13743 19370105 33.8 11 26.0 11 9999.9 0 9999.9 0 2.9 11 2.6 11 6.0 999.9 38.3* 25.3* 0.00I 999.9 000000 724050 13743 19370106 37.3 11 25.1 11 9999.9 0 9999.9 0 5.5 11 6.1 11 9.9 999.9 41.4* 31.3* 0.00I 999.9 000000 724050 13743 19370107 41.8 11 39.6 11 9999.9 0 9999.9 0 2.0 11 3.0 11 7.0 999.9 46.4* 36.3* 99.99 999.9 110000 724050 13743 19370108 56.9 11 52.0 11 9999.9 0 9999.9 0 3.6 11 7.2 11 12.0 999.9 69.3* 45.3* 0.00I 999.9 100000 724050 13743 19370109 67.2 11 56.3 11 9999.9 0 9999.9 0 9.2 11 11.9 11 16.9 999.9 75.4* 56.3* 0.00I 999.9 000000 724050 13743 19370110 45.0 11 41.4 11 9999.9 0 9999.9 0 2.6 11 9.9 11 14.0 999.9 51.3* 40.3* 99.99 999.9 110000 724050 13743 19370111 37.8 11 32.6 11 9999.9 0 9999.9 0 3.3 11 4.6 11 7.0 999.9 39.4* 36.3* 0.00I 999.9 000000 724050 13743 19370112 47.3 11 37.2 11 9999.9 0 9999.9 0 6.2 11 5.4 11 9.9 999.9 54.3* 40.3* 0.00I 999.9 100000 724050 13743 19370113 44.0 11 37.0 11 9999.9 0 9999.9 0 2.3 11 3.5 11 5.1 999.9 48.4* 40.3* 0.00I 999.9 100000 724050 13743 19370114 57.6 11 54.4 11 9999.9 0 9999.9 0 4.3 11 10.9 11 13.0 999.9 66.4* 48.4* 0.00I 999.9 100000 724050 13743 19370115 59.5 11 51.9 11 9999.9 0 9999.9 0 8.7 11 11.1 11 16.9 999.9 69.3* 54.3* 99.99 999.9 010000 724050 13743 19370116 42.0 11 26.1 11 9999.9 0 9999.9 0 9.9 11 10.2 11 14.0 999.9 43.3* 39.4* 0.00I 999.9 000000 724050 13743 19370117 35.9 11 33.7 11 9999.9 0 9999.9 0 2.5 11 3.4 11 6.0 999.9 38.3* 32.4* 99.99 999.9 110000 724050 13743 19370118 56.4 11 52.6 11 9999.9 0 9999.9 0 5.7 11 9.9 11 15.9 999.9 59.4* 52.3* 99.99 999.9 111000 724050 13743 19370119 43.2 11 37.9 11 9999.9 0 9999.9 0 2.6 11 6.4 11 8.9 999.9 48.4* 40.3* 99.99 999.9 111000 724050 13743 19370120 34.8 11 34.2 11 9999.9 0 9999.9 0 1.2 11 8.8 11 14.0 999.9 38.3* 33.4* 99.99 999.9 110000 724050 13743 19370121 46.3 11 43.3 11 9999.9 0 9999.9 0 6.3 11 9.1 11 15.9 999.9 51.3* 40.3* 0.00I 999.9 100000 724050 13743 19370122 63.2 11 54.0 11 9999.9 0 9999.9 0 7.0 11 7.1 11 13.0 999.9 67.3* 60.3* 99.99 999.9 010000 724050 13743 19370123 39.7 11 36.3 11 9999.9 0 9999.9 0 2.5 11 8.7 11 9.9 999.9 43.3* 36.3* 99.99 999.9 110000 724050 13743 19370124 36.7 11 34.4 11 9999.9 0 9999.9 0 1.4 11 4.7 11 8.9 999.9 38.3* 34.3* 99.99 999.9 110000 724050 13743 19370125 53.4 10 48.7 10 9999.9 0 9999.9 0 3.8 10 8.0 10 9.9 999.9 60.3* 47.3* 99.99 999.9 110000 724050 13743 19370126 44.4 11 24.3 11 9999.9 0 9999.9 0 7.6 11 9.8 11 13.0 999.9 45.3* 42.4* 0.00I 999.9 000000 724050 13743 19370127 34.8 11 19.9 11 9999.9 0 9999.9 0 6.5 11 9.0 11 15.9 999.9 39.4* 30.4* 0.00I 999.9 000000 724050 13743 19370128 36.3 10 30.6 10 9999.9 0 9999.9 0 4.1 10 9.5 10 13.0 999.9 39.4* 32.4* 99.99 999.9 110000 724050 13743 19370129 42.3 11 36.1 11 9999.9 0 9999.9 0 6.2 11 10.6 11 14.0 999.9 47.3* 37.4* 99.99 999.9 110000 724050 13743 19370130 40.7 11 32.4 11 9999.9 0 9999.9 0 3.6 11 7.5 11 12.0 999.9 47.3* 32.4* 99.99 999.9 110000 724050 13743 19370131 40.3 11 39.2 11 9999.9 0 9999.9 0 1.6 11 3.3 11 7.0 999.9 43.3* 38.3* 99.99 999.9 110000 724050 13743 19370201 44.9 10 26.4 10 9999.9 0 9999.9 0 7.6 10 7.9 10 12.0 999.9 49.3* 40.3* 0.00I 999.9 000000 724050 13743 19370202 29.6 11 13.8 11 9999.9 0 9999.9 0 9.0 11 18.4 10 26.0 999.9 33.4* 27.3* 0.00I 999.9 000000 724050 13743 19370203 30.3 11 14.1 11 9999.9 0 9999.9 0 14.0 11 12.8 11 18.1 999.9 36.3* 24.4* 0.00I 999.9 000000 724050 13743 19370204 29.9 11 17.5 11 9999.9 0 9999.9 0 2.9 11 5.4 11 9.9 999.9 35.4* 22.5* 99.99 999.9 111000 724050 13743 19370205 31.7 11 21.0 11 9999.9 0 9999.9 0 3.9 11 17.7 11 26.0 999.9 35.4* 29.3* 99.99 999.9 101000 724050 13743 19370206 33.5 11 20.9 11 9999.9 0 9999.9 0 4.3 11 6.3 11 9.9 999.9 41.4* 22.5* 0.00I 999.9 000000 724050 13743 19370207 41.5 11 29.2 11 9999.9 0 9999.9 0 2.0 11 4.4 5 8.9 999.9 48.4* 32.4* 99.99 999.9 011000 724050 13743 19370208 43.1 10 40.8 10 9999.9 0 9999.9 0 1.2 10 4.2 10 8.9 999.9 48.4* 37.4* 99.99 999.9 110000 724050 13743 19370209 57.1 11 52.9 11 9999.9 0 9999.9 0 3.7 11 5.1 11 13.0 999.9 62.4* 54.3* 99.99 999.9 110000 724050 13743 19370210 36.1 10 23.0 10 9999.9 0 9999.9 0 4.6 10 11.1 10 14.0 999.9 39.4* 32.4* 0.00I 999.9 000000 724050 13743 19370211 28.6 11 8.5 11 9999.9 0 9999.9 0 9.9 11 10.6 11 16.9 999.9 36.3* 21.4* 0.00I 999.9 000000 724050 13743 19370212 43.9 11 21.2 11 9999.9 0 9999.9 0 7.8 11 11.1 11 13.0 999.9 56.3* 31.3* 0.00I 999.9 000000 724050 13743 19370213 49.2 10 27.8 10 9999.9 0 9999.9 0 6.1 10 9.3 10 14.0 999.9 63.3* 37.4* 0.00I 999.9 000000 724050 13743 19370214 46.3 11 32.7 11 9999.9 0 9999.9 0 8.9 11 13.7 11 21.0 999.9 49.3* 41.4* 99.99 999.9 101000 724050 13743 19370215 42.8 11 29.3 11 9999.9 0 9999.9 0 9.2 11 8.1 11 16.9 999.9 52.3* 29.3* 0.00I 999.9 000000 724050 13743 19370216 35.5 10 32.8 10 9999.9 0 9999.9 0 1.1 10 13.0 10 16.9 999.9 38.3* 33.4* 99.99 999.9 101000 724050 13743 19370217 32.7 11 17.8 11 9999.9 0 9999.9 0 12.9 11 10.2 11 13.0 999.9 40.3* 25.3* 0.00I 999.9 000000 724050 13743 19370218 34.7 11 24.3 11 9999.9 0 9999.9 0 2.0 11 3.7 11 7.0 999.9 39.4* 26.4* 0.00I 999.9 000000 724050 13743 19370219 44.4 11 33.3 11 9999.9 0 9999.9 0 4.1 11 2.6 11 8.9 999.9 52.3* 34.3* 0.00I 999.9 000000 724050 13743 19370220 39.0 11 32.6 11 9999.9 0 9999.9 0 2.4 11 3.2 11 6.0 999.9 45.3* 30.4* 99.99 999.9 111000 724050 13743 19370221 50.7 11 48.7 11 9999.9 0 9999.9 0 3.7 11 9.9 11 14.0 999.9 58.3* 41.4* 99.99 999.9 110000 724050 13743 19370222 41.5 9 22.4 9 9999.9 0 9999.9 0 14.9 9 14.5 9 22.0 999.9 45.3* 37.4* 0.00I 999.9 000000 724050 13743 19370223 40.7 11 26.6 11 9999.9 0 9999.9 0 7.1 11 4.9 11 8.9 999.9 49.3* 31.3* 0.00I 999.9 000000 724050 13743 19370224 33.7 11 29.3 11 9999.9 0 9999.9 0 4.7 11 6.9 11 9.9 999.9 36.3* 31.3* 99.99 999.9 101000 724050 13743 19370225 31.5 11 22.1 11 9999.9 0 9999.9 0 7.0 11 12.8 11 22.0 999.9 34.3* 28.4* 99.99 999.9 001000 724050 13743 19370226 31.6 11 15.2 11 9999.9 0 9999.9 0 8.3 11 17.9 11 22.9 999.9 36.3* 24.4* 0.00I 999.9 000000 724050 13743 19370227 36.3 11 22.0 11 9999.9 0 9999.9 0 7.7 11 14.1 11 16.9 999.9 40.3* 31.3* 0.00I 999.9 000000 724050 13743 19370228 26.5 10 10.7 10 9999.9 0 9999.9 0 8.0 10 11.6 10 15.9 999.9 30.4* 24.4* 0.00I 999.9 000000 724050 13743 19370301 37.5 11 16.7 11 9999.9 0 9999.9 0 6.2 11 7.4 11 14.0 999.9 47.3* 24.4* 0.00I 999.9 000000 724050 13743 19370302 42.6 11 23.2 11 9999.9 0 9999.9 0 9.6 11 10.3 11 13.0 999.9 51.3* 33.4* 0.00I 999.9 000000 724050 13743 19370303 47.6 11 29.5 11 9999.9 0 9999.9 0 5.8 11 7.5 11 12.0 999.9 56.3* 37.4* 0.00I 999.9 000000 724050 13743 19370304 53.6 10 35.6 10 9999.9 0 9999.9 0 5.1 10 8.8 10 9.9 999.9 68.4* 39.4* 0.00I 999.9 000000 724050 13743 19370305 48.7 11 30.2 11 9999.9 0 9999.9 0 8.0 11 15.0 11 23.9 999.9 52.3* 43.3* 0.00I 999.9 000000 724050 13743 19370306 55.9 11 34.5 11 9999.9 0 9999.9 0 7.9 11 13.6 11 29.9 999.9 68.4* 37.4* 0.00I 999.9 000000 724050 13743 19370307 44.8 10 24.9 10 9999.9 0 9999.9 0 8.9 10 5.8 10 9.9 999.9 54.3* 35.4* 0.00I 999.9 000000 724050 13743 19370308 45.9 12 40.8 12 9999.9 0 9999.9 0 2.3 12 4.1 12 7.0 999.9 52.3* 38.3* 99.99 999.9 111000 724050 13743 19370309 41.9 10 23.1 10 9999.9 0 9999.9 0 9.9 10 15.0 10 20.0 999.9 43.3* 40.3* 0.00I 999.9 000000 724050 13743 19370310 33.2 11 11.0 11 9999.9 0 9999.9 0 10.1 11 8.3 11 13.0 999.9 42.4* 24.4* 0.00I 999.9 000000 724050 13743 19370311 34.4 11 26.4 11 9999.9 0 9999.9 0 4.1 11 6.1 11 8.9 999.9 40.3* 28.4* 0.00I 999.9 100000 724050 13743 19370312 37.7 8 26.9 8 9999.9 0 9999.9 0 2.7 8 5.0 8 8.9 999.9 46.4* 31.3* 0.00I 999.9 000000 724050 13743 19370313 36.4 9 34.1 9 9999.9 0 9999.9 0 1.7 9 3.6 9 6.0 999.9 38.3* 34.3* 99.99 999.9 111000 724050 13743 19370314 32.1 10 30.3 10 9999.9 0 9999.9 0 1.7 10 8.3 10 9.9 999.9 32.4* 30.4* 99.99 999.9 101000 724050 13743 19370315 32.9 9 31.1 9 9999.9 0 9999.9 0 0.9 9 9.0 9 11.1 999.9 35.4* 30.4* 99.99 999.9 101000 724050 13743 19370316 33.2 10 21.5 10 9999.9 0 9999.9 0 13.2 10 21.8 10 26.0 999.9 36.3* 30.4* 0.00I 999.9 000000 724050 13743 19370317 39.5 8 22.6 8 9999.9 0 9999.9 0 11.4 8 17.7 8 22.0 999.9 46.4* 34.3* 0.00I 999.9 000000 724050 13743 19370318 43.8 11 31.3 11 9999.9 0 9999.9 0 4.5 11 5.2 11 8.9 999.9 49.3* 33.4* 0.00I 999.9 000000 724050 13743 19370319 50.8 11 34.2 10 9999.9 0 9999.9 0 8.4 11 10.8 11 21.0 999.9 58.3* 34.3* 0.00I 999.9 000000 724050 13743 19370320 55.3 11 41.8 11 9999.9 0 9999.9 0 6.9 11 5.7 11 13.0 999.9 64.4* 43.3* 0.00I 999.9 000000 724050 13743 19370321 50.9 11 36.4 11 9999.9 0 9999.9 0 9.9 11 14.6 11 21.0 999.9 53.4* 49.3* 0.00I 999.9 000000 724050 13743 19370322 46.8 10 31.7 10 9999.9 0 9999.9 0 7.1 10 8.6 10 13.0 999.9 55.4* 34.3* 0.00I 999.9 000000 724050 13743 19370323 51.0 9 30.4 9 9999.9 0 9999.9 0 5.2 9 5.0 9 9.9 999.9 58.3* 38.3* 0.00I 999.9 000000 724050 13743 19370324 50.6 11 37.6 11 9999.9 0 9999.9 0 3.6 11 6.4 11 8.9 999.9 58.3* 38.3* 0.00I 999.9 000000 724050 13743 19370325 61.7 11 45.5 11 9999.9 0 9999.9 0 5.3 11 10.2 11 23.9 999.9 69.3* 52.3* 99.99 999.9 010000 724050 13743 19370326 36.4 10 19.5 10 9999.9 0 9999.9 0 9.1 10 17.6 10 28.0 999.9 40.3* 32.4* 0.00I 999.9 000000 724050 13743 19370327 38.5 10 20.3 10 9999.9 0 9999.9 0 8.9 10 13.7 10 16.9 999.9 47.3* 28.4* 0.00I 999.9 000000 724050 13743 19370328 40.1 11 17.1 11 9999.9 0 9999.9 0 13.1 11 17.9 11 22.9 999.9 45.3* 31.3* 0.00I 999.9 000000 724050 13743 19370329 46.1 10 19.9 10 9999.9 0 9999.9 0 14.3 10 17.2 10 26.0 999.9 55.4* 34.3* 0.00I 999.9 000000 724050 13743 19370330 48.3 10 20.5 10 9999.9 0 9999.9 0 9.6 10 6.0 10 9.9 999.9 58.3* 35.4* 0.00I 999.9 000000 724050 13743 19370331 52.4 10 32.1 10 9999.9 0 9999.9 0 6.3 10 5.7 10 9.9 999.9 60.3* 41.4* 0.00I 999.9 000000 724050 13743 19370401 53.9 11 29.4 11 9999.9 0 9999.9 0 7.4 11 4.4 11 8.9 999.9 63.3* 38.3* 0.00I 999.9 000000 724050 13743 19370402 58.9 11 36.0 11 9999.9 0 9999.9 0 9.1 11 12.8 11 22.0 999.9 74.3* 47.3* 0.00I 999.9 000000 724050 13743 19370403 52.8 11 25.4 11 9999.9 0 9999.9 0 9.5 11 7.7 11 14.0 999.9 57.4* 46.4* 0.00I 999.9 000000 724050 13743 19370404 48.9 10 37.6 9 9999.9 0 9999.9 0 9.5 10 7.8 10 9.9 999.9 52.3* 41.4* 0.00I 999.9 000000 724050 13743 19370405 56.9 10 52.6 10 9999.9 0 9999.9 0 3.9 10 11.7 10 15.9 999.9 60.3* 53.4* 99.99 999.9 011000 724050 13743 19370406 66.0 11 53.0 11 9999.9 0 9999.9 0 10.2 11 12.1 11 15.9 999.9 68.4* 61.3* 0.00I 999.9 000000 724050 13743 19370407 50.7 10 31.9 10 9999.9 0 9999.9 0 8.9 10 11.7 10 16.9 999.9 59.4* 44.4* 0.00I 999.9 000000 724050 13743 19370408 55.0 11 42.4 11 9999.9 0 9999.9 0 4.8 11 6.4 11 11.1 999.9 60.3* 46.4* 99.99 999.9 001000 724050 13743 19370409 49.9 10 46.8 10 9999.9 0 9999.9 0 2.1 10 6.4 10 11.1 999.9 52.3* 48.4* 99.99 999.9 110000 724050 13743 19370410 44.3 11 25.0 11 9999.9 0 9999.9 0 11.5 11 15.0 11 19.0 999.9 51.3* 39.4* 0.00I 999.9 000000 724050 13743 19370411 44.7 9 24.4 9 9999.9 0 9999.9 0 9.8 9 16.8 9 23.9 999.9 48.4* 35.4* 99.99 999.9 010010 724050 13743 19370412 50.3 10 27.3 10 9999.9 0 9999.9 0 14.6 10 14.8 10 16.9 999.9 60.3* 39.4* 0.00I 999.9 000000 724050 13743 19370413 58.0 10 30.6 10 9999.9 0 9999.9 0 7.9 10 9.5 10 15.9 999.9 68.4* 38.3* 0.00I 999.9 000000 724050 13743 19370414 66.1 11 50.5 11 9999.9 0 9999.9 0 7.9 11 11.1 11 22.9 999.9 71.2* 57.4* 99.99 999.9 011000 724050 13743 19370415 64.4 11 50.1 11 9999.9 0 9999.9 0 7.9 11 15.1 11 20.0 999.9 69.3* 60.3* 99.99 999.9 011000 724050 13743 19370416 50.5 10 33.6 10 9999.9 0 9999.9 0 13.1 10 17.3 10 22.0 999.9 54.3* 45.3* 0.00I 999.9 000000 724050 13743 19370417 58.8 11 30.7 11 9999.9 0 9999.9 0 11.4 11 3.1 11 4.1 999.9 68.4* 43.3* 0.00I 999.9 000000 724050 13743 19370418 75.9 11 45.7 11 9999.9 0 9999.9 0 7.5 11 8.4 11 15.0 999.9 95.4* 52.3* 0.00I 999.9 000000 724050 13743 19370419 67.4 11 35.9 11 9999.9 0 9999.9 0 11.7 11 10.0 11 13.0 999.9 77.4* 57.4* 0.00I 999.9 000000 724050 13743 19370420 71.4 11 37.8 10 9999.9 0 9999.9 0 9.7 11 7.5 11 13.0 999.9 81.3* 54.3* 0.00I 999.9 000000 724050 13743 19370421 55.2 11 53.7 11 9999.9 0 9999.9 0 1.2 11 7.9 11 13.0 999.9 57.4* 53.4* 99.99 999.9 110000 724050 13743 19370422 67.1 11 47.8 11 9999.9 0 9999.9 0 8.7 11 7.5 11 12.0 999.9 78.3* 48.4* 0.00I 999.9 000000 724050 13743 19370423 59.4 9 41.1 9 9999.9 0 9999.9 0 7.4 9 6.9 9 9.9 999.9 68.4* 52.3* 0.00I 999.9 000000 724050 13743 19370424 49.7 10 40.2 9 9999.9 0 9999.9 0 8.9 10 8.4 10 12.0 999.9 52.3* 46.4* 0.00I 999.9 000000 724050 13743 19370425 47.4 9 45.5 9 9999.9 0 9999.9 0 2.4 9 10.3 9 14.0 999.9 50.4* 45.3* 99.99 999.9 110000 724050 13743 19370426 49.0 9 47.5 9 9999.9 0 9999.9 0 1.4 9 16.6 9 22.0 999.9 50.4* 48.4* 99.99 999.9 110000 724050 13743 19370427 58.3 11 52.3 11 9999.9 0 9999.9 0 5.2 11 3.9 11 8.9 999.9 65.3* 47.3* 0.00I 999.9 100000 724050 13743 19370428 57.4 11 41.9 11 9999.9 0 9999.9 0 10.3 11 5.7 11 9.9 999.9 63.3* 46.4* 0.00I 999.9 000000 724050 13743 19370429 62.4 10 43.5 10 9999.9 0 9999.9 0 4.9 10 5.5 10 12.0 999.9 70.3* 48.4* 0.00I 999.9 000000 724050 13743 19370430 60.3 11 38.3 11 9999.9 0 9999.9 0 8.2 11 7.8 11 9.9 999.9 66.4* 50.4* 0.00I 999.9 000000 724050 13743 19370501 62.6 11 32.6 11 9999.9 0 9999.9 0 11.7 11 3.4 11 6.0 999.9 73.4* 44.4* 0.00I 999.9 000000 724050 13743 19370502 67.8 10 43.8 9 9999.9 0 9999.9 0 7.9 10 4.1 10 8.9 999.9 78.3* 49.3* 0.00I 999.9 000000 724050 13743 19370503 65.0 9 34.6 9 9999.9 0 9999.9 0 13.5 9 5.7 9 8.9 999.9 73.4* 52.3* 0.00I 999.9 000000 724050 13743 19370504 68.8 10 41.2 10 9999.9 0 9999.9 0 7.8 10 5.8 10 9.9 999.9 78.3* 52.3* 0.00I 999.9 000000 724050 13743 19370505 72.0 11 51.3 11 9999.9 0 9999.9 0 8.8 11 8.5 11 12.0 999.9 82.4* 55.4* 0.00I 999.9 000000 724050 13743 19370506 68.8 10 56.5 10 9999.9 0 9999.9 0 11.7 10 8.8 10 14.0 999.9 74.3* 61.3* 0.00I 999.9 000000 724050 13743 19370507 65.4 11 41.2 11 9999.9 0 9999.9 0 10.2 11 6.4 11 9.9 999.9 76.3* 54.3* 0.00I 999.9 000000 724050 13743 19370508 62.3 11 53.8 11 9999.9 0 9999.9 0 5.7 11 5.9 11 15.0 999.9 69.3* 55.4* 99.99 999.9 010000 724050 13743 19370509 65.0 11 53.6 11 9999.9 0 9999.9 0 5.2 11 6.1 11 8.9 999.9 75.4* 55.4* 0.00I 999.9 100000 724050 13743 19370510 61.7 11 43.4 11 9999.9 0 9999.9 0 9.7 11 11.5 11 15.0 999.9 69.3* 55.4* 0.00I 999.9 000000 724050 13743 19370511 64.3 10 37.2 10 9999.9 0 9999.9 0 9.3 10 4.1 10 7.0 999.9 72.3* 52.3* 0.00I 999.9 000000 724050 13743 19370512 71.2 11 52.5 11 9999.9 0 9999.9 0 7.9 11 12.5 11 15.9 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19370513 78.5 10 62.7 10 9999.9 0 9999.9 0 9.5 10 10.8 10 19.0 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19370514 62.0 11 59.6 11 9999.9 0 9999.9 0 3.9 11 6.6 11 9.9 999.9 64.4* 60.3* 99.99 999.9 010000 724050 13743 19370515 63.6 11 48.9 11 9999.9 0 9999.9 0 11.6 11 12.0 11 16.9 999.9 68.4* 56.3* 0.00I 999.9 000000 724050 13743 19370516 66.1 11 47.9 11 9999.9 0 9999.9 0 5.1 11 6.7 11 13.0 999.9 74.3* 52.3* 0.00I 999.9 000000 724050 13743 19370517 71.9 11 43.8 11 9999.9 0 9999.9 0 12.8 11 15.9 11 22.0 999.9 77.4* 60.3* 0.00I 999.9 000000 724050 13743 19370518 67.8 11 39.2 11 9999.9 0 9999.9 0 13.1 11 7.3 11 13.0 999.9 71.2* 60.3* 0.00I 999.9 000000 724050 13743 19370519 65.1 11 48.6 11 9999.9 0 9999.9 0 9.8 11 9.3 11 12.0 999.9 72.3* 56.3* 0.00I 999.9 000000 724050 13743 19370520 61.7 11 40.6 11 9999.9 0 9999.9 0 11.9 11 13.7 11 22.0 999.9 70.3* 51.3* 0.00I 999.9 000000 724050 13743 19370521 72.2 11 46.1 11 9999.9 0 9999.9 0 9.6 11 7.7 11 14.0 999.9 82.4* 58.3* 0.00I 999.9 000000 724050 13743 19370522 80.5 11 61.6 11 9999.9 0 9999.9 0 8.3 11 7.2 11 13.0 999.9 94.3* 65.3* 99.99 999.9 010010 724050 13743 19370523 75.6 11 64.6 11 9999.9 0 9999.9 0 9.6 11 8.2 11 16.9 999.9 82.4* 67.3* 0.00I 999.9 000000 724050 13743 19370524 74.3 11 52.6 11 9999.9 0 9999.9 0 10.0 11 7.3 11 13.0 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19370525 76.7 11 58.0 11 9999.9 0 9999.9 0 7.0 11 4.0 11 7.0 999.9 84.4* 63.3* 0.00I 999.9 000000 724050 13743 19370526 77.2 11 63.9 11 9999.9 0 9999.9 0 7.7 11 7.4 11 9.9 999.9 84.4* 68.4* 99.99 999.9 010000 724050 13743 19370527 83.7 11 64.1 11 9999.9 0 9999.9 0 10.3 11 6.9 11 13.0 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19370528 76.1 11 66.3 11 9999.9 0 9999.9 0 6.1 11 6.0 11 26.0 999.9 84.4* 68.4* 99.99 999.9 010010 724050 13743 19370529 75.5 10 62.6 10 9999.9 0 9999.9 0 3.0 10 5.2 10 9.9 999.9 83.3* 65.3* 0.00I 999.9 100000 724050 13743 19370530 78.7 10 62.7 10 9999.9 0 9999.9 0 5.4 10 4.0 10 8.9 999.9 86.4* 65.3* 0.00I 999.9 000000 724050 13743 19370531 80.2 10 64.4 10 9999.9 0 9999.9 0 10.9 10 6.8 10 8.9 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19370601 83.0 11 70.3 11 9999.9 0 9999.9 0 7.0 11 5.5 11 8.9 999.9 90.3* 70.3* 0.00I 999.9 000000 724050 13743 19370602 86.1 11 66.0 11 9999.9 0 9999.9 0 8.9 11 6.7 11 11.1 999.9 91.2* 76.3* 0.00I 999.9 000000 724050 13743 19370603 77.8 4 70.0 4 9999.9 0 9999.9 0 18.6 4 7.4 4 9.9 999.9 82.4* 71.2* 0.00I 999.9 000000 724050 13743 19370604 72.3 6 65.3 6 9999.9 0 9999.9 0 9.9 6 3.3 6 9.9 999.9 76.3* 68.4* 0.00I 999.9 000000 724050 13743 19370605 88.9 5 71.3 5 9999.9 0 9999.9 0 9.9 5 6.2 5 7.0 999.9 90.3* 86.4* 0.00I 999.9 000000 724050 13743 19370606 86.3 11 69.2 11 9999.9 0 9999.9 0 10.4 11 8.7 11 13.0 999.9 92.3* 74.3* 0.00I 999.9 000000 724050 13743 19370607 83.8 10 67.1 10 9999.9 0 9999.9 0 11.4 10 9.1 10 15.9 999.9 89.2* 73.4* 0.00I 999.9 000000 724050 13743 19370608 79.9 11 61.9 11 9999.9 0 9999.9 0 6.3 11 4.1 11 7.0 999.9 85.3* 69.3* 0.00I 999.9 000000 724050 13743 19370609 81.4 11 65.2 11 9999.9 0 9999.9 0 8.9 11 9.8 11 13.0 999.9 87.3* 70.3* 0.00I 999.9 000000 724050 13743 19370610 83.1 8 68.2 8 9999.9 0 9999.9 0 8.8 8 9.6 8 14.0 999.9 88.3* 76.3* 99.99 999.9 010010 724050 13743 19370611 66.5 11 57.9 11 9999.9 0 9999.9 0 7.2 11 8.4 11 13.0 999.9 76.3* 60.3* 99.99 999.9 001000 724050 13743 19370612 76.8 10 56.7 10 9999.9 0 9999.9 0 7.8 10 4.1 10 7.0 999.9 82.4* 70.3* 0.00I 999.9 000000 724050 13743 19370613 77.3 11 63.4 10 9999.9 0 9999.9 0 8.6 11 8.3 11 9.9 999.9 85.3* 65.3* 0.00I 999.9 000000 724050 13743 19370614 85.2 11 68.9 11 9999.9 0 9999.9 0 8.0 11 13.7 11 22.0 999.9 92.3* 74.3* 0.00I 999.9 000000 724050 13743 19370615 78.5 10 66.9 10 9999.9 0 9999.9 0 9.2 10 4.8 10 8.9 999.9 85.3* 69.3* 0.00I 999.9 000000 724050 13743 19370616 79.0 10 67.6 10 9999.9 0 9999.9 0 6.3 10 7.2 10 12.0 999.9 84.4* 70.3* 0.00I 999.9 000000 724050 13743 19370617 76.0 10 70.1 10 9999.9 0 9999.9 0 4.6 10 3.7 10 7.0 999.9 83.3* 68.4* 99.99 999.9 111010 724050 13743 19370618 79.9 11 70.8 11 9999.9 0 9999.9 0 8.4 11 7.7 11 14.0 999.9 85.3* 72.3* 99.99 999.9 011010 724050 13743 19370619 79.2 10 65.6 10 9999.9 0 9999.9 0 5.9 10 5.5 10 8.9 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19370620 77.9 11 67.1 11 9999.9 0 9999.9 0 4.1 11 3.5 11 6.0 999.9 88.3* 69.3* 0.00I 999.9 100000 724050 13743 19370621 80.6 10 71.3 10 9999.9 0 9999.9 0 4.2 10 5.0 10 7.0 999.9 85.3* 73.4* 0.00I 999.9 000000 724050 13743 19370622 79.3 10 59.1 10 9999.9 0 9999.9 0 13.2 10 14.3 10 15.9 999.9 84.4* 69.3* 0.00I 999.9 000000 724050 13743 19370623 75.7 11 51.6 11 9999.9 0 9999.9 0 14.1 11 6.0 11 8.9 999.9 83.3* 64.4* 0.00I 999.9 000000 724050 13743 19370624 80.9 12 56.4 12 9999.9 0 9999.9 0 12.3 12 5.6 12 9.9 999.9 87.3* 68.4* 0.00I 999.9 000000 724050 13743 19370625 81.7 10 63.4 10 9999.9 0 9999.9 0 7.6 10 4.4 10 8.9 999.9 89.2* 66.4* 0.00I 999.9 000000 724050 13743 19370626 84.5 10 66.6 10 9999.9 0 9999.9 0 8.2 10 5.1 10 13.0 999.9 92.3* 70.3* 99.99 999.9 010010 724050 13743 19370627 73.9 11 68.9 11 9999.9 0 9999.9 0 3.3 11 3.1 11 5.1 999.9 77.4* 68.4* 99.99 999.9 110000 724050 13743 19370628 75.4 10 68.2 10 9999.9 0 9999.9 0 5.5 10 4.8 10 8.9 999.9 85.3* 68.4* 0.00I 999.9 100000 724050 13743 19370629 81.4 10 58.9 10 9999.9 0 9999.9 0 10.0 10 6.0 10 12.0 999.9 86.4* 69.3* 0.00I 999.9 000000 724050 13743 19370630 74.8 10 64.0 10 9999.9 0 9999.9 0 5.3 10 4.4 10 9.9 999.9 82.4* 68.4* 99.99 999.9 110000 724050 13743 19370701 71.0 10 53.1 10 9999.9 0 9999.9 0 10.6 10 7.7 10 12.0 999.9 77.4* 62.4* 0.00I 999.9 000000 724050 13743 19370702 72.0 11 57.2 11 9999.9 0 9999.9 0 9.4 11 6.3 11 12.0 999.9 78.3* 59.4* 0.00I 999.9 000000 724050 13743 19370703 81.0 10 58.6 10 9999.9 0 9999.9 0 9.3 10 11.2 10 16.9 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19370704 78.9 10 60.4 10 9999.9 0 9999.9 0 7.9 10 4.5 10 7.0 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19370705 73.7 11 70.4 11 9999.9 0 9999.9 0 3.3 11 5.3 11 8.9 999.9 77.4* 70.3* 99.99 999.9 110000 724050 13743 19370706 75.0 11 68.0 11 9999.9 0 9999.9 0 3.4 11 4.4 11 6.0 999.9 80.2* 69.3* 0.00I 999.9 100000 724050 13743 19370707 83.2 10 70.3 10 9999.9 0 9999.9 0 4.5 10 3.9 10 7.0 999.9 90.3* 70.3* 0.00I 999.9 100000 724050 13743 19370708 88.0 11 70.5 11 9999.9 0 9999.9 0 7.9 11 5.0 11 8.9 999.9 94.3* 73.4* 0.00I 999.9 100000 724050 13743 19370709 89.6 11 72.8 11 9999.9 0 9999.9 0 6.6 11 8.2 11 9.9 999.9 97.3* 80.2* 0.00I 999.9 000000 724050 13743 19370710 91.4 10 72.9 10 9999.9 0 9999.9 0 8.7 10 8.2 10 12.0 999.9 97.3* 82.4* 0.00I 999.9 000000 724050 13743 19370711 85.9 9 70.1 9 9999.9 0 9999.9 0 8.2 9 7.0 9 9.9 999.9 94.3* 78.3* 0.00I 999.9 000000 724050 13743 19370712 87.1 11 70.9 11 9999.9 0 9999.9 0 9.1 11 8.1 11 13.0 999.9 93.4* 74.3* 0.00I 999.9 000000 724050 13743 19370713 87.8 11 69.8 11 9999.9 0 9999.9 0 6.1 11 5.1 11 8.0 999.9 95.4* 78.3* 99.99 999.9 010000 724050 13743 19370714 75.8 11 70.2 11 9999.9 0 9999.9 0 5.2 11 5.9 11 8.0 999.9 76.3* 74.3* 99.99 999.9 110000 724050 13743 19370715 83.4 10 75.4 10 9999.9 0 9999.9 0 5.6 10 5.9 10 9.9 999.9 93.4* 74.3* 0.00I 999.9 100000 724050 13743 19370716 90.3 11 73.0 11 9999.9 0 9999.9 0 8.9 11 7.8 11 12.0 999.9 96.3* 77.4* 0.00I 999.9 000000 724050 13743 19370717 87.0 11 70.2 11 9999.9 0 9999.9 0 9.9 11 5.9 11 9.9 999.9 92.3* 77.4* 0.00I 999.9 000000 724050 13743 19370718 80.3 10 63.3 10 9999.9 0 9999.9 0 9.9 10 9.6 10 13.0 999.9 82.4* 74.3* 0.00I 999.9 000000 724050 13743 19370719 79.9 11 61.7 11 9999.9 0 9999.9 0 9.9 11 4.5 11 8.9 999.9 86.4* 67.3* 0.00I 999.9 000000 724050 13743 19370720 69.5 12 65.5 12 9999.9 0 9999.9 0 4.4 12 5.9 12 8.9 999.9 74.3* 66.4* 99.99 999.9 110000 724050 13743 19370721 77.5 11 63.0 11 9999.9 0 9999.9 0 7.4 11 8.2 11 9.9 999.9 86.4* 67.3* 0.00I 999.9 000000 724050 13743 19370722 79.1 10 61.5 10 9999.9 0 9999.9 0 7.8 10 4.2 10 7.0 999.9 86.4* 67.3* 0.00I 999.9 000000 724050 13743 19370723 83.6 11 66.9 11 9999.9 0 9999.9 0 7.1 11 4.8 11 8.9 999.9 89.2* 70.3* 0.00I 999.9 000000 724050 13743 19370724 85.6 12 70.2 12 1017.5 10 9999.9 0 10.4 12 4.9 12 9.9 999.9 92.3* 74.3* 99.99 999.9 110000 724050 13743 19370725 85.0 11 70.2 11 9999.9 0 9999.9 0 7.7 11 8.7 11 14.0 999.9 92.3* 73.4* 0.00I 999.9 000000 724050 13743 19370726 83.0 11 70.8 11 9999.9 0 9999.9 0 9.5 11 12.6 11 20.0 999.9 90.3* 75.4* 0.00I 999.9 000000 724050 13743 19370727 78.2 11 57.1 11 9999.9 0 9999.9 0 11.2 11 6.5 11 9.9 999.9 83.3* 68.4* 0.00I 999.9 000000 724050 13743 19370728 79.4 13 56.4 13 9999.9 0 9999.9 0 7.1 13 5.5 13 8.9 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19370729 81.8 13 63.6 13 9999.9 0 9999.9 0 7.0 13 5.8 13 8.9 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19370730 83.4 13 68.8 13 9999.9 0 9999.9 0 6.2 13 4.3 13 8.9 999.9 88.3* 71.2* 0.00I 999.9 000000 724050 13743 19370731 77.3 14 69.2 14 9999.9 0 9999.9 0 6.3 14 5.7 14 8.9 999.9 83.3* 70.3* 99.99 999.9 010000 724050 13743 19370801 80.3 13 66.4 13 9999.9 0 9999.9 0 6.6 13 4.7 12 8.9 999.9 89.2* 68.4* 0.00I 999.9 000000 724050 13743 19370802 82.8 13 66.3 13 9999.9 0 9999.9 0 6.0 13 4.2 13 8.0 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19370803 84.1 12 64.8 12 9999.9 0 9999.9 0 6.1 12 3.2 12 5.1 999.9 91.2* 69.3* 0.00I 999.9 100000 724050 13743 19370804 83.7 13 67.5 13 9999.9 0 9999.9 0 7.0 13 6.4 13 9.9 999.9 89.2* 71.2* 0.00I 999.9 000000 724050 13743 19370805 85.5 14 70.5 13 9999.9 0 9999.9 0 9.0 14 7.8 14 9.9 999.9 91.2* 74.3* 0.00I 999.9 000000 724050 13743 19370806 82.6 24 73.4 24 9999.9 0 9999.9 0 8.5 24 4.4 24 11.1 999.9 95.4* 74.3* 0.00I 999.9 000000 724050 13743 19370807 82.7 24 73.4 24 9999.9 0 9999.9 0 8.5 24 4.8 24 8.9 999.9 93.4* 76.3* 99.99 999.9 010010 724050 13743 19370808 79.2 24 70.1 24 9999.9 0 9999.9 0 5.7 24 3.7 24 8.0 999.9 92.3* 70.3* 99.99 999.9 111010 724050 13743 19370809 77.6 24 70.9 24 9999.9 0 9999.9 0 5.8 24 4.3 24 8.9 999.9 90.3* 69.3* 0.00I 999.9 100000 724050 13743 19370810 83.4 18 72.5 18 9999.9 0 9999.9 0 7.4 18 9.2 18 14.0 999.9 88.3* 75.4* 0.00I 999.9 000010 724050 13743 19370811 81.0 22 71.5 22 9999.9 0 9999.9 0 8.7 22 10.8 22 16.9 999.9 87.3* 76.3* 0.00I 999.9 000000 724050 13743 19370812 76.9 23 69.2 22 9999.9 0 9999.9 0 7.8 23 8.3 23 15.9 999.9 90.3* 67.3* 0.00I 999.9 000000 724050 13743 19370813 75.8 24 69.1 24 9999.9 0 9999.9 0 5.8 24 3.5 24 14.0 999.9 85.3* 68.4* 99.99 999.9 010000 724050 13743 19370814 76.4 24 61.5 24 9999.9 0 9999.9 0 8.0 23 4.6 24 9.9 999.9 88.3* 66.4* 0.00I 999.9 100000 724050 13743 19370815 76.0 24 61.9 24 9999.9 0 9999.9 0 7.4 24 3.4 24 8.9 999.9 89.2* 63.3* 0.00I 999.9 000000 724050 13743 19370816 75.8 24 61.3 23 9999.9 0 9999.9 0 6.8 24 3.7 24 8.9 999.9 90.3* 57.4* 0.00I 999.9 000000 724050 13743 19370817 77.6 24 64.0 24 9999.9 0 9999.9 0 6.6 24 5.8 24 12.0 999.9 92.3* 64.4* 0.00I 999.9 000000 724050 13743 19370818 82.8 24 70.9 24 9999.9 0 9999.9 0 5.8 24 5.6 24 9.9 999.9 96.3* 73.4* 0.00I 999.9 100000 724050 13743 19370819 84.0 24 72.7 24 9999.9 0 9999.9 0 6.3 24 6.5 24 14.0 999.9 96.3* 73.4* 0.00I 999.9 000000 724050 13743 19370820 85.5 23 72.3 23 9999.9 0 9999.9 0 8.6 23 6.2 23 9.9 999.9 97.3* 76.3* 0.00I 999.9 000000 724050 13743 19370821 84.7 24 74.1 24 9999.9 0 9999.9 0 8.9 24 5.6 24 11.1 999.9 95.4* 74.3* 0.00I 999.9 000000 724050 13743 19370822 78.6 24 72.5 24 9999.9 0 9999.9 0 6.4 24 4.6 24 8.9 999.9 88.3* 71.2* 99.99 999.9 010010 724050 13743 19370823 69.5 24 66.7 23 9999.9 0 9999.9 0 4.2 24 5.3 24 8.9 999.9 73.4* 65.3* 99.99 999.9 110000 724050 13743 19370824 67.6 24 64.4 24 9999.9 0 9999.9 0 2.1 24 6.1 24 8.9 999.9 70.3* 65.3* 99.99 999.9 110000 724050 13743 19370825 67.7 24 65.8 24 9999.9 0 9999.9 0 1.9 23 4.7 24 7.0 999.9 71.2* 64.4* 99.99 999.9 111000 724050 13743 19370826 75.8 24 72.9 24 9999.9 0 9999.9 0 4.7 24 4.1 24 6.0 999.9 86.4* 71.2* 99.99 999.9 111000 724050 13743 19370827 78.0 24 71.6 24 9999.9 0 9999.9 0 4.9 24 3.7 24 13.0 999.9 87.3* 70.3* 99.99 999.9 110010 724050 13743 19370828 79.4 24 67.9 24 9999.9 0 9999.9 0 8.5 24 3.9 24 7.0 999.9 90.3* 68.4* 0.00I 999.9 000000 724050 13743 19370829 77.3 24 70.6 24 9999.9 0 9999.9 0 5.2 24 4.0 24 8.9 999.9 85.3* 72.3* 99.99 999.9 110000 724050 13743 19370830 74.9 24 72.2 24 9999.9 0 9999.9 0 3.6 24 2.4 24 7.0 999.9 78.3* 72.3* 99.99 999.9 111000 724050 13743 19370831 78.9 23 72.3 23 9999.9 0 9999.9 0 6.8 23 3.5 23 9.9 999.9 91.2* 72.3* 99.99 999.9 110000 724050 13743 19370901 80.2 24 71.2 24 9999.9 0 9999.9 0 6.9 24 3.3 24 8.9 999.9 96.3* 69.3* 0.00I 999.9 000000 724050 13743 19370902 79.5 24 71.4 22 9999.9 0 9999.9 0 4.1 24 2.8 23 7.0 999.9 92.3* 71.2* 0.00I 999.9 100000 724050 13743 19370903 79.5 24 70.1 24 9999.9 0 9999.9 0 5.0 24 3.9 24 9.9 999.9 92.3* 70.3* 0.00I 999.9 100000 724050 13743 19370904 83.1 24 73.7 24 9999.9 0 9999.9 0 6.7 24 4.2 24 9.9 999.9 95.4* 73.4* 0.00I 999.9 000000 724050 13743 19370905 75.9 24 71.0 24 9999.9 0 9999.9 0 6.2 24 5.9 24 13.0 999.9 84.4* 68.4* 99.99 999.9 110010 724050 13743 19370906 64.8 24 59.2 24 9999.9 0 9999.9 0 5.0 24 8.2 24 12.0 999.9 68.4* 60.3* 99.99 999.9 111000 724050 13743 19370907 66.7 24 62.1 24 9999.9 0 9999.9 0 4.6 24 5.0 24 8.9 999.9 72.3* 63.3* 99.99 999.9 110000 724050 13743 19370908 69.7 24 60.7 24 9999.9 0 9999.9 0 5.0 24 3.8 24 8.0 999.9 80.2* 62.4* 0.00I 999.9 100000 724050 13743 19370909 70.5 24 59.1 24 9999.9 0 9999.9 0 5.9 24 3.3 24 8.9 999.9 85.3* 56.3* 0.00I 999.9 100000 724050 13743 19370910 71.1 24 60.0 24 9999.9 0 9999.9 0 6.4 24 2.5 24 8.9 999.9 83.3* 60.3* 0.00I 999.9 100000 724050 13743 19370911 68.7 24 62.7 24 9999.9 0 9999.9 0 6.2 24 4.4 24 13.0 999.9 77.4* 61.3* 99.99 999.9 010000 724050 13743 19370912 68.5 23 56.2 23 9999.9 0 9999.9 0 8.5 23 4.8 23 13.0 999.9 79.3* 56.3* 0.00I 999.9 000000 724050 13743 19370913 64.4 24 52.6 24 9999.9 0 9999.9 0 8.4 24 7.7 24 12.0 999.9 70.3* 58.3* 0.00I 999.9 000000 724050 13743 19370914 62.1 24 48.4 24 9999.9 0 9999.9 0 9.8 24 7.3 24 14.0 999.9 74.3* 53.4* 0.00I 999.9 000000 724050 13743 19370915 65.8 24 54.9 24 9999.9 0 9999.9 0 8.7 24 5.1 24 13.0 999.9 81.3* 52.3* 0.00I 999.9 100000 724050 13743 19370916 70.5 24 55.6 24 9999.9 0 9999.9 0 8.2 24 4.9 24 9.9 999.9 81.3* 63.3* 0.00I 999.9 000000 724050 13743 19370917 63.5 24 54.6 24 9999.9 0 9999.9 0 5.8 24 6.6 24 12.0 999.9 69.3* 59.4* 99.99 999.9 111000 724050 13743 19370918 57.3 24 43.8 24 9999.9 0 9999.9 0 10.3 24 4.7 24 8.9 999.9 70.3* 45.3* 0.00I 999.9 000000 724050 13743 19370919 61.1 24 50.8 24 9999.9 0 9999.9 0 7.8 24 8.9 24 16.9 999.9 73.4* 52.3* 99.99 999.9 010000 724050 13743 19370920 58.9 24 44.2 24 9999.9 0 9999.9 0 10.3 24 6.6 24 13.0 999.9 72.3* 45.3* 0.00I 999.9 000000 724050 13743 19370921 59.7 24 47.0 24 9999.9 0 9999.9 0 6.0 24 3.0 24 8.9 999.9 74.3* 46.4* 0.00I 999.9 000000 724050 13743 19370922 63.9 24 51.9 24 9999.9 0 9999.9 0 6.8 24 3.0 24 5.1 999.9 81.3* 50.4* 0.00I 999.9 000000 724050 13743 19370923 65.1 24 55.5 24 9999.9 0 9999.9 0 5.8 24 4.2 24 8.9 999.9 82.4* 50.4* 0.00I 999.9 000000 724050 13743 19370924 65.9 24 58.6 24 9999.9 0 9999.9 0 4.2 24 2.7 24 8.9 999.9 81.3* 54.3* 99.99 999.9 110000 724050 13743 19370925 68.4 24 57.8 24 9999.9 0 9999.9 0 4.8 24 2.8 24 8.9 999.9 87.3* 54.3* 0.00I 999.9 100000 724050 13743 19370926 63.7 24 54.0 24 9999.9 0 9999.9 0 7.0 24 6.4 24 16.9 999.9 70.3* 57.4* 0.00I 999.9 000000 724050 13743 19370927 55.3 24 44.6 24 9999.9 0 9999.9 0 6.7 24 7.8 24 9.9 999.9 60.3* 50.4* 99.99 999.9 011000 724050 13743 19370928 55.0 24 48.6 24 9999.9 0 9999.9 0 4.6 24 8.0 24 13.0 999.9 60.3* 51.3* 99.99 999.9 110000 724050 13743 19370929 59.6 24 50.4 24 9999.9 0 9999.9 0 6.4 24 4.2 24 8.9 999.9 74.3* 46.4* 0.00I 999.9 100000 724050 13743 19370930 60.3 24 51.9 24 9999.9 0 9999.9 0 3.7 24 2.9 24 8.9 999.9 76.3* 48.4* 0.00I 999.9 000000 724050 13743 19371001 59.7 23 51.8 23 9999.9 0 9999.9 0 4.6 23 3.7 23 9.9 999.9 76.3* 48.4* 0.00I 999.9 000000 724050 13743 19371002 63.4 24 55.1 23 9999.9 0 9999.9 0 4.1 24 2.4 24 7.0 999.9 83.3* 52.3* 0.00I 999.9 100000 724050 13743 19371003 62.6 24 57.9 24 9999.9 0 9999.9 0 5.7 24 6.9 24 9.9 999.9 65.3* 59.4* 99.99 999.9 010000 724050 13743 19371004 59.5 24 57.7 24 9999.9 0 9999.9 0 2.5 24 5.5 24 8.9 999.9 65.3* 55.4* 99.99 999.9 111000 724050 13743 19371005 67.2 24 65.0 24 9999.9 0 9999.9 0 3.0 24 3.7 24 9.9 999.9 74.3* 63.3* 99.99 999.9 110000 724050 13743 19371006 71.9 24 68.4 24 9999.9 0 9999.9 0 3.4 24 3.6 24 8.9 999.9 81.3* 66.4* 99.99 999.9 110000 724050 13743 19371007 70.2 24 61.1 24 9999.9 0 9999.9 0 5.4 24 8.0 24 15.9 999.9 76.3* 65.3* 0.00I 999.9 100000 724050 13743 19371008 54.4 23 36.8 22 9999.9 0 9999.9 0 9.9 23 11.5 23 22.0 999.9 63.3* 46.4* 0.00I 999.9 000000 724050 13743 19371009 47.2 24 40.4 24 9999.9 0 9999.9 0 5.7 24 4.4 24 8.9 999.9 53.4* 40.3* 99.99 999.9 110000 724050 13743 19371010 50.7 24 46.3 24 9999.9 0 9999.9 0 4.3 23 6.7 24 13.0 999.9 54.3* 48.4* 99.99 999.9 111000 724050 13743 19371011 52.8 24 42.8 24 9999.9 0 9999.9 0 6.3 24 6.3 24 9.9 999.9 65.3* 43.3* 99.99 999.9 010000 724050 13743 19371012 59.4 24 50.1 24 9999.9 0 9999.9 0 6.2 24 5.9 24 13.0 999.9 76.3* 46.4* 99.99 999.9 110000 724050 13743 19371013 53.4 24 47.3 24 9999.9 0 9999.9 0 6.2 24 6.0 24 9.9 999.9 64.4* 47.3* 99.99 999.9 111000 724050 13743 19371014 47.4 24 42.7 24 9999.9 0 9999.9 0 4.8 24 6.7 24 15.9 999.9 51.3* 44.4* 99.99 999.9 111000 724050 13743 19371015 42.9 24 31.2 24 9999.9 0 9999.9 0 8.2 24 8.6 24 15.9 999.9 53.4* 35.4* 0.00I 999.9 000000 724050 13743 19371016 44.8 24 33.3 24 9999.9 0 9999.9 0 7.8 24 3.8 24 8.9 999.9 60.3* 34.3* 0.00I 999.9 000000 724050 13743 19371017 45.4 24 35.9 24 9999.9 0 9999.9 0 5.2 24 4.8 24 9.9 999.9 64.4* 33.4* 99.99 999.9 001000 724050 13743 19371018 54.4 23 46.4 23 9999.9 0 9999.9 0 6.7 23 4.8 23 13.0 999.9 70.3* 41.4* 0.00I 999.9 100000 724050 13743 19371019 64.4 24 61.7 24 9999.9 0 9999.9 0 3.5 24 6.0 24 9.9 999.9 69.3* 60.3* 99.99 999.9 111000 724050 13743 19371020 63.2 24 55.5 24 9999.9 0 9999.9 0 7.2 24 8.8 24 19.0 999.9 70.3* 50.4* 99.99 999.9 110000 724050 13743 19371021 56.1 24 40.1 24 9999.9 0 9999.9 0 8.0 24 9.8 24 19.0 999.9 67.3* 45.3* 0.00I 999.9 000000 724050 13743 19371022 59.4 24 50.0 24 9999.9 0 9999.9 0 7.0 24 6.9 24 15.0 999.9 68.4* 52.3* 0.00I 999.9 100000 724050 13743 19371023 51.5 24 47.0 24 9999.9 0 9999.9 0 4.9 24 10.8 24 16.9 999.9 60.3* 45.3* 99.99 999.9 111000 724050 13743 19371024 44.6 24 28.2 24 9999.9 0 9999.9 0 8.6 24 11.9 24 16.9 999.9 50.4* 38.3* 99.99 999.9 010000 724050 13743 19371025 43.3 24 32.5 24 9999.9 0 9999.9 0 6.2 24 5.0 24 8.9 999.9 59.4* 31.3* 0.00I 999.9 000000 724050 13743 19371026 50.0 24 41.5 24 9999.9 0 9999.9 0 6.0 24 5.8 24 9.9 999.9 66.4* 40.3* 0.00I 999.9 000000 724050 13743 19371027 55.0 24 51.3 24 9999.9 0 9999.9 0 4.5 24 5.2 24 11.1 999.9 58.3* 51.3* 99.99 999.9 111000 724050 13743 19371028 54.4 24 51.2 24 9999.9 0 9999.9 0 3.7 24 5.1 24 15.9 999.9 60.3* 51.3* 99.99 999.9 110000 724050 13743 19371029 53.9 24 40.3 24 9999.9 0 9999.9 0 8.0 24 11.0 24 15.9 999.9 64.4* 47.3* 0.00I 999.9 000000 724050 13743 19371030 59.5 24 42.0 24 9999.9 0 9999.9 0 5.9 24 9.8 24 16.9 999.9 79.3* 44.4* 0.00I 999.9 000000 724050 13743 19371031 54.5 24 38.0 24 9999.9 0 9999.9 0 10.0 24 8.2 24 16.9 999.9 64.4* 47.3* 0.00I 999.9 000000 724050 13743 19371101 47.1 24 35.8 24 9999.9 0 9999.9 0 6.7 24 4.7 24 8.9 999.9 59.4* 39.4* 0.00I 999.9 000000 724050 13743 19371102 54.5 24 43.5 24 9999.9 0 9999.9 0 7.6 24 9.3 24 16.9 999.9 71.2* 45.3* 0.00I 999.9 000000 724050 13743 19371103 50.3 24 32.5 24 9999.9 0 9999.9 0 9.4 24 13.1 24 22.0 999.9 62.4* 42.4* 99.99 999.9 010000 724050 13743 19371104 40.9 24 27.2 24 9999.9 0 9999.9 0 6.3 24 4.4 24 9.9 999.9 54.3* 30.4* 0.00I 999.9 000000 724050 13743 19371105 43.6 24 31.8 24 9999.9 0 9999.9 0 6.3 24 8.5 24 16.9 999.9 56.3* 33.4* 99.99 999.9 001000 724050 13743 19371106 48.1 18 36.6 17 9999.9 0 9999.9 0 7.9 18 10.3 18 22.0 999.9 54.3* 42.4* 0.00I 999.9 000000 724050 13743 19371107 46.7 24 35.7 24 9999.9 0 9999.9 0 4.3 24 7.2 24 16.9 999.9 65.3* 33.4* 0.00I 999.9 000000 724050 13743 19371108 55.1 24 39.1 24 9999.9 0 9999.9 0 6.6 24 6.8 24 13.0 999.9 74.3* 41.4* 0.00I 999.9 000000 724050 13743 19371109 64.2 24 42.5 24 9999.9 0 9999.9 0 9.7 24 13.0 24 21.0 999.9 70.3* 56.3* 99.99 999.9 011000 724050 13743 19371110 52.4 24 35.3 24 9999.9 0 9999.9 0 7.6 24 4.2 24 8.9 999.9 68.4* 40.3* 0.00I 999.9 000000 724050 13743 19371111 46.3 24 29.8 24 9999.9 0 9999.9 0 6.8 24 8.6 24 13.0 999.9 54.3* 39.4* 0.00I 999.9 000000 724050 13743 19371112 45.8 24 35.5 24 9999.9 0 9999.9 0 5.1 24 10.8 24 16.9 999.9 52.3* 41.4* 99.99 999.9 111000 724050 13743 19371113 57.4 24 53.3 24 9999.9 0 9999.9 0 5.1 24 10.8 24 22.0 999.9 62.4* 52.3* 99.99 999.9 110000 724050 13743 19371114 54.3 24 45.1 24 9999.9 0 9999.9 0 6.7 24 4.9 24 9.9 999.9 66.4* 43.3* 0.00I 999.9 100000 724050 13743 19371115 48.9 24 36.9 24 9999.9 0 9999.9 0 8.5 24 8.9 24 19.0 999.9 55.4* 43.3* 0.00I 999.9 000000 724050 13743 19371116 45.2 24 34.0 24 9999.9 0 9999.9 0 8.2 24 7.0 24 13.0 999.9 52.3* 37.4* 0.00I 999.9 000000 724050 13743 19371117 43.7 24 35.4 24 9999.9 0 9999.9 0 7.2 24 9.8 24 16.9 999.9 47.3* 39.4* 99.99 999.9 111000 724050 13743 19371118 38.7 24 27.0 24 9999.9 0 9999.9 0 8.7 24 8.9 24 16.9 999.9 43.3* 34.3* 0.00I 999.9 000000 724050 13743 19371119 38.9 24 31.7 24 9999.9 0 9999.9 0 3.5 24 4.2 24 8.9 999.9 43.3* 33.4* 99.99 999.9 110000 724050 13743 19371120 39.6 24 31.6 24 9999.9 0 9999.9 0 7.3 24 10.4 24 20.0 999.9 42.4* 34.3* 99.99 999.9 111000 724050 13743 19371121 31.5 24 17.3 24 9999.9 0 9999.9 0 10.1 24 15.2 24 19.0 999.9 38.3* 26.4* 0.00I 999.9 000000 724050 13743 19371122 32.2 24 19.8 24 9999.9 0 9999.9 0 10.4 24 13.1 24 22.9 999.9 38.3* 27.3* 0.00I 999.9 000000 724050 13743 19371123 30.5 23 20.6 23 9999.9 0 9999.9 0 8.3 23 5.7 23 13.0 999.9 42.4* 22.5* 0.00I 999.9 000000 724050 13743 19371124 33.6 24 22.1 24 9999.9 0 9999.9 0 5.5 24 3.4 24 7.0 999.9 49.3* 22.5* 0.00I 999.9 000000 724050 13743 19371125 34.2 24 26.1 24 9999.9 0 9999.9 0 2.9 24 2.0 24 9.9 999.9 53.4* 22.5* 0.00I 999.9 100000 724050 13743 19371126 47.1 24 35.3 24 9999.9 0 9999.9 0 5.7 24 6.7 24 14.0 999.9 65.3* 35.4* 0.00I 999.9 000000 724050 13743 19371127 52.2 21 50.7 21 9999.9 0 9999.9 0 2.1 21 2.7 21 8.9 999.9 56.3* 49.3* 99.99 999.9 110000 724050 13743 19371128 61.2 24 59.1 24 9999.9 0 9999.9 0 4.5 24 5.3 24 13.0 999.9 69.3* 56.3* 99.99 999.9 110000 724050 13743 19371129 47.4 24 33.5 24 9999.9 0 9999.9 0 9.8 24 9.7 24 19.0 999.9 64.4* 37.4* 0.00I 999.9 000000 724050 13743 19371130 40.5 24 31.1 24 9999.9 0 9999.9 0 5.0 24 3.8 24 12.0 999.9 57.4* 30.4* 0.00I 999.9 000000 724050 13743 19371201 40.3 24 28.4 24 9999.9 0 9999.9 0 4.8 24 4.1 24 11.1 999.9 57.4* 32.4* 0.00I 999.9 000000 724050 13743 19371202 38.6 24 20.6 24 9999.9 0 9999.9 0 6.6 24 9.3 24 13.0 999.9 41.4* 36.3* 0.00I 999.9 000000 724050 13743 19371203 34.7 24 18.4 24 9999.9 0 9999.9 0 9.6 24 9.7 24 14.0 999.9 43.3* 28.4* 0.00I 999.9 000000 724050 13743 19371204 34.4 24 19.3 24 9999.9 0 9999.9 0 5.6 23 2.7 24 6.0 999.9 47.3* 25.3* 0.00I 999.9 000000 724050 13743 19371205 40.5 24 28.7 24 9999.9 0 9999.9 0 3.3 24 2.6 24 8.9 999.9 46.4* 35.4* 99.99 999.9 010000 724050 13743 19371206 37.4 24 32.5 24 9999.9 0 9999.9 0 4.4 24 9.8 24 15.9 999.9 43.3* 32.4* 99.99 999.9 011000 724050 13743 19371207 29.0 24 14.1 24 9999.9 0 9999.9 0 7.7 24 18.1 24 28.9 999.9 33.4* 23.4* 99.99 999.9 001000 724050 13743 19371208 30.4 24 16.5 24 9999.9 0 9999.9 0 7.2 24 6.9 24 9.9 999.9 43.3* 22.5* 0.00I 999.9 000000 724050 13743 19371209 31.7 24 15.0 24 9999.9 0 9999.9 0 7.4 24 8.7 24 16.9 999.9 39.4* 23.4* 0.00I 999.9 000000 724050 13743 19371210 28.2 24 14.0 24 9999.9 0 9999.9 0 7.3 24 3.8 24 9.9 999.9 38.3* 19.4* 0.00I 999.9 000000 724050 13743 19371211 26.0 24 14.2 24 9999.9 0 9999.9 0 7.2 24 5.3 24 8.9 999.9 35.4* 18.3* 0.00I 999.9 000000 724050 13743 19371212 25.0 24 10.8 24 9999.9 0 9999.9 0 6.0 24 8.3 24 16.9 999.9 30.4* 16.3* 0.00I 999.9 000000 724050 13743 19371213 26.4 22 12.3 22 9999.9 0 9999.9 0 5.5 22 8.4 22 11.1 999.9 31.3* 20.3* 0.00I 999.9 000000 724050 13743 19371214 28.0 20 8.7 20 9999.9 0 9999.9 0 8.6 20 8.5 20 14.0 999.9 35.4* 21.4* 0.00I 999.9 000000 724050 13743 19371215 28.1 24 17.5 24 9999.9 0 9999.9 0 5.2 24 3.2 24 8.9 999.9 34.3* 21.4* 0.00I 999.9 000000 724050 13743 19371216 41.0 24 29.8 24 9999.9 0 9999.9 0 2.8 24 3.2 24 9.9 999.9 54.3* 33.4* 0.00I 999.9 000000 724050 13743 19371217 46.0 24 39.9 24 9999.9 0 9999.9 0 3.5 24 4.3 24 8.9 999.9 52.3* 40.3* 99.99 999.9 011000 724050 13743 19371218 56.3 24 50.1 24 9999.9 0 9999.9 0 6.2 24 11.1 24 22.0 999.9 69.3* 45.3* 99.99 999.9 110000 724050 13743 19371219 42.0 24 32.7 24 9999.9 0 9999.9 0 7.6 24 9.6 24 16.9 999.9 46.4* 36.3* 0.00I 999.9 000000 724050 13743 19371220 38.8 24 26.9 24 9999.9 0 9999.9 0 7.6 24 5.6 24 9.9 999.9 45.3* 32.4* 0.00I 999.9 000000 724050 13743 19371221 40.3 24 26.7 24 9999.9 0 9999.9 0 7.8 24 9.0 24 16.9 999.9 43.3* 38.3* 0.00I 999.9 000000 724050 13743 19371222 41.0 24 27.5 24 9999.9 0 9999.9 0 7.0 24 10.3 24 13.0 999.9 56.3* 30.4* 99.99 999.9 010000 724050 13743 19371223 46.2 24 34.7 24 9999.9 0 9999.9 0 7.2 24 5.3 24 9.9 999.9 49.3* 42.4* 0.00I 999.9 000000 724050 13743 19371224 36.5 24 27.0 24 9999.9 0 9999.9 0 4.8 24 7.8 24 9.9 999.9 43.3* 32.4* 99.99 999.9 110000 724050 13743 19371225 39.2 24 36.8 24 9999.9 0 9999.9 0 3.3 24 5.0 24 8.9 999.9 52.3* 34.3* 99.99 999.9 110000 724050 13743 19371226 42.0 24 34.1 24 9999.9 0 9999.9 0 4.4 24 3.7 24 14.0 999.9 49.3* 34.3* 0.00I 999.9 100000 724050 13743 19371227 35.1 24 26.8 24 9999.9 0 9999.9 0 4.6 24 1.8 24 9.9 999.9 45.3* 25.3* 0.00I 999.9 100000 724050 13743 19371228 39.1 24 36.4 24 9999.9 0 9999.9 0 4.4 24 6.0 24 16.9 999.9 46.4* 35.4* 99.99 999.9 111000 724050 13743 19371229 38.7 23 30.6 23 9999.9 0 9999.9 0 6.6 23 4.4 23 12.0 999.9 49.3* 30.4* 0.00I 999.9 000000 724050 13743 19371230 41.1 24 32.3 24 9999.9 0 9999.9 0 6.5 24 6.7 24 16.9 999.9 59.4* 31.3* 0.00I 999.9 000000 724050 13743 19371231 42.6 24 34.7 24 9999.9 0 9999.9 0 4.6 24 4.4 24 13.0 999.9 49.3* 37.4* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1952/0000755000175000017500000000000014302004506015100 5ustar nileshnileshfluids-1.0.22/tests/gsod/1952/724050-13743.op0000644000175000017500000014350514302004506016670 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19520101 51.0 24 49.6 24 1019.5 24 1018.5 24 1.9 24 1.5 24 6.0 999.9 60.3* 48.4* 99.99 999.9 110000 724050 13743 19520102 50.7 24 46.8 24 1020.7 24 1019.7 24 2.9 24 3.0 24 7.0 999.9 53.4* 46.4* 99.99 999.9 110000 724050 13743 19520103 43.0 24 34.6 24 1022.7 24 1021.6 24 7.1 24 7.9 24 21.0 999.9 46.4* 41.4* 99.99 999.9 110000 724050 13743 19520104 36.0 24 26.1 24 1029.1 24 1028.3 24 8.3 24 1.8 24 7.0 999.9 40.3* 32.4* 99.99 999.9 001000 724050 13743 19520105 36.5 24 32.8 24 1016.4 24 1015.3 24 9.1 24 5.3 24 15.9 999.9 43.3* 33.4* 99.99 999.9 110000 724050 13743 19520106 34.8 24 26.1 24 1016.4 24 1015.3 24 8.3 24 7.6 24 20.0 999.9 37.4* 31.3* 0.00I 999.9 000000 724050 13743 19520107 31.7 24 21.7 24 1020.5 24 1019.5 24 11.9 24 17.1 24 26.0 999.9 38.3* 26.4* 0.00I 999.9 000000 724050 13743 19520108 32.2 24 21.9 24 1018.6 24 1017.5 24 6.3 24 6.7 24 16.9 999.9 36.3* 27.3* 0.00I 999.9 000000 724050 13743 19520109 39.4 24 28.3 24 1011.7 24 1010.7 24 4.3 24 1.5 24 6.0 999.9 47.3* 35.4* 0.00I 999.9 000000 724050 13743 19520110 40.2 24 34.4 24 1010.4 24 1009.4 24 4.3 24 10.6 24 22.0 999.9 43.3* 35.4* 99.99 999.9 011000 724050 13743 19520111 34.8 24 19.9 24 1028.5 24 1027.5 24 13.0 24 11.7 24 21.0 999.9 42.4* 29.3* 0.00I 999.9 000000 724050 13743 19520112 37.8 24 24.2 24 1027.5 24 1026.5 24 6.4 24 2.7 24 6.0 999.9 45.3* 31.3* 0.00I 999.9 000000 724050 13743 19520113 40.0 24 30.2 24 1023.9 24 1022.8 24 5.1 24 2.0 24 6.0 999.9 49.3* 30.4* 0.00I 999.9 000000 724050 13743 19520114 51.8 24 39.5 24 1016.5 24 1015.5 24 5.1 24 1.3 24 12.0 999.9 66.4* 44.4* 99.99 999.9 010000 724050 13743 19520115 55.8 24 49.0 24 1016.4 24 1015.3 24 6.9 24 3.4 24 9.9 999.9 73.4* 46.4* 99.99 999.9 010000 724050 13743 19520116 53.3 24 37.8 24 1021.7 24 1020.7 24 12.0 24 4.3 24 13.0 999.9 65.3* 45.3* 0.00I 999.9 000000 724050 13743 19520117 40.8 24 34.4 24 1023.2 24 1022.2 24 5.4 24 2.9 24 20.0 999.9 48.4* 33.4* 99.99 999.9 010000 724050 13743 19520118 49.5 24 35.0 24 1010.3 24 1009.3 24 10.6 24 11.7 24 22.0 999.9 54.3* 45.3* 99.99 999.9 010000 724050 13743 19520119 42.5 24 26.8 24 1020.8 24 1019.8 24 10.3 24 4.7 24 12.0 999.9 48.4* 32.4* 0.00I 999.9 000000 724050 13743 19520120 49.8 24 34.3 24 1007.8 24 1006.8 24 9.9 24 12.9 24 22.9 999.9 60.3* 43.3* 99.99 999.9 010000 724050 13743 19520121 38.5 24 21.5 24 1022.3 24 1021.3 24 13.2 24 11.6 24 20.0 999.9 47.3* 31.3* 0.00I 999.9 000000 724050 13743 19520122 35.8 24 29.1 24 1020.0 24 1019.0 24 6.0 24 3.6 24 8.0 999.9 41.4* 32.4* 99.99 999.9 111000 724050 13743 19520123 40.2 24 31.8 24 1010.5 24 1009.5 24 10.3 24 11.2 24 22.9 999.9 43.3* 35.4* 0.00I 999.9 100000 724050 13743 19520124 32.3 24 17.8 24 1028.1 24 1027.1 24 14.5 24 9.3 24 15.9 999.9 39.4* 28.4* 0.00I 999.9 000000 724050 13743 19520125 33.0 24 18.1 24 1036.1 24 1035.1 24 9.2 24 4.7 24 12.0 999.9 40.3* 27.3* 0.00I 999.9 000000 724050 13743 19520126 45.3 24 42.2 24 1021.9 24 1020.9 24 5.6 24 6.6 24 15.0 999.9 60.3* 38.3* 99.99 999.9 110000 724050 13743 19520127 58.6 24 54.8 24 1013.1 24 1012.1 24 7.7 24 6.0 24 15.9 999.9 61.3* 54.3* 99.99 999.9 110000 724050 13743 19520128 46.6 24 45.0 24 1007.2 24 1006.2 24 4.1 24 7.1 24 15.0 999.9 57.4* 34.3* 99.99 999.9 111000 724050 13743 19520129 27.2 24 14.7 24 1012.8 24 1011.5 24 13.1 24 16.3 24 23.9 999.9 35.4* 21.4* 0.00I 999.9 000000 724050 13743 19520130 21.2 24 5.6 24 1028.3 24 1027.3 24 12.6 24 9.0 24 15.9 999.9 26.4* 16.3* 0.00I 999.9 000000 724050 13743 19520131 25.9 24 13.0 24 1032.6 24 1031.6 24 7.2 24 2.1 24 7.0 999.9 40.3* 18.3* 0.00I 999.9 000000 724050 13743 19520201 39.3 24 24.5 24 1028.2 24 1027.2 24 6.4 24 4.2 24 8.9 999.9 59.4* 29.3* 0.00I 999.9 000000 724050 13743 19520202 50.8 24 35.8 24 1018.9 24 1017.9 24 8.0 24 4.8 24 9.9 999.9 59.4* 44.4* 0.00I 999.9 000000 724050 13743 19520203 44.7 24 40.6 24 1017.1 24 1016.1 24 3.4 24 4.3 24 16.9 999.9 50.4* 39.4* 99.99 999.9 010000 724050 13743 19520204 50.5 24 49.3 24 1000.7 24 999.7 24 3.1 24 3.9 24 14.0 999.9 56.3* 47.3* 99.99 999.9 110000 724050 13743 19520205 47.0 24 39.0 24 1001.1 24 1000.1 24 11.0 24 8.6 24 15.0 999.9 54.3* 42.4* 0.00I 999.9 000000 724050 13743 19520206 40.8 24 25.5 24 1015.0 24 1014.0 24 10.1 24 5.7 24 11.1 999.9 47.3* 35.4* 0.00I 999.9 000000 724050 13743 19520207 39.6 24 26.1 24 1014.1 24 1013.1 24 11.5 24 10.7 24 22.0 999.9 44.4* 36.3* 0.00I 999.9 000000 724050 13743 19520208 39.7 24 24.1 24 1015.4 24 1014.4 24 10.6 24 5.1 24 11.1 999.9 53.4* 31.3* 0.00I 999.9 000000 724050 13743 19520209 45.7 24 27.5 24 1010.8 24 1009.7 24 14.1 24 13.3 24 22.0 999.9 54.3* 39.4* 99.99 999.9 001000 724050 13743 19520210 43.5 24 25.4 24 1013.5 24 1012.5 24 12.2 24 6.3 24 15.9 999.9 54.3* 34.3* 0.00I 999.9 000000 724050 13743 19520211 48.9 24 28.2 24 1002.9 24 1001.9 24 14.7 24 13.9 24 28.0 999.9 56.3* 41.4* 0.00I 999.9 000000 724050 13743 19520212 39.6 23 21.0 23 1013.3 23 1012.3 23 13.4 23 15.6 23 28.9 999.9 50.4* 32.4* 0.00I 999.9 000000 724050 13743 19520213 40.6 24 21.1 24 1016.4 24 1015.4 24 11.4 24 5.9 24 13.0 999.9 45.3* 35.4* 0.00I 999.9 000000 724050 13743 19520214 35.5 24 7.5 24 1018.1 24 1017.1 24 11.4 24 5.2 24 9.9 999.9 42.4* 29.3* 0.00I 999.9 000000 724050 13743 19520215 35.1 24 6.5 24 1020.9 24 1019.9 24 11.2 24 3.8 24 7.0 999.9 45.3* 26.4* 0.00I 999.9 000000 724050 13743 19520216 38.5 24 20.5 24 1017.8 24 1016.7 24 6.0 24 3.7 24 8.9 999.9 42.4* 35.4* 99.99 999.9 110000 724050 13743 19520217 39.2 24 37.6 24 1005.0 24 1004.0 24 3.6 24 8.3 24 16.9 999.9 41.4* 36.3* 99.99 999.9 110000 724050 13743 19520218 41.7 24 27.0 24 1010.7 24 1009.7 24 10.6 24 19.7 24 29.9 999.9 48.4* 37.4* 0.00I 999.9 000000 724050 13743 19520219 40.1 24 23.6 24 1020.5 24 1019.5 24 11.2 24 4.9 24 9.9 999.9 49.3* 32.4* 0.00I 999.9 000000 724050 13743 19520220 38.2 24 22.6 24 1020.6 24 1019.6 24 8.8 24 3.7 24 8.9 999.9 46.4* 30.4* 0.00I 999.9 000000 724050 13743 19520221 42.2 23 29.8 23 1014.1 23 1013.1 23 9.4 23 6.5 23 21.0 999.9 50.4* 33.4* 0.00I 999.9 100000 724050 13743 19520222 37.5 24 19.9 24 1023.0 24 1022.0 24 11.8 24 9.9 24 15.9 999.9 42.4* 34.3* 0.00I 999.9 000000 724050 13743 19520223 35.9 24 21.6 24 1025.4 24 1024.3 24 9.2 24 3.6 24 8.9 999.9 44.4* 30.4* 0.00I 999.9 000000 724050 13743 19520224 38.3 24 25.6 24 1022.1 24 1021.1 24 8.3 24 3.7 24 7.0 999.9 44.4* 35.4* 0.00I 999.9 000000 724050 13743 19520225 40.0 24 27.2 24 1020.8 24 1019.8 24 8.1 24 4.1 24 9.9 999.9 49.3* 33.4* 0.00I 999.9 000000 724050 13743 19520226 36.4 24 20.9 24 1022.7 24 1021.7 24 8.6 24 4.4 24 15.0 999.9 44.4* 28.4* 0.00I 999.9 000000 724050 13743 19520227 39.5 24 20.5 24 1010.3 24 1009.3 24 7.8 24 8.4 24 18.1 999.9 50.4* 32.4* 0.00I 999.9 000000 724050 13743 19520228 42.2 24 25.9 24 1007.1 24 1006.1 24 8.2 24 4.9 24 9.9 999.9 52.3* 33.4* 0.00I 999.9 000000 724050 13743 19520229 43.3 24 30.4 24 1004.0 24 1003.0 24 6.5 24 4.9 24 9.9 999.9 51.3* 35.4* 0.00I 999.9 000000 724050 13743 19520301 36.8 24 28.5 24 1006.0 24 1005.0 24 7.8 24 10.5 24 20.0 999.9 42.4* 30.4* 99.99 999.9 111000 724050 13743 19520302 36.6 24 22.1 24 1022.8 24 1021.7 24 10.2 24 2.3 24 8.0 999.9 43.3* 29.3* 0.00I 999.9 000000 724050 13743 19520303 35.5 24 33.0 24 1021.6 24 1020.5 24 3.8 24 3.7 24 7.0 999.9 38.3* 33.4* 99.99 999.9 111000 724050 13743 19520304 37.3 24 37.0 24 1011.3 24 1010.3 24 1.7 24 4.8 24 14.0 999.9 40.3* 35.4* 99.99 999.9 110000 724050 13743 19520305 39.2 24 27.1 24 1015.3 24 1014.3 24 11.9 24 15.1 24 27.0 999.9 43.3* 35.4* 0.00I 999.9 000000 724050 13743 19520306 35.3 24 21.6 24 1023.3 24 1022.3 24 11.1 24 15.9 24 20.0 999.9 42.4* 30.4* 0.00I 999.9 000000 724050 13743 19520307 33.4 24 21.0 24 1025.3 24 1024.3 24 12.3 24 15.3 24 19.0 999.9 38.3* 29.3* 0.00I 999.9 000000 724050 13743 19520308 34.6 24 22.2 24 1025.4 24 1024.4 24 13.1 24 11.2 24 15.9 999.9 38.3* 32.4* 0.00I 999.9 000000 724050 13743 19520309 32.8 24 24.0 24 1023.8 24 1022.8 24 7.0 24 2.5 24 8.9 999.9 39.4* 26.4* 99.99 999.9 001000 724050 13743 19520310 42.9 24 34.8 24 1022.7 24 1021.6 24 7.4 24 4.7 24 9.9 999.9 54.3* 34.3* 0.00I 999.9 100000 724050 13743 19520311 56.8 24 48.8 24 998.8 24 997.8 24 8.4 24 18.1 24 29.9 999.9 67.3* 51.3* 99.99 999.9 010000 724050 13743 19520312 46.3 24 30.7 24 1013.8 24 1012.8 24 12.8 24 12.0 24 28.0 999.9 57.4* 37.4* 0.00I 999.9 000000 724050 13743 19520313 44.7 24 31.3 24 1006.9 24 1005.8 24 7.2 24 3.7 24 12.0 999.9 54.3* 37.4* 99.99 999.9 110010 724050 13743 19520314 43.4 24 31.2 24 1004.6 24 1003.5 24 10.8 24 12.6 24 20.0 999.9 48.4* 38.3* 99.99 999.9 110000 724050 13743 19520315 36.7 24 17.0 24 1012.8 24 1011.7 24 13.9 24 12.4 24 22.0 999.9 44.4* 29.3* 0.00I 999.9 000000 724050 13743 19520316 35.5 24 17.5 24 1005.2 24 1004.2 24 13.7 24 20.4 24 33.0 999.9 40.3* 30.4* 0.00I 999.9 000000 724050 13743 19520317 39.5 24 24.2 24 1010.0 24 1008.9 24 14.9 24 19.1 24 26.0 999.9 50.4* 34.3* 0.00I 999.9 000000 724050 13743 19520318 42.4 24 27.4 24 1019.9 24 1018.8 24 8.2 24 5.1 24 15.9 999.9 52.3* 34.3* 0.00I 999.9 000000 724050 13743 19520319 45.7 24 40.1 24 1012.2 24 1011.1 24 8.1 24 6.4 24 9.9 999.9 55.4* 39.4* 99.99 999.9 110000 724050 13743 19520320 51.6 24 42.6 24 1013.9 24 1012.9 24 9.3 24 2.6 24 9.9 999.9 74.3* 37.4* 0.00I 999.9 100000 724050 13743 19520321 59.8 24 48.0 24 1011.7 24 1010.6 24 7.2 24 1.1 24 8.0 999.9 85.3* 44.4* 0.00I 999.9 000000 724050 13743 19520322 57.7 24 45.8 24 1010.6 24 1009.6 24 4.7 24 3.0 24 9.9 999.9 70.3* 53.4* 99.99 999.9 010000 724050 13743 19520323 47.9 24 45.6 24 1009.5 24 1008.5 24 3.3 24 3.0 24 6.0 999.9 53.4* 44.4* 99.99 999.9 110000 724050 13743 19520324 48.4 24 45.0 24 1009.1 24 1008.1 24 4.3 24 4.0 24 13.0 999.9 52.3* 40.3* 99.99 999.9 110000 724050 13743 19520325 43.7 24 34.0 24 1015.7 24 1014.7 24 7.6 24 1.2 24 5.1 999.9 56.3* 35.4* 0.00I 999.9 100000 724050 13743 19520326 51.1 24 33.4 24 1016.3 24 1015.2 24 12.6 24 3.8 24 9.9 999.9 63.3* 42.4* 0.00I 999.9 000000 724050 13743 19520327 49.6 24 30.3 24 1015.9 24 1014.9 24 12.9 24 5.4 24 13.0 999.9 58.3* 42.4* 0.00I 999.9 000000 724050 13743 19520328 44.6 24 34.2 24 1018.7 24 1017.7 24 7.2 24 5.1 24 16.9 999.9 53.4* 36.3* 99.99 999.9 110000 724050 13743 19520329 46.5 24 32.1 24 1021.3 24 1020.3 24 9.7 24 4.2 24 9.9 999.9 53.4* 39.4* 99.99 999.9 010000 724050 13743 19520330 45.5 24 32.9 24 1027.4 24 1026.3 24 9.1 24 3.7 24 12.0 999.9 57.4* 35.4* 0.00I 999.9 000000 724050 13743 19520331 51.2 24 36.8 24 1023.8 24 1022.8 24 10.6 24 7.3 24 16.9 999.9 66.4* 40.3* 0.00I 999.9 000000 724050 13743 19520401 61.1 24 49.7 24 1011.1 24 1010.1 24 9.9 24 7.6 24 12.0 999.9 74.3* 54.3* 99.99 999.9 010000 724050 13743 19520402 59.6 24 47.4 24 1006.6 24 1005.6 24 11.2 24 9.7 24 20.0 999.9 66.4* 52.3* 99.99 999.9 010000 724050 13743 19520403 53.3 24 32.4 24 1014.1 24 1012.9 24 13.0 24 5.6 24 12.0 999.9 61.3* 45.3* 0.00I 999.9 000000 724050 13743 19520404 56.1 24 36.3 24 1017.6 24 1016.6 24 12.2 24 4.1 24 8.9 999.9 68.4* 46.4* 0.00I 999.9 000000 724050 13743 19520405 61.8 24 55.0 24 1003.2 24 1002.2 24 10.8 24 10.4 24 22.0 999.9 70.3* 54.3* 99.99 999.9 010000 724050 13743 19520406 48.0 24 30.8 24 1007.0 24 1005.9 24 13.1 24 11.8 24 22.0 999.9 53.4* 44.4* 0.00I 999.9 000000 724050 13743 19520407 45.3 24 29.6 24 1015.3 24 1014.4 24 14.9 24 10.6 24 16.9 999.9 50.4* 40.3* 0.00I 999.9 000000 724050 13743 19520408 44.8 24 31.1 24 1022.4 24 1021.4 24 11.7 24 4.3 24 12.0 999.9 52.3* 36.3* 0.00I 999.9 000000 724050 13743 19520409 49.3 24 35.0 24 1027.5 24 1026.5 24 8.2 24 3.1 24 9.9 999.9 59.4* 38.3* 0.00I 999.9 000000 724050 13743 19520410 51.4 24 38.5 24 1024.5 24 1023.4 24 10.7 24 5.7 24 13.0 999.9 66.4* 40.3* 0.00I 999.9 000000 724050 13743 19520411 55.0 24 39.2 24 1020.0 24 1018.9 24 11.4 24 8.0 24 19.0 999.9 62.4* 49.3* 0.00I 999.9 000000 724050 13743 19520412 51.3 24 35.3 24 1023.6 24 1022.6 24 11.3 24 6.5 24 9.9 999.9 57.4* 46.4* 0.00I 999.9 000000 724050 13743 19520413 52.1 24 47.1 24 1017.5 24 1016.4 24 6.8 24 6.7 24 14.0 999.9 66.4* 45.3* 99.99 999.9 110000 724050 13743 19520414 62.9 24 56.1 24 1002.1 24 1001.1 24 10.5 24 5.8 24 14.0 999.9 74.3* 55.4* 99.99 999.9 010010 724050 13743 19520415 51.5 24 42.7 24 1002.9 24 1001.9 24 11.2 24 16.0 24 22.9 999.9 59.4* 45.3* 99.99 999.9 010010 724050 13743 19520416 49.9 24 38.8 24 1013.6 24 1012.6 24 10.1 24 12.2 24 15.9 999.9 63.3* 42.4* 99.99 999.9 010000 724050 13743 19520417 59.6 24 38.8 24 1018.2 24 1017.1 24 14.9 24 7.6 24 15.9 999.9 74.3* 47.3* 0.00I 999.9 000000 724050 13743 19520418 65.5 24 40.3 24 1016.9 24 1015.9 24 13.3 24 6.2 24 18.1 999.9 78.3* 55.4* 0.00I 999.9 000000 724050 13743 19520419 68.2 24 44.9 24 1017.1 24 1016.0 24 13.0 24 3.8 24 16.9 999.9 80.2* 57.4* 0.00I 999.9 000000 724050 13743 19520420 69.8 24 47.8 24 1016.0 24 1014.9 24 10.2 24 6.9 24 20.0 999.9 85.3* 55.4* 0.00I 999.9 000000 724050 13743 19520421 73.0 24 49.2 24 1017.4 24 1016.4 24 10.6 24 4.6 24 11.1 999.9 86.4* 58.3* 0.00I 999.9 000000 724050 13743 19520422 69.7 24 51.2 24 1017.6 24 1016.6 24 7.0 24 2.9 24 8.9 999.9 89.2* 55.4* 0.00I 999.9 000000 724050 13743 19520423 75.0 24 51.2 24 1013.3 24 1012.3 24 7.9 24 7.8 24 26.0 999.9 88.3* 58.3* 99.99 999.9 010000 724050 13743 19520424 51.1 24 47.4 24 1020.5 24 1019.5 24 6.0 24 7.3 24 14.0 999.9 56.3* 45.3* 99.99 999.9 110000 724050 13743 19520425 49.7 24 48.6 24 1016.3 24 1015.3 24 3.1 24 5.5 24 8.0 999.9 52.3* 46.4* 99.99 999.9 110000 724050 13743 19520426 49.7 24 49.0 24 1012.9 24 1011.9 24 2.9 24 7.4 24 11.1 999.9 52.3* 46.4* 99.99 999.9 110000 724050 13743 19520427 53.2 24 52.4 24 1008.2 24 1007.2 24 2.6 24 8.5 24 15.9 999.9 56.3* 51.3* 99.99 999.9 110000 724050 13743 19520428 57.4 24 55.6 24 1003.8 24 1002.8 24 4.2 24 9.0 24 14.0 999.9 60.3* 56.3* 99.99 999.9 110000 724050 13743 19520429 58.0 24 51.5 24 1007.4 24 1006.4 24 7.2 24 6.6 24 14.0 999.9 69.3* 52.3* 99.99 999.9 110000 724050 13743 19520430 65.8 24 45.4 24 1008.0 24 1007.0 24 12.5 24 7.4 24 18.1 999.9 78.3* 55.4* 0.00I 999.9 000000 724050 13743 19520501 62.4 24 37.9 24 1010.3 24 1009.2 24 10.3 24 2.9 24 11.1 999.9 75.4* 47.3* 0.00I 999.9 000000 724050 13743 19520502 65.0 24 43.4 24 1007.8 24 1006.7 24 11.6 24 4.3 24 16.9 999.9 75.4* 53.4* 99.99 999.9 010000 724050 13743 19520503 59.1 24 36.9 24 1013.6 24 1012.6 24 12.1 24 6.4 24 16.9 999.9 69.3* 50.4* 0.00I 999.9 000000 724050 13743 19520504 63.6 24 39.3 24 1012.7 24 1011.7 24 12.6 24 5.4 24 16.9 999.9 79.3* 51.3* 0.00I 999.9 000000 724050 13743 19520505 62.7 24 50.8 24 1010.7 24 1009.7 24 10.6 24 6.0 24 11.1 999.9 71.2* 58.3* 99.99 999.9 010000 724050 13743 19520506 64.6 24 51.8 24 1008.5 24 1007.5 24 10.9 24 7.6 24 20.0 999.9 85.3* 52.3* 99.99 999.9 010000 724050 13743 19520507 65.0 24 39.5 24 1012.2 24 1011.2 24 13.8 24 15.0 24 22.0 999.9 77.4* 56.3* 0.00I 999.9 000000 724050 13743 19520508 58.8 24 40.7 24 1013.7 24 1012.7 24 10.5 24 3.7 24 9.9 999.9 66.4* 51.3* 99.99 999.9 010000 724050 13743 19520509 64.3 24 44.3 24 1010.5 24 1009.5 24 11.5 24 4.8 24 8.9 999.9 75.4* 56.3* 0.00I 999.9 000000 724050 13743 19520510 65.6 24 57.4 24 1005.5 24 1004.4 24 10.4 24 4.7 24 11.1 999.9 74.3* 57.4* 99.99 999.9 010000 724050 13743 19520511 68.2 24 64.0 24 1001.8 24 1000.7 24 8.4 24 3.3 24 11.1 999.9 75.4* 63.3* 99.99 999.9 110000 724050 13743 19520512 58.2 24 45.1 24 1002.1 24 1001.0 24 10.9 24 14.4 24 25.1 999.9 68.4* 50.4* 99.99 999.9 010010 724050 13743 19520513 57.0 24 39.8 24 1008.8 24 1007.8 24 14.0 24 12.3 24 22.0 999.9 65.3* 47.3* 0.00I 999.9 000000 724050 13743 19520514 61.8 24 41.6 24 1013.3 24 1012.3 24 13.8 24 9.1 24 22.0 999.9 75.4* 49.3* 0.00I 999.9 000000 724050 13743 19520515 71.4 24 48.2 24 1007.7 24 1006.7 24 13.0 24 11.8 24 22.9 999.9 82.4* 62.4* 99.99 999.9 010000 724050 13743 19520516 66.5 24 53.6 24 1011.1 24 1010.1 24 10.4 24 3.7 24 13.0 999.9 77.4* 59.4* 99.99 999.9 010000 724050 13743 19520517 60.6 24 50.3 24 1017.5 24 1016.5 24 10.4 24 6.4 24 12.0 999.9 71.2* 54.3* 99.99 999.9 010010 724050 13743 19520518 61.0 24 51.8 24 1016.0 24 1015.0 24 10.0 24 5.4 24 9.9 999.9 65.3* 55.4* 99.99 999.9 110000 724050 13743 19520519 57.1 24 51.8 24 1020.7 24 1019.7 24 6.9 24 2.7 24 8.9 999.9 62.4* 53.4* 99.99 999.9 110000 724050 13743 19520520 54.8 24 52.7 24 1014.4 24 1013.4 24 3.8 24 3.6 24 7.0 999.9 58.3* 51.3* 99.99 999.9 110000 724050 13743 19520521 64.6 24 53.7 24 1009.0 24 1008.0 24 8.1 24 8.8 24 21.0 999.9 73.4* 58.3* 99.99 999.9 110000 724050 13743 19520522 68.1 24 48.3 24 1017.6 24 1016.6 24 12.1 24 5.1 24 9.9 999.9 79.3* 57.4* 0.00I 999.9 000000 724050 13743 19520523 70.4 24 50.8 24 1020.0 24 1019.0 24 11.1 24 1.7 24 7.0 999.9 81.3* 62.4* 0.00I 999.9 000000 724050 13743 19520524 64.9 24 50.2 24 1021.2 24 1020.1 24 13.0 24 3.9 24 8.0 999.9 71.2* 58.3* 0.00I 999.9 000000 724050 13743 19520525 70.0 24 64.3 24 1011.1 24 1010.1 24 8.1 24 5.7 24 9.9 999.9 83.3* 60.3* 99.99 999.9 110010 724050 13743 19520526 70.0 24 62.2 24 1007.8 24 1006.8 24 8.7 24 5.2 24 16.9 999.9 78.3* 64.4* 99.99 999.9 010010 724050 13743 19520527 70.0 24 52.3 24 1015.5 24 1014.5 24 10.6 24 3.4 24 9.9 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19520528 71.8 24 55.1 24 1016.2 24 1015.2 24 11.9 24 3.7 24 8.9 999.9 86.4* 58.3* 0.00I 999.9 000000 724050 13743 19520529 73.6 24 61.0 24 1012.9 24 1011.9 24 9.3 24 6.0 24 13.0 999.9 82.4* 66.4* 99.99 999.9 010000 724050 13743 19520530 62.6 24 57.3 24 1016.5 24 1015.4 24 6.1 24 5.3 24 8.9 999.9 65.3* 60.3* 99.99 999.9 110000 724050 13743 19520531 63.3 24 61.3 24 1014.6 24 1013.6 24 2.9 24 3.9 24 6.0 999.9 71.2* 58.3* 99.99 999.9 110000 724050 13743 19520601 72.0 24 65.4 24 1009.3 24 1008.2 24 8.7 24 6.0 24 11.1 999.9 84.4* 64.4* 99.99 999.9 110010 724050 13743 19520602 69.6 24 53.0 24 1014.8 24 1013.7 24 11.1 24 5.1 24 13.0 999.9 79.3* 61.3* 0.00I 999.9 000000 724050 13743 19520603 69.2 24 53.8 24 1015.0 24 1014.0 24 11.5 24 2.8 24 8.0 999.9 84.4* 55.4* 0.00I 999.9 000000 724050 13743 19520604 75.8 24 61.3 24 1011.4 24 1010.4 24 10.1 24 4.7 24 8.0 999.9 89.2* 65.3* 99.99 999.9 010010 724050 13743 19520605 73.7 24 62.6 24 1011.6 24 1010.6 24 8.0 24 5.8 24 12.0 999.9 80.2* 68.4* 99.99 999.9 010010 724050 13743 19520606 78.2 24 61.5 24 1011.0 24 1010.0 24 10.1 24 3.1 24 12.0 999.9 92.3* 67.3* 0.00I 999.9 000000 724050 13743 19520607 84.3 24 63.4 24 1007.3 24 1006.2 24 13.3 24 9.5 24 15.9 999.9 90.3* 79.3* 0.00I 999.9 000000 724050 13743 19520608 76.0 24 55.0 24 1011.2 24 1010.2 24 14.0 24 4.2 24 9.9 999.9 87.3* 63.3* 0.00I 999.9 000000 724050 13743 19520609 79.7 24 64.5 24 1008.5 24 1007.5 24 12.2 24 5.9 24 25.1 999.9 92.3* 72.3* 99.99 999.9 010010 724050 13743 19520610 78.2 24 65.3 24 1007.5 24 1006.5 24 12.8 24 5.8 24 22.0 999.9 86.4* 69.3* 99.99 999.9 010010 724050 13743 19520611 72.3 24 52.7 24 1006.9 24 1005.9 24 13.4 24 11.3 24 18.1 999.9 81.3* 66.4* 0.00I 999.9 000000 724050 13743 19520612 68.7 24 49.5 24 1011.3 24 1010.2 24 14.9 24 8.6 24 14.0 999.9 76.3* 59.4* 0.00I 999.9 000000 724050 13743 19520613 71.2 24 50.4 24 1015.3 24 1014.3 24 11.5 24 2.1 24 7.0 999.9 82.4* 58.3* 0.00I 999.9 000000 724050 13743 19520614 73.5 24 55.2 24 1018.1 24 1017.1 24 13.3 24 3.4 24 8.9 999.9 88.3* 59.4* 0.00I 999.9 000000 724050 13743 19520615 79.3 24 64.8 24 1014.6 24 1013.5 24 9.8 24 2.5 24 8.9 999.9 92.3* 71.2* 99.99 999.9 010000 724050 13743 19520616 83.1 24 71.0 24 1013.6 24 1012.6 24 7.2 24 2.3 24 8.9 999.9 94.3* 72.3* 0.00I 999.9 100000 724050 13743 19520617 81.9 24 74.2 24 1010.1 24 1009.1 24 8.2 24 5.9 24 9.9 999.9 93.4* 76.3* 0.00I 999.9 000010 724050 13743 19520618 81.8 24 61.6 24 1009.6 24 1008.6 24 13.3 24 8.2 24 15.9 999.9 92.3* 75.4* 0.00I 999.9 000000 724050 13743 19520619 82.3 24 60.3 24 1010.6 24 1009.6 24 14.4 24 5.5 24 15.9 999.9 95.4* 70.3* 0.00I 999.9 000000 724050 13743 19520620 75.1 24 49.6 24 1016.0 24 1015.0 24 14.9 24 6.2 24 13.0 999.9 81.3* 66.4* 0.00I 999.9 000000 724050 13743 19520621 66.9 24 57.1 24 1019.3 24 1018.3 24 11.4 24 5.1 24 8.9 999.9 74.3* 60.3* 99.99 999.9 010000 724050 13743 19520622 66.6 24 61.8 24 1018.7 24 1017.7 24 3.4 24 2.5 24 7.0 999.9 76.3* 61.3* 99.99 999.9 110000 724050 13743 19520623 67.5 24 65.2 24 1018.9 24 1017.9 24 3.3 24 4.0 24 6.0 999.9 71.2* 65.3* 99.99 999.9 110010 724050 13743 19520624 72.6 24 66.3 24 1016.2 24 1015.2 24 6.9 24 3.6 24 9.9 999.9 87.3* 66.4* 99.99 999.9 110000 724050 13743 19520625 86.0 24 72.7 24 1010.4 24 1009.4 24 12.8 24 4.7 24 9.9 999.9 97.3* 76.3* 0.00I 999.9 000000 724050 13743 19520626 90.0 24 73.6 24 1010.9 24 1009.8 24 13.8 24 3.9 24 12.0 999.9 100.2* 80.2* 0.00I 999.9 000000 724050 13743 19520627 89.8 24 74.1 24 1012.5 24 1011.5 24 14.0 24 3.8 24 8.9 999.9 99.3* 82.4* 99.99 999.9 010010 724050 13743 19520628 82.8 24 72.9 24 1017.3 24 1016.3 24 7.1 24 3.3 24 8.0 999.9 94.3* 74.3* 0.00I 999.9 000000 724050 13743 19520629 83.2 24 74.5 24 1016.8 24 1015.8 24 5.2 24 4.5 24 20.0 999.9 93.4* 75.4* 99.99 999.9 110010 724050 13743 19520630 74.2 24 69.1 24 1014.5 24 1013.5 24 7.7 24 6.2 24 9.9 999.9 80.2* 69.3* 99.99 999.9 010010 724050 13743 19520701 68.7 24 55.2 24 1025.2 24 1024.2 24 12.5 24 4.8 24 9.9 999.9 77.4* 60.3* 0.00I 999.9 000000 724050 13743 19520702 69.7 24 54.0 24 1026.2 24 1025.2 24 14.0 24 4.7 24 9.9 999.9 81.3* 57.4* 0.00I 999.9 000000 724050 13743 19520703 77.1 24 64.1 24 1021.4 24 1020.4 24 14.9 24 7.8 24 13.0 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19520704 79.5 24 66.3 24 1018.3 24 1017.2 24 13.1 24 5.9 24 12.0 999.9 90.3* 74.3* 99.99 999.9 010010 724050 13743 19520705 81.4 24 66.2 24 1019.6 24 1018.6 24 11.7 24 3.2 24 8.0 999.9 89.2* 75.4* 0.00I 999.9 000000 724050 13743 19520706 79.3 24 64.3 24 1023.2 24 1022.2 24 11.2 24 1.7 24 7.0 999.9 90.3* 68.4* 0.00I 999.9 000000 724050 13743 19520707 77.7 24 70.8 24 1024.6 24 1023.6 24 7.6 24 4.3 24 8.9 999.9 83.3* 72.3* 99.99 999.9 110000 724050 13743 19520708 76.1 24 71.8 24 1019.2 24 1018.2 24 10.1 24 4.0 24 15.9 999.9 84.4* 72.3* 99.99 999.9 110000 724050 13743 19520709 77.1 24 72.8 24 1011.2 24 1010.2 24 8.3 24 6.1 24 23.9 999.9 84.4* 72.3* 99.99 999.9 010010 724050 13743 19520710 73.6 24 62.6 24 1012.4 24 1011.4 24 12.0 24 8.8 24 16.9 999.9 81.3* 68.4* 99.99 999.9 010000 724050 13743 19520711 75.1 24 61.2 24 1018.7 24 1017.7 24 10.1 24 1.0 24 6.0 999.9 86.4* 65.3* 0.00I 999.9 100000 724050 13743 19520712 77.8 24 61.8 24 1024.1 24 1023.1 24 10.9 24 1.7 24 5.1 999.9 91.2* 57.4* 0.00I 999.9 000000 724050 13743 19520713 81.3 24 64.3 24 1024.0 24 1023.0 24 12.9 24 2.1 24 7.0 999.9 92.3* 69.3* 0.00I 999.9 000000 724050 13743 19520714 82.5 24 66.5 24 1021.0 24 1020.0 24 11.0 24 2.7 24 6.0 999.9 93.4* 71.2* 0.00I 999.9 000000 724050 13743 19520715 83.2 24 69.7 24 1018.1 24 1017.1 24 13.7 24 5.3 24 8.0 999.9 94.3* 73.4* 0.00I 999.9 000000 724050 13743 19520716 84.0 24 71.6 24 1020.0 24 1018.9 24 11.9 24 3.9 24 8.0 999.9 97.3* 76.3* 0.00I 999.9 000000 724050 13743 19520717 81.8 24 72.2 24 1022.9 24 1021.9 24 8.0 24 2.7 24 8.0 999.9 93.4* 73.4* 99.99 999.9 010010 724050 13743 19520718 85.2 24 74.1 24 1021.5 24 1020.4 24 8.7 24 2.6 24 6.0 999.9 94.3* 77.4* 0.00I 999.9 000000 724050 13743 19520719 85.8 24 74.3 24 1014.9 24 1013.9 24 11.8 24 5.9 24 21.0 999.9 93.4* 79.3* 0.00I 999.9 000000 724050 13743 19520720 83.0 24 74.0 24 1012.3 24 1011.3 24 9.6 24 4.1 24 9.9 999.9 91.2* 76.3* 99.99 999.9 010000 724050 13743 19520721 87.6 24 74.1 24 1011.9 24 1010.9 24 11.6 24 4.6 24 12.0 999.9 97.3* 78.3* 0.00I 999.9 000000 724050 13743 19520722 90.4 24 73.3 24 1013.4 24 1012.4 24 13.8 24 3.9 24 9.9 999.9 99.3* 80.2* 0.00I 999.9 000000 724050 13743 19520723 87.8 24 73.6 24 1013.3 24 1012.3 24 11.2 24 2.8 24 15.9 999.9 97.3* 80.2* 99.99 999.9 010010 724050 13743 19520724 81.6 24 63.8 24 1014.0 24 1012.7 24 13.5 24 9.6 24 16.9 999.9 85.3* 77.4* 0.00I 999.9 000000 724050 13743 19520725 77.4 24 57.9 24 1021.3 24 1020.3 24 13.5 24 4.6 24 8.9 999.9 87.3* 66.4* 0.00I 999.9 000000 724050 13743 19520726 78.2 24 63.7 24 1021.9 24 1020.9 24 11.3 24 4.8 24 12.0 999.9 90.3* 68.4* 0.00I 999.9 000000 724050 13743 19520727 83.0 24 69.5 24 1017.1 24 1016.1 24 8.9 24 6.4 24 11.1 999.9 93.4* 75.4* 0.00I 999.9 000000 724050 13743 19520728 87.3 24 66.9 24 1012.2 24 1011.1 24 9.5 24 3.4 24 7.0 999.9 98.2* 76.3* 0.00I 999.9 000000 724050 13743 19520729 85.9 24 67.7 24 1009.7 24 1008.7 24 9.7 24 4.7 24 12.0 999.9 92.3* 80.2* 0.00I 999.9 000000 724050 13743 19520730 82.8 24 64.5 24 1013.1 24 1012.1 24 9.1 24 4.1 24 8.9 999.9 91.2* 75.4* 0.00I 999.9 000000 724050 13743 19520731 81.4 24 67.3 24 1015.6 24 1014.6 24 8.8 24 3.9 24 7.0 999.9 86.4* 76.3* 99.99 999.9 010000 724050 13743 19520801 79.2 24 66.7 24 1018.2 24 1017.2 24 6.8 24 4.2 24 8.0 999.9 86.4* 72.3* 0.00I 999.9 000000 724050 13743 19520802 75.1 24 69.7 24 1014.8 24 1013.7 24 9.2 24 4.3 24 8.9 999.9 79.3* 69.3* 99.99 999.9 010010 724050 13743 19520803 77.9 24 68.3 24 1013.6 24 1012.6 24 10.9 24 1.9 24 7.0 999.9 90.3* 69.3* 99.99 999.9 010000 724050 13743 19520804 80.0 24 69.8 24 1014.1 24 1013.1 24 10.8 24 5.8 24 13.0 999.9 90.3* 72.3* 0.00I 999.9 100000 724050 13743 19520805 80.8 24 71.5 24 1013.4 24 1012.4 24 11.5 24 5.6 24 8.9 999.9 88.3* 75.4* 0.00I 999.9 000000 724050 13743 19520806 78.2 24 72.1 24 1015.3 24 1014.3 24 9.1 24 4.3 24 8.9 999.9 83.3* 73.4* 99.99 999.9 010010 724050 13743 19520807 75.6 24 70.2 24 1015.1 24 1014.1 24 4.9 24 2.4 24 6.0 999.9 84.4* 71.2* 99.99 999.9 110000 724050 13743 19520808 73.5 24 71.2 24 1016.3 24 1015.3 24 3.4 24 3.0 24 7.0 999.9 78.3* 70.3* 99.99 999.9 110000 724050 13743 19520809 73.5 24 70.2 24 1014.1 24 1013.1 24 4.7 24 4.3 24 8.0 999.9 80.2* 69.3* 99.99 999.9 110010 724050 13743 19520810 77.4 24 71.1 24 1007.9 24 1006.9 24 9.9 24 4.7 24 8.9 999.9 88.3* 72.3* 99.99 999.9 010000 724050 13743 19520811 79.1 24 69.6 24 1011.3 24 1010.3 24 8.7 24 1.7 24 6.0 999.9 88.3* 70.3* 0.00I 999.9 000000 724050 13743 19520812 80.0 24 71.1 24 1012.7 24 1011.7 24 7.3 24 2.8 24 8.0 999.9 86.4* 73.4* 99.99 999.9 010010 724050 13743 19520813 79.3 24 70.9 24 1013.1 24 1012.0 24 7.1 24 3.9 24 9.9 999.9 87.3* 72.3* 99.99 999.9 010010 724050 13743 19520814 78.2 24 62.9 24 1016.7 24 1015.7 24 9.2 24 2.7 24 8.0 999.9 87.3* 68.4* 0.00I 999.9 000000 724050 13743 19520815 79.6 24 67.4 24 1015.4 24 1014.4 24 6.7 24 3.6 24 11.1 999.9 89.2* 70.3* 0.00I 999.9 000000 724050 13743 19520816 78.7 24 71.8 24 1010.1 24 1009.1 24 7.5 24 6.7 24 12.0 999.9 88.3* 71.2* 0.00I 999.9 000000 724050 13743 19520817 77.7 24 67.5 24 1009.1 24 1008.1 24 10.9 24 7.2 24 15.0 999.9 89.2* 69.3* 99.99 999.9 010010 724050 13743 19520818 77.5 24 65.3 24 1014.7 24 1013.7 24 7.7 24 3.0 24 8.0 999.9 85.3* 67.3* 0.00I 999.9 000010 724050 13743 19520819 74.6 24 67.4 24 1016.1 24 1015.1 24 5.1 24 3.3 24 8.9 999.9 86.4* 68.4* 99.99 999.9 110010 724050 13743 19520820 75.1 24 68.1 24 1017.7 24 1016.6 24 6.5 24 4.1 24 8.0 999.9 82.4* 66.4* 99.99 999.9 010010 724050 13743 19520821 76.3 24 70.7 24 1015.6 24 1014.6 24 5.8 24 3.3 24 7.0 999.9 85.3* 70.3* 99.99 999.9 110000 724050 13743 19520822 77.6 24 66.4 24 1012.8 24 1011.8 24 9.5 24 8.9 24 18.1 999.9 84.4* 72.3* 99.99 999.9 110000 724050 13743 19520823 67.0 24 47.2 24 1020.5 24 1019.5 24 14.4 24 6.9 24 13.0 999.9 77.4* 56.3* 0.00I 999.9 000000 724050 13743 19520824 67.0 24 48.3 24 1021.1 24 1020.1 24 13.3 24 3.5 24 9.9 999.9 78.3* 55.4* 0.00I 999.9 000000 724050 13743 19520825 68.4 24 51.1 24 1022.7 24 1021.7 24 12.3 24 2.2 24 8.0 999.9 82.4* 56.3* 0.00I 999.9 000000 724050 13743 19520826 71.3 24 55.6 24 1023.9 24 1022.9 24 9.8 24 2.3 24 7.0 999.9 88.3* 59.4* 0.00I 999.9 000000 724050 13743 19520827 73.5 24 61.6 24 1022.3 24 1021.3 24 7.7 24 2.9 24 8.9 999.9 83.3* 63.3* 0.00I 999.9 000000 724050 13743 19520828 75.8 24 67.2 24 1019.4 24 1018.4 24 10.5 24 6.4 24 12.0 999.9 88.3* 68.4* 99.99 999.9 010000 724050 13743 19520829 76.8 24 70.2 24 1019.2 24 1018.1 24 10.6 24 3.0 24 7.0 999.9 82.4* 69.3* 99.99 999.9 010000 724050 13743 19520830 79.8 24 72.4 24 1017.6 24 1016.6 24 9.9 24 4.0 24 8.9 999.9 88.3* 74.3* 99.99 999.9 110000 724050 13743 19520831 77.1 24 73.4 24 1017.9 24 1016.9 24 10.3 24 5.9 24 13.0 999.9 81.3* 73.4* 99.99 999.9 110000 724050 13743 19520901 79.1 24 72.0 24 1008.6 24 1007.5 24 8.6 24 12.4 24 22.0 999.9 88.3* 72.3* 99.99 999.9 010000 724050 13743 19520902 82.0 24 72.5 24 1007.6 24 1006.5 24 12.8 24 5.4 24 11.1 999.9 91.2* 74.3* 0.00I 999.9 000000 724050 13743 19520903 72.5 24 60.4 24 1011.1 24 1010.1 24 11.2 24 9.9 24 16.9 999.9 84.4* 64.4* 99.99 999.9 010010 724050 13743 19520904 67.5 24 53.2 24 1021.2 24 1020.2 24 11.9 24 5.3 24 13.0 999.9 77.4* 59.4* 0.00I 999.9 000000 724050 13743 19520905 68.8 24 55.7 24 1023.2 24 1022.2 24 11.4 24 3.5 24 8.9 999.9 80.2* 58.3* 0.00I 999.9 000000 724050 13743 19520906 70.8 24 58.3 24 1020.1 24 1019.1 24 8.5 24 2.2 24 6.0 999.9 84.4* 59.4* 0.00I 999.9 000000 724050 13743 19520907 67.0 24 60.8 24 1018.9 24 1017.9 24 7.0 24 4.9 24 11.1 999.9 73.4* 62.4* 99.99 999.9 110000 724050 13743 19520908 62.9 24 52.9 24 1028.1 24 1026.9 24 9.8 24 5.6 24 11.1 999.9 70.3* 55.4* 0.00I 999.9 000000 724050 13743 19520909 63.2 24 51.2 24 1028.8 24 1027.8 24 10.1 24 4.8 24 9.9 999.9 74.3* 54.3* 0.00I 999.9 000000 724050 13743 19520910 66.1 24 55.2 24 1025.2 24 1024.2 24 5.6 24 1.9 24 6.0 999.9 80.2* 55.4* 0.00I 999.9 000000 724050 13743 19520911 70.3 24 57.1 24 1024.1 24 1023.1 24 6.4 24 1.7 24 6.0 999.9 85.3* 58.3* 0.00I 999.9 000000 724050 13743 19520912 73.8 24 61.1 23 1022.5 24 1021.5 24 8.7 24 1.5 24 6.0 999.9 90.3* 61.3* 0.00I 999.9 000000 724050 13743 19520913 78.4 24 66.5 24 1020.5 24 1019.5 24 9.5 24 1.2 24 5.1 999.9 94.3* 64.4* 0.00I 999.9 100000 724050 13743 19520914 79.1 24 9999.9 0 1018.1 24 1017.1 24 8.6 24 1.8 24 8.9 999.9 94.3* 66.4* 0.00I 999.9 000000 724050 13743 19520915 74.5 24 9999.9 0 1015.6 24 1014.5 24 3.2 24 4.9 24 9.9 999.9 77.4* 72.3* 99.99 999.9 110000 724050 13743 19520916 72.7 24 9999.9 0 1012.1 24 1011.1 24 11.1 24 4.5 24 15.9 999.9 82.4* 62.4* 99.99 999.9 010000 724050 13743 19520917 71.6 24 9999.9 0 1010.2 24 1009.0 24 11.7 24 2.9 24 6.0 999.9 81.3* 62.4* 0.00I 999.9 000000 724050 13743 19520918 75.1 24 9999.9 0 1011.9 24 1010.9 24 11.6 24 5.8 24 13.0 999.9 84.4* 68.4* 99.99 999.9 010000 724050 13743 19520919 72.5 24 9999.9 0 1010.5 24 1009.5 24 8.7 24 8.1 24 18.1 999.9 76.3* 65.3* 99.99 999.9 010000 724050 13743 19520920 68.0 24 9999.9 0 1015.9 24 1014.9 24 11.6 24 5.1 24 12.0 999.9 74.3* 61.3* 0.00I 999.9 000000 724050 13743 19520921 66.5 24 9999.9 0 1018.8 24 1017.8 24 8.5 24 2.7 24 11.1 999.9 75.4* 59.4* 0.00I 999.9 000000 724050 13743 19520922 61.9 24 9999.9 0 1019.9 24 1018.8 24 6.8 24 4.0 24 8.9 999.9 69.3* 56.3* 99.99 999.9 110010 724050 13743 19520923 62.5 24 53.4 8 1017.7 24 1016.6 24 8.5 24 5.3 24 9.9 999.9 73.4* 56.3* 99.99 999.9 110000 724050 13743 19520924 64.6 24 51.4 24 1023.2 24 1022.2 24 8.6 24 2.2 24 7.0 999.9 76.3* 55.4* 0.00I 999.9 100000 724050 13743 19520925 63.3 24 51.9 24 1022.8 24 1021.8 24 6.2 24 2.0 24 8.9 999.9 76.3* 52.3* 0.00I 999.9 100000 724050 13743 19520926 64.7 24 54.2 24 1016.8 24 1015.7 24 5.6 24 1.5 24 5.1 999.9 79.3* 54.3* 0.00I 999.9 100000 724050 13743 19520927 63.9 24 49.5 24 1015.7 24 1014.6 24 10.8 24 5.9 24 9.9 999.9 70.3* 56.3* 0.00I 999.9 000000 724050 13743 19520928 61.6 24 49.3 24 1020.1 24 1019.1 24 12.3 24 1.7 24 5.1 999.9 76.3* 49.3* 0.00I 999.9 000000 724050 13743 19520929 63.6 24 55.7 24 1020.1 24 1019.1 24 8.6 24 2.2 24 4.1 999.9 73.4* 54.3* 0.00I 999.9 000000 724050 13743 19520930 71.1 24 61.0 23 1014.7 23 1013.7 23 7.8 24 3.2 24 8.9 999.9 86.4* 60.3* 0.00I 999.9 100000 724050 13743 19521001 69.5 24 59.4 24 1012.4 24 1011.4 24 5.0 24 3.9 24 7.0 999.9 80.2* 60.3* 0.00I 999.9 000000 724050 13743 19521002 69.1 24 62.6 24 1007.7 24 1006.7 24 5.6 24 6.9 24 28.0 999.9 85.3* 58.3* 99.99 999.9 110010 724050 13743 19521003 55.1 24 43.3 24 1015.5 24 1014.5 24 13.8 24 13.1 24 21.0 999.9 60.3* 49.3* 99.99 999.9 010000 724050 13743 19521004 53.7 24 40.6 24 1020.7 24 1019.7 24 10.4 24 4.0 24 8.9 999.9 68.4* 41.4* 0.00I 999.9 000000 724050 13743 19521005 62.5 24 48.5 24 1017.7 24 1016.6 24 14.7 24 5.9 24 8.9 999.9 75.4* 54.3* 0.00I 999.9 000000 724050 13743 19521006 66.5 24 55.1 24 1016.2 24 1015.1 24 13.8 24 4.6 24 7.0 999.9 78.3* 56.3* 0.00I 999.9 000000 724050 13743 19521007 57.9 24 48.7 24 1017.5 24 1016.5 24 12.1 24 12.5 24 20.0 999.9 68.4* 52.3* 0.00I 999.9 000000 724050 13743 19521008 53.6 24 37.1 24 1020.7 24 1019.7 24 11.9 24 6.2 24 11.1 999.9 61.3* 48.4* 0.00I 999.9 000000 724050 13743 19521009 51.3 24 42.8 24 1018.7 24 1017.6 24 4.0 24 3.7 24 9.9 999.9 53.4* 49.3* 99.99 999.9 010000 724050 13743 19521010 54.2 24 45.4 24 1019.8 24 1018.8 24 4.6 24 6.9 24 14.0 999.9 57.4* 53.4* 99.99 999.9 010000 724050 13743 19521011 52.0 24 48.5 24 1021.3 24 1020.2 24 3.9 24 6.0 24 11.1 999.9 55.4* 49.3* 99.99 999.9 110000 724050 13743 19521012 54.8 24 50.1 24 1020.2 24 1019.2 24 5.1 24 2.3 24 9.9 999.9 65.3* 49.3* 0.00I 999.9 100000 724050 13743 19521013 60.4 24 52.7 24 1017.4 24 1016.4 24 8.4 24 5.7 24 9.9 999.9 75.4* 51.3* 0.00I 999.9 000000 724050 13743 19521014 66.1 24 53.9 24 1017.6 24 1016.5 24 10.2 24 4.9 24 12.0 999.9 81.3* 55.4* 0.00I 999.9 000000 724050 13743 19521015 62.5 24 56.0 24 1015.2 24 1014.2 24 5.6 24 1.8 24 6.0 999.9 75.4* 52.3* 0.00I 999.9 000000 724050 13743 19521016 61.5 24 46.6 24 1015.4 24 1014.4 24 9.4 24 8.3 24 18.1 999.9 65.3* 57.4* 0.00I 999.9 000000 724050 13743 19521017 54.1 24 38.9 24 1019.9 24 1018.9 24 9.8 24 2.3 24 7.0 999.9 68.4* 44.4* 0.00I 999.9 000000 724050 13743 19521018 54.9 24 43.5 24 1019.4 24 1018.4 24 6.6 24 2.4 24 7.0 999.9 69.3* 44.4* 0.00I 999.9 000000 724050 13743 19521019 59.0 24 37.8 24 1012.0 24 1011.0 24 12.8 24 5.8 24 12.0 999.9 68.4* 50.4* 0.00I 999.9 000000 724050 13743 19521020 48.5 24 25.9 24 1016.1 24 1015.1 24 13.5 24 16.0 24 29.9 999.9 61.3* 41.4* 0.00I 999.9 000000 724050 13743 19521021 41.0 24 20.3 24 1030.5 24 1029.5 24 14.3 24 11.7 24 19.0 999.9 53.4* 31.3* 0.00I 999.9 000000 724050 13743 19521022 49.8 24 26.2 24 1026.8 24 1025.8 24 12.1 24 2.6 24 11.1 999.9 66.4* 35.4* 0.00I 999.9 000000 724050 13743 19521023 53.4 24 29.1 24 1020.2 24 1019.1 24 8.4 24 2.7 24 8.9 999.9 72.3* 37.4* 0.00I 999.9 000000 724050 13743 19521024 60.6 24 32.3 24 1016.2 24 1015.2 24 7.7 24 5.6 24 14.0 999.9 75.4* 48.4* 0.00I 999.9 000000 724050 13743 19521025 57.9 24 33.4 24 1018.2 24 1017.2 24 8.4 24 5.4 24 13.0 999.9 66.4* 46.4* 0.00I 999.9 000000 724050 13743 19521026 47.8 24 29.9 24 1027.2 24 1026.1 24 9.4 24 4.5 24 9.9 999.9 59.4* 35.4* 0.00I 999.9 000000 724050 13743 19521027 53.9 24 42.2 24 1018.3 24 1017.3 24 7.1 24 5.3 24 11.1 999.9 68.4* 45.3* 0.00I 999.9 000000 724050 13743 19521028 55.5 24 41.6 24 1006.5 24 1005.5 24 6.3 24 9.6 24 28.0 999.9 63.3* 47.3* 99.99 999.9 010000 724050 13743 19521029 42.9 24 26.1 24 1015.2 24 1014.1 24 14.7 24 16.0 24 28.0 999.9 47.3* 39.4* 0.00I 999.9 000000 724050 13743 19521030 44.1 24 24.6 24 1024.5 24 1023.5 24 12.2 24 5.2 24 9.9 999.9 59.4* 33.4* 0.00I 999.9 000000 724050 13743 19521031 53.6 24 28.1 24 1020.2 24 1019.1 24 2.6 24 4.4 24 8.0 999.9 72.3* 41.4* 0.00I 999.9 000000 724050 13743 19521101 58.4 24 33.6 24 1018.5 24 1017.5 24 2.6 24 3.0 24 6.0 999.9 70.3* 46.4* 0.00I 999.9 000000 724050 13743 19521102 53.7 24 44.7 24 1021.6 24 1020.6 24 1.1 24 0.2 24 2.9 999.9 68.4* 45.3* 0.00I 999.9 000000 724050 13743 19521103 54.5 24 46.2 24 1016.6 24 1015.5 24 2.5 24 4.7 24 18.1 999.9 66.4* 50.4* 99.99 999.9 010010 724050 13743 19521104 47.7 24 27.9 24 1019.5 24 1018.4 24 13.8 24 11.5 24 22.9 999.9 54.3* 41.4* 0.00I 999.9 000000 724050 13743 19521105 43.7 24 30.5 24 1014.1 24 1013.1 24 8.0 24 3.0 24 11.1 999.9 58.3* 32.4* 0.00I 999.9 000000 724050 13743 19521106 53.1 24 29.0 24 1003.1 24 1002.1 24 9.8 24 8.0 24 21.0 999.9 64.4* 43.3* 0.00I 999.9 000000 724050 13743 19521107 46.9 24 22.8 24 1011.9 24 1010.9 24 14.8 24 17.8 24 28.0 999.9 52.3* 43.3* 0.00I 999.9 000000 724050 13743 19521108 42.4 24 23.2 24 1023.6 24 1022.6 24 10.6 24 5.3 24 15.0 999.9 52.3* 35.4* 0.00I 999.9 000000 724050 13743 19521109 49.5 24 30.0 24 1019.7 24 1018.7 24 4.6 24 2.4 24 9.9 999.9 60.3* 43.3* 0.00I 999.9 000000 724050 13743 19521110 48.9 24 40.8 24 1015.0 24 1014.0 24 2.4 24 3.3 24 8.9 999.9 54.3* 45.3* 99.99 999.9 110000 724050 13743 19521111 42.2 24 36.7 24 1017.6 24 1016.5 24 3.3 24 3.3 24 8.0 999.9 46.4* 36.3* 99.99 999.9 110000 724050 13743 19521112 44.0 24 31.7 24 1016.0 24 1015.0 24 9.1 24 6.8 24 15.9 999.9 52.3* 37.4* 0.00I 999.9 000000 724050 13743 19521113 44.3 24 31.9 24 1022.7 24 1021.7 24 5.2 24 1.6 24 7.0 999.9 56.3* 34.3* 0.00I 999.9 000000 724050 13743 19521114 47.1 24 34.9 24 1023.4 24 1022.4 24 5.3 24 2.6 24 9.9 999.9 63.3* 36.3* 0.00I 999.9 000000 724050 13743 19521115 53.1 24 49.6 24 1019.7 24 1018.7 24 5.4 24 2.0 24 8.9 999.9 57.4* 50.4* 99.99 999.9 110010 724050 13743 19521116 51.2 24 48.4 24 1019.4 24 1018.4 24 2.1 24 1.0 24 6.0 999.9 64.4* 44.4* 0.00I 999.9 100000 724050 13743 19521117 49.3 24 47.5 24 1023.1 24 1022.0 24 1.3 24 1.9 24 8.9 999.9 57.4* 42.4* 0.00I 999.9 100000 724050 13743 19521118 53.5 24 49.6 24 1026.6 24 1025.6 24 3.6 24 3.6 24 7.0 999.9 56.3* 50.4* 0.00I 999.9 100000 724050 13743 19521119 52.6 24 48.1 24 1019.2 24 1018.2 24 6.2 24 3.7 24 7.0 999.9 56.3* 49.3* 99.99 999.9 110000 724050 13743 19521120 60.6 24 58.7 24 1007.5 24 1006.4 24 5.7 24 9.3 24 15.9 999.9 62.4* 57.4* 99.99 999.9 110010 724050 13743 19521121 60.7 24 59.7 24 1004.3 24 1003.3 24 3.7 24 7.6 24 22.9 999.9 63.3* 59.4* 99.99 999.9 110000 724050 13743 19521122 49.5 24 46.0 24 1008.0 24 1007.0 24 8.4 24 6.9 24 15.0 999.9 56.3* 45.3* 99.99 999.9 110000 724050 13743 19521123 46.7 24 41.2 24 1017.9 24 1016.8 24 8.0 24 4.9 24 9.9 999.9 54.3* 40.3* 0.00I 999.9 000000 724050 13743 19521124 50.1 24 38.2 24 1026.6 24 1025.6 24 12.0 24 5.5 24 8.9 999.9 56.3* 45.3* 0.00I 999.9 000000 724050 13743 19521125 47.5 24 40.6 24 1028.4 24 1027.4 24 4.3 24 2.6 24 7.0 999.9 56.3* 41.4* 0.00I 999.9 100000 724050 13743 19521126 53.7 24 49.6 24 1021.2 24 1020.2 24 5.1 24 4.6 24 13.0 999.9 67.3* 47.3* 99.99 999.9 110000 724050 13743 19521127 53.3 24 37.2 24 1018.9 24 1017.9 24 11.7 24 7.9 24 14.0 999.9 63.3* 44.4* 99.99 999.9 010000 724050 13743 19521128 38.7 24 26.0 24 1023.8 24 1022.8 24 11.4 24 10.6 24 22.0 999.9 44.4* 35.4* 0.00I 999.9 000000 724050 13743 19521129 32.3 24 14.1 24 1028.9 24 1027.9 24 14.3 24 7.6 24 15.0 999.9 40.3* 25.3* 0.00I 999.9 000000 724050 13743 19521130 33.9 24 27.0 24 1024.6 24 1023.5 24 7.6 24 10.5 24 18.1 999.9 37.4* 31.3* 99.99 999.9 001000 724050 13743 19521201 31.8 24 18.4 24 1032.1 24 1031.1 24 10.6 24 7.0 24 15.0 999.9 38.3* 27.3* 0.00I 999.9 000000 724050 13743 19521202 33.1 24 27.8 24 1027.1 24 1026.1 24 3.2 24 2.2 24 8.9 999.9 35.4* 30.4* 99.99 999.9 111000 724050 13743 19521203 37.3 24 33.8 24 1024.3 24 1023.3 24 3.8 24 8.7 24 15.9 999.9 41.4* 35.4* 99.99 999.9 110000 724050 13743 19521204 41.2 24 33.4 24 1031.4 24 1030.4 24 7.2 24 5.7 24 9.9 999.9 44.4* 38.3* 99.99 999.9 110000 724050 13743 19521205 43.3 24 42.7 24 1017.4 24 1016.4 24 2.0 24 3.5 24 7.0 999.9 45.3* 40.3* 99.99 999.9 110000 724050 13743 19521206 42.6 24 33.0 24 1011.9 24 1010.8 24 12.0 24 10.1 24 21.0 999.9 45.3* 40.3* 99.99 999.9 010000 724050 13743 19521207 37.2 24 27.3 24 1020.8 24 1019.8 24 9.5 24 4.2 24 15.9 999.9 44.4* 30.4* 0.00I 999.9 000000 724050 13743 19521208 39.9 24 35.8 24 1022.2 24 1021.2 24 2.6 24 2.3 24 6.0 999.9 48.4* 34.3* 0.00I 999.9 100000 724050 13743 19521209 39.4 24 38.6 24 1022.9 24 1021.9 24 0.7 24 1.7 24 5.1 999.9 45.3* 33.4* 99.99 999.9 110000 724050 13743 19521210 47.7 24 47.0 24 1015.7 24 1014.7 24 1.4 24 2.8 24 9.9 999.9 60.3* 41.4* 99.99 999.9 110000 724050 13743 19521211 49.7 24 43.4 24 1003.7 24 1002.7 24 10.3 24 14.1 24 22.9 999.9 62.4* 40.3* 99.99 999.9 110000 724050 13743 19521212 38.9 24 24.8 24 1012.9 24 1011.8 24 12.2 24 7.0 24 15.9 999.9 47.3* 32.4* 0.00I 999.9 000000 724050 13743 19521213 40.9 24 27.1 24 1011.8 24 1010.8 24 13.1 24 6.0 24 11.1 999.9 44.4* 36.3* 0.00I 999.9 000000 724050 13743 19521214 36.3 24 24.6 24 1015.6 24 1014.6 24 10.9 24 4.3 24 8.9 999.9 41.4* 33.4* 99.99 999.9 011000 724050 13743 19521215 30.9 24 15.9 24 1015.2 24 1014.2 24 11.6 24 7.9 24 12.0 999.9 34.3* 26.4* 0.00I 999.9 000000 724050 13743 19521216 37.0 24 20.8 24 1015.8 24 1014.7 24 12.2 24 7.8 24 14.0 999.9 50.4* 30.4* 0.00I 999.9 000000 724050 13743 19521217 43.7 24 22.9 24 1017.1 24 1016.1 24 10.9 24 3.7 24 11.1 999.9 53.4* 34.3* 0.00I 999.9 000000 724050 13743 19521218 44.8 24 31.6 24 1017.8 24 1016.7 24 7.2 24 5.1 24 18.1 999.9 57.4* 34.3* 0.00I 999.9 000000 724050 13743 19521219 39.9 24 26.2 24 1027.7 24 1026.7 24 5.8 24 3.3 24 7.0 999.9 47.3* 32.4* 0.00I 999.9 000000 724050 13743 19521220 36.4 24 28.0 24 1027.2 24 1026.1 24 4.2 24 4.0 24 8.0 999.9 42.4* 32.4* 99.99 999.9 010000 724050 13743 19521221 41.0 24 39.1 24 1015.2 24 1014.2 24 3.8 24 8.8 24 14.0 999.9 44.4* 39.4* 99.99 999.9 110000 724050 13743 19521222 42.2 24 37.2 24 1018.7 24 1017.7 24 5.8 24 8.3 24 13.0 999.9 44.4* 41.4* 99.99 999.9 110000 724050 13743 19521223 39.9 24 34.0 24 1020.2 24 1019.2 24 4.7 24 2.0 24 6.0 999.9 42.4* 37.4* 99.99 999.9 110000 724050 13743 19521224 46.0 24 39.5 24 1018.4 24 1017.4 24 6.7 24 2.0 24 7.0 999.9 57.4* 42.4* 0.00I 999.9 100000 724050 13743 19521225 43.9 24 32.8 24 1019.0 24 1018.0 24 9.7 24 3.4 24 7.0 999.9 51.3* 38.3* 0.00I 999.9 000000 724050 13743 19521226 41.4 24 25.1 24 1017.9 24 1016.8 24 11.3 24 6.0 24 13.0 999.9 46.4* 37.4* 0.00I 999.9 000000 724050 13743 19521227 33.9 24 22.8 24 1015.3 24 1014.3 24 9.5 24 6.4 24 16.9 999.9 39.4* 28.4* 0.00I 999.9 000000 724050 13743 19521228 26.8 24 8.6 24 1022.2 24 1021.2 24 13.9 24 11.3 24 20.0 999.9 32.4* 22.5* 0.00I 999.9 000000 724050 13743 19521229 29.3 24 12.7 24 1021.7 24 1020.7 24 9.2 24 3.2 24 8.0 999.9 43.3* 21.4* 0.00I 999.9 000000 724050 13743 19521230 38.1 24 24.3 24 1016.0 24 1015.0 24 5.7 24 2.6 24 5.1 999.9 52.3* 28.4* 0.00I 999.9 000000 724050 13743 19521231 39.3 24 33.7 24 1012.5 24 1011.3 24 3.1 24 4.4 24 11.1 999.9 43.3* 35.4* 99.99 999.9 111000 fluids-1.0.22/tests/gsod/1964/0000755000175000017500000000000014302004506015103 5ustar nileshnileshfluids-1.0.22/tests/gsod/1964/724050-13743.op0000644000175000017500000014350514302004506016673 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19640101 31.0 24 23.6 24 1021.2 8 1020.1 8 5.9 24 8.6 24 15.0 999.9 39.4* 25.3* 99.99 999.9 111000 724050 13743 19640102 39.7 24 28.6 24 1009.0 8 1008.1 8 14.0 24 7.3 24 11.1 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19640103 48.1 24 27.0 24 1012.8 8 1011.8 8 14.3 24 7.4 24 12.0 999.9 61.3* 42.4* 0.00I 999.9 000000 724050 13743 19640104 49.2 24 26.5 24 1013.3 8 1012.2 8 14.9 24 9.4 24 25.1 999.9 55.4* 42.4* 0.00I 999.9 000000 724050 13743 19640105 40.7 24 20.2 24 1023.0 8 1021.7 8 14.9 24 5.1 24 9.9 999.9 53.4* 32.4* 0.00I 999.9 000000 724050 13743 19640106 44.3 24 21.8 24 1021.2 8 1020.1 8 14.9 24 6.2 24 12.0 999.9 55.4* 36.3* 99.99 999.9 010000 724050 13743 19640107 46.5 24 37.4 24 1012.8 8 1011.7 8 10.1 24 4.9 24 9.9 999.9 54.3* 42.4* 99.99 999.9 110000 724050 13743 19640108 37.8 24 25.0 24 1026.8 8 1025.6 8 10.6 24 2.4 24 6.0 999.9 42.4* 32.4* 0.00I 999.9 000000 724050 13743 19640109 42.2 24 37.8 24 1017.8 8 1016.7 8 5.3 24 4.3 24 11.1 999.9 48.4* 38.3* 99.99 999.9 110000 724050 13743 19640110 38.9 24 21.5 24 1009.2 8 1008.1 8 11.8 24 16.1 24 28.0 999.9 45.3* 31.3* 0.00I 999.9 100000 724050 13743 19640111 31.0 24 5.9 24 1027.8 8 1026.6 8 14.9 24 6.4 24 11.1 999.9 41.4* 25.3* 0.00I 999.9 000000 724050 13743 19640112 26.7 24 12.4 24 1025.9 8 1024.8 8 9.0 24 7.0 24 12.0 999.9 36.3* 19.4* 99.99 999.9 001000 724050 13743 19640113 20.5 24 12.9 24 1008.6 8 1007.9 7 1.2 24 13.2 24 20.0 999.9 24.4* 17.4* 99.99 999.9 001000 724050 13743 19640114 18.4 24 3.0 24 1015.2 8 1014.0 8 13.5 24 17.9 24 22.0 999.9 22.5* 13.5* 99.99 999.9 001000 724050 13743 19640115 21.7 24 2.5 24 1026.0 8 1024.9 8 14.7 24 4.3 24 13.0 999.9 32.4* 16.3* 0.00I 999.9 000000 724050 13743 19640116 28.4 24 3.3 24 1020.1 8 1018.9 8 13.8 24 3.5 24 7.0 999.9 42.4* 19.4* 0.00I 999.9 000000 724050 13743 19640117 35.7 24 10.8 24 1017.3 8 1016.2 8 14.3 24 3.4 24 7.0 999.9 42.4* 27.3* 0.00I 999.9 000000 724050 13743 19640118 33.5 24 18.7 24 1015.9 8 1014.8 8 9.2 24 1.7 24 6.0 999.9 47.3* 25.3* 0.00I 999.9 000000 724050 13743 19640119 36.8 24 24.8 24 1017.2 8 1016.1 8 4.3 24 0.0 24 1.0 999.9 48.4* 27.3* 0.00I 999.9 000000 724050 13743 19640120 40.6 24 35.0 24 1006.3 8 1005.3 8 4.1 24 5.7 24 8.9 999.9 45.3* 37.4* 99.99 999.9 110000 724050 13743 19640121 46.8 24 25.4 24 1003.9 8 1002.8 8 13.7 24 19.7 24 33.0 999.9 58.3* 40.3* 0.00I 999.9 000000 724050 13743 19640122 52.4 24 27.9 24 1017.1 8 1016.0 8 12.1 24 4.2 24 15.9 999.9 59.4* 43.3* 0.00I 999.9 000000 724050 13743 19640123 45.6 24 30.9 24 1021.3 8 1020.2 8 10.5 24 1.4 24 7.0 999.9 58.3* 35.4* 0.00I 999.9 000000 724050 13743 19640124 44.4 24 34.4 24 1020.6 8 1019.5 8 6.2 24 1.0 24 8.0 999.9 56.3* 36.3* 0.00I 999.9 000000 724050 13743 19640125 56.8 24 45.8 24 1005.2 8 1004.2 8 11.0 24 8.1 24 15.9 999.9 64.4* 51.3* 99.99 999.9 110000 724050 13743 19640126 45.8 24 17.1 24 1005.8 8 1004.7 8 14.9 24 10.7 24 26.0 999.9 54.3* 38.3* 0.00I 999.9 000000 724050 13743 19640127 44.9 24 17.6 24 1015.8 8 1014.7 8 13.1 24 3.9 24 9.9 999.9 50.4* 39.4* 0.00I 999.9 000000 724050 13743 19640128 39.0 24 21.0 24 1015.9 8 1014.8 8 12.1 24 11.8 24 30.9 999.9 49.3* 30.4* 0.00I 999.9 000000 724050 13743 19640129 30.3 24 9.9 24 1030.3 8 1029.2 8 14.9 24 10.5 24 20.0 999.9 40.3* 23.4* 0.00I 999.9 000000 724050 13743 19640130 37.8 24 15.5 24 1025.6 8 1024.4 8 14.4 24 6.3 24 15.0 999.9 46.4* 30.4* 0.00I 999.9 000000 724050 13743 19640131 36.0 24 21.0 24 1027.9 8 1026.8 8 9.9 24 2.5 24 11.1 999.9 41.4* 30.4* 99.99 999.9 001000 724050 13743 19640201 39.7 24 32.0 24 1014.1 8 1013.4 8 5.6 24 2.4 24 5.1 999.9 45.3* 34.3* 99.99 999.9 110000 724050 13743 19640202 43.7 24 26.4 24 1014.8 8 1013.7 8 13.4 24 15.2 24 23.9 999.9 47.3* 40.3* 0.00I 999.9 000000 724050 13743 19640203 35.6 24 13.0 24 1027.7 8 1026.6 8 14.9 24 13.7 24 20.0 999.9 41.4* 28.4* 0.00I 999.9 000000 724050 13743 19640204 37.8 24 5.6 24 1025.1 8 1024.0 8 13.8 24 8.6 24 18.1 999.9 51.3* 30.4* 0.00I 999.9 000000 724050 13743 19640205 47.5 24 9.5 24 1011.8 8 1010.7 8 14.8 24 5.4 24 16.9 999.9 61.3* 37.4* 0.00I 999.9 000000 724050 13743 19640206 46.3 24 28.1 24 998.3 8 997.2 8 9.5 24 5.3 24 12.0 999.9 55.4* 41.4* 99.99 999.9 110000 724050 13743 19640207 48.4 24 35.5 24 993.3 8 992.2 8 13.8 24 3.6 24 8.0 999.9 55.4* 41.4* 0.00I 999.9 000000 724050 13743 19640208 40.0 24 21.2 24 1001.6 8 1000.5 8 14.1 24 13.0 24 21.0 999.9 51.3* 33.4* 99.99 999.9 011000 724050 13743 19640209 37.5 24 15.4 24 1012.4 8 1011.3 8 14.9 24 5.6 24 15.9 999.9 45.3* 30.4* 0.00I 999.9 000000 724050 13743 19640210 38.2 24 22.5 24 1013.6 8 1012.5 8 12.2 24 2.0 24 5.1 999.9 43.3* 34.3* 99.99 999.9 001000 724050 13743 19640211 27.7 24 22.6 24 1018.8 8 1017.7 8 2.5 24 6.0 24 11.1 999.9 32.4* 25.3* 99.99 999.9 101000 724050 13743 19640212 29.7 24 7.9 24 1022.7 8 1021.6 8 14.9 24 3.6 24 7.0 999.9 36.3* 24.4* 0.00I 999.9 000000 724050 13743 19640213 34.2 24 15.4 24 1012.6 8 1011.5 8 12.8 24 2.3 24 4.1 999.9 43.3* 28.4* 99.99 999.9 010000 724050 13743 19640214 40.6 24 23.5 24 1008.5 8 1007.4 8 12.7 24 6.0 24 21.0 999.9 42.4* 37.4* 99.99 999.9 010000 724050 13743 19640215 35.0 24 20.7 24 1019.8 8 1018.8 8 11.6 24 2.7 24 6.0 999.9 39.4* 29.3* 99.99 999.9 001000 724050 13743 19640216 36.9 24 28.1 24 1001.5 8 1000.4 8 10.2 24 10.9 24 30.9 999.9 43.3* 32.4* 99.99 999.9 111000 724050 13743 19640217 36.0 24 14.1 24 1021.0 8 1019.9 8 14.7 24 7.9 24 14.0 999.9 46.4* 29.3* 0.00I 999.9 000000 724050 13743 19640218 35.6 24 24.1 24 1015.2 8 1014.2 8 10.6 24 3.7 24 9.9 999.9 39.4* 32.4* 99.99 999.9 111000 724050 13743 19640219 36.5 24 32.7 24 993.2 8 992.1 8 5.2 24 9.9 24 14.0 999.9 39.4* 34.3* 99.99 999.9 111000 724050 13743 19640220 36.7 24 25.4 24 1001.4 8 1000.3 8 8.1 24 13.4 24 20.0 999.9 41.4* 32.4* 99.99 999.9 111000 724050 13743 19640221 33.9 24 14.3 24 1012.2 8 1011.2 8 11.4 24 10.9 24 19.0 999.9 38.3* 29.3* 0.00I 999.9 000000 724050 13743 19640222 30.3 24 13.3 24 1017.5 8 1016.4 8 14.9 24 10.6 24 14.0 999.9 34.3* 26.4* 0.00I 999.9 000000 724050 13743 19640223 27.8 24 10.2 24 1020.5 8 1019.3 8 14.3 24 7.1 24 11.1 999.9 39.4* 21.4* 0.00I 999.9 000000 724050 13743 19640224 35.9 24 16.8 24 1016.4 8 1015.3 8 13.4 24 6.5 24 15.0 999.9 47.3* 30.4* 0.00I 999.9 000000 724050 13743 19640225 32.6 24 15.3 24 1021.3 8 1020.3 8 14.7 24 4.1 24 11.1 999.9 39.4* 24.4* 0.00I 999.9 000000 724050 13743 19640226 41.0 24 27.2 24 1010.6 8 1009.6 8 11.0 24 5.5 24 21.0 999.9 59.4* 29.3* 0.00I 999.9 100000 724050 13743 19640227 35.9 24 12.9 24 1015.8 8 1014.7 8 14.9 24 9.6 24 21.0 999.9 45.3* 31.3* 0.00I 999.9 000000 724050 13743 19640228 32.6 24 17.1 24 1013.5 8 1012.4 8 9.1 24 4.3 24 19.0 999.9 41.4* 28.4* 99.99 999.9 101000 724050 13743 19640229 34.8 24 20.9 24 1014.9 8 1013.8 8 12.4 24 11.4 24 19.0 999.9 45.3* 29.3* 99.99 999.9 101000 724050 13743 19640301 41.9 24 21.2 24 1021.8 8 1020.7 8 14.9 24 5.5 24 8.9 999.9 53.4* 35.4* 0.00I 999.9 000000 724050 13743 19640302 51.0 24 31.1 24 1018.7 8 1017.6 8 12.7 24 3.4 24 8.9 999.9 65.3* 39.4* 0.00I 999.9 000000 724050 13743 19640303 49.4 24 42.5 24 1015.1 8 1014.0 8 4.6 24 3.7 24 8.9 999.9 58.3* 45.3* 99.99 999.9 110000 724050 13743 19640304 48.6 24 45.9 24 1018.2 8 1017.1 8 4.1 24 2.9 24 9.9 999.9 50.4* 47.3* 99.99 999.9 110000 724050 13743 19640305 63.3 24 49.5 24 1002.9 8 1001.8 8 9.5 24 9.8 24 18.1 999.9 74.3* 47.3* 99.99 999.9 110000 724050 13743 19640306 48.0 24 24.0 24 1020.0 8 1018.9 8 14.9 24 11.8 24 27.0 999.9 60.3* 40.3* 0.00I 999.9 000000 724050 13743 19640307 46.2 24 30.7 24 1028.5 8 1027.3 8 14.2 24 4.4 24 8.9 999.9 58.3* 39.4* 0.00I 999.9 000000 724050 13743 19640308 50.9 24 40.5 24 1025.3 8 1024.3 8 9.3 24 2.5 24 9.9 999.9 57.4* 43.3* 99.99 999.9 010000 724050 13743 19640309 57.4 24 51.0 24 1012.0 8 1010.9 8 5.8 24 6.0 24 15.9 999.9 76.3* 46.4* 99.99 999.9 110000 724050 13743 19640310 68.1 24 49.8 24 996.9 8 995.9 8 14.9 24 17.4 24 35.0 999.9 74.3* 48.4* 0.00I 999.9 000000 724050 13743 19640311 40.5 24 23.6 24 1017.0 8 1015.9 8 14.9 24 14.7 24 26.0 999.9 47.3* 35.4* 0.00I 999.9 000000 724050 13743 19640312 40.5 24 31.1 24 1019.5 8 1018.4 8 12.5 24 2.9 24 8.0 999.9 45.3* 35.4* 99.99 999.9 010000 724050 13743 19640313 42.1 24 24.7 24 1025.2 8 1024.1 8 11.9 24 3.9 24 22.0 999.9 52.3* 34.3* 0.00I 999.9 000000 724050 13743 19640314 44.4 24 35.5 24 1021.0 8 1019.9 8 7.4 24 4.9 24 8.0 999.9 52.3* 37.4* 99.99 999.9 110000 724050 13743 19640315 51.7 24 44.8 24 1011.0 8 1009.9 8 12.5 24 7.9 24 16.9 999.9 59.4* 42.4* 99.99 999.9 110000 724050 13743 19640316 47.5 24 29.1 24 1019.2 8 1018.3 8 14.9 24 3.8 24 11.1 999.9 62.4* 39.4* 0.00I 999.9 000000 724050 13743 19640317 56.0 24 29.0 24 1012.4 8 1011.3 8 14.7 24 4.0 24 15.0 999.9 66.4* 46.4* 0.00I 999.9 000000 724050 13743 19640318 39.0 24 14.6 24 1012.0 8 1010.9 8 14.9 24 17.7 24 29.9 999.9 60.3* 28.4* 0.00I 999.9 000000 724050 13743 19640319 36.5 24 14.2 24 1021.0 8 1019.8 8 14.9 24 9.3 24 16.9 999.9 47.3* 29.3* 0.00I 999.9 000000 724050 13743 19640320 42.5 24 19.0 24 1019.5 8 1018.4 8 13.7 24 2.9 24 8.9 999.9 50.4* 36.3* 0.00I 999.9 000000 724050 13743 19640321 39.6 24 29.8 24 1011.3 8 1010.2 8 7.9 24 1.9 24 7.0 999.9 47.3* 34.3* 99.99 999.9 111000 724050 13743 19640322 39.5 24 33.2 24 1013.0 8 1011.9 8 9.9 24 10.3 24 15.0 999.9 47.3* 34.3* 99.99 999.9 011000 724050 13743 19640323 44.6 24 29.1 24 1023.7 8 1022.6 8 10.5 24 4.3 24 11.1 999.9 52.3* 36.3* 0.00I 999.9 000000 724050 13743 19640324 48.9 24 35.7 24 1024.0 8 1022.9 8 10.3 24 2.9 24 6.0 999.9 69.3* 38.3* 0.00I 999.9 000000 724050 13743 19640325 60.8 24 45.6 24 1014.3 8 1013.2 8 10.7 24 5.9 24 8.9 999.9 71.2* 52.3* 0.00I 999.9 000000 724050 13743 19640326 62.6 24 50.9 24 1000.6 8 999.5 8 13.0 24 11.5 24 23.9 999.9 72.3* 53.4* 99.99 999.9 010000 724050 13743 19640327 43.9 24 20.9 24 1014.6 8 1013.4 8 14.9 24 9.7 24 23.9 999.9 54.3* 35.4* 0.00I 999.9 000000 724050 13743 19640328 48.6 24 28.9 24 1023.5 8 1022.4 8 14.6 24 2.6 24 9.9 999.9 59.4* 40.3* 0.00I 999.9 000000 724050 13743 19640329 46.4 24 32.6 24 1014.9 8 1013.8 8 13.5 24 7.8 24 19.0 999.9 48.4* 44.4* 99.99 999.9 010000 724050 13743 19640330 35.8 24 22.9 24 1013.0 8 1011.9 8 9.9 24 9.1 24 20.0 999.9 43.3* 29.3* 99.99 999.9 101000 724050 13743 19640331 33.3 24 15.7 24 1019.3 8 1018.2 8 14.9 24 6.2 24 16.9 999.9 42.4* 26.4* 0.00I 999.9 000000 724050 13743 19640401 35.8 24 23.7 24 1020.3 8 1019.3 8 7.9 24 8.4 24 13.0 999.9 42.4* 32.4* 99.99 999.9 101000 724050 13743 19640402 38.9 24 25.9 24 1023.5 8 1022.7 8 9.2 24 5.7 24 9.9 999.9 45.3* 33.4* 99.99 999.9 110000 724050 13743 19640403 55.7 24 43.3 24 1010.6 8 1009.5 8 9.2 24 8.3 24 23.9 999.9 72.3* 44.4* 99.99 999.9 010000 724050 13743 19640404 41.1 24 19.9 24 1025.4 8 1024.3 8 13.3 24 13.7 24 25.1 999.9 51.3* 31.3* 99.99 999.9 010000 724050 13743 19640405 45.9 24 20.2 24 1030.2 8 1029.2 8 14.2 24 2.8 24 7.0 999.9 58.3* 35.4* 0.00I 999.9 000000 724050 13743 19640406 44.5 24 33.2 24 1026.3 8 1025.1 8 8.2 24 3.7 24 8.9 999.9 52.3* 40.3* 99.99 999.9 110000 724050 13743 19640407 52.4 24 50.0 24 1015.2 8 1014.1 8 3.0 24 0.7 24 4.1 999.9 63.3* 44.4* 99.99 999.9 110010 724050 13743 19640408 58.7 24 54.8 24 1007.3 8 1006.2 8 5.6 24 3.7 24 22.0 999.9 63.3* 50.4* 99.99 999.9 110000 724050 13743 19640409 47.0 24 25.9 24 1013.2 8 1012.0 8 14.7 24 19.2 24 29.9 999.9 55.4* 41.4* 0.00I 999.9 000000 724050 13743 19640410 52.6 24 24.0 24 1020.2 8 1019.1 8 14.8 24 4.7 24 20.0 999.9 65.3* 42.4* 0.00I 999.9 000000 724050 13743 19640411 57.0 24 33.1 24 1024.2 8 1023.1 8 12.0 24 2.6 24 9.9 999.9 67.3* 47.3* 0.00I 999.9 000000 724050 13743 19640412 57.7 24 36.8 24 1028.7 8 1027.6 8 12.9 24 5.3 24 15.0 999.9 72.3* 46.4* 0.00I 999.9 000000 724050 13743 19640413 62.3 24 42.2 24 1027.0 8 1026.0 8 13.5 24 5.4 24 11.1 999.9 68.4* 56.3* 99.99 999.9 010000 724050 13743 19640414 63.9 24 57.6 24 1022.2 8 1021.1 8 8.5 24 7.2 24 12.0 999.9 69.3* 61.3* 99.99 999.9 110000 724050 13743 19640415 64.3 24 47.3 24 1018.2 8 1017.1 8 12.8 24 7.8 24 23.9 999.9 68.4* 59.4* 99.99 999.9 010000 724050 13743 19640416 55.8 24 22.4 24 1026.4 8 1025.3 8 14.9 24 6.4 24 14.0 999.9 66.4* 45.3* 0.00I 999.9 000000 724050 13743 19640417 67.0 24 33.1 24 1022.8 8 1021.7 8 14.7 24 6.1 24 12.0 999.9 87.3* 55.4* 0.00I 999.9 000000 724050 13743 19640418 76.8 24 44.1 24 1018.0 8 1017.0 8 14.6 24 6.5 24 15.0 999.9 88.3* 65.3* 0.00I 999.9 000000 724050 13743 19640419 71.4 24 52.2 24 1018.7 8 1017.7 8 11.9 24 5.5 24 13.0 999.9 83.3* 61.3* 99.99 999.9 110010 724050 13743 19640420 54.7 24 51.8 24 1022.6 8 1021.5 8 2.6 24 4.6 24 8.9 999.9 59.4* 50.4* 99.99 999.9 110000 724050 13743 19640421 47.5 24 43.3 24 1024.9 8 1023.9 8 6.8 24 6.2 24 9.9 999.9 50.4* 46.4* 99.99 999.9 110010 724050 13743 19640422 50.5 24 46.8 24 1018.6 8 1017.5 8 4.7 24 3.3 24 8.0 999.9 60.3* 46.4* 99.99 999.9 110000 724050 13743 19640423 59.9 24 47.6 24 1014.1 8 1013.0 8 7.4 24 2.8 24 8.0 999.9 75.4* 49.3* 0.00I 999.9 100000 724050 13743 19640424 63.2 24 43.9 24 1013.7 8 1012.7 8 11.5 24 4.4 24 12.0 999.9 70.3* 55.4* 99.99 999.9 010000 724050 13743 19640425 53.2 24 34.0 24 1021.3 8 1020.2 8 14.3 24 5.5 24 12.0 999.9 63.3* 44.4* 0.00I 999.9 000000 724050 13743 19640426 53.5 24 37.3 24 1024.5 8 1023.4 8 12.0 24 5.2 24 12.0 999.9 63.3* 43.3* 0.00I 999.9 000000 724050 13743 19640427 54.0 24 41.8 24 1021.5 8 1020.4 8 12.9 24 4.2 24 8.0 999.9 65.3* 43.3* 99.99 999.9 010000 724050 13743 19640428 61.6 24 57.2 24 1012.8 8 1011.7 8 6.0 24 3.9 24 8.9 999.9 68.4* 58.3* 99.99 999.9 110000 724050 13743 19640429 55.1 24 51.6 24 1011.1 8 1010.0 8 6.0 24 6.9 24 9.9 999.9 66.4* 50.4* 99.99 999.9 110010 724050 13743 19640430 48.9 24 45.8 24 1014.8 8 1013.7 8 5.3 24 3.5 24 8.0 999.9 52.3* 45.3* 99.99 999.9 110000 724050 13743 19640501 50.0 24 46.4 24 1021.0 8 1019.8 8 4.7 24 4.5 24 8.0 999.9 53.4* 48.4* 99.99 999.9 110000 724050 13743 19640502 53.1 24 35.6 24 1025.2 8 1024.1 8 13.6 24 6.9 24 11.1 999.9 62.4* 46.4* 0.00I 999.9 000000 724050 13743 19640503 52.9 24 40.1 24 1023.2 8 1022.1 8 12.1 24 7.2 24 11.1 999.9 64.4* 45.3* 0.00I 999.9 000000 724050 13743 19640504 62.1 24 44.8 24 1021.6 8 1020.5 8 14.2 24 3.0 24 6.0 999.9 76.3* 50.4* 0.00I 999.9 000000 724050 13743 19640505 64.8 24 45.9 24 1023.3 8 1022.2 8 12.8 24 3.8 24 9.9 999.9 74.3* 53.4* 0.00I 999.9 000000 724050 13743 19640506 63.0 24 45.6 24 1027.1 8 1025.9 8 12.0 24 3.5 24 7.0 999.9 73.4* 52.3* 0.00I 999.9 000000 724050 13743 19640507 67.2 24 45.6 24 1020.9 8 1019.8 8 14.9 24 3.1 24 8.0 999.9 83.3* 55.4* 0.00I 999.9 000000 724050 13743 19640508 75.9 24 55.9 24 1014.2 8 1013.2 8 11.2 24 2.7 24 8.0 999.9 88.3* 62.4* 0.00I 999.9 000000 724050 13743 19640509 81.1 24 54.4 24 1007.2 8 1006.1 8 12.6 24 7.8 24 15.9 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19640510 77.8 24 43.1 24 1008.6 8 1007.5 8 13.9 24 12.9 24 27.0 999.9 83.3* 73.4* 0.00I 999.9 000000 724050 13743 19640511 73.3 24 43.0 24 1012.2 8 1011.1 8 14.9 24 5.7 24 15.0 999.9 80.2* 64.4* 0.00I 999.9 000000 724050 13743 19640512 71.7 24 52.9 24 1013.2 8 1012.2 8 9.6 24 1.5 24 6.0 999.9 81.3* 62.4* 99.99 999.9 010010 724050 13743 19640513 69.9 24 64.8 24 1010.1 8 1009.0 8 4.5 24 2.6 24 9.9 999.9 78.3* 64.4* 99.99 999.9 110010 724050 13743 19640514 65.6 24 53.2 24 1008.7 8 1007.6 8 11.6 24 8.1 24 14.0 999.9 70.3* 60.3* 99.99 999.9 110000 724050 13743 19640515 58.0 24 45.2 24 1018.7 8 1017.7 8 12.6 24 7.7 24 19.0 999.9 67.3* 50.4* 0.00I 999.9 000000 724050 13743 19640516 63.6 24 51.2 24 1023.3 8 1022.2 8 7.7 24 3.9 24 8.9 999.9 77.4* 52.3* 0.00I 999.9 000000 724050 13743 19640517 69.2 24 56.4 24 1017.7 8 1016.7 8 11.5 24 3.8 24 13.0 999.9 80.2* 62.4* 99.99 999.9 010010 724050 13743 19640518 71.7 24 54.7 24 1020.2 8 1019.1 8 12.6 24 3.3 24 12.0 999.9 82.4* 61.3* 0.00I 999.9 000000 724050 13743 19640519 76.0 24 54.6 24 1020.9 8 1019.8 8 14.7 24 5.6 24 9.9 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19640520 77.2 24 54.2 24 1016.2 8 1015.1 8 14.9 24 9.4 24 15.9 999.9 84.4* 72.3* 0.00I 999.9 000000 724050 13743 19640521 65.3 24 38.3 24 1025.7 8 1024.5 8 14.9 24 5.5 24 11.1 999.9 75.4* 53.4* 0.00I 999.9 000000 724050 13743 19640522 69.1 24 49.8 24 1022.5 8 1021.4 8 14.4 24 5.7 24 8.0 999.9 85.3* 55.4* 0.00I 999.9 000000 724050 13743 19640523 80.6 24 59.6 24 1018.8 8 1017.7 8 11.4 24 3.7 24 9.9 999.9 92.3* 67.3* 0.00I 999.9 000000 724050 13743 19640524 81.3 24 63.2 24 1017.4 8 1016.3 8 9.8 24 2.1 24 8.0 999.9 90.3* 71.2* 0.00I 999.9 000000 724050 13743 19640525 78.4 24 51.7 24 1014.1 8 1013.0 8 13.5 24 11.0 24 15.9 999.9 85.3* 73.4* 99.99 999.9 010000 724050 13743 19640526 71.6 24 42.2 24 1018.0 8 1017.0 8 14.9 24 5.9 24 12.0 999.9 79.3* 60.3* 0.00I 999.9 000000 724050 13743 19640527 76.3 24 55.1 24 1009.6 8 1008.6 8 12.9 24 7.9 24 15.0 999.9 87.3* 68.4* 0.00I 999.9 000000 724050 13743 19640528 69.0 24 43.7 24 1010.5 8 1009.4 8 12.9 24 8.3 24 18.1 999.9 83.3* 63.3* 99.99 999.9 010000 724050 13743 19640529 62.5 24 42.3 24 1012.5 8 1011.4 8 14.4 24 5.5 24 12.0 999.9 72.3* 55.4* 99.99 999.9 010000 724050 13743 19640530 63.9 24 43.0 24 1017.0 8 1015.8 8 11.8 24 3.6 24 6.0 999.9 73.4* 52.3* 0.00I 999.9 000000 724050 13743 19640531 66.1 24 45.7 24 1019.4 8 1018.3 8 13.9 24 3.7 24 8.0 999.9 74.3* 58.3* 0.00I 999.9 000000 724050 13743 19640601 61.9 24 47.7 24 1018.2 8 1017.1 8 12.1 24 2.3 24 8.0 999.9 68.4* 58.3* 99.99 999.9 010000 724050 13743 19640602 62.1 24 51.5 24 1014.7 8 1013.7 8 7.3 24 4.6 24 8.0 999.9 66.4* 58.3* 99.99 999.9 110000 724050 13743 19640603 62.8 24 53.3 24 1013.3 8 1012.2 8 6.0 24 6.2 24 15.9 999.9 73.4* 56.3* 0.00I 999.9 100000 724050 13743 19640604 67.5 24 44.1 24 1016.2 8 1015.1 8 14.3 24 4.9 24 13.0 999.9 79.3* 54.3* 0.00I 999.9 000000 724050 13743 19640605 68.9 24 44.6 24 1020.0 8 1019.0 8 14.4 24 4.5 24 9.9 999.9 76.3* 60.3* 0.00I 999.9 000000 724050 13743 19640606 69.9 24 54.4 24 1020.7 8 1019.7 8 12.1 24 5.6 24 9.9 999.9 80.2* 60.3* 99.99 999.9 010000 724050 13743 19640607 73.4 24 60.5 24 1016.4 8 1015.4 8 10.1 24 6.8 24 13.0 999.9 82.4* 68.4* 99.99 999.9 110000 724050 13743 19640608 74.5 24 60.4 24 1011.4 8 1010.3 8 10.2 24 4.4 24 9.9 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19640609 77.9 24 65.5 24 1012.3 8 1011.2 8 7.3 24 3.1 24 9.9 999.9 88.3* 68.4* 0.00I 999.9 100000 724050 13743 19640610 84.3 24 67.0 24 1009.3 8 1008.2 8 8.7 24 6.8 24 12.0 999.9 97.3* 73.4* 0.00I 999.9 000000 724050 13743 19640611 76.8 24 51.4 24 1014.1 8 1013.3 8 13.5 24 9.4 24 16.9 999.9 89.2* 68.4* 0.00I 999.9 000000 724050 13743 19640612 72.8 24 48.2 24 1020.1 8 1019.0 8 11.9 24 2.1 24 5.1 999.9 83.3* 60.3* 0.00I 999.9 000000 724050 13743 19640613 77.9 24 61.9 24 1015.1 8 1014.0 8 11.6 24 5.1 24 12.0 999.9 88.3* 73.4* 0.00I 999.9 000000 724050 13743 19640614 81.8 24 69.8 24 1012.4 8 1011.3 8 8.7 24 5.8 24 13.0 999.9 91.2* 74.3* 0.00I 999.9 000000 724050 13743 19640615 83.9 24 68.8 24 1009.8 8 1008.8 8 10.7 24 4.4 24 14.0 999.9 94.3* 75.4* 0.00I 999.9 000000 724050 13743 19640616 73.6 24 56.2 24 1011.3 8 1010.2 8 14.5 24 9.5 24 20.0 999.9 78.3* 70.3* 99.99 999.9 010010 724050 13743 19640617 67.5 24 38.6 24 1019.0 8 1018.0 8 14.9 24 5.6 24 8.9 999.9 78.3* 58.3* 0.00I 999.9 000000 724050 13743 19640618 72.8 24 52.6 24 1018.8 8 1017.8 8 11.5 24 2.6 24 8.0 999.9 84.4* 61.3* 0.00I 999.9 000000 724050 13743 19640619 78.9 24 69.5 24 1016.3 8 1015.3 8 8.7 24 7.8 24 11.1 999.9 89.2* 73.4* 99.99 999.9 010010 724050 13743 19640620 81.6 24 71.1 24 1014.8 8 1013.8 8 12.2 24 4.9 24 14.0 999.9 95.4* 71.2* 99.99 999.9 010010 724050 13743 19640621 83.7 24 69.2 24 1015.0 8 1014.0 8 14.5 24 3.9 24 7.0 999.9 92.3* 74.3* 99.99 999.9 010010 724050 13743 19640622 82.3 24 67.6 24 1015.6 8 1014.6 8 13.4 24 5.5 24 9.9 999.9 89.2* 74.3* 0.00I 999.9 000000 724050 13743 19640623 74.9 24 68.6 24 1017.8 8 1016.8 8 4.5 24 3.0 24 6.0 999.9 81.3* 70.3* 99.99 999.9 110000 724050 13743 19640624 78.8 24 72.2 24 1012.2 8 1011.2 8 6.6 24 3.7 24 11.1 999.9 86.4* 76.3* 99.99 999.9 110010 724050 13743 19640625 74.4 24 58.9 24 1016.8 8 1016.0 8 13.0 24 7.1 24 14.0 999.9 81.3* 69.3* 0.00I 999.9 000000 724050 13743 19640626 76.2 24 57.5 24 1023.1 8 1022.0 8 13.3 24 1.9 24 8.0 999.9 88.3* 65.3* 0.00I 999.9 000000 724050 13743 19640627 80.3 24 62.8 24 1019.1 8 1018.0 8 12.1 24 3.9 24 12.0 999.9 92.3* 70.3* 0.00I 999.9 000000 724050 13743 19640628 77.2 24 54.6 24 1020.3 8 1019.3 8 13.9 24 5.1 24 9.9 999.9 83.3* 71.2* 0.00I 999.9 000000 724050 13743 19640629 77.9 24 54.2 24 1023.4 8 1022.2 8 12.0 24 1.8 24 8.9 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19640630 82.9 24 62.8 24 1021.5 8 1020.3 8 12.0 24 4.0 24 8.0 999.9 94.3* 73.4* 0.00I 999.9 000000 724050 13743 19640701 84.2 24 65.5 24 1017.7 8 1016.6 8 9.6 24 3.1 24 8.0 999.9 93.4* 75.4* 0.00I 999.9 000000 724050 13743 19640702 81.3 24 65.0 24 1014.8 8 1013.7 8 10.6 24 5.5 24 18.1 999.9 88.3* 76.3* 99.99 999.9 010000 724050 13743 19640703 80.2 24 69.2 24 1011.5 8 1010.4 8 11.2 24 5.5 24 7.0 999.9 88.3* 74.3* 0.00I 999.9 000000 724050 13743 19640704 78.3 24 67.3 24 1008.0 8 1006.9 8 9.8 24 5.9 24 11.1 999.9 84.4* 74.3* 99.99 999.9 010000 724050 13743 19640705 73.0 24 51.8 24 1012.4 8 1011.2 8 14.6 24 11.4 24 18.1 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19640706 76.9 24 48.3 24 1017.9 8 1016.8 8 14.4 24 4.3 24 9.9 999.9 85.3* 65.3* 0.00I 999.9 000000 724050 13743 19640707 78.5 24 55.3 24 1018.2 8 1017.0 8 12.4 24 2.0 24 5.1 999.9 87.3* 67.3* 0.00I 999.9 000000 724050 13743 19640708 73.5 24 63.4 24 1012.3 8 1011.1 8 7.6 24 6.1 24 8.9 999.9 85.3* 67.3* 99.99 999.9 110000 724050 13743 19640709 72.5 24 62.5 24 1011.1 8 1010.0 8 12.6 24 7.3 24 11.1 999.9 79.3* 66.4* 0.00I 999.9 000000 724050 13743 19640710 75.3 24 61.3 24 1013.2 8 1011.9 8 10.8 24 1.9 24 6.0 999.9 86.4* 65.3* 0.00I 999.9 000000 724050 13743 19640711 79.8 24 61.6 24 1014.2 8 1013.1 8 11.4 24 3.1 24 6.0 999.9 90.3* 70.3* 0.00I 999.9 000000 724050 13743 19640712 76.3 24 64.7 24 1012.5 8 1011.4 8 10.1 24 7.8 24 14.0 999.9 84.4* 69.3* 99.99 999.9 010000 724050 13743 19640713 75.7 24 69.5 24 1006.6 8 1005.5 8 8.4 24 7.1 24 12.0 999.9 82.4* 72.3* 99.99 999.9 110000 724050 13743 19640714 78.7 24 63.1 24 1014.2 8 1013.0 8 10.8 24 4.8 24 9.9 999.9 85.3* 71.2* 99.99 999.9 010000 724050 13743 19640715 80.6 24 63.9 24 1019.8 8 1018.6 8 9.8 24 3.9 24 12.0 999.9 88.3* 71.2* 0.00I 999.9 000000 724050 13743 19640716 81.1 24 64.2 24 1022.1 8 1020.9 8 12.2 24 4.2 24 11.1 999.9 88.3* 73.4* 0.00I 999.9 000000 724050 13743 19640717 81.7 24 66.9 24 1022.8 8 1021.7 8 8.2 24 2.7 24 8.9 999.9 93.4* 73.4* 0.00I 999.9 000000 724050 13743 19640718 79.8 24 67.6 24 1023.4 8 1022.2 8 14.0 24 6.9 24 12.0 999.9 87.3* 73.4* 0.00I 999.9 000000 724050 13743 19640719 79.7 24 68.9 24 1020.9 8 1019.8 8 14.9 24 8.2 24 14.0 999.9 89.2* 73.4* 0.00I 999.9 000000 724050 13743 19640720 79.2 24 70.5 24 1018.5 8 1017.3 8 12.0 24 7.1 24 9.9 999.9 88.3* 72.3* 99.99 999.9 010010 724050 13743 19640721 78.4 24 70.7 24 1017.0 8 1015.9 8 10.9 24 6.2 24 9.9 999.9 87.3* 73.4* 99.99 999.9 010010 724050 13743 19640722 78.2 24 70.4 24 1016.0 8 1014.7 8 12.3 24 6.3 24 9.9 999.9 85.3* 74.3* 0.00I 999.9 000000 724050 13743 19640723 79.7 24 70.8 24 1016.6 8 1015.3 8 12.0 24 5.3 24 9.9 999.9 88.3* 74.3* 0.00I 999.9 000000 724050 13743 19640724 76.8 24 70.3 24 1017.5 8 1016.3 8 9.2 24 6.7 24 11.1 999.9 82.4* 73.4* 0.00I 999.9 000000 724050 13743 19640725 70.4 24 65.4 24 1016.8 8 1015.6 8 6.2 24 7.2 24 9.9 999.9 73.4* 68.4* 99.99 999.9 010000 724050 13743 19640726 71.4 24 65.7 24 1015.9 8 1014.7 8 7.2 24 5.6 24 8.0 999.9 80.2* 66.4* 99.99 999.9 010000 724050 13743 19640727 77.7 24 67.7 24 1017.2 8 1016.1 8 10.7 24 6.1 24 8.0 999.9 89.2* 69.3* 0.00I 999.9 000000 724050 13743 19640728 79.4 24 71.5 24 1018.4 8 1017.4 8 10.7 24 3.7 24 9.9 999.9 87.3* 72.3* 99.99 999.9 110000 724050 13743 19640729 83.0 24 72.5 24 1013.5 8 1012.4 8 7.5 24 5.3 24 12.0 999.9 94.3* 76.3* 0.00I 999.9 100010 724050 13743 19640730 80.3 24 60.1 24 1014.3 8 1013.1 8 12.6 24 8.7 24 13.0 999.9 85.3* 74.3* 0.00I 999.9 000000 724050 13743 19640731 74.4 24 51.1 24 1021.1 8 1020.0 8 14.9 24 4.8 24 9.9 999.9 83.3* 63.3* 0.00I 999.9 000000 724050 13743 19640801 72.2 24 59.5 24 1024.4 8 1023.3 8 12.8 24 4.7 24 8.0 999.9 77.4* 65.3* 0.00I 999.9 000000 724050 13743 19640802 75.3 24 59.4 24 1020.3 8 1019.2 8 12.6 24 5.9 24 8.0 999.9 86.4* 68.4* 99.99 999.9 010000 724050 13743 19640803 74.0 24 68.5 24 1012.9 8 1011.9 8 6.2 24 5.6 24 12.0 999.9 85.3* 62.4* 99.99 999.9 110000 724050 13743 19640804 67.4 24 56.5 24 1016.8 8 1015.7 8 12.6 24 5.2 24 8.0 999.9 76.3* 61.3* 99.99 999.9 110000 724050 13743 19640805 71.7 24 59.4 24 1017.2 8 1016.2 8 12.2 24 4.9 24 7.0 999.9 80.2* 66.4* 0.00I 999.9 000000 724050 13743 19640806 74.0 24 59.9 24 1018.0 8 1017.0 8 12.2 24 4.1 24 9.9 999.9 81.3* 68.4* 0.00I 999.9 000000 724050 13743 19640807 74.9 24 62.3 24 1019.6 8 1018.5 8 8.8 24 3.7 24 9.9 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19640808 79.7 24 68.6 24 1014.0 8 1012.9 8 7.0 24 5.6 24 8.9 999.9 87.3* 73.4* 99.99 999.9 010010 724050 13743 19640809 71.5 24 51.3 24 1016.7 8 1015.6 8 13.3 24 7.7 24 13.0 999.9 81.3* 63.3* 0.00I 999.9 000000 724050 13743 19640810 70.4 24 56.2 24 1018.6 8 1017.4 8 11.0 24 4.5 24 8.9 999.9 76.3* 66.4* 0.00I 999.9 000000 724050 13743 19640811 74.6 24 68.7 24 1014.7 8 1013.7 8 7.9 24 5.1 24 9.9 999.9 83.3* 69.3* 99.99 999.9 010000 724050 13743 19640812 79.9 24 66.2 24 1006.2 8 1005.2 8 13.0 24 8.5 24 16.9 999.9 88.3* 74.3* 99.99 999.9 010000 724050 13743 19640813 69.3 24 49.6 24 1012.1 8 1011.1 8 13.5 24 8.3 24 11.1 999.9 79.3* 62.4* 0.00I 999.9 000000 724050 13743 19640814 67.3 24 47.5 24 1016.8 8 1015.7 8 11.9 24 6.6 24 11.1 999.9 73.4* 62.4* 0.00I 999.9 000000 724050 13743 19640815 68.7 24 45.5 24 1018.5 8 1017.4 8 12.3 24 1.3 24 6.0 999.9 78.3* 57.4* 0.00I 999.9 000000 724050 13743 19640816 68.5 24 57.6 24 1018.5 8 1017.3 8 9.9 24 3.9 24 7.0 999.9 75.4* 63.3* 99.99 999.9 110000 724050 13743 19640817 69.9 24 62.4 24 1015.9 8 1014.8 8 4.7 24 2.9 24 9.9 999.9 81.3* 64.4* 99.99 999.9 110000 724050 13743 19640818 74.5 24 61.3 24 1013.5 8 1012.4 8 8.3 24 3.1 24 8.0 999.9 83.3* 67.3* 99.99 999.9 010000 724050 13743 19640819 70.4 24 53.7 24 1013.2 8 1012.1 8 13.5 24 8.2 24 14.0 999.9 75.4* 65.3* 0.00I 999.9 000000 724050 13743 19640820 70.1 24 53.4 24 1016.4 8 1015.3 8 12.4 24 3.6 24 8.9 999.9 82.4* 59.4* 0.00I 999.9 000000 724050 13743 19640821 78.9 24 62.7 24 1015.3 8 1014.2 8 8.0 24 4.1 24 9.9 999.9 90.3* 70.3* 99.99 999.9 010000 724050 13743 19640822 81.8 24 68.6 24 1014.3 8 1013.2 8 9.7 24 8.3 24 12.0 999.9 90.3* 74.3* 0.00I 999.9 000000 724050 13743 19640823 83.3 24 70.6 24 1013.3 8 1012.2 8 13.8 24 7.4 24 9.9 999.9 90.3* 78.3* 0.00I 999.9 000000 724050 13743 19640824 82.1 24 63.5 24 1019.0 9 1017.9 9 14.0 24 4.1 24 8.0 999.9 90.3* 74.3* 0.00I 999.9 000000 724050 13743 19640825 81.4 24 66.0 24 1018.2 8 1017.1 8 8.2 24 3.4 24 8.0 999.9 90.3* 73.4* 99.99 999.9 010000 724050 13743 19640826 80.5 24 67.0 24 1013.5 8 1012.5 8 10.4 24 5.5 24 8.9 999.9 88.3* 72.3* 0.00I 999.9 000000 724050 13743 19640827 76.4 24 60.4 24 1018.2 8 1017.1 8 12.1 24 5.1 24 8.0 999.9 82.4* 68.4* 0.00I 999.9 000000 724050 13743 19640828 74.2 24 65.3 24 1020.9 8 1019.8 8 10.3 24 3.3 24 8.0 999.9 82.4* 68.4* 0.00I 999.9 000000 724050 13743 19640829 77.3 24 69.8 24 1019.0 8 1018.0 8 7.9 24 2.4 24 6.0 999.9 85.3* 71.2* 0.00I 999.9 000000 724050 13743 19640830 78.2 24 72.7 24 1017.9 8 1016.9 8 7.9 24 3.4 24 12.0 999.9 89.2* 74.3* 99.99 999.9 110010 724050 13743 19640831 78.9 24 73.3 24 1013.8 8 1012.6 8 10.3 24 4.1 24 8.9 999.9 87.3* 74.3* 0.00I 999.9 000000 724050 13743 19640901 75.7 24 63.0 24 1012.7 8 1011.6 8 13.5 24 9.1 24 22.0 999.9 81.3* 71.2* 0.00I 999.9 000000 724050 13743 19640902 72.6 24 52.7 24 1017.4 8 1016.4 8 14.0 24 8.1 24 12.0 999.9 79.3* 65.3* 0.00I 999.9 000000 724050 13743 19640903 71.7 24 51.0 24 1019.4 8 1018.3 8 14.0 24 2.8 24 8.9 999.9 83.3* 59.4* 0.00I 999.9 000000 724050 13743 19640904 77.2 24 58.4 24 1016.4 8 1015.4 8 11.8 24 5.0 24 8.9 999.9 91.2* 66.4* 0.00I 999.9 000000 724050 13743 19640905 80.8 24 62.1 24 1011.4 8 1010.5 8 10.6 24 7.0 24 14.0 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19640906 74.0 24 47.8 24 1018.8 8 1017.8 8 14.9 24 5.9 24 15.9 999.9 83.3* 63.3* 0.00I 999.9 000000 724050 13743 19640907 73.0 24 54.5 24 1024.2 8 1023.1 8 13.6 24 2.9 24 8.0 999.9 86.4* 62.4* 0.00I 999.9 000000 724050 13743 19640908 73.6 24 57.6 24 1024.4 8 1023.3 8 11.9 24 3.5 24 8.9 999.9 84.4* 64.4* 0.00I 999.9 000000 724050 13743 19640909 75.2 24 59.6 24 1020.8 8 1019.7 8 11.1 24 3.6 24 8.9 999.9 88.3* 64.4* 0.00I 999.9 000000 724050 13743 19640910 76.5 24 65.7 24 1018.5 8 1017.5 8 9.6 24 4.2 24 9.9 999.9 88.3* 68.4* 0.00I 999.9 100000 724050 13743 19640911 81.1 24 71.4 24 1014.7 8 1013.7 8 10.6 24 6.8 24 9.9 999.9 90.3* 75.4* 0.00I 999.9 100000 724050 13743 19640912 70.5 24 53.6 24 1015.2 8 1014.2 8 14.1 24 7.9 24 12.0 999.9 85.3* 62.4* 99.99 999.9 010000 724050 13743 19640913 57.6 24 49.1 24 1017.6 8 1016.5 8 10.9 24 8.5 24 11.1 999.9 65.3* 52.3* 99.99 999.9 110000 724050 13743 19640914 60.1 24 40.8 24 1014.2 8 1013.2 8 12.3 24 6.6 24 13.0 999.9 73.4* 51.3* 0.00I 999.9 000000 724050 13743 19640915 67.3 24 43.6 24 1018.0 8 1016.9 8 11.4 24 1.5 24 5.1 999.9 79.3* 55.4* 0.00I 999.9 000000 724050 13743 19640916 68.5 24 51.3 24 1024.3 8 1023.2 8 9.7 24 3.2 24 8.0 999.9 80.2* 57.4* 0.00I 999.9 000000 724050 13743 19640917 71.9 24 57.5 24 1023.7 8 1022.6 8 10.7 24 6.8 24 13.0 999.9 82.4* 64.4* 0.00I 999.9 000000 724050 13743 19640918 72.3 24 60.7 24 1021.3 8 1020.2 8 9.4 24 5.0 24 8.0 999.9 78.3* 66.4* 0.00I 999.9 000000 724050 13743 19640919 70.4 24 64.5 24 1021.1 8 1020.0 8 6.2 24 5.1 24 9.9 999.9 74.3* 65.3* 99.99 999.9 110000 724050 13743 19640920 64.8 24 62.1 24 1024.7 8 1023.6 8 6.6 24 6.7 24 9.9 999.9 67.3* 62.4* 99.99 999.9 110000 724050 13743 19640921 65.8 24 56.0 24 1026.1 8 1025.0 8 8.5 24 5.6 24 8.9 999.9 72.3* 61.3* 0.00I 999.9 000000 724050 13743 19640922 65.8 24 56.0 24 1019.6 8 1018.6 8 11.6 24 6.9 24 11.1 999.9 74.3* 59.4* 0.00I 999.9 000000 724050 13743 19640923 71.5 24 61.2 24 1008.9 8 1007.9 8 11.2 24 3.8 24 8.0 999.9 85.3* 62.4* 0.00I 999.9 000000 724050 13743 19640924 75.2 24 53.9 24 1008.3 8 1007.3 8 14.1 24 6.4 24 14.0 999.9 80.2* 65.3* 0.00I 999.9 000000 724050 13743 19640925 65.0 24 40.6 24 1016.5 8 1015.4 8 14.8 24 6.0 24 15.0 999.9 71.2* 55.4* 0.00I 999.9 000000 724050 13743 19640926 63.4 24 45.5 24 1027.8 8 1026.8 8 11.6 24 2.2 24 8.0 999.9 75.4* 52.3* 0.00I 999.9 000000 724050 13743 19640927 66.4 24 54.0 24 1026.5 8 1025.4 8 12.5 24 4.7 24 8.9 999.9 77.4* 58.3* 0.00I 999.9 000000 724050 13743 19640928 61.8 24 56.5 24 1023.2 8 1022.0 8 8.7 24 4.9 24 11.1 999.9 74.3* 51.3* 99.99 999.9 110000 724050 13743 19640929 54.9 24 53.8 24 1019.8 8 1018.8 8 4.2 24 1.5 24 6.0 999.9 62.4* 51.3* 99.99 999.9 110000 724050 13743 19640930 60.3 24 57.1 24 1019.2 8 1018.1 8 4.9 24 4.2 24 8.9 999.9 62.4* 58.3* 99.99 999.9 110000 724050 13743 19641001 58.4 24 53.6 24 1025.6 8 1024.5 8 5.3 24 2.0 24 6.0 999.9 62.4* 54.3* 99.99 999.9 010000 724050 13743 19641002 62.5 24 61.3 24 1020.9 8 1019.8 8 2.9 24 2.3 24 6.0 999.9 68.4* 59.4* 99.99 999.9 110000 724050 13743 19641003 66.3 24 50.6 24 1015.7 8 1014.6 8 12.1 24 7.7 24 18.1 999.9 72.3* 59.4* 99.99 999.9 010000 724050 13743 19641004 62.1 24 54.4 24 1014.2 8 1013.1 8 10.9 24 4.2 24 8.0 999.9 65.3* 57.4* 99.99 999.9 110000 724050 13743 19641005 57.4 24 41.8 24 1013.8 8 1012.7 8 13.8 24 7.4 24 13.0 999.9 67.3* 53.4* 0.00I 999.9 000000 724050 13743 19641006 51.0 24 36.3 24 1020.9 8 1019.8 8 14.5 24 4.1 24 9.9 999.9 59.4* 42.4* 0.00I 999.9 000000 724050 13743 19641007 50.8 24 32.8 24 1025.3 8 1024.3 8 14.4 24 3.7 24 8.0 999.9 59.4* 43.3* 0.00I 999.9 000000 724050 13743 19641008 50.2 24 34.9 24 1025.2 8 1024.1 8 8.3 24 1.7 24 6.0 999.9 62.4* 40.3* 0.00I 999.9 000000 724050 13743 19641009 55.3 24 44.4 24 1018.3 8 1017.2 8 9.6 24 1.9 24 6.0 999.9 68.4* 46.4* 0.00I 999.9 000000 724050 13743 19641010 52.3 24 32.9 24 1018.9 8 1017.8 8 13.3 24 7.4 24 15.9 999.9 63.3* 47.3* 0.00I 999.9 000000 724050 13743 19641011 45.9 24 24.7 24 1027.5 8 1026.4 8 14.9 24 9.3 24 18.1 999.9 55.4* 37.4* 0.00I 999.9 000000 724050 13743 19641012 48.9 24 33.8 24 1026.7 8 1025.6 8 11.3 24 2.5 24 6.0 999.9 63.3* 37.4* 0.00I 999.9 100000 724050 13743 19641013 58.1 24 41.5 24 1021.2 8 1020.0 8 9.9 24 2.4 24 8.0 999.9 75.4* 46.4* 0.00I 999.9 000000 724050 13743 19641014 61.5 24 46.0 24 1021.1 8 1020.0 8 9.9 24 1.6 24 5.1 999.9 72.3* 51.3* 0.00I 999.9 000000 724050 13743 19641015 59.0 24 46.3 24 1020.0 8 1018.8 8 6.5 24 1.0 24 5.1 999.9 71.2* 48.4* 0.00I 999.9 000000 724050 13743 19641016 60.8 24 48.8 24 1012.2 8 1011.1 8 7.3 24 5.4 24 12.0 999.9 67.3* 56.3* 99.99 999.9 110000 724050 13743 19641017 61.3 24 60.4 24 1003.4 8 1002.3 8 4.3 24 8.0 24 12.0 999.9 62.4* 60.3* 99.99 999.9 110000 724050 13743 19641018 64.9 24 53.2 24 1006.1 8 1005.1 8 12.6 24 7.9 24 12.0 999.9 75.4* 57.4* 0.00I 999.9 000000 724050 13743 19641019 56.3 24 48.2 23 1010.0 8 1008.8 8 10.5 24 8.4 24 30.9 999.9 69.3* 49.3* 99.99 999.9 010000 724050 13743 19641020 49.2 24 39.6 24 1017.9 8 1016.8 8 14.0 24 6.2 24 9.9 999.9 52.3* 46.4* 0.00I 999.9 000000 724050 13743 19641021 49.3 24 31.8 24 1016.4 8 1015.3 8 14.1 24 6.4 24 15.0 999.9 60.3* 40.3* 99.99 999.9 010000 724050 13743 19641022 54.6 24 35.1 24 1017.4 8 1016.3 8 14.9 24 7.9 24 15.9 999.9 59.4* 48.4* 0.00I 999.9 000000 724050 13743 19641023 48.8 24 35.8 24 1024.8 8 1023.7 8 12.7 24 6.8 24 16.9 999.9 54.3* 41.4* 0.00I 999.9 000000 724050 13743 19641024 45.6 24 31.3 24 1025.7 8 1024.6 8 13.8 24 2.4 24 8.0 999.9 56.3* 36.3* 0.00I 999.9 000000 724050 13743 19641025 50.4 24 36.4 24 1023.4 8 1022.3 8 10.1 24 1.5 24 8.0 999.9 65.3* 38.3* 0.00I 999.9 000000 724050 13743 19641026 59.6 24 42.7 24 1023.9 8 1022.9 8 9.2 24 1.0 24 4.1 999.9 77.4* 47.3* 0.00I 999.9 000000 724050 13743 19641027 60.7 24 46.1 24 1025.7 8 1024.6 8 9.1 24 0.6 24 2.9 999.9 74.3* 47.3* 0.00I 999.9 000000 724050 13743 19641028 59.3 24 46.0 24 1023.8 8 1022.7 8 9.8 24 1.4 24 8.0 999.9 71.2* 48.4* 0.00I 999.9 000000 724050 13743 19641029 60.7 24 50.4 24 1018.6 8 1017.3 8 8.5 24 1.4 24 8.0 999.9 70.3* 55.4* 0.00I 999.9 000000 724050 13743 19641030 58.4 24 46.9 24 1016.8 8 1015.7 8 10.2 24 5.1 24 14.0 999.9 64.4* 54.3* 0.00I 999.9 000000 724050 13743 19641031 52.6 24 36.5 24 1024.9 8 1023.9 8 11.3 24 2.0 24 7.0 999.9 63.3* 44.4* 0.00I 999.9 000000 724050 13743 19641101 51.5 24 36.9 24 1029.3 8 1028.2 8 7.7 24 1.4 24 6.0 999.9 65.3* 41.4* 0.00I 999.9 000000 724050 13743 19641102 54.2 24 38.1 24 1025.4 8 1024.3 8 8.2 24 1.6 24 6.0 999.9 68.4* 43.3* 0.00I 999.9 000000 724050 13743 19641103 52.6 24 43.9 24 1023.4 8 1022.4 8 5.2 24 0.7 24 4.1 999.9 58.3* 46.4* 0.00I 999.9 100000 724050 13743 19641104 53.2 24 42.9 24 1023.5 8 1022.5 8 4.6 24 0.9 24 2.9 999.9 68.4* 44.4* 0.00I 999.9 000000 724050 13743 19641105 56.8 24 42.8 24 1019.6 8 1018.5 8 5.3 24 4.0 24 21.0 999.9 73.4* 46.4* 0.00I 999.9 000000 724050 13743 19641106 54.5 24 37.2 24 1017.0 8 1015.9 8 14.2 24 13.5 24 20.0 999.9 65.3* 49.3* 0.00I 999.9 000000 724050 13743 19641107 52.4 24 37.8 24 1020.3 8 1019.2 8 12.2 24 2.9 24 9.9 999.9 67.3* 41.4* 0.00I 999.9 000000 724050 13743 19641108 52.2 24 40.8 24 1018.5 8 1017.5 8 6.2 24 0.8 24 6.0 999.9 64.4* 42.4* 0.00I 999.9 000000 724050 13743 19641109 52.8 24 42.2 24 1018.8 8 1017.7 8 5.9 24 3.7 24 8.9 999.9 64.4* 44.4* 0.00I 999.9 000000 724050 13743 19641110 55.7 24 41.2 24 1019.0 8 1017.9 8 5.9 24 1.4 24 8.9 999.9 68.4* 44.4* 0.00I 999.9 000000 724050 13743 19641111 59.0 24 41.9 24 1016.8 8 1015.7 8 5.1 24 1.2 24 6.0 999.9 73.4* 50.4* 0.00I 999.9 000000 724050 13743 19641112 60.5 24 42.5 24 1013.7 8 1012.6 8 8.5 24 1.7 24 7.0 999.9 73.4* 49.3* 0.00I 999.9 000000 724050 13743 19641113 65.5 24 45.5 24 1012.0 8 1011.0 8 12.7 24 7.5 24 16.9 999.9 74.3* 60.3* 99.99 999.9 010000 724050 13743 19641114 59.8 24 37.1 24 1024.6 8 1023.5 8 14.9 24 7.7 24 14.0 999.9 66.4* 52.3* 0.00I 999.9 000000 724050 13743 19641115 53.7 24 39.0 24 1029.8 8 1028.8 8 10.8 24 1.6 24 8.0 999.9 69.3* 43.3* 0.00I 999.9 000000 724050 13743 19641116 60.9 24 47.0 24 1020.2 8 1019.1 8 8.4 24 2.3 24 6.0 999.9 67.3* 56.3* 99.99 999.9 010000 724050 13743 19641117 60.7 24 38.6 24 1012.8 8 1011.7 8 14.4 24 11.7 24 22.9 999.9 71.2* 50.4* 0.00I 999.9 000000 724050 13743 19641118 55.2 24 32.2 24 1011.5 8 1010.4 8 14.9 24 7.1 24 18.1 999.9 58.3* 52.3* 0.00I 999.9 000000 724050 13743 19641119 50.1 24 41.0 24 1010.6 8 1009.5 8 7.3 24 4.1 24 8.0 999.9 55.4* 45.3* 99.99 999.9 110000 724050 13743 19641120 52.2 24 42.8 24 1004.6 8 1003.5 8 10.7 24 12.8 24 23.9 999.9 65.3* 45.3* 99.99 999.9 110000 724050 13743 19641121 41.0 24 24.3 24 1019.3 8 1018.2 8 14.2 24 9.6 24 22.0 999.9 43.3* 36.3* 0.00I 999.9 000000 724050 13743 19641122 30.6 24 12.2 24 1035.2 8 1034.0 8 14.9 24 9.5 24 22.0 999.9 36.3* 23.4* 0.00I 999.9 000000 724050 13743 19641123 35.4 24 16.1 24 1037.2 8 1036.0 8 11.6 24 2.1 24 8.9 999.9 47.3* 26.4* 0.00I 999.9 000000 724050 13743 19641124 44.0 24 22.9 24 1030.7 8 1029.6 8 12.1 24 2.4 24 7.0 999.9 57.4* 34.3* 0.00I 999.9 000000 724050 13743 19641125 52.6 24 47.1 24 1018.2 8 1017.1 8 8.0 24 5.3 24 14.0 999.9 61.3* 48.4* 99.99 999.9 110000 724050 13743 19641126 56.7 24 46.5 24 1003.6 8 1002.5 8 13.8 24 8.6 24 21.0 999.9 62.4* 50.4* 99.99 999.9 010000 724050 13743 19641127 53.4 24 39.9 24 1019.2 8 1018.1 8 11.1 24 3.3 24 8.9 999.9 61.3* 48.4* 0.00I 999.9 000000 724050 13743 19641128 50.3 24 44.8 24 1024.2 8 1023.1 8 5.6 24 3.5 24 9.9 999.9 58.3* 45.3* 0.00I 999.9 000000 724050 13743 19641129 51.8 24 37.0 24 1022.5 8 1021.4 8 11.6 24 8.1 24 18.1 999.9 55.4* 46.4* 0.00I 999.9 000000 724050 13743 19641130 38.4 24 21.2 24 1020.1 8 1019.0 8 10.4 24 9.5 24 18.1 999.9 48.4* 31.3* 99.99 999.9 101000 724050 13743 19641201 27.2 24 14.1 24 1020.9 8 1019.7 8 14.9 24 18.8 24 25.1 999.9 32.4* 23.4* 0.00I 999.9 000000 724050 13743 19641202 31.3 24 13.3 24 1021.0 8 1019.9 8 11.3 24 5.8 24 9.9 999.9 40.3* 27.3* 0.00I 999.9 000000 724050 13743 19641203 42.6 24 31.4 24 1017.4 8 1016.3 8 7.9 24 5.0 24 9.9 999.9 47.3* 38.3* 99.99 999.9 010000 724050 13743 19641204 52.5 24 50.8 24 1015.7 8 1014.6 8 2.4 24 3.6 24 9.9 999.9 65.3* 46.4* 99.99 999.9 110000 724050 13743 19641205 50.2 24 49.6 24 1014.9 8 1013.8 8 1.0 24 2.6 24 6.0 999.9 63.3* 47.3* 99.99 999.9 110000 724050 13743 19641206 40.5 24 33.0 24 1019.3 8 1018.2 8 9.4 24 11.8 24 18.1 999.9 47.3* 34.3* 99.99 999.9 110000 724050 13743 19641207 31.5 24 14.8 24 1026.4 8 1025.3 8 13.1 24 7.9 24 11.1 999.9 38.3* 26.4* 0.00I 999.9 000000 724050 13743 19641208 33.6 24 21.6 24 1021.8 8 1020.6 8 10.2 24 3.2 24 6.0 999.9 44.4* 27.3* 0.00I 999.9 000000 724050 13743 19641209 40.1 24 28.4 24 1022.0 8 1020.9 8 8.9 24 5.5 24 11.1 999.9 43.3* 35.4* 0.00I 999.9 000000 724050 13743 19641210 35.4 24 23.5 24 1033.7 8 1032.6 8 7.0 24 1.7 24 6.0 999.9 43.3* 27.3* 0.00I 999.9 000000 724050 13743 19641211 42.4 24 34.2 24 1030.0 8 1028.9 8 7.5 24 3.4 24 7.0 999.9 55.4* 35.4* 0.00I 999.9 000000 724050 13743 19641212 53.5 24 49.3 24 1017.9 8 1017.0 8 5.3 24 1.6 24 4.1 999.9 56.3* 50.4* 99.99 999.9 110000 724050 13743 19641213 49.4 24 48.5 24 1018.2 8 1017.1 8 1.5 24 1.8 24 7.0 999.9 54.3* 45.3* 0.00I 999.9 100000 724050 13743 19641214 44.5 24 29.2 24 1018.8 8 1017.7 8 13.5 24 8.5 24 20.0 999.9 52.3* 36.3* 0.00I 999.9 100000 724050 13743 19641215 35.2 24 17.4 24 1022.4 8 1021.3 8 14.9 24 14.9 24 25.1 999.9 42.4* 30.4* 0.00I 999.9 000000 724050 13743 19641216 29.9 24 15.6 24 1029.6 8 1028.4 8 11.6 24 5.6 24 12.0 999.9 40.3* 24.4* 0.00I 999.9 000000 724050 13743 19641217 43.6 24 29.9 24 1020.8 8 1019.7 8 11.1 24 7.4 24 9.9 999.9 52.3* 37.4* 99.99 999.9 010000 724050 13743 19641218 37.8 24 25.3 24 1021.3 8 1020.2 8 12.6 24 20.3 24 33.0 999.9 53.4* 24.4* 0.00I 999.9 000000 724050 13743 19641219 25.5 24 10.0 24 1042.0 8 1040.8 8 14.7 24 7.2 24 15.9 999.9 32.4* 19.4* 0.00I 999.9 000000 724050 13743 19641220 33.7 24 27.4 24 1029.7 8 1028.6 8 7.0 24 4.7 24 15.9 999.9 39.4* 29.3* 99.99 999.9 111000 724050 13743 19641221 34.4 24 24.4 24 1029.2 8 1028.1 8 10.8 24 6.4 24 15.9 999.9 38.3* 29.3* 0.00I 999.9 000000 724050 13743 19641222 36.3 24 28.3 24 1022.9 8 1021.8 8 8.3 24 3.0 24 6.0 999.9 42.4* 32.4* 0.00I 999.9 000000 724050 13743 19641223 36.2 24 31.6 24 1014.0 8 1013.0 8 5.5 24 4.6 24 8.0 999.9 39.4* 33.4* 0.00I 999.9 100000 724050 13743 19641224 45.3 24 42.9 24 1008.0 8 1006.9 8 2.9 24 2.6 24 5.1 999.9 51.3* 39.4* 99.99 999.9 110000 724050 13743 19641225 60.1 24 52.3 24 1006.5 8 1005.4 8 8.5 24 7.2 24 14.0 999.9 69.3* 48.4* 0.00I 999.9 100000 724050 13743 19641226 62.1 24 56.7 24 1011.6 8 1010.6 8 12.8 24 6.7 24 15.0 999.9 69.3* 54.3* 99.99 999.9 010000 724050 13743 19641227 57.8 24 56.3 24 1014.7 8 1013.6 8 3.5 24 4.1 24 16.9 999.9 64.4* 43.3* 99.99 999.9 110000 724050 13743 19641228 42.4 24 34.7 24 1021.8 8 1020.6 8 14.3 24 10.3 24 14.0 999.9 48.4* 38.3* 99.99 999.9 010000 724050 13743 19641229 38.1 24 30.3 24 1027.1 8 1026.0 8 9.2 24 2.5 24 6.0 999.9 42.4* 35.4* 0.00I 999.9 000000 724050 13743 19641230 47.1 24 40.8 24 1020.7 8 1019.6 8 5.6 24 2.8 24 6.0 999.9 57.4* 41.4* 0.00I 999.9 000000 724050 13743 19641231 48.8 24 32.1 24 1022.8 8 1021.7 8 14.2 24 11.7 24 32.1 999.9 57.4* 41.4* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1942/0000755000175000017500000000000014302004506015077 5ustar nileshnileshfluids-1.0.22/tests/gsod/1942/724050-13743.op0000644000175000017500000014327214302004506016670 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19420101 40.2 24 33.2 24 1021.4 24 1019.1 24 5.9 24 5.1 24 17.1 999.9 42.1* 37.9* 99.99 999.9 011000 724050 13743 19420102 50.8 24 40.9 24 1002.4 24 1000.0 24 8.7 24 15.2 24 22.0 999.9 59.0* 39.0* 99.99 999.9 110000 724050 13743 19420103 34.8 24 21.3 24 1020.6 24 1018.3 23 9.6 24 7.5 24 15.9 999.9 39.0* 30.0* 0.00I 999.9 000000 724050 13743 19420104 34.5 24 30.9 24 1016.5 24 1014.1 24 3.7 24 12.6 24 17.1 999.9 39.0* 30.9* 99.99 999.9 111000 724050 13743 19420105 33.2 24 22.3 24 1026.0 24 1023.7 24 6.2 24 8.3 24 12.0 999.9 36.0* 32.0* 0.00I 999.9 100000 724050 13743 19420106 19.6 24 0.9 24 1030.4 24 1028.0 24 11.2 24 13.2 24 22.9 999.9 30.9* 12.0* 0.00I 999.9 000000 724050 13743 19420107 22.0 24 5.0 24 1027.8 24 1025.4 24 6.5 24 9.4 24 13.0 999.9 25.0* 19.0* 0.00I 999.9 000000 724050 13743 19420108 12.7 24 0.0 24 1029.1 24 1026.8 22 6.7 24 12.5 24 21.0 999.9 21.0* 8.1* 99.99 999.9 001000 724050 13743 19420109 15.2 24 4.4 24 1028.9 24 1026.2 24 4.9 24 7.3 24 15.9 999.9 25.0* 8.1* 0.00I 999.9 000000 724050 13743 19420110 21.3 24 10.7 24 1021.9 24 1019.6 24 4.4 24 10.6 24 19.0 999.9 26.1* 17.1* 99.99 999.9 001000 724050 13743 19420111 17.1 24 3.9 24 1026.2 24 1023.7 24 6.8 24 10.2 24 21.0 999.9 34.0* 6.1* 0.00I 999.9 000000 724050 13743 19420112 25.4 24 15.0 24 1028.4 24 1026.1 24 5.0 24 7.2 24 14.0 999.9 39.0* 14.0* 0.00I 999.9 000000 724050 13743 19420113 37.5 24 23.8 24 1024.4 24 1022.0 24 8.4 24 8.5 24 19.0 999.9 43.0* 32.0* 0.00I 999.9 000000 724050 13743 19420114 36.6 24 26.3 24 1025.1 24 1022.7 24 5.7 24 8.8 24 21.0 999.9 54.0* 26.1* 0.00I 999.9 000000 724050 13743 19420115 46.3 24 25.6 24 1016.1 24 1013.7 24 9.3 24 11.1 24 17.1 999.9 52.0* 37.0* 0.00I 999.9 000000 724050 13743 19420116 40.1 24 20.0 24 1020.5 24 1018.2 24 12.8 24 14.2 24 20.0 999.9 46.0* 34.0* 0.00I 999.9 000000 724050 13743 19420117 29.9 24 13.9 24 1033.9 24 1031.5 24 9.6 24 8.4 24 21.0 999.9 42.1* 19.0* 0.00I 999.9 000000 724050 13743 19420118 45.5 24 30.6 24 1024.1 24 1021.7 24 6.9 24 11.5 24 17.1 999.9 63.0* 35.1* 0.00I 999.9 000000 724050 13743 19420119 54.4 24 49.2 24 1013.8 24 1011.4 24 6.7 24 8.4 24 19.0 999.9 57.9* 52.0* 99.99 999.9 110000 724050 13743 19420120 43.6 24 33.2 24 1013.4 24 1011.0 24 10.8 24 16.2 24 22.9 999.9 52.0* 39.0* 99.99 999.9 110000 724050 13743 19420121 38.8 12 27.2 11 1017.3 12 1014.9 12 13.8 12 4.6 12 8.0 999.9 39.9* 37.9* 0.00I 999.9 000000 724050 13743 19420122 35.4 23 26.4 23 1016.3 23 1013.9 23 3.8 23 5.1 23 11.1 999.9 46.0* 28.9* 0.00I 999.9 000000 724050 13743 19420123 42.6 24 28.9 24 1016.0 24 1013.6 24 9.0 24 9.6 24 18.1 999.9 55.9* 32.0* 0.00I 999.9 000000 724050 13743 19420124 45.4 24 30.3 24 1012.1 24 1009.7 24 6.9 24 6.9 24 13.0 999.9 64.0* 32.0* 0.00I 999.9 000000 724050 13743 19420125 42.9 24 34.4 24 1010.6 24 1008.2 24 3.9 24 9.9 24 15.9 999.9 52.0* 35.1* 0.00I 999.9 000000 724050 13743 19420126 40.1 24 36.3 24 1012.7 24 1010.3 24 5.5 24 12.0 24 21.0 999.9 45.0* 39.0* 99.99 999.9 110000 724050 13743 19420127 39.1 24 35.5 24 1015.8 24 1013.5 24 4.2 24 6.1 24 8.0 999.9 41.0* 37.9* 99.99 999.9 110000 724050 13743 19420128 37.5 24 35.1 24 1009.5 24 1007.1 24 2.7 24 16.4 24 25.1 999.9 39.0* 35.1* 99.99 999.9 111000 724050 13743 19420129 32.5 24 15.8 24 1017.4 24 1015.0 24 13.0 24 16.3 24 28.0 999.9 39.0* 27.0* 0.00I 999.9 000000 724050 13743 19420130 29.3 24 9.3 24 1024.0 24 1021.6 24 10.6 24 8.8 24 14.0 999.9 35.1* 25.0* 0.00I 999.9 000000 724050 13743 19420131 38.1 24 32.7 24 1007.5 24 1005.1 24 7.7 24 7.4 24 17.1 999.9 52.0* 30.0* 99.99 999.9 110000 724050 13743 19420201 39.8 24 25.2 24 1003.6 24 1001.2 24 13.0 24 16.5 24 35.0 999.9 44.1* 35.1* 0.00I 999.9 000000 724050 13743 19420202 28.3 24 9.5 24 1015.5 24 1013.1 24 13.8 24 15.1 24 22.0 999.9 34.0* 25.0* 99.99 999.9 001000 724050 13743 19420203 18.7 24 -4.6 23 1027.6 24 1025.2 24 14.9 24 15.6 24 26.0 999.9 28.9* 12.0* 0.00I 999.9 000000 724050 13743 19420204 26.9 24 9.1 24 1028.3 24 1026.0 24 6.1 24 5.8 24 11.1 999.9 42.1* 18.0* 0.00I 999.9 000000 724050 13743 19420205 39.1 24 29.1 24 1014.3 24 1012.0 24 5.4 24 14.0 24 28.0 999.9 46.9* 34.0* 99.99 999.9 011000 724050 13743 19420206 40.8 24 35.5 24 1011.2 24 1008.7 23 3.1 24 8.7 24 15.9 999.9 48.9* 30.9* 99.99 999.9 110000 724050 13743 19420207 41.8 24 38.0 24 993.8 24 991.4 24 6.9 24 15.0 24 26.0 999.9 46.0* 37.9* 99.99 999.9 110000 724050 13743 19420208 38.1 24 24.1 24 1004.3 24 1001.9 24 10.4 24 21.2 24 30.1 999.9 43.0* 33.1* 99.99 999.9 010000 724050 13743 19420209 27.6 23 7.4 23 1023.0 23 1020.6 23 14.6 23 14.9 23 25.1 999.9 39.0* 19.9* 0.00I 999.9 000000 724050 13743 19420210 31.3 24 8.7 24 1024.8 24 1022.5 24 9.3 24 8.1 24 17.1 999.9 35.1* 27.0* 0.00I 999.9 000000 724050 13743 19420211 34.3 23 22.2 23 1015.6 23 1013.2 23 3.2 23 4.8 23 15.9 999.9 42.1* 30.0* 0.00I 999.9 000000 724050 13743 19420212 32.5 24 17.0 24 1014.8 24 1012.4 23 8.0 24 14.9 24 22.0 999.9 37.9* 28.9* 0.00I 999.9 000000 724050 13743 19420213 28.3 24 9.0 24 1021.4 24 1019.0 24 12.8 24 18.5 24 26.0 999.9 39.0* 21.0* 0.00I 999.9 000000 724050 13743 19420214 34.0 24 13.7 24 1024.9 24 1022.5 24 12.9 24 11.5 24 17.1 999.9 46.9* 25.0* 0.00I 999.9 000000 724050 13743 19420215 38.9 24 23.5 24 1021.6 24 1019.2 24 3.5 24 5.7 24 10.1 999.9 59.0* 27.0* 0.00I 999.9 000000 724050 13743 19420216 40.3 24 34.3 24 1016.4 24 1013.9 24 2.1 24 7.5 24 13.0 999.9 48.9* 35.1* 99.99 999.9 110000 724050 13743 19420217 48.9 24 44.0 24 1001.2 24 998.8 24 3.5 24 10.5 24 22.0 999.9 55.0* 44.1* 99.99 999.9 110000 724050 13743 19420218 39.1 24 25.1 23 1017.1 24 1014.7 24 5.9 24 8.0 24 17.1 999.9 48.0* 33.1* 0.00I 999.9 000000 724050 13743 19420219 29.7 24 11.4 24 1017.7 24 1015.3 24 11.4 24 15.2 24 22.0 999.9 39.9* 19.9* 99.99 999.9 001000 724050 13743 19420220 22.5 24 3.0 24 1020.1 24 1017.8 24 14.6 24 15.2 24 22.9 999.9 28.9* 16.0* 0.00I 999.9 000000 724050 13743 19420221 25.1 24 4.4 24 1018.8 24 1016.4 24 9.9 24 16.0 24 24.1 999.9 33.1* 19.0* 0.00I 999.9 000000 724050 13743 19420222 29.7 24 5.8 24 1015.6 24 1013.2 24 12.7 24 17.4 24 26.0 999.9 41.0* 24.1* 0.00I 999.9 000000 724050 13743 19420223 34.3 24 10.4 24 1013.3 24 1010.9 24 10.1 24 10.8 24 17.1 999.9 44.1* 27.0* 0.00I 999.9 000000 724050 13743 19420224 33.9 24 15.1 24 1006.6 24 1004.1 24 6.1 24 13.5 24 22.9 999.9 43.0* 27.0* 0.00I 999.9 000000 724050 13743 19420225 33.6 24 17.3 24 1004.3 24 1001.9 24 7.4 24 16.5 24 22.0 999.9 44.1* 26.1* 0.00I 999.9 000000 724050 13743 19420226 36.5 24 17.6 24 1007.7 24 1005.3 24 9.1 24 14.6 24 24.1 999.9 44.1* 33.1* 0.00I 999.9 000000 724050 13743 19420227 36.5 24 14.8 24 1003.9 24 1001.5 24 9.7 24 14.5 24 24.1 999.9 41.0* 30.9* 0.00I 999.9 000000 724050 13743 19420228 36.6 24 18.4 24 1008.1 24 1005.8 24 9.1 24 13.3 24 24.1 999.9 44.1* 30.9* 0.00I 999.9 000000 724050 13743 19420301 40.9 24 25.1 24 1019.8 24 1013.5 5 5.9 24 11.7 24 20.0 999.9 46.4* 35.4* 0.00I 999.9 000000 724050 13743 19420302 36.8 24 28.9 24 1016.6 24 9999.9 0 3.4 24 5.5 24 22.0 999.9 45.0* 29.3* 99.99 999.9 111000 724050 13743 19420303 40.1 24 36.8 24 980.2 23 9999.9 0 4.7 24 17.0 24 40.0 999.9 45.3* 34.0* 99.99 999.9 111000 724050 13743 19420304 42.1 24 26.9 24 1004.3 24 9999.9 0 7.3 24 19.8 24 39.0 999.9 50.4* 37.4* 0.00I 999.9 000000 724050 13743 19420305 41.4 24 28.2 24 1012.7 24 9999.9 0 3.3 24 3.5 24 12.0 999.9 52.3* 32.4* 0.00I 999.9 000000 724050 13743 19420306 46.3 24 34.8 24 1006.6 24 9999.9 0 16.4 24 10.4 24 22.9 999.9 53.1* 40.3* 99.99 999.9 110000 724050 13743 19420307 47.4 24 32.1 24 1017.1 24 9999.9 0 6.2 24 8.2 24 26.0 999.9 67.3* 32.4* 0.00I 999.9 000000 724050 13743 19420308 59.0 24 45.0 24 1012.7 24 9999.9 0 5.8 24 11.0 24 24.1 999.9 68.4* 51.1* 0.00I 999.9 000000 724050 13743 19420309 55.1 24 42.2 24 993.4 24 9999.9 0 45.4 24 21.3 24 35.0 999.9 66.4* 42.4* 99.99 999.9 010000 724050 13743 19420310 45.1 24 22.4 24 1009.9 24 9999.9 0 57.6 24 16.8 24 26.0 999.9 60.3* 35.1* 0.00I 999.9 000000 724050 13743 19420311 52.7 24 35.8 24 1010.8 24 9999.9 0 5.0 24 4.3 24 24.1 999.9 70.3* 40.3* 99.99 999.9 010000 724050 13743 19420312 55.6 24 36.8 24 1007.7 24 9999.9 0 26.2 24 12.2 24 22.0 999.9 66.9* 50.4* 99.99 999.9 010000 724050 13743 19420313 45.7 24 33.2 24 1018.5 24 9999.9 0 5.3 24 7.5 24 12.0 999.9 57.0* 36.0* 0.00I 999.9 000000 724050 13743 19420314 45.4 24 40.6 24 1012.7 24 9999.9 0 4.1 24 7.9 24 20.0 999.9 54.0* 39.4* 99.99 999.9 110000 724050 13743 19420315 45.1 24 40.6 24 1016.1 24 9999.9 0 3.5 24 5.8 24 15.9 999.9 55.4* 38.3* 0.00I 999.9 100000 724050 13743 19420316 43.9 24 41.1 24 1019.9 24 9999.9 0 3.4 24 6.7 24 15.9 999.9 52.0* 41.4* 99.99 999.9 110000 724050 13743 19420317 53.7 24 49.6 24 1007.2 24 9999.9 0 11.1 24 10.1 24 33.0 999.9 75.9* 42.4* 99.99 999.9 110000 724050 13743 19420318 57.7 24 41.6 24 1000.2 24 9999.9 0 21.7 24 8.9 24 22.0 999.9 75.0* 47.3* 99.99 999.9 010000 724050 13743 19420319 47.7 24 27.6 24 1008.0 24 9999.9 0 30.2 24 15.1 24 30.1 999.9 56.3* 43.0* 0.00I 999.9 000000 724050 13743 19420320 49.3 24 25.7 24 1020.0 24 9999.9 0 22.2 24 7.1 24 13.0 999.9 63.3* 35.1* 0.00I 999.9 000000 724050 13743 19420321 51.6 24 43.7 24 1014.5 24 9999.9 0 4.6 24 10.1 24 19.0 999.9 57.9* 46.9* 99.99 999.9 110000 724050 13743 19420322 47.8 24 32.6 24 1005.5 24 9999.9 0 48.6 24 17.8 24 29.9 999.9 59.4* 39.9* 99.99 999.9 110000 724050 13743 19420323 44.3 24 27.4 24 1008.2 24 9999.9 0 37.9 24 16.0 24 26.0 999.9 54.0* 39.4* 0.00I 999.9 000000 724050 13743 19420324 45.5 24 28.8 24 1015.9 24 9999.9 0 53.0 24 10.0 24 19.0 999.9 56.3* 39.0* 0.00I 999.9 000000 724050 13743 19420325 47.3 24 30.1 24 1022.1 24 9999.9 0 8.2 24 3.8 24 12.0 999.9 61.3* 34.3* 0.00I 999.9 000000 724050 13743 19420326 46.9 24 31.1 24 1023.9 24 9999.9 0 3.9 24 5.2 24 15.0 999.9 57.9* 35.4* 0.00I 999.9 000000 724050 13743 19420327 46.8 24 34.9 24 1024.0 24 9999.9 0 40.7 24 7.0 24 13.0 999.9 59.4* 36.3* 0.00I 999.9 000000 724050 13743 19420328 43.0 24 38.9 24 1018.1 24 9999.9 0 21.1 24 8.9 24 31.1 999.9 52.0* 39.4* 99.99 999.9 110000 724050 13743 19420329 33.2 24 31.8 24 1021.3 24 9999.9 0 1.4 24 13.1 24 24.1 999.9 39.0* 32.4* 99.99 999.9 111000 724050 13743 19420330 40.4 24 32.2 24 1021.1 24 9999.9 0 6.0 24 9.6 24 24.1 999.9 54.3* 33.1* 0.00I 999.9 100000 724050 13743 19420331 43.1 24 33.6 24 1015.7 24 9999.9 0 35.9 24 9.7 24 16.9 999.9 51.1* 39.4* 99.99 999.9 110000 724050 13743 19420401 43.2 24 28.2 24 1017.2 24 9999.9 0 6.5 24 10.3 24 16.9 999.9 53.4* 34.3* 0.00I 999.9 000000 724050 13743 19420402 50.1 24 33.0 24 1018.8 24 9999.9 0 6.1 24 8.1 24 19.0 999.9 64.9* 40.3* 0.00I 999.9 000000 724050 13743 19420403 60.2 24 35.9 23 1013.6 24 9999.9 0 4.6 24 8.6 24 15.9 999.9 74.3* 50.0* 99.99 999.9 010000 724050 13743 19420404 62.5 24 45.6 24 1014.3 24 9999.9 0 5.3 24 8.2 24 22.0 999.9 72.3* 53.4* 0.00I 999.9 000000 724050 13743 19420405 62.8 24 47.4 24 1016.9 24 9999.9 0 3.9 24 5.8 24 13.0 999.9 84.4* 47.3* 0.00I 999.9 000000 724050 13743 19420406 71.7 24 49.5 24 1016.5 24 9999.9 0 3.3 24 3.0 24 17.1 999.9 91.2* 56.3* 0.00I 999.9 000000 724050 13743 19420407 74.4 24 47.0 24 1014.0 24 9999.9 0 3.3 24 8.7 24 15.9 999.9 85.3* 62.4* 0.00I 999.9 000000 724050 13743 19420408 67.6 24 48.5 23 1016.2 24 9999.9 0 21.0 24 8.1 24 19.0 999.9 79.0* 60.3* 0.00I 999.9 000000 724050 13743 19420409 48.9 24 42.1 24 1021.0 24 9999.9 0 4.8 24 8.0 24 26.0 999.9 60.3* 41.4* 99.99 999.9 110000 724050 13743 19420410 41.8 24 39.6 24 1010.3 24 9999.9 0 8.2 24 7.5 24 15.9 999.9 46.0* 38.3* 99.99 999.9 110000 724050 13743 19420411 46.8 24 34.7 24 1005.9 24 9999.9 0 52.5 24 13.3 24 35.0 999.9 55.4* 41.0* 99.99 999.9 010000 724050 13743 19420412 44.6 24 25.6 24 1015.1 24 9999.9 0 68.8 24 16.5 24 26.0 999.9 53.4* 37.0* 0.00I 999.9 000000 724050 13743 19420413 47.1 24 25.2 24 1022.3 24 9999.9 0 61.3 24 11.2 24 17.1 999.9 57.4* 37.9* 0.00I 999.9 000000 724050 13743 19420414 51.4 24 33.0 24 1025.5 24 9999.9 0 9.6 24 5.4 24 22.9 999.9 70.3* 35.4* 0.00I 999.9 000000 724050 13743 19420415 61.8 24 42.8 24 1023.7 24 9999.9 0 6.1 24 6.2 24 17.1 999.9 80.1* 48.0* 0.00I 999.9 000000 724050 13743 19420416 69.4 24 47.7 24 1024.1 24 9999.9 0 28.2 24 4.3 24 15.9 999.9 86.4* 51.1* 0.00I 999.9 100000 724050 13743 19420417 60.5 24 49.0 24 1020.8 24 9999.9 0 24.2 24 5.1 24 21.0 999.9 82.0* 49.3* 99.99 999.9 010000 724050 13743 19420418 59.5 24 40.9 23 1013.2 24 9999.9 0 60.7 24 13.3 24 22.9 999.9 72.0* 52.0* 99.99 999.9 010000 724050 13743 19420419 49.6 24 32.1 24 1016.7 24 9999.9 0 91.8 24 13.5 24 21.0 999.9 57.4* 41.0* 0.00I 999.9 000000 724050 13743 19420420 48.7 24 32.7 24 1017.8 24 9999.9 0 26.0 24 15.0 24 30.1 999.9 53.4* 43.0* 0.00I 999.9 000000 724050 13743 19420421 56.1 24 35.2 24 1017.2 24 9999.9 0 52.9 24 13.6 24 19.0 999.9 64.4* 48.9* 0.00I 999.9 000000 724050 13743 19420422 57.8 24 36.9 24 1020.4 24 9999.9 0 52.9 24 5.5 24 18.1 999.9 71.2* 44.4* 0.00I 999.9 000000 724050 13743 19420423 62.8 24 35.8 24 1020.9 24 9999.9 0 40.9 24 5.1 24 11.1 999.9 78.3* 44.4* 0.00I 999.9 000000 724050 13743 19420424 64.6 24 40.5 24 1021.3 24 9999.9 0 24.0 24 3.9 24 15.0 999.9 83.3* 46.4* 0.00I 999.9 000000 724050 13743 19420425 69.6 24 44.0 24 1016.9 24 9999.9 0 20.3 24 6.1 24 17.1 999.9 86.4* 52.3* 0.00I 999.9 000000 724050 13743 19420426 69.8 24 46.8 24 1016.4 24 9999.9 0 11.7 24 4.2 24 11.1 999.9 88.3* 49.3* 0.00I 999.9 000000 724050 13743 19420427 62.0 24 43.3 24 1021.5 24 9999.9 0 34.1 24 8.1 24 17.1 999.9 82.0* 49.3* 0.00I 999.9 000000 724050 13743 19420428 56.0 24 42.7 24 1024.0 24 9999.9 0 22.5 24 5.6 24 19.0 999.9 68.4* 46.0* 0.00I 999.9 000000 724050 13743 19420429 63.3 24 50.6 24 1020.8 24 9999.9 0 5.0 24 4.8 24 15.9 999.9 79.3* 55.0* 99.99 999.9 010000 724050 13743 19420430 72.7 24 56.8 24 1019.3 24 9999.9 0 3.2 24 1.8 24 17.1 999.9 91.2* 56.3* 0.00I 999.9 100000 724050 13743 19420501 78.8 24 55.2 24 1016.7 24 9999.9 0 4.5 24 3.8 24 15.9 999.9 95.4* 63.0* 0.00I 999.9 100000 724050 13743 19420502 71.3 24 56.7 24 1016.1 24 9999.9 0 4.9 24 5.2 24 17.1 999.9 87.1* 58.3* 0.00I 999.9 000000 724050 13743 19420503 75.3 24 61.0 24 1015.5 24 9999.9 0 5.9 24 6.2 24 15.0 999.9 88.3* 64.0* 0.00I 999.9 000000 724050 13743 19420504 75.4 24 65.0 24 1013.0 24 9999.9 0 17.8 24 8.0 24 15.9 999.9 82.0* 66.0* 0.00I 999.9 000000 724050 13743 19420505 68.8 24 49.3 24 1020.1 24 9999.9 0 30.4 24 8.7 24 17.1 999.9 76.3* 57.9* 0.00I 999.9 000010 724050 13743 19420506 62.1 24 47.7 24 1023.4 24 9999.9 0 6.1 24 6.6 24 17.1 999.9 73.0* 54.3* 0.00I 999.9 000000 724050 13743 19420507 64.9 24 57.3 23 1011.7 24 9999.9 0 6.0 24 7.6 24 26.0 999.9 76.3* 59.4* 99.99 999.9 110010 724050 13743 19420508 58.9 24 42.7 24 1013.2 24 9999.9 0 29.4 24 10.0 24 22.0 999.9 70.0* 51.1* 0.00I 999.9 000000 724050 13743 19420509 62.3 24 44.3 24 1014.8 24 9999.9 0 5.8 24 8.8 24 13.0 999.9 75.4* 53.4* 99.99 999.9 010000 724050 13743 19420510 63.3 24 47.4 24 1016.9 24 9999.9 0 14.0 24 6.7 24 16.9 999.9 72.0* 54.3* 99.99 999.9 010000 724050 13743 19420511 62.3 24 43.6 24 1021.2 24 9999.9 0 6.7 24 5.8 24 13.0 999.9 75.4* 51.1* 0.00I 999.9 000000 724050 13743 19420512 70.6 24 52.7 24 1016.1 24 9999.9 0 5.4 24 10.1 24 26.0 999.9 83.3* 59.0* 99.99 999.9 010000 724050 13743 19420513 74.1 24 59.9 24 1014.5 24 9999.9 0 25.9 24 9.6 24 22.0 999.9 86.4* 64.4* 99.99 999.9 010000 724050 13743 19420514 74.0 24 60.1 24 1017.0 24 9999.9 0 6.0 24 8.0 24 22.0 999.9 84.4* 64.4* 99.99 999.9 010000 724050 13743 19420515 72.0 24 59.0 24 1017.8 24 9999.9 0 6.7 24 11.7 24 30.1 999.9 79.3* 63.3* 0.00I 999.9 000000 724050 13743 19420516 68.6 24 62.3 24 1012.9 24 9999.9 0 5.9 24 13.4 24 26.0 999.9 73.0* 63.0* 99.99 999.9 010000 724050 13743 19420517 65.4 24 49.6 24 1018.9 24 9999.9 0 6.6 24 12.0 24 22.0 999.9 73.4* 57.0* 99.99 999.9 010000 724050 13743 19420518 65.8 24 51.2 24 1022.7 24 9999.9 0 5.7 24 6.4 24 14.0 999.9 77.4* 54.0* 0.00I 999.9 000000 724050 13743 19420519 67.7 24 59.1 24 1022.3 24 9999.9 0 4.3 24 6.8 24 11.1 999.9 75.4* 59.0* 0.00I 999.9 100000 724050 13743 19420520 69.6 24 63.2 24 1020.5 24 9999.9 0 4.3 24 6.6 24 15.9 999.9 79.3* 63.0* 99.99 999.9 010010 724050 13743 19420521 72.8 24 65.3 24 1017.4 24 9999.9 0 4.7 24 6.5 24 13.0 999.9 84.4* 66.9* 99.99 999.9 010010 724050 13743 19420522 69.9 24 66.0 24 1012.8 24 9999.9 0 6.1 24 8.6 24 17.1 999.9 75.4* 66.0* 99.99 999.9 010010 724050 13743 19420523 67.7 24 54.1 24 1011.8 24 9999.9 0 6.9 24 7.9 24 15.9 999.9 74.3* 60.1* 0.00I 999.9 000000 724050 13743 19420524 65.7 24 50.7 24 1013.1 24 9999.9 0 6.3 24 3.7 24 13.0 999.9 74.3* 57.0* 0.00I 999.9 000000 724050 13743 19420525 64.7 24 48.6 24 1015.9 24 9999.9 0 6.3 24 8.6 24 15.9 999.9 74.3* 55.0* 0.00I 999.9 000000 724050 13743 19420526 65.1 24 52.8 24 1015.3 24 9999.9 0 3.9 24 4.5 24 10.1 999.9 80.2* 51.1* 0.00I 999.9 100000 724050 13743 19420527 71.0 24 56.6 24 1013.6 24 9999.9 0 3.8 24 3.9 24 10.1 999.9 82.4* 63.3* 99.99 999.9 010000 724050 13743 19420528 69.7 24 55.1 24 1018.9 24 9999.9 0 5.0 24 4.6 24 15.9 999.9 79.3* 60.3* 0.00I 999.9 000000 724050 13743 19420529 70.1 24 59.5 24 1023.6 24 9999.9 0 4.6 24 4.8 24 12.0 999.9 85.3* 57.4* 0.00I 999.9 000000 724050 13743 19420530 77.7 24 63.8 24 1019.9 24 9999.9 0 5.4 24 7.1 24 10.1 999.9 93.4* 64.4* 0.00I 999.9 000000 724050 13743 19420531 81.9 24 68.1 24 1016.1 24 9999.9 0 5.3 24 4.5 24 16.9 999.9 95.4* 70.3* 99.99 999.9 110010 724050 13743 19420601 69.0 24 64.1 24 1019.8 24 9999.9 0 4.7 24 7.2 24 17.1 999.9 78.1* 64.9* 99.99 999.9 010010 724050 13743 19420602 64.5 24 58.3 24 1021.2 24 9999.9 0 5.8 24 6.6 24 15.9 999.9 70.0* 59.4* 99.99 999.9 010000 724050 13743 19420603 69.2 24 63.4 24 1019.8 24 9999.9 0 4.5 24 3.8 24 10.1 999.9 80.2* 61.3* 99.99 999.9 110010 724050 13743 19420604 75.4 24 68.0 24 1015.2 24 9999.9 0 3.2 24 4.0 24 22.0 999.9 91.2* 61.0* 99.99 999.9 110010 724050 13743 19420605 78.1 24 63.3 24 1012.2 24 9999.9 0 9.2 24 6.3 24 15.0 999.9 87.3* 70.0* 99.99 999.9 010000 724050 13743 19420606 75.7 24 60.8 23 1013.3 24 9999.9 0 4.4 24 4.1 24 13.0 999.9 89.2* 62.4* 0.00I 999.9 000000 724050 13743 19420607 79.4 24 65.4 24 1009.5 24 9999.9 0 33.2 24 7.9 24 17.1 999.9 94.3* 67.3* 0.00I 999.9 000000 724050 13743 19420608 75.9 24 69.5 24 1012.1 24 9999.9 0 4.6 24 5.7 24 17.1 999.9 80.1* 71.1* 99.99 999.9 010010 724050 13743 19420609 73.6 24 67.3 24 1019.8 24 9999.9 0 4.9 24 6.7 24 15.9 999.9 77.4* 70.0* 0.00I 999.9 000000 724050 13743 19420610 73.4 24 68.4 24 1019.1 24 9999.9 0 5.4 24 4.6 24 7.0 999.9 82.4* 68.4* 99.99 999.9 110000 724050 13743 19420611 78.4 24 72.5 24 1012.6 24 9999.9 0 6.6 24 5.8 24 14.0 999.9 88.3* 72.0* 99.99 999.9 010000 724050 13743 19420612 82.0 24 73.2 24 1008.5 24 9999.9 0 6.3 24 5.2 24 15.9 999.9 92.3* 73.9* 0.00I 999.9 000000 724050 13743 19420613 78.4 24 71.5 24 1006.8 24 9999.9 0 5.5 24 5.5 24 14.0 999.9 88.3* 72.0* 99.99 999.9 110010 724050 13743 19420614 78.2 24 67.9 23 1003.7 24 9999.9 0 6.0 24 14.1 15 28.0 999.9 87.3* 71.1* 0.00I 999.9 100000 724050 13743 19420615 71.6 24 53.5 24 1011.4 24 9999.9 0 84.0 24 15.5 24 26.0 999.9 82.4* 60.1* 0.00I 999.9 000000 724050 13743 19420616 72.1 24 53.7 24 1014.6 24 9999.9 0 21.3 24 3.8 24 10.1 999.9 82.4* 61.0* 0.00I 999.9 000000 724050 13743 19420617 75.8 24 59.2 24 1011.9 24 9999.9 0 6.8 24 8.8 24 16.9 999.9 81.3* 67.3* 0.00I 999.9 000000 724050 13743 19420618 73.2 24 53.9 24 1013.5 24 9999.9 0 45.5 24 9.1 24 14.0 999.9 85.3* 62.1* 0.00I 999.9 000000 724050 13743 19420619 75.3 24 62.7 24 1011.1 24 9999.9 0 12.3 24 6.8 24 13.0 999.9 86.4* 64.9* 99.99 999.9 010000 724050 13743 19420620 82.2 24 68.0 24 1009.0 24 9999.9 0 5.3 24 5.0 24 14.0 999.9 93.4* 71.2* 0.00I 999.9 000000 724050 13743 19420621 84.6 24 67.6 24 1009.0 24 9999.9 0 33.2 24 7.9 24 16.9 999.9 96.3* 73.0* 0.00I 999.9 000000 724050 13743 19420622 78.5 24 66.8 24 1011.4 24 9999.9 0 4.9 24 5.9 24 22.0 999.9 88.0* 70.0* 99.99 999.9 010010 724050 13743 19420623 77.0 24 63.6 24 1008.2 24 9999.9 0 5.5 24 9.8 24 15.9 999.9 87.3* 70.0* 99.99 999.9 010010 724050 13743 19420624 72.3 24 50.6 24 1013.7 24 9999.9 0 6.8 24 8.8 22 15.9 999.9 82.0* 56.3* 0.00I 999.9 000000 724050 13743 19420625 74.0 24 55.1 24 1019.9 24 9999.9 0 6.4 24 8.4 24 13.0 999.9 84.4* 61.0* 0.00I 999.9 000000 724050 13743 19420626 70.5 24 60.1 24 1024.4 24 9999.9 0 5.3 24 4.0 24 19.0 999.9 80.2* 63.3* 99.99 999.9 110010 724050 13743 19420627 68.3 24 65.5 24 1022.0 24 9999.9 0 3.4 24 8.7 24 14.0 999.9 73.4* 63.0* 99.99 999.9 010010 724050 13743 19420628 72.3 24 65.9 24 1023.9 24 9999.9 0 4.5 24 6.1 24 15.0 999.9 80.2* 66.9* 99.99 999.9 110000 724050 13743 19420629 73.9 24 65.7 24 1023.7 24 9999.9 0 4.8 24 4.8 24 10.1 999.9 84.4* 64.4* 0.00I 999.9 100000 724050 13743 19420630 73.7 24 64.1 24 1022.1 24 9999.9 0 5.6 24 6.1 24 15.9 999.9 85.3* 62.4* 0.00I 999.9 100000 724050 13743 19420701 76.7 24 67.7 24 1014.7 24 9999.9 0 6.8 24 9.1 24 15.0 999.9 84.4* 71.1* 99.99 999.9 010010 724050 13743 19420702 74.9 24 68.8 24 1010.1 24 9999.9 0 3.8 24 5.8 24 10.1 999.9 84.4* 69.1* 99.99 999.9 010000 724050 13743 19420703 75.4 24 66.3 24 1015.0 24 9999.9 0 3.1 24 3.0 24 19.0 999.9 88.3* 63.3* 99.99 999.9 110000 724050 13743 19420704 81.6 24 69.4 24 1017.2 24 9999.9 0 3.9 24 3.5 24 11.1 999.9 91.2* 73.9* 0.00I 999.9 000000 724050 13743 19420705 79.1 24 67.6 24 1016.1 24 9999.9 0 4.8 24 3.4 24 13.0 999.9 89.2* 70.0* 0.00I 999.9 000000 724050 13743 19420706 78.4 24 68.5 24 1011.5 24 9999.9 0 5.3 24 8.2 24 17.1 999.9 91.2* 69.1* 99.99 999.9 110000 724050 13743 19420707 74.8 24 57.3 24 1013.5 24 9999.9 0 21.9 24 9.2 24 19.0 999.9 81.3* 66.9* 99.99 999.9 010000 724050 13743 19420708 73.4 24 59.8 24 1012.8 24 9999.9 0 6.3 24 6.3 24 15.9 999.9 80.2* 65.3* 0.00I 999.9 000000 724050 13743 19420709 75.0 24 61.2 24 1014.1 24 9999.9 0 5.8 24 4.4 24 10.1 999.9 83.3* 64.9* 0.00I 999.9 000000 724050 13743 19420710 75.4 24 64.9 24 1017.1 24 9999.9 0 4.7 24 5.0 24 19.0 999.9 86.4* 65.3* 99.99 999.9 010000 724050 13743 19420711 80.2 24 68.3 24 1011.8 24 9999.9 0 5.8 24 10.8 24 30.1 999.9 90.3* 71.1* 99.99 999.9 010010 724050 13743 19420712 79.5 24 64.0 24 1018.5 24 9999.9 0 4.2 24 5.8 21 13.0 999.9 89.2* 69.3* 0.00I 999.9 000000 724050 13743 19420713 79.7 24 67.0 24 1020.8 24 9999.9 0 4.1 24 2.4 24 13.0 999.9 93.4* 67.3* 0.00I 999.9 100000 724050 13743 19420714 85.0 24 70.4 24 1014.9 24 9999.9 0 5.7 24 5.2 24 13.0 999.9 96.3* 74.3* 0.00I 999.9 000000 724050 13743 19420715 81.8 24 61.6 24 1014.2 24 9999.9 0 7.5 24 9.6 24 13.0 999.9 93.0* 71.1* 0.00I 999.9 000000 724050 13743 19420716 77.1 24 59.4 24 1017.2 24 9999.9 0 6.0 24 2.3 24 8.9 999.9 89.2* 65.3* 0.00I 999.9 000000 724050 13743 19420717 83.3 24 70.2 24 1019.1 24 9999.9 0 4.2 24 1.5 24 10.1 999.9 95.4* 74.3* 0.00I 999.9 000000 724050 13743 19420718 84.3 24 73.0 21 1016.4 24 9999.9 0 4.5 24 4.3 24 15.9 999.9 93.4* 78.1* 99.99 999.9 010010 724050 13743 19420719 86.8 24 71.5 24 1013.4 24 9999.9 0 6.2 24 4.3 24 15.0 999.9 98.2* 75.4* 0.00I 999.9 000000 724050 13743 19420720 86.5 24 73.5 24 1010.5 24 9999.9 0 7.5 24 7.2 24 39.0 999.9 96.3* 74.3* 99.99 999.9 010010 724050 13743 19420721 77.5 24 67.8 24 1013.6 24 9999.9 0 7.2 24 9.5 24 22.0 999.9 84.4* 70.3* 99.99 999.9 010010 724050 13743 19420722 75.0 24 65.3 24 1015.8 23 9999.9 0 5.8 24 4.8 24 17.1 999.9 84.0* 66.4* 0.00I 999.9 000000 724050 13743 19420723 74.5 24 65.2 24 1016.1 24 9999.9 0 6.5 24 5.0 24 13.0 999.9 86.4* 67.3* 99.99 999.9 010000 724050 13743 19420724 70.0 24 66.0 24 1019.2 23 9999.9 0 4.5 24 4.2 24 14.0 999.9 80.1* 67.3* 99.99 999.9 010000 724050 13743 19420725 71.5 24 69.1 24 1020.9 23 9999.9 0 3.6 24 5.4 24 17.1 999.9 77.4* 67.3* 99.99 999.9 110000 724050 13743 19420726 77.1 24 71.5 24 1022.7 24 9999.9 0 4.6 24 2.9 24 16.9 999.9 89.2* 71.2* 99.99 999.9 110010 724050 13743 19420727 79.4 24 71.9 24 1021.0 24 9999.9 0 4.9 24 3.4 24 22.0 999.9 90.3* 73.4* 99.99 999.9 110010 724050 13743 19420728 80.4 24 70.3 24 1017.5 24 9999.9 0 5.8 24 3.3 24 10.1 999.9 91.2* 70.0* 0.00I 999.9 000000 724050 13743 19420729 82.5 24 71.6 24 1014.2 24 9999.9 0 4.7 24 2.4 24 13.0 999.9 94.3* 73.9* 99.99 999.9 010010 724050 13743 19420730 81.1 24 69.5 24 1013.9 24 9999.9 0 4.2 24 3.0 24 13.0 999.9 92.3* 71.2* 0.00I 999.9 000000 724050 13743 19420731 79.8 24 73.0 24 1015.6 22 9999.9 0 4.4 24 2.6 24 15.0 999.9 91.2* 73.4* 99.99 999.9 010010 724050 13743 19420801 80.4 24 72.1 24 1015.5 24 9999.9 0 23.8 24 2.2 24 13.0 999.9 92.3* 72.0* 99.99 999.9 010000 724050 13743 19420802 81.5 24 73.6 24 1013.8 24 9999.9 0 4.1 24 3.3 24 15.9 999.9 94.3* 72.0* 0.00I 999.9 100000 724050 13743 19420803 83.0 24 72.6 24 1012.0 24 9999.9 0 20.7 24 3.9 24 15.0 999.9 90.3* 75.0* 99.99 999.9 010000 724050 13743 19420804 77.6 24 65.1 24 1014.7 24 9999.9 0 4.7 24 3.5 24 15.9 999.9 88.0* 73.0* 99.99 999.9 010000 724050 13743 19420805 69.5 24 62.8 24 1016.9 24 9999.9 0 4.4 24 2.3 24 14.0 999.9 77.0* 65.3* 99.99 999.9 110000 724050 13743 19420806 70.9 24 60.5 24 1016.1 24 9999.9 0 5.1 24 3.4 24 10.1 999.9 82.4* 63.3* 99.99 999.9 110000 724050 13743 19420807 72.3 24 63.2 24 1018.9 24 9999.9 0 4.1 24 2.2 24 17.1 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19420808 68.7 24 65.3 24 1019.6 24 9999.9 0 4.5 24 8.0 24 17.1 999.9 73.0* 66.9* 99.99 999.9 110000 724050 13743 19420809 73.7 24 69.9 24 1012.1 24 9999.9 0 4.4 24 6.2 24 19.0 999.9 82.4* 66.9* 99.99 999.9 110000 724050 13743 19420810 77.1 24 70.8 24 1009.9 24 9999.9 0 5.8 24 3.2 24 10.1 999.9 87.3* 70.3* 0.00I 999.9 100010 724050 13743 19420811 77.2 24 66.9 24 1012.7 24 9999.9 0 5.1 24 4.0 24 13.0 999.9 87.3* 65.3* 99.99 999.9 110010 724050 13743 19420812 76.8 24 70.5 24 1015.4 24 9999.9 0 3.9 24 3.4 24 13.0 999.9 85.3* 71.2* 99.99 999.9 110000 724050 13743 19420813 76.6 24 72.5 24 1016.7 24 9999.9 0 5.2 24 5.1 24 15.9 999.9 87.3* 72.0* 99.99 999.9 110010 724050 13743 19420814 79.6 24 71.1 24 1017.4 24 9999.9 0 6.8 24 4.2 24 15.9 999.9 90.3* 73.0* 99.99 999.9 010000 724050 13743 19420815 81.7 24 74.4 24 1016.7 24 9999.9 0 6.3 24 5.9 24 17.1 999.9 91.2* 75.0* 0.00I 999.9 100000 724050 13743 19420816 81.5 24 73.9 24 1015.6 24 9999.9 0 6.2 24 7.6 24 22.0 999.9 89.2* 74.3* 99.99 999.9 010000 724050 13743 19420817 79.2 24 72.9 24 1016.0 24 9999.9 0 6.4 24 7.0 24 13.0 999.9 84.4* 73.9* 99.99 999.9 010010 724050 13743 19420818 74.5 24 66.8 24 1018.2 24 9999.9 0 4.6 24 3.4 24 11.1 999.9 81.3* 68.4* 99.99 999.9 010000 724050 13743 19420819 73.9 24 64.5 24 1019.1 24 9999.9 0 3.3 24 2.8 24 10.1 999.9 84.4* 66.4* 0.00I 999.9 000000 724050 13743 19420820 75.9 24 68.0 24 1017.8 24 9999.9 0 3.1 24 3.3 24 11.1 999.9 88.3* 66.4* 0.00I 999.9 100000 724050 13743 19420821 80.5 24 72.2 24 1016.2 24 9999.9 0 3.7 24 3.7 24 9.9 999.9 87.3* 73.0* 0.00I 999.9 000000 724050 13743 19420822 81.2 24 71.8 24 1016.4 24 9999.9 0 38.9 24 3.9 24 13.0 999.9 93.4* 71.2* 0.00I 999.9 100000 724050 13743 19420823 81.1 24 71.8 24 1011.8 24 9999.9 0 21.3 24 4.8 24 13.0 999.9 88.3* 73.4* 99.99 999.9 110010 724050 13743 19420824 70.0 24 56.6 24 1015.4 24 9999.9 0 29.5 24 10.6 24 16.9 999.9 76.3* 62.1* 99.99 999.9 010010 724050 13743 19420825 64.7 24 46.0 24 1024.9 24 9999.9 0 45.9 24 6.3 24 13.0 999.9 73.4* 55.4* 0.00I 999.9 000000 724050 13743 19420826 63.9 24 51.6 24 1028.6 24 9999.9 0 5.6 24 2.8 24 8.9 999.9 76.3* 51.3* 0.00I 999.9 100000 724050 13743 19420827 67.2 24 55.4 24 1027.6 24 9999.9 0 6.8 24 5.0 24 8.9 999.9 77.4* 56.3* 0.00I 999.9 000000 724050 13743 19420828 68.3 24 59.0 24 1022.8 24 9999.9 0 6.4 24 5.2 24 10.1 999.9 79.3* 57.4* 0.00I 999.9 000000 724050 13743 19420829 74.3 24 66.4 24 1018.6 24 9999.9 0 4.8 24 5.5 24 15.9 999.9 82.0* 70.0* 0.00I 999.9 000000 724050 13743 19420830 71.2 24 63.0 24 1024.3 24 9999.9 0 5.4 24 6.5 24 12.0 999.9 76.3* 64.9* 0.00I 999.9 000000 724050 13743 19420831 68.3 24 58.5 24 1025.0 24 9999.9 0 4.9 24 4.3 24 8.9 999.9 79.3* 58.3* 0.00I 999.9 000000 724050 13743 19420901 67.4 24 59.3 24 1022.3 24 9999.9 0 4.5 24 1.8 24 7.0 999.9 82.4* 56.3* 0.00I 999.9 000000 724050 13743 19420902 75.8 24 67.2 24 1018.3 24 9999.9 0 21.2 24 2.8 24 8.9 999.9 85.3* 69.3* 99.99 999.9 010000 724050 13743 19420903 79.7 24 68.8 24 1012.6 24 9999.9 0 6.8 24 3.4 24 9.9 999.9 92.3* 70.0* 0.00I 999.9 000000 724050 13743 19420904 78.5 24 69.6 24 1012.0 24 9999.9 0 4.7 24 3.0 24 13.0 999.9 88.3* 71.2* 99.99 999.9 010010 724050 13743 19420905 74.0 24 62.8 24 1017.0 24 9999.9 0 5.2 24 5.4 24 13.0 999.9 81.3* 68.0* 99.99 999.9 010000 724050 13743 19420906 69.3 24 60.7 24 1022.5 24 9999.9 0 4.2 24 4.1 24 13.0 999.9 77.4* 63.3* 0.00I 999.9 100000 724050 13743 19420907 69.1 24 65.1 24 1022.2 24 9999.9 0 4.0 24 3.4 24 8.9 999.9 73.0* 66.4* 99.99 999.9 110000 724050 13743 19420908 73.9 24 69.3 23 1019.4 24 9999.9 0 3.2 24 3.0 24 8.9 999.9 82.4* 68.0* 99.99 999.9 110000 724050 13743 19420909 79.9 24 72.2 24 1019.0 24 9999.9 0 5.4 24 3.3 24 8.9 999.9 92.3* 72.3* 99.99 999.9 110010 724050 13743 19420910 78.9 24 71.7 24 1017.9 24 9999.9 0 3.5 24 2.7 24 13.0 999.9 86.4* 72.0* 99.99 999.9 110000 724050 13743 19420911 76.1 24 65.5 24 1016.4 24 9999.9 0 5.4 24 7.2 24 16.9 999.9 84.4* 69.1* 99.99 999.9 010000 724050 13743 19420912 72.1 24 60.5 24 1016.9 24 9999.9 0 5.9 24 4.1 24 12.0 999.9 79.3* 66.9* 0.00I 999.9 000000 724050 13743 19420913 73.5 24 65.0 24 1014.8 24 9999.9 0 4.2 24 4.1 24 13.0 999.9 84.4* 65.3* 99.99 999.9 010000 724050 13743 19420914 72.7 24 58.6 24 1016.9 24 9999.9 0 4.2 24 1.8 24 8.9 999.9 85.3* 60.3* 0.00I 999.9 000000 724050 13743 19420915 77.6 24 68.4 24 1016.9 24 9999.9 0 3.7 24 4.8 24 8.9 999.9 91.2* 66.9* 0.00I 999.9 100000 724050 13743 19420916 79.4 24 69.6 23 1018.1 24 9999.9 0 4.5 24 3.2 24 8.9 999.9 92.3* 70.0* 0.00I 999.9 100000 724050 13743 19420917 78.5 24 71.4 24 1018.5 24 9999.9 0 3.0 24 1.5 24 13.0 999.9 89.2* 71.2* 99.99 999.9 110000 724050 13743 19420918 78.2 24 72.4 24 1017.0 24 1014.6 23 6.6 24 3.0 24 4.1 999.9 86.0* 73.9* 99.99 999.9 110000 724050 13743 19420919 79.6 24 72.0 24 1013.4 24 9999.9 0 3.0 24 0.7 24 7.0 999.9 90.3* 71.1* 0.00I 999.9 100000 724050 13743 19420920 78.4 24 68.6 24 1009.5 24 9999.9 0 32.7 24 11.2 24 26.0 999.9 83.3* 71.2* 0.00I 999.9 100000 724050 13743 19420921 60.9 24 45.2 24 1015.7 24 9999.9 0 45.6 24 11.5 24 22.0 999.9 71.2* 50.0* 0.00I 999.9 000000 724050 13743 19420922 60.7 24 46.6 24 1013.0 24 9999.9 0 32.8 24 3.0 24 8.9 999.9 75.4* 48.4* 0.00I 999.9 000000 724050 13743 19420923 64.9 24 52.5 24 1013.6 24 9999.9 0 4.2 24 4.0 24 10.1 999.9 79.3* 53.4* 0.00I 999.9 000000 724050 13743 19420924 68.8 24 57.2 24 1013.1 24 9999.9 0 25.4 24 9.3 24 19.0 999.9 82.4* 59.0* 0.00I 999.9 100000 724050 13743 19420925 61.6 24 38.7 24 1022.8 24 9999.9 0 64.2 24 6.3 24 13.0 999.9 71.2* 51.3* 0.00I 999.9 000000 724050 13743 19420926 61.6 24 54.4 24 1022.1 24 9999.9 0 4.3 24 3.2 24 13.0 999.9 72.3* 52.3* 99.99 999.9 110000 724050 13743 19420927 71.7 24 68.2 24 1007.8 24 9999.9 0 33.2 24 14.3 24 26.0 999.9 82.4* 55.0* 99.99 999.9 110000 724050 13743 19420928 54.3 24 38.6 24 1021.2 24 9999.9 0 68.8 24 14.8 24 22.0 999.9 59.4* 46.9* 0.00I 999.9 000000 724050 13743 19420929 51.1 24 34.4 24 1032.3 24 9999.9 0 79.7 24 7.6 24 13.0 999.9 61.3* 42.4* 0.00I 999.9 000000 724050 13743 19420930 51.4 24 41.0 24 1029.0 24 9999.9 0 36.6 24 1.5 24 8.9 999.9 65.3* 39.9* 0.00I 999.9 000000 724050 13743 19421001 56.7 24 46.2 23 1019.1 24 9999.9 0 40.0 24 2.2 24 10.1 999.9 74.3* 45.3* 0.00I 999.9 100000 724050 13743 19421002 61.2 24 52.9 24 1019.8 24 9999.9 0 2.7 24 1.4 24 7.0 999.9 76.3* 51.3* 0.00I 999.9 100000 724050 13743 19421003 61.4 24 53.4 24 1024.7 24 9999.9 0 3.9 24 2.9 24 10.1 999.9 68.4* 55.0* 0.00I 999.9 100000 724050 13743 19421004 61.6 24 52.4 24 1022.2 24 9999.9 0 38.4 24 5.9 24 15.0 999.9 66.4* 55.9* 99.99 999.9 010000 724050 13743 19421005 64.8 24 60.8 24 1011.6 24 9999.9 0 27.5 24 7.8 24 13.0 999.9 66.4* 62.1* 99.99 999.9 110000 724050 13743 19421006 62.7 24 48.3 24 1011.5 24 9999.9 0 45.2 24 11.5 24 30.1 999.9 71.2* 55.0* 99.99 999.9 010000 724050 13743 19421007 60.9 24 49.9 24 1019.6 24 9999.9 0 20.1 24 3.5 24 12.0 999.9 76.3* 47.3* 0.00I 999.9 000000 724050 13743 19421008 65.2 24 53.6 24 1023.6 24 9999.9 0 3.6 24 1.4 24 10.1 999.9 80.2* 52.3* 0.00I 999.9 000000 724050 13743 19421009 67.0 24 56.6 24 1023.8 24 9999.9 0 4.5 24 3.0 24 12.0 999.9 81.3* 55.9* 0.00I 999.9 100000 724050 13743 19421010 65.8 24 56.3 24 1020.9 24 9999.9 0 3.0 24 3.9 24 13.0 999.9 79.0* 57.0* 0.00I 999.9 100000 724050 13743 19421011 64.7 24 56.5 24 1017.4 24 9999.9 0 4.0 24 6.3 24 17.1 999.9 74.3* 57.0* 0.00I 999.9 100000 724050 13743 19421012 62.3 24 48.0 24 1018.2 24 9999.9 0 14.0 24 10.0 24 26.0 999.9 69.1* 57.4* 0.00I 999.9 000000 724050 13743 19421013 57.9 24 52.7 24 1028.8 24 9999.9 0 27.5 24 9.8 24 24.1 999.9 62.1* 54.0* 99.99 999.9 110000 724050 13743 19421014 62.8 24 60.8 24 1023.1 24 9999.9 0 3.5 24 10.8 24 22.9 999.9 66.4* 59.0* 99.99 999.9 110000 724050 13743 19421015 66.4 24 64.6 24 1016.5 24 1014.0 22 4.5 24 14.2 24 17.1 999.9 69.1* 61.3* 99.99 999.9 110010 724050 13743 19421016 67.2 24 65.6 24 1014.3 24 9999.9 0 2.7 24 8.8 24 24.1 999.9 69.3* 64.9* 99.99 999.9 110010 724050 13743 19421017 63.0 24 59.3 24 1015.8 24 9999.9 0 4.0 24 5.3 24 14.0 999.9 68.4* 57.9* 99.99 999.9 110000 724050 13743 19421018 63.7 24 51.3 24 1012.9 24 9999.9 0 9.1 24 6.3 24 22.0 999.9 72.3* 57.9* 0.00I 999.9 000000 724050 13743 19421019 61.3 24 47.5 24 1012.6 24 9999.9 0 37.2 24 8.1 24 16.9 999.9 72.3* 50.4* 0.00I 999.9 000000 724050 13743 19421020 59.5 24 47.0 24 1013.3 24 9999.9 0 19.0 24 6.8 24 8.9 999.9 77.4* 47.3* 0.00I 999.9 100000 724050 13743 19421021 61.9 24 56.8 24 1010.2 24 9999.9 0 11.0 24 10.3 24 14.0 999.9 68.4* 55.9* 99.99 999.9 110010 724050 13743 19421022 64.6 24 56.6 24 1003.0 24 9999.9 0 33.0 24 7.8 24 17.1 999.9 74.3* 57.0* 99.99 999.9 110010 724050 13743 19421023 63.5 24 53.7 24 1007.8 24 9999.9 0 28.0 24 8.0 24 17.1 999.9 68.4* 55.9* 99.99 999.9 010000 724050 13743 19421024 57.9 24 41.4 24 1020.3 24 9999.9 0 4.5 24 6.8 24 15.9 999.9 63.3* 51.3* 99.99 999.9 010000 724050 13743 19421025 56.9 24 46.8 24 1020.2 24 9999.9 0 3.9 24 4.0 24 8.0 999.9 61.0* 53.1* 99.99 999.9 010000 724050 13743 19421026 55.4 24 52.1 24 1009.1 24 9999.9 0 7.1 24 10.1 24 27.0 999.9 61.3* 46.0* 99.99 999.9 110010 724050 13743 19421027 43.4 24 23.1 24 1012.1 24 9999.9 0 87.6 24 10.8 24 17.1 999.9 52.0* 35.1* 0.00I 999.9 000000 724050 13743 19421028 43.7 24 29.9 24 1022.6 24 9999.9 0 63.3 24 5.1 24 15.9 999.9 59.4* 30.9* 0.00I 999.9 100000 724050 13743 19421029 50.9 24 39.2 24 1029.2 24 9999.9 0 32.2 24 6.8 24 12.0 999.9 65.3* 40.3* 0.00I 999.9 000000 724050 13743 19421030 55.6 24 47.8 24 1027.2 24 9999.9 0 4.0 24 4.8 24 14.0 999.9 73.4* 43.0* 0.00I 999.9 100000 724050 13743 19421031 62.4 24 54.9 23 1019.3 24 9999.9 0 4.7 24 7.0 24 12.0 999.9 74.3* 51.3* 0.00I 999.9 000000 724050 13743 19421101 58.3 24 47.9 24 1008.0 24 9999.9 0 4.8 24 9.2 24 22.0 999.9 66.0* 51.3* 99.99 999.9 110000 724050 13743 19421102 50.9 24 38.1 24 1014.3 24 9999.9 0 3.3 24 6.5 24 19.0 999.9 68.4* 38.3* 0.00I 999.9 000000 724050 13743 19421103 50.3 24 37.2 17 1020.9 24 9999.9 0 21.4 24 14.3 24 35.0 999.9 63.3* 42.4* 99.99 999.9 010000 724050 13743 19421104 45.5 24 30.7 24 1031.8 24 9999.9 0 37.2 24 8.1 24 16.9 999.9 53.4* 37.0* 0.00I 999.9 000000 724050 13743 19421105 44.1 24 35.0 24 1033.1 24 9999.9 0 3.7 24 2.6 24 10.1 999.9 59.4* 32.4* 0.00I 999.9 000000 724050 13743 19421106 54.8 24 48.1 24 1028.0 24 9999.9 0 4.2 24 2.4 24 13.0 999.9 61.3* 50.0* 99.99 999.9 010000 724050 13743 19421107 54.4 24 44.5 24 1029.4 24 9999.9 0 3.3 24 3.5 24 15.9 999.9 57.4* 51.1* 99.99 999.9 110000 724050 13743 19421108 57.1 24 49.2 24 1024.0 24 9999.9 0 3.0 24 3.3 24 13.0 999.9 68.4* 51.1* 99.99 999.9 110000 724050 13743 19421109 52.8 24 45.1 24 1026.2 24 9999.9 0 3.7 24 9.8 24 15.9 999.9 60.3* 43.3* 99.99 999.9 110000 724050 13743 19421110 59.6 24 53.7 24 1015.9 24 9999.9 0 4.7 24 10.7 24 26.0 999.9 69.3* 54.0* 99.99 999.9 010010 724050 13743 19421111 45.2 24 24.8 24 1019.6 24 9999.9 0 72.5 24 16.6 24 29.9 999.9 59.0* 39.0* 0.00I 999.9 000000 724050 13743 19421112 42.6 24 28.1 24 1017.9 24 9999.9 0 4.8 24 9.1 24 21.0 999.9 53.4* 34.3* 0.00I 999.9 000000 724050 13743 19421113 50.6 24 29.2 24 1007.2 24 9999.9 0 41.1 24 17.4 24 35.0 999.9 59.4* 40.3* 0.00I 999.9 000000 724050 13743 19421114 34.6 24 12.7 24 1022.0 24 9999.9 0 83.8 24 18.1 24 26.0 999.9 39.0* 28.0* 0.00I 999.9 000000 724050 13743 19421115 35.2 24 18.1 24 1029.3 24 9999.9 0 4.1 24 6.7 24 15.9 999.9 49.3* 25.3* 0.00I 999.9 000000 724050 13743 19421116 48.1 24 26.2 24 1027.4 24 9999.9 0 4.5 24 8.5 23 14.0 999.9 64.4* 36.3* 0.00I 999.9 000000 724050 13743 19421117 55.6 24 43.5 24 1025.3 24 9999.9 0 2.9 24 9.1 24 15.9 999.9 72.3* 43.3* 0.00I 999.9 100000 724050 13743 19421118 63.6 24 51.4 24 1019.4 24 9999.9 0 5.7 24 7.8 24 14.0 999.9 72.3* 55.0* 0.00I 999.9 000000 724050 13743 19421119 53.9 24 42.4 24 1024.2 24 9999.9 0 2.9 24 3.2 24 11.1 999.9 70.3* 39.4* 0.00I 999.9 100000 724050 13743 19421120 63.3 24 48.1 24 1020.3 24 9999.9 0 9.3 24 7.0 24 17.1 999.9 79.0* 52.0* 0.00I 999.9 000000 724050 13743 19421121 65.7 24 54.1 24 1015.2 24 9999.9 0 7.1 24 6.4 24 22.0 999.9 72.0* 57.9* 99.99 999.9 010000 724050 13743 19421122 45.5 24 33.6 24 1025.0 23 9999.9 0 8.8 24 7.2 24 22.0 999.9 57.0* 39.9* 99.99 999.9 010000 724050 13743 19421123 43.1 24 35.7 24 1025.5 24 9999.9 0 4.4 24 5.6 24 15.9 999.9 45.3* 39.9* 99.99 999.9 110000 724050 13743 19421124 44.9 24 43.5 24 1008.3 24 9999.9 0 1.9 24 8.1 24 21.0 999.9 47.3* 39.9* 99.99 999.9 110000 724050 13743 19421125 49.7 24 41.8 24 999.9 24 9999.9 0 4.8 24 17.3 24 29.9 999.9 53.4* 45.0* 99.99 999.9 010000 724050 13743 19421126 47.3 24 37.6 24 1005.8 24 9999.9 0 3.6 24 5.0 24 8.9 999.9 60.3* 36.3* 0.00I 999.9 000000 724050 13743 19421127 43.6 24 22.3 24 1011.6 24 9999.9 0 41.6 24 14.9 24 22.9 999.9 55.4* 36.0* 0.00I 999.9 000000 724050 13743 19421128 35.1 24 15.5 24 1021.8 24 9999.9 0 21.8 24 10.1 24 21.0 999.9 45.3* 26.1* 0.00I 999.9 000000 724050 13743 19421129 40.0 24 25.8 24 1017.8 24 9999.9 0 4.7 24 8.2 24 17.1 999.9 46.4* 35.1* 99.99 999.9 010000 724050 13743 19421130 44.0 24 34.5 24 1010.9 24 9999.9 0 4.9 24 8.9 24 17.1 999.9 47.3* 38.3* 99.99 999.9 010000 724050 13743 19421201 38.5 24 34.8 24 1009.1 24 9999.9 0 1.4 24 3.7 24 15.9 999.9 49.3* 30.4* 99.99 999.9 110000 724050 13743 19421202 40.3 24 26.1 24 988.7 24 9999.9 0 32.0 24 18.5 24 35.0 999.9 51.3* 26.1* 99.99 999.9 111000 724050 13743 19421203 28.4 24 5.2 24 1006.2 24 9999.9 0 84.0 24 14.1 24 30.1 999.9 36.3* 21.9* 0.00I 999.9 000000 724050 13743 19421204 31.1 24 13.4 24 1013.4 24 9999.9 0 48.7 24 8.0 24 21.0 999.9 42.1* 21.9* 0.00I 999.9 000000 724050 13743 19421205 34.6 24 17.5 24 1020.9 24 9999.9 0 21.2 24 7.6 24 15.9 999.9 41.4* 28.0* 0.00I 999.9 000000 724050 13743 19421206 35.7 24 30.4 24 1017.5 24 9999.9 0 3.3 24 5.8 24 13.0 999.9 39.4* 32.0* 99.99 999.9 111000 724050 13743 19421207 36.7 24 27.0 24 1024.9 24 9999.9 0 4.5 24 5.4 24 13.0 999.9 40.3* 33.4* 0.00I 999.9 000000 724050 13743 19421208 36.7 24 24.3 24 1027.8 24 9999.9 0 8.2 24 6.0 24 15.9 999.9 40.3* 30.9* 0.00I 999.9 000000 724050 13743 19421209 37.9 24 28.2 24 1024.8 24 9999.9 0 4.7 24 7.3 24 15.9 999.9 43.3* 32.0* 99.99 999.9 101000 724050 13743 19421210 36.8 24 32.0 24 1027.8 24 9999.9 0 2.1 24 4.4 24 12.0 999.9 44.4* 28.0* 0.00I 999.9 100000 724050 13743 19421211 41.5 24 35.5 24 1019.3 24 9999.9 0 2.6 24 4.2 24 10.1 999.9 48.4* 34.0* 0.00I 999.9 100000 724050 13743 19421212 42.7 24 33.2 24 1011.1 24 9999.9 0 15.9 24 6.5 24 15.9 999.9 49.3* 37.0* 99.99 999.9 110000 724050 13743 19421213 33.6 24 18.8 24 1010.8 24 9999.9 0 18.5 24 19.6 24 35.9 999.9 42.4* 25.0* 99.99 999.9 011100 724050 13743 19421214 26.0 24 6.3 24 1027.1 24 9999.9 0 5.9 24 13.7 24 22.0 999.9 31.3* 19.0* 0.00I 999.9 000000 724050 13743 19421215 35.2 24 19.7 24 1015.7 24 9999.9 0 4.0 24 6.3 24 15.9 999.9 45.3* 30.0* 0.00I 999.9 000000 724050 13743 19421216 38.6 24 25.0 24 1007.1 24 9999.9 0 5.2 24 13.1 24 23.9 999.9 46.9* 30.4* 99.99 999.9 010000 724050 13743 19421217 27.7 24 13.7 24 1018.0 24 9999.9 0 4.9 24 11.0 24 22.9 999.9 34.3* 19.9* 99.99 999.9 001000 724050 13743 19421218 37.6 24 25.9 24 1014.7 24 9999.9 0 4.3 24 12.8 24 24.1 999.9 43.3* 28.9* 99.99 999.9 001000 724050 13743 19421219 34.6 24 20.9 24 1028.2 24 9999.9 0 5.2 24 9.5 24 17.1 999.9 39.4* 30.9* 0.00I 999.9 000000 724050 13743 19421220 18.9 24 8.6 24 1031.7 24 9999.9 0 3.4 24 11.2 24 22.0 999.9 32.0* 12.0* 99.99 999.9 001000 724050 13743 19421221 12.8 24 -0.2 24 1036.9 24 9999.9 0 17.3 24 7.9 24 18.1 999.9 28.0* 1.9* 0.00I 999.9 000000 724050 13743 19421222 22.0 24 12.5 24 1029.0 24 9999.9 0 3.9 24 9.0 24 17.1 999.9 34.0* 12.0* 99.99 999.9 010000 724050 13743 19421223 37.4 24 34.8 24 1015.0 24 9999.9 0 2.1 24 6.9 24 15.9 999.9 46.9* 31.3* 99.99 999.9 110000 724050 13743 19421224 39.4 24 37.1 24 1020.4 24 9999.9 0 2.3 24 1.7 24 14.0 999.9 46.0* 34.0* 0.00I 999.9 100000 724050 13743 19421225 34.2 24 33.3 24 1022.5 24 9999.9 0 0.3 24 0.6 24 7.0 999.9 42.4* 28.0* 99.99 999.9 110000 724050 13743 19421226 41.3 24 39.6 24 1028.7 24 9999.9 0 1.0 24 5.9 24 15.9 999.9 44.4* 37.9* 99.99 999.9 110000 724050 13743 19421227 37.7 24 31.4 24 1037.6 24 9999.9 0 4.6 24 7.8 24 18.1 999.9 42.4* 34.0* 99.99 999.9 110000 724050 13743 19421228 40.9 24 40.3 24 1022.8 24 9999.9 0 0.8 24 1.6 24 10.1 999.9 46.4* 37.0* 99.99 999.9 110000 724050 13743 19421229 43.0 24 42.5 24 1016.9 24 9999.9 0 1.8 24 6.6 24 15.9 999.9 48.4* 39.9* 99.99 999.9 110000 724050 13743 19421230 43.8 24 41.1 24 1001.5 24 9999.9 0 11.5 24 9.4 24 26.0 999.9 48.9* 39.9* 99.99 999.9 110000 724050 13743 19421231 42.5 24 31.2 24 1012.8 24 9999.9 0 46.0 24 17.1 24 26.0 999.9 47.3* 39.0* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1947/0000755000175000017500000000000014302004506015104 5ustar nileshnileshfluids-1.0.22/tests/gsod/1947/724050-13743.op0000644000175000017500000014327214302004506016675 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19470101 29.2 24 26.6 24 1038.4 24 1037.6 24 1.5 24 8.9 24 12.0 999.9 33.4* 27.3* 99.99 999.9 011000 724050 13743 19470102 33.4 24 32.5 24 1029.6 24 1028.8 24 1.6 24 5.3 24 9.9 999.9 35.4* 31.3* 99.99 999.9 110000 724050 13743 19470103 43.2 24 42.5 24 1018.4 24 1017.7 24 0.9 24 9.0 24 16.9 999.9 51.3* 36.3* 99.99 999.9 110000 724050 13743 19470104 42.0 24 31.6 23 1024.2 24 1023.5 24 8.5 24 11.7 24 19.0 999.9 48.4* 36.3* 0.00I 999.9 100000 724050 13743 19470105 35.0 24 29.7 24 1022.4 24 1021.7 24 4.0 24 5.0 24 13.0 999.9 38.3* 31.3* 99.99 999.9 010000 724050 13743 19470106 34.0 24 26.9 24 1020.2 24 1019.4 24 7.1 24 10.3 24 18.1 999.9 37.4* 31.3* 99.99 999.9 011000 724050 13743 19470107 32.9 24 25.5 24 1019.6 24 1018.8 24 3.6 24 5.5 24 8.9 999.9 43.3* 25.3* 99.99 999.9 111000 724050 13743 19470108 43.7 24 28.5 24 1011.5 24 1010.7 24 11.5 24 10.6 24 16.9 999.9 49.3* 38.3* 0.00I 999.9 000000 724050 13743 19470109 37.3 24 20.9 24 1016.8 24 1015.9 24 11.8 24 14.5 24 19.0 999.9 45.3* 31.3* 0.00I 999.9 000000 724050 13743 19470110 33.1 24 18.8 24 1024.3 24 1023.5 24 12.4 24 9.2 24 19.0 999.9 39.4* 28.4* 0.00I 999.9 000000 724050 13743 19470111 42.6 24 22.3 24 1016.4 24 1015.6 24 11.1 24 9.9 24 14.0 999.9 58.3* 34.3* 0.00I 999.9 000000 724050 13743 19470112 50.6 23 33.4 23 1013.1 23 1012.3 23 9.5 23 7.0 23 14.0 999.9 54.3* 46.4* 99.99 999.9 010000 724050 13743 19470113 35.8 24 24.0 24 1026.5 24 1025.8 24 7.7 24 7.7 24 9.9 999.9 45.3* 29.3* 0.00I 999.9 000000 724050 13743 19470114 40.4 24 37.8 24 1023.5 24 1022.7 24 2.5 24 8.7 24 12.0 999.9 43.3* 37.4* 99.99 999.9 110000 724050 13743 19470115 43.7 24 42.7 24 1019.3 24 1018.5 24 1.0 24 3.7 24 15.9 999.9 50.4* 40.3* 99.99 999.9 110000 724050 13743 19470116 47.0 24 45.3 24 1015.1 24 1014.3 24 2.0 24 4.9 24 9.9 999.9 51.3* 43.3* 99.99 999.9 110000 724050 13743 19470117 42.6 24 29.9 24 1026.2 24 1025.5 24 8.8 24 9.7 24 23.9 999.9 52.3* 38.3* 0.00I 999.9 100000 724050 13743 19470118 43.5 24 29.4 24 1025.3 24 1024.5 24 9.7 24 5.7 24 9.9 999.9 54.3* 37.4* 99.99 999.9 010000 724050 13743 19470119 41.2 24 30.7 24 1023.2 24 1022.5 24 5.8 24 2.7 24 9.9 999.9 48.4* 34.3* 99.99 999.9 110000 724050 13743 19470120 45.7 24 42.6 24 1004.7 24 1003.9 24 4.1 24 5.3 24 15.9 999.9 54.3* 42.4* 99.99 999.9 110000 724050 13743 19470121 42.6 24 29.6 24 1003.9 24 1003.2 24 13.6 24 16.8 24 29.9 999.9 50.4* 32.4* 99.99 999.9 010000 724050 13743 19470122 20.3 24 -0.1 24 1023.8 24 1023.1 24 14.3 24 19.0 24 29.9 999.9 31.3* 13.5* 0.00I 999.9 000000 724050 13743 19470123 25.7 24 12.0 24 1023.7 24 1023.0 24 7.9 24 5.3 24 15.9 999.9 44.4* 15.4* 0.00I 999.9 000000 724050 13743 19470124 45.9 24 29.9 24 1016.2 24 1015.4 24 10.4 24 9.9 24 14.0 999.9 60.3* 37.4* 0.00I 999.9 000000 724050 13743 19470125 54.1 24 36.7 24 1014.7 24 1013.8 24 11.4 24 7.5 24 15.9 999.9 62.4* 46.4* 0.00I 999.9 000000 724050 13743 19470126 45.6 23 42.6 23 1011.3 23 1010.6 23 3.6 23 2.9 23 9.9 999.9 52.3* 40.3* 99.99 999.9 110000 724050 13743 19470127 47.8 24 37.0 24 1012.9 24 1012.1 24 8.0 24 5.3 24 12.0 999.9 60.3* 37.4* 0.00I 999.9 100000 724050 13743 19470128 51.4 24 33.9 24 1016.4 24 1015.6 24 7.6 24 5.4 24 8.9 999.9 66.4* 43.3* 0.00I 999.9 000000 724050 13743 19470129 51.0 24 34.9 24 1016.1 24 1015.3 24 6.2 24 4.4 24 9.9 999.9 67.3* 38.3* 0.00I 999.9 000000 724050 13743 19470130 64.1 24 53.5 24 1008.3 24 1007.5 24 10.1 24 11.9 24 16.9 999.9 74.3* 56.3* 0.00I 999.9 000000 724050 13743 19470131 60.4 24 44.9 24 1006.8 24 1006.0 24 11.0 24 11.6 24 26.0 999.9 71.2* 50.4* 99.99 999.9 010000 724050 13743 19470201 41.9 24 25.7 24 1020.0 24 1019.2 24 9.8 24 7.8 24 12.0 999.9 49.3* 33.4* 0.00I 999.9 000000 724050 13743 19470202 35.9 24 22.5 24 1022.1 24 1021.4 24 10.9 24 14.3 24 23.9 999.9 40.3* 30.4* 0.00I 999.9 000000 724050 13743 19470203 30.9 24 14.7 24 1027.2 24 1026.4 24 11.0 24 9.4 24 16.9 999.9 41.4* 22.5* 0.00I 999.9 000000 724050 13743 19470204 38.2 24 25.4 24 1005.9 24 1005.2 24 7.3 24 14.0 24 23.9 999.9 47.3* 24.4* 99.99 999.9 111000 724050 13743 19470205 13.0 24 -3.0 24 1003.4 24 1002.6 24 12.1 24 18.6 24 29.9 999.9 22.5* 7.3* 0.00I 999.9 000000 724050 13743 19470206 22.9 24 3.1 24 1003.2 24 1002.4 24 11.4 24 11.7 24 16.9 999.9 40.3* 13.5* 0.00I 999.9 000000 724050 13743 19470207 40.9 24 25.2 24 999.2 24 998.4 24 8.8 24 8.7 24 15.9 999.9 51.3* 36.3* 0.00I 999.9 000000 724050 13743 19470208 25.4 23 13.0 23 1002.2 23 1001.5 23 7.4 23 16.0 23 23.9 999.9 43.3* 16.3* 99.99 999.9 101000 724050 13743 19470209 17.8 24 0.2 24 1007.2 24 1006.4 24 13.3 24 13.8 24 22.0 999.9 30.4* 10.4* 0.00I 999.9 000000 724050 13743 19470210 26.3 24 8.9 24 1011.2 24 1010.4 24 12.8 24 14.7 24 26.0 999.9 34.3* 18.3* 0.00I 999.9 000000 724050 13743 19470211 33.0 24 16.3 24 1023.1 24 1022.3 24 13.0 24 9.6 24 15.9 999.9 45.3* 26.4* 0.00I 999.9 000000 724050 13743 19470212 35.9 24 17.5 24 1030.0 24 1029.1 24 4.7 24 5.7 24 9.9 999.9 45.3* 28.4* 0.00I 999.9 000000 724050 13743 19470213 34.5 24 22.4 24 1029.7 24 1028.9 24 2.5 24 1.9 24 8.9 999.9 48.4* 25.3* 0.00I 999.9 000000 724050 13743 19470214 39.2 24 24.7 24 1021.2 24 1020.5 24 4.5 24 4.2 24 9.9 999.9 56.3* 28.4* 0.00I 999.9 000000 724050 13743 19470215 43.6 24 27.3 24 1008.0 24 1007.2 24 4.7 24 4.6 24 12.0 999.9 51.3* 32.4* 0.00I 999.9 000000 724050 13743 19470216 41.0 24 30.0 24 1006.3 24 1005.4 24 8.8 24 12.4 24 27.0 999.9 46.4* 37.4* 0.00I 999.9 000000 724050 13743 19470217 38.4 24 25.2 24 1010.4 24 1009.6 24 11.9 24 10.6 24 19.0 999.9 48.4* 31.3* 0.00I 999.9 000000 724050 13743 19470218 38.1 24 26.5 24 1012.7 24 1011.9 24 5.2 24 6.7 24 12.0 999.9 48.4* 28.4* 0.00I 999.9 000000 724050 13743 19470219 36.1 24 19.2 24 1019.3 24 1018.6 24 10.9 24 11.1 24 16.9 999.9 44.4* 31.3* 99.99 999.9 001000 724050 13743 19470220 24.4 24 17.9 24 1018.4 24 1017.6 24 4.2 24 8.0 24 14.0 999.9 32.4* 18.3* 99.99 999.9 001000 724050 13743 19470221 24.6 24 17.8 24 1004.3 24 1003.7 24 6.7 24 18.0 24 23.9 999.9 33.4* 19.4* 99.99 999.9 001000 724050 13743 19470222 25.6 23 11.1 23 1004.6 23 1003.9 23 12.3 23 19.2 23 29.9 999.9 30.4* 21.4* 0.00I 999.9 000000 724050 13743 19470223 26.5 23 10.6 23 1003.2 23 1002.5 23 9.6 23 11.5 23 19.0 999.9 35.4* 18.3* 99.99 999.9 001000 724050 13743 19470224 23.1 24 7.1 24 1004.0 24 1003.3 24 11.1 24 10.8 24 21.0 999.9 31.3* 15.4* 0.00I 999.9 000000 724050 13743 19470225 30.5 24 16.6 23 1005.5 24 1004.9 24 12.1 24 11.7 24 26.0 999.9 40.3* 21.4* 0.00I 999.9 000000 724050 13743 19470226 32.4 24 19.7 24 1008.2 24 1007.5 24 10.6 24 12.3 24 22.9 999.9 38.3* 24.4* 0.00I 999.9 000000 724050 13743 19470227 32.3 23 18.3 23 1010.7 23 1010.0 23 13.7 23 15.8 23 29.9 999.9 36.3* 27.3* 0.00I 999.9 000000 724050 13743 19470228 30.6 24 17.3 24 1016.7 24 1016.0 24 9.5 24 7.6 24 15.9 999.9 39.4* 22.5* 0.00I 999.9 000000 724050 13743 19470301 29.4 24 20.2 24 1016.1 24 1015.4 24 3.2 24 4.9 24 9.9 999.9 35.4* 22.5* 99.99 999.9 011000 724050 13743 19470302 33.4 24 30.8 24 999.5 24 998.8 24 2.9 24 10.3 24 22.0 999.9 35.4* 32.4* 99.99 999.9 111000 724050 13743 19470303 32.9 24 20.8 24 995.5 24 994.8 24 11.4 24 19.2 24 29.9 999.9 37.4* 28.4* 0.00I 999.9 000000 724050 13743 19470304 33.4 24 15.5 24 1007.8 24 1007.1 24 12.4 24 13.3 24 19.0 999.9 42.4* 27.3* 0.00I 999.9 000000 724050 13743 19470305 36.8 24 21.1 24 1013.0 24 1012.3 24 14.5 24 15.0 24 23.9 999.9 44.4* 32.4* 0.00I 999.9 000000 724050 13743 19470306 37.4 24 22.0 24 1017.1 24 1016.4 24 11.1 24 9.0 24 15.0 999.9 46.4* 30.4* 0.00I 999.9 000000 724050 13743 19470307 37.3 24 24.2 24 1018.0 24 1017.3 24 11.4 24 8.2 24 15.9 999.9 43.3* 30.4* 0.00I 999.9 000000 724050 13743 19470308 34.9 24 22.4 24 1013.5 24 1012.8 24 9.2 24 10.2 24 16.9 999.9 39.4* 27.3* 99.99 999.9 001000 724050 13743 19470309 34.3 24 19.5 23 1016.6 24 1015.8 24 12.5 24 13.0 24 19.0 999.9 42.4* 27.3* 0.00I 999.9 000000 724050 13743 19470310 36.1 24 22.2 24 1023.0 24 1022.3 24 11.3 24 10.2 24 15.9 999.9 44.4* 29.3* 0.00I 999.9 000000 724050 13743 19470311 38.7 23 25.0 23 1026.7 23 1026.0 23 11.6 23 7.6 23 9.9 999.9 49.3* 29.3* 0.00I 999.9 000000 724050 13743 19470312 40.1 24 24.3 24 1030.9 24 1030.2 24 5.5 24 3.4 24 9.9 999.9 54.3* 28.4* 0.00I 999.9 000000 724050 13743 19470313 39.6 24 29.5 24 1028.4 24 1027.7 24 5.4 24 4.9 24 14.0 999.9 50.4* 28.4* 99.99 999.9 110000 724050 13743 19470314 58.8 24 51.0 24 1006.5 24 1005.8 24 10.8 24 12.0 24 16.9 999.9 68.4* 49.3* 99.99 999.9 110000 724050 13743 19470315 48.9 24 33.4 24 1011.5 24 1010.9 24 10.7 24 9.0 24 18.1 999.9 60.3* 38.3* 0.00I 999.9 000000 724050 13743 19470316 40.3 24 25.4 24 1010.3 24 1009.7 24 9.8 24 7.6 24 19.0 999.9 48.4* 30.4* 0.00I 999.9 000000 724050 13743 19470317 38.1 24 23.2 24 1007.3 24 1006.7 24 10.7 24 11.0 24 19.0 999.9 43.3* 32.4* 99.99 999.9 010000 724050 13743 19470318 36.6 24 20.1 24 1014.6 24 1013.9 24 12.2 24 13.6 24 22.0 999.9 44.4* 30.4* 0.00I 999.9 000000 724050 13743 19470319 36.6 24 20.6 24 1022.0 24 1021.3 24 7.1 24 5.7 24 13.0 999.9 45.3* 26.4* 0.00I 999.9 000000 724050 13743 19470320 39.1 24 22.0 24 1014.7 24 1014.1 24 8.4 24 4.5 24 9.9 999.9 53.4* 27.3* 0.00I 999.9 000000 724050 13743 19470321 44.1 24 29.8 24 1008.8 24 1008.2 24 5.6 24 2.7 24 9.9 999.9 52.3* 36.3* 99.99 999.9 110000 724050 13743 19470322 42.0 24 32.3 24 1010.3 24 1009.6 24 8.8 24 11.3 24 26.0 999.9 48.4* 37.4* 99.99 999.9 110000 724050 13743 19470323 45.9 24 28.0 24 1015.7 24 1015.0 24 8.9 24 8.2 24 15.9 999.9 65.3* 34.3* 0.00I 999.9 000000 724050 13743 19470324 58.5 24 43.7 24 1004.3 24 1003.6 24 10.8 24 8.9 24 13.0 999.9 65.3* 51.3* 99.99 999.9 010000 724050 13743 19470325 52.2 24 36.3 24 988.1 24 987.4 24 13.0 24 18.1 24 35.0 999.9 61.3* 42.4* 99.99 999.9 010000 724050 13743 19470326 34.5 24 17.4 24 1001.1 24 1000.5 24 12.8 24 22.4 24 33.0 999.9 40.3* 30.4* 99.99 999.9 001000 724050 13743 19470327 35.7 24 19.6 24 1016.4 24 1015.8 24 13.5 24 12.6 24 19.0 999.9 43.3* 30.4* 0.00I 999.9 000000 724050 13743 19470328 36.7 24 23.5 24 1014.6 24 1013.9 24 8.7 24 10.9 24 19.0 999.9 46.4* 30.4* 99.99 999.9 001000 724050 13743 19470329 45.1 24 25.3 24 1013.1 24 1012.4 24 12.1 24 11.3 24 23.9 999.9 61.3* 32.4* 0.00I 999.9 000000 724050 13743 19470330 46.6 24 25.1 24 1016.7 24 1016.1 24 12.5 24 14.0 24 26.0 999.9 58.3* 37.4* 0.00I 999.9 000000 724050 13743 19470331 43.9 24 20.9 24 1026.3 24 1025.6 24 10.4 24 5.2 24 11.1 999.9 56.3* 32.4* 0.00I 999.9 000000 724050 13743 19470401 48.4 24 30.9 24 1025.8 24 1025.1 24 11.2 24 8.2 24 13.0 999.9 64.4* 36.3* 0.00I 999.9 000000 724050 13743 19470402 57.4 24 53.4 24 1013.2 24 1012.6 24 7.3 24 8.2 24 12.0 999.9 62.4* 54.3* 99.99 999.9 110000 724050 13743 19470403 52.1 24 46.9 24 1014.8 24 1014.2 24 5.3 24 6.5 24 15.0 999.9 60.3* 46.4* 99.99 999.9 110000 724050 13743 19470404 45.9 24 37.4 24 1026.0 24 1025.1 24 7.5 24 5.4 24 11.1 999.9 54.3* 36.3* 0.00I 999.9 100000 724050 13743 19470405 56.6 24 49.8 24 1018.5 24 1017.9 24 9.6 24 10.3 24 26.0 999.9 71.2* 47.3* 0.00I 999.9 100000 724050 13743 19470406 73.5 23 56.1 23 1011.5 23 1010.8 23 13.1 23 14.5 23 23.9 999.9 85.3* 66.4* 0.00I 999.9 000000 724050 13743 19470407 68.0 24 39.5 23 1016.1 24 1015.4 24 14.3 24 13.0 24 20.0 999.9 77.4* 57.4* 0.00I 999.9 000000 724050 13743 19470408 49.8 24 31.8 24 1025.3 24 1024.6 24 10.6 24 11.4 24 23.9 999.9 61.3* 40.3* 0.00I 999.9 000000 724050 13743 19470409 52.3 24 41.8 24 1017.5 24 1016.8 24 6.8 24 8.9 24 16.9 999.9 60.3* 45.3* 99.99 999.9 110000 724050 13743 19470410 52.9 24 37.9 24 1027.7 24 1027.0 24 8.9 24 6.2 24 19.0 999.9 64.4* 40.3* 0.00I 999.9 100000 724050 13743 19470411 62.9 24 51.0 24 1021.1 24 1020.6 24 10.9 24 10.2 24 15.9 999.9 80.2* 51.3* 99.99 999.9 010000 724050 13743 19470412 72.4 24 58.8 24 1014.8 24 1014.1 24 12.5 24 8.7 24 14.0 999.9 82.4* 65.3* 99.99 999.9 010000 724050 13743 19470413 59.8 24 36.6 24 1024.2 24 1023.5 24 13.5 24 9.2 24 15.9 999.9 72.3* 47.3* 0.00I 999.9 000000 724050 13743 19470414 53.5 24 41.4 24 1020.9 24 1020.2 24 8.7 24 4.6 24 8.9 999.9 57.4* 49.3* 99.99 999.9 110000 724050 13743 19470415 55.5 24 46.8 24 1017.5 24 1016.8 24 3.7 24 5.5 24 9.9 999.9 70.3* 47.3* 99.99 999.9 110000 724050 13743 19470416 58.3 24 53.4 24 1010.1 24 1009.4 24 5.9 24 9.5 24 15.9 999.9 69.3* 53.4* 99.99 999.9 110000 724050 13743 19470417 56.1 24 43.7 24 1009.5 24 1008.8 24 10.6 24 10.3 24 19.0 999.9 68.4* 50.4* 99.99 999.9 010000 724050 13743 19470418 54.5 24 40.5 24 1015.7 24 1015.0 24 9.0 24 10.4 24 23.9 999.9 73.4* 42.4* 0.00I 999.9 100000 724050 13743 19470419 67.1 24 43.5 16 1016.1 24 1015.4 24 11.9 24 8.0 24 9.9 999.9 81.3* 54.3* 0.00I 999.9 000000 724050 13743 19470420 63.9 24 46.9 24 1014.1 24 1013.4 24 9.7 24 7.5 24 13.0 999.9 83.3* 50.4* 0.00I 999.9 000000 724050 13743 19470421 48.2 24 42.3 24 1013.9 24 1013.2 24 5.0 24 11.6 24 19.0 999.9 9999.9 42.4* 99.99 999.9 111010 724050 13743 19470422 44.5 24 35.1 24 1025.6 24 1025.0 24 6.8 24 8.3 24 13.0 999.9 55.4* 38.3* 99.99 999.9 110000 724050 13743 19470423 49.3 24 35.5 24 1029.1 24 1028.4 24 11.2 24 6.8 24 12.0 999.9 64.4* 36.3* 0.00I 999.9 000000 724050 13743 19470424 61.3 24 49.2 24 1019.1 24 1018.5 24 11.4 24 8.3 24 12.0 999.9 81.3* 47.3* 0.00I 999.9 000000 724050 13743 19470425 60.2 24 43.6 24 1018.0 24 1017.4 24 12.6 24 9.1 24 20.0 999.9 75.4* 53.4* 99.99 999.9 010000 724050 13743 19470426 53.5 24 37.0 24 1017.9 24 1017.2 24 11.6 24 12.3 24 21.0 999.9 65.3* 46.4* 99.99 999.9 010000 724050 13743 19470427 61.0 24 40.8 24 1015.3 24 1014.6 24 11.4 24 9.6 24 19.0 999.9 76.3* 46.4* 0.00I 999.9 000000 724050 13743 19470428 51.3 24 31.4 23 1022.6 24 1022.0 24 13.0 24 12.3 24 28.9 999.9 62.4* 40.3* 99.99 999.9 010000 724050 13743 19470429 55.4 24 39.5 24 1021.8 24 1021.2 24 10.4 24 9.4 24 14.0 999.9 73.4* 42.4* 0.00I 999.9 000000 724050 13743 19470430 72.6 24 56.5 24 1012.9 24 1012.2 24 12.1 24 12.6 24 15.9 999.9 83.3* 66.4* 99.99 999.9 010000 724050 13743 19470501 75.7 24 63.3 24 1009.2 24 1008.7 24 11.6 24 7.9 24 16.9 999.9 84.4* 66.4* 99.99 999.9 010000 724050 13743 19470502 69.3 24 55.8 24 1004.4 24 1003.8 24 13.1 24 8.8 24 22.9 999.9 75.4* 61.3* 99.99 999.9 010000 724050 13743 19470503 58.3 24 49.9 24 1007.6 24 1006.9 24 6.8 24 6.8 24 11.1 999.9 69.3* 52.3* 99.99 999.9 110010 724050 13743 19470504 60.6 23 53.4 23 1006.5 23 1005.8 23 7.6 23 7.4 23 9.9 999.9 72.3* 54.3* 99.99 999.9 110000 724050 13743 19470505 59.1 24 49.2 24 1004.6 24 1003.8 24 11.6 24 10.9 24 21.0 999.9 66.4* 54.3* 99.99 999.9 010000 724050 13743 19470506 60.1 24 46.1 21 1008.5 24 1007.9 24 11.4 24 12.5 24 19.0 999.9 70.3* 49.3* 0.00I 999.9 000000 724050 13743 19470507 58.1 24 45.8 24 1007.3 24 1006.6 24 7.4 24 9.7 24 32.1 999.9 67.3* 50.4* 99.99 999.9 110000 724050 13743 19470508 49.1 24 34.0 24 1014.8 24 1014.1 24 13.5 24 16.2 24 25.1 999.9 57.4* 40.3* 0.00I 999.9 000000 724050 13743 19470509 46.5 24 29.2 24 1021.0 24 1020.3 24 12.1 24 12.3 24 16.9 999.9 56.3* 35.4* 0.00I 999.9 000000 724050 13743 19470510 49.1 24 29.5 24 1026.9 24 1026.2 24 11.1 24 9.2 24 15.9 999.9 62.4* 36.3* 0.00I 999.9 000000 724050 13743 19470511 55.6 24 32.7 24 1028.1 24 1027.4 24 10.3 24 4.1 24 9.9 999.9 73.4* 39.4* 0.00I 999.9 000000 724050 13743 19470512 64.6 24 41.5 24 1022.1 24 1021.5 24 7.4 24 2.2 24 9.9 999.9 86.4* 45.3* 0.00I 999.9 000000 724050 13743 19470513 72.5 24 49.5 24 1013.0 24 1012.3 24 8.0 24 7.1 24 20.0 999.9 89.2* 54.3* 0.00I 999.9 000000 724050 13743 19470514 71.0 24 59.4 24 1009.0 24 1008.2 24 11.5 24 8.7 24 20.0 999.9 78.3* 59.4* 99.99 999.9 010000 724050 13743 19470515 51.7 24 45.5 24 1020.6 24 1019.9 24 9.4 24 8.6 24 14.0 999.9 57.4* 48.4* 99.99 999.9 010000 724050 13743 19470516 57.0 23 49.1 23 1020.3 23 1019.6 23 8.9 23 5.5 23 9.9 999.9 66.4* 48.4* 0.00I 999.9 000000 724050 13743 19470517 67.1 24 58.7 24 1018.1 24 1017.4 24 5.9 24 4.8 24 9.9 999.9 78.3* 58.3* 99.99 999.9 110000 724050 13743 19470518 69.1 24 63.2 24 1012.9 24 1012.2 24 4.5 24 6.1 24 12.0 999.9 86.4* 61.3* 99.99 999.9 110010 724050 13743 19470519 75.8 24 65.7 24 1011.5 24 1010.9 24 8.2 24 4.4 24 9.9 999.9 91.2* 64.4* 0.00I 999.9 100000 724050 13743 19470520 77.1 24 66.7 24 1008.3 24 1007.7 24 9.5 24 5.1 24 9.9 999.9 88.3* 68.4* 0.00I 999.9 100000 724050 13743 19470521 76.3 24 66.1 24 1010.0 24 1009.4 24 13.0 24 8.7 24 14.0 999.9 85.3* 69.3* 99.99 999.9 010010 724050 13743 19470522 69.1 24 63.5 23 1013.5 24 1012.9 24 10.5 24 10.4 24 16.9 999.9 75.4* 62.4* 99.99 999.9 110010 724050 13743 19470523 68.3 24 60.5 24 1019.6 24 1018.9 24 6.9 24 4.6 24 9.9 999.9 81.3* 58.3* 0.00I 999.9 100000 724050 13743 19470524 76.6 24 67.3 24 1017.6 24 1016.9 24 9.4 24 6.8 24 8.9 999.9 90.3* 68.4* 0.00I 999.9 100000 724050 13743 19470525 75.1 24 66.9 24 1011.7 24 1011.0 24 11.1 24 9.7 24 15.0 999.9 82.4* 70.3* 99.99 999.9 010000 724050 13743 19470526 68.6 24 56.1 24 1014.0 24 1013.3 24 12.9 24 8.6 24 16.9 999.9 79.3* 60.3* 99.99 999.9 010010 724050 13743 19470527 71.6 24 59.6 24 1016.2 24 1015.5 24 11.0 24 6.3 24 12.0 999.9 84.4* 62.4* 0.00I 999.9 100000 724050 13743 19470528 76.6 24 65.2 24 1014.1 24 1013.5 24 12.0 24 8.9 24 14.0 999.9 87.3* 66.4* 0.00I 999.9 000000 724050 13743 19470529 80.3 24 69.1 24 1008.1 24 1007.5 24 11.1 24 10.2 24 15.9 999.9 90.3* 66.4* 99.99 999.9 010010 724050 13743 19470530 63.2 24 48.9 24 1013.2 24 1012.5 24 12.3 24 13.3 24 22.9 999.9 69.3* 54.3* 99.99 999.9 010000 724050 13743 19470531 63.9 24 44.7 24 1020.9 24 1020.2 24 13.0 24 7.4 24 13.0 999.9 79.3* 52.3* 0.00I 999.9 000000 724050 13743 19470601 67.3 24 9999.9 0 1019.6 24 1018.9 24 13.4 24 11.5 24 15.9 999.9 82.4* 56.3* 0.00I 999.9 000000 724050 13743 19470602 73.4 24 9999.9 0 1012.7 24 1012.0 24 13.5 24 12.5 24 16.9 999.9 82.4* 64.4* 0.00I 999.9 000000 724050 13743 19470603 74.8 24 9999.9 0 1009.1 24 1008.4 24 12.1 24 13.4 24 23.9 999.9 79.3* 71.2* 99.99 999.9 010010 724050 13743 19470604 65.4 24 9999.9 0 1021.5 24 1020.9 24 13.8 24 8.1 24 15.9 999.9 74.3* 50.4* 0.00I 999.9 000000 724050 13743 19470605 63.7 24 9999.9 0 1024.0 24 1023.3 24 13.4 24 5.3 24 12.0 999.9 76.3* 48.4* 0.00I 999.9 000000 724050 13743 19470606 73.6 23 67.5 6 1015.8 23 1015.3 23 9.1 23 7.8 23 9.9 999.9 89.2* 62.4* 0.00I 999.9 000000 724050 13743 19470607 76.0 24 68.3 24 1012.5 24 1011.8 24 7.4 24 5.0 24 13.0 999.9 86.4* 70.3* 99.99 999.9 010010 724050 13743 19470608 71.2 24 66.0 24 1009.2 24 1008.6 24 4.9 24 5.8 24 16.9 999.9 82.4* 65.3* 99.99 999.9 110010 724050 13743 19470609 68.1 24 62.3 24 1011.5 24 1010.9 24 4.8 24 4.6 24 8.9 999.9 77.4* 59.4* 0.00I 999.9 100000 724050 13743 19470610 75.9 24 66.7 24 1013.0 24 1012.3 24 6.3 24 7.5 24 11.1 999.9 89.2* 63.3* 0.00I 999.9 100000 724050 13743 19470611 83.0 24 72.5 24 1012.0 24 1011.3 24 8.5 24 6.9 24 9.9 999.9 96.3* 73.4* 0.00I 999.9 000000 724050 13743 19470612 85.6 24 74.2 24 1011.8 24 1011.2 24 6.6 24 3.6 24 9.9 999.9 95.4* 76.3* 0.00I 999.9 000000 724050 13743 19470613 77.5 24 67.3 24 1013.8 24 1013.1 24 7.7 24 7.2 24 11.1 999.9 86.4* 71.2* 99.99 999.9 110010 724050 13743 19470614 74.6 24 70.5 24 1009.3 24 1008.7 24 7.9 24 9.2 24 12.0 999.9 80.2* 69.3* 99.99 999.9 110010 724050 13743 19470615 73.4 24 59.0 24 1009.2 24 1008.5 24 12.7 24 9.1 24 14.0 999.9 84.4* 65.3* 99.99 999.9 010000 724050 13743 19470616 70.0 24 54.3 24 1011.7 24 1011.0 24 10.4 24 8.8 24 16.9 999.9 79.3* 63.3* 0.00I 999.9 000000 724050 13743 19470617 68.0 24 53.1 23 1012.6 24 1011.9 24 7.9 24 6.8 24 9.9 999.9 78.3* 57.4* 0.00I 999.9 000000 724050 13743 19470618 68.4 24 60.4 24 1012.7 24 1012.0 24 5.2 24 6.8 24 9.9 999.9 73.4* 66.4* 99.99 999.9 010000 724050 13743 19470619 69.4 24 56.5 24 1015.3 24 1014.7 24 9.2 24 7.7 24 13.0 999.9 79.3* 61.3* 0.00I 999.9 000000 724050 13743 19470620 70.0 24 52.7 24 1019.0 24 1018.4 24 10.9 24 4.8 24 9.9 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19470621 66.4 24 56.6 24 1023.5 24 1022.9 24 11.2 24 7.8 24 13.0 999.9 72.3* 59.4* 0.00I 999.9 100000 724050 13743 19470622 67.5 24 52.3 23 1026.1 24 1025.4 24 12.4 24 7.2 24 15.9 999.9 81.3* 53.4* 0.00I 999.9 100000 724050 13743 19470623 70.9 24 55.0 24 1021.9 24 1021.1 24 10.5 24 3.7 24 9.9 999.9 84.4* 57.4* 0.00I 999.9 100000 724050 13743 19470624 69.0 24 54.2 24 1017.4 24 1016.7 24 11.8 24 5.1 24 13.0 999.9 79.3* 58.3* 0.00I 999.9 000000 724050 13743 19470625 75.1 23 59.5 23 1014.2 23 1013.5 23 9.3 23 7.8 23 15.0 999.9 86.4* 66.4* 99.99 999.9 010000 724050 13743 19470626 74.2 24 64.6 24 1013.6 24 1012.9 24 6.0 24 5.6 24 13.0 999.9 81.3* 66.4* 99.99 999.9 110010 724050 13743 19470627 77.6 24 66.6 24 1011.9 24 1011.2 24 8.0 24 5.6 24 8.9 999.9 90.3* 69.3* 99.99 999.9 110000 724050 13743 19470628 76.4 24 69.7 23 1011.9 24 1011.2 24 7.6 24 5.8 24 9.9 999.9 84.4* 69.3* 99.99 999.9 110000 724050 13743 19470629 75.9 24 69.6 24 1012.3 24 1011.6 24 6.3 24 8.6 24 12.0 999.9 88.3* 70.3* 99.99 999.9 110000 724050 13743 19470630 78.9 24 70.1 24 1013.6 24 1013.0 24 8.2 24 4.2 24 8.0 999.9 87.3* 72.3* 0.00I 999.9 100000 724050 13743 19470701 81.4 24 72.7 24 1011.8 24 1011.1 24 5.1 24 5.0 24 15.9 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19470702 77.3 24 63.0 24 1012.5 24 1011.8 24 12.7 24 9.4 24 13.0 999.9 85.3* 70.3* 99.99 999.9 010000 724050 13743 19470703 74.2 24 56.3 24 1015.8 24 1015.2 24 12.3 24 6.2 24 15.9 999.9 82.4* 62.4* 0.00I 999.9 000000 724050 13743 19470704 75.2 24 57.9 24 1016.4 24 1015.7 24 11.8 24 7.6 24 16.9 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19470705 78.0 24 57.8 24 1016.6 24 1015.9 24 12.0 24 4.2 24 13.0 999.9 91.2* 66.4* 0.00I 999.9 000000 724050 13743 19470706 78.5 24 63.7 24 1015.0 24 1014.4 24 13.8 24 7.2 24 16.9 999.9 90.3* 70.3* 0.00I 999.9 000000 724050 13743 19470707 73.3 24 67.3 24 1011.9 24 1011.2 24 8.1 24 7.9 24 15.9 999.9 80.2* 69.3* 99.99 999.9 110010 724050 13743 19470708 72.6 24 64.4 24 1012.4 24 1011.7 24 12.9 24 9.2 24 13.0 999.9 80.2* 67.3* 0.00I 999.9 000000 724050 13743 19470709 75.4 24 64.7 24 1015.0 24 1014.4 24 11.8 24 9.4 24 13.0 999.9 85.3* 68.4* 0.00I 999.9 100000 724050 13743 19470710 77.3 24 67.7 24 1017.5 24 1016.8 24 12.1 24 7.0 24 11.1 999.9 84.4* 72.3* 0.00I 999.9 000000 724050 13743 19470711 75.3 24 68.1 24 1017.3 24 1016.6 24 12.2 24 6.6 24 11.1 999.9 84.4* 68.4* 0.00I 999.9 000000 724050 13743 19470712 74.2 24 65.7 24 1016.2 24 1015.5 24 9.9 24 4.7 24 13.0 999.9 86.4* 66.4* 99.99 999.9 110010 724050 13743 19470713 75.0 24 65.5 23 1016.2 24 1015.6 24 8.8 24 4.8 24 13.0 999.9 89.2* 60.3* 99.99 999.9 110010 724050 13743 19470714 79.2 24 69.6 24 1014.2 24 1013.5 24 6.4 24 4.6 24 11.1 999.9 89.2* 71.2* 0.00I 999.9 000000 724050 13743 19470715 77.7 24 68.7 24 1011.7 24 1011.2 24 9.2 24 8.7 24 12.0 999.9 84.4* 72.3* 99.99 999.9 010000 724050 13743 19470716 79.7 24 70.3 24 1010.1 24 1009.4 24 11.1 24 9.1 24 13.0 999.9 88.3* 73.4* 99.99 999.9 110000 724050 13743 19470717 79.1 24 70.9 24 1010.0 24 1009.4 24 8.9 24 6.9 24 19.0 999.9 90.3* 72.3* 99.99 999.9 010010 724050 13743 19470718 79.0 24 70.8 24 1009.4 24 1008.8 24 7.1 24 5.8 24 13.0 999.9 89.2* 72.3* 0.00I 999.9 100000 724050 13743 19470719 79.1 24 72.3 24 1006.3 24 1005.7 24 6.4 24 9.0 24 13.0 999.9 84.4* 72.3* 99.99 999.9 110000 724050 13743 19470720 73.5 24 58.9 24 1012.0 24 1011.4 24 12.2 24 8.5 24 13.0 999.9 81.3* 65.3* 0.00I 999.9 000000 724050 13743 19470721 71.0 24 63.4 24 1011.9 24 1011.2 24 7.5 24 6.5 24 8.9 999.9 76.3* 66.4* 99.99 999.9 110000 724050 13743 19470722 71.2 24 61.1 24 1009.8 24 1009.1 24 10.2 24 7.6 24 14.0 999.9 79.3* 65.3* 99.99 999.9 010000 724050 13743 19470723 69.7 24 50.5 24 1018.2 24 1017.5 24 12.3 24 8.9 24 13.0 999.9 78.3* 60.3* 0.00I 999.9 000000 724050 13743 19470724 71.1 24 52.5 24 1026.1 24 1025.4 24 11.2 24 3.3 24 8.9 999.9 84.4* 58.3* 0.00I 999.9 000000 724050 13743 19470725 73.8 24 59.1 24 1027.7 24 1027.0 24 8.0 24 3.1 24 8.9 999.9 87.3* 61.3* 0.00I 999.9 000000 724050 13743 19470726 76.2 24 61.4 24 1024.4 24 1023.7 24 9.7 24 6.0 24 9.9 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19470727 78.0 24 64.1 24 1018.7 24 1018.0 24 8.6 24 8.8 24 13.0 999.9 90.3* 69.3* 0.00I 999.9 000000 724050 13743 19470728 79.6 24 68.3 24 1012.6 24 1011.9 24 9.4 24 6.6 24 11.1 999.9 85.3* 75.4* 99.99 999.9 110000 724050 13743 19470729 79.1 24 66.4 24 1013.3 24 1012.6 24 11.5 24 6.8 24 13.0 999.9 89.2* 68.4* 0.00I 999.9 000000 724050 13743 19470730 82.1 24 66.4 24 1014.8 24 1014.1 24 9.9 24 6.0 24 9.9 999.9 94.3* 71.2* 0.00I 999.9 000000 724050 13743 19470731 79.7 24 68.5 24 1011.8 24 1011.1 24 7.9 24 6.8 24 9.9 999.9 88.3* 73.4* 99.99 999.9 010010 724050 13743 19470801 74.2 24 63.0 24 1011.9 24 1011.2 24 10.9 24 7.9 24 13.0 999.9 81.3* 69.3* 0.00I 999.9 000000 724050 13743 19470802 71.6 24 56.3 24 1016.9 24 1016.2 24 9.3 24 6.8 24 8.9 999.9 84.4* 62.4* 99.99 999.9 010000 724050 13743 19470803 74.9 24 63.5 24 1017.4 24 1016.7 24 10.3 24 6.3 24 9.9 999.9 84.4* 66.4* 0.00I 999.9 000000 724050 13743 19470804 76.2 24 68.6 24 1017.1 24 1016.4 24 9.5 24 6.6 24 9.9 999.9 82.4* 72.3* 99.99 999.9 010000 724050 13743 19470805 76.2 24 62.4 24 1017.4 24 1016.8 24 10.5 24 7.1 24 9.9 999.9 85.3* 66.4* 0.00I 999.9 100000 724050 13743 19470806 76.2 24 61.6 24 1016.3 24 1015.6 24 6.4 24 3.2 24 9.9 999.9 88.3* 64.4* 0.00I 999.9 000000 724050 13743 19470807 78.1 24 65.7 24 1014.9 24 1014.2 24 7.1 24 5.3 24 8.9 999.9 87.3* 71.2* 0.00I 999.9 000000 724050 13743 19470808 79.0 24 68.1 24 1015.2 24 1014.5 24 10.2 24 8.5 24 12.0 999.9 88.3* 72.3* 99.99 999.9 010010 724050 13743 19470809 77.4 24 70.0 24 1014.2 24 1013.5 24 3.4 24 3.0 24 6.0 999.9 90.3* 70.3* 99.99 999.9 110010 724050 13743 19470810 76.7 24 69.1 24 1016.6 24 1016.0 24 5.5 24 6.9 24 16.9 999.9 86.4* 70.3* 0.00I 999.9 100000 724050 13743 19470811 78.3 24 70.4 24 1023.5 24 1022.8 24 7.2 24 4.9 24 8.9 999.9 91.2* 71.2* 0.00I 999.9 000000 724050 13743 19470812 81.3 24 70.8 24 1022.4 24 1021.7 24 5.8 24 3.8 24 8.9 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19470813 83.6 24 72.4 24 1018.4 24 1017.7 24 6.3 24 6.8 24 9.9 999.9 95.4* 73.4* 0.00I 999.9 100000 724050 13743 19470814 85.0 24 71.4 24 1015.8 24 1015.0 24 5.4 24 6.1 24 9.9 999.9 97.3* 75.4* 0.00I 999.9 100000 724050 13743 19470815 84.9 24 69.0 24 1015.4 24 1014.7 24 8.7 24 6.9 24 13.0 999.9 97.3* 74.3* 99.99 999.9 010010 724050 13743 19470816 84.2 24 69.9 24 1017.6 24 1017.0 24 12.8 24 5.5 24 8.9 999.9 96.3* 74.3* 0.00I 999.9 000000 724050 13743 19470817 80.3 24 73.5 24 1020.6 24 1020.0 24 6.6 24 5.9 24 15.0 999.9 88.3* 75.4* 99.99 999.9 110000 724050 13743 19470818 76.3 24 70.0 24 1023.6 24 1022.9 24 8.7 24 7.0 24 9.9 999.9 80.2* 73.4* 99.99 999.9 010000 724050 13743 19470819 79.0 24 70.7 24 1021.0 24 1020.3 24 9.1 24 5.7 24 8.9 999.9 89.2* 71.2* 0.00I 999.9 000000 724050 13743 19470820 82.6 24 71.5 24 1018.7 24 1018.0 24 5.6 24 5.8 24 14.0 999.9 95.4* 76.3* 99.99 999.9 010010 724050 13743 19470821 76.0 24 70.2 24 1022.2 24 1021.5 24 4.2 24 7.6 24 9.9 999.9 83.3* 72.3* 99.99 999.9 110010 724050 13743 19470822 75.8 24 70.2 24 1020.0 24 1019.3 24 3.0 24 2.9 24 7.0 999.9 82.4* 71.2* 99.99 999.9 110010 724050 13743 19470823 78.2 24 68.7 24 1018.5 24 1017.8 24 7.7 24 4.7 24 9.9 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19470824 79.8 24 68.9 24 1016.7 24 1016.0 24 5.0 24 4.7 24 7.0 999.9 91.2* 69.3* 0.00I 999.9 000000 724050 13743 19470825 82.9 24 69.9 24 1014.5 24 1013.8 24 6.9 24 5.7 24 8.0 999.9 94.3* 73.4* 0.00I 999.9 100000 724050 13743 19470826 84.2 24 71.1 24 1011.4 24 1010.7 24 7.8 24 4.2 24 8.9 999.9 96.3* 74.3* 0.00I 999.9 000000 724050 13743 19470827 75.1 24 70.9 24 1014.6 24 1013.9 24 3.5 24 8.9 24 14.0 999.9 78.3* 72.3* 99.99 999.9 110010 724050 13743 19470828 71.7 24 65.5 24 1016.9 24 1016.3 24 4.5 24 8.0 24 11.1 999.9 82.4* 66.4* 99.99 999.9 110000 724050 13743 19470829 77.6 24 67.9 24 1017.5 24 1016.9 24 5.2 24 6.3 24 8.9 999.9 90.3* 67.3* 0.00I 999.9 100000 724050 13743 19470830 78.5 24 69.8 24 1019.3 24 1018.6 24 5.5 24 6.2 24 9.9 999.9 87.3* 72.3* 0.00I 999.9 000000 724050 13743 19470831 81.4 24 69.7 24 1014.7 24 1014.1 24 7.2 24 6.7 24 12.0 999.9 93.4* 73.4* 0.00I 999.9 100000 724050 13743 19470901 78.3 24 70.5 24 1014.2 24 1013.5 24 7.6 24 6.4 24 8.9 999.9 83.3* 73.4* 99.99 999.9 010000 724050 13743 19470902 78.8 24 68.8 24 1009.7 24 1009.1 24 10.4 24 9.6 24 19.0 999.9 89.2* 71.2* 99.99 999.9 010010 724050 13743 19470903 78.0 24 63.8 24 1015.5 24 1014.8 24 11.1 24 6.7 24 9.9 999.9 89.2* 67.3* 0.00I 999.9 000000 724050 13743 19470904 80.3 24 67.4 24 1016.6 24 1015.9 24 11.4 24 7.0 24 14.0 999.9 94.3* 70.3* 0.00I 999.9 000000 724050 13743 19470905 78.7 24 70.2 24 1014.4 24 1013.7 24 9.1 24 5.0 24 13.0 999.9 87.3* 74.3* 99.99 999.9 010000 724050 13743 19470906 73.8 24 69.2 24 1015.1 24 1014.4 24 5.9 24 5.1 24 8.0 999.9 76.3* 69.3* 99.99 999.9 110010 724050 13743 19470907 75.7 24 72.6 24 1017.2 24 1016.5 24 5.2 24 3.5 24 8.0 999.9 82.4* 72.3* 99.99 999.9 110010 724050 13743 19470908 76.9 24 72.6 24 1019.4 24 1018.7 24 6.5 24 6.9 24 9.9 999.9 85.3* 74.3* 99.99 999.9 110000 724050 13743 19470909 78.7 24 72.7 24 1022.2 24 1021.5 24 8.0 24 8.0 24 12.0 999.9 85.3* 73.4* 0.00I 999.9 100000 724050 13743 19470910 78.5 24 71.9 24 1022.6 24 1022.0 24 8.6 24 6.9 24 12.0 999.9 85.3* 72.3* 0.00I 999.9 100000 724050 13743 19470911 80.4 24 73.6 24 1021.1 24 1020.4 24 10.8 24 7.3 24 9.9 999.9 90.3* 74.3* 0.00I 999.9 000000 724050 13743 19470912 78.9 24 71.4 24 1018.2 24 1017.5 24 10.9 24 6.4 24 12.0 999.9 88.3* 70.3* 0.00I 999.9 100000 724050 13743 19470913 80.6 24 71.3 24 1015.0 24 1014.3 24 11.2 24 7.2 24 9.9 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19470914 80.9 24 70.7 24 1014.1 24 1013.4 24 12.3 24 4.0 24 8.9 999.9 90.3* 71.2* 0.00I 999.9 000000 724050 13743 19470915 78.8 24 71.9 24 1013.0 24 1012.3 24 10.5 24 8.3 24 13.0 999.9 82.4* 75.4* 99.99 999.9 010010 724050 13743 19470916 71.8 24 59.5 24 1017.5 24 1016.7 24 12.9 24 10.3 24 15.9 999.9 78.3* 67.3* 99.99 999.9 010010 724050 13743 19470917 67.8 24 53.8 24 1029.9 24 1029.2 24 8.2 24 7.1 24 9.9 999.9 79.3* 56.3* 0.00I 999.9 000000 724050 13743 19470918 70.1 24 58.7 24 1033.6 24 1032.9 24 9.8 24 7.1 24 8.9 999.9 83.3* 58.3* 0.00I 999.9 000000 724050 13743 19470919 75.9 24 67.8 24 1026.1 24 1025.4 24 8.5 24 4.9 24 8.0 999.9 87.3* 68.4* 0.00I 999.9 100000 724050 13743 19470920 67.6 24 64.0 24 1022.4 24 1021.7 24 4.3 24 6.2 24 13.0 999.9 79.3* 61.3* 99.99 999.9 110000 724050 13743 19470921 70.8 24 63.2 24 1018.7 24 1018.1 24 6.1 24 6.5 24 12.0 999.9 82.4* 62.4* 0.00I 999.9 100000 724050 13743 19470922 70.7 23 64.7 23 1010.8 23 1010.1 23 9.9 23 12.0 23 22.0 999.9 78.3* 62.4* 99.99 999.9 010000 724050 13743 19470923 54.1 24 37.9 24 1024.4 24 1023.8 24 14.3 24 10.1 24 21.0 999.9 60.3* 45.3* 0.00I 999.9 000000 724050 13743 19470924 52.3 24 45.6 24 1020.8 24 1020.2 24 7.7 24 7.8 24 8.9 999.9 59.4* 46.4* 99.99 999.9 010000 724050 13743 19470925 57.9 24 51.8 24 1017.5 24 1016.8 24 5.8 24 10.3 24 15.0 999.9 71.2* 51.3* 99.99 999.9 110000 724050 13743 19470926 57.0 24 42.1 24 1026.2 24 1025.6 24 12.0 24 9.4 24 13.0 999.9 65.3* 48.4* 0.00I 999.9 000000 724050 13743 19470927 51.4 24 36.4 24 1033.2 24 1032.5 24 12.5 24 8.8 24 13.0 999.9 62.4* 41.4* 0.00I 999.9 000000 724050 13743 19470928 52.7 24 38.6 24 1034.2 24 1033.5 24 9.9 24 7.6 24 9.9 999.9 65.3* 40.3* 0.00I 999.9 000000 724050 13743 19470929 57.4 24 45.5 23 1027.2 24 1026.5 24 10.1 24 5.8 24 9.9 999.9 71.2* 44.4* 0.00I 999.9 100000 724050 13743 19470930 58.4 24 46.3 24 1020.8 24 1020.1 24 10.8 24 9.9 24 22.9 999.9 63.3* 56.3* 0.00I 999.9 000000 724050 13743 19471001 49.3 24 30.7 24 1029.1 24 1028.4 24 14.1 24 10.0 24 15.9 999.9 61.3* 39.4* 0.00I 999.9 000000 724050 13743 19471002 53.6 24 39.6 24 1026.3 24 1025.7 24 9.0 24 3.6 24 9.9 999.9 72.3* 39.4* 0.00I 999.9 000000 724050 13743 19471003 57.2 24 43.2 24 1026.5 24 1025.8 24 5.6 24 3.9 24 9.9 999.9 75.4* 44.4* 0.00I 999.9 000000 724050 13743 19471004 60.6 24 47.3 24 1027.7 24 1027.0 24 8.6 24 4.2 24 9.9 999.9 75.4* 48.4* 0.00I 999.9 000000 724050 13743 19471005 63.0 24 54.2 24 1025.9 24 1025.2 24 7.3 24 4.1 24 8.9 999.9 77.4* 53.4* 0.00I 999.9 100000 724050 13743 19471006 63.8 24 56.5 24 1025.9 24 1025.2 24 6.8 24 3.8 24 8.9 999.9 79.3* 54.3* 0.00I 999.9 100000 724050 13743 19471007 63.0 24 55.6 24 1024.1 24 1023.5 24 6.9 24 2.6 24 7.0 999.9 78.3* 52.3* 0.00I 999.9 100000 724050 13743 19471008 68.7 24 62.9 24 1017.4 24 1016.8 24 5.0 24 3.6 24 8.9 999.9 76.3* 63.3* 99.99 999.9 110000 724050 13743 19471009 65.0 24 58.3 24 1018.0 24 1017.3 24 6.0 24 8.7 24 16.9 999.9 70.3* 61.3* 0.00I 999.9 000000 724050 13743 19471010 62.1 24 52.2 24 1022.0 24 1021.3 24 9.8 24 8.8 24 13.0 999.9 65.3* 59.4* 0.00I 999.9 000000 724050 13743 19471011 62.0 24 53.8 24 1022.5 24 1021.8 24 7.9 24 6.3 24 9.9 999.9 68.4* 57.4* 0.00I 999.9 000000 724050 13743 19471012 65.1 24 56.7 24 1025.1 24 1024.4 24 9.9 24 6.9 24 9.9 999.9 72.3* 60.3* 0.00I 999.9 000000 724050 13743 19471013 61.2 24 56.6 24 1022.7 24 1022.0 24 5.0 24 3.6 24 8.9 999.9 69.3* 54.3* 0.00I 999.9 100000 724050 13743 19471014 65.1 24 56.9 24 1016.7 24 1016.0 24 3.4 24 3.4 24 9.9 999.9 77.4* 57.4* 0.00I 999.9 100000 724050 13743 19471015 65.2 24 56.8 24 1017.5 24 1016.8 24 4.4 24 5.0 24 8.9 999.9 77.4* 55.4* 0.00I 999.9 000000 724050 13743 19471016 70.6 24 66.6 24 1019.3 24 1018.6 24 3.9 24 3.8 24 6.0 999.9 78.3* 67.3* 99.99 999.9 110000 724050 13743 19471017 70.9 24 67.3 24 1017.4 24 1016.7 24 5.8 24 3.8 24 7.0 999.9 78.3* 66.4* 99.99 999.9 110000 724050 13743 19471018 72.5 24 67.7 24 1011.9 24 1011.3 24 7.3 24 3.8 24 7.0 999.9 79.3* 68.4* 99.99 999.9 110000 724050 13743 19471019 71.3 24 62.8 24 1009.9 24 1009.3 24 7.9 24 5.0 24 9.9 999.9 82.4* 64.4* 0.00I 999.9 100000 724050 13743 19471020 70.6 24 49.1 24 1013.0 24 1012.4 24 12.5 24 7.7 24 14.0 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19471021 67.4 24 44.4 24 1016.2 24 1015.5 24 9.4 24 4.5 24 9.9 999.9 86.4* 54.3* 0.00I 999.9 000000 724050 13743 19471022 67.4 24 49.1 24 1018.8 24 1018.1 24 6.3 24 3.6 24 8.9 999.9 83.3* 54.3* 0.00I 999.9 000000 724050 13743 19471023 67.8 24 54.5 24 1018.8 24 1018.1 24 4.1 24 3.9 24 6.0 999.9 89.2* 56.3* 0.00I 999.9 100000 724050 13743 19471024 59.4 24 41.5 24 1026.8 24 1026.1 24 7.7 24 7.9 24 13.0 999.9 69.3* 51.3* 0.00I 999.9 000000 724050 13743 19471025 55.7 24 45.4 24 1030.7 24 1030.0 24 5.1 24 4.6 24 8.9 999.9 70.3* 46.4* 0.00I 999.9 100000 724050 13743 19471026 64.4 24 56.1 24 1025.4 24 1024.7 24 7.5 24 3.9 24 8.9 999.9 76.3* 57.4* 0.00I 999.9 100000 724050 13743 19471027 66.5 23 54.9 23 1021.2 23 1020.5 23 10.2 23 5.7 23 13.0 999.9 77.4* 56.3* 0.00I 999.9 000000 724050 13743 19471028 66.8 24 61.6 24 1016.5 24 1015.8 24 8.5 24 6.6 24 15.9 999.9 72.3* 62.4* 99.99 999.9 110000 724050 13743 19471029 68.7 24 59.7 24 1010.9 24 1010.2 24 10.6 24 6.1 24 14.0 999.9 76.3* 64.4* 0.00I 999.9 100000 724050 13743 19471030 59.5 24 49.4 24 1010.6 24 1010.0 24 11.2 24 7.3 24 12.0 999.9 65.3* 53.4* 0.00I 999.9 000000 724050 13743 19471031 53.7 24 47.5 24 1012.7 24 1012.0 24 8.8 24 8.6 24 13.0 999.9 59.4* 50.4* 99.99 999.9 110000 724050 13743 19471101 51.0 24 38.9 24 1020.8 24 1020.1 24 11.1 24 8.5 24 12.0 999.9 57.4* 47.3* 0.00I 999.9 000000 724050 13743 19471102 51.9 24 41.9 24 1024.3 24 1023.6 24 10.2 24 8.9 24 15.9 999.9 58.3* 46.4* 0.00I 999.9 000000 724050 13743 19471103 55.3 24 49.8 24 1015.7 24 1015.0 24 7.1 24 12.1 24 22.0 999.9 60.3* 51.3* 99.99 999.9 010000 724050 13743 19471104 59.9 24 55.5 24 1007.4 24 1006.8 24 7.4 24 7.4 24 16.9 999.9 66.4* 54.3* 99.99 999.9 110000 724050 13743 19471105 60.1 24 50.0 24 1008.4 24 1007.7 24 9.7 24 5.1 24 7.0 999.9 66.4* 54.3* 0.00I 999.9 000000 724050 13743 19471106 56.2 24 47.5 24 1011.4 24 1010.7 24 8.4 24 5.6 24 13.0 999.9 62.4* 49.3* 0.00I 999.9 000000 724050 13743 19471107 54.3 24 46.9 24 1017.4 24 1016.7 24 6.3 24 4.9 24 13.0 999.9 64.4* 44.4* 0.00I 999.9 100000 724050 13743 19471108 54.2 24 49.2 24 1005.8 24 1005.1 24 8.8 24 13.3 24 26.0 999.9 60.3* 42.4* 99.99 999.9 110010 724050 13743 19471109 46.2 24 25.4 24 1011.3 24 1010.6 24 14.9 24 9.1 24 21.0 999.9 58.3* 37.4* 0.00I 999.9 000000 724050 13743 19471110 45.9 24 26.7 24 1023.4 24 1022.7 24 9.7 24 3.4 24 8.9 999.9 60.3* 33.4* 0.00I 999.9 000000 724050 13743 19471111 53.4 24 43.3 24 1015.5 24 1014.9 24 6.9 24 7.5 24 14.0 999.9 59.4* 49.3* 99.99 999.9 010000 724050 13743 19471112 51.3 24 39.4 24 1008.0 24 1007.3 24 11.7 24 13.9 24 27.0 999.9 58.3* 44.4* 99.99 999.9 010000 724050 13743 19471113 44.4 24 29.4 23 1020.1 24 1019.4 24 9.3 24 5.5 24 9.9 999.9 59.4* 33.4* 0.00I 999.9 100000 724050 13743 19471114 43.1 24 23.1 24 1024.8 24 1024.1 24 10.9 24 9.9 24 15.0 999.9 50.4* 36.3* 0.00I 999.9 000000 724050 13743 19471115 39.5 24 30.8 24 1019.9 24 1019.2 24 4.3 24 5.1 24 8.0 999.9 42.4* 36.3* 99.99 999.9 111000 724050 13743 19471116 42.2 24 39.4 24 1011.2 24 1010.5 24 3.7 24 4.2 24 8.9 999.9 52.3* 38.3* 99.99 999.9 110000 724050 13743 19471117 44.6 24 32.2 24 1017.6 24 1017.0 24 8.9 24 11.4 24 19.0 999.9 47.3* 40.3* 0.00I 999.9 100000 724050 13743 19471118 39.4 24 28.2 24 1023.8 24 1023.1 24 10.3 24 7.0 24 11.1 999.9 44.4* 31.3* 0.00I 999.9 000000 724050 13743 19471119 42.7 24 22.7 24 1024.0 24 1023.4 24 11.3 24 6.5 24 11.1 999.9 48.4* 38.3* 0.00I 999.9 000000 724050 13743 19471120 39.9 24 25.9 24 1026.4 24 1025.7 24 6.5 24 5.7 24 9.9 999.9 46.4* 34.3* 0.00I 999.9 000000 724050 13743 19471121 39.9 24 28.5 24 1031.7 24 1031.0 24 6.1 24 4.6 24 8.9 999.9 52.3* 32.4* 0.00I 999.9 000000 724050 13743 19471122 42.1 24 33.0 24 1029.6 24 1028.9 24 4.2 24 3.1 24 5.1 999.9 49.3* 35.4* 99.99 999.9 110000 724050 13743 19471123 49.1 24 44.4 24 1017.9 24 1017.2 24 2.8 24 2.8 24 4.1 999.9 58.3* 45.3* 99.99 999.9 110000 724050 13743 19471124 49.2 24 45.5 24 1007.1 24 1006.4 24 3.2 24 6.1 24 13.0 999.9 53.4* 46.4* 99.99 999.9 110000 724050 13743 19471125 44.3 24 26.7 24 1002.8 24 1002.1 24 13.5 24 12.8 24 22.0 999.9 50.4* 40.3* 0.00I 999.9 000000 724050 13743 19471126 38.8 24 24.6 24 1009.4 24 1008.7 24 13.7 24 9.6 24 15.9 999.9 42.4* 35.4* 0.00I 999.9 000000 724050 13743 19471127 35.1 24 20.1 24 1018.1 24 1017.4 24 11.5 24 7.5 24 15.0 999.9 42.4* 28.4* 0.00I 999.9 000000 724050 13743 19471128 42.0 24 28.8 21 1018.4 24 1017.7 24 11.9 24 8.0 24 15.9 999.9 52.3* 35.4* 99.99 999.9 010000 724050 13743 19471129 41.1 24 28.7 24 1023.2 24 1022.6 24 11.2 24 9.0 24 16.9 999.9 55.4* 32.4* 0.00I 999.9 000000 724050 13743 19471130 33.6 24 20.0 24 1028.0 24 1027.4 24 8.9 24 10.3 24 16.9 999.9 40.3* 28.4* 0.00I 999.9 000000 724050 13743 19471201 30.9 24 13.5 24 1030.6 24 1029.9 24 7.5 24 8.3 24 14.0 999.9 41.4* 23.4* 0.00I 999.9 000000 724050 13743 19471202 36.5 24 20.9 24 1028.4 24 1027.7 24 4.8 24 2.6 24 5.1 999.9 53.4* 24.4* 0.00I 999.9 000000 724050 13743 19471203 40.9 24 27.9 24 1026.3 24 1025.6 24 3.0 24 2.6 24 7.0 999.9 60.3* 30.4* 0.00I 999.9 100000 724050 13743 19471204 48.8 24 30.4 24 1025.2 24 1024.5 24 7.9 24 7.4 24 16.9 999.9 53.4* 43.3* 0.00I 999.9 000000 724050 13743 19471205 41.9 24 31.5 24 1019.1 24 1018.4 24 7.1 24 5.4 24 13.0 999.9 46.4* 37.4* 99.99 999.9 111000 724050 13743 19471206 46.9 24 35.5 24 1013.8 24 1013.1 24 10.9 24 10.0 24 15.9 999.9 51.3* 43.3* 0.00I 999.9 100000 724050 13743 19471207 37.4 24 30.9 24 1020.5 24 1019.8 24 5.4 24 3.2 24 6.0 999.9 45.3* 31.3* 99.99 999.9 110000 724050 13743 19471208 51.5 24 44.7 24 1005.4 24 1004.8 24 6.0 24 8.2 24 15.9 999.9 58.3* 43.3* 99.99 999.9 010000 724050 13743 19471209 38.2 24 22.6 24 1017.1 24 1016.5 24 11.9 24 14.5 24 23.9 999.9 49.3* 32.4* 0.00I 999.9 000000 724050 13743 19471210 32.2 24 26.6 24 1023.3 24 1022.6 24 7.8 24 6.6 24 12.0 999.9 35.4* 29.3* 99.99 999.9 110000 724050 13743 19471211 35.4 24 29.1 24 1017.7 24 1017.0 24 6.3 24 9.0 24 15.9 999.9 37.4* 32.4* 99.99 999.9 110000 724050 13743 19471212 35.5 24 27.9 24 1021.7 24 1021.1 24 6.5 24 8.9 24 14.0 999.9 41.4* 32.4* 0.00I 999.9 000000 724050 13743 19471213 31.9 24 27.5 24 1022.1 24 1021.5 24 2.9 24 0.0 24 999.9 999.9 36.3* 27.3* 0.00I 999.9 000000 724050 13743 19471214 31.5 24 24.2 24 1021.7 24 1021.0 24 4.2 24 5.3 24 8.9 999.9 39.4* 25.3* 0.00I 999.9 100000 724050 13743 19471215 32.1 24 26.8 24 1019.4 24 1018.8 24 3.1 24 3.4 24 8.9 999.9 36.3* 27.3* 99.99 999.9 110000 724050 13743 19471216 40.0 24 35.4 24 1004.4 24 1003.8 24 6.5 24 10.9 24 25.1 999.9 49.3* 35.4* 99.99 999.9 110000 724050 13743 19471217 36.8 24 25.6 24 1022.5 24 1021.8 24 12.3 24 8.3 24 21.0 999.9 46.4* 31.3* 0.00I 999.9 000000 724050 13743 19471218 41.2 24 27.1 24 1018.7 24 1018.0 24 9.5 24 9.2 24 15.9 999.9 55.4* 34.3* 0.00I 999.9 000000 724050 13743 19471219 37.1 24 26.5 24 1024.2 22 1021.3 24 7.7 24 5.0 24 13.0 999.9 48.4* 30.4* 0.00I 999.9 100000 724050 13743 19471220 31.3 24 21.8 24 1029.1 24 1028.4 24 6.1 24 3.1 24 8.9 999.9 38.3* 23.4* 0.00I 999.9 000000 724050 13743 19471221 33.3 24 23.8 24 1020.8 24 1020.1 24 4.7 24 5.0 24 15.9 999.9 43.3* 24.4* 0.00I 999.9 100000 724050 13743 19471222 36.0 24 22.6 24 1021.7 24 1021.1 24 6.9 24 5.5 24 8.9 999.9 46.4* 28.4* 0.00I 999.9 000000 724050 13743 19471223 37.6 24 28.6 24 1015.0 24 1014.3 24 6.8 24 5.4 24 9.9 999.9 43.3* 34.3* 99.99 999.9 010000 724050 13743 19471224 35.1 24 20.9 24 1023.5 24 1022.8 24 11.6 24 10.3 24 15.0 999.9 39.4* 30.4* 0.00I 999.9 000000 724050 13743 19471225 29.4 24 20.2 24 1024.0 24 1023.3 24 8.2 24 4.2 24 7.0 999.9 37.4* 22.5* 0.00I 999.9 100000 724050 13743 19471226 32.8 24 25.1 24 1010.6 24 1009.8 24 6.5 24 5.9 24 22.0 999.9 40.3* 28.4* 99.99 999.9 001000 724050 13743 19471227 36.9 24 23.7 24 1009.7 24 1009.0 24 10.9 24 11.7 24 19.0 999.9 43.3* 34.3* 0.00I 999.9 000000 724050 13743 19471228 37.1 24 22.9 24 1008.5 24 1007.9 24 10.8 24 12.1 24 26.0 999.9 41.4* 32.4* 0.00I 999.9 000000 724050 13743 19471229 32.1 24 15.2 24 1018.3 24 1017.6 24 11.9 24 9.1 24 15.9 999.9 39.4* 26.4* 0.00I 999.9 000000 724050 13743 19471230 30.8 24 18.4 24 1022.2 24 1021.5 24 6.7 24 3.5 24 8.0 999.9 40.3* 23.4* 0.00I 999.9 000000 724050 13743 19471231 37.0 24 24.0 24 1019.2 24 1018.5 24 5.1 24 0.3 24 5.1 999.9 54.3* 27.3* 0.00I 999.9 100000 fluids-1.0.22/tests/gsod/1977/0000755000175000017500000000000014302004506015107 5ustar nileshnileshfluids-1.0.22/tests/gsod/1977/724050-13743.op0000644000175000017500000014327214302004506016700 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19770101 21.1 24 2.4 24 1012.9 24 1010.5 24 22.2 24 13.3 24 19.8 29.9 34.0 14.9 0.00G 999.9 000000 724050 13743 19770102 26.4 24 10.5 24 1023.1 24 1020.6 24 20.9 24 12.2 24 15.0 23.9 36.0* 15.1 0.00G 999.9 000000 724050 13743 19770103 28.5 24 14.2 24 1024.0 24 1021.6 24 14.2 24 5.7 24 9.9 999.9 36.0 19.0 0.00G 999.9 000000 724050 13743 19770104 35.1 23 22.3 23 1018.1 23 1015.7 23 11.0 23 7.0 23 11.8 999.9 43.0 23.0 0.00B 999.9 001000 724050 13743 19770105 30.6 24 23.2 24 1019.1 24 1016.7 24 7.7 24 6.9 24 11.8 999.9 44.1 26.1 0.16G 999.9 001000 724050 13743 19770106 26.4 24 20.7 24 1020.8 24 1018.4 24 6.1 24 5.3 24 9.9 999.9 33.1* 12.9 0.20G 2.0 001000 724050 13743 19770107 32.8 24 25.3 24 1006.9 24 1004.5 24 5.9 24 9.7 24 23.9 37.9 39.0* 28.2* 0.08G 999.9 101000 724050 13743 19770108 22.2 24 6.5 24 1019.1 24 1016.7 24 18.8 24 10.9 24 22.0 35.9 39.0 16.0 0.02G 3.9 000000 724050 13743 19770109 26.2 24 16.1 24 1020.4 24 1018.0 24 9.9 24 5.1 24 10.9 999.9 33.1* 16.0 0.00G 3.1 001000 724050 13743 19770110 32.4 24 29.8 24 1002.1 24 999.9 24 4.7 24 9.0 24 15.0 28.9 36.0 19.9 0.28G 3.9 111000 724050 13743 19770111 21.7 23 5.4 23 1017.8 23 1015.4 23 20.5 23 13.6 23 17.9 29.9 37.0 16.9 0.16G 3.1 000000 724050 13743 19770112 19.5 24 4.1 24 1026.8 24 1024.3 24 19.9 24 9.4 24 18.8 26.8 28.2* 10.2* 0.00G 3.1 000000 724050 13743 19770113 17.8 24 2.2 24 1033.5 24 1031.2 24 17.7 24 8.3 24 15.0 999.9 28.0 9.0 0.00G 3.1 000000 724050 13743 19770114 28.5 24 17.7 24 1020.0 24 1017.6 24 12.0 24 7.2 24 10.9 999.9 33.1 9.0 0.00B 3.1 111000 724050 13743 19770115 33.6 24 27.5 24 1009.4 24 1007.0 24 7.9 24 7.3 24 11.8 999.9 37.9* 25.0 0.55G 3.1 110000 724050 13743 19770116 29.7 23 21.8 23 1011.1 23 1008.8 23 6.4 23 9.2 23 22.0 35.9 37.9 19.2* 0.00G 3.1 101000 724050 13743 19770117 8.7 23 -11.2 23 1017.5 23 1015.1 23 19.9 23 14.4 23 18.8 28.0 33.1 1.9 0.00I 3.1 000000 724050 13743 19770118 15.5 24 -6.6 24 1012.6 24 1010.2 24 19.8 24 9.2 24 15.9 999.9 21.2* 1.9 0.00G 2.0 000000 724050 13743 19770119 18.6 21 1.6 21 1009.4 21 1007.1 21 17.9 20 11.5 21 14.0 17.9 29.1* 10.0 0.00G 2.0 000000 724050 13743 19770120 26.2 24 9.1 24 1011.5 24 1009.1 24 19.9 24 9.8 24 14.0 21.0 33.1* 10.9 0.00G 2.0 000000 724050 13743 19770121 27.6 24 11.4 24 1015.6 24 1013.2 24 17.1 24 8.1 24 15.0 999.9 33.1 19.9 0.00G 2.0 000000 724050 13743 19770122 25.9 22 11.9 22 1019.2 22 1016.8 22 18.5 22 13.2 22 22.0 31.9 33.1 19.9 1.69B 2.0 001000 724050 13743 19770123 23.6 24 9.9 24 1025.3 24 1023.7 24 20.9 24 10.9 24 17.9 999.9 31.1* 16.9 0.00I 2.0 000000 724050 13743 19770124 30.1 24 19.6 24 1020.2 24 1017.8 24 14.4 24 5.1 24 9.9 999.9 36.0* 17.1 99.99 2.0 001000 724050 13743 19770125 35.4 24 29.8 24 1007.8 24 1005.4 24 7.9 24 7.2 24 14.0 999.9 43.0* 25.0 0.08G 3.1 001000 724050 13743 19770126 33.5 23 19.4 23 1006.5 23 1004.1 23 16.0 23 9.1 23 14.0 17.9 43.0 25.0 0.02G 1.2 000000 724050 13743 19770127 38.1 22 18.9 22 1002.2 22 999.8 22 22.4 22 11.4 22 16.9 28.0 43.0* 25.0 0.00G 1.2 000000 724050 13743 19770128 34.2 23 23.4 23 1003.4 23 1001.1 23 19.0 23 9.1 23 28.0 38.9 48.0* 23.0 0.00G 1.2 001000 724050 13743 19770129 15.8 23 -5.4 23 1009.3 23 1007.0 23 20.2 23 14.1 23 28.0 46.8 27.1* 8.1 0.00B 999.9 001000 724050 13743 19770130 23.7 24 -0.2 24 1012.0 24 1009.6 24 20.7 23 10.0 24 15.0 999.9 33.1* 8.1 0.00G 999.9 000000 724050 13743 19770131 25.0 22 2.3 22 1013.7 22 1011.3 22 19.8 22 9.7 22 15.9 23.9 34.0* 12.9 0.00G 999.9 000000 724050 13743 19770201 28.1 23 7.8 23 1013.6 23 1011.2 23 19.9 23 11.0 23 19.8 29.9 37.0* 15.1 0.00G 999.9 000000 724050 13743 19770202 28.8 23 13.6 23 1026.3 23 1023.9 23 19.9 23 9.8 23 15.9 22.9 37.9* 19.9 0.00G 999.9 000000 724050 13743 19770203 35.0 23 20.4 23 1017.7 23 1015.3 23 16.6 23 8.2 23 14.0 999.9 51.1* 21.9 0.00G 999.9 000000 724050 13743 19770204 39.8 24 28.7 24 1005.1 24 1002.7 24 18.2 24 6.4 24 9.9 999.9 51.1 28.0 0.00G 999.9 000000 724050 13743 19770205 36.9 24 22.5 24 1000.5 24 998.1 24 17.3 24 12.1 24 22.0 35.9 46.0 24.3* 0.00G 999.9 000000 724050 13743 19770206 20.3 24 -0.8 24 1019.4 24 1017.0 24 19.9 24 16.4 24 22.9 35.0 42.1 14.0 0.00G 999.9 000000 724050 13743 19770207 22.1 24 2.9 24 1027.5 24 1025.1 24 19.5 23 12.3 24 16.9 23.9 33.1* 14.0 0.00I 999.9 000000 724050 13743 19770208 25.8 24 6.8 24 1032.0 24 1029.6 24 17.2 24 8.2 24 14.0 999.9 37.0* 14.0 0.00I 999.9 000000 724050 13743 19770209 30.3 24 16.2 24 1028.0 24 1025.5 24 16.3 23 6.1 24 9.9 999.9 46.9* 16.0 0.00G 999.9 000000 724050 13743 19770210 43.6 23 27.1 23 1023.8 23 1021.4 23 15.6 23 7.0 23 12.8 999.9 61.0* 19.0 0.00G 999.9 000000 724050 13743 19770211 44.2 22 31.4 22 1023.3 22 1020.9 22 10.3 22 4.4 21 9.9 999.9 64.0* 28.0 0.00G 999.9 000000 724050 13743 19770212 44.2 24 32.5 24 1018.6 24 1016.2 24 10.1 24 5.4 24 14.0 999.9 63.9 30.0 0.00G 999.9 010000 724050 13743 19770213 46.8 24 36.5 24 1004.1 24 1001.7 24 12.4 24 8.6 24 16.9 999.9 57.9 32.0 0.02G 999.9 000000 724050 13743 19770214 41.7 24 24.1 24 1010.0 24 1007.6 24 17.4 24 7.8 24 14.0 999.9 55.9 28.9 0.00G 999.9 000000 724050 13743 19770215 41.0 24 24.5 24 1013.4 24 1011.0 24 17.4 24 11.1 24 17.9 999.9 51.1 28.9 0.00G 999.9 010000 724050 13743 19770216 28.9 24 11.3 24 1019.9 24 1017.4 24 19.9 24 11.9 24 16.9 999.9 43.0 21.9 0.00I 999.9 000000 724050 13743 19770217 24.9 24 3.5 24 1020.5 24 1018.1 24 14.0 24 11.6 24 15.0 17.9 35.1 18.0 0.00G 999.9 000000 724050 13743 19770218 28.4 24 11.6 24 1021.5 24 1019.1 24 14.0 24 5.7 24 9.9 999.9 39.0* 16.9 0.00G 999.9 000000 724050 13743 19770219 37.2 24 31.2 24 1015.9 24 1013.5 24 7.2 24 6.1 24 8.9 999.9 46.0* 33.1* 0.00G 999.9 100000 724050 13743 19770220 38.0 24 30.0 24 1007.4 24 1005.0 24 8.8 24 10.4 24 17.9 26.8 46.0 32.0 0.00B 999.9 110000 724050 13743 19770221 32.9 24 13.3 24 1011.9 24 1009.5 24 19.9 24 14.2 24 16.9 23.9 42.1 27.0 0.00I 999.9 000000 724050 13743 19770222 38.5 24 18.0 24 1015.8 24 1013.4 24 19.9 24 11.1 24 18.8 25.8 63.0* 23.9 0.00G 999.9 000000 724050 13743 19770223 53.7 24 32.4 24 1017.4 24 1015.0 24 16.4 24 10.2 24 15.9 23.9 72.0* 41.0* 0.00G 999.9 000000 724050 13743 19770224 53.3 23 45.4 23 1010.9 23 1008.5 23 15.1 23 9.8 23 15.9 26.8 72.0 39.9 0.00G 999.9 010000 724050 13743 19770225 56.1 24 36.2 24 1003.3 24 1000.9 24 17.6 23 13.0 24 22.9 35.0 72.0* 41.9 0.59G 999.9 010000 724050 13743 19770226 55.8 24 33.7 24 1013.0 24 1010.6 24 18.5 24 6.0 24 14.0 999.9 72.0 39.9 0.00G 999.9 000000 724050 13743 19770227 55.3 23 46.9 23 1011.0 23 1008.6 23 9.2 23 9.2 23 16.9 999.9 73.9 39.9 0.00G 999.9 010000 724050 13743 19770228 46.1 24 29.0 24 1014.8 24 1012.4 24 16.3 24 13.3 24 19.8 28.0 73.9 36.9 0.04G 999.9 010000 724050 13743 19770301 41.9 24 22.2 24 1017.3 24 1014.9 24 19.9 24 10.8 24 22.0 29.9 54.0* 30.9 0.00G 999.9 000000 724050 13743 19770302 39.7 21 16.8 21 1025.2 21 1022.7 21 19.9 21 11.3 21 15.9 28.9 55.0 29.8 0.00A 999.9 000000 724050 13743 19770303 43.0 24 23.8 24 1027.3 24 1024.9 24 16.8 24 7.5 24 14.0 999.9 60.1* 29.8 0.00G 999.9 000000 724050 13743 19770304 51.6 24 45.8 24 1018.4 24 1016.0 24 10.6 24 8.7 24 14.0 999.9 62.1* 30.0 0.04G 999.9 110000 724050 13743 19770305 58.9 24 48.5 24 1012.4 24 1010.0 24 16.1 24 7.1 24 14.0 23.9 70.0* 43.9 0.02G 999.9 010000 724050 13743 19770306 53.7 23 33.1 23 1018.8 23 1016.4 23 16.0 23 8.2 23 16.9 999.9 70.0 44.1 0.00G 999.9 000000 724050 13743 19770307 48.6 22 34.1 22 1018.2 22 1015.8 22 11.0 22 8.7 22 16.9 24.9 57.0 43.9 0.00I 999.9 000000 724050 13743 19770308 45.8 24 24.1 24 1024.6 24 1022.1 24 17.0 24 9.2 24 17.9 25.8 57.0* 34.9 0.00G 999.9 000000 724050 13743 19770309 51.5 23 31.0 23 1025.3 23 1022.9 23 19.0 23 8.4 23 16.9 999.9 72.0* 35.1 0.00G 999.9 000000 724050 13743 19770310 56.8 24 37.7 24 1023.6 24 1021.2 24 15.1 24 10.6 24 12.8 999.9 72.0 37.9 0.00G 999.9 000000 724050 13743 19770311 57.0 24 46.1 24 1026.2 24 1023.7 24 12.9 24 6.5 24 10.9 999.9 72.0 45.0 0.00G 999.9 000000 724050 13743 19770312 59.7 24 53.3 24 1026.3 24 1023.7 24 13.0 24 6.6 24 15.0 999.9 73.0 45.0 0.00G 999.9 000000 724050 13743 19770313 63.6 24 59.9 24 1009.7 24 1007.3 24 10.7 23 10.3 23 16.9 28.0 72.0* 52.0 0.83G 999.9 110000 724050 13743 19770314 58.0 24 44.7 24 1010.2 24 1007.8 24 16.4 24 10.0 24 16.9 999.9 72.0 48.9 0.71G 999.9 010000 724050 13743 19770315 56.3 23 42.3 23 1014.7 23 1012.3 23 16.0 23 6.7 23 10.9 999.9 66.9* 43.9 0.00G 999.9 000000 724050 13743 19770316 59.0 24 41.4 24 1009.4 24 1007.0 24 13.7 23 10.4 23 23.9 36.9 70.0 44.1 0.00G 999.9 000000 724050 13743 19770317 54.4 24 21.8 24 1014.4 24 1012.0 24 19.9 24 12.3 24 15.9 23.9 66.0 45.9 0.00I 999.9 000000 724050 13743 19770318 55.2 24 41.2 24 1000.1 24 997.7 24 13.8 23 10.3 24 22.0 34.0 68.0* 46.0 0.04G 999.9 010000 724050 13743 19770319 50.5 24 30.0 24 1007.8 24 1005.4 24 18.8 24 14.9 24 23.9 35.0 68.0 38.8 0.08G 999.9 000000 724050 13743 19770320 45.9 24 36.9 24 1014.2 24 1011.8 24 12.4 24 9.1 24 12.8 22.0 55.0 39.0 0.16G 999.9 110000 724050 13743 19770321 47.7 24 31.3 24 1020.3 24 1017.9 24 11.9 24 8.3 24 15.0 25.8 55.0* 37.9 0.08G 999.9 000000 724050 13743 19770322 47.0 21 41.5 21 1007.7 21 1005.4 21 7.6 21 9.7 21 22.0 36.9 55.0 37.9 0.20G 999.9 110000 724050 13743 19770323 45.1 24 19.8 24 1009.6 24 1007.2 24 19.9 24 20.5 24 28.0 46.8 54.0* 36.9 0.71G 999.9 000000 724050 13743 19770324 45.2 24 19.5 24 1014.2 24 1011.8 24 19.9 24 15.4 24 24.9 34.0 55.0 37.0 0.00G 999.9 000000 724050 13743 19770325 38.9 23 12.4 23 1019.8 23 1017.4 23 19.9 23 16.0 23 19.8 28.9 51.1* 28.9 0.00G 999.9 000000 724050 13743 19770326 46.5 23 17.5 23 1022.4 23 1020.0 23 19.9 23 12.5 23 16.9 999.9 57.9* 28.9 0.00G 999.9 000000 724050 13743 19770327 48.8 23 28.7 23 1025.3 23 1022.9 23 18.2 23 4.4 23 8.9 999.9 62.1* 35.1 0.00G 999.9 000000 724050 13743 19770328 53.6 24 45.2 24 1018.1 24 1015.7 24 13.2 24 6.3 24 8.9 999.9 63.0* 36.0 0.01G 999.9 010000 724050 13743 19770329 67.1 24 57.1 24 1013.0 24 1010.6 24 15.3 24 10.6 24 14.0 999.9 80.1* 50.0 0.08G 999.9 010000 724050 13743 19770330 69.7 24 61.1 24 1013.1 24 1010.7 24 15.6 24 9.9 24 14.0 21.0 81.0 59.9 0.00G 999.9 000000 724050 13743 19770331 66.4 24 46.3 24 1009.6 24 1007.2 24 19.9 23 13.8 24 24.9 34.0 82.0 60.1 0.00G 999.9 000000 724050 13743 19770401 55.8 24 34.5 24 1021.3 24 1018.9 24 19.3 24 8.4 24 14.0 999.9 69.1 45.9 0.00G 999.9 000000 724050 13743 19770402 54.2 24 47.5 24 1018.5 24 1016.1 24 8.9 24 7.9 24 12.8 999.9 64.0 46.0 0.00G 999.9 110000 724050 13743 19770403 67.9 24 55.7 24 1010.1 24 1007.7 24 11.0 24 12.2 24 16.9 21.0 73.0 50.0 0.02G 999.9 010000 724050 13743 19770404 51.7 24 40.8 24 1015.7 24 1013.3 24 10.4 24 9.6 24 12.8 999.9 73.0 45.0* 0.08G 999.9 110000 724050 13743 19770405 51.7 24 50.1 24 997.1 24 994.7 24 5.7 24 7.2 24 22.0 38.9 60.1* 45.0 0.55G 999.9 110000 724050 13743 19770406 46.7 24 28.2 23 1012.0 24 1009.6 24 19.1 24 13.3 24 22.0 32.8 60.1 30.2* 0.08G 999.9 010000 724050 13743 19770407 42.3 21 25.6 21 1025.7 21 1023.3 21 19.8 21 9.9 21 16.9 31.9 55.9* 29.8 0.01G 999.9 001000 724050 13743 19770408 50.9 24 28.9 24 1021.0 24 1018.6 24 19.9 24 13.2 24 19.8 26.8 55.9 30.0 0.00G 999.9 000000 724050 13743 19770409 41.2 24 15.4 24 1030.6 24 1028.1 24 19.9 24 10.2 24 15.0 999.9 53.1 32.0 0.00G 999.9 000000 724050 13743 19770410 47.7 24 27.0 24 1029.1 24 1026.7 24 18.6 24 5.9 24 9.9 17.9 64.0* 32.0 0.00I 999.9 000000 724050 13743 19770411 60.8 24 45.5 24 1026.9 24 1024.5 24 13.1 23 4.7 24 11.8 999.9 84.9* 33.1 0.00A 999.9 000000 724050 13743 19770412 70.4 24 51.3 24 1026.2 24 1023.8 24 14.3 24 8.1 24 14.0 999.9 89.1* 45.0 99.99 999.9 010000 724050 13743 19770413 73.0 24 48.8 24 1021.9 24 1019.4 24 16.8 24 7.1 24 15.0 22.0 90.0 52.0 0.00I 999.9 000000 724050 13743 19770414 74.4 23 50.6 23 1015.0 23 1012.6 23 15.8 23 9.3 23 15.9 18.8 90.0 54.0 0.00G 999.9 010000 724050 13743 19770415 61.8 24 35.8 24 1020.4 24 1018.0 24 19.5 24 6.6 24 10.9 999.9 79.0 50.0 0.00G 999.9 000000 724050 13743 19770416 62.3 24 38.4 23 1019.7 24 1017.3 24 19.3 24 6.3 24 10.9 999.9 73.0* 50.0 0.00I 999.9 000000 724050 13743 19770417 62.7 23 37.1 23 1020.0 23 1017.6 23 19.9 23 5.2 23 9.9 999.9 75.0* 50.0 0.00I 999.9 000000 724050 13743 19770418 64.3 24 42.8 24 1021.3 24 1018.8 24 17.9 24 7.6 24 10.9 999.9 79.0* 50.0 0.00G 999.9 000000 724050 13743 19770419 70.3 24 52.3 24 1020.0 24 1017.6 24 10.1 24 5.0 24 9.9 999.9 82.0* 50.0 0.00G 999.9 000000 724050 13743 19770420 67.0 23 47.7 23 1026.1 23 1023.7 23 11.2 23 7.5 23 10.9 999.9 82.0 55.9 0.00G 999.9 000000 724050 13743 19770421 66.6 24 56.8 24 1029.1 24 1026.7 24 11.3 24 6.2 24 9.9 999.9 79.0* 54.9 0.00G 999.9 000000 724050 13743 19770422 73.0 24 62.4 24 1025.0 24 1022.5 24 9.5 24 10.3 24 15.9 23.9 84.0* 55.0 0.00G 999.9 000000 724050 13743 19770423 74.6 24 62.7 24 1019.4 24 1017.0 24 14.8 24 12.0 24 18.8 24.9 84.9 64.9 0.00G 999.9 000000 724050 13743 19770424 71.7 24 63.1 24 1008.4 24 1006.0 24 13.3 24 11.7 23 15.0 28.0 80.1 63.0* 0.04G 999.9 010010 724050 13743 19770425 60.4 23 49.9 23 1005.8 23 1003.4 23 13.5 23 8.1 23 15.9 23.9 75.9 50.9 1.18G 999.9 010000 724050 13743 19770426 55.8 24 41.9 24 1008.7 24 1006.4 24 18.0 24 8.3 24 12.8 22.0 70.0 47.8 0.08G 999.9 010000 724050 13743 19770427 56.3 24 39.4 24 1013.0 24 1010.6 24 18.4 24 9.9 24 12.8 999.9 68.0* 46.9 0.00G 999.9 000000 724050 13743 19770428 64.3 24 48.1 24 1009.7 24 1007.3 24 17.6 24 11.5 24 23.9 31.9 82.9 46.9 0.00G 999.9 010000 724050 13743 19770429 50.6 23 38.2 23 1020.3 23 1017.9 23 17.3 23 10.4 23 15.9 999.9 61.0* 41.0 0.16G 999.9 010000 724050 13743 19770430 57.4 23 39.5 23 1024.9 23 1022.5 23 18.6 23 4.3 23 5.8 999.9 73.0* 41.0 0.00G 999.9 000000 724050 13743 19770501 63.2 23 49.3 23 1026.3 23 1023.9 23 18.4 23 8.1 23 12.8 999.9 77.0* 43.0 0.00G 999.9 000000 724050 13743 19770502 67.2 24 56.8 24 1022.8 24 1020.4 24 17.6 24 10.8 24 15.0 999.9 77.0 50.0 0.00G 999.9 010010 724050 13743 19770503 68.9 24 58.9 24 1021.7 24 1019.3 24 8.2 24 6.4 24 11.8 999.9 78.1* 61.0 0.24G 999.9 110000 724050 13743 19770504 64.0 23 57.8 23 1021.0 23 1018.6 23 7.0 23 6.4 23 9.9 999.9 78.1 59.0 0.31G 999.9 110000 724050 13743 19770505 70.3 23 64.8 23 1011.8 23 1009.4 23 6.2 23 7.6 23 9.9 999.9 82.9* 59.0 0.24G 999.9 110000 724050 13743 19770506 71.9 22 65.7 22 1011.0 22 1008.6 22 10.4 21 7.3 22 15.9 999.9 87.1* 61.0 0.00G 999.9 110010 724050 13743 19770507 68.7 24 65.7 24 1012.5 24 1010.1 24 7.1 24 5.6 24 9.9 999.9 72.0* 61.0 0.43G 999.9 110000 724050 13743 19770508 63.7 24 48.1 24 1012.0 24 1009.6 24 17.7 24 8.2 24 14.0 999.9 73.9* 52.0 0.04G 999.9 000000 724050 13743 19770509 54.2 24 29.8 24 1006.8 24 1004.4 24 19.9 24 17.1 24 28.0 43.9 75.0 43.0 0.00G 999.9 000000 724050 13743 19770510 54.1 23 33.4 23 1011.8 23 1009.3 23 19.9 23 14.6 23 18.8 25.8 64.9* 43.0 0.00G 999.9 000000 724050 13743 19770511 61.4 23 37.7 23 1016.2 23 1013.8 23 19.9 23 11.4 23 16.9 999.9 73.9* 44.1 0.00G 999.9 000000 724050 13743 19770512 65.8 24 42.0 24 1019.1 24 1016.7 24 19.5 24 7.2 24 11.8 999.9 79.0* 47.8 0.00G 999.9 000000 724050 13743 19770513 75.4 24 49.2 24 1012.1 24 1009.7 24 16.8 24 11.8 24 17.9 25.8 88.0* 48.0 0.00A 999.9 000000 724050 13743 19770514 73.6 24 54.3 24 1011.2 24 1008.9 24 15.0 24 9.2 24 12.8 999.9 88.0 61.0 0.01G 999.9 010000 724050 13743 19770515 66.6 24 38.8 24 1017.6 24 1015.2 24 23.0 24 8.0 24 14.0 999.9 82.0 54.0 0.00I 999.9 000000 724050 13743 19770516 65.8 24 47.9 24 1024.2 24 1021.8 24 19.8 24 7.9 24 11.8 999.9 80.1* 50.9 0.00G 999.9 000000 724050 13743 19770517 72.8 22 56.8 22 1022.0 22 1019.6 22 15.7 22 8.3 22 9.9 999.9 89.1* 51.1 0.00G 999.9 000000 724050 13743 19770518 78.5 23 64.3 23 1017.4 23 1015.1 23 5.5 23 7.7 23 26.8 36.9 91.9 59.0 0.00G 999.9 110010 724050 13743 19770519 77.6 24 62.9 24 1015.8 24 1013.4 24 12.1 24 9.7 24 15.0 23.9 91.9 64.9 0.00B 999.9 010000 724050 13743 19770520 72.8 22 61.7 22 1020.8 22 1018.4 22 5.2 22 6.4 22 9.9 999.9 88.0 59.9 0.00I 999.9 100000 724050 13743 19770521 74.7 24 61.5 24 1023.5 24 1021.1 24 13.1 24 7.5 24 11.8 999.9 86.0 60.1 0.00G 999.9 000000 724050 13743 19770522 73.7 24 59.8 24 1025.8 24 1023.4 24 15.8 24 7.2 24 9.9 999.9 87.1 59.9 0.00G 999.9 100000 724050 13743 19770523 74.9 24 62.4 24 1025.7 24 1023.3 24 10.9 24 8.3 24 11.8 999.9 84.0 60.1 0.00G 999.9 100000 724050 13743 19770524 74.1 24 62.8 24 1025.4 24 1023.0 24 10.9 24 8.4 24 10.9 999.9 83.8 64.9 0.00G 999.9 000000 724050 13743 19770525 71.1 24 63.1 24 1019.9 24 1017.4 24 8.3 24 6.3 24 9.9 999.9 80.1 66.9 0.35G 999.9 110000 724050 13743 19770526 74.7 24 62.7 24 1013.3 24 1010.9 24 8.3 24 7.5 24 15.0 999.9 86.0* 64.9 0.08G 999.9 100000 724050 13743 19770527 75.7 24 59.7 24 1013.0 24 1010.6 24 12.1 24 5.6 24 9.9 999.9 87.1 63.9 0.00G 999.9 100000 724050 13743 19770528 77.2 24 59.0 24 1008.9 24 1006.5 24 12.0 24 7.0 24 10.9 19.8 88.0 63.9 0.00G 999.9 000000 724050 13743 19770529 75.2 24 62.8 24 1009.9 24 1007.5 24 11.2 24 9.2 24 14.0 999.9 89.1 64.0 0.00G 999.9 000000 724050 13743 19770530 65.3 24 58.8 24 1018.5 24 1016.1 24 8.7 24 8.0 24 14.0 999.9 80.1 61.0 0.00G 999.9 000000 724050 13743 19770531 67.7 24 60.1 24 1019.4 24 1017.0 24 8.3 24 6.7 24 9.9 999.9 73.9* 61.0 0.00G 999.9 100000 724050 13743 19770601 75.8 24 63.4 23 1010.7 24 1008.3 24 6.8 24 12.2 23 15.9 999.9 87.1* 63.0 0.00A 999.9 110000 724050 13743 19770602 79.2 24 57.9 24 1008.2 24 1005.8 24 14.6 24 6.8 24 12.8 999.9 88.0 66.9 0.00I 999.9 000000 724050 13743 19770603 71.1 24 51.3 24 1015.0 24 1012.6 24 15.3 24 12.0 24 17.9 999.9 89.1 61.9 0.01G 999.9 010000 724050 13743 19770604 71.7 24 43.8 24 1021.1 24 1018.7 24 19.9 24 6.9 24 11.8 999.9 84.9* 59.0 0.00I 999.9 000000 724050 13743 19770605 74.2 23 57.4 23 1013.9 23 1011.5 23 14.4 23 7.3 23 15.0 999.9 84.9 59.0 0.00G 999.9 010000 724050 13743 19770606 68.3 23 63.5 23 1002.0 23 999.6 23 6.9 23 7.3 23 28.0 37.9 84.9 63.9 0.12G 999.9 110010 724050 13743 19770607 62.2 22 49.1 22 1003.6 22 1001.3 22 19.0 21 15.3 22 22.9 28.0 77.0 56.8 0.12B 999.9 010000 724050 13743 19770608 62.6 24 39.1 24 1009.7 24 1007.3 24 19.9 24 10.2 24 15.0 17.9 75.9* 48.9 0.00G 999.9 000000 724050 13743 19770609 64.1 24 56.6 24 1007.5 24 1005.1 24 12.3 24 10.5 24 15.9 29.9 75.9 48.9 0.71G 999.9 110010 724050 13743 19770610 63.9 24 53.3 24 1011.8 24 1009.4 24 19.1 24 15.0 24 19.8 25.8 73.9 56.8 0.04G 999.9 010000 724050 13743 19770611 69.4 24 52.5 24 1014.0 24 1011.6 24 18.8 24 11.5 24 17.9 23.9 82.0* 57.0 0.00G 999.9 010000 724050 13743 19770612 74.5 23 54.6 23 1011.4 23 1009.0 23 18.8 23 5.4 23 8.9 999.9 86.0* 59.0 0.00G 999.9 000000 724050 13743 19770613 75.0 24 58.5 24 1017.0 24 1014.6 24 15.6 24 5.6 24 8.0 999.9 86.0 60.1 0.08G 999.9 010000 724050 13743 19770614 72.2 24 60.9 24 1021.1 24 1018.7 24 9.9 24 5.2 24 8.0 999.9 82.9 66.9 0.00G 999.9 010000 724050 13743 19770615 71.9 24 62.0 24 1019.7 24 1017.3 24 4.0 24 4.2 23 5.8 999.9 80.1* 65.8 0.02G 999.9 110000 724050 13743 19770616 75.8 24 62.6 24 1019.6 24 1017.3 24 2.8 24 4.9 23 8.9 999.9 86.0 64.9 0.00G 999.9 100000 724050 13743 19770617 77.5 24 63.3 24 1018.0 24 1015.6 24 4.0 24 9.6 24 14.0 999.9 86.0 64.9 0.00G 999.9 000000 724050 13743 19770618 76.3 24 65.9 24 1013.1 24 1010.7 24 5.9 24 6.9 24 19.8 29.9 89.1* 68.0 1.06G 999.9 110010 724050 13743 19770619 81.1 24 66.0 24 1009.7 24 1007.3 24 11.3 24 7.5 24 14.0 17.9 91.9* 68.0 0.16G 999.9 010000 724050 13743 19770620 76.2 24 62.8 24 1010.5 24 1008.1 24 10.7 24 5.6 24 24.9 30.9 93.0 69.1* 0.02G 999.9 010010 724050 13743 19770621 74.5 24 63.1 24 1012.1 24 1009.7 24 10.3 24 8.5 24 15.9 999.9 82.0 65.8 1.02G 999.9 000000 724050 13743 19770622 74.1 24 52.6 24 1018.7 24 1016.4 24 16.6 24 8.3 24 12.8 999.9 82.9 64.9 0.00G 999.9 000000 724050 13743 19770623 72.6 24 57.6 24 1020.6 24 1018.1 24 13.8 24 4.7 24 8.0 999.9 84.0* 61.0 0.00I 999.9 000000 724050 13743 19770624 73.4 23 62.1 23 1019.7 23 1017.3 23 10.5 23 7.4 23 12.8 999.9 84.0 60.1* 0.00G 999.9 000000 724050 13743 19770625 73.9 24 65.9 24 1013.6 24 1011.2 24 9.6 24 7.1 24 9.9 999.9 82.9 63.0 0.00G 999.9 010000 724050 13743 19770626 80.0 24 68.5 24 1009.3 24 1006.9 24 8.3 24 8.1 24 12.8 999.9 91.0* 68.0 0.00A 999.9 100000 724050 13743 19770627 80.6 24 63.8 24 1013.7 24 1011.3 24 9.9 24 5.1 24 8.9 999.9 91.0 68.9 0.00G 999.9 000000 724050 13743 19770628 82.4 24 66.7 24 1012.9 24 1010.5 24 7.8 24 9.7 24 15.9 28.9 93.9* 69.1 0.00G 999.9 000000 724050 13743 19770629 84.2 23 69.4 22 1008.3 23 1006.0 23 13.5 23 8.8 22 15.9 26.8 96.1* 75.9 0.00B 999.9 000000 724050 13743 19770630 81.5 24 60.0 24 1014.3 24 1011.9 24 19.8 24 9.4 24 12.8 999.9 96.1 66.9 0.00I 999.9 000000 724050 13743 19770701 84.0 24 70.1 24 1012.0 24 1009.6 24 13.9 24 9.3 24 12.8 22.0 91.9 66.9 0.00G 999.9 000000 724050 13743 19770702 81.8 23 60.6 23 1016.0 23 1013.6 23 18.8 23 8.4 23 12.8 999.9 93.0 66.9 0.00G 999.9 000000 724050 13743 19770703 78.7 24 54.8 24 1022.0 24 1019.6 24 17.6 24 7.5 24 11.8 999.9 90.0 65.8 0.00G 999.9 000000 724050 13743 19770704 81.4 24 63.5 24 1020.5 24 1018.1 24 13.9 24 9.6 24 11.8 999.9 93.0* 66.0 0.00G 999.9 000000 724050 13743 19770705 86.2 23 70.2 22 1016.5 23 1014.1 23 8.5 23 6.9 23 12.8 999.9 97.0* 68.0* 0.00G 999.9 000000 724050 13743 19770706 90.7 23 74.3 23 1012.3 23 1009.9 23 7.0 23 7.9 23 11.8 999.9 100.0* 75.9 0.00G 999.9 000000 724050 13743 19770707 82.8 24 73.0 24 1010.7 24 1008.3 24 9.2 24 7.0 24 15.0 999.9 93.0* 75.9* 0.00G 999.9 010010 724050 13743 19770708 83.8 24 75.3 24 1011.9 24 1009.5 24 6.9 24 6.1 24 11.8 999.9 95.0* 75.9 0.24G 999.9 000000 724050 13743 19770709 82.7 24 75.1 24 1015.8 24 1013.4 24 5.6 24 5.3 24 9.9 999.9 96.1 77.0 0.04G 999.9 110010 724050 13743 19770710 82.6 24 71.7 24 1019.4 24 1017.0 24 8.0 24 7.0 24 10.9 999.9 91.0 74.8 0.39G 999.9 100000 724050 13743 19770711 78.8 24 72.7 24 1021.7 24 1019.3 24 6.8 24 9.1 24 15.0 999.9 91.0 73.9 0.00G 999.9 110010 724050 13743 19770712 80.7 23 72.9 23 1019.4 23 1017.0 23 6.0 23 8.8 23 17.9 23.9 91.9* 73.9 0.47G 999.9 110010 724050 13743 19770713 81.0 23 73.0 23 1018.8 23 1016.3 23 9.3 23 7.3 23 12.8 999.9 93.9* 72.9 1.61G 999.9 010010 724050 13743 19770714 84.4 23 69.8 23 1020.4 23 1017.9 23 12.0 23 7.2 23 9.9 999.9 95.0 73.0 0.04G 999.9 000010 724050 13743 19770715 81.9 22 65.7 22 1021.6 22 1019.2 22 17.3 22 4.9 22 8.0 999.9 91.9 70.9 0.00G 999.9 000000 724050 13743 19770716 82.3 23 70.4 23 1021.2 23 1018.8 23 8.0 23 5.8 23 10.9 999.9 93.0* 70.9 0.00I 999.9 000000 724050 13743 19770717 83.9 23 74.3 23 1019.1 23 1016.7 23 7.1 23 8.3 23 12.8 999.9 93.9* 71.1 0.00G 999.9 000000 724050 13743 19770718 83.7 22 74.0 22 1017.9 22 1015.5 22 5.6 22 8.2 22 15.0 999.9 95.0 74.8 0.24G 999.9 110010 724050 13743 19770719 84.6 24 73.7 24 1018.4 24 1016.0 24 6.5 24 5.0 24 10.9 999.9 95.0* 73.9 0.01G 999.9 000000 724050 13743 19770720 83.8 24 72.7 23 1015.5 24 1012.9 24 6.2 24 7.2 24 12.8 999.9 96.1 73.9 0.08G 999.9 010010 724050 13743 19770721 87.3 23 74.6 23 1013.7 23 1011.3 23 4.2 23 9.5 23 22.0 30.9 96.1 73.9 0.01G 999.9 010010 724050 13743 19770722 79.6 24 66.1 24 1015.2 24 1012.8 24 14.3 24 11.4 24 15.9 999.9 95.0 74.8 0.59G 999.9 000010 724050 13743 19770723 74.8 22 54.6 22 1021.9 22 1019.5 22 24.9 22 6.9 22 14.0 999.9 87.1 63.9 0.00G 999.9 000000 724050 13743 19770724 76.2 24 60.0 24 1019.5 24 1017.1 24 20.3 24 10.1 24 15.9 999.9 87.1* 64.0 0.00G 999.9 000000 724050 13743 19770725 77.3 24 62.6 24 1012.1 24 1009.8 24 13.9 24 13.3 24 16.9 25.8 87.1 64.9 0.00G 999.9 010000 724050 13743 19770726 72.7 23 61.0 23 1015.1 23 1012.7 23 17.3 23 10.6 23 16.9 999.9 82.0 65.8 0.31G 999.9 010000 724050 13743 19770727 72.4 24 52.6 24 1021.6 24 1019.2 24 19.9 24 7.5 24 11.8 17.9 80.1 61.9 0.00G 999.9 000000 724050 13743 19770728 71.3 23 55.1 23 1024.2 23 1021.8 23 17.7 23 4.6 23 9.9 999.9 82.0* 59.9 0.00I 999.9 000000 724050 13743 19770729 74.6 22 62.0 22 1021.0 22 1018.6 22 13.2 22 6.3 22 8.9 999.9 82.9 60.1 0.00G 999.9 000000 724050 13743 19770730 76.5 23 64.1 23 1013.8 23 1011.4 23 8.6 23 8.1 23 14.0 999.9 84.9 64.9 0.08G 999.9 110000 724050 13743 19770731 78.6 23 68.8 23 1014.6 23 1012.2 23 4.3 23 7.4 23 12.8 999.9 89.1* 68.9 0.00I 999.9 100000 724050 13743 19770801 78.6 23 69.7 23 1013.1 23 1010.9 23 5.1 23 9.2 23 19.8 44.9 90.0 69.1 99.99 999.9 010010 724050 13743 19770802 75.6 24 64.8 24 1016.6 24 1014.3 24 12.7 24 5.8 24 8.0 999.9 88.0 68.0 1.06G 999.9 000000 724050 13743 19770803 78.2 24 68.0 24 1017.3 24 1014.9 24 9.9 24 8.2 24 11.8 999.9 86.0 68.0 0.00G 999.9 010000 724050 13743 19770804 77.6 24 68.3 24 1020.0 24 1017.6 24 9.8 24 6.2 24 9.9 999.9 89.1* 68.9 0.00B 999.9 010000 724050 13743 19770805 81.1 21 71.3 21 1020.9 21 1018.5 21 12.2 21 7.0 21 16.9 29.9 93.9 69.1 0.00G 999.9 010010 724050 13743 19770806 81.8 23 73.1 23 1019.1 23 1016.7 23 12.0 23 6.1 23 19.8 999.9 95.0 73.9 0.31G 999.9 010000 724050 13743 19770807 83.7 24 73.0 24 1016.6 24 1014.2 24 13.0 24 7.2 24 14.0 999.9 95.0 73.9 0.12G 999.9 000010 724050 13743 19770808 83.0 24 71.4 24 1015.1 24 1012.7 24 14.1 24 6.2 24 19.8 35.9 93.9 72.9 0.04G 999.9 010010 724050 13743 19770809 80.9 24 70.9 24 1015.5 24 1013.1 24 15.1 24 6.3 24 22.0 29.9 93.9 73.9 0.16G 999.9 010010 724050 13743 19770810 83.2 23 71.5 23 1016.4 23 1014.0 23 7.0 23 5.3 23 8.9 999.9 93.0* 77.0 0.08G 999.9 010010 724050 13743 19770811 82.3 23 71.2 23 1017.4 23 1015.0 23 14.3 23 5.9 22 16.9 999.9 93.0 75.9 0.00A 999.9 010010 724050 13743 19770812 82.7 24 71.4 24 1017.0 24 1014.6 24 11.3 24 6.5 24 9.9 999.9 91.0 74.8 0.00G 999.9 010000 724050 13743 19770813 77.8 22 71.1 22 1017.5 22 1015.1 22 12.3 22 5.4 22 9.9 999.9 90.9 73.9* 0.13C 999.9 010000 724050 13743 19770814 77.3 23 71.3 23 1016.5 23 1014.0 23 11.5 23 7.0 23 15.9 24.9 82.9* 73.9* 0.39D 999.9 010010 724050 13743 19770815 78.7 23 71.3 23 1019.6 23 1017.2 23 8.6 23 5.3 23 10.9 999.9 87.8* 72.0 0.79G 999.9 100000 724050 13743 19770816 80.0 23 71.5 23 1019.9 23 1017.4 23 5.9 23 6.0 23 9.9 999.9 88.0 72.0 0.00G 999.9 100000 724050 13743 19770817 81.4 24 71.8 24 1011.6 24 1009.2 24 8.5 24 10.1 24 14.0 24.9 88.0 73.9 0.00G 999.9 010000 724050 13743 19770818 73.4 24 59.7 24 1015.0 24 1012.5 24 15.5 24 8.2 24 12.8 999.9 89.1 66.9 0.00A 999.9 000000 724050 13743 19770819 70.6 24 55.5 24 1017.9 24 1015.5 24 19.3 24 5.3 24 8.0 999.9 79.0* 61.9 0.00G 999.9 000000 724050 13743 19770820 73.0 23 57.7 23 1016.6 23 1014.2 23 12.7 23 6.0 23 10.9 999.9 80.1 62.1 0.00G 999.9 000000 724050 13743 19770821 71.3 23 60.5 23 1017.4 23 1015.0 23 13.1 23 6.9 23 14.0 999.9 80.1 61.9 0.00G 999.9 000000 724050 13743 19770822 76.3 24 67.0 24 1012.1 24 1009.7 24 6.4 24 9.8 24 14.0 999.9 84.9* 62.1 0.00A 999.9 000000 724050 13743 19770823 77.5 24 62.8 24 1014.0 24 1011.6 24 9.8 24 5.3 24 9.9 999.9 86.0 70.0 0.00G 999.9 000000 724050 13743 19770824 73.7 24 65.6 24 1013.2 24 1010.8 24 6.9 23 5.8 24 16.9 23.9 84.9 68.9 0.08G 999.9 010010 724050 13743 19770825 68.5 23 55.6 23 1020.2 23 1017.8 23 14.7 23 8.0 23 15.0 999.9 82.0 59.0 1.18G 999.9 010000 724050 13743 19770826 67.5 24 58.2 24 1025.1 24 1022.7 24 18.8 24 5.2 24 9.9 999.9 79.0* 55.9 0.00G 999.9 000000 724050 13743 19770827 74.1 24 66.0 24 1025.0 24 1022.6 24 13.5 24 7.9 24 9.9 999.9 86.0* 55.9 0.00G 999.9 000000 724050 13743 19770828 79.3 24 71.3 24 1025.5 24 1023.1 24 6.8 24 7.7 24 9.9 999.9 89.1* 64.9 0.00I 999.9 100000 724050 13743 19770829 79.8 23 71.9 23 1024.0 23 1021.5 23 6.8 23 8.0 23 10.9 999.9 90.0 70.0 0.00G 999.9 100000 724050 13743 19770830 80.6 24 73.4 24 1020.9 24 1018.5 24 7.2 24 5.6 24 12.8 35.9 91.0 71.1 0.00G 999.9 110010 724050 13743 19770831 80.1 23 73.8 23 1021.6 23 1019.1 23 8.0 23 5.0 23 8.9 999.9 91.9 72.0 0.39G 999.9 000000 724050 13743 19770901 81.6 23 72.9 23 1023.4 23 1021.0 23 8.3 23 6.8 23 8.9 999.9 93.0* 72.0 0.00G 999.9 000000 724050 13743 19770902 83.4 24 71.4 24 1021.6 24 1019.1 24 9.8 24 8.1 24 10.9 999.9 93.9* 72.0 0.00G 999.9 000000 724050 13743 19770903 80.0 24 69.1 24 1019.4 24 1017.0 24 8.6 24 5.4 24 9.9 999.9 93.9 72.0 99.99 999.9 010000 724050 13743 19770904 77.8 24 64.9 24 1018.8 24 1016.5 24 9.6 24 5.9 24 8.9 999.9 86.0 70.9 0.00G 999.9 000000 724050 13743 19770905 79.4 24 70.6 24 1015.5 24 1013.0 24 5.8 24 4.8 24 8.9 999.9 87.1 71.1 99.99 999.9 110010 724050 13743 19770906 79.8 24 69.3 24 1015.2 24 1012.9 24 9.4 24 6.0 24 10.9 999.9 89.1* 72.0 0.00A 999.9 000000 724050 13743 19770907 75.4 24 67.0 24 1018.1 24 1015.8 24 5.8 24 7.3 24 14.0 999.9 90.0 72.0 0.04G 999.9 110010 724050 13743 19770908 73.7 24 62.5 24 1019.5 24 1017.1 24 12.7 24 8.6 23 12.8 999.9 79.0 68.9 0.00G 999.9 000000 724050 13743 19770909 69.1 24 62.6 24 1018.6 24 1016.2 24 12.4 24 9.5 24 12.8 999.9 79.0 64.9 0.00G 999.9 110000 724050 13743 19770910 74.2 24 64.6 24 1012.7 24 1010.3 24 7.5 24 9.1 24 14.0 999.9 87.1* 64.9 0.08G 999.9 110000 724050 13743 19770911 70.4 24 49.2 24 1016.9 24 1014.5 24 23.6 24 10.7 24 15.0 21.0 88.0 61.0 0.00G 999.9 000000 724050 13743 19770912 65.9 23 47.9 23 1023.2 23 1020.7 23 19.7 23 6.2 22 9.9 999.9 77.0 54.9 0.00G 999.9 000000 724050 13743 19770913 71.6 22 58.3 22 1019.0 22 1016.6 22 14.9 22 12.5 22 17.9 23.9 82.9* 55.0 0.00G 999.9 000000 724050 13743 19770914 73.9 24 66.1 24 1012.5 24 1010.1 24 12.3 24 13.4 24 16.9 25.8 82.9 64.9 0.00G 999.9 000000 724050 13743 19770915 65.6 24 55.2 24 1025.4 24 1023.0 24 16.6 24 7.4 24 9.9 999.9 79.0 62.1 0.00A 999.9 010000 724050 13743 19770916 67.6 23 65.1 23 1027.5 23 1025.1 23 14.3 23 5.0 23 8.0 999.9 73.0* 62.1 0.00B 999.9 010000 724050 13743 19770917 73.9 23 69.2 23 1020.4 23 1018.0 23 7.0 23 6.4 23 9.9 999.9 82.0* 64.0 0.12G 999.9 110000 724050 13743 19770918 77.7 24 67.6 24 1015.2 24 1012.8 24 9.1 24 5.5 24 11.8 999.9 89.1* 66.9 0.04G 999.9 100000 724050 13743 19770919 79.3 24 68.5 24 1009.9 24 1007.5 24 10.9 24 6.6 24 9.9 999.9 91.0* 66.9 0.00G 999.9 000000 724050 13743 19770920 78.0 24 67.3 24 1009.2 24 1006.9 24 15.9 24 8.0 24 12.8 19.8 90.9 70.0 0.00A 999.9 000000 724050 13743 19770921 73.5 24 59.7 24 1015.2 24 1012.8 24 13.3 24 8.3 24 10.9 999.9 89.1 66.9 0.00G 999.9 000000 724050 13743 19770922 68.8 24 60.7 24 1019.8 24 1017.4 24 11.3 24 6.0 24 9.9 999.9 77.0 61.9 0.00G 999.9 100000 724050 13743 19770923 71.3 23 64.4 23 1019.4 23 1017.0 23 7.1 23 6.8 23 11.8 999.9 79.0* 62.1 0.00G 999.9 100000 724050 13743 19770924 73.9 23 67.0 23 1016.2 23 1013.8 23 7.2 23 7.8 23 11.8 999.9 80.1 66.9 0.00G 999.9 110000 724050 13743 19770925 73.8 24 69.1 24 1013.8 24 1011.4 24 5.6 24 8.2 24 11.8 999.9 81.0 68.0 0.00B 999.9 100000 724050 13743 19770926 72.3 22 67.4 22 1010.0 22 1007.6 22 4.5 22 9.2 22 14.0 999.9 80.1* 65.8 0.04G 999.9 110000 724050 13743 19770927 73.5 24 59.5 24 1008.3 24 1005.9 24 15.4 24 6.9 24 14.0 999.9 84.9 63.9 0.02G 999.9 010000 724050 13743 19770928 69.0 24 54.3 24 1009.9 24 1007.5 24 16.2 24 9.6 24 15.9 999.9 84.9 63.0 0.04G 999.9 000000 724050 13743 19770929 65.1 23 45.5 23 1015.0 23 1012.6 23 21.4 23 8.2 23 12.8 999.9 77.0 56.8 0.00G 999.9 000000 724050 13743 19770930 67.1 24 49.5 24 1016.4 24 1014.0 24 14.7 24 6.4 24 11.8 999.9 80.1* 55.9 0.00G 999.9 000000 724050 13743 19771001 70.2 23 59.3 23 1011.5 23 1009.2 23 10.2 23 12.2 23 18.8 21.0 80.1 55.9 0.00A 999.9 010000 724050 13743 19771002 74.0 24 62.1 24 1006.1 24 1003.7 24 13.1 24 11.0 24 17.9 26.8 82.0 66.0 0.04G 999.9 010000 724050 13743 19771003 60.4 24 39.4 24 1012.4 24 1010.0 24 17.6 24 13.6 24 19.8 29.9 66.9* 52.0 0.00I 999.9 000000 724050 13743 19771004 60.6 23 37.9 23 1017.5 23 1015.1 23 17.7 23 10.4 23 16.9 25.8 72.0* 50.9 0.00G 999.9 000000 724050 13743 19771005 62.0 24 38.9 24 1022.4 24 1019.9 24 19.0 23 5.6 24 12.8 999.9 73.0 50.0 0.00G 999.9 000000 724050 13743 19771006 61.0 24 47.1 24 1021.2 24 1018.8 24 13.2 24 5.2 24 8.0 999.9 73.9 50.0 0.00G 999.9 010000 724050 13743 19771007 58.7 24 40.5 24 1025.1 24 1022.7 24 15.3 24 5.5 24 8.0 999.9 68.0 48.9 0.00I 999.9 000000 724050 13743 19771008 59.7 24 44.1 24 1022.9 24 1020.5 24 14.4 24 8.2 24 11.8 999.9 66.9 48.9 0.00G 999.9 010000 724050 13743 19771009 65.1 24 57.4 24 1009.6 24 1007.2 24 7.6 24 8.7 24 15.9 28.0 72.0* 55.9 1.00D 999.9 110000 724050 13743 19771010 56.1 23 37.7 23 1016.2 23 1013.8 23 19.9 23 8.0 23 15.0 999.9 72.0 48.9 0.00A 999.9 000000 724050 13743 19771011 57.0 24 44.7 24 1019.1 24 1016.7 24 11.7 24 5.9 24 11.8 999.9 68.0* 45.9 0.00G 999.9 100000 724050 13743 19771012 59.7 24 39.0 24 1016.7 24 1014.3 24 16.7 24 9.8 24 15.0 999.9 68.0 46.0 0.00G 999.9 000000 724050 13743 19771013 53.3 24 33.4 24 1021.2 24 1018.8 24 19.3 24 12.4 24 16.9 999.9 64.9 50.9 0.00G 999.9 000000 724050 13743 19771014 51.7 24 39.9 24 1013.6 24 1011.2 24 12.6 24 14.2 24 22.9 25.8 55.0 48.0* 0.24G 999.9 010000 724050 13743 19771015 55.4 24 39.8 24 1010.5 24 1008.1 24 12.8 24 12.1 24 17.9 24.9 69.1* 47.8 1.22G 999.9 010000 724050 13743 19771016 55.4 24 44.0 24 1006.5 24 1004.1 24 11.9 24 11.2 24 22.9 32.8 69.1 44.1* 0.01G 999.9 010000 724050 13743 19771017 47.1 24 31.6 24 1005.6 24 1003.2 24 11.6 24 17.4 24 29.9 35.9 59.0 41.0 0.75G 999.9 010000 724050 13743 19771018 50.2 24 30.6 24 1012.7 24 1010.3 24 19.9 24 8.7 24 15.0 999.9 66.0* 36.9 0.01G 999.9 000000 724050 13743 19771019 56.6 24 40.5 24 1008.9 24 1006.5 24 16.6 24 8.1 24 14.0 999.9 66.9 37.0 0.01G 999.9 010000 724050 13743 19771020 56.9 23 40.7 23 1014.6 23 1012.2 23 15.0 23 12.9 23 18.8 26.8 64.9 48.9 0.04G 999.9 000000 724050 13743 19771021 57.8 24 40.5 24 1023.4 24 1021.0 24 12.7 24 6.1 24 10.9 999.9 70.0* 46.9 0.00G 999.9 000000 724050 13743 19771022 57.4 24 44.2 24 1023.0 24 1020.6 24 11.5 24 6.7 24 9.9 999.9 73.9* 45.0 0.00G 999.9 000000 724050 13743 19771023 59.5 24 39.2 24 1028.0 24 1025.6 24 16.7 24 8.1 24 14.0 999.9 75.0 45.0 0.00G 999.9 000000 724050 13743 19771024 57.4 23 39.4 23 1032.8 23 1030.4 23 18.6 23 4.5 23 7.0 999.9 66.0* 48.9 0.00G 999.9 000000 724050 13743 19771025 58.0 23 45.4 23 1029.6 23 1027.2 23 14.7 22 3.5 23 8.0 999.9 70.0* 48.9 0.00G 999.9 000000 724050 13743 19771026 61.6 24 53.5 24 1018.2 24 1015.8 24 7.8 24 7.8 24 15.0 999.9 72.0 48.9 0.04G 999.9 110000 724050 13743 19771027 66.8 24 61.5 24 1011.9 24 1009.5 24 3.0 24 9.8 24 14.0 999.9 70.0 55.9 1.93G 999.9 110000 724050 13743 19771028 68.4 24 59.1 24 1014.7 24 1012.4 24 5.3 24 7.3 24 12.8 999.9 73.9* 63.0 0.00G 999.9 110000 724050 13743 19771029 61.0 23 45.0 23 1020.0 23 1017.6 23 11.1 23 12.6 23 16.9 999.9 73.9 56.8 0.00G 999.9 000000 724050 13743 19771030 56.3 24 38.1 24 1023.8 24 1021.4 24 16.8 24 7.5 24 9.9 999.9 66.9 48.9 0.00G 999.9 000000 724050 13743 19771031 53.4 24 39.3 24 1028.8 24 1026.4 24 16.2 24 8.3 23 11.8 999.9 64.9 45.9 0.00G 999.9 000000 724050 13743 19771101 56.5 24 47.0 24 1027.9 24 1025.5 24 13.2 23 9.9 24 11.8 999.9 63.0* 46.0 0.00G 999.9 010000 724050 13743 19771102 63.3 24 56.7 24 1024.6 24 1022.2 24 7.8 24 10.5 24 14.0 999.9 70.0 52.0 0.01G 999.9 110000 724050 13743 19771103 65.4 24 59.7 24 1023.1 24 1020.7 24 4.5 24 11.7 24 15.9 999.9 70.0 63.9 0.02G 999.9 110000 724050 13743 19771104 71.3 24 63.5 24 1022.5 24 1020.1 24 7.7 23 7.1 24 9.9 999.9 78.1* 64.0 0.67G 999.9 110000 724050 13743 19771105 68.7 22 61.4 22 1024.8 22 1022.4 22 8.5 22 8.8 22 11.8 999.9 78.1 65.8 0.02G 999.9 010000 724050 13743 19771106 63.8 23 58.3 23 1021.9 23 1019.5 23 5.5 23 12.2 23 17.9 999.9 73.0 61.0 0.00C 999.9 110000 724050 13743 19771107 64.1 23 58.6 23 1011.4 23 1009.1 23 4.9 23 12.1 23 19.8 999.9 68.0 61.0 0.98G 999.9 110000 724050 13743 19771108 62.6 24 57.4 23 1011.8 24 1009.4 24 3.7 24 7.0 23 9.9 999.9 68.0 61.0 0.28G 999.9 110000 724050 13743 19771109 63.6 23 56.6 23 1017.0 23 1014.6 23 4.2 23 4.5 23 8.0 999.9 70.0* 59.9 0.00G 999.9 100000 724050 13743 19771110 64.8 24 57.9 24 1011.2 24 1008.8 24 5.6 24 7.6 24 19.8 37.9 73.0 60.1 0.00G 999.9 110000 724050 13743 19771111 47.9 24 29.6 24 1013.4 24 1011.0 24 21.5 24 11.8 24 24.9 28.9 54.0* 41.0 0.24G 999.9 010000 724050 13743 19771112 43.1 23 21.6 23 1020.2 23 1017.8 23 22.9 23 11.1 23 19.8 28.0 53.1 37.9 0.00G 999.9 000000 724050 13743 19771113 38.6 23 19.4 23 1024.8 23 1022.4 23 21.8 23 14.9 23 22.0 28.9 46.9 34.0 0.00G 999.9 000000 724050 13743 19771114 39.2 24 18.4 24 1026.7 24 1024.3 24 19.3 24 8.3 24 15.0 999.9 46.9* 30.9 0.00G 999.9 000000 724050 13743 19771115 46.7 24 28.2 24 1021.5 24 1019.1 24 17.4 24 6.1 24 8.9 999.9 57.9* 30.9 0.00G 999.9 000000 724050 13743 19771116 55.0 22 36.1 22 1015.4 22 1013.0 22 14.9 22 9.5 22 15.0 999.9 68.0* 36.0 0.00G 999.9 000000 724050 13743 19771117 60.7 24 52.4 24 1007.1 24 1004.7 24 10.3 24 11.6 24 19.8 30.9 71.1* 45.0 0.20G 999.9 010110 724050 13743 19771118 50.7 24 27.9 24 1013.6 24 1011.2 24 21.7 24 11.4 24 17.9 25.8 71.1 39.9 0.12G 999.9 000000 724050 13743 19771119 46.8 24 27.1 24 1025.3 24 1022.8 24 21.1 24 8.4 24 12.8 999.9 57.0 38.8 0.00G 999.9 000000 724050 13743 19771120 47.0 24 30.2 24 1031.7 24 1029.3 24 15.7 24 5.4 24 9.9 999.9 54.0* 39.0 0.00G 999.9 000000 724050 13743 19771121 49.6 23 42.7 23 1028.5 23 1026.1 23 11.7 23 7.8 23 14.0 999.9 55.9* 41.0 0.00G 999.9 010000 724050 13743 19771122 51.6 21 44.6 21 1026.4 21 1024.0 21 8.3 21 8.5 21 15.9 999.9 57.0 45.0* 0.12G 999.9 110000 724050 13743 19771123 44.0 23 39.5 23 1024.4 23 1022.0 23 5.8 23 8.5 23 11.8 999.9 57.0 41.0 0.55G 999.9 110000 724050 13743 19771124 47.9 23 43.9 23 1016.7 23 1014.3 23 5.1 23 5.2 23 11.8 999.9 54.0* 41.0 0.08G 999.9 110000 724050 13743 19771125 44.5 21 34.9 21 1015.4 21 1013.0 21 9.3 21 8.0 21 14.0 999.9 54.0 41.9 0.01G 999.9 110000 724050 13743 19771126 39.8 23 28.7 23 1001.3 23 999.0 23 12.6 23 13.5 23 23.9 34.0 44.1 21.9 0.63G 999.9 110000 724050 13743 19771127 31.1 21 10.3 21 1018.9 21 1016.5 21 23.4 21 10.6 21 22.0 26.8 43.0 25.0 0.08G 999.9 000000 724050 13743 19771128 39.6 24 24.4 24 1022.9 24 1020.5 24 13.6 24 9.1 24 17.9 999.9 48.0* 25.0 0.00G 999.9 001000 724050 13743 19771129 38.5 22 31.3 21 1033.8 22 1031.4 22 7.6 22 7.2 22 10.9 999.9 48.9 30.2* 0.00G 999.9 110000 724050 13743 19771130 40.6 24 37.3 24 1027.3 24 1024.9 24 2.2 24 7.0 24 9.9 999.9 46.0* 36.0 0.24G 999.9 110000 724050 13743 19771201 48.5 24 45.1 24 1007.2 24 1005.1 24 5.5 24 7.6 24 14.0 999.9 59.0* 37.9 0.71G 999.9 110000 724050 13743 19771202 50.8 23 37.5 23 1011.7 23 1009.3 23 18.6 23 8.1 23 15.9 999.9 59.0 43.0 0.04G 999.9 000000 724050 13743 19771203 46.8 23 33.3 22 1011.4 23 1009.1 23 21.0 23 8.6 23 14.0 999.9 59.0* 37.9 0.00G 999.9 000000 724050 13743 19771204 46.4 24 30.3 24 1014.1 24 1011.7 24 16.8 23 7.3 24 15.0 999.9 59.0 37.9 0.00G 999.9 000000 724050 13743 19771205 42.4 22 34.9 22 1010.3 22 1007.9 22 7.3 22 8.3 22 12.8 999.9 50.0 36.9 0.01G 999.9 111000 724050 13743 19771206 41.4 23 31.2 23 997.1 23 993.0 23 11.9 23 10.0 23 22.9 30.9 48.9 36.0 0.24G 999.9 110000 724050 13743 19771207 31.3 23 10.4 23 1011.5 23 1009.3 23 18.1 23 17.7 23 22.9 30.9 45.0 21.9 0.02G 999.9 000000 724050 13743 19771208 27.9 21 10.8 21 1027.3 21 1024.8 21 18.6 21 8.8 21 15.9 999.9 36.0* 20.8 0.00G 999.9 000000 724050 13743 19771209 38.5 24 23.8 24 1015.5 24 1013.1 24 14.9 24 14.5 24 26.8 42.0 48.0 21.0 0.04G 999.9 011000 724050 13743 19771210 24.2 24 3.8 24 1028.6 24 1026.1 24 19.1 24 15.0 24 22.9 38.9 31.1* 17.1 0.00A 999.9 000000 724050 13743 19771211 24.1 23 6.3 23 1034.5 23 1032.1 23 18.2 23 10.5 23 15.0 999.9 31.1* 17.1 0.00G 999.9 000000 724050 13743 19771212 27.3 23 9.4 23 1033.8 23 1031.4 23 14.0 23 7.9 23 15.9 999.9 39.9* 18.0 0.00G 999.9 000000 724050 13743 19771213 41.5 23 22.0 23 1025.1 23 1022.7 23 15.7 23 5.4 23 12.8 999.9 52.0* 37.0* 0.00B 999.9 010000 724050 13743 19771214 43.6 22 35.2 22 1018.8 22 1016.4 22 7.4 22 6.4 22 14.0 999.9 55.0* 36.0 0.16G 999.9 110000 724050 13743 19771215 52.4 23 46.2 22 1012.3 23 1009.9 23 12.4 23 9.5 23 14.0 21.0 59.0 36.0 0.31G 999.9 110000 724050 13743 19771216 42.3 21 33.8 21 1021.4 21 1018.9 21 8.7 21 3.2 21 7.0 999.9 57.0 34.0 0.00G 999.9 100000 724050 13743 19771217 41.1 24 35.4 24 1019.3 24 1016.9 24 6.8 24 5.0 24 8.9 999.9 51.1 34.0 0.00G 999.9 000000 724050 13743 19771218 43.7 24 39.8 24 1011.8 24 1009.3 24 4.3 24 11.3 24 18.8 23.9 46.0 36.0 2.20G 999.9 110000 724050 13743 19771219 41.0 23 37.1 23 1012.3 23 1009.9 23 5.1 23 11.8 23 18.8 999.9 45.0 37.9 0.98G 999.9 111000 724050 13743 19771220 40.1 23 34.6 23 1018.2 23 1015.8 23 7.0 23 7.1 23 10.9 999.9 43.0* 36.9 0.08G 999.9 110000 724050 13743 19771221 43.6 23 38.1 23 1008.6 23 1006.2 23 5.6 23 7.7 23 16.9 999.9 46.9* 37.0 0.35G 999.9 110000 724050 13743 19771222 38.5 24 21.4 24 1014.6 24 1012.2 24 18.8 24 7.9 24 12.8 999.9 46.9 32.0 0.04G 999.9 000000 724050 13743 19771223 38.4 24 24.9 24 1022.1 24 1019.6 24 17.4 24 9.8 24 16.9 19.8 48.0* 30.9 0.00G 999.9 000000 724050 13743 19771224 43.8 24 31.1 24 1018.5 24 1016.1 24 15.5 24 7.1 24 16.9 24.9 55.9* 30.9 0.00G 999.9 000000 724050 13743 19771225 49.9 24 39.6 24 1004.4 24 1002.0 24 12.0 24 12.7 24 16.9 999.9 56.8 34.0 0.08G 999.9 110000 724050 13743 19771226 27.0 23 4.7 23 1011.9 23 1009.5 23 17.3 23 13.9 23 28.0 42.0 53.1 19.9 0.00G 999.9 000000 724050 13743 19771227 23.2 23 6.2 23 1020.9 23 1018.5 23 19.2 23 7.0 23 14.0 999.9 31.1* 16.0 0.00G 999.9 000000 724050 13743 19771228 25.2 19 9.3 19 1025.4 19 1023.0 19 19.4 19 7.7 19 12.8 999.9 32.0 16.0 0.00G 999.9 000000 724050 13743 19771229 27.7 24 13.1 24 1024.9 24 1022.5 24 11.5 24 5.7 24 11.8 999.9 41.0* 18.0 0.00G 999.9 000000 724050 13743 19771230 35.0 23 21.9 23 1025.6 23 1023.2 23 12.6 23 6.4 23 16.9 999.9 45.0 18.0 0.00G 999.9 111000 724050 13743 19771231 40.0 24 32.3 24 1021.6 24 1019.2 24 7.2 24 7.9 24 11.8 999.9 48.9* 30.0 0.24G 999.9 110000 fluids-1.0.22/tests/gsod/1978/0000755000175000017500000000000014302004506015110 5ustar nileshnileshfluids-1.0.22/tests/gsod/1978/724050-13743.op0000644000175000017500000014327214302004506016701 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19780101 35.7 24 26.2 24 1018.4 24 1016.0 24 9.6 24 6.0 24 10.9 999.9 48.9 30.9 0.01G 999.9 111000 724050 13743 19780102 37.3 23 21.9 23 1012.0 23 1009.6 23 14.5 23 10.2 23 17.9 28.0 39.9 30.9 0.02G 999.9 100000 724050 13743 19780103 30.4 24 9.8 24 1020.7 24 1018.3 24 19.5 24 9.7 24 15.9 22.9 41.0 23.9 0.00G 999.9 000000 724050 13743 19780104 27.3 24 11.0 24 1032.1 24 1029.7 24 19.9 24 8.0 24 14.0 999.9 37.0* 18.0 0.00I 999.9 000000 724050 13743 19780105 34.6 24 19.9 24 1028.3 24 1025.9 24 17.2 24 3.7 24 8.0 999.9 44.1* 18.0 0.00G 999.9 000000 724050 13743 19780106 41.2 24 28.4 24 1022.3 24 1019.9 24 10.1 24 5.7 24 8.0 999.9 46.9* 28.0 0.00G 999.9 000000 724050 13743 19780107 42.0 24 37.4 24 1022.7 24 1020.2 24 5.0 24 5.1 24 8.0 999.9 48.0 37.0 0.00D 999.9 110000 724050 13743 19780108 44.8 23 42.7 23 1018.6 23 1016.2 23 1.9 23 5.1 23 8.0 999.9 48.9* 39.9 0.28C 999.9 110000 724050 13743 19780109 38.4 23 28.5 23 996.0 23 993.6 23 7.4 23 19.7 23 28.0 41.0 62.1 21.2* 1.69G 999.9 111000 724050 13743 19780110 16.7 23 -5.3 23 1014.8 23 1012.4 23 19.9 22 15.7 23 22.0 36.9 34.9 9.9 0.04G 999.9 000000 724050 13743 19780111 21.7 23 -0.9 23 1025.9 23 1023.5 23 19.8 23 12.4 23 22.0 31.9 34.0* 10.0 0.00G 999.9 010000 724050 13743 19780112 29.1 23 1.4 23 1027.9 23 1025.5 23 19.8 23 5.4 23 8.0 999.9 37.9* 16.0 0.00G 999.9 000000 724050 13743 19780113 32.8 23 20.4 23 1020.3 23 1017.9 23 6.7 23 8.1 23 15.0 999.9 39.9 19.0 0.32C 3.9 011000 724050 13743 19780114 35.6 23 28.7 23 1001.6 23 999.2 23 6.6 23 12.2 23 16.9 999.9 36.0 30.0 0.91G 999.9 111000 724050 13743 19780115 29.7 24 16.2 24 1010.9 24 1008.5 24 14.9 24 10.3 24 14.0 999.9 37.0 23.9 0.01G 2.0 001000 724050 13743 19780116 26.7 24 10.2 24 1025.7 24 1023.3 24 16.3 24 6.2 24 9.9 999.9 34.0* 18.9 0.00I 2.0 000000 724050 13743 19780117 32.5 23 25.4 23 1025.5 23 1023.1 23 6.2 23 7.7 23 14.0 999.9 36.0* 19.0 0.12C 2.8 111000 724050 13743 19780118 36.5 24 27.8 24 1014.1 24 1011.8 24 9.7 24 9.7 23 15.9 999.9 39.9* 30.9 0.91G 2.0 110000 724050 13743 19780119 30.2 23 18.8 23 1026.7 23 1024.2 23 12.9 23 8.3 23 14.0 999.9 39.9 27.0 0.00G 0.8 001000 724050 13743 19780120 32.8 23 28.0 23 1010.5 23 1008.2 23 3.4 23 15.3 23 22.9 31.9 37.0* 27.0 0.31G 3.9 111000 724050 13743 19780121 33.9 24 20.5 24 1015.3 24 1012.9 24 14.9 24 9.7 24 16.9 999.9 37.0 30.9 0.16G 3.9 000000 724050 13743 19780122 30.2 24 14.4 24 1028.8 24 1026.4 24 14.9 23 8.4 24 15.0 999.9 36.0 23.0 0.00G 3.9 000000 724050 13743 19780123 29.2 24 14.2 24 1032.4 24 1030.0 24 11.6 24 5.6 24 8.9 999.9 39.0* 18.9 0.00G 3.9 000000 724050 13743 19780124 30.7 23 21.0 23 1027.9 23 1025.5 23 7.8 23 3.8 23 8.0 999.9 42.1* 19.0 0.00G 3.9 000000 724050 13743 19780125 38.0 24 32.2 24 1011.1 24 1008.7 24 4.8 24 6.5 23 10.9 999.9 42.1 21.9 1.06G 2.0 110000 724050 13743 19780126 44.3 24 29.0 24 986.3 24 984.2 23 14.6 24 20.9 24 37.9 57.9 59.0 31.1* 1.22G 2.0 110000 724050 13743 19780127 29.8 24 8.7 24 1003.8 24 1001.4 24 21.7 24 14.6 24 23.9 32.8 36.0* 25.9 0.59G 999.9 000000 724050 13743 19780128 25.7 24 6.6 24 1013.0 24 1010.6 24 21.1 24 13.4 24 16.9 22.9 36.0 19.9 0.00G 999.9 000000 724050 13743 19780129 25.6 24 6.9 24 1016.7 24 1014.3 24 19.9 24 11.9 24 25.8 28.9 31.1* 18.9 0.00G 999.9 000000 724050 13743 19780130 26.5 23 8.4 23 1022.2 23 1019.8 23 19.9 23 12.3 23 16.9 22.9 34.0* 19.0 0.00G 999.9 000000 724050 13743 19780131 26.6 24 10.6 24 1023.2 24 1020.8 24 14.5 24 9.1 24 17.9 999.9 34.0 18.9 0.00G 999.9 001000 724050 13743 19780201 25.5 24 6.9 24 1028.4 24 1026.0 24 19.5 24 9.6 24 15.0 999.9 35.1 18.0 0.00G 999.9 000000 724050 13743 19780202 29.2 24 15.0 24 1026.4 24 1024.0 24 12.9 24 4.6 24 8.9 999.9 33.1 18.0 0.04G 999.9 001000 724050 13743 19780203 27.7 24 13.2 24 1030.6 24 1028.2 24 10.7 24 7.8 24 10.9 999.9 34.0 20.8 0.00A 999.9 000000 724050 13743 19780204 26.7 22 7.7 22 1034.6 22 1032.2 22 14.0 22 9.6 22 12.8 999.9 34.0 18.0 0.00G 999.9 000000 724050 13743 19780205 25.1 24 8.7 24 1029.4 24 1027.0 24 14.1 24 5.0 24 8.9 999.9 32.0 18.0 0.00G 999.9 000000 724050 13743 19780206 24.7 23 19.1 23 1015.9 23 1013.5 23 2.1 23 11.7 23 23.9 35.9 33.1 19.0 0.16G 2.0 101000 724050 13743 19780207 21.9 24 9.5 24 1010.2 24 1007.8 24 11.8 24 21.3 24 26.8 38.9 29.1* 18.0 0.08G 2.0 001000 724050 13743 19780208 27.5 24 12.4 24 1023.1 24 1020.7 24 17.6 24 11.4 24 16.9 999.9 37.0* 18.0 0.00G 2.0 000000 724050 13743 19780209 30.2 22 15.7 22 1022.7 22 1020.3 22 15.0 22 7.6 22 9.9 999.9 37.9 21.0 0.00G 999.9 000000 724050 13743 19780210 28.7 24 8.3 24 1017.7 24 1015.3 24 17.0 24 9.0 24 14.0 999.9 39.0 19.9 0.00G 999.9 000000 724050 13743 19780211 30.4 22 8.3 22 1016.5 22 1014.1 22 14.9 22 8.9 22 16.9 999.9 39.9* 19.9 0.00G 999.9 000000 724050 13743 19780212 35.6 24 6.9 24 1016.7 24 1014.3 24 16.8 24 8.2 24 16.9 999.9 45.0* 19.9 99.99 999.9 010000 724050 13743 19780213 32.9 24 16.9 24 1015.1 24 1012.8 24 13.2 24 5.5 24 8.9 999.9 45.0 23.9 0.00G 999.9 001000 724050 13743 19780214 34.0 24 27.3 24 1007.2 24 1004.8 24 4.5 24 8.9 24 12.8 999.9 39.0* 24.1 0.16G 0.8 111000 724050 13743 19780215 34.1 23 19.1 23 1021.0 23 1018.6 23 9.6 23 7.7 23 10.9 999.9 41.0* 25.9 0.00G 1.2 000000 724050 13743 19780216 34.0 24 23.0 24 1025.1 24 1022.7 24 8.3 24 4.6 24 10.9 999.9 41.0 26.1 0.00G 999.9 101000 724050 13743 19780217 35.5 24 31.0 24 1022.4 24 1020.0 24 2.4 24 4.2 24 8.0 999.9 41.0 30.0 0.01G 999.9 101000 724050 13743 19780218 37.8 24 30.9 24 1018.7 24 1016.3 24 3.0 24 4.2 24 7.0 999.9 43.0* 33.1 0.00G 999.9 110000 724050 13743 19780219 33.1 24 17.9 24 1014.7 24 1012.3 24 12.7 24 11.6 24 16.9 999.9 43.0 28.9 0.00G 999.9 000000 724050 13743 19780220 27.9 21 10.1 21 1019.2 21 1016.8 21 16.0 21 5.3 21 9.9 999.9 37.9* 20.8 0.00G 999.9 000000 724050 13743 19780221 33.7 24 16.5 24 1014.9 24 1012.5 24 12.1 24 5.9 24 12.8 999.9 41.0* 21.0 99.99 999.9 001000 724050 13743 19780222 29.1 23 9.6 23 1013.1 23 1010.7 23 10.3 23 16.6 23 22.0 31.9 41.0 20.8 0.00G 999.9 000000 724050 13743 19780223 29.3 23 5.5 23 1013.7 23 1011.3 23 16.0 23 11.1 23 15.0 22.0 39.9* 21.0 0.00G 999.9 000000 724050 13743 19780224 36.5 24 15.0 24 1010.7 24 1008.3 24 13.5 24 8.4 24 15.9 24.9 45.0* 21.9 0.00G 999.9 000000 724050 13743 19780225 39.7 24 22.3 24 1010.0 24 1007.6 24 10.1 24 5.2 24 11.8 999.9 53.1* 28.9 0.00G 999.9 000000 724050 13743 19780226 39.5 24 19.3 24 1015.9 24 1013.5 24 14.3 24 12.3 24 22.9 31.9 54.0 32.0 0.00G 999.9 000000 724050 13743 19780227 33.4 23 12.9 23 1022.6 23 1020.2 23 14.9 23 12.5 23 17.9 22.0 45.0 25.9 0.00G 999.9 000000 724050 13743 19780228 32.1 24 16.1 24 1022.1 24 1019.7 24 11.4 24 5.9 24 9.9 999.9 39.9 26.1 0.00G 999.9 001000 724050 13743 19780301 33.3 22 25.8 22 1016.5 22 1014.1 22 5.2 22 6.5 22 14.0 999.9 37.0* 28.0 0.08D 999.9 001000 724050 13743 19780302 29.5 24 9.3 24 1024.3 24 1021.9 24 12.8 24 10.8 24 15.0 999.9 39.0 21.9 0.00A 999.9 000000 724050 13743 19780303 31.1 24 19.5 24 1013.7 24 1011.3 24 7.3 24 6.9 24 12.8 999.9 35.1 21.9 0.39G 3.9 001000 724050 13743 19780304 30.8 23 14.5 23 1008.4 23 1006.0 23 13.6 23 15.3 23 31.9 35.0 35.1* 25.9 0.01G 3.9 000000 724050 13743 19780305 26.2 24 6.4 24 1022.0 24 1019.6 24 18.8 24 11.2 23 15.9 22.0 35.1 16.0 0.00G 3.1 000000 724050 13743 19780306 33.9 24 11.7 24 1022.4 24 1020.0 24 17.6 24 7.6 24 11.8 999.9 39.0* 16.0 0.00G 2.0 000000 724050 13743 19780307 34.9 24 13.8 24 1027.8 24 1025.4 24 14.9 24 6.7 24 11.8 999.9 39.0 27.0 0.00G 999.9 000000 724050 13743 19780308 33.1 24 18.9 24 1028.0 24 1025.5 24 8.6 24 7.2 24 11.8 999.9 37.9 28.0 0.12G 2.8 001000 724050 13743 19780309 33.0 23 25.6 23 1020.9 23 1018.5 23 7.2 23 6.9 23 12.8 999.9 37.9* 28.0 0.16G 2.8 011000 724050 13743 19780310 39.1 23 32.2 23 1007.1 23 1004.7 23 5.6 23 9.6 23 15.9 999.9 44.1* 30.9 0.39G 999.9 010000 724050 13743 19780311 44.4 24 26.7 24 1011.3 24 1008.9 24 12.6 24 5.6 24 10.9 999.9 55.0* 34.0 0.04G 999.9 000000 724050 13743 19780312 50.3 24 35.5 24 1011.0 24 1008.7 24 9.8 24 7.1 24 11.8 999.9 61.0* 34.0 0.00G 999.9 010000 724050 13743 19780313 48.6 24 34.5 24 1023.0 24 1020.6 24 6.9 24 8.8 24 12.8 999.9 61.0 39.9 0.00G 999.9 000000 724050 13743 19780314 52.2 23 45.5 23 1012.3 23 1009.9 23 7.2 23 9.1 23 17.9 999.9 62.1* 39.9 0.01G 999.9 110010 724050 13743 19780315 54.8 24 39.5 24 1012.0 24 1009.6 24 15.9 24 9.6 24 15.9 18.8 64.0 43.0 0.16G 999.9 000000 724050 13743 19780316 42.5 22 30.5 22 1017.3 22 1014.9 22 8.7 22 9.3 22 15.0 999.9 57.9 37.9* 0.00G 999.9 011000 724050 13743 19780317 40.0 23 27.5 23 1016.4 23 1014.0 23 8.9 23 11.1 23 16.9 23.9 45.0 36.0 0.16G 999.9 010000 724050 13743 19780318 37.8 24 17.2 24 1025.4 24 1023.0 24 14.5 24 10.6 24 15.0 23.9 46.0* 32.0 0.00G 999.9 000000 724050 13743 19780319 52.0 24 23.3 23 1017.9 24 1015.5 24 17.6 24 15.3 24 22.9 29.9 72.0* 32.0 0.00G 999.9 000000 724050 13743 19780320 51.1 24 25.4 24 1026.1 24 1023.7 24 17.6 24 9.9 24 29.9 44.9 73.9 41.0 0.00G 999.9 000000 724050 13743 19780321 55.2 23 37.1 23 1017.4 23 1014.9 23 12.6 23 10.7 23 19.8 28.9 77.0* 41.0 0.00G 999.9 000000 724050 13743 19780322 56.2 24 33.8 24 1014.6 24 1012.2 24 16.4 24 12.5 24 24.9 31.9 79.0 41.0 0.08G 999.9 010010 724050 13743 19780323 57.0 24 36.2 24 1016.9 24 1014.5 24 17.6 24 8.5 24 12.8 999.9 73.9* 45.9 0.00G 999.9 000000 724050 13743 19780324 57.1 24 39.8 24 1021.4 24 1018.9 24 12.5 24 11.4 24 15.0 999.9 75.0 46.0 0.00G 999.9 000000 724050 13743 19780325 43.2 24 21.9 24 1030.1 24 1027.6 24 15.5 24 13.5 24 17.9 999.9 59.0 39.0* 0.00G 999.9 010000 724050 13743 19780326 42.0 24 37.6 24 1020.6 24 1018.2 24 4.7 24 10.4 24 14.0 999.9 48.9* 37.9 0.51G 999.9 110000 724050 13743 19780327 49.2 24 41.9 23 1009.7 24 1007.3 24 8.4 24 9.5 24 15.9 999.9 61.0* 37.9 2.32G 999.9 110000 724050 13743 19780328 53.6 24 36.5 24 1014.5 24 1012.1 24 15.9 24 11.3 24 16.9 999.9 64.9* 43.0 0.01G 999.9 000000 724050 13743 19780329 56.4 24 38.1 24 1015.7 24 1013.3 24 18.0 24 9.0 24 17.9 23.9 66.2* 46.0 0.00G 999.9 000000 724050 13743 19780330 48.4 23 25.5 23 1022.9 23 1020.5 23 19.7 23 12.0 23 15.9 999.9 66.9 37.9 0.00G 999.9 000000 724050 13743 19780331 51.5 23 29.5 23 1021.3 23 1018.8 23 19.2 23 6.4 22 8.9 999.9 64.0* 37.9 0.00G 999.9 000000 724050 13743 19780401 63.1 24 42.1 24 1010.3 24 1007.9 24 14.7 24 11.2 24 28.0 39.8 88.0* 42.1 0.00G 999.9 000000 724050 13743 19780402 63.0 24 32.5 24 1016.1 24 1013.7 24 19.3 24 14.0 24 19.8 25.8 88.0 46.9 0.00G 999.9 000000 724050 13743 19780403 48.3 24 25.1 24 1031.0 24 1028.5 24 14.1 24 9.3 24 15.0 999.9 55.9* 45.9 0.01G 999.9 010000 724050 13743 19780404 53.0 23 40.7 23 1024.4 23 1022.1 23 12.4 23 7.0 23 11.8 999.9 70.0* 43.0 0.01G 999.9 000000 724050 13743 19780405 62.3 24 44.1 24 1016.0 24 1013.6 24 13.6 24 11.0 24 22.9 30.9 70.0 43.0 0.00G 999.9 000000 724050 13743 19780406 53.0 24 34.1 24 1023.6 24 1021.2 24 13.7 24 8.2 24 14.0 999.9 69.1 45.9 0.00I 999.9 000000 724050 13743 19780407 57.9 24 40.9 24 1015.6 24 1013.2 24 11.6 24 8.9 24 17.9 28.0 75.9* 46.0 0.12G 999.9 110000 724050 13743 19780408 65.8 24 31.8 24 1016.0 24 1013.6 24 22.0 24 11.2 24 17.9 23.9 77.0 46.9 0.08G 999.9 000000 724050 13743 19780409 53.1 24 21.1 23 1020.8 24 1018.4 24 20.9 24 10.4 24 15.0 999.9 73.9 39.9 0.00G 999.9 000000 724050 13743 19780410 57.7 23 36.2 23 1016.5 23 1014.1 23 16.0 23 4.5 23 8.0 999.9 68.0* 39.9 0.00I 999.9 000000 724050 13743 19780411 61.6 24 44.5 24 1006.0 24 1003.6 24 10.8 24 7.7 24 19.8 29.9 84.9* 52.0 0.00G 999.9 010000 724050 13743 19780412 62.9 24 38.5 24 1009.6 24 1007.2 24 17.8 24 11.5 24 23.9 35.9 73.9* 50.9 0.12G 999.9 010000 724050 13743 19780413 66.6 23 39.7 23 1008.1 23 1005.6 22 19.7 23 9.2 23 15.9 25.8 78.1* 51.1 0.00G 999.9 000000 724050 13743 19780414 59.9 23 26.5 23 1015.3 23 1012.9 23 19.9 23 15.0 23 19.8 34.0 80.1 46.9 0.00G 999.9 000000 724050 13743 19780415 56.4 24 24.9 24 1019.2 24 1016.8 24 18.6 24 11.9 24 19.8 28.0 69.1 43.9 0.00G 999.9 000000 724050 13743 19780416 50.8 24 22.2 24 1022.2 24 1019.8 24 21.3 24 10.6 24 22.0 26.8 64.9 39.9 0.00G 999.9 000000 724050 13743 19780417 55.2 24 33.1 24 1021.4 24 1019.0 24 18.2 24 9.3 24 15.0 999.9 66.0* 39.9 0.00G 999.9 000000 724050 13743 19780418 55.7 24 40.8 24 1018.8 24 1016.4 24 15.2 24 9.7 24 15.0 999.9 66.9 46.9 0.00G 999.9 010000 724050 13743 19780419 53.3 24 48.6 24 1009.1 24 1006.7 24 3.8 23 7.3 24 12.8 999.9 64.0 46.9 0.59G 999.9 110000 724050 13743 19780420 56.3 24 46.4 24 998.5 24 996.2 24 12.2 24 8.0 24 16.9 999.9 62.1 51.1 0.28G 999.9 110010 724050 13743 19780421 53.7 23 36.0 23 1004.2 23 1001.8 23 19.2 23 9.9 23 15.9 16.9 63.0 45.0 0.24G 999.9 010000 724050 13743 19780422 52.0 24 33.0 24 1014.6 24 1012.2 24 17.4 24 14.1 24 17.9 999.9 63.0* 41.9 0.00G 999.9 010000 724050 13743 19780423 54.7 24 28.5 24 1020.7 24 1018.3 24 17.4 24 6.4 24 10.9 999.9 64.9* 41.0 0.00G 999.9 000000 724050 13743 19780424 61.7 24 41.4 24 1016.4 24 1014.0 24 12.2 24 8.8 24 16.9 22.9 72.0* 41.0 0.00A 999.9 010000 724050 13743 19780425 58.6 22 36.5 22 1017.2 22 1014.9 22 11.4 22 7.6 22 10.9 999.9 72.0 48.9 0.00I 999.9 000000 724050 13743 19780426 51.9 24 40.4 24 1014.6 24 1012.2 24 10.9 24 15.0 24 24.9 35.0 63.9 47.8 0.31G 999.9 010000 724050 13743 19780427 53.4 23 34.7 23 1010.5 23 1008.1 23 15.4 23 16.1 23 23.9 34.0 60.1* 46.9 0.02G 999.9 010000 724050 13743 19780428 58.2 23 32.7 23 1010.7 23 1008.4 23 18.8 23 11.4 23 18.8 24.9 73.0* 43.0 0.00G 999.9 000000 724050 13743 19780429 63.9 24 30.9 24 1012.6 24 1010.2 24 18.8 24 8.6 24 15.0 23.9 77.0* 43.0 0.00G 999.9 000000 724050 13743 19780430 66.5 24 41.3 24 1007.3 24 1004.9 24 14.3 24 8.5 24 14.0 999.9 77.0 46.9 0.00G 999.9 000000 724050 13743 19780501 55.6 24 19.6 24 1008.2 24 1005.8 24 18.8 24 11.5 24 17.9 29.9 73.0 45.9 0.00G 999.9 000000 724050 13743 19780502 53.6 23 26.5 23 1011.1 23 1008.7 23 20.2 23 11.6 23 16.9 999.9 69.1* 41.9 0.00G 999.9 000000 724050 13743 19780503 59.9 22 28.7 22 1013.3 22 1010.9 22 19.8 22 10.2 22 15.0 18.8 70.0 42.1 0.00G 999.9 000000 724050 13743 19780504 54.2 22 37.1 22 1012.1 22 1009.7 22 12.9 22 9.5 22 15.0 999.9 71.1 46.9* 0.08A 999.9 110000 724050 13743 19780505 50.9 24 46.0 24 1007.1 24 1004.7 24 6.5 24 8.2 24 17.9 999.9 55.9 46.0 1.30G 999.9 110000 724050 13743 19780506 55.7 24 47.5 24 1018.7 24 1016.3 24 7.0 24 6.8 24 12.8 999.9 64.9* 47.8 0.08G 999.9 110000 724050 13743 19780507 59.8 24 46.1 24 1024.6 24 1022.2 24 7.9 24 6.6 24 10.9 999.9 68.0 51.1 0.02G 999.9 000000 724050 13743 19780508 56.8 23 50.1 23 1022.3 23 1019.9 23 4.4 23 6.6 23 8.9 999.9 68.0 54.0 0.12G 999.9 110000 724050 13743 19780509 66.5 23 59.8 23 1009.1 23 1006.7 23 9.1 23 8.7 23 17.9 25.8 82.9* 54.0 0.71G 999.9 110000 724050 13743 19780510 65.6 24 45.4 24 1012.7 24 1010.3 24 18.6 24 10.0 24 14.0 999.9 82.9 59.0 0.08G 999.9 000000 724050 13743 19780511 61.9 24 45.3 24 1022.8 24 1020.4 24 14.4 24 5.1 24 8.0 999.9 73.0* 48.9 0.00G 999.9 000000 724050 13743 19780512 66.5 24 52.3 24 1021.0 24 1018.6 24 11.1 24 10.0 24 17.9 28.0 80.1* 48.9 0.00G 999.9 000000 724050 13743 19780513 68.8 24 59.2 24 1012.3 24 1009.9 24 8.0 24 13.5 24 17.9 23.9 81.0 57.0 0.04G 999.9 110000 724050 13743 19780514 61.5 24 56.5 24 1003.4 24 1001.1 24 8.8 24 7.1 24 16.9 24.9 73.9 55.9 0.47G 999.9 110000 724050 13743 19780515 61.0 24 55.6 24 1003.3 24 1001.0 24 8.6 24 6.8 24 15.9 999.9 69.1 55.9 1.34G 999.9 110010 724050 13743 19780516 58.3 24 54.6 24 1008.2 24 1005.9 24 6.7 24 9.0 24 15.0 999.9 68.0 55.9 0.79G 999.9 110010 724050 13743 19780517 61.9 24 55.2 24 1013.0 24 1010.6 24 7.3 24 6.4 24 11.8 999.9 71.1 54.9 0.08G 999.9 110000 724050 13743 19780518 65.7 24 56.4 24 1016.9 24 1014.4 24 7.2 24 4.9 24 9.9 999.9 79.0 54.9 0.00G 999.9 110000 724050 13743 19780519 69.7 23 56.1 23 1018.3 23 1015.9 23 10.8 23 7.5 23 12.8 999.9 79.0 55.0 0.02G 999.9 010000 724050 13743 19780520 72.6 21 58.3 21 1016.8 21 1014.4 21 11.8 21 6.5 21 9.9 17.9 86.0* 59.9 0.00G 999.9 000000 724050 13743 19780521 76.0 24 59.9 24 1012.4 24 1010.0 24 10.3 24 10.4 24 16.9 999.9 86.9 60.1* 0.00I 999.9 000000 724050 13743 19780522 67.8 24 45.2 24 1021.6 24 1019.2 24 17.0 24 7.3 24 14.0 999.9 86.0 52.9 0.00I 999.9 000000 724050 13743 19780523 66.7 23 53.7 23 1021.1 23 1018.7 23 18.9 23 6.0 23 9.9 999.9 78.1 53.1 0.00G 999.9 010000 724050 13743 19780524 69.1 23 62.1 23 1013.8 23 1011.4 23 5.7 23 6.8 23 12.8 999.9 79.0 57.9 0.20G 999.9 110000 724050 13743 19780525 73.0 24 58.7 24 1014.3 24 1011.9 24 12.4 24 9.8 24 19.8 999.9 87.1* 61.9 0.12G 999.9 000000 724050 13743 19780526 75.9 24 58.5 24 1018.0 24 1015.6 24 12.9 24 8.8 23 15.9 999.9 88.0 62.1 0.00G 999.9 000000 724050 13743 19780527 72.3 21 62.8 21 1021.4 21 1019.0 21 7.8 21 10.1 21 14.0 999.9 88.0 64.9 0.00G 999.9 000000 724050 13743 19780528 71.0 23 63.0 23 1020.3 23 1017.9 23 6.5 22 7.1 23 11.8 999.9 79.0* 66.9 0.00B 999.9 010000 724050 13743 19780529 72.8 23 64.7 23 1016.7 23 1014.3 23 7.7 23 5.9 23 9.9 999.9 80.1* 66.9 0.00B 999.9 000000 724050 13743 19780530 74.5 23 64.0 23 1013.5 23 1011.1 23 8.9 23 4.1 23 8.9 999.9 86.0* 66.9 0.00I 999.9 100000 724050 13743 19780531 75.1 24 66.6 24 1012.2 24 1009.8 24 7.1 24 6.7 24 12.8 999.9 86.0 66.9 0.00G 999.9 010000 724050 13743 19780601 78.4 23 62.3 23 1013.1 23 1010.7 23 14.2 23 8.1 23 12.8 999.9 89.1* 69.1 0.00G 999.9 000000 724050 13743 19780602 79.2 22 64.5 22 1015.9 22 1013.5 22 12.7 22 6.0 22 10.9 999.9 90.0* 68.9 0.00I 999.9 000000 724050 13743 19780603 75.8 21 65.8 21 1013.6 21 1011.2 21 5.5 21 8.2 20 19.8 28.0 90.0 69.1 0.00G 999.9 010000 724050 13743 19780604 70.5 22 54.4 22 1013.6 22 1011.2 22 11.3 22 11.0 22 15.9 999.9 84.9 61.9 0.08G 999.9 010000 724050 13743 19780605 72.5 19 54.0 19 1013.2 19 1010.8 19 15.3 19 8.4 18 15.9 19.8 87.1 62.1 0.00G 999.9 000000 724050 13743 19780606 72.6 21 54.1 21 1018.3 21 1015.9 21 14.9 21 7.3 21 9.9 999.9 88.0 63.0 0.02G 999.9 000000 724050 13743 19780607 74.3 24 63.9 24 1016.5 24 1014.1 24 8.8 24 9.6 23 14.0 999.9 84.0 63.0 0.00G 999.9 010000 724050 13743 19780608 76.9 18 71.3 18 1011.0 18 1008.6 18 9.1 18 11.5 18 15.0 999.9 81.0 66.9 0.12G 999.9 110000 724050 13743 19780609 78.2 24 66.6 24 1009.9 24 1007.5 24 11.8 24 11.3 24 17.9 23.9 86.0 72.0 0.04G 999.9 010000 724050 13743 19780610 73.5 24 51.1 24 1020.7 24 1018.2 24 17.0 24 7.9 24 14.0 999.9 86.0 59.9 0.00G 999.9 000000 724050 13743 19780611 75.3 24 58.4 24 1022.9 24 1020.5 24 16.6 24 10.9 24 14.0 999.9 84.9* 60.1 0.00G 999.9 000000 724050 13743 19780612 76.6 23 60.5 23 1020.4 23 1018.0 23 12.7 22 10.5 23 14.0 999.9 88.0* 64.0 0.00G 999.9 000000 724050 13743 19780613 74.6 23 61.0 23 1014.0 23 1011.6 23 11.3 23 12.9 23 17.9 26.8 89.1 64.9 0.39G 999.9 110010 724050 13743 19780614 63.4 24 42.3 24 1022.4 24 1020.0 24 17.4 24 14.0 24 18.8 28.9 79.0 54.0 0.00I 999.9 000000 724050 13743 19780615 67.2 24 42.7 24 1025.9 24 1023.5 24 19.9 24 7.6 24 11.8 999.9 78.1* 54.0 0.00G 999.9 000000 724050 13743 19780616 71.6 24 54.1 24 1026.7 24 1024.3 24 14.8 24 5.6 24 9.9 999.9 82.0* 55.9 0.00G 999.9 000000 724050 13743 19780617 73.3 24 61.3 24 1025.4 24 1022.8 24 10.4 24 8.0 24 11.8 999.9 82.9 60.1 0.00G 999.9 010000 724050 13743 19780618 79.5 24 69.4 24 1021.2 24 1018.8 24 5.6 24 7.2 24 12.8 999.9 93.0* 70.0 0.00G 999.9 100000 724050 13743 19780619 83.9 23 69.5 23 1017.1 23 1014.7 23 7.9 23 8.8 23 15.0 999.9 95.0 71.1 0.00G 999.9 010010 724050 13743 19780620 78.3 23 65.8 23 1019.2 23 1016.8 23 13.6 23 7.1 23 9.9 999.9 96.1 68.9 0.12G 999.9 110000 724050 13743 19780621 78.8 23 69.7 23 1016.1 23 1013.7 23 5.7 23 9.0 23 25.8 32.8 88.0 69.1 0.00G 999.9 010010 724050 13743 19780622 75.9 24 66.1 24 1016.3 24 1013.9 24 7.0 24 7.9 24 11.8 999.9 88.0 68.9 0.51G 999.9 110000 724050 13743 19780623 78.1 24 57.5 24 1017.9 24 1015.5 24 12.1 24 7.1 24 11.8 999.9 86.9 68.9 0.00G 999.9 000000 724050 13743 19780624 76.0 24 57.4 24 1018.2 24 1015.8 24 11.5 24 5.6 24 9.9 999.9 84.9* 65.8 0.00G 999.9 000000 724050 13743 19780625 77.4 24 61.3 24 1018.2 24 1015.8 24 7.0 24 5.4 24 11.8 999.9 88.0* 66.0 0.00G 999.9 000000 724050 13743 19780626 78.5 24 67.0 24 1016.1 24 1013.7 24 6.0 24 11.0 24 15.0 999.9 88.0 72.9 0.00I 999.9 000000 724050 13743 19780627 83.1 24 73.4 24 1014.4 24 1012.0 24 10.3 24 6.6 24 12.8 999.9 96.1* 72.9 0.08G 999.9 010010 724050 13743 19780628 80.5 23 68.2 23 1015.2 22 1013.0 23 12.3 23 11.2 23 18.8 26.8 97.0 72.0 0.67G 999.9 110010 724050 13743 19780629 82.5 24 61.0 24 1016.1 24 1013.7 24 14.9 24 9.0 24 24.9 28.0 91.9 70.9 0.12G 999.9 010010 724050 13743 19780630 79.4 23 66.9 23 1014.0 23 1011.6 23 9.4 23 6.8 23 11.8 999.9 91.9 70.9 0.39G 999.9 010010 724050 13743 19780701 79.0 23 53.5 23 1015.7 23 1013.3 23 17.5 23 7.9 23 12.8 999.9 93.0 70.0 0.00G 999.9 000000 724050 13743 19780702 69.9 24 60.0 24 1015.4 24 1013.0 24 10.8 24 6.7 24 8.9 999.9 86.0 63.9 0.08G 999.9 110000 724050 13743 19780703 67.0 23 63.1 23 1011.9 23 1009.5 23 5.6 23 8.0 23 10.9 999.9 75.0 64.0 1.77G 999.9 110000 724050 13743 19780704 68.8 24 62.8 24 1011.5 24 1009.2 24 9.0 24 9.8 24 14.0 22.9 73.9 64.9 0.08G 999.9 110000 724050 13743 19780705 71.2 23 58.4 23 1019.8 23 1017.4 23 14.5 23 7.4 23 14.0 999.9 81.0* 61.9 0.00G 999.9 000000 724050 13743 19780706 73.6 23 59.4 23 1022.5 23 1020.1 23 17.1 23 6.6 23 9.9 17.9 84.0* 62.1 0.00I 999.9 000000 724050 13743 19780707 76.4 24 62.2 24 1022.0 24 1019.6 24 14.5 24 8.6 24 10.9 999.9 86.0* 64.0 0.00G 999.9 000000 724050 13743 19780708 78.4 23 64.4 23 1018.4 23 1016.0 23 13.3 23 8.9 23 15.9 999.9 90.0* 66.0 99.99 999.9 010010 724050 13743 19780709 80.5 24 71.0 24 1015.5 24 1013.1 24 6.3 24 5.7 24 8.9 999.9 91.9* 70.0 0.24G 999.9 110000 724050 13743 19780710 82.9 24 73.3 24 1013.6 24 1011.2 24 4.9 24 7.1 24 15.9 26.8 93.9* 72.0 0.00G 999.9 110010 724050 13743 19780711 75.1 24 60.8 24 1015.8 24 1013.4 24 15.1 24 8.2 24 12.8 19.8 95.0 70.0 0.59G 999.9 010010 724050 13743 19780712 72.1 24 52.2 24 1021.1 24 1018.7 24 20.3 24 6.9 24 12.8 999.9 81.0* 63.0 0.02G 999.9 000000 724050 13743 19780713 73.7 23 59.0 23 1021.2 23 1018.8 23 19.0 23 9.1 23 12.8 999.9 84.0* 62.1 0.00G 999.9 000000 724050 13743 19780714 77.4 24 68.9 23 1016.5 24 1014.1 24 7.7 24 8.7 23 12.8 999.9 84.0 62.1 0.00G 999.9 000000 724050 13743 19780715 79.2 24 72.9 24 1013.0 24 1010.6 24 4.7 24 6.1 24 8.0 999.9 88.0* 72.9 0.00G 999.9 100000 724050 13743 19780716 77.0 24 72.0 23 1010.9 24 1008.5 24 4.8 24 5.5 24 8.9 999.9 89.1 73.0 0.01G 999.9 110000 724050 13743 19780717 77.0 23 68.0 23 1010.9 23 1008.6 23 7.1 23 7.5 23 11.8 999.9 86.0 69.1 0.01G 999.9 010000 724050 13743 19780718 79.9 24 66.1 24 1018.7 24 1016.3 24 8.4 24 5.6 24 9.9 999.9 89.1* 68.9 0.00G 999.9 000000 724050 13743 19780719 81.7 24 73.0 24 1022.9 24 1020.5 24 6.0 24 6.6 24 10.9 999.9 91.0* 69.1 0.00G 999.9 100000 724050 13743 19780720 81.7 24 70.7 24 1022.6 24 1020.2 24 8.7 24 7.3 24 10.9 999.9 91.9 73.0 0.00G 999.9 000000 724050 13743 19780721 82.8 24 72.4 24 1020.0 24 1017.6 24 8.1 24 6.5 24 11.8 999.9 93.9* 73.0 0.00G 999.9 100000 724050 13743 19780722 88.0 23 76.9 22 1018.3 23 1015.9 23 4.7 23 7.2 23 11.8 999.9 97.0 73.9 0.00G 999.9 000000 724050 13743 19780723 90.4 23 76.6 23 1017.5 23 1015.1 23 5.2 23 7.1 23 14.0 999.9 100.0* 78.1 0.00G 999.9 100000 724050 13743 19780724 86.1 24 71.4 24 1019.0 24 1016.6 24 9.0 24 7.8 24 12.8 999.9 93.0* 79.0 0.00G 999.9 000000 724050 13743 19780725 79.4 24 74.4 24 1018.7 24 1016.3 24 6.7 23 7.5 24 15.9 999.9 90.0 75.0* 0.12G 999.9 110000 724050 13743 19780726 77.4 24 70.9 24 1015.9 24 1013.5 24 13.4 24 6.9 23 10.9 999.9 87.1* 72.0 0.00G 999.9 010000 724050 13743 19780727 83.7 24 75.3 24 1011.8 24 1009.4 24 8.2 24 11.2 24 17.9 23.9 96.1* 72.0 0.00G 999.9 000000 724050 13743 19780728 81.4 23 70.5 23 1012.5 23 1010.1 23 10.7 23 9.8 23 15.0 19.8 96.1 73.9 0.16G 999.9 010000 724050 13743 19780729 77.3 23 62.7 23 1014.4 23 1012.0 23 14.0 23 8.5 23 15.0 999.9 91.9 66.0 0.00I 999.9 000000 724050 13743 19780730 80.8 23 71.7 23 1011.6 23 1009.2 23 7.5 23 7.1 23 14.0 999.9 90.0 66.0 0.01G 999.9 110000 724050 13743 19780731 78.5 23 72.9 23 1014.0 23 1011.6 23 5.3 23 6.3 22 12.8 999.9 90.0 72.0 0.91G 999.9 110010 724050 13743 19780801 77.9 24 73.3 24 1016.1 24 1013.7 24 6.4 24 6.0 24 15.0 999.9 88.0 72.0 0.28G 999.9 110010 724050 13743 19780802 79.3 23 75.3 23 1020.0 23 1017.5 23 4.8 23 7.0 23 9.9 999.9 84.9 73.0 0.16G 999.9 110000 724050 13743 19780803 80.4 24 75.5 24 1019.3 24 1016.9 24 11.1 23 10.0 24 15.9 999.9 89.1* 74.8 99.99 999.9 010000 724050 13743 19780804 77.2 23 74.2 23 1019.7 23 1017.3 23 11.0 23 7.4 23 15.9 999.9 89.1 73.9 0.28G 999.9 010000 724050 13743 19780805 78.4 24 72.9 24 1023.4 24 1021.0 24 8.8 24 5.2 24 10.9 999.9 87.1* 73.9 0.47G 999.9 110010 724050 13743 19780806 78.9 24 75.5 24 1023.6 24 1021.1 24 11.8 24 6.7 24 12.8 999.9 87.1 73.9 0.28G 999.9 010010 724050 13743 19780807 82.3 22 75.9 22 1021.8 22 1019.3 22 13.6 22 11.2 22 15.0 19.8 90.0* 75.9 0.00G 999.9 010000 724050 13743 19780808 82.6 24 75.1 24 1021.3 24 1018.9 24 13.5 24 8.7 24 10.9 999.9 90.0 77.0 0.00G 999.9 010000 724050 13743 19780809 82.9 22 71.9 22 1019.6 22 1017.2 22 6.1 22 5.6 22 9.9 999.9 90.0 75.9 0.00G 999.9 100000 724050 13743 19780810 79.4 23 70.8 23 1017.0 23 1014.6 23 10.1 23 7.8 23 15.0 30.9 91.0 72.9 0.31G 999.9 010010 724050 13743 19780811 80.6 23 71.9 23 1016.9 23 1014.5 23 7.7 22 5.4 23 10.9 999.9 89.1 72.9 0.00G 999.9 100000 724050 13743 19780812 78.0 23 72.1 23 1016.6 23 1014.2 23 6.5 23 5.5 23 17.9 29.9 90.0 72.9 0.67G 999.9 110010 724050 13743 19780813 79.1 23 75.0 23 1016.7 23 1014.3 23 6.3 23 4.7 23 15.0 999.9 87.1 73.0 0.04G 999.9 110010 724050 13743 19780814 79.7 22 75.1 22 1019.7 22 1017.3 22 3.7 22 4.4 22 9.9 999.9 88.0 73.9 1.18G 999.9 100000 724050 13743 19780815 82.2 22 76.7 22 1020.2 22 1017.8 22 5.8 22 4.6 22 8.9 999.9 90.0 73.9 0.08G 999.9 100000 724050 13743 19780816 82.9 19 77.3 19 1017.0 19 1014.6 19 5.4 19 7.6 19 10.9 999.9 91.9* 75.9 0.00G 999.9 100000 724050 13743 19780817 84.7 21 75.0 21 1013.6 21 1011.2 21 7.1 21 7.8 21 11.8 999.9 93.0 75.9 0.00G 999.9 000000 724050 13743 19780818 81.6 21 66.6 21 1016.2 21 1013.8 21 13.5 21 7.3 21 11.8 999.9 93.0 73.0 0.00G 999.9 000000 724050 13743 19780819 83.1 23 71.0 23 1016.6 23 1014.2 23 8.3 23 5.7 23 8.9 999.9 91.9* 73.0 0.00G 999.9 000000 724050 13743 19780820 82.4 23 68.4 23 1017.9 23 1015.5 23 13.9 23 10.8 23 15.9 23.9 93.0 73.9 0.00G 999.9 000000 724050 13743 19780821 75.3 23 60.1 23 1022.5 23 1020.1 23 19.8 23 10.0 23 13.0 999.9 84.9 66.0 0.00G 999.9 000000 724050 13743 19780822 75.9 23 61.0 23 1022.9 23 1020.5 23 17.3 23 5.7 23 9.9 999.9 86.0* 64.9 0.00G 999.9 000000 724050 13743 19780823 78.9 23 64.4 23 1021.3 23 1018.9 23 10.8 23 5.0 23 8.0 999.9 89.1 64.9 0.00G 999.9 000000 724050 13743 19780824 81.2 23 66.0 23 1018.9 23 1016.5 23 6.7 23 6.6 23 11.8 999.9 93.0 66.0 0.00G 999.9 000000 724050 13743 19780825 84.0 22 68.0 22 1014.9 22 1012.5 22 5.1 22 7.7 22 10.9 999.9 93.0 70.0 0.00G 999.9 000000 724050 13743 19780826 80.3 23 69.0 23 1016.2 23 1013.8 23 3.3 23 6.4 23 9.9 999.9 93.0 75.0 0.00G 999.9 000000 724050 13743 19780827 79.3 23 70.2 23 1018.1 23 1015.7 23 3.0 23 7.6 23 11.8 999.9 88.0 75.0 0.00G 999.9 000000 724050 13743 19780828 80.7 22 72.0 22 1015.3 22 1012.9 22 3.5 22 9.8 22 15.0 999.9 89.1* 75.9 0.35G 999.9 110000 724050 13743 19780829 84.9 24 72.4 24 1012.3 24 1010.0 24 8.0 24 8.7 24 12.8 999.9 91.9 75.9 0.00G 999.9 100000 724050 13743 19780830 83.1 23 70.9 23 1017.1 23 1014.7 23 8.8 23 5.3 23 8.0 999.9 93.0 75.9 0.01G 999.9 010000 724050 13743 19780831 79.3 22 72.0 22 1016.6 22 1014.2 22 7.1 22 7.1 22 23.9 999.9 90.0 73.9 2.01G 999.9 110010 724050 13743 19780901 75.5 24 70.0 24 1018.7 24 1016.3 24 9.1 23 9.0 24 12.8 999.9 86.0 72.0 0.04G 999.9 100000 724050 13743 19780902 73.8 22 65.8 22 1022.2 22 1019.8 22 7.8 22 4.6 22 8.9 999.9 82.9* 66.0 0.00G 999.9 100000 724050 13743 19780903 76.7 23 65.3 23 1015.5 23 1013.1 23 6.1 23 5.7 23 11.8 999.9 86.0* 66.0 0.00G 999.9 100000 724050 13743 19780904 76.9 23 66.0 23 1013.3 23 1010.9 23 6.4 23 8.2 23 10.9 999.9 87.1 69.1 0.00G 999.9 100000 724050 13743 19780905 75.9 24 62.2 24 1017.0 24 1014.6 24 11.9 24 5.8 24 9.9 999.9 87.1* 64.9 0.00G 999.9 000000 724050 13743 19780906 78.4 24 60.1 24 1017.8 24 1015.4 24 14.8 24 5.3 24 14.0 999.9 89.1* 64.9 0.00G 999.9 000000 724050 13743 19780907 81.5 24 63.0 24 1014.0 24 1011.6 24 8.9 24 8.1 24 14.0 999.9 91.9* 69.1 0.00G 999.9 000000 724050 13743 19780908 81.4 23 66.4 23 1014.2 23 1011.8 23 7.7 23 7.9 23 10.9 999.9 92.8 72.0 0.00G 999.9 000000 724050 13743 19780909 80.3 22 69.5 22 1013.6 22 1011.2 22 4.4 22 7.3 22 11.8 999.9 88.0 75.0 0.00G 999.9 000000 724050 13743 19780910 72.9 21 56.3 21 1021.8 21 1019.4 21 17.8 21 8.1 20 999.9 999.9 86.9 65.8 0.00G 999.9 000000 724050 13743 19780911 77.6 24 66.0 24 1017.8 24 1015.3 24 16.4 24 10.7 22 15.0 999.9 86.0* 66.0 0.00G 999.9 000000 724050 13743 19780912 80.2 22 69.8 22 1012.8 22 1010.5 22 9.0 22 8.5 22 9.9 999.9 89.1 72.0 0.00G 999.9 000000 724050 13743 19780913 70.2 24 60.4 24 1017.8 24 1015.4 24 9.7 24 10.7 24 17.9 999.9 89.1 63.0 0.55G 999.9 010010 724050 13743 19780914 66.2 22 53.1 22 1024.7 22 1022.3 22 17.4 22 7.6 22 999.9 999.9 73.9 61.9 0.00I 999.9 000000 724050 13743 19780915 71.6 23 59.0 23 1019.2 23 1016.8 23 17.1 23 9.8 23 14.0 999.9 81.0* 62.1 0.12G 999.9 010000 724050 13743 19780916 75.8 24 64.6 24 1012.8 24 1010.5 24 9.9 24 6.8 24 16.9 24.9 87.1* 66.0 0.04G 999.9 110010 724050 13743 19780917 76.7 24 65.6 24 1014.2 24 1011.8 24 11.1 24 5.7 23 10.9 999.9 87.1 66.9 0.12G 999.9 010000 724050 13743 19780918 79.7 24 70.8 24 1018.5 24 1016.1 24 4.9 24 6.4 24 10.9 999.9 90.0* 69.1 0.00G 999.9 100000 724050 13743 19780919 82.3 24 71.9 24 1017.5 24 1015.0 24 7.6 24 9.9 24 19.8 22.0 93.9* 72.0 0.02G 999.9 010000 724050 13743 19780920 70.1 23 60.2 23 1021.2 23 1018.8 23 8.8 23 7.0 23 11.8 999.9 78.1* 64.9 0.00I 999.9 000000 724050 13743 19780921 74.9 23 62.4 23 1019.0 23 1016.6 23 5.1 23 6.6 23 9.9 999.9 84.0* 64.9 0.00G 999.9 000000 724050 13743 19780922 77.8 24 68.4 24 1019.4 24 1017.0 24 3.8 24 8.4 24 16.9 999.9 84.9* 68.0 99.99 999.9 010000 724050 13743 19780923 66.2 24 56.9 24 1028.7 24 1026.3 24 13.6 24 11.1 24 15.0 999.9 86.0 63.0 0.24G 999.9 110000 724050 13743 19780924 64.9 24 53.0 24 1026.3 24 1023.9 24 16.2 24 4.5 24 8.9 999.9 72.0 59.0 0.00G 999.9 000000 724050 13743 19780925 68.7 23 53.3 23 1019.0 23 1016.6 23 11.0 23 7.1 23 11.8 999.9 80.1* 59.0 0.00G 999.9 000000 724050 13743 19780926 63.2 23 43.8 23 1024.6 23 1022.2 23 18.3 23 7.7 23 10.9 999.9 81.0 54.9 0.00G 999.9 000000 724050 13743 19780927 63.8 24 50.0 24 1022.8 24 1020.5 23 15.5 24 5.1 24 10.9 999.9 75.0* 54.9 0.00G 999.9 100000 724050 13743 19780928 67.9 24 52.8 24 1016.0 24 1013.5 24 12.1 24 9.4 24 16.9 19.8 77.0 55.0 0.00G 999.9 000000 724050 13743 19780929 60.2 24 38.1 24 1024.1 24 1021.7 24 21.7 24 7.8 24 9.9 999.9 77.0 50.0 0.00G 999.9 000000 724050 13743 19780930 62.5 24 48.0 24 1025.4 24 1023.0 24 19.5 24 5.9 24 9.9 999.9 75.0* 50.0 0.00G 999.9 000000 724050 13743 19781001 68.7 24 55.2 24 1018.1 24 1015.7 24 13.3 24 5.7 24 9.9 999.9 75.0 52.0 0.00G 999.9 010000 724050 13743 19781002 67.9 23 52.6 23 1016.8 23 1014.7 23 12.0 23 10.0 23 14.0 999.9 75.0 61.0 0.00G 999.9 010000 724050 13743 19781003 60.6 24 47.6 24 1018.6 24 1016.2 24 11.6 24 6.8 24 11.8 999.9 73.9 50.0 0.00G 999.9 000000 724050 13743 19781004 64.4 24 54.8 24 1017.0 24 1014.6 24 8.8 24 7.3 24 15.0 999.9 72.0 50.0 0.08G 999.9 010000 724050 13743 19781005 62.2 24 57.0 24 1019.1 24 1016.7 24 3.9 24 5.4 24 9.9 999.9 69.1 59.9 0.20G 999.9 110000 724050 13743 19781006 65.4 23 54.4 23 1011.2 23 1008.8 23 9.4 23 8.3 23 15.0 999.9 72.0* 59.9 0.59G 999.9 110010 724050 13743 19781007 57.5 24 40.4 24 1012.8 24 1010.4 24 20.5 24 9.8 24 17.9 24.9 72.0 48.9 0.02G 999.9 000000 724050 13743 19781008 54.1 24 37.3 24 1019.1 24 1016.7 24 20.7 24 10.3 24 15.9 24.9 63.0 48.9 0.00G 999.9 000000 724050 13743 19781009 51.3 24 31.3 24 1027.1 24 1024.7 24 22.0 24 7.5 24 11.8 999.9 69.1 39.9 0.00G 999.9 000000 724050 13743 19781010 54.7 24 41.1 24 1027.2 24 1024.8 24 18.0 24 5.5 24 8.0 999.9 66.9* 39.9 0.00G 999.9 000000 724050 13743 19781011 60.3 24 46.4 24 1022.2 24 1019.8 24 10.4 24 4.3 24 7.0 999.9 73.9* 45.0 0.00G 999.9 100000 724050 13743 19781012 63.7 23 54.3 23 1016.5 23 1014.1 23 10.5 23 8.0 23 11.8 999.9 78.1* 50.0 0.00G 999.9 100000 724050 13743 19781013 70.7 21 58.4 21 1015.7 21 1013.3 21 12.0 21 10.2 20 15.0 999.9 81.0 54.0 0.00G 999.9 000000 724050 13743 19781014 68.2 22 55.7 22 1011.3 22 1008.9 22 16.2 21 10.9 22 19.8 25.8 82.9 61.9 0.00G 999.9 010000 724050 13743 19781015 53.0 23 35.5 23 1016.7 23 1014.3 23 19.8 23 11.2 23 15.9 999.9 70.0 45.0 0.00G 999.9 000000 724050 13743 19781016 52.5 24 36.5 24 1019.7 24 1017.3 24 13.6 24 6.0 24 9.9 999.9 61.0 45.0 0.00G 999.9 010000 724050 13743 19781017 52.5 24 42.5 24 1026.2 24 1023.8 24 10.1 24 10.9 24 15.0 999.9 61.0 46.0 0.08G 999.9 110000 724050 13743 19781018 53.0 24 40.7 24 1029.1 24 1026.7 24 11.6 24 6.6 24 14.0 999.9 64.0* 41.0 0.00G 999.9 100000 724050 13743 19781019 57.2 24 47.3 24 1018.9 24 1016.5 24 11.1 24 7.0 24 12.8 999.9 64.9 41.0 0.04G 999.9 010000 724050 13743 19781020 60.6 23 42.5 23 1015.0 23 1012.6 23 13.4 23 9.4 23 15.9 999.9 66.9* 52.0 0.04G 999.9 000000 724050 13743 19781021 57.3 23 44.4 23 1021.3 23 1018.8 23 13.3 23 5.4 22 11.8 999.9 73.0* 45.0 0.00G 999.9 000000 724050 13743 19781022 60.9 24 48.2 24 1021.6 24 1019.1 24 10.8 24 5.8 24 8.0 999.9 79.0* 45.0 0.00G 999.9 000000 724050 13743 19781023 65.2 24 51.6 24 1016.5 24 1014.1 24 9.6 24 5.9 24 12.8 999.9 84.0 48.0 0.00I 999.9 100000 724050 13743 19781024 54.4 24 34.5 24 1020.1 24 1017.7 24 20.0 24 12.3 24 21.0 28.0 77.0* 43.0 0.04G 999.9 010000 724050 13743 19781025 52.4 24 37.3 24 1019.2 24 1016.8 24 20.1 24 9.4 24 14.0 999.9 68.0* 39.9 0.00G 999.9 000000 724050 13743 19781026 67.6 22 45.6 22 1012.8 22 1010.4 22 13.2 22 12.0 22 17.9 999.9 82.0* 61.0* 0.00G 999.9 000000 724050 13743 19781027 64.1 23 44.5 23 1015.5 23 1013.1 23 15.5 23 11.1 23 16.9 23.9 82.0 54.9 0.12G 999.9 010000 724050 13743 19781028 53.8 23 38.1 23 1023.1 23 1020.6 23 17.2 23 4.8 23 8.9 999.9 68.0* 43.0 0.02G 999.9 000000 724050 13743 19781029 55.6 24 40.2 24 1026.2 24 1023.8 24 13.5 24 5.4 24 10.9 999.9 68.0 43.0 0.00G 999.9 000000 724050 13743 19781030 53.9 21 37.3 21 1033.7 21 1031.3 21 14.9 21 8.7 21 10.9 999.9 66.9 43.9 0.00I 999.9 000000 724050 13743 19781031 56.7 23 43.5 23 1030.5 23 1028.1 23 12.9 23 5.1 23 8.0 999.9 64.0* 44.1 0.00G 999.9 000000 724050 13743 19781101 56.9 23 42.1 23 1022.6 23 1020.2 23 9.0 23 5.4 23 11.8 999.9 70.0* 45.9 0.00G 999.9 000000 724050 13743 19781102 55.4 24 31.9 24 1024.2 24 1021.9 24 14.2 24 4.2 24 9.9 999.9 71.1* 41.9 0.00G 999.9 000000 724050 13743 19781103 57.1 24 35.7 24 1023.3 24 1020.8 24 15.6 23 4.5 24 8.0 999.9 71.1* 42.1 0.00G 999.9 000000 724050 13743 19781104 56.3 24 47.1 24 1019.8 24 1017.4 24 8.4 24 6.8 24 10.9 999.9 72.0 45.0 0.00G 999.9 110000 724050 13743 19781105 59.5 23 41.8 23 1017.2 23 1014.8 23 9.1 23 4.5 23 8.9 999.9 73.9* 48.9 0.02G 999.9 000000 724050 13743 19781106 57.6 23 44.4 23 1019.1 23 1016.7 23 5.6 23 5.1 23 10.9 999.9 75.0* 45.0 0.00G 999.9 100000 724050 13743 19781107 60.4 24 46.4 23 1014.9 24 1012.5 24 7.3 24 7.0 24 11.8 999.9 75.9 45.0 0.00G 999.9 000000 724050 13743 19781108 55.8 24 43.0 24 1017.1 24 1014.7 24 8.9 24 10.3 24 14.0 999.9 72.0 50.0 0.00G 999.9 010000 724050 13743 19781109 50.5 24 37.9 24 1019.5 24 1017.1 24 13.8 24 5.4 24 9.9 999.9 64.0* 38.8 0.00G 999.9 100000 724050 13743 19781110 54.0 24 44.2 24 1021.9 24 1019.5 24 6.1 24 4.5 24 7.0 999.9 64.9 39.0 0.00G 999.9 100000 724050 13743 19781111 59.6 23 53.4 23 1025.0 23 1022.6 23 3.2 23 3.6 23 8.9 999.9 66.0 44.1 0.04G 999.9 110000 724050 13743 19781112 55.5 22 49.8 22 1024.7 22 1022.3 22 3.2 22 4.3 22 10.9 999.9 66.0 50.0 0.00I 999.9 100000 724050 13743 19781113 53.5 24 48.0 24 1028.2 24 1025.8 24 5.4 24 7.1 24 9.9 999.9 66.0 50.0 0.00G 999.9 110000 724050 13743 19781114 59.6 24 48.7 24 1025.1 24 1022.8 24 11.4 24 10.3 23 15.9 999.9 69.1* 50.0 0.00G 999.9 000000 724050 13743 19781115 61.3 24 50.6 24 1023.7 24 1021.3 24 8.7 24 6.7 24 9.9 999.9 69.1 53.1 0.00G 999.9 010000 724050 13743 19781116 50.3 23 45.2 23 1027.9 23 1025.5 23 5.9 23 9.4 23 12.8 999.9 64.9 47.8 0.12G 999.9 110000 724050 13743 19781117 52.8 23 47.7 23 1028.0 23 1025.5 23 4.1 23 7.6 23 10.9 999.9 61.0* 47.8 0.16G 999.9 110000 724050 13743 19781118 60.9 21 50.3 21 1019.1 21 1016.7 21 11.8 21 10.0 21 15.9 22.0 68.0 48.0 0.31G 999.9 110000 724050 13743 19781119 50.1 24 34.8 24 1028.1 24 1025.7 24 14.9 24 8.0 24 14.0 999.9 68.0 39.9 0.08G 999.9 000000 724050 13743 19781120 47.6 24 33.1 24 1033.0 24 1030.6 24 11.5 24 5.2 24 9.9 999.9 57.0 38.8 0.00G 999.9 000000 724050 13743 19781121 47.2 24 35.4 24 1030.9 24 1028.5 24 7.1 24 6.0 24 8.0 999.9 55.0 39.0 0.00G 999.9 000000 724050 13743 19781122 46.5 24 35.3 24 1029.1 24 1026.7 24 7.7 24 8.4 24 11.8 999.9 55.0 41.0 0.00G 999.9 000000 724050 13743 19781123 47.2 24 38.4 24 1025.0 24 1022.6 24 7.3 24 6.8 24 8.9 999.9 52.0 43.0 0.00G 999.9 110000 724050 13743 19781124 52.7 24 42.1 24 1009.8 24 1007.5 24 8.2 24 11.7 24 22.9 28.0 61.0 44.1 0.12G 999.9 110000 724050 13743 19781125 44.9 23 25.9 23 1016.5 23 1014.1 23 18.8 23 11.6 23 16.9 23.9 61.0 43.0 0.00G 999.9 000000 724050 13743 19781126 43.4 23 20.8 23 1020.5 23 1018.1 23 17.3 23 8.8 23 11.8 999.9 46.9* 39.9 0.00G 999.9 000000 724050 13743 19781127 36.2 24 24.5 24 1020.3 24 1018.0 24 5.4 24 8.1 24 12.8 999.9 48.0 34.0 0.87G 0.8 111000 724050 13743 19781128 40.3 21 33.9 21 1013.8 21 1011.4 21 4.9 21 4.9 21 11.8 999.9 48.9* 34.0 0.01G 0.8 110000 724050 13743 19781129 42.2 23 26.1 23 1025.3 23 1022.9 23 14.5 23 7.2 23 999.9 999.9 50.0 34.0 0.00G 999.9 010000 724050 13743 19781130 44.4 24 41.9 24 1015.1 24 1012.7 24 5.5 24 5.3 24 10.9 999.9 53.1* 34.0 0.47G 999.9 110000 724050 13743 19781201 46.0 24 29.8 24 1019.1 24 1016.7 24 14.5 24 6.6 24 9.9 999.9 55.0 37.9 0.00G 999.9 000000 724050 13743 19781202 43.8 23 33.4 23 1020.8 23 1018.4 23 15.6 23 6.1 23 8.9 999.9 57.0* 34.9 0.00G 999.9 000000 724050 13743 19781203 48.4 20 39.9 20 1024.0 20 1021.6 20 13.2 20 7.3 20 9.9 999.9 57.0 35.1 0.00G 999.9 010000 724050 13743 19781204 58.8 21 54.5 21 1007.3 21 1004.9 21 6.6 21 13.1 21 20.0 30.9 73.0* 43.0 0.47G 999.9 110000 724050 13743 19781205 50.7 24 40.2 24 1006.4 24 1004.1 24 11.6 24 5.5 24 14.0 999.9 73.0 47.8 0.83G 999.9 110000 724050 13743 19781206 47.1 24 40.0 24 1016.6 24 1014.2 24 14.7 24 5.1 24 8.0 999.9 59.0* 38.8 0.28G 999.9 100000 724050 13743 19781207 48.1 24 40.5 24 1025.7 24 1023.2 24 9.4 24 4.7 24 7.0 999.9 59.0 38.8 0.00G 999.9 010000 724050 13743 19781208 60.0 24 53.2 24 1018.0 24 1015.6 24 8.9 24 8.4 24 19.8 25.8 73.0* 39.0 0.12G 999.9 010000 724050 13743 19781209 60.2 24 55.1 24 1004.3 24 1001.9 24 8.6 24 10.8 24 19.8 31.9 73.9 43.0* 0.39G 999.9 110000 724050 13743 19781210 33.6 24 16.5 24 1019.4 24 1017.0 24 18.6 24 15.2 24 19.8 28.9 41.0* 29.8 0.47G 999.9 010000 724050 13743 19781211 30.0 24 13.0 23 1033.0 24 1030.6 24 17.8 24 7.7 24 11.8 999.9 37.0 23.0 0.00G 999.9 000000 724050 13743 19781212 37.2 24 22.2 24 1029.6 24 1027.1 24 13.9 24 4.8 24 8.9 999.9 48.0* 23.0 0.00G 999.9 000000 724050 13743 19781213 43.2 23 25.1 23 1020.8 23 1018.5 23 14.3 23 6.5 23 14.0 999.9 60.1* 28.9 0.00G 999.9 000000 724050 13743 19781214 41.8 24 17.0 24 1020.3 24 1017.9 24 19.5 24 15.8 24 24.9 35.9 60.1 30.9 0.00G 999.9 000000 724050 13743 19781215 40.4 24 17.7 24 1020.2 24 1017.8 24 19.1 24 10.3 24 17.9 23.9 57.9* 30.9 0.00G 999.9 000000 724050 13743 19781216 45.7 24 22.4 24 1020.3 24 1017.7 24 16.6 24 7.6 24 15.0 999.9 59.0 32.0 0.00G 999.9 000000 724050 13743 19781217 47.2 24 22.3 24 1015.0 24 1012.6 24 17.2 24 18.3 24 34.0 43.9 59.0 35.1 0.00G 999.9 010000 724050 13743 19781218 43.4 24 14.9 24 1018.5 24 1016.1 24 23.0 24 13.1 24 19.8 31.9 54.0* 36.0 0.00G 999.9 000000 724050 13743 19781219 42.9 24 18.0 24 1015.5 24 1013.1 24 17.6 24 8.8 24 14.0 999.9 55.9 36.0 0.00G 999.9 000000 724050 13743 19781220 38.1 24 19.0 24 1013.8 24 1011.4 24 11.3 24 6.8 24 9.9 999.9 46.0 34.9 0.02G 999.9 111000 724050 13743 19781221 48.9 24 40.0 24 997.5 24 995.1 24 9.5 24 13.5 24 23.9 35.0 55.0 35.1 0.39G 999.9 110000 724050 13743 19781222 39.9 23 21.3 23 1015.8 23 1013.4 23 19.5 23 10.0 23 22.0 32.8 55.0 32.0 0.04G 999.9 000000 724050 13743 19781223 40.3 24 25.1 24 1019.8 24 1017.4 24 14.7 24 5.6 24 10.9 999.9 53.1* 30.9 0.00G 999.9 000000 724050 13743 19781224 39.0 24 26.4 24 1016.9 24 1014.6 24 12.1 24 6.8 24 12.8 999.9 53.1 30.9 0.00G 999.9 110000 724050 13743 19781225 43.6 23 32.8 23 998.7 23 996.4 23 16.6 23 14.6 23 26.8 42.0 48.9 34.0 0.94G 999.9 110000 724050 13743 19781226 39.3 24 23.7 24 1015.6 24 1013.2 24 20.7 24 6.9 24 14.0 999.9 48.9 30.9 0.28G 999.9 000000 724050 13743 19781227 37.4 23 17.4 23 1021.3 23 1018.9 23 19.2 23 13.6 23 16.9 22.9 48.0 29.8 0.00G 999.9 000000 724050 13743 19781228 29.9 22 12.1 22 1030.8 22 1028.4 22 19.9 22 10.3 22 14.0 999.9 41.0 25.0 0.00G 999.9 000000 724050 13743 19781229 30.3 24 13.6 24 1035.1 24 1032.6 24 14.9 24 7.4 23 14.0 999.9 37.9* 21.9 0.00G 999.9 000000 724050 13743 19781230 33.9 22 21.2 22 1035.1 22 1032.7 22 14.7 22 4.0 22 8.0 999.9 42.1* 21.9 0.00G 999.9 000000 724050 13743 19781231 39.2 23 33.3 23 1032.1 23 1029.7 23 7.2 23 5.0 23 8.0 999.9 44.1* 28.0 0.20G 999.9 110000 fluids-1.0.22/tests/gsod/1973/0000755000175000017500000000000014302004506015103 5ustar nileshnileshfluids-1.0.22/tests/gsod/1973/724050-13743.op0000644000175000017500000014305714302004506016675 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19730101 60.5 24 47.7 24 1017.4 24 1015.1 24 13.9 24 7.4 24 13.0 999.9 64.4* 55.4* 0.00G 999.9 010000 724050 13743 19730102 45.9 24 21.0 24 1023.4 24 1021.1 24 14.3 24 8.0 24 15.9 999.9 55.4* 39.2* 0.00I 999.9 000000 724050 13743 19730103 36.0 24 21.3 24 1032.6 24 1030.2 24 10.8 24 4.6 24 8.0 999.9 39.2* 32.0* 99.99 999.9 010000 724050 13743 19730104 39.3 24 34.6 24 1017.6 24 1015.2 24 9.1 24 5.2 24 14.0 23.9 48.2* 35.6* 0.43G 999.9 010000 724050 13743 19730105 44.9 24 31.5 24 1016.2 24 1013.8 24 14.0 24 8.5 24 14.0 18.8 48.2* 41.0* 0.24G 999.9 000000 724050 13743 19730106 35.5 24 16.7 24 1020.1 24 1017.7 24 11.4 24 11.1 24 15.9 999.9 42.8* 28.4* 0.00G 999.9 000000 724050 13743 19730107 24.0 24 4.7 24 1029.9 24 1027.4 24 14.3 24 12.4 24 15.0 21.0 28.4* 19.4* 1.06G 999.9 000000 724050 13743 19730108 22.3 24 0.9 24 1030.5 24 1028.0 24 12.1 24 8.8 24 11.8 999.9 24.8* 19.4* 99.99 999.9 001000 724050 13743 19730109 23.5 24 3.2 24 1026.1 24 1023.8 24 13.3 24 8.5 24 10.9 999.9 32.0* 17.6* 0.00A 999.9 000000 724050 13743 19730110 27.1 22 7.9 22 1025.4 21 1022.9 21 13.9 22 6.7 22 10.9 999.9 35.6* 17.6* 0.00A 999.9 000000 724050 13743 19730111 32.9 15 8.0 14 1018.2 15 1015.8 15 15.7 15 6.0 15 8.9 999.9 39.9* 21.2* 1.57G 999.9 000000 724050 13743 19730112 27.9 24 5.7 24 1022.3 24 1019.8 23 13.8 24 10.3 24 16.9 999.9 35.6* 19.4* 1.26G 999.9 000000 724050 13743 19730113 28.4 24 10.3 24 1029.2 24 1026.7 24 12.0 24 4.8 24 8.0 999.9 36.9* 21.0* 1.34G 999.9 000000 724050 13743 19730114 29.7 24 18.0 23 1023.8 24 1021.3 24 10.4 24 4.4 24 8.0 999.9 41.0* 21.2* 0.00G 999.9 000000 724050 13743 19730115 38.0 24 26.6 24 1014.5 24 1012.1 24 10.1 24 5.4 24 11.8 999.9 45.9* 31.1* 99.99 999.9 010000 724050 13743 19730116 39.6 23 28.6 23 1026.0 23 1023.6 23 10.1 23 6.2 23 9.9 999.9 52.9* 31.1* 0.00G 999.9 000000 724050 13743 19730117 41.1 24 28.3 24 1024.7 24 1022.3 24 10.4 24 5.1 24 8.0 999.9 59.0* 30.2* 2.09G 999.9 000000 724050 13743 19730118 42.7 24 32.8 24 1023.3 24 1021.0 24 9.8 24 4.7 24 8.0 999.9 59.9* 32.0* 0.00G 999.9 000000 724050 13743 19730119 50.3 24 42.3 24 1011.0 24 1008.7 24 10.1 24 6.8 24 15.0 21.0 63.0 30.9 99.99 999.9 010000 724050 13743 19730120 44.5 23 30.1 23 1008.3 23 1006.0 23 14.8 23 12.7 23 18.8 28.9 55.4* 37.9* 0.24G 999.9 000000 724050 13743 19730121 34.7 23 16.4 23 1023.1 23 1020.7 23 13.3 23 7.6 23 14.0 999.9 47.8* 24.8* 0.00G 999.9 000000 724050 13743 19730122 45.0 24 37.6 24 1015.9 24 1013.5 24 8.2 24 7.0 24 14.0 23.9 59.9* 34.9* 0.16G 999.9 010000 724050 13743 19730123 51.9 22 38.8 22 1006.6 22 1004.2 22 12.5 22 8.4 22 11.8 999.9 57.2* 46.4* 0.20G 999.9 000000 724050 13743 19730124 42.8 24 23.2 23 1013.6 24 1011.3 24 14.3 24 11.5 24 16.9 26.8 48.2* 38.8* 1.77G 999.9 000000 724050 13743 19730125 36.8 23 20.8 23 1020.2 23 1017.8 23 13.4 23 6.1 23 10.9 999.9 54.9* 26.1* 0.00G 999.9 000000 724050 13743 19730126 46.3 23 30.3 23 1019.8 23 1017.6 22 10.5 23 4.7 23 8.0 999.9 61.9* 35.6* 4.33B 999.9 000000 724050 13743 19730127 45.1 23 38.0 23 1014.2 22 1011.9 22 6.8 23 5.7 23 9.9 999.9 47.8* 42.8* 0.39G 999.9 110000 724050 13743 19730128 45.8 24 41.6 24 1010.6 24 1008.3 24 5.7 24 5.4 24 12.8 999.9 50.0* 43.0* 0.24G 999.9 110000 724050 13743 19730129 40.4 24 31.3 24 1002.7 24 1000.4 24 10.6 24 12.8 24 25.8 34.0 46.4* 30.0* 0.71G 999.9 110000 724050 13743 19730130 26.3 23 8.9 23 1021.7 23 1019.3 23 15.7 23 10.6 23 17.9 999.9 34.9* 17.6* 0.12G 999.9 000000 724050 13743 19730131 32.3 23 16.9 23 1027.1 23 1024.7 23 10.8 23 4.6 23 9.9 999.9 52.9 19.9 0.00G 999.9 000000 724050 13743 19730201 35.1 23 26.3 23 1034.1 23 1031.7 23 10.0 22 8.1 23 10.9 999.9 38.8* 30.2* 99.99 999.9 110000 724050 13743 19730202 56.1 13 53.5 12 1008.0 13 1005.7 13 8.1 13 8.9 13 18.8 21.0 61.9* 42.8* 0.04G 999.9 010000 724050 13743 19730203 49.9 23 39.4 23 1002.0 23 999.7 23 13.9 23 9.5 23 19.8 25.8 60.8* 42.8* 0.04G 999.9 000000 724050 13743 19730204 44.3 23 27.5 23 1016.6 23 1014.3 23 13.1 23 9.6 23 16.9 23.9 54.0* 37.4* 0.00G 999.9 000000 724050 13743 19730205 45.9 24 32.5 24 1021.2 24 1018.9 24 12.2 24 5.0 24 9.9 999.9 56.8* 38.8* 0.00I 999.9 000000 724050 13743 19730206 44.8 24 34.0 24 1025.2 24 1022.8 24 9.6 24 9.7 24 14.0 999.9 50.0* 41.9* 99.99 999.9 110000 724050 13743 19730207 42.9 23 36.1 23 1023.2 23 1020.9 23 8.1 23 9.4 23 12.8 26.8 52.9* 37.9* 0.51G 999.9 110000 724050 13743 19730208 42.6 22 37.4 22 1016.0 22 1013.6 22 6.2 22 6.8 22 16.9 999.9 48.2* 38.8* 0.08G 999.9 110000 724050 13743 19730209 32.2 23 18.2 23 1018.9 23 1016.5 23 15.4 23 14.2 23 22.9 28.0 44.6* 24.8* 0.12G 999.9 000000 724050 13743 19730210 27.1 24 10.2 24 1024.3 24 1021.9 24 15.5 24 12.2 24 17.9 21.0 30.0* 24.1* 0.00G 999.9 000000 724050 13743 19730211 26.6 24 5.6 23 1026.3 24 1023.9 24 15.5 24 15.5 24 18.8 25.8 32.0* 17.6* 0.00I 999.9 000000 724050 13743 19730212 25.5 24 -0.1 24 1029.6 24 1027.1 24 15.5 24 8.4 24 12.8 22.0 39.9* 14.0* 0.00I 999.9 000000 724050 13743 19730213 30.2 24 10.5 24 1028.5 24 1026.0 24 10.1 24 3.4 24 7.0 999.9 45.0* 17.6* 0.00I 999.9 000000 724050 13743 19730214 33.2 23 21.6 23 1024.3 23 1021.9 23 8.3 23 3.6 23 8.9 999.9 37.4* 28.0* 0.00G 999.9 010000 724050 13743 19730215 38.9 23 35.4 23 1008.7 23 1006.4 23 3.7 23 4.6 23 7.0 999.9 46.9* 35.6* 0.39G 999.9 110000 724050 13743 19730216 35.5 24 22.7 24 1009.9 24 1007.5 24 14.5 24 14.7 24 21.0 28.9 46.9* 25.2* 0.00G 999.9 010000 724050 13743 19730217 18.7 24 -3.3 24 1023.8 24 1021.3 24 15.3 24 16.0 24 22.9 32.8 29.1* 9.1* 0.98G 999.9 001000 724050 13743 19730218 24.3 24 0.6 24 1029.0 24 1026.5 24 15.5 24 6.4 24 13.0 999.9 36.0* 15.8* 1.14G 999.9 000000 724050 13743 19730219 31.2 24 16.3 24 1025.7 24 1023.3 24 14.7 24 4.2 24 5.8 999.9 47.8* 20.1* 0.00G 999.9 000000 724050 13743 19730220 39.4 24 24.4 24 1022.2 24 1019.9 24 15.2 24 4.7 24 7.0 999.9 54.0* 29.1* 0.00I 999.9 000000 724050 13743 19730221 44.7 24 29.9 24 1019.2 24 1016.9 24 14.1 24 6.6 24 12.8 999.9 50.9* 37.4* 0.00I 999.9 000000 724050 13743 19730222 36.1 23 21.0 23 1010.3 23 1008.0 23 13.1 23 14.0 23 21.0 23.9 45.0* 28.0* 0.04G 999.9 010000 724050 13743 19730223 33.9 22 18.9 22 1010.4 22 1008.0 22 11.4 22 8.8 22 14.0 999.9 43.0* 29.1* 0.00H 999.9 001000 724050 13743 19730224 38.6 23 22.2 23 1019.1 23 1016.8 23 11.5 23 7.3 23 12.8 25.8 46.9* 27.9 0.00I 999.9 000000 724050 13743 19730225 38.1 23 22.7 23 1030.3 23 1027.9 23 11.0 23 5.0 23 9.9 999.9 50.0* 29.1* 0.00I 999.9 000000 724050 13743 19730226 45.1 24 30.9 24 1026.2 24 1023.8 24 9.8 24 5.6 24 11.8 999.9 53.6* 38.8* 0.00I 999.9 000000 724050 13743 19730227 39.1 24 25.7 24 1026.0 24 1023.6 24 14.5 24 12.1 24 15.9 999.9 48.2* 36.0* 2.13A 999.9 000000 724050 13743 19730228 37.6 23 16.4 23 1028.4 23 1026.0 23 11.6 23 6.0 23 8.9 999.9 50.0* 28.4* 0.00I 999.9 000000 724050 13743 19730301 42.8 24 24.6 24 1030.4 24 1028.0 24 10.4 24 7.4 24 14.0 16.9 59.0* 31.1* 0.00I 999.9 000000 724050 13743 19730302 49.0 24 33.3 24 1028.1 24 1025.7 24 10.9 24 5.0 24 7.0 999.9 65.8* 35.6* 0.00I 999.9 000000 724050 13743 19730303 51.2 24 43.3 24 1027.1 24 1024.7 24 7.2 24 5.0 24 8.0 999.9 56.8* 46.4* 0.08G 999.9 110000 724050 13743 19730304 51.6 24 48.4 24 1021.7 24 1019.3 24 4.0 24 4.3 24 7.0 999.9 56.8* 47.8* 0.35G 999.9 110000 724050 13743 19730305 52.2 24 47.8 24 1023.4 24 1021.1 24 4.3 24 6.5 24 11.8 999.9 54.9* 48.9* 0.12G 999.9 110000 724050 13743 19730306 45.7 24 42.8 23 1029.3 24 1026.9 24 2.6 24 9.0 23 10.9 999.9 48.9* 43.9* 0.24G 999.9 110000 724050 13743 19730307 46.4 23 43.3 23 1027.1 23 1024.8 23 3.3 23 7.5 23 11.8 999.9 50.0* 44.6* 0.04G 999.9 110000 724050 13743 19730308 53.1 24 49.1 24 1022.4 24 1020.1 24 5.5 24 3.4 24 7.0 999.9 63.9* 48.2* 0.31G 999.9 110000 724050 13743 19730309 55.8 22 47.5 22 1025.5 22 1023.2 22 8.3 22 6.3 22 14.0 999.9 66.9* 45.9* 0.28G 999.9 110010 724050 13743 19730310 52.3 24 40.6 24 1028.0 24 1025.7 24 10.9 24 7.1 24 13.0 999.9 61.9* 43.9* 0.00G 999.9 000000 724050 13743 19730311 50.1 24 46.5 24 1023.5 24 1021.2 24 4.8 24 5.3 24 8.0 999.9 55.4* 46.4* 0.08G 999.9 110000 724050 13743 19730312 61.6 23 51.6 23 1011.7 23 1009.4 23 13.0 23 13.1 23 23.9 29.9 72.9* 53.6* 0.00G 999.9 110000 724050 13743 19730313 56.2 24 39.9 24 1018.9 23 1016.6 23 13.6 24 7.6 24 15.0 999.9 71.6* 46.4* 0.00G 999.9 000000 724050 13743 19730314 56.2 24 44.6 24 1015.4 24 1013.2 24 8.3 24 4.2 24 11.8 999.9 70.9* 47.8* 0.00I 999.9 000000 724050 13743 19730315 56.0 21 47.3 21 1012.6 21 1010.3 21 6.2 21 6.7 21 11.8 999.9 66.9* 48.2* 0.00G 999.9 010010 724050 13743 19730316 66.6 24 55.6 24 1009.2 24 1007.0 24 15.3 24 6.7 24 11.8 999.9 71.6* 62.6* 0.00G 999.9 010000 724050 13743 19730317 63.5 24 53.5 24 990.8 24 988.5 24 11.9 24 16.4 24 31.9 49.9 70.9* 50.0* 0.28G 999.9 010010 724050 13743 19730318 41.6 24 24.1 24 995.3 24 993.0 24 15.4 24 17.7 24 24.9 36.9 48.2* 34.9* 0.04G 999.9 001000 724050 13743 19730319 42.5 24 22.8 24 1007.9 24 1005.6 24 15.4 24 15.4 24 22.0 31.9 52.0* 37.9* 0.00G 999.9 000000 724050 13743 19730320 43.7 21 24.4 21 1013.7 21 1011.3 21 13.6 21 7.0 21 11.8 999.9 54.9* 36.0* 4.13B 999.9 000000 724050 13743 19730321 42.6 24 31.4 24 1012.9 24 1010.5 24 8.7 24 10.4 24 17.9 999.9 52.0* 34.9* 99.99 999.9 011000 724050 13743 19730322 40.1 24 28.6 24 1015.8 24 1013.4 24 11.0 24 12.5 24 17.9 24.9 45.9* 36.0* 0.04G 999.9 111000 724050 13743 19730323 44.2 23 22.0 23 1022.0 23 1019.6 23 14.7 23 13.6 23 15.9 24.9 56.8* 33.8* 0.00G 999.9 000000 724050 13743 19730324 46.9 21 21.9 21 1024.1 21 1021.7 21 15.6 21 6.5 21 9.9 999.9 61.0* 34.0* 0.00I 999.9 000000 724050 13743 19730325 48.8 23 32.5 23 1016.4 23 1014.0 23 12.8 23 5.9 23 9.9 999.9 57.9* 39.9* 99.99 999.9 010000 724050 13743 19730326 54.3 24 48.6 24 1000.4 24 998.1 24 5.2 24 6.2 24 10.9 999.9 59.9* 50.0* 0.67G 999.9 110000 724050 13743 19730327 55.3 24 42.0 24 1006.8 24 1004.4 24 12.5 24 11.6 24 16.9 22.0 63.0* 50.0* 0.00G 999.9 010000 724050 13743 19730328 48.9 24 30.8 24 1023.8 24 1021.5 24 15.2 24 6.0 24 11.8 999.9 57.9* 38.8* 0.00G 999.9 000000 724050 13743 19730329 46.8 21 35.0 21 1025.1 21 1022.7 21 9.7 21 4.7 21 9.9 999.9 57.9* 38.8* 0.00I 999.9 000000 724050 13743 19730330 53.4 24 46.6 24 1021.5 24 1019.2 24 6.5 24 4.1 24 7.0 999.9 61.9* 48.9* 0.20G 999.9 110000 724050 13743 19730331 53.7 24 50.2 24 1020.4 24 1018.1 24 3.5 24 5.6 24 8.9 999.9 59.0* 50.0* 99.99 999.9 110000 724050 13743 19730401 59.5 24 56.3 23 1008.0 23 1005.6 23 6.2 24 4.7 24 14.0 18.8 64.9* 55.4* 0.47G 999.9 110010 724050 13743 19730402 58.6 24 47.6 24 999.3 24 996.9 24 14.3 24 10.1 24 17.9 28.0 63.0* 53.6* 0.43G 999.9 010010 724050 13743 19730403 56.9 24 40.4 24 1005.7 24 1003.3 24 12.9 24 6.3 24 14.0 999.9 64.9* 50.9* 0.16G 999.9 000000 724050 13743 19730404 53.5 22 43.0 22 1001.3 22 998.9 22 7.9 22 7.9 22 14.0 19.8 57.2* 50.0* 0.79G 999.9 110010 724050 13743 19730405 50.7 24 35.2 24 1003.2 24 1000.8 24 15.6 24 11.9 24 17.9 28.0 54.0* 45.0* 0.04G 999.9 000000 724050 13743 19730406 52.1 24 32.6 24 1015.3 24 1012.9 24 14.7 24 9.9 24 19.8 22.9 66.9* 41.0* 0.00G 999.9 000000 724050 13743 19730407 55.6 24 38.9 24 1012.5 24 1010.1 24 9.2 24 5.1 24 9.9 999.9 66.2* 43.9* 99.99 999.9 010000 724050 13743 19730408 49.8 24 43.9 23 1004.3 24 1001.9 24 7.0 24 11.4 23 15.9 22.9 59.0* 46.4* 0.55G 999.9 110000 724050 13743 19730409 48.3 24 37.2 24 1016.6 24 1014.2 24 12.2 24 6.2 24 16.9 999.9 60.8* 37.9* 0.28G 999.9 000000 724050 13743 19730410 49.0 23 36.4 23 1004.8 23 1002.4 23 14.1 23 12.0 23 23.9 44.9 55.4* 43.0* 0.20G 999.9 010000 724050 13743 19730411 42.4 24 23.7 24 1011.7 24 1009.2 24 15.8 24 12.8 24 19.8 29.9 48.9* 38.8* 0.00A 999.9 000000 724050 13743 19730412 38.9 23 24.6 23 1014.9 23 1012.5 23 11.8 23 7.1 23 15.9 22.0 45.0* 32.9* 0.08G 999.9 011000 724050 13743 19730413 41.0 23 26.7 23 1020.7 23 1018.3 22 15.7 23 10.6 23 17.9 23.9 54.0* 32.9* 0.00G 999.9 000000 724050 13743 19730414 45.9 24 24.3 24 1027.9 24 1025.4 24 16.1 24 5.9 24 11.8 999.9 57.9* 34.0* 0.00I 999.9 000000 724050 13743 19730415 50.0 24 33.4 24 1031.6 24 1029.1 24 12.3 24 5.0 24 8.0 999.9 65.8* 36.0* 0.00I 999.9 000000 724050 13743 19730416 57.5 23 36.0 23 1029.7 23 1027.2 23 12.8 23 9.6 23 17.9 23.9 75.9* 43.0* 0.00I 999.9 000000 724050 13743 19730417 62.4 21 46.9 21 1024.9 21 1022.6 21 13.2 21 7.3 21 11.8 999.9 70.0* 57.2* 0.00I 999.9 000000 724050 13743 19730418 65.1 21 53.4 21 1024.6 21 1022.3 21 12.3 21 5.5 21 13.0 999.9 74.8* 57.9* 0.00G 999.9 010000 724050 13743 19730419 67.2 23 54.3 23 1023.6 23 1021.2 23 13.8 23 5.2 23 8.9 999.9 75.9* 59.0* 0.00G 999.9 000000 724050 13743 19730420 66.7 23 54.8 23 1025.8 23 1023.4 23 11.9 23 6.3 23 15.0 999.9 73.9* 61.0* 0.00H 999.9 010000 724050 13743 19730421 60.2 24 49.9 24 1030.1 24 1027.7 24 8.7 24 6.4 24 11.8 999.9 73.9* 52.0* 0.00I 999.9 000000 724050 13743 19730422 70.2 24 57.4 24 1019.7 24 1017.4 24 14.6 24 8.5 24 12.8 16.9 86.0* 61.0* 0.00I 999.9 000000 724050 13743 19730423 72.9 22 56.6 22 1011.3 22 1008.9 22 13.6 22 7.7 22 15.9 999.9 82.4* 63.9* 99.99 999.9 010000 724050 13743 19730424 65.7 23 50.9 23 1010.3 23 1008.0 23 12.0 23 6.1 23 16.9 999.9 82.4 55.9* 99.99 999.9 010000 724050 13743 19730425 59.6 21 48.3 21 1012.1 21 1009.7 21 8.6 21 7.3 21 15.0 999.9 69.8* 50.9* 0.20G 999.9 110000 724050 13743 19730426 54.1 24 50.2 24 1009.0 24 1006.7 24 4.9 24 8.9 24 12.8 999.9 64.4 50.0 0.87G 999.9 110000 724050 13743 19730427 53.3 22 49.5 22 1000.6 21 998.2 21 4.9 22 9.2 22 18.8 24.9 55.4* 50.0* 0.43G 999.9 110000 724050 13743 19730428 53.8 22 42.2 22 998.8 22 996.4 22 15.3 22 10.7 22 16.9 28.0 57.9* 50.0* 0.75G 999.9 010000 724050 13743 19730429 54.4 23 34.6 23 1014.2 23 1011.8 23 15.9 23 9.9 23 15.0 22.0 65.8* 43.0* 0.00I 999.9 000000 724050 13743 19730430 55.9 23 37.5 23 1021.0 23 1018.6 23 12.2 23 3.6 23 7.0 999.9 62.6* 46.9* 0.00H 999.9 010000 724050 13743 19730501 62.1 24 50.0 24 1023.3 24 1020.9 24 10.3 24 4.3 24 8.9 999.9 77.9* 50.0* 0.00I 999.9 000000 724050 13743 19730502 70.3 21 56.5 21 1020.7 21 1018.3 21 12.7 21 9.9 20 15.9 999.9 79.9* 61.9* 0.00I 999.9 000000 724050 13743 19730503 67.4 24 57.0 24 1014.3 24 1012.0 24 10.1 24 10.0 23 14.0 17.9 75.2* 60.8* 0.24G 999.9 010010 724050 13743 19730504 55.4 24 40.4 24 1012.2 24 1009.8 24 15.9 24 9.5 24 17.9 32.8 62.6* 47.8* 0.12G 999.9 010000 724050 13743 19730505 52.5 24 33.3 24 1014.5 24 1012.0 24 15.8 24 11.0 24 19.8 28.0 63.9* 41.9* 0.04G 999.9 000000 724050 13743 19730506 59.7 24 33.8 24 1018.6 24 1016.2 24 16.6 24 8.4 24 12.8 999.9 72.0* 48.9* 0.00G 999.9 000000 724050 13743 19730507 62.8 23 46.2 23 1022.6 23 1020.2 23 12.0 23 4.6 23 15.0 999.9 77.0* 48.9* 0.00I 999.9 000000 724050 13743 19730508 63.8 24 51.9 24 1020.7 24 1018.3 24 11.5 24 5.6 24 10.9 999.9 69.8* 59.0* 7.87G 999.9 010000 724050 13743 19730509 68.6 23 60.0 23 1010.7 23 1008.3 23 9.3 23 8.6 23 14.0 999.9 77.0* 63.9* 0.39G 999.9 110000 724050 13743 19730510 67.8 24 56.4 24 1011.7 24 1009.3 24 9.9 24 5.1 24 9.9 999.9 81.9* 55.9* 0.00G 999.9 000000 724050 13743 19730511 70.7 23 50.9 23 1007.0 23 1004.7 23 13.3 23 9.6 23 16.9 28.9 80.6* 63.0* 0.12G 999.9 010110 724050 13743 19730512 64.4 24 44.9 23 1009.9 24 1007.6 24 14.3 24 7.9 23 15.0 19.8 74.8* 45.0* 99.99 999.9 010000 724050 13743 19730513 63.2 24 43.0 24 1016.2 24 1013.8 24 14.7 24 6.6 24 10.9 999.9 72.0* 55.4* 0.00A 999.9 000000 724050 13743 19730514 63.7 23 44.9 23 1021.8 23 1019.4 23 11.6 23 4.8 23 10.9 999.9 69.8* 59.0* 0.00H 999.9 010000 724050 13743 19730515 60.8 23 50.4 23 1018.1 23 1015.7 23 6.9 23 6.3 23 15.0 999.9 66.9* 55.9* 0.08G 999.9 110000 724050 13743 19730516 57.2 23 37.5 23 1016.5 23 1014.1 23 15.2 23 8.0 23 15.0 22.0 68.9* 41.9* 0.04G 999.9 000000 724050 13743 19730517 58.5 24 46.6 24 1008.5 24 1006.1 24 10.2 24 8.5 24 15.0 18.8 72.0* 46.9* 0.00G 999.9 010000 724050 13743 19730518 51.2 24 36.1 24 1011.1 24 1008.7 24 16.2 24 9.3 24 15.0 999.9 63.9* 39.9* 0.08G 999.9 000000 724050 13743 19730519 60.7 22 44.2 22 1012.9 22 1010.6 22 15.7 22 4.3 22 8.0 999.9 75.2* 46.4* 0.00G 999.9 000000 724050 13743 19730520 62.8 23 53.6 23 1006.8 22 1004.5 22 7.9 23 5.4 23 8.9 999.9 69.8* 51.8* 0.12G 999.9 110000 724050 13743 19730521 63.3 22 48.8 22 1006.4 22 1004.0 22 12.0 22 11.5 22 17.9 28.9 70.9* 56.8* 0.00G 999.9 010000 724050 13743 19730522 66.6 23 47.2 23 1010.4 23 1008.0 23 12.3 23 7.1 23 11.8 999.9 79.9* 52.0* 0.00G 999.9 000000 724050 13743 19730523 65.1 21 57.7 21 1007.3 21 1004.9 21 5.7 21 4.0 20 8.9 999.9 75.2* 60.8* 0.39G 999.9 110000 724050 13743 19730524 60.8 24 56.1 24 1007.1 23 1004.7 23 3.6 24 6.8 24 10.9 999.9 70.9* 57.2* 0.20G 999.9 110000 724050 13743 19730525 55.4 23 52.3 23 1009.2 23 1006.8 23 3.4 23 9.7 23 14.0 19.8 59.0* 54.0* 0.71G 999.9 110000 724050 13743 19730526 56.2 22 51.4 22 1013.8 22 1011.4 22 6.8 22 6.0 22 9.9 999.9 57.9* 54.9* 0.00G 999.9 110000 724050 13743 19730527 57.1 23 54.1 23 1013.7 23 1011.3 23 2.9 23 6.2 23 8.0 999.9 59.9* 54.9* 0.12G 999.9 110000 724050 13743 19730528 67.5 23 63.8 23 1007.5 23 1005.2 23 6.4 23 7.9 23 15.9 23.9 79.9* 60.8* 0.83G 999.9 110000 724050 13743 19730529 75.3 24 66.1 24 1007.2 24 1004.9 24 12.7 24 8.9 24 17.9 19.8 83.8* 68.9* 0.00G 999.9 000000 724050 13743 19730530 72.5 24 60.1 24 1012.9 24 1010.6 24 9.1 24 5.3 23 14.0 999.9 81.0* 63.9* 0.00I 999.9 000000 724050 13743 19730531 68.4 24 54.1 24 1015.0 24 1012.7 24 13.4 24 7.6 23 20.0 999.9 78.8* 59.9* 0.00H 999.9 010000 724050 13743 19730601 69.0 24 50.9 24 1018.8 24 1016.4 24 10.9 24 6.2 24 11.8 999.9 79.0* 55.4 0.00I 999.9 000000 724050 13743 19730602 71.7 23 55.8 23 1017.6 23 1015.2 23 9.6 23 4.5 23 8.0 999.9 84.2 55.4 0.00I 999.9 000000 724050 13743 19730603 73.6 24 62.4 24 1019.1 23 1016.7 23 7.0 24 4.4 24 8.0 999.9 84.9* 57.2 0.00I 999.9 000000 724050 13743 19730604 76.1 24 67.4 24 1019.5 24 1017.1 24 6.2 24 6.2 24 22.9 31.9 90.0* 64.4 0.12A 999.9 000000 724050 13743 19730605 75.9 23 67.0 23 1020.0 23 1017.7 23 9.0 23 5.5 23 8.0 999.9 91.4 66.2 0.12G 999.9 010010 724050 13743 19730606 78.7 24 68.6 24 1018.4 24 1016.1 24 9.2 24 8.3 23 14.0 22.0 89.6 66.2 0.00I 999.9 000000 724050 13743 19730607 76.8 24 66.1 24 1018.9 24 1016.5 24 13.9 24 7.2 23 15.0 999.9 87.8 71.6 99.99 999.9 010000 724050 13743 19730608 78.0 23 69.0 23 1021.6 23 1019.2 23 9.0 23 4.8 23 8.0 999.9 90.0* 68.0 0.00I 999.9 000000 724050 13743 19730609 81.4 24 70.3 23 1019.1 23 1016.8 23 13.4 24 8.3 24 12.8 19.8 91.9* 68.0 0.00I 999.9 000000 724050 13743 19730610 82.5 24 68.8 24 1016.9 24 1014.6 24 9.5 24 5.5 24 8.9 999.9 93.2 71.6 0.00I 999.9 000000 724050 13743 19730611 82.0 23 71.5 23 1016.4 23 1014.1 23 4.9 23 6.1 23 42.0 999.9 93.2 71.6 0.00I 999.9 000000 724050 13743 19730612 83.4 18 70.4 18 1014.0 18 1011.7 18 12.9 18 9.1 18 12.8 21.0 93.2 73.4 0.00I 999.9 000000 724050 13743 19730613 80.8 24 67.2 24 1012.3 24 1009.9 24 9.5 24 7.8 24 11.8 999.9 91.4 73.4 0.00I 999.9 000000 724050 13743 19730614 76.3 21 56.8 21 1015.8 21 1013.3 21 12.7 21 8.9 21 12.8 999.9 89.6 66.2 0.00I 999.9 000000 724050 13743 19730615 75.4 24 51.6 24 1017.6 24 1015.2 24 15.9 24 4.7 24 8.0 999.9 84.2 60.8 0.00I 999.9 000000 724050 13743 19730616 76.9 22 63.7 22 1011.6 22 1009.3 22 8.5 22 10.1 22 15.0 23.9 86.0 60.8 99.99 999.9 010000 724050 13743 19730617 73.4 23 66.1 23 1008.7 23 1006.4 23 5.5 23 6.9 23 14.0 999.9 86.0 66.9* 0.08G 999.9 010000 724050 13743 19730618 66.3 24 59.5 24 1015.0 24 1012.7 24 11.0 24 6.9 24 11.8 999.9 77.0 61.9* 0.04G 999.9 110000 724050 13743 19730619 70.5 24 63.1 24 1018.7 24 1016.3 24 7.9 24 7.7 24 11.8 999.9 75.2 62.6 99.99 999.9 010000 724050 13743 19730620 74.7 23 65.6 23 1021.0 23 1018.7 23 3.8 23 5.2 23 8.0 999.9 83.8* 66.2 0.00I 999.9 100000 724050 13743 19730621 78.7 23 69.8 23 1018.9 23 1016.6 23 5.0 23 7.4 22 15.9 19.8 90.0* 68.0 99.99 999.9 110010 724050 13743 19730622 74.2 22 67.5 22 1017.4 22 1015.0 22 7.0 22 4.9 22 9.9 999.9 93.2 69.8 1.46G 999.9 110010 724050 13743 19730623 75.6 24 67.2 24 1017.0 24 1014.7 24 5.0 24 4.0 24 9.9 999.9 84.2 69.8 0.31G 999.9 100010 724050 13743 19730624 75.0 23 67.0 22 1015.9 23 1013.4 23 3.9 23 4.5 23 9.9 999.9 84.2 64.4 0.24G 999.9 110010 724050 13743 19730625 77.1 20 67.0 20 1015.3 20 1013.0 20 6.7 20 4.7 20 8.9 999.9 84.9* 69.8 0.00G 999.9 000000 724050 13743 19730626 76.5 24 66.6 24 1016.7 24 1014.4 24 6.0 24 5.0 23 9.9 999.9 86.0 69.8 0.00I 999.9 100000 724050 13743 19730627 76.3 23 67.6 23 1014.5 23 1012.2 23 10.5 23 6.0 23 12.8 999.9 84.2 69.8 99.99 999.9 010000 724050 13743 19730628 76.2 24 67.9 24 1009.4 24 1007.1 24 7.9 24 7.1 24 11.8 19.8 84.9* 69.8 0.00I 999.9 000000 724050 13743 19730629 76.9 24 67.4 24 1007.0 24 1004.7 24 9.3 24 6.2 24 11.8 999.9 87.8 69.8 0.43G 999.9 010010 724050 13743 19730630 76.8 24 61.1 24 1010.6 24 1008.3 24 8.8 24 6.0 24 8.9 999.9 86.0 66.2 0.01G 999.9 010010 724050 13743 19730701 77.7 20 65.4 20 1016.1 20 1013.7 20 7.7 20 5.2 20 8.9 999.9 87.8 66.2 0.00G 999.9 000000 724050 13743 19730702 76.6 22 70.1 22 1018.9 22 1016.5 22 6.0 22 5.2 22 9.9 999.9 86.0 69.8 0.71A 999.9 010000 724050 13743 19730703 79.6 23 72.3 23 1017.5 23 1015.1 23 6.1 23 5.5 23 8.9 999.9 88.9* 71.6 0.55A 999.9 100000 724050 13743 19730704 80.0 24 69.6 24 1012.8 24 1010.4 24 7.2 24 5.6 24 9.9 999.9 90.9* 70.9* 0.08G 999.9 100010 724050 13743 19730705 80.8 24 66.6 24 1008.5 24 1006.2 24 12.1 24 6.9 24 11.8 999.9 91.4 71.6 0.00G 999.9 000000 724050 13743 19730706 78.0 24 59.1 24 1014.3 24 1011.9 24 15.2 24 7.4 24 9.9 17.9 87.8 68.0 0.00I 999.9 000000 724050 13743 19730707 78.3 24 61.6 24 1018.0 24 1015.6 24 10.0 24 4.7 24 8.0 999.9 88.0* 66.2 0.00I 999.9 000000 724050 13743 19730708 81.1 24 66.7 24 1018.2 24 1015.9 24 5.6 24 4.4 24 7.0 999.9 92.8* 66.2 0.00I 999.9 000000 724050 13743 19730709 84.1 23 71.2 23 1015.9 23 1013.5 23 3.8 23 5.4 23 9.9 999.9 95.0* 69.8 0.00I 999.9 000000 724050 13743 19730710 84.4 24 70.0 24 1011.2 24 1008.8 24 2.9 24 5.1 24 9.9 999.9 95.0 75.2 0.00I 999.9 000000 724050 13743 19730711 76.3 24 66.7 24 1008.3 24 1006.0 24 5.9 24 7.5 24 16.9 23.9 93.2 70.9* 0.47G 999.9 010010 724050 13743 19730712 71.6 23 49.4 23 1014.0 23 1011.6 23 16.3 23 11.0 22 16.9 999.9 86.0 60.8 0.00I 999.9 000000 724050 13743 19730713 75.0 24 56.5 24 1015.6 24 1013.3 24 14.9 24 8.8 24 16.9 999.9 90.0* 60.8 0.00I 999.9 000000 724050 13743 19730714 84.0 24 66.8 24 1012.4 24 1010.0 24 8.9 24 7.4 24 12.8 999.9 93.9* 62.6 0.00I 999.9 000000 724050 13743 19730715 80.5 24 70.6 24 1010.6 24 1008.2 24 6.5 24 8.7 24 14.0 999.9 95.0 71.6 0.08G 999.9 010000 724050 13743 19730716 76.5 24 63.8 24 1014.7 24 1012.3 24 11.4 24 8.5 23 9.9 999.9 86.0* 68.0 0.08G 999.9 000000 724050 13743 19730717 76.9 24 62.9 23 1019.3 24 1016.9 24 9.4 24 5.6 24 9.9 999.9 87.8 64.9* 0.00G 999.9 000000 724050 13743 19730718 76.7 23 63.6 23 1022.4 23 1020.0 23 6.6 23 4.8 23 8.9 17.9 86.9* 66.2 0.00I 999.9 000000 724050 13743 19730719 79.1 24 63.5 24 1021.2 24 1018.8 24 8.5 24 6.8 24 10.9 999.9 89.6 66.2 0.00I 999.9 000000 724050 13743 19730720 81.0 24 67.3 24 1017.3 24 1014.9 24 7.7 24 8.0 24 11.8 999.9 90.0* 66.2 99.99 999.9 010010 724050 13743 19730721 78.3 23 71.4 23 1012.4 23 1010.0 23 6.1 23 7.5 23 11.8 999.9 89.6 69.8 0.16G 999.9 010010 724050 13743 19730722 73.7 24 67.1 24 1016.3 24 1013.9 24 5.1 24 7.7 24 16.9 999.9 87.8 69.8 0.87G 999.9 110000 724050 13743 19730723 77.5 24 64.7 24 1023.7 24 1021.3 24 7.3 24 5.6 24 9.9 999.9 87.8 69.8 0.08G 999.9 010000 724050 13743 19730724 77.1 24 62.0 24 1026.3 24 1023.9 24 8.7 24 4.7 24 8.0 999.9 87.8 66.2 0.00G 999.9 000000 724050 13743 19730725 75.4 23 61.5 23 1021.7 23 1019.3 23 13.1 23 6.5 23 12.8 999.9 87.8 65.8* 0.00I 999.9 000000 724050 13743 19730726 79.2 23 66.3 23 1015.6 23 1013.2 23 10.9 23 10.6 23 15.0 21.0 88.9* 66.2 0.08G 999.9 010000 724050 13743 19730727 82.9 23 70.2 23 1012.0 23 1009.5 23 10.1 23 10.2 23 14.0 999.9 92.8* 71.6 0.00I 999.9 000000 724050 13743 19730728 82.1 24 69.5 24 1013.3 24 1010.9 24 7.7 24 5.4 24 8.0 999.9 93.2 73.4 0.00I 999.9 000000 724050 13743 19730729 80.5 24 67.1 24 1013.5 24 1011.1 24 8.6 24 8.1 24 12.8 999.9 91.4 71.6 0.00I 999.9 000000 724050 13743 19730730 78.6 24 61.2 24 1016.7 24 1014.3 24 8.6 24 5.3 24 8.9 999.9 88.0* 68.0 0.00I 999.9 000000 724050 13743 19730731 80.6 23 65.6 23 1016.8 23 1014.4 23 6.1 23 4.8 23 9.9 999.9 90.9* 68.0 0.00I 999.9 000000 724050 13743 19730801 78.8 22 70.3 22 1013.7 22 1011.3 22 5.3 22 6.3 22 17.9 22.9 91.4 69.8 0.31G 999.9 010010 724050 13743 19730802 78.2 22 71.4 22 1010.3 22 1007.8 22 8.0 22 4.3 22 9.9 22.0 86.9* 73.4 0.16G 999.9 010010 724050 13743 19730803 77.5 24 67.5 24 1013.8 24 1011.4 24 5.5 24 6.6 24 9.9 999.9 87.8 73.4 0.04G 999.9 010000 724050 13743 19730804 79.2 24 64.6 24 1017.8 24 1015.4 24 5.6 24 4.7 24 8.0 999.9 88.9* 69.8 99.99 999.9 010000 724050 13743 19730805 79.2 24 60.6 24 1020.6 24 1018.2 24 9.1 24 5.3 24 8.0 999.9 89.6 69.8 0.00I 999.9 000000 724050 13743 19730806 79.0 23 63.7 23 1019.7 23 1017.4 23 8.8 23 4.3 23 8.0 999.9 89.6 69.8 0.00I 999.9 000000 724050 13743 19730807 80.1 21 65.6 21 1020.0 21 1017.5 21 7.6 21 6.4 21 9.9 999.9 89.6 69.8 0.00I 999.9 000000 724050 13743 19730808 80.7 23 66.0 23 1020.2 23 1017.8 23 6.9 23 6.4 23 11.8 999.9 90.0* 71.6 0.00I 999.9 000000 724050 13743 19730809 81.6 23 68.2 23 1017.6 23 1015.2 23 6.7 23 6.8 23 10.9 999.9 91.4 73.4 0.00I 999.9 000000 724050 13743 19730810 84.3 24 70.6 24 1013.6 24 1011.2 24 5.1 24 8.9 24 15.0 19.8 95.0* 73.4 0.00I 999.9 000000 724050 13743 19730811 83.1 24 69.5 24 1013.6 24 1011.2 24 7.9 24 6.8 24 10.9 999.9 95.0 75.2 0.00I 999.9 000000 724050 13743 19730812 83.2 24 64.8 24 1015.3 24 1012.9 24 13.4 24 5.2 23 9.9 999.9 95.0 70.9* 0.00I 999.9 000000 724050 13743 19730813 80.9 24 66.6 24 1014.7 24 1012.3 24 9.9 24 6.3 24 9.9 999.9 96.8 71.6 99.99 999.9 010000 724050 13743 19730814 78.5 24 70.5 24 1012.4 24 1010.1 24 5.8 24 4.9 24 10.9 999.9 89.6 73.4 0.16G 999.9 110000 724050 13743 19730815 78.7 22 69.0 22 1011.5 22 1009.1 22 7.1 22 5.4 22 14.0 999.9 87.8 73.4 0.02G 999.9 010000 724050 13743 19730816 77.8 24 66.2 24 1016.4 24 1014.0 24 7.0 24 7.2 24 11.8 999.9 87.8 71.6 0.00G 999.9 110000 724050 13743 19730817 77.6 24 66.8 24 1021.4 24 1019.0 24 8.7 24 6.4 24 9.9 999.9 87.8 71.6 0.00I 999.9 000000 724050 13743 19730818 76.1 23 66.9 23 1019.8 23 1017.4 23 9.5 23 6.0 23 9.9 999.9 86.0 71.6 99.99 999.9 010000 724050 13743 19730819 73.6 24 63.7 24 1017.2 24 1014.7 24 8.2 24 6.1 24 9.9 999.9 82.9* 66.2 0.28G 999.9 010010 724050 13743 19730820 74.5 23 63.9 23 1014.7 23 1012.3 23 5.0 23 4.9 23 14.0 999.9 84.2 66.2 0.00G 999.9 000010 724050 13743 19730821 71.2 24 66.1 24 1012.7 24 1010.3 24 5.5 24 9.2 24 16.9 999.9 86.0 66.2 3.50G 999.9 010010 724050 13743 19730822 71.8 23 60.9 23 1014.8 23 1012.4 23 12.5 23 11.0 23 12.8 999.9 81.0* 65.8* 0.24G 999.9 010000 724050 13743 19730823 70.0 24 54.4 24 1020.0 24 1017.6 24 13.1 24 7.9 24 11.8 999.9 82.4 59.9* 0.00G 999.9 000000 724050 13743 19730824 73.0 23 59.8 23 1021.3 23 1018.9 23 9.3 23 4.9 23 8.9 999.9 84.9* 60.8 0.00I 999.9 000000 724050 13743 19730825 75.8 24 65.6 24 1021.8 24 1019.4 24 5.1 24 4.1 24 8.0 999.9 84.2 64.4 0.00I 999.9 000000 724050 13743 19730826 78.0 24 64.8 24 1021.1 24 1018.7 24 5.3 24 5.7 24 10.9 999.9 90.9* 66.2 0.00I 999.9 000000 724050 13743 19730827 80.8 21 70.2 21 1020.7 21 1018.4 21 2.9 21 5.6 21 10.9 999.9 93.2 66.2 0.00I 999.9 000000 724050 13743 19730828 85.1 23 72.6 23 1017.7 23 1015.3 23 4.1 23 7.2 23 11.8 999.9 95.9* 73.4 0.00I 999.9 000000 724050 13743 19730829 87.2 23 70.5 23 1018.5 23 1016.1 23 5.3 23 5.2 23 8.9 999.9 97.9* 75.2 0.00I 999.9 000000 724050 13743 19730830 85.1 23 71.4 23 1020.4 23 1018.0 23 7.5 23 4.7 23 8.0 999.9 98.6 75.2 0.00I 999.9 000000 724050 13743 19730831 85.0 24 73.6 24 1021.5 24 1019.0 24 5.1 24 4.3 24 8.0 999.9 95.0 75.2 0.00I 999.9 000000 724050 13743 19730901 85.2 24 73.8 24 1023.0 24 1020.6 24 4.4 24 4.6 24 7.0 999.9 95.0 75.2 0.00I 999.9 100000 724050 13743 19730902 83.4 22 73.0 22 1022.6 22 1020.2 22 4.0 22 4.3 22 8.9 999.9 96.8 75.2 99.99 999.9 010010 724050 13743 19730903 81.6 24 70.1 24 1020.1 24 1017.7 24 5.8 24 4.4 23 9.9 999.9 95.0 74.8* 0.20G 999.9 010010 724050 13743 19730904 79.6 23 70.3 23 1019.1 23 1016.8 23 3.9 23 5.0 23 11.8 999.9 95.0 71.6 0.16G 999.9 010010 724050 13743 19730905 81.9 23 71.2 23 1017.6 23 1015.2 23 3.3 23 5.2 23 8.0 999.9 91.4 71.6 0.00I 999.9 100000 724050 13743 19730906 81.3 24 70.5 24 1014.7 24 1012.3 24 4.8 23 8.4 24 11.8 999.9 91.4 73.4 0.00I 999.9 000000 724050 13743 19730907 79.3 24 62.9 24 1014.9 24 1012.5 24 10.1 24 6.4 24 11.8 999.9 89.6 70.9* 0.20G 999.9 010000 724050 13743 19730908 75.1 22 54.9 22 1018.1 22 1015.7 22 13.0 22 6.3 22 8.9 999.9 87.8 64.4 0.00I 999.9 000000 724050 13743 19730909 73.8 24 54.5 24 1017.9 24 1015.6 24 15.4 24 5.9 24 9.9 999.9 84.2 64.4 99.99 999.9 010000 724050 13743 19730910 69.8 23 49.4 23 1016.4 23 1014.0 23 16.4 23 6.5 23 9.9 999.9 82.4 60.8 0.00I 999.9 000000 724050 13743 19730911 70.4 23 51.3 23 1009.7 23 1007.3 23 14.2 23 5.6 23 8.9 15.9 84.9* 57.2 0.00I 999.9 000000 724050 13743 19730912 75.0 24 54.5 24 1009.5 24 1007.1 24 11.8 24 5.6 24 12.8 999.9 84.2 57.2 0.00I 999.9 000000 724050 13743 19730913 73.9 24 54.0 24 1019.3 24 1016.8 24 12.7 24 6.7 24 11.8 999.9 84.2 66.2 0.00I 999.9 000000 724050 13743 19730914 74.3 23 66.2 23 1012.6 23 1010.2 23 8.3 23 9.2 23 15.9 16.9 82.4 66.2 0.98G 999.9 110000 724050 13743 19730915 72.4 24 60.1 24 1010.5 24 1008.1 24 11.1 24 8.6 24 15.0 999.9 80.6 66.2 0.04G 999.9 010000 724050 13743 19730916 72.6 23 57.6 23 1016.1 23 1013.7 23 7.2 23 4.0 23 8.9 999.9 84.2 60.8 0.00G 999.9 000000 724050 13743 19730917 69.7 23 56.8 23 1020.9 23 1018.5 23 9.6 23 7.1 23 10.9 999.9 84.2 60.8 0.00I 999.9 000000 724050 13743 19730918 71.4 24 59.5 24 1015.1 24 1012.7 24 6.2 24 8.4 24 16.9 24.9 79.0* 64.4 99.99 999.9 110000 724050 13743 19730919 62.2 21 43.9 21 1018.9 21 1016.5 21 12.6 21 7.4 21 12.8 999.9 78.8 51.8 0.00I 999.9 000000 724050 13743 19730920 64.7 21 48.3 21 1018.2 21 1015.7 21 12.2 20 4.7 21 8.0 999.9 79.0* 51.8 0.00I 999.9 000000 724050 13743 19730921 63.9 23 50.3 23 1024.2 23 1021.8 23 11.8 23 7.1 22 11.8 999.9 78.8 55.4 0.00I 999.9 000000 724050 13743 19730922 69.4 23 57.9 23 1025.8 23 1023.4 23 8.0 23 7.2 23 15.9 19.8 81.9* 60.8 0.00I 999.9 000000 724050 13743 19730923 75.8 24 62.2 24 1019.4 24 1017.0 24 7.9 24 7.4 24 14.0 999.9 87.8 60.8 0.00I 999.9 000000 724050 13743 19730924 73.5 18 61.9 18 1020.5 18 1018.1 18 7.4 18 3.5 18 4.9 999.9 87.8 62.6 0.00I 999.9 000000 724050 13743 19730925 70.2 24 59.8 24 1025.3 24 1022.9 24 7.8 24 8.5 24 11.8 999.9 87.8 64.4 0.00I 999.9 000000 724050 13743 19730926 67.2 22 56.9 22 1031.0 22 1028.5 22 8.0 22 5.8 22 8.0 999.9 79.0* 60.8 0.00I 999.9 000000 724050 13743 19730927 72.4 24 61.2 24 1029.0 24 1026.2 24 9.1 24 6.4 24 10.9 999.9 84.9* 60.8 0.00I 999.9 000000 724050 13743 19730928 74.4 23 63.4 23 1020.4 23 1018.0 23 9.0 23 5.2 23 8.9 999.9 84.2 62.6 0.00I 999.9 000000 724050 13743 19730929 77.8 24 66.8 24 1013.4 24 1011.0 24 6.8 24 5.7 24 9.9 999.9 89.6 64.4 99.99 999.9 010000 724050 13743 19730930 70.2 21 55.3 21 1018.8 21 1016.4 21 15.2 21 9.3 21 17.9 22.9 89.6 62.6 0.04G 999.9 010010 724050 13743 19731001 66.2 22 53.2 22 1025.8 22 1023.4 22 13.7 22 6.4 22 9.9 999.9 75.2 57.2 0.39A 999.9 000000 724050 13743 19731002 68.8 23 62.3 23 1024.1 23 1021.7 23 8.3 23 5.7 23 11.8 999.9 73.9* 57.2 0.71G 999.9 010010 724050 13743 19731003 71.0 24 62.9 23 1018.7 24 1016.3 24 8.1 24 4.7 24 15.0 999.9 82.9* 62.6 0.51G 999.9 100000 724050 13743 19731004 73.7 24 63.2 24 1017.2 24 1014.8 24 8.2 24 4.8 24 9.9 999.9 86.0* 62.6 0.00G 999.9 000000 724050 13743 19731005 74.8 24 59.0 24 1017.3 24 1014.8 24 10.4 24 8.4 24 15.0 23.9 87.8 64.4 0.00I 999.9 000000 724050 13743 19731006 64.4 23 41.2 23 1025.9 23 1023.5 23 15.4 23 6.9 23 16.9 999.9 86.0 52.9* 0.79A 999.9 000000 724050 13743 19731007 61.1 24 48.2 24 1024.2 24 1021.7 24 11.1 24 4.6 23 8.0 999.9 75.2 50.9* 0.00I 999.9 000000 724050 13743 19731008 67.2 24 54.7 24 1021.6 24 1019.2 24 14.0 24 3.9 24 4.9 999.9 75.2 51.8 0.00I 999.9 000000 724050 13743 19731009 69.3 24 58.0 24 1022.6 24 1020.1 24 9.5 24 4.2 24 8.0 999.9 73.4 62.6 0.00I 999.9 000000 724050 13743 19731010 70.0 24 58.5 24 1021.6 24 1019.2 24 7.5 24 3.6 24 9.9 999.9 79.0* 64.4 0.00I 999.9 000000 724050 13743 19731011 65.0 24 54.5 24 1025.3 24 1022.9 24 8.3 24 7.6 24 11.8 999.9 80.6 60.8 0.00I 999.9 000000 724050 13743 19731012 65.1 24 52.7 24 1026.1 24 1023.7 24 8.8 24 5.8 24 8.9 999.9 73.9* 57.2 0.00I 999.9 000000 724050 13743 19731013 65.2 24 53.5 24 1022.6 24 1020.2 24 7.6 24 8.6 24 15.9 22.9 78.8 54.9* 0.00I 999.9 000000 724050 13743 19731014 70.7 24 49.3 24 1017.1 24 1014.6 24 13.4 24 9.7 24 15.0 22.0 78.8 55.4 0.01G 999.9 010000 724050 13743 19731015 66.2 24 42.1 24 1014.9 24 1012.4 24 15.6 24 8.5 24 15.9 999.9 81.9* 53.6 0.00I 999.9 000000 724050 13743 19731016 66.6 23 42.8 23 1009.8 23 1007.4 23 15.1 23 10.8 23 17.9 23.9 82.4 53.6 99.99 999.9 010000 724050 13743 19731017 54.2 22 29.8 22 1017.4 22 1014.9 22 15.5 22 9.9 22 15.9 999.9 71.6 45.0* 0.00I 999.9 000000 724050 13743 19731018 54.2 24 32.9 24 1018.9 24 1016.5 24 15.9 24 8.6 24 20.0 26.8 72.0* 42.8 0.00I 999.9 000000 724050 13743 19731019 55.8 24 35.5 24 1022.4 24 1020.0 24 15.7 24 6.5 24 8.9 999.9 71.6 42.8 0.00I 999.9 000000 724050 13743 19731020 60.0 23 44.0 23 1017.4 23 1015.0 23 11.2 23 8.4 23 11.8 999.9 77.0* 42.8 0.00I 999.9 000000 724050 13743 19731021 58.1 24 42.8 24 1023.2 24 1020.8 24 11.7 24 5.8 24 8.9 999.9 78.8 46.4 0.00I 999.9 000000 724050 13743 19731022 55.0 24 42.8 24 1026.3 24 1024.0 24 7.7 24 3.4 24 8.0 999.9 68.9* 44.6 0.00I 999.9 100000 724050 13743 19731023 57.4 23 47.2 23 1023.0 23 1020.6 23 5.8 23 4.0 23 7.0 25.8 70.0* 44.6 0.00I 999.9 000000 724050 13743 19731024 59.6 24 47.5 24 1020.4 24 1018.0 24 4.9 24 4.6 24 8.0 999.9 74.8* 46.4 0.00I 999.9 000000 724050 13743 19731025 59.6 23 44.7 23 1018.6 23 1016.2 23 5.9 23 5.7 23 8.9 999.9 75.2 46.4 0.00I 999.9 000000 724050 13743 19731026 63.1 24 45.9 24 1013.3 24 1010.9 24 7.9 24 6.5 24 9.9 999.9 77.0 46.4 0.00I 999.9 000000 724050 13743 19731027 63.3 24 44.7 24 1015.6 24 1013.2 24 12.3 24 6.9 24 11.8 999.9 77.0 51.8 0.00I 999.9 000000 724050 13743 19731028 58.7 24 48.6 24 1018.9 24 1016.5 24 9.9 24 7.9 24 11.8 19.8 73.4 50.0 0.00I 999.9 000000 724050 13743 19731029 65.4 24 56.7 24 1006.2 24 1003.8 24 9.4 24 11.9 24 15.9 26.8 70.9* 50.0 0.31G 999.9 010010 724050 13743 19731030 49.6 24 37.5 24 1000.1 24 997.7 24 10.5 24 7.5 24 10.9 999.9 55.9* 42.8 0.01G 999.9 010000 724050 13743 19731031 53.7 24 42.1 24 1003.1 24 1000.7 24 11.1 24 5.7 24 8.9 999.9 64.9* 42.8 99.99 999.9 010000 724050 13743 19731101 58.8 24 40.0 24 1000.7 24 998.3 24 13.0 24 14.0 23 22.9 37.9 66.2 44.6 0.16G 999.9 010000 724050 13743 19731102 57.9 24 35.3 24 1013.9 24 1011.5 24 15.6 24 6.9 24 15.0 999.9 79.0* 41.0 0.00I 999.9 000000 724050 13743 19731103 62.8 23 37.9 23 1014.2 23 1011.8 23 14.0 23 9.6 23 15.9 19.8 78.8 41.0 0.00I 999.9 000000 724050 13743 19731104 50.9 23 28.9 23 1021.7 23 1019.3 23 15.4 23 8.5 23 14.0 999.9 66.2 41.0 0.00I 999.9 000000 724050 13743 19731105 45.7 24 35.0 24 1018.5 24 1016.1 24 9.9 24 5.3 24 11.8 999.9 60.8 41.0 0.28G 999.9 010000 724050 13743 19731106 43.0 23 21.8 23 1020.4 23 1018.0 23 15.7 23 11.4 23 15.9 28.0 48.9* 37.4 0.00I 999.9 000000 724050 13743 19731107 40.4 24 16.7 24 1024.5 24 1022.0 24 15.6 24 7.3 24 11.8 999.9 50.0* 31.1* 0.00I 999.9 000000 724050 13743 19731108 43.0 24 27.9 24 1020.8 24 1018.4 24 14.3 24 3.7 24 8.9 999.9 52.0* 33.8 0.00I 999.9 000000 724050 13743 19731109 47.0 24 32.8 24 1015.8 24 1013.4 24 14.4 24 9.1 24 19.8 30.9 51.8 33.8 0.31G 999.9 010000 724050 13743 19731111 37.5 24 20.6 24 1033.7 24 1031.2 24 15.2 24 5.6 24 11.8 22.9 47.8* 28.0* 0.00G 999.9 000000 724050 13743 19731112 44.7 23 26.8 23 1029.2 23 1026.8 23 11.1 23 4.7 23 8.0 999.9 54.9* 28.4 0.00I 999.9 000000 724050 13743 19731113 52.0 22 34.9 22 1022.6 22 1020.1 21 10.4 22 6.0 22 11.8 999.9 70.0* 33.8 0.00I 999.9 000000 724050 13743 19731114 57.2 24 42.0 24 1015.9 24 1013.5 24 9.7 24 6.1 24 10.9 999.9 75.2 42.8 0.00I 999.9 000000 724050 13743 19731115 61.9 23 48.5 23 1010.8 23 1008.4 23 12.1 23 7.8 23 14.0 21.0 79.0* 39.2 0.00I 999.9 000000 724050 13743 19731116 60.6 24 42.5 24 1006.0 24 1003.7 24 15.6 24 13.0 24 21.0 30.9 78.8 46.4 0.01G 999.9 010000 724050 13743 19731117 44.0 23 23.0 23 1023.2 23 1020.7 23 15.4 23 9.3 23 12.8 18.8 50.0* 37.4 0.00I 999.9 000000 724050 13743 19731118 41.1 24 26.0 24 1022.8 24 1020.4 24 11.3 24 4.9 24 8.9 999.9 55.4 29.1* 0.00I 999.9 000000 724050 13743 19731119 53.4 24 40.4 24 1015.9 24 1013.5 24 9.1 24 4.4 24 10.9 999.9 63.9* 45.9* 99.99 999.9 010000 724050 13743 19731120 50.0 24 40.2 24 1026.1 24 1023.7 24 8.6 24 4.0 24 7.0 999.9 64.4 42.8 0.00I 999.9 000000 724050 13743 19731121 52.9 23 40.7 23 1027.8 23 1025.4 23 11.0 23 5.1 23 8.0 999.9 60.8 42.8 0.00I 999.9 000000 724050 13743 19731122 55.1 23 47.3 23 1022.9 23 1020.5 23 8.4 23 3.9 23 7.0 999.9 68.0* 48.2 0.01G 999.9 110000 724050 13743 19731123 52.0 24 43.4 24 1023.2 24 1020.8 24 9.9 24 3.3 24 5.8 999.9 69.8 39.2 0.00G 999.9 000000 724050 13743 19731124 57.9 24 47.8 24 1017.7 24 1015.3 24 10.4 24 4.1 24 7.0 999.9 68.0 39.2 0.00I 999.9 000000 724050 13743 19731125 65.6 24 53.2 24 1005.4 24 1003.0 24 13.0 24 9.6 24 19.8 28.0 78.8 53.6 0.00I 999.9 000000 724050 13743 19731126 60.2 24 44.2 24 1016.9 24 1014.5 24 12.8 24 8.5 24 15.9 23.9 78.8 51.8 99.99 999.9 010000 724050 13743 19731127 58.6 24 52.2 24 1017.2 24 1014.8 24 5.1 24 3.9 24 8.0 999.9 64.4 51.8 0.02G 999.9 110000 724050 13743 19731128 64.8 24 58.0 24 1004.1 24 1001.7 24 6.2 24 8.3 24 19.8 28.9 72.9* 55.4 0.04G 999.9 110000 724050 13743 19731129 50.3 24 28.4 24 1010.6 24 1008.2 24 15.2 24 13.8 24 19.8 29.9 73.4 42.8 0.28G 999.9 000000 724050 13743 19731130 46.6 23 26.2 23 1022.0 23 1019.6 23 15.4 23 8.5 23 11.8 999.9 64.9* 33.8 0.00G 999.9 000000 724050 13743 19731201 51.8 23 29.9 23 1026.9 23 1024.6 23 15.4 23 8.3 23 11.8 999.9 64.4 33.8 0.00I 999.9 000000 724050 13743 19731202 40.6 24 24.3 24 1035.1 24 1032.8 24 15.2 24 5.8 24 9.9 999.9 55.4 32.9* 0.00I 999.9 000000 724050 13743 19731203 45.7 22 33.5 22 1027.0 22 1024.7 22 10.7 22 5.3 22 8.9 999.9 59.9* 33.8 0.00I 999.9 000000 724050 13743 19731204 49.7 24 41.6 24 1018.0 24 1015.7 24 9.6 24 4.4 24 8.9 999.9 68.9* 33.8 0.00I 999.9 000000 724050 13743 19731205 61.8 23 54.4 23 1010.4 23 1008.1 23 7.0 23 8.4 23 17.9 29.9 69.8 55.9* 0.87G 999.9 110000 724050 13743 19731206 55.7 22 38.8 22 1015.0 22 1012.7 22 14.1 22 9.9 22 15.0 999.9 66.2 46.4 0.16G 999.9 000000 724050 13743 19731207 44.7 22 25.7 22 1029.0 22 1026.6 22 15.3 22 6.8 22 11.8 999.9 60.8 35.6 0.00G 999.9 000000 724050 13743 19731208 42.8 18 29.3 18 1031.7 18 1029.4 18 10.1 18 9.0 18 11.8 999.9 51.8 35.6 0.00I 999.9 000000 724050 13743 19731209 44.9 24 38.3 24 1012.7 24 1010.5 24 6.8 23 13.2 24 19.8 29.9 50.0 39.2 1.02G 999.9 110000 724050 13743 19731210 42.9 23 33.3 23 1014.0 23 1011.7 23 10.2 23 4.7 23 8.0 999.9 52.0* 37.4 0.01G 999.9 000000 724050 13743 19731211 38.0 24 23.4 24 1016.3 24 1014.0 24 13.1 24 13.3 24 19.8 28.0 51.8 32.0* 0.00G 999.9 001000 724050 13743 19731212 33.2 24 16.6 24 1021.2 24 1018.9 24 15.2 24 8.8 24 14.0 999.9 41.9* 27.1* 0.00I 999.9 000000 724050 13743 19731213 40.5 24 26.4 24 1012.7 24 1010.5 24 10.7 23 5.3 24 11.8 16.9 44.6 28.4 99.99 999.9 110000 724050 13743 19731214 45.8 23 35.2 23 1005.3 23 1003.1 23 12.4 23 7.8 23 15.9 25.8 53.6 37.4 0.28G 999.9 110000 724050 13743 19731215 38.2 24 24.4 24 1017.4 24 1015.2 24 9.4 24 6.4 24 12.8 999.9 53.6 33.8 0.12G 999.9 000000 724050 13743 19731216 35.5 24 26.2 24 1017.5 24 1015.2 24 4.5 24 8.6 24 14.0 999.9 42.8 29.1* 0.08G 999.9 001000 724050 13743 19731217 27.1 22 21.2 22 1004.0 22 1001.8 22 3.1 22 15.7 20 19.8 29.9 39.2 26.1* 0.87G 7.9 011000 724050 13743 19731218 26.4 23 11.8 23 1020.2 23 1017.9 23 13.8 23 11.2 23 19.8 34.0 31.1* 21.0* 0.04G 5.9 001000 724050 13743 19731219 30.4 24 13.5 23 1034.3 24 1032.0 24 14.7 24 5.0 23 8.9 999.9 35.6 21.2 0.01G 3.9 000000 724050 13743 19731220 36.2 24 28.5 24 1024.0 24 1021.7 24 6.2 24 6.6 24 12.8 999.9 50.0* 28.4 0.00G 2.0 110000 724050 13743 19731221 40.3 21 36.4 21 1001.2 21 998.9 21 3.9 21 12.0 21 23.9 35.9 50.0 32.0* 1.54G 999.9 111000 724050 13743 19731222 30.1 24 16.8 24 1016.5 24 1014.2 24 15.2 24 10.7 24 18.1 28.0 46.4 26.1* 0.04G 999.9 000000 724050 13743 19731223 36.3 24 21.2 24 1017.9 24 1015.5 24 15.2 24 6.0 24 9.9 999.9 47.8* 26.6 0.00G 999.9 000000 724050 13743 19731224 39.5 24 24.5 24 1029.5 24 1027.2 24 11.6 24 6.8 24 9.9 999.9 48.2 35.6 0.00I 999.9 000000 724050 13743 19731225 39.4 24 26.6 24 1032.5 24 1030.1 24 11.5 24 4.7 24 8.0 999.9 45.9* 35.6 0.00I 999.9 000000 724050 13743 19731226 44.7 24 37.8 24 1020.7 24 1018.4 24 3.5 24 2.5 24 5.8 999.9 52.0* 35.6 0.20G 999.9 110000 724050 13743 19731227 59.8 24 50.1 24 1011.9 24 1009.6 24 14.3 24 5.8 24 12.8 999.9 65.8* 41.0 0.43G 999.9 110000 724050 13743 19731228 48.9 24 32.7 24 1017.9 24 1015.7 24 15.2 24 8.1 24 19.8 999.9 66.2 42.8 0.00G 999.9 000000 724050 13743 19731229 44.6 24 32.6 24 1014.5 24 1012.2 24 11.7 24 5.0 24 8.0 999.9 55.4 39.2 0.00I 999.9 000000 724050 13743 19731230 46.3 23 29.3 23 1013.5 23 1011.2 23 14.3 23 9.3 23 42.0 999.9 53.6 39.2 0.04G 999.9 010000 724050 13743 19731231 40.1 24 29.2 24 1018.6 24 1016.3 24 7.6 24 4.4 24 8.9 999.9 53.6 35.6 0.02G 999.9 110000 fluids-1.0.22/tests/gsod/1938/0000755000175000017500000000000014302004506015104 5ustar nileshnileshfluids-1.0.22/tests/gsod/1938/724050-13743.op0000644000175000017500000014327214302004506016675 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19380101 43.6 5 38.5 5 9999.9 0 9999.9 0 8.0 5 3.7 5 4.1 999.9 44.4* 43.3* 0.00I 999.9 000000 724050 13743 19380102 43.9 13 36.5 13 1000.6 13 9999.9 0 5.5 13 5.7 13 12.0 999.9 51.3* 33.4* 0.00I 999.9 100000 724050 13743 19380103 36.8 24 24.3 24 1002.4 24 9999.9 0 7.1 24 6.6 24 13.0 999.9 44.4* 30.4* 0.00I 999.9 100000 724050 13743 19380104 34.7 24 26.8 24 1001.1 24 9999.9 0 4.8 24 5.3 24 13.0 999.9 47.3* 27.3* 0.00I 999.9 000000 724050 13743 19380105 37.1 24 26.1 24 1000.1 24 9999.9 0 4.3 24 5.3 24 13.0 999.9 52.3* 27.3* 0.00I 999.9 000000 724050 13743 19380106 37.9 24 29.7 24 1000.5 24 9999.9 0 3.3 24 4.0 24 9.9 999.9 56.3* 26.4* 99.99 999.9 010000 724050 13743 19380107 46.0 24 40.7 24 998.1 24 9999.9 0 4.1 24 7.4 24 12.0 999.9 51.3* 43.3* 99.99 999.9 110000 724050 13743 19380108 36.2 24 24.3 24 1000.8 24 9999.9 0 8.0 24 11.9 24 16.9 999.9 47.3* 31.3* 0.00I 999.9 000000 724050 13743 19380109 29.6 24 15.9 24 1003.7 24 9999.9 0 8.0 24 8.2 24 13.0 999.9 35.4* 25.3* 0.00I 999.9 000000 724050 13743 19380110 28.7 24 20.5 24 1002.4 24 9999.9 0 3.8 24 3.5 24 9.9 999.9 41.4* 21.4* 0.00I 999.9 000000 724050 13743 19380111 33.5 24 30.3 24 1000.7 24 9999.9 0 2.4 24 2.9 24 5.1 999.9 35.4* 31.3* 99.99 999.9 111000 724050 13743 19380112 35.4 24 33.5 24 999.9 24 9999.9 0 1.6 24 4.0 24 8.0 999.9 38.3* 33.4* 99.99 999.9 110000 724050 13743 19380113 37.0 24 26.1 24 998.3 24 9999.9 0 6.9 24 11.9 24 23.9 999.9 39.4* 34.3* 99.99 999.9 110000 724050 13743 19380114 31.8 24 21.6 24 1000.4 24 9999.9 0 5.7 24 3.1 24 12.0 999.9 36.3* 26.4* 0.00I 999.9 000000 724050 13743 19380115 32.2 24 21.9 24 1000.7 24 9999.9 0 6.2 24 9.6 24 19.0 999.9 36.3* 27.3* 0.00I 999.9 000000 724050 13743 19380116 31.0 24 19.9 24 1001.2 24 9999.9 0 7.0 24 6.6 24 12.0 999.9 37.4* 21.4* 0.00I 999.9 000000 724050 13743 19380117 37.7 24 29.1 24 997.2 24 9999.9 0 4.6 24 4.2 24 9.9 999.9 40.3* 35.4* 0.00I 999.9 000000 724050 13743 19380118 32.6 24 23.8 24 1000.6 24 9999.9 0 5.8 24 8.8 24 12.0 999.9 38.3* 27.3* 0.00I 999.9 000000 724050 13743 19380119 23.7 24 12.5 24 1002.6 24 9999.9 0 4.6 24 6.7 24 9.9 999.9 27.3* 20.3* 99.99 999.9 001000 724050 13743 19380120 27.3 24 21.7 24 1002.9 24 9999.9 0 2.9 24 3.5 24 7.0 999.9 42.4* 16.3* 99.99 999.9 101000 724050 13743 19380121 32.7 24 30.6 24 1002.4 24 9999.9 0 1.4 24 2.6 24 8.9 999.9 37.4* 26.4* 99.99 999.9 110000 724050 13743 19380122 38.1 24 35.9 24 1000.3 24 9999.9 0 1.7 24 2.5 24 9.9 999.9 42.4* 35.4* 99.99 999.9 110000 724050 13743 19380123 39.7 24 34.1 24 1001.6 24 9999.9 0 3.0 24 4.5 24 9.9 999.9 56.3* 30.4* 0.00I 999.9 100000 724050 13743 19380124 40.6 24 37.4 23 1001.1 24 9999.9 0 2.5 24 5.3 24 16.9 999.9 54.3* 31.3* 99.99 999.9 110000 724050 13743 19380125 53.3 24 46.6 24 993.9 24 9999.9 0 7.8 24 12.7 24 19.0 999.9 63.3* 42.4* 99.99 999.9 010000 724050 13743 19380126 31.2 24 13.6 24 998.0 24 9999.9 0 10.3 24 11.4 24 18.1 999.9 43.3* 25.3* 0.00I 999.9 000000 724050 13743 19380127 23.0 24 6.6 24 1001.2 24 9999.9 0 10.9 24 10.4 24 15.9 999.9 28.4* 17.4* 0.00I 999.9 000000 724050 13743 19380128 23.1 24 7.7 24 1003.3 24 9999.9 0 8.7 24 10.6 24 16.9 999.9 28.4* 18.3* 0.00I 999.9 000000 724050 13743 19380129 27.4 24 14.0 24 1003.9 24 9999.9 0 6.4 24 4.2 24 12.0 999.9 44.4* 19.4* 0.00I 999.9 000000 724050 13743 19380130 44.9 24 26.2 24 1002.5 24 9999.9 0 5.6 24 13.1 24 23.9 999.9 62.4* 32.4* 0.00I 999.9 000000 724050 13743 19380131 48.3 24 39.9 24 1001.4 24 9999.9 0 6.4 24 11.6 24 16.9 999.9 56.3* 34.3* 99.99 999.9 110000 724050 13743 19380201 30.4 24 14.9 24 1006.4 24 9999.9 0 8.9 24 8.9 24 15.9 999.9 36.3* 25.3* 0.00I 999.9 000000 724050 13743 19380202 31.4 24 20.0 24 1007.2 24 9999.9 0 7.2 24 4.7 24 9.9 999.9 45.3* 22.5* 0.00I 999.9 000000 724050 13743 19380203 39.0 24 34.4 24 1004.5 24 9999.9 0 5.3 24 4.6 24 9.9 999.9 49.3* 34.3* 99.99 999.9 110000 724050 13743 19380204 43.7 24 35.3 24 1003.0 24 9999.9 0 4.0 24 4.7 24 11.1 999.9 57.4* 33.4* 0.00I 999.9 100000 724050 13743 19380205 40.4 24 32.0 24 1005.2 24 9999.9 0 4.1 24 3.1 24 8.9 999.9 54.3* 30.4* 0.00I 999.9 100000 724050 13743 19380206 50.3 24 44.7 24 1002.6 24 9999.9 0 4.6 24 8.2 24 19.0 999.9 70.3* 36.3* 0.00I 999.9 100000 724050 13743 19380207 52.9 24 41.5 24 1001.0 24 9999.9 0 10.2 24 14.5 24 23.9 999.9 64.4* 40.3* 99.99 999.9 010000 724050 13743 19380208 42.3 24 26.1 24 1005.8 24 9999.9 0 6.6 24 5.1 24 13.0 999.9 56.3* 28.4* 0.00I 999.9 000000 724050 13743 19380209 45.7 23 29.7 23 1003.6 23 9999.9 0 5.5 23 6.8 23 16.9 999.9 63.3* 32.4* 0.00I 999.9 000000 724050 13743 19380210 55.3 24 39.1 24 1001.8 24 9999.9 0 8.0 24 8.8 24 16.9 999.9 60.3* 47.3* 99.99 999.9 010000 724050 13743 19380211 33.8 24 20.7 24 1005.3 24 9999.9 0 6.5 24 7.6 24 15.0 999.9 44.4* 29.3* 99.99 999.9 111000 724050 13743 19380212 34.5 24 32.8 24 1003.9 24 9999.9 0 1.9 24 4.8 24 8.9 999.9 38.3* 31.3* 99.99 999.9 110000 724050 13743 19380213 43.1 24 40.6 24 1002.6 24 9999.9 0 2.2 24 6.6 24 15.0 999.9 57.4* 37.4* 99.99 999.9 110000 724050 13743 19380214 53.5 24 42.1 24 1000.5 24 9999.9 0 3.6 24 9.2 24 15.9 999.9 67.3* 44.4* 0.00I 999.9 000000 724050 13743 19380215 39.1 24 21.6 24 1003.8 24 9999.9 0 10.0 24 10.2 24 16.9 999.9 51.3* 32.4* 0.00I 999.9 000000 724050 13743 19380216 33.4 24 15.8 24 1005.4 24 9999.9 0 9.1 24 7.2 24 13.0 999.9 42.4* 25.3* 0.00I 999.9 000000 724050 13743 19380217 33.1 24 22.0 24 1005.5 24 9999.9 0 6.5 24 5.5 24 9.9 999.9 43.3* 23.4* 0.00I 999.9 000000 724050 13743 19380218 53.2 24 39.7 24 1001.3 24 9999.9 0 8.0 24 10.5 24 16.9 999.9 71.2* 39.4* 0.00I 999.9 000000 724050 13743 19380219 58.0 24 52.9 24 997.9 24 9999.9 0 6.0 24 9.8 24 15.9 999.9 65.3* 45.3* 99.99 999.9 110000 724050 13743 19380220 41.2 24 36.6 24 998.1 24 9999.9 0 4.9 24 14.3 24 16.9 999.9 44.4* 34.3* 99.99 999.9 111010 724050 13743 19380221 36.4 24 25.9 24 1004.3 24 9999.9 0 9.3 24 8.5 24 14.0 999.9 44.4* 29.3* 0.00I 999.9 000000 724050 13743 19380222 34.2 24 30.2 24 1004.9 24 9999.9 0 5.6 24 4.3 24 7.0 999.9 39.4* 28.4* 99.99 999.9 110000 724050 13743 19380223 41.9 24 41.0 24 1001.4 24 9999.9 0 1.7 24 2.5 24 8.9 999.9 46.4* 39.4* 99.99 999.9 110000 724050 13743 19380224 40.5 22 32.2 22 999.3 22 9999.9 0 6.2 22 11.2 22 15.9 999.9 44.4* 35.4* 0.00I 999.9 100000 724050 13743 19380225 33.0 24 22.5 24 998.8 23 9999.9 0 9.7 24 13.0 23 18.1 999.9 37.4* 30.4* 0.00I 999.9 000000 724050 13743 19380226 34.2 24 20.4 24 997.6 24 9999.9 0 8.0 24 8.3 24 15.9 999.9 42.4* 26.4* 0.00I 999.9 000000 724050 13743 19380227 40.1 24 30.4 24 995.5 24 9999.9 0 7.9 24 8.7 24 20.0 999.9 46.4* 35.4* 0.00I 999.9 000000 724050 13743 19380228 30.6 24 9.2 24 998.2 24 9999.9 0 10.5 24 22.9 24 28.0 999.9 44.4* 22.5* 0.00I 999.9 000000 724050 13743 19380301 34.9 24 10.3 23 1000.4 24 9999.9 0 10.0 24 14.4 24 21.0 999.9 55.4* 22.5* 0.00I 999.9 000000 724050 13743 19380302 46.3 24 21.4 24 998.8 24 9999.9 0 8.5 24 10.7 24 16.9 999.9 61.3* 35.4* 0.00I 999.9 000000 724050 13743 19380303 46.2 24 32.1 23 998.2 23 9999.9 0 4.0 24 8.7 24 16.9 999.9 60.3* 28.4* 99.99 999.9 111000 724050 13743 19380304 28.2 23 19.1 23 1002.4 23 9999.9 0 6.4 23 7.2 23 15.9 999.9 32.4* 21.4* 0.00I 999.9 000000 724050 13743 19380305 44.9 24 37.7 24 999.1 24 9999.9 0 6.1 24 11.8 24 16.9 999.9 67.3* 32.4* 99.99 999.9 110000 724050 13743 19380306 53.6 24 42.4 24 997.2 24 9999.9 0 8.9 24 16.1 24 28.0 999.9 65.3* 38.3* 99.99 999.9 010000 724050 13743 19380307 41.5 24 24.1 24 1001.9 24 9999.9 0 9.9 24 11.5 24 16.9 999.9 53.4* 36.3* 0.00I 999.9 000000 724050 13743 19380308 46.1 24 27.1 24 1001.6 24 9999.9 0 9.2 24 10.0 24 16.9 999.9 60.3* 36.3* 0.00I 999.9 000000 724050 13743 19380309 44.4 24 27.9 24 1002.5 24 9999.9 0 7.7 24 5.3 24 8.9 999.9 51.3* 32.4* 0.00I 999.9 000000 724050 13743 19380310 37.7 24 32.8 24 999.7 24 9999.9 0 2.4 24 9.2 24 16.9 999.9 46.4* 32.4* 99.99 999.9 111000 724050 13743 19380311 36.2 24 29.2 24 1000.0 24 9999.9 0 4.5 24 5.3 24 9.9 999.9 50.4* 25.3* 0.00I 999.9 000000 724050 13743 19380312 46.8 24 32.7 24 999.8 24 9999.9 0 7.9 24 7.9 24 27.0 999.9 60.3* 36.3* 0.00I 999.9 000000 724050 13743 19380313 54.4 24 36.3 24 999.5 24 9999.9 0 8.4 24 11.7 24 22.0 999.9 67.3* 46.4* 99.99 999.9 010000 724050 13743 19380314 52.9 24 49.1 24 998.8 24 9999.9 0 2.1 24 4.2 24 14.0 999.9 60.3* 46.4* 99.99 999.9 111000 724050 13743 19380315 39.8 24 36.9 24 1001.5 24 9999.9 0 3.3 24 10.4 24 16.9 999.9 50.4* 34.3* 99.99 999.9 110000 724050 13743 19380316 40.3 24 38.9 24 1001.1 24 9999.9 0 1.4 24 2.9 24 8.9 999.9 44.4* 38.3* 99.99 999.9 110000 724050 13743 19380317 48.8 24 46.5 24 997.0 24 9999.9 0 1.9 24 4.0 24 9.9 999.9 55.4* 44.4* 99.99 999.9 110000 724050 13743 19380318 48.5 24 42.7 24 998.6 24 9999.9 0 4.0 24 9.7 24 15.9 999.9 60.3* 42.4* 99.99 999.9 111000 724050 13743 19380319 51.1 24 39.4 24 1001.1 24 9999.9 0 7.1 24 7.3 24 16.9 999.9 67.3* 36.3* 0.00I 999.9 000000 724050 13743 19380320 60.6 24 48.9 24 999.6 24 9999.9 0 6.7 24 7.3 24 16.9 999.9 74.3* 53.4* 99.99 999.9 010000 724050 13743 19380321 63.3 24 48.4 24 1001.1 24 9999.9 0 8.7 24 5.0 24 9.9 999.9 79.3* 49.3* 0.00I 999.9 000000 724050 13743 19380322 62.3 24 49.1 22 1000.9 24 9999.9 0 6.2 24 5.1 24 9.9 999.9 9999.9 39.4* 99.99 999.9 110000 724050 13743 19380323 69.4 24 57.0 24 999.9 24 9999.9 0 8.9 24 11.2 24 16.9 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19380324 61.5 24 42.9 24 999.6 24 9999.9 0 10.0 24 16.7 24 26.0 999.9 75.4* 52.3* 0.00I 999.9 000000 724050 13743 19380325 48.4 24 29.3 24 1002.1 24 9999.9 0 9.9 24 6.7 24 9.9 999.9 61.3* 38.3* 0.00I 999.9 000000 724050 13743 19380326 52.0 23 43.1 22 1000.1 23 9999.9 0 6.8 23 9.6 23 16.9 999.9 68.4* 44.4* 99.99 999.9 110000 724050 13743 19380327 51.6 24 27.5 23 1000.9 24 9999.9 0 12.0 24 14.8 24 26.0 999.9 62.4* 42.4* 0.00I 999.9 000000 724050 13743 19380328 49.0 24 19.5 24 1002.9 24 9999.9 0 12.0 24 7.1 24 16.9 999.9 59.4* 34.3* 0.00I 999.9 000000 724050 13743 19380329 49.4 24 35.1 24 1002.8 24 9999.9 0 8.6 24 8.3 24 19.0 999.9 60.3* 37.4* 99.99 999.9 010000 724050 13743 19380330 55.8 24 51.6 24 1001.4 24 9999.9 0 3.4 24 5.3 24 8.9 999.9 64.4* 47.3* 99.99 999.9 110000 724050 13743 19380331 58.9 24 56.1 24 999.4 24 9999.9 0 1.2 24 4.1 24 8.9 999.9 67.3* 52.3* 99.99 999.9 110000 724050 13743 19380401 61.8 24 49.4 24 997.8 24 9999.9 0 6.4 24 5.8 24 15.9 999.9 67.3* 57.4* 0.00I 999.9 100000 724050 13743 19380402 49.7 24 40.4 24 998.0 24 9999.9 0 6.3 24 4.8 24 13.0 999.9 62.4* 43.3* 99.99 999.9 110000 724050 13743 19380403 44.2 24 27.7 24 999.6 24 9999.9 0 9.6 24 12.3 24 16.9 999.9 52.3* 38.3* 0.00I 999.9 000000 724050 13743 19380404 48.2 24 28.9 24 999.6 24 9999.9 0 9.2 24 10.5 24 19.0 999.9 63.3* 35.4* 0.00I 999.9 000000 724050 13743 19380405 49.5 23 28.4 23 1001.0 23 9999.9 0 9.7 23 8.5 23 15.9 999.9 58.3* 41.4* 0.00I 999.9 000000 724050 13743 19380406 44.5 24 31.5 24 1002.3 24 9999.9 0 9.2 24 8.9 24 15.9 999.9 54.3* 38.3* 0.00I 999.9 000000 724050 13743 19380407 37.9 24 34.9 24 1002.4 24 9999.9 0 4.2 24 12.0 24 16.9 999.9 42.4* 35.4* 99.99 999.9 110000 724050 13743 19380408 40.5 24 38.9 24 1002.0 24 9999.9 0 2.2 24 9.9 24 15.0 999.9 45.3* 38.3* 99.99 999.9 110000 724050 13743 19380409 45.8 24 42.2 24 994.6 24 9999.9 0 3.2 24 9.8 24 26.0 999.9 55.4* 42.4* 99.99 999.9 110000 724050 13743 19380410 43.7 24 25.3 24 998.3 23 9999.9 0 11.3 24 17.5 24 29.9 999.9 53.4* 36.3* 0.00I 999.9 000000 724050 13743 19380411 47.6 23 30.3 23 1003.1 23 9999.9 0 8.8 23 9.1 23 16.9 999.9 67.3* 31.3* 0.00I 999.9 000000 724050 13743 19380412 58.6 23 40.4 23 1002.1 22 9999.9 0 9.2 23 7.1 23 14.0 999.9 78.3* 41.4* 0.00I 999.9 000000 724050 13743 19380413 62.0 24 46.3 24 1002.1 24 9999.9 0 5.7 24 4.6 24 9.9 999.9 84.4* 44.4* 0.00I 999.9 000000 724050 13743 19380414 66.7 24 50.0 24 1001.6 24 9999.9 0 6.7 24 3.8 24 9.9 999.9 86.4* 48.4* 0.00I 999.9 000000 724050 13743 19380415 70.3 23 51.9 23 1000.4 23 9999.9 0 6.7 23 6.8 23 16.9 999.9 85.3* 56.3* 0.00I 999.9 000000 724050 13743 19380416 63.5 24 51.1 24 1001.3 24 9999.9 0 8.7 24 6.8 24 15.9 999.9 76.3* 56.3* 0.00I 999.9 000000 724050 13743 19380417 55.3 24 48.6 24 1002.8 24 9999.9 0 7.8 24 6.6 24 9.9 999.9 63.3* 50.4* 99.99 999.9 110000 724050 13743 19380418 63.8 24 57.9 24 999.6 24 9999.9 0 7.3 24 9.2 24 16.9 999.9 73.4* 56.3* 99.99 999.9 110000 724050 13743 19380419 66.1 23 49.2 23 998.1 23 9999.9 0 11.5 23 9.9 23 16.9 999.9 81.3* 54.3* 99.99 999.9 010000 724050 13743 19380420 69.7 24 51.2 24 997.5 24 9999.9 0 7.7 24 7.1 24 15.9 999.9 86.4* 52.3* 0.00I 999.9 000000 724050 13743 19380421 67.3 24 53.5 24 999.3 24 9999.9 0 9.3 24 7.8 24 15.9 999.9 79.3* 60.3* 99.99 999.9 010000 724050 13743 19380422 61.5 24 51.3 24 999.7 23 9999.9 0 6.6 24 7.3 24 19.0 999.9 64.4* 59.4* 99.99 999.9 110000 724050 13743 19380423 53.0 24 29.9 24 1002.4 24 9999.9 0 10.1 24 11.8 24 19.0 999.9 63.3* 41.4* 0.00I 999.9 000000 724050 13743 19380424 53.5 24 34.1 24 1002.8 24 9999.9 0 6.8 24 4.6 24 9.9 999.9 67.3* 38.3* 0.00I 999.9 000000 724050 13743 19380425 57.4 24 40.4 24 1002.4 24 9999.9 0 7.3 24 4.8 24 9.9 999.9 76.3* 42.4* 0.00I 999.9 000000 724050 13743 19380426 61.6 24 50.2 24 1003.3 24 9999.9 0 6.3 24 5.2 24 11.1 999.9 77.4* 47.3* 0.00I 999.9 100000 724050 13743 19380427 66.0 24 55.0 24 1003.4 24 9999.9 0 6.7 24 7.6 24 13.0 999.9 83.3* 54.3* 0.00I 999.9 100000 724050 13743 19380428 74.7 24 58.8 24 1001.5 24 9999.9 0 8.0 24 9.8 24 15.0 999.9 88.3* 62.4* 0.00I 999.9 000000 724050 13743 19380429 72.6 24 55.3 24 999.2 24 9999.9 0 7.7 24 8.7 24 15.9 999.9 82.4* 61.3* 99.99 999.9 010000 724050 13743 19380430 62.5 24 50.2 24 999.2 24 9999.9 0 7.3 24 8.4 24 22.0 999.9 71.2* 55.4* 0.00I 999.9 000000 724050 13743 19380501 58.1 24 45.8 24 1000.3 24 9999.9 0 9.9 24 8.9 24 15.9 999.9 73.4* 49.3* 0.00I 999.9 000000 724050 13743 19380502 65.6 24 47.2 24 1000.7 24 9999.9 0 9.7 24 5.7 24 13.0 999.9 86.4* 47.3* 0.00I 999.9 000000 724050 13743 19380503 71.4 24 53.2 24 999.6 24 9999.9 0 6.4 24 4.5 24 9.9 999.9 87.3* 58.3* 0.00I 999.9 000000 724050 13743 19380504 71.2 24 55.0 24 998.9 24 9999.9 0 7.0 24 5.2 24 9.9 999.9 85.3* 60.3* 0.00I 999.9 000000 724050 13743 19380505 72.7 24 60.3 24 997.8 24 9999.9 0 8.6 24 6.6 24 14.0 999.9 87.3* 61.3* 0.00I 999.9 000000 724050 13743 19380506 73.1 24 57.5 24 997.2 24 9999.9 0 10.4 24 10.6 24 20.0 999.9 82.4* 65.3* 0.00I 999.9 000000 724050 13743 19380507 70.9 24 49.8 24 999.0 24 9999.9 0 11.8 24 8.4 24 16.9 999.9 85.3* 54.3* 0.00I 999.9 000000 724050 13743 19380508 67.3 24 54.0 24 998.8 24 9999.9 0 8.8 24 6.2 24 9.9 999.9 77.4* 59.4* 99.99 999.9 010000 724050 13743 19380509 63.1 24 52.9 24 998.4 24 9999.9 0 8.6 24 7.3 24 13.0 999.9 75.4* 57.4* 99.99 999.9 111000 724050 13743 19380510 62.2 24 47.4 24 997.7 24 9999.9 0 9.6 24 12.5 24 22.0 999.9 67.3* 55.4* 0.00I 999.9 000000 724050 13743 19380511 61.2 24 48.4 23 998.2 24 9999.9 0 8.2 24 7.5 24 13.0 999.9 69.3* 53.4* 0.00I 999.9 000000 724050 13743 19380512 55.0 24 35.7 24 999.7 24 9999.9 0 11.1 24 12.1 24 16.9 999.9 64.4* 46.4* 99.99 999.9 010000 724050 13743 19380513 55.2 24 37.2 24 1000.3 24 9999.9 0 7.2 24 5.1 24 13.0 999.9 67.3* 46.4* 0.00I 999.9 000000 724050 13743 19380514 53.5 24 49.1 24 998.8 24 9999.9 0 6.1 24 7.4 24 11.1 999.9 59.4* 50.4* 99.99 999.9 111000 724050 13743 19380515 52.2 19 47.2 19 994.8 19 9999.9 0 7.4 19 11.1 19 19.0 999.9 59.4* 47.3* 99.99 999.9 110000 724050 13743 19380516 62.9 22 44.0 22 997.6 22 9999.9 0 10.5 22 16.3 22 22.0 999.9 73.4* 53.4* 0.00I 999.9 000000 724050 13743 19380517 67.8 19 46.6 19 1000.4 19 9999.9 0 10.5 19 10.7 19 15.9 999.9 77.4* 54.3* 0.00I 999.9 000000 724050 13743 19380518 63.2 24 52.0 24 1001.2 24 9999.9 0 6.2 24 4.5 24 8.9 999.9 74.3* 56.3* 99.99 999.9 110000 724050 13743 19380519 59.5 24 55.7 24 1001.5 24 9999.9 0 6.0 24 4.3 24 8.0 999.9 65.3* 55.4* 99.99 999.9 110000 724050 13743 19380520 69.7 24 63.5 24 999.2 24 9999.9 0 5.1 24 6.6 24 15.9 999.9 88.3* 62.4* 99.99 999.9 110010 724050 13743 19380521 75.6 24 63.9 24 997.9 24 9999.9 0 10.1 24 8.1 24 13.0 999.9 87.3* 66.4* 0.00I 999.9 000000 724050 13743 19380522 72.7 24 61.9 24 998.7 24 9999.9 0 9.6 24 6.8 24 22.0 999.9 84.4* 63.3* 99.99 999.9 110010 724050 13743 19380523 71.1 24 63.5 24 1000.0 24 9999.9 0 6.4 24 5.7 24 9.9 999.9 80.2* 64.4* 99.99 999.9 110000 724050 13743 19380524 71.2 23 66.0 23 998.9 23 9999.9 0 7.0 23 8.8 23 16.9 999.9 76.3* 65.3* 99.99 999.9 011010 724050 13743 19380525 58.7 24 44.7 24 1002.4 24 9999.9 0 8.5 24 8.1 24 15.9 999.9 70.3* 50.4* 0.00I 999.9 000000 724050 13743 19380526 57.2 24 51.7 24 1002.0 24 9999.9 0 4.8 24 5.7 24 9.9 999.9 60.3* 53.4* 99.99 999.9 110000 724050 13743 19380527 61.9 24 58.9 24 1001.2 24 9999.9 0 2.4 24 6.7 24 8.9 999.9 69.3* 57.4* 99.99 999.9 110000 724050 13743 19380528 70.1 24 62.9 24 1000.9 24 9999.9 0 3.1 24 3.8 24 7.0 999.9 79.3* 64.4* 99.99 999.9 110000 724050 13743 19380529 64.8 24 60.1 24 1000.9 24 9999.9 0 4.6 24 7.3 24 11.1 999.9 72.3* 59.4* 99.99 999.9 110000 724050 13743 19380530 61.2 24 50.1 24 1002.3 24 9999.9 0 10.1 24 11.4 24 15.9 999.9 71.2* 54.3* 99.99 999.9 010000 724050 13743 19380531 57.2 24 42.9 24 1003.5 24 9999.9 0 9.4 24 7.2 24 12.0 999.9 71.2* 46.4* 0.00I 999.9 000000 724050 13743 19380601 59.3 24 46.0 24 1002.5 24 9999.9 0 9.4 24 5.7 24 12.0 999.9 73.4* 46.4* 0.00I 999.9 100000 724050 13743 19380602 67.6 24 56.7 24 1000.2 24 9999.9 0 9.2 24 10.2 24 16.9 999.9 81.3* 56.3* 0.00I 999.9 100000 724050 13743 19380603 69.3 24 61.2 24 999.3 24 9999.9 0 9.3 24 5.1 24 9.9 999.9 74.3* 64.4* 99.99 999.9 010000 724050 13743 19380604 70.0 24 60.8 24 999.5 24 9999.9 0 8.2 24 4.4 24 9.9 999.9 81.3* 62.4* 99.99 999.9 010000 724050 13743 19380605 70.8 24 59.7 24 999.2 24 9999.9 0 8.0 24 5.7 24 16.9 999.9 81.3* 63.3* 99.99 999.9 010000 724050 13743 19380606 69.3 24 53.3 24 1000.3 24 9999.9 0 9.3 24 8.9 24 14.0 999.9 85.3* 52.3* 0.00I 999.9 000010 724050 13743 19380607 79.4 24 64.8 24 999.0 24 9999.9 0 8.9 24 11.0 24 20.0 999.9 92.3* 67.3* 0.00I 999.9 000000 724050 13743 19380608 75.0 24 58.9 24 999.1 24 9999.9 0 8.9 24 7.1 24 13.0 999.9 84.4* 67.3* 99.99 999.9 010000 724050 13743 19380609 74.9 24 55.5 24 1001.2 24 9999.9 0 8.5 24 5.2 24 9.9 999.9 85.3* 65.3* 0.00I 999.9 000000 724050 13743 19380610 72.9 24 61.7 24 1002.6 24 9999.9 0 7.3 24 4.4 24 9.9 999.9 83.3* 64.4* 0.00I 999.9 000000 724050 13743 19380611 80.8 24 69.9 24 1001.5 24 9999.9 0 8.4 24 8.6 24 13.0 999.9 94.3* 72.3* 0.00I 999.9 000000 724050 13743 19380612 82.0 24 71.0 24 1000.1 24 9999.9 0 9.3 24 7.4 24 28.0 999.9 94.3* 72.3* 99.99 999.9 010010 724050 13743 19380613 69.7 24 56.8 24 1000.5 24 9999.9 0 10.0 24 12.4 24 22.0 999.9 76.3* 61.3* 99.99 999.9 010000 724050 13743 19380614 69.1 24 54.9 24 1001.7 24 9999.9 0 9.3 24 5.6 24 9.9 999.9 81.3* 58.3* 0.00I 999.9 000000 724050 13743 19380615 73.4 22 55.7 21 1001.4 22 9999.9 0 9.9 22 3.9 22 9.9 999.9 84.4* 58.3* 0.00I 999.9 000000 724050 13743 19380616 68.9 24 58.9 24 1000.7 24 9999.9 0 8.8 24 4.5 24 8.9 999.9 77.4* 60.3* 0.00I 999.9 000000 724050 13743 19380617 73.1 24 63.5 24 1000.1 24 9999.9 0 7.9 24 5.1 24 9.9 999.9 82.4* 66.4* 99.99 999.9 010000 724050 13743 19380618 75.4 24 67.0 24 1000.2 24 9999.9 0 7.9 24 4.7 24 12.0 999.9 84.4* 66.4* 99.99 999.9 010010 724050 13743 19380619 78.0 23 67.8 23 1000.4 23 9999.9 0 8.4 23 5.1 23 9.9 999.9 86.4* 72.3* 99.99 999.9 010000 724050 13743 19380620 69.9 24 65.1 24 1000.4 24 9999.9 0 4.6 24 5.5 24 9.9 999.9 78.3* 68.4* 99.99 999.9 110010 724050 13743 19380621 74.3 24 66.9 24 999.8 24 9999.9 0 5.9 24 5.1 24 9.9 999.9 84.4* 67.3* 99.99 999.9 110000 724050 13743 19380622 74.8 24 68.1 24 998.8 24 9999.9 0 6.5 24 4.5 24 9.9 999.9 83.3* 68.4* 99.99 999.9 110000 724050 13743 19380623 76.3 24 67.1 24 998.6 24 9999.9 0 6.8 24 5.4 24 9.9 999.9 89.2* 68.4* 0.00I 999.9 000010 724050 13743 19380624 77.4 24 65.6 24 999.3 24 9999.9 0 7.1 24 4.2 24 8.9 999.9 91.2* 65.3* 99.99 999.9 110000 724050 13743 19380625 80.8 24 68.9 24 998.9 24 9999.9 0 7.6 24 8.8 24 15.9 999.9 92.3* 70.3* 0.00I 999.9 000000 724050 13743 19380626 83.3 24 71.3 24 998.1 23 9999.9 0 8.4 24 10.2 24 15.9 999.9 92.3* 76.3* 0.00I 999.9 000000 724050 13743 19380627 77.1 24 71.5 24 998.4 24 9999.9 0 7.4 24 7.5 24 13.0 999.9 84.4* 66.4* 99.99 999.9 010010 724050 13743 19380628 64.3 24 59.2 24 1000.0 24 9999.9 0 8.2 24 9.4 24 16.9 999.9 68.4* 62.4* 99.99 999.9 010000 724050 13743 19380629 69.8 24 54.5 24 1000.6 24 9999.9 0 9.6 24 7.5 24 15.9 999.9 82.4* 59.4* 0.00I 999.9 000000 724050 13743 19380630 71.4 24 55.6 24 1001.3 24 9999.9 0 8.1 24 4.2 24 8.9 999.9 83.3* 58.3* 0.00I 999.9 000000 724050 13743 19380701 73.0 24 61.4 24 1000.2 24 9999.9 0 7.7 24 8.7 24 15.9 999.9 80.2* 65.3* 0.00I 999.9 000000 724050 13743 19380702 77.3 24 67.6 24 998.4 24 9999.9 0 8.0 24 5.8 24 8.9 999.9 88.3* 71.2* 99.99 999.9 010000 724050 13743 19380703 76.6 24 58.0 24 998.8 24 9999.9 0 9.2 24 7.1 24 13.0 999.9 85.3* 67.3* 99.99 999.9 010000 724050 13743 19380704 73.2 24 54.1 24 999.9 24 9999.9 0 15.5 24 6.0 24 13.0 999.9 82.4* 64.4* 99.99 999.9 010000 724050 13743 19380705 73.3 24 55.8 24 1000.0 24 9999.9 0 9.8 24 4.0 24 9.9 999.9 87.3* 60.3* 0.00I 999.9 000000 724050 13743 19380706 77.1 24 59.0 24 999.7 24 9999.9 0 9.3 24 4.4 24 8.9 999.9 92.3* 62.4* 0.00I 999.9 000000 724050 13743 19380707 80.5 24 64.5 24 1000.1 24 9999.9 0 6.7 24 4.2 24 9.9 999.9 94.3* 68.4* 0.00I 999.9 000000 724050 13743 19380708 81.1 24 66.7 24 1000.5 24 9999.9 0 6.8 24 6.5 24 14.0 999.9 90.3* 67.3* 0.00I 999.9 000000 724050 13743 19380709 78.9 24 68.8 24 1000.1 24 9999.9 0 7.1 24 7.6 24 13.0 999.9 86.4* 72.3* 99.99 999.9 010000 724050 13743 19380710 81.2 24 69.7 24 1000.2 24 9999.9 0 7.2 24 5.7 24 9.9 999.9 96.3* 70.3* 0.00I 999.9 100000 724050 13743 19380711 85.4 24 70.8 24 1000.1 24 9999.9 0 7.6 24 6.5 24 16.9 999.9 96.3* 74.3* 0.00I 999.9 000000 724050 13743 19380712 80.9 24 68.8 24 999.0 24 9999.9 0 9.2 24 5.9 24 11.1 999.9 89.2* 72.3* 99.99 999.9 010010 724050 13743 19380713 82.0 23 69.6 23 999.3 23 9999.9 0 7.3 23 5.2 23 13.0 999.9 91.2* 72.3* 99.99 999.9 010010 724050 13743 19380714 79.0 24 71.2 24 998.3 24 9999.9 0 8.2 24 7.8 24 19.0 999.9 88.3* 74.3* 0.00I 999.9 000000 724050 13743 19380715 80.3 24 66.4 24 998.6 24 9999.9 0 10.1 24 6.2 24 12.0 999.9 92.3* 71.2* 99.99 999.9 010000 724050 13743 19380716 80.7 24 63.5 24 1000.1 24 9999.9 0 8.9 24 4.3 24 9.9 999.9 91.2* 70.3* 0.00I 999.9 000000 724050 13743 19380717 80.5 24 70.2 24 1000.3 24 9999.9 0 7.3 24 5.5 24 16.9 999.9 94.3* 72.3* 99.99 999.9 010010 724050 13743 19380718 78.5 24 72.0 24 999.9 24 9999.9 0 7.6 24 4.9 24 13.0 999.9 91.2* 72.3* 99.99 999.9 010010 724050 13743 19380719 78.1 24 71.9 24 999.9 24 9999.9 0 8.0 24 5.3 24 9.9 999.9 88.3* 72.3* 0.00I 999.9 100000 724050 13743 19380720 77.5 24 72.9 24 999.7 24 9999.9 0 7.5 24 6.9 24 12.0 999.9 86.4* 73.4* 99.99 999.9 010010 724050 13743 19380721 75.4 24 71.3 24 1000.4 24 9999.9 0 8.2 24 9.1 24 15.9 999.9 82.4* 70.3* 99.99 999.9 010000 724050 13743 19380722 75.3 24 71.0 24 1000.9 24 9999.9 0 7.4 24 9.1 24 14.0 999.9 82.4* 71.2* 99.99 999.9 110000 724050 13743 19380723 74.2 24 71.8 24 1000.7 24 9999.9 0 7.2 24 9.7 24 15.0 999.9 78.3* 71.2* 99.99 999.9 010000 724050 13743 19380724 74.6 24 69.0 24 1000.7 24 9999.9 0 8.1 24 3.0 24 8.9 999.9 82.4* 69.3* 99.99 999.9 110000 724050 13743 19380725 75.4 24 70.8 24 1000.7 24 9999.9 0 6.5 24 2.8 24 9.9 999.9 82.4* 68.4* 0.00I 999.9 100000 724050 13743 19380726 74.7 24 69.8 24 1000.5 24 9999.9 0 8.1 24 3.9 24 9.9 999.9 86.4* 70.3* 99.99 999.9 110000 724050 13743 19380727 78.1 23 69.9 21 999.9 23 9999.9 0 6.5 23 4.1 23 8.0 999.9 90.3* 68.4* 0.00I 999.9 100000 724050 13743 19380728 81.2 24 71.3 24 1000.0 24 9999.9 0 7.4 24 4.7 24 9.9 999.9 92.3* 70.3* 0.00I 999.9 000000 724050 13743 19380729 79.7 24 72.2 24 999.9 24 9999.9 0 7.2 24 7.3 24 13.0 999.9 92.3* 71.2* 99.99 999.9 010010 724050 13743 19380730 77.3 24 70.4 24 1000.6 24 9999.9 0 6.9 24 5.3 24 9.9 999.9 89.2* 71.2* 99.99 999.9 010000 724050 13743 19380731 79.7 24 71.2 24 1000.7 24 9999.9 0 8.5 24 7.8 24 15.9 999.9 89.2* 72.3* 99.99 999.9 010000 724050 13743 19380801 82.0 24 72.3 24 999.6 24 9999.9 0 9.9 24 10.5 24 20.0 999.9 90.3* 74.3* 0.00I 999.9 000000 724050 13743 19380802 80.2 24 72.2 24 1000.2 24 9999.9 0 8.8 24 4.8 24 9.9 999.9 89.2* 73.4* 99.99 999.9 010010 724050 13743 19380803 80.7 24 73.4 24 1000.9 24 9999.9 0 8.9 24 5.6 24 9.9 999.9 88.3* 73.4* 0.00I 999.9 000000 724050 13743 19380804 82.7 24 73.9 24 1000.5 24 9999.9 0 8.4 24 4.6 24 9.9 999.9 92.3* 76.3* 0.00I 999.9 100000 724050 13743 19380805 80.8 24 74.5 24 1000.3 24 9999.9 0 5.6 24 4.4 24 12.0 999.9 88.3* 72.3* 99.99 999.9 110010 724050 13743 19380806 79.6 24 73.2 24 1000.2 24 9999.9 0 8.1 24 7.2 24 13.0 999.9 86.4* 74.3* 0.00I 999.9 100000 724050 13743 19380807 81.2 24 73.4 24 1000.2 24 9999.9 0 9.2 24 8.3 24 13.0 999.9 86.4* 75.4* 99.99 999.9 010000 724050 13743 19380808 81.5 24 73.1 24 1000.2 24 9999.9 0 9.9 24 7.0 24 15.9 999.9 89.2* 70.3* 0.00I 999.9 000000 724050 13743 19380809 81.8 24 70.8 24 1000.1 24 9999.9 0 8.7 24 6.9 24 13.0 999.9 93.4* 72.3* 0.00I 999.9 000000 724050 13743 19380810 81.9 24 71.8 24 1000.4 24 9999.9 0 6.3 24 3.8 24 8.9 999.9 92.3* 74.3* 99.99 999.9 010010 724050 13743 19380811 79.7 24 73.1 24 998.4 24 9999.9 0 7.4 24 7.7 24 14.0 999.9 91.2* 70.3* 99.99 999.9 110010 724050 13743 19380812 77.3 23 61.3 23 999.5 23 9999.9 0 12.1 23 10.0 23 15.0 999.9 83.3* 68.4* 0.00I 999.9 000000 724050 13743 19380813 75.6 24 60.7 24 1001.5 24 9999.9 0 10.5 24 5.4 24 9.9 999.9 88.3* 63.3* 0.00I 999.9 000000 724050 13743 19380814 78.3 24 66.0 24 1001.4 24 9999.9 0 8.4 24 4.4 24 13.0 999.9 92.3* 65.3* 0.00I 999.9 000000 724050 13743 19380815 84.1 24 71.5 24 1000.5 24 9999.9 0 7.3 24 3.8 24 8.9 999.9 97.3* 71.2* 0.00I 999.9 000000 724050 13743 19380816 86.2 24 73.8 24 1000.3 24 9999.9 0 9.0 24 4.8 24 9.9 999.9 98.2* 77.4* 0.00I 999.9 000000 724050 13743 19380817 83.4 24 74.2 24 999.2 24 9999.9 0 8.6 24 5.1 24 13.0 999.9 95.4* 76.3* 99.99 999.9 010010 724050 13743 19380818 75.5 24 66.7 24 999.1 24 9999.9 0 9.1 24 8.2 24 15.0 999.9 80.2* 72.3* 99.99 999.9 110010 724050 13743 19380819 74.8 24 61.5 24 1000.7 24 9999.9 0 9.6 24 6.3 24 14.0 999.9 85.3* 64.4* 0.00I 999.9 000000 724050 13743 19380820 76.6 24 64.7 24 1001.1 24 9999.9 0 8.2 24 3.1 24 9.9 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19380821 78.1 24 64.2 24 1001.3 24 9999.9 0 7.8 24 3.0 24 8.9 999.9 90.3* 66.4* 0.00I 999.9 000000 724050 13743 19380822 78.9 24 67.3 24 1000.6 24 9999.9 0 8.1 24 5.8 24 12.0 999.9 91.2* 68.4* 0.00I 999.9 000000 724050 13743 19380823 79.2 24 66.1 24 1000.5 24 9999.9 0 8.7 24 4.8 24 9.9 999.9 89.2* 67.3* 0.00I 999.9 000000 724050 13743 19380824 78.9 24 62.8 24 998.5 24 9999.9 0 9.3 24 10.0 24 23.9 999.9 86.4* 71.2* 0.00I 999.9 000000 724050 13743 19380825 71.8 24 55.3 24 999.3 24 9999.9 0 10.2 24 5.1 24 15.9 999.9 83.3* 61.3* 0.00I 999.9 000000 724050 13743 19380826 71.7 24 58.0 24 999.9 24 9999.9 0 7.8 24 4.1 24 12.0 999.9 86.4* 60.3* 0.00I 999.9 000000 724050 13743 19380827 77.3 24 63.3 24 999.4 24 9999.9 0 7.8 24 3.7 24 9.9 999.9 91.2* 65.3* 0.00I 999.9 000000 724050 13743 19380828 76.6 24 62.6 24 1000.4 24 9999.9 0 9.8 24 5.7 24 12.0 999.9 87.3* 66.4* 0.00I 999.9 000000 724050 13743 19380829 74.1 24 61.8 24 1000.7 24 9999.9 0 8.5 24 4.5 24 9.9 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19380830 76.5 24 63.3 24 1000.4 24 9999.9 0 8.4 24 4.0 24 8.9 999.9 91.2* 63.3* 0.00I 999.9 000000 724050 13743 19380831 77.6 24 67.1 24 1000.2 24 9999.9 0 7.5 24 6.9 24 12.0 999.9 89.2* 67.3* 99.99 999.9 010010 724050 13743 19380901 78.6 24 66.4 24 999.2 24 9999.9 0 7.3 24 7.5 24 13.0 999.9 84.4* 72.3* 0.00I 999.9 000000 724050 13743 19380902 70.2 24 59.6 24 1000.6 24 9999.9 0 7.7 24 4.9 24 9.9 999.9 77.4* 63.3* 0.00I 999.9 000000 724050 13743 19380903 67.9 24 62.2 24 1001.1 24 9999.9 0 6.0 24 3.2 24 8.9 999.9 73.4* 63.3* 99.99 999.9 010000 724050 13743 19380904 74.9 24 65.3 24 999.5 24 9999.9 0 6.2 24 8.3 24 19.0 999.9 88.3* 66.4* 0.00I 999.9 100000 724050 13743 19380905 76.3 24 62.2 24 1000.3 24 9999.9 0 9.2 24 5.9 24 11.1 999.9 85.3* 69.3* 0.00I 999.9 000000 724050 13743 19380906 69.3 24 53.9 24 1002.7 24 9999.9 0 9.1 24 5.5 24 9.9 999.9 75.4* 60.3* 0.00I 999.9 000000 724050 13743 19380907 73.0 24 63.0 24 1001.4 24 9999.9 0 9.0 24 6.6 24 19.0 999.9 86.4* 64.4* 99.99 999.9 010000 724050 13743 19380908 70.0 24 61.2 24 1001.1 24 9999.9 0 8.5 24 7.3 24 15.9 999.9 78.3* 64.4* 99.99 999.9 010010 724050 13743 19380909 64.5 24 53.1 24 1002.8 23 9999.9 0 8.5 24 4.2 24 9.9 999.9 74.3* 56.3* 0.00I 999.9 000000 724050 13743 19380910 63.5 24 51.2 24 1003.0 24 9999.9 0 10.4 24 4.7 24 8.9 999.9 73.4* 56.3* 0.00I 999.9 000000 724050 13743 19380911 64.4 24 57.1 24 1002.6 24 9999.9 0 8.7 24 3.7 24 7.0 999.9 68.4* 60.3* 99.99 999.9 011000 724050 13743 19380912 68.2 24 62.5 24 1002.1 24 9999.9 0 6.6 24 3.7 24 9.9 999.9 75.4* 64.4* 99.99 999.9 110000 724050 13743 19380913 74.7 24 67.6 24 999.0 24 9999.9 0 8.7 24 4.3 24 8.9 999.9 83.3* 68.4* 0.00I 999.9 100000 724050 13743 19380914 73.5 24 67.9 24 997.7 24 9999.9 0 5.8 24 3.0 24 6.0 999.9 78.3* 66.4* 99.99 999.9 110000 724050 13743 19380915 76.9 24 71.0 24 996.4 24 9999.9 0 5.8 24 3.2 24 15.9 999.9 90.3* 71.2* 99.99 999.9 110000 724050 13743 19380916 69.3 24 59.0 24 998.4 24 9999.9 0 8.1 24 7.4 24 13.0 999.9 72.3* 66.4* 0.00I 999.9 000000 724050 13743 19380917 61.7 24 55.5 24 1000.0 24 9999.9 0 5.1 24 6.5 24 9.9 999.9 68.4* 57.4* 99.99 999.9 110000 724050 13743 19380918 63.8 24 62.3 24 1000.2 24 9999.9 0 1.6 24 3.5 24 7.0 999.9 70.3* 59.4* 99.99 999.9 110000 724050 13743 19380919 68.4 24 67.0 24 1000.5 24 9999.9 0 3.4 24 3.4 24 9.9 999.9 71.2* 66.4* 99.99 999.9 110000 724050 13743 19380920 61.9 24 60.5 24 999.8 24 9999.9 0 3.9 24 5.4 24 13.0 999.9 65.3* 57.4* 99.99 999.9 110000 724050 13743 19380921 58.9 24 50.6 23 997.5 24 9999.9 0 8.5 24 12.0 24 20.0 999.9 67.3* 54.3* 99.99 999.9 110000 724050 13743 19380922 57.4 24 45.3 24 998.8 24 9999.9 0 10.2 24 9.1 24 14.0 999.9 69.3* 48.4* 0.00I 999.9 000000 724050 13743 19380923 66.0 24 52.2 24 999.2 24 9999.9 0 9.9 24 8.9 24 15.9 999.9 81.3* 56.3* 0.00I 999.9 000000 724050 13743 19380924 68.5 24 57.2 24 1000.2 24 9999.9 0 7.1 24 6.0 24 13.0 999.9 86.4* 53.4* 0.00I 999.9 000000 724050 13743 19380925 66.3 24 50.5 24 1002.2 24 9999.9 0 10.4 24 5.9 24 11.1 999.9 74.3* 53.4* 0.00I 999.9 000000 724050 13743 19380926 60.0 24 51.0 24 1002.6 24 9999.9 0 6.8 24 4.1 24 11.1 999.9 74.3* 47.3* 0.00I 999.9 100000 724050 13743 19380927 69.0 24 59.3 24 1000.4 24 9999.9 0 8.9 24 7.8 24 14.0 999.9 84.4* 60.3* 0.00I 999.9 000000 724050 13743 19380928 69.5 24 57.7 24 1000.7 24 9999.9 0 6.3 24 4.2 23 8.0 999.9 77.4* 59.4* 0.00I 999.9 100000 724050 13743 19380929 65.7 24 62.7 24 1000.5 24 9999.9 0 2.3 24 4.7 24 11.1 999.9 69.3* 62.4* 99.99 999.9 110010 724050 13743 19380930 59.8 24 56.6 24 999.1 24 9999.9 0 2.6 24 9.1 24 13.0 999.9 62.4* 56.3* 99.99 999.9 110000 724050 13743 19381001 58.3 24 47.5 24 1000.2 24 9999.9 0 6.4 24 5.8 24 15.9 999.9 67.3* 51.3* 0.00I 999.9 100000 724050 13743 19381002 55.1 24 40.1 24 1002.9 24 9999.9 0 9.0 24 5.8 24 11.1 999.9 63.3* 43.3* 0.00I 999.9 000000 724050 13743 19381003 52.8 24 41.4 24 1003.7 24 9999.9 0 8.4 24 5.5 24 15.0 999.9 63.3* 43.3* 0.00I 999.9 000000 724050 13743 19381004 53.5 24 39.3 24 1002.7 24 9999.9 0 7.7 24 3.0 24 7.0 999.9 66.4* 41.4* 0.00I 999.9 000000 724050 13743 19381005 56.1 24 45.7 24 1002.0 24 9999.9 0 6.9 24 1.4 24 6.0 999.9 75.4* 43.3* 0.00I 999.9 000000 724050 13743 19381006 56.9 24 52.6 24 1001.5 24 9999.9 0 3.4 24 6.8 24 15.9 999.9 65.3* 51.3* 99.99 999.9 110000 724050 13743 19381007 52.1 24 40.3 24 1003.5 24 9999.9 0 11.1 24 8.6 24 15.9 999.9 59.4* 43.3* 99.99 999.9 110000 724050 13743 19381008 52.1 24 37.5 24 1003.1 24 9999.9 0 9.5 24 4.0 24 11.1 999.9 70.3* 39.4* 0.00I 999.9 000000 724050 13743 19381009 57.4 24 45.9 24 1002.1 24 9999.9 0 7.7 24 6.5 24 15.9 999.9 67.3* 48.4* 0.00I 999.9 000000 724050 13743 19381010 55.1 24 45.0 24 1003.2 24 9999.9 0 7.1 24 4.5 24 14.0 999.9 70.3* 43.3* 0.00I 999.9 100000 724050 13743 19381011 59.4 24 48.9 24 1003.6 24 9999.9 0 5.1 24 2.4 24 8.9 999.9 78.3* 46.4* 0.00I 999.9 000000 724050 13743 19381012 62.1 24 52.4 24 1003.2 24 9999.9 0 5.1 24 3.1 24 8.9 999.9 75.4* 48.4* 0.00I 999.9 000000 724050 13743 19381013 60.1 24 53.2 24 1001.8 24 9999.9 0 4.6 24 4.3 24 9.9 999.9 73.4* 47.3* 0.00I 999.9 000000 724050 13743 19381014 63.9 24 57.3 24 1001.2 23 9999.9 0 5.4 24 3.1 24 9.9 999.9 74.3* 54.3* 0.00I 999.9 100010 724050 13743 19381015 62.9 24 54.6 24 1002.3 24 9999.9 0 4.1 24 2.9 24 8.9 999.9 79.3* 45.3* 0.00I 999.9 000000 724050 13743 19381016 64.2 24 55.6 24 1002.8 24 9999.9 0 2.3 24 1.5 24 5.1 999.9 83.3* 51.3* 0.00I 999.9 100000 724050 13743 19381017 65.9 24 54.7 24 1002.1 24 9999.9 0 4.8 24 1.3 24 5.1 999.9 85.3* 51.3* 0.00I 999.9 000000 724050 13743 19381018 66.1 24 55.6 24 1001.4 24 9999.9 0 4.1 24 2.0 24 7.0 999.9 86.4* 51.3* 0.00I 999.9 000000 724050 13743 19381019 68.2 24 58.9 24 1000.4 24 9999.9 0 5.0 24 6.2 24 15.0 999.9 86.4* 56.3* 99.99 999.9 110000 724050 13743 19381020 68.2 24 58.3 24 997.8 24 9999.9 0 5.8 24 5.8 24 15.0 999.9 80.2* 58.3* 99.99 999.9 010000 724050 13743 19381021 54.3 24 41.2 24 997.3 24 9999.9 0 8.9 24 8.6 24 15.9 999.9 63.3* 46.4* 0.00I 999.9 000000 724050 13743 19381022 53.3 24 41.8 24 999.5 24 9999.9 0 7.2 24 4.2 24 9.9 999.9 68.4* 40.3* 0.00I 999.9 000000 724050 13743 19381023 55.2 24 49.6 24 1002.0 24 9999.9 0 4.2 24 3.0 24 8.9 999.9 66.4* 44.4* 0.00I 999.9 100000 724050 13743 19381024 60.9 24 57.4 24 998.8 24 9999.9 0 5.0 24 3.3 24 16.9 999.9 62.4* 54.3* 99.99 999.9 110000 724050 13743 19381025 52.3 24 36.5 24 999.2 24 9999.9 0 10.2 24 8.3 24 15.9 999.9 64.4* 41.4* 0.00I 999.9 000000 724050 13743 19381026 52.3 24 40.4 24 999.7 24 9999.9 0 6.8 24 4.5 24 13.0 999.9 72.3* 38.3* 0.00I 999.9 100000 724050 13743 19381027 57.1 24 41.3 24 997.5 24 9999.9 0 9.0 24 10.4 24 16.9 999.9 62.4* 50.4* 0.00I 999.9 000000 724050 13743 19381028 52.5 24 44.0 24 998.2 24 9999.9 0 7.9 24 14.0 24 22.0 999.9 57.4* 49.3* 99.99 999.9 010000 724050 13743 19381029 57.1 24 52.4 24 998.8 24 9999.9 0 6.0 24 9.1 24 13.0 999.9 63.3* 54.3* 99.99 999.9 110000 724050 13743 19381030 59.0 24 47.0 24 1000.5 24 9999.9 0 10.3 24 8.2 24 13.0 999.9 66.4* 50.4* 99.99 999.9 010000 724050 13743 19381031 52.1 23 40.6 23 1001.8 23 9999.9 0 8.0 23 4.9 23 9.9 999.9 61.3* 42.4* 0.00I 999.9 000000 724050 13743 19381101 48.9 24 41.7 24 1001.8 24 9999.9 0 2.8 24 1.1 24 2.9 999.9 68.4* 36.3* 0.00I 999.9 100000 724050 13743 19381102 52.1 24 43.6 24 1002.5 24 9999.9 0 2.1 24 1.5 24 8.0 999.9 75.4* 39.4* 0.00I 999.9 100000 724050 13743 19381103 52.0 24 44.9 24 1004.0 24 9999.9 0 3.1 24 3.6 24 9.9 999.9 71.2* 41.4* 0.00I 999.9 100000 724050 13743 19381104 59.4 24 55.1 24 1003.3 24 9999.9 0 5.1 24 3.3 24 9.9 999.9 71.2* 54.3* 99.99 999.9 110000 724050 13743 19381105 66.6 24 62.4 24 1001.7 24 9999.9 0 7.9 24 8.1 24 13.0 999.9 74.3* 61.3* 99.99 999.9 010000 724050 13743 19381106 68.1 24 65.4 24 1002.7 24 9999.9 0 7.0 24 5.8 24 13.0 999.9 73.4* 64.4* 99.99 999.9 110000 724050 13743 19381107 68.5 24 62.2 24 1003.0 24 9999.9 0 8.8 24 6.9 24 13.0 999.9 77.4* 62.4* 0.00I 999.9 000000 724050 13743 19381108 66.2 24 58.0 24 1001.0 24 9999.9 0 7.8 24 6.9 24 22.0 999.9 78.3* 53.4* 99.99 999.9 010000 724050 13743 19381109 45.6 23 31.1 23 1003.1 23 9999.9 0 9.7 23 11.1 23 16.9 999.9 52.3* 38.3* 99.99 999.9 010000 724050 13743 19381110 45.4 24 33.9 24 1003.6 24 9999.9 0 5.5 24 2.6 24 7.0 999.9 63.3* 33.4* 0.00I 999.9 000000 724050 13743 19381111 50.7 24 42.3 24 1002.3 24 9999.9 0 4.1 24 2.4 24 8.9 999.9 68.4* 40.3* 0.00I 999.9 000000 724050 13743 19381112 54.5 24 45.4 24 1001.7 24 9999.9 0 3.2 24 1.7 24 5.1 999.9 76.3* 43.3* 0.00I 999.9 000000 724050 13743 19381113 61.6 24 50.6 24 999.4 24 9999.9 0 8.5 24 9.1 24 26.0 999.9 74.3* 54.3* 0.00I 999.9 000000 724050 13743 19381114 52.5 24 32.8 24 999.3 23 9999.9 0 12.1 24 12.6 24 26.0 999.9 59.4* 45.3* 99.99 999.9 010000 724050 13743 19381115 46.2 24 25.9 24 1001.1 24 9999.9 0 10.1 24 6.0 24 16.9 999.9 61.3* 33.4* 0.00I 999.9 000000 724050 13743 19381116 43.5 24 23.6 24 1001.9 24 9999.9 0 9.7 24 8.3 24 15.9 999.9 52.3* 36.3* 0.00I 999.9 000000 724050 13743 19381117 49.2 24 40.7 24 999.9 24 9999.9 0 7.7 24 2.6 24 6.0 999.9 61.3* 41.4* 99.99 999.9 110000 724050 13743 19381118 61.0 24 53.6 24 999.6 24 9999.9 0 6.1 24 6.9 24 20.0 999.9 78.3* 48.4* 0.00I 999.9 100000 724050 13743 19381119 63.8 24 59.1 24 998.1 24 9999.9 0 6.9 24 6.0 24 16.9 999.9 72.3* 54.3* 99.99 999.9 110000 724050 13743 19381120 49.2 24 37.2 24 1000.6 24 9999.9 0 10.3 24 8.3 24 14.0 999.9 57.4* 43.3* 99.99 999.9 010000 724050 13743 19381121 46.2 24 35.6 24 1003.7 24 9999.9 0 6.8 24 3.9 24 8.9 999.9 61.3* 35.4* 0.00I 999.9 000000 724050 13743 19381122 53.1 24 46.4 24 1003.1 24 9999.9 0 6.7 24 4.4 24 13.0 999.9 66.4* 44.4* 0.00I 999.9 000000 724050 13743 19381123 50.1 24 48.1 24 1001.5 24 9999.9 0 1.9 24 3.1 24 8.9 999.9 58.3* 44.4* 99.99 999.9 110000 724050 13743 19381124 33.9 24 29.3 24 1000.6 24 9999.9 0 5.3 24 10.6 24 16.9 999.9 48.4* 27.3* 99.99 999.9 111000 724050 13743 19381125 26.8 24 18.7 24 1001.2 24 9999.9 0 7.0 24 12.4 24 26.0 999.9 34.3* 23.4* 99.99 999.9 101000 724050 13743 19381126 25.6 24 19.2 24 1004.5 24 9999.9 0 4.9 24 5.3 24 13.0 999.9 34.3* 16.3* 0.00I 999.9 000000 724050 13743 19381127 27.1 24 20.9 24 1002.0 24 9999.9 0 6.2 24 6.7 24 22.0 999.9 36.3* 16.3* 0.00I 999.9 000000 724050 13743 19381128 27.6 24 16.2 24 1003.6 24 9999.9 0 9.0 24 8.3 24 15.9 999.9 37.4* 21.4* 0.00I 999.9 000000 724050 13743 19381129 30.8 24 21.2 24 1003.2 24 9999.9 0 6.0 24 4.9 24 12.0 999.9 49.3* 18.3* 0.00I 999.9 000000 724050 13743 19381130 41.7 24 29.8 24 1000.8 24 9999.9 0 7.1 24 3.3 24 8.0 999.9 59.4* 29.3* 0.00I 999.9 000000 724050 13743 19381201 39.0 24 29.8 24 1001.9 24 9999.9 0 8.7 24 6.4 24 15.9 999.9 45.3* 32.4* 0.00I 999.9 000000 724050 13743 19381202 31.0 24 24.0 24 1005.0 24 9999.9 0 5.6 24 5.5 24 11.1 999.9 33.4* 28.4* 0.00I 999.9 000000 724050 13743 19381203 38.4 24 32.3 24 1004.0 24 9999.9 0 5.7 24 4.7 24 8.9 999.9 50.4* 32.4* 99.99 999.9 110000 724050 13743 19381204 44.2 24 43.4 24 1001.6 24 9999.9 0 2.6 24 5.3 24 22.0 999.9 51.3* 41.4* 99.99 999.9 110000 724050 13743 19381205 50.6 24 49.2 24 999.3 24 9999.9 0 2.0 24 4.7 24 12.0 999.9 60.3* 43.3* 99.99 999.9 110000 724050 13743 19381206 49.1 24 39.1 24 997.1 24 9999.9 0 8.6 24 10.4 24 16.9 999.9 52.3* 44.4* 99.99 999.9 110000 724050 13743 19381207 42.1 24 31.2 24 1000.0 24 9999.9 0 8.2 24 5.5 24 13.0 999.9 55.4* 32.4* 0.00I 999.9 000000 724050 13743 19381208 40.5 24 35.8 24 1000.4 24 9999.9 0 2.8 24 2.1 24 5.1 999.9 52.3* 32.4* 0.00I 999.9 000000 724050 13743 19381209 47.1 24 44.6 24 998.6 24 9999.9 0 1.5 24 2.3 24 7.0 999.9 53.4* 43.3* 99.99 999.9 110000 724050 13743 19381210 48.0 24 40.4 24 997.5 24 9999.9 0 7.3 24 14.6 24 22.0 999.9 51.3* 41.4* 99.99 999.9 110000 724050 13743 19381211 39.0 24 34.7 24 1001.1 24 9999.9 0 5.3 24 2.9 24 7.0 999.9 45.3* 33.4* 0.00I 999.9 100000 724050 13743 19381212 44.2 24 37.6 24 999.3 24 9999.9 0 4.4 24 4.7 24 15.9 999.9 54.3* 36.3* 99.99 999.9 110000 724050 13743 19381213 38.0 24 22.2 24 1001.8 24 9999.9 0 9.0 24 8.9 24 15.0 999.9 45.3* 33.4* 0.00I 999.9 000000 724050 13743 19381214 34.5 24 24.2 24 1000.9 24 9999.9 0 4.9 24 3.8 24 8.9 999.9 50.4* 24.4* 0.00I 999.9 000000 724050 13743 19381215 35.7 24 18.7 24 1002.6 24 9999.9 0 8.6 24 8.3 24 13.0 999.9 42.4* 32.4* 0.00I 999.9 000000 724050 13743 19381216 30.3 24 18.1 24 1004.8 24 9999.9 0 7.9 24 6.3 24 13.0 999.9 38.3* 21.4* 0.00I 999.9 000000 724050 13743 19381217 38.2 24 31.7 24 1002.3 24 9999.9 0 4.5 24 5.1 24 11.1 999.9 44.4* 35.4* 99.99 999.9 110000 724050 13743 19381218 39.7 23 34.1 23 1000.6 23 9999.9 0 4.7 23 5.2 23 9.9 999.9 43.3* 37.4* 0.00I 999.9 100000 724050 13743 19381219 35.9 23 26.5 23 1001.2 23 9999.9 0 6.4 23 7.1 23 16.9 999.9 41.4* 30.4* 0.00I 999.9 000000 724050 13743 19381220 33.5 24 21.5 24 1001.6 24 9999.9 0 7.6 24 5.3 24 9.9 999.9 43.3* 27.3* 0.00I 999.9 000000 724050 13743 19381221 37.0 24 27.2 24 998.8 24 9999.9 0 4.9 24 6.9 24 22.0 999.9 46.4* 30.4* 0.00I 999.9 000000 724050 13743 19381222 36.9 24 23.5 24 1001.7 24 9999.9 0 9.6 24 13.6 24 22.0 999.9 41.4* 33.4* 0.00I 999.9 000000 724050 13743 19381223 33.4 24 21.3 24 1002.2 24 9999.9 0 7.6 24 4.5 24 9.9 999.9 37.4* 30.4* 99.99 999.9 011000 724050 13743 19381224 37.9 24 34.0 24 998.5 24 9999.9 0 3.2 24 2.0 24 8.0 999.9 42.4* 35.4* 99.99 999.9 110000 724050 13743 19381225 37.3 24 28.9 24 999.8 24 9999.9 0 7.9 24 5.8 24 12.0 999.9 46.4* 31.3* 99.99 999.9 001000 724050 13743 19381226 31.5 24 28.4 24 1003.2 24 9999.9 0 3.4 24 3.3 24 13.0 999.9 40.3* 24.4* 99.99 999.9 110000 724050 13743 19381227 43.6 24 37.6 24 998.3 24 9999.9 0 6.7 24 10.5 24 21.0 999.9 48.4* 33.4* 99.99 999.9 110000 724050 13743 19381228 26.5 24 4.7 24 1004.5 24 9999.9 0 11.2 24 12.4 24 16.9 999.9 31.3* 21.4* 0.00I 999.9 000000 724050 13743 19381229 25.7 24 13.4 24 1004.6 24 9999.9 0 5.7 24 5.7 24 15.9 999.9 36.3* 18.3* 99.99 999.9 001000 724050 13743 19381230 33.0 24 22.9 24 1002.1 24 9999.9 0 8.4 24 6.8 24 16.9 999.9 42.4* 21.4* 0.00I 999.9 000000 724050 13743 19381231 33.5 24 25.6 24 1002.1 24 9999.9 0 4.7 24 2.9 24 8.9 999.9 46.4* 24.4* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1997/0000755000175000017500000000000014302004506015111 5ustar nileshnileshfluids-1.0.22/tests/gsod/1997/724050-13743.op0000644000175000017500000014327214302004506016702 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19970101 34.9 24 26.9 24 1027.3 24 1024.9 24 12.2 24 10.5 24 18.1 999.9 55.9 31.6 0.00G 999.9 000000 724050 13743 19970102 41.3 24 35.3 24 1014.3 24 1011.9 24 9.3 24 8.2 24 12.0 14.0 52.9* 34.0* 0.00G 999.9 000000 724050 13743 19970103 53.1 24 49.3 24 1007.1 24 1004.6 24 8.7 24 6.6 24 10.1 13.0 64.8* 48.4* 0.00G 999.9 110000 724050 13743 19970104 59.0 24 51.8 24 1011.3 24 1009.0 23 11.1 24 4.1 24 10.1 999.9 72.7* 50.2* 0.00G 999.9 000000 724050 13743 19970105 57.3 24 53.1 24 1004.1 24 1001.6 23 6.9 24 9.3 24 15.9 21.0 72.7 49.5 0.01G 999.9 110000 724050 13743 19970106 55.1 24 32.6 24 1006.6 24 1004.3 23 15.4 24 8.9 24 14.0 18.1 70.9 48.2 0.00D 999.9 000000 724050 13743 19970107 42.1 24 19.8 24 1016.0 24 1013.7 24 15.4 24 12.0 24 18.1 26.0 60.3 36.3 0.00G 999.9 000000 724050 13743 19970108 32.8 24 12.0 24 1023.0 24 1020.6 24 15.6 24 11.2 24 15.0 999.9 44.1 26.4 0.00G 999.9 000000 724050 13743 19970109 33.2 24 22.9 24 1016.5 24 1014.5 23 7.6 24 6.4 24 13.0 999.9 40.8 26.4 0.37G 1.6 111000 724050 13743 19970110 36.7 24 29.7 24 998.3 23 996.0 23 8.8 24 10.0 24 19.0 28.0 43.0* 33.3* 0.51G 1.2 111000 724050 13743 19970111 31.6 24 18.2 24 1007.4 24 1005.0 24 11.7 24 10.6 24 15.9 16.9 43.5 24.1 0.11G 0.4 101000 724050 13743 19970112 25.5 24 9.2 24 1022.7 24 1020.3 24 15.8 24 9.0 24 13.0 999.9 36.1 20.7 0.06G 0.4 000000 724050 13743 19970113 23.8 24 6.4 24 1029.7 24 1027.3 23 15.7 24 9.8 24 14.0 999.9 31.3 18.5 0.00G 0.4 000000 724050 13743 19970114 26.2 24 12.0 24 1030.8 24 1028.4 24 13.8 24 6.4 24 15.9 19.0 36.3 18.5 0.00G 0.4 000000 724050 13743 19970115 31.5 24 19.1 24 1027.7 24 1025.2 24 12.2 24 3.8 24 11.1 999.9 41.7* 22.6* 0.00G 999.9 000000 724050 13743 19970116 40.3 24 28.8 24 1006.5 24 1004.1 24 10.5 24 9.4 24 24.1 27.0 49.8 21.6 0.44G 999.9 110000 724050 13743 19970117 19.9 24 -4.0 24 1016.7 24 1014.2 24 14.4 24 15.1 24 22.9 34.0 33.3* 12.9* 0.01G 999.9 000000 724050 13743 19970118 17.4 24 -5.1 24 1017.6 24 1015.2 24 16.1 24 8.6 24 19.0 25.1 23.2 12.6 0.00G 999.9 001000 724050 13743 19970119 17.1 24 -0.6 24 1024.3 24 1021.9 24 14.8 24 6.9 24 10.1 14.0 26.4 11.1 0.00G 999.9 000000 724050 13743 19970120 28.2 24 15.5 24 1016.8 24 1014.3 24 13.2 24 5.3 24 12.0 999.9 44.2* 21.4* 0.00G 999.9 000000 724050 13743 19970121 38.6 24 20.2 24 1026.4 24 1024.0 24 13.8 24 6.8 24 12.0 999.9 46.4* 33.3* 0.00G 999.9 000000 724050 13743 19970122 38.7 24 27.4 24 1025.3 24 1022.9 24 12.7 24 9.8 24 14.0 999.9 50.0* 32.7* 0.00G 999.9 110000 724050 13743 19970123 49.3 24 38.9 24 1015.2 24 1012.9 21 9.3 22 8.6 24 15.9 999.9 62.1* 42.8* 0.16G 999.9 110000 724050 13743 19970124 36.2 24 27.7 24 1027.2 24 1024.8 24 10.8 24 7.8 24 15.0 20.0 41.7* 31.8* 0.00G 999.9 110000 724050 13743 19970125 45.0 24 39.1 24 1011.1 24 1008.7 24 8.6 24 9.0 24 17.1 22.9 55.0 31.8 0.93G 999.9 110000 724050 13743 19970126 34.7 24 16.0 24 1026.2 24 1023.8 24 15.6 24 10.6 24 19.0 34.0 55.0 28.2 0.01G 999.9 000000 724050 13743 19970127 34.3 24 20.7 24 1034.8 24 1032.5 23 12.8 24 6.0 24 9.9 999.9 41.0* 31.3* 0.00G 999.9 011000 724050 13743 19970128 41.9 24 35.4 24 1021.3 24 1018.9 24 10.2 24 10.5 24 17.1 21.0 50.0* 37.2* 0.36G 999.9 110000 724050 13743 19970129 33.2 24 14.6 24 1032.5 24 1030.2 24 14.2 24 5.7 24 13.0 999.9 49.8 27.3 0.16G 999.9 000000 724050 13743 19970130 31.5 24 18.4 24 1031.1 24 1028.6 24 12.8 24 3.6 24 10.1 999.9 40.8* 25.3* 0.00G 999.9 000000 724050 13743 19970131 37.7 24 31.7 24 1017.0 24 1014.7 21 11.1 24 3.1 24 11.1 999.9 44.1* 34.7* 0.00G 999.9 010000 724050 13743 19970201 46.7 24 33.8 24 1008.3 24 1006.4 24 13.3 24 7.5 24 18.1 999.9 59.2* 38.1* 0.01G 999.9 010000 724050 13743 19970202 42.5 23 34.5 23 1020.8 23 1018.4 22 12.7 23 2.5 23 11.1 999.9 59.9 35.6 0.00G 999.9 000000 724050 13743 19970203 47.6 24 37.3 24 1023.6 24 1021.1 23 10.2 24 3.3 24 15.0 999.9 60.8* 40.8* 0.00G 999.9 100000 724050 13743 19970204 41.1 24 32.8 24 1031.5 24 1029.0 24 10.5 24 8.1 24 15.0 999.9 61.2 38.3 0.00G 999.9 111000 724050 13743 19970205 43.8 24 39.7 24 1018.8 24 1016.4 24 6.3 24 6.3 24 18.1 999.9 52.9 32.5 0.87G 999.9 110000 724050 13743 19970206 43.6 24 28.5 24 1022.2 24 1019.8 24 12.7 24 10.6 24 17.1 20.0 54.1 39.2 0.07G 999.9 000000 724050 13743 19970207 40.4 24 27.7 24 1024.6 24 1022.2 24 10.5 24 4.1 24 8.9 999.9 49.1 37.4 0.00G 999.9 000000 724050 13743 19970208 35.9 24 32.6 24 1022.8 24 1020.5 24 3.6 24 9.1 24 15.0 999.9 40.8* 33.1* 0.14G 2.0 111000 724050 13743 19970209 33.1 24 27.9 24 1025.2 24 1022.8 24 8.4 24 8.2 24 12.0 999.9 39.2 28.6 0.02G 0.4 101000 724050 13743 19970210 34.9 24 28.1 24 1024.9 24 1022.5 24 10.3 24 6.3 24 11.1 999.9 38.7 28.6 0.00G 0.4 100000 724050 13743 19970211 34.5 24 19.9 24 1022.8 24 1020.3 24 12.9 24 9.8 24 15.0 999.9 39.7* 31.3* 0.00G 0.4 000000 724050 13743 19970212 35.6 24 24.8 24 1022.2 24 1019.7 24 10.3 24 6.5 24 11.1 999.9 42.6* 30.6* 0.00G 999.9 000000 724050 13743 19970213 33.7 24 15.1 24 1031.7 24 1029.3 24 13.3 24 10.4 24 17.1 999.9 43.0 27.5 0.00G 999.9 000000 724050 13743 19970214 34.2 24 29.2 24 1023.8 24 1021.4 24 5.5 24 7.9 24 11.1 999.9 39.6* 29.5* 0.45G 0.4 111000 724050 13743 19970215 41.7 24 34.7 24 1016.9 24 1014.5 24 8.8 24 7.8 24 17.1 25.1 48.7* 38.5* 0.58G 999.9 110000 724050 13743 19970216 38.2 24 21.3 24 1027.4 24 1025.0 24 15.4 24 8.7 24 14.0 20.0 49.3 29.3 0.30G 999.9 000000 724050 13743 19970217 37.9 24 19.7 24 1030.9 24 1028.6 24 15.8 24 10.7 24 20.0 35.9 45.1 29.3 0.00G 999.9 000000 724050 13743 19970218 43.7 24 24.1 24 1031.6 24 1029.4 23 15.3 24 9.5 24 12.0 999.9 63.3* 33.8* 0.00G 999.9 000000 724050 13743 19970219 56.4 24 33.9 24 1020.6 24 1018.2 24 15.5 24 8.4 24 11.1 999.9 71.8* 45.5* 0.00G 999.9 000000 724050 13743 19970220 57.1 24 36.8 24 1025.1 24 1022.8 24 14.7 24 7.2 24 15.9 22.0 72.3 43.0 0.00G 999.9 010000 724050 13743 19970221 53.4 24 43.2 24 1020.4 24 1018.0 24 12.6 24 9.9 24 15.0 16.9 72.0* 43.9* 0.00G 999.9 000000 724050 13743 19970222 62.1 24 50.5 24 1007.0 24 1004.6 24 15.9 24 14.5 24 27.0 33.0 70.0* 50.5* 0.00G 999.9 010000 724050 13743 19970223 44.8 24 21.7 24 1026.1 24 1023.7 24 15.8 24 9.0 24 15.0 20.0 54.1* 35.4* 0.00G 999.9 000000 724050 13743 19970224 47.0 24 23.5 24 1029.6 24 1027.2 24 15.7 24 6.6 24 11.1 999.9 56.1* 40.5* 0.00G 999.9 000000 724050 13743 19970225 39.0 24 15.3 24 1028.7 24 1026.3 24 16.8 24 9.1 24 15.0 999.9 57.0 28.8 0.00G 999.9 000000 724050 13743 19970226 43.1 24 32.0 24 1022.6 24 1020.3 23 13.1 24 8.8 24 18.1 999.9 59.0* 33.8* 0.00G 999.9 110000 724050 13743 19970227 60.0 24 54.5 24 1010.7 24 1008.5 23 10.1 24 17.1 24 28.9 999.9 76.8* 48.2* 0.13G 999.9 110000 724050 13743 19970228 59.1 24 44.1 24 1019.3 24 1016.9 24 12.7 24 6.5 24 17.1 999.9 71.1* 52.9* 0.00G 999.9 000000 724050 13743 19970301 50.6 24 43.4 24 1024.4 24 1022.0 24 10.2 24 4.9 24 12.0 999.9 66.0 45.9 0.69G 999.9 110000 724050 13743 19970302 61.1 24 57.0 24 1010.7 24 1008.4 24 9.4 24 9.4 24 18.1 999.9 69.8* 51.8* 0.01G 999.9 110000 724050 13743 19970303 46.8 24 38.2 24 1017.5 24 1015.1 24 9.2 24 11.1 24 18.1 999.9 65.8* 39.0* 0.54G 999.9 110000 724050 13743 19970304 41.5 24 39.4 24 1019.5 24 1017.2 24 7.5 24 6.6 24 15.0 999.9 54.5 32.5 0.48G 999.9 110000 724050 13743 19970305 46.8 24 45.7 24 1020.9 24 1018.5 24 3.8 24 3.9 24 8.9 999.9 50.4* 44.2* 0.01G 999.9 111000 724050 13743 19970306 49.1 24 35.5 24 1009.7 23 1007.3 23 11.1 24 14.5 24 25.1 39.0 55.6 33.3 0.08G 999.9 110000 724050 13743 19970307 41.3 24 17.8 24 1024.5 24 1022.2 24 14.1 24 12.9 24 18.1 25.1 55.6 33.3 0.03G 999.9 000000 724050 13743 19970308 49.2 24 29.5 24 1023.9 24 1021.5 24 14.0 24 11.9 24 19.0 25.1 68.7* 38.7* 0.00G 999.9 000000 724050 13743 19970309 43.9 24 26.4 24 1031.7 24 1029.3 24 14.3 24 12.8 24 20.0 999.9 69.6 32.5 0.00G 999.9 000000 724050 13743 19970310 47.5 24 28.1 24 1019.1 24 1016.7 24 12.1 24 9.6 24 18.1 21.0 61.7* 38.5* 0.11G 999.9 011000 724050 13743 19970311 51.1 24 30.1 24 1013.2 24 1010.9 24 14.5 24 10.4 24 22.0 28.0 66.6 38.1 0.06G 999.9 010000 724050 13743 19970312 43.9 24 20.3 24 1023.1 24 1020.8 24 14.3 24 12.5 24 22.0 28.0 66.6 34.5 0.00G 999.9 000000 724050 13743 19970313 44.2 24 13.9 24 1030.2 24 1027.8 24 13.0 24 8.6 24 18.1 999.9 52.5 34.5 0.00G 999.9 000000 724050 13743 19970314 44.8 24 38.6 24 1018.8 24 1016.4 24 6.9 24 6.7 24 11.1 999.9 56.5 32.5 0.40G 999.9 110000 724050 13743 19970315 44.3 24 27.4 24 1014.5 24 1012.1 24 11.9 24 14.2 24 21.0 29.9 56.5 32.5 0.04G 999.9 100000 724050 13743 19970316 36.8 24 13.0 24 1028.7 24 1026.3 24 14.3 24 11.7 24 17.1 25.1 50.9 30.6 0.00G 999.9 000000 724050 13743 19970317 41.4 24 19.8 24 1029.1 24 1026.8 24 13.7 24 10.0 24 17.1 23.9 55.8* 32.9* 0.00G 999.9 000000 724050 13743 19970318 51.6 24 33.2 24 1023.8 24 1021.5 24 11.9 24 6.5 24 11.1 999.9 58.8 32.0 0.00G 999.9 010000 724050 13743 19970319 40.6 24 38.9 24 1023.2 24 1020.9 24 4.5 24 7.6 24 14.0 999.9 58.8 34.9 0.87G 999.9 111000 724050 13743 19970320 44.0 24 38.5 24 1014.0 24 1011.7 24 6.8 24 4.7 24 10.1 999.9 55.9* 39.6* 0.16G 999.9 100000 724050 13743 19970321 50.1 24 41.4 24 1010.3 24 1007.9 24 10.0 24 5.3 24 14.0 999.9 64.2* 39.0* 0.00G 999.9 100000 724050 13743 19970322 58.1 24 42.1 24 1000.1 24 997.7 24 15.9 24 16.1 24 31.1 43.9 67.3 38.3 0.00G 999.9 000000 724050 13743 19970323 43.3 24 23.2 24 1016.0 24 1013.6 24 15.3 24 12.2 24 19.0 26.0 51.4* 36.7* 0.00G 999.9 000000 724050 13743 19970324 43.4 24 23.7 24 1027.2 24 1024.8 24 15.9 24 8.4 24 15.9 999.9 51.8 34.7 0.00G 999.9 000000 724050 13743 19970325 45.1 24 30.8 24 1029.2 24 1026.8 24 14.0 24 10.2 23 15.9 999.9 54.0 34.7 0.00G 999.9 000000 724050 13743 19970326 53.9 24 40.8 24 1012.7 24 1010.4 24 12.4 24 13.5 24 22.0 32.1 62.6 38.5 0.34G 999.9 110000 724050 13743 19970327 52.5 24 33.4 24 1016.3 24 1013.9 24 14.0 24 9.3 24 15.9 22.9 72.9* 37.8* 0.01G 999.9 000000 724050 13743 19970328 58.9 24 42.2 24 1013.7 24 1011.3 24 13.0 24 8.0 24 17.1 999.9 70.2* 48.4* 0.00G 999.9 000000 724050 13743 19970329 62.8 24 51.6 24 1004.7 24 1002.3 24 14.7 24 11.0 24 22.0 35.0 76.1* 56.3* 0.00G 999.9 010010 724050 13743 19970330 62.0 24 45.0 24 1008.8 24 1006.4 24 16.1 24 9.2 24 18.1 23.9 77.2 53.4 0.14G 999.9 000000 724050 13743 19970331 48.9 24 35.8 24 1003.9 24 1001.5 24 13.3 24 15.9 24 26.0 42.0 71.1 34.0 0.43G 999.9 110000 724050 13743 19970401 45.3 24 19.7 24 1010.6 24 1008.3 24 15.8 24 23.7 24 35.0 44.9 60.6 33.1 0.01G 999.9 111000 724050 13743 19970402 53.2 24 21.5 24 1023.1 24 1020.7 24 16.7 24 13.0 24 18.1 22.9 66.0* 44.2* 0.00G 999.9 000000 724050 13743 19970403 59.9 24 30.2 24 1020.4 24 1018.1 24 13.7 24 8.2 24 15.0 999.9 72.7* 46.6* 0.00G 999.9 000000 724050 13743 19970404 63.7 24 45.8 24 1017.1 24 1014.7 24 13.0 24 9.5 24 18.1 21.0 78.4* 50.9* 0.00D 999.9 010000 724050 13743 19970405 62.3 24 46.8 24 1021.0 24 1018.7 24 13.4 24 8.6 24 15.0 999.9 78.6 49.8 0.00G 999.9 000000 724050 13743 19970406 57.9 24 53.0 24 1016.4 24 1014.0 24 9.9 24 6.2 24 12.0 999.9 67.3 52.0 0.08G 999.9 110000 724050 13743 19970407 65.7 24 47.8 24 1010.0 24 1007.7 24 15.3 24 11.7 24 17.1 23.9 72.0* 59.9* 0.04G 999.9 000000 724050 13743 19970408 54.4 24 19.8 24 1017.6 24 1015.2 24 14.5 24 14.2 24 20.0 25.1 72.7 44.4 0.00G 999.9 000000 724050 13743 19970409 43.2 24 18.9 24 1019.8 23 1017.3 24 14.6 24 17.9 24 27.0 29.9 63.3 32.4 0.00G 999.9 000000 724050 13743 19970410 38.1 24 14.0 24 1026.7 24 1024.3 24 13.5 24 12.7 24 18.1 23.9 50.5* 29.3* 0.00G 999.9 000000 724050 13743 19970411 47.7 24 23.1 24 1025.9 24 1023.5 24 12.7 24 5.7 24 8.9 999.9 62.6 28.4 0.00G 999.9 000000 724050 13743 19970412 52.4 24 46.2 24 1016.3 24 1013.9 24 9.6 24 6.8 24 11.1 999.9 62.6 39.6 0.15G 999.9 110000 724050 13743 19970413 59.7 24 51.1 24 1004.6 24 1002.2 24 8.5 24 9.3 24 21.0 28.9 63.7* 54.0* 0.25G 999.9 110000 724050 13743 19970414 48.5 24 26.7 24 1018.6 24 1016.2 24 14.5 24 11.4 24 18.1 28.0 65.3 40.1 0.00G 999.9 000000 724050 13743 19970415 51.4 24 28.0 24 1025.3 24 1023.0 24 14.2 24 6.1 24 10.1 999.9 63.1 38.3 0.00G 999.9 000000 724050 13743 19970416 54.9 24 37.4 24 1021.5 24 1019.2 24 13.6 24 8.9 24 14.0 22.0 71.8 38.3 0.00G 999.9 000000 724050 13743 19970417 53.7 24 44.4 24 1009.2 24 1006.9 24 11.4 24 6.5 24 14.0 999.9 71.8 42.6 0.03G 999.9 010000 724050 13743 19970418 45.1 24 28.8 24 1002.8 24 1000.4 24 13.1 24 15.9 24 22.9 37.9 56.1 38.8 0.19G 999.9 010000 724050 13743 19970419 50.4 24 18.2 24 1001.6 24 999.2 24 14.4 24 15.6 24 22.0 32.1 62.2* 40.8* 0.00G 999.9 000000 724050 13743 19970420 54.4 24 30.0 24 1007.4 24 1005.1 24 13.2 24 9.0 24 14.0 16.9 64.9* 43.2* 0.00G 999.9 000000 724050 13743 19970421 51.1 24 35.5 24 1009.8 24 1007.4 24 11.4 24 5.9 24 15.0 999.9 65.1 32.9 0.00G 999.9 110000 724050 13743 19970422 51.1 24 44.1 24 1006.4 24 1004.0 24 8.7 24 4.7 24 7.0 999.9 58.8* 46.0* 0.16G 999.9 100000 724050 13743 19970423 50.6 23 44.7 23 1004.6 23 1002.2 23 8.4 23 6.1 23 14.0 999.9 59.5 45.9 0.01G 999.9 110000 724050 13743 19970424 51.6 24 43.1 24 1003.7 24 1001.4 24 10.7 24 7.0 24 10.1 999.9 62.2 33.3 0.06G 999.9 110000 724050 13743 19970425 57.5 24 40.4 24 1014.1 24 1011.8 24 13.1 24 7.8 24 28.0 34.0 65.5* 52.2* 0.02G 999.9 010000 724050 13743 19970426 59.1 24 38.9 24 1022.8 24 1020.4 24 13.5 24 8.1 24 13.0 18.1 68.9* 49.3* 0.00G 999.9 000000 724050 13743 19970427 55.9 24 45.8 24 1022.3 24 1020.0 24 12.1 24 5.8 24 11.1 999.9 69.8 33.6 0.00G 999.9 110000 724050 13743 19970428 56.1 24 51.9 24 1007.4 24 1005.0 24 6.4 24 4.9 24 12.0 999.9 66.2* 49.8* 1.65G 999.9 110000 724050 13743 19970429 57.4 24 40.8 24 1009.8 24 1007.4 24 13.7 24 6.7 24 12.0 999.9 70.0* 48.9* 0.44G 999.9 000000 724050 13743 19970430 60.7 24 48.2 24 1011.6 24 1009.2 24 14.5 24 6.2 24 13.0 999.9 74.7* 48.2* 0.00G 999.9 000000 724050 13743 19970501 67.4 24 54.6 24 1003.2 24 1000.8 24 11.7 24 13.4 24 22.0 30.9 79.2* 58.6* 0.00G 999.9 010010 724050 13743 19970502 60.5 24 37.9 24 1014.7 24 1012.3 24 13.4 24 9.3 24 19.0 26.0 70.3* 49.8* 0.00G 999.9 000010 724050 13743 19970503 65.2 24 54.5 24 1007.9 24 1005.6 24 11.3 24 13.6 24 19.0 25.1 77.9* 58.6* 0.03G 999.9 110000 724050 13743 19970504 60.0 24 40.0 24 1010.5 24 1008.2 24 13.5 24 12.3 24 15.9 22.9 78.3 50.9 0.01G 999.9 010010 724050 13743 19970505 58.8 24 35.6 24 1019.8 24 1017.4 24 13.5 24 7.9 24 13.0 15.0 71.6* 44.6* 0.00G 999.9 000000 724050 13743 19970506 64.0 24 43.3 24 1012.2 24 1009.7 24 13.8 24 12.9 24 22.0 35.0 74.1 44.1 0.05G 999.9 010010 724050 13743 19970507 58.3 24 34.1 24 1020.2 24 1017.9 24 15.0 24 12.1 24 18.1 25.1 74.1 46.4 0.00D 999.9 000000 724050 13743 19970508 56.9 24 32.9 24 1021.6 24 1019.2 24 15.1 24 6.0 24 11.1 999.9 70.2 42.4 0.00G 999.9 010000 724050 13743 19970509 57.3 24 52.0 24 1011.4 24 1009.0 24 10.6 24 5.8 24 15.0 999.9 66.2* 50.9* 0.03G 999.9 010010 724050 13743 19970510 54.4 24 39.7 24 1010.1 24 1007.8 24 14.0 24 12.5 24 15.9 999.9 66.7 48.7 0.13G 999.9 010000 724050 13743 19970511 57.0 24 34.9 23 1015.5 24 1013.2 24 13.5 24 8.5 24 13.0 21.0 73.2 43.5 0.01G 999.9 000000 724050 13743 19970512 64.3 24 43.7 24 1009.2 24 1006.9 24 14.5 24 9.6 24 20.0 22.9 80.8 43.5 0.00G 999.9 000000 724050 13743 19970513 60.3 24 43.7 24 1006.9 24 1004.5 24 12.9 24 10.9 24 17.1 21.0 80.8 51.1 0.00G 999.9 000000 724050 13743 19970514 56.7 24 43.3 24 1010.2 24 1007.8 24 13.1 24 6.8 24 15.9 999.9 70.7 43.9 0.00G 999.9 010000 724050 13743 19970515 65.4 24 48.3 24 1006.6 24 1004.2 24 12.4 24 9.9 24 15.9 26.0 77.0* 57.2* 0.01G 999.9 010000 724050 13743 19970516 58.0 24 32.9 24 1010.8 24 1008.4 24 13.4 24 13.5 24 19.0 28.0 77.4 33.8 0.00D 999.9 010000 724050 13743 19970517 59.6 24 39.2 24 1012.7 24 1010.3 24 13.0 24 9.8 24 15.9 20.0 74.8* 51.3* 0.01G 999.9 010000 724050 13743 19970518 66.7 24 48.7 24 1013.2 24 1010.8 24 14.3 24 6.1 24 13.0 999.9 84.6* 53.4* 0.00C 999.9 000000 724050 13743 19970519 77.3 24 59.8 24 1008.6 24 1006.3 24 12.3 24 6.6 24 17.1 19.0 95.9 53.4 0.00G 999.9 000000 724050 13743 19970520 74.4 24 53.6 24 1008.9 24 1006.5 24 13.0 24 9.8 24 15.0 999.9 95.9 63.3 0.00G 999.9 010000 724050 13743 19970521 61.7 24 34.2 24 1015.9 24 1013.6 24 14.7 24 11.6 24 18.1 25.1 78.8 49.6 0.00G 999.9 000000 724050 13743 19970522 59.3 24 31.7 24 1019.5 24 1017.2 24 15.2 24 10.0 24 15.0 20.0 71.1 48.4 0.00G 999.9 000000 724050 13743 19970523 62.1 24 35.4 24 1022.1 24 1019.7 24 15.2 24 8.1 24 13.0 999.9 73.9 48.4 0.00G 999.9 000000 724050 13743 19970524 68.4 24 49.9 24 1019.5 24 1017.1 24 12.2 24 5.3 24 8.0 999.9 83.5* 55.9* 0.00G 999.9 000000 724050 13743 19970525 71.2 24 62.8 24 1010.7 24 1008.4 24 9.6 24 7.4 24 12.0 999.9 83.8 54.9 0.01G 999.9 110010 724050 13743 19970526 65.2 24 57.9 24 1009.4 24 1007.1 24 6.7 24 7.6 24 15.0 999.9 72.5* 57.2* 2.15G 999.9 110010 724050 13743 19970527 62.1 24 45.9 24 1020.6 24 1018.2 24 14.5 24 8.8 24 14.0 999.9 73.0 55.9 0.33G 999.9 000000 724050 13743 19970528 60.0 24 45.2 24 1029.4 24 1027.0 24 14.3 24 5.1 24 11.1 999.9 70.7 48.7 0.00G 999.9 000000 724050 13743 19970529 61.9 24 46.0 24 1027.8 24 1025.5 24 14.3 24 6.6 24 12.0 999.9 73.0* 50.2* 0.00G 999.9 000000 724050 13743 19970530 65.3 24 57.6 24 1024.0 24 1021.6 24 10.4 24 5.1 24 10.1 999.9 75.0* 59.0* 0.05G 999.9 010000 724050 13743 19970531 69.5 24 61.7 24 1018.3 24 1016.0 24 9.5 24 3.6 24 7.0 999.9 79.5* 61.7* 0.00D 999.9 110000 724050 13743 19970601 69.7 24 65.7 24 1011.9 24 1009.5 24 8.7 24 6.5 24 10.1 999.9 75.2* 66.2* 0.02G 999.9 110000 724050 13743 19970602 64.6 24 63.4 24 1010.7 24 1008.5 24 5.0 24 9.3 24 13.0 999.9 71.6* 60.6* 0.89G 999.9 110000 724050 13743 19970603 55.7 24 53.8 24 1015.1 24 1012.7 24 8.2 24 12.5 24 15.9 999.9 60.8* 53.2* 0.56G 999.9 110010 724050 13743 19970604 60.1 24 47.8 24 1015.4 24 1013.1 24 15.7 24 10.0 24 14.0 999.9 70.3 52.9 0.02G 999.9 010000 724050 13743 19970605 62.1 24 49.2 24 1018.0 24 1015.6 24 12.9 24 4.0 24 8.0 999.9 72.3* 51.6* 0.00G 999.9 000000 724050 13743 19970606 61.5 24 50.9 24 1020.7 24 1018.3 24 13.3 24 6.5 24 11.1 999.9 73.0 50.7 0.00G 999.9 000000 724050 13743 19970607 59.1 24 50.3 24 1020.6 24 1018.2 24 13.5 24 9.5 24 15.0 999.9 67.1 53.2 0.00G 999.9 000000 724050 13743 19970608 61.4 24 49.2 24 1020.6 24 1018.2 24 14.3 24 4.7 24 8.0 999.9 74.7* 49.8* 0.00G 999.9 000000 724050 13743 19970609 65.2 24 52.7 24 1021.6 24 1019.2 24 13.0 24 3.8 24 7.0 999.9 81.9 49.8 0.00G 999.9 000000 724050 13743 19970610 72.5 23 53.3 23 1021.2 23 1018.9 23 13.5 23 4.2 23 7.0 999.9 88.0* 57.4* 0.00G 999.9 000000 724050 13743 19970611 73.1 24 58.4 24 1017.2 24 1014.9 24 13.9 24 6.7 24 15.9 999.9 88.2 56.8 0.00G 999.9 000000 724050 13743 19970612 73.6 24 63.8 24 1011.1 24 1008.7 24 9.5 24 5.3 24 8.0 999.9 85.1 60.8 0.02G 999.9 010000 724050 13743 19970613 73.7 24 69.0 24 1004.5 24 1002.1 24 8.7 24 7.5 24 12.0 22.9 83.1 66.2 0.35G 999.9 110010 724050 13743 19970614 73.2 24 69.1 24 1006.3 24 1003.9 24 7.2 24 5.8 24 10.1 999.9 78.4* 69.6* 0.03G 999.9 110000 724050 13743 19970615 69.8 24 57.4 24 1014.1 24 1011.8 24 10.9 24 5.4 24 10.1 999.9 79.2* 61.3* 0.02G 999.9 100000 724050 13743 19970616 69.6 24 56.4 24 1014.2 24 1012.0 24 13.3 24 7.3 24 11.1 999.9 80.2 60.1 0.00G 999.9 000000 724050 13743 19970617 72.4 24 60.9 24 1010.1 24 1007.7 24 10.7 24 6.9 24 12.0 999.9 86.5* 63.3* 0.00G 999.9 000000 724050 13743 19970618 77.5 24 70.2 24 1010.4 24 1008.0 24 7.1 24 5.6 24 12.0 19.0 87.6 63.1 0.00G 999.9 110010 724050 13743 19970619 76.6 24 67.0 24 1011.7 24 1009.3 24 11.7 24 5.6 24 11.1 999.9 87.6 70.0 0.24G 999.9 010010 724050 13743 19970620 78.7 24 65.3 24 1015.8 24 1013.5 24 9.9 24 4.3 24 12.0 999.9 89.6 66.7 0.00G 999.9 100000 724050 13743 19970621 81.8 24 70.3 24 1014.8 24 1012.4 24 7.2 24 7.9 24 11.1 999.9 92.8* 72.9* 0.00G 999.9 000000 724050 13743 19970622 84.2 24 71.8 24 1012.7 24 1010.4 24 6.6 24 6.9 24 11.1 999.9 94.8* 75.4* 0.00G 999.9 000000 724050 13743 19970623 82.9 24 61.5 24 1018.1 24 1015.7 24 11.8 24 7.8 24 14.0 999.9 95.5 70.9 0.01G 999.9 000000 724050 13743 19970624 83.1 24 64.3 24 1019.7 24 1017.3 24 11.8 24 5.6 24 12.0 15.0 95.0 69.6 0.00G 999.9 000000 724050 13743 19970625 86.1 24 67.1 24 1016.4 24 1014.1 24 10.1 24 6.4 24 11.1 999.9 98.6* 75.0* 0.00G 999.9 000000 724050 13743 19970626 85.5 24 70.9 24 1012.6 24 1010.3 24 7.5 24 6.8 24 28.0 35.0 96.1* 73.2* 0.00G 999.9 010010 724050 13743 19970627 78.1 24 61.9 24 1016.6 24 1014.2 24 12.1 24 7.9 24 11.1 999.9 97.2 68.7 0.02G 999.9 110000 724050 13743 19970628 79.3 24 57.2 24 1019.6 24 1017.3 24 14.5 24 3.9 24 8.0 999.9 90.3 66.0 0.00G 999.9 000000 724050 13743 19970629 78.3 24 58.9 24 1020.4 24 1018.1 24 13.7 24 5.9 24 11.1 999.9 90.3 66.0 0.00G 999.9 000000 724050 13743 19970630 76.6 24 63.6 24 1019.6 24 1017.3 24 12.7 24 7.3 24 11.1 999.9 84.4* 68.7* 0.00G 999.9 000000 724050 13743 19970701 75.6 24 68.6 24 1014.5 24 1012.1 24 12.3 24 7.3 24 10.1 999.9 86.2 68.7 0.02G 999.9 110000 724050 13743 19970702 74.1 24 71.1 24 1010.1 24 1007.8 24 7.8 24 4.8 24 10.1 999.9 82.4* 68.0* 0.28G 999.9 110000 724050 13743 19970703 82.2 24 72.1 24 1006.2 24 1003.9 24 7.5 24 9.1 24 14.0 999.9 96.8 68.4 0.01G 999.9 100000 724050 13743 19970704 84.7 24 61.3 24 1006.0 24 1003.6 24 13.1 24 9.8 24 14.0 20.0 96.8 72.3 0.00G 999.9 000000 724050 13743 19970705 77.2 24 56.7 24 1013.0 24 1010.6 24 13.5 24 9.3 24 13.0 999.9 85.5* 69.3* 0.00G 999.9 000000 724050 13743 19970706 77.5 24 56.8 24 1018.0 24 1015.6 24 12.9 24 4.7 24 8.9 999.9 86.2* 66.9* 0.00G 999.9 000000 724050 13743 19970707 79.2 24 63.8 24 1018.9 24 1016.5 24 11.4 24 4.3 24 8.0 999.9 89.8 66.6 0.00G 999.9 000000 724050 13743 19970708 80.6 24 62.6 24 1020.2 24 1017.9 24 9.2 24 4.9 24 12.0 999.9 91.4 68.5 0.00G 999.9 000000 724050 13743 19970709 82.4 24 68.1 24 1014.9 24 1012.5 24 7.8 24 9.2 24 15.0 19.0 93.4* 73.6* 0.00G 999.9 110010 724050 13743 19970710 76.9 24 61.4 24 1016.5 24 1014.2 24 13.1 24 8.1 24 15.9 999.9 86.2* 68.0* 0.01G 999.9 000000 724050 13743 19970711 77.8 24 55.4 24 1021.6 24 1019.2 24 14.2 24 2.8 24 6.0 999.9 90.7 65.5 0.00G 999.9 000000 724050 13743 19970712 79.6 24 59.7 24 1020.5 24 1018.2 24 13.5 24 3.9 24 10.1 999.9 91.8 65.5 0.00G 999.9 000000 724050 13743 19970713 83.8 24 61.4 24 1016.2 24 1013.7 24 11.4 24 4.3 24 10.1 999.9 95.5* 70.9* 0.00G 999.9 000000 724050 13743 19970714 86.0 23 65.6 23 1013.9 23 1011.6 23 6.0 23 4.8 23 12.0 999.9 97.5 70.9 0.00G 999.9 000000 724050 13743 19970715 86.7 24 71.7 24 1013.6 24 1011.3 24 4.6 24 5.9 24 12.0 999.9 98.8 75.7 0.00G 999.9 100000 724050 13743 19970716 88.2 24 69.5 24 1014.7 24 1012.4 24 7.0 24 7.1 24 10.1 999.9 98.8 75.7 0.00G 999.9 000000 724050 13743 19970717 86.3 24 65.8 24 1013.5 24 1011.2 24 8.3 24 6.1 24 14.0 15.9 97.7* 74.7* 0.00G 999.9 000000 724050 13743 19970718 88.2 24 66.0 24 1011.0 24 1008.6 24 10.1 24 7.6 24 27.0 35.9 99.9 74.1 0.00G 999.9 010010 724050 13743 19970719 82.9 24 64.6 24 1011.4 24 1009.1 24 11.7 24 8.0 24 15.9 999.9 95.4* 73.6* 0.02G 999.9 110010 724050 13743 19970720 78.4 24 54.3 24 1018.1 24 1015.7 24 16.8 24 7.9 24 15.0 999.9 95.9 67.3 0.00G 999.9 000000 724050 13743 19970721 79.6 24 71.2 24 1018.0 24 1015.6 24 9.4 24 7.9 24 10.1 999.9 90.5 67.3 0.00G 999.9 000000 724050 13743 19970722 81.1 24 71.5 24 1016.7 24 1014.3 24 6.9 24 7.5 24 11.1 999.9 90.5 72.0 0.00G 999.9 010000 724050 13743 19970723 72.2 23 69.3 23 1019.0 23 1016.6 23 6.9 23 8.1 23 13.0 999.9 77.2* 68.5* 0.10G 999.9 110000 724050 13743 19970724 67.5 24 65.8 24 1017.7 24 1015.3 24 5.8 24 10.6 24 15.0 999.9 69.1* 65.3* 0.35G 999.9 110000 724050 13743 19970725 71.1 24 62.1 24 1017.6 24 1015.2 24 12.7 24 9.2 24 15.9 999.9 81.3* 64.4* 0.06G 999.9 010000 724050 13743 19970726 77.3 24 66.7 24 1015.2 24 1012.8 24 7.8 24 5.9 24 10.1 999.9 88.0* 67.6* 0.00G 999.9 100000 724050 13743 19970727 83.7 24 74.5 24 1011.7 24 1009.2 24 4.1 24 8.2 24 10.1 999.9 97.3* 75.4* 0.00G 999.9 100000 724050 13743 19970728 87.3 24 72.0 24 1010.6 24 1008.2 24 8.7 24 6.8 24 36.9 42.0 98.6* 73.4* 0.00G 999.9 010010 724050 13743 19970729 79.8 24 65.1 24 1014.0 24 1011.6 24 12.8 24 9.9 24 14.0 999.9 99.7 73.2 0.16G 999.9 000000 724050 13743 19970730 76.0 24 47.4 24 1021.9 24 1019.5 24 16.4 24 9.5 24 15.0 999.9 87.4 66.4 0.00G 999.9 000000 724050 13743 19970731 76.6 24 52.3 24 1023.8 24 1021.6 24 15.2 24 6.1 24 10.1 999.9 90.5 63.3 0.00G 999.9 000000 724050 13743 19970801 78.3 24 58.7 24 1022.6 24 1020.2 24 13.0 24 7.1 24 13.0 999.9 90.7 63.3 0.00G 999.9 000000 724050 13743 19970802 78.4 24 62.2 24 1018.1 24 1015.8 24 12.7 24 7.7 24 13.0 999.9 91.8 65.1 0.00G 999.9 010000 724050 13743 19970803 81.2 24 65.0 24 1014.9 24 1012.5 24 9.2 24 6.6 24 10.1 999.9 94.3* 70.0* 3.00G 999.9 000000 724050 13743 19970804 78.0 24 67.0 24 1012.3 24 1009.9 24 10.2 24 6.4 24 15.0 21.0 84.4* 72.5* 0.02G 999.9 010010 724050 13743 19970805 74.3 24 62.1 24 1011.3 24 1008.9 24 11.6 24 7.8 24 14.0 19.0 85.5 65.5 0.01G 999.9 010000 724050 13743 19970806 72.3 24 54.5 24 1017.2 24 1014.8 24 13.9 24 7.0 24 11.1 999.9 85.3 60.8 0.00G 999.9 000000 724050 13743 19970807 75.1 24 55.8 24 1021.7 24 1019.3 24 13.8 24 5.4 24 8.9 999.9 87.3 60.8 0.00G 999.9 000000 724050 13743 19970808 76.0 24 54.3 24 1022.8 24 1020.5 24 12.6 24 6.0 24 11.1 999.9 88.3 63.0 0.00G 999.9 000000 724050 13743 19970809 77.2 24 59.3 24 1022.4 24 1020.0 24 11.5 24 7.1 24 12.0 999.9 89.4 63.0 0.00G 999.9 000000 724050 13743 19970810 78.5 24 63.2 24 1022.2 24 1019.8 24 10.8 24 9.1 24 12.0 999.9 89.4 65.3 0.00G 999.9 000000 724050 13743 19970811 79.1 24 66.7 24 1020.7 24 1018.3 24 11.0 24 6.7 24 10.1 999.9 91.4* 68.9* 0.00G 999.9 000000 724050 13743 19970812 82.1 24 70.1 24 1019.3 24 1016.9 24 7.2 24 5.8 24 10.1 999.9 91.6 68.5 0.00G 999.9 100000 724050 13743 19970813 82.4 24 72.4 24 1015.1 24 1012.7 24 6.3 24 7.4 24 12.0 999.9 93.2 73.8 0.00G 999.9 110000 724050 13743 19970814 81.8 24 68.8 24 1012.6 24 1010.2 24 9.6 24 6.5 24 10.1 999.9 93.0 73.9 0.07G 999.9 110000 724050 13743 19970815 81.2 24 71.1 24 1013.6 24 1011.3 24 7.0 24 6.5 24 12.0 999.9 90.9* 73.4* 0.00C 999.9 100000 724050 13743 19970816 88.0 24 73.7 24 1013.0 24 1010.6 24 9.7 24 8.9 24 15.0 999.9 101.7 73.8 0.00G 999.9 100000 724050 13743 19970817 87.6 24 71.2 24 1012.9 24 1010.5 24 12.0 24 8.1 24 14.0 21.0 102.2* 77.0* 0.00G 999.9 010010 724050 13743 19970818 76.5 24 70.1 24 1012.8 24 1010.4 24 11.6 24 8.3 24 17.1 999.9 81.1* 72.7* 1.35G 999.9 010010 724050 13743 19970819 71.4 24 56.7 24 1018.4 24 1016.0 24 14.7 24 5.6 24 10.1 999.9 81.7 65.8 0.00G 999.9 010000 724050 13743 19970820 69.3 24 63.9 24 1014.6 24 1012.3 24 6.6 24 5.7 24 13.0 999.9 73.6* 64.4* 1.95G 999.9 110000 724050 13743 19970821 74.6 24 65.2 24 1008.0 24 1005.7 24 7.7 24 7.5 24 11.1 999.9 84.6 64.6 0.11G 999.9 110000 724050 13743 19970822 74.7 23 55.0 23 1010.3 23 1007.9 23 13.2 23 7.8 23 12.0 999.9 81.3* 65.7* 0.00G 999.9 000000 724050 13743 19970823 69.6 24 52.6 24 1016.1 24 1013.8 24 13.5 24 8.3 24 13.0 999.9 82.2 59.7 0.00G 999.9 000000 724050 13743 19970824 71.3 24 53.6 24 1020.2 24 1017.8 24 13.5 24 5.7 24 11.1 999.9 81.0* 60.3* 0.00G 999.9 000000 724050 13743 19970825 73.4 24 59.8 24 1019.5 24 1017.1 24 13.0 24 8.1 24 10.1 999.9 82.4* 67.8* 0.00G 999.9 000000 724050 13743 19970826 74.7 24 61.4 24 1019.8 24 1017.5 24 13.0 24 6.0 24 11.1 999.9 82.2* 69.1* 0.00G 999.9 000000 724050 13743 19970827 75.0 24 63.3 24 1017.1 24 1014.8 24 12.3 24 8.0 24 12.0 999.9 84.6* 67.8* 0.00G 999.9 000000 724050 13743 19970828 77.4 24 64.6 24 1010.9 24 1008.4 24 10.4 24 7.7 24 18.1 999.9 88.7* 70.0* 0.00G 999.9 010000 724050 13743 19970829 74.7 24 62.8 24 1010.8 24 1008.4 24 10.5 24 7.8 24 13.0 999.9 82.8* 67.6* 0.00G 999.9 100000 724050 13743 19970830 73.9 24 57.6 24 1015.4 24 1013.0 24 14.4 24 6.6 24 10.1 999.9 84.9 63.3 0.00G 999.9 000000 724050 13743 19970831 75.1 24 65.9 24 1017.3 24 1014.9 24 13.8 24 6.7 24 12.0 999.9 84.9 63.3 0.00G 999.9 000000 724050 13743 19970901 79.0 24 68.1 24 1020.1 24 1017.7 24 10.4 24 6.1 24 10.1 999.9 90.0* 71.4* 0.00G 999.9 000000 724050 13743 19970902 78.4 24 72.1 24 1021.1 24 1018.7 24 6.1 24 6.2 24 12.0 999.9 89.1* 71.4* 0.00G 999.9 110010 724050 13743 19970903 73.8 24 64.7 24 1015.4 24 1013.0 24 9.0 24 8.1 24 17.1 20.0 90.0 67.1 0.20G 999.9 110000 724050 13743 19970904 64.3 24 41.2 24 1018.7 24 1016.4 24 15.5 24 12.8 23 15.9 21.0 77.9 54.0 0.01G 999.9 000000 724050 13743 19970905 66.1 24 43.9 24 1020.5 24 1018.1 24 15.2 24 6.6 24 10.1 999.9 79.2* 54.5* 0.00G 999.9 000000 724050 13743 19970906 67.9 24 53.4 24 1019.0 24 1016.7 24 14.4 24 5.2 24 8.0 999.9 79.5 53.2 0.00G 999.9 000000 724050 13743 19970907 74.2 24 59.3 24 1015.3 24 1012.9 24 14.2 24 5.0 24 11.1 999.9 88.2* 61.0* 0.00G 999.9 000000 724050 13743 19970908 74.6 24 65.0 24 1013.3 24 1010.9 24 9.6 24 6.3 24 10.1 999.9 88.5 59.2 0.00G 999.9 010000 724050 13743 19970909 71.8 24 65.5 24 1014.7 24 1012.3 24 5.7 24 7.2 24 13.0 999.9 75.4* 68.0* 0.00G 999.9 110000 724050 13743 19970910 73.2 24 67.6 24 1012.6 24 1010.2 24 6.1 24 8.6 24 20.0 999.9 82.4* 69.4* 0.00G 999.9 110010 724050 13743 19970911 72.8 24 68.0 24 1012.4 24 1010.0 24 8.9 24 7.7 24 12.0 999.9 82.8* 67.8* 0.43G 999.9 110010 724050 13743 19970912 72.1 23 61.9 23 1017.3 23 1014.9 23 8.3 23 3.7 23 8.0 999.9 84.2 63.0 0.02G 999.9 100000 724050 13743 19970913 71.3 24 59.6 24 1019.7 24 1017.4 24 12.8 24 6.9 24 11.1 999.9 82.2 59.7 0.00G 999.9 010000 724050 13743 19970914 71.1 24 58.9 24 1020.2 24 1017.9 24 13.4 24 5.2 24 8.0 999.9 80.2* 62.6* 0.00G 999.9 000000 724050 13743 19970915 74.3 24 59.1 24 1019.0 24 1016.6 24 11.7 24 5.4 24 11.1 999.9 81.7* 67.5* 0.00G 999.9 000000 724050 13743 19970916 73.9 24 60.1 24 1017.7 24 1015.4 24 8.9 24 3.9 24 8.0 999.9 84.6* 63.5* 0.00G 999.9 100000 724050 13743 19970917 74.9 24 63.1 24 1015.9 24 1013.5 24 7.1 24 6.3 24 11.1 16.9 84.7* 64.6* 0.00G 999.9 100000 724050 13743 19970918 76.1 24 65.3 24 1016.1 24 1013.7 24 6.4 24 7.3 24 11.1 999.9 83.1* 70.7* 0.23G 999.9 110000 724050 13743 19970919 71.9 24 59.6 24 1018.1 24 1015.7 24 11.6 24 4.2 24 8.9 999.9 84.9* 61.0* 0.00D 999.9 000000 724050 13743 19970920 77.6 24 68.4 24 1011.7 24 1009.4 24 6.4 24 8.1 24 13.0 20.0 90.1* 70.0* 0.00G 999.9 100000 724050 13743 19970921 65.3 24 47.6 24 1020.8 24 1018.5 24 13.9 24 12.2 24 27.0 34.0 90.3 56.1 0.00G 999.9 010000 724050 13743 19970922 61.3 24 45.9 24 1026.3 24 1023.9 24 14.0 24 5.9 24 10.1 999.9 72.1* 50.2* 0.00G 999.9 000000 724050 13743 19970923 65.0 24 53.4 24 1019.2 24 1016.9 24 11.5 24 7.8 24 14.0 999.9 74.1* 57.9* 0.00G 999.9 000000 724050 13743 19970924 61.3 24 46.7 24 1020.8 24 1018.4 24 13.0 24 8.8 24 12.0 999.9 75.6 57.7 0.00G 999.9 000000 724050 13743 19970925 60.5 24 49.7 24 1011.2 24 1009.2 24 14.4 24 5.6 24 12.0 999.9 74.8* 52.5* 0.00G 999.9 000000 724050 13743 19970926 66.4 24 53.7 24 1009.7 24 1008.3 24 12.6 24 7.9 24 15.9 999.9 76.8* 57.2* 0.00G 999.9 000000 724050 13743 19970927 64.1 24 52.1 24 1017.8 24 1016.4 24 14.3 24 5.7 24 8.9 999.9 77.4 54.1 0.00G 999.9 000000 724050 13743 19970928 64.4 24 59.9 24 1012.6 24 1010.9 24 9.2 24 10.4 24 15.9 999.9 77.0 54.1 0.12G 999.9 110000 724050 13743 19970929 69.0 24 56.8 24 999.2 24 997.6 24 12.3 24 11.4 24 19.0 23.9 79.9* 61.5* 0.26G 999.9 110000 724050 13743 19970930 69.0 24 50.6 24 1000.4 24 999.0 24 14.5 24 12.9 24 18.1 22.9 79.9 61.5 0.03G 999.9 000000 724050 13743 19971001 64.1 24 48.1 24 1009.3 24 1007.9 24 12.9 24 10.0 24 17.1 22.9 77.2 57.6 0.00G 999.9 000000 724050 13743 19971002 55.0 24 38.1 24 1019.6 24 1018.2 24 13.7 24 6.7 24 11.1 999.9 70.2 44.2 0.00G 999.9 000000 724050 13743 19971003 58.2 24 46.9 24 1017.1 24 1015.7 24 13.0 24 7.1 24 12.0 999.9 73.2* 49.1* 0.00G 999.9 000000 724050 13743 19971004 67.2 24 56.0 24 1016.6 24 1015.3 24 13.1 24 5.6 24 8.0 999.9 79.5* 59.5* 0.00G 999.9 000000 724050 13743 19971005 71.3 24 61.4 24 1017.6 24 1016.2 24 10.9 24 5.0 24 8.9 999.9 87.3* 61.5* 0.00G 999.9 100000 724050 13743 19971006 75.6 24 62.7 24 1018.8 24 1017.5 24 8.6 24 6.7 24 12.0 999.9 89.4* 64.4* 0.00G 999.9 100000 724050 13743 19971007 74.5 24 62.9 24 1020.6 24 1019.2 24 7.5 24 4.4 24 8.0 999.9 89.8 63.1 0.00G 999.9 100000 724050 13743 19971008 72.5 24 61.0 24 1024.2 24 1022.9 24 9.2 24 4.2 24 10.1 999.9 87.3 63.0 0.00G 999.9 000000 724050 13743 19971009 72.2 24 63.1 24 1024.7 24 1023.3 24 10.3 24 7.4 24 10.1 999.9 84.9* 64.4* 0.00G 999.9 000000 724050 13743 19971010 74.7 24 65.6 24 1022.5 24 1021.1 24 7.4 24 7.6 24 12.0 16.9 86.5 64.2 0.01G 999.9 110000 724050 13743 19971011 66.6 24 47.5 24 1024.8 24 1023.4 24 14.1 24 7.0 24 8.9 999.9 86.5 56.7 0.00D 999.9 000000 724050 13743 19971012 62.2 24 50.4 24 1025.8 24 1024.5 24 14.3 24 4.4 24 11.1 999.9 73.6 52.5 0.00G 999.9 000000 724050 13743 19971013 64.9 24 55.6 24 1023.1 24 1021.8 24 11.3 24 5.9 24 11.1 999.9 77.7 52.5 0.00G 999.9 100000 724050 13743 19971014 69.7 24 61.0 24 1019.1 24 1017.7 24 8.8 24 8.0 24 15.0 999.9 82.9 56.5 0.00G 999.9 100000 724050 13743 19971015 58.4 24 49.3 24 1022.2 24 1020.8 24 10.9 24 12.7 24 17.1 999.9 67.3* 53.4* 0.30G 999.9 110000 724050 13743 19971016 57.9 24 42.3 24 1022.9 24 1021.6 24 14.4 24 11.1 23 15.0 999.9 64.6* 53.1* 0.27G 999.9 000000 724050 13743 19971017 54.3 24 42.9 24 1021.5 24 1019.9 24 10.3 24 10.3 24 14.0 999.9 65.3 49.5 0.00G 999.9 110000 724050 13743 19971018 53.4 24 49.3 24 1019.4 24 1017.8 24 6.8 24 9.8 24 14.0 999.9 58.8* 50.0* 1.72G 999.9 110000 724050 13743 19971019 56.5 24 48.0 24 1014.2 24 1012.9 24 10.1 24 10.2 24 13.0 999.9 59.2 50.0 0.05G 999.9 010000 724050 13743 19971020 55.8 24 43.6 24 1012.5 24 1011.1 24 12.6 24 7.2 24 15.0 16.9 68.0 46.8 0.00D 999.9 000000 724050 13743 19971021 53.4 24 37.1 24 1016.8 24 1015.4 24 14.3 24 7.8 24 11.1 999.9 68.0 44.4 0.00G 999.9 010000 724050 13743 19971022 50.1 24 33.4 24 1015.4 24 1014.0 24 14.5 24 10.1 24 17.1 999.9 60.6 44.4 0.00G 999.9 000000 724050 13743 19971023 44.4 24 23.1 24 1019.7 24 1018.3 24 14.4 24 7.7 24 11.1 999.9 54.3 34.3 0.00G 999.9 000000 724050 13743 19971024 47.8 24 32.4 24 1018.7 24 1017.4 24 11.9 24 6.3 24 8.9 999.9 57.2 34.3 0.00G 999.9 010000 724050 13743 19971025 53.5 23 49.7 23 1012.9 23 1011.4 23 7.9 23 7.0 23 12.0 999.9 59.5 41.0 0.85G 999.9 110000 724050 13743 19971026 49.6 24 45.6 24 1018.7 24 1017.3 24 7.9 24 8.2 24 13.0 999.9 59.5 47.7 0.18G 999.9 110000 724050 13743 19971027 53.2 24 46.9 22 1004.0 24 1002.4 24 6.1 24 7.8 24 17.1 27.0 60.1* 50.0* 0.58G 999.9 110000 724050 13743 19971028 46.3 24 26.6 24 1014.7 24 1013.3 24 14.2 24 12.3 24 17.1 22.9 60.1 40.1 0.01G 999.9 000000 724050 13743 19971029 46.4 24 33.1 24 1019.5 24 1018.2 24 13.5 24 4.3 24 8.9 999.9 60.4* 36.3* 0.00G 999.9 000000 724050 13743 19971030 51.0 24 39.4 24 1020.7 24 1019.4 24 12.3 24 3.0 24 8.0 999.9 65.5 36.0 0.00G 999.9 000000 724050 13743 19971031 51.8 24 45.7 24 1020.1 24 1018.6 24 9.4 24 3.7 24 7.0 999.9 66.0 39.4 0.00G 999.9 100000 724050 13743 19971101 59.1 24 57.0 24 1006.7 24 1004.9 24 6.5 24 8.0 24 15.0 999.9 66.4 41.4 0.34G 999.9 110000 724050 13743 19971102 58.0 24 52.9 24 998.3 24 996.8 24 9.9 24 9.8 24 15.9 21.0 63.9 53.8 0.17G 999.9 110000 724050 13743 19971103 52.8 24 40.9 24 1009.0 24 1007.6 24 12.9 24 8.6 24 17.1 27.0 64.9 43.3 0.13G 999.9 000000 724050 13743 19971104 50.4 24 39.1 24 1015.6 24 1014.3 24 14.3 24 8.2 24 13.0 999.9 65.1 43.3 0.00G 999.9 000000 724050 13743 19971105 44.2 24 30.9 24 1029.0 24 1027.7 24 13.7 24 5.8 24 14.0 999.9 55.0 34.5 0.00G 999.9 000000 724050 13743 19971106 45.6 24 39.4 24 1027.4 24 1025.9 24 11.0 24 6.5 24 13.0 999.9 55.4 34.5 0.00G 999.9 000000 724050 13743 19971107 49.1 24 47.1 24 1014.9 24 1013.0 24 5.7 24 13.8 24 20.0 999.9 55.4 35.8 0.87G 999.9 110000 724050 13743 19971108 49.0 24 47.5 24 1006.1 24 1004.6 24 4.5 24 11.3 24 15.0 999.9 50.7 46.2 1.31G 999.9 110000 724050 13743 19971109 50.2 24 45.9 24 1003.0 24 1001.4 24 6.9 23 11.3 24 18.1 999.9 55.4 47.7 0.52G 999.9 110000 724050 13743 19971110 50.9 24 38.8 24 1009.5 24 1008.1 24 12.6 24 7.4 24 14.0 999.9 58.1* 45.1* 0.24G 999.9 000000 724050 13743 19971111 48.3 24 34.6 24 1015.0 24 1013.6 24 11.4 24 8.4 24 11.1 999.9 58.1 44.8 0.00G 999.9 000000 724050 13743 19971112 45.9 24 33.3 24 1016.5 24 1015.1 24 13.2 24 6.5 24 13.0 999.9 54.1 42.6 0.00G 999.9 000000 724050 13743 19971113 39.3 24 23.4 24 1019.0 24 1017.7 24 12.6 24 10.1 24 13.0 999.9 49.6 37.0 0.00G 999.9 010000 724050 13743 19971114 39.6 24 38.0 24 1004.3 24 1002.8 24 4.8 24 10.7 24 13.0 999.9 41.2 37.0 0.53G 999.9 110000 724050 13743 19971115 41.2 24 34.4 24 1009.0 24 1007.6 24 11.7 24 5.5 24 11.1 15.0 48.9 34.7 0.18G 999.9 010000 724050 13743 19971116 39.9 24 25.6 24 1014.7 24 1013.4 24 13.1 24 10.5 24 19.0 25.1 48.9 32.9 0.00G 999.9 010000 724050 13743 19971117 36.6 24 17.8 24 1025.0 24 1023.7 24 12.8 24 7.4 24 11.1 999.9 47.7* 27.3* 0.00G 999.9 000000 724050 13743 19971118 37.9 24 22.1 24 1026.4 24 1025.2 24 13.5 24 4.8 24 8.9 999.9 49.1* 28.2* 0.00G 999.9 000000 724050 13743 19971119 39.5 24 28.5 24 1021.5 24 1020.1 24 10.1 24 3.2 24 8.9 999.9 52.7* 28.8* 0.00G 999.9 100000 724050 13743 19971120 43.7 24 32.4 24 1018.5 24 1017.2 24 13.1 24 6.0 24 11.1 999.9 59.5* 33.8* 0.00G 999.9 000000 724050 13743 19971121 46.1 24 37.5 24 1019.3 24 1017.9 24 11.5 24 3.9 24 11.1 999.9 59.7 33.3 0.20G 999.9 110000 724050 13743 19971122 47.3 24 45.8 24 1011.0 24 1009.5 24 4.5 24 3.0 24 6.0 999.9 55.9 38.8 0.63G 999.9 110000 724050 13743 19971123 49.3 24 46.6 24 1015.6 24 1014.2 24 4.6 24 3.6 24 6.0 999.9 52.3 44.4 0.07G 999.9 110000 724050 13743 19971124 40.9 24 23.1 24 1020.2 24 1018.8 24 14.4 24 11.4 24 17.1 28.0 53.1 35.8 0.00G 999.9 010000 724050 13743 19971125 36.4 24 18.5 24 1026.9 24 1025.5 24 12.8 24 7.5 24 12.0 999.9 47.3 27.5 0.00G 999.9 000000 724050 13743 19971126 44.2 24 29.6 24 1013.6 24 1012.3 24 12.8 24 9.4 24 15.0 999.9 55.8* 37.4* 0.00G 999.9 000000 724050 13743 19971127 52.2 24 28.2 24 1013.5 24 1012.1 24 15.2 24 11.2 24 16.9 28.0 57.2* 47.8* 0.00G 999.9 000000 724050 13743 19971128 47.1 24 32.6 24 1018.7 24 1017.3 24 11.8 24 5.1 24 14.0 999.9 57.6* 41.2* 0.00G 999.9 000000 724050 13743 19971129 52.2 24 41.9 24 1015.9 24 1014.5 24 10.7 24 4.8 24 11.1 999.9 58.8 41.9 0.00G 999.9 000000 724050 13743 19971130 50.1 24 44.8 24 1008.5 24 1007.0 24 7.8 24 4.4 24 8.0 999.9 54.9 48.0 0.00G 999.9 110000 724050 13743 19971201 47.4 24 36.2 24 1001.3 24 999.9 24 10.8 24 11.9 24 19.0 27.0 52.0 40.6 0.07G 999.9 110000 724050 13743 19971202 41.7 24 22.6 24 1016.7 24 1015.4 24 14.2 24 9.7 24 15.9 20.0 50.5 33.8 0.00G 999.9 000000 724050 13743 19971203 40.6 24 26.0 24 1020.5 24 1019.2 24 13.3 24 5.6 24 11.1 999.9 51.1* 32.9* 0.00G 999.9 000000 724050 13743 19971204 49.4 24 42.5 24 1006.8 24 1005.2 24 7.5 24 7.4 24 11.1 999.9 59.9 32.2 0.05G 999.9 110000 724050 13743 19971205 45.2 24 32.6 24 1003.1 24 1001.8 24 13.7 24 9.1 24 15.9 22.0 48.7* 39.7* 0.03G 999.9 010000 724050 13743 19971206 35.6 24 16.1 24 1007.3 24 1006.0 24 13.6 24 11.0 24 17.1 22.9 47.8 30.0 0.00G 999.9 000000 724050 13743 19971207 36.4 24 19.1 24 1011.0 24 1009.6 24 13.0 24 9.7 24 17.1 19.0 44.4* 30.6* 0.00G 999.9 000000 724050 13743 19971208 41.1 24 26.4 24 1018.4 24 1017.1 24 12.3 24 8.9 24 15.0 999.9 48.0* 37.4* 0.00G 999.9 000000 724050 13743 19971209 37.9 24 33.0 24 1016.5 24 1015.0 24 9.9 24 3.8 24 8.0 999.9 48.7 33.3 0.09G 999.9 111000 724050 13743 19971210 40.4 24 38.3 24 1010.5 24 1008.9 24 6.5 24 4.9 24 8.0 999.9 43.2* 37.0* 0.12G 999.9 110000 724050 13743 19971211 43.1 24 40.6 24 1011.3 24 1009.7 24 6.3 24 5.2 24 8.0 999.9 46.4* 41.0* 0.11G 999.9 110000 724050 13743 19971212 42.8 24 36.4 24 1017.7 24 1016.2 24 7.5 24 7.7 24 12.0 15.0 48.2* 40.6* 0.03G 999.9 100000 724050 13743 19971213 37.8 24 26.7 24 1015.3 24 1013.9 24 12.2 24 6.8 24 11.1 999.9 49.3 29.3 0.00G 999.9 000000 724050 13743 19971214 39.0 24 22.3 24 1015.1 24 1013.7 24 11.9 24 9.8 24 15.9 999.9 46.4 29.3 0.00G 999.9 000000 724050 13743 19971215 36.3 24 23.4 24 1020.5 24 1019.1 24 12.7 24 8.0 24 13.0 999.9 45.1 27.0 0.00G 999.9 000000 724050 13743 19971216 40.5 24 26.4 24 1019.5 24 1018.1 24 12.8 24 5.6 24 8.0 999.9 57.4* 29.5* 0.00G 999.9 000000 724050 13743 19971217 43.9 24 26.5 24 1013.3 24 1011.9 24 13.0 24 4.1 24 8.0 999.9 58.1 29.1 0.00G 999.9 000000 724050 13743 19971218 41.3 24 25.8 24 1017.4 24 1016.0 24 11.8 24 5.8 24 8.0 999.9 57.9 30.0 0.00G 999.9 000000 724050 13743 19971219 41.1 24 29.8 24 1018.5 24 1017.2 24 11.5 24 6.1 24 10.1 999.9 54.1* 33.3* 0.00G 999.9 000000 724050 13743 19971220 46.5 24 33.0 24 1015.7 24 1014.4 24 12.3 24 5.9 24 10.1 999.9 62.4 33.1 0.00G 999.9 000000 724050 13743 19971221 41.9 24 28.2 24 1023.1 24 1021.8 24 10.7 24 7.5 24 13.0 999.9 62.4 34.2 0.00G 999.9 000000 724050 13743 19971222 35.7 24 29.0 24 1025.8 24 1024.5 24 9.7 24 5.3 24 10.1 999.9 46.0 33.8 0.03G 999.9 111000 724050 13743 19971223 41.0 24 37.4 24 1014.8 24 1013.4 24 9.2 24 6.5 24 10.1 999.9 54.3* 35.1* 0.29G 999.9 110000 724050 13743 19971224 43.1 24 37.0 24 1019.3 24 1018.0 24 11.2 24 5.7 24 8.9 999.9 54.7 35.1 0.00G 999.9 010000 724050 13743 19971225 43.0 24 40.8 24 1009.5 24 1007.9 24 8.4 24 6.5 24 11.1 999.9 48.9 38.7 0.48G 999.9 110000 724050 13743 19971226 46.4 24 38.8 24 1012.0 24 1010.7 24 13.5 24 6.2 24 11.1 999.9 54.1 39.4 0.17G 999.9 000000 724050 13743 19971227 38.4 24 32.8 24 1010.6 24 1009.1 24 7.8 24 7.7 24 12.0 999.9 43.9* 33.8* 0.00G 999.9 111000 724050 13743 19971228 36.1 24 25.0 24 1010.9 24 1009.5 24 9.2 24 10.7 24 15.9 999.9 41.4 31.6 0.17G 999.9 111000 724050 13743 19971229 34.6 24 26.3 24 1011.0 24 1009.6 24 12.2 24 7.1 24 14.0 999.9 41.5 30.6 0.00G 999.9 000000 724050 13743 19971230 36.9 24 28.7 24 992.3 24 990.8 24 10.4 24 11.2 24 18.1 29.9 44.1 31.1 0.23G 999.9 111000 724050 13743 19971231 34.2 24 20.3 24 1010.2 24 1008.9 24 14.1 24 9.5 24 14.0 20.0 44.1 29.7 0.05G 999.9 000000 fluids-1.0.22/tests/gsod/2014/0000755000175000017500000000000014302004506015066 5ustar nileshnileshfluids-1.0.22/tests/gsod/2014/724050-13743.op0000644000175000017500000014327214302004506016657 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20140101 37.0 24 20.6 24 1027.7 24 1025.4 24 10.0 24 5.8 24 15.9 999.9 48.9 30.0 0.00G 999.9 000000 724050 13743 20140102 37.9 24 31.3 24 1016.9 20 1013.4 24 7.8 24 4.8 24 11.1 999.9 48.0 30.0 0.00G 999.9 011000 724050 13743 20140103 25.6 24 13.8 24 1021.0 18 1013.6 24 6.6 24 14.5 24 27.0 40.0 39.0 18.0 0.34G 1.2 101000 724050 13743 20140104 23.6 24 7.3 24 1031.9 24 1029.8 24 10.0 24 6.7 24 12.0 999.9 34.0 17.1 0.00G 1.2 000000 724050 13743 20140105 35.6 24 26.3 24 1024.8 16 1021.0 24 8.0 24 4.1 24 9.9 999.9 39.9 17.1 0.00G 1.2 010000 724050 13743 20140106 41.1 24 32.7 24 1006.5 16 1003.2 24 6.4 24 9.8 24 22.0 35.0 48.9 26.1 0.20G 1.2 110000 724050 13743 20140107 13.7 24 -10.1 24 1024.0 24 1021.8 24 10.0 24 12.2 24 21.0 33.0 26.1* 7.0* 0.04G 999.9 000000 724050 13743 20140108 20.0 24 -2.6 24 1033.7 24 1031.4 24 10.0 24 5.5 24 11.1 999.9 30.9 6.1 0.00G 999.9 000000 724050 13743 20140109 32.7 24 16.7 24 1035.3 24 1033.0 24 10.0 24 4.0 24 7.0 999.9 39.9* 28.4* 0.00G 999.9 000000 724050 13743 20140110 34.1 24 27.1 24 1032.4 17 1029.6 24 5.9 24 1.9 24 8.0 999.9 41.0 28.0 0.06G 999.9 110000 724050 13743 20140111 42.3 24 39.6 24 1012.6 11 1010.1 24 3.1 24 4.6 24 14.0 29.9 55.0 28.0 0.65G 999.9 110000 724050 13743 20140112 50.2 24 34.4 24 1008.2 24 1005.8 24 10.0 24 9.6 24 15.0 24.1 57.9 37.0 0.73G 999.9 010000 724050 13743 20140113 43.3 24 32.3 24 1018.1 24 1015.7 24 9.7 24 4.2 24 12.0 19.0 61.0 32.0 0.00G 999.9 000000 724050 13743 20140114 50.0 24 41.4 24 1010.3 23 1007.8 24 9.3 24 8.2 24 13.0 22.9 61.0 32.0 0.08G 999.9 010000 724050 13743 20140115 43.1 24 38.9 24 1013.3 13 1011.1 24 5.2 24 5.1 24 19.0 24.1 54.0 39.0 0.27G 999.9 100000 724050 13743 20140116 39.2 24 22.4 24 1014.8 24 1012.5 24 9.8 24 9.1 24 19.0 21.0 50.0 35.1 0.00G 999.9 011000 724050 13743 20140117 38.1 24 25.4 24 1014.0 24 1011.7 24 10.0 24 5.7 24 9.9 999.9 48.9 30.9 0.00G 999.9 000000 724050 13743 20140118 35.0 24 19.6 24 1012.5 23 1010.0 24 10.0 24 11.0 24 18.1 28.0 48.9 28.0 0.00G 999.9 011000 724050 13743 20140119 33.5 24 14.2 24 1012.1 24 1009.9 24 10.0 24 6.8 24 15.0 21.0 51.1 25.0 0.00G 999.9 000000 724050 13743 20140120 45.8 24 24.6 24 1006.8 24 1004.5 24 10.0 24 7.9 24 15.9 22.0 59.0 25.0 0.00G 999.9 000000 724050 13743 20140121 35.7 24 24.5 24 1011.2 17 1008.3 24 7.0 24 10.4 24 22.9 29.9 59.0 24.1 0.00G 3.1 001000 724050 13743 20140122 15.4 24 -0.0 24 1015.0 24 1012.6 24 8.2 24 15.8 24 24.1 29.9 24.1* 9.0* 0.18G 3.1 001000 724050 13743 20140123 18.9 24 0.0 24 1022.4 24 1019.9 24 10.0 24 7.6 24 15.0 24.1 28.0 9.0 0.00G 3.1 001000 724050 13743 20140124 17.3 24 -3.8 24 1031.4 24 1029.1 24 10.0 24 8.7 24 15.0 22.0 28.0 10.9 0.00G 2.0 000000 724050 13743 20140125 25.7 24 3.6 24 1010.9 24 1008.7 24 10.0 24 15.3 24 21.0 28.0 34.0 10.9 0.00G 2.0 000000 724050 13743 20140126 29.2 24 10.2 24 1008.9 24 1006.6 24 10.0 24 7.2 24 15.9 22.9 35.6* 21.0* 0.00G 1.2 001000 724050 13743 20140127 37.7 24 19.3 24 1008.3 24 1006.0 24 10.0 24 9.6 24 22.9 29.9 54.0 19.0 0.00G 1.2 000000 724050 13743 20140128 19.7 24 -4.6 24 1026.5 24 1024.3 24 10.0 24 11.8 24 20.0 25.1 28.9* 14.0* 0.00G 999.9 000000 724050 13743 20140129 18.3 24 -0.6 24 1026.0 21 1023.6 24 8.3 24 8.4 24 15.9 21.0 26.1 12.9 0.03G 1.2 001000 724050 13743 20140130 24.2 24 0.7 24 1029.4 24 1027.2 24 10.0 24 5.5 24 11.1 15.0 34.0 12.9 0.00I 1.2 000000 724050 13743 20140131 32.9 24 11.5 24 1022.2 24 1019.9 24 10.0 24 4.2 24 8.0 999.9 51.1 16.0 0.00G 999.9 000000 724050 13743 20140201 39.2 24 19.6 24 1023.9 24 1021.6 24 10.0 24 2.7 24 8.9 999.9 53.1 25.0 0.00G 999.9 000000 724050 13743 20140202 46.2 24 29.0 24 1015.9 24 1013.6 24 10.0 24 1.9 24 7.0 999.9 64.0 28.0 0.00G 999.9 000000 724050 13743 20140203 43.0 24 34.9 24 1018.5 17 1016.2 24 7.3 24 10.6 24 15.0 21.0 64.0 34.0 0.70G 999.9 011000 724050 13743 20140204 34.6 24 23.6 24 1028.9 24 1026.6 24 10.0 24 6.3 24 13.0 999.9 50.0 30.0 0.78G 999.9 000000 724050 13743 20140205 35.5 24 29.8 24 1015.4 15 1012.9 24 7.1 24 6.2 24 8.9 999.9 39.9 30.0 0.28G 999.9 010000 724050 13743 20140206 34.7 24 17.8 24 1023.1 24 1020.8 24 10.0 24 12.4 24 26.0 35.0 44.1* 30.0* 0.10G 999.9 000000 724050 13743 20140207 36.0 24 18.1 24 1026.6 24 1024.3 24 10.0 24 4.8 24 9.9 999.9 44.1 28.9 0.00G 999.9 000000 724050 13743 20140208 33.2 24 13.6 24 1026.8 24 1024.5 24 9.9 24 5.3 24 9.9 999.9 44.1 28.9 0.00G 999.9 001000 724050 13743 20140209 32.0 24 19.1 24 1021.7 23 1019.1 24 9.6 24 3.6 24 9.9 999.9 37.0 28.9 0.00G 999.9 011000 724050 13743 20140210 31.8 24 17.1 24 1021.6 24 1019.1 24 9.3 24 8.9 24 15.0 21.0 36.0 27.0 0.00G 999.9 001000 724050 13743 20140211 27.4 24 7.8 24 1028.9 24 1026.7 24 10.0 24 7.5 24 12.0 999.9 35.1 21.9 0.00G 999.9 000000 724050 13743 20140212 25.4 24 8.0 24 1032.1 24 1029.9 24 10.0 24 7.5 24 11.1 999.9 35.1 19.0 0.00G 999.9 001000 724050 13743 20140213 32.7 24 27.5 24 1012.0 8 1007.1 24 2.7 24 14.5 24 21.0 32.1 37.9 19.0 1.05G 3.9 011000 724050 13743 20140214 40.7 24 25.6 24 1000.9 21 997.1 24 8.9 24 9.3 24 17.1 31.1 52.0 27.0 0.65G 3.1 001000 724050 13743 20140215 38.4 24 27.5 24 1005.5 18 1003.1 24 8.6 24 9.2 24 22.0 35.0 52.0 33.1 0.01G 2.0 011000 724050 13743 20140216 32.2 24 12.9 24 1016.0 24 1013.7 24 10.0 24 8.2 24 17.1 25.1 39.9 27.0 0.06G 1.2 000000 724050 13743 20140217 31.4 24 13.0 24 1026.9 24 1024.6 24 10.0 24 5.9 24 12.0 999.9 37.9 25.0 0.00G 1.2 000000 724050 13743 20140218 38.4 24 22.3 24 1020.6 22 1018.7 24 9.1 24 8.4 24 15.9 21.0 57.9 25.0 0.06G 1.2 001000 724050 13743 20140219 45.1 24 34.8 24 1013.8 22 1010.8 24 9.7 24 6.2 24 14.0 22.9 63.0 30.0 0.12C 1.2 010000 724050 13743 20140220 48.5 24 29.4 24 1021.2 24 1018.8 24 10.0 24 5.3 24 13.0 21.0 63.0 35.1 0.00A 999.9 000000 724050 13743 20140221 50.5 24 40.6 24 1011.6 19 1008.9 24 9.8 24 4.2 24 22.9 36.9 69.1 37.0 0.00G 999.9 010000 724050 13743 20140222 46.5 24 32.1 24 1017.0 24 1014.7 24 10.0 24 5.8 24 14.0 22.0 69.1 34.0 0.03G 999.9 100000 724050 13743 20140223 52.0 24 29.3 24 1015.6 24 1013.3 24 10.0 24 6.5 24 12.0 999.9 64.0 34.0 0.00G 999.9 000000 724050 13743 20140224 44.8 24 21.0 24 1015.7 24 1013.4 24 10.0 24 13.0 24 21.0 28.9 64.0 39.0 0.00G 999.9 000000 724050 13743 20140225 35.0 24 16.9 24 1019.4 21 1017.4 24 8.2 24 4.4 24 8.9 999.9 48.0 30.0 0.00G 3.1 001000 724050 13743 20140226 33.3 24 17.6 24 1014.9 21 1012.8 24 8.2 24 7.5 24 17.1 22.9 39.0 30.0 0.11G 999.9 001000 724050 13743 20140227 31.8 24 8.5 24 1009.3 24 1007.1 24 10.0 24 10.1 24 22.9 32.1 43.0 25.0 0.07G 999.9 000000 724050 13743 20140228 23.0 24 -3.9 24 1025.4 24 1023.1 24 10.0 24 11.0 24 25.1 31.1 43.0 14.0 0.00G 999.9 000000 724050 13743 20140301 30.7 24 9.2 24 1027.8 24 1025.6 24 10.0 24 4.2 24 9.9 999.9 46.0 14.0 0.00G 999.9 000000 724050 13743 20140302 42.2 24 27.7 24 1019.2 23 1017.1 24 9.2 24 3.9 24 12.0 999.9 53.1 23.0 0.00G 999.9 010000 724050 13743 20140303 29.5 24 21.9 24 1022.8 12 1018.3 24 3.8 24 12.5 24 22.9 27.0 53.1 19.0 0.63G 3.9 011000 724050 13743 20140304 21.7 24 2.5 24 1028.4 24 1026.2 24 10.0 24 5.9 24 15.0 999.9 37.9 14.0 0.15G 2.0 000000 724050 13743 20140305 32.5 24 13.8 24 1024.4 24 1022.1 24 10.0 24 3.0 24 9.9 999.9 46.0 14.0 0.00G 1.2 000000 724050 13743 20140306 32.6 24 15.2 24 1031.6 24 1029.3 24 10.0 24 10.5 24 15.9 22.0 46.0 24.1 0.00G 2.0 000000 724050 13743 20140307 36.4 24 24.1 24 1023.6 23 1021.8 24 10.0 24 11.1 24 14.0 20.0 46.0 26.1 0.00G 999.9 000000 724050 13743 20140308 45.0 24 28.7 24 1014.1 24 1011.8 24 9.9 24 6.9 24 11.1 14.0 66.9 30.9 0.00G 999.9 000000 724050 13743 20140309 49.0 24 28.6 24 1016.3 24 1014.0 24 10.0 24 8.1 24 17.1 26.0 66.9 32.0 0.00G 999.9 000000 724050 13743 20140310 46.7 24 25.9 24 1012.7 24 1010.3 24 10.0 24 7.5 24 18.1 22.9 61.0 39.0 0.00G 999.9 000000 724050 13743 20140311 54.2 24 34.6 24 1005.2 24 1002.9 24 10.0 24 4.2 24 8.0 999.9 72.0 39.0 0.00G 999.9 000000 724050 13743 20140312 55.9 24 42.3 24 997.5 22 994.2 24 9.7 24 7.1 24 22.9 38.1 72.0 44.1 0.00G 999.9 010000 724050 13743 20140313 33.5 24 8.3 24 1008.0 23 1004.5 24 10.0 24 20.2 24 31.1 41.0 60.1* 24.1* 0.04G 999.9 000000 724050 13743 20140314 39.5 24 12.1 24 1021.3 24 1019.2 24 10.0 24 8.8 24 17.1 22.9 60.1 23.0 0.00G 999.9 000000 724050 13743 20140315 57.9 24 23.6 24 1012.3 24 1009.9 24 10.0 24 11.3 24 18.1 25.1 69.1* 50.0* 0.00G 999.9 000000 724050 13743 20140316 46.5 24 23.6 24 1019.9 23 1017.6 24 10.0 24 7.8 24 17.1 22.0 70.0 35.1 0.00G 999.9 011000 724050 13743 20140317 29.7 24 23.4 24 1017.8 13 1015.5 24 4.4 24 12.0 24 15.9 22.0 35.6* 26.6* 0.67G 5.9 101000 724050 13743 20140318 35.3 24 21.7 24 1021.2 23 1018.6 24 10.0 24 8.4 24 13.0 999.9 43.0 27.0 0.35G 1.2 000000 724050 13743 20140319 40.3 24 31.4 24 1022.5 19 1019.3 24 7.9 24 4.8 24 8.9 999.9 44.1 30.9 0.00G 5.9 010000 724050 13743 20140320 49.1 24 34.5 24 1012.2 20 1009.8 24 6.4 24 8.2 24 18.1 27.0 61.0 35.1 0.37G 999.9 110000 724050 13743 20140321 50.0 24 29.5 24 1017.6 24 1015.2 24 10.0 24 5.6 24 11.1 20.0 61.0 43.0 0.00G 999.9 000000 724050 13743 20140322 54.0 24 35.3 24 1013.3 24 1011.0 24 9.9 24 5.9 24 13.0 18.1 73.0 44.1 0.00G 999.9 000000 724050 13743 20140323 48.1 24 26.7 24 1017.5 24 1015.2 24 10.0 24 10.4 24 18.1 22.0 73.0 42.1 0.00G 999.9 000000 724050 13743 20140324 35.1 24 8.4 24 1023.7 24 1021.4 24 10.0 24 10.4 24 18.1 26.0 52.0 26.1 0.00G 999.9 000000 724050 13743 20140325 34.7 24 22.8 24 1018.5 19 1015.6 24 6.5 24 4.8 24 11.1 999.9 43.0 26.1 0.00G 1.2 001000 724050 13743 20140326 34.1 24 18.3 24 1017.8 21 1014.7 24 8.9 24 14.6 24 24.1 35.0 39.0 30.0 0.29G 999.9 001000 724050 13743 20140327 37.4 24 12.5 24 1028.3 24 1026.0 24 10.0 24 6.3 24 13.0 18.1 52.0 27.0 0.00G 999.9 000000 724050 13743 20140328 53.2 24 38.7 24 1020.0 24 1017.6 24 9.9 24 12.7 24 20.0 27.0 68.0* 44.1* 0.00G 999.9 010000 724050 13743 20140329 58.3 24 52.9 24 1017.6 13 1013.0 24 6.1 24 5.7 24 14.0 999.9 68.0 46.0 0.09G 999.9 110000 724050 13743 20140330 48.2 24 43.2 24 1002.9 15 1000.1 24 7.1 24 12.4 24 22.9 29.9 63.0* 35.6* 1.14G 999.9 011000 724050 13743 20140331 51.5 24 32.0 24 1013.6 24 1011.2 24 10.0 24 14.3 24 18.1 29.9 66.9 36.0 0.88G 999.9 010000 724050 13743 20140401 54.6 24 31.6 24 1019.2 24 1016.9 24 10.0 24 6.0 24 9.9 999.9 66.9 43.0 0.00G 999.9 000000 724050 13743 20140402 54.4 24 40.7 24 1017.8 24 1015.4 24 10.0 24 4.1 24 8.0 999.9 69.1 44.1 0.00G 999.9 000000 724050 13743 20140403 59.7 24 45.2 24 1018.2 24 1015.8 24 10.0 24 3.1 24 9.9 999.9 69.1 45.0 0.00G 999.9 010000 724050 13743 20140404 55.8 24 43.6 24 1012.4 24 1010.1 24 10.0 24 7.1 24 11.1 999.9 69.1 50.0 0.00G 999.9 000000 724050 13743 20140405 54.1 24 38.3 24 1012.4 23 1009.4 24 8.4 24 10.2 24 18.1 27.0 63.0 48.0 0.06G 999.9 010000 724050 13743 20140406 49.7 24 22.3 24 1022.7 24 1020.3 24 10.0 24 5.9 24 12.0 19.0 63.0 39.0 0.00G 999.9 000000 724050 13743 20140407 48.5 24 35.3 24 1019.7 18 1015.4 24 7.9 24 6.3 24 12.0 999.9 63.0 39.0 0.00G 999.9 010000 724050 13743 20140408 57.8 24 47.2 24 1002.5 18 999.8 24 7.1 24 8.2 24 18.1 26.0 68.0 42.1 0.42G 999.9 010000 724050 13743 20140409 56.8 24 35.2 24 1008.1 24 1005.7 24 10.0 24 7.5 24 18.1 27.0 69.1 44.1 0.04G 999.9 000000 724050 13743 20140410 59.2 24 32.1 24 1019.6 24 1017.3 24 10.0 24 7.6 24 19.0 26.0 72.0 44.1 0.00G 999.9 000000 724050 13743 20140411 67.7 24 40.8 24 1016.5 24 1014.2 24 10.0 24 10.7 24 20.0 27.0 80.1* 61.0* 0.00G 999.9 000000 724050 13743 20140412 66.6 24 44.9 24 1020.7 24 1018.4 24 10.0 24 5.0 24 11.1 999.9 82.0 57.0 0.00G 999.9 010000 724050 13743 20140413 69.0 24 51.0 24 1019.5 24 1017.1 24 10.0 24 8.8 24 15.9 24.1 84.9 55.0 0.00G 999.9 000000 724050 13743 20140414 72.1 24 55.0 24 1014.4 24 1012.1 24 10.0 24 15.1 24 22.9 29.9 84.9 55.0 0.00G 999.9 000000 724050 13743 20140415 64.5 24 56.0 24 1008.0 14 1003.8 24 8.2 24 10.8 24 22.9 32.1 80.1 41.0 0.10G 999.9 011000 724050 13743 20140416 41.0 24 19.9 24 1026.2 23 1022.7 24 9.8 24 13.9 24 24.1 29.9 51.1* 34.0* 1.43G 999.9 011000 724050 13743 20140417 46.8 24 27.9 24 1035.7 24 1033.3 24 10.0 24 7.6 24 13.0 15.9 55.9 34.0 0.00G 999.9 000000 724050 13743 20140418 46.2 24 31.9 24 1032.1 21 1030.1 24 10.0 24 4.6 24 12.0 999.9 57.0 39.0 0.00G 999.9 000000 724050 13743 20140419 56.0 24 36.7 24 1025.2 24 1022.8 24 10.0 24 4.5 24 8.9 999.9 71.1 39.0 0.00G 999.9 000000 724050 13743 20140420 57.8 24 35.8 24 1027.7 24 1025.4 24 10.0 24 8.0 24 12.0 15.9 71.1 46.9 0.00G 999.9 000000 724050 13743 20140421 55.1 24 32.6 24 1022.3 24 1020.0 24 10.0 24 4.4 24 9.9 999.9 70.0 43.0 0.00G 999.9 000000 724050 13743 20140422 60.8 24 48.7 24 1007.8 24 1005.6 24 9.9 24 6.9 24 15.0 21.0 72.0 43.0 0.00G 999.9 010000 724050 13743 20140423 57.8 24 38.7 24 1007.6 24 1005.3 24 10.0 24 14.3 24 21.0 32.1 72.0 51.1 0.03G 999.9 000000 724050 13743 20140424 54.0 24 26.0 24 1017.4 24 1015.0 24 10.0 24 9.3 24 14.0 20.0 66.0 45.0 0.00G 999.9 000000 724050 13743 20140425 58.5 24 36.5 24 1014.0 24 1011.8 24 9.7 24 6.2 24 15.9 22.0 69.1 45.0 0.00G 999.9 010010 724050 13743 20140426 61.8 24 44.9 24 1009.0 24 1006.7 24 9.4 24 8.6 24 15.9 26.0 78.1 48.0 0.39G 999.9 010000 724050 13743 20140427 61.3 24 36.8 24 1015.7 24 1013.1 24 9.9 24 9.4 24 17.1 28.9 78.1 50.0 0.02G 999.9 010000 724050 13743 20140428 57.3 24 39.5 24 1018.7 24 1016.4 24 10.0 24 5.3 24 11.1 999.9 70.0 50.0 0.00G 999.9 010000 724050 13743 20140429 51.0 24 46.0 24 1020.0 14 1017.9 24 5.9 24 7.2 24 15.0 21.0 53.1* 48.2* 0.11G 999.9 010000 724050 13743 20140430 55.5 24 52.4 24 1019.0 10 1016.0 24 4.9 24 8.5 24 15.0 25.1 64.0 44.1 1.63G 999.9 110010 724050 13743 20140501 66.8 24 58.4 24 1009.1 21 1007.3 24 9.3 24 5.8 24 14.0 18.1 77.0 52.0 2.44G 999.9 110000 724050 13743 20140502 64.8 24 39.7 24 1009.8 24 1007.5 24 10.0 24 8.3 24 15.9 25.1 77.0 55.0 0.16G 999.9 010000 724050 13743 20140503 64.7 24 42.3 24 1010.8 24 1008.6 24 10.0 24 4.8 24 12.0 15.9 73.9 55.0 0.00G 999.9 010000 724050 13743 20140504 66.5 24 41.4 24 1009.4 24 1007.0 24 10.0 24 8.9 24 22.0 32.1 81.0 55.0 0.00G 999.9 000000 724050 13743 20140505 58.9 24 34.8 24 1014.9 24 1012.6 24 10.0 24 9.9 24 18.1 21.0 64.9* 50.0* 0.00G 999.9 010010 724050 13743 20140506 59.6 24 46.6 24 1014.2 23 1011.9 24 9.6 24 4.1 24 12.0 999.9 73.9 50.0 0.38G 999.9 010010 724050 13743 20140507 60.8 24 46.4 24 1020.3 24 1018.2 24 9.9 24 3.8 24 8.0 999.9 73.9 53.1 0.00G 999.9 010010 724050 13743 20140508 66.3 24 56.1 24 1019.2 20 1017.2 24 9.0 24 3.7 24 7.0 999.9 87.1 55.0 0.14G 999.9 010000 724050 13743 20140509 68.6 24 60.3 24 1017.9 23 1015.9 24 8.7 24 5.1 24 8.9 999.9 87.1 59.0 0.00G 999.9 000000 724050 13743 20140510 70.6 24 62.5 24 1014.6 23 1012.4 24 9.6 24 6.4 24 15.0 27.0 78.1 61.0 0.00G 999.9 010000 724050 13743 20140511 71.3 24 55.1 24 1017.7 24 1015.4 24 10.0 24 4.8 24 9.9 14.0 81.0 62.1 0.16G 999.9 010000 724050 13743 20140512 72.8 24 60.2 24 1019.4 24 1017.0 24 10.0 24 6.6 24 12.0 19.0 86.0 62.1 0.00G 999.9 000000 724050 13743 20140513 76.9 24 66.4 24 1018.7 24 1016.3 24 9.5 24 3.8 24 11.1 21.0 91.9 63.0 0.08G 999.9 010000 724050 13743 20140514 65.0 24 59.1 24 1022.2 20 1020.0 24 7.9 24 7.3 24 12.0 18.1 75.9* 60.1* 0.00G 999.9 010010 724050 13743 20140515 71.2 24 64.9 24 1018.1 18 1016.3 24 6.7 24 8.1 24 15.9 22.9 81.0 60.1 0.00G 999.9 010000 724050 13743 20140516 67.2 24 58.3 24 1011.6 18 1009.1 24 8.0 24 11.3 24 32.1 42.9 81.0 55.0 2.42G 999.9 010000 724050 13743 20140517 61.5 24 42.9 24 1016.7 24 1014.4 24 10.0 24 7.8 24 13.0 17.1 72.0 52.0 0.23G 999.9 010000 724050 13743 20140518 61.3 24 38.8 24 1022.8 24 1020.5 24 10.0 24 7.7 24 14.0 17.1 69.1 52.0 0.00G 999.9 000000 724050 13743 20140519 62.1 24 38.4 24 1024.3 24 1021.9 24 10.0 24 4.2 24 8.9 14.0 73.9 48.9 0.00G 999.9 000000 724050 13743 20140520 65.7 24 44.3 24 1021.3 24 1019.0 24 10.0 24 4.1 24 11.1 999.9 77.0 48.9 0.00G 999.9 000000 724050 13743 20140521 70.1 24 56.6 24 1015.1 24 1012.8 24 9.9 24 3.8 24 9.9 999.9 80.1 55.9 0.00G 999.9 010010 724050 13743 20140522 74.4 24 61.5 24 1010.5 20 1008.4 24 7.5 24 5.4 24 14.0 25.1 89.1 63.0 0.16G 999.9 010000 724050 13743 20140523 73.0 24 48.7 24 1013.0 24 1010.7 24 10.0 24 11.8 24 19.0 24.1 89.1 61.0 0.00G 999.9 000000 724050 13743 20140524 67.5 24 46.7 24 1017.7 24 1015.4 24 10.0 24 9.3 24 17.1 22.9 81.0 57.0 0.00G 999.9 000000 724050 13743 20140525 72.4 24 49.8 24 1020.0 24 1017.7 24 10.0 24 4.6 24 8.9 999.9 84.0 57.0 0.00G 999.9 000000 724050 13743 20140526 74.9 24 56.1 24 1019.1 24 1016.8 24 10.0 24 5.1 24 11.1 17.1 88.0 60.1 0.00G 999.9 000000 724050 13743 20140527 78.5 24 64.1 24 1014.2 24 1011.9 24 9.8 24 6.6 24 28.0 36.9 91.9 64.0 0.00G 999.9 010010 724050 13743 20140528 76.4 24 65.4 24 1012.7 24 1010.4 24 9.9 24 5.5 24 12.0 17.1 91.9 69.1 0.91G 999.9 010010 724050 13743 20140529 62.0 24 55.9 24 1019.9 13 1017.9 24 7.1 24 8.4 24 18.1 20.0 82.9* 57.2* 0.04G 999.9 010000 724050 13743 20140530 64.4 24 55.0 24 1020.1 19 1018.1 24 8.2 24 4.9 24 9.9 999.9 75.9 57.9 0.28G 999.9 010000 724050 13743 20140531 71.8 24 50.0 24 1020.9 24 1018.5 24 10.0 24 7.8 24 12.0 21.0 81.0 59.0 0.00G 999.9 000000 724050 13743 20140601 68.5 24 52.4 24 1026.4 24 1024.1 24 10.0 24 5.4 24 9.9 999.9 81.0 59.0 0.00G 999.9 000000 724050 13743 20140602 69.8 24 52.3 24 1023.6 24 1021.3 24 10.0 24 8.7 24 13.0 18.1 82.0 57.9 0.00G 999.9 000000 724050 13743 20140603 75.5 24 62.1 24 1015.7 24 1013.5 24 10.0 24 6.7 24 18.1 22.9 86.0 57.9 0.00G 999.9 010000 724050 13743 20140604 80.0 24 63.0 24 1010.4 24 1008.1 24 9.9 24 4.6 24 11.1 999.9 90.0 66.9 0.01G 999.9 000000 724050 13743 20140605 74.0 24 61.1 24 1006.8 17 1003.7 24 9.5 24 8.7 24 17.1 24.1 90.0 66.0 0.42G 999.9 010000 724050 13743 20140606 72.4 24 49.8 24 1012.7 24 1010.4 24 10.0 24 7.4 24 13.0 17.1 82.0 62.1 0.01G 999.9 000000 724050 13743 20140607 74.9 24 54.5 24 1015.9 24 1013.5 24 10.0 24 2.5 24 9.9 999.9 86.0 62.1 0.00G 999.9 000000 724050 13743 20140608 76.1 24 60.1 24 1013.8 24 1011.7 24 10.0 24 7.0 24 13.0 18.1 86.0 64.0 0.00G 999.9 000000 724050 13743 20140609 77.2 24 66.6 24 1011.5 24 1009.2 24 9.0 24 6.5 24 9.9 999.9 84.9 66.9 0.45G 999.9 010000 724050 13743 20140610 79.8 24 70.3 24 1012.0 21 1009.6 24 9.6 24 5.5 24 12.0 999.9 88.0 70.0 0.21G 999.9 010000 724050 13743 20140611 79.3 24 69.7 24 1014.1 22 1011.8 24 9.2 24 5.7 24 14.0 19.0 86.0* 73.4* 0.83G 999.9 010010 724050 13743 20140612 74.9 24 68.6 24 1013.5 17 1011.7 24 8.7 24 7.5 24 14.0 18.1 88.0 71.1 0.77G 999.9 010010 724050 13743 20140613 76.3 24 69.2 24 1009.3 17 1007.3 24 9.9 24 5.4 24 14.0 19.0 82.9 71.1 0.07G 999.9 010010 724050 13743 20140614 73.3 24 56.8 24 1014.3 24 1011.7 24 10.0 24 10.6 24 17.1 24.1 82.9 68.0 0.22G 999.9 010000 724050 13743 20140615 71.9 24 52.5 24 1020.4 24 1018.1 24 10.0 24 5.4 24 9.9 14.0 84.0 60.1 0.00G 999.9 000000 724050 13743 20140616 78.2 24 63.7 24 1019.7 24 1017.4 24 10.0 24 3.1 24 8.9 999.9 90.0 60.1 0.00G 999.9 000000 724050 13743 20140617 83.7 24 67.8 24 1018.1 24 1015.8 24 10.0 24 5.3 24 11.1 18.1 97.0 68.0 0.00G 999.9 000000 724050 13743 20140618 87.1 24 68.8 24 1015.3 24 1013.0 24 10.0 24 7.3 24 15.0 17.1 97.0 73.0 0.00G 999.9 000000 724050 13743 20140619 82.0 24 68.3 24 1015.5 21 1013.2 24 10.0 24 7.4 24 21.0 34.0 95.0 75.0 0.00G 999.9 010010 724050 13743 20140620 76.9 24 58.1 24 1016.5 23 1014.3 24 10.0 24 5.9 24 8.9 999.9 87.1 70.0 0.00G 999.9 000000 724050 13743 20140621 73.5 24 58.4 24 1013.4 24 1011.1 24 10.0 24 5.2 24 9.9 999.9 87.1 69.1 0.00G 999.9 010000 724050 13743 20140622 74.1 24 60.4 24 1013.9 19 1011.5 24 8.9 24 5.6 24 8.0 999.9 82.0 68.0 0.09G 999.9 010000 724050 13743 20140623 76.4 24 60.9 24 1018.2 24 1015.9 24 10.0 24 6.5 24 12.0 999.9 84.9 68.0 0.00I 999.9 000000 724050 13743 20140624 77.0 24 62.5 24 1019.8 24 1017.5 24 10.0 24 9.0 24 12.0 999.9 87.1 68.0 0.00G 999.9 000000 724050 13743 20140625 81.2 24 69.6 24 1014.2 24 1011.9 24 10.0 24 8.6 24 12.0 999.9 89.1 69.1 0.00G 999.9 000000 724050 13743 20140626 81.8 24 66.8 24 1012.6 24 1010.1 24 10.0 24 7.7 24 20.0 27.0 89.1 73.9 0.45G 999.9 010010 724050 13743 20140627 80.9 24 64.3 24 1017.2 24 1014.9 24 10.0 24 6.8 24 12.0 999.9 89.1 72.0 0.00G 999.9 000000 724050 13743 20140628 77.9 24 59.6 24 1023.3 24 1021.1 24 10.0 24 5.4 24 11.1 17.1 88.0 69.1 0.00G 999.9 000000 724050 13743 20140629 78.0 24 57.5 24 1023.6 24 1021.2 24 10.0 24 6.8 24 12.0 999.9 87.1 69.1 0.00G 999.9 000000 724050 13743 20140630 79.4 24 62.0 24 1018.3 24 1016.0 24 10.0 24 8.3 24 11.1 999.9 89.1 69.1 0.00G 999.9 000000 724050 13743 20140701 83.3 24 68.4 24 1013.0 24 1010.6 24 10.0 24 9.4 24 15.9 20.0 93.0 72.0 0.00G 999.9 000000 724050 13743 20140702 86.9 24 71.6 24 1011.3 24 1008.9 24 10.0 24 8.8 24 14.0 21.0 99.0 75.9 0.00G 999.9 000000 724050 13743 20140703 81.8 24 71.1 24 1013.7 18 1011.3 24 10.0 24 6.8 24 19.0 33.0 99.0 75.0 0.04G 999.9 010010 724050 13743 20140704 77.0 24 62.2 24 1016.0 21 1013.5 24 9.3 24 12.2 24 20.0 28.9 91.9 71.1 0.52G 999.9 010010 724050 13743 20140705 74.5 24 47.9 24 1023.0 24 1020.7 24 10.0 24 7.2 24 13.0 999.9 86.0 64.0 0.16G 999.9 000000 724050 13743 20140706 77.0 24 54.6 24 1019.7 24 1017.4 24 10.0 24 6.9 24 13.0 20.0 89.1 64.0 0.00G 999.9 000000 724050 13743 20140707 83.1 24 61.7 24 1013.0 24 1010.6 24 10.0 24 10.6 24 15.0 24.1 93.9 64.9 0.00G 999.9 000000 724050 13743 20140708 86.2 24 64.5 24 1010.0 24 1007.6 24 10.0 24 10.2 24 28.0 41.0 95.0* 71.6* 0.00G 999.9 010010 724050 13743 20140709 78.0 24 68.7 24 1012.0 23 1009.5 24 9.4 24 6.9 24 19.0 22.0 89.1* 71.6* 0.76G 999.9 010010 724050 13743 20140710 78.0 24 67.4 24 1016.5 22 1014.2 24 10.0 24 4.4 24 28.0 42.9 89.1 69.1 0.02G 999.9 010010 724050 13743 20140711 77.2 24 64.9 24 1021.3 23 1018.8 24 9.6 24 3.8 24 9.9 999.9 89.1 69.1 1.31G 999.9 010010 724050 13743 20140712 81.1 24 67.5 24 1022.4 24 1020.0 24 10.0 24 7.4 24 12.0 999.9 90.0 69.1 0.00G 999.9 000000 724050 13743 20140713 83.0 24 69.1 24 1017.3 24 1015.0 24 10.0 24 10.1 24 13.0 19.0 93.9 73.0 0.00G 999.9 000000 724050 13743 20140714 82.5 24 70.6 24 1012.8 22 1010.4 24 9.9 24 6.4 24 28.0 36.9 93.9 75.9 0.05G 999.9 010010 724050 13743 20140715 80.5 24 71.6 24 1009.0 21 1006.6 24 9.9 24 4.9 24 15.9 17.1 89.6* 73.4* 0.16G 999.9 010010 724050 13743 20140716 76.1 24 60.4 24 1010.7 22 1008.2 24 9.0 24 7.1 24 12.0 19.0 89.1 71.1 1.71G 999.9 010010 724050 13743 20140717 75.7 24 53.1 24 1015.8 24 1013.5 24 10.0 24 5.7 24 9.9 14.0 82.9 66.0 0.00G 999.9 000000 724050 13743 20140718 76.7 24 54.1 24 1022.1 24 1019.8 24 10.0 24 3.5 24 8.0 999.9 86.0 66.0 0.00G 999.9 000000 724050 13743 20140719 78.0 24 56.6 24 1022.3 24 1020.0 24 10.0 24 4.3 24 8.9 999.9 86.0 68.0 0.00G 999.9 010000 724050 13743 20140720 77.3 24 63.1 24 1019.7 24 1017.4 24 10.0 24 4.5 24 8.0 999.9 84.9 73.0 0.00G 999.9 010000 724050 13743 20140721 77.9 24 65.3 24 1021.1 22 1018.7 24 10.0 24 4.0 24 8.9 999.9 86.0 73.0 0.00G 999.9 000000 724050 13743 20140722 79.7 24 67.7 24 1021.1 22 1019.0 24 10.0 24 6.6 24 12.0 999.9 88.0 73.0 0.00G 999.9 000000 724050 13743 20140723 83.2 24 69.2 24 1015.3 24 1013.0 24 10.0 24 8.1 24 12.0 18.1 93.9 73.9 0.00G 999.9 010010 724050 13743 20140724 79.3 24 65.1 24 1012.0 24 1009.7 24 10.0 24 6.5 24 15.0 24.1 93.9 75.0 0.01G 999.9 010010 724050 13743 20140725 75.3 24 54.2 24 1016.1 24 1013.8 24 10.0 24 7.0 24 12.0 18.1 84.9 64.9 0.00I 999.9 000000 724050 13743 20140726 78.6 24 62.9 24 1015.3 24 1013.0 24 10.0 24 6.2 24 9.9 999.9 88.0 64.9 0.00G 999.9 010000 724050 13743 20140727 79.8 24 68.3 24 1010.0 24 1007.8 24 9.8 24 8.0 24 15.9 20.0 88.0 72.0 0.07G 999.9 010000 724050 13743 20140728 81.1 24 64.5 24 1004.3 23 1001.8 24 9.9 24 10.9 24 22.0 28.0 87.1 73.0 0.03G 999.9 010010 724050 13743 20140729 72.3 24 52.2 24 1012.4 24 1010.1 24 10.0 24 10.4 24 18.1 22.9 86.0 66.0 0.00G 999.9 000000 724050 13743 20140730 70.9 24 50.5 24 1017.5 24 1015.2 24 10.0 24 5.7 24 11.1 999.9 80.1 60.1 0.00G 999.9 000000 724050 13743 20140731 76.3 24 58.7 24 1018.7 24 1016.4 24 9.6 24 5.9 24 11.1 999.9 89.1 60.1 0.00G 999.9 000000 724050 13743 20140801 78.2 24 65.4 24 1021.2 24 1018.9 24 10.0 24 6.5 24 12.0 15.9 89.1 66.9 0.00G 999.9 010000 724050 13743 20140802 74.7 24 63.0 24 1020.4 22 1018.2 24 9.8 24 5.3 24 8.9 999.9 84.0 68.0 0.17G 999.9 010000 724050 13743 20140803 77.8 24 66.9 24 1018.1 22 1015.9 24 10.0 24 3.9 24 8.9 999.9 84.9 68.0 0.06G 999.9 010000 724050 13743 20140804 78.2 24 64.6 24 1018.5 23 1016.3 24 10.0 24 4.5 24 11.1 17.1 89.1 69.1 0.45G 999.9 010010 724050 13743 20140805 81.4 24 63.8 24 1017.1 24 1014.9 24 9.0 24 2.3 24 8.0 999.9 91.9 69.1 0.00G 999.9 000000 724050 13743 20140806 78.4 24 64.0 24 1014.0 24 1011.7 24 10.0 24 6.3 24 21.0 28.0 84.9* 69.8* 0.38G 999.9 010010 724050 13743 20140807 79.0 24 60.8 24 1015.0 24 1012.6 24 9.4 24 6.3 24 12.0 15.0 87.1 70.0 0.00G 999.9 000000 724050 13743 20140808 77.1 24 56.2 24 1018.8 24 1016.5 24 10.0 24 4.6 24 8.0 999.9 87.1 69.1 0.00G 999.9 000000 724050 13743 20140809 77.4 24 62.1 24 1019.3 23 1017.0 24 10.0 24 3.8 24 13.0 999.9 87.1 69.1 0.00G 999.9 000000 724050 13743 20140810 79.2 24 63.8 24 1019.8 24 1017.5 24 9.9 24 3.7 24 8.0 999.9 88.0 71.1 0.00G 999.9 000000 724050 13743 20140811 77.4 24 62.0 24 1019.3 24 1017.0 24 10.0 24 5.7 24 11.1 999.9 88.0 70.0 0.00G 999.9 010000 724050 13743 20140812 74.7 24 67.1 24 1014.0 18 1011.4 24 9.1 24 5.7 24 18.1 28.0 84.9 70.0 0.14G 999.9 010010 724050 13743 20140813 78.7 24 64.5 24 1009.0 23 1006.6 24 10.0 24 8.5 24 18.1 25.1 86.0 73.0 1.49G 999.9 000000 724050 13743 20140814 75.1 24 53.6 24 1013.0 24 1010.7 24 10.0 24 7.1 24 14.0 26.0 86.0 64.0 0.00G 999.9 000000 724050 13743 20140815 73.5 24 48.0 24 1015.1 24 1012.8 24 10.0 24 6.2 24 12.0 15.0 84.9 62.1 0.00G 999.9 000000 724050 13743 20140816 75.4 24 51.8 24 1016.0 24 1013.7 24 10.0 24 4.8 24 8.9 999.9 84.9 62.1 0.00G 999.9 000000 724050 13743 20140817 78.1 24 62.0 24 1013.3 24 1011.1 24 9.9 24 5.6 24 9.9 15.0 88.0 64.9 0.00G 999.9 010000 724050 13743 20140818 79.0 24 63.0 24 1012.5 24 1010.2 24 10.0 24 4.9 24 8.9 999.9 88.0 72.0 0.01G 999.9 000000 724050 13743 20140819 78.5 24 66.1 24 1010.7 22 1008.4 24 10.0 24 6.1 24 8.9 999.9 86.0 72.0 0.00G 999.9 010000 724050 13743 20140820 78.8 24 64.0 24 1014.1 24 1011.8 24 9.7 24 5.8 24 12.0 15.9 89.1 73.0 0.00G 999.9 010010 724050 13743 20140821 77.7 24 66.8 24 1016.4 24 1014.1 24 9.9 24 2.4 24 8.9 999.9 90.0 71.1 0.26G 999.9 010000 724050 13743 20140822 78.5 24 68.5 24 1015.3 23 1013.0 24 9.3 24 4.2 24 8.9 18.1 90.0 71.1 0.01G 999.9 010000 724050 13743 20140823 74.7 24 66.5 24 1016.4 18 1014.1 24 9.2 24 6.3 24 12.0 999.9 79.0* 71.6* 0.00G 999.9 010000 724050 13743 20140824 74.3 24 61.0 24 1019.8 24 1017.5 24 10.0 24 6.5 24 9.9 999.9 82.0 68.0 0.21G 999.9 000000 724050 13743 20140825 75.2 24 58.5 24 1021.2 24 1018.8 24 10.0 24 4.8 24 11.1 14.0 84.0 66.0 0.00G 999.9 000000 724050 13743 20140826 77.6 24 60.0 24 1020.9 24 1018.6 24 10.0 24 3.7 24 7.0 999.9 89.1 66.0 0.00G 999.9 000000 724050 13743 20140827 79.1 24 64.8 24 1017.6 24 1015.2 24 9.8 24 3.3 24 8.9 999.9 89.1 66.9 0.00G 999.9 100000 724050 13743 20140828 81.5 24 62.9 24 1014.2 24 1011.8 24 10.0 24 8.3 24 13.0 20.0 89.1 69.1 0.00G 999.9 000000 724050 13743 20140829 74.2 24 52.0 24 1020.7 24 1018.3 24 10.0 24 5.7 24 8.9 999.9 86.0 64.9 0.00G 999.9 000000 724050 13743 20140830 76.2 24 62.1 24 1022.6 23 1020.4 24 10.0 24 5.4 24 8.9 999.9 86.0 64.9 0.00G 999.9 000000 724050 13743 20140831 83.5 24 70.4 24 1018.8 21 1016.5 24 9.5 24 9.1 24 15.0 22.0 96.1 70.0 0.00G 999.9 010010 724050 13743 20140901 81.4 24 72.1 24 1016.0 20 1013.9 24 9.5 24 4.8 24 12.0 24.1 96.1 75.9 0.27G 999.9 010010 724050 13743 20140902 85.1 24 71.3 24 1014.1 23 1011.8 24 10.0 24 5.9 24 18.1 28.9 95.0 75.9 0.02G 999.9 010010 724050 13743 20140903 81.7 24 68.5 24 1016.0 24 1013.4 24 10.0 24 3.6 24 9.9 15.0 95.0 77.0 0.08G 999.9 010010 724050 13743 20140904 81.0 24 66.1 24 1020.6 24 1018.2 24 10.0 24 4.2 24 8.9 999.9 90.0* 73.4* 0.00G 999.9 000000 724050 13743 20140905 82.7 24 71.1 24 1019.8 23 1017.7 24 10.0 24 6.2 24 12.0 999.9 93.0 73.9 0.00G 999.9 000000 724050 13743 20140906 84.8 24 71.7 24 1015.2 21 1012.8 24 10.0 24 8.6 24 21.0 28.0 95.0 75.9 0.00G 999.9 010010 724050 13743 20140907 76.3 24 60.0 24 1018.5 19 1015.3 24 9.8 24 9.0 24 17.1 18.1 95.0 70.0 0.10G 999.9 010010 724050 13743 20140908 73.7 24 57.8 24 1022.4 23 1020.2 24 10.0 24 8.4 24 15.0 22.9 84.0 70.0 0.00G 999.9 010000 724050 13743 20140909 73.4 24 61.8 24 1021.5 23 1019.2 24 10.0 24 9.1 24 11.1 999.9 79.0* 69.8* 0.00G 999.9 000000 724050 13743 20140910 75.1 24 63.0 24 1019.0 22 1016.9 24 10.0 24 7.0 24 9.9 999.9 82.9 70.0 0.00G 999.9 000000 724050 13743 20140911 79.4 24 65.6 24 1013.7 24 1011.4 24 10.0 24 9.2 24 15.0 19.0 91.0 71.1 0.00G 999.9 000000 724050 13743 20140912 75.3 24 57.8 24 1018.0 24 1015.7 24 10.0 24 9.2 24 17.1 20.0 91.0 66.9 0.00G 999.9 000000 724050 13743 20140913 69.6 24 56.8 24 1020.3 23 1018.0 24 9.7 24 6.5 24 14.0 21.0 73.0* 66.2* 0.00G 999.9 010000 724050 13743 20140914 65.2 24 49.2 24 1024.6 24 1022.3 24 10.0 24 6.6 24 9.9 999.9 73.9 55.9 0.23G 999.9 000000 724050 13743 20140915 67.0 24 51.0 24 1023.0 24 1020.7 24 10.0 24 3.2 24 9.9 999.9 77.0 55.9 0.00G 999.9 000000 724050 13743 20140916 72.1 24 55.8 24 1017.0 23 1014.6 24 10.0 24 8.4 24 15.0 21.0 80.1 57.9 0.00G 999.9 000000 724050 13743 20140917 68.5 24 50.6 24 1016.8 24 1014.5 24 10.0 24 4.3 24 11.1 999.9 80.1 59.0 0.00G 999.9 000000 724050 13743 20140918 70.5 24 54.1 24 1015.7 24 1013.3 24 10.0 24 3.9 24 12.0 19.0 81.0 59.0 0.00G 999.9 000000 724050 13743 20140919 69.0 24 55.8 24 1022.3 24 1020.0 24 9.7 24 5.9 24 9.9 999.9 81.0 61.0 0.00G 999.9 000000 724050 13743 20140920 72.4 24 58.5 24 1023.6 24 1021.3 24 9.7 24 4.5 24 9.9 15.0 84.0 61.0 0.00G 999.9 000000 724050 13743 20140921 73.4 24 60.4 24 1011.9 24 1009.6 24 9.9 24 4.7 24 9.9 999.9 86.0 64.0 0.00G 999.9 000000 724050 13743 20140922 73.0 24 48.5 24 1012.7 24 1010.3 24 10.0 24 11.9 24 19.0 25.1 86.0 64.0 0.00G 999.9 000000 724050 13743 20140923 63.3 24 42.1 24 1025.8 24 1023.5 24 10.0 24 6.3 24 9.9 999.9 75.9 54.0 0.00G 999.9 000000 724050 13743 20140924 65.2 24 51.6 24 1029.8 23 1027.6 24 9.9 24 8.1 24 17.1 22.0 75.0 54.0 0.00G 999.9 010000 724050 13743 20140925 65.7 24 59.2 24 1026.3 15 1023.7 24 7.6 24 12.0 24 15.9 21.0 73.0 59.0 0.59G 999.9 010000 724050 13743 20140926 68.7 24 55.9 24 1024.0 24 1021.7 24 10.0 24 7.4 24 9.9 999.9 78.1* 60.1* 0.12G 999.9 000000 724050 13743 20140927 70.7 24 54.2 24 1023.3 24 1021.0 24 10.0 24 3.2 24 6.0 999.9 84.9 60.1 0.00G 999.9 000000 724050 13743 20140928 71.0 24 57.4 24 1021.5 24 1019.2 24 10.0 24 2.3 24 8.9 999.9 84.9 60.1 0.00G 999.9 000000 724050 13743 20140929 69.9 24 60.9 24 1016.3 24 1014.0 24 10.0 24 3.7 24 9.9 999.9 82.0 61.0 0.00G 999.9 000000 724050 13743 20140930 70.5 24 62.1 24 1013.1 20 1010.9 24 9.0 24 4.4 24 8.0 999.9 79.0 64.9 0.00G 999.9 000000 724050 13743 20141001 70.3 24 60.7 24 1015.4 20 1013.1 24 9.8 24 5.3 24 8.9 999.9 79.0 66.0 0.04G 999.9 010000 724050 13743 20141002 68.9 24 58.7 24 1019.1 23 1016.8 24 9.2 24 2.8 24 8.0 999.9 78.1* 62.6* 0.01G 999.9 000000 724050 13743 20141003 68.2 24 58.9 24 1017.0 20 1014.5 24 10.0 24 5.5 24 12.0 20.0 78.1 63.0 0.00G 999.9 010000 724050 13743 20141004 68.5 24 54.1 24 1005.4 19 1002.8 24 9.5 24 10.9 24 21.0 27.0 73.0 55.9 0.12G 999.9 010000 724050 13743 20141005 54.8 24 33.0 24 1012.0 24 1009.7 24 10.0 24 6.5 24 18.1 27.0 72.0 44.1 0.03G 999.9 000000 724050 13743 20141006 61.1 24 43.1 24 1015.4 24 1013.1 24 10.0 24 8.4 24 17.1 28.0 77.0 44.1 0.00G 999.9 000000 724050 13743 20141007 67.5 24 51.2 24 1016.0 24 1013.8 24 10.0 24 10.3 24 15.9 22.9 77.0 48.9 0.00G 999.9 010000 724050 13743 20141008 69.0 24 53.3 24 1012.7 24 1010.3 24 10.0 24 8.4 24 15.0 20.0 80.1 59.0 0.15G 999.9 010010 724050 13743 20141009 66.4 24 43.6 24 1018.0 24 1015.7 24 10.0 24 6.2 24 14.0 15.0 80.1 55.9 0.00G 999.9 000000 724050 13743 20141010 64.0 24 48.4 24 1019.1 24 1016.9 24 10.0 24 5.9 24 8.9 999.9 75.0 55.9 0.00G 999.9 010000 724050 13743 20141011 57.4 24 51.3 24 1018.2 18 1015.7 24 7.8 24 7.4 24 13.0 999.9 66.0 55.0 0.39G 999.9 010000 724050 13743 20141012 58.7 24 47.3 24 1023.7 23 1021.2 24 9.6 24 5.7 24 8.0 999.9 64.9 53.1 0.09G 999.9 000000 724050 13743 20141013 63.8 24 55.4 24 1024.7 22 1022.5 24 8.1 24 1.9 24 5.1 999.9 68.0 53.1 0.00G 999.9 010000 724050 13743 20141014 71.6 24 63.8 24 1019.2 17 1017.8 24 7.7 24 6.3 24 20.0 28.0 82.0 61.0 0.10G 999.9 100000 724050 13743 20141015 74.5 24 66.1 24 1012.4 14 1009.8 24 9.0 24 10.8 24 15.9 28.9 82.0 64.0 0.02G 999.9 110010 724050 13743 20141016 63.6 24 57.1 24 1007.5 16 1005.2 24 9.1 24 5.3 24 9.9 999.9 80.1 60.1 1.42G 999.9 010000 724050 13743 20141017 64.8 24 52.9 24 1008.0 24 1005.8 24 10.0 24 6.0 24 13.0 18.1 75.0 55.9 0.02G 999.9 010000 724050 13743 20141018 64.5 24 48.6 24 1005.6 24 1003.3 24 10.0 24 9.6 24 18.1 26.0 75.0 55.9 0.00G 999.9 000000 724050 13743 20141019 56.5 24 34.6 24 1015.0 24 1012.7 24 10.0 24 11.3 24 17.1 25.1 73.9 51.1 0.00G 999.9 000000 724050 13743 20141020 56.2 24 39.7 24 1018.5 24 1016.1 24 10.0 24 6.3 24 14.0 24.1 70.0 45.0 0.00G 999.9 000000 724050 13743 20141021 61.4 24 48.1 24 1012.0 24 1009.6 24 10.0 24 4.5 24 14.0 18.1 73.0 45.0 0.01G 999.9 010000 724050 13743 20141022 56.3 24 49.9 24 1012.8 17 1010.5 24 7.3 24 11.2 24 18.1 25.1 73.0 54.0 0.62G 999.9 010000 724050 13743 20141023 58.9 24 43.0 24 1012.4 24 1010.2 24 10.0 24 14.6 24 21.0 31.1 66.9 54.0 0.47G 999.9 000000 724050 13743 20141024 62.7 24 40.2 24 1013.5 24 1011.3 24 10.0 24 9.9 24 15.9 22.9 71.1 54.0 0.00G 999.9 000000 724050 13743 20141025 61.2 24 40.0 24 1012.9 24 1010.7 24 10.0 24 6.9 24 12.0 19.0 73.9 48.9 0.00G 999.9 000000 724050 13743 20141026 64.2 24 36.2 24 1007.8 24 1005.5 24 10.0 24 9.2 24 19.0 27.0 73.9 48.9 0.00G 999.9 000000 724050 13743 20141027 58.6 24 36.0 24 1016.4 24 1014.1 24 10.0 24 4.2 24 8.9 999.9 73.0 46.0 0.00G 999.9 000000 724050 13743 20141028 64.3 24 47.3 24 1016.4 24 1014.0 24 10.0 24 7.6 24 11.1 999.9 80.1 46.0 0.00G 999.9 000000 724050 13743 20141029 65.1 24 53.6 24 1013.9 24 1011.6 24 9.7 24 6.4 24 18.1 22.9 80.1 57.0 0.00G 999.9 010000 724050 13743 20141030 55.4 24 42.0 24 1016.9 24 1014.5 24 10.0 24 5.8 24 13.0 15.9 70.0 48.9 0.03G 999.9 000000 724050 13743 20141031 52.7 24 36.0 24 1015.4 24 1013.0 24 10.0 24 4.8 24 8.9 999.9 63.0 46.0 0.00G 999.9 000000 724050 13743 20141101 52.5 24 37.8 24 1009.7 24 1007.4 24 10.0 24 11.6 24 20.0 27.0 59.0 46.0 0.00G 999.9 010000 724050 13743 20141102 48.9 24 26.7 24 1016.4 24 1013.7 24 10.0 24 18.1 24 29.9 36.9 54.0 45.0 0.00G 999.9 010000 724050 13743 20141103 52.2 24 20.0 24 1024.9 24 1022.5 24 10.0 24 8.6 24 14.0 21.0 66.0 44.1 0.00G 999.9 000000 724050 13743 20141104 55.7 24 35.3 24 1022.7 24 1020.4 24 10.0 24 3.5 24 8.0 999.9 69.1 44.1 0.00G 999.9 000000 724050 13743 20141105 60.3 24 40.9 24 1020.5 24 1018.2 24 10.0 24 4.8 24 8.0 999.9 69.1 46.9 0.00G 999.9 010000 724050 13743 20141106 58.6 24 51.8 24 1014.0 23 1011.6 24 8.2 24 3.9 24 15.0 19.0 68.0 54.0 0.26G 999.9 010000 724050 13743 20141107 54.9 24 36.0 24 1009.7 24 1006.8 24 10.0 24 11.3 24 19.0 28.9 64.9 48.9 0.26G 999.9 000000 724050 13743 20141108 45.3 24 25.0 24 1017.3 24 1015.0 24 10.0 24 7.6 24 14.0 20.0 57.9 36.0 0.00G 999.9 000000 724050 13743 20141109 51.5 24 35.3 24 1014.6 24 1012.2 24 10.0 24 3.7 24 8.0 999.9 61.0 36.0 0.00G 999.9 000000 724050 13743 20141110 52.1 24 39.1 24 1019.3 24 1016.9 24 9.3 24 2.4 24 8.9 999.9 66.0 42.1 0.00G 999.9 000000 724050 13743 20141111 55.8 24 45.3 24 1018.3 22 1015.5 24 9.8 24 2.5 24 8.0 999.9 71.6* 45.0* 0.00G 999.9 000000 724050 13743 20141112 63.0 24 50.3 24 1015.0 17 1011.6 24 7.9 24 7.8 24 21.0 22.0 71.1 44.1 0.00G 999.9 100000 724050 13743 20141113 46.2 24 27.1 24 1020.1 24 1017.9 24 10.0 24 9.3 24 13.0 19.0 68.0 41.0 0.00G 999.9 010000 724050 13743 20141114 40.0 24 23.1 24 1021.1 24 1018.6 24 9.9 24 11.3 24 18.1 24.1 48.0 35.1 0.03G 999.9 011000 724050 13743 20141115 38.4 24 16.5 24 1028.0 24 1025.8 24 10.0 24 7.4 24 12.0 17.1 46.9 32.0 0.00G 999.9 000000 724050 13743 20141116 42.0 24 23.7 24 1027.1 24 1024.7 24 10.0 24 5.8 24 11.1 999.9 48.0 32.0 0.00G 999.9 010000 724050 13743 20141117 46.4 24 38.1 24 1014.7 15 1009.1 24 8.0 24 4.8 24 14.0 22.0 52.0 37.0 0.13G 999.9 010000 724050 13743 20141118 36.0 24 11.4 24 1014.0 24 1011.7 24 10.0 24 15.7 24 22.0 31.1 52.0 28.0 0.59G 999.9 000000 724050 13743 20141119 29.5 24 5.0 24 1025.6 24 1023.3 24 10.0 24 7.8 24 14.0 18.1 42.1 21.9 0.00G 999.9 000000 724050 13743 20141120 42.9 24 17.6 24 1016.2 24 1013.9 24 10.0 24 10.9 24 15.9 21.0 55.9 21.9 0.00G 999.9 000000 724050 13743 20141121 37.2 24 8.8 24 1026.1 24 1024.4 24 10.0 24 12.2 24 22.9 29.9 55.9 30.0 0.00G 999.9 000000 724050 13743 20141122 36.5 24 15.4 24 1032.6 24 1030.3 24 10.0 24 6.1 24 14.0 22.9 52.0 26.1 0.00G 999.9 000000 724050 13743 20141123 46.9 24 23.8 24 1023.1 24 1020.8 24 10.0 24 5.3 24 9.9 999.9 57.0 26.1 0.00G 999.9 000000 724050 13743 20141124 63.4 24 53.1 24 1006.3 18 1004.8 24 9.3 24 11.2 24 18.1 25.1 73.9* 53.1* 0.31G 999.9 010000 724050 13743 20141125 59.6 24 43.0 24 1013.5 24 1011.2 24 10.0 24 7.4 24 15.0 999.9 73.9 52.0 0.18G 999.9 000000 724050 13743 20141126 45.1 24 35.7 24 1018.8 16 1015.8 24 7.6 24 6.2 24 15.9 22.0 53.1* 37.0* 0.26G 999.9 011000 724050 13743 20141127 41.5 24 31.4 24 1017.4 23 1014.9 24 10.0 24 5.8 24 12.0 20.0 51.1 36.0 0.80G 999.9 010000 724050 13743 20141128 38.5 24 21.6 24 1024.2 24 1021.9 24 10.0 24 8.2 24 12.0 20.0 48.9 34.0 0.00G 999.9 000000 724050 13743 20141129 39.6 24 21.5 24 1026.0 24 1023.7 24 10.0 24 4.8 24 9.9 999.9 48.9 34.0 0.00G 999.9 000000 724050 13743 20141130 49.4 24 33.9 24 1020.8 24 1018.5 24 10.0 24 7.8 24 12.0 999.9 66.0 34.0 0.00G 999.9 000000 724050 13743 20141201 59.0 24 45.2 24 1021.6 24 1019.3 24 10.0 24 8.1 24 18.1 22.9 70.0 42.1 0.00G 999.9 010000 724050 13743 20141202 42.4 24 33.8 24 1032.7 17 1030.2 24 7.2 24 9.9 24 20.0 25.1 70.0 37.0 0.33G 999.9 010000 724050 13743 20141203 44.8 24 39.5 24 1023.0 22 1021.1 24 8.3 24 6.5 24 12.0 999.9 55.0 37.0 0.53G 999.9 010000 724050 13743 20141204 44.3 24 26.7 24 1028.8 24 1026.5 24 10.0 24 5.7 24 15.9 21.0 55.0 37.0 0.05G 999.9 000000 724050 13743 20141205 43.4 24 30.8 24 1032.5 24 1030.2 24 10.0 24 3.4 24 7.0 999.9 46.9 37.0 0.00G 999.9 010000 724050 13743 20141206 46.9 24 40.9 24 1024.5 18 1021.3 24 7.4 24 4.9 24 9.9 999.9 53.6* 43.0* 0.01G 999.9 010000 724050 13743 20141207 44.8 24 29.0 24 1029.3 22 1026.0 24 9.2 24 15.8 24 22.0 29.9 53.1 37.9 0.48G 999.9 010000 724050 13743 20141208 37.4 24 20.1 24 1033.9 24 1031.8 24 10.0 24 9.7 24 13.0 999.9 50.0 35.1 0.00G 999.9 000000 724050 13743 20141209 38.5 24 32.1 24 1017.4 17 1016.5 24 7.0 24 11.5 24 14.0 21.0 45.0 35.1 0.13G 999.9 010000 724050 13743 20141210 46.3 24 31.6 24 1010.8 24 1008.5 24 10.0 24 14.2 24 22.9 32.1 51.1 35.1 0.20G 999.9 000000 724050 13743 20141211 40.4 24 20.0 24 1012.1 24 1009.7 24 10.0 24 11.2 24 17.1 27.0 51.1 36.0 0.00G 999.9 001000 724050 13743 20141212 43.1 24 16.4 24 1017.7 24 1015.4 24 10.0 24 10.6 24 15.9 22.0 46.9 36.0 0.00G 999.9 000000 724050 13743 20141213 39.8 24 25.5 24 1019.3 24 1017.0 24 9.4 24 5.4 24 13.0 999.9 48.9 30.9 0.00G 999.9 000000 724050 13743 20141214 43.7 24 30.5 24 1015.8 24 1013.5 24 10.0 24 6.1 24 13.0 22.0 57.0 30.9 0.00G 999.9 000000 724050 13743 20141215 48.8 24 37.5 24 1018.0 24 1015.7 24 10.0 24 4.2 24 12.0 999.9 57.9 34.0 0.00G 999.9 000000 724050 13743 20141216 44.8 24 38.4 24 1016.9 17 1013.8 24 6.7 24 2.6 24 7.0 999.9 57.9 39.0 0.00G 999.9 010000 724050 13743 20141217 49.0 24 36.9 24 1014.5 23 1012.1 24 7.7 24 7.3 24 15.0 22.9 57.9 39.0 0.40G 999.9 010000 724050 13743 20141218 40.7 24 21.3 24 1019.7 24 1017.4 24 10.0 24 10.6 24 15.9 24.1 57.9 37.0 0.00G 999.9 000000 724050 13743 20141219 39.0 24 21.8 24 1020.9 24 1018.6 24 10.0 24 9.5 24 14.0 19.0 43.0 37.0 0.00G 999.9 000000 724050 13743 20141220 35.7 24 20.6 24 1025.4 23 1023.1 24 10.0 24 5.1 24 11.1 999.9 43.0 30.0 0.00G 999.9 000000 724050 13743 20141221 39.0 24 23.0 24 1026.9 24 1024.6 24 10.0 24 3.3 24 7.0 999.9 45.0 30.0 0.00G 999.9 000000 724050 13743 20141222 36.2 24 26.9 24 1025.9 22 1023.3 24 6.8 24 5.1 24 8.9 999.9 45.0 33.1 0.00G 999.9 010000 724050 13743 20141223 42.0 24 37.8 24 1018.3 13 1016.1 24 2.5 24 4.8 24 11.1 999.9 48.0 33.1 0.26G 999.9 110000 724050 13743 20141224 48.2 24 44.9 24 1011.5 10 1009.6 24 2.8 24 2.1 24 8.0 999.9 52.0 39.0 0.49G 999.9 110000 724050 13743 20141225 54.1 24 40.9 24 1012.0 18 1006.5 24 7.9 24 8.5 24 15.0 24.1 61.0 46.0 0.54G 999.9 110000 724050 13743 20141226 45.2 24 30.8 24 1024.8 24 1022.6 24 10.0 24 6.3 24 11.1 999.9 61.0 36.0 0.12G 999.9 000000 724050 13743 20141227 45.1 24 33.2 24 1024.6 24 1022.3 24 10.0 24 1.5 24 5.1 999.9 60.1 36.0 0.00G 999.9 000000 724050 13743 20141228 51.6 24 38.3 24 1016.5 24 1014.2 24 10.0 24 4.1 24 8.0 999.9 60.1 36.0 0.00G 999.9 010000 724050 13743 20141229 46.6 24 33.7 24 1021.3 24 1019.0 24 9.9 24 6.0 24 9.9 999.9 57.9 44.1 0.13G 999.9 010000 724050 13743 20141230 41.5 24 21.4 24 1027.4 24 1025.1 24 10.0 24 8.1 24 12.0 15.0 48.0 37.9 0.05G 999.9 000000 724050 13743 20141231 34.5 24 13.3 24 1029.8 24 1027.5 24 10.0 24 5.4 24 11.1 15.0 45.0 28.9 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/2014/722324-03071.op0000644000175000017500000014157014302004506016651 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20140101 49.9 24 29.9 24 9999.9 0 917.9 18 10.0 24 9.7 24 15.0 19.0 70.2 38.7 0.00G 999.9 000000 722324 03071 20140102 41.5 24 25.4 24 9999.9 0 927.7 24 10.0 24 6.8 24 15.0 22.9 63.9 28.8 0.00G 999.9 000000 722324 03071 20140103 42.8 24 24.6 24 9999.9 0 924.3 24 10.0 24 10.0 24 19.0 24.1 60.3 33.1 0.00G 999.9 000000 722324 03071 20140104 50.5 24 28.1 24 9999.9 0 913.3 24 10.0 24 12.0 24 22.9 29.9 70.2 38.7 0.00G 999.9 000000 722324 03071 20140105 41.1 24 22.5 24 9999.9 0 918.6 24 10.0 24 9.2 24 19.0 28.0 64.4 27.5 0.00G 999.9 000000 722324 03071 20140106 25.1 21 7.7 21 9999.9 0 932.6 21 10.0 21 6.5 21 14.0 15.0 37.0* 14.9* 0.00G 999.9 000000 722324 03071 20140107 31.3 24 13.3 24 9999.9 0 928.3 24 10.0 24 6.1 24 12.0 15.9 52.2 23.0 0.00G 999.9 000000 722324 03071 20140108 42.5 24 26.7 24 9999.9 0 918.8 24 10.0 24 8.5 24 15.9 21.0 66.0 33.8 0.00G 999.9 000000 722324 03071 20140109 42.3 24 26.9 24 9999.9 0 919.9 24 10.0 24 4.0 24 12.0 14.0 62.4 27.5 0.00G 999.9 000000 722324 03071 20140110 54.7 24 35.3 24 9999.9 0 913.7 24 9.8 24 10.4 24 22.0 29.9 69.6 47.5 0.00G 999.9 000000 722324 03071 20140111 54.0 24 18.5 24 9999.9 0 917.9 24 10.0 24 7.8 24 15.0 21.0 68.9* 37.2* 0.00G 999.9 000000 722324 03071 20140112 58.9 24 23.0 24 9999.9 0 915.7 24 10.0 24 11.2 24 19.0 28.9 78.3 48.6 0.00G 999.9 000000 722324 03071 20140113 54.7 24 11.3 24 9999.9 0 919.0 24 10.0 24 10.9 24 15.9 22.0 72.0 40.3 0.00G 999.9 000000 722324 03071 20140114 50.1 24 14.2 24 9999.9 0 921.4 24 9.9 24 8.4 24 20.0 28.0 63.0 38.3 0.00G 999.9 000000 722324 03071 20140115 42.9 24 21.3 24 9999.9 0 929.2 24 10.0 24 6.6 24 13.0 18.1 58.5 30.2 0.00G 999.9 000000 722324 03071 20140116 49.9 24 21.0 24 9999.9 0 919.9 24 9.8 24 9.5 24 21.0 27.0 64.0 38.3 0.00G 999.9 000000 722324 03071 20140117 44.3 24 19.4 24 9999.9 0 925.8 24 9.9 24 3.7 24 11.1 15.9 58.3 31.8 0.00G 999.9 000000 722324 03071 20140118 49.0 24 23.2 24 9999.9 0 921.6 24 10.0 24 5.0 24 8.9 15.9 68.2 34.9 0.00G 999.9 000000 722324 03071 20140119 48.0 24 21.0 24 9999.9 0 925.1 24 10.0 24 4.5 24 14.0 17.1 66.2 32.0 0.00G 999.9 000000 722324 03071 20140120 57.3 24 19.6 24 9999.9 0 918.4 24 10.0 24 8.9 24 17.1 21.0 72.7 44.8 0.00G 999.9 000000 722324 03071 20140121 47.8 24 17.0 24 9999.9 0 928.9 24 10.0 24 6.9 24 15.0 22.0 66.4 32.0 0.00G 999.9 000000 722324 03071 20140122 49.4 24 15.8 24 9999.9 0 920.3 24 10.0 24 4.9 24 12.0 999.9 63.5 30.6 0.00G 999.9 000000 722324 03071 20140123 38.3 24 15.0 24 9999.9 0 924.6 24 10.0 24 15.4 24 24.1 28.9 54.5 26.2 0.00G 999.9 000000 722324 03071 20140124 26.0 24 -3.9 24 9999.9 0 935.5 24 10.0 24 7.7 24 15.9 19.0 46.2 16.7 0.00G 999.9 000000 722324 03071 20140125 43.5 24 11.2 24 9999.9 0 924.3 24 10.0 24 4.6 24 8.9 999.9 65.7 32.0 0.00G 999.9 000000 722324 03071 20140126 57.3 24 16.9 24 9999.9 0 914.6 24 10.0 24 9.4 24 20.0 28.0 73.2 45.5 0.00G 999.9 000000 722324 03071 20140127 42.0 24 9.4 24 9999.9 0 918.9 24 9.1 24 10.0 24 26.0 33.0 69.1 29.1 0.00G 999.9 000000 722324 03071 20140128 24.8 24 -8.2 24 9999.9 0 926.1 24 10.0 24 10.1 24 15.9 21.0 34.3 15.6 0.00G 999.9 000000 722324 03071 20140129 31.1 24 0.3 24 9999.9 0 925.8 24 10.0 24 5.2 24 15.9 20.0 51.8 17.6 0.00G 999.9 000000 722324 03071 20140130 46.4 24 13.8 24 9999.9 0 914.7 22 10.0 24 11.6 24 18.1 22.0 9999.9 33.3* 0.00G 999.9 000000 722324 03071 20140131 60.4 24 27.0 24 9999.9 0 911.2 19 10.0 24 7.4 24 13.0 15.0 73.4 46.4 0.00G 999.9 000000 722324 03071 20140201 57.4 24 38.5 24 9999.9 0 910.5 24 10.0 24 5.6 24 13.0 999.9 69.3 45.9 0.00G 999.9 000000 722324 03071 20140202 36.5 24 27.7 24 9999.9 0 919.3 24 8.8 24 10.2 24 20.0 25.1 55.9 28.9 0.02G 999.9 011010 722324 03071 20140203 32.4 24 29.9 24 9999.9 0 920.8 24 6.9 24 5.4 24 11.1 15.0 36.5 31.8 0.04G 999.9 100000 722324 03071 20140204 40.1 24 32.8 24 9999.9 0 913.3 24 5.5 24 8.6 24 20.0 28.0 58.5* 33.1* 0.00G 999.9 010000 722324 03071 20140205 33.2 24 21.6 24 9999.9 0 924.4 24 10.0 24 12.5 24 19.0 22.0 56.7 22.5 0.00G 999.9 000000 722324 03071 20140206 17.9 24 11.7 24 9999.9 0 928.9 24 7.9 24 9.1 24 14.0 21.0 25.2 13.6 0.00G 999.9 001000 722324 03071 20140207 27.1 24 17.0 24 9999.9 0 922.5 24 10.0 24 6.1 24 12.0 17.1 51.3 20.7 0.00G 999.9 000000 722324 03071 20140208 47.7 24 27.1 24 9999.9 0 919.1 24 10.0 24 6.9 24 15.0 19.0 68.4 34.7 0.00G 999.9 000000 722324 03071 20140209 57.1 24 25.6 24 9999.9 0 918.0 24 10.0 24 6.8 24 15.9 21.0 77.9 44.6 0.00G 999.9 000000 722324 03071 20140210 33.2 24 29.2 24 9999.9 0 920.8 24 4.8 24 10.8 24 19.0 25.1 59.5* 27.9* 0.00G 999.9 011000 722324 03071 20140211 26.4 24 20.6 24 9999.9 0 923.8 24 8.8 24 8.6 24 17.1 20.0 32.2 23.9 0.00G 999.9 000000 722324 03071 20140212 35.8 24 22.1 24 9999.9 0 921.7 24 9.8 24 5.4 24 17.1 22.9 61.5 23.9 0.00G 999.9 000000 722324 03071 20140213 54.0 24 22.8 24 9999.9 0 916.5 24 10.0 24 4.6 24 12.0 15.0 73.8 40.6 0.00G 999.9 000000 722324 03071 20140214 62.9 24 25.7 24 9999.9 0 915.2 23 10.0 24 9.9 24 21.0 27.0 78.4 50.0 0.00G 999.9 000000 722324 03071 20140215 57.9 24 27.5 24 9999.9 0 919.2 24 10.0 24 7.3 24 13.0 15.9 85.1* 42.4* 0.00G 999.9 000000 722324 03071 20140216 62.7 24 31.4 24 9999.9 0 916.9 24 10.0 24 6.7 24 11.1 15.0 82.6 43.9 0.00G 999.9 000000 722324 03071 20140217 63.8 24 28.9 24 9999.9 0 919.1 24 10.0 24 9.1 24 19.0 27.0 78.6 50.9 0.00G 999.9 000000 722324 03071 20140218 61.8 24 23.0 24 9999.9 0 919.0 24 10.0 24 7.8 24 17.1 22.9 84.4 47.5 0.00G 999.9 000000 722324 03071 20140219 65.8 24 33.6 24 9999.9 0 912.7 24 9.0 24 6.2 24 17.1 24.1 84.7 48.4 0.00G 999.9 000000 722324 03071 20140220 66.0 24 16.7 24 9999.9 0 911.7 24 9.3 24 13.5 24 26.0 39.0 79.0 55.9 0.00G 999.9 000000 722324 03071 20140221 52.1 24 18.5 24 9999.9 0 919.6 24 10.0 24 6.9 24 19.0 24.1 70.7 39.6 0.00G 999.9 000000 722324 03071 20140222 60.7 24 21.1 24 9999.9 0 914.3 24 10.0 24 6.3 24 12.0 17.1 78.8 41.7 0.00G 999.9 000000 722324 03071 20140223 62.2 24 27.3 24 9999.9 0 915.6 24 10.0 24 5.4 24 15.9 21.0 77.5 43.9 0.00G 999.9 000000 722324 03071 20140224 55.6 24 32.6 24 9999.9 0 919.5 24 10.0 24 6.5 24 15.0 19.0 74.8 43.3 0.00G 999.9 000000 722324 03071 20140225 54.3 24 40.5 24 9999.9 0 918.2 24 8.3 24 6.7 24 19.0 26.0 73.2 43.3 0.00G 999.9 000000 722324 03071 20140226 36.7 24 29.8 24 9999.9 0 922.7 24 7.6 24 9.3 24 22.0 26.0 44.6 28.4 0.00G 999.9 010000 722324 03071 20140227 42.4 24 27.7 24 9999.9 0 918.4 23 10.0 24 5.5 24 13.0 17.1 66.2 30.2 0.00G 999.9 000000 722324 03071 20140228 59.9 24 31.4 24 9999.9 0 910.8 22 10.0 24 11.1 24 17.1 25.1 81.0 46.0 0.00G 999.9 000000 722324 03071 20140301 69.1 23 27.4 23 9999.9 0 914.5 15 10.0 23 6.1 23 14.0 20.0 83.3 49.5 0.00G 999.9 000000 722324 03071 20140302 45.5 24 28.1 24 9999.9 0 917.5 24 7.5 24 10.9 24 20.0 26.0 9999.9 27.0* 0.00G 999.9 000000 722324 03071 20140303 26.6 24 13.2 24 9999.9 0 926.2 24 10.0 24 8.2 24 15.9 22.9 41.0 19.2 0.00G 999.9 000000 722324 03071 20140304 41.9 24 17.0 24 9999.9 0 920.0 24 10.0 24 4.2 24 9.9 999.9 65.7 31.1 0.00G 999.9 000000 722324 03071 20140305 56.2 24 29.9 24 9999.9 0 914.5 24 9.8 24 9.3 24 19.0 28.0 68.2 45.0 0.00G 999.9 000000 722324 03071 20140306 48.5 24 30.3 24 9999.9 0 923.0 24 9.9 24 5.7 24 15.0 20.0 69.6 32.2 0.00G 999.9 000000 722324 03071 20140307 63.5 24 26.4 24 9999.9 0 913.7 24 10.0 24 9.7 24 15.0 20.0 82.2 53.4 0.00G 999.9 000000 722324 03071 20140308 55.5 24 36.2 24 9999.9 0 917.0 24 9.4 24 12.0 24 19.0 29.9 79.9 42.1 0.00G 999.9 000000 722324 03071 20140309 45.9 24 26.9 24 9999.9 0 927.0 24 10.0 24 5.3 24 9.9 999.9 63.7 33.1 0.00G 999.9 000000 722324 03071 20140310 56.1 24 27.2 24 9999.9 0 920.8 24 10.0 24 3.9 24 13.0 18.1 75.4 40.5 0.00G 999.9 000000 722324 03071 20140311 64.7 24 34.8 24 9999.9 0 910.5 24 9.8 24 10.2 24 19.0 26.0 84.6 47.8 0.00G 999.9 000000 722324 03071 20140312 52.9 24 23.2 24 9999.9 0 922.8 24 8.1 24 13.0 24 27.0 39.0 81.9 38.3 0.00G 999.9 000000 722324 03071 20140313 50.1 24 20.3 24 9999.9 0 925.0 24 10.0 24 4.5 24 15.9 22.0 67.8 33.4 0.03G 999.9 000000 722324 03071 20140314 59.7 24 24.6 24 9999.9 0 916.3 24 10.0 24 7.1 24 14.0 20.0 77.2 48.4 0.00G 999.9 000000 722324 03071 20140315 66.3 24 35.9 24 9999.9 0 913.4 24 10.0 24 8.0 24 21.0 27.0 75.9 57.2 0.00G 999.9 010000 722324 03071 20140316 56.0 24 28.6 24 9999.9 0 918.2 24 7.6 24 16.5 24 26.0 38.1 74.3 45.5 0.10G 999.9 010010 722324 03071 20140317 51.4 24 19.1 24 9999.9 0 917.2 24 9.6 24 7.3 24 18.1 27.0 77.9 35.6 0.05G 999.9 000000 722324 03071 20140318 69.3 24 15.6 24 9999.9 0 905.8 24 10.0 24 14.3 24 22.0 33.0 82.4 56.5 0.00G 999.9 000000 722324 03071 20140319 53.3 24 15.9 24 9999.9 0 920.6 24 8.4 24 9.3 24 18.1 25.1 75.7 38.3 0.00G 999.9 000000 722324 03071 20140320 57.0 24 22.6 24 9999.9 0 922.6 24 10.0 24 4.7 24 13.0 19.0 78.6 41.2 0.00G 999.9 000000 722324 03071 20140321 68.7 24 33.3 24 9999.9 0 914.2 24 10.0 24 10.4 24 15.0 21.0 85.8 57.7 0.00G 999.9 000000 722324 03071 20140322 60.8 24 27.0 24 9999.9 0 917.1 24 10.0 24 6.4 24 18.1 26.0 83.5 46.2 0.00G 999.9 000000 722324 03071 20140323 49.8 24 25.4 24 9999.9 0 923.9 24 9.8 24 11.0 24 21.0 28.9 66.2 37.0 0.00G 999.9 000000 722324 03071 20140324 52.8 24 29.4 24 9999.9 0 921.8 24 10.0 24 5.3 24 9.9 999.9 76.8 41.5 0.00G 999.9 000000 722324 03071 20140325 55.3 24 28.0 24 9999.9 0 923.6 24 10.0 24 10.7 24 20.0 24.1 74.3 40.3 0.00G 999.9 000000 722324 03071 20140326 61.6 24 39.4 24 9999.9 0 915.9 24 10.0 24 13.1 24 24.1 31.1 79.7 50.9 0.01G 999.9 010000 722324 03071 20140327 65.0 24 42.3 24 9999.9 0 910.3 24 10.0 24 15.1 24 24.1 35.0 82.4 54.9 0.03G 999.9 000000 722324 03071 20140328 69.7 24 21.4 24 9999.9 0 913.0 24 10.0 24 8.6 24 20.0 28.9 80.1 58.6 0.00G 999.9 000000 722324 03071 20140329 60.5 24 29.0 24 9999.9 0 923.3 24 10.0 24 7.7 24 13.0 19.0 77.5 43.3 0.00G 999.9 000000 722324 03071 20140330 66.6 24 32.1 24 9999.9 0 919.9 23 10.0 24 12.5 24 22.0 28.0 83.1 54.5 0.00G 999.9 000000 722324 03071 20140331 73.2 24 37.1 24 9999.9 0 913.1 22 10.0 24 13.9 24 22.0 28.9 87.3 59.4 0.00G 999.9 000000 722324 03071 20140401 73.5 24 27.3 24 9999.9 0 914.0 18 10.0 24 6.7 24 15.9 22.0 89.8 58.8 0.00G 999.9 000000 722324 03071 20140402 76.3 24 40.8 24 9999.9 0 910.7 24 9.6 24 9.7 24 17.1 25.1 88.9 64.6 0.00G 999.9 000000 722324 03071 20140403 75.5 24 21.2 24 9999.9 0 909.3 24 9.9 24 12.1 24 28.9 38.1 86.4 62.1 0.00G 999.9 000000 722324 03071 20140404 55.8 24 19.9 24 9999.9 0 920.3 24 9.5 24 9.2 24 22.0 32.1 74.3* 38.7* 0.00G 999.9 000000 722324 03071 20140405 61.6 24 23.7 24 9999.9 0 916.0 24 10.0 24 13.4 24 21.0 28.0 73.4* 54.5* 0.00G 999.9 000000 722324 03071 20140406 59.8 24 36.3 24 9999.9 0 911.5 24 10.0 24 6.5 24 15.0 25.1 71.4 49.5 0.00G 999.9 010010 722324 03071 20140407 55.9 24 36.6 24 9999.9 0 914.4 24 10.0 24 9.1 24 21.0 33.0 69.1 43.9 0.00G 999.9 010000 722324 03071 20140408 58.6 24 26.8 24 9999.9 0 924.2 24 10.0 24 6.8 24 17.1 21.0 77.2* 41.9* 0.00G 999.9 000000 722324 03071 20140409 70.3 24 21.8 24 9999.9 0 922.2 24 10.0 24 7.2 24 15.0 22.0 90.7 55.6 0.00G 999.9 000000 722324 03071 20140410 76.3 24 23.0 24 9999.9 0 916.4 24 10.0 24 11.1 24 15.0 21.0 92.5 62.2 0.00G 999.9 000000 722324 03071 20140411 75.6 24 23.9 24 9999.9 0 915.6 24 10.0 24 5.4 24 12.0 17.1 89.8 58.1 0.00G 999.9 000000 722324 03071 20140412 78.7 24 34.8 24 9999.9 0 913.3 24 10.0 24 9.1 24 18.1 26.0 92.5 64.6 0.00G 999.9 000000 722324 03071 20140413 80.2 24 35.1 24 9999.9 0 909.3 24 9.8 24 14.1 24 26.0 35.9 87.4 72.3 0.00G 999.9 000000 722324 03071 20140414 55.2 24 22.3 24 9999.9 0 917.7 24 9.0 24 15.4 24 24.1 33.0 85.1* 37.8* 0.00G 999.9 000000 722324 03071 20140415 47.7 24 14.3 24 9999.9 0 926.1 24 10.0 24 6.5 24 17.1 24.1 67.5 32.5 0.00G 999.9 000000 722324 03071 20140416 61.4 24 14.9 24 9999.9 0 914.8 24 10.0 24 12.8 24 17.1 22.9 81.9 49.1 0.00G 999.9 000000 722324 03071 20140417 64.4 24 38.9 24 9999.9 0 914.9 24 10.0 24 9.6 24 18.1 27.0 78.6 53.2 0.00G 999.9 000000 722324 03071 20140418 59.9 24 47.9 24 9999.9 0 923.2 24 9.1 24 9.0 24 17.1 22.9 77.4 51.3 0.00G 999.9 000000 722324 03071 20140419 67.7 24 47.9 24 9999.9 0 919.8 24 10.0 24 9.8 24 20.0 25.1 78.8 58.1 0.00G 999.9 000000 722324 03071 20140420 66.6 24 56.1 24 9999.9 0 919.5 24 9.5 24 6.5 24 15.0 22.9 81.7 59.2 0.22G 999.9 010010 722324 03071 20140421 72.6 24 54.3 24 9999.9 0 918.5 24 8.7 24 8.3 24 13.0 18.1 88.5 63.0 0.00G 999.9 000000 722324 03071 20140422 74.5 24 47.1 24 9999.9 0 920.0 24 10.0 24 7.7 24 12.0 19.0 87.6 60.1 0.00G 999.9 000000 722324 03071 20140423 77.2 24 45.8 24 9999.9 0 912.8 24 10.0 24 11.9 24 20.0 26.0 91.6 66.2 0.00G 999.9 000000 722324 03071 20140424 74.3 24 39.2 24 9999.9 0 912.9 24 9.1 24 10.0 24 18.1 28.0 88.9 61.7 0.00G 999.9 000000 722324 03071 20140425 73.8 24 32.6 24 9999.9 0 916.1 24 10.0 24 8.4 24 18.1 24.1 93.7 56.7 0.00G 999.9 000000 722324 03071 20140426 81.2 24 49.1 24 9999.9 0 909.5 24 10.0 24 12.9 24 18.1 26.0 93.2 70.9 0.00G 999.9 000000 722324 03071 20140427 76.0 24 30.7 24 9999.9 0 905.3 24 8.7 24 18.9 24 34.0 44.1 93.4 64.9 0.00G 999.9 000000 722324 03071 20140428 70.2 24 20.8 24 9999.9 0 909.1 24 10.0 24 12.0 24 22.0 32.1 83.3 54.9 0.00G 999.9 000000 722324 03071 20140429 66.0 24 22.2 24 9999.9 0 914.3 23 9.7 24 9.5 24 21.0 26.0 82.0 51.1 0.00G 999.9 000000 722324 03071 20140430 59.2 24 23.1 24 9999.9 0 922.7 22 8.3 24 10.4 24 17.1 26.0 70.0 47.3 0.00G 999.9 000000 722324 03071 20140501 60.0 24 20.4 24 9999.9 0 923.5 18 10.0 24 4.7 24 14.0 21.0 70.3 50.0 0.00G 999.9 000000 722324 03071 20140502 60.8 24 28.0 24 9999.9 0 921.1 24 10.0 24 6.6 24 13.0 19.0 79.7 46.4 0.00G 999.9 000000 722324 03071 20140503 73.2 24 19.4 24 9999.9 0 918.6 24 10.0 24 7.0 24 11.1 19.0 90.5 57.6 0.00G 999.9 000000 722324 03071 20140504 79.1 24 19.4 24 9999.9 0 917.9 24 10.0 24 9.1 24 15.0 20.0 95.5 64.6 0.00G 999.9 000000 722324 03071 20140505 82.8 24 25.1 24 9999.9 0 914.8 24 10.0 24 8.8 24 14.0 21.0 99.9 66.2 0.00G 999.9 000000 722324 03071 20140506 84.9 24 30.7 24 9999.9 0 910.7 24 10.0 24 9.7 24 20.0 28.9 97.5 71.1 0.00G 999.9 000000 722324 03071 20140507 83.7 24 37.1 24 9999.9 0 909.2 24 9.8 24 10.8 24 22.0 40.0 95.4 72.7 0.00G 999.9 000000 722324 03071 20140508 74.8 24 40.2 24 9999.9 0 911.2 24 10.0 24 8.2 24 22.0 29.9 90.5 60.4 0.37G 999.9 010010 722324 03071 20140509 73.1 24 24.4 24 9999.9 0 915.9 24 10.0 24 6.2 24 17.1 22.9 86.0 57.7 0.00G 999.9 000000 722324 03071 20140510 78.3 24 36.3 24 9999.9 0 912.7 24 10.0 24 8.6 24 19.0 26.0 95.5 63.5 0.00G 999.9 000000 722324 03071 20140511 83.2 24 51.0 24 9999.9 0 908.1 24 10.0 24 12.4 24 18.1 25.1 95.5 71.6 0.00G 999.9 000000 722324 03071 20140512 74.9 24 48.9 24 9999.9 0 911.4 24 8.7 24 12.7 24 21.0 28.9 94.5 54.5 0.00G 999.9 000000 722324 03071 20140513 60.6 24 30.3 24 9999.9 0 923.3 24 9.5 24 14.6 24 26.0 34.0 81.9 48.6 0.00G 999.9 000000 722324 03071 20140514 56.2 24 25.5 24 9999.9 0 928.6 24 10.0 24 6.3 24 13.0 20.0 71.8 43.2 0.00G 999.9 000000 722324 03071 20140515 64.4 24 16.4 24 9999.9 0 925.7 24 9.6 24 4.6 24 14.0 24.1 82.2 45.5 0.00G 999.9 000000 722324 03071 20140516 75.5 24 15.1 24 9999.9 0 919.9 24 10.0 24 9.7 24 15.9 24.1 93.6 59.9 0.00G 999.9 000000 722324 03071 20140517 77.0 24 27.3 24 9999.9 0 915.4 24 9.6 24 7.5 24 15.0 21.0 92.5 64.4 0.00G 999.9 000000 722324 03071 20140518 76.1 24 46.0 24 9999.9 0 915.8 24 10.0 24 9.9 24 17.1 22.0 93.4 61.0 0.00G 999.9 000000 722324 03071 20140519 79.5 24 52.4 24 9999.9 0 914.2 24 10.0 24 13.9 24 20.0 28.0 97.9 66.2 0.00G 999.9 000000 722324 03071 20140520 83.3 24 48.9 24 9999.9 0 915.2 24 10.0 24 9.8 24 17.1 22.9 99.5 68.7 0.00G 999.9 000000 722324 03071 20140521 81.5 24 54.7 24 9999.9 0 916.0 24 10.0 24 12.5 24 21.0 27.0 95.9 70.3 0.00G 999.9 000000 722324 03071 20140522 78.6 24 59.3 24 9999.9 0 917.6 24 10.0 24 11.6 24 19.0 27.0 88.2 72.0 0.00G 999.9 010000 722324 03071 20140523 77.9 24 60.2 24 9999.9 0 917.9 24 9.9 24 9.0 24 17.1 24.1 86.4 71.1 0.00G 999.9 000000 722324 03071 20140524 70.2 24 61.3 24 9999.9 0 916.9 24 10.0 24 12.7 24 22.9 28.9 77.9 61.7 0.00G 999.9 010010 722324 03071 20140525 66.1 24 61.1 24 9999.9 0 916.2 24 9.6 24 7.4 24 15.0 21.0 74.3 59.9 0.72G 999.9 010010 722324 03071 20140526 70.4 24 59.9 24 9999.9 0 917.1 24 10.0 24 7.3 24 15.9 20.0 83.1 63.7 0.79G 999.9 010000 722324 03071 20140527 72.7 24 57.4 24 9999.9 0 917.0 24 8.2 24 6.4 24 14.0 24.1 90.7 62.6 0.00G 999.9 100000 722324 03071 20140528 76.6 24 54.6 24 9999.9 0 918.4 24 10.0 24 5.7 24 14.0 21.0 89.1 62.6 0.00G 999.9 000000 722324 03071 20140529 78.4 24 54.0 24 9999.9 0 917.7 24 10.0 24 4.8 24 11.1 18.1 89.2 65.3 0.00G 999.9 000000 722324 03071 20140530 80.4 24 53.7 24 9999.9 0 917.1 23 10.0 24 4.4 24 9.9 19.0 91.6 68.5 0.00G 999.9 000000 722324 03071 20140531 82.3 24 55.3 24 9999.9 0 917.0 22 10.0 24 4.9 24 9.9 999.9 94.5 68.9 0.00G 999.9 000000 722324 03071 20140601 85.1 24 58.1 24 9999.9 0 915.0 18 10.0 24 11.0 24 15.9 22.0 99.1 73.4 0.00G 999.9 000000 722324 03071 20140602 86.7 24 59.3 24 9999.9 0 913.1 24 10.0 24 10.2 24 17.1 25.1 100.9 73.9 0.00G 999.9 000000 722324 03071 20140603 84.2 24 60.9 24 9999.9 0 916.5 24 10.0 24 12.2 24 17.1 25.1 99.1 71.8 0.00G 999.9 000000 722324 03071 20140604 85.3 24 58.8 24 9999.9 0 913.8 24 10.0 24 12.3 24 18.1 22.9 101.8 73.0 0.00G 999.9 000000 722324 03071 20140605 87.4 24 56.2 24 9999.9 0 911.6 24 10.0 24 11.8 24 17.1 22.0 102.6 74.5 0.00G 999.9 000000 722324 03071 20140606 86.1 24 60.7 24 9999.9 0 912.2 24 10.0 24 13.9 24 24.1 32.1 96.8 75.7 0.00G 999.9 000000 722324 03071 20140607 83.6 24 61.0 24 9999.9 0 912.7 24 10.0 24 15.7 24 24.1 33.0 94.3 74.3 0.00G 999.9 010000 722324 03071 20140608 79.3 24 60.0 24 9999.9 0 914.5 24 9.8 24 11.2 24 20.0 29.9 92.5 67.6 0.00G 999.9 000000 722324 03071 20140609 75.2 24 57.3 24 9999.9 0 914.3 24 9.8 24 11.6 24 22.0 33.0 84.0 63.0 0.00G 999.9 010000 722324 03071 20140610 73.7 24 43.2 24 9999.9 0 917.6 24 10.0 24 4.3 24 13.0 17.1 91.9 58.1 0.00G 999.9 000000 722324 03071 20140611 84.1 24 46.2 24 9999.9 0 913.5 24 10.0 24 7.3 24 12.0 18.1 105.1 67.6 0.00G 999.9 000000 722324 03071 20140612 83.9 24 56.8 24 9999.9 0 913.2 24 9.9 24 9.8 24 17.1 24.1 98.6 73.4 0.00G 999.9 000000 722324 03071 20140613 78.9 23 63.4 23 9999.9 0 918.7 23 10.0 23 8.5 23 18.1 25.1 94.1* 69.3* 0.00G 999.9 000000 722324 03071 20140614 81.2 21 59.8 21 9999.9 0 914.4 21 9.9 21 12.2 21 19.0 25.1 98.6* 67.6* 0.00G 999.9 010010 722324 03071 20140615 85.0 17 54.9 17 9999.9 0 911.9 17 10.0 17 11.1 17 20.0 28.0 104.0 75.4 0.00G 999.9 000000 722324 03071 20140616 87.1 22 60.9 22 9999.9 0 914.8 22 10.0 22 13.0 22 20.0 33.0 102.9 77.9 0.00G 999.9 000000 722324 03071 20140617 85.7 23 62.0 23 9999.9 0 915.1 22 9.7 23 12.2 23 19.0 24.1 98.4 78.3 0.00G 999.9 000000 722324 03071 20140618 85.7 24 61.3 24 9999.9 0 915.0 24 9.3 24 12.1 24 28.0 35.9 98.4* 74.3* 0.00G 999.9 010010 722324 03071 20140619 85.8 12 60.1 12 9999.9 0 916.5 12 8.8 12 13.7 12 27.0 47.0 92.8* 61.2* 0.00G 999.9 010010 722324 03071 20140620 77.2 15 61.1 15 9999.9 0 919.8 15 10.0 15 10.5 15 17.1 21.0 89.1* 69.1* 0.00G 999.9 000000 722324 03071 20140621 74.0 11 65.2 11 9999.9 0 918.9 11 9.7 11 9.4 11 14.0 20.0 79.2* 70.7* 0.00G 999.9 010000 722324 03071 20140623 81.3 22 66.1 22 9999.9 0 915.3 22 9.7 22 10.2 22 19.0 28.0 91.0 71.4 0.00G 999.9 000000 722324 03071 20140624 81.2 21 61.8 21 9999.9 0 919.1 21 9.6 21 8.0 21 20.0 26.0 88.0* 72.0* 0.00G 999.9 010010 722324 03071 20140625 76.7 24 64.2 24 9999.9 0 918.8 24 9.8 24 9.0 24 18.1 22.9 88.7 69.1 0.00G 999.9 000000 722324 03071 20140626 80.2 24 65.5 24 9999.9 0 916.3 24 10.0 24 9.7 24 18.1 22.0 93.7 69.8 0.00G 999.9 000000 722324 03071 20140627 83.5 24 64.3 24 9999.9 0 911.8 24 10.0 24 15.2 24 21.0 26.0 96.3 74.7 0.00G 999.9 000000 722324 03071 20140628 86.3 24 62.6 24 9999.9 0 910.8 24 10.0 24 16.2 24 22.0 29.9 103.5 74.8 0.00G 999.9 000000 722324 03071 20140629 86.6 24 65.5 24 9999.9 0 914.7 23 10.0 24 14.1 24 19.0 25.1 99.5 76.3 0.00G 999.9 000000 722324 03071 20140630 85.8 24 64.0 24 9999.9 0 915.2 22 9.6 24 14.5 24 20.0 27.0 98.2 76.1 0.00G 999.9 000000 722324 03071 20140701 84.3 24 62.0 24 9999.9 0 914.9 17 10.0 24 13.1 24 19.0 26.0 94.1 75.4 0.00G 999.9 000000 722324 03071 20140702 84.0 24 58.8 24 9999.9 0 919.1 24 10.0 24 8.9 24 17.1 22.9 93.7* 74.8* 0.00G 999.9 000000 722324 03071 20140703 80.3 24 61.5 24 9999.9 0 922.2 24 9.6 24 7.9 24 20.0 25.1 88.0 71.8 0.00G 999.9 010010 722324 03071 20140704 82.0 24 57.1 24 9999.9 0 923.0 24 10.0 24 9.0 24 15.0 22.0 94.1* 70.0* 0.00G 999.9 000000 722324 03071 20140705 85.0 23 53.9 23 9999.9 0 922.6 23 10.0 23 10.7 23 15.9 22.9 94.3* 72.1* 0.00G 999.9 000000 722324 03071 20140706 84.0 21 55.9 21 9999.9 0 920.2 21 10.0 21 9.1 21 14.0 20.0 92.1* 71.2* 0.00G 999.9 000000 722324 03071 20140707 83.8 20 55.5 20 9999.9 0 918.4 20 10.0 20 7.6 20 15.9 21.0 96.1* 73.4* 0.00G 999.9 000000 722324 03071 20140708 85.4 22 54.5 22 9999.9 0 918.3 22 9.7 22 8.8 22 14.0 19.0 95.7* 71.6* 0.00G 999.9 000000 722324 03071 20140709 85.5 24 57.3 24 9999.9 0 919.5 24 9.6 24 8.7 24 15.9 21.0 95.2 73.9 0.00G 999.9 000000 722324 03071 20140710 83.7 24 55.3 24 9999.9 0 918.8 24 9.8 24 10.0 24 15.9 22.9 93.9 72.7 0.00G 999.9 000000 722324 03071 20140711 80.6 24 58.8 24 9999.9 0 919.9 24 9.9 24 9.8 24 17.1 22.0 91.4 69.8 0.00G 999.9 000000 722324 03071 20140712 80.1 24 61.9 24 9999.9 0 921.8 24 9.4 24 12.3 24 19.0 26.0 92.8* 72.0* 0.00G 999.9 000000 722324 03071 20140713 83.6 24 58.8 24 9999.9 0 921.5 22 9.9 24 8.6 24 15.0 20.0 96.6 71.6 0.00G 999.9 000000 722324 03071 20140714 86.6 24 54.9 24 9999.9 0 920.3 24 9.6 24 6.7 24 12.0 17.1 99.0 73.8 0.00G 999.9 000000 722324 03071 20140715 83.2 24 58.9 24 9999.9 0 920.9 24 9.8 24 6.5 24 12.0 15.9 97.0 74.3 0.00G 999.9 010000 722324 03071 20140716 79.0 24 63.5 24 9999.9 0 918.4 24 9.5 24 7.3 24 15.9 25.1 92.8 70.2 0.03G 999.9 000000 722324 03071 20140717 76.9 24 65.8 24 9999.9 0 914.8 24 9.5 24 8.8 24 15.0 19.0 87.6 71.1 0.00G 999.9 010000 722324 03071 20140718 74.4 24 63.1 24 9999.9 0 918.8 24 9.9 24 6.3 24 11.1 14.0 88.2 68.0 0.01G 999.9 000000 722324 03071 20140719 80.1 24 64.6 24 9999.9 0 918.2 24 9.9 24 8.8 24 13.0 18.1 93.7 69.1 0.00G 999.9 000000 722324 03071 20140720 86.0 24 65.2 24 9999.9 0 917.6 24 9.9 24 8.7 24 13.0 17.1 99.3 75.6 0.00G 999.9 000000 722324 03071 20140721 88.9 24 64.1 24 9999.9 0 918.1 24 9.1 24 9.5 24 13.0 20.0 99.9 77.9 0.00G 999.9 000000 722324 03071 20140722 88.8 24 63.0 24 9999.9 0 920.0 19 9.4 24 6.7 24 12.0 22.0 98.4 78.8 0.00G 999.9 000000 722324 03071 20140723 87.2 24 59.5 24 9999.9 0 922.6 24 9.9 24 4.5 24 13.0 19.0 99.3 75.2 0.00G 999.9 000000 722324 03071 20140724 86.2 24 58.6 24 9999.9 0 921.4 24 8.6 24 4.7 24 11.1 18.1 99.5 73.9 0.02G 999.9 010000 722324 03071 20140725 87.7 24 57.4 24 9999.9 0 919.4 24 9.2 24 7.9 24 13.0 17.1 99.1 75.2 0.00G 999.9 000000 722324 03071 20140726 88.7 24 56.5 24 9999.9 0 917.8 24 9.3 24 8.0 24 15.0 21.0 100.8 76.3 0.00G 999.9 000000 722324 03071 20140727 88.3 24 56.9 24 9999.9 0 918.8 24 10.0 24 8.2 24 14.0 19.0 100.6 74.8 0.00G 999.9 000000 722324 03071 20140728 88.5 24 57.6 24 9999.9 0 921.8 24 9.6 24 6.6 24 19.0 24.1 98.8 77.4 0.00G 999.9 000000 722324 03071 20140729 84.4 24 61.7 24 9999.9 0 922.3 24 9.3 24 7.3 24 15.9 22.0 98.2 73.4 0.00G 999.9 000000 722324 03071 20140730 86.6 24 55.6 24 9999.9 0 918.4 23 10.0 24 8.2 24 31.1 999.9 102.4* 77.0* 0.00G 999.9 010010 722324 03071 20140731 76.6 24 62.2 24 9999.9 0 919.1 15 10.0 24 8.0 24 14.0 20.0 88.7 69.4 0.06G 999.9 010010 722324 03071 20140801 76.8 24 58.9 24 9999.9 0 921.6 24 10.0 24 5.1 24 9.9 999.9 84.4* 68.2* 0.00G 999.9 010000 722324 03071 20140802 77.7 24 53.8 24 9999.9 0 922.0 22 10.0 24 4.9 24 13.0 15.0 84.9 71.2 0.00G 999.9 010000 722324 03071 20140803 82.3 24 50.6 24 9999.9 0 9999.9 0 10.0 24 6.2 24 12.0 18.1 92.1 69.4 0.00G 999.9 000000 722324 03071 20140804 81.8 24 50.1 24 9999.9 0 921.6 22 9.9 24 5.2 24 9.9 14.0 92.7 69.3 0.00G 999.9 000000 722324 03071 20140805 84.2 24 52.0 24 9999.9 0 921.0 15 10.0 24 6.6 24 11.1 15.0 95.7 72.7 0.00G 999.9 000000 722324 03071 20140806 87.6 24 51.5 24 9999.9 0 918.9 24 10.0 24 7.7 24 13.0 19.0 99.7 75.4 0.00G 999.9 000000 722324 03071 20140807 90.2 24 52.9 24 9999.9 0 916.7 24 9.5 24 8.5 24 13.0 20.0 101.8 79.2 0.00G 999.9 000000 722324 03071 20140808 89.4 24 54.2 24 9999.9 0 916.6 24 10.0 24 7.5 24 15.0 20.0 100.0 77.0 0.00G 999.9 000000 722324 03071 20140809 88.3 24 52.0 24 9999.9 0 917.7 24 10.0 24 8.3 24 15.0 20.0 98.6 76.1 0.00G 999.9 000000 722324 03071 20140810 87.1 24 55.0 24 9999.9 0 919.5 24 10.0 24 7.3 24 13.0 19.0 97.2 76.1 0.00G 999.9 000000 722324 03071 20140811 82.7 24 59.3 24 9999.9 0 922.1 24 9.8 24 8.8 24 28.9 36.9 93.4 70.9 0.00G 999.9 010010 722324 03071 20140812 81.9 17 62.5 17 9999.9 0 922.8 16 9.2 17 5.2 17 9.9 15.0 91.6 73.4 0.01G 999.9 010010 722324 03071 20140813 81.7 24 60.5 24 9999.9 0 922.1 24 9.9 24 5.9 24 15.0 22.0 95.4 70.3 0.00G 999.9 000000 722324 03071 20140814 85.4 24 51.4 24 9999.9 0 920.5 24 10.0 24 8.7 24 14.0 22.0 96.6 72.9 0.00G 999.9 000000 722324 03071 20140815 87.1 24 51.0 24 9999.9 0 918.0 24 10.0 24 8.2 24 13.0 18.1 99.5 74.3 0.00G 999.9 000000 722324 03071 20140816 86.4 24 54.1 24 9999.9 0 917.0 24 10.0 24 5.7 24 12.0 18.1 97.2 79.2 0.00G 999.9 010000 722324 03071 20140817 83.8 24 59.7 24 9999.9 0 917.8 24 10.0 24 6.6 24 19.0 24.1 95.0 73.6 0.00G 999.9 000000 722324 03071 20140818 79.5 24 64.1 24 9999.9 0 917.3 24 10.0 24 5.1 24 17.1 21.0 90.1 70.3 0.00G 999.9 010010 722324 03071 20140819 78.4 24 63.7 24 9999.9 0 915.7 15 9.8 24 8.6 24 15.0 18.1 92.7 68.0 0.18G 999.9 000000 722324 03071 20140820 83.9 24 62.9 24 9999.9 0 914.6 24 9.8 24 10.5 24 15.0 22.0 95.9* 73.4* 0.00G 999.9 010010 722324 03071 20140821 86.9 16 63.2 16 9999.9 0 917.1 16 10.0 16 11.2 16 17.1 21.0 99.3 75.4 0.05G 999.9 010010 722324 03071 20140822 85.7 24 59.6 24 9999.9 0 918.3 24 10.0 24 8.9 24 18.1 26.0 97.7 76.6 0.00G 999.9 010010 722324 03071 20140823 85.4 24 51.6 24 9999.9 0 917.6 24 10.0 24 9.3 24 15.0 20.0 96.6 74.3 0.00G 999.9 000000 722324 03071 20140824 86.7 24 56.3 24 9999.9 0 916.0 24 10.0 24 8.2 24 17.1 29.9 98.2* 76.1* 0.00G 999.9 010010 722324 03071 20140825 83.6 24 59.5 24 9999.9 0 917.3 24 10.0 24 8.5 24 20.0 25.1 98.4 74.3 0.00G 999.9 010000 722324 03071 20140826 86.0 24 56.6 24 9999.9 0 919.2 24 10.0 24 5.5 24 12.0 17.1 97.7 74.5 0.00G 999.9 000000 722324 03071 20140827 86.2 24 56.0 24 9999.9 0 919.8 24 10.0 24 5.7 24 12.0 999.9 97.3 74.5 0.00G 999.9 000000 722324 03071 20140828 85.8 22 58.0 22 9999.9 0 917.6 22 10.0 22 7.5 22 12.0 21.0 96.4* 76.3* 0.00G 999.9 010010 722324 03071 20140829 80.4 15 64.2 15 9999.9 0 915.6 15 10.0 15 5.4 15 9.9 14.0 93.2 70.9 0.00G 999.9 010010 722324 03071 20140830 78.3 16 64.4 16 9999.9 0 917.8 16 10.0 16 4.4 16 11.1 999.9 91.2 72.0 0.00G 999.9 000000 722324 03071 20140831 86.8 4 58.6 4 9999.9 0 916.7 4 10.0 4 7.2 4 8.9 999.9 90.9* 82.4* 0.00G 999.9 000000 722324 03071 20140901 93.8 10 56.3 10 9999.9 0 913.9 10 10.0 10 8.3 10 12.0 20.0 104.0* 78.1* 0.00I 999.9 000000 722324 03071 20140902 86.4 16 61.1 16 9999.9 0 915.1 16 10.0 16 11.3 16 15.0 21.0 100.9 77.0 0.00G 999.9 000000 722324 03071 20140903 82.8 19 62.7 19 9999.9 0 916.5 19 10.0 19 12.5 19 22.0 26.0 95.9 75.2 0.00G 999.9 000000 722324 03071 20140904 78.3 13 62.3 13 9999.9 0 918.1 12 10.0 13 15.5 13 22.9 29.9 89.1* 71.1* 0.00G 999.9 000000 722324 03071 20140905 76.6 16 65.4 16 9999.9 0 919.9 16 9.8 16 11.2 16 21.0 26.0 84.4* 72.0* 0.00G 999.9 010000 722324 03071 20140906 70.7 24 64.2 24 9999.9 0 922.0 24 9.8 24 9.9 24 15.9 19.0 79.7 65.5 0.28G 999.9 010000 722324 03071 20140907 66.1 22 63.0 22 9999.9 0 923.4 22 7.5 22 7.2 22 11.1 15.0 77.2* 63.1* 0.05G 999.9 010000 722324 03071 20140908 75.8 16 64.6 16 9999.9 0 920.2 16 8.1 16 4.7 16 13.0 17.1 89.1 66.7 0.11G 999.9 100000 722324 03071 20140909 81.2 21 60.5 21 9999.9 0 917.4 21 10.0 21 8.8 21 15.0 22.0 97.2* 71.2* 0.00G 999.9 000000 722324 03071 20140910 91.8 10 53.0 10 9999.9 0 913.5 10 10.0 10 8.3 10 12.0 17.1 99.3* 75.4* 0.00G 999.9 000000 722324 03071 20140911 77.4 15 62.1 15 9999.9 0 918.0 13 10.0 15 10.9 15 22.0 25.1 86.2* 70.7* 0.00G 999.9 000000 722324 03071 20140912 65.3 18 62.8 18 9999.9 0 921.8 14 7.7 18 13.4 18 24.1 28.9 75.2 56.5 0.03G 999.9 010010 722324 03071 20140913 52.2 19 50.7 19 9999.9 0 9999.9 0 6.5 19 12.6 19 19.0 24.1 56.5 50.0 0.33G 999.9 010000 722324 03071 20140918 72.8 21 69.8 21 9999.9 0 916.2 21 7.9 21 6.9 21 28.9 36.9 87.8 64.4 0.02G 999.9 010010 722324 03071 20140919 72.1 12 70.0 12 9999.9 0 916.6 12 8.8 12 6.7 12 9.9 15.0 78.1* 69.8* 0.56G 999.9 010000 722324 03071 20140921 73.2 16 71.1 16 9999.9 0 921.6 15 6.4 16 5.1 16 13.0 17.1 79.9* 70.2* 0.55G 999.9 010010 722324 03071 20140922 72.5 20 69.3 20 9999.9 0 923.8 20 7.9 20 5.1 20 11.1 15.9 82.4* 69.8* 0.03G 999.9 010000 722324 03071 20140923 77.1 13 62.1 13 9999.9 0 922.3 13 9.3 13 8.9 13 15.0 22.9 84.2 66.7 0.00G 999.9 000000 722324 03071 20140924 76.3 22 61.8 22 9999.9 0 921.3 22 10.0 22 6.8 22 13.0 15.9 85.1* 69.1* 0.00G 999.9 010000 722324 03071 20140925 71.3 23 58.4 23 9999.9 0 923.4 23 8.8 23 5.2 23 9.9 15.0 82.0 64.6 0.00G 999.9 000000 722324 03071 20140926 68.5 21 58.1 21 9999.9 0 922.4 20 10.0 21 3.8 21 8.0 999.9 78.6* 62.1* 0.00G 999.9 010000 722324 03071 20140927 70.1 24 59.3 24 9999.9 0 920.4 22 9.8 24 5.4 24 12.0 15.9 79.3 62.8 0.00G 999.9 000000 722324 03071 20140928 68.7 21 59.0 21 9999.9 0 919.9 20 9.6 21 4.9 21 11.1 999.9 79.9* 60.3* 0.00G 999.9 000000 722324 03071 20140929 72.4 17 56.9 17 9999.9 0 9999.9 0 10.0 17 4.8 17 12.0 17.1 84.4* 61.7* 0.00G 999.9 000000 722324 03071 20140930 76.8 24 57.8 24 9999.9 0 914.7 20 10.0 24 7.4 24 14.0 18.1 91.0 65.3 0.00G 999.9 000000 722324 03071 20141001 83.9 14 55.0 14 9999.9 0 912.0 11 8.2 14 8.4 14 11.1 15.9 91.0 69.8 0.00G 999.9 000000 722324 03071 20141002 76.8 24 55.4 24 9999.9 0 914.2 24 9.5 24 9.1 24 15.9 20.0 88.2 69.4 0.00G 999.9 000000 722324 03071 20141003 68.3 24 45.2 24 9999.9 0 922.4 23 9.9 24 3.9 24 14.0 999.9 81.7* 54.5* 0.00G 999.9 000000 722324 03071 20141004 66.0 24 44.1 24 9999.9 0 923.3 24 10.0 24 7.6 24 17.1 21.0 85.6 53.1 0.00G 999.9 000000 722324 03071 20141005 73.3 24 44.5 24 9999.9 0 914.8 24 10.0 24 7.5 24 15.9 21.0 89.2 57.4 0.00G 999.9 000000 722324 03071 20141006 73.2 24 45.7 24 9999.9 0 914.7 24 10.0 24 3.6 24 8.0 999.9 90.1 56.7 0.00G 999.9 000000 722324 03071 20141007 77.8 24 40.6 24 9999.9 0 915.6 24 9.6 24 6.5 24 11.1 17.1 92.5 62.8 0.00G 999.9 000000 722324 03071 20141008 78.1 14 55.2 14 9999.9 0 916.7 13 9.8 14 6.9 14 13.0 17.1 91.8* 64.9* 0.00G 999.9 000000 722324 03071 20141009 82.3 12 59.0 12 9999.9 0 914.5 12 10.0 12 11.3 12 15.9 22.0 90.7 70.3 0.00G 999.9 000000 722324 03071 20141010 75.8 23 61.9 23 9999.9 0 914.8 23 10.0 23 6.5 23 15.9 22.0 85.6* 68.4* 0.00G 999.9 010010 722324 03071 20141011 60.1 19 48.4 19 9999.9 0 921.7 19 9.8 19 7.4 19 12.0 18.1 68.2 52.3 0.00G 999.9 000000 722324 03071 20141012 65.2 24 47.7 24 9999.9 0 915.6 24 10.0 24 7.3 24 18.1 25.1 87.8 52.3 0.00G 999.9 000000 722324 03071 20141013 66.0 24 41.5 24 9999.9 0 915.9 24 10.0 24 15.9 24 22.9 34.0 80.4* 54.7* 0.00G 999.9 000000 722324 03071 20141014 59.7 24 33.2 24 9999.9 0 923.6 24 10.0 24 3.3 24 8.0 999.9 76.3 45.9 0.00G 999.9 000000 722324 03071 20141015 64.8 24 35.2 24 9999.9 0 921.7 24 10.0 24 1.5 24 8.9 999.9 84.2 49.6 0.00G 999.9 000000 722324 03071 20141016 73.0 24 34.3 24 9999.9 0 917.2 24 10.0 24 5.7 24 11.1 14.0 91.8 57.4 0.00G 999.9 000000 722324 03071 20141017 71.0 24 43.3 24 9999.9 0 916.0 24 10.0 24 4.1 24 11.1 999.9 88.2 54.1 0.00G 999.9 000000 722324 03071 20141018 66.2 24 47.2 24 9999.9 0 919.9 24 10.0 24 8.5 24 14.0 19.0 78.6 56.3 0.00G 999.9 000000 722324 03071 20141019 66.8 24 53.2 24 9999.9 0 920.8 24 10.0 24 5.7 24 14.0 21.0 80.1 56.3 0.00G 999.9 000000 722324 03071 20141020 67.4 24 56.3 24 9999.9 0 919.7 24 9.9 24 5.3 24 12.0 15.9 79.0 57.4 0.00G 999.9 000000 722324 03071 20141021 68.0 24 53.5 24 9999.9 0 920.0 24 10.0 24 5.0 24 9.9 15.9 75.4 58.1 0.00G 999.9 000000 722324 03071 20141022 68.8 24 58.4 24 9999.9 0 920.1 24 10.0 24 6.1 24 11.1 15.0 73.6 63.7 0.00G 999.9 010000 722324 03071 20141023 65.2 24 57.1 24 9999.9 0 921.3 24 8.5 24 4.9 24 13.0 14.0 82.2 55.9 0.00G 999.9 100000 722324 03071 20141024 71.3 24 56.9 24 9999.9 0 921.9 24 8.4 24 5.0 24 8.9 999.9 87.3 59.4 0.00G 999.9 100000 722324 03071 20141025 73.9 24 53.3 24 9999.9 0 922.4 24 10.0 24 5.0 24 9.9 15.0 88.0 60.6 0.00G 999.9 000000 722324 03071 20141026 75.0 24 50.4 24 9999.9 0 918.4 24 10.0 24 8.1 24 11.1 15.0 89.6 63.1 0.00G 999.9 000000 722324 03071 20141027 75.7 24 50.0 24 9999.9 0 913.2 24 10.0 24 9.0 24 14.0 20.0 90.0 63.7 0.00G 999.9 000000 722324 03071 20141028 67.8 24 44.4 24 9999.9 0 918.5 24 9.3 24 6.9 24 13.0 18.1 83.3 54.9 0.00G 999.9 000000 722324 03071 20141029 61.4 24 44.4 24 9999.9 0 923.6 24 10.0 24 4.2 24 8.9 999.9 77.7 48.4 0.00G 999.9 000000 722324 03071 20141030 69.2 24 52.1 24 9999.9 0 921.3 23 9.8 24 5.4 24 11.1 15.0 85.1 56.7 0.00G 999.9 000000 722324 03071 20141031 62.7 24 40.2 24 9999.9 0 926.9 22 10.0 24 7.5 24 14.0 22.0 75.9 49.5 0.00G 999.9 000000 722324 03071 20141101 56.3 24 35.1 24 9999.9 0 925.2 18 10.0 24 8.7 24 15.0 20.0 71.2 45.5 0.00G 999.9 000000 722324 03071 20141102 62.0 24 45.1 24 9999.9 0 920.7 24 10.0 24 14.2 24 19.0 25.1 70.3 56.3 0.00G 999.9 000000 722324 03071 20141103 65.4 24 54.8 24 9999.9 0 918.2 24 10.0 24 13.7 24 18.1 25.1 73.0 62.2 0.00G 999.9 000000 722324 03071 20141104 57.7 24 54.2 24 9999.9 0 920.1 24 8.9 24 10.7 24 19.0 28.9 69.3 46.8 0.00G 999.9 010000 722324 03071 20141105 49.2 24 46.6 24 9999.9 0 925.1 24 9.2 24 5.9 24 11.1 14.0 56.8 45.9 0.01G 999.9 010000 722324 03071 20141106 55.9 24 43.1 24 9999.9 0 928.2 24 10.0 24 4.0 24 11.1 999.9 64.9 50.4 0.04G 999.9 000000 722324 03071 20141107 56.0 24 44.9 24 9999.9 0 926.0 24 10.0 24 4.5 24 15.0 21.0 66.4 45.5 0.00G 999.9 000000 722324 03071 20141108 55.4 21 46.3 21 9999.9 0 921.3 21 9.8 21 8.5 21 19.0 26.0 66.6 46.9 0.00G 999.9 000000 722324 03071 20141109 58.3 24 41.5 24 9999.9 0 922.3 24 10.0 24 6.7 24 15.9 21.0 73.6 48.2 0.00G 999.9 000000 722324 03071 20141110 64.5 24 44.0 24 9999.9 0 911.0 24 10.0 24 11.4 24 21.0 27.0 82.4 52.9 0.00G 999.9 000000 722324 03071 20141111 50.2 24 27.3 24 9999.9 0 917.2 24 10.0 24 9.7 24 20.0 28.9 77.5 34.0 0.00G 999.9 000000 722324 03071 20141112 34.4 24 16.6 24 9999.9 0 926.4 24 10.0 24 10.5 24 17.1 21.0 44.1 27.5 0.00G 999.9 000000 722324 03071 20141113 28.7 24 9.4 24 9999.9 0 932.0 24 10.0 24 9.9 24 15.0 18.1 34.5 25.3 0.03G 999.9 000000 722324 03071 20141114 34.0 24 14.8 24 9999.9 0 926.0 24 10.0 24 7.5 24 13.0 15.9 49.3 28.0 0.00G 999.9 000000 722324 03071 20141115 46.7 24 31.6 24 9999.9 0 917.5 24 10.0 24 8.7 24 13.0 17.1 69.3 36.0 0.00G 999.9 000000 722324 03071 20141116 43.0 24 33.8 24 9999.9 0 916.9 24 10.0 24 9.9 24 15.0 21.0 63.3 29.3 0.00G 999.9 011000 722324 03071 20141117 30.4 23 16.0 23 9999.9 0 928.1 23 10.0 23 6.4 23 13.0 18.1 44.6* 23.2* 0.00G 999.9 000000 722324 03071 20141118 38.9 23 16.4 23 9999.9 0 927.6 23 10.0 23 5.9 23 17.1 18.1 54.5 26.6 0.00G 999.9 000000 722324 03071 20141119 47.1 24 20.3 24 9999.9 0 923.6 24 10.0 24 6.3 24 11.1 15.0 68.0 32.0 0.00G 999.9 000000 722324 03071 20141120 55.2 24 30.1 24 9999.9 0 918.9 24 10.0 24 6.5 24 11.1 14.0 71.6 43.2 0.00G 999.9 000000 722324 03071 20141121 56.1 24 42.6 24 9999.9 0 917.4 24 7.9 24 5.3 24 12.0 999.9 71.8 45.5 0.00G 999.9 100000 722324 03071 20141122 61.1 24 55.2 24 9999.9 0 915.3 24 9.2 24 4.2 24 9.9 999.9 69.3 57.6 0.00G 999.9 010010 722324 03071 20141123 59.7 24 35.8 24 9999.9 0 908.2 24 9.4 24 9.7 24 25.1 33.0 71.8 52.0 0.02G 999.9 000000 722324 03071 20141124 45.8 24 30.3 24 9999.9 0 917.7 24 9.9 24 7.8 24 22.0 29.9 61.3 34.3 0.00G 999.9 000000 722324 03071 20141125 44.6 24 25.4 24 9999.9 0 924.7 24 10.0 24 5.6 24 15.9 22.9 56.3 34.2 0.00G 999.9 000000 722324 03071 20141126 50.7 24 18.3 24 9999.9 0 923.2 24 10.0 24 8.1 24 15.0 22.0 60.8 42.8 0.00G 999.9 000000 722324 03071 20141127 48.4 24 32.3 24 9999.9 0 929.6 24 9.8 24 4.1 24 11.1 14.0 64.6 34.5 0.00G 999.9 000000 722324 03071 20141128 55.5 24 32.2 24 9999.9 0 923.8 24 10.0 24 8.5 24 13.0 18.1 73.8 43.7 0.00G 999.9 000000 722324 03071 20141129 58.7 24 33.8 24 9999.9 0 916.6 23 10.0 24 9.2 24 14.0 18.1 76.5 46.4 0.00G 999.9 000000 722324 03071 20141130 61.1 24 33.4 24 9999.9 0 915.8 22 10.0 24 7.2 24 11.1 15.0 77.9 47.8 0.00G 999.9 000000 722324 03071 20141201 44.0 24 21.3 24 9999.9 0 929.1 18 10.0 24 9.8 24 19.0 25.1 71.4 27.5 0.00G 999.9 000000 722324 03071 20141202 43.2 24 22.1 24 9999.9 0 926.1 24 10.0 24 4.1 24 8.9 999.9 61.2 36.5 0.00G 999.9 000000 722324 03071 20141203 53.7 24 38.8 24 9999.9 0 919.4 24 9.6 24 3.7 24 8.0 999.9 72.9 43.9 0.00G 999.9 000000 722324 03071 20141204 55.5 24 46.7 24 9999.9 0 919.7 24 7.8 24 6.9 24 14.0 18.1 66.4 49.3 0.00G 999.9 000000 722324 03071 20141205 59.2 24 48.3 24 9999.9 0 918.9 24 8.2 24 9.1 24 14.0 18.1 72.0 50.4 0.00G 999.9 000000 722324 03071 20141206 53.3 24 40.8 24 9999.9 0 928.3 24 10.0 24 4.4 24 11.1 15.0 65.7 41.9 0.00G 999.9 000000 722324 03071 20141207 50.0 24 44.2 24 9999.9 0 928.3 24 8.0 24 5.1 24 8.9 999.9 56.7 45.7 0.00G 999.9 010000 722324 03071 20141208 50.8 24 46.5 24 9999.9 0 927.0 24 4.8 24 2.3 24 6.0 999.9 65.5 41.0 0.00G 999.9 100000 722324 03071 20141209 51.0 24 45.7 24 9999.9 0 927.0 24 6.8 24 1.7 24 8.0 999.9 61.5 42.3 0.00G 999.9 000000 722324 03071 20141210 56.5 24 51.0 24 9999.9 0 922.6 24 8.7 24 5.6 24 9.9 999.9 59.5 54.5 0.00G 999.9 000000 722324 03071 20141211 56.7 24 52.6 24 9999.9 0 921.3 24 6.9 24 4.1 24 11.1 999.9 61.7 54.9 0.00G 999.9 000000 722324 03071 20141212 59.9 24 52.7 24 9999.9 0 922.5 24 8.8 24 6.4 24 9.9 15.0 72.1 53.6 0.00G 999.9 000000 722324 03071 20141213 62.1 24 53.8 24 9999.9 0 919.9 24 8.3 24 9.8 24 15.0 18.1 73.2 55.9 0.00G 999.9 000000 722324 03071 20141214 61.3 24 41.9 24 9999.9 0 914.2 24 9.9 24 15.6 24 26.0 35.9 67.3 54.5 0.00G 999.9 000000 722324 03071 20141215 52.7 24 20.1 24 9999.9 0 916.7 24 10.0 24 6.7 24 15.0 20.0 64.9 38.3 0.00G 999.9 000000 722324 03071 20141216 46.7 24 26.5 24 9999.9 0 924.6 24 10.0 24 6.0 24 13.0 15.0 60.6 36.7 0.00G 999.9 000000 722324 03071 20141217 54.2 24 34.3 24 9999.9 0 920.4 24 10.0 24 10.3 24 15.9 21.0 66.7 50.9 0.00G 999.9 000000 722324 03071 20141218 54.1 24 34.4 24 9999.9 0 919.7 24 10.0 24 5.4 24 8.9 14.0 64.2 40.8 0.00G 999.9 000000 722324 03071 20141219 47.0 24 37.8 24 9999.9 0 921.2 24 8.8 24 3.8 24 8.9 999.9 60.3 40.1 0.00G 999.9 000000 722324 03071 20141220 42.6 24 38.5 24 9999.9 0 921.8 24 5.8 24 3.8 24 9.9 14.0 59.0 31.8 0.00G 999.9 100000 722324 03071 20141221 51.0 24 40.1 24 9999.9 0 916.5 24 7.9 24 9.2 24 17.1 21.0 68.2 43.0 0.00G 999.9 000000 722324 03071 20141222 59.5 24 29.2 24 9999.9 0 908.5 24 10.0 24 9.9 24 18.1 21.0 67.5 53.8 0.00G 999.9 000000 722324 03071 20141223 45.4 24 34.6 24 9999.9 0 912.2 24 9.5 24 11.3 24 20.0 28.0 57.9 38.7 0.03G 999.9 010000 722324 03071 20141224 39.9 24 24.4 24 9999.9 0 921.5 24 10.0 24 9.8 24 15.9 22.9 49.8 32.0 0.07G 999.9 000000 722324 03071 20141225 44.8 24 23.6 24 9999.9 0 913.5 24 10.0 24 10.5 24 20.0 24.1 62.6 37.6 0.00G 999.9 000000 722324 03071 20141226 53.6 24 30.6 24 9999.9 0 911.3 24 10.0 24 11.1 24 15.9 22.9 68.5 43.7 0.00G 999.9 000000 722324 03071 20141227 41.8 24 32.1 24 9999.9 0 921.5 24 9.5 24 7.8 24 12.0 18.1 55.4 34.0 0.00G 999.9 011000 722324 03071 20141228 37.4 24 28.2 24 9999.9 0 924.4 24 9.2 24 5.7 24 17.1 22.0 53.4 30.2 0.00G 999.9 100000 722324 03071 20141229 47.6 24 28.4 24 9999.9 0 918.4 24 10.0 24 5.5 24 9.9 14.0 60.8 36.0 0.00G 999.9 000000 722324 03071 20141230 37.1 24 29.0 24 9999.9 0 924.7 23 7.6 24 11.0 24 20.0 26.0 57.9 25.7 0.00G 999.9 000000 722324 03071 20141231 21.0 24 18.7 24 9999.9 0 932.3 20 4.7 24 6.8 24 13.0 15.0 25.7 17.6 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/2002/0000755000175000017500000000000014302004506015063 5ustar nileshnileshfluids-1.0.22/tests/gsod/2002/724050-13743.op0000644000175000017500000014327214302004506016654 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20020101 27.1 24 9.2 24 1022.2 24 9999.9 0 9.9 24 10.1 24 15.9 21.0 33.1* 19.9* 0.00G 999.9 000000 724050 13743 20020102 28.4 24 11.3 24 1027.9 24 9999.9 0 9.9 24 8.3 24 14.0 19.0 37.0 19.9 0.00G 999.9 000000 724050 13743 20020103 31.8 24 15.2 24 1019.2 24 9999.9 0 9.9 24 7.8 24 12.0 999.9 37.0 21.0 0.00G 999.9 000000 724050 13743 20020104 33.5 24 14.5 24 1018.9 24 9999.9 0 9.9 24 10.9 24 15.9 21.0 41.0 27.0 0.00G 999.9 000000 724050 13743 20020105 36.2 24 15.9 24 1020.7 24 9999.9 0 9.9 24 5.8 24 12.0 999.9 51.1 26.1 0.00G 999.9 000000 724050 13743 20020106 34.7 24 24.2 24 1014.6 20 9999.9 0 8.3 24 5.6 24 15.0 999.9 51.1 26.1 0.00G 999.9 111000 724050 13743 20020107 36.5 24 31.5 24 1003.3 24 9999.9 0 9.1 24 9.9 24 15.0 21.0 39.0 28.9 0.60G 999.9 111000 724050 13743 20020108 33.4 24 18.2 24 1015.7 24 9999.9 0 9.9 24 10.9 24 22.0 27.0 39.9 28.0 0.01G 999.9 000000 724050 13743 20020109 36.1 24 24.3 24 1012.0 24 9999.9 0 9.9 24 7.4 24 12.0 999.9 48.9 28.0 0.00G 999.9 010000 724050 13743 20020110 43.5 24 34.9 24 1009.4 24 9999.9 0 9.9 24 6.6 24 10.1 999.9 53.1 28.9 0.01G 999.9 000000 724050 13743 20020111 46.1 24 36.8 24 1010.6 23 9999.9 0 9.0 24 9.2 24 25.1 35.9 53.1 34.0 0.06G 999.9 110000 724050 13743 20020112 40.3 24 26.7 24 1015.6 24 9999.9 0 9.9 24 7.8 24 15.9 21.0 51.1 30.0 0.11G 999.9 000000 724050 13743 20020113 44.1 24 24.4 24 1005.5 24 9999.9 0 9.9 24 12.7 24 22.9 34.0 51.1 30.0 0.00G 999.9 000000 724050 13743 20020114 41.2 24 24.6 24 1017.2 24 9999.9 0 9.9 24 6.0 24 13.0 999.9 51.1 32.0 0.00G 999.9 000000 724050 13743 20020115 46.3 24 31.2 24 1012.8 24 9999.9 0 9.9 24 8.9 24 18.1 25.1 54.0 32.0 0.00G 999.9 000000 724050 13743 20020116 39.7 24 20.7 24 1023.0 24 9999.9 0 9.9 24 8.8 24 20.0 28.9 54.0 33.1 0.00G 999.9 000000 724050 13743 20020117 42.6 24 27.2 24 1017.4 24 9999.9 0 10.0 24 7.0 24 12.0 999.9 51.1 33.1 0.00G 999.9 000000 724050 13743 20020118 42.4 24 19.6 24 1019.5 24 9999.9 0 9.9 24 9.4 24 19.0 25.1 51.1 37.9 0.00G 999.9 000000 724050 13743 20020119 34.4 24 24.3 24 1021.4 20 9999.9 0 7.2 24 4.8 24 8.9 15.0 46.0 32.0 0.00G 2.0 111000 724050 13743 20020120 34.3 24 26.5 24 1018.4 22 9999.9 0 8.1 24 7.6 24 14.0 999.9 39.9 30.0 0.37G 1.2 111000 724050 13743 20020121 36.8 24 30.6 24 1016.9 23 9999.9 0 8.5 24 7.3 24 15.0 999.9 46.0 30.0 0.00G 1.2 111000 724050 13743 20020122 43.4 24 26.0 24 1023.6 24 9999.9 0 9.9 24 7.7 24 15.0 22.0 55.0 32.0 0.02G 999.9 000000 724050 13743 20020123 45.0 24 37.5 24 1023.6 24 9999.9 0 9.8 24 10.3 24 15.0 999.9 55.0 33.1 0.02G 999.9 010000 724050 13743 20020124 49.6 24 48.0 24 1010.3 24 9999.9 0 5.8 24 6.6 24 11.1 16.9 62.1 43.0 0.03G 999.9 110000 724050 13743 20020125 48.6 24 32.4 24 1015.4 24 9999.9 0 9.8 24 12.0 24 19.0 26.0 62.1 39.0 0.10G 999.9 010000 724050 13743 20020126 41.7 24 25.3 24 1025.0 24 9999.9 0 9.9 24 5.7 24 8.9 999.9 55.9 30.0 0.03G 999.9 000000 724050 13743 20020127 45.5 24 31.1 24 1023.0 24 9999.9 0 9.8 24 3.6 24 8.0 999.9 64.9 30.0 0.00G 999.9 000000 724050 13743 20020128 51.0 24 38.4 24 1019.8 24 9999.9 0 9.8 24 4.2 24 8.0 999.9 66.9 33.1 0.00G 999.9 000000 724050 13743 20020129 55.6 24 41.4 24 1016.2 24 9999.9 0 9.9 24 6.8 24 12.0 999.9 69.8* 45.0* 0.00G 999.9 000000 724050 13743 20020130 61.7 24 51.5 24 1016.4 24 9999.9 0 9.9 24 7.5 24 13.0 999.9 77.0 44.1 0.00G 999.9 000000 724050 13743 20020131 50.6 24 44.9 24 1023.4 24 9999.9 0 6.6 24 8.6 24 15.0 999.9 59.0* 46.4* 0.00G 999.9 110000 724050 13743 20020201 57.3 24 50.7 24 1012.5 21 9999.9 0 5.2 24 11.4 24 24.1 33.0 77.0 44.1 0.00G 999.9 110000 724050 13743 20020202 41.4 24 19.3 24 1025.2 24 9999.9 0 9.9 24 14.1 24 25.1 35.0 51.1* 35.6* 0.05G 999.9 000000 724050 13743 20020203 37.3 24 21.4 24 1025.0 24 9999.9 0 9.9 24 6.9 24 15.0 999.9 44.1 30.0 0.00G 999.9 000000 724050 13743 20020204 37.3 24 22.7 24 1012.5 24 9999.9 0 9.4 24 9.6 24 26.0 39.0 44.1 30.0 0.00G 999.9 101000 724050 13743 20020205 28.2 24 5.8 24 1025.2 24 9999.9 0 9.9 24 14.4 24 28.9 35.9 44.1 21.0 0.07G 999.9 000000 724050 13743 20020206 36.8 24 10.8 24 1025.1 24 9999.9 0 9.9 24 6.4 24 11.1 999.9 48.9 21.0 0.00G 999.9 000000 724050 13743 20020207 39.5 24 29.6 24 1016.7 24 9999.9 0 6.9 24 5.9 24 10.1 999.9 46.0 27.0 0.16G 999.9 111000 724050 13743 20020208 42.6 24 31.0 24 1016.6 24 9999.9 0 11.4 24 5.1 24 15.0 999.9 61.0 30.9 0.03G 999.9 100000 724050 13743 20020209 45.7 24 29.2 24 1027.2 24 9999.9 0 9.8 24 5.5 24 10.1 999.9 61.0 30.9 0.00G 999.9 000000 724050 13743 20020210 42.7 24 39.4 24 1028.5 20 9999.9 0 5.4 24 3.8 24 7.0 999.9 53.1 33.1 0.00G 999.9 110000 724050 13743 20020211 44.8 24 31.2 24 1014.4 23 9999.9 0 8.8 24 14.2 24 28.9 39.0 51.8* 37.0* 0.04G 999.9 110000 724050 13743 20020212 38.4 24 16.4 24 1018.8 24 9999.9 0 9.9 24 9.1 24 22.0 23.9 55.9 27.0 0.02G 999.9 000000 724050 13743 20020213 44.7 24 20.7 24 1018.9 24 9999.9 0 9.9 24 9.0 24 19.0 23.9 55.9 27.0 0.00G 999.9 000000 724050 13743 20020214 34.5 24 13.4 24 1029.7 24 9999.9 0 9.9 24 5.7 24 12.0 999.9 46.9 26.1 0.00G 999.9 000000 724050 13743 20020215 40.5 24 26.2 24 1024.9 24 9999.9 0 9.9 24 11.3 24 17.1 20.0 53.1 26.1 0.00G 999.9 000000 724050 13743 20020216 50.0 24 30.0 24 1012.8 24 9999.9 0 9.9 24 7.2 24 15.0 18.1 60.1 30.9 0.00G 999.9 000000 724050 13743 20020217 45.4 24 24.6 24 1009.6 24 9999.9 0 9.9 24 12.5 24 21.0 28.9 53.1* 37.4* 0.00G 999.9 000000 724050 13743 20020218 36.1 24 15.3 24 1024.0 24 9999.9 0 9.9 24 12.1 24 20.0 28.0 50.0 27.0 0.00G 999.9 000000 724050 13743 20020219 40.2 24 19.9 24 1026.2 24 9999.9 0 9.9 24 3.9 24 7.0 999.9 57.0 27.0 0.00G 999.9 000000 724050 13743 20020220 53.5 24 35.6 24 1018.2 24 9999.9 0 10.0 24 8.7 24 17.1 25.1 64.9* 48.2* 0.00G 999.9 000000 724050 13743 20020221 57.8 24 43.1 24 1009.3 24 9999.9 0 8.8 24 7.8 24 12.0 18.1 66.0 46.9 0.00G 999.9 110000 724050 13743 20020222 50.7 24 30.3 24 1014.1 24 9999.9 0 9.9 24 9.7 24 15.0 22.0 66.0 44.1 0.01G 999.9 000000 724050 13743 20020223 40.7 24 24.6 24 1020.0 24 9999.9 0 9.9 24 7.5 24 15.0 16.9 53.1 33.1 0.00G 999.9 000000 724050 13743 20020224 41.3 24 18.1 24 1023.5 24 9999.9 0 9.9 24 4.6 24 10.1 999.9 55.0 28.9 0.00G 999.9 000000 724050 13743 20020225 45.0 24 27.2 24 1023.4 24 9999.9 0 9.6 24 6.7 24 13.0 999.9 57.9 28.9 0.00G 999.9 000000 724050 13743 20020226 54.5 24 34.3 24 1010.4 24 9999.9 0 9.9 24 10.5 24 19.0 26.0 69.1 33.1 0.00G 999.9 000000 724050 13743 20020227 39.9 24 19.9 24 1007.1 24 9999.9 0 9.9 24 14.9 24 22.9 28.9 62.6* 30.2* 0.12G 999.9 010010 724050 13743 20020228 32.4 24 9.3 24 1018.1 24 9999.9 0 9.9 24 11.0 24 15.9 22.0 42.1* 26.6* 0.00G 999.9 000000 724050 13743 20020301 37.3 24 14.4 24 1029.1 24 9999.9 0 9.9 24 6.3 24 11.1 999.9 51.1 26.1 0.00G 999.9 000000 724050 13743 20020302 41.1 24 27.9 24 1032.0 24 9999.9 0 9.5 24 7.3 24 12.0 999.9 51.1 26.1 0.00G 999.9 110000 724050 13743 20020303 52.0 24 48.3 24 1007.8 21 9999.9 0 8.1 24 10.0 24 19.0 25.1 57.9 35.1 0.78G 999.9 110000 724050 13743 20020304 34.0 24 11.6 24 1016.6 24 9999.9 0 9.9 24 13.3 24 19.0 28.0 48.9* 26.6* 0.02G 999.9 000000 724050 13743 20020305 28.7 24 4.9 24 1028.2 24 9999.9 0 10.0 24 9.2 24 15.9 21.0 45.0 19.0 0.00G 999.9 000000 724050 13743 20020306 45.3 24 23.2 24 1026.9 24 9999.9 0 9.9 24 9.7 24 17.1 22.0 64.0 19.0 0.00G 999.9 000000 724050 13743 20020307 53.6 24 29.8 24 1024.7 24 9999.9 0 9.9 24 8.8 24 14.0 999.9 69.1 34.0 0.00G 999.9 000000 724050 13743 20020308 55.2 24 35.7 24 1028.2 24 9999.9 0 9.6 24 5.4 24 12.0 999.9 72.0 39.9 0.00G 999.9 000000 724050 13743 20020309 58.2 24 53.2 24 1026.1 23 9999.9 0 8.3 24 7.6 24 20.0 28.9 72.0 39.9 0.00G 999.9 110000 724050 13743 20020310 51.9 24 28.6 24 1019.0 24 9999.9 0 9.8 24 14.8 24 21.0 30.9 69.1 39.9 0.23G 999.9 010010 724050 13743 20020311 37.8 24 10.1 24 1029.6 24 9999.9 0 9.9 24 9.6 24 17.1 22.9 46.0* 30.2* 0.19G 999.9 000000 724050 13743 20020312 41.4 24 30.5 24 1024.3 24 9999.9 0 9.1 24 5.2 24 11.1 999.9 46.4* 37.0* 0.00G 999.9 110000 724050 13743 20020313 46.9 24 45.8 24 1014.3 18 9999.9 0 2.9 24 7.0 24 12.0 999.9 51.8* 44.6* 0.42G 999.9 110000 724050 13743 20020314 54.0 24 47.8 24 1014.9 24 9999.9 0 5.7 24 6.1 24 8.9 999.9 69.1 45.0 0.14G 999.9 100000 724050 13743 20020315 61.2 24 50.6 24 1015.6 24 9999.9 0 8.2 24 9.6 24 14.0 999.9 80.1 46.9 0.00G 999.9 100000 724050 13743 20020316 64.9 24 54.8 24 1013.1 24 9999.9 0 9.8 24 9.1 24 18.1 22.0 80.1 51.1 0.00G 999.9 010000 724050 13743 20020317 43.2 24 34.4 24 1027.7 21 9999.9 0 8.5 24 12.2 24 17.1 22.0 72.0 39.0 0.01G 999.9 110000 724050 13743 20020318 42.7 24 41.2 24 1025.0 21 9999.9 0 6.6 24 8.5 24 11.1 999.9 48.2* 39.2* 0.37G 999.9 110000 724050 13743 20020319 47.4 24 40.6 24 1026.5 24 9999.9 0 7.5 24 5.9 24 10.1 999.9 53.1 39.9 0.01G 999.9 100000 724050 13743 20020320 45.3 24 43.2 24 1020.7 18 9999.9 0 5.7 24 5.5 24 13.0 999.9 53.1 42.1 0.44G 999.9 110000 724050 13743 20020321 50.2 24 39.6 24 1015.0 24 9999.9 0 9.7 24 8.7 24 19.0 999.9 59.0 42.1 0.19G 999.9 000000 724050 13743 20020322 33.8 24 11.4 24 1019.4 24 9999.9 0 10.0 24 16.5 24 32.1 44.9 59.0 24.1 0.00G 999.9 000000 724050 13743 20020323 37.1 24 12.3 24 1021.9 24 9999.9 0 9.9 24 10.1 24 18.1 21.0 53.1 24.1 0.00G 999.9 000000 724050 13743 20020324 47.1 24 24.8 24 1019.3 24 9999.9 0 10.0 24 6.0 24 11.1 999.9 64.0 26.1 0.00G 999.9 000000 724050 13743 20020325 51.3 24 33.0 24 1020.7 24 9999.9 0 9.9 24 9.1 24 14.0 18.1 64.0 34.0 0.00G 999.9 000000 724050 13743 20020326 45.6 24 42.9 24 1021.6 22 9999.9 0 4.4 24 8.1 24 14.0 999.9 60.1 41.0 0.01G 999.9 110000 724050 13743 20020327 47.9 24 39.2 24 1016.2 23 9999.9 0 8.2 24 11.2 24 19.0 22.9 52.0 41.0 0.49G 999.9 110010 724050 13743 20020328 43.4 24 25.9 24 1021.8 24 9999.9 0 9.9 24 9.0 24 17.1 19.0 54.0 33.1 0.00G 999.9 000000 724050 13743 20020329 51.5 24 39.1 24 1018.7 24 9999.9 0 9.8 24 9.9 24 15.9 999.9 66.9 33.1 0.00G 999.9 000000 724050 13743 20020330 62.5 24 48.7 24 1012.2 24 9999.9 0 10.0 24 10.4 24 15.9 22.0 70.0 43.0 0.00G 999.9 000000 724050 13743 20020331 56.2 24 45.4 24 1017.3 23 9999.9 0 8.9 24 3.7 24 11.1 999.9 70.0 50.0 0.04G 999.9 110000 724050 13743 20020401 52.4 24 40.0 24 1012.9 21 9999.9 0 9.0 24 10.5 24 20.0 30.9 61.0 46.0 0.22G 999.9 110000 724050 13743 20020402 54.8 24 37.4 24 1017.7 24 9999.9 0 9.9 24 6.6 24 14.0 999.9 71.1 42.1 0.00G 999.9 000000 724050 13743 20020403 63.6 24 51.6 24 1011.9 24 9999.9 0 10.0 24 13.1 24 26.0 32.1 75.9 42.1 0.00G 999.9 010000 724050 13743 20020404 45.2 24 25.2 24 1024.7 24 9999.9 0 9.9 24 11.2 24 21.0 27.0 53.1* 36.0* 0.00G 999.9 000000 724050 13743 20020405 44.7 24 20.9 24 1025.3 24 9999.9 0 9.9 24 10.8 24 18.1 23.9 53.1 36.0 0.00G 999.9 000000 724050 13743 20020406 41.5 24 21.1 24 1024.1 24 9999.9 0 9.9 24 12.4 24 17.1 21.0 51.1 35.1 0.00G 999.9 000000 724050 13743 20020407 42.3 24 22.3 24 1030.0 24 9999.9 0 9.9 24 7.9 24 13.0 16.9 54.0 32.0 0.00G 999.9 000000 724050 13743 20020408 53.1 24 37.4 24 1026.6 24 9999.9 0 9.9 24 11.0 24 14.0 19.0 71.1 32.0 0.00G 999.9 000000 724050 13743 20020409 65.8 24 54.3 24 1022.0 24 9999.9 0 9.2 24 13.5 24 20.0 27.0 75.0* 60.1* 0.00G 999.9 110000 724050 13743 20020410 59.8 24 48.4 24 1026.8 24 9999.9 0 8.7 24 10.1 24 22.0 26.0 75.9 50.0 0.27G 999.9 110000 724050 13743 20020411 57.2 24 43.1 24 1033.2 24 9999.9 0 9.3 24 6.5 24 15.0 16.9 66.9 46.0 0.00G 999.9 100000 724050 13743 20020412 54.2 24 47.0 24 1031.5 23 9999.9 0 8.8 24 6.1 24 13.0 999.9 66.9 46.0 0.00G 999.9 100000 724050 13743 20020413 65.5 24 58.3 24 1023.9 24 9999.9 0 8.8 24 7.1 24 13.0 20.0 75.9 48.9 0.00G 999.9 100000 724050 13743 20020414 70.5 24 60.6 24 1018.7 24 9999.9 0 9.9 24 6.6 24 15.9 25.1 82.9 57.9 0.01G 999.9 000000 724050 13743 20020415 74.1 24 60.3 24 1015.4 24 9999.9 0 9.7 24 8.0 24 14.0 15.0 86.0 62.1 0.05G 999.9 010000 724050 13743 20020416 77.2 24 61.8 24 1019.0 24 9999.9 0 9.7 24 4.4 24 8.9 999.9 91.9 63.0 0.00I 999.9 000000 724050 13743 20020417 78.4 24 63.3 24 1018.4 24 9999.9 0 9.1 24 5.2 24 8.0 999.9 95.0 64.9 0.00G 999.9 100000 724050 13743 20020418 79.7 24 63.7 24 1018.3 22 9999.9 0 9.7 24 5.9 24 33.0 41.0 95.0 64.9 0.00G 999.9 110010 724050 13743 20020419 70.9 24 66.0 24 1015.3 23 9999.9 0 7.1 24 6.6 24 21.0 35.9 91.0 64.0 0.31G 999.9 110010 724050 13743 20020420 73.5 24 62.9 24 1011.5 24 9999.9 0 9.9 24 6.1 24 13.0 999.9 82.9 64.0 0.51G 999.9 010000 724050 13743 20020421 59.1 24 53.0 24 1014.5 24 9999.9 0 9.2 24 9.5 24 15.0 999.9 81.0 48.0 0.03G 999.9 110000 724050 13743 20020422 53.8 24 47.2 24 1010.5 20 9999.9 0 7.5 24 7.4 24 19.0 29.9 69.1* 46.4* 0.60G 999.9 110010 724050 13743 20020423 50.6 24 30.9 24 1019.2 24 9999.9 0 9.9 24 14.5 24 22.0 28.9 69.1 41.0 0.20G 999.9 000000 724050 13743 20020424 52.0 24 33.1 24 1024.2 24 9999.9 0 9.9 24 6.2 24 14.0 999.9 64.0 41.0 0.00G 999.9 000000 724050 13743 20020425 55.3 24 44.9 24 1017.9 22 9999.9 0 7.8 24 10.3 24 21.0 29.9 64.9 41.0 0.06G 999.9 110000 724050 13743 20020426 55.1 24 30.0 24 1021.9 24 9999.9 0 9.9 24 7.6 24 14.0 19.0 64.9 46.0 0.07G 999.9 000000 724050 13743 20020427 55.2 24 41.2 24 1026.3 24 9999.9 0 9.9 24 6.0 24 12.0 999.9 64.9 44.1 0.00G 999.9 000000 724050 13743 20020428 61.6 24 58.5 24 1013.0 21 9999.9 0 5.9 24 6.8 24 17.1 25.1 75.0 44.1 0.96G 999.9 110010 724050 13743 20020429 60.0 24 46.4 24 1006.1 24 9999.9 0 9.9 24 13.2 24 20.0 29.9 70.0* 51.8* 0.60G 999.9 000000 724050 13743 20020430 55.9 24 39.6 24 1013.4 24 9999.9 0 9.9 24 10.1 24 18.1 23.9 71.1 45.0 0.00G 999.9 000000 724050 13743 20020501 62.0 24 44.9 24 1011.5 24 9999.9 0 9.9 24 6.0 24 17.1 999.9 73.9 45.0 0.00G 999.9 000000 724050 13743 20020502 66.4 24 59.7 24 1004.1 22 9999.9 0 7.2 24 9.5 24 18.1 28.9 80.6* 57.2* 0.29G 999.9 110010 724050 13743 20020503 63.7 24 42.5 24 1010.0 24 9999.9 0 9.9 24 14.2 24 21.0 28.0 80.1 55.0 0.47G 999.9 000000 724050 13743 20020504 54.0 24 35.5 24 1024.9 24 9999.9 0 9.9 24 6.5 24 12.0 18.1 70.0 45.0 0.00G 999.9 010000 724050 13743 20020505 56.5 24 48.4 24 1025.8 22 9999.9 0 9.5 24 4.1 24 8.0 999.9 69.1 45.0 0.08G 999.9 110000 724050 13743 20020506 61.9 24 54.9 24 1025.7 24 9999.9 0 9.0 24 8.5 24 14.0 999.9 72.0 50.0 0.00G 999.9 100000 724050 13743 20020507 67.4 24 60.3 24 1017.1 24 9999.9 0 9.9 24 6.8 24 13.0 999.9 75.0 52.0 0.05G 999.9 010000 724050 13743 20020508 69.2 24 61.6 24 1018.5 24 9999.9 0 9.7 24 6.8 24 15.9 999.9 79.0 60.1 0.03G 999.9 000000 724050 13743 20020509 62.2 24 58.7 24 1017.6 21 9999.9 0 5.9 24 6.7 24 12.0 999.9 79.0 59.0 0.02G 999.9 110010 724050 13743 20020510 69.0 24 58.9 24 1019.0 23 9999.9 0 6.6 24 7.0 24 14.0 18.1 78.1 59.0 0.05G 999.9 100000 724050 13743 20020511 64.2 24 40.0 24 1028.8 24 9999.9 0 9.9 24 7.3 24 10.1 999.9 78.1 53.1 0.01G 999.9 000000 724050 13743 20020512 69.3 24 56.0 24 1022.7 24 9999.9 0 9.8 24 10.9 24 17.1 19.0 84.9* 60.1* 0.00G 999.9 000000 724050 13743 20020513 75.0 24 68.6 24 1007.7 22 9999.9 0 8.0 24 10.4 24 21.0 27.0 84.9 59.0 0.00G 999.9 110010 724050 13743 20020514 60.6 24 43.5 24 1005.9 23 9999.9 0 9.9 24 15.5 24 22.9 33.0 82.9 51.1 0.00G 999.9 000010 724050 13743 20020515 59.8 24 40.2 24 1017.4 24 9999.9 0 10.0 24 10.6 24 18.1 27.0 73.0 45.0 0.00G 999.9 000000 724050 13743 20020516 65.6 24 48.7 24 1019.7 24 9999.9 0 9.9 24 7.9 24 18.1 21.0 82.0 45.0 0.00G 999.9 000000 724050 13743 20020517 73.1 24 58.0 24 1012.6 23 9999.9 0 9.6 24 9.9 24 12.0 18.1 82.9 51.1 0.00G 999.9 110000 724050 13743 20020518 59.1 24 54.7 24 1008.0 20 9999.9 0 7.0 24 12.1 24 20.0 26.0 66.9* 51.8* 0.88G 999.9 110010 724050 13743 20020519 52.3 24 37.9 24 1020.3 24 9999.9 0 9.9 24 9.3 24 13.0 20.0 64.9 44.1 0.13G 999.9 000000 724050 13743 20020520 52.8 24 33.1 24 1022.7 24 9999.9 0 9.9 24 8.9 24 13.0 18.1 62.1 42.1 0.00G 999.9 000000 724050 13743 20020521 51.3 24 31.1 24 1025.6 24 9999.9 0 9.9 24 8.6 24 14.0 20.0 62.1 42.1 0.00G 999.9 000000 724050 13743 20020522 54.8 24 33.0 24 1028.2 24 9999.9 0 9.9 24 6.3 24 11.1 999.9 66.9 42.1 0.00G 999.9 000000 724050 13743 20020523 61.1 24 43.1 24 1023.5 24 9999.9 0 9.9 24 6.1 24 8.9 999.9 76.8 42.1 0.00G 999.9 000000 724050 13743 20020524 69.5 24 51.7 24 1015.2 24 9999.9 0 10.0 24 7.3 24 13.0 18.1 84.9* 55.4* 0.00I 999.9 000000 724050 13743 20020525 71.6 24 60.7 24 1018.3 23 9999.9 0 9.5 24 8.3 24 21.0 25.1 86.0 55.6 0.00G 999.9 000000 724050 13743 20020526 69.2 24 62.4 24 1019.5 23 9999.9 0 6.5 24 5.4 24 12.0 999.9 84.0* 60.8* 0.00G 999.9 110010 724050 13743 20020527 73.6 24 64.7 24 1020.3 21 9999.9 0 8.7 24 5.7 24 13.0 999.9 84.0 61.0 0.00G 999.9 010010 724050 13743 20020528 72.4 23 64.3 23 1020.1 23 9999.9 0 9.0 23 5.5 23 10.1 999.9 84.0 64.9 0.23G 999.9 110000 724050 13743 20020529 73.3 24 64.3 24 1019.2 22 9999.9 0 7.5 24 5.5 24 8.9 999.9 82.9* 64.4* 0.00G 999.9 100000 724050 13743 20020530 73.7 24 64.0 24 1015.5 24 9999.9 0 8.0 24 5.5 24 8.9 999.9 84.0* 64.4* 0.00G 999.9 100000 724050 13743 20020531 77.8 24 66.8 24 1009.1 24 9999.9 0 9.9 24 9.8 24 15.0 20.0 91.0 64.9 0.00G 999.9 010000 724050 13743 20020601 82.0 24 63.4 24 1006.3 24 9999.9 0 9.8 24 7.6 24 15.0 20.0 91.9 66.9 0.01G 999.9 000000 724050 13743 20020602 79.5 24 56.3 24 1005.3 24 9999.9 0 9.8 24 9.4 24 15.9 25.1 91.9 70.0 0.00G 999.9 000000 724050 13743 20020603 71.6 24 43.1 24 1015.1 24 9999.9 0 9.9 24 7.6 24 12.0 15.9 88.0 60.1 0.00G 999.9 000000 724050 13743 20020604 74.5 24 58.5 24 1018.3 24 9999.9 0 9.9 24 8.4 24 13.0 999.9 84.9 60.1 0.00G 999.9 010000 724050 13743 20020605 79.5 24 69.1 24 1015.7 24 9999.9 0 9.0 24 8.0 24 11.1 999.9 91.0 66.9 0.00G 999.9 000000 724050 13743 20020606 79.5 24 69.1 24 1011.1 21 9999.9 0 8.8 24 7.0 24 30.9 42.0 91.9* 66.2* 0.00G 999.9 010010 724050 13743 20020607 66.9 24 57.2 24 1017.5 24 9999.9 0 9.9 24 12.4 24 20.0 25.1 72.0* 62.6* 0.38G 999.9 010000 724050 13743 20020608 66.2 24 54.7 24 1025.0 23 9999.9 0 10.0 24 5.0 24 8.9 15.0 75.9 57.9 0.00G 999.9 000000 724050 13743 20020609 70.0 24 55.4 24 1022.2 24 9999.9 0 9.9 24 8.7 24 12.0 999.9 84.0 57.0 0.00G 999.9 000000 724050 13743 20020610 78.7 24 62.0 24 1017.7 24 9999.9 0 8.7 24 6.1 24 12.0 14.0 93.0 57.0 0.00G 999.9 000000 724050 13743 20020611 80.8 24 64.9 24 1015.6 24 9999.9 0 6.5 24 7.2 24 15.0 18.1 93.9 66.9 0.00G 999.9 000000 724050 13743 20020612 82.7 24 62.7 24 1010.0 24 9999.9 0 8.6 24 9.7 24 19.0 26.0 95.0 71.1 0.00G 999.9 000000 724050 13743 20020613 76.1 24 68.5 24 1009.1 21 9999.9 0 6.6 24 5.4 24 13.0 999.9 82.9* 66.9* 0.00G 999.9 110000 724050 13743 20020614 66.4 24 64.6 24 1007.0 20 9999.9 0 4.8 24 5.9 24 10.1 999.9 80.1 63.0 1.93G 999.9 110000 724050 13743 20020615 69.8 24 60.0 24 1005.2 23 9999.9 0 6.8 24 8.4 24 17.1 25.1 80.1* 62.6* 0.43G 999.9 110000 724050 13743 20020616 70.1 24 54.0 24 1008.4 24 9999.9 0 9.9 24 7.9 24 15.9 19.0 82.0 60.1 0.32G 999.9 000000 724050 13743 20020617 73.0 24 54.2 24 1011.7 24 9999.9 0 9.9 24 5.2 24 11.1 999.9 82.0 60.1 0.00G 999.9 000000 724050 13743 20020618 73.4 24 55.6 24 1018.1 24 9999.9 0 9.9 24 5.3 24 12.0 999.9 84.0 63.0 0.00G 999.9 000010 724050 13743 20020619 70.1 24 61.3 24 1025.6 21 9999.9 0 8.7 24 5.2 24 10.1 999.9 84.0 63.0 0.36G 999.9 110010 724050 13743 20020620 74.1 24 63.7 24 1030.1 24 9999.9 0 8.5 24 4.9 24 8.9 999.9 82.9 64.0 0.27G 999.9 100000 724050 13743 20020621 74.8 24 58.1 24 1030.5 24 9999.9 0 9.8 24 3.9 24 10.1 999.9 84.0 64.9 0.00G 999.9 000000 724050 13743 20020622 75.2 24 58.7 24 1027.8 24 9999.9 0 9.9 24 5.2 24 8.9 999.9 84.0 64.9 0.00G 999.9 000000 724050 13743 20020623 76.7 24 64.3 24 1024.2 24 9999.9 0 9.9 24 7.7 24 13.0 999.9 87.1 64.9 0.00G 999.9 000000 724050 13743 20020624 81.9 24 67.4 24 1019.6 24 9999.9 0 8.7 24 5.3 24 10.1 999.9 93.0 66.0 0.00G 999.9 000000 724050 13743 20020625 84.1 24 68.4 24 1018.6 24 9999.9 0 5.4 24 4.8 24 10.1 999.9 93.0 71.1 0.00G 999.9 000000 724050 13743 20020626 84.3 24 71.4 24 1016.0 24 9999.9 0 8.5 24 8.6 24 12.0 999.9 93.9 73.0 0.00G 999.9 010000 724050 13743 20020627 80.8 24 71.6 24 1011.7 23 9999.9 0 8.9 24 9.2 24 22.9 33.0 93.9 73.9 0.04G 999.9 111110 724050 13743 20020628 75.4 24 68.0 24 1011.1 23 9999.9 0 9.5 24 6.1 24 21.0 27.0 93.0 71.1 0.20G 999.9 010010 724050 13743 20020629 77.3 24 62.9 24 1018.7 24 9999.9 0 8.5 24 5.7 24 12.0 999.9 87.1 69.1 0.20G 999.9 100000 724050 13743 20020630 78.4 24 62.0 24 1022.4 24 9999.9 0 9.9 24 4.2 24 8.9 999.9 87.1 69.1 0.00G 999.9 000000 724050 13743 20020701 80.3 24 64.8 24 1020.9 24 1018.8 4 9.7 24 8.0 24 12.0 999.9 89.1 71.1 0.00G 999.9 000000 724050 13743 20020702 82.8 24 66.6 24 1017.9 24 9999.9 0 7.5 24 6.5 24 10.1 999.9 93.9 71.1 0.00G 999.9 000000 724050 13743 20020703 87.6 24 71.4 24 1014.2 24 9999.9 0 5.2 24 6.0 24 10.1 14.0 98.1 73.0 0.00G 999.9 000000 724050 13743 20020704 89.5 24 69.4 24 1013.4 24 9999.9 0 9.4 24 5.9 24 10.1 999.9 99.0 79.0 0.00G 999.9 000000 724050 13743 20020705 88.5 24 61.1 24 1014.4 24 9999.9 0 8.5 24 9.1 24 14.0 20.0 99.0 80.1 0.00G 999.9 000000 724050 13743 20020706 78.6 24 52.8 24 1018.9 24 9999.9 0 9.9 24 10.3 24 14.0 18.1 93.0 68.0 0.00G 999.9 000000 724050 13743 20020707 77.1 24 54.6 24 1021.4 24 9999.9 0 8.1 24 5.8 24 11.1 999.9 88.0 66.9 0.00G 999.9 000000 724050 13743 20020708 78.1 24 60.8 24 1022.2 24 9999.9 0 5.6 24 4.3 24 11.1 15.9 91.9 66.0 0.00G 999.9 000000 724050 13743 20020709 85.5 24 62.8 24 1016.4 24 9999.9 0 6.4 24 9.3 24 15.0 22.0 97.9* 75.9* 0.00G 999.9 000000 724050 13743 20020710 78.5 24 69.0 24 1014.6 24 9999.9 0 6.3 24 6.1 24 18.1 34.0 97.9 73.9 0.08G 999.9 110010 724050 13743 20020711 74.2 24 47.2 24 1018.8 24 9999.9 0 9.6 24 11.8 24 15.9 21.0 84.9 64.9 0.05G 999.9 000000 724050 13743 20020712 73.1 24 48.3 24 1019.2 24 9999.9 0 9.9 24 3.9 24 10.1 999.9 84.9 60.1 0.00G 999.9 000000 724050 13743 20020713 74.4 24 56.0 24 1017.0 24 9999.9 0 9.9 24 6.9 24 11.1 999.9 84.9 60.1 0.00G 999.9 000000 724050 13743 20020714 72.0 24 62.7 24 1016.6 22 9999.9 0 7.7 24 5.4 24 8.9 999.9 82.0 64.9 0.86G 999.9 110000 724050 13743 20020715 77.1 24 66.3 24 1015.8 23 9999.9 0 8.8 24 4.8 24 11.1 999.9 90.0* 66.2* 0.50G 999.9 100000 724050 13743 20020716 83.6 24 61.9 24 1014.8 24 1012.4 4 8.8 24 7.9 24 15.9 999.9 91.9* 75.9* 0.01G 999.9 000000 724050 13743 20020717 82.5 24 61.1 24 1016.6 24 1014.2 4 9.9 24 5.1 24 10.1 999.9 93.9 70.0 0.00G 999.9 000000 724050 13743 20020718 85.6 24 67.2 24 1013.7 24 9999.9 0 7.5 24 5.4 24 8.9 999.9 93.9 70.0 0.00G 999.9 000000 724050 13743 20020719 84.3 24 71.4 24 1011.2 24 9999.9 0 5.3 24 6.2 24 11.1 999.9 91.9 75.9 0.00G 999.9 110000 724050 13743 20020720 81.7 24 69.4 24 1013.4 24 9999.9 0 6.1 24 6.6 24 11.1 999.9 91.9 73.9 0.00G 999.9 110000 724050 13743 20020721 82.1 24 70.9 24 1018.1 24 9999.9 0 5.8 24 6.2 24 11.1 999.9 91.0 73.9 0.00G 999.9 100000 724050 13743 20020722 83.1 24 71.2 24 1018.7 24 9999.9 0 7.4 24 9.8 24 14.0 19.0 97.0 73.0 0.00G 999.9 100000 724050 13743 20020723 86.8 24 72.2 24 1016.7 24 9999.9 0 9.3 24 11.6 24 15.9 19.0 97.0 73.0 0.00G 999.9 010010 724050 13743 20020724 77.3 24 70.9 24 1019.3 24 9999.9 0 9.8 24 8.0 24 14.0 999.9 97.0 72.0 0.00G 999.9 010000 724050 13743 20020725 74.1 24 68.9 24 1021.1 24 9999.9 0 9.6 24 9.6 24 14.0 999.9 84.9 71.1 0.01G 999.9 000000 724050 13743 20020726 70.2 24 64.8 24 1020.8 24 9999.9 0 9.1 24 7.2 24 13.0 999.9 75.9* 66.2* 0.13G 999.9 110000 724050 13743 20020727 74.3 24 71.9 24 1016.4 24 9999.9 0 6.7 24 6.0 24 11.1 999.9 82.9 66.9 0.56G 999.9 100000 724050 13743 20020728 82.7 24 75.2 24 1014.3 24 9999.9 0 9.1 24 6.3 24 19.0 22.9 95.0 70.0 0.03G 999.9 100000 724050 13743 20020729 87.8 24 76.1 24 1012.6 24 9999.9 0 9.1 24 7.6 24 13.0 15.9 97.0 75.0 0.00G 999.9 000000 724050 13743 20020730 87.3 24 72.8 24 1012.1 24 9999.9 0 9.3 24 9.0 24 15.0 23.9 97.0 78.1 0.00G 999.9 000000 724050 13743 20020731 86.5 24 69.6 24 1013.8 24 9999.9 0 9.3 24 7.5 24 11.1 999.9 95.0 77.0 0.00G 999.9 000000 724050 13743 20020801 86.8 24 71.0 24 1013.2 24 9999.9 0 9.7 24 5.5 24 15.0 999.9 99.0 75.9 0.00G 999.9 010010 724050 13743 20020802 85.5 24 72.0 24 1014.9 24 9999.9 0 9.3 24 4.5 24 11.1 999.9 100.0 75.0 0.00G 999.9 010010 724050 13743 20020803 84.7 24 74.9 24 1019.2 24 9999.9 0 8.7 24 8.4 24 15.0 19.0 100.0 75.0 0.00G 999.9 010010 724050 13743 20020804 83.4 24 73.1 24 1021.4 24 9999.9 0 8.9 24 6.1 24 13.0 999.9 97.0 75.0 0.00G 999.9 000000 724050 13743 20020805 84.8 24 73.0 24 1017.0 24 9999.9 0 9.1 24 7.9 24 12.0 999.9 97.0 75.0 0.00G 999.9 110000 724050 13743 20020806 78.2 24 65.1 24 1013.6 24 9999.9 0 7.0 24 11.5 24 20.0 26.0 84.0* 73.4* 0.09G 999.9 110000 724050 13743 20020807 73.2 24 51.6 24 1018.8 24 9999.9 0 9.9 24 11.6 24 15.9 22.9 96.1 62.1 0.01G 999.9 000000 724050 13743 20020808 73.6 24 53.5 24 1020.4 24 9999.9 0 9.9 24 8.1 24 13.0 16.9 84.9 62.1 0.00G 999.9 000000 724050 13743 20020809 76.2 24 55.7 24 1022.2 24 9999.9 0 9.9 24 5.4 24 8.9 14.0 87.1 62.1 0.00G 999.9 000000 724050 13743 20020810 77.9 24 59.5 24 1022.2 24 9999.9 0 9.9 24 7.1 24 11.1 999.9 90.0 64.9 0.00G 999.9 000000 724050 13743 20020811 79.9 24 65.1 24 1019.8 24 9999.9 0 9.8 24 7.0 24 13.0 999.9 93.9 64.9 0.00G 999.9 000000 724050 13743 20020812 83.6 24 68.4 24 1017.8 24 9999.9 0 9.0 24 5.8 24 10.1 999.9 97.0 68.0 0.00G 999.9 000000 724050 13743 20020813 87.0 24 71.1 24 1018.2 24 9999.9 0 6.1 24 4.4 24 10.1 999.9 100.0 73.0 0.00G 999.9 000000 724050 13743 20020814 88.2 24 68.4 24 1017.7 24 9999.9 0 7.0 24 9.6 24 14.0 15.9 100.0 75.9 0.00G 999.9 000000 724050 13743 20020815 85.1 24 70.6 24 1019.2 24 9999.9 0 9.9 24 9.6 24 13.0 999.9 99.0 77.0 0.00G 999.9 000000 724050 13743 20020816 84.9 24 70.2 24 1020.6 24 9999.9 0 9.8 24 8.2 24 14.0 18.1 96.1 75.9 0.00G 999.9 000000 724050 13743 20020817 86.4 24 70.7 24 1018.3 24 9999.9 0 9.9 24 6.2 24 10.1 999.9 96.1 75.9 0.00G 999.9 010000 724050 13743 20020818 87.2 24 70.9 24 1013.5 24 9999.9 0 9.7 24 6.1 24 8.9 999.9 98.1 79.0 0.00G 999.9 010000 724050 13743 20020819 87.5 24 69.8 24 1012.7 24 9999.9 0 9.9 24 6.7 24 10.1 999.9 98.1 78.1 0.00G 999.9 000000 724050 13743 20020820 85.3 24 69.2 24 1013.8 24 9999.9 0 9.5 24 9.2 24 14.0 21.0 97.0 78.1 0.00G 999.9 000000 724050 13743 20020821 81.8 24 66.9 24 1022.2 24 9999.9 0 9.7 24 7.0 24 12.0 16.9 93.9 73.9 0.00G 999.9 000000 724050 13743 20020822 81.6 24 67.9 24 1021.7 24 9999.9 0 9.4 24 9.0 24 13.0 999.9 93.9 73.0 0.00G 999.9 000000 724050 13743 20020823 85.6 24 73.1 24 1014.6 24 9999.9 0 8.1 24 7.7 24 12.0 15.9 93.9 73.0 0.00G 999.9 010000 724050 13743 20020824 80.2 24 74.6 24 1011.2 24 9999.9 0 6.0 24 7.3 24 14.0 999.9 91.0 73.0 0.00G 999.9 110010 724050 13743 20020825 80.7 24 66.6 24 1011.5 24 9999.9 0 9.5 24 7.7 24 12.0 999.9 90.0 72.0 0.07G 999.9 100000 724050 13743 20020826 77.9 24 65.7 24 1014.9 24 9999.9 0 9.4 24 3.9 24 8.0 999.9 90.0 72.0 0.00G 999.9 000000 724050 13743 20020827 78.6 24 66.3 24 1017.3 24 9999.9 0 9.2 24 3.4 24 7.0 999.9 84.9 71.1 0.00G 999.9 000000 724050 13743 20020828 71.1 24 67.3 24 1021.5 24 9999.9 0 7.1 24 7.9 24 17.1 20.0 79.0* 64.4* 0.30G 999.9 110000 724050 13743 20020829 64.3 24 61.4 24 1020.9 24 9999.9 0 9.0 24 10.9 24 18.1 19.0 70.0* 60.8* 1.46G 999.9 010000 724050 13743 20020830 67.9 24 60.5 24 1023.2 24 9999.9 0 9.4 24 6.8 24 10.1 999.9 73.9 61.0 0.09G 999.9 000000 724050 13743 20020831 69.4 24 62.1 24 1027.8 24 9999.9 0 9.0 24 7.3 24 12.0 20.0 75.9 62.1 0.00G 999.9 110000 724050 13743 20020901 65.2 24 63.4 24 1026.1 24 9999.9 0 7.1 24 12.1 24 17.1 999.9 75.9 61.0 0.37G 999.9 110000 724050 13743 20020902 68.4 24 63.1 24 1020.4 24 9999.9 0 9.0 24 8.9 24 13.0 999.9 77.0 61.0 0.49G 999.9 100000 724050 13743 20020903 72.9 24 66.7 24 1017.3 24 9999.9 0 8.2 24 4.9 24 11.1 999.9 88.0 64.0 0.00G 999.9 100000 724050 13743 20020904 81.0 24 69.5 24 1014.9 24 9999.9 0 7.8 24 7.1 24 13.0 20.0 91.9 64.0 0.00G 999.9 100000 724050 13743 20020905 76.4 24 59.0 24 1017.4 24 9999.9 0 9.9 24 7.8 24 12.0 999.9 91.9 64.9 0.00G 999.9 000000 724050 13743 20020906 73.1 24 58.6 24 1020.6 24 9999.9 0 9.9 24 6.6 24 14.0 999.9 84.9 64.9 0.00G 999.9 000000 724050 13743 20020907 72.9 24 60.8 24 1024.4 24 9999.9 0 9.9 24 3.6 24 8.0 999.9 82.9 63.0 0.00G 999.9 000000 724050 13743 20020908 73.2 24 62.9 24 1025.5 24 9999.9 0 9.9 24 3.3 24 8.0 999.9 84.0 63.0 0.00G 999.9 000000 724050 13743 20020909 74.7 24 58.3 24 1020.7 24 9999.9 0 9.9 24 4.2 24 10.1 999.9 90.0 60.1 0.00G 999.9 000000 724050 13743 20020910 78.2 24 64.3 24 1012.1 24 9999.9 0 9.9 24 5.6 24 13.0 999.9 90.0 60.1 0.00G 999.9 010000 724050 13743 20020911 78.7 24 59.8 24 1004.0 24 9999.9 0 9.6 24 10.8 24 26.0 33.0 82.9* 73.0* 0.00G 999.9 000000 724050 13743 20020912 69.4 24 48.1 24 1015.7 24 9999.9 0 9.9 24 7.4 24 14.0 15.9 81.0 59.0 0.00G 999.9 000000 724050 13743 20020913 70.3 24 56.4 24 1019.5 24 9999.9 0 10.0 24 7.1 24 13.0 999.9 84.0 57.9 0.00G 999.9 000000 724050 13743 20020914 74.3 24 66.1 24 1020.3 24 9999.9 0 9.0 24 9.9 24 16.9 33.0 84.0 57.9 0.00G 999.9 000000 724050 13743 20020915 74.1 24 71.4 24 1020.2 24 9999.9 0 7.0 24 10.1 24 17.1 999.9 82.9 66.9 0.16G 999.9 110000 724050 13743 20020916 75.3 24 70.1 24 1016.1 24 9999.9 0 8.5 24 7.9 24 18.1 26.0 84.0 71.1 0.18G 999.9 110000 724050 13743 20020917 74.3 24 63.2 24 1016.4 24 9999.9 0 8.2 24 5.3 24 10.1 999.9 84.0 64.9 0.01G 999.9 100000 724050 13743 20020918 74.0 24 63.7 24 1017.1 24 9999.9 0 6.3 24 4.0 24 12.0 999.9 84.0 64.9 0.00G 999.9 100000 724050 13743 20020919 73.9 24 64.3 24 1017.7 24 9999.9 0 7.8 24 8.0 24 11.1 999.9 84.0 64.9 0.00G 999.9 100000 724050 13743 20020920 75.1 24 66.4 24 1017.0 24 9999.9 0 9.5 24 8.5 24 11.1 999.9 84.9 68.0 0.00G 999.9 000000 724050 13743 20020921 77.3 24 68.0 24 1014.9 24 9999.9 0 9.9 24 10.2 24 15.9 999.9 88.0 68.0 0.00G 999.9 000000 724050 13743 20020922 78.0 24 67.8 24 1015.5 24 9999.9 0 9.9 24 9.1 24 14.0 999.9 88.0 69.1 0.00G 999.9 000000 724050 13743 20020923 71.7 24 60.0 24 1017.5 24 9999.9 0 9.7 24 10.7 24 15.9 19.0 77.0* 64.4* 0.04G 999.9 010000 724050 13743 20020924 66.6 24 48.3 24 1023.0 24 9999.9 0 9.9 24 6.6 24 11.1 999.9 80.1 55.0 0.03G 999.9 000000 724050 13743 20020925 67.5 24 53.4 24 1025.2 24 9999.9 0 9.9 24 6.8 24 14.0 15.9 80.1 55.0 0.00G 999.9 000000 724050 13743 20020926 65.9 24 60.0 24 1020.9 24 9999.9 0 7.6 24 9.5 24 14.0 999.9 77.0 59.0 0.00G 999.9 110000 724050 13743 20020927 67.7 24 65.1 24 1009.9 24 9999.9 0 5.6 24 9.3 24 22.0 28.0 82.9 60.1 0.75G 999.9 110000 724050 13743 20020928 73.4 24 61.5 24 1012.3 24 9999.9 0 9.8 24 11.5 24 19.0 22.9 84.9 60.1 0.12G 999.9 010000 724050 13743 20020929 67.5 24 54.7 24 1022.8 23 9999.9 0 9.3 24 5.5 24 8.9 999.9 76.6 60.1 0.01G 999.9 000000 724050 13743 20020930 69.4 24 60.2 24 1024.7 24 9999.9 0 10.0 24 3.2 24 8.9 999.9 75.9* 64.4* 0.00G 999.9 000000 724050 13743 20021001 70.5 24 62.8 24 1022.2 24 9999.9 0 9.6 24 6.8 24 12.0 999.9 82.0 62.1 0.00G 999.9 100000 724050 13743 20021002 74.8 24 67.0 24 1019.0 24 9999.9 0 6.7 24 5.0 24 10.1 999.9 87.1 62.1 0.00G 999.9 100000 724050 13743 20021003 77.2 24 70.3 24 1016.3 24 9999.9 0 5.7 24 4.0 24 8.9 999.9 88.0 64.9 0.00G 999.9 100000 724050 13743 20021004 77.1 24 71.7 24 1017.3 24 9999.9 0 4.7 24 6.8 24 15.0 999.9 88.0 68.0 0.00G 999.9 100000 724050 13743 20021005 79.4 24 68.5 24 1013.2 24 9999.9 0 7.7 24 9.9 24 17.1 20.0 90.0 72.0 0.00G 999.9 100000 724050 13743 20021006 65.9 24 52.5 24 1022.9 24 9999.9 0 9.9 24 10.1 24 17.1 22.9 73.0* 57.9* 0.00G 999.9 000000 724050 13743 20021007 70.6 24 59.7 24 1017.2 24 9999.9 0 9.8 24 9.3 24 15.0 18.1 79.0 57.9 0.00G 999.9 000000 724050 13743 20021008 58.6 24 41.6 24 1023.6 24 9999.9 0 9.9 24 9.3 24 15.9 999.9 79.0 50.0 0.00G 999.9 000000 724050 13743 20021009 58.7 24 50.4 24 1025.5 24 9999.9 0 10.0 24 3.6 24 7.0 999.9 64.9 50.0 0.00G 999.9 000000 724050 13743 20021010 63.0 24 61.5 24 1024.5 24 9999.9 0 6.8 24 3.6 24 8.0 999.9 66.0 52.0 0.18G 999.9 110000 724050 13743 20021011 66.6 24 66.2 24 1020.9 24 9999.9 0 5.2 24 3.4 24 8.0 999.9 71.1 61.0 0.72G 999.9 110000 724050 13743 20021012 67.8 24 65.4 24 1018.9 24 9999.9 0 7.8 24 7.0 24 10.1 999.9 72.0 64.0 0.46G 999.9 110000 724050 13743 20021013 64.8 24 62.5 24 1020.0 24 9999.9 0 9.4 24 4.6 24 11.1 999.9 72.0 62.1 0.01G 999.9 110000 724050 13743 20021014 55.7 24 43.4 24 1025.5 24 9999.9 0 9.9 24 9.9 24 18.1 22.0 68.0 48.0 0.01G 999.9 000000 724050 13743 20021015 51.5 24 44.8 24 1022.1 24 9999.9 0 9.9 24 5.9 24 11.1 999.9 60.1 44.1 0.00G 999.9 010000 724050 13743 20021016 56.9 24 55.9 24 1005.9 24 9999.9 0 5.0 24 12.5 24 17.1 22.9 60.1 44.1 0.81G 999.9 110000 724050 13743 20021017 55.0 24 49.5 24 1011.7 24 9999.9 0 9.8 24 4.3 24 12.0 18.1 60.8* 50.0* 0.66G 999.9 010000 724050 13743 20021018 49.7 24 41.3 24 1020.4 24 9999.9 0 9.9 24 5.5 24 11.1 999.9 61.0 39.0 0.01G 999.9 000000 724050 13743 20021019 55.3 24 48.8 24 1018.4 24 9999.9 0 10.0 24 10.9 24 15.9 22.0 64.9 39.0 0.00G 999.9 000000 724050 13743 20021020 58.0 24 51.7 24 1015.4 24 9999.9 0 9.9 24 4.8 24 11.1 999.9 64.9 48.9 0.00G 999.9 010000 724050 13743 20021021 54.1 24 45.7 24 1019.3 24 9999.9 0 9.9 24 5.8 24 11.1 999.9 61.0 50.0 0.00G 999.9 000000 724050 13743 20021022 51.1 24 45.0 24 1022.5 24 9999.9 0 9.9 24 4.6 24 8.0 999.9 61.0 43.0 0.00G 999.9 000000 724050 13743 20021023 53.9 24 48.2 24 1023.9 24 9999.9 0 8.2 24 5.8 24 13.0 999.9 64.4* 46.0* 0.00G 999.9 100000 724050 13743 20021024 50.2 24 40.8 24 1028.7 24 9999.9 0 9.9 24 9.2 24 12.0 999.9 64.0 45.0 0.00G 999.9 000000 724050 13743 20021025 47.5 24 44.8 24 1027.2 24 9999.9 0 8.1 24 8.6 24 13.0 999.9 54.0* 42.8* 0.00G 999.9 110000 724050 13743 20021026 57.2 24 54.6 24 1015.2 24 9999.9 0 7.1 24 5.8 24 14.0 999.9 68.0 43.0 0.60G 999.9 110000 724050 13743 20021027 57.6 24 49.4 24 1019.2 24 9999.9 0 9.6 24 5.4 24 11.1 999.9 68.0 46.9 0.32G 999.9 100000 724050 13743 20021028 52.2 24 45.2 24 1020.6 24 9999.9 0 9.3 24 4.8 24 8.0 999.9 64.9 46.9 0.00G 999.9 010000 724050 13743 20021029 46.3 24 40.8 24 1019.7 24 9999.9 0 7.6 24 10.4 24 17.1 999.9 53.1 42.1 0.07G 999.9 110000 724050 13743 20021030 40.3 24 40.3 24 1014.3 24 9999.9 0 4.8 24 12.0 24 15.9 999.9 50.0 39.0 0.82G 999.9 110000 724050 13743 20021031 41.5 24 38.2 24 1017.2 24 9999.9 0 7.2 24 9.5 24 14.0 999.9 46.9 37.9 0.33G 999.9 110000 724050 13743 20021101 44.0 24 36.4 24 1018.7 24 9999.9 0 9.4 24 7.4 24 15.9 23.9 55.9 34.0 0.01G 999.9 000000 724050 13743 20021102 42.8 24 27.0 24 1018.6 24 9999.9 0 9.9 24 9.8 24 14.0 18.1 55.9 34.0 0.00G 999.9 000000 724050 13743 20021103 44.1 24 31.6 24 1020.7 24 9999.9 0 10.0 24 4.6 24 10.1 15.0 53.1 35.1 0.00G 999.9 000000 724050 13743 20021104 46.9 24 41.5 24 1018.7 24 9999.9 0 9.9 24 6.6 24 10.1 999.9 55.9 35.1 0.00G 999.9 010000 724050 13743 20021105 46.2 24 40.9 24 1021.4 24 9999.9 0 9.0 24 6.4 24 12.0 999.9 55.9 39.0 0.00G 999.9 110000 724050 13743 20021106 48.5 24 45.9 24 1004.2 24 9999.9 0 6.8 24 7.7 24 21.0 26.0 55.0 39.0 0.82G 999.9 110000 724050 13743 20021107 48.1 24 36.8 24 1015.9 24 9999.9 0 9.9 24 11.0 24 15.9 23.9 55.0 46.0 0.13G 999.9 000000 724050 13743 20021108 46.0 24 40.9 24 1021.6 24 9999.9 0 9.2 24 7.7 24 13.0 999.9 62.1 37.0 0.00G 999.9 000000 724050 13743 20021109 52.9 24 47.8 24 1018.0 24 9999.9 0 9.9 24 7.7 24 12.0 999.9 64.9 37.0 0.00G 999.9 000000 724050 13743 20021110 61.3 24 57.6 24 1011.9 24 9999.9 0 10.0 24 11.7 24 18.1 26.0 73.0 44.1 0.00G 999.9 000000 724050 13743 20021111 65.8 24 64.1 24 1008.1 24 9999.9 0 8.8 24 10.2 24 15.9 999.9 73.0 54.0 0.15G 999.9 110010 724050 13743 20021112 56.9 24 55.5 24 1017.4 24 9999.9 0 7.2 21 7.5 24 19.0 26.0 70.0 51.1 0.46G 999.9 110000 724050 13743 20021113 49.8 24 44.7 24 1017.5 24 9999.9 0 9.9 24 10.0 24 15.0 21.0 60.1 46.0 0.66G 999.9 010000 724050 13743 20021114 46.9 24 40.1 24 1019.8 24 9999.9 0 9.7 24 6.5 24 12.0 999.9 61.0 37.0 0.00G 999.9 000000 724050 13743 20021115 50.9 24 43.4 24 1017.4 24 9999.9 0 9.9 24 7.2 24 10.1 999.9 61.0 37.0 0.00G 999.9 000000 724050 13743 20021116 51.2 24 49.3 24 1016.1 24 9999.9 0 5.9 24 6.0 24 13.0 999.9 60.1 44.1 0.52G 999.9 110000 724050 13743 20021117 45.7 24 45.1 24 1006.6 24 9999.9 0 6.5 24 11.1 24 15.0 999.9 52.0 41.0 1.27G 999.9 110000 724050 13743 20021118 43.7 24 32.3 24 1016.5 24 9999.9 0 9.8 24 11.4 24 20.0 26.0 50.0* 39.2* 0.38G 999.9 010000 724050 13743 20021119 43.0 24 34.7 24 1025.8 24 9999.9 0 9.9 24 6.3 24 13.0 999.9 61.0 35.1 0.00G 999.9 010000 724050 13743 20021120 46.0 24 41.2 24 1024.3 24 9999.9 0 8.2 24 3.7 24 8.0 999.9 59.0 35.1 0.00G 999.9 100000 724050 13743 20021121 46.7 24 44.6 24 1017.2 24 9999.9 0 6.2 24 3.1 24 8.0 999.9 59.0 36.0 0.00G 999.9 100000 724050 13743 20021122 49.4 24 45.3 24 1003.7 24 9999.9 0 4.8 24 6.1 24 16.9 23.9 52.0 41.0 0.01G 999.9 110000 724050 13743 20021123 42.1 24 25.6 24 1011.3 24 9999.9 0 9.9 24 13.5 24 18.1 30.9 46.9* 37.4* 0.00G 999.9 000000 724050 13743 20021124 44.4 24 33.1 24 1019.0 24 9999.9 0 9.9 24 4.5 24 7.0 999.9 57.9 34.0 0.00G 999.9 000000 724050 13743 20021125 45.9 24 40.5 24 1019.9 24 9999.9 0 8.9 24 2.8 24 8.0 999.9 59.0 34.0 0.00G 999.9 000000 724050 13743 20021126 45.5 24 37.8 24 1023.8 24 9999.9 0 9.9 24 8.9 24 15.9 999.9 59.0 36.0 0.00G 999.9 000000 724050 13743 20021127 40.2 24 33.1 24 1019.9 24 9999.9 0 9.5 24 9.9 24 15.9 21.0 48.9 36.0 0.02G 999.9 110000 724050 13743 20021128 33.6 24 20.0 24 1023.9 24 9999.9 0 9.9 24 8.1 24 13.0 999.9 43.0 27.0 0.01G 999.9 000000 724050 13743 20021129 35.0 24 23.0 24 1014.1 24 9999.9 0 9.9 24 8.8 24 15.9 26.0 48.0 27.0 0.00G 999.9 000000 724050 13743 20021130 46.2 24 35.4 24 999.9 24 9999.9 0 9.9 24 9.6 24 15.9 22.0 55.0* 42.1* 0.00G 999.9 010000 724050 13743 20021201 35.5 24 19.5 24 1011.4 24 9999.9 0 10.0 24 13.5 24 20.0 30.9 44.1* 30.2* 0.05G 999.9 000000 724050 13743 20021202 36.0 24 21.6 24 1016.3 24 9999.9 0 9.9 24 7.7 24 15.0 999.9 48.9 27.0 0.00G 999.9 000000 724050 13743 20021203 34.4 24 14.5 24 1022.6 24 9999.9 0 9.9 24 12.9 24 26.0 29.9 48.9 25.0 0.00G 999.9 001000 724050 13743 20021204 25.3 24 10.8 24 1034.4 24 9999.9 0 9.9 24 6.4 24 11.1 999.9 42.1 19.0 0.00G 999.9 000000 724050 13743 20021205 28.5 24 24.3 24 1022.9 24 9999.9 0 4.3 24 8.1 24 13.0 999.9 32.0 19.0 0.24G 5.9 111000 724050 13743 20021206 30.5 24 27.1 24 1021.1 24 9999.9 0 8.6 24 7.2 24 12.0 999.9 34.0* 24.8* 0.35G 5.1 100000 724050 13743 20021207 28.3 24 22.6 24 1025.8 24 9999.9 0 8.0 24 5.6 24 12.0 999.9 37.9 18.0 0.00G 3.9 100000 724050 13743 20021208 35.5 24 26.8 24 1022.4 24 9999.9 0 9.2 24 3.6 24 12.0 999.9 46.0 18.0 0.00G 2.0 000000 724050 13743 20021209 31.8 24 18.3 24 1033.5 24 9999.9 0 9.9 24 8.6 24 17.1 21.0 46.0 25.0 0.00G 2.0 000000 724050 13743 20021210 29.1 24 17.3 24 1028.9 24 9999.9 0 9.9 24 3.3 24 7.0 999.9 36.0 25.0 0.00G 1.2 000000 724050 13743 20021211 33.2 24 27.6 24 1017.6 24 9999.9 0 5.5 24 9.2 24 15.0 19.0 36.0 25.0 0.16G 1.2 110000 724050 13743 20021212 39.8 24 33.8 24 1019.4 24 9999.9 0 9.3 24 8.4 24 14.0 16.9 48.0 32.0 1.20G 1.2 100000 724050 13743 20021213 39.3 24 35.9 24 1020.6 24 9999.9 0 7.5 24 5.5 24 12.0 999.9 48.0 35.1 0.00G 1.2 110000 724050 13743 20021214 41.4 24 38.3 24 998.9 24 9999.9 0 5.8 24 9.7 24 20.0 29.9 46.4* 37.4* 0.54G 999.9 110000 724050 13743 20021215 44.2 24 29.8 24 1010.0 24 9999.9 0 9.9 24 10.7 24 17.1 27.0 51.1 37.9 0.04G 999.9 000000 724050 13743 20021216 43.7 24 27.3 24 1009.3 24 9999.9 0 9.9 24 11.4 24 21.0 32.1 51.1 30.0 0.00G 999.9 010000 724050 13743 20021217 32.6 24 19.3 24 1024.6 24 9999.9 0 9.9 24 7.1 24 12.0 999.9 37.9* 26.6* 0.00G 999.9 000000 724050 13743 20021218 33.0 24 17.8 24 1031.7 24 9999.9 0 9.9 24 4.5 24 8.9 999.9 39.0 27.0 0.00G 999.9 000000 724050 13743 20021219 40.1 24 33.0 24 1024.1 24 9999.9 0 9.9 24 6.6 24 10.1 999.9 48.9 30.0 0.00G 999.9 000000 724050 13743 20021220 51.6 24 47.2 24 1004.0 24 9999.9 0 5.3 24 7.8 24 17.1 22.0 61.0 36.0 0.11G 999.9 110000 724050 13743 20021221 43.8 24 27.6 24 1007.4 24 9999.9 0 9.9 24 9.2 24 15.9 22.0 61.0 36.0 0.89G 999.9 000000 724050 13743 20021222 46.1 24 26.8 24 1010.1 24 9999.9 0 9.9 24 7.0 24 13.0 19.0 57.0 36.0 0.00G 999.9 000000 724050 13743 20021223 46.8 24 28.0 24 1014.7 24 9999.9 0 9.9 24 8.5 24 14.0 19.0 57.0 36.0 0.00G 999.9 000000 724050 13743 20021224 39.5 24 27.2 24 1017.1 24 9999.9 0 9.0 24 6.9 24 12.0 999.9 54.0 32.0 0.00G 1.2 111000 724050 13743 20021225 34.4 24 33.4 24 1001.2 24 9999.9 0 5.1 24 9.5 24 19.0 27.0 50.0 30.9 0.38G 1.2 111000 724050 13743 20021226 38.4 24 24.8 24 1013.6 24 9999.9 0 9.9 24 16.4 24 22.0 33.0 43.0 33.1 0.54G 999.9 000000 724050 13743 20021227 32.4 24 21.6 24 1025.8 24 9999.9 0 9.9 24 7.8 24 13.0 18.1 43.0 27.0 0.00G 999.9 000000 724050 13743 20021228 34.0 24 24.5 24 1021.0 24 9999.9 0 9.0 24 3.9 24 12.0 999.9 45.0 27.0 0.00G 999.9 100000 724050 13743 20021229 39.8 24 31.6 24 1018.7 24 9999.9 0 9.9 24 4.6 24 12.0 15.9 48.9 27.0 0.00G 999.9 000000 724050 13743 20021230 38.2 24 32.8 24 1025.6 24 9999.9 0 7.7 24 3.3 24 8.9 999.9 48.9 28.9 0.00G 999.9 100000 724050 13743 20021231 44.2 24 37.8 24 1019.1 24 9999.9 0 7.1 24 3.6 24 8.9 999.9 61.0 30.0 0.00G 999.9 100000 fluids-1.0.22/tests/gsod/2019/0000755000175000017500000000000014302004506015073 5ustar nileshnileshfluids-1.0.22/tests/gsod/2019/724050-13743.op0000644000175000017500000014327214302004506016664 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20190101 56.4 24 48.0 24 1013.6 20 1010.6 24 7.5 24 9.5 24 15.9 25.1 64.0 39.0 0.48G 999.9 110000 724050 13743 20190102 46.2 24 35.6 24 1024.4 24 1022.0 24 10.0 24 5.4 24 11.1 999.9 64.0 42.1 0.00G 999.9 000000 724050 13743 20190103 47.3 24 35.6 24 1016.6 24 1014.3 24 10.0 24 6.8 24 15.9 20.0 51.1 42.1 0.00G 999.9 000000 724050 13743 20190104 42.6 24 34.6 24 1017.0 22 1014.5 24 10.0 24 3.5 24 7.0 999.9 51.1 36.0 0.00G 999.9 000000 724050 13743 20190105 48.3 24 42.9 24 1004.1 17 1000.5 24 7.4 24 7.2 24 15.9 25.1 54.0 36.0 0.07G 999.9 010000 724050 13743 20190106 49.8 24 34.1 24 1014.9 24 1012.6 24 10.0 24 8.8 24 18.1 25.1 57.0 39.0 0.01G 999.9 000000 724050 13743 20190107 39.4 24 22.5 24 1029.5 24 1027.1 24 10.0 24 8.0 24 12.0 999.9 57.0 35.1 0.00G 999.9 000000 724050 13743 20190108 44.6 24 36.3 24 1017.4 23 1015.9 24 10.0 24 6.4 24 14.0 999.9 60.1 35.1 0.08G 999.9 010000 724050 13743 20190109 48.5 24 30.6 24 1008.3 22 1005.6 24 10.0 24 12.3 24 29.9 35.9 60.1 37.9 0.16G 999.9 011000 724050 13743 20190110 34.5 24 14.2 24 1014.7 24 1012.5 24 10.0 24 16.4 24 21.0 34.0 37.9* 30.9* 0.00G 999.9 001000 724050 13743 20190111 32.6 24 12.6 24 1025.1 24 1022.8 24 10.0 24 13.3 24 19.0 28.0 39.0 28.9 0.00G 999.9 000000 724050 13743 20190112 32.9 24 15.5 24 1032.8 24 1030.5 24 9.5 24 4.6 24 8.0 999.9 39.0 28.9 0.00G 5.1 001000 724050 13743 20190113 30.6 24 26.8 24 1028.1 7 1026.4 24 1.7 24 7.6 24 15.0 999.9 37.0 28.9 0.36G 9.1 101000 724050 13743 20190114 31.7 24 20.5 24 1024.7 18 1022.6 24 7.9 24 7.7 24 15.9 20.0 37.0* 28.4* 0.48G 7.1 001000 724050 13743 20190115 32.5 24 21.8 24 1022.9 24 1020.6 24 10.0 24 5.9 24 17.1 18.1 39.0 25.0 0.00G 5.1 000000 724050 13743 20190116 34.0 24 23.6 24 1021.5 24 1019.2 24 9.5 24 5.7 24 15.9 22.9 44.1 24.1 0.00G 3.1 000000 724050 13743 20190117 38.1 24 23.7 24 1026.5 24 1024.2 24 10.0 24 6.6 24 11.1 17.1 44.1 24.1 0.00G 2.0 001000 724050 13743 20190118 35.7 24 31.9 24 1020.1 17 1018.2 24 4.3 24 4.3 24 7.0 999.9 39.0* 33.8* 0.11G 1.2 011000 724050 13743 20190119 38.8 24 33.4 24 1021.1 24 1018.9 24 7.4 24 4.1 24 8.9 999.9 41.0 34.0 0.02G 1.2 010000 724050 13743 20190120 40.1 24 32.0 24 1003.7 17 999.4 24 7.7 24 12.2 24 28.0 40.0 55.9 27.0 0.80G 1.2 010000 724050 13743 20190121 19.7 24 -3.3 24 1022.5 24 1020.2 24 10.0 24 18.8 24 24.1 40.0 27.0* 15.1* 0.19G 999.9 000000 724050 13743 20190122 22.0 24 2.1 24 1038.0 24 1035.7 24 10.0 24 7.7 24 12.0 19.0 33.1 15.1 0.00G 999.9 000000 724050 13743 20190123 37.9 24 18.8 24 1027.5 23 1025.7 24 10.0 24 11.5 24 17.1 22.0 52.0 16.0 0.00G 999.9 000000 724050 13743 20190124 51.4 24 44.7 24 1005.5 16 1002.6 24 8.8 24 11.5 24 22.0 31.1 60.1 30.9 0.24G 999.9 010000 724050 13743 20190125 38.2 24 19.8 24 1015.9 24 1013.6 24 10.0 24 9.6 24 17.1 22.9 43.0* 35.1* 0.79G 999.9 000000 724050 13743 20190126 33.5 24 13.0 24 1023.7 24 1021.4 24 10.0 24 3.6 24 11.1 999.9 44.1 26.1 0.00G 999.9 000000 724050 13743 20190127 37.1 24 22.5 24 1019.3 24 1017.0 24 10.0 24 6.4 24 13.0 18.1 48.9 26.1 0.00G 999.9 000000 724050 13743 20190128 37.3 24 14.3 24 1017.8 24 1015.5 24 10.0 24 8.5 24 13.0 999.9 48.9 28.0 0.00G 999.9 000000 724050 13743 20190129 34.7 24 23.7 24 1014.2 20 1011.3 24 9.0 24 5.9 24 9.9 999.9 41.0 30.0 0.00G 999.9 011000 724050 13743 20190130 28.1 24 11.4 24 1015.7 24 1013.0 24 9.8 24 13.4 24 27.0 35.9 41.0 17.1 0.20G 999.9 001000 724050 13743 20190131 16.1 24 -10.3 24 1029.7 24 1027.3 24 10.0 24 8.4 24 18.1 22.9 39.0 10.0 0.00G 999.9 000000 724050 13743 20190201 21.4 24 8.1 24 1030.5 16 1028.0 24 7.5 24 6.4 24 9.9 999.9 25.0 10.0 0.00G 1.2 001000 724050 13743 20190202 26.4 24 18.0 24 1028.2 24 1026.2 24 10.0 24 5.1 24 9.9 999.9 41.0 18.0 0.05G 999.9 000000 724050 13743 20190203 38.2 24 28.0 24 1021.4 24 1019.1 24 9.4 24 2.8 24 6.0 999.9 55.9 18.0 0.00G 1.2 000000 724050 13743 20190204 44.3 24 33.6 24 1018.9 24 1016.6 24 8.6 24 2.4 24 6.0 999.9 64.0 28.0 0.00G 999.9 000000 724050 13743 20190205 50.3 24 38.9 24 1015.9 24 1013.5 24 10.0 24 3.2 24 8.9 999.9 73.9 33.1 0.00G 999.9 000000 724050 13743 20190206 51.9 24 43.0 24 1019.4 24 1017.0 24 10.0 24 4.9 24 8.9 999.9 73.9 36.0 0.00G 999.9 010000 724050 13743 20190207 49.9 24 44.2 24 1017.0 20 1014.4 24 8.7 24 5.0 24 8.0 999.9 57.9 42.1 0.03G 999.9 010000 724050 13743 20190208 50.5 24 39.5 24 1017.7 16 1013.8 24 6.2 24 8.4 24 21.0 32.1 61.0 44.1 0.00G 999.9 110000 724050 13743 20190209 34.7 24 9.9 24 1035.9 24 1033.6 24 10.0 24 14.4 24 21.0 34.0 61.0 28.0 0.00G 999.9 000000 724050 13743 20190210 32.7 24 12.4 24 1039.0 24 1036.7 24 10.0 24 5.1 24 8.9 999.9 41.0 26.1 0.00G 999.9 000000 724050 13743 20190211 35.8 24 29.7 24 1026.5 17 1024.2 24 8.7 24 4.6 24 9.9 999.9 41.0 26.1 0.28G 999.9 011000 724050 13743 20190212 36.8 24 33.6 24 1021.9 10 1019.5 24 4.6 24 7.7 24 12.0 999.9 41.0 34.0 0.33G 999.9 010000 724050 13743 20190213 42.5 24 31.1 24 1008.7 22 1006.0 24 8.9 24 7.5 24 15.0 22.9 51.1 35.1 0.53G 999.9 010000 724050 13743 20190214 42.0 24 23.6 24 1017.3 24 1015.1 24 10.0 24 5.2 24 8.9 999.9 54.0 32.0 0.00G 999.9 000000 724050 13743 20190215 53.5 24 34.0 24 1009.1 24 1006.8 24 10.0 24 10.9 24 18.1 25.1 64.9 32.0 0.00G 999.9 010000 724050 13743 20190216 47.1 24 21.0 24 1011.0 24 1008.7 24 10.0 24 11.8 24 19.0 24.1 64.9 39.0 0.00G 999.9 000000 724050 13743 20190217 36.6 24 20.9 24 1018.2 24 1016.2 24 10.0 24 6.4 24 11.1 999.9 52.0 32.0 0.00G 999.9 010000 724050 13743 20190218 42.0 24 32.2 24 1015.5 20 1011.8 24 9.6 24 9.9 24 21.0 31.1 52.0 32.0 0.46G 999.9 010000 724050 13743 20190219 37.1 24 14.2 24 1033.6 24 1031.3 24 10.0 24 11.0 24 19.0 24.1 52.0 28.9 0.25G 999.9 000000 724050 13743 20190220 34.8 24 21.3 24 1034.6 16 1031.1 24 5.9 24 5.7 24 8.9 999.9 43.0 28.9 0.03G 2.0 111000 724050 13743 20190221 40.9 24 32.7 24 1018.3 24 1015.8 24 8.5 24 3.3 24 7.0 999.9 60.1 30.0 0.70G 1.2 010000 724050 13743 20190222 48.9 24 29.2 24 1026.2 24 1023.9 24 10.0 24 5.4 24 8.9 999.9 60.1 34.0 0.02G 2.0 010000 724050 13743 20190223 41.6 24 30.9 24 1029.8 23 1027.5 24 9.0 24 5.3 24 9.9 999.9 52.0 39.0 0.13B 999.9 010000 724050 13743 20190224 43.7 24 38.8 24 1008.9 19 1007.7 24 7.5 24 8.1 24 15.0 28.9 63.0 39.0 1.02G 999.9 010000 724050 13743 20190225 47.0 24 9.9 24 1013.3 24 1011.0 24 10.0 24 17.4 24 27.0 38.1 63.0 39.0 0.07G 999.9 000000 724050 13743 20190226 43.6 24 10.0 24 1027.8 24 1025.5 24 10.0 24 7.1 24 12.0 19.0 53.1 34.0 0.00G 999.9 000000 724050 13743 20190227 37.7 24 22.2 24 1026.8 24 1024.8 24 10.0 24 7.6 24 9.9 999.9 53.1 32.0 0.00G 999.9 000000 724050 13743 20190228 43.2 24 27.6 24 1018.9 23 1016.2 24 10.0 24 7.8 24 17.1 21.0 50.0 32.0 0.00G 999.9 000000 724050 13743 20190301 36.0 24 27.6 24 1023.8 19 1021.3 24 9.0 24 8.5 24 12.0 999.9 41.0* 21.0* 0.17G 999.9 011000 724050 13743 20190302 39.4 24 33.5 24 1019.2 24 1016.8 24 7.4 24 8.3 24 11.1 999.9 48.9 34.0 0.52G 999.9 010000 724050 13743 20190303 43.1 24 30.5 24 1019.8 22 1017.2 24 9.0 24 5.8 24 9.9 999.9 48.9 36.0 0.05G 999.9 011000 724050 13743 20190304 37.9 24 27.2 24 1012.7 18 1009.4 24 9.0 24 11.8 24 17.1 25.1 46.9 36.0 0.53G 999.9 010000 724050 13743 20190305 33.4 24 12.4 24 1018.5 24 1016.2 24 10.0 24 7.7 24 14.0 19.0 43.0 27.0 0.01G 999.9 000000 724050 13743 20190306 29.0 24 4.9 24 1022.6 24 1020.4 24 10.0 24 13.7 24 21.0 33.0 43.0 21.9 0.00G 999.9 000000 724050 13743 20190307 32.2 24 8.9 24 1027.1 24 1024.8 24 10.0 24 8.1 24 13.0 20.0 45.0 21.9 0.00G 999.9 000000 724050 13743 20190308 36.5 24 21.0 24 1028.4 20 1025.6 24 8.3 24 4.7 24 9.9 999.9 45.0 25.0 0.00G 999.9 011000 724050 13743 20190309 38.2 24 32.5 24 1025.6 18 1022.9 24 8.0 24 4.2 24 8.9 999.9 43.0 32.0 0.21G 999.9 011000 724050 13743 20190310 44.8 24 39.3 24 1017.2 15 1016.3 24 7.4 24 5.3 24 14.0 999.9 60.1 35.1 0.48G 999.9 010000 724050 13743 20190311 55.3 24 30.8 24 1018.8 24 1016.4 24 10.0 24 7.5 24 13.0 20.0 62.1 39.9 0.41G 999.9 000000 724050 13743 20190312 48.2 24 18.9 24 1024.1 24 1021.8 24 10.0 24 11.8 24 20.0 27.0 62.1 39.9 0.00G 999.9 000000 724050 13743 20190313 45.7 24 26.8 24 1026.8 24 1024.5 24 9.9 24 5.4 24 11.1 999.9 59.0* 34.0* 0.00G 999.9 000000 724050 13743 20190314 56.2 24 39.7 24 1021.0 24 1018.7 24 10.0 24 8.7 24 14.0 24.1 75.0 34.0 0.00G 999.9 000000 724050 13743 20190315 67.8 24 53.4 24 1010.8 24 1008.5 24 10.0 24 15.0 24 22.9 32.1 78.1 46.0 0.00G 999.9 000000 724050 13743 20190316 54.9 24 27.9 24 1017.1 24 1014.2 24 10.0 24 14.7 24 20.0 29.9 78.1 45.0 0.00G 999.9 010000 724050 13743 20190317 45.2 24 17.8 24 1023.7 24 1021.3 24 10.0 24 8.3 24 15.9 22.0 57.0 37.0 0.00G 999.9 000000 724050 13743 20190318 45.1 24 24.9 24 1024.3 24 1021.9 24 10.0 24 4.9 24 8.9 999.9 54.0 37.0 0.00G 999.9 000000 724050 13743 20190319 44.1 24 20.4 24 1030.0 24 1027.6 24 10.0 24 5.2 24 8.9 999.9 54.0 35.1 0.00G 999.9 000000 724050 13743 20190320 45.9 24 23.9 24 1028.4 24 1026.0 24 10.0 24 4.3 24 9.9 999.9 57.0 35.1 0.00G 999.9 000000 724050 13743 20190321 47.2 24 39.9 24 1017.7 10 1013.0 24 5.6 24 9.4 24 22.0 28.9 57.0 37.9 0.16G 999.9 010000 724050 13743 20190322 47.0 24 35.2 24 1002.7 20 1000.1 24 9.1 24 16.5 24 35.0 51.1 55.0 39.0 1.83G 999.9 010110 724050 13743 20190323 44.3 24 20.9 24 1016.0 24 1013.7 24 10.0 24 15.3 24 21.0 35.9 55.0 37.0 0.06G 999.9 000000 724050 13743 20190324 49.6 24 23.1 24 1023.8 24 1021.5 24 10.0 24 6.3 24 11.1 15.9 66.0 35.1 0.00G 999.9 000000 724050 13743 20190325 56.0 24 36.3 24 1017.1 24 1014.6 24 10.0 24 5.3 24 15.0 999.9 66.0 35.1 0.00G 999.9 010000 724050 13743 20190326 46.0 24 23.1 24 1023.2 23 1020.3 24 10.0 24 12.1 24 15.9 22.0 64.9 39.0 0.00G 999.9 000000 724050 13743 20190327 44.7 24 15.3 24 1031.2 24 1028.9 24 10.0 24 5.3 24 13.0 999.9 55.0 35.1 0.00G 999.9 000000 724050 13743 20190328 47.7 24 30.8 24 1029.4 24 1027.1 24 10.0 24 7.8 24 14.0 999.9 62.1 35.1 0.00G 999.9 000000 724050 13743 20190329 57.9 24 40.4 24 1020.7 24 1018.3 24 10.0 24 5.8 24 9.9 999.9 71.1 37.0 0.00G 999.9 000000 724050 13743 20190330 62.8 24 44.5 24 1015.7 24 1013.4 24 10.0 24 6.2 24 15.0 26.0 79.0 51.1 0.00G 999.9 000000 724050 13743 20190331 59.8 24 41.1 24 1009.2 23 1006.4 24 10.0 24 13.9 24 22.9 36.9 79.0 46.9 0.01G 999.9 010000 724050 13743 20190401 41.4 24 15.0 24 1024.4 24 1022.1 24 10.0 24 12.8 24 19.0 32.1 64.0 34.0 0.03G 999.9 000000 724050 13743 20190402 44.4 24 25.2 24 1026.3 24 1023.9 24 10.0 24 5.8 24 11.1 999.9 51.1 34.0 0.00G 999.9 010000 724050 13743 20190403 52.4 24 32.1 24 1020.5 23 1018.0 24 10.0 24 8.3 24 17.1 28.9 72.0 37.9 0.04G 999.9 010000 724050 13743 20190404 58.0 24 30.3 24 1027.7 24 1025.3 24 10.0 24 4.0 24 13.0 999.9 72.0 37.9 0.00G 999.9 000000 724050 13743 20190405 52.0 24 38.1 24 1027.4 22 1025.0 24 9.8 24 6.4 24 11.1 15.9 69.1 44.1 0.06G 999.9 010000 724050 13743 20190406 54.4 24 43.7 24 1023.0 23 1020.7 24 8.7 24 4.5 24 8.0 999.9 70.0* 46.4* 0.03G 999.9 010000 724050 13743 20190407 61.5 24 49.7 24 1022.9 24 1020.6 24 10.0 24 5.6 24 14.0 999.9 75.0 46.9 0.00G 999.9 000000 724050 13743 20190408 68.5 24 55.3 24 1013.2 22 1011.0 24 10.0 24 8.6 24 15.0 22.0 84.0 51.1 0.01G 999.9 010010 724050 13743 20190409 68.5 24 57.0 24 1005.5 24 1003.2 24 9.2 24 6.3 24 14.0 22.9 84.0 59.0 0.03G 999.9 010000 724050 13743 20190410 65.2 24 31.9 24 1009.1 24 1006.8 24 10.0 24 9.5 24 20.0 26.0 81.0 50.0 0.01G 999.9 000000 724050 13743 20190411 57.0 24 37.1 24 1018.9 24 1016.6 24 10.0 24 9.0 24 15.9 999.9 72.0 48.9 0.00G 999.9 000000 724050 13743 20190412 58.0 24 50.0 24 1021.2 20 1018.7 24 9.6 24 7.2 24 13.0 19.0 72.0* 48.2* 0.00G 999.9 010000 724050 13743 20190413 67.5 24 59.3 24 1018.0 19 1015.9 24 9.2 24 4.3 24 8.9 999.9 77.0 48.9 0.41G 999.9 010010 724050 13743 20190414 68.0 24 62.0 24 1011.2 23 1009.5 24 8.7 24 6.7 24 14.0 999.9 77.0 63.0 0.01G 999.9 010000 724050 13743 20190415 63.4 24 48.1 24 1003.1 21 999.2 24 9.3 24 14.9 24 24.1 48.0 77.0 52.0 0.63G 999.9 010010 724050 13743 20190416 54.9 24 32.8 24 1019.4 24 1017.0 24 10.0 24 7.8 24 17.1 22.0 75.0 44.1 0.09G 999.9 000000 724050 13743 20190417 63.1 24 44.3 24 1017.6 24 1015.3 24 10.0 24 7.2 24 12.0 999.9 71.1 44.1 0.00G 999.9 000000 724050 13743 20190418 62.9 24 51.3 24 1015.7 23 1013.8 24 10.0 24 6.9 24 15.9 999.9 80.1 55.0 0.00G 999.9 000000 724050 13743 20190419 70.6 24 60.0 24 1007.2 22 1005.2 24 9.5 24 12.8 24 17.1 22.0 80.1 55.0 0.00G 999.9 010000 724050 13743 20190420 69.5 24 57.4 24 1003.7 16 1000.6 24 10.0 24 12.6 24 19.0 24.1 75.9 66.0 0.31G 999.9 010010 724050 13743 20190421 62.1 24 41.9 24 1013.0 24 1010.7 24 10.0 24 6.7 24 18.1 999.9 73.9 52.0 0.00G 999.9 000000 724050 13743 20190422 63.6 24 45.6 24 1019.0 24 1016.8 24 10.0 24 10.3 24 15.0 22.0 73.9 52.0 0.00G 999.9 010000 724050 13743 20190423 67.6 24 49.9 24 1016.2 24 1013.9 24 10.0 24 5.8 24 13.0 999.9 82.0 54.0 0.00G 999.9 000000 724050 13743 20190424 71.1 24 49.1 24 1010.0 24 1007.7 24 10.0 24 8.6 24 15.0 22.0 82.0 54.0 0.00G 999.9 000000 724050 13743 20190425 67.7 24 46.4 24 1012.2 24 1010.0 24 10.0 24 4.5 24 9.9 999.9 77.0 62.1 0.00G 999.9 000000 724050 13743 20190426 65.2 24 55.1 24 1004.1 21 1001.2 24 13.6 24 7.7 24 20.0 34.0 77.0 59.0 0.01G 999.9 010010 724050 13743 20190427 62.1 24 34.0 24 1005.8 24 1003.6 24 10.0 24 14.3 24 26.0 38.1 77.0 54.0 0.58G 999.9 000000 724050 13743 20190428 62.2 24 44.2 24 1012.9 24 1011.1 20 10.0 24 7.1 24 18.1 28.0 73.9 54.0 0.03G 999.9 010000 724050 13743 20190429 54.3 24 37.9 24 1027.0 24 1025.1 20 10.0 24 7.9 24 15.9 24.1 73.9 46.9 0.00G 999.9 000000 724050 13743 20190430 64.6 24 54.1 24 1022.3 22 1020.0 24 10.0 24 6.8 24 13.0 999.9 82.9 46.9 0.00G 999.9 010000 724050 13743 20190501 65.2 24 56.0 24 1025.3 23 1023.1 24 10.0 24 7.6 24 13.0 19.0 82.9 55.9 0.00G 999.9 000000 724050 13743 20190502 67.9 24 60.7 24 1020.2 18 1017.8 24 6.9 24 5.1 24 18.1 24.1 87.1 59.0 0.00G 999.9 110010 724050 13743 20190503 70.9 24 64.2 24 1016.5 24 1014.2 24 9.8 24 5.5 24 12.0 999.9 87.1 60.1 0.48G 999.9 010010 724050 13743 20190504 70.0 24 62.7 24 1011.2 22 1009.1 24 8.0 24 5.2 24 11.1 26.0 79.0 64.9 0.00G 999.9 010000 724050 13743 20190505 66.5 24 62.7 24 1006.9 17 1004.5 24 6.5 24 6.9 24 15.0 999.9 73.0* 60.8* 0.82G 999.9 010010 724050 13743 20190506 65.6 24 54.2 24 1014.0 22 1011.3 24 10.0 24 7.2 24 15.0 22.9 78.1 59.0 0.38G 999.9 000000 724050 13743 20190507 69.7 24 59.7 24 1019.7 24 1017.3 24 10.0 24 7.8 24 13.0 19.0 81.0 59.0 0.00G 999.9 000000 724050 13743 20190508 68.8 24 60.7 24 1020.3 23 1018.0 24 10.0 24 7.2 24 13.0 999.9 81.0 61.0 0.00G 999.9 000000 724050 13743 20190509 67.3 24 58.7 24 1021.4 21 1019.3 24 10.0 24 6.7 24 9.9 999.9 78.1 62.1 0.00G 999.9 000000 724050 13743 20190510 72.3 24 61.8 24 1016.9 24 1014.6 24 10.0 24 10.5 24 18.1 24.1 82.0 62.1 0.00G 999.9 010000 724050 13743 20190511 67.9 24 59.4 24 1016.1 22 1013.9 24 9.4 24 5.3 24 12.0 22.9 82.0 60.1 0.52G 999.9 010010 724050 13743 20190512 58.4 24 54.5 24 1009.5 17 1007.0 24 6.0 24 9.7 24 18.1 999.9 73.9 54.0 0.54G 999.9 010000 724050 13743 20190513 53.5 24 48.6 24 1009.2 14 1006.9 24 8.7 24 8.2 24 15.0 999.9 61.0 50.0 0.61G 999.9 010000 724050 13743 20190514 57.1 24 44.9 24 1011.4 21 1008.8 24 10.0 24 8.0 24 18.1 25.1 64.0 50.0 0.34G 999.9 000000 724050 13743 20190515 61.8 24 41.0 24 1014.0 24 1011.7 24 10.0 24 9.0 24 14.0 19.0 75.9 50.0 0.00G 999.9 000000 724050 13743 20190516 66.5 24 48.2 24 1012.9 24 1010.6 24 10.0 24 5.9 24 13.0 17.1 80.1 50.0 0.00G 999.9 010000 724050 13743 20190517 67.5 24 56.5 24 1010.6 24 1008.2 24 10.0 24 6.0 24 9.9 999.9 82.0 55.9 0.01G 999.9 000000 724050 13743 20190518 74.7 24 63.1 24 1013.5 24 1011.1 24 9.9 24 4.0 24 8.0 999.9 84.0 59.0 0.00G 999.9 000000 724050 13743 20190519 74.5 24 65.2 24 1015.5 23 1013.5 24 9.7 24 7.6 24 13.0 18.1 87.1 64.0 0.24G 999.9 010010 724050 13743 20190520 79.9 24 64.0 24 1011.4 24 1009.0 24 10.0 24 10.3 24 18.1 28.9 90.0 64.9 0.00A 999.9 000000 724050 13743 20190521 70.1 24 47.3 24 1014.8 24 1012.5 24 10.0 24 11.5 24 17.1 22.9 90.0 62.1 0.00G 999.9 000000 724050 13743 20190522 65.2 24 43.9 24 1023.1 24 1020.8 24 10.0 24 6.3 24 11.1 999.9 73.0 57.0 0.00G 999.9 000000 724050 13743 20190523 69.6 24 56.2 24 1021.3 22 1018.6 24 8.5 24 9.1 24 38.1 59.1 84.9 57.0 0.00G 999.9 010010 724050 13743 20190524 75.3 24 59.6 24 1015.6 24 1013.3 24 10.0 24 10.4 24 18.1 28.0 84.9 61.0 0.31G 999.9 000000 724050 13743 20190525 73.7 24 57.3 24 1020.2 24 1017.9 24 10.0 24 6.5 24 11.1 999.9 84.0 66.9 0.00G 999.9 000000 724050 13743 20190526 77.4 24 66.8 24 1015.7 19 1013.8 24 9.9 24 6.0 24 21.0 28.9 91.9 66.9 0.00G 999.9 010010 724050 13743 20190527 77.5 24 64.3 24 1013.7 24 1011.3 24 10.0 24 7.9 24 13.0 999.9 91.9 69.1 0.24G 999.9 010010 724050 13743 20190528 77.6 24 66.9 24 1010.1 22 1008.1 24 10.0 24 7.7 24 12.0 19.0 91.0 70.0 0.19G 999.9 110010 724050 13743 20190529 82.8 24 69.1 24 1006.8 24 1004.4 24 10.0 24 7.8 24 17.1 22.0 93.0 70.0 99.99 999.9 010010 724050 13743 20190530 80.2 24 63.3 24 1007.9 23 1005.5 24 10.0 24 6.6 24 28.0 45.1 93.0 72.0 0.00G 999.9 010010 724050 13743 20190531 76.4 24 61.8 24 1008.8 24 1006.5 24 10.0 24 6.3 24 9.9 15.0 90.0 66.9 0.29G 999.9 010000 724050 13743 20190601 77.1 24 59.6 24 1009.6 24 1007.3 24 10.0 24 4.6 24 11.1 999.9 87.1 66.9 0.00G 999.9 000010 724050 13743 20190602 76.4 24 60.6 24 1008.3 23 1005.9 24 10.0 24 7.4 24 19.0 25.1 87.1 66.9 0.00G 999.9 010010 724050 13743 20190603 69.2 24 49.7 24 1013.3 24 1010.7 24 10.0 24 8.7 24 15.9 24.1 84.9 57.9 0.01G 999.9 010010 724050 13743 20190604 67.0 24 40.6 24 1020.3 24 1017.9 24 10.0 24 6.7 24 12.0 19.0 78.1 54.0 0.00G 999.9 000000 724050 13743 20190605 73.7 24 59.1 24 1014.2 22 1011.7 24 10.0 24 10.2 24 14.0 20.0 82.9 54.0 0.00G 999.9 010010 724050 13743 20190606 79.5 24 66.8 24 1008.1 24 1005.7 24 9.9 24 8.2 24 13.0 21.0 90.0 64.9 0.01G 999.9 010000 724050 13743 20190607 76.8 24 64.1 24 1011.3 24 1009.0 24 10.0 24 7.3 24 11.1 999.9 90.0 71.1 0.00G 999.9 000000 724050 13743 20190608 75.8 24 61.4 24 1016.8 24 1014.4 24 10.0 24 9.6 24 17.1 21.0 82.9 68.0 0.00G 999.9 000000 724050 13743 20190609 71.1 24 60.5 24 1020.7 17 1018.4 24 8.4 24 11.6 24 18.1 22.9 82.9 66.9 0.00G 999.9 010000 724050 13743 20190610 68.3 24 64.6 24 1016.8 18 1014.1 24 6.9 24 7.5 24 14.0 999.9 77.0 64.0 0.22G 999.9 010000 724050 13743 20190611 72.8 24 55.8 24 1015.3 24 1012.7 24 9.7 24 10.4 24 20.0 27.0 81.0 64.0 0.42G 999.9 010000 724050 13743 20190612 70.6 24 50.9 24 1020.0 24 1017.7 24 10.0 24 6.8 24 12.0 999.9 81.0 64.0 0.14G 999.9 000000 724050 13743 20190613 68.8 24 61.4 24 1011.2 19 1008.3 24 8.6 24 7.3 24 26.0 35.9 79.0 64.0 0.71G 999.9 010010 724050 13743 20190614 67.2 24 48.9 24 1014.9 24 1012.6 24 10.0 24 9.8 24 21.0 28.0 79.0 57.0 0.41G 999.9 010000 724050 13743 20190615 71.5 24 52.7 24 1019.6 24 1017.3 24 10.0 24 8.3 24 17.1 21.0 84.0 57.0 0.00G 999.9 000000 724050 13743 20190616 76.6 24 60.3 24 1013.4 24 1011.1 24 10.0 24 10.5 24 15.0 22.0 87.1 61.0 0.00G 999.9 000000 724050 13743 20190617 81.3 24 68.4 24 1013.5 22 1011.3 24 9.6 24 6.4 24 18.1 25.1 91.0 68.0 0.00G 999.9 010010 724050 13743 20190618 77.3 24 70.2 24 1013.7 21 1011.4 24 9.7 24 5.2 24 19.0 28.0 88.0* 71.6* 0.99G 999.9 010010 724050 13743 20190619 76.7 24 70.3 24 1010.2 21 1007.9 24 9.4 24 6.3 24 11.1 15.0 84.9* 71.6* 1.16G 999.9 010010 724050 13743 20190620 81.9 24 71.2 24 1002.7 22 1000.5 24 10.0 24 9.7 24 15.9 21.0 91.9 72.0 0.00G 999.9 010000 724050 13743 20190621 77.1 24 62.5 24 1004.6 24 1002.3 24 9.9 24 12.0 24 22.9 34.0 91.9 71.1 0.08G 999.9 010000 724050 13743 20190622 75.5 24 50.2 24 1014.9 24 1012.6 24 10.0 24 8.7 24 13.0 20.0 84.9 66.0 0.00G 999.9 000000 724050 13743 20190623 75.2 24 52.5 24 1017.4 24 1015.1 24 10.0 24 5.2 24 11.1 15.0 84.0 63.0 0.00G 999.9 000000 724050 13743 20190624 77.5 24 64.5 24 1012.3 24 1010.0 24 9.8 24 6.6 24 8.9 999.9 88.0 63.0 0.00G 999.9 010000 724050 13743 20190625 80.1 24 68.2 24 1010.7 24 1008.2 24 10.0 24 7.3 24 14.0 20.0 90.0 70.0 0.21G 999.9 010010 724050 13743 20190626 82.8 24 60.8 24 1016.9 24 1014.5 24 10.0 24 7.6 24 12.0 14.0 91.0 72.0 0.19G 999.9 000000 724050 13743 20190627 83.6 24 66.0 24 1020.2 24 1017.8 24 10.0 24 6.0 24 15.0 999.9 91.9 72.0 0.00G 999.9 010000 724050 13743 20190628 81.2 24 67.2 24 1020.9 24 1018.6 24 10.0 24 4.8 24 18.1 25.1 95.0 72.0 0.00G 999.9 010010 724050 13743 20190629 82.6 24 67.8 24 1018.3 20 1015.9 24 10.0 24 5.8 24 20.0 27.0 96.1 72.0 0.00G 999.9 010010 724050 13743 20190630 82.2 24 63.5 24 1012.1 24 1010.0 24 10.0 24 11.5 24 21.0 26.0 96.1 72.0 0.04G 999.9 010010 724050 13743 20190701 79.5 24 55.4 24 1014.2 24 1011.8 24 10.0 24 7.2 24 12.0 17.1 91.9 69.1 0.00G 999.9 000000 724050 13743 20190702 80.9 24 63.6 24 1013.0 23 1010.5 24 10.0 24 6.7 24 12.0 19.0 93.9 69.1 0.00G 999.9 010010 724050 13743 20190703 81.6 24 69.3 24 1011.8 24 1009.4 24 10.0 24 5.8 24 21.0 28.9 93.9 70.0 0.42G 999.9 010010 724050 13743 20190704 82.9 24 71.2 24 1015.4 22 1013.2 24 9.9 24 5.1 24 15.0 19.0 93.0 73.0 0.00G 999.9 010010 724050 13743 20190705 81.5 24 73.3 24 1018.4 17 1016.3 24 8.5 24 5.5 24 12.0 999.9 91.0 75.9 0.24G 999.9 010010 724050 13743 20190706 83.7 24 74.7 24 1015.1 21 1012.8 24 9.7 24 6.7 24 34.0 41.0 91.9 73.9 0.01G 999.9 010010 724050 13743 20190707 79.9 24 71.4 24 1012.4 23 1010.1 24 9.6 24 4.1 24 8.9 999.9 91.9 73.9 0.72G 999.9 010010 724050 13743 20190708 77.6 24 70.7 24 1012.3 17 1010.0 24 9.0 24 8.8 24 17.1 24.1 89.1 73.0 0.00G 999.9 010010 724050 13743 20190709 76.5 24 65.6 24 1017.8 24 1015.5 24 10.0 24 4.5 24 9.9 999.9 86.0 66.9 3.44G 999.9 000000 724050 13743 20190710 79.0 24 67.2 24 1017.9 24 1015.6 24 10.0 24 7.2 24 11.1 999.9 87.1 66.9 0.00G 999.9 000000 724050 13743 20190711 80.0 24 71.0 24 1013.4 18 1010.6 24 9.7 24 7.7 24 21.0 28.9 91.0 71.1 0.00G 999.9 110010 724050 13743 20190712 79.3 24 69.4 24 1009.7 22 1007.3 24 10.0 24 6.7 24 11.1 999.9 90.0* 71.6* 0.88G 999.9 010000 724050 13743 20190713 82.3 24 64.0 24 1014.0 24 1011.7 24 10.0 24 6.1 24 8.9 15.0 91.0 72.0 0.00G 999.9 000000 724050 13743 20190714 85.1 24 67.6 24 1015.5 24 1013.1 24 10.0 24 6.2 24 14.0 19.0 93.9 73.0 0.00G 999.9 000000 724050 13743 20190715 82.8 24 62.4 24 1018.0 24 1015.6 24 10.0 24 6.5 24 11.1 999.9 93.9 72.0 0.00G 999.9 000000 724050 13743 20190716 83.7 24 70.3 24 1018.1 23 1015.6 24 10.0 24 5.3 24 9.9 999.9 93.0 72.0 0.00G 999.9 010010 724050 13743 20190717 85.4 24 73.4 24 1015.0 23 1012.7 24 9.7 24 9.1 24 33.0 44.1 95.0 73.9 0.00G 999.9 010010 724050 13743 20190718 83.3 24 73.5 24 1011.9 24 1009.5 24 10.0 24 5.4 24 11.1 15.9 95.0 73.9 0.29G 999.9 010010 724050 13743 20190719 87.4 24 73.7 24 1013.2 23 1010.8 24 10.0 24 6.4 24 12.0 999.9 96.1 78.1 0.00G 999.9 010010 724050 13743 20190720 89.3 24 73.9 24 1012.7 24 1010.4 24 10.0 24 6.3 24 13.0 20.0 97.0 79.0 0.00G 999.9 000000 724050 13743 20190721 90.9 24 71.8 24 1011.5 24 1009.3 24 10.0 24 7.1 24 17.1 24.1 99.0 81.0 0.00G 999.9 010010 724050 13743 20190722 84.0 24 70.2 24 1010.6 24 1008.2 24 10.0 24 6.3 24 15.9 22.0 99.0 77.0 0.00G 999.9 010010 724050 13743 20190723 74.4 24 65.9 24 1010.6 20 1008.4 24 9.8 24 7.6 24 18.1 22.9 96.1 70.0 0.04G 999.9 010000 724050 13743 20190724 75.7 24 62.5 24 1013.8 24 1011.7 24 9.6 24 6.6 24 15.0 20.0 87.1 69.1 0.07G 999.9 010000 724050 13743 20190725 75.6 24 60.4 24 1018.9 24 1016.6 24 10.0 24 5.3 24 8.9 999.9 88.0 64.9 0.37G 999.9 000000 724050 13743 20190726 79.2 24 61.8 24 1023.7 24 1021.3 23 10.0 24 3.3 24 8.0 999.9 90.0 64.9 0.01G 999.9 010000 724050 13743 20190727 79.7 24 62.8 24 1024.4 24 1022.1 24 10.0 24 5.0 24 9.9 999.9 90.0 69.1 0.00G 999.9 000000 724050 13743 20190728 82.0 24 64.8 24 1021.0 24 1018.7 24 10.0 24 6.4 24 11.1 999.9 91.9 71.1 0.00G 999.9 010000 724050 13743 20190729 83.8 24 68.0 24 1017.3 24 1014.8 24 10.0 24 6.2 24 9.9 999.9 93.9 73.0 0.00G 999.9 000000 724050 13743 20190730 85.0 24 68.5 24 1015.5 24 1013.2 24 10.0 24 8.5 24 13.0 999.9 95.0 75.0 0.00G 999.9 000000 724050 13743 20190731 81.7 24 65.9 24 1016.7 24 1014.3 24 10.0 24 6.0 24 9.9 999.9 95.0 75.0 0.00G 999.9 010000 724050 13743 20190801 80.0 24 67.2 24 1017.9 24 1015.7 23 10.0 24 5.1 24 13.0 21.0 91.0 71.1 0.01G 999.9 010000 724050 13743 20190802 79.0 24 66.0 24 1019.1 22 1016.8 24 10.0 24 5.1 24 12.0 999.9 91.0 71.1 0.00G 999.9 010010 724050 13743 20190803 80.6 24 69.0 24 1016.6 24 1014.5 24 10.0 24 5.5 24 12.0 999.9 91.0 72.0 0.00G 999.9 010000 724050 13743 20190804 83.4 24 67.2 24 1013.7 24 1011.4 24 10.0 24 6.0 24 9.9 999.9 91.9 73.9 0.00G 999.9 000000 724050 13743 20190805 81.1 24 65.0 24 1014.2 24 1011.8 24 10.0 24 4.9 24 17.1 22.9 91.9 73.0 0.00G 999.9 010010 724050 13743 20190806 80.7 24 66.7 24 1012.0 24 1009.7 24 10.0 24 5.8 24 12.0 999.9 91.9 72.0 0.00G 999.9 000000 724050 13743 20190807 81.4 24 69.4 24 1009.4 23 1007.0 24 9.7 24 8.2 24 27.0 33.0 93.0* 71.6* 0.00G 999.9 010010 724050 13743 20190808 80.2 24 65.3 24 1008.6 23 1006.3 24 10.0 24 6.2 24 13.0 15.0 93.9 72.0 0.90G 999.9 010010 724050 13743 20190809 84.0 24 61.6 24 1009.0 24 1006.6 24 10.0 24 8.1 24 14.0 21.0 93.0 72.0 0.00G 999.9 010000 724050 13743 20190810 77.7 24 54.3 24 1012.3 24 1010.0 24 10.0 24 7.8 24 13.0 18.1 93.0 66.0 0.00G 999.9 000000 724050 13743 20190811 77.7 24 54.7 24 1016.2 24 1013.9 24 10.0 24 6.5 24 12.0 999.9 86.0 66.0 0.00G 999.9 000000 724050 13743 20190812 79.3 24 63.2 24 1015.7 24 1013.4 24 10.0 24 5.8 24 14.0 21.0 91.9 68.0 0.00G 999.9 000000 724050 13743 20190813 80.9 24 68.5 24 1010.4 24 1008.0 24 9.9 24 7.8 24 12.0 999.9 91.9 70.0 0.00G 999.9 010000 724050 13743 20190814 82.3 24 72.5 24 1009.2 20 1006.5 24 9.7 24 6.3 24 15.0 20.0 90.0 75.9 0.12G 999.9 010010 724050 13743 20190815 80.1 24 70.5 24 1013.6 23 1011.3 24 9.7 24 5.1 24 9.9 999.9 84.9* 75.2* 0.00G 999.9 010010 724050 13743 20190816 79.8 24 71.2 24 1015.1 21 1012.8 24 10.0 24 4.3 24 14.0 999.9 89.6* 73.4* 0.20G 999.9 000010 724050 13743 20190817 82.7 24 72.5 24 1015.1 23 1012.8 24 10.0 24 4.3 24 11.1 999.9 91.9 73.9 0.00G 999.9 010010 724050 13743 20190818 83.8 24 72.0 24 1015.2 24 1012.9 24 10.0 24 6.0 24 14.0 999.9 96.1 75.9 0.00G 999.9 010010 724050 13743 20190819 85.8 24 70.8 24 1015.3 22 1012.9 24 10.0 24 4.5 24 9.9 999.9 98.1 75.9 0.00G 999.9 010010 724050 13743 20190820 84.7 24 70.4 24 1017.6 19 1015.1 24 9.8 24 6.3 24 27.0 35.0 98.1 73.9 0.00G 999.9 010010 724050 13743 20190821 80.1 24 70.1 24 1014.7 21 1012.7 24 10.0 24 8.5 24 14.0 999.9 96.1 72.0 0.36G 999.9 010010 724050 13743 20190822 83.6 24 69.5 24 1013.1 21 1010.8 24 10.0 24 5.4 24 11.1 17.1 95.0 72.0 0.01G 999.9 010010 724050 13743 20190823 75.6 24 67.9 24 1014.9 21 1012.8 24 9.6 24 9.1 24 14.0 999.9 95.0 68.0 0.00G 999.9 010000 724050 13743 20190824 71.3 24 56.5 24 1020.5 24 1018.2 24 10.0 24 7.0 24 11.1 999.9 81.0 64.0 0.38G 999.9 000000 724050 13743 20190825 72.1 24 57.0 24 1022.5 24 1020.2 24 10.0 24 8.8 24 17.1 19.0 81.0 64.0 0.00G 999.9 010000 724050 13743 20190826 70.0 24 59.0 24 1021.3 20 1019.2 24 10.0 24 8.4 24 12.0 15.9 80.1 64.0 0.00G 999.9 000000 724050 13743 20190827 71.8 24 61.5 24 1017.8 22 1015.6 24 10.0 24 5.4 24 11.1 999.9 80.1 64.0 0.00G 999.9 010000 724050 13743 20190828 74.7 24 66.5 24 1012.9 23 1010.6 24 10.0 24 4.6 24 15.9 25.1 84.0 66.0 0.00G 999.9 010000 724050 13743 20190829 75.9 24 57.4 24 1014.3 24 1012.0 24 10.0 24 6.8 24 12.0 17.1 86.0 66.9 0.02G 999.9 000000 724050 13743 20190830 76.4 24 59.5 24 1017.6 24 1015.3 24 10.0 24 5.5 24 13.0 999.9 89.1 64.9 0.00G 999.9 000000 724050 13743 20190831 79.8 24 63.6 24 1020.9 24 1018.6 24 10.0 24 5.6 24 11.1 999.9 91.0 64.9 0.00G 999.9 000000 724050 13743 20190901 77.5 24 65.2 24 1024.0 24 1021.8 24 10.0 24 7.5 24 11.1 15.9 91.0 70.0 0.00G 999.9 000000 724050 13743 20190902 78.1 24 68.7 24 1018.7 18 1016.5 24 9.8 24 7.7 24 13.0 22.9 89.1 71.1 0.00G 999.9 010010 724050 13743 20190903 78.5 24 64.7 24 1016.7 24 1014.3 24 10.0 24 5.2 24 9.9 999.9 89.1 71.1 0.05G 999.9 010000 724050 13743 20190904 81.3 24 68.9 24 1014.6 24 1012.5 24 10.0 24 8.7 24 12.0 999.9 96.1 71.1 0.00G 999.9 000000 724050 13743 20190905 77.8 24 64.9 24 1016.0 23 1013.7 24 10.0 24 8.1 24 12.0 18.1 96.1 72.0 0.02G 999.9 010010 724050 13743 20190906 72.5 24 60.5 24 1011.5 24 1009.2 24 10.0 24 12.5 24 15.9 22.0 81.0 69.1 0.00G 999.9 000000 724050 13743 20190907 73.1 24 57.0 24 1011.2 24 1008.8 24 10.0 24 6.1 24 14.0 26.0 86.0 63.0 0.00G 999.9 000000 724050 13743 20190908 75.0 24 57.2 24 1016.7 24 1014.4 24 10.0 24 4.5 24 7.0 999.9 86.0 63.0 0.00G 999.9 000000 724050 13743 20190909 76.8 24 61.5 24 1021.2 24 1018.9 24 10.0 24 3.9 24 7.0 999.9 84.9 64.0 0.00G 999.9 010000 724050 13743 20190910 77.5 24 63.4 24 1025.3 24 1023.0 24 10.0 24 4.5 24 9.9 999.9 89.1 69.1 0.00G 999.9 000000 724050 13743 20190911 78.8 24 68.7 24 1022.7 22 1020.5 24 9.8 24 8.9 24 15.9 22.9 93.0 69.1 0.00G 999.9 010010 724050 13743 20190912 82.9 24 68.3 24 1018.3 24 1015.9 24 10.0 24 6.3 24 14.0 19.0 98.1 71.1 0.01G 999.9 000000 724050 13743 20190913 73.3 24 64.9 24 1026.0 19 1022.8 24 9.8 24 10.2 24 13.0 18.1 98.1 68.0 0.03G 999.9 010000 724050 13743 20190914 73.1 24 62.8 24 1025.6 23 1023.3 24 9.7 24 7.3 24 12.0 999.9 81.0 66.9 0.00G 999.9 000000 724050 13743 20190915 79.9 24 62.9 24 1021.2 24 1018.9 24 10.0 24 5.5 24 8.9 999.9 90.0 66.9 0.00G 999.9 000000 724050 13743 20190916 78.1 24 62.5 24 1017.7 24 1015.4 24 10.0 24 2.8 24 8.9 999.9 91.9 68.0 0.00G 999.9 000000 724050 13743 20190917 77.5 24 63.4 24 1017.5 24 1015.2 24 10.0 24 8.6 24 12.0 999.9 91.9 68.0 0.00G 999.9 000000 724050 13743 20190918 71.2 24 55.5 24 1021.4 24 1019.1 24 10.0 24 5.4 24 8.9 999.9 82.0 63.0 0.00G 999.9 000000 724050 13743 20190919 67.0 24 47.8 24 1026.0 24 1023.7 24 10.0 24 6.0 24 9.9 999.9 80.1 59.0 0.00G 999.9 000000 724050 13743 20190920 66.6 24 51.3 24 1025.5 24 1023.2 24 10.0 24 5.8 24 12.0 999.9 79.0 55.0 0.00G 999.9 000000 724050 13743 20190921 72.4 24 58.2 24 1023.4 24 1021.0 24 10.0 24 4.8 24 8.0 999.9 88.0 55.0 0.00G 999.9 000000 724050 13743 20190922 79.6 24 65.5 24 1020.6 24 1018.3 24 10.0 24 4.8 24 9.9 999.9 93.0 61.0 0.00G 999.9 000000 724050 13743 20190923 81.1 24 64.8 24 1014.2 24 1011.9 24 10.0 24 8.9 24 13.0 19.0 93.9 70.0 0.00G 999.9 000000 724050 13743 20190924 77.5 24 57.0 24 1011.6 24 1009.3 24 10.0 24 10.1 24 14.0 22.0 93.9 70.0 0.00G 999.9 000000 724050 13743 20190925 71.6 24 51.2 24 1013.2 24 1010.8 24 10.0 24 6.0 24 11.1 15.0 84.0 61.0 0.00G 999.9 000000 724050 13743 20190926 74.8 24 59.8 24 1010.1 24 1007.8 24 10.0 24 7.4 24 13.0 999.9 91.9 61.0 0.00G 999.9 000000 724050 13743 20190927 74.0 24 58.1 24 1017.3 24 1015.0 24 10.0 24 6.0 24 8.9 999.9 91.9 64.0 0.00G 999.9 000000 724050 13743 20190928 74.1 24 65.2 24 1019.1 21 1016.9 24 10.0 24 6.2 24 9.9 999.9 84.0 64.0 0.00G 999.9 000000 724050 13743 20190929 79.6 24 68.2 24 1021.2 24 1018.9 24 9.9 24 6.4 24 12.0 999.9 91.0 66.9 0.00G 999.9 000000 724050 13743 20190930 72.5 24 64.4 24 1024.1 24 1021.7 24 9.3 24 6.8 24 11.1 999.9 91.0 68.0 0.00G 999.9 010000 724050 13743 20191001 75.4 24 63.9 24 1020.1 24 1017.9 24 10.0 24 7.1 24 11.1 999.9 87.1 68.0 0.14G 999.9 010000 724050 13743 20191002 82.5 24 67.6 24 1013.2 24 1010.9 24 10.0 24 7.1 24 12.0 15.9 98.1 69.1 0.00G 999.9 000000 724050 13743 20191003 78.8 24 68.4 24 1014.1 24 1011.7 24 10.0 24 7.2 24 11.1 999.9 98.1 73.0 0.00G 999.9 000000 724050 13743 20191004 74.8 24 59.2 24 1017.4 24 1014.8 24 10.0 24 10.3 24 15.9 24.1 82.0 68.0 0.00G 999.9 000000 724050 13743 20191005 58.1 24 43.1 24 1028.0 24 1025.7 24 10.0 24 10.1 24 18.1 24.1 80.1 48.9 0.00G 999.9 000000 724050 13743 20191006 66.3 24 55.8 24 1025.3 24 1023.0 24 10.0 24 7.7 24 12.0 19.0 73.0 48.9 0.00G 999.9 000000 724050 13743 20191007 74.4 24 61.8 24 1021.0 24 1018.7 24 10.0 24 9.2 24 15.0 19.0 84.0 62.1 0.00G 999.9 000000 724050 13743 20191008 65.3 24 53.1 24 1021.8 22 1019.5 24 9.9 24 13.6 24 22.9 27.0 84.0 61.0 0.02G 999.9 010000 724050 13743 20191009 64.2 24 48.8 24 1022.9 24 1020.6 24 10.0 24 10.7 24 14.0 999.9 73.0 55.9 0.00G 999.9 010000 724050 13743 20191010 64.6 24 49.0 24 1023.6 24 1021.4 24 10.0 24 9.0 24 13.0 999.9 79.0 55.9 0.00G 999.9 000000 724050 13743 20191011 66.1 24 44.0 24 1020.4 24 1018.1 24 10.0 24 8.7 24 12.0 18.1 79.0 55.0 0.00G 999.9 000000 724050 13743 20191012 64.0 24 50.7 24 1016.4 24 1014.1 24 10.0 24 4.1 24 11.1 999.9 77.0 55.0 0.00G 999.9 000000 724050 13743 20191013 60.2 24 44.3 24 1018.5 23 1016.1 24 9.8 24 6.7 24 9.9 999.9 75.0 55.0 0.00G 999.9 010000 724050 13743 20191014 62.7 24 50.0 24 1016.2 24 1013.9 24 10.0 24 3.5 24 9.9 999.9 77.0 52.0 0.12G 999.9 000000 724050 13743 20191015 62.8 24 45.8 24 1019.6 24 1017.3 24 10.0 24 3.8 24 9.9 999.9 77.0 50.0 0.00G 999.9 000000 724050 13743 20191016 61.0 24 55.3 24 1010.4 17 1007.5 24 8.3 24 7.7 24 17.1 32.1 73.0 50.0 0.00G 999.9 010000 724050 13743 20191017 55.6 24 37.8 24 1003.6 24 1001.4 24 10.0 24 13.7 24 22.0 36.9 64.9 50.0 1.35G 999.9 000000 724050 13743 20191018 55.5 24 35.1 24 1013.1 24 1010.7 24 10.0 24 9.5 24 18.1 25.1 66.0 48.0 0.00G 999.9 000000 724050 13743 20191019 54.6 24 40.0 24 1018.6 24 1016.4 20 10.0 24 5.5 24 9.9 999.9 66.0 44.1 0.00G 999.9 000000 724050 13743 20191020 57.0 24 52.1 24 1015.2 14 1011.4 20 6.5 24 8.0 24 15.9 22.0 66.0 44.1 0.18G 999.9 010000 724050 13743 20191021 59.7 24 51.5 24 1017.1 23 1014.6 24 10.0 24 7.4 24 13.0 999.9 70.0 55.0 1.42G 999.9 000000 724050 13743 20191022 60.3 24 56.5 24 1015.4 20 1011.6 20 8.4 24 7.7 24 15.0 18.1 70.0 55.0 0.00G 999.9 010000 724050 13743 20191023 59.1 24 47.7 24 1016.0 23 1013.9 22 9.4 24 5.5 24 15.0 21.0 66.9 51.1 0.58G 999.9 000000 724050 13743 20191024 55.8 24 41.6 24 1025.5 22 1023.6 19 10.0 24 2.6 24 7.0 999.9 68.0 45.0 0.00G 999.9 000000 724050 13743 20191025 58.2 24 51.6 24 1025.3 24 1022.7 22 10.0 24 3.1 24 8.9 999.9 75.9 45.0 0.00G 999.9 000000 724050 13743 20191026 62.2 23 52.1 23 1022.4 23 1020.1 23 10.0 23 4.3 23 9.9 999.9 75.9 50.0 0.00G 999.9 010000 724050 13743 20191027 68.1 24 61.6 24 1013.7 20 1010.6 21 8.2 24 8.3 24 15.9 22.0 80.1 57.9 0.42G 999.9 110000 724050 13743 20191028 63.1 24 50.0 24 1019.2 23 1017.3 21 10.0 24 6.1 24 9.9 999.9 80.1 55.9 1.06G 999.9 000000 724050 13743 20191029 62.3 24 54.3 24 1024.2 24 1021.9 24 10.0 24 4.9 24 9.9 999.9 69.1 55.9 0.00G 999.9 000000 724050 13743 20191030 62.6 24 55.6 24 1024.0 21 1021.7 24 9.9 24 2.3 24 8.0 999.9 68.0 59.0 0.00G 999.9 010000 724050 13743 20191031 67.1 24 64.5 24 1011.2 20 1010.2 24 8.5 24 9.0 24 21.0 31.1 77.0 60.1 0.51G 999.9 010000 724050 13743 20191101 53.5 24 37.3 24 1018.9 22 1014.4 24 9.4 24 14.1 24 24.1 38.1 77.0 45.0 1.00G 999.9 010010 724050 13743 20191102 45.7 24 30.3 24 1023.8 24 1021.4 24 10.0 24 5.2 24 12.0 999.9 55.9 37.0 0.00G 999.9 000000 724050 13743 20191103 48.8 24 30.3 24 1021.7 24 1019.3 24 10.0 24 6.7 24 14.0 21.0 57.0 37.0 0.00G 999.9 000000 724050 13743 20191104 48.6 24 35.9 24 1026.1 24 1023.7 24 10.0 24 5.7 24 15.0 999.9 61.0 39.0 0.00G 999.9 000000 724050 13743 20191105 52.7 24 42.9 24 1023.0 24 1020.6 24 10.0 24 4.5 24 9.9 999.9 64.0 39.0 0.00G 999.9 000000 724050 13743 20191106 52.3 24 36.9 24 1028.0 24 1025.6 24 10.0 24 5.2 24 12.0 999.9 64.0 44.1 0.00G 999.9 000000 724050 13743 20191107 52.1 24 42.2 24 1023.7 24 1021.3 24 10.0 24 7.4 24 12.0 999.9 61.0 44.1 0.00G 999.9 010000 724050 13743 20191108 44.0 24 29.0 24 1023.0 24 1020.2 24 10.0 24 12.5 24 20.0 25.1 61.0 37.0 0.06G 999.9 010000 724050 13743 20191109 37.9 24 21.6 24 1027.0 24 1024.7 24 10.0 24 6.8 24 11.1 999.9 46.9 30.0 0.00G 999.9 000000 724050 13743 20191110 44.2 24 31.9 24 1019.9 24 1017.6 24 10.0 24 6.0 24 11.1 999.9 55.9 30.0 0.00G 999.9 000000 724050 13743 20191111 51.8 24 41.3 24 1017.1 24 1014.7 24 10.0 24 4.0 24 11.1 999.9 69.1 36.0 0.00G 999.9 000000 724050 13743 20191112 50.0 24 36.5 24 1013.0 24 1010.5 24 10.0 24 12.6 24 19.0 34.0 69.1 36.0 0.07G 999.9 010000 724050 13743 20191113 32.0 24 13.4 24 1028.0 24 1025.7 24 10.0 24 9.8 24 15.9 22.9 37.9* 26.1* 0.00I 999.9 000000 724050 13743 20191114 34.3 24 19.3 24 1029.6 24 1027.3 24 10.0 24 5.4 24 9.9 999.9 42.1 26.1 0.00G 999.9 000000 724050 13743 20191115 42.4 24 26.6 24 1025.3 24 1022.9 24 10.0 24 3.4 24 9.9 999.9 55.0 28.0 0.00G 999.9 000000 724050 13743 20191116 42.3 24 25.3 24 1026.3 24 1024.0 24 10.0 24 11.1 24 17.1 22.9 55.0 33.1 0.00G 999.9 000000 724050 13743 20191117 40.4 24 21.9 24 1024.8 23 1022.6 24 10.0 24 12.1 24 17.1 21.0 46.9 37.0 0.00G 999.9 000000 724050 13743 20191118 42.8 24 37.2 24 1012.9 23 1010.6 24 9.5 24 7.5 24 11.1 999.9 48.9 37.0 0.00G 999.9 010000 724050 13743 20191119 47.3 24 41.1 24 1009.3 23 1006.9 24 7.4 24 4.5 24 8.9 999.9 55.9 39.9 0.31G 999.9 010000 724050 13743 20191120 49.9 24 37.7 24 1015.7 24 1013.0 24 10.0 24 8.8 24 17.1 28.0 55.9 43.0 0.02G 999.9 000000 724050 13743 20191121 47.6 24 32.4 24 1023.5 24 1021.2 24 10.0 24 7.2 24 12.0 999.9 55.0 39.9 0.00G 999.9 000000 724050 13743 20191122 51.1 24 40.6 24 1014.2 23 1011.5 24 9.5 24 8.7 24 17.1 22.9 55.9 39.9 0.00G 999.9 010000 724050 13743 20191123 41.2 24 29.6 24 1017.3 24 1014.9 24 10.0 24 5.3 24 11.1 999.9 55.9 35.1 0.22G 999.9 010000 724050 13743 20191124 44.6 24 35.6 24 1003.0 18 999.9 24 9.0 24 8.7 24 21.0 40.0 54.0 35.1 0.70G 999.9 010000 724050 13743 20191125 45.5 24 33.9 24 1009.9 24 1007.6 24 10.0 24 5.3 24 13.0 19.0 57.0 35.1 0.28G 999.9 000000 724050 13743 20191126 48.0 24 38.9 24 1015.4 24 1013.1 24 10.0 24 4.0 24 8.0 999.9 62.1 35.1 0.00G 999.9 000000 724050 13743 20191127 51.5 24 45.7 24 1012.9 24 1010.5 24 10.0 24 7.6 24 21.0 28.9 62.1 37.9 0.00G 999.9 010000 724050 13743 20191128 50.3 24 32.8 24 1014.7 24 1012.4 24 10.0 24 14.9 24 22.0 38.1 57.9 44.1 0.01G 999.9 000000 724050 13743 20191129 44.6 24 28.6 24 1024.3 24 1022.0 24 10.0 24 10.6 24 15.9 22.9 54.0 37.0 0.00G 999.9 000000 724050 13743 20191130 43.3 24 25.4 24 1019.4 24 1017.2 24 10.0 24 5.8 24 11.1 999.9 52.0 37.0 0.00G 999.9 000000 724050 13743 20191201 42.7 24 36.7 24 1011.0 15 1007.1 24 7.2 24 6.7 24 12.0 999.9 45.0* 39.2* 0.08G 999.9 010000 724050 13743 20191202 41.7 24 36.9 24 1001.6 23 999.2 24 10.0 24 8.2 24 14.0 21.0 46.0 39.9 0.42G 999.9 010000 724050 13743 20191203 43.0 24 30.3 24 1006.0 24 1003.6 24 10.0 24 13.3 24 21.0 29.9 50.0 39.0 0.01G 999.9 010000 724050 13743 20191204 41.7 24 31.6 24 1003.8 24 1001.5 4 10.0 24 6.8 24 12.0 999.9 50.0 36.0 0.00G 999.9 010000 724050 13743 20191205 44.0 24 26.7 24 1010.2 24 1007.9 24 10.0 24 9.4 24 17.1 25.1 50.0 36.0 0.01G 999.9 010000 724050 13743 20191206 43.2 24 28.8 24 1020.4 24 1018.1 24 10.0 24 5.9 24 9.9 999.9 52.0 36.0 0.00G 999.9 000000 724050 13743 20191207 43.5 24 25.7 24 1026.6 24 1024.3 24 10.0 24 7.2 24 19.0 24.1 53.1 34.0 0.00G 999.9 000000 724050 13743 20191208 37.9 24 27.5 24 1032.2 24 1029.8 24 10.0 24 3.4 24 9.9 999.9 48.0 30.9 0.00G 999.9 000000 724050 13743 20191209 45.6 24 42.6 24 1022.4 16 1018.1 24 6.7 24 6.0 24 13.0 999.9 48.0 30.9 0.01G 999.9 110000 724050 13743 20191210 54.7 24 51.7 24 1011.3 18 1008.6 24 9.7 24 10.4 24 17.1 22.9 60.1 44.1 0.74G 999.9 010000 724050 13743 20191211 39.3 24 28.2 24 1025.9 24 1023.3 24 9.7 24 11.4 24 20.0 27.0 60.1 33.1 0.22G 999.9 011000 724050 13743 20191212 34.7 24 16.8 24 1037.8 24 1035.5 24 10.0 24 6.0 24 14.0 999.9 42.1 28.9 0.09G 999.9 000000 724050 13743 20191213 36.8 24 29.6 24 1030.2 20 1026.8 24 6.8 24 5.0 24 8.9 999.9 42.1 28.9 0.00G 999.9 010000 724050 13743 20191214 44.7 24 43.0 24 1000.2 12 999.3 23 5.1 24 6.3 24 14.0 31.1 52.0 33.1 0.30G 999.9 010000 724050 13743 20191215 47.3 24 32.6 24 1009.8 24 1008.7 23 10.0 24 9.7 24 19.0 26.0 57.0 39.9 0.09G 999.9 000000 724050 13743 20191216 37.6 24 29.8 24 1023.1 16 1021.0 24 7.5 24 7.3 24 13.0 999.9 57.0 34.0 0.09G 999.9 011000 724050 13743 20191217 38.2 24 36.8 24 1012.0 13 1010.3 24 5.2 24 6.0 24 15.9 999.9 42.8* 36.0* 0.40G 999.9 110000 724050 13743 20191218 37.9 24 23.5 24 1014.4 24 1012.1 24 9.9 24 12.3 24 19.0 27.0 44.1 30.9 0.05G 999.9 010000 724050 13743 20191219 28.6 24 8.9 24 1028.0 24 1025.8 24 10.0 24 11.8 24 24.1 33.0 44.1 21.9 0.00G 999.9 000000 724050 13743 20191220 32.3 24 17.4 24 1034.2 24 1031.8 24 10.0 24 4.5 24 8.9 999.9 43.0 21.9 0.00G 999.9 000000 724050 13743 20191221 33.2 24 21.4 24 1036.2 24 1033.9 24 10.0 24 2.9 24 7.0 999.9 43.0 24.1 0.00G 999.9 000000 724050 13743 20191222 34.8 24 27.3 24 1030.3 24 1028.0 24 8.0 24 3.2 24 8.0 999.9 46.9 27.0 0.00G 999.9 000000 724050 13743 20191223 38.2 24 31.6 24 1022.9 24 1020.6 24 7.8 24 3.5 24 8.0 999.9 53.1 27.0 0.00G 999.9 000000 724050 13743 20191224 42.3 24 32.9 24 1018.5 24 1016.3 24 9.7 24 4.7 24 11.1 999.9 54.0 30.0 0.00G 999.9 000000 724050 13743 20191225 38.8 24 30.6 24 1022.2 24 1019.9 24 7.8 24 2.4 24 4.1 999.9 54.0 30.0 0.00G 999.9 000000 724050 13743 20191226 40.2 24 34.4 24 1023.4 24 1021.1 24 8.2 24 3.4 24 6.0 999.9 55.0 30.0 0.00G 999.9 000000 724050 13743 20191227 45.7 24 42.0 24 1025.3 21 1023.2 24 8.4 24 3.3 24 8.9 999.9 55.9 30.9 0.00G 999.9 100000 724050 13743 20191228 49.6 24 43.0 24 1023.3 24 1020.9 24 8.5 24 3.1 24 12.0 999.9 66.9 37.9 0.00G 999.9 100000 724050 13743 20191229 48.9 24 45.4 24 1022.3 18 1018.9 24 5.8 24 3.6 24 6.0 999.9 66.9 37.9 0.00G 999.9 110000 724050 13743 20191230 55.0 24 53.4 24 1004.2 12 1003.8 24 5.3 24 5.6 24 15.0 20.0 66.0 44.1 0.70G 999.9 110000 724050 13743 20191231 47.4 24 40.4 24 1006.4 18 1004.3 24 8.5 24 7.4 24 13.0 999.9 66.0 43.0 0.16G 999.9 000000 fluids-1.0.22/tests/gsod/2019/722324-03071.op0000644000175000017500000014327214302004506016657 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20190101 34.2 24 25.1 24 9999.9 0 921.6 24 10.0 24 10.2 24 19.0 25.1 55.2 26.6 0.00G 999.9 000000 722324 03071 20190102 28.7 24 25.9 24 9999.9 0 922.9 24 6.6 24 6.7 24 8.9 999.9 31.8 27.1 0.00G 999.9 000000 722324 03071 20190103 36.8 24 26.2 24 9999.9 0 919.2 24 9.8 24 6.6 24 15.0 20.0 55.8 28.0 0.00G 999.9 001000 722324 03071 20190104 44.6 24 23.2 24 9999.9 0 919.0 24 10.0 24 7.8 24 12.0 15.9 65.3 32.0 0.00G 999.9 000000 722324 03071 20190105 47.0 24 26.1 24 9999.9 0 920.3 24 10.0 24 3.5 24 12.0 999.9 69.8 29.7 0.00G 999.9 000000 722324 03071 20190106 56.9 24 37.6 24 9999.9 0 917.4 24 10.0 24 7.9 24 15.0 18.1 70.3 49.6 0.00G 999.9 000000 722324 03071 20190107 59.2 24 41.9 24 9999.9 0 918.8 24 10.0 24 7.8 24 13.0 15.9 70.0 45.1 0.00G 999.9 010000 722324 03071 20190108 52.8 24 31.6 24 9999.9 0 924.2 24 10.0 24 7.2 24 14.0 19.0 63.3 40.1 0.00G 999.9 000000 722324 03071 20190109 47.7 24 26.2 24 9999.9 0 932.5 24 10.0 24 7.0 24 9.9 999.9 54.0 41.9 0.00G 999.9 000000 722324 03071 20190110 52.0 24 37.3 24 9999.9 0 926.1 21 10.0 24 7.4 24 15.0 15.9 64.9 45.5 0.00G 999.9 000000 722324 03071 20190111 55.2 24 48.9 24 9999.9 0 916.6 24 9.0 24 9.5 24 20.0 28.0 64.9 51.3 0.01G 999.9 010000 722324 03071 20190112 47.4 24 38.1 24 9999.9 0 920.1 24 10.0 24 9.0 24 15.9 24.1 56.3 38.3 99.99 999.9 010000 722324 03071 20190113 40.6 24 32.6 24 9999.9 0 927.0 24 10.0 24 5.1 24 12.0 15.9 51.8 32.0 0.00G 999.9 000000 722324 03071 20190114 37.8 24 34.1 24 9999.9 0 928.9 24 6.4 24 4.2 24 13.0 14.0 46.9 33.4 0.00G 999.9 000000 722324 03071 20190115 46.3 24 40.3 24 9999.9 0 925.4 24 9.8 24 5.4 24 8.9 999.9 57.7 43.3 0.00G 999.9 000000 722324 03071 20190116 51.1 24 43.5 24 9999.9 0 921.9 24 7.7 24 5.4 24 15.0 19.0 72.9 39.7 0.00G 999.9 100000 722324 03071 20190117 58.1 24 36.0 24 9999.9 0 922.0 24 10.0 24 7.0 24 9.9 999.9 74.7 41.0 0.00G 999.9 000000 722324 03071 20190118 59.6 24 39.2 24 9999.9 0 915.9 24 10.0 24 11.5 24 28.9 38.1 72.9 50.5 0.00G 999.9 000000 722324 03071 20190119 49.1 24 30.6 24 9999.9 0 922.3 24 10.0 24 12.7 24 26.0 33.0 61.7 36.0 0.00G 999.9 010000 722324 03071 20190120 47.4 24 28.4 24 9999.9 0 925.2 24 9.8 24 5.9 24 13.0 15.0 65.3 36.5 0.00G 999.9 000000 722324 03071 20190121 53.8 24 32.8 24 9999.9 0 916.3 24 9.4 24 10.6 24 15.9 20.0 71.2 42.8 0.00G 999.9 000000 722324 03071 20190122 54.0 24 37.2 24 9999.9 0 910.3 24 10.0 24 12.5 24 24.1 33.0 65.1 43.9 0.00G 999.9 000000 722324 03071 20190123 39.0 24 19.4 24 9999.9 0 923.7 24 10.0 24 7.7 24 18.1 27.0 54.5 27.0 0.00G 999.9 000000 722324 03071 20190124 44.6 24 19.8 24 9999.9 0 918.4 24 10.0 24 8.0 24 17.1 21.0 56.5 34.3 0.00G 999.9 000000 722324 03071 20190125 40.8 24 25.1 24 9999.9 0 924.4 24 10.0 24 4.4 24 8.9 999.9 63.1 27.0 0.00G 999.9 000000 722324 03071 20190126 42.9 24 31.0 24 9999.9 0 922.8 24 10.0 24 4.6 24 9.9 14.0 59.9 29.3 0.00G 999.9 000000 722324 03071 20190127 46.0 24 23.9 24 9999.9 0 923.6 24 10.0 24 6.3 24 12.0 18.1 61.0 30.9 0.00G 999.9 000000 722324 03071 20190128 50.4 24 24.9 24 9999.9 0 914.8 24 9.9 24 10.9 24 25.1 32.1 58.3 40.5 0.00G 999.9 000000 722324 03071 20190129 38.5 24 19.8 24 9999.9 0 925.2 24 10.0 24 7.0 24 19.0 25.1 52.7 27.5 0.00G 999.9 000000 722324 03071 20190130 42.4 24 23.2 24 9999.9 0 920.1 24 10.0 24 6.1 24 9.9 15.0 54.7 34.2 0.00G 999.9 000000 722324 03071 20190131 48.3 24 33.4 24 9999.9 0 917.9 23 9.5 24 7.0 24 11.1 17.1 72.1 37.4 0.00G 999.9 000000 722324 03071 20190201 55.3 24 44.1 24 9999.9 0 918.4 24 8.2 24 6.9 24 11.1 15.9 71.6 44.4 0.00G 999.9 100000 722324 03071 20190202 59.6 24 50.7 24 9999.9 0 918.9 24 9.0 24 9.4 24 14.0 18.1 72.9 52.3 0.01G 999.9 010000 722324 03071 20190203 60.9 24 45.9 24 9999.9 0 913.7 24 10.0 24 10.0 24 19.0 25.1 76.1 50.4 0.00G 999.9 000000 722324 03071 20190204 65.4 24 41.6 24 9999.9 0 913.2 24 10.0 24 8.5 24 14.0 20.0 78.4 50.9 0.00G 999.9 000000 722324 03071 20190205 63.8 24 47.0 24 9999.9 0 912.5 24 10.0 24 7.6 24 13.0 18.1 76.6 51.8 0.00G 999.9 000000 722324 03071 20190206 66.7 24 45.7 24 9999.9 0 911.4 24 9.5 24 7.8 24 20.0 28.9 79.7 57.6 0.00G 999.9 000000 722324 03071 20190207 56.2 24 27.3 24 9999.9 0 917.0 24 9.4 24 10.1 24 19.0 25.1 75.2 39.4 0.00G 999.9 010000 722324 03071 20190208 33.8 24 16.4 24 9999.9 0 930.6 24 9.5 24 9.0 24 14.0 17.1 53.6 23.7 0.00G 999.9 000000 722324 03071 20190209 34.5 24 22.2 24 9999.9 0 929.5 24 10.0 24 8.3 24 13.0 15.9 40.6 30.6 0.00G 999.9 000000 722324 03071 20190210 41.9 24 36.8 24 9999.9 0 921.1 24 10.0 24 7.0 24 12.0 15.9 52.9 38.7 0.00G 999.9 000000 722324 03071 20190211 50.5 24 44.8 24 9999.9 0 913.5 24 9.0 24 6.8 24 26.0 38.1 66.9 42.8 0.00G 999.9 010000 722324 03071 20190212 48.7 24 21.2 24 9999.9 0 922.0 24 9.7 24 7.9 24 17.1 28.0 64.6 30.2 0.00G 999.9 000000 722324 03071 20190213 48.3 24 26.8 24 9999.9 0 922.5 24 10.0 24 7.9 24 15.9 21.0 68.4 31.5 0.00G 999.9 000000 722324 03071 20190214 61.5 24 30.0 24 9999.9 0 913.5 24 10.0 24 11.5 24 15.9 22.9 80.1 51.4 0.00G 999.9 000000 722324 03071 20190215 70.1 24 38.6 24 9999.9 0 911.5 24 10.0 24 11.8 24 22.0 28.0 82.4 59.9 0.00G 999.9 000000 722324 03071 20190216 56.4 24 35.2 24 9999.9 0 911.0 24 10.0 24 9.6 24 25.1 35.0 79.5 34.9 0.00G 999.9 000000 722324 03071 20190217 53.5 24 23.7 24 9999.9 0 912.2 24 10.0 24 7.1 24 15.0 20.0 76.3 35.6 0.00G 999.9 000000 722324 03071 20190218 42.0 24 27.2 24 9999.9 0 919.5 24 10.0 24 9.3 24 15.9 22.0 54.7 33.4 0.00G 999.9 000000 722324 03071 20190219 34.2 24 22.3 24 9999.9 0 918.6 24 10.0 24 11.2 24 17.1 22.0 40.5 31.1 0.00G 999.9 000000 722324 03071 20190220 39.9 24 22.3 24 9999.9 0 915.0 24 10.0 24 6.7 24 12.0 17.1 59.4 30.9 0.00G 999.9 000000 722324 03071 20190221 53.4 24 28.7 24 9999.9 0 912.0 24 10.0 24 10.6 24 20.0 24.1 66.6 46.4 0.00G 999.9 000000 722324 03071 20190222 53.7 24 38.8 24 9999.9 0 912.4 24 9.8 24 7.1 24 19.0 25.1 73.4 38.3 0.00G 999.9 000000 722324 03071 20190223 55.3 24 29.4 24 9999.9 0 913.2 24 9.3 24 17.6 24 27.0 35.0 72.5 41.0 0.00G 999.9 000000 722324 03071 20190224 45.3 24 18.1 24 9999.9 0 924.8 24 10.0 24 5.2 24 13.0 19.0 63.5 28.0 0.00G 999.9 000000 722324 03071 20190225 51.6 24 28.1 24 9999.9 0 921.7 24 10.0 24 9.4 24 17.1 22.9 70.7 37.0 0.00G 999.9 000000 722324 03071 20190226 60.0 24 41.4 24 9999.9 0 919.4 24 10.0 24 9.4 24 13.0 19.0 79.3 49.5 0.00G 999.9 000000 722324 03071 20190227 64.1 24 38.8 24 9999.9 0 919.0 24 9.9 24 5.3 24 15.9 21.0 80.4 53.8 0.00G 999.9 000000 722324 03071 20190228 43.7 21 34.3 21 9999.9 0 919.7 19 7.2 21 6.9 21 14.0 999.9 63.5 32.0 0.00G 999.9 100000 722324 03071 20190301 59.0 24 44.2 24 9999.9 0 916.4 19 6.7 24 3.5 24 9.9 14.0 83.8 45.9 0.00G 999.9 100000 722324 03071 20190302 52.9 24 37.6 24 9999.9 0 917.8 24 5.9 24 7.5 24 15.0 999.9 81.5 41.0 0.00G 999.9 100000 722324 03071 20190303 36.4 24 35.4 24 9999.9 0 919.7 24 3.1 24 11.2 24 17.1 21.0 45.1 30.7 0.00G 999.9 111000 722324 03071 20190304 28.8 24 17.3 24 9999.9 0 926.1 24 10.0 24 10.0 24 15.0 19.0 37.9 21.4 0.00G 999.9 000000 722324 03071 20190305 32.0 24 14.9 24 9999.9 0 929.0 24 10.0 24 5.3 24 8.9 15.0 50.4 22.5 0.00G 999.9 000000 722324 03071 20190306 41.1 24 21.9 24 9999.9 0 926.4 18 10.0 24 8.6 24 15.9 21.0 60.3 30.7 0.00G 999.9 000000 722324 03071 20190307 53.8 24 31.3 24 9999.9 0 918.2 24 10.0 24 8.6 24 15.0 18.1 75.2 41.0 0.03G 999.9 000000 722324 03071 20190308 65.2 24 41.1 24 9999.9 0 913.8 24 10.0 24 6.6 24 12.0 14.0 82.4 52.2 0.00G 999.9 000000 722324 03071 20190309 62.5 24 38.8 24 9999.9 0 912.8 24 9.8 24 11.3 24 22.0 31.1 75.9 49.3 0.05G 999.9 010000 722324 03071 20190310 55.3 24 31.8 24 9999.9 0 916.8 24 10.0 24 7.0 24 17.1 20.0 68.2 45.7 0.05G 999.9 010000 722324 03071 20190311 46.6 24 43.6 24 9999.9 0 922.4 24 5.0 24 6.6 24 11.1 999.9 50.5 44.4 0.00G 999.9 110000 722324 03071 20190312 56.6 24 56.3 24 9999.9 0 917.8 24 2.0 24 9.3 24 22.9 31.1 69.1 50.2 0.00G 999.9 110000 722324 03071 20190313 58.6 24 43.4 24 9999.9 0 905.6 24 9.5 24 21.4 24 36.9 47.0 69.8 48.2 0.01G 999.9 010010 722324 03071 20190314 57.5 24 30.5 24 9999.9 0 915.0 24 8.5 24 13.3 24 35.9 45.1 68.2 43.3 0.00G 999.9 000000 722324 03071 20190315 46.9 24 25.9 24 9999.9 0 928.4 24 10.0 24 10.3 24 15.0 20.0 58.1 35.6 0.00G 999.9 000000 722324 03071 20190316 47.1 24 26.0 24 9999.9 0 929.2 24 10.0 24 5.2 24 12.0 15.9 58.3 36.9 0.00G 999.9 000000 722324 03071 20190317 51.9 24 30.7 24 9999.9 0 927.2 24 10.0 24 2.6 24 8.9 14.0 66.6 39.6 0.00G 999.9 000000 722324 03071 20190318 53.8 24 32.2 24 9999.9 0 925.1 24 10.0 24 3.7 24 9.9 17.1 68.2 37.6 0.00G 999.9 000000 722324 03071 20190319 57.1 24 34.4 24 9999.9 0 923.5 24 10.0 24 7.0 24 12.0 17.1 69.6 45.5 0.00G 999.9 000000 722324 03071 20190320 56.0 24 40.8 24 9999.9 0 923.9 24 10.0 24 8.4 24 15.9 22.9 68.0 45.7 0.00G 999.9 000000 722324 03071 20190321 56.4 24 42.4 24 9999.9 0 925.2 24 10.0 24 4.1 24 13.0 18.1 70.7 42.4 0.00G 999.9 000000 722324 03071 20190322 60.2 24 51.2 24 9999.9 0 920.0 24 9.9 24 9.0 24 24.1 35.9 69.8 52.2 0.00G 999.9 010010 722324 03071 20190323 63.4 24 48.3 24 9999.9 0 917.4 24 8.4 24 7.9 24 14.0 18.1 77.2 51.4 0.04G 999.9 100000 722324 03071 20190324 67.1 24 42.9 24 9999.9 0 918.3 24 9.1 24 7.3 24 15.0 19.0 83.7 57.4 0.00G 999.9 100000 722324 03071 20190325 63.6 24 39.8 24 9999.9 0 922.0 24 10.0 24 7.4 24 14.0 15.9 81.5 47.8 0.00G 999.9 000000 722324 03071 20190326 61.8 24 46.8 24 9999.9 0 925.6 24 10.0 24 8.4 24 15.0 21.0 77.0 49.1 0.00G 999.9 000000 722324 03071 20190327 67.1 24 53.9 24 9999.9 0 922.0 24 10.0 24 11.1 24 18.1 22.9 79.2 57.2 0.00G 999.9 000000 722324 03071 20190328 69.6 24 58.3 24 9999.9 0 918.5 24 10.0 24 10.8 24 17.1 22.9 87.1 60.8 0.00G 999.9 000000 722324 03071 20190329 71.8 24 53.5 24 9999.9 0 914.6 20 10.0 24 10.8 24 24.1 31.1 90.0 59.9 0.00G 999.9 010000 722324 03071 20190330 61.0 24 35.2 24 9999.9 0 917.8 23 9.8 24 13.0 24 20.0 28.0 87.8 46.4 0.00G 999.9 000000 722324 03071 20190331 46.3 24 27.4 24 9999.9 0 928.4 20 10.0 24 9.2 24 15.9 22.0 56.7 36.0 0.00G 999.9 000000 722324 03071 20190401 49.2 24 24.9 24 9999.9 0 924.4 24 9.9 24 7.2 24 14.0 20.0 66.2 37.2 0.00G 999.9 000000 722324 03071 20190402 58.4 24 34.1 24 9999.9 0 919.8 24 10.0 24 9.2 24 15.9 20.0 78.8 44.2 0.00G 999.9 000000 722324 03071 20190403 66.5 24 44.4 24 9999.9 0 915.7 24 10.0 24 12.0 24 18.1 22.9 85.3 54.0 0.00G 999.9 000000 722324 03071 20190404 67.9 24 44.7 24 9999.9 0 917.3 24 9.5 24 9.1 24 15.9 22.0 86.0 51.3 0.00G 999.9 000000 722324 03071 20190405 69.2 24 41.1 24 9999.9 0 916.9 24 9.9 24 8.0 24 15.9 22.0 85.3 54.3 0.00G 999.9 000000 722324 03071 20190406 72.1 24 46.9 24 9999.9 0 913.5 24 10.0 24 7.8 24 14.0 21.0 83.5 58.1 0.00G 999.9 010010 722324 03071 20190407 69.4 24 33.3 24 9999.9 0 915.2 24 10.0 24 4.4 24 12.0 999.9 86.9 53.8 0.00G 999.9 000000 722324 03071 20190408 69.0 24 47.9 24 9999.9 0 919.1 24 9.3 24 3.9 24 11.1 15.0 89.6 49.5 0.00G 999.9 000000 722324 03071 20190409 77.4 24 38.4 24 9999.9 0 915.8 24 10.0 24 7.2 24 14.0 21.0 96.4 58.3 0.00G 999.9 000000 722324 03071 20190410 81.8 24 34.6 24 9999.9 0 906.9 24 9.7 24 12.0 24 28.0 35.9 98.1 64.6 0.00G 999.9 000000 722324 03071 20190411 68.1 24 21.7 24 9999.9 0 907.2 24 8.7 24 13.8 24 26.0 32.1 88.9 52.5 0.00G 999.9 000000 722324 03071 20190412 60.7 24 28.5 24 9999.9 0 910.2 24 9.3 24 7.6 24 20.0 35.0 77.0 44.2 0.00G 999.9 000000 722324 03071 20190413 51.2 24 42.7 24 9999.9 0 911.7 24 7.7 24 13.9 24 22.0 31.1 73.4 44.6 0.15G 999.9 010010 722324 03071 20190414 50.7 24 40.6 24 9999.9 0 918.8 24 8.5 24 6.7 24 14.0 19.0 75.7 37.9 0.18G 999.9 000000 722324 03071 20190415 68.0 24 44.1 24 9999.9 0 915.0 24 10.0 24 11.5 24 15.9 21.0 86.4 55.8 0.00G 999.9 000000 722324 03071 20190416 70.6 24 50.7 24 9999.9 0 913.3 24 10.0 24 12.0 24 15.0 20.0 86.0 60.8 0.00G 999.9 000000 722324 03071 20190417 71.4 24 51.8 24 9999.9 0 911.1 24 10.0 24 12.7 24 26.0 32.1 84.4 62.8 0.00G 999.9 000000 722324 03071 20190418 65.3 24 42.1 24 9999.9 0 915.2 24 10.0 24 13.3 24 22.0 29.9 76.1 56.3 0.00G 999.9 000000 722324 03071 20190419 62.7 24 39.1 24 9999.9 0 922.6 24 8.9 24 3.7 24 14.0 19.0 77.4 46.8 0.00G 999.9 000000 722324 03071 20190420 68.0 24 41.0 24 9999.9 0 918.9 24 8.8 24 7.8 24 17.1 26.0 89.4 50.9 0.00G 999.9 000000 722324 03071 20190421 77.1 24 45.3 24 9999.9 0 913.2 24 9.5 24 11.6 24 18.1 24.1 92.3 63.3 0.00G 999.9 000000 722324 03071 20190422 73.1 24 55.9 24 9999.9 0 915.2 24 9.0 24 7.6 24 15.0 19.0 90.5 64.6 0.00G 999.9 000000 722324 03071 20190423 67.5 24 60.6 24 9999.9 0 916.9 24 7.6 24 7.5 24 13.0 24.1 76.3 58.3 0.00G 999.9 010010 722324 03071 20190424 58.8 24 55.5 24 9999.9 0 916.5 24 7.5 24 7.6 24 19.0 31.1 65.3 55.0 0.04G 999.9 010010 722324 03071 20190425 65.8 24 53.0 24 9999.9 0 915.6 24 7.1 24 5.8 24 9.9 15.0 89.6 52.9 0.00I 999.9 000000 722324 03071 20190426 69.5 24 52.9 24 9999.9 0 922.2 24 8.9 24 9.0 24 15.9 22.0 85.1 58.1 0.01G 999.9 000000 722324 03071 20190427 74.3 24 55.0 24 9999.9 0 915.6 24 9.9 24 8.2 24 17.1 19.0 93.2 61.2 0.00G 999.9 000000 722324 03071 20190428 76.6 24 55.7 24 9999.9 0 912.2 24 8.8 24 8.2 24 14.0 20.0 90.5* 58.3* 0.00G 999.9 000000 722324 03071 20190429 76.9 24 61.8 24 9999.9 0 912.3 14 9.5 24 9.2 24 14.0 21.0 90.1 65.3 0.00G 999.9 000000 722324 03071 20190430 74.4 24 61.8 24 9999.9 0 913.1 23 8.1 24 9.0 24 15.0 27.0 89.4 65.1 0.00G 999.9 010010 722324 03071 20190501 76.8 24 61.9 24 9999.9 0 913.9 19 6.9 24 6.0 24 13.0 17.1 91.4 65.3 0.00G 999.9 000000 722324 03071 20190502 74.1 24 61.6 24 9999.9 0 915.6 24 8.2 24 9.0 24 17.1 22.0 87.8 67.5 0.00G 999.9 000000 722324 03071 20190503 68.6 24 60.5 24 9999.9 0 915.5 24 8.5 24 8.1 24 22.9 29.9 79.3 62.6 0.00G 999.9 010010 722324 03071 20190504 64.8 24 54.5 24 9999.9 0 915.9 24 6.7 24 6.1 24 15.0 22.0 79.0* 53.6* 0.00G 999.9 000000 722324 03071 20190505 73.4 24 60.9 24 9999.9 0 913.5 24 10.0 24 10.0 24 22.0 35.9 89.8 62.8 0.00G 999.9 000000 722324 03071 20190506 73.9 24 55.0 24 9999.9 0 913.3 24 9.6 24 10.3 24 22.0 34.0 89.6 60.1 0.00G 999.9 000000 722324 03071 20190507 75.2 24 62.7 24 9999.9 0 913.8 24 8.1 24 13.5 24 19.0 24.1 85.5 68.2 0.00G 999.9 010000 722324 03071 20190508 73.4 24 52.4 24 9999.9 0 909.6 24 8.7 24 8.8 24 15.9 22.9 86.4 61.3 0.00G 999.9 010000 722324 03071 20190509 68.4 24 45.6 24 9999.9 0 913.8 24 9.8 24 9.9 24 17.1 24.1 85.1 57.2 0.00G 999.9 000000 722324 03071 20190510 51.5 24 43.9 24 9999.9 0 920.0 24 9.5 24 11.8 24 21.0 26.0 67.8 45.1 0.00G 999.9 010000 722324 03071 20190511 54.0 24 48.4 24 9999.9 0 918.1 24 9.5 24 4.9 24 12.0 15.0 74.5 47.3 0.16G 999.9 010000 722324 03071 20190512 65.9 24 52.9 24 9999.9 0 915.6 24 9.4 24 3.8 24 8.0 999.9 81.0 52.9 0.17G 999.9 000000 722324 03071 20190513 67.2 24 55.8 24 9999.9 0 916.5 24 8.3 24 5.3 24 15.0 28.0 78.3 58.1 0.00G 999.9 010010 722324 03071 20190514 64.5 24 57.2 24 9999.9 0 918.4 24 8.9 24 2.8 24 12.0 15.0 82.8 53.8 0.01G 999.9 010000 722324 03071 20190515 72.7 24 59.5 24 9999.9 0 918.9 24 8.9 24 5.2 24 11.1 15.9 86.2 60.3 0.00G 999.9 000000 722324 03071 20190516 75.9 24 62.0 24 9999.9 0 917.1 24 9.5 24 9.7 24 15.9 21.0 85.5* 66.4* 0.00G 999.9 000000 722324 03071 20190517 78.5 24 62.3 24 9999.9 0 911.4 24 9.9 24 11.9 24 17.1 22.9 94.5 68.9 0.00G 999.9 000000 722324 03071 20190518 76.3 24 55.8 24 9999.9 0 909.0 24 9.4 24 10.1 24 22.9 29.9 87.1 64.4 0.00G 999.9 010000 722324 03071 20190519 71.0 24 38.6 24 9999.9 0 913.6 24 9.4 24 6.8 24 15.9 22.0 89.6 51.4 0.00G 999.9 000000 722324 03071 20190520 79.1 24 63.2 24 9999.9 0 909.3 24 6.3 24 14.6 24 22.9 32.1 90.1 71.6 0.00G 999.9 010010 722324 03071 20190521 67.1 24 45.4 24 9999.9 0 906.8 24 8.4 24 11.4 24 24.1 33.0 81.5 52.9 0.01G 999.9 010010 722324 03071 20190522 73.5 24 43.6 24 9999.9 0 908.1 24 8.9 24 6.9 24 15.9 22.9 94.1* 57.4* 0.00I 999.9 000000 722324 03071 20190523 81.7 24 68.2 24 9999.9 0 911.3 24 8.6 24 15.3 24 22.0 28.0 91.9 76.3 0.00G 999.9 000000 722324 03071 20190524 80.1 24 69.4 24 9999.9 0 914.0 24 9.9 24 14.1 24 22.0 28.9 86.9 75.6 0.00G 999.9 000000 722324 03071 20190525 77.7 24 68.5 24 9999.9 0 915.4 24 10.0 24 11.2 24 22.0 28.9 85.3 73.2 0.00G 999.9 000000 722324 03071 20190526 76.6 24 67.3 24 9999.9 0 915.7 24 10.0 24 13.5 24 20.0 26.0 82.4 72.5 0.00G 999.9 000000 722324 03071 20190527 79.8 24 66.1 24 9999.9 0 913.1 24 10.0 24 12.4 24 20.0 27.0 94.6 70.9 0.00G 999.9 000000 722324 03071 20190528 82.2 24 54.8 24 9999.9 0 909.3 24 10.0 24 11.2 24 18.1 26.0 91.9 70.9 0.00G 999.9 000000 722324 03071 20190529 70.9 24 53.5 24 9999.9 0 910.5 24 8.7 24 6.4 24 21.0 36.9 90.5 55.8 0.13G 999.9 010010 722324 03071 20190530 68.8 24 60.7 24 9999.9 0 917.2 24 6.3 24 8.2 24 15.0 19.0 79.9 61.7 0.01G 999.9 010000 722324 03071 20190531 71.7 24 64.1 24 9999.9 0 919.4 22 7.4 24 6.5 24 11.1 14.0 84.2 65.8 0.00G 999.9 010000 722324 03071 20190601 79.5 24 67.0 24 9999.9 0 917.2 19 7.3 24 8.5 24 14.0 19.0 93.0 70.7 0.00G 999.9 000000 722324 03071 20190602 78.9 24 67.2 24 9999.9 0 916.4 24 9.6 24 10.6 24 22.9 29.9 88.7 67.3 0.00G 999.9 010010 722324 03071 20190603 76.2 24 65.0 24 9999.9 0 917.4 24 10.0 24 9.0 24 19.0 26.0 89.4 64.6 0.43G 999.9 010000 722324 03071 20190604 78.0 24 63.7 24 9999.9 0 917.3 24 10.0 24 7.5 24 13.0 22.9 91.4 66.2 0.00G 999.9 010000 722324 03071 20190605 74.1 13 63.7 13 9999.9 0 915.6 13 10.0 13 4.5 13 20.0 26.0 88.7 64.4 0.16G 999.9 010010 722324 03071 20190606 78.8 12 52.9 12 9999.9 0 915.0 12 10.0 12 8.4 12 13.0 18.1 87.6 59.0 0.00G 999.9 000000 722324 03071 20190607 76.6 24 58.2 24 9999.9 0 915.0 24 10.0 24 3.3 24 8.9 999.9 90.5 62.6 0.01G 999.9 000000 722324 03071 20190608 80.7 24 60.7 24 9999.9 0 914.0 24 9.9 24 8.7 24 15.0 18.1 99.3 66.9 0.00G 999.9 000000 722324 03071 20190609 83.7 24 64.0 24 9999.9 0 915.8 24 7.7 24 10.2 24 22.0 28.0 97.7 71.4 0.00G 999.9 000000 722324 03071 20190610 66.2 24 51.9 24 9999.9 0 928.2 24 5.5 24 13.5 24 19.0 27.0 74.5 61.7 0.00G 999.9 000000 722324 03071 20190611 70.3 24 53.2 24 9999.9 0 924.6 24 9.8 24 5.3 24 13.0 17.1 85.1 63.0 0.00G 999.9 000000 722324 03071 20190612 72.7 24 59.9 24 9999.9 0 919.4 24 10.0 24 10.9 24 15.0 21.0 85.8 62.2 0.00G 999.9 000000 722324 03071 20190613 75.6 24 55.0 24 9999.9 0 922.1 24 9.9 24 9.5 24 15.0 22.9 89.1 65.3 0.00G 999.9 000000 722324 03071 20190614 81.3 24 60.7 24 9999.9 0 916.3 24 10.0 24 13.7 24 20.0 28.0 98.1 70.7 0.00G 999.9 000000 722324 03071 20190615 85.0 24 53.8 24 9999.9 0 912.4 24 10.0 24 11.1 24 19.0 26.0 102.7 70.5 0.00G 999.9 000000 722324 03071 20190616 83.5 24 57.0 24 9999.9 0 912.7 24 10.0 24 8.6 24 17.1 24.1 99.5 71.8 0.00G 999.9 000000 722324 03071 20190617 79.4 24 64.9 24 9999.9 0 915.7 24 9.7 24 9.3 24 17.1 22.9 92.5 68.7 0.00G 999.9 000000 722324 03071 20190618 80.6 24 64.0 24 9999.9 0 916.3 24 10.0 24 10.4 24 24.1 31.1 97.0 67.5 0.00G 999.9 000000 722324 03071 20190619 82.4 24 53.3 24 9999.9 0 913.6 24 10.0 24 9.5 24 15.9 26.0 102.4 67.5 0.00G 999.9 000000 722324 03071 20190620 86.8 24 40.1 24 9999.9 0 911.7 24 10.0 24 7.2 24 19.0 26.0 104.7 67.8 0.00G 999.9 000000 722324 03071 20190621 90.1 24 52.8 24 9999.9 0 911.5 24 10.0 24 10.2 24 21.0 32.1 103.8 76.6 0.00G 999.9 000000 722324 03071 20190622 86.2 24 53.1 24 9999.9 0 912.3 24 10.0 24 10.6 24 24.1 35.0 101.7 75.6 0.00G 999.9 000000 722324 03071 20190623 85.3 24 60.3 24 9999.9 0 912.8 24 9.6 24 10.6 24 22.0 28.9 98.4 75.6 0.00G 999.9 000000 722324 03071 20190624 82.0 24 49.3 24 9999.9 0 913.7 24 10.0 24 6.0 24 11.1 999.9 98.8 65.3 0.00G 999.9 000000 722324 03071 20190625 80.1 24 59.5 24 9999.9 0 915.8 24 9.9 24 11.6 24 21.0 28.0 98.4 67.8 0.00G 999.9 000000 722324 03071 20190626 80.5 24 62.3 24 9999.9 0 919.3 24 9.9 24 12.1 24 19.0 25.1 92.8 68.4 0.00G 999.9 000000 722324 03071 20190627 81.0 24 63.1 24 9999.9 0 922.2 24 10.0 24 10.7 24 15.9 21.0 93.4 70.3 0.00I 999.9 000000 722324 03071 20190628 82.2 24 62.1 24 9999.9 0 922.1 22 10.0 24 11.1 24 15.0 20.0 93.6 71.4 0.00I 999.9 000000 722324 03071 20190629 82.3 24 58.0 24 9999.9 0 921.9 24 10.0 24 8.3 24 15.0 18.1 95.5 70.2 0.00I 999.9 000000 722324 03071 20190630 84.3 24 53.7 24 9999.9 0 919.8 24 9.8 24 5.9 24 21.0 25.1 99.1 66.9 0.00I 999.9 000000 722324 03071 20190701 82.0 24 57.8 24 9999.9 0 918.0 24 10.0 24 9.4 24 15.9 21.0 95.9 70.0 0.00I 999.9 000000 722324 03071 20190702 82.1 24 59.7 24 9999.9 0 916.9 24 9.8 24 9.7 24 17.1 24.1 93.4 72.1 0.00I 999.9 000000 722324 03071 20190703 83.4 24 62.6 24 9999.9 0 915.1 24 10.0 24 10.1 24 20.0 25.1 95.9 72.0 99.99 999.9 010010 722324 03071 20190704 81.2 24 62.7 24 9999.9 0 914.7 24 8.1 24 10.4 24 25.1 35.0 94.1 64.6 0.01G 999.9 010010 722324 03071 20190705 83.1 24 67.1 24 9999.9 0 917.2 24 8.8 24 10.0 24 15.9 20.0 95.4 72.1 0.00G 999.9 000000 722324 03071 20190706 83.1 24 66.1 24 9999.9 0 920.4 24 10.0 24 9.7 24 22.0 27.0 93.7 73.9 0.00I 999.9 000000 722324 03071 20190707 80.3 24 64.4 24 9999.9 0 920.1 24 9.6 24 9.1 24 21.0 25.1 90.9 74.1 0.00I 999.9 000000 722324 03071 20190708 80.3 24 64.1 24 9999.9 0 917.1 24 10.0 24 7.0 24 15.0 19.0 99.0 71.8 0.00I 999.9 000000 722324 03071 20190709 86.8 24 58.5 24 9999.9 0 915.9 24 10.0 24 8.9 24 15.9 20.0 104.0 75.9 0.00I 999.9 000000 722324 03071 20190710 88.7 24 53.5 24 9999.9 0 917.7 24 10.0 24 6.6 24 15.0 22.0 102.7 74.8 0.00I 999.9 000000 722324 03071 20190711 85.5 24 60.8 24 9999.9 0 920.6 24 10.0 24 6.2 24 21.0 32.1 97.2 73.2 99.99 999.9 010000 722324 03071 20190712 80.4 24 64.4 24 9999.9 0 918.7 24 9.8 24 4.6 24 14.0 22.0 96.8 72.0 0.01G 999.9 010010 722324 03071 20190713 82.4 24 58.1 24 9999.9 0 917.7 24 10.0 24 5.8 24 13.0 17.1 93.7 70.0 0.00G 999.9 000000 722324 03071 20190714 80.4 24 57.3 24 9999.9 0 919.3 23 10.0 24 4.6 24 9.9 15.0 93.9 66.4 0.00I 999.9 000000 722324 03071 20190715 85.5 24 59.1 24 9999.9 0 918.2 21 9.9 24 4.9 24 9.9 17.1 98.8 73.2 0.00I 999.9 000000 722324 03071 20190716 88.1 24 60.4 24 9999.9 0 917.1 24 10.0 24 9.1 24 14.0 18.1 99.3 75.6 0.00I 999.9 000000 722324 03071 20190717 86.8 24 63.7 24 9999.9 0 917.4 23 10.0 24 11.7 24 15.9 21.0 98.1 75.6 0.00I 999.9 000000 722324 03071 20190718 86.9 24 62.7 24 9999.9 0 916.4 24 10.0 24 11.7 24 17.1 22.0 100.4 77.5 99.99 999.9 010010 722324 03071 20190719 88.2 24 59.9 24 9999.9 0 915.2 24 10.0 24 12.0 24 15.9 22.9 101.5 76.6 0.00I 999.9 000000 722324 03071 20190720 87.8 24 58.9 24 9999.9 0 915.1 24 10.0 24 11.5 24 18.1 24.1 102.9 75.6 0.00I 999.9 000000 722324 03071 20190721 88.1 24 54.3 24 9999.9 0 915.2 24 10.0 24 11.4 24 15.9 22.9 101.1 75.7 0.00I 999.9 000000 722324 03071 20190722 86.6 24 56.3 24 9999.9 0 919.2 24 9.9 24 6.2 24 22.0 27.0 99.5 75.4 99.99 999.9 010010 722324 03071 20190723 76.4 24 61.5 24 9999.9 0 924.7 24 10.0 24 7.4 24 15.0 21.0 90.9 68.9 0.01G 999.9 010010 722324 03071 20190724 77.3 24 50.1 24 9999.9 0 924.0 24 9.9 24 5.7 24 15.9 19.0 89.8 63.7 0.00G 999.9 000000 722324 03071 20190725 78.4 24 47.4 24 9999.9 0 921.6 24 10.0 24 6.7 24 12.0 15.9 91.6 65.7 0.00I 999.9 000000 722324 03071 20190726 79.2 24 48.9 24 9999.9 0 921.5 24 10.0 24 8.9 24 13.0 21.0 92.3 66.0 0.00I 999.9 000000 722324 03071 20190727 81.7 24 52.0 24 9999.9 0 922.0 24 10.0 24 9.6 24 15.9 21.0 94.5 68.7 0.00I 999.9 000000 722324 03071 20190728 83.6 24 58.7 24 9999.9 0 919.7 24 10.0 24 10.4 24 15.9 21.0 98.1 73.0 0.00I 999.9 000000 722324 03071 20190729 86.1 24 59.5 24 9999.9 0 918.4 24 10.0 24 8.2 24 13.0 22.0 97.0 75.7 0.00I 999.9 000000 722324 03071 20190730 84.7 24 61.2 24 9999.9 0 919.8 23 9.9 24 4.8 24 14.0 20.0 97.5 71.8 0.00I 999.9 000000 722324 03071 20190731 87.2 24 58.1 24 9999.9 0 919.8 24 9.8 24 5.7 23 12.0 20.0 98.8 73.0 0.00I 999.9 000000 722324 03071 20190801 87.9 24 55.5 24 9999.9 0 919.7 24 10.0 24 8.5 24 15.9 25.1 100.4 74.7 0.00I 999.9 000000 722324 03071 20190802 87.5 24 55.5 24 9999.9 0 919.2 24 10.0 24 8.2 24 15.0 20.0 100.6 73.4 0.00G 999.9 000000 722324 03071 20190803 89.7 24 55.9 24 9999.9 0 917.4 24 10.0 24 6.6 24 11.1 15.0 101.7 75.4 0.00G 999.9 000000 722324 03071 20190804 86.1 24 61.4 24 9999.9 0 918.4 24 9.6 24 8.7 24 21.0 26.0 98.4 76.6 0.00G 999.9 000000 722324 03071 20190805 85.3 24 58.5 24 9999.9 0 918.7 24 10.0 24 5.3 24 12.0 14.0 98.1 70.9 0.00G 999.9 000000 722324 03071 20190806 88.1 24 59.6 24 9999.9 0 917.5 24 10.0 24 6.6 24 12.0 15.9 101.8 77.2 0.00G 999.9 000000 722324 03071 20190807 89.8 24 60.4 24 9999.9 0 916.6 24 9.9 24 7.3 24 13.0 18.1 102.6 78.1 0.00G 999.9 000000 722324 03071 20190808 90.1 24 60.2 24 9999.9 0 915.5 24 10.0 24 9.9 24 15.0 19.0 101.5 77.4 0.00G 999.9 000000 722324 03071 20190809 89.3 24 62.0 24 9999.9 0 915.4 24 10.0 24 10.0 24 15.0 19.0 100.6 78.3 0.00G 999.9 000000 722324 03071 20190810 89.0 24 61.0 24 9999.9 0 915.8 24 10.0 24 10.0 24 15.9 21.0 101.7 76.6 0.00G 999.9 010010 722324 03071 20190811 90.0 24 59.5 24 9999.9 0 916.9 23 9.7 24 11.2 24 15.9 21.0 102.6 77.4 0.00G 999.9 000000 722324 03071 20190812 91.2 24 57.3 24 9999.9 0 913.4 4 10.0 24 10.0 24 15.0 21.0 106.5 78.1 0.00G 999.9 000000 722324 03071 20190813 91.9 24 58.8 24 9999.9 0 915.7 22 10.0 24 7.0 24 13.0 18.1 103.5 80.2 0.00G 999.9 000000 722324 03071 20190814 85.9 24 64.5 24 9999.9 0 919.7 24 10.0 24 10.2 24 17.1 22.9 99.7 76.8 0.00G 999.9 000000 722324 03071 20190815 85.3 24 61.3 24 9999.9 0 920.2 24 9.8 24 4.4 24 22.0 29.9 99.0 75.7 0.00G 999.9 000000 722324 03071 20190816 88.6 24 56.8 24 9999.9 0 917.3 24 10.0 24 7.4 24 15.0 19.0 103.1 77.0 0.00G 999.9 000000 722324 03071 20190817 89.9 24 57.6 24 9999.9 0 914.1 24 9.9 24 9.7 24 22.0 29.9 104.4 79.0 0.01G 999.9 010000 722324 03071 20190818 90.5 24 60.1 24 9999.9 0 913.4 24 9.8 24 10.4 24 18.1 28.9 105.8 80.2 0.00G 999.9 000000 722324 03071 20190819 91.6 24 60.6 24 9999.9 0 916.2 24 10.0 24 10.7 24 15.0 21.0 102.6 78.8 0.00G 999.9 000000 722324 03071 20190820 88.2 24 59.7 24 9999.9 0 918.9 24 10.0 24 9.1 24 15.0 21.0 99.9 77.2 0.00G 999.9 000000 722324 03071 20190821 86.1 24 57.3 24 9999.9 0 919.0 24 10.0 24 8.1 24 13.0 17.1 96.6 73.8 0.00G 999.9 000000 722324 03071 20190822 85.2 24 58.8 24 9999.9 0 916.7 24 10.0 24 8.4 24 14.0 20.0 95.9 75.2 0.00G 999.9 000000 722324 03071 20190823 80.4 24 63.6 24 9999.9 0 916.1 24 9.8 24 8.1 24 15.9 25.1 93.9 71.2 0.00G 999.9 010010 722324 03071 20190824 80.6 24 66.4 24 9999.9 0 916.9 24 10.0 24 6.0 24 14.0 17.1 94.5 70.0 0.01G 999.9 000000 722324 03071 20190825 86.5 24 61.4 24 9999.9 0 914.7 24 10.0 24 9.4 24 15.9 21.0 106.9 73.8 0.00G 999.9 000000 722324 03071 20190826 94.0 24 50.9 24 9999.9 0 910.5 24 10.0 24 8.1 24 15.0 18.1 112.1 76.3 0.00G 999.9 000000 722324 03071 20190827 89.9 24 59.7 24 9999.9 0 913.0 24 10.0 24 10.5 24 19.0 26.0 109.6 77.0 0.00G 999.9 000000 722324 03071 20190828 78.0 24 68.4 24 9999.9 0 920.2 24 9.6 24 8.0 24 15.9 24.1 91.2 68.4 0.00G 999.9 010010 722324 03071 20190829 84.4 24 64.4 24 9999.9 0 919.1 24 8.0 24 8.4 24 14.0 17.1 99.0 72.5 0.00G 999.9 000000 722324 03071 20190830 87.6 24 58.8 24 9999.9 0 918.2 24 9.6 24 8.9 24 15.0 19.0 99.0 77.0 0.00G 999.9 000000 722324 03071 20190831 84.7 24 58.4 24 9999.9 0 919.8 23 10.0 24 6.6 24 12.0 17.1 97.2 71.1 0.00G 999.9 000000 722324 03071 20190901 82.1 24 59.9 24 9999.9 0 921.4 19 10.0 24 5.9 24 15.0 22.9 95.4 70.2 0.00G 999.9 000000 722324 03071 20190902 81.4 24 59.7 24 9999.9 0 921.3 24 10.0 24 5.1 24 15.9 22.0 95.4 68.0 0.00G 999.9 000000 722324 03071 20190903 82.9 24 57.4 24 9999.9 0 919.6 24 10.0 24 6.1 23 11.1 15.9 95.9 71.1 0.00G 999.9 000000 722324 03071 20190904 83.0 24 54.5 24 9999.9 0 920.8 24 10.0 24 6.9 24 12.0 19.0 93.6 68.5 0.00G 999.9 000000 722324 03071 20190905 82.1 24 57.0 24 9999.9 0 922.9 24 10.0 24 6.8 24 12.0 17.1 93.2 70.3 0.00G 999.9 000000 722324 03071 20190906 83.3 24 58.6 24 9999.9 0 921.7 24 10.0 24 7.0 24 15.9 22.9 95.5 72.7 0.00G 999.9 000000 722324 03071 20190907 85.5 24 57.8 24 9999.9 0 920.0 24 10.0 24 8.1 24 15.0 19.0 95.7 73.9 0.00G 999.9 000000 722324 03071 20190908 85.0 24 57.2 24 9999.9 0 916.6 24 10.0 24 10.8 24 18.1 22.9 96.8 73.2 0.00G 999.9 010000 722324 03071 20190909 78.0 24 65.2 24 9999.9 0 916.8 24 9.9 24 10.1 24 18.1 24.1 93.0 71.1 0.00G 999.9 010010 722324 03071 20190910 76.6 24 65.0 24 9999.9 0 918.1 24 10.0 24 11.7 24 21.0 25.1 88.3 72.0 0.00G 999.9 000000 722324 03071 20190911 78.1 24 65.2 24 9999.9 0 919.2 24 9.9 24 12.5 24 17.1 22.9 89.8 70.3 0.00G 999.9 010010 722324 03071 20190912 80.2 24 65.1 24 9999.9 0 919.1 24 10.0 24 10.9 24 15.9 19.0 92.7 70.7 0.00G 999.9 000000 722324 03071 20190913 79.1 24 62.0 24 9999.9 0 922.6 24 10.0 24 9.7 24 17.1 20.0 90.5 65.8 0.00G 999.9 010000 722324 03071 20190914 77.6 24 61.4 24 9999.9 0 923.6 24 10.0 24 7.3 24 13.0 27.0 90.9 67.8 0.00G 999.9 000000 722324 03071 20190915 80.0 24 53.7 24 9999.9 0 922.1 24 9.8 24 6.6 24 14.0 21.0 92.3 65.7 0.00G 999.9 000000 722324 03071 20190916 79.6 24 54.5 24 9999.9 0 920.4 24 10.0 24 8.1 24 13.0 18.1 90.1 68.0 0.00G 999.9 000000 722324 03071 20190917 80.0 24 56.1 24 9999.9 0 918.2 24 10.0 24 6.7 24 14.0 19.0 93.7 64.9 0.00G 999.9 000000 722324 03071 20190918 82.5 24 56.8 24 9999.9 0 916.9 24 10.0 24 6.9 24 9.9 15.0 96.4 70.0 0.00G 999.9 000000 722324 03071 20190919 84.1 24 57.5 24 9999.9 0 915.8 24 10.0 24 6.4 24 18.1 22.0 97.7 73.8 0.00G 999.9 010010 722324 03071 20190920 81.9 24 63.1 24 9999.9 0 914.8 24 10.0 24 9.3 24 19.0 26.0 94.6 73.0 0.00G 999.9 000000 722324 03071 20190921 79.8 24 65.7 24 9999.9 0 917.0 24 10.0 24 12.7 24 17.1 24.1 86.5 75.2 0.00G 999.9 010000 722324 03071 20190922 75.4 24 67.2 24 9999.9 0 918.1 24 9.2 24 8.5 24 18.1 22.9 87.1 68.7 0.00G 999.9 010000 722324 03071 20190923 77.7 24 67.6 24 9999.9 0 919.3 24 9.5 24 6.7 24 17.1 24.1 88.5 70.7 0.00G 999.9 010010 722324 03071 20190924 78.0 24 65.2 24 9999.9 0 916.8 24 10.0 24 7.9 24 15.0 20.0 92.8 67.8 0.00G 999.9 000000 722324 03071 20190925 81.9 24 62.9 24 9999.9 0 914.8 24 10.0 24 8.3 24 13.0 17.1 93.6 72.7 0.00G 999.9 000000 722324 03071 20190926 82.3 24 62.7 24 9999.9 0 915.4 24 10.0 24 7.3 24 12.0 15.9 96.4 70.2 0.00G 999.9 000000 722324 03071 20190927 83.1 24 60.2 24 9999.9 0 913.2 24 10.0 24 7.5 24 13.0 18.1 95.2 71.1 0.00G 999.9 000000 722324 03071 20190928 80.4 24 61.5 24 9999.9 0 912.9 24 10.0 24 12.1 24 19.0 27.0 91.9 68.0 0.00G 999.9 000000 722324 03071 20190929 81.3 24 65.5 24 9999.9 0 915.0 24 10.0 24 14.4 24 20.0 26.0 91.9 75.6 0.00G 999.9 000000 722324 03071 20190930 80.4 24 65.1 24 9999.9 0 916.4 12 10.0 24 14.3 24 24.1 29.9 88.9 73.8 0.00G 999.9 000000 722324 03071 20191001 80.7 24 65.7 24 9999.9 0 915.1 24 10.0 24 15.8 24 21.0 28.0 91.2 75.4 0.00G 999.9 000000 722324 03071 20191002 80.2 24 64.6 24 9999.9 0 916.1 24 10.0 24 11.9 24 15.9 24.1 89.1* 72.7* 0.00I 999.9 000000 722324 03071 20191003 79.5 24 60.7 24 9999.9 0 918.8 24 10.0 24 8.7 24 14.0 20.0 90.1 69.4 0.00I 999.9 000000 722324 03071 20191004 73.2 24 58.4 24 9999.9 0 921.9 24 10.0 24 8.5 24 19.0 24.1 88.2 58.8 0.00I 999.9 000000 722324 03071 20191005 78.6 24 55.6 24 9999.9 0 919.1 24 10.0 24 7.0 24 13.0 18.1 92.7 66.6 0.00I 999.9 000000 722324 03071 20191006 79.3 24 52.1 24 9999.9 0 917.8 24 10.0 24 3.8 24 11.1 21.0 94.6 65.3 0.00I 999.9 000000 722324 03071 20191007 66.3 24 39.4 24 9999.9 0 925.5 24 9.1 24 13.8 24 25.1 33.0 90.0 55.4 0.00I 999.9 000000 722324 03071 20191008 67.2 24 40.3 24 9999.9 0 921.1 24 10.0 24 8.1 24 15.9 25.1 86.7 54.5 0.00I 999.9 000000 722324 03071 20191009 78.2 24 55.1 24 9999.9 0 913.8 24 10.0 24 11.5 24 18.1 24.1 92.8 69.8 0.00I 999.9 000000 722324 03071 20191010 80.5 24 54.4 24 9999.9 0 911.2 17 10.0 24 10.6 24 15.0 22.0 92.8 70.0 0.00I 999.9 000000 722324 03071 20191011 54.9 24 25.0 24 9999.9 0 923.1 24 10.0 24 13.5 24 25.1 31.1 9999.9 39.0* 0.00I 999.9 000000 722324 03071 20191012 51.4 24 16.8 24 9999.9 0 925.1 24 10.0 24 6.7 24 12.0 17.1 69.6 39.9 0.00I 999.9 000000 722324 03071 20191013 64.3 24 32.6 24 9999.9 0 917.3 24 10.0 24 6.7 24 12.0 15.0 88.5 48.4 0.00I 999.9 000000 722324 03071 20191014 71.4 24 49.7 24 9999.9 0 916.9 24 10.0 24 8.4 24 14.0 15.9 81.1 64.9 0.00I 999.9 000000 722324 03071 20191015 75.5 24 54.7 24 9999.9 0 916.4 24 10.0 24 7.3 24 12.0 17.1 87.8 66.2 0.00I 999.9 000000 722324 03071 20191016 62.5 24 31.4 24 9999.9 0 923.5 24 10.0 24 9.4 24 19.0 25.1 81.0 44.8 0.00I 999.9 000000 722324 03071 20191017 61.6 24 33.8 24 9999.9 0 919.4 24 10.0 24 4.7 24 11.1 15.0 81.9 44.2 0.00I 999.9 000000 722324 03071 20191018 70.5 24 47.8 24 9999.9 0 911.5 24 10.0 24 10.0 24 17.1 24.1 89.4 56.5 0.00I 999.9 000000 722324 03071 20191019 69.7 24 40.2 24 9999.9 0 912.3 24 9.9 24 8.6 24 15.9 21.0 84.4 55.6 0.00I 999.9 000000 722324 03071 20191020 68.8 24 36.4 24 9999.9 0 911.6 24 10.0 24 7.8 24 22.0 28.0 88.9 53.4 0.00I 999.9 000000 722324 03071 20191021 63.8 24 15.7 24 9999.9 0 914.9 24 10.0 24 7.9 24 15.9 22.9 82.9 44.4 0.00I 999.9 000000 722324 03071 20191022 59.2 24 19.2 24 9999.9 0 921.6 24 10.0 24 4.6 24 14.0 17.1 78.4 39.7 0.00I 999.9 000000 722324 03071 20191023 66.4 24 31.7 24 9999.9 0 917.4 24 10.0 24 8.6 24 15.0 20.0 84.2 55.9 0.00I 999.9 000000 722324 03071 20191024 59.5 24 41.6 24 9999.9 0 918.0 24 9.6 24 11.1 24 21.0 27.0 79.0 39.2 99.99 999.9 010000 722324 03071 20191025 42.6 24 24.0 24 9999.9 0 927.7 24 10.0 24 13.0 24 21.0 27.0 59.5 31.8 0.00I 999.9 000000 722324 03071 20191026 49.6 24 15.2 24 9999.9 0 918.8 24 10.0 24 6.7 24 17.1 22.0 76.3 32.0 0.00I 999.9 000000 722324 03071 20191027 63.2 24 18.7 24 9999.9 0 912.5 24 10.0 24 6.5 24 15.0 999.9 83.7 44.8 0.00I 999.9 000000 722324 03071 20191028 48.2 24 32.5 24 9999.9 0 916.7 24 10.0 24 9.3 24 15.0 20.0 72.7 36.9 0.00I 999.9 000000 722324 03071 20191029 41.2 24 36.2 24 9999.9 0 917.9 24 7.3 24 9.4 24 14.0 19.0 51.8 35.4 99.99 999.9 010000 722324 03071 20191030 36.3 24 32.9 24 9999.9 0 920.5 24 6.3 24 11.0 24 17.1 22.0 42.3 32.4 99.99 999.9 010000 722324 03071 20191031 32.6 24 19.7 24 9999.9 0 930.3 22 10.0 24 5.8 24 12.0 14.0 52.7 19.2 0.00I 999.9 000000 722324 03071 20191101 48.2 24 16.4 24 9999.9 0 924.1 21 10.0 24 7.8 24 15.0 15.9 74.5 35.1 0.00I 999.9 000000 722324 03071 20191102 48.1 24 21.5 24 9999.9 0 929.3 24 10.0 24 7.1 24 17.1 25.1 69.6 32.0 0.00I 999.9 000000 722324 03071 20191103 54.3 24 26.4 24 9999.9 0 922.2 24 10.0 24 5.4 24 13.0 17.1 77.5 39.4 0.00I 999.9 000000 722324 03071 20191104 64.8 24 35.6 24 9999.9 0 916.4 24 10.0 24 7.1 24 13.0 18.1 83.7* 47.8* 0.00I 999.9 000000 722324 03071 20191105 58.5 24 37.0 24 9999.9 0 921.5 24 9.9 24 6.3 24 14.0 15.9 79.3 41.9 0.00I 999.9 000000 722324 03071 20191106 63.9 24 51.8 24 9999.9 0 922.1 24 10.0 24 6.4 24 20.0 24.1 75.7 52.0 0.00I 999.9 000000 722324 03071 20191107 50.5 24 47.8 24 9999.9 0 924.6 24 8.0 24 11.0 24 20.0 28.9 66.6* 37.0* 99.99 999.9 010010 722324 03071 20191108 40.5 24 37.6 24 9999.9 0 930.1 24 7.8 24 5.2 24 12.0 15.9 51.8 37.0 99.99 999.9 010000 722324 03071 20191109 49.6 24 43.3 24 9999.9 0 925.8 24 7.9 24 2.5 24 8.0 999.9 70.0 37.8 0.00I 999.9 000000 722324 03071 20191110 60.7 24 52.1 24 9999.9 0 919.3 24 10.0 24 7.5 24 14.0 19.0 76.6 51.4 0.00I 999.9 000000 722324 03071 20191111 52.9 24 45.4 24 9999.9 0 919.9 24 9.9 24 13.3 24 25.1 34.0 73.8 31.5 0.00I 999.9 000000 722324 03071 20191112 29.8 24 11.2 24 9999.9 0 934.6 24 9.8 24 9.6 24 19.0 22.9 38.7 23.2 99.99 999.9 010000 722324 03071 20191113 39.1 24 20.2 24 9999.9 0 922.1 24 10.0 24 7.8 24 14.0 18.1 55.2 32.5 0.00I 999.9 000000 722324 03071 20191114 42.8 24 32.2 24 9999.9 0 922.6 24 10.0 24 8.0 24 18.1 22.0 54.3 32.2 0.00I 999.9 000000 722324 03071 20191115 43.8 24 30.5 24 9999.9 0 929.4 24 10.0 24 3.6 24 9.9 999.9 61.3 31.6 0.00I 999.9 000000 722324 03071 20191116 51.4 24 33.5 24 9999.9 0 921.8 24 10.0 24 8.2 24 12.0 15.9 68.7 40.5 0.00I 999.9 000000 722324 03071 20191117 52.4 24 37.5 24 9999.9 0 918.7 24 10.0 24 9.5 24 18.1 25.1 63.7 41.0 0.00I 999.9 000000 722324 03071 20191118 53.6 24 34.5 24 9999.9 0 918.1 24 10.0 24 2.8 24 9.9 999.9 78.3 36.5 0.00I 999.9 000000 722324 03071 20191119 58.3 24 34.9 24 9999.9 0 915.0 9 10.0 24 4.5 24 13.0 18.1 80.2 40.6 0.00I 999.9 000000 722324 03071 20191120 64.6 24 51.9 24 9999.9 0 912.2 24 9.9 24 11.5 24 19.0 27.0 73.0 60.1 99.99 999.9 010000 722324 03071 20191121 62.9 24 56.4 24 9999.9 0 9999.9 0 6.6 24 5.7 24 18.1 20.0 77.7 52.7 0.00I 999.9 100000 722324 03071 20191122 46.6 24 41.4 24 9999.9 0 9999.9 0 9.4 24 8.0 24 15.9 21.0 57.0 40.1 99.99 999.9 010000 722324 03071 20191123 50.5 24 35.9 24 9999.9 0 921.7 12 10.0 24 7.5 24 15.0 21.0 65.7 39.2 0.00I 999.9 000000 722324 03071 20191124 51.9 24 29.2 24 9999.9 0 921.7 9 10.0 24 4.9 24 17.1 24.1 72.3 35.8 0.00I 999.9 000000 722324 03071 20191125 58.4 24 30.4 24 9999.9 0 9999.9 0 10.0 24 9.9 24 18.1 22.9 74.1 47.7 0.00I 999.9 000000 722324 03071 20191126 66.2 24 39.4 24 9999.9 0 9999.9 0 9.8 24 14.8 24 33.0 40.0 73.0 59.5 0.00I 999.9 000000 722324 03071 20191127 43.8 24 17.1 24 9999.9 0 9999.9 0 9.9 24 8.2 24 17.1 24.1 64.2 36.5 99.99 999.9 010000 722324 03071 20191128 39.8 24 36.3 24 9999.9 0 919.9 6 9.6 24 9.2 23 13.0 15.0 50.7 35.4 99.99 999.9 010000 722324 03071 20191129 48.6 24 44.5 24 9999.9 0 918.0 24 5.0 24 9.8 24 18.1 22.9 67.8 41.5 0.00I 999.9 100000 722324 03071 20191130 55.6 24 44.3 24 9999.9 0 911.2 8 9.6 24 9.2 24 22.0 28.0 65.5 42.4 0.00I 999.9 000000 722324 03071 20191201 44.8 24 19.3 24 9999.9 0 922.1 23 10.0 24 6.3 24 14.0 15.9 54.0 33.4 0.00I 999.9 000000 722324 03071 20191202 45.2 24 23.8 24 9999.9 0 925.8 24 10.0 24 4.5 24 12.0 19.0 63.9 30.4 0.00I 999.9 000000 722324 03071 20191203 54.0 24 27.2 24 9999.9 0 918.9 24 10.0 24 7.9 24 14.0 19.0 73.2 38.3 0.00I 999.9 000000 722324 03071 20191204 52.7 24 30.3 24 9999.9 0 920.5 24 10.0 24 4.2 24 12.0 999.9 67.5 38.8 0.00I 999.9 000000 722324 03071 20191205 61.1 24 35.5 24 9999.9 0 916.9 24 10.0 24 10.0 24 22.9 31.1 75.9 51.4 0.00I 999.9 000000 722324 03071 20191206 53.7 24 35.8 24 9999.9 0 924.2 24 10.0 24 7.3 24 13.0 17.1 69.6 40.5 0.00I 999.9 000000 722324 03071 20191207 50.5 24 34.6 24 9999.9 0 925.9 24 10.0 24 4.8 24 14.0 18.1 66.6 37.2 0.00I 999.9 000000 722324 03071 20191208 57.8 24 38.2 24 9999.9 0 917.1 24 10.0 24 8.6 24 18.1 25.1 75.0 46.6 0.00I 999.9 000000 722324 03071 20191209 60.8 24 44.9 24 9999.9 0 914.2 24 9.2 24 7.9 22 15.0 21.0 72.0 50.7 99.99 999.9 010000 722324 03071 20191210 42.2 24 30.9 24 9999.9 0 922.8 24 9.6 24 7.5 24 15.0 20.0 50.7 35.8 99.99 999.9 010000 722324 03071 20191211 40.5 24 36.1 24 9999.9 0 928.3 24 7.1 24 6.8 23 13.0 999.9 48.9 35.2 0.00I 999.9 100000 722324 03071 20191212 46.8 24 38.3 24 9999.9 0 922.8 24 10.0 24 9.1 24 14.0 18.1 65.7 36.5 0.00I 999.9 000000 722324 03071 20191213 56.4 24 36.2 24 9999.9 0 917.0 24 10.0 24 10.8 24 26.0 32.1 73.9 43.7 0.00I 999.9 000000 722324 03071 20191214 56.3 24 32.5 24 9999.9 0 913.2 24 10.0 24 6.4 24 15.0 22.0 77.5 37.9 0.00I 999.9 000000 722324 03071 20191215 65.7 24 31.3 24 9999.9 0 909.5 24 10.0 24 10.7 24 18.1 26.0 80.1 53.1 0.00I 999.9 000000 722324 03071 20191216 42.4 24 29.5 24 9999.9 0 916.5 24 10.0 24 9.2 24 15.0 20.0 70.9* 30.2* 0.00I 999.9 000000 722324 03071 20191217 35.3 24 20.1 24 9999.9 0 928.6 24 10.0 24 7.3 24 17.1 24.1 46.9 24.4 0.00I 999.9 000000 722324 03071 20191218 36.7 24 14.3 24 9999.9 0 930.1 24 10.0 24 6.0 24 11.1 999.9 52.2 24.8 0.00I 999.9 000000 722324 03071 20191219 39.0 24 11.9 24 9999.9 0 925.0 24 10.0 24 8.2 24 17.1 22.9 52.3 27.1 0.00I 999.9 000000 722324 03071 20191220 44.0 24 15.8 24 9999.9 0 922.7 24 10.0 24 9.5 24 17.1 22.0 58.3 28.0 0.00I 999.9 000000 722324 03071 20191221 43.1 24 15.2 24 9999.9 0 927.4 24 10.0 24 4.7 24 8.9 999.9 61.9 28.4 0.00I 999.9 000000 722324 03071 20191222 45.3 24 18.1 24 9999.9 0 925.1 24 10.0 24 3.7 24 9.9 999.9 68.9 26.2 0.00I 999.9 000000 722324 03071 20191223 47.7 24 18.5 24 9999.9 0 921.2 24 10.0 24 3.8 24 12.0 999.9 69.3 30.7 0.00I 999.9 000000 722324 03071 20191224 54.3 24 24.2 24 9999.9 0 917.2 24 10.0 24 6.0 23 12.0 999.9 71.1 42.3 0.00I 999.9 000000 722324 03071 20191225 57.3 24 36.0 24 9999.9 0 913.8 24 10.0 24 7.9 24 14.0 17.1 70.9 44.6 0.00I 999.9 000000 722324 03071 20191226 53.1 24 40.8 24 9999.9 0 917.2 24 10.0 24 3.4 21 7.0 999.9 61.9 44.1 99.99 999.9 010000 722324 03071 20191227 57.7 24 53.6 24 9999.9 0 916.4 24 8.8 24 10.2 24 21.0 28.9 65.1 52.0 0.00I 999.9 000000 722324 03071 20191228 57.2 24 43.3 24 9999.9 0 909.9 24 10.0 24 13.9 24 27.0 36.9 61.7 48.9 99.99 999.9 010000 722324 03071 20191229 43.3 24 25.2 24 9999.9 0 914.2 24 10.0 24 10.2 24 18.1 25.1 53.2 33.4 0.00I 999.9 000000 722324 03071 20191230 36.6 24 18.9 24 9999.9 0 921.1 24 10.0 24 5.0 24 9.9 999.9 48.7 26.6 0.00I 999.9 000000 722324 03071 20191231 40.1 24 19.5 24 9999.9 0 923.4 23 10.0 24 4.9 24 13.0 15.9 55.8 25.5 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1963/0000755000175000017500000000000014302004506015102 5ustar nileshnileshfluids-1.0.22/tests/gsod/1963/724050-13743.op0000644000175000017500000014327214302004506016673 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19630101 20.1 24 5.1 24 1018.7 8 1017.7 8 14.0 24 17.7 24 22.9 999.9 30.4* 15.4* 0.00I 999.9 000000 724050 13743 19630102 28.2 24 15.8 24 1017.1 8 1016.1 8 14.0 24 14.2 24 22.9 999.9 35.4* 23.4* 0.00I 999.9 000000 724050 13743 19630103 32.7 24 25.7 24 1021.5 8 1020.5 8 9.9 24 6.9 24 8.9 999.9 36.3* 31.3* 0.00I 999.9 000000 724050 13743 19630104 33.5 24 24.0 24 1022.4 8 1021.4 8 11.4 24 8.0 24 12.0 999.9 38.3* 29.3* 0.00I 999.9 000000 724050 13743 19630105 33.0 24 22.6 24 1024.9 8 1023.9 8 9.7 24 1.7 24 7.0 999.9 42.4* 24.4* 0.00I 999.9 000000 724050 13743 19630106 35.8 24 26.2 24 1018.5 8 1017.5 8 8.2 24 1.4 24 4.1 999.9 42.4* 32.4* 99.99 999.9 011000 724050 13743 19630107 36.1 24 29.8 24 1013.5 8 1012.5 8 3.7 24 0.5 24 2.9 999.9 46.4* 28.4* 0.00I 999.9 000000 724050 13743 19630108 36.2 24 29.6 24 1008.0 8 1007.0 8 3.2 24 2.6 24 8.0 999.9 41.4* 31.3* 0.00I 999.9 000000 724050 13743 19630109 38.2 24 29.4 24 1010.0 8 1009.0 8 5.8 24 3.8 24 8.0 999.9 48.4* 30.4* 0.00I 999.9 000000 724050 13743 19630110 45.4 24 32.0 24 1011.2 8 1010.2 8 9.4 24 3.4 24 5.1 999.9 57.4* 35.4* 0.00I 999.9 000000 724050 13743 19630111 51.0 24 43.7 24 1011.9 8 1010.8 8 8.5 24 3.8 24 8.0 999.9 60.3* 43.3* 99.99 999.9 010000 724050 13743 19630112 44.0 24 43.1 24 1010.8 8 1009.8 8 1.6 24 3.1 24 8.0 999.9 50.4* 41.4* 99.99 999.9 110010 724050 13743 19630113 39.7 24 35.9 24 1010.5 8 1009.5 8 4.4 24 7.3 24 15.9 999.9 43.3* 33.4* 99.99 999.9 110000 724050 13743 19630114 27.2 24 9.9 24 1022.5 8 1021.5 8 13.9 24 9.2 24 16.9 999.9 34.3* 21.4* 0.00I 999.9 000000 724050 13743 19630115 29.5 24 16.3 24 1029.0 8 1028.0 8 12.0 24 2.5 24 6.0 999.9 41.4* 21.4* 0.00I 999.9 000000 724050 13743 19630116 32.2 24 17.8 24 1031.0 8 1030.0 8 10.0 24 2.8 24 7.0 999.9 43.3* 24.4* 0.00I 999.9 000000 724050 13743 19630117 39.0 24 18.6 24 1030.1 8 1029.1 8 11.4 24 5.2 24 7.0 999.9 53.4* 30.4* 0.00I 999.9 000000 724050 13743 19630118 41.7 24 33.4 24 1022.6 8 1021.5 8 8.1 24 2.7 24 9.9 999.9 44.4* 39.4* 99.99 999.9 110000 724050 13743 19630119 37.3 24 36.0 24 1023.4 8 1022.4 8 1.4 24 2.9 24 8.0 999.9 43.3* 32.4* 99.99 999.9 110000 724050 13743 19630120 44.7 24 42.5 24 1007.8 8 1006.8 8 5.6 24 5.0 24 12.0 999.9 58.3* 37.4* 99.99 999.9 110000 724050 13743 19630121 31.6 24 14.9 24 1008.2 8 1007.2 8 13.7 24 14.9 24 25.1 999.9 56.3* 19.4* 99.99 999.9 010000 724050 13743 19630122 24.8 24 4.3 24 1025.3 8 1024.3 8 12.6 24 6.9 24 15.9 999.9 40.3* 17.4* 0.00I 999.9 000000 724050 13743 19630123 39.6 24 23.6 24 1016.5 8 1015.5 8 12.3 24 8.6 24 12.0 999.9 46.4* 35.4* 99.99 999.9 010000 724050 13743 19630124 16.0 24 -2.7 24 1019.3 8 1018.3 8 13.5 24 15.5 24 29.9 999.9 37.4* 3.4* 99.99 999.9 001000 724050 13743 19630125 20.2 24 -2.6 24 1028.0 8 1027.0 8 14.0 24 7.0 24 15.9 999.9 30.4* 13.5* 0.00I 999.9 000000 724050 13743 19630126 28.0 24 13.4 24 1027.7 8 1026.7 8 12.0 24 4.3 24 8.0 999.9 34.3* 24.4* 99.99 999.9 101000 724050 13743 19630127 29.4 24 23.7 24 1010.7 8 1009.7 8 7.0 24 9.1 24 29.9 999.9 35.4* 23.4* 99.99 999.9 111000 724050 13743 19630128 16.5 24 1.2 24 1029.7 8 1028.7 8 13.9 24 15.4 24 23.9 999.9 22.5* 11.3* 0.00I 999.9 000000 724050 13743 19630129 17.7 24 4.1 24 1038.5 8 1037.5 8 11.0 24 4.7 24 8.9 999.9 29.3* 9.3* 0.00I 999.9 000000 724050 13743 19630130 30.2 24 19.1 24 1024.9 8 1023.9 8 9.1 24 3.5 24 8.9 999.9 34.3* 25.3* 99.99 999.9 101000 724050 13743 19630131 31.1 24 21.8 24 1022.3 8 1021.3 8 4.9 24 6.9 24 13.0 999.9 33.4* 29.3* 99.99 999.9 101000 724050 13743 19630201 27.1 24 16.6 24 1028.5 8 1027.5 8 6.5 24 2.9 24 7.0 999.9 31.3* 23.4* 99.99 999.9 101000 724050 13743 19630202 32.3 24 31.1 24 1018.5 8 1017.5 8 2.2 24 2.6 24 6.0 999.9 36.3* 30.4* 99.99 999.9 111000 724050 13743 19630203 31.6 24 18.4 24 1019.4 8 1018.4 8 11.3 24 14.0 24 23.9 999.9 39.4* 23.4* 99.99 999.9 110000 724050 13743 19630204 24.0 24 3.2 24 1036.4 8 1035.4 8 12.4 24 6.3 24 15.0 999.9 35.4* 15.4* 0.00I 999.9 000000 724050 13743 19630205 32.5 24 19.0 24 1030.6 8 1029.5 8 10.3 24 1.9 24 6.0 999.9 45.3* 26.4* 0.00I 999.9 000000 724050 13743 19630206 38.7 24 30.7 24 1017.3 8 1016.3 8 3.6 24 1.2 24 6.0 999.9 55.4* 28.4* 0.00I 999.9 000000 724050 13743 19630207 39.2 24 31.4 24 1003.9 8 1002.9 8 2.6 24 0.4 24 6.0 999.9 48.4* 31.3* 99.99 999.9 010000 724050 13743 19630208 30.3 24 15.4 24 1010.5 8 1009.4 8 11.1 24 11.3 24 22.0 999.9 43.3* 19.4* 0.00I 999.9 000000 724050 13743 19630209 26.3 24 9.3 24 1024.5 8 1023.5 8 13.0 24 5.6 24 9.9 999.9 35.4* 18.3* 0.00I 999.9 000000 724050 13743 19630210 35.1 24 21.8 24 1017.1 8 1016.0 8 11.8 24 2.9 24 7.0 999.9 48.4* 28.4* 0.00I 999.9 000000 724050 13743 19630211 43.7 24 32.3 24 1011.7 8 1010.7 8 9.2 24 2.8 24 7.0 999.9 48.4* 40.3* 99.99 999.9 110000 724050 13743 19630212 34.0 24 32.1 24 1008.5 8 1007.4 8 3.3 24 10.1 24 14.0 999.9 42.4* 28.4* 99.99 999.9 110000 724050 13743 19630213 29.0 24 17.3 24 1007.7 8 1006.7 8 12.1 24 9.4 24 15.9 999.9 34.3* 24.4* 0.00I 999.9 000000 724050 13743 19630214 30.3 24 19.2 24 1010.6 8 1009.6 8 12.1 24 6.0 24 15.9 999.9 38.3* 25.3* 99.99 999.9 001000 724050 13743 19630215 24.2 24 6.1 24 1017.9 8 1016.9 8 14.8 24 18.1 24 25.1 999.9 32.4* 19.4* 0.00I 999.9 000000 724050 13743 19630216 17.2 24 -1.9 24 1031.6 8 1030.6 8 14.0 24 13.0 24 20.0 999.9 26.4* 10.4* 0.00I 999.9 000000 724050 13743 19630217 25.2 24 5.6 24 1031.5 8 1030.5 8 10.9 24 2.9 24 8.0 999.9 38.3* 16.3* 0.00I 999.9 000000 724050 13743 19630218 37.3 24 15.3 24 1025.1 8 1024.1 8 11.2 24 3.1 24 7.0 999.9 53.4* 27.3* 0.00I 999.9 000000 724050 13743 19630219 37.8 24 25.4 24 1015.0 8 1014.0 8 7.6 24 5.1 24 13.0 999.9 46.4* 34.3* 99.99 999.9 111000 724050 13743 19630220 41.6 24 28.6 24 1003.0 8 1002.0 8 11.5 24 8.4 24 18.1 999.9 54.3* 33.4* 99.99 999.9 110000 724050 13743 19630221 35.2 24 13.4 24 1008.4 8 1007.4 8 14.0 24 13.6 24 22.0 999.9 49.3* 22.5* 99.99 999.9 001000 724050 13743 19630222 15.3 24 -6.8 24 1025.3 8 1024.2 8 14.7 24 12.9 24 21.0 999.9 21.4* 8.4* 0.00I 999.9 000000 724050 13743 19630223 21.3 24 -1.8 24 1028.8 8 1027.8 8 14.3 24 3.2 24 8.0 999.9 34.3* 12.4* 0.00I 999.9 000000 724050 13743 19630224 32.2 24 20.6 24 1020.2 8 1019.2 8 9.2 24 6.9 24 11.1 999.9 35.4* 28.4* 99.99 999.9 111000 724050 13743 19630225 35.1 24 19.5 24 1015.0 8 1014.0 8 11.7 24 6.5 24 13.0 999.9 47.3* 28.4* 0.00I 999.9 000000 724050 13743 19630226 26.7 24 11.0 24 1017.3 8 1016.3 8 13.2 24 9.6 24 15.9 999.9 38.3* 18.3* 0.00I 999.9 000000 724050 13743 19630227 20.8 24 0.3 24 1020.3 8 1019.3 8 14.9 24 10.2 24 16.9 999.9 31.3* 12.4* 0.00I 999.9 000000 724050 13743 19630228 35.6 24 13.3 24 1018.3 8 1017.3 8 12.0 24 5.3 24 9.9 999.9 48.4* 28.4* 0.00I 999.9 000000 724050 13743 19630301 36.4 24 24.7 24 1018.0 8 1017.0 8 6.9 24 3.9 24 7.0 999.9 38.3* 35.4* 99.99 999.9 010000 724050 13743 19630302 38.3 24 31.8 24 1008.8 8 1007.8 8 5.1 24 8.5 24 16.9 999.9 44.4* 34.3* 99.99 999.9 110000 724050 13743 19630303 40.8 24 22.1 24 1026.1 8 1025.1 8 10.0 24 3.5 24 8.0 999.9 57.4* 29.3* 0.00I 999.9 000000 724050 13743 19630304 49.8 24 31.8 24 1025.1 8 1024.1 8 10.9 24 5.2 24 11.1 999.9 66.4* 40.3* 0.00I 999.9 000000 724050 13743 19630305 46.2 24 43.5 24 1011.7 8 1010.7 8 2.9 24 4.7 24 8.9 999.9 51.3* 41.4* 99.99 999.9 110000 724050 13743 19630306 41.6 24 35.8 24 1001.2 8 1000.2 8 6.4 24 9.3 24 26.0 999.9 53.4* 37.4* 99.99 999.9 110000 724050 13743 19630307 43.8 24 22.0 24 1009.4 8 1008.4 8 14.2 24 12.2 24 22.9 999.9 52.3* 36.3* 0.00I 999.9 000000 724050 13743 19630308 45.1 24 23.6 24 1019.0 8 1018.0 8 14.9 24 6.0 24 15.0 999.9 57.4* 37.4* 0.00I 999.9 000000 724050 13743 19630309 47.4 24 27.1 24 1019.1 8 1018.1 8 11.2 24 2.5 24 8.0 999.9 64.4* 35.4* 0.00I 999.9 000000 724050 13743 19630310 51.1 24 28.8 24 1011.7 8 1010.7 8 12.8 24 11.1 24 23.9 999.9 60.3* 40.3* 99.99 999.9 010000 724050 13743 19630311 38.7 24 24.5 24 1024.9 8 1023.9 8 9.9 24 5.2 24 12.0 999.9 49.3* 32.4* 99.99 999.9 111000 724050 13743 19630312 40.9 24 38.9 24 1016.1 8 1015.0 8 3.2 24 2.4 24 8.0 999.9 48.4* 34.3* 99.99 999.9 110000 724050 13743 19630313 49.4 24 45.5 24 1014.3 8 1013.3 8 2.1 24 2.7 24 9.9 999.9 64.4* 43.3* 99.99 999.9 110000 724050 13743 19630314 48.4 24 35.7 24 1018.7 8 1017.7 8 12.0 24 9.8 24 20.0 999.9 59.4* 42.4* 0.00I 999.9 000000 724050 13743 19630315 41.3 24 18.1 24 1027.0 8 1026.0 8 14.9 24 6.4 24 12.0 999.9 52.3* 32.4* 0.00I 999.9 000000 724050 13743 19630316 42.8 24 24.7 24 1025.8 8 1024.8 8 12.8 24 4.1 24 8.0 999.9 53.4* 34.3* 99.99 999.9 110000 724050 13743 19630317 53.5 24 46.8 24 1011.9 8 1010.8 8 8.0 24 5.3 24 12.0 999.9 74.3* 43.3* 99.99 999.9 110000 724050 13743 19630318 57.6 24 35.4 24 1011.0 8 1010.0 8 12.6 24 15.2 24 23.9 999.9 70.3* 51.3* 0.00I 999.9 000000 724050 13743 19630319 41.3 24 30.0 24 1019.2 8 1018.2 8 8.2 24 6.4 24 16.9 999.9 52.3* 35.4* 99.99 999.9 110000 724050 13743 19630320 43.0 24 35.7 24 1001.8 8 1000.8 8 6.3 24 5.7 24 25.1 999.9 55.4* 36.3* 99.99 999.9 110000 724050 13743 19630321 40.0 24 26.1 24 1003.3 8 1002.3 8 13.7 24 14.5 24 22.0 999.9 46.4* 33.4* 99.99 999.9 101000 724050 13743 19630322 39.8 24 22.9 24 1016.4 8 1015.4 8 14.2 24 17.5 24 22.0 999.9 46.4* 34.3* 0.00I 999.9 000000 724050 13743 19630323 40.0 24 18.0 24 1026.4 8 1025.3 8 14.9 24 11.0 24 20.0 999.9 56.3* 31.3* 0.00I 999.9 000000 724050 13743 19630324 52.6 24 28.1 24 1026.3 8 1025.3 8 11.6 24 2.0 24 6.0 999.9 75.4* 35.4* 0.00I 999.9 000000 724050 13743 19630325 65.0 24 31.3 24 1022.3 8 1021.2 8 12.8 24 6.2 24 9.9 999.9 78.3* 54.3* 0.00I 999.9 000000 724050 13743 19630326 63.5 24 39.6 24 1014.3 8 1013.2 8 12.0 24 7.8 24 13.0 999.9 73.4* 54.3* 99.99 999.9 010000 724050 13743 19630327 55.3 24 43.6 24 1008.8 8 1007.8 8 11.9 24 6.4 24 18.1 999.9 67.3* 47.3* 99.99 999.9 110010 724050 13743 19630328 62.2 24 31.6 24 1016.7 8 1015.7 8 13.8 24 5.5 24 15.0 999.9 79.3* 50.4* 0.00I 999.9 000000 724050 13743 19630329 60.0 24 35.0 24 1023.9 8 1022.9 8 12.9 24 4.7 24 9.9 999.9 73.4* 49.3* 0.00I 999.9 000000 724050 13743 19630330 60.3 24 41.2 24 1024.4 8 1023.3 8 10.5 24 4.6 24 9.9 999.9 84.4* 44.4* 0.00I 999.9 000000 724050 13743 19630331 63.6 24 43.4 24 1025.7 8 1024.7 8 11.1 24 5.4 24 12.0 999.9 71.2* 55.4* 99.99 999.9 010000 724050 13743 19630401 51.1 24 38.8 24 1029.9 8 1028.7 8 10.1 24 5.0 24 8.9 999.9 61.3* 45.3* 99.99 999.9 010000 724050 13743 19630402 63.5 24 50.0 24 1023.5 8 1022.3 8 8.6 24 4.6 24 11.1 999.9 87.3* 51.3* 99.99 999.9 110000 724050 13743 19630403 76.3 24 47.1 24 1017.1 8 1016.0 8 11.2 24 4.1 24 8.0 999.9 90.3* 62.4* 0.00I 999.9 000000 724050 13743 19630404 70.2 24 40.5 24 1007.9 8 1006.7 8 12.9 24 15.3 24 29.9 999.9 79.3* 52.3* 0.00I 999.9 000000 724050 13743 19630405 48.5 24 14.9 24 1020.4 8 1019.2 8 14.9 24 15.1 24 25.1 999.9 58.3* 41.4* 0.00I 999.9 000000 724050 13743 19630406 52.3 24 22.1 24 1018.5 8 1017.4 8 13.6 24 3.0 24 8.9 999.9 64.4* 40.3* 0.00I 999.9 000000 724050 13743 19630407 56.5 24 40.2 24 1007.7 8 1006.6 8 12.8 24 5.1 24 16.9 999.9 69.3* 47.3* 0.00I 999.9 000000 724050 13743 19630408 53.8 24 22.9 24 1008.2 8 1007.1 8 14.5 24 5.1 24 14.0 999.9 65.3* 40.3* 0.00I 999.9 000000 724050 13743 19630409 52.3 24 40.2 24 1002.5 8 1001.4 8 8.7 24 4.7 24 9.9 999.9 60.3* 47.3* 99.99 999.9 010000 724050 13743 19630410 45.3 24 24.0 24 1005.4 8 1004.2 8 13.1 24 18.6 24 25.1 999.9 52.3* 37.4* 0.00I 999.9 000000 724050 13743 19630411 48.0 24 24.1 24 1008.8 8 1007.7 8 13.9 24 15.8 24 22.9 999.9 58.3* 41.4* 0.00I 999.9 000000 724050 13743 19630412 52.1 24 27.4 24 1012.0 8 1010.9 8 14.9 24 14.5 24 18.1 999.9 61.3* 43.3* 0.00I 999.9 000000 724050 13743 19630413 53.1 24 27.1 24 1011.3 8 1010.3 8 14.9 24 11.7 24 22.0 999.9 62.4* 44.4* 0.00I 999.9 000000 724050 13743 19630414 55.0 24 25.9 24 1011.4 8 1010.3 8 14.9 24 13.9 24 19.0 999.9 65.3* 45.3* 0.00I 999.9 000000 724050 13743 19630415 54.0 24 22.3 24 1014.8 8 1013.7 8 14.9 24 11.1 24 15.0 999.9 62.4* 44.4* 0.00I 999.9 000000 724050 13743 19630416 55.9 24 22.2 24 1019.3 8 1018.2 8 14.9 24 4.6 24 9.9 999.9 69.3* 44.4* 0.00I 999.9 000000 724050 13743 19630417 57.9 24 38.8 24 1017.5 8 1016.3 8 12.7 24 6.9 24 9.9 999.9 64.4* 51.3* 99.99 999.9 010000 724050 13743 19630418 66.7 24 54.4 24 1009.3 8 1008.2 8 9.2 24 6.9 24 19.0 999.9 84.4* 55.4* 99.99 999.9 010000 724050 13743 19630419 72.2 24 51.9 24 1010.6 8 1009.5 8 10.6 24 4.0 24 9.9 999.9 90.3* 57.4* 0.00I 999.9 000000 724050 13743 19630420 77.3 24 40.5 24 1005.7 8 1004.6 8 13.5 24 15.9 24 29.9 999.9 83.3* 68.4* 0.00I 999.9 000000 724050 13743 19630421 67.9 24 36.7 24 1013.6 8 1012.5 8 14.7 24 8.0 24 15.9 999.9 79.3* 54.3* 0.00I 999.9 000000 724050 13743 19630422 66.9 24 36.1 24 1009.6 8 1008.6 8 14.8 24 11.3 24 22.0 999.9 75.4* 59.4* 0.00I 999.9 000000 724050 13743 19630423 55.0 24 40.4 24 1006.0 8 1004.8 8 12.1 24 8.8 24 35.9 999.9 73.4* 45.3* 99.99 999.9 010010 724050 13743 19630424 49.3 24 27.4 24 1014.9 8 1013.8 8 14.2 24 18.3 24 28.9 999.9 55.4* 43.3* 0.00I 999.9 000000 724050 13743 19630425 50.1 24 25.8 24 1022.6 8 1021.4 8 14.2 24 9.4 24 15.0 999.9 60.3* 43.3* 0.00I 999.9 000000 724050 13743 19630426 54.5 24 28.9 24 1021.1 8 1019.9 8 14.7 24 5.5 24 15.0 999.9 65.3* 44.4* 0.00I 999.9 000000 724050 13743 19630427 58.5 24 32.1 24 1022.5 8 1021.4 8 13.7 24 5.5 24 15.0 999.9 68.4* 47.3* 0.00I 999.9 000000 724050 13743 19630428 58.4 24 29.1 24 1025.9 8 1024.7 8 14.0 24 5.9 24 9.9 999.9 68.4* 49.3* 0.00I 999.9 000000 724050 13743 19630429 54.3 24 35.0 24 1028.1 8 1026.9 8 14.5 24 7.0 24 12.0 999.9 62.4* 44.4* 99.99 999.9 010000 724050 13743 19630430 61.6 24 55.2 24 1011.7 8 1010.7 8 9.1 24 10.0 24 14.0 999.9 74.3* 52.3* 99.99 999.9 110010 724050 13743 19630501 47.2 24 31.2 24 1011.1 8 1010.0 8 14.3 24 18.5 24 26.0 999.9 62.4* 41.4* 99.99 999.9 010000 724050 13743 19630502 50.6 24 24.2 24 1019.5 8 1018.3 8 14.9 24 12.4 24 20.0 999.9 67.3* 41.4* 0.00I 999.9 000000 724050 13743 19630503 60.9 24 31.0 24 1021.6 8 1020.4 8 12.1 24 2.5 24 9.9 999.9 79.3* 43.3* 0.00I 999.9 000000 724050 13743 19630504 69.0 24 38.2 24 1021.0 8 1020.0 8 13.5 24 3.1 24 8.9 999.9 89.2* 53.4* 0.00I 999.9 000000 724050 13743 19630505 71.4 24 42.9 24 1018.2 8 1017.1 8 14.9 24 4.8 24 8.9 999.9 87.3* 57.4* 0.00I 999.9 000000 724050 13743 19630506 68.4 24 51.1 24 1017.5 8 1016.3 8 11.7 24 6.2 24 11.1 999.9 77.4* 62.4* 99.99 999.9 010000 724050 13743 19630507 64.4 24 38.5 24 1020.2 8 1019.0 8 13.5 24 4.4 24 8.0 999.9 75.4* 55.4* 0.00I 999.9 000000 724050 13743 19630508 69.4 24 46.9 24 1017.4 8 1016.2 8 12.7 24 7.4 24 12.0 999.9 86.4* 58.3* 0.00I 999.9 000000 724050 13743 19630509 79.4 24 56.0 24 1012.8 8 1011.7 8 12.8 24 5.6 24 12.0 999.9 94.3* 68.4* 0.00I 999.9 000000 724050 13743 19630510 81.1 24 59.2 24 1011.1 8 1010.0 8 11.4 24 4.2 24 12.0 999.9 93.4* 68.4* 0.00I 999.9 000000 724050 13743 19630511 65.1 24 48.4 24 1011.2 8 1010.1 8 11.1 24 8.0 24 16.9 999.9 85.3* 55.4* 99.99 999.9 010000 724050 13743 19630512 52.9 24 34.4 24 1024.2 8 1023.0 8 14.9 24 6.5 24 11.1 999.9 62.4* 45.3* 0.00I 999.9 000000 724050 13743 19630513 55.4 24 36.6 24 1027.3 8 1026.3 8 13.5 24 6.1 24 12.0 999.9 66.4* 47.3* 0.00I 999.9 000000 724050 13743 19630514 60.9 24 49.3 24 1017.0 8 1015.8 8 9.1 24 7.0 24 9.9 999.9 77.4* 55.4* 99.99 999.9 010000 724050 13743 19630515 66.2 24 41.4 24 1015.0 8 1013.8 8 14.7 24 10.1 24 14.0 999.9 77.4* 55.4* 0.00I 999.9 000000 724050 13743 19630516 64.6 24 49.2 24 1017.3 8 1016.1 8 11.5 24 3.7 24 11.1 999.9 72.3* 58.3* 0.00I 999.9 000000 724050 13743 19630517 62.0 24 56.0 24 1015.4 8 1014.3 8 9.0 24 6.4 24 9.9 999.9 69.3* 55.4* 99.99 999.9 110000 724050 13743 19630518 66.8 24 57.4 24 1007.2 8 1006.1 8 8.3 24 10.1 24 20.0 999.9 75.4* 56.3* 99.99 999.9 110000 724050 13743 19630519 71.0 24 49.7 24 1013.8 8 1012.7 8 11.5 24 4.6 24 12.0 999.9 83.3* 61.3* 0.00I 999.9 000000 724050 13743 19630520 72.1 24 53.4 24 1015.4 8 1014.2 8 14.4 24 6.5 24 12.0 999.9 79.3* 65.3* 99.99 999.9 010000 724050 13743 19630521 62.2 24 51.2 24 1020.4 8 1019.3 8 10.8 24 3.0 24 11.1 999.9 73.4* 56.3* 99.99 999.9 110000 724050 13743 19630522 64.4 24 53.1 24 1018.8 8 1017.7 8 9.3 24 3.7 24 8.9 999.9 73.4* 57.4* 99.99 999.9 110000 724050 13743 19630523 59.1 24 33.3 24 1022.4 8 1021.2 8 14.9 24 12.1 24 19.0 999.9 69.3* 51.3* 0.00I 999.9 000000 724050 13743 19630524 56.5 24 33.8 24 1028.8 8 1027.7 8 13.8 24 5.1 24 8.0 999.9 67.3* 43.3* 0.00I 999.9 000000 724050 13743 19630525 59.5 24 39.5 24 1027.4 8 1026.2 8 13.2 24 4.3 24 8.0 999.9 72.3* 49.3* 0.00I 999.9 000000 724050 13743 19630526 63.0 24 47.6 24 1022.6 8 1021.6 8 12.9 24 5.5 24 9.9 999.9 70.3* 56.3* 0.00I 999.9 000000 724050 13743 19630527 62.0 24 51.6 24 1023.7 8 1022.6 8 12.5 24 5.5 24 8.9 999.9 68.4* 57.4* 0.00I 999.9 000000 724050 13743 19630528 63.1 24 53.5 24 1022.0 8 1020.9 8 11.4 24 6.4 24 12.0 999.9 71.2* 58.3* 99.99 999.9 110000 724050 13743 19630529 69.7 24 65.0 24 1016.6 8 1015.5 8 10.1 24 5.3 24 8.0 999.9 75.4* 64.4* 99.99 999.9 110000 724050 13743 19630530 70.2 24 58.0 24 1016.5 8 1015.4 8 10.1 24 6.8 24 13.0 999.9 80.2* 62.4* 99.99 999.9 010010 724050 13743 19630531 69.9 24 51.4 24 1021.6 8 1020.4 8 9.3 24 3.2 24 6.0 999.9 80.2* 60.3* 0.00I 999.9 000000 724050 13743 19630601 69.2 24 53.0 24 1025.8 8 1024.6 8 8.7 24 2.3 24 7.0 999.9 78.3* 58.3* 0.00I 999.9 000000 724050 13743 19630602 64.1 24 57.6 24 1025.4 8 1024.3 8 7.2 24 4.3 24 8.0 999.9 71.2* 60.3* 99.99 999.9 110000 724050 13743 19630603 64.7 24 63.9 24 1016.9 8 1015.8 8 4.2 24 8.3 24 15.0 999.9 66.4* 62.4* 99.99 999.9 110000 724050 13743 19630604 71.5 24 62.2 24 1013.0 8 1011.9 8 10.4 24 5.3 24 8.9 999.9 84.4* 63.3* 99.99 999.9 110000 724050 13743 19630605 74.5 24 64.6 24 1013.8 8 1012.8 8 8.5 24 5.3 24 12.0 999.9 82.4* 69.3* 99.99 999.9 010010 724050 13743 19630606 74.2 24 65.7 24 1011.6 8 1010.6 8 7.5 24 2.8 24 12.0 999.9 89.2* 65.3* 99.99 999.9 010010 724050 13743 19630607 76.6 24 67.5 24 1010.3 8 1009.2 8 8.2 24 2.5 24 9.9 999.9 91.2* 71.2* 99.99 999.9 010000 724050 13743 19630608 65.4 24 61.9 24 1013.6 8 1012.5 8 4.1 24 4.6 24 8.9 999.9 75.4* 61.3* 99.99 999.9 110000 724050 13743 19630609 73.2 24 65.3 24 1010.2 8 1009.1 8 4.8 24 4.5 24 9.9 999.9 88.3* 65.3* 99.99 999.9 110000 724050 13743 19630610 85.2 24 68.8 24 1004.8 8 1003.7 8 9.6 24 6.5 24 15.0 999.9 95.4* 77.4* 0.00I 999.9 000000 724050 13743 19630611 75.7 24 64.0 24 1003.9 8 1002.8 8 12.5 24 7.4 24 26.0 999.9 90.3* 68.4* 99.99 999.9 010010 724050 13743 19630612 70.3 24 50.7 24 1003.4 8 1002.3 8 14.9 24 13.4 24 18.1 999.9 82.4* 65.3* 0.00I 999.9 000000 724050 13743 19630613 67.7 24 47.3 24 1009.0 8 1007.9 8 14.2 24 11.3 24 15.9 999.9 79.3* 61.3* 0.00I 999.9 000000 724050 13743 19630614 72.9 24 56.6 24 1011.0 8 1010.0 8 13.5 24 4.5 24 8.9 999.9 83.3* 66.4* 99.99 999.9 010000 724050 13743 19630615 69.9 24 55.5 24 1010.6 8 1009.5 8 11.8 24 10.7 24 19.0 999.9 79.3* 62.4* 99.99 999.9 010000 724050 13743 19630616 69.8 24 49.9 24 1012.0 8 1010.8 8 14.9 24 4.9 24 9.9 999.9 76.3* 61.3* 0.00I 999.9 000000 724050 13743 19630617 70.1 24 52.0 24 1011.8 8 1010.6 8 12.4 24 1.6 24 5.1 999.9 81.3* 58.3* 0.00I 999.9 000000 724050 13743 19630618 73.9 24 54.4 24 1016.3 8 1015.2 8 10.0 24 3.1 24 6.0 999.9 86.4* 63.3* 0.00I 999.9 000000 724050 13743 19630619 76.2 24 58.9 24 1019.2 8 1018.1 8 9.7 24 5.2 24 9.9 999.9 87.3* 64.4* 0.00I 999.9 000000 724050 13743 19630620 74.5 24 63.3 24 1014.0 8 1013.0 8 10.1 24 5.5 24 9.9 999.9 86.4* 65.3* 99.99 999.9 010010 724050 13743 19630621 67.8 24 56.5 24 1010.1 8 1009.0 8 10.5 24 10.0 24 16.9 999.9 71.2* 58.3* 99.99 999.9 010000 724050 13743 19630622 66.4 24 41.6 24 1020.0 8 1018.9 8 14.9 24 5.7 24 12.0 999.9 77.4* 55.4* 0.00I 999.9 000000 724050 13743 19630623 72.5 24 47.3 24 1025.4 8 1024.3 8 14.9 24 3.4 24 7.0 999.9 87.3* 59.4* 0.00I 999.9 000000 724050 13743 19630624 76.0 24 53.5 24 1028.3 8 1027.1 8 14.5 24 2.5 24 8.0 999.9 89.2* 61.3* 0.00I 999.9 000000 724050 13743 19630625 78.5 24 56.2 24 1025.6 8 1024.5 8 12.7 24 3.4 24 8.9 999.9 91.2* 64.4* 0.00I 999.9 000000 724050 13743 19630626 81.3 24 60.0 24 1019.7 8 1018.6 8 14.2 24 3.4 24 9.9 999.9 93.4* 69.3* 0.00I 999.9 000000 724050 13743 19630627 82.0 24 62.8 24 1016.4 8 1015.3 8 12.3 24 4.1 24 8.9 999.9 94.3* 69.3* 0.00I 999.9 000000 724050 13743 19630628 84.1 24 67.3 24 1013.3 8 1012.2 8 14.9 24 5.3 24 8.9 999.9 95.4* 74.3* 0.00I 999.9 000000 724050 13743 19630629 83.2 24 69.0 24 1015.0 8 1014.0 8 14.3 24 6.5 24 9.9 999.9 93.4* 75.4* 0.00I 999.9 000010 724050 13743 19630630 79.7 24 70.1 24 1018.7 8 1017.5 8 11.2 24 5.0 24 15.9 999.9 93.4* 71.2* 99.99 999.9 010010 724050 13743 19630701 85.1 24 69.9 24 1018.3 8 1017.2 8 10.9 24 2.0 24 6.0 999.9 95.4* 75.4* 0.00I 999.9 000000 724050 13743 19630702 85.8 24 71.9 24 1014.7 8 1013.6 8 8.6 24 3.5 24 8.0 999.9 95.4* 77.4* 0.00I 999.9 000000 724050 13743 19630703 79.6 24 62.8 24 1009.6 8 1008.5 8 12.3 24 10.0 24 20.0 999.9 85.3* 74.3* 0.00I 999.9 000000 724050 13743 19630704 72.7 24 44.8 24 1014.2 8 1013.1 8 14.9 24 12.1 24 18.1 999.9 81.3* 62.4* 0.00I 999.9 000000 724050 13743 19630705 74.9 24 46.3 24 1014.4 8 1013.3 8 14.9 24 5.6 24 12.0 999.9 89.2* 63.3* 0.00I 999.9 000000 724050 13743 19630706 77.7 24 50.3 24 1013.7 8 1012.6 8 14.9 24 5.1 24 9.9 999.9 87.3* 66.4* 0.00I 999.9 000000 724050 13743 19630707 78.5 24 55.5 24 1011.9 8 1010.8 8 13.4 24 3.7 24 9.9 999.9 90.3* 66.4* 0.00I 999.9 000000 724050 13743 19630708 77.9 24 60.2 24 1008.4 8 1007.3 8 12.0 24 7.4 24 14.0 999.9 85.3* 70.3* 0.00I 999.9 100000 724050 13743 19630709 70.8 24 41.9 24 1011.5 8 1010.3 8 14.9 24 7.9 24 12.0 999.9 81.3* 61.3* 0.00I 999.9 000000 724050 13743 19630710 70.5 24 46.4 24 1011.7 8 1010.5 8 14.9 24 3.0 24 7.0 999.9 80.2* 61.3* 99.99 999.9 010000 724050 13743 19630711 74.2 24 51.5 24 1017.6 8 1016.4 8 13.5 24 3.0 24 8.0 999.9 85.3* 64.4* 0.00I 999.9 000000 724050 13743 19630712 75.4 24 55.3 24 1024.0 8 1022.9 8 10.9 24 2.8 24 11.1 999.9 85.3* 65.3* 99.99 999.9 010000 724050 13743 19630713 75.3 24 57.0 24 1023.1 8 1022.0 8 9.7 24 2.2 24 8.0 999.9 87.3* 64.4* 0.00I 999.9 000000 724050 13743 19630714 69.5 24 62.9 24 1014.1 8 1013.0 8 7.8 24 7.7 24 12.0 999.9 78.3* 63.3* 99.99 999.9 110000 724050 13743 19630715 77.3 24 64.0 24 1008.6 8 1007.5 8 10.9 24 6.0 24 12.0 999.9 90.3* 68.4* 0.00I 999.9 100000 724050 13743 19630716 80.5 24 63.4 24 1014.8 8 1013.7 8 13.4 24 3.3 24 8.0 999.9 91.2* 69.3* 0.00I 999.9 000000 724050 13743 19630717 83.8 24 66.6 24 1018.3 8 1017.2 8 12.1 24 3.3 24 8.0 999.9 96.3* 72.3* 99.99 999.9 010000 724050 13743 19630718 85.3 24 69.7 24 1018.5 8 1017.3 8 14.5 24 6.2 24 12.0 999.9 96.3* 76.3* 0.00I 999.9 000000 724050 13743 19630719 86.3 24 69.4 24 1015.3 8 1014.3 8 14.5 24 4.5 24 8.9 999.9 96.3* 74.3* 0.00I 999.9 000010 724050 13743 19630720 83.1 24 69.3 24 1005.8 8 1004.7 8 13.2 24 5.0 24 15.9 999.9 93.4* 75.4* 0.00I 999.9 000000 724050 13743 19630721 78.4 24 61.8 24 1004.8 8 1003.8 8 14.9 24 9.5 24 15.0 999.9 86.4* 70.3* 99.99 999.9 010000 724050 13743 19630722 77.5 24 63.3 24 1011.3 8 1010.2 8 11.7 24 3.7 24 11.1 999.9 85.3* 69.3* 0.00I 999.9 000000 724050 13743 19630723 76.0 24 63.3 24 1016.5 8 1015.4 8 8.6 24 3.9 24 8.0 999.9 84.4* 68.4* 0.00I 999.9 000000 724050 13743 19630724 77.3 24 64.2 24 1020.6 8 1019.5 8 7.2 24 2.5 24 7.0 999.9 87.3* 69.3* 0.00I 999.9 000000 724050 13743 19630725 81.1 24 64.1 24 1023.7 8 1022.7 8 6.8 24 3.7 24 8.0 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19630726 83.7 24 64.4 24 1024.1 8 1023.1 8 8.6 24 2.9 24 7.0 999.9 97.3* 73.4* 0.00I 999.9 000000 724050 13743 19630727 85.9 24 67.7 24 1021.5 8 1020.4 8 12.2 24 4.7 24 8.9 999.9 96.3* 76.3* 0.00I 999.9 000000 724050 13743 19630728 84.9 24 69.5 24 1017.4 8 1016.4 8 11.8 24 3.2 24 9.9 999.9 93.4* 76.3* 99.99 999.9 010010 724050 13743 19630729 83.5 24 70.1 24 1014.1 8 1013.0 8 12.1 24 3.4 24 7.0 999.9 93.4* 75.4* 99.99 999.9 010000 724050 13743 19630730 83.3 24 66.3 24 1013.9 8 1012.8 8 13.4 24 6.8 24 9.9 999.9 90.3* 77.4* 99.99 999.9 010000 724050 13743 19630731 80.5 24 60.7 24 1017.4 8 1016.3 8 13.0 24 4.9 24 8.9 999.9 87.3* 71.2* 0.00I 999.9 000000 724050 13743 19630801 80.6 24 70.0 24 1013.3 8 1012.2 8 10.3 24 4.9 24 11.1 999.9 91.2* 74.3* 0.00I 999.9 100000 724050 13743 19630802 77.8 24 61.0 24 1014.2 8 1013.1 8 13.8 24 7.4 24 14.0 999.9 88.3* 70.3* 0.00I 999.9 000000 724050 13743 19630803 80.0 24 63.9 24 1015.1 8 1014.1 8 12.3 24 1.8 24 8.9 999.9 87.3* 72.3* 99.99 999.9 010000 724050 13743 19630804 83.7 24 64.0 24 1010.0 8 1009.0 8 14.3 24 10.3 24 21.0 999.9 92.3* 76.3* 99.99 999.9 010000 724050 13743 19630805 79.2 24 52.5 24 1014.9 8 1013.9 8 14.9 24 9.9 24 14.0 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19630806 77.5 24 55.4 24 1019.6 8 1018.6 8 14.6 24 5.4 24 9.9 999.9 85.3* 68.4* 0.00I 999.9 000000 724050 13743 19630807 76.7 24 62.0 24 1017.7 8 1016.6 8 9.7 24 4.0 24 9.9 999.9 83.3* 74.3* 99.99 999.9 010000 724050 13743 19630808 77.6 24 64.9 24 1012.8 8 1011.7 8 7.8 24 7.7 24 13.0 999.9 86.4* 69.3* 0.00I 999.9 000000 724050 13743 19630809 80.4 24 63.3 24 1011.1 8 1009.9 8 8.8 24 2.7 24 8.9 999.9 92.3* 70.3* 0.00I 999.9 000000 724050 13743 19630810 79.1 24 60.3 24 1012.1 8 1011.0 8 12.4 24 6.3 24 12.0 999.9 86.4* 73.4* 0.00I 999.9 000000 724050 13743 19630811 76.4 24 57.5 24 1015.4 8 1014.4 8 13.4 24 3.0 24 6.0 999.9 86.4* 67.3* 0.00I 999.9 000000 724050 13743 19630812 78.6 24 55.6 24 1015.8 8 1014.7 8 13.5 24 3.6 24 8.0 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19630813 78.2 24 66.8 24 1007.8 8 1006.8 8 10.4 24 8.6 24 15.0 999.9 86.4* 72.3* 99.99 999.9 010000 724050 13743 19630814 73.2 24 56.2 24 1005.6 8 1004.6 8 14.3 24 14.4 24 22.9 999.9 76.3* 68.4* 0.00I 999.9 000000 724050 13743 19630815 68.7 24 48.3 24 1017.5 8 1016.4 8 14.9 24 6.8 24 12.0 999.9 79.3* 60.3* 0.00I 999.9 000000 724050 13743 19630816 72.5 24 55.2 24 1018.5 8 1017.5 8 11.8 24 3.4 24 8.0 999.9 84.4* 63.3* 0.00I 999.9 000000 724050 13743 19630817 75.8 24 56.1 24 1018.1 8 1016.9 8 13.7 24 8.4 24 12.0 999.9 89.2* 66.4* 0.00I 999.9 000000 724050 13743 19630818 76.9 24 58.4 24 1016.7 8 1015.6 8 14.4 24 9.6 24 19.0 999.9 85.3* 72.3* 0.00I 999.9 000000 724050 13743 19630819 71.5 24 56.0 24 1021.2 8 1020.1 8 12.0 24 5.8 24 9.9 999.9 79.3* 63.3* 0.00I 999.9 000000 724050 13743 19630820 75.1 24 68.5 24 1016.1 8 1015.1 8 6.4 24 4.2 24 15.0 999.9 85.3* 67.3* 99.99 999.9 010010 724050 13743 19630821 73.6 24 67.8 24 1017.6 8 1016.5 8 8.8 24 3.6 24 12.0 999.9 83.3* 67.3* 99.99 999.9 010010 724050 13743 19630822 78.9 24 68.2 24 1017.2 8 1016.1 8 10.8 24 2.1 24 9.9 999.9 89.2* 70.3* 99.99 999.9 010000 724050 13743 19630823 79.2 24 65.4 24 1015.3 8 1014.2 8 7.0 24 4.4 24 9.9 999.9 87.3* 72.3* 0.00I 999.9 000000 724050 13743 19630824 78.4 24 62.7 24 1012.3 8 1011.1 8 6.8 24 4.1 24 19.0 999.9 84.4* 71.2* 99.99 999.9 010000 724050 13743 19630825 68.7 24 50.7 24 1016.8 8 1015.7 8 12.9 24 5.8 24 9.9 999.9 78.3* 60.3* 0.00I 999.9 000000 724050 13743 19630826 68.9 24 52.2 24 1019.9 8 1018.7 8 14.3 24 2.3 24 7.0 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19630827 70.7 24 55.3 24 1020.6 8 1019.5 8 14.0 24 3.0 24 8.9 999.9 81.3* 63.3* 0.00I 999.9 000000 724050 13743 19630828 72.1 24 55.8 24 1020.3 8 1019.2 8 13.3 24 5.3 24 9.9 999.9 82.4* 65.3* 0.00I 999.9 000000 724050 13743 19630829 71.9 24 60.9 24 1016.2 8 1015.1 8 12.1 24 7.4 24 13.0 999.9 80.2* 67.3* 99.99 999.9 010000 724050 13743 19630830 77.0 24 65.5 24 1013.5 8 1012.5 8 10.0 24 5.8 24 9.9 999.9 83.3* 73.4* 0.00I 999.9 000000 724050 13743 19630831 75.0 24 59.5 24 1013.9 8 1012.8 8 12.9 24 5.1 24 15.9 999.9 82.4* 68.4* 0.00I 999.9 000000 724050 13743 19630901 71.5 24 53.0 24 1018.9 8 1017.8 8 14.2 24 5.6 24 9.9 999.9 77.4* 63.3* 0.00I 999.9 000000 724050 13743 19630902 71.3 24 54.7 24 1022.8 8 1021.6 8 14.4 24 2.5 24 7.0 999.9 83.3* 60.3* 0.00I 999.9 000000 724050 13743 19630903 75.8 24 60.5 24 1020.2 8 1019.2 8 11.9 24 6.8 24 8.9 999.9 88.3* 68.4* 0.00I 999.9 000000 724050 13743 19630904 78.7 24 65.6 24 1015.6 8 1014.6 8 12.6 24 7.4 24 12.0 999.9 85.3* 73.4* 99.99 999.9 010000 724050 13743 19630905 67.8 24 57.8 24 1018.1 8 1017.0 8 11.1 24 6.8 24 9.9 999.9 75.4* 65.3* 99.99 999.9 010000 724050 13743 19630906 63.9 24 51.6 24 1017.8 8 1016.7 8 12.7 24 5.0 24 7.0 999.9 72.3* 58.3* 99.99 999.9 010000 724050 13743 19630907 68.3 24 58.1 24 1018.1 8 1017.0 8 10.2 24 2.8 24 7.0 999.9 79.3* 61.3* 0.00I 999.9 000000 724050 13743 19630908 71.5 24 60.6 24 1019.2 8 1018.1 8 8.6 24 2.4 24 6.0 999.9 82.4* 63.3* 0.00I 999.9 000000 724050 13743 19630909 74.1 24 60.9 24 1017.2 8 1016.1 8 6.4 24 2.2 24 5.1 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19630910 75.6 24 60.3 24 1014.3 8 1013.2 8 9.4 24 5.3 24 11.1 999.9 84.4* 66.4* 0.00I 999.9 000000 724050 13743 19630911 71.9 24 53.9 24 1020.3 8 1019.2 8 11.9 24 3.4 24 8.9 999.9 83.3* 60.3* 0.00I 999.9 000000 724050 13743 19630912 77.8 24 63.6 24 1015.8 8 1014.7 8 8.9 24 8.5 24 12.0 999.9 90.3* 70.3* 0.00I 999.9 000000 724050 13743 19630913 70.2 24 55.6 24 1015.0 8 1013.9 8 12.6 24 8.6 24 15.9 999.9 85.3* 58.3* 99.99 999.9 010000 724050 13743 19630914 59.1 24 45.6 24 1026.6 8 1025.4 8 12.4 24 6.8 24 9.9 999.9 63.3* 54.3* 0.00I 999.9 000000 724050 13743 19630915 57.2 24 48.4 24 1028.7 8 1027.6 8 9.6 24 5.8 24 8.0 999.9 60.3* 55.4* 99.99 999.9 110000 724050 13743 19630916 58.6 24 55.5 24 1027.1 8 1026.0 8 4.6 24 6.1 24 8.9 999.9 62.4* 56.3* 99.99 999.9 110000 724050 13743 19630917 63.5 24 56.0 24 1024.2 8 1023.2 8 12.4 24 4.9 24 9.9 999.9 69.3* 60.3* 99.99 999.9 010000 724050 13743 19630918 68.2 24 61.1 24 1021.8 8 1020.7 8 10.5 24 4.6 24 8.0 999.9 75.4* 65.3* 99.99 999.9 010000 724050 13743 19630919 71.9 24 60.1 24 1017.2 8 1016.1 8 8.1 24 3.4 24 9.9 999.9 85.3* 62.4* 0.00I 999.9 100000 724050 13743 19630920 74.7 24 58.1 24 1014.3 8 1013.2 8 8.9 24 3.0 24 7.0 999.9 89.2* 64.4* 0.00I 999.9 000000 724050 13743 19630921 69.1 24 58.8 24 1014.7 8 1013.6 8 7.7 24 5.7 24 9.9 999.9 81.3* 60.3* 99.99 999.9 110000 724050 13743 19630922 58.7 24 43.4 24 1020.2 8 1019.2 8 12.6 24 9.9 24 15.0 999.9 66.4* 51.3* 99.99 999.9 110000 724050 13743 19630923 56.3 24 33.9 24 1027.1 8 1025.9 8 14.9 24 8.4 24 18.1 999.9 64.4* 49.3* 0.00I 999.9 000000 724050 13743 19630924 53.4 24 31.0 24 1032.1 8 1031.0 8 14.3 24 3.9 24 8.0 999.9 64.4* 43.3* 0.00I 999.9 000000 724050 13743 19630925 55.9 24 38.7 24 1029.6 8 1028.5 8 11.4 24 2.0 24 8.0 999.9 70.3* 45.3* 0.00I 999.9 000000 724050 13743 19630926 62.6 24 49.9 24 1024.2 8 1023.2 8 12.1 24 2.9 24 7.0 999.9 78.3* 52.3* 0.00I 999.9 000000 724050 13743 19630927 68.2 24 51.8 24 1016.8 8 1015.7 8 13.8 24 3.2 24 7.0 999.9 81.3* 58.3* 0.00I 999.9 000000 724050 13743 19630928 69.8 24 51.4 24 1009.9 8 1008.8 8 12.9 24 3.4 24 7.0 999.9 79.3* 59.4* 0.00I 999.9 000000 724050 13743 19630929 67.3 24 56.9 24 1001.7 8 1000.6 8 9.9 24 6.2 24 14.0 999.9 74.3* 61.3* 99.99 999.9 110000 724050 13743 19630930 61.2 24 43.2 24 1011.7 8 1010.6 8 14.9 24 11.3 24 25.1 999.9 70.3* 52.3* 0.00I 999.9 000000 724050 13743 19631001 63.0 24 44.9 24 1024.5 8 1023.5 8 13.3 24 2.7 24 6.0 999.9 74.3* 55.4* 0.00I 999.9 000000 724050 13743 19631002 64.8 24 48.0 24 1022.1 8 1021.1 8 14.3 24 4.6 24 8.0 999.9 76.3* 55.4* 0.00I 999.9 000000 724050 13743 19631003 68.5 24 52.5 24 1012.6 8 1011.5 8 13.8 24 7.6 24 20.0 999.9 79.3* 58.3* 0.00I 999.9 000000 724050 13743 19631004 64.3 24 42.7 24 1017.8 8 1016.7 8 14.9 24 10.6 24 18.1 999.9 72.3* 58.3* 0.00I 999.9 000000 724050 13743 19631005 58.0 24 37.4 24 1027.5 8 1026.4 8 14.9 24 1.2 24 5.1 999.9 71.2* 47.3* 0.00I 999.9 000000 724050 13743 19631006 60.2 24 44.6 24 1026.7 8 1025.7 8 10.5 24 2.5 24 6.0 999.9 77.4* 48.4* 0.00I 999.9 100000 724050 13743 19631007 67.8 24 47.6 24 1019.2 8 1018.1 8 14.2 24 3.6 24 8.0 999.9 85.3* 55.4* 0.00I 999.9 000000 724050 13743 19631008 69.2 24 52.2 24 1012.0 8 1011.0 8 12.8 24 5.2 24 14.0 999.9 78.3* 59.4* 0.00I 999.9 000000 724050 13743 19631009 61.6 24 40.6 24 1019.2 8 1018.2 8 13.9 24 4.7 24 8.9 999.9 70.3* 55.4* 0.00I 999.9 000000 724050 13743 19631010 58.5 24 40.8 24 1024.8 8 1023.8 8 11.4 24 1.6 24 8.9 999.9 71.2* 48.4* 0.00I 999.9 000000 724050 13743 19631011 60.8 24 43.8 24 1019.9 8 1018.8 8 13.6 24 2.8 24 8.0 999.9 74.3* 50.4* 0.00I 999.9 000000 724050 13743 19631012 63.6 24 43.4 24 1016.3 8 1015.2 8 14.9 24 6.6 24 15.9 999.9 68.4* 56.3* 0.00I 999.9 000000 724050 13743 19631013 56.6 24 37.4 24 1026.2 8 1025.1 8 14.9 24 1.9 24 6.0 999.9 67.3* 47.3* 0.00I 999.9 000000 724050 13743 19631014 57.2 24 41.0 24 1029.5 8 1028.4 8 10.7 24 2.0 24 6.0 999.9 73.4* 45.3* 0.00I 999.9 100000 724050 13743 19631015 60.5 24 43.5 24 1027.3 8 1026.2 8 8.5 24 1.6 24 5.1 999.9 78.3* 47.3* 0.00I 999.9 100000 724050 13743 19631016 62.3 24 45.2 24 1024.4 8 1023.3 8 7.9 24 1.7 24 7.0 999.9 79.3* 49.3* 0.00I 999.9 100000 724050 13743 19631017 65.1 24 44.1 24 1022.6 8 1021.5 8 6.3 24 1.8 24 7.0 999.9 81.3* 53.4* 0.00I 999.9 000000 724050 13743 19631018 67.3 24 46.8 24 1024.5 8 1023.4 8 5.2 24 1.4 24 5.1 999.9 81.3* 57.4* 0.00I 999.9 000000 724050 13743 19631019 67.0 24 49.5 24 1024.2 8 1023.1 8 4.3 24 1.8 24 6.0 999.9 82.4* 55.4* 0.00I 999.9 000000 724050 13743 19631020 65.8 24 51.9 24 1019.7 8 1018.6 8 5.2 24 2.8 24 9.9 999.9 77.4* 58.3* 0.00I 999.9 000000 724050 13743 19631021 66.9 24 49.7 24 1018.0 8 1017.0 8 6.9 24 4.2 24 8.9 999.9 80.2* 55.4* 0.00I 999.9 000000 724050 13743 19631022 62.3 24 50.1 24 1026.8 8 1025.7 8 8.8 24 6.0 24 9.9 999.9 73.4* 59.4* 0.00I 999.9 000000 724050 13743 19631023 61.3 24 50.3 24 1028.2 8 1027.0 8 8.1 24 4.2 24 7.0 999.9 73.4* 55.4* 99.99 999.9 010000 724050 13743 19631024 62.9 24 52.3 24 1024.8 8 1023.7 8 4.7 24 1.7 24 6.0 999.9 77.4* 54.3* 0.00I 999.9 000000 724050 13743 19631025 62.7 24 51.5 24 1021.9 8 1020.8 8 7.7 24 2.0 24 7.0 999.9 77.4* 52.3* 0.00I 999.9 000000 724050 13743 19631026 65.8 24 61.1 24 1018.8 8 1017.7 8 3.3 24 0.5 24 8.0 999.9 80.2* 60.3* 99.99 999.9 110000 724050 13743 19631027 68.1 24 57.4 24 1015.7 8 1014.6 8 6.4 24 1.1 24 6.0 999.9 83.3* 58.3* 0.00I 999.9 100000 724050 13743 19631028 63.8 24 46.2 24 1012.0 8 1010.9 8 12.0 24 7.5 24 15.9 999.9 72.3* 58.3* 0.00I 999.9 000000 724050 13743 19631029 56.3 24 28.9 24 1007.7 8 1006.6 8 14.9 24 12.6 24 22.0 999.9 59.4* 52.3* 0.00I 999.9 000000 724050 13743 19631030 48.8 24 24.0 24 1013.0 8 1011.9 8 14.9 24 17.9 24 23.9 999.9 56.3* 43.3* 0.00I 999.9 000000 724050 13743 19631031 53.3 24 27.0 24 1018.2 8 1017.1 8 14.7 24 3.3 24 7.0 999.9 65.3* 47.3* 0.00I 999.9 000000 724050 13743 19631101 57.5 24 38.3 24 1008.7 8 1007.6 8 11.1 24 6.1 24 9.9 999.9 61.3* 52.3* 99.99 999.9 110000 724050 13743 19631102 46.6 24 35.6 24 1007.2 8 1006.1 8 9.9 24 13.9 24 22.9 999.9 50.4* 41.4* 99.99 999.9 110000 724050 13743 19631103 46.4 24 24.5 24 1016.5 8 1015.4 8 14.9 24 13.5 24 22.0 999.9 52.3* 43.3* 0.00I 999.9 000000 724050 13743 19631104 47.6 24 28.9 24 1022.0 8 1020.9 8 14.9 24 2.1 24 8.0 999.9 57.4* 38.3* 0.00I 999.9 000000 724050 13743 19631105 53.4 24 32.9 24 1018.6 8 1017.4 8 13.6 24 3.2 24 5.1 999.9 59.4* 49.3* 0.00I 999.9 000000 724050 13743 19631106 56.6 24 52.5 24 1011.9 8 1010.8 8 5.3 24 3.5 24 9.9 999.9 58.3* 53.4* 99.99 999.9 110000 724050 13743 19631107 58.4 24 55.1 24 992.8 8 991.7 8 8.3 24 13.5 24 21.0 999.9 61.3* 55.4* 99.99 999.9 110000 724050 13743 19631108 55.9 24 45.1 24 997.7 8 996.7 8 14.8 24 17.1 24 22.0 999.9 58.3* 54.3* 99.99 999.9 010000 724050 13743 19631109 57.3 24 41.8 24 1007.8 8 1006.8 8 14.9 24 11.4 24 21.0 999.9 63.3* 54.3* 0.00I 999.9 000000 724050 13743 19631110 54.6 24 42.0 24 1014.4 8 1013.3 8 11.7 24 1.1 24 5.1 999.9 66.4* 45.3* 0.00I 999.9 000000 724050 13743 19631111 55.2 24 39.8 24 1011.9 8 1010.7 8 11.9 24 4.7 24 16.9 999.9 61.3* 48.4* 0.00I 999.9 000000 724050 13743 19631112 50.5 24 28.6 24 1011.1 8 1010.0 8 14.3 24 6.0 24 14.0 999.9 54.3* 45.3* 0.00I 999.9 000000 724050 13743 19631113 44.4 24 26.6 24 1011.2 8 1010.1 8 13.1 24 1.9 24 8.9 999.9 51.3* 36.3* 0.00I 999.9 000000 724050 13743 19631114 43.3 24 24.6 24 1014.5 8 1013.4 8 14.9 24 8.4 24 13.0 999.9 50.4* 38.3* 0.00I 999.9 000000 724050 13743 19631115 45.8 24 26.2 24 1022.4 8 1021.3 8 14.9 24 8.5 24 14.0 999.9 52.3* 40.3* 0.00I 999.9 000000 724050 13743 19631116 46.9 24 29.2 24 1024.4 8 1023.4 8 14.2 24 2.7 24 7.0 999.9 61.3* 37.4* 0.00I 999.9 000000 724050 13743 19631117 60.1 24 35.8 24 1023.0 8 1021.9 8 14.5 24 2.8 24 7.0 999.9 75.4* 51.3* 0.00I 999.9 000000 724050 13743 19631118 62.0 24 36.9 24 1020.2 8 1019.1 8 14.0 24 5.4 24 8.0 999.9 74.3* 53.4* 0.00I 999.9 000000 724050 13743 19631119 60.7 24 41.6 24 1021.3 8 1020.2 8 14.9 24 8.8 24 15.9 999.9 68.4* 55.4* 0.00I 999.9 000000 724050 13743 19631120 49.9 24 35.8 24 1030.3 8 1029.3 8 9.7 24 1.6 24 5.1 999.9 60.3* 42.4* 0.00I 999.9 000000 724050 13743 19631121 53.8 24 44.8 24 1029.6 8 1028.5 8 9.9 24 4.9 24 7.0 999.9 64.4* 49.3* 99.99 999.9 010000 724050 13743 19631122 56.5 24 48.2 24 1027.0 8 1026.0 8 6.8 24 2.2 24 8.0 999.9 69.3* 48.4* 0.00I 999.9 000000 724050 13743 19631123 63.0 24 55.7 24 1017.0 8 1016.0 8 8.9 24 8.4 24 11.1 999.9 65.3* 58.3* 99.99 999.9 110000 724050 13743 19631124 48.4 24 31.1 24 1019.1 8 1018.1 8 14.7 24 12.5 24 20.0 999.9 59.4* 41.4* 99.99 999.9 010000 724050 13743 19631125 41.6 24 18.6 24 1030.2 8 1029.0 8 14.9 24 5.0 24 14.0 999.9 47.3* 36.3* 0.00I 999.9 000000 724050 13743 19631126 40.7 24 29.2 24 1027.9 8 1026.8 8 12.1 24 4.7 24 8.9 999.9 46.4* 36.3* 99.99 999.9 110000 724050 13743 19631127 52.3 24 42.7 24 1019.8 8 1018.7 8 11.3 24 2.7 24 5.1 999.9 67.3* 45.3* 0.00I 999.9 000000 724050 13743 19631128 52.5 24 41.7 24 1020.3 8 1019.2 8 6.4 24 1.3 24 6.0 999.9 60.3* 43.3* 0.00I 999.9 000000 724050 13743 19631129 57.3 24 51.6 24 1003.7 8 1002.6 8 7.1 24 8.3 24 29.9 999.9 66.4* 43.3* 99.99 999.9 110000 724050 13743 19631130 39.2 24 27.7 24 994.7 8 993.5 8 10.7 24 19.0 24 32.1 999.9 43.3* 35.4* 99.99 999.9 011000 724050 13743 19631201 37.7 24 17.7 24 1016.8 8 1015.8 8 14.9 24 7.2 24 15.9 999.9 42.4* 33.4* 0.00I 999.9 000000 724050 13743 19631202 37.7 24 20.3 24 1023.8 8 1022.8 8 13.9 24 1.4 24 8.0 999.9 45.3* 32.4* 0.00I 999.9 000000 724050 13743 19631203 39.2 24 33.0 24 1012.8 8 1011.8 8 8.9 24 3.6 24 11.1 999.9 42.4* 37.4* 99.99 999.9 110000 724050 13743 19631204 37.9 24 20.7 24 1014.8 8 1013.8 8 12.5 24 4.4 24 9.9 999.9 44.4* 34.3* 0.00I 999.9 000000 724050 13743 19631205 39.4 24 26.0 24 1017.9 8 1016.9 8 11.4 24 1.9 24 7.0 999.9 44.4* 35.4* 0.00I 999.9 000000 724050 13743 19631206 39.0 24 25.9 24 1022.4 8 1021.3 8 8.7 24 3.1 24 9.9 999.9 43.3* 33.4* 0.00I 999.9 000000 724050 13743 19631207 41.0 24 27.6 24 1021.2 8 1020.0 8 8.3 24 1.2 24 5.1 999.9 52.3* 33.4* 0.00I 999.9 000000 724050 13743 19631208 45.1 24 34.5 24 1014.3 8 1013.2 8 8.7 24 4.2 24 16.9 999.9 54.3* 38.3* 99.99 999.9 110000 724050 13743 19631209 39.0 24 28.5 24 1002.6 8 1001.6 8 14.0 24 5.7 24 15.9 999.9 45.3* 35.4* 99.99 999.9 111000 724050 13743 19631210 37.1 24 18.7 24 1010.8 8 1009.6 8 14.9 24 9.6 24 15.9 999.9 43.3* 31.3* 0.00I 999.9 000000 724050 13743 19631211 37.1 24 23.0 24 1021.0 8 1019.9 8 13.3 24 5.5 24 15.9 999.9 40.3* 35.4* 0.00I 999.9 000000 724050 13743 19631212 37.6 24 31.0 24 1015.5 8 1014.4 8 6.4 24 2.9 24 7.0 999.9 41.4* 34.3* 99.99 999.9 111000 724050 13743 19631213 39.2 24 31.9 24 1017.2 8 1016.2 8 7.7 24 1.5 24 5.1 999.9 42.4* 35.4* 0.00I 999.9 000000 724050 13743 19631214 37.2 24 27.5 24 1015.4 8 1014.3 8 7.3 24 6.4 24 22.9 999.9 41.4* 29.3* 99.99 999.9 111000 724050 13743 19631215 24.0 24 0.3 24 1023.0 8 1021.9 8 14.9 24 10.2 24 15.0 999.9 29.3* 19.4* 0.00I 999.9 000000 724050 13743 19631216 25.5 24 3.8 24 1029.2 8 1028.2 8 14.9 24 11.3 24 22.9 999.9 31.3* 22.5* 0.00I 999.9 000000 724050 13743 19631217 25.2 24 4.5 24 1032.3 8 1031.2 8 14.9 24 6.4 24 9.9 999.9 31.3* 20.3* 0.00I 999.9 000000 724050 13743 19631218 28.5 24 14.0 24 1021.7 8 1020.6 8 10.5 24 3.1 24 21.0 999.9 31.3* 25.3* 99.99 999.9 001000 724050 13743 19631219 24.1 24 7.6 24 1016.8 8 1015.8 8 14.9 24 12.9 24 21.0 999.9 30.4* 20.3* 0.00I 999.9 000000 724050 13743 19631220 19.4 24 -1.2 24 1021.1 8 1020.0 8 14.9 24 6.5 24 16.9 999.9 26.4* 15.4* 0.00I 999.9 000000 724050 13743 19631221 22.0 24 3.9 24 1023.3 8 1022.2 8 14.9 24 6.3 24 13.0 999.9 27.3* 18.3* 0.00I 999.9 000000 724050 13743 19631222 24.3 24 8.9 24 1030.1 8 1029.0 8 13.8 24 7.4 24 12.0 999.9 32.4* 18.3* 0.00I 999.9 000000 724050 13743 19631223 28.6 24 20.4 24 1028.7 8 1027.6 8 5.2 24 3.2 24 8.0 999.9 32.4* 25.3* 99.99 999.9 111000 724050 13743 19631224 32.6 24 24.5 24 1014.2 8 1013.2 8 6.5 24 7.2 24 15.0 999.9 39.4* 27.3* 99.99 999.9 110000 724050 13743 19631225 35.8 24 24.0 24 1009.1 8 1008.0 8 12.0 24 5.1 24 14.0 999.9 41.4* 31.3* 0.00I 999.9 000000 724050 13743 19631226 38.1 24 21.3 24 1011.0 8 1009.9 8 12.4 24 2.9 24 8.9 999.9 55.4* 26.4* 0.00I 999.9 000000 724050 13743 19631227 41.9 24 23.6 24 1008.6 8 1007.5 8 10.6 24 4.1 24 23.9 999.9 51.3* 34.3* 0.00I 999.9 000000 724050 13743 19631228 35.5 24 21.1 24 1018.5 8 1017.4 8 14.9 24 7.2 24 19.0 999.9 40.3* 31.3* 0.00I 999.9 000000 724050 13743 19631229 30.5 24 15.1 24 1023.0 8 1022.0 8 14.5 24 3.4 24 8.9 999.9 36.3* 25.3* 0.00I 999.9 000000 724050 13743 19631230 26.2 24 10.8 24 1033.1 8 1032.0 8 14.9 24 8.9 24 15.0 999.9 32.4* 21.4* 0.00I 999.9 000000 724050 13743 19631231 21.8 24 6.2 24 1041.6 8 1040.5 8 10.5 24 2.8 24 6.0 999.9 28.4* 15.4* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1991/0000755000175000017500000000000014302004506015103 5ustar nileshnileshfluids-1.0.22/tests/gsod/1991/724050-13743.op0000644000175000017500000014327214302004506016674 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19910101 33.9 24 20.3 24 1035.7 24 1033.3 24 17.8 24 7.3 24 15.9 999.9 42.1* 27.0 0.00G 999.9 000000 724050 13743 19910102 36.7 24 26.8 24 1028.6 24 1026.2 24 9.5 24 3.6 24 8.0 999.9 50.0* 26.1 0.00G 999.9 100000 724050 13743 19910103 39.1 24 31.4 24 1026.5 24 1024.1 24 9.2 24 5.4 24 12.0 999.9 51.1 26.1 0.00G 999.9 100000 724050 13743 19910104 36.1 24 21.0 24 1032.6 24 1030.1 24 12.1 24 8.9 24 13.0 999.9 48.9 28.9 0.00G 999.9 000000 724050 13743 19910105 34.7 24 23.4 24 1033.6 24 1031.2 24 11.1 24 3.7 24 8.0 999.9 43.0* 26.1 0.00G 999.9 000000 724050 13743 19910106 41.8 24 31.3 24 1027.3 24 1024.9 24 8.5 24 5.5 24 9.9 999.9 46.9 26.1 0.00G 999.9 010000 724050 13743 19910107 37.4 24 35.8 24 1031.0 24 1028.6 24 3.2 24 10.0 24 14.0 999.9 46.9 33.1 0.57G 2.0 111000 724050 13743 19910108 27.5 23 18.4 23 1036.1 23 1033.7 23 13.2 23 12.6 23 15.9 999.9 41.0 21.9 0.02G 1.2 111000 724050 13743 19910109 34.8 22 31.3 22 1030.3 22 1028.0 22 6.2 22 10.5 22 12.0 999.9 39.9* 21.9 0.09G 0.4 111000 724050 13743 19910110 40.8 24 31.4 24 1032.4 24 1030.0 24 10.4 24 6.3 24 13.0 999.9 46.9* 33.1 0.02G 999.9 000000 724050 13743 19910111 35.7 24 31.2 24 1032.1 24 1029.7 24 6.3 24 10.4 24 15.9 999.9 46.9 30.9 0.34G 0.8 111000 724050 13743 19910112 37.7 24 34.8 24 1010.2 24 1007.8 24 5.0 24 8.0 24 13.0 999.9 39.9 30.9 1.25G 0.4 110000 724050 13743 19910113 37.9 24 25.6 24 1013.7 24 1011.3 24 14.5 24 12.2 24 20.0 26.0 42.1 34.0 0.08G 999.9 110000 724050 13743 19910114 34.3 22 22.9 22 1021.6 22 1019.2 22 11.8 22 7.1 22 14.0 999.9 46.0* 28.9 0.00G 999.9 000000 724050 13743 19910115 42.2 24 32.8 24 1021.6 24 1019.2 24 12.8 24 3.5 24 8.9 999.9 57.9* 28.9 0.00G 999.9 000000 724050 13743 19910116 45.8 24 39.9 24 1012.7 24 1010.3 24 6.3 24 5.4 24 13.0 18.1 59.0 34.0 0.39G 999.9 110010 724050 13743 19910117 46.8 24 37.8 24 1009.1 24 1006.8 24 14.1 24 11.3 24 21.0 28.9 53.1 42.1 0.15G 999.9 110000 724050 13743 19910118 41.2 24 28.2 24 1017.4 24 1014.9 24 14.1 24 8.2 24 14.0 999.9 48.9 35.1 0.00G 999.9 000000 724050 13743 19910119 42.6 24 25.2 24 1018.5 24 1016.1 24 13.3 24 6.9 24 13.0 999.9 53.1 32.0 0.00G 999.9 000000 724050 13743 19910120 47.4 24 34.7 24 1006.8 24 1004.4 24 12.4 24 6.3 24 13.0 999.9 55.9 32.0 0.00G 999.9 000000 724050 13743 19910121 43.2 24 32.6 24 1004.7 24 1002.3 24 15.5 24 12.8 24 24.1 36.9 57.0 33.1* 0.01G 999.9 010000 724050 13743 19910122 23.5 24 8.4 24 1019.3 24 1016.9 24 17.3 24 14.4 24 18.1 26.0 30.9* 18.0 0.00D 999.9 000000 724050 13743 19910123 26.7 24 13.7 24 1021.5 24 1019.1 24 15.0 24 9.8 24 15.9 999.9 41.0* 18.0 0.00G 999.9 000000 724050 13743 19910124 37.4 24 23.6 24 1018.6 24 1016.2 24 15.5 24 8.6 24 14.0 18.1 45.0 19.0 0.00G 999.9 000000 724050 13743 19910125 29.2 24 11.6 24 1027.1 24 1024.7 24 15.6 24 12.2 24 17.1 19.0 45.0 19.9 0.00G 999.9 000000 724050 13743 19910126 29.4 23 18.8 23 1026.5 23 1024.1 23 13.4 23 7.5 23 14.0 999.9 41.0* 19.9 0.00G 999.9 000000 724050 13743 19910127 37.1 23 22.4 23 1019.4 23 1017.0 23 14.9 23 8.6 23 13.0 999.9 46.0* 19.9 0.00G 999.9 000000 724050 13743 19910128 46.9 24 32.5 24 1014.4 24 1012.0 24 14.0 23 9.6 24 15.0 999.9 55.9* 28.9 0.00G 999.9 000000 724050 13743 19910129 44.3 24 31.4 24 1021.7 24 1019.2 24 12.4 24 4.7 24 12.0 999.9 55.9 37.9 0.00G 999.9 000000 724050 13743 19910130 48.7 23 42.4 23 1014.0 23 1011.6 23 10.9 23 5.5 23 12.0 999.9 57.0 37.9 0.00G 999.9 010000 724050 13743 19910131 45.0 23 29.4 23 1014.7 23 1012.3 23 13.6 23 15.5 23 22.9 32.1 57.9 36.0* 0.00G 999.9 010000 724050 13743 19910201 32.8 23 11.6 23 1035.9 23 1033.5 23 14.7 23 8.2 23 18.1 27.0 55.0 24.1 0.00G 999.9 000000 724050 13743 19910202 40.5 24 22.6 24 1035.7 24 1033.3 24 12.1 24 9.1 24 13.0 999.9 55.0* 24.1 0.00G 999.9 000000 724050 13743 19910203 45.3 24 29.7 24 1029.7 24 1027.3 24 11.3 24 6.7 24 9.9 999.9 63.0* 32.0 0.00G 999.9 000000 724050 13743 19910204 48.0 24 32.5 24 1027.0 24 1024.6 24 10.7 24 3.8 24 8.0 999.9 66.9* 33.1 0.00G 999.9 000000 724050 13743 19910205 51.8 24 34.6 24 1024.3 24 1021.9 24 14.4 24 5.5 24 12.0 999.9 70.0 37.0 0.00G 999.9 000000 724050 13743 19910206 54.6 24 48.2 24 1023.2 24 1020.8 24 6.9 23 3.4 24 8.0 999.9 70.0 43.0 0.06G 999.9 110000 724050 13743 19910207 49.6 24 48.1 24 1018.2 24 1015.8 24 2.2 24 6.2 24 9.9 999.9 57.9 46.0 0.14G 999.9 110000 724050 13743 19910208 46.6 24 41.7 24 1017.0 24 1014.6 24 7.8 24 12.6 24 15.0 999.9 54.0 43.0* 0.01G 999.9 110000 724050 13743 19910209 44.1 24 32.6 24 1013.2 24 1010.8 24 7.9 24 8.5 24 15.0 999.9 54.0* 35.1 0.00D 999.9 000000 724050 13743 19910210 42.5 24 32.3 24 1011.6 24 1009.2 24 7.9 24 9.7 24 15.0 999.9 55.0 34.0 0.00G 999.9 100000 724050 13743 19910211 40.0 24 19.5 24 1013.2 24 1010.8 24 14.9 24 12.8 24 19.0 26.0 50.0 34.0 0.00G 999.9 000000 724050 13743 19910212 30.2 24 9.9 24 1020.6 24 1018.1 24 17.7 24 12.3 24 18.1 24.1 42.1 23.0 0.00G 999.9 000000 724050 13743 19910213 38.2 24 22.8 24 1011.1 24 1008.7 24 12.8 24 9.4 24 14.0 999.9 48.9* 23.0 0.00G 999.9 110000 724050 13743 19910214 50.6 24 41.1 24 989.6 24 987.3 24 8.1 24 12.7 24 20.0 26.0 59.2* 32.0 0.34G 999.9 110000 724050 13743 19910215 37.0 24 15.3 24 993.7 24 991.3 24 16.2 24 13.7 24 21.0 31.1 60.1 28.2* 0.01G 999.9 000000 724050 13743 19910216 22.8 23 1.1 23 1014.4 23 1012.0 23 17.3 23 17.0 23 21.0 28.9 42.1 17.1 0.00G 999.9 000000 724050 13743 19910217 32.8 24 12.2 24 1021.1 24 1018.7 24 13.7 24 8.0 24 13.0 999.9 41.0* 17.1 0.00G 999.9 001000 724050 13743 19910218 37.9 24 35.8 24 1026.7 24 1024.3 24 4.9 24 5.2 24 14.0 999.9 43.0 28.0 0.09G 0.4 111000 724050 13743 19910219 48.7 24 47.3 24 1023.2 24 1020.8 24 3.9 23 9.3 24 17.1 19.0 62.1* 35.1 0.11G 999.9 110000 724050 13743 19910220 61.6 23 53.6 23 1016.3 23 1013.9 23 11.3 23 10.3 23 15.9 20.0 64.9 43.0 0.03G 999.9 110000 724050 13743 19910221 48.3 24 30.6 24 1022.2 24 1019.8 24 12.9 24 7.8 24 14.0 25.1 64.9 37.0 0.00G 999.9 000000 724050 13743 19910222 53.7 24 33.3 24 1013.9 24 1011.5 24 13.5 24 9.6 24 21.0 28.0 72.0* 37.0 0.00G 999.9 000000 724050 13743 19910223 40.2 24 17.4 24 1022.7 24 1020.3 24 16.7 24 13.4 24 32.1 41.0 55.0* 35.1 0.00G 999.9 000000 724050 13743 19910224 35.9 24 22.2 24 1025.6 24 1023.2 24 15.1 24 4.4 24 8.0 999.9 50.0* 27.0 0.00G 999.9 000000 724050 13743 19910225 43.9 24 33.4 24 1017.2 24 1014.9 24 11.7 24 5.4 24 11.1 999.9 50.0 27.0 0.00G 999.9 010000 724050 13743 19910226 39.3 24 29.3 24 1015.5 24 1013.1 24 8.4 24 10.9 24 14.0 21.0 50.0 35.1 0.05G 999.9 111000 724050 13743 19910227 35.0 24 16.4 24 1017.0 24 1014.6 24 13.6 24 8.7 24 15.0 17.1 44.1 27.0 0.04G 999.9 000000 724050 13743 19910228 40.7 23 26.1 23 1022.9 23 1020.5 23 10.9 23 5.2 23 13.0 999.9 55.9* 27.0 0.00G 999.9 000000 724050 13743 19910301 51.1 23 36.7 23 1022.7 23 1020.2 23 12.0 23 9.4 23 14.0 999.9 64.9 28.9 0.00G 999.9 000000 724050 13743 19910302 61.1 24 52.5 24 1008.1 24 1005.8 24 10.4 24 12.9 24 21.0 24.1 70.0* 39.0 0.10G 999.9 110000 724050 13743 19910303 58.3 24 54.9 24 1002.5 24 1000.2 24 13.0 24 8.7 24 15.0 999.9 71.1 51.1 0.00D 999.9 110000 724050 13743 19910304 52.8 24 46.4 24 990.4 24 988.0 24 11.4 23 11.7 24 18.1 28.9 64.9 44.1 0.47G 999.9 110000 724050 13743 19910305 46.5 23 27.6 23 1006.6 23 1004.2 23 15.8 23 10.4 23 15.0 20.0 60.1* 39.0 0.07G 999.9 000000 724050 13743 19910306 50.7 24 37.6 24 1007.7 24 1005.3 24 12.5 24 7.9 24 22.0 26.0 61.0 39.0 0.00G 999.9 010000 724050 13743 19910307 50.9 24 38.9 24 1000.3 24 997.9 24 13.5 24 11.4 24 20.0 28.0 60.1 39.9 0.08G 999.9 010000 724050 13743 19910308 40.8 24 20.5 24 1014.2 24 1011.8 24 14.2 24 10.0 24 17.1 21.0 55.0 34.0 0.00G 999.9 000000 724050 13743 19910309 39.2 23 16.5 23 1018.8 23 1016.4 23 13.5 23 7.6 23 13.0 999.9 50.0 30.0 0.00G 999.9 000000 724050 13743 19910310 42.1 24 26.5 24 1015.8 24 1013.3 24 11.4 24 7.9 24 19.0 32.1 50.0 30.0 0.00G 999.9 010000 724050 13743 19910311 39.9 23 16.9 23 1017.9 23 1015.5 23 13.8 23 16.3 23 24.1 31.1 50.0 33.1 0.00G 999.9 000000 724050 13743 19910312 37.5 24 9.4 24 1018.8 24 1016.4 24 17.3 24 10.5 24 14.0 999.9 46.9 28.0 0.00G 999.9 000000 724050 13743 19910313 37.8 23 25.7 23 1013.0 23 1010.6 23 11.1 23 7.7 23 15.0 999.9 46.9 28.0 0.00G 999.9 111000 724050 13743 19910314 35.4 24 34.0 24 1007.3 24 1005.0 24 3.9 24 11.2 24 14.0 18.1 39.0 33.1 0.39G 0.4 111000 724050 13743 19910315 40.7 23 32.5 23 1016.6 23 1014.2 23 12.3 23 12.9 23 19.0 22.0 46.9* 36.0 0.16G 999.9 110000 724050 13743 19910316 43.9 23 27.1 23 1027.4 23 1024.9 23 17.6 23 8.8 23 14.0 999.9 55.9* 33.1 0.00G 999.9 000000 724050 13743 19910317 47.3 24 31.2 24 1027.0 24 1024.5 24 10.0 24 4.7 24 13.0 999.9 63.0* 32.0 0.00D 999.9 000000 724050 13743 19910318 49.1 24 42.2 24 1011.5 24 1009.2 24 8.5 24 8.5 24 12.0 999.9 63.0 32.0 0.96G 999.9 110000 724050 13743 19910319 50.7 24 36.6 24 1005.3 24 1002.9 24 13.5 23 14.1 24 22.0 32.1 57.0 43.0 0.04G 999.9 010000 724050 13743 19910320 51.1 24 33.7 24 1013.7 24 1011.4 24 11.7 24 8.9 24 14.0 21.0 64.0* 39.0 0.00G 999.9 000000 724050 13743 19910321 55.3 24 42.0 24 1017.2 24 1014.8 24 10.9 24 6.8 24 19.0 22.9 64.0 39.0 0.00G 999.9 010000 724050 13743 19910322 53.4 23 49.5 23 1015.9 23 1013.5 23 6.5 23 5.5 23 13.0 999.9 64.0 46.9 0.07G 999.9 110000 724050 13743 19910323 47.8 24 46.2 24 1017.9 24 1015.5 24 4.2 24 9.2 24 15.9 28.0 57.0 45.0 1.15G 999.9 110010 724050 13743 19910324 53.1 24 44.9 24 1006.3 24 1003.9 24 7.2 24 9.0 24 26.0 42.0 64.9 45.0 0.03G 999.9 110000 724050 13743 19910325 51.8 24 34.3 24 1016.2 24 1013.8 24 15.3 24 10.6 24 19.0 28.9 64.9 46.0 0.00G 999.9 000000 724050 13743 19910326 49.8 24 36.9 24 1023.6 24 1021.2 24 11.3 24 5.9 24 9.9 999.9 62.1 39.9 0.00G 999.9 000000 724050 13743 19910327 55.6 24 47.1 24 1015.6 24 1013.2 24 9.7 24 5.7 24 8.9 999.9 71.1* 39.9 0.07G 999.9 110000 724050 13743 19910328 73.1 23 46.1 23 1003.5 23 1001.1 23 14.1 23 14.3 23 19.0 29.9 78.1 64.9* 0.00D 999.9 000000 724050 13743 19910329 56.8 20 39.7 20 1006.1 20 1003.7 20 11.5 20 5.1 20 13.0 999.9 79.0 50.0 0.44G 999.9 110000 724050 13743 19910330 44.4 24 38.0 24 1008.6 24 1006.2 24 6.8 24 14.0 24 21.0 28.9 61.0 35.1 0.52G 999.9 111000 724050 13743 19910331 42.6 24 25.5 24 1025.8 24 1023.4 24 15.8 24 7.2 24 14.0 999.9 53.1* 32.0 0.02G 999.9 000000 724050 13743 19910401 47.2 23 30.7 23 1020.5 23 1018.1 23 14.5 23 7.2 23 15.0 22.9 57.9 32.0 0.00G 999.9 000000 724050 13743 19910402 47.3 24 30.0 24 1025.5 24 1023.1 24 15.8 24 7.6 24 15.0 22.9 59.0 37.0 0.00G 999.9 010000 724050 13743 19910403 46.3 24 27.6 24 1034.0 24 1031.5 24 14.2 24 4.6 24 13.0 999.9 57.9* 35.1 0.00G 999.9 000000 724050 13743 19910404 51.3 24 37.4 24 1033.8 24 1031.3 24 12.8 24 8.1 24 15.0 19.0 66.0* 35.1 0.00G 999.9 000000 724050 13743 19910405 56.8 23 48.7 23 1025.5 23 1023.1 23 9.8 23 9.9 23 13.0 999.9 66.0 39.0 0.06G 999.9 010000 724050 13743 19910406 63.2 23 51.5 23 1020.2 23 1017.8 23 7.9 23 4.9 23 8.0 999.9 77.0* 48.9 0.02G 999.9 110000 724050 13743 19910407 69.4 24 47.9 24 1017.4 24 1015.0 24 9.6 24 6.8 24 14.0 17.1 87.1* 48.9 0.00G 999.9 000000 724050 13743 19910408 69.0 23 54.4 23 1015.2 23 1012.8 23 11.1 23 7.2 23 15.0 19.0 87.1 55.0 0.00G 999.9 000000 724050 13743 19910409 74.7 23 61.2 23 1010.3 23 1007.9 23 12.5 22 10.0 23 15.0 20.0 84.9 55.9 0.00G 999.9 000000 724050 13743 19910410 69.9 18 47.2 18 1008.1 18 1005.7 18 14.6 18 9.5 18 21.0 28.9 84.0 61.0 0.00G 999.9 010010 724050 13743 19910411 54.0 24 28.3 24 1023.4 24 1021.0 24 19.7 24 12.5 24 24.1 33.0 75.9 43.0 0.00G 999.9 000000 724050 13743 19910412 52.5 24 22.7 24 1033.5 23 1031.1 23 17.9 24 9.8 24 15.9 999.9 64.9 43.0 0.00G 999.9 000000 724050 13743 19910413 49.1 24 38.6 24 1032.5 24 1030.1 24 9.9 24 7.4 24 12.0 999.9 61.0 43.0 0.18G 999.9 110000 724050 13743 19910414 48.2 24 45.2 23 1026.9 24 1024.5 24 4.4 24 10.2 24 17.1 21.0 51.1 45.0 0.64G 999.9 110000 724050 13743 19910415 49.4 24 46.9 24 1020.8 24 1018.4 24 4.5 24 6.4 24 11.1 999.9 55.9* 45.0 0.16G 999.9 110000 724050 13743 19910416 62.4 24 47.3 24 1016.2 24 1013.8 24 12.8 24 7.8 24 13.0 17.1 78.1* 46.9 0.01G 999.9 100000 724050 13743 19910417 67.3 24 49.3 24 1014.4 24 1012.0 24 14.0 24 9.3 24 14.0 22.0 86.0* 46.9 0.00G 999.9 000000 724050 13743 19910418 59.6 24 48.5 24 1016.2 24 1013.8 24 9.3 24 10.6 24 15.9 21.0 86.0 53.1 0.00G 999.9 100000 724050 13743 19910419 49.9 23 41.3 23 1021.2 23 1018.8 23 9.3 23 10.3 23 13.0 999.9 63.0 46.9 0.00C 999.9 000000 724050 13743 19910420 48.6 24 44.0 24 1016.2 24 1013.8 24 6.5 24 8.9 24 12.0 999.9 52.0 46.0 0.05G 999.9 110000 724050 13743 19910421 50.3 24 44.0 24 1004.3 24 1002.0 24 7.4 24 9.9 24 15.0 22.9 53.1* 46.0 0.01G 999.9 110000 724050 13743 19910422 51.8 24 38.5 24 1000.2 24 997.8 24 15.5 23 5.9 24 8.9 18.1 60.1 46.0 0.03G 999.9 010000 724050 13743 19910423 55.3 24 37.5 24 1009.3 24 1006.9 24 15.1 24 6.4 24 14.0 999.9 68.0* 42.1 0.00G 999.9 000000 724050 13743 19910424 60.6 24 46.9 24 1009.1 24 1006.7 24 11.0 24 10.8 24 24.1 34.0 73.9 42.1 0.04G 999.9 110010 724050 13743 19910425 56.4 18 39.8 18 1018.1 18 1015.7 18 15.5 18 9.8 18 14.0 21.0 73.9 48.0 0.00D 999.9 000000 724050 13743 19910426 63.1 24 49.7 24 1021.3 24 1018.9 24 9.9 24 6.9 24 11.1 999.9 75.9* 48.0 0.00G 999.9 000000 724050 13743 19910427 67.2 23 57.1 23 1016.7 23 1014.3 23 8.6 22 8.1 23 18.1 24.1 81.0* 53.1 0.00G 999.9 110010 724050 13743 19910428 68.8 24 62.4 24 1015.4 24 1013.0 24 8.0 24 7.1 24 15.0 999.9 82.0 55.9 0.02G 999.9 000010 724050 13743 19910429 58.1 24 55.2 24 1020.6 24 1018.1 24 4.6 24 8.3 24 15.0 999.9 77.0 55.0 0.07G 999.9 110000 724050 13743 19910430 67.5 23 63.0 23 1016.4 23 1014.0 23 6.3 23 5.2 23 8.9 999.9 79.0* 55.0 0.10G 999.9 110000 724050 13743 19910501 70.2 23 55.8 23 1013.1 23 1010.7 23 12.9 23 6.0 23 15.9 19.0 81.0 54.0 0.00D 999.9 000000 724050 13743 19910502 66.4 24 43.2 24 1012.5 24 1010.1 24 14.4 24 12.1 24 19.0 26.0 81.0 54.0 0.00G 999.9 000010 724050 13743 19910503 59.7 22 40.0 22 1014.8 22 1012.4 22 14.7 22 11.2 22 22.0 28.0 73.0 52.0 0.00G 999.9 010000 724050 13743 19910504 61.3 24 39.8 24 1018.7 24 1016.3 24 14.6 24 8.0 24 11.1 999.9 72.0* 51.1 0.00G 999.9 000000 724050 13743 19910505 65.3 24 51.0 24 1020.4 24 1018.0 24 12.3 24 7.3 24 13.0 999.9 73.0 51.1 0.00G 999.9 000000 724050 13743 19910506 68.5 24 62.2 24 1014.3 24 1011.9 24 7.9 24 9.1 24 20.0 35.9 80.1* 60.1 0.22G 999.9 110010 724050 13743 19910507 61.7 23 46.3 23 1020.7 23 1018.3 23 12.5 23 7.7 23 12.0 19.0 82.0 55.0 0.74G 999.9 000000 724050 13743 19910508 64.2 24 49.4 24 1026.8 24 1024.3 24 11.9 24 5.9 24 11.1 17.1 78.1* 51.1 0.00G 999.9 100000 724050 13743 19910509 63.5 23 56.6 23 1027.0 23 1024.6 23 7.0 23 5.2 23 11.1 999.9 79.0 51.1 0.12G 999.9 110000 724050 13743 19910510 67.6 24 58.4 24 1025.5 24 1023.1 24 5.7 24 5.3 24 9.9 999.9 82.0* 59.0 0.00D 999.9 100000 724050 13743 19910511 65.5 22 52.8 22 1026.5 22 1024.1 22 10.7 22 8.0 22 13.0 18.1 82.0 57.0 0.00G 999.9 000000 724050 13743 19910512 72.6 24 56.7 24 1017.9 24 1015.5 24 10.4 24 7.8 24 13.0 999.9 89.1* 57.0 0.00G 999.9 000000 724050 13743 19910513 78.0 23 64.7 23 1012.0 23 1009.6 23 7.5 23 6.5 23 11.1 999.9 90.0 59.0 0.00G 999.9 000010 724050 13743 19910514 75.7 23 68.6 23 1009.7 23 1007.3 23 6.3 23 6.6 23 11.1 999.9 90.0 69.1 0.00G 999.9 110010 724050 13743 19910515 76.4 23 62.7 23 1013.1 23 1010.7 23 8.1 23 7.4 23 12.0 15.0 90.0* 64.9 0.02G 999.9 100000 724050 13743 19910516 76.2 22 61.0 22 1019.1 22 1016.7 22 9.9 22 8.5 22 14.0 999.9 91.0 64.0 0.00G 999.9 100000 724050 13743 19910517 74.9 23 66.3 23 1015.9 23 1013.5 23 7.1 23 10.3 23 15.0 25.1 88.0* 64.0 0.00G 999.9 110110 724050 13743 19910518 70.8 24 65.7 24 1018.8 24 1016.4 24 6.9 24 9.1 24 17.1 999.9 88.0 62.1* 0.30G 999.9 100000 724050 13743 19910519 58.3 24 48.1 24 1030.5 24 1028.1 24 9.8 24 9.0 24 13.0 999.9 75.9 54.0 0.02G 999.9 010000 724050 13743 19910520 59.1 23 45.8 23 1030.2 23 1027.8 23 13.5 23 6.6 23 8.9 999.9 68.0 53.1 0.00D 999.9 000000 724050 13743 19910521 68.3 23 53.9 23 1026.8 23 1024.4 23 14.5 23 7.8 23 14.0 15.0 80.1* 53.1 0.00G 999.9 000000 724050 13743 19910522 73.7 24 63.5 24 1022.3 24 1019.9 24 12.8 24 8.2 24 12.0 999.9 84.0 61.0 0.00G 999.9 000000 724050 13743 19910523 77.7 24 66.8 24 1021.5 24 1019.1 24 9.4 24 7.1 24 9.9 999.9 89.1 63.0 0.00G 999.9 110000 724050 13743 19910524 77.8 24 65.3 24 1020.8 24 1018.4 24 10.0 24 10.5 24 14.0 18.1 90.0 66.9 0.00G 999.9 000000 724050 13743 19910525 80.4 24 68.4 24 1017.1 24 1014.7 24 8.9 24 8.8 24 13.0 999.9 91.9* 69.1 0.00G 999.9 000000 724050 13743 19910526 83.2 24 72.0 24 1017.4 24 1015.0 24 7.9 24 8.3 24 13.0 15.0 93.0 70.0 0.00G 999.9 100000 724050 13743 19910527 83.3 24 72.4 24 1017.7 24 1015.3 24 12.1 23 11.1 24 15.0 19.0 93.0 73.9 0.00G 999.9 000000 724050 13743 19910528 82.8 22 71.2 22 1016.8 22 1014.4 22 10.0 20 8.4 22 19.0 27.0 91.9 75.0 0.02G 999.9 010010 724050 13743 19910529 85.2 24 68.1 24 1016.0 24 1013.5 24 6.7 24 7.1 24 9.9 999.9 95.0* 73.9 0.00G 999.9 000000 724050 13743 19910530 85.5 24 69.5 24 1010.9 24 1008.5 24 5.7 24 7.7 24 15.9 18.1 97.0 73.9 0.00G 999.9 000000 724050 13743 19910531 86.1 24 72.7 24 1007.7 24 1005.3 24 7.7 24 6.9 24 15.9 999.9 98.1 73.9 0.02G 999.9 010010 724050 13743 19910601 81.2 24 68.7 24 1008.7 24 1006.3 24 9.3 24 7.3 24 13.0 18.1 99.0 73.9 0.11G 999.9 110010 724050 13743 19910602 78.2 24 67.6 24 1010.0 24 1007.6 24 8.4 24 6.0 24 9.9 999.9 93.0 70.0 0.42G 999.9 100000 724050 13743 19910603 77.1 24 70.3 24 1008.2 24 1005.8 24 6.6 24 6.5 24 11.1 999.9 88.0 70.0 0.14G 999.9 110010 724050 13743 19910604 74.8 24 62.3 24 1007.5 24 1005.1 24 8.6 24 11.2 24 18.1 20.0 82.0 69.1 0.08G 999.9 100000 724050 13743 19910605 67.5 24 49.9 24 1016.4 24 1014.0 24 16.6 24 10.9 24 15.0 19.0 79.0 60.1 0.00G 999.9 000000 724050 13743 19910606 66.2 24 52.7 24 1022.8 24 1020.4 24 15.8 24 6.8 24 9.9 999.9 77.0 57.9 0.00G 999.9 010000 724050 13743 19910607 67.7 22 53.2 22 1025.9 22 1023.5 22 13.0 22 5.2 22 9.9 999.9 80.1 57.0 0.00G 999.9 000000 724050 13743 19910608 70.8 23 51.0 23 1021.7 23 1019.3 23 15.6 23 6.6 23 12.0 999.9 84.0 57.0 0.00G 999.9 000000 724050 13743 19910609 77.0 23 53.5 23 1020.9 23 1018.5 23 12.6 23 6.0 23 8.9 999.9 90.0 57.9 0.00G 999.9 000000 724050 13743 19910610 79.3 21 59.5 21 1020.7 21 1018.3 21 9.8 21 7.1 21 11.1 17.1 91.0 64.0 0.00G 999.9 000000 724050 13743 19910611 81.0 23 61.8 23 1016.6 23 1014.2 23 7.0 23 8.8 23 13.0 18.1 91.9 66.9 0.00G 999.9 010010 724050 13743 19910612 80.8 24 64.4 24 1012.5 24 1010.2 24 6.1 24 8.4 24 15.0 21.0 91.0 69.1 0.00G 999.9 010000 724050 13743 19910613 77.2 24 48.1 24 1015.9 24 1013.5 24 15.3 24 10.4 24 17.1 999.9 90.0 64.9 0.00G 999.9 000000 724050 13743 19910614 74.0 23 49.5 23 1019.3 23 1016.9 23 17.1 23 5.8 23 8.9 999.9 86.0* 59.0 0.00G 999.9 000000 724050 13743 19910615 80.6 24 63.3 24 1015.0 24 1012.6 24 11.3 24 7.6 24 12.0 999.9 97.0* 59.0 0.00G 999.9 000000 724050 13743 19910616 86.1 24 71.7 24 1009.7 24 1007.3 24 7.5 22 8.6 24 20.0 27.0 98.1 66.9 0.00G 999.9 010010 724050 13743 19910617 82.3 24 70.5 24 1011.0 24 1008.6 24 9.2 23 7.9 24 20.0 999.9 98.1 73.9 0.01G 999.9 010010 724050 13743 19910618 73.6 24 70.2 24 1016.2 24 1013.8 24 7.8 23 9.4 24 14.0 17.1 79.0* 66.9* 0.00G 999.9 010000 724050 13743 19910619 68.7 24 64.3 24 1019.3 24 1016.9 24 5.7 24 7.7 24 12.0 999.9 79.0 64.0 0.10G 999.9 110000 724050 13743 19910620 77.9 24 67.4 24 1017.9 24 1015.5 24 6.4 24 5.4 24 11.1 999.9 88.0* 64.0 0.00G 999.9 100000 724050 13743 19910621 83.0 24 68.8 24 1014.2 24 1011.8 24 7.0 24 6.8 24 13.0 999.9 95.0 69.1 0.00G 999.9 100000 724050 13743 19910622 76.6 24 68.8 24 1012.3 24 1010.0 24 7.9 24 8.2 24 13.0 999.9 96.1 69.1 0.31G 999.9 110000 724050 13743 19910623 67.6 24 64.2 24 1015.0 24 1012.6 24 6.3 24 10.8 24 14.0 15.9 78.1 64.0 0.20G 999.9 110000 724050 13743 19910624 69.5 24 57.5 24 1022.9 24 1020.4 24 8.2 24 5.8 24 8.9 999.9 81.0* 59.0 0.01G 999.9 110000 724050 13743 19910625 73.3 24 55.2 24 1024.1 24 1021.7 24 12.6 24 7.6 24 12.0 18.1 84.0* 59.0 0.00G 999.9 000000 724050 13743 19910626 72.1 24 56.0 24 1024.0 24 1021.6 24 14.5 24 7.5 24 12.0 999.9 84.9 60.1 0.00G 999.9 000000 724050 13743 19910627 76.3 24 62.4 24 1023.7 24 1021.3 24 14.2 24 7.3 24 12.0 999.9 88.0* 60.1 0.00G 999.9 000000 724050 13743 19910628 80.2 24 66.0 24 1020.8 24 1018.4 24 10.4 24 7.9 24 13.0 999.9 96.1* 66.0 0.00G 999.9 000000 724050 13743 19910629 87.1 24 69.3 24 1015.8 24 1013.3 24 7.7 24 8.1 24 13.0 999.9 97.0 68.0 0.00G 999.9 000000 724050 13743 19910630 89.6 23 69.9 23 1011.8 23 1009.4 23 5.2 23 8.4 23 13.0 15.0 98.1 75.9 0.00G 999.9 000000 724050 13743 19910701 82.3 23 66.4 23 1011.4 23 1009.0 23 8.6 23 7.6 23 15.0 18.1 98.1 73.0 0.00G 999.9 000000 724050 13743 19910702 81.0 24 71.9 24 1011.2 24 1008.8 24 7.1 24 8.5 24 15.0 20.0 91.9* 73.0 0.00G 999.9 110010 724050 13743 19910703 79.1 23 71.8 23 1010.5 23 1008.1 23 5.1 23 6.2 23 17.1 20.0 93.0 72.0 0.04G 999.9 110010 724050 13743 19910704 75.4 24 69.4 24 1014.7 24 1012.3 24 5.3 24 8.2 24 11.1 999.9 93.0 72.0 0.02G 999.9 110000 724050 13743 19910705 74.8 24 69.8 24 1013.9 24 1011.5 24 4.3 23 6.3 24 8.9 999.9 82.0* 70.0 0.03G 999.9 110000 724050 13743 19910706 81.0 24 68.9 24 1014.0 24 1011.6 24 6.6 24 6.4 24 14.0 999.9 93.9* 70.0 0.35G 999.9 110010 724050 13743 19910707 85.8 24 70.1 24 1013.4 24 1011.0 24 8.7 24 8.1 24 17.1 999.9 99.0 71.1 0.00G 999.9 010010 724050 13743 19910708 82.1 23 68.9 23 1011.7 23 1009.3 23 8.7 23 8.2 23 25.1 55.0 99.0 73.9 0.08G 999.9 010010 724050 13743 19910709 81.7 24 62.4 24 1012.8 24 1010.4 24 12.6 24 8.6 24 13.0 999.9 97.0 72.0 0.96G 999.9 000000 724050 13743 19910710 77.6 23 60.8 23 1014.0 23 1011.7 23 11.1 23 4.8 23 8.0 999.9 88.0 73.9 0.00G 999.9 010000 724050 13743 19910711 79.2 18 62.2 18 1013.6 18 1011.2 18 10.7 18 6.6 18 8.9 999.9 90.0* 68.0 0.01G 999.9 100000 724050 13743 19910712 80.0 24 62.6 24 1014.7 24 1012.3 24 9.4 24 5.9 24 12.0 20.0 91.0 68.0 0.00G 999.9 010000 724050 13743 19910713 81.7 24 69.3 24 1009.2 24 1006.8 24 6.1 24 10.7 24 13.0 19.0 93.9* 69.1 0.00G 999.9 110000 724050 13743 19910714 82.7 24 62.4 24 1010.9 24 1008.5 24 8.6 24 8.3 24 13.0 999.9 95.0 75.0 0.00G 999.9 000000 724050 13743 19910715 80.2 23 55.5 23 1020.0 23 1017.6 23 13.9 23 6.2 23 8.9 999.9 90.0* 69.1 0.00G 999.9 000000 724050 13743 19910716 80.5 24 57.8 24 1024.1 24 1021.7 24 12.5 24 4.6 24 12.0 999.9 91.9* 68.0 0.00G 999.9 000000 724050 13743 19910717 81.7 23 63.5 23 1020.5 23 1018.1 23 9.3 23 9.3 23 13.0 15.9 93.0 68.0 0.00G 999.9 000000 724050 13743 19910718 84.5 24 67.3 24 1016.1 24 1013.7 24 9.3 24 8.6 24 17.1 999.9 98.1* 71.1 0.00G 999.9 000000 724050 13743 19910719 85.2 23 71.4 23 1015.4 23 1013.0 23 9.5 23 9.6 23 13.0 999.9 98.1 73.9 0.00G 999.9 000000 724050 13743 19910720 86.7 23 71.7 23 1017.4 23 1015.0 23 6.2 23 6.3 23 11.1 999.9 98.1 77.0 0.00G 999.9 000010 724050 13743 19910721 90.0 23 70.3 23 1017.4 23 1015.0 23 3.9 23 6.3 23 12.0 999.9 100.0* 77.0 0.00G 999.9 000000 724050 13743 19910722 86.8 24 72.5 24 1016.4 24 1014.0 24 5.1 24 6.6 24 27.0 35.0 100.9 78.1 0.34G 999.9 010010 724050 13743 19910723 86.5 24 71.5 24 1012.5 24 1010.1 24 7.7 24 7.8 24 19.0 999.9 100.9* 75.9 0.05G 999.9 110010 724050 13743 19910724 83.2 24 67.3 24 1012.0 24 1009.6 24 9.2 24 7.9 24 25.1 36.9 100.9 75.9 0.15G 999.9 010010 724050 13743 19910725 80.7 24 69.7 24 1014.0 24 1011.6 24 8.1 24 6.5 24 15.0 999.9 93.0 70.0 0.61G 999.9 110010 724050 13743 19910726 80.8 23 73.2 23 1017.0 23 1014.6 23 7.1 22 5.7 23 14.0 19.0 91.9 70.0 0.01G 999.9 110010 724050 13743 19910727 72.4 24 66.2 24 1020.5 24 1018.1 24 7.5 24 7.9 24 11.1 999.9 93.0 68.0 0.72G 999.9 110010 724050 13743 19910728 74.8 24 61.2 24 1021.1 24 1018.7 24 11.3 24 6.1 24 11.1 999.9 84.9 64.9 0.14G 999.9 000000 724050 13743 19910729 72.8 24 63.8 24 1019.1 24 1016.8 24 9.8 24 7.7 24 12.0 999.9 86.0 64.9 0.34G 999.9 110000 724050 13743 19910730 73.4 23 63.5 23 1017.7 23 1015.3 23 11.6 22 4.9 23 8.9 999.9 80.1* 69.1 0.02G 999.9 000000 724050 13743 19910731 78.0 24 66.9 24 1016.6 24 1014.2 24 8.2 24 5.5 24 8.9 999.9 88.0* 69.1 0.00G 999.9 100000 724050 13743 19910801 79.8 24 66.5 24 1017.0 24 1014.6 24 5.9 24 6.1 24 13.0 999.9 91.0 69.1 0.00G 999.9 000000 724050 13743 19910802 83.8 24 69.9 24 1014.9 24 1012.5 24 6.0 24 7.5 24 13.0 17.1 96.1* 69.1 0.00G 999.9 000000 724050 13743 19910803 84.9 24 73.9 24 1012.7 24 1010.3 24 7.8 24 7.7 24 11.1 999.9 96.1 73.0 0.00G 999.9 000000 724050 13743 19910804 84.5 23 69.6 23 1010.6 23 1008.2 23 7.7 23 8.1 23 13.0 999.9 93.9 75.0 0.00G 999.9 010000 724050 13743 19910805 80.0 24 58.3 24 1015.6 24 1013.2 24 12.3 24 8.2 24 12.0 15.9 91.0 70.0 0.00G 999.9 000000 724050 13743 19910806 77.7 24 54.1 24 1021.8 24 1019.4 24 16.7 24 7.5 24 13.0 999.9 87.1 68.0 0.00G 999.9 000000 724050 13743 19910807 77.5 22 63.3 22 1022.8 22 1020.4 22 12.1 22 6.5 22 9.9 999.9 87.1 68.0 0.00G 999.9 010000 724050 13743 19910808 77.8 20 69.1 20 1019.1 20 1016.7 20 7.7 19 6.4 20 12.0 999.9 86.0* 72.0 0.00G 999.9 100000 724050 13743 19910809 77.1 24 72.4 24 1012.3 24 1009.9 24 6.1 23 9.3 24 17.1 999.9 88.0 72.0 0.24G 999.9 110010 724050 13743 19910810 77.4 24 67.0 24 1010.9 24 1008.5 24 6.9 24 7.3 24 9.9 999.9 87.1* 71.1 1.19G 999.9 110000 724050 13743 19910811 78.3 22 58.1 22 1016.8 22 1014.4 22 15.0 22 7.5 22 12.0 999.9 87.1 69.1 0.06G 999.9 000000 724050 13743 19910812 78.0 24 61.6 24 1019.4 24 1017.0 24 14.2 24 5.9 24 11.1 999.9 88.0 66.9 0.00G 999.9 000000 724050 13743 19910813 77.9 24 65.9 24 1017.9 24 1015.5 24 11.0 24 4.7 24 8.9 999.9 88.0 66.9 0.00G 999.9 000000 724050 13743 19910814 77.3 22 68.9 22 1016.0 22 1013.5 22 8.4 22 7.0 22 9.9 999.9 89.1 68.0 0.00G 999.9 010000 724050 13743 19910815 76.6 21 68.9 21 1014.8 21 1012.4 21 6.1 21 7.2 21 12.0 17.1 84.9 70.0 0.01G 999.9 110000 724050 13743 19910816 78.4 24 64.6 24 1017.8 24 1015.4 24 6.9 24 6.1 24 9.9 999.9 91.0* 66.9 0.00D 999.9 100000 724050 13743 19910817 80.3 24 68.1 24 1016.9 24 1014.5 24 6.3 24 8.1 24 13.0 999.9 91.0 66.9 0.00G 999.9 100000 724050 13743 19910818 81.5 24 70.0 24 1012.9 24 1010.5 24 6.3 24 9.8 24 14.0 15.0 91.0 71.1 0.00G 999.9 100000 724050 13743 19910819 80.8 24 71.6 24 1008.1 24 1005.7 24 8.3 23 7.6 24 11.1 999.9 91.9 73.9 0.03G 999.9 110000 724050 13743 19910820 78.6 23 67.8 23 1009.6 23 1007.2 23 9.0 23 7.1 23 17.1 22.9 91.9 71.1 0.00G 999.9 100000 724050 13743 19910821 73.6 24 62.7 24 1014.1 24 1011.8 24 9.9 24 7.4 24 12.0 17.1 86.0 62.1* 0.05G 999.9 010010 724050 13743 19910822 75.9 23 59.4 23 1018.8 23 1016.4 23 10.7 23 6.1 23 9.9 999.9 86.0 64.9 0.00G 999.9 000000 724050 13743 19910823 76.8 21 64.2 21 1020.2 21 1017.8 21 8.5 21 6.8 21 9.9 999.9 90.0* 64.9 0.00G 999.9 000000 724050 13743 19910824 79.3 21 68.5 21 1024.2 21 1021.8 21 6.4 21 4.9 21 8.0 999.9 91.0 66.9 0.00G 999.9 000000 724050 13743 19910825 77.7 22 67.9 22 1028.4 22 1026.0 22 6.3 22 8.4 22 12.0 999.9 91.0 72.0 0.00G 999.9 100000 724050 13743 19910826 74.2 24 65.5 24 1028.2 24 1025.8 24 6.7 24 7.8 24 11.1 999.9 82.9 66.9 0.00G 999.9 000000 724050 13743 19910827 76.4 24 70.6 24 1024.9 24 1022.5 24 7.4 24 5.3 24 8.0 999.9 84.9* 66.9 0.51G 999.9 110000 724050 13743 19910828 80.4 23 71.9 23 1022.6 23 1020.1 23 9.1 23 7.8 23 13.0 999.9 91.0* 71.1 0.00D 999.9 000000 724050 13743 19910829 83.8 24 72.7 24 1020.9 24 1018.5 24 8.4 24 5.5 24 11.1 999.9 95.0* 72.0 0.00G 999.9 000000 724050 13743 19910830 84.8 24 74.3 24 1016.7 24 1014.3 24 7.7 24 6.7 24 9.9 999.9 96.1 73.0 0.00G 999.9 000000 724050 13743 19910831 85.4 24 72.2 24 1012.1 24 1009.7 24 6.1 24 8.5 24 13.0 19.0 97.0 75.9 0.00G 999.9 000000 724050 13743 19910901 76.0 23 56.3 23 1021.1 23 1018.7 23 12.9 23 11.4 23 19.0 22.9 97.0 64.9 0.00G 999.9 000000 724050 13743 19910902 68.3 24 51.9 24 1029.6 24 1027.2 24 17.9 24 7.9 24 12.0 999.9 79.0 59.0 0.00G 999.9 000000 724050 13743 19910903 71.0 24 57.7 24 1027.0 24 1024.6 24 16.4 24 7.2 24 11.1 15.0 82.0 59.0 0.00G 999.9 000000 724050 13743 19910904 74.7 24 64.0 24 1018.3 24 1015.9 24 11.2 24 8.9 24 11.1 15.9 87.1* 61.0 0.00G 999.9 010010 724050 13743 19910905 76.2 24 66.5 24 1016.5 24 1014.1 24 8.1 24 5.8 24 8.9 999.9 87.1 64.9 0.99G 999.9 110010 724050 13743 19910906 72.0 22 64.8 22 1020.6 22 1018.2 22 7.0 22 6.1 22 9.9 999.9 86.0 66.0 0.36G 999.9 110000 724050 13743 19910907 73.2 24 62.6 24 1023.8 24 1021.4 24 8.1 24 3.6 24 7.0 999.9 84.0* 63.0 0.29G 999.9 100000 724050 13743 19910908 75.7 23 63.0 23 1024.2 23 1021.8 23 8.5 23 5.5 23 8.0 999.9 86.0* 63.0 0.00G 999.9 100000 724050 13743 19910909 76.3 24 63.7 24 1024.3 24 1021.8 24 8.2 24 5.7 24 9.9 999.9 87.1* 66.0 0.00G 999.9 100000 724050 13743 19910910 76.2 24 64.2 24 1020.5 24 1018.1 24 8.9 24 8.5 24 13.0 999.9 87.1 66.9 0.00G 999.9 010000 724050 13743 19910911 78.0 23 65.6 23 1014.8 23 1012.4 23 9.9 23 7.1 23 9.9 999.9 86.0 68.0 0.00G 999.9 000000 724050 13743 19910912 72.0 23 57.7 23 1017.6 23 1015.2 23 12.8 23 6.4 23 8.9 999.9 86.0 64.9 0.00G 999.9 000000 724050 13743 19910913 71.6 24 61.0 24 1017.6 24 1015.2 24 11.0 24 5.1 24 9.9 999.9 82.0* 62.1 0.00G 999.9 000000 724050 13743 19910914 77.6 23 69.0 23 1015.3 23 1012.9 23 7.7 23 6.6 23 8.9 999.9 87.1 62.1 0.05G 999.9 110000 724050 13743 19910915 76.0 24 69.6 24 1019.8 24 1017.4 24 4.9 24 5.8 24 8.9 999.9 87.1 71.1 0.00D 999.9 100000 724050 13743 19910916 81.9 23 72.4 23 1018.4 23 1016.0 23 4.9 23 6.6 23 15.0 999.9 96.1* 71.1 0.00D 999.9 100000 724050 13743 19910917 84.1 23 74.5 23 1015.8 23 1013.4 23 5.3 23 7.5 23 9.9 999.9 96.1 73.0 0.00G 999.9 100000 724050 13743 19910918 80.1 24 73.2 24 1016.1 24 1013.7 24 4.0 24 5.5 24 9.9 999.9 96.1 73.0 0.65G 999.9 110010 724050 13743 19910919 74.2 24 65.5 24 1016.6 24 1014.2 24 9.9 24 10.1 24 20.0 22.0 90.0 60.1* 0.15G 999.9 010000 724050 13743 19910920 61.0 24 46.2 24 1023.0 24 1020.6 24 17.2 24 10.1 24 14.0 999.9 81.0 54.0 0.08G 999.9 010000 724050 13743 19910921 59.2 24 42.5 24 1025.8 24 1023.4 24 13.9 24 5.1 24 7.0 999.9 69.1 51.1 0.00G 999.9 000000 724050 13743 19910922 60.3 24 46.6 24 1028.2 24 1025.7 24 14.1 24 4.9 24 9.9 999.9 72.0* 50.0 0.00G 999.9 000000 724050 13743 19910923 64.1 24 54.7 24 1023.6 24 1021.2 24 12.9 24 5.2 24 6.0 999.9 73.0 50.0 0.03G 999.9 010000 724050 13743 19910924 68.1 23 59.3 23 1021.9 23 1019.5 23 9.1 23 5.0 23 8.0 999.9 73.9 60.1 0.00D 999.9 110000 724050 13743 19910925 66.7 24 63.5 24 1008.2 24 1005.9 24 5.1 23 4.3 24 7.0 999.9 73.9 64.0 1.11G 999.9 110000 724050 13743 19910926 64.3 24 52.9 24 1006.0 24 1003.6 24 9.0 24 6.7 24 12.0 999.9 73.0* 57.9 0.23G 999.9 110000 724050 13743 19910927 59.8 24 38.7 24 1015.9 24 1013.5 24 18.0 24 6.1 24 8.9 13.0 73.0 50.0 0.00G 999.9 000000 724050 13743 19910928 57.4 24 43.1 24 1024.1 24 1021.7 24 14.2 24 4.6 24 7.0 999.9 69.1* 46.9 0.00G 999.9 000000 724050 13743 19910929 62.5 24 51.8 24 1027.5 24 1025.1 24 12.4 24 5.3 24 8.0 999.9 77.0* 46.9 0.00G 999.9 000000 724050 13743 19910930 64.4 24 50.9 24 1029.3 24 1026.9 24 13.7 24 5.9 24 9.9 999.9 78.1 52.0 0.00G 999.9 000000 724050 13743 19911001 66.2 24 59.4 24 1024.7 24 1022.3 24 8.9 24 5.7 24 8.0 999.9 78.1* 54.0 0.00G 999.9 100000 724050 13743 19911002 70.2 24 62.1 24 1019.0 24 1016.6 24 8.1 24 6.8 24 8.9 999.9 79.0 60.1 0.00G 999.9 100000 724050 13743 19911003 71.2 24 63.9 24 1014.6 24 1012.2 24 10.2 24 5.4 24 8.9 999.9 79.0 63.0 0.03G 999.9 110000 724050 13743 19911004 71.8 24 63.0 24 1016.9 24 1014.5 24 10.4 24 5.7 24 8.9 999.9 84.9* 63.0 0.00D 999.9 100000 724050 13743 19911005 72.8 24 66.0 24 1016.5 24 1014.1 24 8.5 24 6.4 24 8.0 999.9 84.9 63.0 0.00G 999.9 100000 724050 13743 19911006 62.8 24 50.7 24 1014.7 24 1012.3 24 8.8 24 10.9 24 17.1 22.9 81.0 55.0 0.35G 999.9 010010 724050 13743 19911007 52.9 24 30.9 24 1019.8 24 1017.4 24 19.7 24 9.8 24 14.0 18.1 72.0 45.0 0.15G 999.9 000000 724050 13743 19911008 53.4 23 34.0 23 1025.8 23 1023.3 23 18.9 23 6.3 23 11.1 999.9 64.0 42.1 0.00G 999.9 000000 724050 13743 19911009 57.1 24 44.3 24 1026.8 24 1024.4 24 12.3 24 7.0 24 9.9 999.9 70.0 42.1 0.00G 999.9 000000 724050 13743 19911010 62.3 24 52.8 24 1019.6 24 1017.2 24 8.5 24 6.4 24 11.1 999.9 75.0* 45.0 0.00G 999.9 100000 724050 13743 19911011 59.3 24 52.7 24 1008.3 24 1005.9 24 8.6 24 5.7 24 20.0 26.0 75.0 52.0* 0.00G 999.9 110000 724050 13743 19911012 56.2 22 47.1 22 1006.9 22 1004.5 22 9.9 22 6.2 22 11.1 999.9 68.0 50.0 0.04G 999.9 110000 724050 13743 19911013 54.8 24 43.6 24 1014.4 24 1012.0 24 9.1 24 6.9 24 11.1 999.9 66.9 48.9 0.03G 999.9 000000 724050 13743 19911014 53.5 24 40.5 24 1020.0 24 1017.5 24 11.3 24 4.8 24 8.0 999.9 64.9 42.1 0.00G 999.9 000000 724050 13743 19911015 62.2 23 52.9 23 1013.3 23 1010.9 23 10.1 23 5.7 23 8.0 999.9 75.9 42.1 0.00G 999.9 100000 724050 13743 19911016 57.3 22 47.9 22 1013.0 22 1010.6 22 9.9 22 8.1 22 14.0 999.9 75.9 50.0 0.34G 999.9 010000 724050 13743 19911017 49.7 23 40.1 23 1014.0 23 1011.6 23 8.2 23 10.0 23 18.1 22.0 62.1 45.0 1.03G 999.9 110000 724050 13743 19911018 55.3 23 45.3 23 1018.7 23 1016.3 23 16.5 23 6.4 23 11.1 999.9 73.0* 42.1 0.21G 999.9 010000 724050 13743 19911019 61.4 24 51.9 24 1017.1 24 1014.7 24 12.0 24 7.2 24 21.0 29.9 81.0* 42.1 0.00G 999.9 000000 724050 13743 19911020 50.5 24 34.0 24 1024.5 24 1022.1 24 13.7 24 8.7 24 14.0 999.9 57.0* 42.1 0.00G 999.9 000000 724050 13743 19911021 47.6 23 37.0 23 1025.3 23 1022.9 23 10.7 23 5.2 23 12.0 999.9 57.0* 39.0 0.00G 999.9 100000 724050 13743 19911022 54.0 24 45.3 24 1023.5 24 1021.1 24 9.0 24 4.0 24 6.0 999.9 70.0* 39.0 0.00G 999.9 000000 724050 13743 19911023 60.6 24 55.8 24 1025.9 24 1023.4 24 4.5 24 4.6 24 7.0 999.9 73.9* 44.1 0.00G 999.9 100000 724050 13743 19911024 64.9 21 58.8 21 1028.7 21 1026.3 21 5.1 21 5.1 21 7.0 999.9 75.0 52.0 0.00G 999.9 100000 724050 13743 19911025 64.4 24 59.0 24 1027.5 24 1025.1 24 4.5 24 4.4 24 8.0 999.9 77.0* 55.9 0.00G 999.9 100000 724050 13743 19911026 64.3 22 61.7 22 1025.5 22 1023.1 22 3.8 22 4.2 22 7.0 999.9 77.0 55.9 0.00G 999.9 100000 724050 13743 19911027 64.9 23 62.8 23 1022.3 23 1019.9 23 3.8 23 4.6 23 6.0 999.9 73.9* 59.0 0.00C 999.9 100000 724050 13743 19911028 62.7 21 54.6 21 1022.0 21 1019.6 21 9.5 21 8.3 21 15.0 18.1 73.9 59.0 0.00G 999.9 100000 724050 13743 19911029 52.0 23 34.8 23 1032.2 23 1029.8 23 16.3 23 8.2 23 11.1 999.9 69.1 44.1 0.00G 999.9 000000 724050 13743 19911030 50.7 24 27.6 24 1027.1 24 1024.7 24 15.1 24 7.5 24 12.0 999.9 68.0* 37.0 0.00G 999.9 000000 724050 13743 19911031 57.1 24 34.6 24 1016.3 24 1013.9 24 16.2 24 9.0 24 12.0 999.9 68.0 37.0 0.00G 999.9 000000 724050 13743 19911101 56.6 23 47.3 23 1016.9 23 1014.5 23 15.7 23 5.6 23 9.9 999.9 66.9 46.9 0.00G 999.9 000000 724050 13743 19911102 60.7 23 51.1 23 1014.1 23 1011.7 23 10.9 23 8.6 23 11.1 999.9 70.0 46.9 0.00G 999.9 000000 724050 13743 19911103 48.5 24 31.1 24 1022.4 24 1019.9 24 11.7 24 7.6 24 12.0 999.9 70.0 39.9 0.00G 999.9 000000 724050 13743 19911104 40.6 24 22.8 24 1025.2 24 1022.8 24 10.1 24 8.5 24 13.0 999.9 54.0 37.0 0.00G 999.9 001000 724050 13743 19911105 34.0 22 13.1 22 1027.9 22 1025.5 22 14.7 22 9.8 22 15.0 999.9 44.1* 27.0 0.00G 999.9 000000 724050 13743 19911106 37.8 23 22.1 22 1024.7 23 1022.2 23 10.6 23 5.9 23 11.1 999.9 52.0* 27.0 0.00G 999.9 000000 724050 13743 19911107 43.4 23 31.8 23 1021.9 23 1019.5 23 6.5 23 4.6 23 8.0 999.9 54.0 28.0 0.00G 999.9 100000 724050 13743 19911108 42.9 24 28.0 24 1024.7 24 1022.3 24 9.3 24 11.8 24 15.9 22.0 55.9 33.1 0.00D 999.9 001000 724050 13743 19911109 38.9 24 22.6 24 1028.7 24 1026.2 24 14.5 24 12.4 24 15.0 999.9 46.0 35.1 0.00G 999.9 011000 724050 13743 19911110 39.6 24 32.4 24 1018.8 24 1016.4 24 8.1 24 13.8 24 15.9 21.0 42.1 35.1 0.07G 999.9 111000 724050 13743 19911111 44.1 24 39.9 24 1010.2 24 1007.8 24 7.9 24 11.0 24 17.1 22.9 48.0* 35.1 0.05G 999.9 110000 724050 13743 19911112 44.2 24 33.0 24 1018.8 24 1016.4 24 14.2 24 8.2 24 17.1 22.9 51.1 37.0 0.01G 999.9 000000 724050 13743 19911113 44.7 23 35.8 23 1019.3 23 1016.9 23 10.0 23 6.7 23 15.0 18.1 51.1 37.0 0.11G 999.9 110000 724050 13743 19911114 47.2 24 37.8 24 1020.1 24 1017.7 24 9.9 24 5.8 24 11.1 999.9 63.0* 35.1 0.00G 999.9 100000 724050 13743 19911115 55.4 24 42.1 24 1021.0 24 1018.6 24 10.5 24 6.3 24 11.1 999.9 68.0 35.1 0.00G 999.9 000000 724050 13743 19911116 59.9 24 46.3 24 1017.0 24 1014.6 24 11.1 24 8.1 24 16.9 24.1 71.1 48.0 0.00G 999.9 000000 724050 13743 19911117 47.3 24 29.5 24 1027.2 24 1024.8 24 14.8 24 9.6 24 14.0 19.0 71.1 37.9 0.00G 999.9 000000 724050 13743 19911118 43.0 23 27.8 23 1028.0 23 1025.6 23 10.0 23 5.2 23 12.0 999.9 54.0 32.0 0.00G 999.9 000000 724050 13743 19911119 52.4 23 37.8 23 1025.0 23 1022.6 23 10.9 23 5.3 23 8.9 999.9 64.0* 32.0 0.00G 999.9 000000 724050 13743 19911120 62.9 24 54.6 24 1022.0 24 1019.6 24 10.8 24 10.8 24 17.1 22.9 75.0 45.0 0.00G 999.9 000000 724050 13743 19911121 67.0 24 60.7 24 1017.4 24 1015.0 24 10.7 23 10.0 24 15.0 21.0 77.0 55.9 0.00G 999.9 000000 724050 13743 19911122 64.5 20 63.3 20 1014.7 20 1012.2 20 6.4 20 8.0 20 15.9 21.0 77.0 60.1* 0.23G 999.9 110000 724050 13743 19911123 60.6 24 52.7 24 1013.9 24 1011.5 24 17.4 24 7.5 24 12.0 999.9 69.1* 55.0 0.28G 999.9 000000 724050 13743 19911124 52.1 24 42.9 24 1010.2 24 1007.8 24 11.4 24 9.0 24 15.9 17.1 70.0 44.1* 0.00G 999.9 000000 724050 13743 19911125 38.0 24 18.7 24 1018.2 24 1015.8 24 14.8 24 10.0 24 15.9 18.1 54.0 33.1 0.00G 999.9 000000 724050 13743 19911126 33.6 24 16.4 24 1027.4 24 1025.0 24 12.6 24 9.3 24 14.0 15.9 41.0 28.9 0.00G 999.9 000000 724050 13743 19911127 34.8 24 21.5 24 1033.0 24 1030.6 24 10.5 24 6.2 24 13.0 999.9 45.0* 26.1 0.00G 999.9 100000 724050 13743 19911128 43.5 24 27.0 24 1028.4 24 1026.0 24 11.4 24 7.1 24 13.0 999.9 60.1* 26.1 0.00G 999.9 000000 724050 13743 19911129 53.5 24 35.8 24 1024.0 24 1021.6 24 12.6 24 7.8 24 11.1 999.9 68.0* 36.0 0.00G 999.9 000000 724050 13743 19911130 61.6 24 51.7 24 1022.4 24 1020.0 24 12.5 24 11.5 24 19.0 28.0 73.0 46.0 0.00G 999.9 010000 724050 13743 19911201 59.7 24 58.8 24 1020.8 24 1018.3 24 5.9 24 6.2 24 12.0 999.9 73.9 54.0 0.70G 999.9 110000 724050 13743 19911202 53.1 24 51.6 24 1018.5 24 1016.2 24 5.0 24 6.9 24 15.9 999.9 62.1 46.0* 0.32G 999.9 110000 724050 13743 19911203 47.2 23 47.1 23 1008.5 23 1006.1 23 2.7 23 7.0 23 14.0 999.9 57.9 44.1 0.78G 999.9 110000 724050 13743 19911204 40.7 24 26.2 24 1008.4 24 1006.0 24 13.4 24 13.9 24 22.0 32.1 55.0 31.1* 0.48G 999.9 110000 724050 13743 19911205 29.2 23 12.5 23 1028.0 23 1025.6 23 14.9 23 10.4 23 15.0 18.1 45.0 24.1 0.00G 999.9 000000 724050 13743 19911206 39.6 23 21.7 23 1021.7 23 1019.3 23 12.8 23 11.0 23 20.0 27.0 52.0* 24.1 0.00G 999.9 000000 724050 13743 19911207 41.2 24 31.3 24 1020.9 24 1018.5 24 10.8 24 6.3 24 12.0 999.9 55.9* 30.9 0.00G 999.9 000000 724050 13743 19911208 48.4 24 40.0 24 1019.0 24 1016.6 24 10.8 24 6.7 24 13.0 999.9 63.0* 30.9 0.00G 999.9 000000 724050 13743 19911209 58.1 24 50.0 24 1013.4 24 1011.0 24 10.0 23 6.8 24 12.0 999.9 71.1 37.9 0.00G 999.9 110000 724050 13743 19911210 49.8 24 41.5 24 1017.9 24 1015.5 24 9.0 24 7.5 24 17.1 22.0 71.1 44.1 1.07G 999.9 110000 724050 13743 19911211 46.4 24 38.2 24 1026.1 24 1023.7 24 8.7 24 3.3 24 6.0 999.9 57.9* 39.0 0.00G 999.9 100000 724050 13743 19911212 48.0 24 41.1 24 1026.8 24 1024.4 24 6.7 24 2.0 24 9.9 999.9 57.9 39.0 0.00G 999.9 100000 724050 13743 19911213 54.1 23 46.5 23 1019.1 23 1016.7 23 8.0 23 8.8 23 12.0 999.9 60.1 41.0 0.02G 999.9 010000 724050 13743 19911214 59.2 23 54.6 23 1010.7 23 1008.3 23 6.1 21 10.6 23 29.9 44.1 66.0* 51.1 0.12G 999.9 110000 724050 13743 19911215 39.7 24 11.7 24 1019.8 24 1017.4 24 19.7 24 11.9 24 28.9 42.9 48.9* 30.9 0.06G 999.9 000000 724050 13743 19911216 32.2 23 9.0 23 1023.8 23 1021.4 23 15.1 23 12.4 23 22.0 28.9 44.1 26.1 0.00G 999.9 000000 724050 13743 19911217 35.2 24 18.4 24 1021.9 24 1019.4 24 12.9 24 7.0 24 12.0 999.9 48.0* 26.1 0.00G 999.9 000000 724050 13743 19911218 40.1 23 19.3 23 1020.6 23 1018.1 23 16.1 23 12.5 23 19.0 26.0 48.9 28.9 0.00G 999.9 000000 724050 13743 19911219 27.3 24 5.4 24 1038.0 24 1035.6 24 17.9 24 14.6 24 20.0 27.0 44.1 19.9 0.00G 999.9 000000 724050 13743 19911220 30.3 23 9.1 23 1042.1 23 1039.6 23 13.8 23 5.6 23 8.9 999.9 42.1* 19.0 0.00G 999.9 000000 724050 13743 19911221 42.7 24 22.1 24 1026.3 24 1023.8 24 13.7 24 10.1 24 22.0 34.0 52.0 21.9 0.00G 999.9 000000 724050 13743 19911222 42.2 24 24.0 24 1021.6 24 1019.2 24 15.6 24 7.9 24 14.0 999.9 54.0* 30.9 0.00G 999.9 000000 724050 13743 19911223 38.5 23 29.3 23 1010.2 23 1007.8 23 11.7 23 5.2 23 9.9 999.9 54.0 30.9 0.05G 999.9 110000 724050 13743 19911224 40.9 24 31.2 24 1009.5 24 1007.1 24 8.5 24 10.7 24 18.1 25.1 45.0 32.0 0.21G 999.9 110000 724050 13743 19911225 37.9 24 23.6 24 1021.6 24 1019.2 24 13.9 24 9.2 24 15.9 18.1 46.0 30.0 0.01G 999.9 000000 724050 13743 19911226 35.5 24 26.7 24 1030.0 24 1027.6 24 11.1 24 5.0 24 9.9 999.9 46.0 28.0 0.00G 999.9 100000 724050 13743 19911227 39.1 23 30.6 23 1031.0 23 1028.6 23 9.8 23 5.4 23 9.9 999.9 48.0 28.0 0.00G 999.9 000000 724050 13743 19911228 36.0 23 30.5 23 1032.0 23 1029.6 23 7.1 23 5.2 23 8.9 999.9 48.9 27.0 0.00G 999.9 110000 724050 13743 19911229 41.6 23 39.5 23 1013.7 23 1011.3 23 4.7 23 7.6 23 9.9 999.9 50.0* 27.0 0.89G 999.9 110000 724050 13743 19911230 43.7 20 35.3 20 1014.3 20 1011.9 20 13.9 20 10.6 20 19.0 21.0 51.1 37.9 0.24G 999.9 110000 724050 13743 19911231 34.7 24 22.9 24 1034.5 24 1032.0 24 12.9 24 8.2 24 12.0 999.9 46.9 28.9 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/1949/0000755000175000017500000000000014302004506015106 5ustar nileshnileshfluids-1.0.22/tests/gsod/1949/724050-13743.op0000644000175000017500000014327214302004506016677 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19490101 38.4 24 24.7 13 998.9 24 998.3 24 14.5 24 19.8 24 27.0 999.9 43.3* 34.3* 99.99 999.9 001010 724050 13743 19490102 36.0 24 9999.9 0 1010.5 24 1009.9 24 14.5 24 10.4 24 19.0 999.9 40.3* 30.4* 0.00I 999.9 000010 724050 13743 19490103 36.3 24 9999.9 0 1022.5 24 1021.8 24 7.1 24 1.6 24 6.0 999.9 48.4* 27.3* 0.00I 999.9 000000 724050 13743 19490104 39.5 24 9999.9 0 1030.1 24 1029.4 24 6.9 24 2.9 24 7.0 999.9 44.4* 34.3* 99.99 999.9 110000 724050 13743 19490105 42.0 24 9999.9 0 1023.2 24 1022.5 24 3.1 24 2.5 24 5.1 999.9 48.4* 38.3* 99.99 999.9 110000 724050 13743 19490106 50.0 24 9999.9 0 1006.7 24 1006.0 24 9.9 24 10.0 24 15.0 999.9 56.3* 43.3* 99.99 999.9 110010 724050 13743 19490107 43.9 24 9999.9 0 1009.4 24 1008.8 24 13.0 24 8.5 24 14.0 999.9 59.4* 35.4* 0.00I 999.9 000010 724050 13743 19490108 50.2 24 9999.9 0 1015.5 24 1014.8 24 7.9 24 2.8 24 7.0 999.9 63.3* 39.4* 0.00I 999.9 000000 724050 13743 19490109 47.9 24 9999.9 0 1022.2 24 1021.6 24 4.0 24 0.2 24 5.1 999.9 62.4* 41.4* 0.00I 999.9 000000 724050 13743 19490110 45.9 24 9999.9 0 1027.0 24 1026.3 24 1.8 24 0.7 24 8.0 999.9 58.3* 38.3* 0.00I 999.9 100000 724050 13743 19490111 49.6 24 9999.9 0 1026.4 24 1025.8 24 6.6 24 5.7 24 11.1 999.9 55.4* 44.4* 99.99 999.9 010000 724050 13743 19490112 37.5 24 9999.9 0 1019.0 24 1018.3 24 5.8 24 3.6 24 8.9 999.9 45.3* 32.4* 99.99 999.9 111000 724050 13743 19490113 40.1 24 9999.9 0 1016.0 24 1015.3 24 12.3 24 8.9 24 16.9 999.9 49.3* 33.4* 0.00I 999.9 000000 724050 13743 19490114 42.9 24 9999.9 0 1011.8 24 1011.1 24 13.1 24 8.0 24 15.9 999.9 49.3* 34.3* 0.00I 999.9 000000 724050 13743 19490115 38.2 24 9999.9 0 1027.3 24 1026.2 24 12.2 24 7.0 24 14.0 999.9 44.4* 31.3* 0.00I 999.9 000000 724050 13743 19490116 44.8 24 9999.9 0 1024.4 24 1023.7 24 12.0 24 5.8 24 9.9 999.9 65.3* 35.4* 0.00I 999.9 000000 724050 13743 19490117 55.0 24 9999.9 0 1018.1 24 1017.5 24 8.7 24 7.9 24 14.0 999.9 60.3* 49.3* 99.99 999.9 010000 724050 13743 19490118 46.2 24 9999.9 0 1027.9 24 1027.2 24 10.3 24 5.5 24 13.0 999.9 53.4* 43.3* 0.00I 999.9 000000 724050 13743 19490119 52.6 24 9999.9 0 1020.3 24 1019.6 24 6.4 24 7.6 24 18.1 999.9 63.3* 44.4* 99.99 999.9 110000 724050 13743 19490120 39.2 24 9999.9 0 1034.0 24 1033.3 24 14.5 24 12.1 24 19.0 999.9 48.4* 32.4* 0.00I 999.9 000000 724050 13743 19490121 33.8 24 9999.9 0 1037.0 24 1036.4 24 5.2 24 4.3 24 7.0 999.9 40.3* 28.4* 99.99 999.9 111000 724050 13743 19490122 43.7 24 9999.9 0 1027.2 24 1026.5 24 6.2 24 3.7 24 9.9 999.9 56.3* 37.4* 99.99 999.9 110000 724050 13743 19490123 39.5 24 9999.9 0 1034.3 24 1033.7 24 6.6 24 6.2 24 12.0 999.9 46.4* 35.4* 99.99 999.9 110000 724050 13743 19490124 43.5 24 9999.9 0 1025.7 24 1025.0 24 3.9 24 6.3 24 9.9 999.9 57.4* 35.4* 99.99 999.9 110000 724050 13743 19490125 53.4 24 9999.9 0 1023.9 24 1023.2 24 4.9 24 3.7 24 9.9 999.9 56.3* 49.3* 99.99 999.9 110000 724050 13743 19490126 41.6 24 9999.9 0 1026.1 24 1025.4 24 4.8 24 5.2 24 9.9 999.9 48.4* 37.4* 99.99 999.9 110000 724050 13743 19490127 41.7 24 9999.9 0 1020.8 24 1020.1 24 4.2 24 2.8 24 8.9 999.9 45.3* 39.4* 99.99 999.9 110000 724050 13743 19490128 47.2 24 9999.9 0 1008.8 24 1008.0 24 4.8 24 7.5 24 16.9 999.9 71.2* 39.4* 99.99 999.9 110000 724050 13743 19490129 43.2 24 9999.9 0 1015.1 24 1014.5 24 14.5 24 13.8 24 22.0 999.9 63.3* 37.4* 0.00I 999.9 000010 724050 13743 19490130 27.2 24 9999.9 0 1033.7 24 1033.0 24 13.0 24 13.3 24 26.0 999.9 36.3* 21.4* 0.00I 999.9 000000 724050 13743 19490131 28.4 24 9999.9 0 1023.6 24 1022.9 24 5.6 24 6.6 24 12.0 999.9 34.3* 23.4* 99.99 999.9 111000 724050 13743 19490201 34.2 24 9999.9 0 1022.9 24 1022.2 24 9.9 24 8.8 24 15.0 999.9 41.4* 30.4* 0.00I 999.9 000000 724050 13743 19490202 32.7 24 9999.9 0 1030.7 24 1030.1 24 13.7 24 7.9 24 15.9 999.9 40.3* 25.3* 0.00I 999.9 000000 724050 13743 19490203 31.9 24 9999.9 0 1030.0 24 1029.3 24 7.9 24 4.3 24 12.0 999.9 45.3* 20.3* 0.00I 999.9 100000 724050 13743 19490204 41.4 24 9999.9 0 1014.0 24 1013.3 24 8.3 24 4.3 24 14.0 999.9 52.3* 37.4* 99.99 999.9 110000 724050 13743 19490205 42.4 24 9999.9 0 1015.8 24 1015.2 24 9.2 24 8.1 24 16.9 999.9 45.3* 38.3* 0.00I 999.9 000000 724050 13743 19490206 36.5 24 9999.9 0 1023.4 24 1022.6 24 4.3 24 4.8 24 9.9 999.9 46.4* 29.3* 0.00I 999.9 100000 724050 13743 19490207 43.6 24 9999.9 0 1015.6 24 1015.0 24 9.7 24 8.9 24 22.0 999.9 53.4* 39.4* 99.99 999.9 110000 724050 13743 19490208 42.0 24 9999.9 0 1022.0 24 1021.3 24 11.1 24 4.4 24 11.1 999.9 59.4* 28.4* 0.00I 999.9 000000 724050 13743 19490209 54.3 24 9999.9 0 1014.0 24 1013.3 24 9.3 24 8.7 24 15.9 999.9 67.3* 46.4* 0.00I 999.9 000010 724050 13743 19490210 42.0 24 9999.9 0 1014.5 24 1013.8 24 6.8 24 8.5 24 13.0 999.9 52.3* 32.4* 99.99 999.9 111000 724050 13743 19490211 32.7 24 9999.9 0 1023.7 24 1022.9 24 12.0 24 14.5 24 23.9 999.9 36.3* 30.4* 0.00I 999.9 100000 724050 13743 19490212 35.4 24 9999.9 0 1031.1 24 1030.4 24 11.6 24 7.3 24 15.9 999.9 51.3* 26.4* 0.00I 999.9 000000 724050 13743 19490213 53.2 24 9999.9 0 1021.1 24 1020.4 24 13.5 24 10.0 24 14.0 999.9 67.3* 46.4* 0.00I 999.9 000000 724050 13743 19490214 60.5 24 9999.9 0 1018.1 24 1017.4 24 9.6 24 7.4 24 11.1 999.9 64.4* 55.4* 99.99 999.9 110000 724050 13743 19490215 63.0 24 9999.9 0 1011.7 24 1011.1 24 9.6 24 9.1 24 16.9 999.9 73.4* 52.3* 99.99 999.9 010000 724050 13743 19490216 49.5 24 9999.9 0 1016.6 24 1016.0 24 7.9 24 6.7 24 14.0 999.9 61.3* 42.4* 99.99 999.9 110000 724050 13743 19490217 42.3 24 9999.9 0 1021.0 24 1020.3 24 12.1 24 14.2 24 28.0 999.9 48.4* 36.3* 99.99 999.9 110010 724050 13743 19490218 40.4 24 25.3 20 1033.0 24 1032.3 24 9.5 24 5.2 24 14.0 999.9 52.3* 30.4* 0.00I 999.9 000000 724050 13743 19490219 49.8 24 39.3 24 1026.6 24 1025.9 24 9.1 24 9.1 24 12.0 999.9 56.3* 46.4* 99.99 999.9 010000 724050 13743 19490220 55.1 24 50.2 24 1017.9 24 1017.2 24 5.8 24 5.3 24 12.0 999.9 65.3* 50.4* 99.99 999.9 110000 724050 13743 19490221 45.0 24 34.9 24 1030.0 24 1029.3 24 10.1 24 9.5 24 19.0 999.9 57.4* 39.4* 0.00I 999.9 000000 724050 13743 19490222 42.7 24 37.7 24 1027.7 24 1027.0 24 6.5 24 5.9 24 14.0 999.9 50.4* 38.3* 99.99 999.9 110010 724050 13743 19490223 48.3 24 39.2 24 1019.4 24 1018.7 24 9.7 24 10.7 24 18.1 999.9 54.3* 41.4* 99.99 999.9 010010 724050 13743 19490224 45.0 24 33.7 24 1024.6 24 1023.9 24 7.6 24 5.2 24 14.0 999.9 56.3* 35.4* 0.00I 999.9 100000 724050 13743 19490225 48.8 24 36.6 24 1015.3 24 1014.6 24 11.1 24 12.6 24 28.0 999.9 56.3* 44.4* 99.99 999.9 010010 724050 13743 19490226 40.7 24 27.7 24 1021.0 24 1020.4 24 13.4 24 16.4 24 21.0 999.9 45.3* 35.4* 0.00I 999.9 000010 724050 13743 19490227 37.4 24 23.5 24 1021.6 24 1020.9 24 11.6 24 6.5 24 9.9 999.9 45.3* 30.4* 0.00I 999.9 000000 724050 13743 19490228 35.5 24 28.3 24 1006.4 24 1005.7 24 7.3 24 11.5 24 40.0 999.9 40.3* 29.3* 99.99 999.9 111010 724050 13743 19490301 29.1 24 12.9 24 1010.0 24 1009.3 24 14.3 24 22.5 24 29.9 999.9 38.3* 23.4* 0.00I 999.9 000010 724050 13743 19490302 33.2 24 17.1 24 1019.3 24 1018.6 24 14.5 24 12.9 24 20.0 999.9 42.4* 27.3* 0.00I 999.9 000000 724050 13743 19490303 38.3 24 23.0 24 1020.7 24 1020.0 24 11.1 24 10.3 24 21.0 999.9 43.3* 36.3* 99.99 999.9 001010 724050 13743 19490304 38.6 24 24.8 24 1023.4 24 1022.7 24 9.4 24 5.0 24 12.0 999.9 54.3* 27.3* 0.00I 999.9 000000 724050 13743 19490305 50.4 24 32.7 19 1011.6 24 1011.0 24 9.1 24 8.8 24 12.0 999.9 64.4* 42.4* 0.00I 999.9 000000 724050 13743 19490306 55.1 24 39.0 15 1004.1 24 1003.4 24 9.5 24 8.9 24 20.0 999.9 69.3* 45.3* 99.99 999.9 010000 724050 13743 19490307 37.5 24 19.8 24 1016.3 24 1015.6 24 14.3 24 19.7 24 26.0 999.9 48.4* 30.4* 0.00I 999.9 000000 724050 13743 19490308 39.1 24 11.7 24 1020.4 24 1019.7 24 13.6 24 9.1 24 13.0 999.9 56.3* 28.4* 0.00I 999.9 000000 724050 13743 19490309 44.7 24 21.8 24 1014.3 24 1013.7 24 5.8 24 2.1 24 8.0 999.9 57.4* 31.3* 0.00I 999.9 100000 724050 13743 19490310 46.9 24 31.7 24 1006.3 24 1005.6 24 7.1 24 6.6 24 15.0 999.9 52.3* 43.3* 99.99 999.9 110000 724050 13743 19490311 41.1 24 33.1 24 1003.7 24 1003.0 24 10.5 24 18.5 24 26.0 999.9 45.3* 36.3* 99.99 999.9 111000 724050 13743 19490312 36.9 24 23.1 24 1010.0 24 1009.3 24 13.9 24 15.8 24 25.1 999.9 40.3* 32.4* 99.99 999.9 001000 724050 13743 19490313 38.5 24 20.7 24 1014.6 24 1013.9 24 14.9 24 16.8 24 22.9 999.9 50.4* 32.4* 0.00I 999.9 000010 724050 13743 19490314 43.5 24 22.7 24 1018.4 24 1017.7 24 13.1 24 6.4 24 15.0 999.9 56.3* 33.4* 0.00I 999.9 000000 724050 13743 19490315 39.1 24 29.4 24 1013.8 24 1013.2 24 7.6 24 8.7 24 22.9 999.9 49.3* 32.4* 99.99 999.9 011000 724050 13743 19490316 32.7 24 15.9 24 1022.0 24 1021.3 24 14.7 24 12.4 24 20.0 999.9 43.3* 24.4* 0.00I 999.9 000000 724050 13743 19490317 41.7 24 24.1 24 1017.1 24 1016.4 24 11.8 24 5.9 24 11.1 999.9 48.4* 36.3* 0.00I 999.9 000000 724050 13743 19490318 39.7 24 33.9 24 1009.3 24 1008.6 24 5.0 24 9.2 24 19.0 999.9 47.3* 35.4* 99.99 999.9 111000 724050 13743 19490319 33.1 24 17.1 19 1023.7 24 1023.0 24 13.7 24 11.7 24 18.1 999.9 39.4* 26.4* 0.00I 999.9 000000 724050 13743 19490320 37.1 24 20.9 24 1034.0 24 1033.3 24 9.8 24 5.4 24 9.9 999.9 48.4* 30.4* 0.00I 999.9 000000 724050 13743 19490321 45.9 24 34.4 23 1030.7 24 1030.0 24 10.7 24 9.5 24 18.1 999.9 66.4* 32.4* 0.00I 999.9 000000 724050 13743 19490322 59.8 24 49.6 24 1021.7 24 1021.0 24 12.5 24 11.8 24 18.1 999.9 70.3* 51.3* 99.99 999.9 010000 724050 13743 19490323 60.5 24 55.9 24 1012.7 24 1012.0 24 8.7 24 8.8 24 14.0 999.9 70.3* 56.3* 99.99 999.9 110000 724050 13743 19490324 55.1 24 43.2 24 1022.1 24 1021.4 24 10.0 24 8.5 24 14.0 999.9 66.4* 46.4* 0.00I 999.9 000000 724050 13743 19490325 53.2 24 49.0 24 1024.5 24 1023.8 24 4.4 24 5.3 24 8.9 999.9 58.3* 47.3* 99.99 999.9 110010 724050 13743 19490326 59.5 24 58.3 24 1021.1 24 1020.4 24 1.7 24 1.3 24 5.1 999.9 67.3* 56.3* 99.99 999.9 110000 724050 13743 19490327 70.3 24 62.0 24 1010.7 24 1010.0 24 10.5 24 11.7 24 21.0 999.9 82.4* 60.3* 0.00I 999.9 000000 724050 13743 19490328 62.6 24 49.4 24 1012.2 24 1011.5 24 14.8 24 10.1 24 21.0 999.9 76.3* 58.3* 99.99 999.9 010000 724050 13743 19490329 61.3 24 39.1 24 1021.7 24 1021.1 24 12.8 24 4.8 24 12.0 999.9 75.4* 46.4* 0.00I 999.9 000000 724050 13743 19490330 66.5 24 43.2 24 1016.4 24 1015.7 24 14.1 24 6.4 24 15.9 999.9 82.4* 53.4* 0.00I 999.9 000000 724050 13743 19490331 56.2 24 48.9 24 1007.4 24 1006.8 24 6.0 24 7.6 24 12.0 999.9 70.3* 48.4* 99.99 999.9 110000 724050 13743 19490401 44.9 24 41.1 24 1004.9 24 1004.2 24 4.6 24 7.0 24 14.0 999.9 50.4* 41.4* 99.99 999.9 110010 724050 13743 19490402 47.5 24 34.6 24 1014.7 24 1014.0 24 14.4 24 9.1 24 15.9 999.9 58.3* 39.4* 0.00I 999.9 000000 724050 13743 19490403 51.3 24 39.3 24 1013.7 24 1013.0 24 11.1 24 6.1 24 11.1 999.9 62.4* 44.4* 99.99 999.9 010000 724050 13743 19490404 52.9 24 34.8 24 1014.7 24 1014.2 24 13.1 24 10.4 24 19.0 999.9 61.3* 45.3* 99.99 999.9 010000 724050 13743 19490405 49.3 24 31.0 24 1018.7 24 1018.1 24 9.0 24 5.4 24 13.0 999.9 56.3* 40.3* 99.99 999.9 010000 724050 13743 19490406 50.7 24 42.7 24 1000.7 24 1000.0 24 10.1 24 13.6 24 22.9 999.9 59.4* 44.4* 99.99 999.9 110000 724050 13743 19490407 51.4 24 37.1 24 1009.2 24 1008.5 24 14.2 24 8.1 24 12.0 999.9 60.3* 44.4* 99.99 999.9 010000 724050 13743 19490408 49.6 24 40.8 24 1006.1 24 1005.4 24 12.6 24 9.0 24 20.0 999.9 58.3* 43.3* 99.99 999.9 010000 724050 13743 19490409 49.7 24 39.9 24 1012.4 24 1011.7 24 14.8 24 14.8 24 22.9 999.9 61.3* 40.3* 0.00I 999.9 000000 724050 13743 19490410 51.3 24 37.4 24 1021.5 24 1020.8 24 14.8 24 9.1 24 15.0 999.9 63.3* 39.4* 0.00I 999.9 000000 724050 13743 19490411 53.2 24 41.3 24 1019.2 24 1018.5 24 7.8 24 3.4 24 7.0 999.9 62.4* 47.3* 0.00I 999.9 000000 724050 13743 19490412 56.7 24 45.2 24 1016.1 24 1015.5 24 7.5 24 3.3 24 9.9 999.9 73.4* 46.4* 0.00I 999.9 100000 724050 13743 19490413 58.9 24 56.0 24 1004.8 24 1004.1 24 6.5 24 6.8 24 19.0 999.9 64.4* 54.3* 99.99 999.9 110000 724050 13743 19490414 63.1 24 55.6 24 1000.2 24 999.5 24 11.4 24 6.8 24 14.0 999.9 74.3* 53.4* 0.00I 999.9 100000 724050 13743 19490415 68.2 24 53.2 24 1002.1 24 1001.4 24 10.9 24 9.4 24 33.0 999.9 84.4* 54.3* 0.00I 999.9 100000 724050 13743 19490416 51.4 24 33.6 24 1005.6 24 1004.9 24 14.8 24 16.9 24 21.0 999.9 72.3* 45.3* 0.00I 999.9 000000 724050 13743 19490417 46.4 24 28.6 24 1014.1 24 1013.4 24 14.5 24 11.8 24 16.9 999.9 60.3* 36.3* 0.00I 999.9 000000 724050 13743 19490418 52.1 24 42.7 24 1012.9 24 1012.2 24 10.1 24 9.2 24 20.0 999.9 62.4* 47.3* 99.99 999.9 010000 724050 13743 19490419 50.1 24 40.8 24 1018.3 24 1017.6 24 11.7 24 10.6 24 16.9 999.9 55.4* 41.4* 99.99 999.9 010000 724050 13743 19490420 53.0 24 38.9 24 1025.8 24 1025.1 24 11.9 24 8.0 24 12.0 999.9 66.4* 42.4* 0.00I 999.9 000000 724050 13743 19490421 62.2 24 43.3 24 1023.9 24 1023.2 24 10.1 24 5.4 24 7.0 999.9 80.2* 48.4* 0.00I 999.9 000000 724050 13743 19490422 60.8 24 52.7 24 1017.7 24 1017.0 24 8.3 24 10.0 24 18.1 999.9 68.4* 58.3* 99.99 999.9 110000 724050 13743 19490423 62.5 24 55.1 24 1012.2 24 1011.5 24 8.2 24 9.5 24 18.1 999.9 73.4* 54.3* 99.99 999.9 110000 724050 13743 19490424 57.6 24 42.4 24 1009.9 24 1009.2 24 13.1 24 12.5 24 25.1 999.9 66.4* 51.3* 0.00I 999.9 000000 724050 13743 19490425 53.3 24 35.9 24 1024.3 24 1023.6 24 13.9 24 11.0 24 22.0 999.9 65.3* 44.4* 0.00I 999.9 000000 724050 13743 19490426 62.5 24 42.1 24 1021.1 24 1020.4 24 13.3 24 8.7 24 12.0 999.9 85.3* 49.3* 0.00I 999.9 000000 724050 13743 19490427 68.6 24 52.4 24 1014.8 24 1014.1 24 11.6 24 4.9 24 9.9 999.9 76.3* 62.4* 99.99 999.9 010000 724050 13743 19490428 60.9 24 40.4 24 1019.3 24 1018.7 24 10.5 24 7.6 24 13.0 999.9 66.4* 55.4* 0.00I 999.9 100000 724050 13743 19490429 54.6 24 31.2 24 1026.8 24 1026.1 24 11.2 24 4.0 24 11.1 999.9 66.4* 40.3* 0.00I 999.9 000000 724050 13743 19490430 57.8 24 45.6 24 1024.0 24 1023.3 24 11.2 24 4.6 24 11.1 999.9 74.3* 45.3* 99.99 999.9 010000 724050 13743 19490501 66.2 24 59.6 24 1020.7 24 1020.0 24 10.6 24 5.8 24 14.0 999.9 75.4* 59.4* 99.99 999.9 110000 724050 13743 19490502 69.5 24 64.3 24 1018.1 24 1017.4 24 10.3 24 9.2 24 14.0 999.9 74.3* 67.3* 99.99 999.9 110000 724050 13743 19490503 68.8 24 57.1 24 1019.9 24 1019.2 24 10.7 24 6.2 24 15.9 999.9 83.3* 59.4* 99.99 999.9 010010 724050 13743 19490504 71.4 24 54.3 24 1023.5 24 1022.8 24 7.5 24 2.8 24 11.1 999.9 89.2* 56.3* 0.00I 999.9 100000 724050 13743 19490505 74.2 24 55.7 24 1021.5 24 1020.8 24 10.2 24 5.3 24 9.9 999.9 92.3* 60.3* 0.00I 999.9 000000 724050 13743 19490506 77.7 24 63.3 24 1016.6 24 1015.9 24 12.0 24 6.2 24 14.0 999.9 93.4* 68.4* 99.99 999.9 010010 724050 13743 19490507 77.1 24 64.9 24 1009.1 24 1008.4 24 9.9 24 6.0 24 21.0 999.9 94.3* 68.4* 99.99 999.9 010000 724050 13743 19490508 64.2 24 52.1 24 1015.4 24 1014.7 24 13.4 24 8.8 24 15.0 999.9 72.3* 54.3* 0.00I 999.9 000000 724050 13743 19490509 63.5 24 54.4 24 1014.2 24 1013.5 24 12.7 24 6.5 24 11.1 999.9 78.3* 52.3* 99.99 999.9 010000 724050 13743 19490510 62.0 24 59.9 24 1011.0 24 1010.3 24 6.4 24 5.7 24 12.0 999.9 66.4* 58.3* 99.99 999.9 110000 724050 13743 19490511 53.3 24 49.2 24 1017.1 24 1016.3 24 7.0 24 8.6 24 14.0 999.9 59.4* 50.4* 99.99 999.9 110000 724050 13743 19490512 56.5 24 46.7 24 1017.8 24 1017.1 24 9.4 24 3.9 24 9.9 999.9 73.4* 44.4* 0.00I 999.9 100000 724050 13743 19490513 61.0 24 50.9 24 1019.6 24 1018.9 24 9.5 24 5.3 24 8.9 999.9 72.3* 51.3* 0.00I 999.9 100000 724050 13743 19490514 65.4 24 53.9 24 1019.1 24 1018.4 24 8.0 24 6.3 24 9.9 999.9 84.4* 53.4* 99.99 999.9 010000 724050 13743 19490515 69.6 24 60.1 24 1018.7 24 1018.0 24 4.8 24 4.0 24 26.0 999.9 84.4* 60.3* 99.99 999.9 110010 724050 13743 19490516 63.3 24 58.3 24 1022.0 24 1021.3 24 4.2 24 4.7 24 8.9 999.9 72.3* 58.3* 99.99 999.9 110000 724050 13743 19490517 67.0 24 60.9 24 1023.9 24 1023.2 24 3.9 24 3.4 24 8.9 999.9 78.3* 60.3* 0.00I 999.9 100000 724050 13743 19490518 72.5 24 64.4 24 1022.9 24 1022.3 24 5.3 24 6.4 24 11.1 999.9 87.3* 63.3* 0.00I 999.9 100000 724050 13743 19490519 77.5 24 65.4 24 1015.4 24 1014.7 24 10.4 24 8.2 24 13.0 999.9 89.2* 70.3* 0.00I 999.9 000000 724050 13743 19490520 71.6 24 61.4 24 1007.1 24 1006.5 24 12.0 24 10.9 24 22.9 999.9 79.3* 62.4* 0.00I 999.9 000000 724050 13743 19490521 59.4 24 50.1 24 1015.9 24 1015.3 24 13.8 24 7.7 24 13.0 999.9 67.3* 55.4* 0.00I 999.9 000000 724050 13743 19490522 63.0 24 58.3 24 1012.4 24 1011.8 24 11.4 24 8.0 24 14.0 999.9 80.2* 54.3* 99.99 999.9 110000 724050 13743 19490523 70.0 24 61.4 24 1009.0 24 1008.3 24 10.8 24 9.5 24 21.0 999.9 76.3* 63.3* 99.99 999.9 010010 724050 13743 19490524 70.6 24 59.0 24 1012.1 24 1011.4 24 8.0 24 3.7 24 9.9 999.9 86.4* 58.3* 99.99 999.9 110000 724050 13743 19490525 63.0 24 50.8 24 1011.2 24 1010.5 24 12.8 24 11.6 24 22.0 999.9 68.4* 56.3* 99.99 999.9 010010 724050 13743 19490526 58.3 24 48.9 24 1011.7 24 1011.0 24 10.9 24 4.1 24 12.0 999.9 66.4* 50.4* 99.99 999.9 010000 724050 13743 19490527 57.2 24 44.1 24 1013.1 24 1012.6 24 12.5 24 9.5 24 15.9 999.9 68.4* 47.3* 0.00I 999.9 000000 724050 13743 19490528 59.2 24 44.2 24 1014.9 24 1014.2 24 12.3 24 6.6 24 12.0 999.9 67.3* 51.3* 99.99 999.9 010000 724050 13743 19490529 59.8 24 41.5 24 1018.0 24 1017.3 24 14.4 24 9.0 24 14.0 999.9 69.3* 50.4* 0.00I 999.9 000000 724050 13743 19490530 61.2 24 43.8 24 1019.4 24 1018.7 24 11.6 24 2.8 24 6.0 999.9 74.3* 48.4* 0.00I 999.9 000000 724050 13743 19490531 67.7 24 50.8 24 1017.3 24 1016.6 24 10.7 24 4.0 24 9.9 999.9 81.3* 55.4* 0.00I 999.9 100000 724050 13743 19490601 69.0 24 51.7 24 1017.1 24 1016.4 24 8.9 24 3.0 24 8.9 999.9 80.2* 57.4* 0.00I 999.9 100000 724050 13743 19490602 68.0 24 52.0 24 1020.2 24 1019.5 24 10.3 24 4.2 24 9.9 999.9 79.3* 55.4* 0.00I 999.9 000000 724050 13743 19490603 66.5 24 52.9 24 1023.1 24 1022.4 24 11.3 24 4.3 24 11.1 999.9 78.3* 53.4* 0.00I 999.9 000000 724050 13743 19490604 68.6 24 60.4 24 1020.0 24 1019.4 24 9.7 24 2.4 24 8.9 999.9 82.4* 57.4* 0.00I 999.9 100000 724050 13743 19490605 75.3 24 68.1 24 1011.7 24 1011.0 24 10.1 24 1.3 24 7.0 999.9 88.3* 68.4* 0.00I 999.9 100000 724050 13743 19490606 77.6 24 61.6 24 1007.6 24 1006.9 24 10.9 24 4.9 24 11.1 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19490607 74.7 24 59.3 24 1008.4 24 1007.7 24 10.7 24 4.3 24 15.0 999.9 85.3* 64.4* 0.00I 999.9 000000 724050 13743 19490608 67.2 24 43.1 24 1018.3 24 1017.6 24 13.3 24 7.6 24 12.0 999.9 76.3* 58.3* 0.00I 999.9 000000 724050 13743 19490609 65.2 24 45.8 24 1025.9 24 1025.2 24 11.2 24 3.7 24 8.9 999.9 79.3* 51.3* 0.00I 999.9 000000 724050 13743 19490610 68.4 24 52.7 24 1026.6 24 1025.9 24 11.0 24 7.4 24 9.9 999.9 79.3* 57.4* 0.00I 999.9 000000 724050 13743 19490611 74.8 24 60.9 24 1020.1 24 1019.4 24 10.7 24 8.9 24 12.0 999.9 86.4* 67.3* 0.00I 999.9 000000 724050 13743 19490612 78.6 24 64.1 24 1016.7 24 1016.0 24 11.9 24 7.4 24 11.1 999.9 90.3* 69.3* 0.00I 999.9 000000 724050 13743 19490613 77.8 24 67.9 24 1017.7 24 1017.1 24 13.6 24 7.9 24 9.9 999.9 88.3* 71.2* 0.00I 999.9 000000 724050 13743 19490614 78.6 24 66.9 24 1019.8 24 1019.1 24 13.4 24 9.0 24 14.0 999.9 88.3* 71.2* 0.00I 999.9 000000 724050 13743 19490615 75.8 24 66.5 24 1019.8 24 1019.1 24 13.1 24 7.2 24 12.0 999.9 84.4* 67.3* 0.00I 999.9 000000 724050 13743 19490616 73.7 24 68.2 24 1018.5 24 1017.9 24 9.5 24 8.7 24 15.9 999.9 79.3* 68.4* 99.99 999.9 010000 724050 13743 19490617 73.3 24 70.2 24 1015.6 24 1015.0 24 6.3 24 10.9 24 15.9 999.9 76.3* 70.3* 99.99 999.9 110000 724050 13743 19490618 73.3 24 72.1 24 1015.9 24 1015.2 24 3.2 24 8.0 24 12.0 999.9 76.3* 71.2* 99.99 999.9 110000 724050 13743 19490619 75.7 24 71.5 24 1017.6 24 1017.0 24 8.0 24 6.0 24 8.9 999.9 84.4* 71.2* 99.99 999.9 110000 724050 13743 19490620 78.7 24 71.7 24 1017.0 24 1016.3 24 10.8 24 4.5 24 8.0 999.9 86.4* 73.4* 0.00I 999.9 000000 724050 13743 19490621 82.9 24 71.3 24 1012.3 24 1011.7 24 8.2 24 4.9 24 9.9 999.9 95.4* 73.4* 0.00I 999.9 100000 724050 13743 19490622 82.6 24 71.7 24 1006.6 24 1005.9 24 9.2 24 7.6 24 15.9 999.9 91.2* 75.4* 0.00I 999.9 000000 724050 13743 19490623 77.8 24 62.9 24 1010.9 24 1010.2 24 13.7 24 5.9 24 9.9 999.9 87.3* 66.4* 0.00I 999.9 000000 724050 13743 19490624 78.9 24 69.1 24 1011.7 24 1011.0 24 11.2 24 6.2 24 12.0 999.9 90.3* 66.4* 0.00I 999.9 000000 724050 13743 19490625 83.5 24 77.1 24 1010.3 24 1009.6 24 11.6 24 9.9 24 15.9 999.9 91.2* 78.3* 0.00I 999.9 000010 724050 13743 19490626 85.2 24 74.8 24 1010.3 24 1009.6 24 14.3 24 8.7 24 15.0 999.9 96.3* 75.4* 0.00I 999.9 000000 724050 13743 19490627 85.5 24 71.8 24 1011.1 24 1010.4 24 13.3 24 7.2 24 13.0 999.9 91.2* 77.4* 0.00I 999.9 000000 724050 13743 19490628 78.7 24 72.5 24 1014.0 24 1013.4 24 7.0 24 4.4 24 9.9 999.9 88.3* 73.4* 99.99 999.9 010000 724050 13743 19490629 71.1 24 66.7 24 1018.5 24 1017.8 24 8.2 24 5.7 24 11.1 999.9 76.3* 66.4* 99.99 999.9 110000 724050 13743 19490630 72.5 24 67.4 24 1020.6 24 1019.9 24 9.7 24 6.9 24 9.9 999.9 77.4* 67.3* 99.99 999.9 010000 724050 13743 19490701 71.3 24 65.9 24 1022.2 24 1021.5 24 7.0 24 5.8 24 8.9 999.9 81.3* 63.3* 0.00I 999.9 000000 724050 13743 19490702 77.7 24 70.1 24 1021.7 24 1021.0 24 10.8 24 6.3 24 8.0 999.9 87.3* 71.2* 0.00I 999.9 000000 724050 13743 19490703 80.6 24 71.0 24 1019.6 24 1018.9 24 10.6 24 3.3 24 8.9 999.9 91.2* 71.2* 0.00I 999.9 100000 724050 13743 19490704 83.1 24 73.2 24 1016.4 24 1015.7 24 13.5 24 6.0 24 9.9 999.9 92.3* 74.3* 0.00I 999.9 000000 724050 13743 19490705 86.3 24 75.0 24 1013.9 24 1013.3 24 14.3 24 6.1 24 11.1 999.9 98.2* 77.4* 0.00I 999.9 000000 724050 13743 19490706 87.5 24 76.3 24 1012.7 24 1012.1 24 11.1 24 7.1 24 11.1 999.9 97.3* 78.3* 0.00I 999.9 000000 724050 13743 19490707 76.6 24 71.9 24 1014.0 24 1013.3 24 8.0 24 7.1 24 15.0 999.9 90.3* 70.3* 99.99 999.9 010010 724050 13743 19490708 74.4 24 64.3 24 1020.9 24 1020.2 24 10.2 24 6.7 24 12.0 999.9 82.4* 68.4* 99.99 999.9 110000 724050 13743 19490709 75.3 24 61.0 24 1023.7 24 1023.0 24 14.8 24 6.6 24 12.0 999.9 83.3* 67.3* 0.00I 999.9 000000 724050 13743 19490710 75.9 24 66.5 24 1016.7 24 1016.0 24 14.4 24 8.5 24 14.0 999.9 82.4* 69.3* 0.00I 999.9 000000 724050 13743 19490711 78.6 24 71.4 24 1015.5 24 1014.8 24 7.4 24 5.7 24 8.9 999.9 88.3* 71.2* 0.00I 999.9 100000 724050 13743 19490712 76.9 24 72.6 24 1015.0 24 1014.3 24 10.4 24 8.3 24 12.0 999.9 83.3* 72.3* 99.99 999.9 010000 724050 13743 19490713 76.2 24 71.9 24 1009.9 24 1009.2 24 11.3 24 5.0 24 12.0 999.9 82.4* 74.3* 99.99 999.9 110000 724050 13743 19490714 79.1 24 72.8 24 1009.5 24 1008.8 24 6.5 24 3.8 24 12.0 999.9 87.3* 72.3* 99.99 999.9 110010 724050 13743 19490715 76.8 24 72.3 24 1010.0 24 1009.3 24 4.4 24 2.3 24 8.9 999.9 85.3* 71.2* 99.99 999.9 110010 724050 13743 19490716 78.2 24 73.1 24 1012.3 24 1011.6 24 7.7 24 7.9 24 9.9 999.9 83.3* 74.3* 99.99 999.9 110000 724050 13743 19490717 77.9 24 73.5 24 1013.1 24 1012.4 24 9.7 24 7.2 24 12.0 999.9 86.4* 74.3* 99.99 999.9 110000 724050 13743 19490718 81.8 24 73.7 24 1014.9 24 1014.2 24 14.9 24 10.9 24 16.9 999.9 89.2* 76.3* 0.00I 999.9 000000 724050 13743 19490719 81.3 24 73.0 24 1014.8 24 1014.1 24 14.9 24 7.9 24 11.1 999.9 89.2* 75.4* 0.00I 999.9 000000 724050 13743 19490720 82.5 24 73.9 24 1014.3 24 1013.7 24 14.7 24 8.7 24 15.0 999.9 92.3* 76.3* 0.00I 999.9 000000 724050 13743 19490721 82.6 24 75.2 24 1014.8 24 1014.1 24 13.8 24 7.0 24 9.9 999.9 93.4* 77.4* 99.99 999.9 010000 724050 13743 19490722 83.4 24 73.2 24 1015.7 24 1015.0 24 13.3 24 7.0 24 12.0 999.9 95.4* 74.3* 0.00I 999.9 000000 724050 13743 19490723 85.7 24 73.8 24 1017.8 24 1017.1 24 12.7 24 6.1 24 11.1 999.9 93.4* 79.3* 0.00I 999.9 000000 724050 13743 19490724 79.9 24 64.7 24 1021.6 24 1020.9 24 11.6 24 4.4 24 7.0 999.9 90.3* 69.3* 0.00I 999.9 000000 724050 13743 19490725 83.0 24 69.3 24 1017.5 24 1016.8 24 11.2 24 7.2 24 14.0 999.9 95.4* 73.4* 0.00I 999.9 000000 724050 13743 19490726 86.7 24 72.8 24 1016.1 24 1015.4 24 12.6 24 4.4 24 8.9 999.9 96.3* 78.3* 0.00I 999.9 000000 724050 13743 19490727 86.5 24 75.4 24 1016.8 24 1016.1 24 11.3 24 5.3 24 13.0 999.9 95.4* 79.3* 0.00I 999.9 000000 724050 13743 19490728 88.0 24 74.4 24 1016.1 24 1015.4 24 12.3 24 5.2 24 12.0 999.9 96.3* 78.3* 0.00I 999.9 000000 724050 13743 19490729 88.3 24 73.6 24 1014.0 24 1013.3 24 12.1 24 5.2 24 8.9 999.9 95.4* 80.2* 0.00I 999.9 000000 724050 13743 19490730 87.1 24 71.9 24 1010.0 24 1009.3 24 13.1 24 5.2 24 11.1 999.9 98.2* 78.3* 0.00I 999.9 000010 724050 13743 19490731 77.3 24 68.1 24 1009.9 24 1009.3 24 10.9 24 9.3 24 15.0 999.9 84.4* 72.3* 99.99 999.9 010010 724050 13743 19490801 76.8 24 61.9 24 1013.1 24 1012.4 24 13.8 24 7.1 24 11.1 999.9 85.3* 69.3* 0.00I 999.9 000000 724050 13743 19490802 79.2 24 70.3 24 1013.7 24 1013.0 24 8.7 24 4.7 24 11.1 999.9 88.3* 73.4* 0.00I 999.9 100000 724050 13743 19490803 79.5 24 72.2 24 1015.5 24 1014.8 24 8.9 24 5.6 24 8.9 999.9 89.2* 75.4* 99.99 999.9 010000 724050 13743 19490804 79.0 24 74.2 24 1016.4 24 1015.7 24 9.2 24 5.3 24 8.0 999.9 85.3* 75.4* 99.99 999.9 110000 724050 13743 19490805 79.3 24 72.0 24 1017.1 24 1016.4 24 7.3 24 6.1 24 13.0 999.9 86.4* 75.4* 99.99 999.9 110000 724050 13743 19490806 78.4 24 65.6 24 1019.3 24 1018.6 24 8.8 24 3.7 24 9.9 999.9 88.3* 70.3* 0.00I 999.9 000000 724050 13743 19490807 80.2 24 68.1 24 1018.5 24 1017.8 24 6.6 24 3.6 24 11.1 999.9 89.2* 74.3* 99.99 999.9 010000 724050 13743 19490808 79.7 24 66.3 24 1016.1 24 1015.4 24 7.5 24 3.3 24 8.9 999.9 91.2* 70.3* 0.00I 999.9 100000 724050 13743 19490809 83.4 24 68.9 24 1013.6 24 1012.9 24 9.1 24 4.9 24 11.1 999.9 94.3* 74.3* 0.00I 999.9 000000 724050 13743 19490810 85.9 24 69.7 24 1014.1 24 1013.4 24 10.1 24 6.4 24 11.1 999.9 95.4* 76.3* 0.00I 999.9 000000 724050 13743 19490811 86.3 24 70.9 24 1015.0 24 1014.3 24 7.7 24 4.3 24 9.9 999.9 98.2* 77.4* 0.00I 999.9 000000 724050 13743 19490812 85.3 24 70.3 24 1013.1 24 1012.4 24 8.1 24 4.8 24 9.9 999.9 95.4* 76.3* 0.00I 999.9 000000 724050 13743 19490813 77.9 24 71.1 24 1012.2 24 1011.5 24 9.3 24 4.9 24 14.0 999.9 87.3* 72.3* 99.99 999.9 010010 724050 13743 19490814 77.1 24 71.6 24 1014.4 24 1013.7 24 8.3 24 6.5 24 9.9 999.9 82.4* 74.3* 0.00I 999.9 000000 724050 13743 19490815 73.2 24 68.7 24 1018.4 24 1017.7 24 11.0 24 5.2 24 8.0 999.9 77.4* 69.3* 99.99 999.9 010000 724050 13743 19490816 75.7 24 65.3 24 1019.1 24 1018.4 24 11.7 24 7.2 24 14.0 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19490817 75.6 24 64.3 24 1016.8 24 1016.1 24 11.5 24 5.7 24 11.1 999.9 82.4* 67.3* 99.99 999.9 010000 724050 13743 19490818 70.7 24 66.1 24 1006.6 24 1005.9 24 7.8 24 5.7 24 8.9 999.9 76.3* 65.3* 99.99 999.9 110000 724050 13743 19490819 72.8 24 63.4 24 1005.6 24 1004.9 24 10.6 24 5.7 24 8.9 999.9 82.4* 66.4* 0.00I 999.9 100000 724050 13743 19490820 67.5 24 51.4 24 1014.2 24 1013.4 24 13.2 24 6.8 24 11.1 999.9 75.4* 58.3* 0.00I 999.9 000000 724050 13743 19490821 68.7 24 50.7 24 1019.0 24 1018.3 24 11.8 24 4.5 24 9.9 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19490822 70.6 24 57.3 24 1019.1 24 1018.4 24 10.6 24 3.2 24 9.9 999.9 83.3* 60.3* 0.00I 999.9 000000 724050 13743 19490823 73.7 24 66.3 24 1016.6 24 1016.0 24 9.2 24 2.4 24 8.0 999.9 82.4* 68.4* 99.99 999.9 010000 724050 13743 19490824 78.2 24 71.4 24 1015.1 24 1014.4 24 7.9 24 4.5 24 11.1 999.9 89.2* 72.3* 0.00I 999.9 100000 724050 13743 19490825 76.5 24 62.2 24 1019.4 24 1018.7 24 8.8 24 5.5 24 9.9 999.9 85.3* 69.3* 0.00I 999.9 000000 724050 13743 19490826 75.4 24 66.2 24 1021.8 24 1021.1 24 6.0 24 5.6 24 8.9 999.9 86.4* 68.4* 0.00I 999.9 000000 724050 13743 19490827 81.0 24 71.7 24 1017.6 24 1016.9 24 5.1 24 5.9 24 8.9 999.9 92.3* 72.3* 0.00I 999.9 100000 724050 13743 19490828 80.2 24 71.8 24 1014.8 24 1014.1 24 8.9 24 8.2 24 14.0 999.9 87.3* 74.3* 99.99 999.9 010000 724050 13743 19490829 76.5 24 67.8 24 1006.8 24 1006.2 24 11.2 24 12.8 24 19.0 999.9 84.4* 70.3* 99.99 999.9 010000 724050 13743 19490830 76.8 24 63.0 24 1014.6 24 1013.9 24 9.6 24 0.4 24 5.1 999.9 87.3* 67.3* 0.00I 999.9 000000 724050 13743 19490831 74.8 23 67.5 23 1012.3 23 1011.6 23 7.9 23 2.7 23 8.0 999.9 81.3* 68.4* 99.99 999.9 110000 724050 13743 19490901 74.0 23 60.3 23 1011.7 23 1011.0 23 10.9 23 8.3 23 14.0 999.9 81.3* 66.4* 0.00I 999.9 000000 724050 13743 19490902 67.3 24 47.9 24 1024.5 24 1023.8 24 13.8 24 6.9 24 11.1 999.9 78.3* 55.4* 0.00I 999.9 000000 724050 13743 19490903 68.0 24 58.1 24 1024.7 24 1024.1 24 8.9 24 3.9 24 11.1 999.9 78.3* 59.4* 0.00I 999.9 000000 724050 13743 19490904 72.1 24 62.6 23 1021.4 24 1020.7 24 12.8 24 4.8 24 11.1 999.9 84.4* 62.4* 0.00I 999.9 000000 724050 13743 19490905 75.7 24 66.1 24 1016.4 24 1015.7 24 13.8 24 7.9 24 9.9 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19490906 77.7 24 67.8 24 1013.9 24 1013.2 24 13.8 24 6.0 24 15.9 999.9 85.3* 70.3* 99.99 999.9 010000 724050 13743 19490907 66.2 24 53.5 24 1017.2 24 1016.6 24 11.9 24 7.6 24 12.0 999.9 78.3* 60.3* 99.99 999.9 010000 724050 13743 19490908 65.9 24 58.3 24 1012.7 24 1012.0 24 5.6 24 5.0 24 13.0 999.9 79.3* 58.3* 99.99 999.9 110000 724050 13743 19490909 64.0 24 46.9 24 1014.9 24 1014.2 24 14.8 24 13.3 24 19.0 999.9 71.2* 55.4* 0.00I 999.9 000000 724050 13743 19490910 62.2 24 45.5 24 1021.6 24 1021.0 24 13.8 24 4.5 24 9.9 999.9 75.4* 50.4* 0.00I 999.9 000000 724050 13743 19490911 62.9 24 52.4 24 1026.8 24 1026.1 24 11.3 24 5.3 24 13.0 999.9 75.4* 51.3* 0.00I 999.9 000000 724050 13743 19490912 66.7 24 62.3 24 1026.4 24 1025.8 24 11.1 24 8.9 24 15.0 999.9 76.3* 60.3* 99.99 999.9 110000 724050 13743 19490913 72.3 24 70.0 24 1016.2 24 1015.6 24 7.7 24 10.1 24 14.0 999.9 83.3* 66.4* 99.99 999.9 110000 724050 13743 19490914 74.0 24 70.9 24 1014.2 24 1013.5 24 10.0 24 2.8 24 8.9 999.9 82.4* 68.4* 99.99 999.9 110000 724050 13743 19490915 73.6 24 64.6 24 1015.5 24 1014.9 24 9.5 24 6.8 24 12.0 999.9 81.3* 64.4* 0.00I 999.9 000000 724050 13743 19490916 67.8 24 62.8 24 1014.5 24 1013.8 24 8.5 24 5.5 24 9.9 999.9 73.4* 60.3* 99.99 999.9 110000 724050 13743 19490917 69.4 24 60.5 24 1017.1 24 1016.4 24 8.1 24 5.4 24 9.9 999.9 80.2* 60.3* 0.00I 999.9 100000 724050 13743 19490918 72.2 24 67.0 24 1016.3 24 1015.6 24 9.0 24 8.1 24 15.9 999.9 85.3* 64.4* 99.99 999.9 110010 724050 13743 19490919 74.8 24 68.6 24 1010.7 24 1010.0 24 13.3 24 6.7 24 14.0 999.9 85.3* 69.3* 99.99 999.9 010000 724050 13743 19490920 68.7 24 54.9 24 1012.3 24 1011.7 24 14.1 24 11.6 24 20.0 999.9 75.4* 60.3* 0.00I 999.9 000000 724050 13743 19490921 62.9 24 52.6 24 1019.9 24 1019.2 24 13.0 24 7.4 24 11.1 999.9 73.4* 52.3* 0.00I 999.9 000000 724050 13743 19490922 68.6 24 58.3 24 1013.3 24 1012.6 24 13.9 24 8.1 24 13.0 999.9 81.3* 60.3* 0.00I 999.9 000000 724050 13743 19490923 62.1 24 57.3 24 1007.2 24 1006.5 24 9.4 24 7.2 24 18.1 999.9 67.3* 57.4* 99.99 999.9 110000 724050 13743 19490924 58.1 24 46.8 24 1016.6 24 1015.9 24 14.5 24 10.3 24 16.9 999.9 66.4* 50.4* 0.00I 999.9 000000 724050 13743 19490925 58.6 24 47.2 24 1024.5 24 1023.8 24 14.2 24 4.5 24 11.1 999.9 69.3* 48.4* 0.00I 999.9 000000 724050 13743 19490926 58.3 24 50.2 24 1028.2 24 1027.6 24 11.6 24 4.5 24 11.1 999.9 70.3* 46.4* 0.00I 999.9 100000 724050 13743 19490927 59.4 24 56.1 24 1022.7 24 1022.1 24 5.8 24 4.0 24 7.0 999.9 65.3* 52.3* 99.99 999.9 110000 724050 13743 19490928 67.3 24 63.1 24 1012.0 24 1011.3 24 4.3 24 1.7 24 7.0 999.9 78.3* 62.4* 0.00I 999.9 100000 724050 13743 19490929 60.7 24 57.0 24 1008.7 24 1008.0 24 8.6 24 7.6 24 15.0 999.9 70.3* 55.4* 99.99 999.9 110000 724050 13743 19490930 57.7 24 47.8 24 1018.4 24 1017.7 24 12.6 24 10.4 24 20.0 999.9 68.4* 51.3* 0.00I 999.9 000000 724050 13743 19491001 61.3 24 52.6 24 1029.1 24 1028.4 24 8.7 24 2.8 24 8.0 999.9 77.4* 49.3* 0.00I 999.9 000000 724050 13743 19491002 61.1 24 52.7 24 1031.2 24 1030.5 24 8.4 24 3.7 24 11.1 999.9 71.2* 51.3* 0.00I 999.9 100000 724050 13743 19491003 61.0 24 51.8 24 1029.3 24 1028.6 24 11.5 24 3.2 24 8.0 999.9 72.3* 50.4* 0.00I 999.9 100000 724050 13743 19491004 65.7 24 57.2 24 1024.1 24 1023.5 24 13.0 24 4.4 24 12.0 999.9 77.4* 58.3* 0.00I 999.9 100000 724050 13743 19491005 69.3 24 60.7 24 1019.7 24 1019.0 24 10.3 24 4.7 24 8.9 999.9 79.3* 63.3* 0.00I 999.9 000000 724050 13743 19491006 69.6 24 63.0 24 1020.1 24 1019.5 24 9.3 24 4.2 24 7.0 999.9 77.4* 63.3* 0.00I 999.9 000000 724050 13743 19491007 70.3 24 66.5 24 1019.8 24 1019.2 24 9.3 24 3.9 24 7.0 999.9 75.4* 67.3* 99.99 999.9 110000 724050 13743 19491008 71.9 24 65.5 24 1022.2 24 1021.6 24 9.2 24 2.5 24 8.0 999.9 84.4* 65.3* 0.00I 999.9 100000 724050 13743 19491009 73.0 24 64.5 24 1021.6 24 1020.9 24 12.4 24 4.8 24 8.9 999.9 84.4* 64.4* 0.00I 999.9 100000 724050 13743 19491010 74.9 24 65.5 24 1019.0 24 1018.3 24 12.5 24 5.2 24 8.9 999.9 86.4* 65.3* 0.00I 999.9 000000 724050 13743 19491011 74.8 24 64.3 24 1017.9 24 1017.2 24 12.7 24 6.9 24 12.0 999.9 85.3* 66.4* 0.00I 999.9 000000 724050 13743 19491012 74.0 24 63.7 24 1014.1 24 1013.4 24 13.9 24 10.4 24 15.9 999.9 84.4* 66.4* 0.00I 999.9 000000 724050 13743 19491013 64.7 24 54.6 24 1018.4 24 1017.8 24 12.0 24 8.8 24 12.0 999.9 76.3* 55.4* 99.99 999.9 110000 724050 13743 19491014 59.9 24 56.7 24 1022.7 24 1022.0 24 4.6 24 1.5 24 6.0 999.9 64.4* 55.4* 99.99 999.9 110000 724050 13743 19491015 65.4 24 62.8 24 1016.2 24 1015.5 24 4.5 24 5.2 24 9.9 999.9 73.4* 61.3* 99.99 999.9 110000 724050 13743 19491016 60.5 24 55.4 21 1017.8 24 1017.1 24 8.4 24 7.8 24 12.0 999.9 65.3* 57.4* 0.00I 999.9 000000 724050 13743 19491017 56.2 24 51.2 24 1022.8 24 1022.2 24 6.9 24 6.5 24 11.1 999.9 61.3* 51.3* 0.00I 999.9 000000 724050 13743 19491018 60.4 24 53.3 24 1021.1 24 1020.4 24 9.9 24 9.7 24 13.0 999.9 68.4* 56.3* 0.00I 999.9 000000 724050 13743 19491019 62.8 24 50.2 22 1018.4 24 1017.7 24 14.3 24 10.1 24 14.0 999.9 68.4* 58.3* 0.00I 999.9 000000 724050 13743 19491020 61.2 24 51.2 24 1018.7 24 1018.0 24 10.9 24 3.3 24 9.9 999.9 75.4* 50.4* 0.00I 999.9 000000 724050 13743 19491021 61.3 24 51.5 24 1018.6 24 1017.9 24 7.8 24 1.8 24 8.0 999.9 81.3* 48.4* 0.00I 999.9 100000 724050 13743 19491022 66.7 24 59.4 24 1014.0 24 1013.3 24 9.4 24 6.5 24 13.0 999.9 80.2* 60.3* 99.99 999.9 010000 724050 13743 19491023 62.5 24 46.9 24 1018.3 24 1017.6 24 14.9 24 9.5 24 20.0 999.9 71.2* 54.3* 0.00I 999.9 000000 724050 13743 19491024 57.5 24 46.5 24 1019.4 24 1018.7 24 9.4 24 3.5 24 12.0 999.9 67.3* 50.4* 0.00I 999.9 000000 724050 13743 19491025 52.5 24 44.2 24 1024.6 24 1024.0 24 8.0 24 5.8 24 8.9 999.9 58.3* 49.3* 99.99 999.9 110000 724050 13743 19491026 55.9 24 48.7 24 1019.5 24 1018.8 24 8.5 24 6.0 24 11.1 999.9 67.3* 49.3* 99.99 999.9 110000 724050 13743 19491027 52.0 24 36.1 24 1029.5 24 1028.8 24 14.5 24 6.0 24 11.1 999.9 60.3* 42.4* 0.00I 999.9 000000 724050 13743 19491028 47.5 24 40.9 24 1028.8 24 1028.2 24 6.0 24 1.3 24 6.0 999.9 57.4* 40.3* 99.99 999.9 110000 724050 13743 19491029 53.6 24 53.3 24 1022.0 24 1021.3 24 2.1 24 4.6 24 9.9 999.9 60.3* 48.4* 99.99 999.9 110000 724050 13743 19491030 59.9 24 59.6 24 1018.0 24 1017.3 24 2.7 24 1.7 24 6.0 999.9 61.3* 58.3* 99.99 999.9 110000 724050 13743 19491031 62.0 24 58.8 24 1006.4 24 1005.7 24 7.9 24 5.7 24 16.9 999.9 67.3* 59.4* 99.99 999.9 110000 724050 13743 19491101 50.6 24 41.8 24 1013.8 24 1013.1 24 12.8 24 12.5 24 21.0 999.9 61.3* 42.4* 99.99 999.9 010000 724050 13743 19491102 48.9 24 40.6 24 1011.5 24 1010.8 24 11.8 24 7.3 24 15.0 999.9 61.3* 39.4* 99.99 999.9 110000 724050 13743 19491103 48.6 24 45.9 23 1009.8 24 1009.1 24 4.5 24 1.7 24 6.0 999.9 54.3* 41.4* 0.00I 999.9 100000 724050 13743 19491104 47.8 24 37.9 24 1010.6 24 1009.9 24 14.4 24 14.4 24 22.0 999.9 50.4* 44.4* 0.00I 999.9 000000 724050 13743 19491105 44.9 24 33.9 24 1016.5 24 1015.8 24 11.9 24 7.8 24 16.9 999.9 47.3* 43.3* 0.00I 999.9 000000 724050 13743 19491106 42.3 24 28.0 24 1021.7 24 1021.0 24 14.1 24 8.2 24 20.0 999.9 50.4* 33.4* 0.00I 999.9 000000 724050 13743 19491107 53.0 24 33.5 24 1016.4 24 1015.7 24 12.1 24 5.7 24 13.0 999.9 66.4* 45.3* 0.00I 999.9 000000 724050 13743 19491108 58.0 24 39.6 24 1013.8 24 1013.1 24 12.8 24 6.0 24 15.9 999.9 73.4* 46.4* 0.00I 999.9 000000 724050 13743 19491109 58.0 24 41.4 24 1016.9 24 1016.2 24 9.7 24 1.6 24 6.0 999.9 74.3* 45.3* 0.00I 999.9 000000 724050 13743 19491110 58.6 24 43.3 24 1016.9 24 1016.2 24 7.5 24 3.0 24 9.9 999.9 74.3* 46.4* 0.00I 999.9 000000 724050 13743 19491111 59.7 24 45.7 24 1012.6 24 1011.9 24 7.7 24 3.2 24 8.9 999.9 77.4* 46.4* 0.00I 999.9 000000 724050 13743 19491112 60.6 24 49.7 24 1015.8 24 1015.1 24 4.2 24 4.0 24 12.0 999.9 65.3* 53.4* 0.00I 999.9 000000 724050 13743 19491113 62.1 24 54.7 24 1014.9 24 1014.2 24 6.1 24 7.7 24 14.0 999.9 70.3* 55.4* 99.99 999.9 110000 724050 13743 19491114 59.8 24 47.7 24 1005.9 24 1005.2 24 9.9 24 6.6 24 15.9 999.9 67.3* 53.4* 99.99 999.9 010000 724050 13743 19491115 52.4 24 37.9 24 1008.1 24 1007.4 24 9.0 24 2.9 24 12.0 999.9 62.4* 41.4* 0.00I 999.9 000000 724050 13743 19491116 48.1 24 33.0 24 1012.6 24 1011.9 24 9.3 24 3.4 24 14.0 999.9 54.3* 39.4* 0.00I 999.9 000000 724050 13743 19491117 42.2 24 32.1 24 1011.9 24 1011.3 24 8.2 24 5.5 24 18.1 999.9 48.4* 35.4* 99.99 999.9 010000 724050 13743 19491118 41.7 24 29.0 24 1012.5 24 1011.8 24 13.5 24 8.9 24 20.0 999.9 45.3* 38.3* 99.99 999.9 010000 724050 13743 19491119 41.3 24 26.7 24 1016.1 24 1015.4 24 13.8 24 8.5 24 14.0 999.9 49.3* 35.4* 99.99 999.9 010000 724050 13743 19491120 53.5 24 33.4 24 1005.1 24 1004.4 24 13.3 24 12.3 24 20.0 999.9 63.3* 47.3* 0.00I 999.9 000000 724050 13743 19491121 49.1 24 31.0 24 1010.4 24 1009.7 24 13.4 24 9.7 24 26.0 999.9 54.3* 42.4* 0.00I 999.9 000000 724050 13743 19491122 35.6 24 19.6 24 1019.5 24 1018.8 24 14.9 24 17.4 24 23.9 999.9 41.4* 31.3* 0.00I 999.9 000000 724050 13743 19491123 38.7 24 22.3 24 1014.8 24 1014.2 24 11.8 24 10.6 24 22.9 999.9 55.4* 28.4* 0.00I 999.9 000000 724050 13743 19491124 46.4 24 31.1 24 1012.1 24 1011.4 24 7.5 24 4.3 24 12.0 999.9 56.3* 35.4* 0.00I 999.9 000000 724050 13743 19491125 48.7 24 38.8 24 999.0 24 998.3 24 8.0 24 11.2 24 26.0 999.9 55.4* 40.3* 99.99 999.9 010000 724050 13743 19491126 34.9 24 22.7 24 1009.6 24 1008.9 24 13.0 24 17.6 24 25.1 999.9 40.3* 31.3* 99.99 999.9 011000 724050 13743 19491127 38.0 24 26.9 24 1009.5 24 1008.8 24 9.5 24 4.4 24 11.1 999.9 48.4* 31.3* 0.00I 999.9 000000 724050 13743 19491128 36.8 24 29.7 24 1016.5 24 1015.8 24 4.5 24 2.1 24 9.9 999.9 46.4* 29.3* 0.00I 999.9 000000 724050 13743 19491129 46.1 24 42.7 24 1007.3 24 1006.6 24 3.6 24 2.2 24 8.0 999.9 58.3* 37.4* 99.99 999.9 110000 724050 13743 19491130 50.0 24 38.0 24 1005.1 24 1004.5 24 10.7 24 4.7 24 14.0 999.9 57.4* 42.4* 0.00I 999.9 000000 724050 13743 19491201 44.1 24 31.1 24 1014.9 24 1014.2 24 14.2 24 10.1 24 22.0 999.9 46.4* 39.4* 0.00I 999.9 000000 724050 13743 19491202 41.7 24 31.8 24 1017.7 24 1017.0 24 9.8 24 9.7 24 26.0 999.9 48.4* 36.3* 99.99 999.9 010000 724050 13743 19491203 36.1 24 23.6 24 1027.9 24 1027.2 24 13.6 24 14.4 24 23.9 999.9 41.4* 32.4* 0.00I 999.9 000000 724050 13743 19491204 36.6 24 20.8 15 1025.4 24 1024.7 24 8.7 24 4.1 24 13.0 999.9 51.3* 26.4* 99.99 999.9 010000 724050 13743 19491205 43.3 23 22.6 10 1017.5 23 1016.9 23 13.1 23 10.2 23 22.9 999.9 47.3* 36.3* 99.99 999.9 010000 724050 13743 19491206 39.0 24 18.4 24 1018.8 24 1018.1 24 14.7 24 7.5 24 14.0 999.9 48.4* 32.4* 0.00I 999.9 000000 724050 13743 19491207 48.9 24 29.3 24 1009.6 24 1008.9 24 13.6 24 9.5 24 20.0 999.9 60.3* 42.4* 99.99 999.9 010000 724050 13743 19491208 40.7 24 21.2 14 1017.8 24 1017.1 24 14.4 24 13.4 24 20.0 999.9 49.3* 36.3* 0.00I 999.9 000000 724050 13743 19491209 32.5 24 15.8 24 1029.0 24 1028.3 24 14.8 24 9.1 24 18.1 999.9 35.4* 29.3* 0.00I 999.9 000000 724050 13743 19491210 33.4 24 18.0 24 1032.4 24 1031.7 24 7.8 24 2.5 24 8.0 999.9 40.3* 29.3* 0.00I 999.9 000000 724050 13743 19491211 38.5 24 33.1 24 1030.7 24 1030.0 24 7.0 24 1.3 24 7.0 999.9 42.4* 36.3* 99.99 999.9 110000 724050 13743 19491212 46.8 24 46.3 24 1026.1 24 1025.4 24 2.4 24 5.6 24 12.0 999.9 57.4* 40.3* 99.99 999.9 110000 724050 13743 19491213 52.4 24 50.1 24 1020.4 24 1019.7 24 4.4 24 9.3 24 19.0 999.9 62.4* 42.4* 99.99 999.9 110000 724050 13743 19491214 38.4 24 23.8 24 1026.2 24 1025.5 24 8.6 24 9.9 24 18.1 999.9 42.4* 35.4* 0.00I 999.9 000000 724050 13743 19491215 34.3 24 19.1 24 1026.8 24 1026.1 24 10.0 24 6.6 24 14.0 999.9 37.4* 32.4* 0.00I 999.9 000000 724050 13743 19491216 29.5 24 14.4 24 1031.6 24 1030.8 24 8.6 24 5.4 24 9.9 999.9 36.3* 25.3* 0.00I 999.9 000000 724050 13743 19491217 30.5 24 20.8 24 1035.1 24 1034.4 24 6.1 24 2.4 24 7.0 999.9 44.4* 21.4* 0.00I 999.9 000000 724050 13743 19491218 38.4 24 35.1 24 1029.6 24 1028.9 24 3.5 24 0.9 24 6.0 999.9 44.4* 34.3* 99.99 999.9 110000 724050 13743 19491219 51.3 24 48.8 24 1022.5 24 1021.8 24 3.7 24 4.0 24 9.9 999.9 58.3* 45.3* 99.99 999.9 110000 724050 13743 19491220 48.7 24 38.6 24 1026.8 24 1026.1 24 6.4 24 4.3 24 9.9 999.9 58.3* 42.4* 0.00I 999.9 000000 724050 13743 19491221 48.3 24 42.3 24 1022.0 24 1021.4 24 7.5 24 6.7 24 14.0 999.9 61.3* 41.4* 0.00I 999.9 100000 724050 13743 19491222 56.5 24 50.8 24 1015.3 24 1014.6 24 9.2 24 10.1 24 15.0 999.9 65.3* 49.3* 0.00I 999.9 000000 724050 13743 19491223 51.9 24 45.8 24 1013.8 24 1013.2 24 9.2 24 14.0 24 23.9 999.9 65.3* 34.3* 99.99 999.9 111000 724050 13743 19491224 34.5 24 18.9 24 1035.3 24 1034.6 24 12.1 24 10.2 24 22.0 999.9 42.4* 29.3* 0.00I 999.9 000000 724050 13743 19491225 33.5 24 24.0 24 1045.1 24 1044.4 24 5.5 24 3.1 24 9.9 999.9 44.4* 26.4* 0.00I 999.9 100000 724050 13743 19491226 43.3 24 39.0 24 1035.0 24 1034.4 24 5.3 24 2.9 24 6.0 999.9 51.3* 38.3* 0.00I 999.9 100000 724050 13743 19491227 54.5 24 52.9 24 1022.5 24 1021.8 24 5.0 24 6.1 24 15.9 999.9 63.3* 47.3* 99.99 999.9 110000 724050 13743 19491228 50.2 24 31.4 24 1025.6 24 1024.9 24 13.3 24 9.4 24 22.9 999.9 62.4* 41.4* 99.99 999.9 010000 724050 13743 19491229 42.7 24 28.6 24 1028.1 24 1027.5 24 9.2 24 7.0 24 14.0 999.9 51.3* 34.3* 0.00I 999.9 000000 724050 13743 19491230 36.9 24 21.7 24 1036.2 24 1035.5 24 11.8 24 5.9 24 8.9 999.9 46.4* 30.4* 0.00I 999.9 000000 724050 13743 19491231 34.6 24 16.8 24 1037.8 24 1037.2 24 10.1 24 2.5 24 8.0 999.9 44.4* 27.3* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1939/0000755000175000017500000000000014302004506015105 5ustar nileshnileshfluids-1.0.22/tests/gsod/1939/724050-13743.op0000644000175000017500000014327214302004506016676 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19390101 44.6 24 29.4 24 1015.3 24 9999.9 0 7.2 24 4.9 24 12.0 999.9 57.4* 35.4* 0.00I 999.9 000000 724050 13743 19390102 50.8 24 29.4 24 1011.4 24 9999.9 0 8.7 24 8.9 24 19.0 999.9 61.3* 43.3* 0.00I 999.9 000000 724050 13743 19390103 42.5 24 33.1 24 1014.6 24 9999.9 0 4.3 24 4.6 24 28.0 999.9 58.3* 33.4* 0.00I 999.9 000000 724050 13743 19390104 38.1 24 35.1 24 1022.2 24 9999.9 0 1.8 24 5.8 24 9.9 999.9 43.3* 34.3* 99.99 999.9 110000 724050 13743 19390105 43.2 24 41.6 24 1025.0 24 9999.9 0 1.3 24 5.5 24 11.1 999.9 58.3* 37.4* 99.99 999.9 110000 724050 13743 19390106 53.6 24 44.0 24 1022.4 24 9999.9 0 7.1 24 7.1 24 26.0 999.9 60.3* 48.4* 99.99 999.9 010000 724050 13743 19390107 42.9 24 34.5 24 1028.8 24 9999.9 0 5.4 24 5.5 24 14.0 999.9 55.4* 31.3* 0.00I 999.9 000000 724050 13743 19390108 45.4 24 32.4 24 1022.8 24 9999.9 0 5.9 24 6.2 24 16.9 999.9 59.4* 34.3* 0.00I 999.9 000000 724050 13743 19390109 42.5 24 30.5 24 1024.9 24 9999.9 0 4.5 24 2.9 24 13.0 999.9 60.3* 30.4* 0.00I 999.9 000000 724050 13743 19390110 53.0 24 41.1 24 1011.7 24 9999.9 0 6.7 24 10.5 24 15.9 999.9 63.3* 44.4* 99.99 999.9 010000 724050 13743 19390111 49.7 24 34.4 24 1012.4 23 9999.9 0 8.9 24 7.2 24 15.9 999.9 58.3* 45.3* 0.00I 999.9 000000 724050 13743 19390112 42.8 24 28.8 24 1019.0 24 9999.9 0 7.0 24 6.8 24 15.9 999.9 46.4* 37.4* 99.99 999.9 010000 724050 13743 19390113 33.8 24 24.7 24 1020.6 24 9999.9 0 3.8 24 9.6 24 15.0 999.9 42.4* 28.4* 99.99 999.9 111000 724050 13743 19390114 31.0 24 24.9 24 1011.3 24 9999.9 0 6.6 24 12.2 24 22.0 999.9 35.4* 26.4* 99.99 999.9 101000 724050 13743 19390115 30.4 24 18.3 24 1022.5 24 9999.9 0 8.5 24 5.0 24 12.0 999.9 38.3* 21.4* 0.00I 999.9 000000 724050 13743 19390116 31.5 24 24.4 24 1019.5 24 9999.9 0 6.0 24 5.4 24 9.9 999.9 39.4* 26.4* 99.99 999.9 001000 724050 13743 19390117 37.8 24 24.9 24 1024.8 24 9999.9 0 7.8 24 6.1 24 9.9 999.9 42.4* 34.3* 0.00I 999.9 000000 724050 13743 19390118 34.3 24 30.7 24 1010.1 24 9999.9 0 3.1 24 6.0 24 13.0 999.9 36.3* 31.3* 99.99 999.9 111000 724050 13743 19390119 28.0 24 21.3 24 1011.4 24 9999.9 0 6.3 24 8.1 24 19.0 999.9 31.3* 23.4* 99.99 999.9 001000 724050 13743 19390120 26.2 24 16.0 24 1020.3 24 9999.9 0 4.4 24 6.6 24 16.9 999.9 34.3* 18.3* 99.99 999.9 001000 724050 13743 19390121 34.4 24 28.6 24 1018.9 24 9999.9 0 2.2 24 3.6 24 9.9 999.9 44.4* 28.4* 99.99 999.9 111000 724050 13743 19390122 40.8 24 28.5 24 1007.8 24 9999.9 0 8.7 24 14.6 24 29.9 999.9 47.3* 28.4* 99.99 999.9 010000 724050 13743 19390123 27.6 24 10.1 24 1023.3 24 9999.9 0 11.3 24 12.2 24 29.9 999.9 38.3* 20.3* 0.00I 999.9 000000 724050 13743 19390124 37.1 24 27.7 24 1014.2 24 9999.9 0 7.2 24 9.9 24 19.0 999.9 44.4* 32.4* 99.99 999.9 111000 724050 13743 19390125 33.8 24 18.8 24 1012.5 24 9999.9 0 10.2 24 20.8 24 33.0 999.9 41.4* 24.4* 99.99 999.9 001000 724050 13743 19390126 22.4 24 5.5 24 1022.0 24 9999.9 0 7.9 24 7.5 24 15.9 999.9 28.4* 18.3* 99.99 999.9 001000 724050 13743 19390127 24.0 24 11.8 24 1020.5 24 9999.9 0 5.5 24 8.9 24 16.9 999.9 33.4* 18.3* 99.99 999.9 001000 724050 13743 19390128 28.7 24 13.9 24 1029.7 24 9999.9 0 7.2 24 7.2 24 16.9 999.9 39.4* 18.3* 0.00I 999.9 000000 724050 13743 19390129 39.2 24 26.9 24 1023.0 24 9999.9 0 5.7 24 8.7 24 15.9 999.9 44.4* 36.3* 99.99 999.9 110000 724050 13743 19390130 39.6 24 38.7 24 1005.9 24 9999.9 0 0.9 24 7.4 24 15.0 999.9 43.3* 37.4* 99.99 999.9 110000 724050 13743 19390131 36.9 24 29.2 24 1005.9 24 9999.9 0 9.4 24 10.4 24 22.0 999.9 39.4* 34.3* 99.99 999.9 110000 724050 13743 19390201 34.6 24 20.2 24 1027.8 24 9999.9 0 7.1 24 7.8 24 13.0 999.9 44.4* 28.4* 0.00I 999.9 000000 724050 13743 19390202 37.7 24 32.4 24 1023.4 24 9999.9 0 4.9 24 3.1 24 7.0 999.9 40.3* 34.3* 99.99 999.9 110000 724050 13743 19390203 42.4 24 41.9 24 1008.4 24 9999.9 0 0.9 24 4.8 24 14.0 999.9 45.3* 39.4* 99.99 999.9 110000 724050 13743 19390204 36.5 24 25.7 24 1017.0 24 9999.9 0 6.2 24 14.9 24 22.0 999.9 40.3* 33.4* 99.99 999.9 110000 724050 13743 19390205 30.6 24 16.9 24 1028.4 24 9999.9 0 5.5 24 5.1 24 13.0 999.9 42.4* 21.4* 0.00I 999.9 000000 724050 13743 19390206 36.4 24 30.4 24 1014.0 24 9999.9 0 3.8 24 3.7 24 8.9 999.9 44.4* 31.3* 99.99 999.9 010000 724050 13743 19390207 42.6 24 31.9 24 1009.9 24 9999.9 0 6.6 24 10.1 24 22.0 999.9 50.4* 37.4* 99.99 999.9 110000 724050 13743 19390208 41.6 24 29.3 24 1026.3 24 9999.9 0 5.0 24 5.5 24 15.0 999.9 57.4* 30.4* 0.00I 999.9 100000 724050 13743 19390209 47.1 24 32.9 24 1027.0 24 9999.9 0 5.1 24 6.3 24 13.0 999.9 58.3* 38.3* 99.99 999.9 010000 724050 13743 19390210 42.0 24 40.3 24 1022.6 24 9999.9 0 2.6 24 5.1 24 9.9 999.9 46.4* 38.3* 99.99 999.9 110000 724050 13743 19390211 42.5 24 32.1 24 1021.0 24 9999.9 0 6.3 24 8.9 24 28.0 999.9 45.3* 39.4* 99.99 999.9 110000 724050 13743 19390212 36.6 24 17.1 24 1031.3 24 9999.9 0 10.4 24 5.7 24 13.0 999.9 47.3* 28.4* 0.00I 999.9 000000 724050 13743 19390213 43.1 24 20.9 24 1024.3 24 9999.9 0 8.9 24 8.2 24 9.9 999.9 59.4* 30.4* 0.00I 999.9 000000 724050 13743 19390214 48.5 24 33.1 24 1014.7 24 9999.9 0 6.0 24 5.6 24 9.9 999.9 58.3* 37.4* 99.99 999.9 010000 724050 13743 19390215 56.4 24 51.5 24 1003.1 24 9999.9 0 6.3 24 12.1 24 19.0 999.9 70.3* 38.3* 99.99 999.9 110000 724050 13743 19390216 31.3 24 12.9 24 1026.6 24 9999.9 0 10.6 24 14.1 24 22.0 999.9 39.4* 25.3* 0.00I 999.9 000000 724050 13743 19390217 31.6 24 18.7 24 1034.3 24 9999.9 0 8.5 24 7.4 24 19.0 999.9 44.4* 22.5* 0.00I 999.9 000000 724050 13743 19390218 46.4 24 30.7 24 1022.4 24 9999.9 0 5.7 24 6.1 24 19.0 999.9 67.3* 31.3* 0.00I 999.9 000000 724050 13743 19390219 52.4 24 39.1 24 1019.0 24 9999.9 0 5.3 24 4.7 24 13.0 999.9 75.4* 36.3* 99.99 999.9 010000 724050 13743 19390220 67.0 24 52.6 24 1012.0 24 9999.9 0 9.0 24 12.2 24 16.9 999.9 74.3* 63.3* 0.00I 999.9 000000 724050 13743 19390221 54.3 24 40.7 24 1017.2 24 9999.9 0 5.6 24 7.3 24 11.1 999.9 62.4* 49.3* 99.99 999.9 010000 724050 13743 19390222 33.6 24 23.0 24 1014.2 24 9999.9 0 7.0 24 18.2 24 28.9 999.9 48.4* 25.3* 99.99 999.9 111000 724050 13743 19390223 24.2 24 5.4 24 1026.4 24 9999.9 0 10.6 24 12.5 24 18.1 999.9 31.3* 18.3* 0.00I 999.9 000000 724050 13743 19390224 35.9 24 17.3 24 1021.0 24 9999.9 0 8.5 24 12.5 24 22.0 999.9 48.4* 25.3* 0.00I 999.9 000000 724050 13743 19390225 38.3 24 22.3 24 1027.4 23 9999.9 0 7.0 24 7.5 24 12.0 999.9 43.3* 31.3* 0.00I 999.9 000000 724050 13743 19390226 44.7 24 40.7 24 1015.3 24 9999.9 0 4.9 24 8.3 24 13.0 999.9 58.3* 36.3* 99.99 999.9 110000 724050 13743 19390227 47.6 24 37.7 24 1021.2 24 9999.9 0 5.3 24 5.7 24 12.0 999.9 53.4* 41.4* 0.00I 999.9 000000 724050 13743 19390228 42.9 24 39.0 24 1021.3 24 9999.9 0 2.3 24 6.2 24 13.0 999.9 47.3* 38.3* 99.99 999.9 110000 724050 13743 19390301 50.6 24 37.9 24 1016.8 23 9999.9 0 11.4 24 13.2 24 16.9 999.9 56.3* 46.4* 0.00I 999.9 000000 724050 13743 19390302 39.0 24 21.7 24 1026.6 24 9999.9 0 10.0 24 10.7 24 16.9 999.9 44.4* 32.4* 0.00I 999.9 000000 724050 13743 19390303 36.0 24 24.5 24 1028.7 24 9999.9 0 7.7 24 4.9 24 15.9 999.9 49.3* 24.4* 0.00I 999.9 000000 724050 13743 19390304 40.9 24 34.6 24 1024.6 24 9999.9 0 6.2 24 4.4 24 9.9 999.9 50.4* 33.4* 99.99 999.9 010000 724050 13743 19390305 55.3 24 49.3 24 1012.3 24 9999.9 0 5.0 24 7.5 24 15.9 999.9 74.3* 46.4* 99.99 999.9 110000 724050 13743 19390306 62.3 24 52.7 24 1006.8 24 9999.9 0 7.6 24 12.3 24 22.0 999.9 70.3* 55.4* 99.99 999.9 110000 724050 13743 19390307 45.0 24 23.3 24 1020.8 24 9999.9 0 11.7 24 15.3 24 23.9 999.9 53.4* 35.4* 0.00I 999.9 000000 724050 13743 19390308 37.5 24 16.6 24 1033.5 24 9999.9 0 10.1 24 8.9 24 16.9 999.9 46.4* 29.3* 0.00I 999.9 000000 724050 13743 19390309 49.5 24 31.4 24 1020.3 24 9999.9 0 9.0 24 11.4 24 19.0 999.9 71.2* 36.3* 99.99 999.9 010000 724050 13743 19390310 47.3 24 29.7 24 1023.6 24 9999.9 0 8.3 24 8.7 24 15.9 999.9 60.3* 37.4* 0.00I 999.9 000000 724050 13743 19390311 36.6 24 28.4 24 1024.2 24 9999.9 0 7.2 24 8.1 24 13.0 999.9 44.4* 31.3* 99.99 999.9 111000 724050 13743 19390312 37.3 24 36.2 24 1009.5 24 9999.9 0 4.3 24 6.1 24 9.9 999.9 42.4* 34.3* 99.99 999.9 110000 724050 13743 19390313 42.8 24 33.4 24 1005.6 24 9999.9 0 10.2 24 13.6 24 26.0 999.9 51.3* 37.4* 99.99 999.9 110000 724050 13743 19390314 45.1 24 29.1 24 1020.7 24 9999.9 0 10.1 24 6.3 24 13.0 999.9 59.4* 36.3* 0.00I 999.9 000000 724050 13743 19390315 45.6 24 38.6 24 1020.8 24 9999.9 0 5.8 24 6.0 24 15.9 999.9 55.4* 37.4* 99.99 999.9 110000 724050 13743 19390316 47.0 24 36.3 24 1014.2 24 9999.9 0 7.1 24 10.4 24 20.0 999.9 54.3* 43.3* 99.99 999.9 110000 724050 13743 19390317 39.5 24 18.2 24 1020.8 24 9999.9 0 9.6 24 9.0 24 20.0 999.9 45.3* 31.3* 0.00I 999.9 000000 724050 13743 19390318 34.6 24 22.3 24 1025.5 24 9999.9 0 7.3 24 6.1 24 12.0 999.9 39.4* 27.3* 99.99 999.9 001000 724050 13743 19390319 31.6 24 13.9 24 1033.3 24 9999.9 0 9.2 24 8.6 24 15.9 999.9 42.4* 24.4* 0.00I 999.9 000000 724050 13743 19390320 43.3 24 26.1 24 1024.3 24 9999.9 0 8.7 24 11.9 24 19.0 999.9 58.3* 32.4* 0.00I 999.9 000000 724050 13743 19390321 39.6 24 19.5 24 1025.3 24 9999.9 0 13.8 24 11.1 24 22.0 999.9 49.3* 30.4* 0.00I 999.9 000000 724050 13743 19390322 41.2 24 25.8 24 1020.8 24 9999.9 0 7.8 24 8.2 24 15.9 999.9 46.4* 36.3* 99.99 999.9 010000 724050 13743 19390323 41.1 24 27.2 24 1027.2 24 9999.9 0 5.6 24 3.5 24 9.9 999.9 57.4* 28.4* 0.00I 999.9 000000 724050 13743 19390324 55.7 24 36.6 24 1018.3 24 9999.9 0 5.2 24 4.5 24 15.0 999.9 82.4* 36.3* 0.00I 999.9 000000 724050 13743 19390325 70.0 24 43.6 24 1011.4 24 9999.9 0 7.0 24 5.6 24 11.1 999.9 84.4* 59.4* 0.00I 999.9 000000 724050 13743 19390326 66.9 24 46.2 24 1011.0 24 9999.9 0 5.9 24 6.8 24 16.9 999.9 84.4* 52.3* 0.00I 999.9 000000 724050 13743 19390327 68.4 24 49.4 24 1010.3 24 9999.9 0 7.2 24 10.6 24 15.9 999.9 76.3* 64.4* 99.99 999.9 010000 724050 13743 19390328 51.3 24 45.8 24 1013.7 24 9999.9 0 6.1 24 10.0 24 15.0 999.9 66.4* 45.3* 99.99 999.9 110000 724050 13743 19390329 44.9 24 28.6 24 1025.6 24 9999.9 0 8.9 24 7.9 24 12.0 999.9 52.3* 36.3* 0.00I 999.9 000000 724050 13743 19390330 45.8 24 42.7 24 1012.9 24 9999.9 0 5.8 24 4.0 24 9.9 999.9 56.3* 41.4* 99.99 999.9 110000 724050 13743 19390331 50.1 24 37.3 24 1006.7 24 9999.9 0 8.2 24 11.0 24 20.0 999.9 54.3* 44.4* 0.00I 999.9 100000 724050 13743 19390401 48.6 24 39.9 24 1006.6 24 9999.9 0 5.0 24 4.7 24 13.0 999.9 61.3* 37.4* 99.99 999.9 010000 724050 13743 19390402 50.5 24 34.1 24 1006.5 24 9999.9 0 12.4 24 14.0 24 22.0 999.9 57.4* 44.4* 99.99 999.9 010010 724050 13743 19390403 49.9 24 28.9 24 1013.1 24 9999.9 0 12.4 24 13.3 24 22.0 999.9 54.3* 44.4* 0.00I 999.9 000000 724050 13743 19390404 45.0 24 24.3 24 1017.0 24 9999.9 0 12.0 24 14.4 24 19.0 999.9 49.3* 40.3* 0.00I 999.9 000000 724050 13743 19390405 44.6 24 24.7 24 1019.4 24 9999.9 0 11.4 24 7.7 24 15.9 999.9 58.3* 35.4* 0.00I 999.9 000000 724050 13743 19390406 50.6 24 44.1 24 1011.2 24 9999.9 0 5.4 24 6.4 24 16.9 999.9 58.3* 46.4* 99.99 999.9 110000 724050 13743 19390407 44.5 24 31.5 24 1014.0 24 9999.9 0 11.1 24 15.1 24 21.0 999.9 51.3* 38.3* 99.99 999.9 110000 724050 13743 19390408 41.5 24 27.1 24 1016.8 24 9999.9 0 8.0 24 6.3 24 13.0 999.9 48.4* 36.3* 0.00I 999.9 000000 724050 13743 19390409 44.0 24 31.4 24 1013.1 24 9999.9 0 10.9 24 9.3 24 21.0 999.9 56.3* 35.4* 99.99 999.9 010000 724050 13743 19390410 58.0 24 39.9 24 1013.9 24 9999.9 0 10.2 24 7.4 24 16.9 999.9 81.3* 45.3* 99.99 999.9 010000 724050 13743 19390411 68.9 24 49.5 24 1009.4 24 9999.9 0 11.7 24 17.2 24 22.9 999.9 78.3* 61.3* 99.99 999.9 010000 724050 13743 19390412 49.6 24 35.7 24 1013.5 24 9999.9 0 9.8 24 14.4 24 26.0 999.9 56.3* 39.4* 99.99 999.9 010000 724050 13743 19390413 41.1 24 22.1 24 1026.6 24 9999.9 0 11.9 24 14.8 24 21.0 999.9 53.4* 33.4* 0.00I 999.9 000000 724050 13743 19390414 49.7 24 27.6 24 1026.2 24 9999.9 0 8.6 24 3.7 24 13.0 999.9 64.4* 34.3* 0.00I 999.9 000000 724050 13743 19390415 61.6 24 45.1 24 1014.2 24 9999.9 0 7.7 24 8.7 24 15.9 999.9 70.3* 54.3* 99.99 999.9 110000 724050 13743 19390416 47.3 24 44.5 24 1022.0 24 9999.9 0 5.4 24 7.6 24 13.0 999.9 57.4* 42.4* 99.99 999.9 110000 724050 13743 19390417 42.5 24 41.5 24 1026.0 24 9999.9 0 2.5 24 7.3 24 13.0 999.9 46.4* 40.3* 99.99 999.9 110000 724050 13743 19390418 51.7 24 48.0 24 1015.8 24 9999.9 0 4.3 24 4.2 24 13.0 999.9 68.4* 44.4* 99.99 999.9 110000 724050 13743 19390419 57.4 24 49.5 24 1007.2 24 9999.9 0 6.6 24 6.4 24 22.0 999.9 64.4* 53.4* 99.99 999.9 110000 724050 13743 19390420 55.5 24 37.4 24 1013.6 24 9999.9 0 9.2 24 3.8 24 8.9 999.9 68.4* 47.3* 0.00I 999.9 000000 724050 13743 19390421 57.6 24 44.3 24 1018.3 24 9999.9 0 7.9 24 7.2 24 15.9 999.9 73.4* 43.3* 0.00I 999.9 000000 724050 13743 19390422 59.3 24 45.6 24 1020.9 24 9999.9 0 9.7 24 8.4 24 16.9 999.9 64.4* 51.3* 99.99 999.9 010000 724050 13743 19390423 58.1 24 40.1 24 1026.5 24 9999.9 0 7.7 24 4.7 24 14.0 999.9 75.4* 41.4* 0.00I 999.9 000000 724050 13743 19390424 66.9 24 42.2 24 1020.3 24 9999.9 0 7.3 24 5.8 24 14.0 999.9 87.3* 49.3* 0.00I 999.9 000000 724050 13743 19390425 74.7 24 46.7 24 1013.5 24 9999.9 0 7.9 24 5.6 24 13.0 999.9 91.2* 55.4* 0.00I 999.9 000000 724050 13743 19390426 71.8 24 63.0 24 1009.2 24 9999.9 0 8.2 24 8.0 24 12.0 999.9 80.2* 64.4* 99.99 999.9 010000 724050 13743 19390427 65.9 24 60.8 24 1007.4 24 9999.9 0 3.7 24 3.7 24 9.9 999.9 75.4* 59.4* 99.99 999.9 110000 724050 13743 19390428 57.2 24 52.5 24 1010.1 24 9999.9 0 6.6 24 7.6 24 13.0 999.9 68.4* 47.3* 99.99 999.9 110000 724050 13743 19390429 46.0 24 42.6 24 1012.4 24 9999.9 0 6.4 24 8.9 24 15.9 999.9 49.3* 44.4* 99.99 999.9 110000 724050 13743 19390430 49.2 24 38.1 24 1008.5 24 9999.9 0 9.4 24 9.0 24 19.0 999.9 56.3* 44.4* 99.99 999.9 010000 724050 13743 19390501 49.9 24 35.1 24 1012.0 24 9999.9 0 12.8 24 10.5 24 16.9 999.9 62.4* 41.4* 0.00I 999.9 000000 724050 13743 19390502 52.4 24 34.7 24 1016.7 24 9999.9 0 6.8 24 3.4 24 8.9 999.9 62.4* 44.4* 0.00I 999.9 000000 724050 13743 19390503 54.8 24 37.0 24 1016.9 24 9999.9 0 8.6 24 10.7 24 16.9 999.9 61.3* 47.3* 0.00I 999.9 000000 724050 13743 19390504 56.6 24 36.5 24 1018.2 24 9999.9 0 12.5 24 6.5 24 13.0 999.9 70.3* 43.3* 0.00I 999.9 000000 724050 13743 19390505 63.8 24 40.1 24 1018.4 24 9999.9 0 7.9 24 5.2 24 14.0 999.9 79.3* 45.3* 0.00I 999.9 000000 724050 13743 19390506 69.2 24 49.1 24 1016.8 24 9999.9 0 7.9 24 3.6 24 13.0 999.9 89.2* 51.3* 0.00I 999.9 000000 724050 13743 19390507 75.5 24 51.6 24 1013.8 24 9999.9 0 7.7 24 5.3 24 13.0 999.9 89.2* 59.4* 0.00I 999.9 000000 724050 13743 19390508 74.6 24 55.8 24 1011.6 24 9999.9 0 9.4 24 10.2 24 16.9 999.9 81.3* 67.3* 99.99 999.9 010000 724050 13743 19390509 72.9 24 63.2 24 1004.1 24 9999.9 0 8.3 24 10.1 24 21.0 999.9 84.4* 66.4* 99.99 999.9 110000 724050 13743 19390510 72.4 24 50.6 24 1005.6 24 9999.9 0 12.3 24 7.6 24 13.0 999.9 82.4* 64.4* 99.99 999.9 010000 724050 13743 19390511 68.5 24 50.5 24 1009.5 24 9999.9 0 9.9 24 7.0 24 13.0 999.9 78.3* 58.3* 0.00I 999.9 000000 724050 13743 19390512 62.4 24 38.2 24 1019.7 24 9999.9 0 12.2 24 7.6 24 15.9 999.9 69.3* 54.3* 0.00I 999.9 000000 724050 13743 19390513 50.0 24 43.3 24 1023.8 24 9999.9 0 7.0 24 7.2 24 15.9 999.9 58.3* 48.4* 99.99 999.9 110000 724050 13743 19390514 52.9 24 41.8 24 1022.0 24 9999.9 0 8.9 24 4.4 24 8.9 999.9 63.3* 46.4* 0.00I 999.9 100000 724050 13743 19390515 53.9 24 36.4 24 1018.9 24 9999.9 0 9.1 24 5.7 24 15.0 999.9 68.4* 40.3* 0.00I 999.9 000000 724050 13743 19390516 54.3 24 42.0 24 1018.0 24 9999.9 0 12.1 24 5.1 24 9.9 999.9 65.3* 45.3* 0.00I 999.9 000000 724050 13743 19390517 58.4 24 46.5 24 1016.8 24 9999.9 0 8.2 24 2.9 24 8.9 999.9 77.4* 43.3* 0.00I 999.9 000000 724050 13743 19390518 68.8 24 53.6 24 1017.3 24 9999.9 0 7.7 24 6.2 24 12.0 999.9 85.3* 55.4* 0.00I 999.9 000000 724050 13743 19390519 69.4 24 53.8 24 1020.8 24 9999.9 0 7.7 24 7.3 24 16.9 999.9 88.3* 52.3* 0.00I 999.9 000000 724050 13743 19390520 76.2 24 59.9 24 1018.6 24 9999.9 0 10.0 24 8.3 24 14.0 999.9 86.4* 66.4* 0.00I 999.9 000000 724050 13743 19390521 75.1 24 62.0 24 1015.8 24 9999.9 0 11.5 24 3.6 24 12.0 999.9 87.3* 64.4* 99.99 999.9 010000 724050 13743 19390522 73.7 24 65.3 24 1011.1 24 9999.9 0 11.4 24 7.0 24 15.0 999.9 84.4* 67.3* 99.99 999.9 010010 724050 13743 19390523 75.9 24 64.5 24 1010.5 24 9999.9 0 7.2 24 5.0 24 9.9 999.9 88.3* 64.4* 0.00I 999.9 100000 724050 13743 19390524 75.2 24 58.0 24 1014.8 24 9999.9 0 9.2 24 6.4 24 12.0 999.9 82.4* 69.3* 0.00I 999.9 000000 724050 13743 19390525 67.1 24 56.9 24 1023.0 24 9999.9 0 8.0 24 3.8 24 8.9 999.9 80.2* 57.4* 0.00I 999.9 100000 724050 13743 19390526 72.7 24 61.9 24 1023.5 24 9999.9 0 8.6 24 4.6 24 9.9 999.9 84.4* 65.3* 0.00I 999.9 000000 724050 13743 19390527 75.9 24 65.5 24 1020.4 24 9999.9 0 9.2 24 5.2 24 13.0 999.9 91.2* 63.3* 0.00I 999.9 000000 724050 13743 19390528 81.0 24 68.0 24 1012.9 24 9999.9 0 10.4 24 12.4 24 18.1 999.9 91.2* 74.3* 0.00I 999.9 000000 724050 13743 19390529 79.1 24 66.0 24 1011.4 24 9999.9 0 10.4 24 9.0 24 16.9 999.9 89.2* 70.3* 0.00I 999.9 000000 724050 13743 19390530 78.4 24 64.6 24 1012.3 24 9999.9 0 9.1 24 6.0 24 15.9 999.9 90.3* 67.3* 0.00I 999.9 000010 724050 13743 19390531 81.7 24 64.3 24 1012.7 24 9999.9 0 10.0 24 6.8 24 13.0 999.9 94.3* 70.3* 0.00I 999.9 000000 724050 13743 19390601 76.5 24 64.7 24 1013.6 24 9999.9 0 6.9 24 5.5 24 15.9 999.9 86.4* 67.3* 99.99 999.9 010000 724050 13743 19390602 63.9 24 60.9 24 1019.0 24 9999.9 0 5.0 24 8.3 24 13.0 999.9 67.3* 61.3* 99.99 999.9 110000 724050 13743 19390603 67.8 24 58.4 24 1022.2 24 9999.9 0 9.2 24 3.0 24 8.9 999.9 78.3* 61.3* 99.99 999.9 010000 724050 13743 19390604 72.3 24 64.2 24 1018.8 24 9999.9 0 8.2 24 5.7 24 13.0 999.9 81.3* 65.3* 99.99 999.9 010000 724050 13743 19390605 73.2 24 54.0 24 1019.0 24 9999.9 0 9.8 24 5.3 24 9.9 999.9 85.3* 60.3* 0.00I 999.9 000000 724050 13743 19390606 78.3 24 60.0 24 1014.0 24 9999.9 0 9.9 24 8.4 24 15.9 999.9 92.3* 66.4* 0.00I 999.9 000000 724050 13743 19390607 73.3 24 52.3 24 1019.4 24 9999.9 0 10.4 24 5.6 24 9.9 999.9 84.4* 59.4* 0.00I 999.9 000000 724050 13743 19390608 75.5 24 62.4 24 1015.5 24 9999.9 0 13.4 24 6.9 24 9.9 999.9 92.3* 65.3* 99.99 999.9 010000 724050 13743 19390609 78.8 24 67.1 24 1010.5 24 9999.9 0 10.7 24 7.7 24 13.0 999.9 90.3* 67.3* 99.99 999.9 010010 724050 13743 19390610 80.8 24 69.4 24 1010.3 24 9999.9 0 8.1 24 3.3 24 12.0 999.9 92.3* 72.3* 99.99 999.9 010010 724050 13743 19390611 81.7 24 68.9 24 1009.5 24 9999.9 0 9.5 24 8.5 24 16.9 999.9 93.4* 72.3* 0.00I 999.9 000000 724050 13743 19390612 80.0 24 63.8 24 1012.6 24 9999.9 0 10.1 24 8.2 24 16.9 999.9 89.2* 69.3* 0.00I 999.9 000000 724050 13743 19390613 75.4 24 65.7 24 1015.8 24 9999.9 0 7.5 24 5.9 24 15.9 999.9 85.3* 66.4* 99.99 999.9 010010 724050 13743 19390614 73.1 24 64.8 24 1013.5 24 9999.9 0 8.7 24 8.8 24 15.9 999.9 79.3* 67.3* 99.99 999.9 010010 724050 13743 19390615 73.3 24 60.3 24 1017.8 24 9999.9 0 8.2 24 6.8 24 14.0 999.9 84.4* 60.3* 0.00I 999.9 000000 724050 13743 19390616 82.5 24 71.0 24 1015.2 24 9999.9 0 10.4 24 8.6 24 12.0 999.9 94.3* 72.3* 0.00I 999.9 000000 724050 13743 19390617 84.8 24 73.6 24 1014.1 24 9999.9 0 9.7 24 9.8 24 14.0 999.9 92.3* 78.3* 99.99 999.9 010000 724050 13743 19390618 69.2 24 65.6 24 1016.7 24 9999.9 0 7.5 24 7.3 24 15.9 999.9 84.4* 63.3* 99.99 999.9 010000 724050 13743 19390619 66.3 24 61.8 24 1018.3 24 9999.9 0 8.7 24 4.2 24 9.9 999.9 73.4* 61.3* 99.99 999.9 010000 724050 13743 19390620 76.5 24 69.8 23 1016.4 24 9999.9 0 7.5 24 4.5 24 15.0 999.9 88.3* 69.3* 99.99 999.9 110000 724050 13743 19390621 79.8 24 62.5 24 1019.9 24 9999.9 0 12.2 24 6.6 24 12.0 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19390622 79.3 24 65.7 24 1016.4 24 9999.9 0 8.1 24 4.1 24 8.9 999.9 89.2* 71.2* 99.99 999.9 010000 724050 13743 19390623 77.1 24 67.4 24 1011.8 24 9999.9 0 8.7 24 6.7 24 16.9 999.9 86.4* 68.4* 99.99 999.9 010010 724050 13743 19390624 75.1 24 57.4 24 1014.3 24 9999.9 0 11.1 24 6.7 24 12.0 999.9 83.3* 63.3* 0.00I 999.9 000000 724050 13743 19390625 76.5 24 60.6 24 1014.9 24 9999.9 0 9.8 24 7.4 24 16.9 999.9 86.4* 68.4* 0.00I 999.9 000000 724050 13743 19390626 72.8 24 59.3 24 1018.8 24 9999.9 0 9.2 24 3.8 24 9.9 999.9 80.2* 62.4* 0.00I 999.9 000000 724050 13743 19390627 72.1 24 63.1 24 1022.3 23 9999.9 0 9.4 24 6.0 24 9.9 999.9 80.2* 64.4* 0.00I 999.9 000000 724050 13743 19390628 70.1 24 65.2 24 1020.5 24 9999.9 0 6.5 24 4.3 24 9.9 999.9 73.4* 67.3* 99.99 999.9 110000 724050 13743 19390629 73.3 24 70.1 24 1015.7 24 9999.9 0 4.6 24 3.2 24 8.0 999.9 81.3* 68.4* 99.99 999.9 110010 724050 13743 19390630 76.7 24 71.6 24 1009.5 24 9999.9 0 8.1 24 6.0 24 9.9 999.9 87.3* 70.3* 99.99 999.9 110010 724050 13743 19390701 75.7 24 64.5 24 1011.9 24 9999.9 0 11.1 24 5.9 24 13.0 999.9 85.3* 68.4* 0.00I 999.9 000000 724050 13743 19390702 76.5 24 60.9 24 1018.7 24 9999.9 0 9.6 24 2.7 24 7.0 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19390703 74.6 24 59.5 24 1022.2 24 9999.9 0 10.6 24 2.8 24 7.0 999.9 90.3* 60.3* 0.00I 999.9 100000 724050 13743 19390704 76.3 24 68.8 24 1019.0 24 9999.9 0 8.2 24 6.9 24 14.0 999.9 86.4* 70.3* 99.99 999.9 110000 724050 13743 19390705 74.2 24 67.9 24 1015.3 24 9999.9 0 7.5 24 10.1 24 14.0 999.9 79.3* 70.3* 99.99 999.9 110000 724050 13743 19390706 73.9 24 68.1 24 1016.1 24 9999.9 0 6.4 24 4.2 24 8.9 999.9 84.4* 65.3* 0.00I 999.9 000000 724050 13743 19390707 80.5 24 72.3 24 1017.3 24 9999.9 0 9.3 24 5.5 24 13.0 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19390708 83.0 24 74.3 24 1014.5 24 9999.9 0 11.4 24 9.1 24 14.0 999.9 92.3* 76.3* 0.00I 999.9 000000 724050 13743 19390709 81.9 24 72.1 24 1012.2 24 9999.9 0 9.2 24 6.2 24 9.9 999.9 90.3* 74.3* 99.99 999.9 010000 724050 13743 19390710 80.9 24 68.4 24 1012.0 24 9999.9 0 8.7 24 5.4 24 12.0 999.9 92.3* 72.3* 99.99 999.9 010000 724050 13743 19390711 73.6 24 57.0 24 1018.0 24 9999.9 0 11.0 24 7.0 24 12.0 999.9 80.2* 65.3* 0.00I 999.9 000000 724050 13743 19390712 76.2 24 58.2 24 1017.7 24 9999.9 0 9.8 24 6.4 24 15.9 999.9 89.2* 65.3* 0.00I 999.9 000000 724050 13743 19390713 79.5 24 65.7 24 1013.5 24 9999.9 0 8.0 24 5.9 24 13.0 999.9 90.3* 70.3* 99.99 999.9 010000 724050 13743 19390714 81.4 24 69.4 24 1006.1 24 9999.9 0 7.8 24 9.5 24 16.9 999.9 90.3* 72.3* 99.99 999.9 010010 724050 13743 19390715 74.5 24 53.8 24 1011.6 24 9999.9 0 11.7 24 12.2 24 16.9 999.9 82.4* 65.3* 0.00I 999.9 000000 724050 13743 19390716 71.1 24 50.7 24 1016.1 24 9999.9 0 12.0 24 10.1 24 15.9 999.9 80.2* 60.3* 0.00I 999.9 000000 724050 13743 19390717 71.7 24 57.4 24 1017.3 24 9999.9 0 8.4 24 2.4 24 8.9 999.9 84.4* 58.3* 0.00I 999.9 000000 724050 13743 19390718 69.8 24 63.2 24 1015.8 24 9999.9 0 6.4 24 3.1 24 8.9 999.9 76.3* 64.4* 99.99 999.9 110000 724050 13743 19390719 71.3 24 64.1 24 1015.8 24 9999.9 0 5.8 24 3.3 24 7.0 999.9 83.3* 64.4* 99.99 999.9 110000 724050 13743 19390720 70.5 24 64.3 24 1018.6 24 9999.9 0 7.3 24 2.6 24 8.9 999.9 75.4* 66.4* 99.99 999.9 110000 724050 13743 19390721 68.4 24 61.5 24 1021.8 24 9999.9 0 6.0 24 3.6 24 13.0 999.9 75.4* 62.4* 99.99 999.9 110000 724050 13743 19390722 66.9 24 62.3 24 1021.1 24 9999.9 0 7.2 24 7.2 24 11.1 999.9 72.3* 62.4* 99.99 999.9 110000 724050 13743 19390723 72.1 24 64.9 24 1018.9 24 9999.9 0 7.8 24 3.6 24 11.1 999.9 83.3* 64.4* 0.00I 999.9 000000 724050 13743 19390724 78.4 24 70.4 24 1016.7 24 9999.9 0 5.8 24 2.5 24 8.9 999.9 91.2* 69.3* 99.99 999.9 110010 724050 13743 19390725 79.3 24 70.7 24 1017.9 24 9999.9 0 9.5 24 4.0 24 8.9 999.9 89.2* 70.3* 99.99 999.9 010010 724050 13743 19390726 81.7 24 71.7 24 1017.0 24 9999.9 0 8.3 24 2.4 24 7.0 999.9 93.4* 71.2* 0.00I 999.9 000000 724050 13743 19390727 78.5 24 71.7 24 1014.8 24 9999.9 0 7.7 24 2.8 24 9.9 999.9 90.3* 72.3* 99.99 999.9 110010 724050 13743 19390728 78.5 24 73.2 23 1012.5 23 9999.9 0 7.8 24 2.4 24 9.9 999.9 90.3* 72.3* 99.99 999.9 110000 724050 13743 19390729 77.7 24 73.1 24 1012.1 24 9999.9 0 9.1 24 2.8 24 7.0 999.9 86.4* 74.3* 99.99 999.9 010000 724050 13743 19390730 78.8 24 71.8 24 1011.0 24 9999.9 0 9.9 24 2.8 24 6.0 999.9 88.3* 72.3* 99.99 999.9 010000 724050 13743 19390731 77.6 24 67.3 24 1013.3 24 9999.9 0 8.7 24 5.1 24 14.0 999.9 87.3* 68.4* 0.00I 999.9 000010 724050 13743 19390801 80.5 24 67.2 24 1016.2 24 9999.9 0 8.7 24 6.6 24 14.0 999.9 90.3* 71.2* 0.00I 999.9 000000 724050 13743 19390802 83.1 24 69.6 24 1015.7 24 9999.9 0 7.1 24 3.9 24 8.0 999.9 92.3* 73.4* 0.00I 999.9 000000 724050 13743 19390803 81.7 24 70.0 24 1012.6 24 9999.9 0 7.4 24 6.7 24 13.0 999.9 93.4* 71.2* 0.00I 999.9 000010 724050 13743 19390804 76.3 24 68.3 24 1009.2 24 9999.9 0 8.0 24 3.7 24 9.9 999.9 88.3* 68.4* 99.99 999.9 010010 724050 13743 19390805 78.2 24 61.7 24 1013.1 24 9999.9 0 11.4 24 3.6 24 9.9 999.9 87.3* 68.4* 0.00I 999.9 000000 724050 13743 19390806 75.4 24 63.7 24 1016.2 24 9999.9 0 7.4 24 2.3 24 8.9 999.9 88.3* 65.3* 0.00I 999.9 000000 724050 13743 19390807 77.8 24 64.0 24 1017.0 24 9999.9 0 7.1 24 5.0 24 13.0 999.9 88.3* 65.3* 0.00I 999.9 000000 724050 13743 19390808 80.7 24 69.7 24 1015.8 24 9999.9 0 7.7 24 8.5 24 13.0 999.9 91.2* 72.3* 0.00I 999.9 000000 724050 13743 19390809 84.5 24 71.2 24 1013.2 24 9999.9 0 9.9 24 7.7 24 14.0 999.9 96.3* 76.3* 0.00I 999.9 000000 724050 13743 19390810 81.1 24 65.5 24 1016.2 24 9999.9 0 9.9 24 8.3 24 15.9 999.9 89.2* 74.3* 99.99 999.9 010010 724050 13743 19390811 79.1 24 63.1 24 1021.6 24 9999.9 0 8.2 24 4.2 24 8.9 999.9 91.2* 67.3* 0.00I 999.9 000000 724050 13743 19390812 80.2 24 67.2 24 1023.4 24 9999.9 0 7.2 24 4.6 24 12.0 999.9 91.2* 68.4* 0.00I 999.9 000000 724050 13743 19390813 82.2 24 70.3 24 1018.9 24 9999.9 0 10.4 24 9.5 24 19.0 999.9 91.2* 73.4* 0.00I 999.9 000000 724050 13743 19390814 81.0 24 72.7 24 1015.5 24 9999.9 0 9.5 24 7.6 24 13.0 999.9 87.3* 75.4* 99.99 999.9 010000 724050 13743 19390815 80.2 24 71.2 24 1016.1 24 9999.9 0 8.2 24 6.1 24 11.1 999.9 93.4* 73.4* 0.00I 999.9 100000 724050 13743 19390816 80.3 24 72.0 24 1014.7 24 9999.9 0 7.8 24 4.6 24 11.1 999.9 94.3* 70.3* 0.00I 999.9 100010 724050 13743 19390817 81.4 24 70.5 24 1012.7 24 9999.9 0 8.2 24 6.4 24 15.9 999.9 95.4* 71.2* 0.00I 999.9 000000 724050 13743 19390818 80.1 24 72.6 24 1012.1 24 9999.9 0 8.9 24 4.9 24 9.9 999.9 85.3* 74.3* 99.99 999.9 010000 724050 13743 19390819 75.9 24 72.6 24 1008.6 24 9999.9 0 6.3 24 8.7 24 16.9 999.9 81.3* 71.2* 99.99 999.9 110000 724050 13743 19390820 78.3 24 69.3 24 1011.7 24 9999.9 0 8.7 24 4.5 24 9.9 999.9 92.3* 68.4* 0.00I 999.9 000010 724050 13743 19390821 80.8 24 69.4 24 1012.9 24 9999.9 0 8.9 24 6.1 24 14.0 999.9 90.3* 72.3* 99.99 999.9 010000 724050 13743 19390822 78.9 24 63.5 24 1015.7 24 9999.9 0 11.8 24 5.9 24 13.0 999.9 86.4* 73.4* 0.00I 999.9 000000 724050 13743 19390823 76.1 24 65.7 24 1018.2 24 9999.9 0 8.4 24 4.1 24 9.9 999.9 88.3* 65.3* 0.00I 999.9 000000 724050 13743 19390824 80.5 24 71.7 24 1017.3 24 9999.9 0 6.8 24 3.2 24 8.9 999.9 91.2* 71.2* 0.00I 999.9 100000 724050 13743 19390825 74.5 24 69.6 24 1018.0 24 9999.9 0 6.8 24 3.3 24 9.9 999.9 80.2* 70.3* 99.99 999.9 110010 724050 13743 19390826 75.4 24 67.5 24 1018.8 24 9999.9 0 6.8 24 4.7 24 12.0 999.9 81.3* 71.2* 0.00I 999.9 000000 724050 13743 19390827 73.3 24 64.7 24 1018.7 24 9999.9 0 7.3 24 5.5 24 14.0 999.9 80.2* 68.4* 0.00I 999.9 000000 724050 13743 19390828 72.3 24 61.2 24 1016.0 24 9999.9 0 8.1 24 7.6 24 15.9 999.9 77.4* 68.4* 99.99 999.9 010000 724050 13743 19390829 69.9 24 59.7 24 1012.9 24 9999.9 0 8.5 24 9.3 24 15.9 999.9 77.4* 62.4* 99.99 999.9 010000 724050 13743 19390830 71.1 24 56.8 24 1011.5 24 9999.9 0 10.2 24 8.0 24 15.0 999.9 82.4* 62.4* 99.99 999.9 010000 724050 13743 19390831 74.9 24 61.1 24 1014.5 24 9999.9 0 11.1 24 6.4 24 14.0 999.9 86.4* 67.3* 0.00I 999.9 000000 724050 13743 19390901 73.7 24 65.8 24 1017.3 24 9999.9 0 8.1 24 3.6 24 8.9 999.9 88.3* 63.3* 0.00I 999.9 000000 724050 13743 19390902 73.9 24 67.0 24 1017.7 24 9999.9 0 6.8 24 4.4 24 9.9 999.9 85.3* 67.3* 0.00I 999.9 100000 724050 13743 19390903 75.6 24 68.1 24 1017.3 24 9999.9 0 7.4 24 3.5 24 9.9 999.9 88.3* 65.3* 0.00I 999.9 100000 724050 13743 19390904 76.6 24 69.0 24 1015.2 24 9999.9 0 7.9 24 4.6 24 19.0 999.9 88.3* 68.4* 99.99 999.9 110010 724050 13743 19390905 72.3 24 61.7 24 1010.8 23 9999.9 0 10.7 24 9.8 24 21.0 999.9 81.3* 65.3* 99.99 999.9 010010 724050 13743 19390906 68.0 24 54.1 24 1018.5 24 9999.9 0 11.3 24 5.4 24 12.0 999.9 77.4* 56.3* 0.00I 999.9 000000 724050 13743 19390907 71.5 24 62.3 24 1015.2 24 9999.9 0 8.9 24 4.1 24 8.9 999.9 86.4* 61.3* 99.99 999.9 010000 724050 13743 19390908 85.0 24 69.1 24 1009.4 24 9999.9 0 9.7 24 9.7 24 19.0 999.9 100.2* 73.4* 0.00I 999.9 000000 724050 13743 19390909 81.5 24 66.5 24 1011.9 24 9999.9 0 8.2 24 3.9 24 8.9 999.9 89.2* 73.4* 0.00I 999.9 100000 724050 13743 19390910 76.6 24 68.5 24 1009.7 24 9999.9 0 5.8 24 7.0 24 16.9 999.9 85.3* 70.3* 99.99 999.9 110010 724050 13743 19390911 70.4 24 52.5 24 1016.0 23 9999.9 0 13.0 24 9.4 24 15.9 999.9 77.4* 63.3* 0.00I 999.9 000000 724050 13743 19390912 64.3 24 54.9 24 1023.8 24 9999.9 0 8.6 24 2.6 24 8.9 999.9 75.4* 54.3* 99.99 999.9 010000 724050 13743 19390913 63.9 24 60.1 24 1025.6 24 9999.9 0 6.9 24 6.8 24 15.9 999.9 66.4* 62.4* 99.99 999.9 110000 724050 13743 19390914 65.8 24 58.4 23 1026.7 24 9999.9 0 6.1 24 2.8 24 9.9 999.9 81.3* 56.3* 0.00I 999.9 100000 724050 13743 19390915 69.0 24 59.9 24 1024.9 24 9999.9 0 8.3 24 3.6 24 9.9 999.9 84.4* 55.4* 0.00I 999.9 000000 724050 13743 19390916 74.6 24 66.8 24 1021.7 24 9999.9 0 9.1 24 5.7 24 12.0 999.9 88.3* 63.3* 0.00I 999.9 100000 724050 13743 19390917 76.3 24 66.5 24 1014.4 24 9999.9 0 7.5 24 8.7 24 14.0 999.9 84.4* 68.4* 0.00I 999.9 000000 724050 13743 19390918 62.2 24 45.2 24 1027.8 24 9999.9 0 12.0 24 8.4 24 15.9 999.9 73.4* 52.3* 0.00I 999.9 000000 724050 13743 19390919 61.4 24 52.3 24 1031.3 24 9999.9 0 8.8 24 4.2 24 8.0 999.9 76.3* 52.3* 0.00I 999.9 100000 724050 13743 19390920 68.1 24 59.8 24 1023.4 24 9999.9 0 9.0 24 3.3 24 8.0 999.9 76.3* 61.3* 0.00I 999.9 000000 724050 13743 19390921 67.7 24 59.8 24 1016.8 24 9999.9 0 7.2 24 4.1 24 9.9 999.9 74.3* 61.3* 0.00I 999.9 000000 724050 13743 19390922 64.7 24 53.1 24 1018.1 24 9999.9 0 5.7 24 3.0 24 8.9 999.9 77.4* 56.3* 0.00I 999.9 100000 724050 13743 19390923 66.2 24 55.1 24 1020.1 24 9999.9 0 8.0 24 5.6 24 16.9 999.9 82.4* 54.3* 0.00I 999.9 000000 724050 13743 19390924 70.2 24 58.7 24 1018.6 24 9999.9 0 7.9 24 6.2 24 12.0 999.9 87.3* 58.3* 0.00I 999.9 000000 724050 13743 19390925 70.7 24 60.6 24 1016.7 24 9999.9 0 7.2 24 7.4 24 13.0 999.9 85.3* 60.3* 0.00I 999.9 000000 724050 13743 19390926 74.6 24 62.1 24 1012.7 24 9999.9 0 7.5 24 8.1 24 13.0 999.9 90.3* 65.3* 0.00I 999.9 000000 724050 13743 19390927 65.0 24 61.3 24 1013.0 24 9999.9 0 4.0 24 7.1 24 13.0 999.9 72.3* 60.3* 99.99 999.9 110000 724050 13743 19390928 64.8 24 60.6 24 1016.3 24 9999.9 0 2.7 24 4.1 24 9.9 999.9 74.3* 59.4* 99.99 999.9 110000 724050 13743 19390929 70.4 24 66.3 24 1017.9 24 9999.9 0 3.2 24 4.3 24 12.0 999.9 79.3* 65.3* 99.99 999.9 110000 724050 13743 19390930 75.7 24 70.0 23 1012.8 24 9999.9 0 7.0 24 8.0 24 13.0 999.9 86.4* 68.4* 99.99 999.9 110010 724050 13743 19391001 62.0 24 60.3 24 1014.5 24 9999.9 0 6.3 24 7.8 24 15.9 999.9 67.3* 55.4* 99.99 999.9 110010 724050 13743 19391002 50.4 24 48.4 24 1019.5 24 9999.9 0 5.9 24 11.7 24 15.9 999.9 54.3* 46.4* 99.99 999.9 110000 724050 13743 19391003 51.7 24 47.4 24 1022.6 24 9999.9 0 6.6 24 9.2 24 13.0 999.9 59.4* 48.4* 99.99 999.9 110000 724050 13743 19391004 55.0 24 49.8 24 1022.3 24 9999.9 0 9.5 24 5.7 24 9.9 999.9 57.4* 52.3* 0.00I 999.9 000000 724050 13743 19391005 56.1 24 53.0 24 1021.0 24 9999.9 0 3.4 24 3.2 24 8.9 999.9 72.3* 47.3* 0.00I 999.9 100000 724050 13743 19391006 66.3 24 59.8 24 1016.2 24 9999.9 0 4.9 24 3.8 24 9.9 999.9 82.4* 56.3* 0.00I 999.9 100000 724050 13743 19391007 68.5 24 58.9 24 1016.5 24 9999.9 0 5.2 24 1.6 24 7.0 999.9 87.3* 53.4* 0.00I 999.9 000000 724050 13743 19391008 67.2 24 60.4 24 1019.0 24 9999.9 0 4.8 24 1.2 24 8.9 999.9 85.3* 56.3* 0.00I 999.9 000000 724050 13743 19391009 74.4 24 66.0 24 1018.7 24 9999.9 0 6.6 24 3.5 24 8.9 999.9 93.4* 63.3* 0.00I 999.9 000000 724050 13743 19391010 75.2 24 65.6 24 1015.7 24 9999.9 0 5.8 24 2.9 24 9.9 999.9 91.2* 62.4* 0.00I 999.9 000000 724050 13743 19391011 70.7 24 58.6 24 1012.7 24 9999.9 0 9.1 24 8.8 24 15.9 999.9 77.4* 64.4* 99.99 999.9 010000 724050 13743 19391012 60.6 24 49.9 24 1016.6 24 9999.9 0 7.4 24 3.4 24 9.9 999.9 68.4* 55.4* 99.99 999.9 010000 724050 13743 19391013 58.0 24 42.9 24 1021.2 24 9999.9 0 8.5 24 4.0 24 9.9 999.9 69.3* 47.3* 0.00I 999.9 000000 724050 13743 19391014 55.9 24 39.9 24 1020.7 24 9999.9 0 9.6 24 11.9 24 22.9 999.9 58.3* 52.3* 0.00I 999.9 000000 724050 13743 19391015 47.8 24 29.7 24 1029.9 24 9999.9 0 13.0 24 8.5 24 16.9 999.9 59.4* 38.3* 0.00I 999.9 000000 724050 13743 19391016 48.0 24 37.0 24 1027.1 23 9999.9 0 7.0 24 2.8 24 9.9 999.9 65.3* 38.3* 0.00I 999.9 100000 724050 13743 19391017 51.5 24 41.0 24 1020.0 24 9999.9 0 8.0 24 5.2 24 20.0 999.9 63.3* 42.4* 0.00I 999.9 000000 724050 13743 19391018 47.3 24 30.4 24 1030.0 24 9999.9 0 11.1 24 5.5 24 15.0 999.9 57.4* 34.3* 0.00I 999.9 000000 724050 13743 19391019 53.2 24 43.2 24 1026.1 24 9999.9 0 9.9 24 7.1 24 14.0 999.9 72.3* 41.4* 0.00I 999.9 000000 724050 13743 19391020 65.1 24 54.4 24 1021.0 24 9999.9 0 6.0 24 6.3 24 14.0 999.9 79.3* 52.3* 0.00I 999.9 000000 724050 13743 19391021 63.8 24 53.6 24 1015.1 24 9999.9 0 6.6 24 5.8 24 16.9 999.9 81.3* 49.3* 0.00I 999.9 000010 724050 13743 19391022 64.6 24 51.3 24 1004.2 24 9999.9 0 8.1 24 6.2 24 18.1 999.9 73.4* 53.4* 99.99 999.9 010010 724050 13743 19391023 55.6 24 36.0 23 1010.5 24 9999.9 0 10.8 24 11.9 24 19.0 999.9 61.3* 49.3* 0.00I 999.9 000000 724050 13743 19391024 52.3 24 40.1 24 1020.7 24 9999.9 0 7.5 24 3.4 24 9.9 999.9 58.3* 49.3* 99.99 999.9 110000 724050 13743 19391025 51.6 24 46.9 24 1024.1 24 9999.9 0 5.8 24 2.5 24 5.1 999.9 58.3* 45.3* 99.99 999.9 110000 724050 13743 19391026 64.0 24 57.1 24 1018.5 24 9999.9 0 4.5 24 2.9 24 8.9 999.9 79.3* 56.3* 0.00I 999.9 100000 724050 13743 19391027 66.1 24 61.9 24 1013.4 24 9999.9 0 4.7 24 5.7 24 16.9 999.9 78.3* 57.4* 99.99 999.9 010000 724050 13743 19391028 65.5 24 53.0 24 1006.8 24 9999.9 0 10.1 24 13.9 24 28.0 999.9 76.3* 50.4* 99.99 999.9 010000 724050 13743 19391029 45.4 24 29.1 24 1023.7 24 9999.9 0 10.6 24 7.8 24 15.9 999.9 54.3* 36.3* 0.00I 999.9 000000 724050 13743 19391030 43.7 24 40.5 24 1019.3 24 9999.9 0 4.5 24 5.3 24 13.0 999.9 50.4* 35.4* 99.99 999.9 110000 724050 13743 19391031 49.7 24 48.1 24 1007.7 24 9999.9 0 3.6 24 6.6 24 15.9 999.9 51.3* 46.4* 99.99 999.9 110000 724050 13743 19391101 48.3 24 36.7 24 1013.8 24 9999.9 0 9.5 24 8.1 24 15.9 999.9 59.4* 37.4* 99.99 999.9 010000 724050 13743 19391102 46.7 24 34.5 24 1025.2 24 9999.9 0 6.6 24 6.2 24 18.1 999.9 56.3* 37.4* 0.00I 999.9 000000 724050 13743 19391103 44.1 24 30.6 24 1032.9 24 9999.9 0 9.7 24 8.1 24 14.0 999.9 51.3* 37.4* 0.00I 999.9 100000 724050 13743 19391104 39.5 24 28.8 24 1033.4 24 9999.9 0 6.7 24 5.8 24 14.0 999.9 48.4* 32.4* 99.99 999.9 010000 724050 13743 19391105 41.2 24 38.5 24 1020.3 24 9999.9 0 4.4 24 11.0 24 19.0 999.9 43.3* 38.3* 99.99 999.9 110000 724050 13743 19391106 43.8 24 33.0 24 1017.2 24 9999.9 0 8.0 24 10.3 24 16.9 999.9 51.3* 37.4* 0.00I 999.9 000000 724050 13743 19391107 46.6 24 32.2 24 1020.3 24 9999.9 0 6.3 24 6.8 24 14.0 999.9 59.4* 36.3* 0.00I 999.9 000000 724050 13743 19391108 53.3 24 35.5 24 1016.5 24 9999.9 0 9.7 24 10.1 24 19.0 999.9 60.3* 48.4* 99.99 999.9 010000 724050 13743 19391109 45.4 24 28.2 24 1026.7 24 9999.9 0 12.5 24 9.7 24 22.0 999.9 53.4* 38.3* 0.00I 999.9 000000 724050 13743 19391110 47.1 24 30.2 24 1026.2 24 9999.9 0 8.0 24 7.3 24 22.0 999.9 65.3* 33.4* 0.00I 999.9 000000 724050 13743 19391111 54.6 24 32.8 24 1020.7 24 9999.9 0 11.4 24 13.1 24 22.0 999.9 60.3* 47.3* 0.00I 999.9 000000 724050 13743 19391112 47.9 24 26.9 24 1025.6 24 9999.9 0 7.5 24 5.9 24 12.0 999.9 55.4* 40.3* 0.00I 999.9 000000 724050 13743 19391113 45.5 24 30.8 24 1025.7 24 9999.9 0 9.5 24 8.4 24 16.9 999.9 52.3* 40.3* 0.00I 999.9 000000 724050 13743 19391114 43.0 24 32.4 24 1027.8 24 9999.9 0 5.4 24 5.5 24 12.0 999.9 56.3* 34.3* 0.00I 999.9 000000 724050 13743 19391115 42.8 23 35.0 23 1031.8 23 9999.9 0 3.5 23 1.7 23 8.9 999.9 62.4* 30.4* 0.00I 999.9 100000 724050 13743 19391116 49.6 24 31.2 24 1026.2 24 9999.9 0 4.1 24 5.3 24 12.0 999.9 71.2* 33.4* 0.00I 999.9 100000 724050 13743 19391117 57.9 24 34.2 24 1020.6 24 9999.9 0 6.3 24 6.4 24 13.0 999.9 71.2* 44.4* 0.00I 999.9 000000 724050 13743 19391118 53.8 24 39.4 24 1019.9 24 9999.9 0 5.4 24 4.0 24 11.1 999.9 71.2* 40.3* 0.00I 999.9 000000 724050 13743 19391119 57.0 24 50.5 24 1018.4 24 9999.9 0 4.2 24 3.1 24 13.0 999.9 63.3* 53.4* 99.99 999.9 110000 724050 13743 19391120 42.1 24 33.4 22 1021.1 22 9999.9 0 6.2 24 11.9 24 16.9 999.9 51.3* 35.4* 99.99 999.9 111000 724050 13743 19391121 38.1 24 28.9 24 1021.5 24 9999.9 0 7.0 24 8.3 24 12.0 999.9 41.4* 34.3* 99.99 999.9 011000 724050 13743 19391122 38.7 24 31.8 24 1019.0 24 9999.9 0 5.2 24 5.1 24 8.9 999.9 41.4* 36.3* 99.99 999.9 011000 724050 13743 19391123 41.4 24 35.6 24 1019.5 24 9999.9 0 5.8 24 4.1 24 9.9 999.9 48.4* 38.3* 99.99 999.9 110000 724050 13743 19391124 39.0 24 30.0 24 1022.6 24 9999.9 0 6.8 24 5.0 24 9.9 999.9 47.3* 33.4* 0.00I 999.9 000000 724050 13743 19391125 36.5 24 27.5 24 1027.5 24 9999.9 0 6.4 24 6.2 24 9.9 999.9 42.4* 31.3* 99.99 999.9 001000 724050 13743 19391126 38.0 24 20.7 24 1030.5 24 9999.9 0 8.0 24 6.2 24 8.9 999.9 46.4* 34.3* 99.99 999.9 001000 724050 13743 19391127 40.2 24 22.9 24 1024.9 24 9999.9 0 8.2 24 7.4 24 16.9 999.9 54.3* 29.3* 0.00I 999.9 000000 724050 13743 19391128 46.0 24 30.4 24 1023.9 24 9999.9 0 6.4 24 9.6 24 20.0 999.9 58.3* 31.3* 0.00I 999.9 000000 724050 13743 19391129 48.2 24 27.2 24 1024.4 24 9999.9 0 8.9 24 5.3 24 13.0 999.9 61.3* 41.4* 0.00I 999.9 000000 724050 13743 19391130 45.2 24 34.4 24 1022.1 24 9999.9 0 4.1 24 2.9 24 9.9 999.9 52.3* 38.3* 99.99 999.9 010000 724050 13743 19391201 38.4 24 34.5 24 1021.2 24 9999.9 0 3.5 24 1.2 24 7.0 999.9 47.3* 30.4* 0.00I 999.9 000000 724050 13743 19391202 48.2 24 46.8 24 1008.0 24 9999.9 0 2.1 24 2.7 24 8.9 999.9 49.3* 45.3* 99.99 999.9 110000 724050 13743 19391203 44.7 24 37.9 23 1002.0 24 9999.9 0 9.9 24 10.2 24 22.0 999.9 49.3* 38.3* 0.00I 999.9 000000 724050 13743 19391204 41.2 24 30.8 23 1009.1 24 9999.9 0 8.6 24 8.2 24 21.0 999.9 47.3* 36.3* 0.00I 999.9 000000 724050 13743 19391205 42.3 24 27.3 24 1012.4 24 9999.9 0 9.2 24 7.1 24 11.1 999.9 47.3* 39.4* 0.00I 999.9 000000 724050 13743 19391206 43.1 24 36.1 24 1013.4 24 9999.9 0 5.2 24 5.3 24 13.0 999.9 49.3* 39.4* 99.99 999.9 110000 724050 13743 19391207 41.2 24 32.7 24 1014.2 24 9999.9 0 4.8 24 6.3 24 19.0 999.9 59.4* 31.3* 0.00I 999.9 000000 724050 13743 19391208 47.9 24 26.8 24 1012.6 24 9999.9 0 12.1 24 20.3 24 29.9 999.9 60.3* 41.4* 0.00I 999.9 000000 724050 13743 19391209 42.2 24 24.9 24 1015.5 24 9999.9 0 9.9 24 6.1 24 13.0 999.9 59.4* 28.4* 0.00I 999.9 000000 724050 13743 19391210 54.1 24 33.1 24 1004.2 24 9999.9 0 7.0 24 6.9 24 11.1 999.9 67.3* 46.4* 0.00I 999.9 000000 724050 13743 19391211 48.0 24 37.8 24 1007.5 24 9999.9 0 8.8 24 14.7 24 26.0 999.9 56.3* 38.3* 99.99 999.9 010000 724050 13743 19391212 35.4 24 19.2 24 1022.3 24 9999.9 0 9.8 24 7.4 24 18.1 999.9 44.4* 28.4* 0.00I 999.9 000000 724050 13743 19391213 40.3 24 28.3 24 1011.6 24 9999.9 0 5.3 24 5.1 24 9.9 999.9 45.3* 34.3* 99.99 999.9 010000 724050 13743 19391214 38.7 24 29.8 24 1019.4 24 9999.9 0 8.9 24 11.5 24 19.0 999.9 41.4* 35.4* 99.99 999.9 010000 724050 13743 19391215 34.9 24 21.9 24 1030.5 24 9999.9 0 7.2 24 4.7 24 8.9 999.9 40.3* 30.4* 0.00I 999.9 000000 724050 13743 19391216 39.7 24 27.6 24 1021.6 24 9999.9 0 6.3 24 8.1 24 16.9 999.9 46.4* 35.4* 0.00I 999.9 000000 724050 13743 19391217 49.7 24 38.1 24 1010.4 24 9999.9 0 6.3 24 6.7 24 13.0 999.9 60.3* 42.4* 0.00I 999.9 000000 724050 13743 19391218 46.5 24 34.3 24 1016.5 24 9999.9 0 6.5 24 2.2 24 8.9 999.9 62.4* 34.3* 0.00I 999.9 000000 724050 13743 19391219 45.1 24 37.3 24 1016.5 24 9999.9 0 3.3 24 1.4 24 4.1 999.9 61.3* 33.4* 0.00I 999.9 000000 724050 13743 19391220 50.3 24 45.7 24 1005.5 24 9999.9 0 5.0 24 6.4 24 22.0 999.9 58.3* 44.4* 99.99 999.9 110000 724050 13743 19391221 38.0 24 25.1 24 1007.6 24 9999.9 0 9.7 24 7.3 24 16.9 999.9 43.3* 34.3* 0.00I 999.9 000000 724050 13743 19391222 36.1 24 16.2 24 1014.9 24 9999.9 0 11.0 24 17.6 24 26.0 999.9 41.4* 33.4* 0.00I 999.9 000000 724050 13743 19391223 36.0 24 20.4 24 1021.4 24 9999.9 0 10.1 24 10.9 24 20.0 999.9 41.4* 31.3* 0.00I 999.9 000000 724050 13743 19391224 30.5 24 17.1 24 1017.7 24 9999.9 0 9.0 24 10.0 24 16.9 999.9 34.3* 26.4* 0.00I 999.9 000000 724050 13743 19391225 32.3 24 14.7 24 1015.4 24 9999.9 0 10.3 24 12.1 24 22.0 999.9 38.3* 28.4* 0.00I 999.9 000000 724050 13743 19391226 36.9 24 25.3 24 1017.0 24 9999.9 0 8.7 24 9.9 24 16.9 999.9 41.4* 34.3* 0.00I 999.9 000000 724050 13743 19391227 28.0 24 21.8 24 1014.4 24 9999.9 0 5.7 24 7.9 24 16.9 999.9 35.4* 22.5* 99.99 999.9 101000 724050 13743 19391228 25.0 24 17.4 24 1021.2 24 9999.9 0 5.9 24 1.6 24 7.0 999.9 30.4* 21.4* 99.99 999.9 001000 724050 13743 19391229 31.2 24 27.2 24 1021.2 24 9999.9 0 3.3 24 1.4 24 4.1 999.9 34.3* 29.3* 0.00I 999.9 100000 724050 13743 19391230 32.0 24 26.4 24 1011.6 24 9999.9 0 5.9 24 4.2 24 8.9 999.9 36.3* 26.4* 99.99 999.9 101000 724050 13743 19391231 29.0 24 20.7 24 1004.9 24 9999.9 0 8.0 24 8.1 24 15.9 999.9 34.3* 22.5* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1965/0000755000175000017500000000000014302004506015104 5ustar nileshnileshfluids-1.0.22/tests/gsod/1965/724050-13743.op0000644000175000017500000014327214302004506016675 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19650101 38.1 24 24.5 24 1032.0 8 1030.9 8 14.3 24 7.5 24 12.0 999.9 43.3* 35.4* 99.99 999.9 001000 724050 13743 19650102 37.9 24 34.6 24 1019.6 8 1018.5 8 6.8 24 4.7 24 9.9 999.9 45.3* 34.3* 99.99 999.9 111000 724050 13743 19650103 40.3 24 23.4 24 1012.5 8 1011.4 8 14.5 24 17.5 24 25.1 999.9 47.3* 35.4* 0.00I 999.9 000000 724050 13743 19650104 37.0 24 16.1 24 1026.0 8 1024.8 8 14.7 24 12.1 24 18.1 999.9 44.4* 32.4* 0.00I 999.9 000000 724050 13743 19650105 39.2 24 21.4 24 1024.4 8 1023.3 8 10.9 24 0.6 24 4.1 999.9 52.3* 29.3* 0.00I 999.9 000000 724050 13743 19650106 44.5 24 25.5 24 1021.5 8 1020.4 8 12.2 24 6.6 24 13.0 999.9 49.3* 40.3* 0.00I 999.9 000000 724050 13743 19650107 38.8 24 25.8 24 1026.7 8 1025.6 8 6.9 24 2.2 24 8.0 999.9 49.3* 30.4* 0.00I 999.9 000000 724050 13743 19650108 47.8 24 37.5 24 1019.9 8 1018.8 8 7.3 24 7.4 24 9.9 999.9 60.3* 40.3* 99.99 999.9 010000 724050 13743 19650109 56.5 24 46.0 24 1015.4 8 1014.3 8 10.6 24 10.4 24 14.0 999.9 61.3* 43.3* 99.99 999.9 010000 724050 13743 19650110 36.2 24 33.1 24 1022.8 8 1021.7 8 5.4 24 8.7 24 14.0 999.9 44.4* 30.4* 99.99 999.9 111000 724050 13743 19650111 33.5 24 26.3 24 1022.7 8 1021.6 8 9.4 24 7.2 24 14.0 999.9 40.3* 29.3* 99.99 999.9 001000 724050 13743 19650112 34.9 24 27.9 24 1024.1 8 1023.0 8 7.5 24 3.7 24 7.0 999.9 41.4* 30.4* 0.00I 999.9 000000 724050 13743 19650113 36.0 24 31.8 24 1020.0 8 1018.9 8 4.2 24 1.3 24 5.1 999.9 43.3* 30.4* 0.00I 999.9 000000 724050 13743 19650114 32.5 24 16.9 24 1020.1 8 1018.9 8 13.4 24 14.1 24 23.9 999.9 42.4* 24.4* 0.00I 999.9 000000 724050 13743 19650115 19.9 24 6.6 24 1029.4 8 1028.3 8 11.1 24 6.2 24 9.9 999.9 23.4* 15.4* 0.00I 999.9 000000 724050 13743 19650116 22.1 24 16.3 23 1022.3 8 1021.2 8 3.7 24 10.3 24 15.9 999.9 25.3* 19.4* 99.99 999.9 101000 724050 13743 19650117 15.7 24 6.2 24 1021.1 8 1020.0 8 10.6 24 12.7 24 18.1 999.9 20.3* 12.4* 99.99 999.9 101000 724050 13743 19650118 22.8 24 8.7 24 1013.9 8 1012.8 8 11.0 24 4.7 24 18.1 999.9 33.4* 14.4* 99.99 999.9 001000 724050 13743 19650119 24.0 24 9.2 24 1022.0 8 1020.8 8 14.9 24 10.1 24 20.0 999.9 30.4* 18.3* 0.00I 999.9 000000 724050 13743 19650120 33.4 24 17.3 24 1017.3 8 1016.2 8 12.4 24 7.0 24 9.9 999.9 46.4* 26.4* 0.00I 999.9 000000 724050 13743 19650121 36.8 24 21.7 24 1024.0 8 1022.8 8 14.2 24 6.8 24 16.9 999.9 42.4* 31.3* 0.00I 999.9 000000 724050 13743 19650122 41.6 24 27.0 24 1022.7 8 1021.6 8 8.9 24 4.5 24 6.0 999.9 61.3* 31.3* 0.00I 999.9 000000 724050 13743 19650123 46.6 24 37.2 24 1019.0 8 1018.0 8 9.0 24 6.0 24 11.1 999.9 56.3* 37.4* 99.99 999.9 110000 724050 13743 19650124 34.6 24 33.2 24 1013.5 8 1012.4 8 2.8 24 5.6 24 9.9 999.9 35.4* 33.4* 99.99 999.9 110000 724050 13743 19650125 37.8 24 30.6 24 1009.6 8 1008.5 8 7.9 24 5.2 24 18.1 999.9 45.3* 31.3* 99.99 999.9 110000 724050 13743 19650126 41.5 24 34.4 24 1010.2 8 1009.2 8 8.6 24 3.9 24 12.0 999.9 59.4* 33.4* 0.00I 999.9 100000 724050 13743 19650127 42.2 24 26.1 24 1007.4 8 1006.2 8 13.6 24 13.7 24 25.1 999.9 48.4* 32.4* 0.00I 999.9 000000 724050 13743 19650128 32.9 24 12.9 24 1013.9 8 1012.8 8 14.9 24 9.1 24 23.9 999.9 48.4* 24.4* 0.00I 999.9 000000 724050 13743 19650129 32.0 24 16.9 24 1009.4 8 1008.3 8 13.9 24 6.0 24 14.0 999.9 44.4* 27.3* 0.00I 999.9 000000 724050 13743 19650130 19.1 24 8.7 24 1013.0 8 1011.8 8 7.1 24 5.5 24 15.9 999.9 28.4* 15.4* 99.99 999.9 101000 724050 13743 19650131 18.6 24 6.6 24 1010.8 8 1009.8 8 7.9 24 9.9 24 20.0 999.9 26.4* 13.5* 0.00I 999.9 000000 724050 13743 19650201 23.7 24 10.4 24 1014.6 8 1013.5 8 9.3 24 4.2 24 12.0 999.9 34.3* 16.3* 0.00I 999.9 000000 724050 13743 19650202 30.5 24 16.1 24 1012.5 8 1011.4 8 10.7 24 13.4 24 22.9 999.9 37.4* 22.5* 99.99 999.9 001000 724050 13743 19650203 22.8 24 3.8 24 1024.5 8 1023.3 8 14.9 24 10.0 24 19.0 999.9 29.3* 16.3* 0.00I 999.9 000000 724050 13743 19650204 23.9 24 2.1 24 1029.7 8 1028.5 8 14.0 24 7.7 24 15.9 999.9 32.4* 18.3* 0.00I 999.9 000000 724050 13743 19650205 24.1 24 4.6 24 1032.9 8 1031.8 8 11.5 24 4.7 24 16.9 999.9 36.3* 17.4* 0.00I 999.9 000000 724050 13743 19650206 43.2 24 21.4 24 1024.0 8 1022.8 8 11.9 24 4.3 24 8.9 999.9 62.4* 35.4* 0.00I 999.9 000000 724050 13743 19650207 50.4 24 39.4 24 1023.2 8 1022.1 8 7.7 24 4.5 24 15.0 999.9 58.3* 42.4* 99.99 999.9 110000 724050 13743 19650208 57.5 24 53.5 24 1017.6 8 1016.5 8 3.8 24 2.8 24 12.0 999.9 67.3* 49.3* 99.99 999.9 110000 724050 13743 19650209 51.5 24 42.0 24 1025.5 8 1024.4 8 9.8 24 7.0 24 12.0 999.9 64.4* 44.4* 99.99 999.9 010000 724050 13743 19650210 40.9 24 38.9 24 1025.2 8 1024.1 8 3.5 24 4.0 24 9.9 999.9 45.3* 39.4* 99.99 999.9 110000 724050 13743 19650211 48.1 24 46.3 24 1020.3 8 1019.2 8 1.4 24 0.7 24 2.9 999.9 52.3* 45.3* 99.99 999.9 110000 724050 13743 19650212 52.6 24 50.4 24 1013.0 8 1011.9 8 3.8 24 3.5 24 9.9 999.9 63.3* 46.4* 99.99 999.9 110000 724050 13743 19650213 46.3 24 29.3 24 1014.2 8 1013.0 8 13.5 24 12.5 24 19.0 999.9 62.4* 35.4* 0.00I 999.9 000000 724050 13743 19650214 32.9 24 17.1 24 1022.3 8 1021.2 8 11.5 24 6.4 24 9.9 999.9 38.3* 27.3* 99.99 999.9 101000 724050 13743 19650215 30.6 24 23.2 24 1026.2 8 1025.1 8 6.3 24 4.8 24 9.9 999.9 41.4* 20.3* 99.99 999.9 101000 724050 13743 19650216 36.1 24 25.5 24 1029.3 8 1028.2 8 7.6 24 3.9 24 9.9 999.9 47.3* 28.4* 0.00I 999.9 000000 724050 13743 19650217 43.6 24 30.4 24 1024.1 8 1023.0 8 5.8 24 2.9 24 8.9 999.9 51.3* 38.3* 0.00I 999.9 000000 724050 13743 19650218 44.2 24 29.7 24 1015.5 8 1014.4 8 8.0 24 7.2 24 16.9 999.9 54.3* 37.4* 0.00I 999.9 000000 724050 13743 19650219 37.6 24 21.9 24 1008.9 8 1007.8 8 14.0 24 17.9 24 32.1 999.9 50.4* 26.4* 99.99 999.9 011000 724050 13743 19650220 22.6 24 3.2 24 1021.8 8 1020.6 8 14.9 24 14.4 24 29.9 999.9 33.4* 16.3* 0.00I 999.9 000000 724050 13743 19650221 41.3 24 17.0 24 1012.3 8 1011.2 8 14.2 24 6.4 24 9.9 999.9 57.4* 32.4* 0.00I 999.9 000000 724050 13743 19650222 33.9 24 15.9 24 1007.5 8 1006.4 8 14.0 24 19.4 24 28.0 999.9 52.3* 23.4* 99.99 999.9 001000 724050 13743 19650223 28.7 24 8.9 24 1023.4 8 1022.3 8 14.9 24 9.3 24 15.9 999.9 38.3* 22.5* 0.00I 999.9 000000 724050 13743 19650224 33.0 24 19.4 24 1024.4 8 1023.3 8 10.8 24 4.4 24 9.9 999.9 45.3* 27.3* 0.00I 999.9 000000 724050 13743 19650225 46.1 24 38.7 24 994.1 8 993.1 8 7.6 24 13.6 24 25.1 999.9 61.3* 38.3* 99.99 999.9 111000 724050 13743 19650226 29.6 24 12.9 24 1002.5 8 1001.3 8 14.4 24 20.9 24 29.9 999.9 37.4* 26.4* 99.99 999.9 001000 724050 13743 19650227 30.3 24 9.4 24 1018.0 8 1016.4 8 14.9 24 9.5 24 20.0 999.9 45.3* 23.4* 0.00I 999.9 000000 724050 13743 19650228 45.8 24 28.1 24 1013.3 8 1012.2 8 8.0 24 0.9 24 8.9 999.9 70.3* 32.4* 0.00I 999.9 000000 724050 13743 19650301 46.5 24 27.4 24 1017.5 8 1016.4 8 8.3 24 2.8 24 7.0 999.9 56.3* 38.3* 0.00I 999.9 000000 724050 13743 19650302 42.6 24 23.8 24 1018.2 8 1017.1 8 7.6 24 2.0 24 7.0 999.9 50.4* 33.4* 0.00I 999.9 000000 724050 13743 19650303 44.9 24 32.5 24 1017.9 8 1016.8 8 6.4 24 0.0 24 999.9 999.9 51.3* 40.3* 99.99 999.9 010000 724050 13743 19650304 49.1 24 31.2 24 1017.5 8 1016.4 8 7.7 24 2.3 24 9.9 999.9 56.3* 42.4* 99.99 999.9 010000 724050 13743 19650305 42.7 24 39.7 24 999.1 8 998.0 8 4.3 24 11.0 24 22.0 999.9 48.4* 34.3* 99.99 999.9 111000 724050 13743 19650306 36.3 24 23.9 24 998.5 8 997.5 8 13.3 24 6.9 24 15.9 999.9 39.4* 34.3* 0.00I 999.9 000000 724050 13743 19650307 39.4 24 27.0 24 1005.6 8 1004.6 8 6.8 24 10.3 24 18.1 999.9 49.3* 33.4* 0.00I 999.9 000000 724050 13743 19650308 43.3 24 33.3 24 1009.6 8 1008.5 8 7.7 24 3.8 24 8.9 999.9 49.3* 38.3* 99.99 999.9 010000 724050 13743 19650309 46.2 24 33.0 24 1009.5 8 1008.3 8 7.9 24 3.1 24 15.9 999.9 51.3* 41.4* 99.99 999.9 010000 724050 13743 19650310 41.6 24 26.0 24 1008.9 8 1007.8 8 13.0 24 10.5 24 27.0 999.9 44.4* 37.4* 99.99 999.9 010000 724050 13743 19650311 36.0 24 16.6 24 1015.0 8 1013.9 8 14.9 24 16.1 24 20.0 999.9 42.4* 31.3* 0.00I 999.9 000000 724050 13743 19650312 36.3 24 17.9 24 1017.9 8 1016.8 8 13.4 24 7.8 24 15.0 999.9 43.3* 31.3* 0.00I 999.9 000000 724050 13743 19650313 37.2 24 14.0 24 1019.7 8 1018.6 8 14.9 24 4.8 24 11.1 999.9 47.3* 29.3* 0.00I 999.9 000000 724050 13743 19650314 41.7 24 20.4 24 1015.8 8 1014.7 8 11.6 24 1.5 24 8.9 999.9 51.3* 33.4* 0.00I 999.9 000000 724050 13743 19650315 43.0 24 25.1 24 1012.2 8 1011.1 8 13.3 24 11.4 24 26.0 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19650316 44.7 24 25.0 24 1017.9 8 1016.8 8 10.8 24 7.6 24 25.1 999.9 58.3* 34.3* 0.00I 999.9 000000 724050 13743 19650317 40.9 24 25.8 24 1021.7 8 1020.6 8 8.8 24 5.4 24 15.9 999.9 55.4* 32.4* 99.99 999.9 111000 724050 13743 19650318 38.1 24 34.7 24 1011.4 8 1010.7 8 3.3 24 1.1 24 9.9 999.9 44.4* 33.4* 99.99 999.9 110000 724050 13743 19650319 43.2 24 32.9 24 1017.4 8 1016.3 8 6.8 24 6.1 24 15.0 999.9 48.4* 39.4* 99.99 999.9 110000 724050 13743 19650320 33.0 24 20.1 24 1022.2 8 1021.1 8 8.2 24 6.3 24 15.0 999.9 42.4* 27.3* 99.99 999.9 101000 724050 13743 19650321 30.0 24 13.4 24 1027.8 8 1026.7 8 13.7 24 8.5 24 21.0 999.9 40.3* 22.5* 0.00I 999.9 000000 724050 13743 19650322 39.6 24 16.6 24 1028.8 8 1027.8 8 13.9 24 6.7 24 16.9 999.9 53.4* 31.3* 0.00I 999.9 000000 724050 13743 19650323 51.0 24 28.6 24 1018.4 8 1017.3 8 14.9 24 9.1 24 21.0 999.9 64.4* 44.4* 0.00I 999.9 000000 724050 13743 19650324 49.0 24 39.2 24 1015.9 8 1014.8 8 9.1 24 3.9 24 9.9 999.9 58.3* 45.3* 0.00I 999.9 000000 724050 13743 19650325 41.0 24 36.8 24 1023.3 8 1022.2 8 3.8 24 4.1 24 8.0 999.9 46.4* 38.3* 99.99 999.9 110000 724050 13743 19650326 41.1 24 37.2 24 1018.6 8 1017.5 8 6.5 24 2.1 24 5.1 999.9 52.3* 36.3* 99.99 999.9 110000 724050 13743 19650327 44.8 24 29.5 24 1022.0 8 1021.0 8 11.7 24 10.8 24 30.9 999.9 51.3* 36.3* 0.00I 999.9 000000 724050 13743 19650328 45.2 24 29.1 24 1027.9 8 1026.8 8 8.4 24 1.5 24 5.1 999.9 60.3* 35.4* 0.00I 999.9 000000 724050 13743 19650329 56.2 24 46.1 24 1019.2 8 1018.1 8 6.4 24 2.2 24 8.0 999.9 71.2* 47.3* 99.99 999.9 110000 724050 13743 19650330 46.8 24 32.6 24 1021.5 8 1020.4 8 9.8 24 11.9 24 20.0 999.9 56.3* 41.4* 99.99 999.9 110000 724050 13743 19650331 38.5 24 14.3 24 1029.2 8 1028.1 8 14.9 24 9.4 24 15.0 999.9 45.3* 31.3* 0.00I 999.9 000000 724050 13743 19650401 40.4 24 15.0 24 1026.9 8 1025.8 8 13.4 24 3.4 24 9.9 999.9 51.3* 32.4* 0.00I 999.9 000000 724050 13743 19650402 43.1 24 35.4 24 1015.8 8 1014.7 8 7.3 24 8.7 24 20.0 999.9 45.3* 41.4* 99.99 999.9 110000 724050 13743 19650403 41.2 24 18.6 24 1025.2 8 1024.1 8 14.2 24 9.9 24 13.0 999.9 51.3* 33.4* 0.00I 999.9 000000 724050 13743 19650404 45.4 24 16.5 24 1022.7 8 1021.7 8 14.9 24 5.4 24 11.1 999.9 55.4* 33.4* 0.00I 999.9 000000 724050 13743 19650405 50.4 24 24.8 24 1022.5 8 1021.5 8 10.4 24 2.3 24 8.0 999.9 68.4* 37.4* 0.00I 999.9 000000 724050 13743 19650406 50.7 24 34.4 24 1021.0 8 1020.0 8 8.2 24 5.5 24 11.1 999.9 61.3* 45.3* 99.99 999.9 010000 724050 13743 19650407 44.8 24 42.2 24 1018.8 8 1017.7 8 2.3 24 4.9 24 8.0 999.9 50.4* 42.4* 99.99 999.9 110000 724050 13743 19650408 54.2 24 46.5 24 1015.2 8 1014.1 8 6.2 24 8.4 24 14.0 999.9 72.3* 46.4* 99.99 999.9 110000 724050 13743 19650409 57.5 24 48.1 24 1005.7 8 1004.5 8 6.1 24 9.6 24 15.9 999.9 69.3* 50.4* 99.99 999.9 110000 724050 13743 19650410 50.1 24 33.3 24 1016.1 8 1015.1 8 13.9 24 12.5 24 18.1 999.9 61.3* 39.4* 0.00I 999.9 000000 724050 13743 19650411 53.3 24 42.2 24 1015.2 8 1014.2 8 9.4 24 4.6 24 20.0 999.9 58.3* 48.4* 99.99 999.9 110000 724050 13743 19650412 65.3 24 48.0 24 1002.7 8 1001.7 8 8.7 24 11.4 24 32.1 999.9 80.2* 54.3* 0.00I 999.9 000000 724050 13743 19650413 56.1 24 33.8 24 1006.4 8 1005.2 8 14.9 24 24.9 24 35.0 999.9 65.3* 50.4* 0.00I 999.9 000000 724050 13743 19650414 49.1 24 28.0 24 1018.2 8 1017.1 8 14.9 24 16.7 24 25.1 999.9 59.4* 42.4* 0.00I 999.9 000000 724050 13743 19650415 49.8 24 39.0 24 1014.1 8 1013.1 8 9.8 24 9.2 24 15.9 999.9 57.4* 46.4* 99.99 999.9 110000 724050 13743 19650416 56.1 24 44.1 24 1003.3 8 1002.2 8 10.8 24 12.7 24 25.1 999.9 60.3* 52.3* 99.99 999.9 010000 724050 13743 19650417 52.9 24 32.2 24 1015.9 8 1014.8 8 14.8 24 7.4 24 22.9 999.9 68.4* 42.4* 0.00I 999.9 000000 724050 13743 19650418 59.8 24 40.4 24 1012.8 8 1011.7 8 13.8 24 9.1 24 16.9 999.9 66.4* 52.3* 0.00I 999.9 000000 724050 13743 19650419 47.8 24 41.1 24 1016.2 8 1015.1 8 6.4 24 4.4 24 9.9 999.9 59.4* 44.4* 99.99 999.9 110000 724050 13743 19650420 48.2 24 40.9 24 1020.1 8 1019.1 8 4.2 24 3.0 24 5.1 999.9 59.4* 43.3* 0.00I 999.9 100000 724050 13743 19650421 56.9 24 43.1 24 1023.0 8 1021.9 8 5.6 24 3.3 24 11.1 999.9 71.2* 46.4* 0.00I 999.9 000000 724050 13743 19650422 66.0 24 48.0 24 1020.4 8 1019.3 8 10.1 24 6.2 24 13.0 999.9 77.4* 58.3* 0.00I 999.9 000000 724050 13743 19650423 64.2 24 48.9 24 1019.1 8 1018.0 8 7.6 24 5.2 24 15.0 999.9 72.3* 55.4* 99.99 999.9 010000 724050 13743 19650424 51.4 24 40.5 24 1022.2 8 1021.2 8 8.2 24 6.4 24 8.9 999.9 58.3* 46.4* 99.99 999.9 010000 724050 13743 19650425 44.3 24 39.4 24 1024.8 8 1023.7 8 7.3 24 5.0 24 8.0 999.9 47.3* 42.4* 99.99 999.9 110000 724050 13743 19650426 52.8 24 47.9 24 1013.3 8 1012.2 8 6.9 24 5.6 24 9.9 999.9 73.4* 44.4* 99.99 999.9 010000 724050 13743 19650427 59.7 24 50.1 24 1010.4 8 1009.3 8 8.8 24 3.9 24 8.9 999.9 71.2* 51.3* 99.99 999.9 110000 724050 13743 19650428 54.0 24 44.5 24 1014.0 8 1012.9 8 6.8 24 6.6 24 9.9 999.9 57.4* 51.3* 99.99 999.9 010000 724050 13743 19650429 57.4 24 36.8 24 1017.0 8 1015.9 8 11.4 24 7.3 24 16.9 999.9 66.4* 50.4* 0.00I 999.9 000000 724050 13743 19650430 64.4 24 36.4 24 1016.1 8 1015.1 8 14.9 24 9.5 24 20.0 999.9 79.3* 52.3* 0.00I 999.9 000000 724050 13743 19650501 67.9 24 44.6 24 1016.0 8 1014.5 8 13.0 24 5.3 24 14.0 999.9 76.3* 62.4* 99.99 999.9 010010 724050 13743 19650502 64.7 24 50.1 24 1014.7 8 1013.7 8 10.5 24 4.0 24 12.0 999.9 83.3* 55.4* 0.00I 999.9 000000 724050 13743 19650503 74.7 24 51.8 24 1016.3 8 1015.2 8 12.0 24 4.4 24 8.9 999.9 90.3* 59.4* 0.00I 999.9 000000 724050 13743 19650504 78.3 24 49.9 24 1016.8 8 1015.7 8 13.4 24 6.4 24 15.9 999.9 90.3* 63.3* 0.00I 999.9 000000 724050 13743 19650505 70.3 24 53.6 24 1016.7 8 1015.7 8 9.8 24 4.2 24 11.1 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19650506 63.9 24 53.7 24 1020.0 8 1018.9 8 5.3 24 2.0 24 8.0 999.9 75.4* 55.4* 0.00I 999.9 000000 724050 13743 19650507 60.4 24 52.3 24 1022.5 8 1021.4 8 8.3 24 5.3 24 9.9 999.9 70.3* 54.3* 99.99 999.9 010000 724050 13743 19650508 56.3 24 50.1 24 1023.3 8 1022.2 8 5.8 24 4.2 24 7.0 999.9 65.3* 51.3* 0.00I 999.9 000000 724050 13743 19650509 63.7 24 56.5 24 1021.5 8 1020.4 8 4.9 24 3.3 24 8.0 999.9 79.3* 55.4* 99.99 999.9 110000 724050 13743 19650510 76.1 24 62.6 24 1016.1 8 1015.1 8 8.0 24 5.1 24 14.0 999.9 89.2* 65.3* 0.00I 999.9 000000 724050 13743 19650511 79.4 24 58.7 24 1013.0 8 1012.1 8 14.9 24 7.2 24 14.0 999.9 85.3* 71.2* 0.00I 999.9 000000 724050 13743 19650512 70.1 24 48.1 24 1013.0 8 1012.0 8 13.5 24 8.5 24 15.0 999.9 80.2* 63.3* 99.99 999.9 010000 724050 13743 19650513 68.1 24 44.2 24 1009.7 8 1008.7 8 13.5 24 7.6 24 20.0 999.9 78.3* 57.4* 0.00I 999.9 000000 724050 13743 19650514 64.3 24 35.8 24 1017.0 8 1016.0 8 13.9 24 5.1 24 9.9 999.9 73.4* 54.3* 0.00I 999.9 000000 724050 13743 19650515 64.3 24 43.6 24 1021.7 8 1020.6 8 14.9 24 7.4 24 12.0 999.9 78.3* 54.3* 0.00I 999.9 000000 724050 13743 19650516 74.3 24 55.7 24 1018.1 8 1017.1 8 12.7 24 4.0 24 8.9 999.9 89.2* 61.3* 0.00I 999.9 000000 724050 13743 19650517 75.1 24 62.0 24 1012.3 8 1011.4 8 9.9 24 8.1 24 19.0 999.9 84.4* 68.4* 99.99 999.9 110010 724050 13743 19650518 69.4 24 50.9 24 1013.3 8 1012.3 8 14.9 24 11.8 24 18.1 999.9 80.2* 61.3* 0.00I 999.9 000000 724050 13743 19650519 72.2 24 53.1 24 1015.6 8 1014.5 8 13.1 24 3.3 24 7.0 999.9 84.4* 61.3* 0.00I 999.9 000000 724050 13743 19650520 72.3 24 58.0 24 1019.9 8 1018.9 8 9.1 24 4.6 24 9.9 999.9 80.2* 65.3* 0.00I 999.9 000000 724050 13743 19650521 69.9 24 55.4 24 1025.1 8 1024.1 8 5.7 24 4.0 24 9.9 999.9 73.4* 65.3* 99.99 999.9 010000 724050 13743 19650522 68.3 24 59.2 24 1025.8 8 1024.8 8 4.8 24 6.3 24 11.1 999.9 80.2* 58.3* 0.00I 999.9 100000 724050 13743 19650523 77.0 24 64.4 24 1021.5 8 1020.4 8 7.0 24 4.2 24 8.0 999.9 87.3* 69.3* 0.00I 999.9 000000 724050 13743 19650524 69.1 24 59.2 24 1023.5 8 1022.5 8 5.9 24 6.3 24 12.0 999.9 79.3* 64.4* 0.00I 999.9 100010 724050 13743 19650525 67.5 24 58.3 24 1021.1 8 1020.1 8 8.1 24 5.7 24 9.9 999.9 81.3* 60.3* 0.00I 999.9 000000 724050 13743 19650526 75.9 24 64.7 24 1013.5 8 1012.4 8 9.6 24 4.7 24 9.9 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19650527 80.9 24 68.3 24 1010.3 8 1009.3 8 9.8 24 6.4 24 18.1 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19650528 76.3 24 59.8 24 1012.5 8 1011.5 8 13.1 24 8.8 24 15.9 999.9 83.3* 68.4* 99.99 999.9 010010 724050 13743 19650529 66.7 24 55.6 24 1015.0 8 1013.9 8 9.7 24 6.2 24 14.0 999.9 79.3* 57.4* 99.99 999.9 010010 724050 13743 19650530 61.7 24 38.6 24 1019.3 8 1018.0 8 14.9 24 5.6 24 13.0 999.9 70.3* 51.3* 0.00I 999.9 000000 724050 13743 19650531 66.0 24 50.6 24 1019.3 8 1018.2 8 11.2 24 3.2 24 7.0 999.9 76.3* 56.3* 0.00I 999.9 000000 724050 13743 19650601 72.9 24 57.9 24 1018.6 8 1017.5 8 9.5 24 5.3 24 8.0 999.9 84.4* 64.4* 0.00I 999.9 000000 724050 13743 19650602 76.3 24 62.7 24 1015.0 8 1014.0 8 10.2 24 7.7 24 18.1 999.9 87.3* 67.3* 99.99 999.9 010000 724050 13743 19650603 65.4 24 58.4 24 1013.2 8 1012.2 8 9.1 24 4.8 24 12.0 999.9 70.3* 57.4* 99.99 999.9 110000 724050 13743 19650604 63.6 24 43.1 24 1021.0 8 1020.0 8 14.9 24 3.8 24 7.0 999.9 73.4* 53.4* 0.00I 999.9 000000 724050 13743 19650605 65.3 24 47.3 24 1023.0 8 1021.9 8 14.4 24 4.4 24 8.0 999.9 75.4* 56.3* 0.00I 999.9 000000 724050 13743 19650606 70.0 24 56.0 24 1022.2 8 1021.2 8 14.2 24 6.5 24 9.9 999.9 83.3* 59.4* 0.00I 999.9 000000 724050 13743 19650607 77.1 24 63.7 24 1019.8 8 1018.7 8 11.6 24 7.6 24 14.0 999.9 87.3* 68.4* 0.00I 999.9 000000 724050 13743 19650608 79.5 24 67.7 24 1018.2 8 1017.2 8 12.7 24 6.9 24 12.0 999.9 87.3* 73.4* 0.00I 999.9 000000 724050 13743 19650609 76.2 24 68.3 24 1017.1 8 1015.9 8 13.8 24 9.1 24 13.0 999.9 81.3* 72.3* 99.99 999.9 010000 724050 13743 19650610 78.6 24 68.3 24 1016.0 8 1015.0 8 10.9 24 8.1 24 14.0 999.9 91.2* 71.2* 0.00I 999.9 000000 724050 13743 19650611 77.5 24 63.3 24 1017.2 8 1016.1 8 10.2 24 3.4 24 7.0 999.9 84.4* 70.3* 0.00I 999.9 000000 724050 13743 19650612 77.6 24 64.9 24 1010.3 8 1009.3 8 6.5 24 5.4 24 9.9 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19650613 74.5 24 55.1 24 1005.9 8 1004.9 8 10.3 24 11.3 24 23.9 999.9 80.2* 70.3* 0.00I 999.9 000000 724050 13743 19650614 69.1 24 46.9 24 1013.0 8 1011.9 8 14.4 24 6.6 24 12.0 999.9 76.3* 59.4* 0.00I 999.9 000000 724050 13743 19650615 62.9 24 53.3 24 1019.7 8 1018.6 8 9.5 24 6.2 24 14.0 999.9 71.2* 57.4* 99.99 999.9 110000 724050 13743 19650616 56.4 24 52.9 24 1021.9 8 1020.8 8 6.5 24 8.1 24 9.9 999.9 58.3* 55.4* 99.99 999.9 110000 724050 13743 19650617 58.6 24 51.5 24 1021.8 8 1020.8 8 7.3 24 4.9 24 13.0 999.9 66.4* 55.4* 99.99 999.9 110000 724050 13743 19650618 60.2 24 50.9 24 1019.3 8 1018.2 8 10.1 24 8.5 24 15.0 999.9 69.3* 51.3* 0.00I 999.9 000000 724050 13743 19650619 67.2 24 53.1 24 1014.7 8 1013.6 8 14.6 24 10.0 24 22.0 999.9 81.3* 57.4* 99.99 999.9 010000 724050 13743 19650620 73.0 24 55.0 24 1013.9 8 1012.9 8 14.3 24 4.8 24 12.0 999.9 87.3* 63.3* 0.00I 999.9 000000 724050 13743 19650621 78.4 24 57.8 24 1014.2 8 1013.2 8 12.6 24 5.7 24 13.0 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19650622 80.6 24 65.0 24 1016.3 8 1015.3 8 9.7 24 4.5 24 9.9 999.9 89.2* 72.3* 0.00I 999.9 000000 724050 13743 19650623 83.3 24 67.0 24 1017.7 8 1016.7 8 6.2 24 3.3 24 9.9 999.9 92.3* 74.3* 0.00I 999.9 000000 724050 13743 19650624 77.8 24 67.4 24 1014.4 8 1013.3 8 6.5 24 3.1 24 8.0 999.9 87.3* 72.3* 99.99 999.9 010000 724050 13743 19650625 71.6 24 54.8 24 1018.1 8 1017.0 8 12.4 24 7.1 24 12.0 999.9 78.3* 65.3* 0.00I 999.9 000000 724050 13743 19650626 70.6 24 51.1 24 1025.7 8 1024.6 8 12.4 24 3.9 24 8.0 999.9 79.3* 59.4* 0.00I 999.9 000000 724050 13743 19650627 71.5 24 49.5 24 1031.5 8 1030.5 8 14.0 24 4.8 24 12.0 999.9 80.2* 60.3* 0.00I 999.9 000000 724050 13743 19650628 76.2 24 61.9 24 1027.1 8 1026.1 8 12.6 24 5.8 24 9.9 999.9 89.2* 65.3* 0.00I 999.9 000000 724050 13743 19650629 82.9 24 67.4 24 1018.3 8 1017.3 8 11.5 24 6.0 24 16.9 999.9 92.3* 75.4* 99.99 999.9 010000 724050 13743 19650630 78.1 24 69.6 24 1014.3 8 1013.4 8 7.2 24 3.2 24 13.0 999.9 84.4* 74.3* 99.99 999.9 010010 724050 13743 19650701 74.6 24 50.9 24 1019.1 8 1018.0 8 13.2 24 5.8 24 9.9 999.9 83.3* 66.4* 0.00I 999.9 000000 724050 13743 19650702 72.9 24 51.6 24 1021.3 8 1020.2 8 14.1 24 5.0 24 8.9 999.9 81.3* 63.3* 0.00I 999.9 000000 724050 13743 19650703 72.2 24 60.2 24 1013.9 8 1012.9 8 11.6 24 6.3 24 9.9 999.9 81.3* 68.4* 99.99 999.9 010010 724050 13743 19650704 76.4 24 64.3 24 1014.7 8 1013.7 8 8.6 24 2.1 24 8.9 999.9 88.3* 67.3* 0.00I 999.9 000000 724050 13743 19650705 77.2 24 68.6 24 1014.1 8 1013.1 8 8.6 24 4.9 24 8.0 999.9 85.3* 70.3* 99.99 999.9 010010 724050 13743 19650706 75.4 24 66.4 24 1016.9 8 1015.8 8 7.1 24 4.1 24 11.1 999.9 86.4* 68.4* 0.00I 999.9 000000 724050 13743 19650707 75.6 24 64.8 24 1019.3 8 1018.2 8 5.1 24 7.3 24 12.0 999.9 82.4* 69.3* 0.00I 999.9 100000 724050 13743 19650708 77.6 24 67.1 24 1013.7 8 1012.6 8 8.1 24 4.5 24 9.9 999.9 90.3* 69.3* 99.99 999.9 010000 724050 13743 19650709 82.0 24 70.3 24 1014.3 8 1013.3 8 7.2 24 6.0 24 13.0 999.9 91.2* 74.3* 0.00I 999.9 000000 724050 13743 19650710 82.9 24 70.1 24 1012.3 8 1011.3 8 9.4 24 8.0 24 15.0 999.9 88.3* 78.3* 0.00I 999.9 000000 724050 13743 19650711 74.4 24 69.9 24 1015.9 8 1014.8 8 7.8 24 3.9 24 9.9 999.9 86.4* 70.3* 99.99 999.9 010010 724050 13743 19650712 69.7 24 60.1 24 1020.5 8 1019.5 8 8.9 24 5.6 24 11.1 999.9 77.4* 65.3* 99.99 999.9 010000 724050 13743 19650713 75.3 24 65.5 24 1021.8 8 1020.8 8 6.0 24 0.5 24 6.0 999.9 85.3* 69.3* 0.00I 999.9 100000 724050 13743 19650714 79.7 24 70.3 24 1017.0 8 1016.0 8 6.5 24 3.8 24 8.0 999.9 88.3* 73.4* 0.00I 999.9 000000 724050 13743 19650715 80.0 24 69.2 24 1011.8 8 1010.8 8 6.6 24 5.4 24 12.0 999.9 85.3* 73.4* 99.99 999.9 010000 724050 13743 19650716 78.2 24 68.5 24 1014.2 8 1013.1 8 4.4 24 2.5 24 5.1 999.9 87.3* 71.2* 0.00I 999.9 000000 724050 13743 19650717 79.7 24 66.0 24 1014.8 8 1013.8 8 7.0 24 3.9 24 9.9 999.9 88.3* 71.2* 99.99 999.9 010010 724050 13743 19650718 81.6 24 68.9 24 1012.3 8 1011.2 8 6.3 24 5.1 24 8.9 999.9 92.3* 74.3* 0.00I 999.9 000000 724050 13743 19650719 74.3 24 61.2 24 1015.0 8 1013.9 8 9.0 24 4.7 24 16.9 999.9 83.3* 68.4* 99.99 999.9 010010 724050 13743 19650720 71.5 24 50.5 24 1020.9 8 1019.9 8 13.3 24 4.5 24 8.9 999.9 79.3* 64.4* 0.00I 999.9 000000 724050 13743 19650721 71.2 24 51.3 24 1023.8 8 1022.7 8 11.6 24 3.1 24 8.0 999.9 79.3* 61.3* 0.00I 999.9 000000 724050 13743 19650722 72.6 24 54.8 24 1021.1 8 1020.1 8 10.9 24 5.4 24 9.9 999.9 80.2* 65.3* 0.00I 999.9 000000 724050 13743 19650723 75.5 24 62.8 24 1014.8 8 1013.7 8 11.0 24 7.0 24 13.0 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19650724 82.7 24 71.5 24 1011.2 8 1010.1 8 4.6 24 5.0 24 9.9 999.9 93.4* 75.4* 0.00I 999.9 000000 724050 13743 19650725 86.9 24 72.4 24 1009.6 8 1008.5 8 8.0 24 6.9 24 14.0 999.9 95.4* 79.3* 0.00I 999.9 000000 724050 13743 19650726 82.4 24 64.8 24 1013.8 8 1012.8 8 9.7 24 4.5 24 9.9 999.9 90.3* 76.3* 0.00I 999.9 000000 724050 13743 19650727 79.2 24 65.1 24 1014.3 8 1013.1 8 10.6 24 4.0 24 9.9 999.9 88.3* 72.3* 0.00I 999.9 000010 724050 13743 19650728 78.8 24 63.0 24 1012.2 8 1011.2 8 10.8 24 3.6 24 14.0 999.9 84.4* 72.3* 0.00I 999.9 000010 724050 13743 19650729 73.2 24 58.3 24 1013.7 8 1012.6 8 8.7 24 3.4 24 11.1 999.9 81.3* 67.3* 0.00I 999.9 000000 724050 13743 19650730 74.2 24 60.2 24 1016.3 8 1015.2 8 9.0 24 2.6 24 9.9 999.9 83.3* 66.4* 0.00I 999.9 000000 724050 13743 19650731 74.0 24 59.7 24 1016.7 8 1015.7 8 10.8 24 5.4 24 13.0 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19650801 71.4 24 64.9 24 1013.2 8 1012.2 8 8.3 24 6.5 24 11.1 999.9 76.3* 67.3* 99.99 999.9 010010 724050 13743 19650802 74.7 24 64.6 24 1005.8 8 1004.7 8 10.4 24 7.8 24 15.0 999.9 85.3* 68.4* 99.99 999.9 010010 724050 13743 19650803 74.1 24 53.7 24 1011.0 8 1009.8 8 14.1 24 5.0 24 9.9 999.9 80.2* 66.4* 0.00I 999.9 000000 724050 13743 19650804 74.3 24 60.9 24 1017.5 8 1016.1 8 8.5 24 2.7 24 7.0 999.9 82.4* 65.3* 99.99 999.9 010000 724050 13743 19650805 74.7 24 66.0 24 1019.2 8 1017.7 8 5.6 24 5.3 24 13.0 999.9 85.3* 67.3* 99.99 999.9 010010 724050 13743 19650806 78.3 24 67.0 24 1019.1 8 1018.0 8 6.3 24 5.8 24 11.1 999.9 90.3* 69.3* 0.00I 999.9 000000 724050 13743 19650807 82.6 24 70.2 24 1017.1 8 1016.0 8 8.2 24 7.6 24 9.9 999.9 90.3* 74.3* 0.00I 999.9 000000 724050 13743 19650808 81.1 24 70.2 24 1014.3 8 1013.3 8 11.0 24 9.7 24 15.0 999.9 87.3* 74.3* 0.00I 999.9 000000 724050 13743 19650809 79.6 24 71.4 24 1012.4 8 1011.3 8 12.3 24 8.5 24 15.9 999.9 85.3* 75.4* 99.99 999.9 010010 724050 13743 19650810 80.1 24 68.0 24 1011.6 8 1010.5 8 10.9 24 5.2 24 14.0 999.9 87.3* 73.4* 0.00I 999.9 000000 724050 13743 19650811 74.7 24 60.7 24 1017.6 8 1016.5 8 11.2 24 7.4 24 12.0 999.9 81.3* 67.3* 0.00I 999.9 000000 724050 13743 19650812 75.7 24 60.6 24 1020.4 8 1019.3 8 9.2 24 2.2 24 8.0 999.9 86.4* 63.3* 0.00I 999.9 000000 724050 13743 19650813 80.7 24 63.0 24 1016.9 8 1015.8 8 9.5 24 3.2 24 8.9 999.9 90.3* 70.3* 0.00I 999.9 000000 724050 13743 19650814 82.0 24 66.5 24 1014.2 8 1013.1 8 7.7 24 4.4 24 8.0 999.9 90.3* 74.3* 0.00I 999.9 000000 724050 13743 19650815 82.2 24 68.4 24 1015.2 8 1014.1 8 4.1 24 2.0 24 6.0 999.9 93.4* 73.4* 0.00I 999.9 000000 724050 13743 19650816 82.5 24 69.2 24 1013.7 8 1012.6 8 4.5 24 4.0 24 6.0 999.9 91.2* 74.3* 0.00I 999.9 000000 724050 13743 19650817 82.0 24 70.1 24 1012.3 8 1011.3 8 3.8 24 3.7 24 8.0 999.9 91.2* 75.4* 0.00I 999.9 000000 724050 13743 19650818 80.7 24 70.2 24 1010.6 8 1009.6 8 5.2 24 4.3 24 32.1 999.9 95.4* 73.4* 99.99 999.9 110010 724050 13743 19650819 80.1 24 70.6 24 1008.0 8 1006.9 8 7.1 24 2.9 24 12.0 999.9 90.3* 73.4* 99.99 999.9 010000 724050 13743 19650820 76.8 24 61.8 24 1013.4 8 1012.4 8 10.6 24 8.4 24 13.0 999.9 82.4* 70.3* 0.00I 999.9 000000 724050 13743 19650821 74.3 24 55.8 24 1019.5 8 1018.4 8 9.7 24 2.3 24 6.0 999.9 83.3* 65.3* 99.99 999.9 010000 724050 13743 19650822 71.2 24 66.9 24 1019.0 8 1017.9 8 4.0 24 2.2 24 5.1 999.9 80.2* 67.3* 99.99 999.9 110000 724050 13743 19650823 74.3 24 68.3 24 1015.4 8 1014.4 8 2.9 24 2.0 24 7.0 999.9 80.2* 69.3* 0.00I 999.9 100000 724050 13743 19650824 73.9 24 60.7 24 1015.5 8 1014.5 8 6.4 24 2.3 24 7.0 999.9 80.2* 67.3* 0.00I 999.9 000000 724050 13743 19650825 73.1 24 62.9 24 1015.7 8 1014.6 8 7.5 24 2.3 24 6.0 999.9 79.3* 68.4* 99.99 999.9 010000 724050 13743 19650826 75.8 24 70.5 24 1013.0 9 1011.9 9 4.0 24 3.6 24 8.9 999.9 86.4* 69.3* 99.99 999.9 110010 724050 13743 19650827 76.8 24 68.2 24 1012.1 8 1011.2 8 8.2 24 4.8 24 13.0 999.9 90.3* 69.3* 99.99 999.9 010000 724050 13743 19650828 81.4 24 68.9 24 1008.9 8 1007.9 8 11.2 24 6.1 24 26.0 999.9 89.2* 74.3* 99.99 999.9 010010 724050 13743 19650829 63.2 24 42.8 24 1019.3 8 1018.2 8 14.9 24 10.4 24 20.0 999.9 74.3* 54.3* 0.00I 999.9 000000 724050 13743 19650830 65.7 24 47.8 24 1022.8 8 1021.8 8 14.9 24 3.3 24 8.0 999.9 74.3* 57.4* 0.00I 999.9 000000 724050 13743 19650831 68.0 24 55.4 24 1022.3 8 1021.3 8 13.7 24 4.4 24 8.0 999.9 75.4* 61.3* 0.00I 999.9 000000 724050 13743 19650901 73.0 24 62.7 24 1015.4 8 1014.3 8 10.7 24 10.1 24 15.9 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19650902 69.4 24 58.7 24 1019.0 8 1017.9 8 13.3 24 6.0 24 22.0 999.9 79.3* 62.4* 99.99 999.9 010000 724050 13743 19650903 69.2 24 57.3 24 1022.2 8 1021.2 8 8.1 24 2.6 24 6.0 999.9 77.4* 61.3* 0.00I 999.9 000000 724050 13743 19650904 68.7 24 58.3 24 1024.5 8 1023.4 8 8.3 24 4.0 24 7.0 999.9 78.3* 60.3* 0.00I 999.9 000000 724050 13743 19650905 67.3 24 58.2 24 1025.5 8 1024.4 8 10.7 24 4.0 24 7.0 999.9 76.3* 59.4* 0.00I 999.9 100000 724050 13743 19650906 68.7 24 59.8 24 1025.4 8 1024.3 8 8.6 24 3.1 24 7.0 999.9 76.3* 63.3* 0.00I 999.9 100000 724050 13743 19650907 71.1 24 57.9 24 1022.3 8 1021.3 8 9.0 24 1.3 24 4.1 999.9 85.3* 60.3* 0.00I 999.9 000000 724050 13743 19650908 74.8 24 60.0 24 1018.2 8 1017.2 8 7.5 24 2.6 24 8.0 999.9 86.4* 65.3* 0.00I 999.9 000000 724050 13743 19650909 78.1 24 64.4 24 1018.0 8 1017.0 8 7.0 24 2.2 24 8.0 999.9 87.3* 69.3* 0.00I 999.9 000000 724050 13743 19650910 78.7 24 64.0 24 1017.6 8 1016.6 8 8.8 24 4.6 24 8.0 999.9 89.2* 70.3* 0.00I 999.9 000000 724050 13743 19650911 78.7 24 70.1 24 1018.4 8 1017.4 8 6.7 24 2.8 24 12.0 999.9 85.3* 74.3* 99.99 999.9 010000 724050 13743 19650912 68.5 24 62.4 24 1023.3 8 1022.3 8 5.3 24 4.1 24 7.0 999.9 74.3* 63.3* 99.99 999.9 110010 724050 13743 19650913 65.0 24 63.5 24 1020.0 8 1019.0 8 3.1 24 2.3 24 5.1 999.9 69.3* 62.4* 99.99 999.9 110000 724050 13743 19650914 71.4 24 65.3 24 1015.4 8 1014.3 8 3.9 24 2.2 24 7.0 999.9 80.2* 66.4* 99.99 999.9 110000 724050 13743 19650915 73.9 24 67.8 24 1013.0 8 1011.7 8 5.2 24 4.6 24 12.0 999.9 86.4* 67.3* 99.99 999.9 110000 724050 13743 19650916 79.4 24 67.8 24 1014.8 8 1013.8 8 8.0 24 4.2 24 8.0 999.9 85.3* 73.4* 0.00I 999.9 000000 724050 13743 19650917 73.5 24 64.5 24 1024.7 8 1023.8 8 6.3 24 3.2 24 6.0 999.9 79.3* 67.3* 99.99 999.9 110010 724050 13743 19650918 76.3 24 70.8 24 1026.1 8 1025.0 8 3.5 24 2.9 24 8.9 999.9 87.3* 70.3* 0.00I 999.9 100000 724050 13743 19650919 81.7 24 72.4 24 1023.2 8 1022.2 8 4.9 24 2.6 24 8.0 999.9 94.3* 74.3* 0.00I 999.9 000000 724050 13743 19650920 80.4 24 73.2 24 1022.3 8 1021.3 8 3.4 24 2.9 24 7.0 999.9 88.3* 73.4* 0.00I 999.9 100000 724050 13743 19650921 80.8 24 72.1 24 1021.8 8 1020.7 8 5.8 24 6.1 24 9.9 999.9 89.2* 74.3* 0.00I 999.9 000000 724050 13743 19650922 80.9 24 71.9 24 1021.4 8 1020.4 8 8.7 24 6.6 24 12.0 999.9 88.3* 74.3* 0.00I 999.9 000000 724050 13743 19650923 78.2 24 69.3 24 1019.5 8 1018.4 8 10.5 24 6.8 24 9.9 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19650924 75.4 24 69.0 24 1011.9 8 1010.9 8 8.2 24 5.6 24 14.0 999.9 81.3* 65.3* 99.99 999.9 010010 724050 13743 19650925 63.7 24 53.1 24 1011.9 8 1010.9 8 11.6 24 12.0 24 15.9 999.9 67.3* 60.3* 99.99 999.9 010000 724050 13743 19650926 61.8 24 47.5 24 1020.0 8 1018.9 8 12.0 24 2.8 24 11.1 999.9 70.3* 53.4* 0.00I 999.9 000000 724050 13743 19650927 61.4 24 50.1 24 1025.3 8 1024.3 8 10.6 24 4.6 24 9.9 999.9 67.3* 57.4* 0.00I 999.9 000000 724050 13743 19650928 57.5 24 45.2 24 1028.0 8 1027.0 8 10.7 24 5.1 24 8.0 999.9 67.3* 48.4* 0.00I 999.9 000000 724050 13743 19650929 63.1 24 52.3 24 1020.5 8 1019.5 8 10.1 24 3.4 24 7.0 999.9 72.3* 54.3* 0.00I 999.9 000000 724050 13743 19650930 66.8 24 58.0 24 1019.7 8 1018.7 8 6.7 24 4.2 24 12.0 999.9 75.4* 59.4* 0.00I 999.9 000000 724050 13743 19651001 68.8 24 64.1 24 1014.9 8 1013.9 8 3.9 24 8.9 24 14.0 999.9 73.4* 65.3* 99.99 999.9 110000 724050 13743 19651002 64.1 24 50.0 24 1015.0 8 1014.0 8 13.5 24 11.8 24 26.0 999.9 74.3* 56.3* 0.00I 999.9 000000 724050 13743 19651003 61.9 24 49.8 24 1012.6 8 1011.5 8 9.1 24 6.1 24 22.0 999.9 74.3* 51.3* 0.00I 999.9 000000 724050 13743 19651004 54.4 24 35.3 24 1016.0 8 1015.0 8 13.8 24 15.8 24 22.0 999.9 64.4* 48.4* 0.00I 999.9 000000 724050 13743 19651005 48.0 24 27.8 24 1021.0 8 1020.0 8 13.3 24 13.6 24 20.0 999.9 55.4* 42.4* 0.00I 999.9 000000 724050 13743 19651006 51.1 24 35.1 24 1021.3 8 1020.3 8 10.4 24 4.2 24 9.9 999.9 63.3* 42.4* 0.00I 999.9 000000 724050 13743 19651007 58.6 24 51.5 24 1011.7 8 1010.7 8 7.4 24 7.0 24 15.9 999.9 65.3* 52.3* 99.99 999.9 110000 724050 13743 19651008 61.5 24 52.1 24 998.2 8 997.1 8 10.1 24 10.5 24 22.0 999.9 72.3* 55.4* 99.99 999.9 010010 724050 13743 19651009 57.9 24 46.8 24 1002.6 8 1001.6 8 13.8 24 5.6 24 14.0 999.9 69.3* 50.4* 99.99 999.9 010000 724050 13743 19651010 57.8 24 45.6 24 1008.3 8 1007.3 8 12.4 24 6.7 24 16.9 999.9 64.4* 51.3* 99.99 999.9 010000 724050 13743 19651011 57.5 24 45.5 24 1016.7 8 1015.7 8 12.5 24 3.3 24 9.9 999.9 66.4* 49.3* 0.00I 999.9 000000 724050 13743 19651012 60.5 24 46.5 24 1014.6 8 1013.5 8 11.5 24 7.5 24 20.0 999.9 68.4* 54.3* 99.99 999.9 010000 724050 13743 19651013 57.5 24 40.9 24 1020.1 8 1019.1 8 12.6 24 3.1 24 8.9 999.9 65.3* 48.4* 0.00I 999.9 000000 724050 13743 19651014 59.7 24 47.6 24 1022.5 8 1021.5 8 9.7 24 2.3 24 6.0 999.9 72.3* 51.3* 0.00I 999.9 000000 724050 13743 19651015 67.2 24 61.1 24 1021.1 8 1020.0 8 6.2 24 7.0 24 9.9 999.9 76.3* 61.3* 0.00I 999.9 100000 724050 13743 19651016 69.0 24 59.4 24 1020.8 8 1019.8 8 7.3 24 5.2 24 14.0 999.9 74.3* 61.3* 0.00I 999.9 000000 724050 13743 19651017 57.1 24 43.5 24 1027.1 8 1026.1 8 10.8 24 5.8 24 9.9 999.9 67.3* 48.4* 0.00I 999.9 000000 724050 13743 19651018 53.5 24 43.6 24 1030.7 8 1029.7 8 8.5 24 3.2 24 6.0 999.9 66.4* 44.4* 0.00I 999.9 000000 724050 13743 19651019 57.9 24 47.6 24 1028.7 8 1027.6 8 6.0 24 2.4 24 7.0 999.9 72.3* 48.4* 0.00I 999.9 000000 724050 13743 19651020 62.6 24 52.6 24 1024.7 8 1023.6 8 6.4 24 1.7 24 4.1 999.9 75.4* 53.4* 0.00I 999.9 000000 724050 13743 19651021 64.7 24 56.5 24 1016.9 8 1015.9 8 6.7 24 3.8 24 8.0 999.9 76.3* 58.3* 0.00I 999.9 000000 724050 13743 19651022 65.5 24 63.1 24 1007.7 8 1006.7 8 3.3 24 3.8 24 7.0 999.9 69.3* 63.3* 99.99 999.9 110000 724050 13743 19651023 64.0 24 53.8 24 1000.0 8 998.9 8 8.1 24 4.0 24 11.1 999.9 70.3* 59.4* 0.00I 999.9 100000 724050 13743 19651024 52.9 24 38.1 24 1005.8 8 1004.8 8 13.9 24 13.1 24 19.0 999.9 56.3* 48.4* 0.00I 999.9 000000 724050 13743 19651025 48.4 24 30.4 24 1021.1 8 1020.1 8 14.5 24 9.9 24 15.0 999.9 55.4* 41.4* 0.00I 999.9 000000 724050 13743 19651026 52.5 24 34.6 24 1020.4 8 1019.4 8 11.8 24 2.9 24 7.0 999.9 67.3* 40.3* 0.00I 999.9 000000 724050 13743 19651027 55.3 24 38.2 24 1017.5 8 1016.5 8 10.4 24 4.8 24 18.1 999.9 64.4* 47.3* 0.00I 999.9 000000 724050 13743 19651028 51.8 24 38.4 24 1017.7 8 1016.6 8 9.7 24 7.9 24 18.1 999.9 58.3* 47.3* 0.00I 999.9 000000 724050 13743 19651029 40.4 24 18.5 24 1030.8 8 1029.7 8 13.8 24 11.5 24 32.1 999.9 49.3* 33.4* 0.00I 999.9 000000 724050 13743 19651030 44.8 24 24.9 24 1029.0 8 1028.0 8 10.6 24 5.1 24 9.9 999.9 61.3* 36.3* 0.00I 999.9 000000 724050 13743 19651031 55.3 24 34.0 24 1018.3 8 1017.3 8 9.4 24 5.5 24 14.0 999.9 71.2* 43.3* 0.00I 999.9 000000 724050 13743 19651101 55.9 24 35.1 24 1019.2 8 1017.7 8 12.2 24 15.0 24 26.0 999.9 68.4* 49.3* 0.00I 999.9 000000 724050 13743 19651102 48.3 24 29.0 24 1029.3 8 1028.3 8 11.7 24 3.6 24 9.9 999.9 55.4* 39.4* 0.00I 999.9 000000 724050 13743 19651103 53.0 24 35.6 24 1028.8 8 1027.8 8 11.2 24 7.5 24 12.0 999.9 70.3* 43.3* 0.00I 999.9 000000 724050 13743 19651104 62.2 24 39.7 24 1024.0 8 1023.0 8 10.9 24 8.7 24 20.0 999.9 70.3* 54.3* 0.00I 999.9 000000 724050 13743 19651105 51.2 24 27.0 24 1032.8 8 1031.7 8 12.2 24 4.9 24 8.9 999.9 61.3* 40.3* 0.00I 999.9 000000 724050 13743 19651106 50.9 24 38.4 24 1030.4 8 1029.4 8 9.4 24 3.5 24 9.9 999.9 64.4* 42.4* 0.00I 999.9 000000 724050 13743 19651107 58.7 24 46.3 24 1024.5 8 1023.5 8 5.0 24 2.3 24 8.0 999.9 74.3* 49.3* 0.00I 999.9 000000 724050 13743 19651108 62.9 24 51.4 24 1019.9 8 1018.8 8 5.3 24 2.8 24 15.9 999.9 68.4* 57.4* 99.99 999.9 010010 724050 13743 19651109 55.6 24 42.2 24 1017.0 8 1015.9 8 10.5 24 8.7 24 18.1 999.9 61.3* 50.4* 0.00I 999.9 000000 724050 13743 19651110 44.7 24 29.6 24 1025.8 8 1024.7 8 7.0 24 3.7 24 8.0 999.9 50.4* 38.3* 0.00I 999.9 000000 724050 13743 19651111 48.5 24 41.1 24 1025.5 8 1024.4 8 6.2 24 2.2 24 6.0 999.9 56.3* 45.3* 99.99 999.9 010000 724050 13743 19651112 50.7 24 44.5 24 1026.0 8 1024.9 8 5.6 24 3.0 24 7.0 999.9 55.4* 47.3* 0.00I 999.9 100000 724050 13743 19651113 53.7 24 48.2 24 1019.2 8 1018.2 8 6.0 24 3.4 24 6.0 999.9 62.4* 48.4* 99.99 999.9 110000 724050 13743 19651114 52.0 24 39.0 24 1020.7 8 1019.6 8 8.9 24 7.6 24 23.9 999.9 57.4* 45.3* 0.00I 999.9 000000 724050 13743 19651115 44.8 24 24.6 24 1026.0 8 1025.0 8 11.7 24 5.5 24 18.1 999.9 52.3* 36.3* 0.00I 999.9 000000 724050 13743 19651116 54.5 24 40.5 24 1011.5 8 1010.5 8 11.3 24 9.8 24 15.9 999.9 63.3* 48.4* 99.99 999.9 010000 724050 13743 19651117 53.0 24 36.6 24 999.8 8 998.8 8 13.8 24 19.6 24 37.9 999.9 64.4* 41.4* 99.99 999.9 010000 724050 13743 19651118 41.3 24 21.4 24 1010.4 8 1009.7 8 14.9 24 22.2 24 29.9 999.9 47.3* 37.4* 0.00I 999.9 000000 724050 13743 19651119 44.3 24 22.4 24 1016.3 8 1015.3 8 14.3 24 7.7 24 15.0 999.9 49.3* 41.4* 0.00I 999.9 000000 724050 13743 19651120 44.9 24 30.3 24 1019.1 8 1018.0 8 7.2 24 2.6 24 9.9 999.9 59.4* 35.4* 0.00I 999.9 000000 724050 13743 19651121 48.2 24 32.7 24 1011.3 8 1010.2 8 7.2 24 4.3 24 12.0 999.9 53.4* 44.4* 99.99 999.9 110000 724050 13743 19651122 47.4 24 43.6 24 1005.1 8 1004.0 8 3.0 24 6.2 24 12.0 999.9 50.4* 46.4* 99.99 999.9 110000 724050 13743 19651123 50.2 24 39.2 24 1009.7 8 1008.5 8 8.7 24 7.3 24 25.1 999.9 60.3* 44.4* 0.00I 999.9 000000 724050 13743 19651124 44.9 24 30.5 24 1017.7 8 1016.6 8 12.7 24 9.7 24 20.0 999.9 50.4* 37.4* 0.00I 999.9 000000 724050 13743 19651125 43.9 24 32.7 24 1021.8 8 1020.7 8 7.8 24 2.2 24 8.0 999.9 53.4* 36.3* 0.00I 999.9 000000 724050 13743 19651126 50.0 24 38.3 24 1018.6 8 1017.6 8 9.9 24 4.3 24 8.0 999.9 57.4* 43.3* 99.99 999.9 010000 724050 13743 19651127 59.3 24 46.6 24 1006.7 8 1005.6 8 11.1 24 11.7 24 25.1 999.9 67.3* 51.3* 99.99 999.9 010000 724050 13743 19651128 49.5 24 25.2 24 1008.0 8 1007.0 8 14.9 24 9.7 24 18.1 999.9 57.4* 40.3* 0.00I 999.9 000000 724050 13743 19651129 40.5 24 19.0 24 1010.8 8 1009.8 8 14.8 24 15.0 24 20.0 999.9 52.3* 34.3* 0.00I 999.9 000000 724050 13743 19651130 34.5 24 17.7 24 1019.9 8 1018.9 8 14.9 24 9.1 24 15.0 999.9 40.3* 29.3* 0.00I 999.9 000000 724050 13743 19651201 35.3 24 19.5 24 1026.1 8 1025.1 8 13.3 24 8.7 24 14.0 999.9 41.4* 29.3* 0.00I 999.9 000000 724050 13743 19651202 40.7 24 21.7 24 1025.0 8 1024.0 8 8.3 24 4.9 24 9.9 999.9 56.3* 31.3* 0.00I 999.9 000000 724050 13743 19651203 49.5 24 27.2 24 1020.4 8 1019.3 8 7.4 24 3.0 24 7.0 999.9 55.4* 45.3* 0.00I 999.9 000000 724050 13743 19651204 46.9 24 29.9 24 1010.4 8 1009.3 8 11.0 24 10.2 24 26.0 999.9 50.4* 42.4* 99.99 999.9 010000 724050 13743 19651205 40.4 24 24.9 24 1011.5 8 1010.4 8 12.4 24 7.5 24 18.1 999.9 46.4* 36.3* 0.00I 999.9 000000 724050 13743 19651206 41.4 24 30.5 24 1006.1 8 1005.0 8 10.4 24 5.5 24 20.0 999.9 47.3* 37.4* 99.99 999.9 110000 724050 13743 19651207 38.3 24 24.3 24 1020.3 8 1019.3 8 13.0 24 14.7 24 20.0 999.9 41.4* 32.4* 0.00I 999.9 000000 724050 13743 19651208 38.0 24 20.5 24 1022.6 8 1021.5 8 10.8 24 3.6 24 11.1 999.9 50.4* 30.4* 0.00I 999.9 000000 724050 13743 19651209 43.9 24 27.6 24 1025.1 8 1024.4 8 7.5 24 1.7 24 8.0 999.9 51.3* 37.4* 0.00I 999.9 000000 724050 13743 19651210 45.9 24 31.5 24 1025.5 8 1024.5 8 7.4 24 2.9 24 8.0 999.9 56.3* 39.4* 0.00I 999.9 000000 724050 13743 19651211 49.0 24 36.9 24 1022.0 8 1021.0 8 4.6 24 1.0 24 7.0 999.9 54.3* 45.3* 99.99 999.9 010000 724050 13743 19651212 49.5 24 43.5 24 1017.1 8 1016.1 8 2.4 24 3.5 24 8.0 999.9 53.4* 46.4* 0.00I 999.9 100000 724050 13743 19651213 50.0 24 46.8 24 1008.3 8 1007.2 8 2.0 24 1.8 24 6.0 999.9 52.3* 47.3* 99.99 999.9 110000 724050 13743 19651214 46.5 24 42.3 24 1009.0 8 1008.0 8 3.7 24 1.4 24 6.0 999.9 52.3* 41.4* 0.00I 999.9 100000 724050 13743 19651215 46.1 24 36.7 24 1013.2 8 1012.2 8 7.5 24 2.2 24 8.0 999.9 49.3* 40.3* 99.99 999.9 010000 724050 13743 19651216 47.1 24 37.6 24 1015.0 8 1014.0 8 7.5 24 2.6 24 7.0 999.9 51.3* 42.4* 0.00I 999.9 000000 724050 13743 19651217 46.2 24 35.8 24 1013.7 8 1012.7 8 8.5 24 6.3 24 20.0 999.9 50.4* 40.3* 0.00I 999.9 000000 724050 13743 19651218 37.8 24 24.3 24 1018.0 8 1016.9 8 10.9 24 8.1 24 18.1 999.9 42.4* 33.4* 0.00I 999.9 000000 724050 13743 19651219 37.8 24 23.1 24 1014.3 8 1013.2 8 10.4 24 8.8 24 18.1 999.9 40.3* 35.4* 0.00I 999.9 000000 724050 13743 19651220 31.4 24 18.7 24 1012.7 8 1012.1 8 11.6 24 6.3 24 12.0 999.9 38.3* 27.3* 0.00I 999.9 000000 724050 13743 19651221 32.1 24 24.1 24 1013.1 8 1012.1 8 7.0 24 5.2 24 9.9 999.9 34.3* 29.3* 99.99 999.9 001000 724050 13743 19651222 33.9 24 23.0 24 1024.2 8 1023.2 8 7.7 24 4.0 24 8.0 999.9 44.4* 26.4* 0.00I 999.9 000000 724050 13743 19651223 40.6 24 26.7 24 1027.7 8 1026.7 8 10.4 24 4.8 24 7.0 999.9 53.4* 34.3* 0.00I 999.9 000000 724050 13743 19651224 50.1 24 35.2 24 1023.9 8 1022.9 8 9.5 24 6.4 24 14.0 999.9 58.3* 44.4* 0.00I 999.9 000000 724050 13743 19651225 57.8 24 44.8 24 1009.7 8 1008.7 8 12.1 24 11.7 24 20.0 999.9 67.3* 52.3* 99.99 999.9 010000 724050 13743 19651226 40.3 24 26.2 24 1014.8 8 1013.8 8 14.9 24 20.5 24 26.0 999.9 50.4* 34.3* 0.00I 999.9 000000 724050 13743 19651227 29.5 24 7.6 24 1030.5 8 1029.5 8 13.2 24 8.6 24 15.9 999.9 37.4* 23.4* 0.00I 999.9 000000 724050 13743 19651228 35.8 24 16.5 24 1030.5 8 1029.5 8 12.9 24 6.4 24 15.9 999.9 43.3* 29.3* 0.00I 999.9 000000 724050 13743 19651229 36.0 24 21.7 24 1032.4 8 1031.4 8 7.2 24 4.5 24 9.9 999.9 47.3* 28.4* 0.00I 999.9 000000 724050 13743 19651230 41.2 24 24.8 24 1026.6 8 1025.6 8 7.7 24 3.3 24 8.0 999.9 57.4* 29.3* 0.00I 999.9 000000 724050 13743 19651231 54.2 24 39.4 24 1021.8 8 1020.9 8 8.0 24 6.5 24 12.0 999.9 68.4* 44.4* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1946/0000755000175000017500000000000014302004506015103 5ustar nileshnileshfluids-1.0.22/tests/gsod/1946/724050-13743.op0000644000175000017500000010303514302004506016665 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19460101 33.6 24 22.6 24 1009.4 24 1008.7 24 9.1 24 12.8 24 22.9 999.9 38.3* 27.3* 0.00I 999.9 000000 724050 13743 19460102 27.4 24 11.0 24 1025.3 24 1024.7 24 10.6 24 8.7 24 14.0 999.9 34.3* 22.5* 0.00I 999.9 000000 724050 13743 19460103 31.7 24 19.2 24 1030.9 24 1030.2 24 6.0 24 4.8 24 9.9 999.9 42.4* 23.4* 0.00I 999.9 000000 724050 13743 19460104 36.4 24 30.4 24 1031.0 24 1030.3 24 3.9 24 3.4 24 8.9 999.9 44.4* 31.3* 0.00I 999.9 100000 724050 13743 19460105 45.2 23 39.2 23 1024.7 23 1024.0 23 3.6 23 4.2 23 8.9 999.9 58.3* 38.3* 0.00I 999.9 000000 724050 13743 19460106 60.9 24 52.5 24 1017.6 24 1016.9 24 8.9 24 11.9 24 21.0 999.9 64.4* 57.4* 99.99 999.9 010000 724050 13743 19460107 62.9 24 59.6 24 1017.0 24 1016.4 24 6.5 24 9.5 24 15.9 999.9 64.4* 61.3* 99.99 999.9 110000 724050 13743 19460108 55.5 24 51.1 24 1021.6 24 1021.0 24 3.8 24 6.7 24 9.9 999.9 61.3* 51.3* 99.99 999.9 110000 724050 13743 19460109 46.1 24 41.3 24 1021.7 24 1021.1 24 3.9 24 6.5 24 8.9 999.9 51.3* 43.3* 99.99 999.9 110000 724050 13743 19460110 51.1 24 43.9 24 1012.6 24 1012.0 24 6.0 24 9.4 24 21.0 999.9 55.4* 46.4* 99.99 999.9 110000 724050 13743 19460111 40.9 24 28.9 24 1024.3 24 1023.6 24 5.9 24 7.4 24 15.9 999.9 48.4* 35.4* 99.99 999.9 001000 724050 13743 19460112 43.5 24 37.0 24 1017.6 24 1016.9 24 4.8 24 8.8 24 19.0 999.9 54.3* 37.4* 99.99 999.9 110000 724050 13743 19460113 38.8 24 24.7 24 1020.0 24 1019.3 24 8.9 24 11.8 24 23.9 999.9 45.3* 32.4* 0.00I 999.9 000000 724050 13743 19460114 31.9 24 13.7 24 1027.3 24 1026.6 24 10.1 24 9.3 24 14.0 999.9 39.4* 26.4* 0.00I 999.9 000000 724050 13743 19460115 35.6 24 24.1 24 1019.0 24 1018.3 24 5.2 24 7.5 24 15.9 999.9 43.3* 30.4* 0.00I 999.9 000000 724050 13743 19460116 24.4 24 7.9 24 1030.5 24 1029.8 24 7.0 24 10.4 24 16.9 999.9 35.4* 18.3* 0.00I 999.9 000000 724050 13743 19460117 29.3 24 17.6 24 1021.9 24 1021.2 24 7.0 24 8.4 24 14.0 999.9 39.4* 23.4* 0.00I 999.9 000000 724050 13743 19460118 38.0 24 22.0 24 1012.8 24 1012.1 24 4.8 24 6.5 24 8.9 999.9 48.4* 30.4* 0.00I 999.9 000000 724050 13743 19460119 38.8 24 18.0 24 1013.1 24 1012.4 24 8.3 24 11.0 24 16.9 999.9 48.4* 33.4* 0.00I 999.9 000000 724050 13743 19460120 24.7 24 6.9 24 1028.2 24 1027.5 24 7.7 24 9.3 24 15.9 999.9 33.4* 19.4* 99.99 999.9 001000 724050 13743 19460121 29.0 24 26.8 24 1013.7 24 1013.0 24 2.8 24 8.3 24 9.9 999.9 34.3* 20.3* 99.99 999.9 111000 724050 13743 19460122 29.0 24 18.8 24 1022.0 24 1021.4 24 4.8 24 12.2 24 26.0 999.9 34.3* 19.4* 0.00I 999.9 100000 724050 13743 19460123 21.7 24 7.2 24 1030.0 24 1029.3 24 5.7 24 4.5 24 9.9 999.9 33.4* 12.4* 0.00I 999.9 000000 724050 13743 19460124 26.6 23 19.0 23 1019.3 23 1018.6 23 3.8 23 2.8 23 7.0 999.9 38.3* 17.4* 0.00I 999.9 000000 724050 13743 19460125 35.7 24 22.5 24 1006.3 24 1005.6 24 8.0 24 7.9 24 15.0 999.9 44.4* 28.4* 0.00I 999.9 000000 724050 13743 19460126 42.0 23 24.7 23 1008.4 23 1007.7 23 6.2 23 9.3 23 15.9 999.9 49.3* 38.3* 0.00I 999.9 000000 724050 13743 19460127 27.1 24 17.8 24 1024.5 24 1023.9 24 4.9 24 9.4 24 14.0 999.9 38.3* 23.4* 99.99 999.9 001000 724050 13743 19460128 24.7 24 15.0 24 1028.2 24 1027.5 24 3.1 24 4.3 24 9.9 999.9 43.3* 12.4* 0.00I 999.9 000000 724050 13743 19460129 37.7 24 21.0 24 1029.4 24 1028.7 24 6.5 24 7.1 24 19.0 999.9 45.3* 31.3* 0.00I 999.9 000000 724050 13743 19460130 39.6 24 29.4 24 1024.7 24 1024.0 24 4.9 24 6.9 24 9.9 999.9 42.4* 38.3* 99.99 999.9 110000 724050 13743 19460131 49.0 24 44.7 24 1006.6 24 1005.9 24 5.3 24 8.9 24 16.9 999.9 54.3* 43.3* 99.99 999.9 110000 724050 13743 19460201 42.2 5 20.2 5 1007.7 5 1007.0 5 10.3 5 20.6 5 26.0 999.9 45.3* 37.4* 0.00I 999.9 000000 724050 13743 19460601 76.8 19 68.0 19 1010.3 19 1009.6 19 10.2 19 10.1 19 21.0 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19460602 67.4 24 62.9 24 1007.4 24 1006.6 24 8.7 24 11.6 24 29.9 999.9 74.3* 58.3* 99.99 999.9 110000 724050 13743 19460603 66.2 24 55.4 24 1015.8 24 1015.0 24 12.8 24 7.4 24 9.9 999.9 76.3* 58.3* 0.00I 999.9 000000 724050 13743 19460604 63.8 24 58.1 24 1016.3 24 1015.6 24 8.7 24 8.6 24 13.0 999.9 71.2* 54.3* 99.99 999.9 110000 724050 13743 19460605 62.6 24 50.5 24 1019.5 24 1019.0 24 11.8 24 9.7 24 21.0 999.9 72.3* 53.4* 0.00I 999.9 000000 724050 13743 19460606 64.3 24 52.5 24 1020.1 24 1019.3 24 9.5 24 6.1 24 15.9 999.9 73.4* 53.4* 99.99 999.9 010000 724050 13743 19460607 72.1 24 57.7 24 1015.5 24 1014.8 24 8.3 24 8.9 24 22.9 999.9 87.3* 59.4* 0.00I 999.9 000000 724050 13743 19460608 80.3 24 63.7 24 1013.4 23 1013.0 23 10.7 24 8.9 24 16.9 999.9 93.4* 69.3* 0.00I 999.9 000000 724050 13743 19460609 80.2 24 64.7 23 1015.9 24 1015.3 24 10.5 24 8.4 24 18.1 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19460610 69.4 23 51.4 23 1027.0 23 1026.4 23 13.7 23 8.0 23 15.0 999.9 79.3* 58.3* 0.00I 999.9 000000 724050 13743 19460611 73.6 23 56.4 23 1020.6 23 1020.1 23 11.9 23 11.2 23 19.0 999.9 90.3* 60.3* 0.00I 999.9 000000 724050 13743 19460612 79.8 24 69.8 24 1012.3 24 1012.1 24 9.0 24 7.3 24 9.9 999.9 85.3* 73.4* 99.99 999.9 010000 724050 13743 19460613 78.0 24 68.1 24 1011.3 24 1010.5 24 11.6 24 9.6 24 16.9 999.9 89.2* 71.2* 99.99 999.9 010000 724050 13743 19460614 72.2 24 64.1 24 1018.6 24 1018.0 24 7.6 24 6.0 24 12.0 999.9 80.2* 67.3* 99.99 999.9 010000 724050 13743 19460615 63.4 24 56.0 24 1024.5 24 1023.9 24 8.7 24 8.7 24 14.0 999.9 70.3* 59.4* 0.00I 999.9 000000 724050 13743 19460616 69.8 24 56.0 24 1025.8 24 1025.2 24 10.7 24 6.5 24 9.9 999.9 79.3* 61.3* 0.00I 999.9 000000 724050 13743 19460617 73.2 24 63.9 24 1018.1 24 1017.4 24 9.3 24 9.4 24 15.9 999.9 84.4* 65.3* 0.00I 999.9 000000 724050 13743 19460618 81.2 24 70.7 24 1011.2 24 1010.5 24 8.8 24 8.0 24 22.0 999.9 94.3* 72.3* 0.00I 999.9 000000 724050 13743 19460619 67.4 24 61.0 24 1017.9 24 1017.3 24 7.1 24 11.2 24 16.9 999.9 84.4* 60.3* 99.99 999.9 110000 724050 13743 19460620 62.9 24 59.0 24 1019.7 24 1019.2 24 9.0 24 7.0 24 9.9 999.9 69.3* 59.4* 99.99 999.9 110000 724050 13743 19460621 72.3 24 67.1 24 1014.9 24 1014.2 24 5.5 24 6.6 24 15.9 999.9 85.3* 68.4* 99.99 999.9 110000 724050 13743 19460622 73.2 24 64.9 24 1019.2 24 1018.7 24 9.7 24 7.6 24 15.9 999.9 81.3* 63.3* 0.00I 999.9 000000 724050 13743 19460623 73.3 24 54.6 24 1023.5 24 1022.8 24 10.8 24 6.1 24 12.0 999.9 85.3* 62.4* 0.00I 999.9 000000 724050 13743 19460624 74.2 24 58.2 24 1021.5 24 1020.1 24 8.6 24 3.5 24 8.9 999.9 90.3* 60.3* 0.00I 999.9 000000 724050 13743 19460625 78.1 24 60.7 24 1019.2 24 1018.5 24 8.4 24 4.3 24 14.0 999.9 92.3* 64.4* 0.00I 999.9 000000 724050 13743 19460626 79.9 24 64.0 24 1019.5 24 1018.8 24 8.3 24 7.6 24 13.0 999.9 91.2* 68.4* 0.00I 999.9 000000 724050 13743 19460627 78.6 24 67.0 24 1021.2 24 1020.1 24 9.7 24 9.4 24 15.9 999.9 87.3* 70.3* 0.00I 999.9 000000 724050 13743 19460628 79.0 24 68.6 24 1020.3 24 1019.6 24 8.7 24 7.7 24 9.9 999.9 88.3* 71.2* 99.99 999.9 010010 724050 13743 19460629 76.6 24 67.4 24 1019.7 24 1019.0 24 9.6 24 7.5 24 13.0 999.9 88.3* 68.4* 99.99 999.9 010010 724050 13743 19460630 76.3 24 69.5 24 1018.3 24 1017.7 24 10.5 24 6.8 24 12.0 999.9 87.3* 69.3* 99.99 999.9 010000 724050 13743 19460701 78.7 24 70.4 24 1015.6 24 1014.9 24 11.5 24 9.6 24 15.0 999.9 87.3* 72.3* 0.00I 999.9 000000 724050 13743 19460702 75.7 24 70.1 24 1014.0 24 1013.2 24 10.2 24 8.3 24 16.9 999.9 81.3* 70.3* 99.99 999.9 010000 724050 13743 19460703 73.8 24 61.5 23 1017.3 24 1016.6 24 10.5 24 6.2 24 12.0 999.9 83.3* 66.4* 0.00I 999.9 000000 724050 13743 19460704 74.1 24 63.1 19 1021.7 24 1020.9 24 9.9 24 6.8 24 11.1 999.9 82.4* 64.4* 0.00I 999.9 000000 724050 13743 19460705 71.5 24 58.8 24 1023.2 24 1022.6 24 12.4 24 6.5 24 16.9 999.9 78.3* 62.4* 99.99 999.9 010000 724050 13743 19460706 76.2 24 68.1 24 1019.0 24 1018.2 24 10.7 24 6.4 24 11.1 999.9 86.4* 69.3* 99.99 999.9 110010 724050 13743 19460707 81.1 23 71.4 23 1013.5 23 1012.9 23 8.8 23 5.3 23 14.0 999.9 92.3* 73.4* 0.00I 999.9 100000 724050 13743 19460708 83.8 24 70.0 24 1015.7 24 1015.5 24 5.4 24 4.7 24 14.0 999.9 97.3* 71.2* 0.00I 999.9 000000 724050 13743 19460709 78.2 24 72.8 24 1014.7 24 1014.1 24 5.9 24 5.0 24 9.9 999.9 85.3* 71.2* 99.99 999.9 110000 724050 13743 19460710 78.3 24 68.9 24 1014.4 24 1013.8 24 6.1 24 3.7 24 9.9 999.9 90.3* 69.3* 0.00I 999.9 100000 724050 13743 19460711 80.0 24 70.8 24 1014.6 24 1014.0 24 9.0 24 5.8 24 8.9 999.9 88.3* 74.3* 0.00I 999.9 100000 724050 13743 19460712 78.4 24 70.3 24 1013.0 24 1012.9 24 9.4 24 6.5 24 9.9 999.9 86.4* 73.4* 99.99 999.9 010000 724050 13743 19460713 79.2 24 64.8 24 1015.1 24 1014.7 24 11.4 24 8.4 24 12.0 999.9 89.2* 69.3* 99.99 999.9 010010 724050 13743 19460714 79.3 24 66.5 24 1015.6 24 1015.0 24 8.8 24 4.7 24 15.9 999.9 89.2* 66.4* 0.00I 999.9 000000 724050 13743 19460715 77.6 24 68.6 24 1014.9 24 1014.4 24 7.6 24 7.4 24 12.0 999.9 87.3* 65.3* 99.99 999.9 010000 724050 13743 19460716 69.2 24 55.6 24 1021.4 24 1020.8 24 10.0 24 7.9 24 12.0 999.9 80.2* 60.3* 0.00I 999.9 000000 724050 13743 19460717 72.7 24 55.5 24 1020.9 24 1020.2 24 11.6 24 5.8 24 8.9 999.9 87.3* 58.3* 0.00I 999.9 000000 724050 13743 19460718 76.3 24 57.6 24 1017.5 24 1016.4 24 10.4 24 6.2 24 8.9 999.9 90.3* 61.3* 0.00I 999.9 000000 724050 13743 19460719 79.7 24 63.1 24 1016.1 24 1016.4 24 10.0 24 8.3 24 15.9 999.9 92.3* 66.4* 0.00I 999.9 000000 724050 13743 19460720 82.8 24 69.5 24 1013.4 24 1012.8 24 8.2 24 8.5 24 15.9 999.9 96.3* 75.4* 99.99 999.9 110010 724050 13743 19460721 77.2 24 70.5 24 1013.7 24 1013.0 24 6.5 24 6.8 24 12.0 999.9 93.4* 70.3* 99.99 999.9 110010 724050 13743 19460722 75.4 24 69.6 24 1013.4 24 1012.7 24 5.5 24 6.7 24 8.9 999.9 87.3* 71.2* 99.99 999.9 110010 724050 13743 19460723 74.1 24 70.3 24 1014.3 24 1013.5 24 7.1 24 7.5 24 9.9 999.9 80.2* 70.3* 99.99 999.9 110000 724050 13743 19460724 80.5 24 70.6 24 1017.0 24 1016.3 24 9.6 24 3.6 24 9.9 999.9 92.3* 70.3* 0.00I 999.9 100000 724050 13743 19460725 81.3 24 72.8 24 1014.7 24 1014.1 24 6.2 24 4.0 24 11.1 999.9 90.3* 74.3* 99.99 999.9 010010 724050 13743 19460726 73.6 24 57.6 24 1018.1 24 1017.3 24 10.5 24 9.7 24 16.9 999.9 82.4* 68.4* 99.99 999.9 110000 724050 13743 19460727 72.0 24 53.7 24 1021.8 24 1021.0 24 11.4 24 7.0 24 9.9 999.9 83.3* 60.3* 0.00I 999.9 000000 724050 13743 19460728 73.1 24 56.7 24 1023.1 24 1022.2 24 10.1 24 4.1 24 9.9 999.9 83.3* 60.3* 0.00I 999.9 000000 724050 13743 19460729 74.2 24 56.8 24 1021.4 24 1020.8 24 9.9 24 6.4 24 9.9 999.9 86.4* 61.3* 0.00I 999.9 000000 724050 13743 19460730 75.3 24 62.1 24 1018.7 24 1018.1 24 10.8 24 7.8 24 11.1 999.9 87.3* 62.4* 0.00I 999.9 000000 724050 13743 19460731 75.7 24 66.2 24 1016.4 24 1015.7 24 9.3 24 6.6 24 9.9 999.9 85.3* 65.3* 0.00I 999.9 000000 724050 13743 19460801 74.2 24 67.5 24 1015.2 24 1014.5 24 7.9 24 7.1 24 8.9 999.9 80.2* 70.3* 99.99 999.9 110000 724050 13743 19460802 71.3 24 65.2 24 1018.1 24 1017.5 24 6.8 24 7.9 24 12.0 999.9 77.4* 65.3* 99.99 999.9 010010 724050 13743 19460803 72.6 24 64.9 24 1017.5 24 1016.8 24 6.6 24 4.8 24 12.0 999.9 83.3* 63.3* 0.00I 999.9 100000 724050 13743 19460804 77.7 24 68.5 24 1014.4 24 1013.9 24 8.1 24 6.1 24 9.9 999.9 88.3* 67.3* 0.00I 999.9 100000 724050 13743 19460805 81.2 24 71.2 24 1011.3 24 1010.8 24 8.2 24 7.2 24 9.9 999.9 92.3* 70.3* 0.00I 999.9 100000 724050 13743 19460806 77.4 24 70.8 24 1010.7 24 1010.2 24 7.4 24 8.7 24 39.0 999.9 89.2* 70.3* 99.99 999.9 010010 724050 13743 19460807 70.3 24 66.4 24 1009.1 24 1008.4 24 5.7 24 10.1 24 15.9 999.9 73.4* 66.4* 99.99 999.9 110010 724050 13743 19460808 74.4 24 63.1 24 1013.2 24 1012.5 24 10.4 24 7.8 24 9.9 999.9 89.2* 65.3* 0.00I 999.9 100000 724050 13743 19460809 76.5 24 65.0 24 1014.6 24 1013.9 24 8.3 24 7.3 24 16.9 999.9 90.3* 68.4* 0.00I 999.9 000000 724050 13743 19460810 80.2 24 70.4 24 1008.3 24 1007.7 24 9.5 24 8.5 24 13.0 999.9 91.2* 73.4* 0.00I 999.9 000010 724050 13743 19460811 75.6 24 61.4 24 1011.6 24 1011.1 24 12.9 24 6.6 24 15.0 999.9 81.3* 68.4* 0.00I 999.9 000000 724050 13743 19460812 71.9 23 59.7 23 1016.6 23 1015.8 23 8.3 23 5.1 23 11.1 999.9 80.2* 64.4* 0.00I 999.9 000000 724050 13743 19460813 71.0 24 61.5 24 1018.4 24 1017.7 24 8.1 24 5.5 24 9.9 999.9 83.3* 62.4* 0.00I 999.9 000000 724050 13743 19460814 71.8 23 58.2 23 1021.7 23 1021.0 23 7.9 23 7.9 23 13.0 999.9 81.3* 61.3* 0.00I 999.9 000000 724050 13743 19460815 71.0 24 62.0 24 1026.3 24 1025.6 24 8.2 24 6.8 24 9.9 999.9 82.4* 60.3* 0.00I 999.9 100000 724050 13743 19460816 72.6 24 66.2 24 1024.0 23 1023.3 23 6.6 24 9.2 24 15.0 999.9 75.4* 68.4* 99.99 999.9 110000 724050 13743 19460817 79.3 24 72.0 24 1015.7 23 1014.9 23 6.7 24 5.2 24 11.1 999.9 90.3* 71.2* 99.99 999.9 110000 724050 13743 19460818 78.9 23 73.4 23 1008.8 23 1008.2 23 7.2 23 7.4 23 11.1 999.9 84.4* 73.4* 0.00I 999.9 100000 724050 13743 19460819 78.7 24 69.2 24 1009.9 24 1009.3 24 6.4 24 6.8 24 9.9 999.9 90.3* 70.3* 0.00I 999.9 100000 724050 13743 19460820 76.5 24 64.8 24 1013.9 24 1013.2 24 10.8 24 7.6 24 16.9 999.9 89.2* 67.3* 99.99 999.9 010010 724050 13743 19460821 74.7 24 64.8 24 1016.9 24 1016.2 24 7.7 24 5.0 24 11.1 999.9 82.4* 68.4* 0.00I 999.9 000000 724050 13743 19460822 74.2 24 65.4 24 1017.2 24 1016.6 24 7.4 24 4.7 24 9.9 999.9 87.3* 64.4* 0.00I 999.9 100000 724050 13743 19460823 70.0 24 61.2 24 1017.6 24 1016.9 24 7.0 24 8.7 24 12.0 999.9 78.3* 64.4* 99.99 999.9 010010 724050 13743 19460824 68.3 24 54.9 24 1020.5 24 1019.8 24 10.9 24 6.8 24 11.1 999.9 78.3* 59.4* 0.00I 999.9 100000 724050 13743 19460825 67.4 24 56.3 24 1019.1 24 1018.5 24 8.2 24 5.3 24 9.9 999.9 75.4* 59.4* 0.00I 999.9 000000 724050 13743 19460826 69.0 24 57.0 24 1019.0 24 1018.4 24 10.7 24 6.1 24 9.9 999.9 79.3* 60.3* 0.00I 999.9 000000 724050 13743 19460827 68.7 24 55.7 24 1017.1 24 1016.3 24 11.1 24 7.5 24 12.0 999.9 80.2* 59.4* 0.00I 999.9 000000 724050 13743 19460828 71.5 24 60.1 24 1015.5 24 1015.0 24 9.8 24 6.8 24 12.0 999.9 85.3* 60.3* 0.00I 999.9 000000 724050 13743 19460829 74.4 24 68.1 24 1012.9 24 1012.2 24 8.1 24 9.4 24 15.9 999.9 78.3* 70.3* 99.99 999.9 010000 724050 13743 19460830 66.0 24 53.2 24 1015.4 24 1014.7 24 10.8 24 9.7 24 13.0 999.9 74.3* 59.4* 99.99 999.9 010010 724050 13743 19460831 64.2 24 52.0 24 1015.3 24 1014.7 24 11.4 24 7.0 24 12.0 999.9 75.4* 53.4* 0.00I 999.9 000000 724050 13743 19460901 66.4 24 55.2 24 1019.1 24 1018.4 24 8.2 24 3.9 24 9.9 999.9 81.3* 54.3* 0.00I 999.9 000000 724050 13743 19460902 72.0 24 59.5 24 1017.6 24 1017.0 24 8.5 24 6.2 24 11.1 999.9 86.4* 61.3* 0.00I 999.9 000000 724050 13743 19460903 70.3 24 55.6 24 1019.4 24 1018.8 24 10.9 24 8.2 24 14.0 999.9 78.3* 63.3* 99.99 999.9 010000 724050 13743 19460904 64.6 24 49.2 24 1023.7 24 1023.0 24 9.6 24 7.5 24 9.9 999.9 75.4* 55.4* 0.00I 999.9 000000 724050 13743 19460905 64.7 24 54.7 24 1026.3 24 1025.7 24 6.8 24 7.2 24 13.0 999.9 74.3* 56.3* 0.00I 999.9 000000 724050 13743 19460906 67.3 24 59.9 24 1026.3 24 1025.6 24 7.1 24 4.8 24 9.9 999.9 78.3* 59.4* 99.99 999.9 110000 724050 13743 19460907 74.0 24 65.1 24 1021.8 24 1021.2 24 7.6 24 4.4 24 8.9 999.9 85.3* 66.4* 0.00I 999.9 100000 724050 13743 19460908 78.1 24 69.4 24 1019.9 24 1019.3 24 7.6 24 5.7 24 9.9 999.9 91.2* 67.3* 0.00I 999.9 100000 724050 13743 19460909 80.9 24 72.0 24 1019.5 24 1018.8 24 7.8 24 3.4 24 9.9 999.9 95.4* 70.3* 0.00I 999.9 100000 724050 13743 19460910 82.8 24 71.7 24 1016.0 24 1015.2 24 10.9 24 9.3 24 14.0 999.9 91.2* 74.3* 0.00I 999.9 000000 724050 13743 19460911 79.2 24 66.6 24 1012.5 24 1011.8 24 11.2 24 9.4 24 16.9 999.9 83.3* 72.3* 99.99 999.9 010000 724050 13743 19460912 70.9 24 57.3 24 1018.9 24 1018.0 24 8.7 24 7.3 24 12.0 999.9 80.2* 61.3* 0.00I 999.9 000000 724050 13743 19460913 66.7 24 56.8 24 1024.2 24 1023.4 24 8.9 24 9.6 24 19.0 999.9 77.4* 60.3* 0.00I 999.9 100000 724050 13743 19460914 61.5 24 47.2 24 1022.3 24 1021.6 24 10.7 24 7.4 24 11.1 999.9 74.3* 51.3* 0.00I 999.9 000000 724050 13743 19460915 64.5 24 52.0 24 1021.9 24 1021.2 24 10.3 24 4.5 24 12.0 999.9 79.3* 53.4* 0.00I 999.9 100000 724050 13743 19460916 65.8 24 52.5 24 1022.3 24 1021.6 24 9.0 24 4.4 24 9.9 999.9 83.3* 53.4* 0.00I 999.9 000000 724050 13743 19460917 68.3 24 55.3 24 1021.7 24 1021.1 24 6.4 24 2.9 24 8.9 999.9 86.4* 52.3* 99.99 999.9 110000 724050 13743 19460918 71.2 24 59.3 24 1023.6 24 1023.0 24 6.6 24 3.9 24 12.0 999.9 85.3* 60.3* 0.00I 999.9 100000 724050 13743 19460919 68.9 24 60.4 24 1025.9 24 1025.3 24 5.6 24 2.0 24 8.0 999.9 82.4* 57.4* 0.00I 999.9 000000 724050 13743 19460920 68.6 24 64.7 24 1018.5 24 1018.0 24 3.3 24 3.4 24 8.9 999.9 79.3* 60.3* 99.99 999.9 110000 724050 13743 19460921 72.4 24 67.4 24 1011.5 24 1010.8 24 8.4 24 5.1 24 12.0 999.9 82.4* 67.3* 99.99 999.9 110000 724050 13743 19460922 76.0 24 70.3 24 1014.7 24 1014.0 24 6.3 24 4.5 24 8.9 999.9 86.4* 68.4* 99.99 999.9 110000 724050 13743 19460923 76.1 24 71.9 24 1019.7 24 1018.9 24 7.6 24 6.5 24 13.0 999.9 80.2* 72.3* 99.99 999.9 010010 724050 13743 19460924 73.9 24 71.5 24 1017.6 24 1016.8 24 6.6 24 7.3 24 12.0 999.9 78.3* 70.3* 99.99 999.9 110010 724050 13743 19460925 73.3 24 62.8 24 1016.3 24 1015.6 24 8.8 24 6.0 24 12.0 999.9 83.3* 67.3* 99.99 999.9 110000 724050 13743 19460926 69.6 24 59.3 24 1016.0 24 1015.4 24 6.7 24 4.6 24 9.9 999.9 83.3* 59.4* 0.00I 999.9 100000 724050 13743 19460927 69.9 24 59.8 24 1020.6 24 1020.0 24 4.7 24 3.5 24 8.9 999.9 85.3* 59.4* 0.00I 999.9 100000 724050 13743 19460928 69.5 24 64.6 24 1024.1 24 1023.3 24 4.2 24 3.2 24 8.0 999.9 77.4* 63.3* 99.99 999.9 110000 724050 13743 19460929 70.3 24 66.8 24 1020.3 24 1019.7 24 5.5 24 3.2 24 8.0 999.9 75.4* 65.3* 99.99 999.9 110000 724050 13743 19460930 65.3 24 56.0 24 1011.6 24 1010.9 24 10.2 24 14.0 24 28.0 999.9 70.3* 60.3* 99.99 999.9 110000 724050 13743 19461001 53.8 24 37.7 24 1013.5 24 1012.8 24 13.0 24 14.1 24 39.0 999.9 59.4* 48.4* 0.00I 999.9 000000 724050 13743 19461002 56.0 24 38.4 24 1017.1 24 1016.4 24 12.7 24 8.7 24 14.0 999.9 69.3* 47.3* 0.00I 999.9 000000 724050 13743 19461003 60.3 24 47.9 24 1021.9 24 1021.3 24 8.5 24 3.7 24 8.9 999.9 77.4* 47.3* 0.00I 999.9 000000 724050 13743 19461004 63.9 24 53.5 24 1024.3 24 1023.7 24 4.9 24 1.7 24 5.1 999.9 84.4* 51.3* 0.00I 999.9 000000 724050 13743 19461005 66.1 24 55.1 24 1027.0 24 1026.3 24 5.8 24 2.9 24 7.0 999.9 81.3* 54.3* 0.00I 999.9 100000 724050 13743 19461006 67.5 24 55.8 24 1024.9 24 1024.3 24 6.2 24 2.9 24 8.9 999.9 85.3* 53.4* 0.00I 999.9 100000 724050 13743 19461007 68.5 24 56.7 24 1017.2 24 1016.6 24 5.5 24 2.0 24 6.0 999.9 85.3* 54.3* 0.00I 999.9 100000 724050 13743 19461008 66.7 24 58.3 24 1011.9 24 1011.3 24 4.7 24 5.4 24 16.9 999.9 77.4* 58.3* 99.99 999.9 110000 724050 13743 19461009 57.8 24 54.5 24 1011.4 24 1010.7 24 5.4 24 10.3 24 16.9 999.9 62.4* 54.3* 99.99 999.9 110000 724050 13743 19461010 57.8 24 56.6 24 1010.0 24 1009.4 24 2.5 24 7.7 24 11.1 999.9 62.4* 54.3* 99.99 999.9 110000 724050 13743 19461011 62.4 24 59.6 24 1014.1 24 1013.4 24 2.9 24 4.5 24 7.0 999.9 69.3* 59.4* 99.99 999.9 110000 724050 13743 19461012 68.0 24 63.8 24 1010.1 24 1009.5 24 4.8 24 8.7 24 26.0 999.9 78.3* 59.4* 99.99 999.9 110010 724050 13743 19461013 53.3 24 40.3 24 1021.7 24 1021.1 24 14.9 24 10.7 24 18.1 999.9 61.3* 45.3* 0.00I 999.9 000000 724050 13743 19461014 53.3 24 38.5 24 1026.5 24 1025.8 24 10.9 24 4.9 24 12.0 999.9 63.3* 44.4* 0.00I 999.9 000000 724050 13743 19461015 53.7 24 43.2 24 1026.6 24 1026.0 24 5.7 24 3.8 24 9.9 999.9 68.4* 42.4* 0.00I 999.9 000000 724050 13743 19461016 55.5 24 45.3 24 1024.0 24 1023.4 24 6.0 24 3.1 24 8.9 999.9 70.3* 44.4* 0.00I 999.9 000000 724050 13743 19461017 61.8 24 50.0 24 1015.7 24 1015.0 24 7.9 24 5.3 24 8.9 999.9 77.4* 54.3* 0.00I 999.9 000000 724050 13743 19461018 65.6 24 53.8 24 1006.2 24 1005.5 24 10.1 24 9.7 24 16.9 999.9 73.4* 60.3* 99.99 999.9 010000 724050 13743 19461019 62.2 24 47.2 24 1014.9 24 1014.2 24 12.1 24 9.1 24 16.9 999.9 68.4* 54.3* 0.00I 999.9 000000 724050 13743 19461020 51.8 24 47.2 24 1022.1 24 1021.5 24 4.0 24 4.5 24 9.9 999.9 59.4* 49.3* 99.99 999.9 110000 724050 13743 19461021 52.6 24 47.8 24 1025.5 24 1024.8 24 4.3 24 6.5 24 9.9 999.9 61.3* 48.4* 99.99 999.9 110000 724050 13743 19461022 53.8 24 46.8 24 1025.7 24 1025.1 24 6.1 24 3.3 24 8.9 999.9 69.3* 44.4* 0.00I 999.9 000000 724050 13743 19461023 55.1 24 47.6 24 1022.7 24 1022.2 24 4.4 24 2.5 24 7.0 999.9 72.3* 43.3* 0.00I 999.9 100000 724050 13743 19461024 59.3 24 51.0 24 1019.8 24 1019.2 24 4.3 24 4.1 24 8.9 999.9 77.4* 48.4* 0.00I 999.9 100000 724050 13743 19461025 63.4 24 54.1 24 1014.9 24 1014.2 24 9.0 24 9.2 24 16.9 999.9 76.3* 54.3* 0.00I 999.9 000000 724050 13743 19461026 64.7 24 57.1 24 1014.6 24 1013.9 24 10.0 24 8.6 24 15.9 999.9 71.2* 57.4* 99.99 999.9 010000 724050 13743 19461027 61.8 24 56.1 24 1026.0 24 1025.3 24 5.9 24 3.3 24 9.9 999.9 76.3* 52.3* 0.00I 999.9 100000 724050 13743 19461028 68.1 24 65.0 24 1030.1 24 1029.5 24 5.2 24 3.3 24 7.0 999.9 75.4* 64.4* 99.99 999.9 110000 724050 13743 19461029 70.5 24 63.7 24 1025.6 24 1024.9 24 10.3 24 5.9 24 8.9 999.9 79.3* 65.3* 0.00I 999.9 000000 724050 13743 19461030 70.0 24 61.0 24 1020.0 24 1019.3 24 7.2 24 4.4 24 8.9 999.9 82.4* 60.3* 0.00I 999.9 100000 724050 13743 19461031 71.8 24 59.4 24 1015.8 24 1015.1 24 9.0 24 6.9 24 14.0 999.9 85.3* 61.3* 0.00I 999.9 000000 724050 13743 19461101 65.5 24 50.9 24 1019.8 24 1019.1 24 11.0 24 7.5 24 13.0 999.9 76.3* 61.3* 0.00I 999.9 000000 724050 13743 19461102 63.9 24 54.7 24 1020.0 24 1019.3 24 10.9 24 4.3 24 8.9 999.9 74.3* 50.4* 0.00I 999.9 000000 724050 13743 19461103 65.3 24 62.1 24 1017.4 24 1016.7 24 4.1 24 6.0 24 11.1 999.9 69.3* 62.4* 99.99 999.9 110000 724050 13743 19461104 66.6 24 60.7 24 1014.9 24 1014.3 24 5.5 24 6.9 24 16.9 999.9 77.4* 60.3* 99.99 999.9 110000 724050 13743 19461105 56.3 24 40.4 24 1022.2 24 1021.5 24 11.4 24 11.5 24 15.9 999.9 65.3* 51.3* 0.00I 999.9 000000 724050 13743 19461106 52.4 24 36.7 24 1025.2 24 1024.5 24 10.8 24 4.9 24 9.9 999.9 63.3* 45.3* 0.00I 999.9 000000 724050 13743 19461107 53.1 24 42.3 24 1016.4 24 1015.6 24 5.1 24 4.0 24 8.9 999.9 60.3* 46.4* 99.99 999.9 010000 724050 13743 19461108 60.9 23 53.8 23 1005.8 23 1005.1 23 6.1 23 6.0 23 19.0 999.9 73.4* 55.4* 99.99 999.9 110000 724050 13743 19461109 56.1 24 40.3 24 1014.1 24 1013.3 24 12.2 24 12.2 24 22.0 999.9 67.3* 50.4* 0.00I 999.9 000000 724050 13743 19461110 51.6 24 42.1 24 1020.4 24 1019.7 24 8.1 24 5.0 24 9.9 999.9 64.4* 41.4* 0.00I 999.9 100000 724050 13743 19461111 60.4 24 55.6 24 1016.2 24 1015.5 24 7.7 24 7.0 24 19.0 999.9 68.4* 55.4* 99.99 999.9 010000 724050 13743 19461112 55.3 24 42.7 24 1019.9 24 1019.1 24 9.5 24 14.6 24 22.0 999.9 65.3* 47.3* 99.99 999.9 010000 724050 13743 19461113 44.8 24 32.5 24 1021.9 24 1021.1 24 10.0 24 9.0 24 16.9 999.9 52.3* 36.3* 0.00I 999.9 000000 724050 13743 19461114 46.8 24 35.2 24 1016.6 24 1015.9 24 8.2 24 10.8 24 20.0 999.9 58.3* 39.4* 0.00I 999.9 000000 724050 13743 19461115 46.1 24 33.1 22 1022.3 24 1021.6 24 10.3 24 7.9 24 14.0 999.9 53.4* 37.4* 0.00I 999.9 000000 724050 13743 19461116 42.0 24 33.5 24 1029.6 24 1028.8 24 6.1 24 6.4 24 8.9 999.9 54.3* 32.4* 0.00I 999.9 100000 724050 13743 19461117 50.0 24 44.5 24 1028.9 24 1028.1 24 5.2 24 7.7 24 9.9 999.9 55.4* 46.4* 99.99 999.9 110000 724050 13743 19461118 45.8 24 32.7 24 1033.1 24 1032.6 24 11.3 24 12.1 24 19.0 999.9 55.4* 37.4* 99.99 999.9 110000 724050 13743 19461119 42.9 24 30.6 24 1032.4 24 1031.6 24 6.4 24 7.1 24 9.9 999.9 57.4* 33.4* 0.00I 999.9 000000 724050 13743 19461120 44.9 24 38.9 24 1026.3 24 1025.4 24 4.0 24 3.6 24 8.0 999.9 62.4* 35.4* 0.00I 999.9 100000 724050 13743 19461121 47.6 24 44.5 24 1023.7 24 1022.9 24 3.4 24 3.8 24 8.9 999.9 62.4* 35.4* 0.00I 999.9 100000 724050 13743 19461122 56.9 24 52.7 23 1015.6 24 1014.9 24 8.6 24 10.7 24 22.0 999.9 63.3* 52.3* 99.99 999.9 110000 724050 13743 19461123 41.1 24 30.3 24 1021.1 24 1020.4 24 13.0 24 13.4 24 19.0 999.9 50.4* 32.4* 0.00I 999.9 000000 724050 13743 19461124 40.4 24 32.8 24 1023.7 24 1023.0 24 7.8 24 7.2 24 12.0 999.9 55.4* 28.4* 0.00I 999.9 000000 724050 13743 19461125 54.4 24 45.6 14 1018.3 24 1017.6 24 9.6 24 8.8 24 12.0 999.9 66.4* 42.4* 0.00I 999.9 000000 724050 13743 19461126 61.3 24 58.7 24 1015.5 24 1014.8 24 5.9 24 9.6 24 13.0 999.9 69.3* 56.3* 0.00I 999.9 100000 724050 13743 19461127 59.8 24 49.2 24 1015.6 24 1014.8 24 10.9 24 9.2 24 14.0 999.9 69.3* 51.3* 99.99 999.9 010000 724050 13743 19461128 48.1 24 29.5 24 1024.6 24 1023.8 24 13.3 24 10.4 24 15.9 999.9 55.4* 41.4* 0.00I 999.9 000000 724050 13743 19461129 50.3 24 35.5 24 1021.7 24 1020.9 24 11.1 24 9.0 24 13.0 999.9 58.3* 43.3* 0.00I 999.9 000000 724050 13743 19461130 45.1 24 36.6 24 1025.9 24 1025.2 24 9.3 24 5.4 24 8.9 999.9 58.3* 35.4* 0.00I 999.9 000000 724050 13743 19461201 50.4 23 43.8 23 1013.8 23 1013.0 23 5.5 23 10.4 23 22.9 999.9 61.3* 44.4* 0.00I 999.9 100000 724050 13743 19461202 30.0 24 14.1 24 1026.8 23 1026.0 23 14.4 24 22.6 24 29.9 999.9 43.3* 22.5* 99.99 999.9 001000 724050 13743 19461203 26.7 24 15.3 24 1035.7 24 1035.0 24 11.3 24 8.2 24 12.0 999.9 32.4* 20.3* 0.00I 999.9 000000 724050 13743 19461204 34.2 24 18.4 24 1030.6 24 1029.9 24 8.9 24 6.5 24 9.9 999.9 48.4* 24.4* 0.00I 999.9 000000 724050 13743 19461205 37.8 24 24.7 24 1025.9 24 1025.2 24 4.3 24 4.4 24 9.9 999.9 55.4* 26.4* 0.00I 999.9 000000 724050 13743 19461206 43.3 24 33.6 24 1025.5 24 1024.8 24 3.1 24 4.5 24 8.9 999.9 52.3* 34.3* 0.00I 999.9 000000 724050 13743 19461207 46.2 24 39.2 24 1029.0 24 1028.2 24 5.1 24 5.0 24 8.0 999.9 60.3* 41.4* 0.00I 999.9 000000 724050 13743 19461208 42.5 24 37.0 24 1027.0 24 1026.3 24 3.3 24 3.1 24 7.0 999.9 57.4* 33.4* 0.00I 999.9 000000 724050 13743 19461209 46.5 24 40.9 24 1024.9 24 1024.1 24 2.1 24 2.6 24 8.0 999.9 66.4* 34.3* 0.00I 999.9 100000 724050 13743 19461210 51.6 24 42.9 24 1017.2 24 1016.5 24 3.3 24 4.9 24 9.9 999.9 66.4* 40.3* 0.00I 999.9 100000 724050 13743 19461211 56.1 24 41.3 24 1013.8 24 1013.0 24 9.7 24 7.8 24 13.0 999.9 63.3* 50.4* 0.00I 999.9 000000 724050 13743 19461212 49.4 24 41.1 24 1013.8 24 1013.0 24 7.7 24 5.5 24 12.0 999.9 59.4* 44.4* 99.99 999.9 010000 724050 13743 19461213 56.0 24 42.3 24 1003.2 24 1002.4 24 12.3 24 15.3 24 26.0 999.9 63.3* 45.3* 99.99 999.9 010000 724050 13743 19461214 41.4 24 21.7 24 1012.4 24 1011.6 24 13.3 24 8.3 24 14.0 999.9 50.4* 34.3* 0.00I 999.9 000000 724050 13743 19461215 38.3 24 23.5 24 1012.3 24 1011.5 24 10.6 24 9.4 24 16.9 999.9 42.4* 34.3* 99.99 999.9 001000 724050 13743 19461216 36.5 24 25.4 24 1018.7 24 1017.8 24 8.7 24 6.6 24 15.9 999.9 42.4* 32.4* 0.00I 999.9 000000 724050 13743 19461217 45.2 24 35.1 24 1016.5 24 1015.8 24 8.0 24 6.2 24 12.0 999.9 58.3* 36.3* 0.00I 999.9 000000 724050 13743 19461218 38.7 24 27.3 24 1020.8 24 1020.0 24 8.4 24 7.7 24 14.0 999.9 51.3* 30.4* 99.99 999.9 011000 724050 13743 19461219 30.5 24 20.4 10 1028.4 24 1027.6 24 8.3 24 7.6 24 13.0 999.9 35.4* 23.4* 0.00I 999.9 000000 724050 13743 19461220 29.8 24 17.5 20 1026.9 24 1026.1 24 4.3 24 7.6 24 12.0 999.9 34.3* 26.4* 99.99 999.9 111000 724050 13743 19461221 35.5 24 34.4 24 1007.5 24 1006.7 24 3.4 24 7.4 24 12.0 999.9 39.4* 33.4* 99.99 999.9 110000 724050 13743 19461222 37.9 24 29.7 24 1015.4 24 1014.7 24 9.2 24 9.4 24 21.0 999.9 43.3* 32.4* 0.00I 999.9 000000 724050 13743 19461223 36.8 24 27.9 24 1023.8 24 1023.0 24 6.7 24 6.5 24 13.0 999.9 46.4* 28.4* 0.00I 999.9 000000 724050 13743 19461224 51.2 24 34.9 24 1013.9 24 1013.2 24 9.4 24 8.4 24 13.0 999.9 59.4* 45.3* 0.00I 999.9 000000 724050 13743 19461225 40.7 24 26.8 24 1015.1 24 1014.4 24 12.6 24 13.3 24 21.0 999.9 51.3* 32.4* 0.00I 999.9 000000 724050 13743 19461226 41.5 24 26.3 24 1014.8 24 1014.1 24 10.8 24 9.2 24 19.0 999.9 55.4* 32.4* 0.00I 999.9 000000 724050 13743 19461227 34.0 24 21.3 24 1024.7 24 1023.9 24 9.7 24 7.4 24 9.9 999.9 46.4* 26.4* 0.00I 999.9 000000 724050 13743 19461228 49.9 24 38.0 24 1010.5 24 1009.8 24 10.4 24 8.4 24 19.0 999.9 74.3* 33.4* 99.99 999.9 010000 724050 13743 19461229 44.3 24 38.8 24 1012.3 24 1011.5 24 5.4 24 9.0 24 14.0 999.9 63.3* 37.4* 99.99 999.9 110000 724050 13743 19461230 40.4 24 33.0 24 1017.4 24 1016.6 24 8.3 24 13.6 24 22.9 999.9 44.4* 34.3* 99.99 999.9 110000 724050 13743 19461231 29.2 24 22.0 24 1031.7 24 1031.0 24 5.5 24 5.2 24 9.9 999.9 33.4* 24.4* 99.99 999.9 001000 fluids-1.0.22/tests/gsod/2001/0000755000175000017500000000000014302004506015062 5ustar nileshnileshfluids-1.0.22/tests/gsod/2001/724050-13743.op0000644000175000017500000014327214302004506016653 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20010101 30.3 24 18.0 24 1022.6 24 9999.9 0 9.9 24 7.6 24 13.0 20.0 37.0 19.0 0.00I 999.9 000000 724050 13743 20010102 29.6 24 16.7 24 1027.6 24 9999.9 0 9.9 24 12.0 24 21.0 27.0 37.0 23.0 0.00G 999.9 000000 724050 13743 20010103 26.1 24 12.8 24 1028.0 24 9999.9 0 9.9 24 7.0 24 11.1 15.9 35.1 19.9 0.00G 999.9 000000 724050 13743 20010104 28.9 24 20.5 24 1018.4 24 9999.9 0 9.9 24 5.7 24 13.0 15.9 37.9 19.9 0.00G 999.9 000000 724050 13743 20010105 28.7 24 24.9 24 1011.9 20 9999.9 0 7.5 24 6.4 24 14.0 999.9 37.9 21.9 0.00G 1.2 101000 724050 13743 20010106 34.9 24 29.2 24 1006.0 24 9999.9 0 8.2 24 7.4 24 14.0 19.0 42.1 21.9 0.05G 1.2 101000 724050 13743 20010107 32.8 24 28.1 24 1011.2 24 9999.9 0 9.9 24 3.8 24 8.0 999.9 42.1 26.1 0.00G 1.2 000000 724050 13743 20010108 35.4 24 30.8 24 1010.0 23 9999.9 0 6.0 24 4.8 24 10.1 999.9 42.1 26.1 0.00G 999.9 110000 724050 13743 20010109 31.9 24 21.2 24 1013.7 23 9999.9 0 9.3 24 13.0 24 20.0 25.1 37.0 28.0 0.20G 999.9 100000 724050 13743 20010110 35.2 24 11.7 24 1018.4 24 9999.9 0 9.9 24 10.5 24 17.1 25.1 48.9 28.0 0.00G 999.9 000000 724050 13743 20010111 38.4 24 21.5 24 1020.1 24 9999.9 0 9.9 24 6.1 24 14.0 999.9 59.0 25.0 0.00G 999.9 000000 724050 13743 20010112 41.3 24 26.4 24 1021.1 24 9999.9 0 9.5 24 6.2 24 12.0 999.9 59.0 25.0 0.00G 999.9 000000 724050 13743 20010113 34.5 24 24.8 24 1027.0 24 9999.9 0 7.8 24 2.9 24 7.0 999.9 46.9 23.0 0.00G 999.9 100000 724050 13743 20010114 35.9 24 28.8 24 1025.7 24 9999.9 0 8.3 24 3.2 24 10.1 999.9 48.0 23.0 0.00G 999.9 110000 724050 13743 20010115 39.6 24 39.1 24 1019.2 18 9999.9 0 3.3 24 2.8 24 7.0 999.9 48.0 28.0 0.02G 999.9 110000 724050 13743 20010116 42.0 24 33.7 24 1018.1 23 9999.9 0 6.6 24 7.5 24 17.1 22.0 48.9 34.0 0.01G 999.9 100000 724050 13743 20010117 39.6 24 27.1 24 1023.9 24 9999.9 0 9.6 24 7.4 24 13.0 19.0 48.9 33.1 0.00G 999.9 000000 724050 13743 20010118 37.3 24 30.6 24 1023.6 23 9999.9 0 8.2 24 4.2 24 8.0 999.9 45.0 33.1 0.00G 999.9 111000 724050 13743 20010119 37.9 24 37.4 24 1014.7 18 9999.9 0 3.4 24 3.1 24 9.9 999.9 41.0 34.0 0.27G 999.9 110000 724050 13743 20010120 37.4 24 37.0 24 1012.8 20 9999.9 0 5.8 24 10.7 24 15.0 19.0 41.0 35.1 0.90G 999.9 110000 724050 13743 20010121 31.0 24 23.5 24 1020.1 21 9999.9 0 6.6 24 12.4 24 22.0 29.9 39.0 26.1 0.25G 1.2 111000 724050 13743 20010122 28.6 24 15.3 24 1032.8 24 9999.9 0 9.9 24 5.9 24 10.1 999.9 36.0 21.0 0.06G 1.2 000000 724050 13743 20010123 30.5 24 22.2 24 1028.0 24 9999.9 0 7.8 24 3.4 24 7.0 999.9 43.0 21.0 0.00G 0.8 100000 724050 13743 20010124 35.0 24 28.3 24 1018.1 24 9999.9 0 7.1 24 2.6 24 10.1 999.9 46.9 21.0 0.00G 999.9 100000 724050 13743 20010125 36.4 24 22.6 24 1018.5 24 9999.9 0 9.8 24 11.4 24 20.0 23.9 46.9 27.0 0.00G 999.9 000000 724050 13743 20010126 30.9 24 16.7 24 1026.0 24 9999.9 0 9.9 24 8.4 24 15.0 19.0 42.1 23.0 0.00G 999.9 000000 724050 13743 20010127 39.6 24 23.7 24 1013.9 24 9999.9 0 9.9 24 11.3 24 25.1 39.0 48.0 23.0 0.00G 999.9 000000 724050 13743 20010128 36.6 24 19.0 24 1025.2 24 9999.9 0 9.9 24 8.0 24 15.0 21.0 48.0 28.0 0.00G 999.9 000000 724050 13743 20010129 36.6 24 23.2 24 1026.7 24 9999.9 0 9.9 24 4.0 24 8.9 999.9 46.9 28.0 0.00G 999.9 000000 724050 13743 20010130 42.0 24 38.7 24 1010.7 18 9999.9 0 6.2 24 4.4 24 8.0 999.9 53.1 30.0 0.41G 999.9 110000 724050 13743 20010131 49.4 24 39.5 24 1003.4 24 9999.9 0 9.4 24 8.6 24 15.9 22.9 57.0 36.0 0.12G 999.9 100000 724050 13743 20010201 43.1 24 31.7 24 1017.5 24 9999.9 0 10.0 24 6.2 24 14.0 19.0 57.0 35.1 0.00G 999.9 000000 724050 13743 20010202 42.7 24 31.4 24 1017.8 24 9999.9 0 9.9 24 6.2 24 27.0 35.0 52.0 35.1 0.00G 999.9 010000 724050 13743 20010203 30.4 24 13.2 24 1024.8 24 9999.9 0 10.0 24 11.5 24 22.9 28.9 39.0* 24.8* 0.02G 999.9 000000 724050 13743 20010204 33.7 24 22.9 24 1027.7 24 9999.9 0 10.0 24 6.0 24 13.0 999.9 45.0 25.0 0.00G 999.9 000000 724050 13743 20010205 38.0 24 35.5 24 1016.9 18 9999.9 0 6.5 24 7.0 24 13.0 999.9 45.0 26.1 0.35G 999.9 111000 724050 13743 20010206 38.9 24 32.9 24 1015.8 24 9999.9 0 9.6 24 6.1 24 8.9 999.9 46.9 33.1 0.29G 999.9 100000 724050 13743 20010207 43.9 24 32.9 24 1023.5 24 9999.9 0 10.0 24 5.9 24 10.1 999.9 54.0 30.9 0.00G 999.9 000000 724050 13743 20010208 42.6 24 34.0 24 1030.6 24 9999.9 0 9.8 24 4.5 24 11.1 999.9 55.9 30.9 0.00G 999.9 000000 724050 13743 20010209 49.6 24 43.3 24 1021.5 24 9999.9 0 8.8 24 7.7 24 20.0 28.9 70.0 33.1 0.00G 999.9 100000 724050 13743 20010210 56.2 24 40.1 24 1013.2 24 9999.9 0 10.0 24 17.3 24 28.0 43.9 70.0 36.0 0.00G 999.9 010000 724050 13743 20010211 33.6 24 14.8 24 1032.3 24 9999.9 0 10.0 24 11.4 24 15.9 21.0 43.0* 26.6* 0.00G 999.9 000000 724050 13743 20010212 33.4 24 19.0 24 1037.6 23 9999.9 0 10.0 24 7.5 24 12.0 999.9 39.9 27.0 0.00G 999.9 000000 724050 13743 20010213 39.4 24 36.8 24 1029.4 24 9999.9 0 7.2 24 3.6 24 9.9 999.9 54.0 30.0 0.06G 999.9 110000 724050 13743 20010214 45.6 24 44.2 24 1021.7 24 9999.9 0 6.3 24 7.9 24 11.1 999.9 54.0 33.1 0.06G 999.9 110000 724050 13743 20010215 49.9 24 49.6 24 1012.0 21 9999.9 0 5.6 24 7.8 24 13.0 999.9 55.0 43.0 0.05G 999.9 110000 724050 13743 20010216 42.8 24 40.6 24 1018.5 23 9999.9 0 6.7 24 4.8 24 7.0 999.9 55.0 39.9 0.07G 999.9 110000 724050 13743 20010217 40.8 24 32.2 24 1016.2 23 9999.9 0 7.9 24 11.8 24 22.9 29.9 45.0* 30.2* 0.60G 999.9 110000 724050 13743 20010218 28.6 24 10.5 24 1030.7 24 9999.9 0 10.0 24 10.9 24 18.1 22.0 45.0 21.0 0.02G 999.9 000000 724050 13743 20010219 34.6 24 20.0 24 1029.8 24 9999.9 0 10.0 24 7.0 24 19.0 25.1 51.1 21.0 0.00G 999.9 000000 724050 13743 20010220 47.6 24 33.0 24 1022.2 24 9999.9 0 10.0 24 9.1 24 14.0 999.9 64.9 24.1 0.00G 999.9 000000 724050 13743 20010221 51.1 24 36.1 24 1018.9 24 9999.9 0 10.0 24 10.7 24 22.9 28.9 64.9 37.0 0.00G 999.9 000000 724050 13743 20010222 26.9 24 14.4 24 1028.8 21 9999.9 0 7.4 24 11.5 24 20.0 21.0 37.0* 23.0* 0.00G 3.1 101000 724050 13743 20010223 30.4 24 25.1 24 1022.7 23 9999.9 0 9.0 24 6.9 24 11.1 999.9 46.9 23.0 0.18G 3.1 101000 724050 13743 20010224 37.4 24 25.0 24 1033.8 24 9999.9 0 9.9 24 7.4 24 14.0 16.9 46.9 23.0 0.00G 3.1 000000 724050 13743 20010225 39.8 24 36.4 24 1025.2 21 9999.9 0 7.7 24 7.5 24 16.9 20.0 53.6* 35.6* 0.00G 999.9 110000 724050 13743 20010226 51.9 24 41.3 24 1017.8 24 9999.9 0 9.3 24 12.7 24 20.0 26.0 55.9 36.0 0.15G 999.9 100000 724050 13743 20010227 44.7 24 33.1 24 1024.5 24 9999.9 0 9.8 24 6.7 24 12.0 999.9 57.9 35.1 0.00G 999.9 000000 724050 13743 20010228 43.4 24 29.9 24 1018.5 24 9999.9 0 9.8 24 9.6 24 19.0 21.0 57.9 35.1 0.00G 999.9 011000 724050 13743 20010301 38.5 24 15.3 24 1013.6 24 9999.9 0 10.0 24 8.2 24 17.1 21.0 50.0 28.0 0.00G 999.9 000000 724050 13743 20010302 46.3 24 22.0 24 1006.4 24 9999.9 0 10.0 24 5.4 24 10.1 16.9 57.9 28.0 0.00G 999.9 000000 724050 13743 20010303 48.4 24 34.8 24 1008.2 24 9999.9 0 9.7 24 5.5 24 10.1 999.9 59.0 36.0 0.00G 999.9 000000 724050 13743 20010304 43.9 24 37.7 24 1011.8 23 9999.9 0 6.5 24 11.1 24 18.1 22.9 51.1* 37.4* 0.00G 999.9 110000 724050 13743 20010305 36.5 24 31.8 24 1003.9 18 9999.9 0 6.6 24 13.7 24 20.0 27.0 46.9 32.0 0.33G 999.9 111000 724050 13743 20010306 30.7 24 15.4 24 1001.2 24 9999.9 0 9.9 24 15.9 24 25.1 33.0 37.9* 24.8* 0.02G 999.9 001000 724050 13743 20010307 39.8 24 24.9 24 1008.8 24 9999.9 0 9.6 24 15.6 24 28.9 36.9 51.8* 33.1* 0.00G 999.9 001000 724050 13743 20010308 39.2 24 24.1 24 1016.4 24 9999.9 0 10.0 24 7.8 24 17.1 22.0 51.1 30.0 0.00G 999.9 000000 724050 13743 20010309 41.4 24 26.1 24 1012.5 24 9999.9 0 10.0 24 10.0 24 20.0 29.9 50.0 30.0 0.00G 999.9 010000 724050 13743 20010310 38.3 24 17.9 24 1016.9 24 9999.9 0 10.0 24 11.0 24 19.0 26.0 48.9 30.9 0.00G 999.9 000000 724050 13743 20010311 44.1 24 24.1 24 1017.1 24 9999.9 0 9.9 24 6.2 24 14.0 19.0 66.0 30.9 0.00G 999.9 000000 724050 13743 20010312 44.9 24 25.8 24 1022.6 24 9999.9 0 10.0 24 9.5 24 14.0 20.0 66.0 32.0 0.00G 999.9 000000 724050 13743 20010313 47.6 24 41.5 24 1003.4 18 9999.9 0 5.9 24 6.0 24 15.9 22.9 63.0 35.1 0.31G 999.9 110010 724050 13743 20010314 52.2 24 28.1 24 1006.9 24 9999.9 0 10.0 24 11.5 24 19.0 42.0 63.0 39.9 0.12G 999.9 000000 724050 13743 20010315 47.2 24 32.7 24 1013.8 24 9999.9 0 9.3 24 5.0 24 12.0 999.9 61.0 39.0 0.00G 999.9 110000 724050 13743 20010316 45.7 24 40.6 24 1012.2 24 9999.9 0 9.2 24 5.9 24 11.1 999.9 53.1 39.0 0.30G 999.9 110000 724050 13743 20010317 48.4 24 45.0 24 1013.0 20 9999.9 0 5.3 24 4.2 24 11.1 19.0 55.4* 44.1* 0.02G 999.9 110000 724050 13743 20010318 43.5 24 23.2 24 1021.3 24 9999.9 0 10.0 24 15.7 24 25.1 35.0 55.0 35.1 0.00G 999.9 000000 724050 13743 20010319 44.0 24 16.8 24 1029.3 24 9999.9 0 10.0 24 8.3 24 14.0 999.9 55.4* 33.1* 0.00G 999.9 000000 724050 13743 20010320 43.8 24 25.9 24 1029.9 24 9999.9 0 10.0 24 7.3 24 15.9 16.9 55.0 32.0 0.00G 999.9 010000 724050 13743 20010321 45.5 24 41.8 24 1014.9 22 9999.9 0 7.0 24 19.2 24 26.0 35.0 53.1 34.0 0.51G 999.9 110000 724050 13743 20010322 46.9 24 38.7 24 1004.4 24 9999.9 0 7.4 24 16.0 24 27.0 35.9 54.0 42.1 0.76G 999.9 110000 724050 13743 20010323 50.2 24 26.7 24 1009.6 24 9999.9 0 10.0 24 13.6 24 28.0 35.0 61.0 39.0 0.00G 999.9 000000 724050 13743 20010324 48.8 24 29.8 24 1011.1 24 9999.9 0 10.0 24 9.9 24 22.9 29.9 66.0 37.0 0.00G 999.9 000000 724050 13743 20010325 41.5 24 18.4 24 1017.4 24 9999.9 0 10.0 24 9.3 24 18.1 25.1 48.9* 33.8* 0.00G 999.9 000000 724050 13743 20010326 37.8 24 14.6 24 1017.9 24 9999.9 0 10.0 24 10.9 24 19.0 26.0 50.0 32.0 0.00G 999.9 000000 724050 13743 20010327 32.5 24 9.3 24 1025.0 24 9999.9 0 10.0 24 10.2 24 14.0 21.0 43.0 25.0 0.00G 999.9 000000 724050 13743 20010328 38.6 24 16.9 24 1027.5 24 9999.9 0 10.0 24 6.6 24 12.0 999.9 50.0 25.0 0.00G 999.9 000000 724050 13743 20010329 41.3 24 33.3 24 1024.8 22 9999.9 0 7.8 24 6.4 24 16.9 21.0 50.0 28.0 0.00G 999.9 110000 724050 13743 20010330 47.1 24 41.2 24 1008.1 24 9999.9 0 6.8 24 12.1 24 19.0 28.0 57.0 36.0 1.49G 999.9 110000 724050 13743 20010331 47.0 24 38.0 24 1010.0 22 9999.9 0 9.9 24 5.6 24 11.1 999.9 57.0 42.1 0.22G 999.9 010000 724050 13743 20010401 46.1 24 39.1 24 1007.4 22 9999.9 0 9.0 24 2.7 24 7.0 999.9 50.0 42.1 0.05G 999.9 110000 724050 13743 20010402 48.3 24 32.3 24 1013.9 24 9999.9 0 9.4 24 9.0 24 15.0 21.0 57.9 42.1 0.05G 999.9 010000 724050 13743 20010403 48.9 24 34.6 24 1018.8 24 9999.9 0 9.1 24 5.7 24 13.0 999.9 62.1 36.0 0.00G 999.9 100000 724050 13743 20010404 51.7 24 35.9 24 1024.0 24 9999.9 0 9.4 24 9.3 24 14.0 999.9 62.1 36.0 0.00G 999.9 000000 724050 13743 20010405 52.1 24 34.2 24 1027.4 24 9999.9 0 9.9 24 4.8 24 10.1 999.9 64.0 39.9 0.00G 999.9 000000 724050 13743 20010406 56.2 24 45.0 24 1019.0 23 9999.9 0 8.6 24 9.2 24 12.0 999.9 70.0 39.9 0.00G 999.9 110000 724050 13743 20010407 60.1 24 54.8 24 1017.1 23 9999.9 0 6.1 24 7.9 24 17.1 21.0 68.0* 48.2* 0.13G 999.9 110000 724050 13743 20010408 51.7 24 46.0 24 1019.7 22 9999.9 0 7.1 24 5.8 24 14.0 999.9 69.1* 44.6* 0.00G 999.9 100000 724050 13743 20010409 66.9 24 53.9 24 1011.7 24 9999.9 0 8.0 24 7.2 24 15.0 20.0 89.1 45.0 0.00G 999.9 110010 724050 13743 20010410 65.0 24 55.6 24 1013.5 24 9999.9 0 9.8 24 8.4 24 20.0 39.0 89.1 53.1 0.16G 999.9 010010 724050 13743 20010411 53.5 24 50.8 24 1020.8 18 9999.9 0 6.2 24 7.0 24 11.1 999.9 68.0 51.1 0.33G 999.9 110010 724050 13743 20010412 59.3 24 56.1 24 1017.0 23 9999.9 0 4.9 24 7.5 24 15.9 19.0 77.0 51.1 0.45G 999.9 110000 724050 13743 20010413 70.5 24 54.4 24 1011.6 24 9999.9 0 9.7 24 9.4 24 17.1 23.9 79.0 53.1 0.02G 999.9 010000 724050 13743 20010414 62.8 24 36.4 24 1015.6 24 9999.9 0 9.9 24 7.4 24 12.0 15.9 79.0 53.1 0.04G 999.9 000000 724050 13743 20010415 62.3 24 46.4 24 1010.4 24 9999.9 0 9.7 24 5.1 24 11.1 999.9 73.0 53.1 0.00G 999.9 010000 724050 13743 20010416 51.0 24 46.4 24 1006.5 20 9999.9 0 8.1 24 8.8 24 14.0 15.0 55.0* 48.0* 0.19G 999.9 110000 724050 13743 20010417 46.5 24 29.8 24 1011.1 24 9999.9 0 9.7 24 11.7 24 20.0 28.0 55.0 39.0 0.17G 999.9 110000 724050 13743 20010418 43.6 24 25.6 24 1013.9 23 9999.9 0 9.7 24 15.1 24 21.0 28.9 52.0 37.0 0.14G 999.9 011000 724050 13743 20010419 47.3 24 28.1 24 1022.8 24 9999.9 0 10.0 24 5.6 24 12.0 18.1 62.1 34.0 0.03B 999.9 000000 724050 13743 20010420 55.1 24 37.9 24 1025.6 24 9999.9 0 9.9 24 6.7 24 14.0 18.1 69.1 34.0 0.00G 999.9 000000 724050 13743 20010421 63.2 24 46.3 24 1025.4 24 9999.9 0 9.9 24 8.0 24 10.1 999.9 72.0 44.1 0.00G 999.9 010000 724050 13743 20010422 69.7 24 56.0 24 1024.9 24 9999.9 0 9.9 24 7.3 24 12.0 15.0 87.1 55.0 0.00G 999.9 000000 724050 13743 20010423 71.8 24 60.6 24 1021.5 24 9999.9 0 9.1 24 6.0 24 11.1 999.9 87.1 57.9 0.00G 999.9 100000 724050 13743 20010424 71.0 24 56.8 24 1014.1 24 9999.9 0 9.9 24 11.1 24 18.1 28.0 86.0 60.1 0.00G 999.9 010000 724050 13743 20010425 54.6 24 34.5 24 1022.2 24 9999.9 0 9.9 24 10.3 24 17.1 22.0 64.0* 50.0* 0.00G 999.9 000000 724050 13743 20010426 53.3 24 34.1 24 1024.3 24 9999.9 0 9.9 24 5.7 24 13.0 15.0 66.0 41.0 0.00G 999.9 000000 724050 13743 20010427 59.7 24 38.3 24 1019.1 24 9999.9 0 9.9 24 7.2 24 14.0 19.0 79.0 41.0 0.00G 999.9 000000 724050 13743 20010428 63.7 24 39.0 24 1021.2 24 9999.9 0 9.9 24 10.6 24 15.9 21.0 79.0 43.0 0.00G 999.9 000000 724050 13743 20010429 55.4 24 27.8 24 1032.5 24 9999.9 0 9.9 24 6.1 24 11.1 999.9 66.9 45.0 0.00G 999.9 000000 724050 13743 20010430 58.8 24 40.9 24 1029.2 24 9999.9 0 10.0 24 7.1 24 11.1 999.9 75.0 45.0 0.00G 999.9 000000 724050 13743 20010501 66.0 24 50.5 24 1021.1 24 9999.9 0 9.9 24 5.1 24 8.9 999.9 82.0 45.0 0.00G 999.9 000000 724050 13743 20010502 70.6 24 57.5 24 1018.7 24 9999.9 0 8.8 24 4.9 24 8.0 999.9 84.9 54.0 0.00G 999.9 100000 724050 13743 20010503 73.1 24 60.7 24 1021.5 24 9999.9 0 7.8 24 5.6 24 8.9 999.9 87.1 59.0 0.00G 999.9 100000 724050 13743 20010504 73.6 24 62.0 24 1020.3 24 9999.9 0 7.0 24 6.9 24 11.1 999.9 87.1 62.1 0.00G 999.9 100000 724050 13743 20010505 74.9 24 60.8 24 1017.1 24 9999.9 0 7.3 24 7.1 24 19.0 22.9 87.1 63.0 0.00G 999.9 000000 724050 13743 20010506 63.8 24 45.8 24 1026.2 24 9999.9 0 9.9 24 9.9 24 15.0 15.9 68.0* 55.9* 0.00G 999.9 000000 724050 13743 20010507 55.8 24 40.4 24 1032.9 24 9999.9 0 9.9 24 7.6 24 13.0 15.0 66.9 46.0 0.00G 999.9 000000 724050 13743 20010508 59.0 24 49.3 24 1029.0 24 9999.9 0 8.8 24 7.0 24 12.0 15.0 71.6* 48.2* 0.00G 999.9 100000 724050 13743 20010509 65.1 24 54.0 24 1023.2 24 9999.9 0 9.6 24 5.8 24 10.1 999.9 77.0 48.9 0.04G 999.9 110000 724050 13743 20010510 69.9 24 50.9 24 1020.2 24 9999.9 0 9.4 24 4.6 24 8.0 999.9 84.0 57.0 0.00I 999.9 000000 724050 13743 20010511 73.8 24 54.4 24 1016.9 24 9999.9 0 8.9 24 5.2 24 12.0 16.9 88.0 57.0 0.00G 999.9 000000 724050 13743 20010512 73.4 24 58.6 24 1013.0 24 9999.9 0 9.7 24 7.8 24 22.0 29.9 88.0 61.0 0.00G 999.9 010000 724050 13743 20010513 62.7 24 41.0 24 1018.6 24 9999.9 0 9.9 24 13.0 24 20.0 23.9 82.9 53.1 0.02G 999.9 000000 724050 13743 20010514 60.4 24 33.1 24 1021.0 24 9999.9 0 9.9 24 9.1 24 24.1 30.9 72.0 48.9 0.00G 999.9 010000 724050 13743 20010515 61.7 24 38.8 24 1015.9 24 9999.9 0 9.9 24 6.3 24 11.1 15.0 73.9 48.9 0.00G 999.9 000000 724050 13743 20010516 62.2 24 45.7 24 1012.2 24 9999.9 0 9.9 24 7.1 24 14.0 999.9 73.9 50.0 0.00G 999.9 000000 724050 13743 20010517 58.8 24 48.9 24 1016.3 24 9999.9 0 9.9 24 7.9 24 14.0 999.9 72.0 51.1 0.00G 999.9 010000 724050 13743 20010518 61.8 24 56.6 24 1013.9 23 9999.9 0 7.8 24 6.7 24 10.1 999.9 66.9 54.0 0.00G 999.9 110000 724050 13743 20010519 65.5 24 59.4 24 1011.1 18 9999.9 0 5.1 24 5.8 23 12.0 999.9 75.0 59.0 0.81G 999.9 110000 724050 13743 20010520 65.3 24 61.3 24 1013.3 21 9999.9 0 4.6 24 7.0 23 15.0 999.9 68.0* 60.8* 0.03G 999.9 110000 724050 13743 20010521 59.9 24 58.3 24 1015.6 19 9999.9 0 5.2 24 7.7 24 12.0 999.9 68.0 57.0 0.23G 999.9 110000 724050 13743 20010522 66.5 24 63.9 24 1009.3 18 9999.9 0 6.2 24 5.4 24 19.0 28.9 78.1 57.0 0.21G 999.9 110010 724050 13743 20010523 66.7 24 52.2 24 1010.2 24 9999.9 0 9.6 24 7.3 24 15.9 999.9 78.1 55.9 0.68G 999.9 110010 724050 13743 20010524 67.7 24 51.5 24 1013.0 24 9999.9 0 9.7 24 5.3 24 11.1 999.9 79.0 55.0 0.00G 999.9 000000 724050 13743 20010525 66.1 24 58.7 24 1016.4 22 9999.9 0 7.5 24 8.2 24 14.0 19.0 79.0 55.0 0.00G 999.9 110010 724050 13743 20010526 63.3 24 61.3 24 1016.5 18 9999.9 0 7.4 24 8.2 24 18.1 999.9 73.9 62.1 1.26G 999.9 110010 724050 13743 20010527 65.2 24 60.6 24 1011.8 20 9999.9 0 7.8 24 6.3 24 14.0 22.9 73.4* 60.8* 0.33G 999.9 110010 724050 13743 20010528 65.2 24 57.8 24 1010.4 23 9999.9 0 9.1 24 5.2 23 12.0 999.9 75.0 59.0 0.10G 999.9 110010 724050 13743 20010529 68.0 24 57.4 24 1011.9 24 9999.9 0 9.8 24 6.6 23 13.0 999.9 77.0 59.0 0.00G 999.9 000000 724050 13743 20010530 66.5 24 44.1 24 1015.3 24 9999.9 0 9.9 24 11.2 24 20.0 25.1 77.0 60.1 0.00G 999.9 010000 724050 13743 20010531 60.6 24 36.1 24 1019.0 24 9999.9 0 9.9 24 8.7 24 11.1 999.9 71.1 50.0 0.00G 999.9 000000 724050 13743 20010601 61.1 24 53.4 24 1015.6 20 9999.9 0 8.8 24 5.4 24 12.0 999.9 70.0 50.0 0.00G 999.9 110000 724050 13743 20010602 68.1 24 63.6 24 1005.3 22 9999.9 0 6.6 24 5.3 24 8.9 999.9 78.1 54.0 0.52G 999.9 110000 724050 13743 20010603 67.7 24 55.3 24 1006.1 24 9999.9 0 9.2 24 8.2 24 18.1 22.9 78.1 61.0 0.00G 999.9 100000 724050 13743 20010604 66.4 24 50.6 24 1014.9 24 9999.9 0 9.9 24 7.1 24 12.0 18.1 77.0 57.9 0.00G 999.9 000000 724050 13743 20010605 70.1 24 61.2 24 1016.8 23 9999.9 0 8.0 24 5.5 23 11.1 999.9 80.1 57.9 0.23G 999.9 110000 724050 13743 20010606 73.7 24 64.5 24 1015.9 24 1013.4 21 8.0 24 5.0 24 19.0 22.0 81.0 63.0 0.01G 999.9 110000 724050 13743 20010607 68.7 24 62.3 24 1013.6 19 1011.3 19 7.1 24 7.7 24 15.0 23.9 75.0* 62.6* 0.92G 999.9 110000 724050 13743 20010608 70.9 24 59.9 24 1012.6 24 1010.3 24 9.1 24 4.7 24 12.0 999.9 81.0 61.0 0.17G 999.9 100000 724050 13743 20010609 71.7 24 53.6 24 1012.6 24 1010.2 24 9.9 24 6.0 24 12.0 15.9 81.0 60.1 0.00G 999.9 000000 724050 13743 20010610 73.0 24 53.2 24 1013.1 24 1010.8 24 9.9 24 4.7 24 11.1 999.9 82.9 60.1 0.00G 999.9 000000 724050 13743 20010611 74.6 24 62.0 24 1012.4 24 1009.9 24 8.6 24 9.1 24 18.1 21.0 84.9 62.1 0.00G 999.9 000000 724050 13743 20010612 79.0 24 69.4 24 1010.0 24 1007.7 24 5.5 24 6.7 24 15.0 999.9 88.0 64.0 0.00G 999.9 100000 724050 13743 20010613 81.3 24 72.4 24 1011.4 24 1009.1 24 5.6 24 4.9 24 10.1 999.9 90.0 70.0 0.00G 999.9 110010 724050 13743 20010614 80.1 24 72.2 24 1016.1 24 1013.8 24 7.4 24 5.9 24 12.0 999.9 90.0 73.0 0.03G 999.9 100000 724050 13743 20010615 78.8 24 72.5 24 1016.6 23 1014.5 22 9.4 24 9.3 24 21.0 25.1 86.0* 73.4* 0.00G 999.9 010000 724050 13743 20010616 76.6 24 73.5 24 1013.3 14 1010.9 12 7.3 24 10.0 24 15.9 19.0 87.1 73.0 0.20G 999.9 110000 724050 13743 20010617 77.0 24 64.6 24 1015.3 22 1013.0 22 9.6 24 12.5 24 17.1 22.0 87.1 69.1 1.64G 999.9 010000 724050 13743 20010618 77.2 24 59.4 24 1021.9 24 1019.6 24 9.9 24 6.7 24 10.1 999.9 87.1 66.9 0.00G 999.9 000000 724050 13743 20010619 77.2 24 65.1 24 1024.0 24 1021.7 24 9.2 24 6.9 24 11.1 999.9 84.9 66.9 0.00G 999.9 100000 724050 13743 20010620 78.5 24 68.6 24 1021.4 24 1019.1 24 7.6 24 9.0 24 13.0 999.9 88.0 68.0 0.00G 999.9 100000 724050 13743 20010621 79.1 24 67.4 24 1019.1 22 1016.8 22 6.9 24 6.1 24 13.0 999.9 88.0 70.0 0.00G 999.9 010010 724050 13743 20010622 77.7 24 70.5 24 1014.7 22 1012.1 19 6.4 24 8.5 24 15.0 22.0 87.1 69.1 0.02G 999.9 110010 724050 13743 20010623 71.7 24 67.0 24 1013.8 17 1011.5 17 8.2 24 8.3 24 18.1 26.0 80.1* 66.2* 0.79G 999.9 110010 724050 13743 20010624 71.5 24 60.7 24 1019.3 24 1016.9 24 9.9 24 7.2 24 11.1 14.0 81.0 63.0 0.01G 999.9 000000 724050 13743 20010625 75.0 24 60.8 24 1022.7 24 1020.4 24 9.9 24 4.0 24 8.9 999.9 84.9 63.0 0.00G 999.9 000000 724050 13743 20010626 77.0 24 63.7 24 1026.4 24 1024.1 24 9.2 24 3.7 24 9.9 999.9 88.0 64.0 0.00G 999.9 000000 724050 13743 20010627 79.4 24 67.8 24 1026.7 24 1024.4 24 8.5 24 6.2 24 12.0 999.9 90.0 66.9 0.00G 999.9 000000 724050 13743 20010628 82.8 24 70.6 24 1022.4 24 1019.9 24 7.9 24 6.3 24 11.1 999.9 91.9 70.0 0.00G 999.9 000000 724050 13743 20010629 83.4 24 70.7 24 1019.4 24 1017.1 24 5.6 24 5.3 24 12.0 999.9 91.9 73.9 0.00G 999.9 010010 724050 13743 20010630 83.2 24 72.9 24 1016.7 24 1014.3 23 6.5 24 6.0 24 14.0 30.9 91.9 75.0 0.00G 999.9 110010 724050 13743 20010701 80.4 24 71.7 24 1013.1 24 9999.9 0 9.7 24 7.4 24 15.0 21.0 89.1* 71.6* 0.15G 999.9 010010 724050 13743 20010702 68.3 24 53.2 24 1019.3 24 9999.9 0 9.9 24 8.7 24 18.1 22.0 73.9* 59.0* 0.10G 999.9 010000 724050 13743 20010703 67.9 24 54.5 24 1024.0 24 9999.9 0 9.9 24 7.6 24 13.0 999.9 78.1 57.9 0.00G 999.9 000000 724050 13743 20010704 75.7 24 68.8 24 1017.0 21 9999.9 0 8.8 24 7.7 24 13.0 20.0 88.0 57.9 0.00G 999.9 110010 724050 13743 20010705 74.3 24 68.1 24 1011.9 22 9999.9 0 7.6 24 6.8 24 21.0 27.0 88.0 66.9 0.98G 999.9 110010 724050 13743 20010706 70.2 24 55.4 24 1016.3 24 9999.9 0 9.6 24 7.5 24 12.0 16.9 84.9 62.1 0.18G 999.9 110010 724050 13743 20010707 72.5 24 57.3 24 1020.4 24 9999.9 0 9.9 24 6.8 24 15.9 16.9 82.9 61.0 0.00G 999.9 000000 724050 13743 20010708 74.3 24 66.9 24 1012.5 24 9999.9 0 7.6 24 8.5 24 14.0 999.9 82.9 61.0 0.41G 999.9 110010 724050 13743 20010709 79.7 24 69.3 24 1009.7 24 9999.9 0 7.0 24 6.6 24 11.1 16.9 89.1 66.9 0.07G 999.9 110010 724050 13743 20010710 81.3 24 63.9 24 1008.3 24 9999.9 0 9.9 24 6.0 24 14.0 16.9 91.9 70.0 0.03G 999.9 000000 724050 13743 20010711 77.9 24 64.1 24 1006.2 23 9999.9 0 8.3 24 9.1 24 17.1 22.9 91.9 70.0 0.53G 999.9 110010 724050 13743 20010712 74.0 24 54.4 24 1012.7 24 9999.9 0 9.9 24 8.3 24 15.0 18.1 86.0 64.9 0.00G 999.9 000000 724050 13743 20010713 73.2 24 55.7 24 1014.0 24 9999.9 0 9.9 24 7.7 24 12.0 20.0 81.0 64.0 0.00G 999.9 000000 724050 13743 20010714 73.8 24 54.1 24 1012.8 24 9999.9 0 9.9 24 9.2 24 13.0 19.0 82.0 64.0 0.00G 999.9 000000 724050 13743 20010715 75.9 24 57.5 24 1014.9 24 9999.9 0 10.0 24 6.5 24 11.1 999.9 84.0 64.0 0.00G 999.9 000000 724050 13743 20010716 77.5 24 59.9 24 1017.5 24 9999.9 0 9.9 24 5.5 24 8.9 999.9 89.1 64.0 0.00G 999.9 000000 724050 13743 20010717 80.4 24 65.3 24 1017.3 24 9999.9 0 8.6 24 6.2 24 10.1 15.0 91.9 66.0 0.00G 999.9 000000 724050 13743 20010718 75.7 24 69.3 24 1015.6 20 9999.9 0 5.3 24 5.1 24 10.1 999.9 91.9 70.0 0.00G 999.9 110000 724050 13743 20010719 74.5 24 67.9 24 1018.6 22 9999.9 0 6.1 24 9.3 24 13.0 18.1 81.0 70.0 0.20G 999.9 100000 724050 13743 20010720 73.3 24 61.4 24 1020.5 23 9999.9 0 10.0 24 7.4 24 12.0 999.9 82.0 66.0 0.00G 999.9 000000 724050 13743 20010721 73.7 24 57.5 24 1018.9 24 9999.9 0 9.9 24 5.3 24 10.1 999.9 84.0 61.0 0.00G 999.9 000000 724050 13743 20010722 75.0 24 60.2 24 1016.7 24 9999.9 0 9.9 24 6.2 24 10.1 18.1 86.0 61.0 0.00G 999.9 000000 724050 13743 20010723 79.4 24 69.7 24 1016.3 24 9999.9 0 9.2 24 7.6 24 13.0 999.9 91.0 63.0 0.00G 999.9 100000 724050 13743 20010724 82.2 24 73.9 24 1014.5 23 9999.9 0 8.7 24 9.3 24 15.0 999.9 93.0 71.1 0.00G 999.9 100000 724050 13743 20010725 84.5 24 73.5 24 1013.4 24 9999.9 0 9.7 24 12.4 24 17.1 22.0 93.0 75.9 0.00G 999.9 000000 724050 13743 20010726 80.5 24 71.5 24 1013.2 21 9999.9 0 8.2 24 10.3 24 16.9 21.0 93.0 71.1 0.00G 999.9 110010 724050 13743 20010727 71.7 24 60.7 24 1022.3 21 9999.9 0 9.9 24 8.5 24 14.0 999.9 78.1* 66.2* 1.33G 999.9 010000 724050 13743 20010728 70.9 24 58.3 24 1024.8 24 9999.9 0 9.9 24 6.3 24 13.0 999.9 79.0 64.0 0.00G 999.9 000000 724050 13743 20010729 65.6 24 62.1 24 1020.2 24 9999.9 0 6.7 24 8.2 24 14.0 999.9 73.0* 62.6* 0.40G 999.9 110000 724050 13743 20010730 70.2 24 65.2 24 1018.4 20 9999.9 0 8.6 24 8.7 24 12.0 999.9 79.0 63.0 0.58G 999.9 110000 724050 13743 20010731 73.5 24 65.7 24 1023.1 24 9999.9 0 10.0 24 5.0 24 10.1 999.9 81.0 66.0 0.01G 999.9 000000 724050 13743 20010801 74.8 24 62.9 24 1026.9 24 9999.9 0 9.9 24 5.8 24 10.1 999.9 84.0 66.9 0.00G 999.9 000000 724050 13743 20010802 74.4 24 61.4 24 1026.3 24 9999.9 0 9.9 24 7.9 24 13.0 999.9 84.0 63.0 0.00G 999.9 000000 724050 13743 20010803 76.0 24 65.7 24 1019.1 24 9999.9 0 9.9 24 9.0 24 12.0 999.9 86.0 63.0 0.00G 999.9 000000 724050 13743 20010804 78.4 24 69.0 24 1013.8 24 9999.9 0 8.1 24 6.5 24 10.1 999.9 86.0 66.9 0.00G 999.9 000010 724050 13743 20010805 80.0 24 73.6 24 1017.9 23 9999.9 0 5.9 24 4.9 23 8.9 999.9 90.0 73.0 0.00G 999.9 100000 724050 13743 20010806 82.3 24 74.5 24 1020.8 24 9999.9 0 4.2 24 6.3 24 13.0 999.9 91.0 73.9 0.00G 999.9 100000 724050 13743 20010807 85.3 24 70.2 24 1018.3 24 9999.9 0 6.6 24 7.6 24 12.0 16.9 95.0 75.0 0.00G 999.9 100000 724050 13743 20010808 87.1 24 71.4 24 1015.2 24 9999.9 0 5.6 24 6.9 24 12.0 15.0 97.0 75.0 0.00G 999.9 000000 724050 13743 20010809 87.7 24 74.5 24 1014.1 24 9999.9 0 5.3 24 6.8 24 13.0 999.9 97.0 75.9 0.00G 999.9 000000 724050 13743 20010810 84.9 24 76.5 24 1011.9 21 9999.9 0 4.4 24 8.2 24 15.0 18.1 97.0 78.1 0.00G 999.9 110010 724050 13743 20010811 79.7 24 74.8 24 1015.1 23 9999.9 0 6.1 24 4.3 24 18.1 21.0 88.0* 73.4* 0.40G 999.9 110010 724050 13743 20010812 76.8 24 73.5 24 1017.9 20 9999.9 0 5.6 24 5.7 24 12.0 999.9 89.1 73.9 0.93G 999.9 110010 724050 13743 20010813 76.0 24 72.6 24 1015.9 20 9999.9 0 7.8 24 5.0 23 16.9 27.0 82.0 71.1 0.18G 999.9 110010 724050 13743 20010814 76.3 24 69.1 24 1013.6 24 9999.9 0 5.6 24 4.5 24 8.9 999.9 86.0 70.0 0.23G 999.9 100000 724050 13743 20010815 77.0 24 68.6 24 1016.0 24 9999.9 0 6.5 24 3.5 23 7.0 999.9 86.0 69.1 0.00G 999.9 100000 724050 13743 20010816 76.6 24 68.9 24 1018.7 23 9999.9 0 7.3 24 7.8 24 15.0 999.9 84.9 69.1 0.01G 999.9 100000 724050 13743 20010817 78.5 24 70.5 24 1016.6 24 9999.9 0 7.1 24 10.1 24 13.0 999.9 86.0 69.1 0.00G 999.9 010000 724050 13743 20010818 77.1 24 64.0 24 1016.3 24 9999.9 0 9.7 24 5.5 24 12.0 999.9 87.1 68.0 0.01G 999.9 010000 724050 13743 20010819 76.8 24 69.6 24 1012.7 22 9999.9 0 6.0 24 4.1 24 12.0 999.9 87.1 68.0 0.00G 999.9 110010 724050 13743 20010820 77.6 24 69.1 24 1012.6 23 9999.9 0 8.7 24 5.6 23 11.1 999.9 84.9 71.1 0.30G 999.9 110010 724050 13743 20010821 75.6 24 60.5 24 1016.8 24 9999.9 0 9.9 24 7.9 24 14.0 21.0 84.9 66.9 0.04G 999.9 000000 724050 13743 20010822 76.9 24 60.4 24 1019.2 24 9999.9 0 9.9 24 5.9 24 11.1 999.9 87.1 66.0 0.00G 999.9 000000 724050 13743 20010823 76.9 24 67.0 24 1016.9 24 9999.9 0 8.6 24 6.6 24 10.1 14.0 87.1 66.0 0.00G 999.9 010000 724050 13743 20010824 75.3 24 67.1 24 1015.9 23 9999.9 0 8.0 24 7.7 24 15.9 999.9 84.0* 69.8* 0.80G 999.9 110010 724050 13743 20010825 76.1 24 66.5 24 1019.5 24 9999.9 0 7.6 24 4.2 24 8.9 999.9 84.9 70.0 0.00G 999.9 100000 724050 13743 20010826 73.9 24 59.8 24 1018.8 24 9999.9 0 9.9 24 6.5 24 13.0 999.9 82.9 66.0 0.00G 999.9 000000 724050 13743 20010827 77.9 24 66.7 24 1012.7 24 9999.9 0 8.6 24 7.8 24 11.1 999.9 88.0 66.0 0.00G 999.9 010010 724050 13743 20010828 81.2 24 67.4 24 1012.6 24 9999.9 0 9.2 24 6.7 24 12.0 15.0 89.1* 73.9* 0.00G 999.9 000000 724050 13743 20010829 79.0 24 65.8 24 1015.7 24 9999.9 0 9.7 24 6.3 24 10.1 999.9 89.1 71.1 0.00G 999.9 000000 724050 13743 20010830 78.1 24 71.1 24 1016.4 19 9999.9 0 7.0 24 6.5 24 15.9 26.0 87.1 71.1 0.00G 999.9 110010 724050 13743 20010831 75.1 24 70.5 24 1012.8 22 9999.9 0 6.4 24 7.9 24 15.9 20.0 87.1 71.1 0.09G 999.9 110010 724050 13743 20010901 76.9 24 66.5 24 1011.8 24 9999.9 0 9.6 24 7.7 24 11.1 19.0 82.9 71.1 0.00G 999.9 010010 724050 13743 20010902 70.3 24 54.7 24 1017.9 24 9999.9 0 9.9 24 7.2 24 12.0 999.9 82.0 61.0 0.00G 999.9 000000 724050 13743 20010903 71.6 24 61.6 24 1018.4 24 9999.9 0 9.9 24 5.4 24 11.1 999.9 80.1 61.0 0.00G 999.9 000000 724050 13743 20010904 75.6 24 66.6 24 1014.9 24 9999.9 0 9.2 24 7.0 24 11.1 15.0 86.0* 69.1* 0.00G 999.9 000000 724050 13743 20010905 75.4 24 60.9 24 1017.9 24 9999.9 0 9.5 24 7.9 24 12.0 999.9 87.1 66.9 0.00G 999.9 000000 724050 13743 20010906 71.5 24 55.5 24 1022.7 24 9999.9 0 9.9 24 4.5 24 8.9 999.9 82.0 60.1 0.00G 999.9 000000 724050 13743 20010907 72.1 24 61.6 24 1020.5 24 9999.9 0 9.6 24 7.1 24 12.0 999.9 82.9 60.1 0.00G 999.9 100000 724050 13743 20010908 74.2 24 65.0 24 1019.9 24 9999.9 0 9.9 24 7.3 24 11.1 999.9 84.9 63.0 0.00G 999.9 000000 724050 13743 20010909 75.9 24 68.0 24 1021.2 24 9999.9 0 10.0 24 7.1 23 12.0 999.9 87.1 66.9 0.00G 999.9 000000 724050 13743 20010910 77.7 24 70.9 24 1019.8 22 9999.9 0 9.9 24 8.5 24 12.0 21.0 87.1 68.0 0.00G 999.9 110010 724050 13743 20010911 73.5 24 58.8 24 1021.1 24 9999.9 0 9.6 24 7.3 24 10.1 15.0 87.1 64.0 0.14G 999.9 000000 724050 13743 20010912 72.0 24 55.6 24 1022.4 24 9999.9 0 9.8 24 4.5 24 8.0 999.9 82.9 61.0 0.00G 999.9 000000 724050 13743 20010913 72.1 24 60.2 24 1020.0 24 9999.9 0 9.9 24 6.7 24 13.0 999.9 84.9 61.0 0.00G 999.9 000000 724050 13743 20010914 66.8 24 57.0 24 1019.4 24 9999.9 0 9.7 24 12.4 24 18.1 26.0 84.9 57.0 0.00G 999.9 110010 724050 13743 20010915 61.4 24 43.7 24 1022.9 24 9999.9 0 9.9 24 9.6 24 14.0 999.9 71.1 52.0 0.15G 999.9 000000 724050 13743 20010916 63.1 24 47.7 24 1020.3 24 9999.9 0 9.9 24 4.6 24 8.0 999.9 75.9 51.1 0.00G 999.9 000000 724050 13743 20010917 65.8 24 50.3 24 1019.4 24 9999.9 0 10.0 24 3.9 23 8.0 999.9 79.0 51.1 0.00G 999.9 000000 724050 13743 20010918 67.6 24 56.5 24 1017.3 24 9999.9 0 9.7 24 5.2 24 8.9 999.9 80.1 54.0 0.00G 999.9 000000 724050 13743 20010919 70.6 24 59.5 24 1018.3 24 9999.9 0 9.5 24 6.5 24 15.0 999.9 81.0 57.0 0.00G 999.9 000000 724050 13743 20010920 69.5 24 64.8 24 1017.4 23 9999.9 0 9.0 24 8.2 24 12.0 999.9 81.0 63.0 0.08G 999.9 110000 724050 13743 20010921 71.3 24 64.5 24 1016.5 23 9999.9 0 8.1 24 5.4 23 12.0 999.9 80.1 64.0 0.37G 999.9 110010 724050 13743 20010922 73.5 24 65.7 24 1016.0 24 9999.9 0 6.6 24 5.3 24 8.9 999.9 84.0 64.0 0.03G 999.9 100000 724050 13743 20010923 73.4 24 61.5 24 1017.9 24 9999.9 0 9.3 24 4.9 24 8.0 999.9 84.0 64.0 0.00G 999.9 000000 724050 13743 20010924 72.9 24 68.5 24 1013.0 24 9999.9 0 5.5 24 8.6 24 21.0 25.1 82.0 64.0 0.00G 999.9 110011 724050 13743 20010925 63.9 24 56.2 24 1010.9 20 9999.9 0 8.8 24 7.9 24 20.0 999.9 78.1 59.0 0.61G 999.9 110000 724050 13743 20010926 55.8 24 41.5 24 1016.9 24 9999.9 0 9.9 24 7.1 24 14.0 20.0 68.0 46.0 0.30G 999.9 000000 724050 13743 20010927 60.2 24 46.5 24 1015.2 24 9999.9 0 9.9 24 7.0 24 12.0 15.0 71.1 46.0 0.00G 999.9 010000 724050 13743 20010928 56.9 24 46.6 24 1016.2 24 9999.9 0 9.9 24 8.8 24 15.0 20.0 71.1 50.0 0.03G 999.9 010000 724050 13743 20010929 57.9 24 47.0 24 1019.6 24 9999.9 0 9.9 24 11.4 24 18.1 23.9 68.0 50.0 0.00G 999.9 000000 724050 13743 20010930 57.1 24 42.8 24 1021.1 24 9999.9 0 9.9 24 13.2 24 18.1 22.0 68.0 50.0 0.00G 999.9 000000 724050 13743 20011001 57.3 24 44.9 24 1015.4 24 9999.9 0 9.9 24 7.7 24 11.1 19.0 69.1 50.0 0.06G 999.9 010000 724050 13743 20011002 64.4 24 52.6 24 1014.9 24 9999.9 0 9.9 24 4.0 24 11.1 999.9 80.1 51.1 0.03G 999.9 000000 724050 13743 20011003 68.9 24 59.3 24 1018.3 24 9999.9 0 8.2 24 5.7 24 12.0 999.9 84.0 54.0 0.00G 999.9 100000 724050 13743 20011004 70.0 24 57.8 24 1017.5 24 9999.9 0 8.6 24 6.6 24 14.0 999.9 84.0 57.9 0.00G 999.9 100000 724050 13743 20011005 68.0 24 56.1 24 1016.4 24 9999.9 0 9.2 24 7.4 24 13.0 20.0 84.0 55.9 0.00G 999.9 100000 724050 13743 20011006 65.4 24 51.9 24 1010.9 24 9999.9 0 9.7 24 13.2 24 22.0 33.0 82.0 55.9 0.03G 999.9 110000 724050 13743 20011007 52.4 24 30.6 24 1020.9 24 9999.9 0 9.9 24 9.8 24 18.1 23.9 71.1 43.0 0.11G 999.9 000000 724050 13743 20011008 48.4 24 25.8 24 1031.2 24 9999.9 0 9.9 24 7.0 24 13.0 999.9 59.0 37.9 0.00G 999.9 000000 724050 13743 20011009 49.1 24 32.4 24 1036.7 24 9999.9 0 9.9 24 4.1 23 10.1 999.9 62.1 37.9 0.00G 999.9 000000 724050 13743 20011010 56.8 24 45.7 24 1032.2 24 9999.9 0 9.9 24 7.7 24 14.0 18.1 72.0 37.9 0.00G 999.9 000000 724050 13743 20011011 64.2 24 55.5 24 1026.3 24 9999.9 0 9.9 24 8.9 24 14.0 18.1 77.0 45.0 0.00G 999.9 000000 724050 13743 20011012 65.2 24 56.8 24 1021.2 24 9999.9 0 9.9 24 7.6 24 14.0 19.0 77.0 55.0 0.00G 999.9 000000 724050 13743 20011013 68.5 24 58.5 24 1019.1 24 9999.9 0 9.9 24 7.5 24 12.0 15.0 81.0 55.9 0.00G 999.9 000000 724050 13743 20011014 67.7 24 59.8 24 1015.5 24 9999.9 0 9.9 24 10.6 24 19.0 26.0 81.0 59.0 0.00G 999.9 010000 724050 13743 20011015 63.4 24 49.1 24 1016.8 24 9999.9 0 9.3 24 6.7 24 18.1 25.1 78.1 52.0 0.32G 999.9 110000 724050 13743 20011016 59.5 24 50.1 24 1017.9 24 9999.9 0 9.7 24 7.5 23 27.0 35.0 72.0* 50.0* 0.00G 999.9 010000 724050 13743 20011017 51.1 24 37.2 24 1015.6 24 9999.9 0 9.6 24 9.8 24 22.0 27.0 73.0 42.1 0.20G 999.9 110000 724050 13743 20011018 50.4 24 29.7 24 1025.9 24 9999.9 0 9.9 24 6.6 24 12.0 999.9 60.1 41.0 0.00G 999.9 000000 724050 13743 20011019 52.4 24 39.0 24 1022.8 24 9999.9 0 9.9 24 7.1 24 13.0 999.9 64.9 39.9 0.00G 999.9 000000 724050 13743 20011020 58.0 24 46.0 24 1018.8 24 9999.9 0 9.9 24 4.9 24 8.9 999.9 73.9 42.1 0.00G 999.9 000000 724050 13743 20011021 61.7 24 51.2 24 1022.1 24 9999.9 0 9.2 24 6.0 24 13.0 999.9 77.0 46.0 0.00G 999.9 100000 724050 13743 20011022 65.4 24 56.3 24 1018.0 24 9999.9 0 8.1 24 4.4 23 8.0 999.9 79.0 48.9 0.00G 999.9 100000 724050 13743 20011023 66.2 24 57.9 24 1013.2 24 9999.9 0 8.0 24 5.1 24 10.1 999.9 79.0 55.0 0.00G 999.9 100000 724050 13743 20011024 70.8 24 60.7 24 1007.7 24 9999.9 0 9.7 24 8.9 24 12.0 999.9 84.0 55.9 0.00G 999.9 000000 724050 13743 20011025 72.5 24 49.8 24 1005.2 24 9999.9 0 10.0 24 12.5 24 20.0 27.0 84.0 63.0 0.00G 999.9 000000 724050 13743 20011026 55.6 24 23.8 24 1011.7 24 9999.9 0 9.9 24 10.5 24 17.1 28.0 78.1 48.0 0.00G 999.9 000000 724050 13743 20011027 46.0 24 27.2 24 1017.8 24 9999.9 0 9.9 24 12.0 24 18.1 25.1 60.1 39.0 0.00G 999.9 000000 724050 13743 20011028 45.6 24 25.9 24 1029.6 24 9999.9 0 9.9 24 11.4 24 18.1 23.9 53.1 39.0 0.00G 999.9 000000 724050 13743 20011029 46.0 24 29.2 24 1034.4 24 9999.9 0 9.9 24 5.8 24 10.1 999.9 59.0 33.1 0.00G 999.9 000000 724050 13743 20011030 53.8 24 35.4 24 1030.9 24 9999.9 0 9.9 24 4.8 22 12.0 999.9 66.9 33.1 0.00G 999.9 000000 724050 13743 20011031 53.3 24 40.6 24 1032.7 24 9999.9 0 9.9 24 5.4 24 12.0 999.9 66.9 43.0 0.00G 999.9 000000 724050 13743 20011101 58.0 24 49.3 24 1027.5 24 9999.9 0 8.3 24 6.8 24 11.1 999.9 73.0 45.0 0.00G 999.9 100000 724050 13743 20011102 65.2 24 56.6 24 1024.6 24 9999.9 0 8.7 24 9.6 24 15.0 999.9 79.0 46.9 0.00G 999.9 100000 724050 13743 20011103 66.7 24 52.9 24 1022.3 24 9999.9 0 9.9 24 7.7 24 17.1 999.9 79.0 57.0 0.00G 999.9 010000 724050 13743 20011104 57.5 24 37.4 24 1023.2 24 9999.9 0 9.9 24 6.4 24 11.1 999.9 73.0 46.0 0.01G 999.9 000000 724050 13743 20011105 53.2 24 28.8 24 1019.4 24 9999.9 0 9.9 24 11.5 24 19.0 25.1 66.9 44.1 0.00G 999.9 000000 724050 13743 20011106 47.0 24 26.1 24 1022.0 24 9999.9 0 9.9 24 8.9 24 12.0 18.1 60.1 36.0 0.00G 999.9 000000 724050 13743 20011107 59.0 24 26.9 24 1020.9 24 9999.9 0 9.9 24 8.0 24 14.0 15.9 72.0* 51.8* 0.00G 999.9 000000 724050 13743 20011108 57.3 24 45.5 24 1021.6 24 9999.9 0 8.9 24 5.3 23 10.1 999.9 72.0 46.0 0.00G 999.9 100000 724050 13743 20011109 55.5 24 34.7 24 1021.7 24 9999.9 0 9.8 24 12.4 24 22.9 27.0 69.1 46.0 0.00G 999.9 000000 724050 13743 20011110 50.1 24 29.3 24 1020.2 24 9999.9 0 9.9 24 6.0 24 14.0 19.0 70.0 37.0 0.00G 999.9 000000 724050 13743 20011111 55.3 24 26.8 24 1018.2 24 9999.9 0 9.9 24 9.8 24 19.0 22.9 70.0 37.0 0.00G 999.9 000000 724050 13743 20011112 43.6 24 24.6 24 1031.3 24 9999.9 0 9.9 24 5.7 23 10.1 999.9 59.0 33.1 0.00G 999.9 000000 724050 13743 20011113 44.1 24 29.7 24 1034.3 24 9999.9 0 9.6 24 4.4 24 8.0 999.9 63.0 33.1 0.00G 999.9 000000 724050 13743 20011114 48.5 24 37.1 24 1029.0 24 9999.9 0 9.2 24 5.8 24 8.9 999.9 62.1 34.0 0.00G 999.9 100000 724050 13743 20011115 53.1 24 39.1 24 1023.7 24 9999.9 0 9.4 24 4.4 24 10.1 999.9 72.0 37.9 0.00G 999.9 000000 724050 13743 20011116 57.7 24 44.3 24 1020.7 24 9999.9 0 7.6 24 5.9 24 8.9 15.9 75.9 41.0 0.00G 999.9 000000 724050 13743 20011117 56.9 24 44.5 24 1027.1 24 9999.9 0 8.9 24 7.5 24 11.1 999.9 75.9 44.1 0.00G 999.9 000000 724050 13743 20011118 49.0 24 43.4 24 1029.9 23 9999.9 0 7.5 24 3.8 24 7.0 999.9 61.0 41.0 0.00G 999.9 100000 724050 13743 20011119 52.9 24 45.3 24 1021.9 24 9999.9 0 8.7 24 6.9 24 10.1 999.9 68.0 41.0 0.00G 999.9 100000 724050 13743 20011120 53.9 24 37.3 24 1014.4 24 9999.9 0 9.9 24 12.5 24 18.1 26.0 68.0 44.1 0.02G 999.9 010000 724050 13743 20011121 41.7 24 25.1 24 1020.8 24 9999.9 0 9.9 24 6.3 24 11.1 999.9 62.1 33.1 0.01G 999.9 000000 724050 13743 20011122 44.8 24 27.6 24 1020.0 24 9999.9 0 9.9 24 4.3 24 7.0 999.9 60.1 33.1 0.00G 999.9 000000 724050 13743 20011123 48.7 24 35.0 24 1021.9 24 9999.9 0 9.7 24 4.1 24 8.0 999.9 64.0 35.1 0.00G 999.9 000000 724050 13743 20011124 52.5 24 47.2 24 1023.9 24 9999.9 0 6.0 24 5.5 24 10.1 999.9 64.0 37.0 0.00G 999.9 110000 724050 13743 20011125 62.5 24 58.1 24 1020.5 24 9999.9 0 8.7 24 11.2 24 18.1 23.9 66.0* 60.1* 0.12G 999.9 110000 724050 13743 20011126 59.5 24 53.6 24 1020.5 22 9999.9 0 7.0 24 6.0 24 13.0 999.9 66.9 50.0 0.38G 999.9 110000 724050 13743 20011127 52.1 24 47.6 24 1020.7 24 9999.9 0 6.8 24 3.3 24 7.0 999.9 66.9 45.0 0.00G 999.9 100000 724050 13743 20011128 59.9 24 56.1 24 1021.5 21 9999.9 0 3.8 24 3.1 24 8.9 999.9 71.1 45.0 0.00G 999.9 110000 724050 13743 20011129 59.6 24 57.4 24 1022.7 21 9999.9 0 3.2 24 5.8 24 11.1 999.9 71.1 55.0 0.00G 999.9 110000 724050 13743 20011130 65.2 24 53.5 24 1016.8 24 9999.9 0 8.3 24 10.6 24 15.9 999.9 71.6* 61.0* 0.00G 999.9 110000 724050 13743 20011201 64.0 24 56.2 24 1016.9 24 9999.9 0 9.0 24 7.2 24 15.0 19.0 72.0 46.9 0.01G 999.9 100000 724050 13743 20011202 52.3 24 38.3 24 1024.9 24 9999.9 0 9.9 24 9.8 24 14.0 999.9 62.1* 46.4* 0.00G 999.9 000000 724050 13743 20011203 46.4 24 37.9 24 1027.8 24 9999.9 0 7.3 24 3.6 24 8.0 999.9 57.9 36.0 0.00G 999.9 100000 724050 13743 20011204 51.0 24 40.5 24 1027.2 24 9999.9 0 8.5 24 4.4 24 7.0 999.9 70.0 36.0 0.00G 999.9 100000 724050 13743 20011205 58.9 24 40.5 24 1027.1 24 9999.9 0 9.9 24 6.0 24 8.9 999.9 75.0 39.9 0.00G 999.9 000000 724050 13743 20011206 60.6 24 46.1 24 1021.7 24 9999.9 0 9.9 24 7.7 24 13.0 999.9 75.0 48.0 0.00G 999.9 000000 724050 13743 20011207 58.6 24 49.4 24 1016.4 24 9999.9 0 9.1 24 5.3 24 14.0 999.9 75.0 51.1 0.00G 999.9 110000 724050 13743 20011208 49.3 24 42.2 24 1019.5 20 9999.9 0 7.5 24 7.2 24 11.1 999.9 57.9* 42.8* 0.00G 999.9 110000 724050 13743 20011209 47.1 24 39.5 24 1018.5 22 9999.9 0 8.2 24 9.5 24 15.9 22.9 53.1 43.0 0.58G 999.9 110000 724050 13743 20011210 42.1 24 34.1 24 1028.5 24 9999.9 0 9.9 24 4.6 24 10.1 999.9 53.1 35.1 0.01G 999.9 010000 724050 13743 20011211 46.9 24 43.4 24 1025.6 20 9999.9 0 7.3 24 6.9 24 14.0 999.9 52.0 35.1 0.41G 999.9 110000 724050 13743 20011212 46.3 24 41.6 24 1029.4 24 9999.9 0 6.7 24 5.8 24 8.9 999.9 52.0 42.1 0.03G 999.9 100000 724050 13743 20011213 51.7 24 49.2 24 1020.3 22 9999.9 0 6.0 24 6.4 24 10.1 999.9 57.9 42.1 0.00G 999.9 110000 724050 13743 20011214 57.8 24 56.0 24 1013.2 20 9999.9 0 7.0 24 6.7 24 14.0 19.0 66.9 48.0 0.02G 999.9 110000 724050 13743 20011215 54.5 24 40.1 24 1019.4 24 9999.9 0 9.9 24 12.1 24 18.1 23.9 66.9* 44.6* 0.04G 999.9 000000 724050 13743 20011216 41.5 24 27.0 24 1031.5 24 9999.9 0 9.9 24 5.8 24 14.0 999.9 60.1 35.1 0.00G 999.9 000000 724050 13743 20011217 47.1 24 37.2 24 1019.8 24 9999.9 0 9.9 24 8.6 24 14.0 18.1 57.9 35.1 0.00G 999.9 010000 724050 13743 20011218 53.6 24 43.8 24 1002.3 21 9999.9 0 9.3 24 15.1 24 28.0 36.9 57.9 42.1 0.12G 999.9 110000 724050 13743 20011219 45.0 24 33.0 24 1012.5 24 9999.9 0 9.9 24 6.5 24 13.0 999.9 57.9 37.0 0.03G 999.9 000000 724050 13743 20011220 44.8 24 26.8 24 1011.2 24 9999.9 0 9.9 24 11.8 24 20.0 28.9 53.1 37.0 0.00G 999.9 000000 724050 13743 20011221 40.6 24 15.0 24 1020.2 24 9999.9 0 9.9 24 11.8 24 17.1 22.0 45.0* 35.6* 0.00G 999.9 000000 724050 13743 20011222 37.4 24 20.0 24 1029.6 24 9999.9 0 9.9 24 6.8 24 11.1 999.9 46.0 28.9 0.00G 999.9 000000 724050 13743 20011223 41.3 24 27.8 24 1022.2 24 9999.9 0 9.9 24 8.1 24 14.0 21.0 52.0 28.9 0.00G 999.9 000000 724050 13743 20011224 45.7 24 33.8 24 1010.2 24 9999.9 0 9.2 24 7.6 24 15.9 21.0 52.0 34.0 0.33G 999.9 110000 724050 13743 20011225 35.1 24 16.1 24 1016.5 24 9999.9 0 9.9 24 4.5 24 8.9 999.9 48.0 28.0 0.20G 999.9 000000 724050 13743 20011226 34.2 24 17.0 24 1013.1 24 9999.9 0 9.9 24 9.3 24 14.0 999.9 41.0 28.0 0.00G 999.9 000000 724050 13743 20011227 31.5 24 14.1 24 1008.1 24 9999.9 0 10.0 24 7.7 24 17.1 999.9 39.0 24.1 0.00G 999.9 000000 724050 13743 20011228 33.7 24 19.1 24 1007.6 24 9999.9 0 9.9 24 7.0 24 14.0 999.9 46.0 24.1 0.00G 999.9 000000 724050 13743 20011229 37.2 24 22.7 24 1008.1 24 9999.9 0 9.9 24 5.7 24 15.9 22.9 46.9 25.0 0.00G 999.9 000000 724050 13743 20011230 27.8 24 6.7 24 1017.8 24 9999.9 0 9.9 24 12.2 24 17.1 32.1 46.9 23.0 0.00G 999.9 000000 724050 13743 20011231 27.5 24 7.5 24 1020.5 24 9999.9 0 9.9 24 5.7 24 8.9 999.9 36.0* 21.2* 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/1954/0000755000175000017500000000000014302004506015102 5ustar nileshnileshfluids-1.0.22/tests/gsod/1954/724050-13743.op0000644000175000017500000014327214302004506016673 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19540101 41.0 24 18.6 24 1014.5 24 1013.4 24 14.5 24 9.6 24 20.0 999.9 60.3* 30.4* 0.00I 999.9 000000 724050 13743 19540102 43.4 24 28.6 24 1020.5 24 1019.5 24 11.0 24 5.3 24 12.0 999.9 57.4* 29.3* 0.00I 999.9 000000 724050 13743 19540103 46.5 24 33.8 24 1014.2 24 1013.2 24 12.6 24 9.9 24 28.0 999.9 48.4* 43.3* 99.99 999.9 010000 724050 13743 19540104 39.1 24 28.8 24 1022.3 24 1021.2 24 12.4 24 11.3 24 18.1 999.9 43.3* 35.4* 0.00I 999.9 000000 724050 13743 19540105 36.3 24 30.4 24 1012.9 24 1011.9 24 4.1 24 2.7 24 9.9 999.9 49.3* 28.4* 0.00I 999.9 000000 724050 13743 19540106 37.2 24 28.3 24 1007.3 24 1006.3 24 8.1 24 10.4 24 18.1 999.9 40.3* 33.4* 99.99 999.9 010000 724050 13743 19540107 36.5 24 24.2 24 1013.2 24 1012.2 24 14.2 24 15.0 24 22.9 999.9 42.4* 32.4* 0.00I 999.9 000000 724050 13743 19540108 36.2 24 23.7 24 1022.3 24 1021.3 24 13.7 24 7.0 24 15.0 999.9 42.4* 30.4* 0.00I 999.9 000000 724050 13743 19540109 39.4 24 30.1 24 1019.6 24 1018.6 24 10.0 24 7.2 24 14.0 999.9 53.4* 30.4* 99.99 999.9 010000 724050 13743 19540110 44.3 24 40.4 24 1014.4 24 1013.4 24 4.3 24 4.5 24 13.0 999.9 51.3* 36.3* 99.99 999.9 110000 724050 13743 19540111 24.1 24 22.0 24 1012.2 24 1011.1 24 2.6 24 12.1 24 15.9 999.9 33.4* 20.3* 99.99 999.9 111000 724050 13743 19540112 23.5 24 15.0 24 1012.1 24 1011.1 24 10.9 24 13.4 24 26.0 999.9 27.3* 19.4* 99.99 999.9 001000 724050 13743 19540113 20.3 24 9.3 24 1031.1 24 1030.0 24 13.5 24 11.7 24 22.0 999.9 24.4* 15.4* 0.00I 999.9 000000 724050 13743 19540114 24.4 24 15.6 24 1032.6 24 1031.6 24 7.9 24 5.5 24 15.0 999.9 32.4* 17.4* 99.99 999.9 001000 724050 13743 19540115 34.0 24 31.7 24 1021.4 24 1020.4 24 4.1 24 3.0 24 9.9 999.9 37.4* 29.3* 99.99 999.9 111000 724050 13743 19540116 36.9 24 34.7 24 1007.8 24 1006.8 24 4.5 24 6.7 24 13.0 999.9 42.4* 34.3* 99.99 999.9 110000 724050 13743 19540117 33.5 24 23.6 24 1017.0 24 1016.0 24 11.6 24 13.0 24 23.9 999.9 40.3* 23.4* 0.00I 999.9 000000 724050 13743 19540118 23.0 24 11.4 24 1030.8 24 1029.7 24 13.3 24 7.8 24 15.0 999.9 36.3* 14.4* 0.00I 999.9 000000 724050 13743 19540119 40.3 24 31.6 24 1024.1 24 1023.1 24 7.5 24 4.7 24 11.1 999.9 52.3* 33.4* 0.00I 999.9 000000 724050 13743 19540120 48.4 24 46.1 24 1021.3 24 1020.3 24 3.1 24 4.5 24 14.0 999.9 60.3* 41.4* 99.99 999.9 110000 724050 13743 19540121 55.0 24 51.9 24 1015.8 24 1014.8 24 8.4 24 6.9 24 13.0 999.9 60.3* 44.4* 99.99 999.9 010000 724050 13743 19540122 29.3 24 23.0 24 1025.5 24 1024.5 24 6.2 24 9.9 24 12.0 999.9 43.3* 21.4* 99.99 999.9 011000 724050 13743 19540123 21.2 24 10.1 24 1031.2 24 1030.2 24 9.9 24 10.1 24 15.0 999.9 27.3* 14.4* 0.00I 999.9 000000 724050 13743 19540124 29.5 24 23.0 24 1032.3 24 1031.3 24 7.3 24 5.9 24 12.0 999.9 36.3* 25.3* 99.99 999.9 001000 724050 13743 19540125 37.6 24 31.1 24 1027.5 24 1026.5 24 6.8 24 5.6 24 9.9 999.9 48.4* 33.4* 0.00I 999.9 100000 724050 13743 19540126 46.3 24 38.4 24 1026.2 24 1025.2 24 5.6 24 6.0 24 9.9 999.9 61.3* 39.4* 0.00I 999.9 000000 724050 13743 19540127 57.6 24 48.6 24 1012.9 24 1011.9 24 10.1 24 10.1 24 19.0 999.9 70.3* 51.3* 99.99 999.9 010000 724050 13743 19540128 37.8 24 21.6 24 1017.5 24 1016.5 24 14.9 24 20.5 24 29.9 999.9 52.3* 32.4* 0.00I 999.9 000000 724050 13743 19540129 32.3 24 15.4 24 1027.5 24 1026.4 24 11.0 24 7.5 24 16.9 999.9 40.3* 25.3* 0.00I 999.9 000000 724050 13743 19540130 38.2 24 19.9 24 1020.4 24 1019.4 24 11.1 24 8.9 24 19.0 999.9 53.4* 31.3* 0.00I 999.9 000000 724050 13743 19540131 34.4 24 13.2 24 1025.9 24 1024.8 24 13.8 24 12.5 24 21.0 999.9 45.3* 28.4* 0.00I 999.9 000000 724050 13743 19540201 31.1 24 13.6 24 1026.4 24 1025.4 24 12.5 24 5.7 24 12.0 999.9 42.4* 21.4* 0.00I 999.9 000000 724050 13743 19540202 46.2 24 24.8 24 1011.7 24 1010.7 24 9.6 24 4.4 24 11.1 999.9 59.4* 39.4* 99.99 999.9 001000 724050 13743 19540203 46.3 24 32.9 24 1006.0 24 1005.0 24 8.4 24 4.4 24 12.0 999.9 52.3* 40.3* 0.00I 999.9 000000 724050 13743 19540204 36.6 24 26.1 24 1005.8 24 1004.8 24 10.6 24 8.0 24 15.0 999.9 39.4* 32.4* 0.00I 999.9 000000 724050 13743 19540205 35.1 24 21.2 24 1006.9 24 1005.9 24 13.5 24 11.7 24 20.0 999.9 40.3* 30.4* 0.00I 999.9 000000 724050 13743 19540206 38.8 24 23.0 24 1010.2 24 1009.1 24 13.1 24 9.8 24 20.0 999.9 45.3* 34.3* 0.00I 999.9 000000 724050 13743 19540207 33.6 24 19.7 24 1020.2 24 1019.2 24 14.5 24 13.5 24 21.0 999.9 39.4* 29.3* 0.00I 999.9 000000 724050 13743 19540208 33.6 24 19.3 24 1013.6 24 1012.6 24 11.9 24 6.2 24 12.0 999.9 45.3* 25.3* 99.99 999.9 001000 724050 13743 19540209 37.2 24 26.8 24 1000.2 24 999.1 24 11.2 24 11.5 24 20.0 999.9 43.3* 32.4* 99.99 999.9 001000 724050 13743 19540210 41.9 24 24.6 24 1003.8 24 1002.8 24 13.6 24 5.6 24 12.0 999.9 63.3* 29.3* 0.00I 999.9 000000 724050 13743 19540211 47.6 24 30.1 24 1006.7 24 1005.7 24 8.5 24 3.4 24 11.1 999.9 54.3* 42.4* 0.00I 999.9 000000 724050 13743 19540212 28.4 24 11.0 24 1023.8 24 1022.8 24 13.7 24 17.9 24 26.0 999.9 44.4* 23.4* 0.00I 999.9 000000 724050 13743 19540213 24.6 24 6.4 24 1034.3 24 1033.3 24 13.7 24 7.1 24 13.0 999.9 32.4* 18.3* 0.00I 999.9 000000 724050 13743 19540214 38.7 24 23.3 24 1025.5 24 1024.5 24 11.6 24 6.8 24 9.9 999.9 60.3* 27.3* 0.00I 999.9 000000 724050 13743 19540215 60.8 24 45.3 24 1019.9 24 1018.9 24 14.1 24 7.6 24 12.0 999.9 75.4* 53.4* 0.00I 999.9 000000 724050 13743 19540216 65.8 24 50.3 24 1017.3 24 1016.2 24 12.8 24 8.4 24 12.0 999.9 74.3* 60.3* 0.00I 999.9 000000 724050 13743 19540217 56.4 24 46.5 24 1009.3 24 1008.3 24 10.8 24 11.5 24 23.9 999.9 67.3* 43.3* 99.99 999.9 010000 724050 13743 19540218 47.4 24 29.0 24 1023.2 24 1022.2 24 14.8 24 10.1 24 19.0 999.9 60.3* 39.4* 0.00I 999.9 000000 724050 13743 19540219 45.7 24 27.3 24 1028.8 24 1027.7 24 10.1 24 1.6 24 5.1 999.9 61.3* 33.4* 0.00I 999.9 000000 724050 13743 19540220 42.8 24 35.4 24 1028.8 24 1027.8 24 7.8 24 2.4 24 5.1 999.9 50.4* 36.3* 99.99 999.9 110000 724050 13743 19540221 54.9 24 50.3 24 1016.8 24 1015.8 24 9.0 24 7.5 24 12.0 999.9 59.4* 47.3* 99.99 999.9 110000 724050 13743 19540222 52.2 24 43.8 24 1014.7 24 1013.6 24 8.7 24 6.0 24 18.1 999.9 56.3* 44.4* 99.99 999.9 110000 724050 13743 19540223 43.2 24 25.5 24 1021.3 24 1020.3 24 13.3 24 6.4 24 15.9 999.9 52.3* 34.3* 0.00I 999.9 000000 724050 13743 19540224 44.7 24 35.5 24 1012.1 24 1011.1 24 8.5 24 2.8 24 8.0 999.9 56.3* 37.4* 99.99 999.9 010000 724050 13743 19540225 49.6 24 39.8 24 1004.2 24 1003.2 24 8.4 24 3.4 24 9.9 999.9 61.3* 38.3* 99.99 999.9 110000 724050 13743 19540226 51.7 24 37.1 24 999.3 24 998.3 24 11.5 24 11.2 24 33.0 999.9 56.3* 43.3* 99.99 999.9 010000 724050 13743 19540227 41.6 24 22.7 24 1013.1 24 1012.1 24 13.5 24 8.3 24 16.9 999.9 55.4* 32.4* 0.00I 999.9 000000 724050 13743 19540228 50.8 24 41.2 24 1010.8 24 1009.8 24 10.9 24 6.2 24 12.0 999.9 70.3* 40.3* 0.00I 999.9 100000 724050 13743 19540301 56.6 24 51.1 24 998.4 24 997.4 24 9.3 24 14.4 24 22.9 999.9 63.3* 42.4* 99.99 999.9 110000 724050 13743 19540302 42.6 24 23.8 24 1014.3 24 1013.3 24 14.9 24 8.9 24 14.0 999.9 54.3* 34.3* 0.00I 999.9 000000 724050 13743 19540303 43.3 24 34.0 24 1011.3 24 1010.3 24 11.3 24 10.7 24 25.1 999.9 49.3* 39.4* 99.99 999.9 110000 724050 13743 19540304 31.4 24 11.3 24 1014.8 24 1013.8 24 14.9 24 15.0 24 21.0 999.9 38.3* 26.4* 0.00I 999.9 000000 724050 13743 19540305 31.1 24 16.2 24 1019.0 24 1018.0 24 14.1 24 10.7 24 22.9 999.9 39.4* 25.3* 0.00I 999.9 000000 724050 13743 19540306 34.4 24 14.7 24 1018.1 24 1017.1 24 14.9 24 7.7 24 15.9 999.9 42.4* 28.4* 0.00I 999.9 000000 724050 13743 19540307 39.5 24 17.4 24 1015.1 24 1014.0 24 14.7 24 4.2 24 8.9 999.9 58.3* 27.3* 0.00I 999.9 000000 724050 13743 19540308 47.2 24 28.9 24 1015.8 24 1014.7 24 12.7 24 5.4 24 9.9 999.9 56.3* 38.3* 0.00I 999.9 000000 724050 13743 19540309 47.5 24 31.3 24 1012.6 24 1011.6 24 6.8 24 3.9 24 14.0 999.9 68.4* 32.4* 0.00I 999.9 000000 724050 13743 19540310 54.3 24 34.5 24 1001.4 24 1000.3 24 9.6 24 7.3 24 15.9 999.9 61.3* 46.4* 0.00I 999.9 000000 724050 13743 19540311 38.7 24 29.0 24 1008.4 24 1007.4 24 5.4 24 2.8 24 9.9 999.9 48.4* 33.4* 99.99 999.9 111000 724050 13743 19540312 38.3 24 33.3 24 1014.3 24 1013.3 24 4.9 24 2.8 24 7.0 999.9 41.4* 36.3* 99.99 999.9 110000 724050 13743 19540313 40.5 24 35.4 24 1014.7 24 1013.7 24 5.1 24 3.2 24 8.0 999.9 43.3* 39.4* 99.99 999.9 110000 724050 13743 19540314 45.1 24 38.2 24 1001.4 24 1000.4 24 6.7 24 9.8 24 23.9 999.9 51.3* 40.3* 99.99 999.9 110000 724050 13743 19540315 36.6 24 17.7 24 1010.1 24 1009.1 24 14.3 24 14.9 24 22.9 999.9 41.4* 31.3* 0.00I 999.9 000000 724050 13743 19540316 36.9 24 19.0 24 1021.3 24 1020.3 24 14.9 24 16.1 24 22.9 999.9 48.4* 29.3* 0.00I 999.9 000000 724050 13743 19540317 43.1 24 22.4 24 1025.0 24 1024.0 24 14.2 24 9.5 24 15.0 999.9 54.3* 35.4* 0.00I 999.9 000000 724050 13743 19540318 46.0 24 21.2 24 1022.7 24 1021.7 24 13.9 24 4.4 24 8.9 999.9 55.4* 36.3* 0.00I 999.9 000000 724050 13743 19540319 48.1 24 30.3 24 1017.0 24 1015.9 24 12.7 24 6.2 24 9.9 999.9 63.3* 37.4* 99.99 999.9 010000 724050 13743 19540320 57.9 24 48.1 24 999.2 24 998.2 24 11.2 24 10.9 24 19.0 999.9 63.3* 51.3* 99.99 999.9 110000 724050 13743 19540321 40.4 24 23.7 24 1008.8 24 1007.7 24 12.2 24 15.6 24 23.9 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19540322 39.2 24 15.8 24 1018.3 24 1017.3 24 14.9 24 10.9 24 16.9 999.9 54.3* 30.4* 0.00I 999.9 000000 724050 13743 19540323 51.5 24 30.8 24 1015.0 24 1013.9 24 12.1 24 5.7 24 11.1 999.9 58.3* 47.3* 0.00I 999.9 000000 724050 13743 19540324 50.0 24 34.0 24 1022.6 24 1021.6 24 8.7 24 3.7 24 11.1 999.9 66.4* 37.4* 0.00I 999.9 000000 724050 13743 19540325 53.2 24 45.2 24 1018.3 24 1017.3 24 5.3 24 4.9 24 8.9 999.9 66.4* 47.3* 99.99 999.9 110000 724050 13743 19540326 62.1 24 50.1 24 1011.5 24 1010.5 24 9.0 24 8.0 24 15.0 999.9 68.4* 56.3* 99.99 999.9 110000 724050 13743 19540327 48.4 24 30.6 24 1023.9 24 1022.9 24 12.6 24 7.2 24 15.9 999.9 58.3* 43.3* 0.00I 999.9 000000 724050 13743 19540328 48.8 24 35.9 24 1020.9 24 1019.9 24 10.9 24 5.1 24 11.1 999.9 63.3* 37.4* 0.00I 999.9 000000 724050 13743 19540329 58.9 24 45.9 24 1013.9 24 1012.9 24 12.1 24 8.2 24 16.9 999.9 75.4* 48.4* 0.00I 999.9 000000 724050 13743 19540330 60.1 24 47.3 24 1007.0 24 1006.0 24 13.1 24 11.8 24 16.9 999.9 68.4* 52.3* 99.99 999.9 110000 724050 13743 19540331 39.5 24 35.3 24 1016.4 24 1015.4 24 4.8 24 10.8 24 15.9 999.9 50.4* 35.4* 99.99 999.9 111000 724050 13743 19540401 39.9 24 29.6 24 1020.2 24 1019.2 24 7.5 24 12.3 24 20.0 999.9 47.3* 36.3* 99.99 999.9 111000 724050 13743 19540402 45.6 24 29.8 24 1023.3 24 1022.3 24 11.2 24 8.2 24 18.1 999.9 63.3* 34.3* 0.00I 999.9 000000 724050 13743 19540403 51.1 24 32.5 24 1018.3 24 1017.3 24 12.1 24 16.7 24 26.0 999.9 61.3* 42.4* 0.00I 999.9 000000 724050 13743 19540404 37.3 24 14.6 24 1032.1 24 1031.1 24 12.3 24 11.1 24 15.9 999.9 45.3* 30.4* 99.99 999.9 001000 724050 13743 19540405 40.0 22 29.7 22 1031.9 22 1030.9 22 10.5 22 9.4 22 20.0 999.9 47.3* 35.4* 99.99 999.9 010000 724050 13743 19540406 54.2 23 47.5 23 1023.8 23 1022.8 23 7.2 23 10.6 23 19.0 999.9 78.3* 41.4* 0.00I 999.9 100000 724050 13743 19540407 70.7 24 58.0 24 1018.8 24 1017.8 24 11.8 24 7.9 24 26.0 999.9 82.4* 59.4* 99.99 999.9 010000 724050 13743 19540408 68.4 24 57.2 24 1015.4 24 1014.3 24 13.0 24 12.7 24 26.0 999.9 80.2* 62.4* 99.99 999.9 010010 724050 13743 19540409 51.2 24 29.4 24 1031.5 24 1030.5 24 14.9 24 12.8 24 22.0 999.9 60.3* 40.3* 0.00I 999.9 000000 724050 13743 19540410 50.3 24 36.3 24 1035.1 24 1034.0 24 13.0 24 6.4 24 12.0 999.9 65.3* 36.3* 0.00I 999.9 000000 724050 13743 19540411 63.4 24 52.5 24 1024.2 24 1023.2 24 13.2 24 10.0 24 15.0 999.9 79.3* 52.3* 99.99 999.9 010000 724050 13743 19540412 60.7 24 43.1 24 1022.7 24 1021.7 24 13.5 24 12.7 24 26.0 999.9 68.4* 55.4* 99.99 999.9 010000 724050 13743 19540413 56.5 24 36.7 24 1025.8 24 1024.8 24 12.9 24 5.4 24 12.0 999.9 74.3* 41.4* 0.00I 999.9 000000 724050 13743 19540414 66.6 24 44.6 24 1015.8 24 1014.8 24 13.3 24 8.0 24 14.0 999.9 82.4* 54.3* 0.00I 999.9 000000 724050 13743 19540415 68.2 24 57.5 24 1016.7 24 1015.7 24 8.7 24 5.6 24 16.9 999.9 76.3* 57.4* 99.99 999.9 010000 724050 13743 19540416 54.7 24 53.2 24 1015.7 24 1014.7 24 3.8 24 4.9 24 8.9 999.9 62.4* 50.4* 99.99 999.9 110000 724050 13743 19540417 57.1 24 50.6 24 1003.0 24 1002.0 24 10.2 24 13.8 24 22.9 999.9 71.2* 49.3* 99.99 999.9 110000 724050 13743 19540418 60.7 24 40.3 24 1013.3 24 1012.3 24 14.8 24 9.2 24 13.0 999.9 83.3* 47.3* 0.00I 999.9 000000 724050 13743 19540419 71.7 24 47.9 24 1020.1 24 1019.1 24 12.3 24 6.6 24 14.0 999.9 87.3* 55.4* 0.00I 999.9 000000 724050 13743 19540420 72.7 24 52.8 24 1027.3 24 1026.3 24 14.9 24 9.9 24 13.0 999.9 85.3* 62.4* 0.00I 999.9 000000 724050 13743 19540421 69.7 24 57.7 24 1028.0 24 1027.0 24 12.4 24 8.8 24 12.0 999.9 82.4* 59.4* 0.00I 999.9 000000 724050 13743 19540422 69.9 24 56.7 24 1024.1 24 1023.0 24 13.7 24 8.3 24 12.0 999.9 83.3* 59.4* 0.00I 999.9 000000 724050 13743 19540423 70.0 24 60.7 24 1019.9 24 1018.8 24 12.0 24 8.6 24 13.0 999.9 83.3* 64.4* 99.99 999.9 010010 724050 13743 19540424 62.1 24 58.8 24 1023.3 24 1022.3 24 5.3 24 6.3 24 9.9 999.9 65.3* 60.3* 99.99 999.9 110000 724050 13743 19540425 64.0 24 57.1 24 1022.3 24 1021.3 24 6.4 24 4.8 24 9.9 999.9 80.2* 56.3* 99.99 999.9 110000 724050 13743 19540426 68.5 24 59.5 24 1019.0 24 1018.0 24 8.2 24 6.8 24 13.0 999.9 75.4* 61.3* 99.99 999.9 010010 724050 13743 19540427 66.1 24 60.6 24 1011.8 24 1010.8 24 5.4 24 6.0 24 22.9 999.9 82.4* 61.3* 99.99 999.9 110010 724050 13743 19540428 65.7 24 62.7 24 1004.6 24 1003.6 24 3.9 24 5.2 24 14.0 999.9 75.4* 58.3* 99.99 999.9 110010 724050 13743 19540429 53.7 24 47.3 24 1018.7 24 1017.6 24 3.7 24 6.5 24 12.0 999.9 59.4* 50.4* 99.99 999.9 110000 724050 13743 19540430 60.4 24 51.3 24 1022.8 24 1021.8 24 8.3 24 4.2 24 8.9 999.9 74.3* 52.3* 0.00I 999.9 100000 724050 13743 19540501 69.7 24 60.5 24 1021.5 24 1020.4 24 10.3 24 3.9 24 8.9 999.9 83.3* 59.4* 0.00I 999.9 100000 724050 13743 19540502 75.6 24 65.6 24 1016.2 24 1015.2 24 8.5 24 2.5 24 7.0 999.9 89.2* 65.3* 0.00I 999.9 000000 724050 13743 19540503 75.7 24 68.1 24 1008.0 24 1006.9 24 8.3 24 4.9 24 12.0 999.9 90.3* 68.4* 99.99 999.9 010010 724050 13743 19540504 57.9 24 44.6 24 1008.7 24 1007.6 24 10.7 24 14.7 24 25.1 999.9 69.3* 49.3* 99.99 999.9 110000 724050 13743 19540505 52.4 24 30.3 24 1012.6 24 1011.6 24 14.8 24 10.6 24 16.9 999.9 61.3* 42.4* 0.00I 999.9 000000 724050 13743 19540506 56.7 24 38.1 24 1011.1 24 1010.1 24 13.8 24 6.1 24 15.9 999.9 65.3* 50.4* 0.00I 999.9 000000 724050 13743 19540507 57.3 24 45.6 24 1013.3 24 1012.3 24 9.8 24 8.1 24 15.9 999.9 64.4* 51.3* 99.99 999.9 110000 724050 13743 19540508 59.9 24 52.9 24 1010.1 24 1009.1 24 7.5 24 8.2 24 22.9 999.9 68.4* 56.3* 99.99 999.9 110000 724050 13743 19540509 55.6 24 39.9 24 1012.1 24 1011.0 24 11.9 24 7.2 24 15.0 999.9 62.4* 45.3* 99.99 999.9 110000 724050 13743 19540510 50.7 24 38.9 24 1011.8 24 1010.8 24 12.3 24 14.7 24 23.9 999.9 58.3* 44.4* 0.00I 999.9 000000 724050 13743 19540511 53.6 24 38.6 24 1013.3 24 1012.3 24 14.0 24 10.2 24 22.0 999.9 62.4* 45.3* 99.99 999.9 010000 724050 13743 19540512 58.0 24 42.2 24 1012.2 24 1011.2 24 13.8 24 11.0 24 19.0 999.9 65.3* 49.3* 0.00I 999.9 000000 724050 13743 19540513 58.1 24 44.4 24 1018.2 24 1017.2 24 11.2 24 4.2 24 9.9 999.9 65.3* 48.4* 0.00I 999.9 000000 724050 13743 19540514 54.6 24 45.3 24 1019.1 24 1018.0 24 9.9 24 9.2 24 14.0 999.9 59.4* 49.3* 99.99 999.9 010000 724050 13743 19540515 55.8 24 48.3 24 1016.9 24 1015.9 24 10.8 24 9.3 24 14.0 999.9 67.3* 48.4* 99.99 999.9 110000 724050 13743 19540516 65.6 24 53.1 24 1012.3 24 1011.3 24 12.9 24 5.5 24 9.9 999.9 80.2* 53.4* 0.00I 999.9 000000 724050 13743 19540517 68.2 24 55.1 24 1010.1 24 1009.1 24 12.0 24 5.0 24 9.9 999.9 75.4* 60.3* 99.99 999.9 010000 724050 13743 19540518 64.0 24 52.9 24 1011.3 24 1010.3 24 9.8 24 4.4 24 9.9 999.9 67.3* 60.3* 99.99 999.9 010000 724050 13743 19540519 63.3 24 52.8 24 1010.0 24 1009.0 24 10.3 24 5.3 24 9.9 999.9 73.4* 56.3* 99.99 999.9 110000 724050 13743 19540520 55.6 24 52.3 24 1009.4 24 1008.4 24 4.7 24 9.4 24 14.0 999.9 65.3* 53.4* 99.99 999.9 110000 724050 13743 19540521 59.1 24 47.2 24 1009.7 24 1008.7 24 11.5 24 13.0 24 21.0 999.9 67.3* 52.3* 99.99 999.9 010000 724050 13743 19540522 63.3 24 40.8 24 1014.4 24 1013.4 24 14.9 24 8.9 24 12.0 999.9 74.3* 52.3* 0.00I 999.9 000000 724050 13743 19540523 65.1 24 44.1 24 1018.6 24 1017.5 24 13.7 24 4.4 24 9.9 999.9 76.3* 51.3* 0.00I 999.9 000000 724050 13743 19540524 66.8 24 47.6 24 1018.6 24 1017.6 24 13.2 24 4.4 24 12.0 999.9 80.2* 55.4* 0.00I 999.9 000000 724050 13743 19540525 69.8 24 53.7 24 1013.4 24 1012.4 24 9.6 24 5.1 24 12.0 999.9 83.3* 58.3* 99.99 999.9 010000 724050 13743 19540526 73.2 24 51.8 24 1018.1 24 1017.1 24 11.4 24 3.5 24 8.9 999.9 82.4* 62.4* 99.99 999.9 010000 724050 13743 19540527 67.4 24 55.1 24 1020.4 24 1019.4 24 11.8 24 7.1 24 15.0 999.9 75.4* 60.3* 0.00I 999.9 000000 724050 13743 19540528 69.0 24 60.2 24 1015.6 24 1014.6 24 9.0 24 6.5 24 14.0 999.9 83.3* 59.4* 0.00I 999.9 100000 724050 13743 19540529 73.3 24 66.1 24 1010.0 24 1008.9 24 12.9 24 8.8 24 16.9 999.9 85.3* 68.4* 99.99 999.9 010000 724050 13743 19540530 73.8 24 59.7 24 1014.9 24 1013.8 24 14.3 24 7.6 24 11.1 999.9 81.3* 67.3* 0.00I 999.9 000000 724050 13743 19540531 72.7 24 59.3 24 1019.4 24 1018.4 24 12.7 24 3.9 24 11.1 999.9 87.3* 59.4* 0.00I 999.9 000000 724050 13743 19540601 78.0 24 60.5 24 1012.3 24 1011.2 24 13.6 24 10.9 24 18.1 999.9 90.3* 69.3* 0.00I 999.9 000000 724050 13743 19540602 79.1 24 61.2 24 1004.2 24 1003.2 24 13.0 24 8.8 24 14.0 999.9 87.3* 71.2* 0.00I 999.9 000000 724050 13743 19540603 74.5 24 60.7 24 1004.9 24 1003.8 24 8.8 24 4.9 24 12.0 999.9 83.3* 62.4* 0.00I 999.9 000000 724050 13743 19540604 75.4 24 62.3 24 1002.2 24 1001.1 24 12.3 24 6.5 24 16.9 999.9 80.2* 67.3* 99.99 999.9 010000 724050 13743 19540605 65.8 24 49.8 24 1010.2 24 1009.2 24 14.3 24 10.8 24 19.0 999.9 72.3* 60.3* 0.00I 999.9 000000 724050 13743 19540606 67.2 24 45.5 24 1015.9 24 1014.9 24 14.5 24 11.2 24 18.1 999.9 79.3* 57.4* 0.00I 999.9 000000 724050 13743 19540607 69.2 24 52.7 24 1016.0 24 1015.0 24 14.1 24 4.9 24 15.0 999.9 81.3* 57.4* 0.00I 999.9 000000 724050 13743 19540608 75.2 24 57.7 24 1013.3 24 1012.3 24 12.7 24 4.7 24 9.9 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19540609 74.4 24 61.3 24 1015.8 24 1014.8 24 11.2 24 5.0 24 12.0 999.9 85.3* 64.4* 0.00I 999.9 000000 724050 13743 19540610 71.0 24 64.0 24 1016.1 24 1015.1 24 8.4 24 4.6 24 9.9 999.9 78.3* 65.3* 0.00I 999.9 000000 724050 13743 19540611 77.7 24 67.5 24 1011.6 24 1010.6 24 11.8 24 6.3 24 16.9 999.9 89.2* 70.3* 99.99 999.9 010010 724050 13743 19540612 81.5 24 66.6 24 1014.2 24 1013.2 24 8.8 24 3.1 24 8.9 999.9 94.3* 69.3* 0.00I 999.9 000000 724050 13743 19540613 83.9 24 67.9 24 1014.5 24 1013.4 24 8.6 24 7.1 24 14.0 999.9 98.2* 74.3* 0.00I 999.9 000000 724050 13743 19540614 80.6 24 65.8 24 1015.9 24 1014.9 24 11.8 24 6.2 24 13.0 999.9 91.2* 70.3* 0.00I 999.9 000000 724050 13743 19540615 77.8 24 69.1 24 1015.1 24 1014.1 24 6.6 24 6.6 24 19.0 999.9 87.3* 70.3* 99.99 999.9 010010 724050 13743 19540616 69.2 24 67.3 24 1017.3 24 1016.3 24 4.5 24 7.6 24 12.0 999.9 74.3* 66.4* 99.99 999.9 110000 724050 13743 19540617 65.5 24 59.7 24 1023.4 24 1022.4 24 8.9 24 8.7 24 13.0 999.9 72.3* 61.3* 99.99 999.9 010000 724050 13743 19540618 65.6 24 56.8 24 1026.0 24 1024.9 24 13.0 24 7.5 24 11.1 999.9 72.3* 58.3* 99.99 999.9 010000 724050 13743 19540619 69.0 24 53.4 24 1023.1 24 1022.1 24 12.2 24 3.0 24 8.9 999.9 82.4* 54.3* 0.00I 999.9 000000 724050 13743 19540620 73.0 24 53.7 24 1020.1 24 1019.0 24 14.3 24 4.5 24 8.9 999.9 86.4* 59.4* 0.00I 999.9 000000 724050 13743 19540621 78.0 24 61.0 24 1016.7 24 1015.7 24 14.9 24 8.8 24 11.1 999.9 90.3* 66.4* 0.00I 999.9 000000 724050 13743 19540622 80.6 24 65.1 24 1013.3 24 1012.3 24 14.9 24 8.8 24 12.0 999.9 93.4* 70.3* 0.00I 999.9 000000 724050 13743 19540623 80.3 24 64.3 24 1010.4 24 1009.4 24 13.7 24 10.4 24 19.0 999.9 87.3* 73.4* 99.99 999.9 010000 724050 13743 19540624 76.4 24 59.0 24 1015.9 24 1014.9 24 14.9 24 11.6 24 16.9 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19540625 78.8 24 60.6 24 1015.4 24 1014.3 24 12.3 24 4.6 24 9.9 999.9 90.3* 66.4* 0.00I 999.9 000000 724050 13743 19540626 83.6 24 65.7 24 1010.1 24 1009.1 24 11.7 24 6.0 24 18.1 999.9 100.2* 72.3* 99.99 999.9 010010 724050 13743 19540627 80.3 24 64.0 24 1007.4 24 1006.4 24 14.8 24 11.2 24 22.0 999.9 89.2* 73.4* 0.00I 999.9 000000 724050 13743 19540628 72.0 24 51.3 24 1010.7 24 1009.7 24 14.9 24 16.0 24 20.0 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19540629 75.7 24 56.1 24 1013.2 24 1012.2 24 13.2 24 11.0 24 19.0 999.9 87.3* 68.4* 0.00I 999.9 000000 724050 13743 19540630 77.5 24 59.3 24 1016.1 24 1015.1 24 12.5 24 3.7 24 9.9 999.9 88.3* 65.3* 99.99 999.9 010000 724050 13743 19540701 80.6 24 64.4 24 1018.2 24 1017.2 24 13.7 24 5.6 24 15.9 999.9 95.4* 66.4* 99.99 999.9 010010 724050 13743 19540702 83.5 24 66.4 24 1018.5 24 1017.5 24 12.3 24 6.0 24 14.0 999.9 96.3* 73.4* 0.00I 999.9 000000 724050 13743 19540703 83.8 24 66.8 24 1016.1 24 1015.0 24 10.5 24 3.5 24 14.0 999.9 96.3* 74.3* 0.00I 999.9 000000 724050 13743 19540704 81.3 24 69.0 24 1013.8 24 1012.8 24 8.8 24 8.4 24 14.0 999.9 88.3* 74.3* 0.00I 999.9 000000 724050 13743 19540705 75.8 24 66.7 24 1011.0 24 1010.0 24 5.3 24 5.2 24 13.0 999.9 87.3* 67.3* 99.99 999.9 010010 724050 13743 19540706 72.9 24 59.9 24 1011.4 24 1010.4 24 11.7 24 9.1 24 16.9 999.9 82.4* 65.3* 0.00I 999.9 100000 724050 13743 19540707 76.3 24 62.4 24 1009.4 24 1008.4 24 11.2 24 6.4 24 13.0 999.9 89.2* 67.3* 99.99 999.9 010010 724050 13743 19540708 72.9 24 62.9 24 1010.4 24 1009.4 24 11.7 24 6.7 24 12.0 999.9 78.3* 70.3* 99.99 999.9 010010 724050 13743 19540709 73.2 24 60.3 24 1015.4 24 1014.3 24 9.4 24 3.3 24 7.0 999.9 84.4* 63.3* 0.00I 999.9 000000 724050 13743 19540710 75.7 24 58.6 24 1019.0 24 1018.0 24 9.9 24 4.2 24 8.9 999.9 84.4* 65.3* 0.00I 999.9 100000 724050 13743 19540711 74.4 24 56.9 24 1019.2 24 1018.2 24 12.1 24 4.1 24 9.9 999.9 84.4* 63.3* 0.00I 999.9 000000 724050 13743 19540712 74.6 24 56.5 24 1017.3 24 1016.3 24 10.9 24 4.5 24 9.9 999.9 85.3* 62.4* 0.00I 999.9 000000 724050 13743 19540713 79.4 24 61.5 24 1011.1 24 1010.1 24 13.2 24 6.5 24 12.0 999.9 99.3* 65.3* 0.00I 999.9 000000 724050 13743 19540714 89.7 24 69.8 24 1008.0 24 1006.9 24 10.9 24 5.0 24 13.0 999.9 100.2* 75.4* 0.00I 999.9 000000 724050 13743 19540715 80.6 24 68.1 24 1007.3 24 1006.2 24 12.1 24 11.2 24 19.0 999.9 95.4* 72.3* 99.99 999.9 010010 724050 13743 19540716 75.0 24 53.7 24 1017.0 24 1015.9 24 14.9 24 7.3 24 13.0 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19540717 75.3 24 56.2 24 1020.1 24 1019.1 24 12.4 24 2.8 24 8.0 999.9 86.4* 62.4* 0.00I 999.9 000000 724050 13743 19540718 76.9 24 62.8 24 1016.2 24 1015.2 24 14.5 24 9.6 24 15.9 999.9 87.3* 69.3* 0.00I 999.9 000000 724050 13743 19540719 81.2 24 71.0 24 1008.7 24 1007.7 24 10.7 24 7.3 24 13.0 999.9 93.4* 72.3* 99.99 999.9 010010 724050 13743 19540720 82.6 24 65.4 24 1009.4 24 1008.4 24 12.7 24 6.6 24 9.9 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19540721 80.0 24 69.6 24 1006.6 24 1005.6 24 12.6 24 8.1 24 13.0 999.9 87.3* 74.3* 99.99 999.9 010000 724050 13743 19540722 79.8 24 65.0 24 1007.3 24 1006.3 24 13.9 24 6.8 24 12.0 999.9 88.3* 72.3* 0.00I 999.9 000000 724050 13743 19540723 77.1 24 57.5 24 1009.3 24 1008.3 24 14.3 24 8.8 24 15.9 999.9 85.3* 68.4* 0.00I 999.9 000000 724050 13743 19540724 77.4 24 55.4 24 1012.0 24 1011.0 24 14.3 24 6.2 24 12.0 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19540725 78.6 24 58.0 24 1014.7 24 1013.7 24 13.8 24 4.7 24 11.1 999.9 88.3* 68.4* 0.00I 999.9 000000 724050 13743 19540726 78.3 24 60.1 24 1016.8 24 1015.8 24 13.2 24 6.0 24 12.0 999.9 90.3* 66.4* 99.99 999.9 010010 724050 13743 19540727 80.9 24 61.8 24 1017.0 24 1016.0 24 12.9 24 4.6 24 8.9 999.9 94.3* 67.3* 0.00I 999.9 000000 724050 13743 19540728 84.2 24 63.4 24 1015.6 24 1014.6 24 12.3 24 4.6 24 9.9 999.9 97.3* 71.2* 0.00I 999.9 000000 724050 13743 19540729 86.4 24 63.8 24 1014.1 24 1013.0 24 10.6 24 6.0 24 14.0 999.9 98.2* 76.3* 0.00I 999.9 000000 724050 13743 19540730 87.3 24 67.0 24 1015.5 24 1014.5 24 12.0 24 3.4 24 9.9 999.9 99.3* 75.4* 0.00I 999.9 000000 724050 13743 19540731 89.5 24 69.4 24 1015.0 24 1014.0 24 9.9 24 5.1 24 9.9 999.9 102.4* 77.4* 0.00I 999.9 000000 724050 13743 19540801 88.1 24 67.9 24 1010.5 24 1009.5 24 12.5 24 7.7 24 12.0 999.9 94.3* 79.3* 0.00I 999.9 000000 724050 13743 19540802 78.4 24 61.9 24 1010.5 24 1009.4 24 10.2 24 7.3 24 12.0 999.9 90.3* 68.4* 99.99 999.9 010000 724050 13743 19540803 78.2 24 67.5 24 1006.7 24 1005.6 24 9.9 24 10.6 24 16.9 999.9 89.2* 72.3* 99.99 999.9 110010 724050 13743 19540804 81.0 24 61.1 24 1010.9 24 1009.9 24 14.9 24 8.3 24 18.1 999.9 90.3* 69.3* 0.00I 999.9 000000 724050 13743 19540805 74.7 24 66.0 24 1010.2 24 1009.2 24 10.3 24 6.8 24 12.0 999.9 84.4* 68.4* 99.99 999.9 110000 724050 13743 19540806 73.4 24 61.0 24 1008.4 24 1007.4 24 12.5 24 11.6 24 16.9 999.9 84.4* 66.4* 99.99 999.9 010010 724050 13743 19540807 75.5 24 58.2 24 1011.9 24 1010.9 24 12.6 24 9.2 24 13.0 999.9 83.3* 66.4* 0.00I 999.9 000000 724050 13743 19540808 75.8 24 58.0 24 1014.6 24 1013.6 24 9.9 24 3.7 24 9.9 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19540809 77.5 24 67.1 24 1009.1 24 1008.1 24 9.9 24 8.7 24 14.0 999.9 84.4* 70.3* 99.99 999.9 110010 724050 13743 19540810 73.5 24 64.9 24 1009.3 24 1008.2 24 8.0 24 5.6 24 12.0 999.9 86.4* 65.3* 99.99 999.9 010000 724050 13743 19540811 73.9 24 59.9 24 1009.6 24 1008.7 24 11.1 24 8.9 24 19.0 999.9 80.2* 66.4* 0.00I 999.9 000000 724050 13743 19540812 72.2 24 51.5 24 1015.0 24 1014.0 24 14.9 24 10.2 24 15.9 999.9 80.2* 64.4* 0.00I 999.9 000000 724050 13743 19540813 72.3 24 55.3 24 1019.0 24 1018.0 24 12.0 24 7.1 24 13.0 999.9 80.2* 62.4* 0.00I 999.9 000000 724050 13743 19540814 72.6 24 56.1 24 1022.0 24 1020.9 24 12.3 24 3.2 24 8.9 999.9 84.4* 59.4* 99.99 999.9 010000 724050 13743 19540815 73.7 24 67.5 24 1017.7 24 1016.7 24 8.5 24 4.2 24 8.9 999.9 83.3* 68.4* 99.99 999.9 110000 724050 13743 19540816 82.3 24 70.9 24 1013.3 24 1012.3 24 9.2 24 3.3 24 9.9 999.9 94.3* 72.3* 0.00I 999.9 000000 724050 13743 19540817 75.2 24 62.4 24 1014.7 24 1013.6 24 13.7 24 7.1 24 15.9 999.9 80.2* 71.2* 99.99 999.9 010010 724050 13743 19540818 72.0 24 57.8 24 1018.8 24 1017.8 24 12.9 24 4.5 24 8.9 999.9 78.3* 66.4* 0.00I 999.9 000000 724050 13743 19540819 75.8 24 67.4 24 1015.3 24 1014.3 24 10.1 24 4.9 24 9.9 999.9 93.4* 67.3* 99.99 999.9 010010 724050 13743 19540820 77.9 24 71.0 24 1015.6 24 1014.5 24 8.7 24 3.7 24 16.9 999.9 91.2* 71.2* 99.99 999.9 010010 724050 13743 19540821 72.8 24 70.2 24 1019.6 24 1018.6 24 3.6 24 4.7 24 9.9 999.9 75.4* 70.3* 99.99 999.9 110000 724050 13743 19540822 72.6 24 62.0 24 1027.5 24 1026.5 24 8.0 24 5.6 24 9.9 999.9 81.3* 65.3* 0.00I 999.9 100000 724050 13743 19540823 74.0 24 57.1 24 1028.7 24 1027.7 24 14.7 24 4.6 24 8.9 999.9 84.4* 65.3* 0.00I 999.9 000000 724050 13743 19540824 74.6 24 63.7 24 1024.4 24 1023.3 24 14.4 24 4.4 24 8.9 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19540825 82.0 24 70.3 24 1015.8 24 1014.8 24 11.9 24 4.7 24 9.9 999.9 92.3* 73.4* 0.00I 999.9 000000 724050 13743 19540826 82.1 24 71.2 24 1011.9 24 1010.8 24 12.3 24 4.8 24 13.0 999.9 88.3* 75.4* 0.00I 999.9 000000 724050 13743 19540827 73.4 24 66.5 24 1017.6 24 1016.6 24 7.4 24 5.6 24 8.9 999.9 81.3* 68.4* 99.99 999.9 010000 724050 13743 19540828 74.1 24 70.3 24 1018.1 24 1017.1 24 3.6 24 1.4 24 7.0 999.9 80.2* 71.2* 99.99 999.9 110000 724050 13743 19540829 76.9 24 68.9 24 1017.1 24 1016.1 24 4.1 24 3.7 24 9.9 999.9 88.3* 70.3* 99.99 999.9 110000 724050 13743 19540830 76.3 24 69.3 24 1012.3 24 1011.2 24 5.4 24 5.4 24 9.9 999.9 85.3* 71.2* 0.00I 999.9 100000 724050 13743 19540831 72.4 24 61.5 24 1006.2 24 1005.1 24 11.0 24 12.8 24 21.0 999.9 77.4* 66.4* 99.99 999.9 110000 724050 13743 19540901 70.8 24 55.0 24 1016.5 24 1015.5 24 13.3 24 5.4 24 12.0 999.9 80.2* 61.3* 0.00I 999.9 000000 724050 13743 19540902 73.1 24 57.0 24 1018.2 24 1017.2 24 12.9 24 3.8 24 12.0 999.9 85.3* 62.4* 0.00I 999.9 000000 724050 13743 19540903 77.0 24 60.3 24 1014.7 24 1013.7 24 12.6 24 6.5 24 11.1 999.9 93.4* 66.4* 0.00I 999.9 000000 724050 13743 19540904 78.2 24 63.6 24 1018.9 24 1017.9 24 13.4 24 3.9 24 8.9 999.9 87.3* 68.4* 0.00I 999.9 000000 724050 13743 19540905 79.9 24 65.3 24 1021.1 24 1020.1 24 11.6 24 2.5 24 6.0 999.9 98.2* 67.3* 0.00I 999.9 000000 724050 13743 19540906 85.2 24 69.6 24 1018.2 24 1017.2 24 11.7 24 3.7 24 8.9 999.9 98.2* 73.4* 0.00I 999.9 000000 724050 13743 19540907 83.5 24 70.8 24 1016.5 24 1015.5 24 9.4 24 4.7 24 15.0 999.9 100.2* 72.3* 99.99 999.9 010010 724050 13743 19540908 80.5 24 67.2 24 1015.0 24 1014.0 24 12.2 24 3.9 24 14.0 999.9 87.3* 74.3* 99.99 999.9 010000 724050 13743 19540909 77.5 24 68.2 23 1018.0 24 1016.9 24 8.4 24 5.8 24 9.9 999.9 83.3* 72.3* 0.00I 999.9 100000 724050 13743 19540910 74.7 24 68.8 24 1015.1 24 1014.0 24 4.0 24 8.0 24 15.9 999.9 81.3* 69.3* 99.99 999.9 110000 724050 13743 19540911 70.9 24 62.1 24 1005.1 24 1004.1 24 8.4 24 16.5 24 27.0 999.9 77.4* 66.4* 99.99 999.9 110000 724050 13743 19540912 66.7 24 51.5 24 1019.3 24 1018.3 24 14.5 24 9.9 24 14.0 999.9 74.3* 57.4* 0.00I 999.9 000000 724050 13743 19540913 65.7 24 49.4 24 1024.4 24 1023.4 24 13.2 24 4.7 24 12.0 999.9 79.3* 53.4* 0.00I 999.9 000000 724050 13743 19540914 70.0 24 58.3 23 1021.4 24 1020.4 24 12.3 24 8.2 24 12.0 999.9 86.4* 57.4* 0.00I 999.9 000000 724050 13743 19540915 72.6 24 63.9 24 1022.2 24 1021.2 24 8.4 24 9.3 24 13.0 999.9 79.3* 67.3* 0.00I 999.9 100000 724050 13743 19540916 73.9 24 64.9 24 1020.5 24 1019.5 24 8.9 24 9.3 24 14.0 999.9 86.4* 66.4* 99.99 999.9 110000 724050 13743 19540917 74.9 24 63.7 24 1018.2 24 1017.2 24 10.2 24 7.6 24 12.0 999.9 85.3* 67.3* 0.00I 999.9 000000 724050 13743 19540918 72.2 24 65.5 24 1016.6 24 1015.6 24 5.3 24 5.8 24 9.9 999.9 80.2* 64.4* 99.99 999.9 110010 724050 13743 19540919 74.9 24 69.2 24 1010.4 24 1009.4 24 6.0 24 8.5 24 12.0 999.9 89.2* 69.3* 99.99 999.9 110000 724050 13743 19540920 73.9 24 68.1 24 1007.3 24 1006.3 24 13.8 24 8.5 24 14.0 999.9 83.3* 70.3* 99.99 999.9 010000 724050 13743 19540921 71.6 24 65.5 24 1007.0 24 1006.0 24 10.4 24 5.6 24 13.0 999.9 80.2* 65.3* 99.99 999.9 010000 724050 13743 19540922 66.9 24 47.5 24 1011.2 24 1010.1 24 14.7 24 14.8 24 23.9 999.9 74.3* 57.4* 0.00I 999.9 000000 724050 13743 19540923 63.1 24 47.2 24 1020.8 24 1019.8 24 14.9 24 7.8 24 14.0 999.9 71.2* 52.3* 0.00I 999.9 000000 724050 13743 19540924 61.0 24 47.8 24 1025.0 24 1024.0 24 11.7 24 3.2 24 8.9 999.9 74.3* 50.4* 0.00I 999.9 000000 724050 13743 19540925 68.4 24 54.5 24 1017.9 24 1016.9 24 12.8 24 9.6 24 18.1 999.9 86.4* 57.4* 0.00I 999.9 000000 724050 13743 19540926 73.7 24 58.8 24 1011.9 24 1010.9 24 13.7 24 6.2 24 12.0 999.9 82.4* 65.3* 0.00I 999.9 000000 724050 13743 19540927 71.2 24 55.0 24 1012.0 24 1011.0 24 13.9 24 6.2 24 14.0 999.9 80.2* 60.3* 0.00I 999.9 000000 724050 13743 19540928 71.0 24 58.8 24 1014.5 24 1013.4 24 8.8 24 3.7 24 9.9 999.9 90.3* 57.4* 0.00I 999.9 100000 724050 13743 19540929 79.1 24 64.4 24 1018.1 24 1017.0 24 11.2 24 7.2 24 12.0 999.9 93.4* 70.3* 0.00I 999.9 000000 724050 13743 19540930 80.1 24 69.7 24 1020.9 24 1019.9 24 14.3 24 10.7 24 14.0 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19541001 81.3 24 68.5 24 1019.9 24 1018.9 24 13.9 24 8.1 24 12.0 999.9 88.3* 76.3* 0.00I 999.9 000000 724050 13743 19541002 78.0 24 71.5 24 1019.4 24 1018.4 24 11.6 24 6.1 24 9.9 999.9 85.3* 73.4* 99.99 999.9 110000 724050 13743 19541003 77.5 24 70.1 24 1017.7 24 1016.7 24 10.8 24 6.5 24 14.0 999.9 88.3* 70.3* 99.99 999.9 110000 724050 13743 19541004 82.1 24 69.3 24 1014.0 24 1013.0 24 14.4 24 9.0 24 20.0 999.9 93.4* 74.3* 0.00I 999.9 000000 724050 13743 19541005 80.7 24 68.3 24 1015.9 24 1014.9 24 9.1 24 5.2 24 8.9 999.9 86.4* 75.4* 0.00I 999.9 000000 724050 13743 19541006 66.6 24 62.4 24 1015.3 24 1014.3 24 5.0 24 9.8 24 19.0 999.9 73.4* 62.4* 99.99 999.9 110010 724050 13743 19541007 51.7 24 34.2 24 1032.5 24 1031.5 24 14.1 24 14.8 24 23.9 999.9 59.4* 41.4* 0.00I 999.9 000000 724050 13743 19541008 51.6 23 38.6 23 1036.0 23 1034.9 23 10.8 23 5.0 23 9.9 999.9 64.4* 40.3* 0.00I 999.9 000000 724050 13743 19541009 63.5 24 52.4 24 1026.5 24 1025.5 24 14.4 24 8.8 24 12.0 999.9 77.4* 55.4* 0.00I 999.9 000000 724050 13743 19541010 69.7 24 57.2 24 1018.8 24 1017.7 24 13.4 24 6.0 24 9.9 999.9 82.4* 57.4* 0.00I 999.9 000000 724050 13743 19541011 73.7 24 58.4 24 1013.6 24 1012.6 24 14.7 24 8.3 24 11.1 999.9 87.3* 64.4* 0.00I 999.9 000000 724050 13743 19541012 78.0 24 61.1 24 1013.0 24 1012.0 24 14.9 24 10.5 24 13.0 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19541013 77.9 24 63.4 24 1016.6 24 1015.6 24 14.9 24 7.2 24 12.0 999.9 91.2* 67.3* 0.00I 999.9 000000 724050 13743 19541014 75.6 24 67.1 24 1019.6 24 1018.6 24 12.0 24 9.2 24 14.0 999.9 85.3* 68.4* 99.99 999.9 110000 724050 13743 19541015 71.8 24 69.3 24 1003.6 24 1002.5 24 7.3 24 14.3 24 42.9 999.9 76.3* 60.3* 99.99 999.9 111000 724050 13743 19541016 56.8 24 43.8 24 1007.6 24 1006.6 24 14.7 24 8.8 24 26.0 999.9 63.3* 48.4* 99.99 999.9 010000 724050 13743 19541017 54.4 24 39.9 24 1018.2 24 1017.2 24 13.2 24 6.0 24 9.9 999.9 64.4* 44.4* 99.99 999.9 010000 724050 13743 19541018 53.5 24 41.5 24 1023.7 24 1022.7 24 10.3 24 4.1 24 9.9 999.9 64.4* 43.3* 0.00I 999.9 000000 724050 13743 19541019 52.5 24 44.4 24 1025.9 24 1024.9 24 11.7 24 11.6 24 15.9 999.9 57.4* 49.3* 0.00I 999.9 000000 724050 13743 19541020 50.1 24 35.8 24 1022.6 24 1021.6 24 13.8 24 13.1 24 18.1 999.9 56.3* 42.4* 0.00I 999.9 000000 724050 13743 19541021 51.1 24 41.3 24 1017.0 24 1016.0 24 12.5 24 9.7 24 16.9 999.9 62.4* 43.3* 99.99 999.9 010000 724050 13743 19541022 54.0 24 42.2 24 1019.1 24 1018.1 24 10.9 24 8.6 24 15.9 999.9 64.4* 45.3* 0.00I 999.9 000000 724050 13743 19541023 56.4 24 42.6 24 1026.2 24 1025.1 24 8.6 24 4.4 24 14.0 999.9 73.4* 44.4* 0.00I 999.9 000000 724050 13743 19541024 61.9 24 45.4 24 1027.4 24 1026.3 24 10.0 24 5.7 24 12.0 999.9 76.3* 50.4* 0.00I 999.9 000000 724050 13743 19541025 59.8 24 48.8 24 1026.2 24 1025.2 24 5.8 24 3.7 24 9.9 999.9 73.4* 50.4* 0.00I 999.9 000000 724050 13743 19541026 58.6 24 52.7 24 1020.7 24 1019.6 24 4.1 24 3.0 24 8.9 999.9 64.4* 53.4* 99.99 999.9 110000 724050 13743 19541027 61.5 24 57.1 24 1012.0 24 1011.0 24 5.4 24 8.7 24 14.0 999.9 68.4* 58.3* 99.99 999.9 110000 724050 13743 19541028 52.8 24 38.7 24 1016.2 24 1015.2 24 14.3 24 8.3 24 20.0 999.9 61.3* 43.3* 0.00I 999.9 000000 724050 13743 19541029 52.7 24 43.3 24 1007.7 24 1006.7 24 12.9 24 9.8 24 20.0 999.9 61.3* 48.4* 99.99 999.9 010000 724050 13743 19541030 47.4 24 38.4 24 1005.8 24 1004.8 24 10.6 24 11.4 24 22.9 999.9 55.4* 39.4* 99.99 999.9 010000 724050 13743 19541031 43.4 24 27.3 24 1016.3 24 1015.3 24 14.5 24 8.1 24 15.0 999.9 49.3* 37.4* 0.00I 999.9 000000 724050 13743 19541101 41.1 24 27.9 24 1023.1 24 1022.0 24 13.5 24 5.2 24 14.0 999.9 49.3* 32.4* 0.00I 999.9 000000 724050 13743 19541102 44.1 24 36.9 24 1019.0 24 1018.0 24 8.7 24 10.3 24 16.9 999.9 50.4* 38.3* 99.99 999.9 110000 724050 13743 19541103 41.1 24 29.4 24 1012.4 24 1011.4 24 14.3 24 17.3 24 22.0 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19541104 42.5 24 30.6 24 1018.0 24 1017.0 24 10.6 24 9.4 24 22.9 999.9 47.3* 34.3* 0.00I 999.9 000000 724050 13743 19541105 45.0 24 37.0 24 1019.7 24 1018.7 24 10.3 24 10.0 24 15.9 999.9 50.4* 41.4* 99.99 999.9 010000 724050 13743 19541106 41.1 24 31.2 24 1021.6 24 1020.6 24 11.8 24 6.0 24 9.9 999.9 48.4* 34.3* 0.00I 999.9 000000 724050 13743 19541107 41.1 24 29.5 24 1024.5 24 1023.5 24 9.7 24 2.9 24 8.9 999.9 55.4* 32.4* 0.00I 999.9 000000 724050 13743 19541108 44.8 24 34.6 24 1025.4 24 1024.4 24 6.8 24 2.8 24 9.9 999.9 62.4* 32.4* 0.00I 999.9 000000 724050 13743 19541109 48.4 24 37.8 24 1027.9 24 1026.9 24 8.5 24 5.5 24 14.0 999.9 55.4* 40.3* 0.00I 999.9 000000 724050 13743 19541110 42.4 24 29.5 24 1036.4 24 1035.4 24 11.6 24 7.8 24 11.1 999.9 49.3* 35.4* 0.00I 999.9 000000 724050 13743 19541111 40.9 24 33.5 24 1036.0 24 1034.9 24 7.4 24 4.0 24 9.9 999.9 56.3* 30.4* 0.00I 999.9 000000 724050 13743 19541112 49.2 24 40.3 24 1026.9 24 1025.8 24 6.0 24 7.0 24 15.9 999.9 63.3* 40.3* 0.00I 999.9 000000 724050 13743 19541113 44.0 24 31.6 24 1031.7 24 1030.7 24 11.3 24 7.8 24 9.9 999.9 53.4* 35.4* 0.00I 999.9 000000 724050 13743 19541114 48.4 24 37.7 24 1022.4 24 1021.4 24 10.3 24 7.6 24 14.0 999.9 68.4* 38.3* 0.00I 999.9 000000 724050 13743 19541115 50.8 24 38.2 24 1023.2 24 1022.2 24 11.5 24 7.7 24 12.0 999.9 61.3* 45.3* 0.00I 999.9 000000 724050 13743 19541116 44.3 24 38.9 24 1022.5 24 1021.4 24 3.8 24 4.6 24 8.9 999.9 52.3* 37.4* 99.99 999.9 110000 724050 13743 19541117 54.5 24 52.7 24 1019.0 24 1018.0 24 1.4 24 8.0 24 9.9 999.9 62.4* 50.4* 99.99 999.9 110000 724050 13743 19541118 59.0 24 57.5 24 1019.7 24 1018.7 24 1.5 24 8.1 24 11.1 999.9 62.4* 56.3* 99.99 999.9 110000 724050 13743 19541119 59.5 24 58.2 24 1014.3 24 1013.3 24 1.8 24 6.7 24 12.0 999.9 63.3* 56.3* 99.99 999.9 110000 724050 13743 19541120 61.9 24 60.2 24 1003.3 24 1002.2 24 3.8 24 5.7 24 12.0 999.9 66.4* 59.4* 99.99 999.9 110000 724050 13743 19541121 53.4 24 47.1 24 1001.8 24 1000.7 24 11.6 24 12.3 24 22.9 999.9 59.4* 46.4* 99.99 999.9 010000 724050 13743 19541122 44.1 24 32.2 24 1013.0 24 1012.0 24 14.9 24 7.9 24 15.0 999.9 49.3* 37.4* 0.00I 999.9 000000 724050 13743 19541123 43.8 24 32.4 24 1014.5 24 1013.4 24 8.9 24 3.4 24 9.9 999.9 46.4* 39.4* 99.99 999.9 010000 724050 13743 19541124 42.9 24 37.9 24 1006.6 24 1005.6 24 7.3 24 8.3 24 14.0 999.9 47.3* 40.3* 99.99 999.9 010000 724050 13743 19541125 40.9 24 35.9 24 1006.9 24 1005.8 24 9.0 24 6.3 24 11.1 999.9 46.4* 34.3* 99.99 999.9 010000 724050 13743 19541126 39.0 24 32.1 24 1016.0 24 1015.0 24 6.2 24 4.3 24 14.0 999.9 47.3* 33.4* 0.00I 999.9 000000 724050 13743 19541127 40.9 24 32.1 24 1015.6 24 1014.5 24 10.4 24 7.1 24 16.9 999.9 49.3* 31.3* 99.99 999.9 010000 724050 13743 19541128 44.0 24 35.4 24 1011.3 24 1010.3 24 9.4 24 8.3 24 14.0 999.9 51.3* 36.3* 99.99 999.9 010000 724050 13743 19541129 45.5 24 37.2 24 1006.0 24 1005.0 24 10.5 24 13.0 24 29.9 999.9 51.3* 41.4* 99.99 999.9 110000 724050 13743 19541130 41.2 24 26.4 24 1027.6 24 1026.6 24 14.8 24 14.3 24 21.0 999.9 45.3* 38.3* 0.00I 999.9 000000 724050 13743 19541201 39.5 24 27.6 24 1027.1 24 1026.1 24 10.3 24 6.3 24 9.9 999.9 45.3* 35.4* 99.99 999.9 001000 724050 13743 19541202 38.4 24 30.0 24 1018.3 24 1017.2 24 10.4 24 11.2 24 16.9 999.9 42.4* 34.3* 99.99 999.9 011000 724050 13743 19541203 33.5 24 23.4 24 1015.9 24 1014.8 24 12.6 24 9.2 24 16.9 999.9 37.4* 30.4* 0.00I 999.9 000000 724050 13743 19541204 33.6 24 22.7 24 1015.4 24 1014.4 24 9.0 24 4.3 24 12.0 999.9 42.4* 27.3* 0.00I 999.9 000000 724050 13743 19541205 40.2 24 28.0 24 1015.2 24 1014.2 24 6.0 24 5.0 24 12.0 999.9 48.4* 34.3* 99.99 999.9 010000 724050 13743 19541206 29.3 24 15.5 24 1024.1 24 1023.1 24 11.5 24 16.9 24 22.9 999.9 37.4* 24.4* 99.99 999.9 111000 724050 13743 19541207 27.4 24 12.4 24 1024.7 24 1023.7 24 14.9 24 16.0 24 26.0 999.9 36.3* 21.4* 0.00I 999.9 000000 724050 13743 19541208 31.2 24 13.7 24 1024.7 24 1023.7 24 11.8 24 9.0 24 12.0 999.9 42.4* 22.5* 0.00I 999.9 000000 724050 13743 19541209 41.1 24 30.3 24 1014.1 24 1013.1 24 7.8 24 11.8 24 15.9 999.9 46.4* 38.3* 99.99 999.9 110000 724050 13743 19541210 40.3 24 27.9 24 1010.1 24 1009.1 24 13.7 24 11.6 24 19.0 999.9 44.4* 35.4* 99.99 999.9 010000 724050 13743 19541211 38.1 24 25.5 24 1021.1 24 1020.0 24 14.9 24 16.3 24 21.0 999.9 40.3* 35.4* 0.00I 999.9 000000 724050 13743 19541212 33.1 24 23.3 24 1026.0 24 1025.0 24 10.9 24 7.9 24 12.0 999.9 38.3* 27.3* 99.99 999.9 001000 724050 13743 19541213 35.6 24 31.8 24 1024.2 24 1023.2 24 3.0 24 5.8 24 9.9 999.9 38.3* 32.4* 99.99 999.9 111000 724050 13743 19541214 42.1 24 40.8 24 1007.8 24 1006.7 24 3.0 24 12.7 24 19.0 999.9 46.4* 38.3* 99.99 999.9 110000 724050 13743 19541215 42.0 24 35.1 24 998.7 24 997.7 24 11.8 24 9.1 24 15.9 999.9 45.3* 37.4* 99.99 999.9 010000 724050 13743 19541216 40.7 24 29.3 24 1010.9 24 1009.8 24 13.2 24 13.9 24 19.0 999.9 44.4* 38.3* 0.00I 999.9 000000 724050 13743 19541217 36.8 24 29.5 24 1022.4 24 1021.4 24 8.2 24 6.6 24 9.9 999.9 40.3* 33.4* 0.00I 999.9 000000 724050 13743 19541218 44.0 24 38.9 24 1007.7 24 1006.6 24 8.1 24 7.7 24 16.9 999.9 48.4* 39.4* 99.99 999.9 110000 724050 13743 19541219 39.4 24 27.9 24 1006.4 24 1005.4 24 14.9 24 9.6 24 16.9 999.9 45.3* 33.4* 0.00I 999.9 000000 724050 13743 19541220 30.4 24 17.0 24 1013.0 24 1012.0 24 14.6 24 12.3 24 16.9 999.9 35.4* 27.3* 0.00I 999.9 000000 724050 13743 19541221 23.7 24 10.8 24 1016.7 24 1015.7 24 12.6 24 15.2 24 25.1 999.9 29.3* 18.3* 0.00I 999.9 000000 724050 13743 19541222 25.1 24 10.5 24 1016.3 24 1015.3 24 13.7 24 12.7 24 19.0 999.9 32.4* 20.3* 0.00I 999.9 000000 724050 13743 19541223 34.1 24 19.6 24 1009.8 24 1008.8 24 9.3 24 7.5 24 12.0 999.9 52.3* 25.3* 0.00I 999.9 000000 724050 13743 19541224 46.3 24 32.6 24 1008.1 24 1007.1 24 14.5 24 13.3 24 19.0 999.9 48.4* 41.4* 0.00I 999.9 000000 724050 13743 19541225 38.1 24 23.3 24 1027.5 24 1026.5 24 14.9 24 7.8 24 15.0 999.9 46.4* 31.3* 0.00I 999.9 000000 724050 13743 19541226 34.6 24 23.1 24 1032.0 24 1031.0 24 11.0 24 3.9 24 8.9 999.9 50.4* 24.4* 0.00I 999.9 000000 724050 13743 19541227 40.1 24 30.9 24 1029.3 24 1028.3 24 7.3 24 1.9 24 8.9 999.9 59.4* 29.3* 0.00I 999.9 000000 724050 13743 19541228 50.1 24 45.4 24 1023.8 24 1022.8 24 6.4 24 6.7 24 12.0 999.9 63.3* 39.4* 99.99 999.9 110000 724050 13743 19541229 54.0 24 52.9 24 1017.4 24 1016.4 24 3.8 24 8.9 24 15.9 999.9 60.3* 44.4* 99.99 999.9 110000 724050 13743 19541230 47.1 24 42.1 24 1011.7 24 1010.7 24 8.1 24 12.0 24 22.0 999.9 52.3* 42.4* 99.99 999.9 110000 724050 13743 19541231 40.3 24 30.8 24 1023.9 24 1022.9 24 10.2 24 6.8 24 18.1 999.9 48.4* 33.4* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1960/0000755000175000017500000000000014302004506015077 5ustar nileshnileshfluids-1.0.22/tests/gsod/1960/724050-13743.op0000644000175000017500000014350514302004506016667 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19600101 34.9 24 19.6 24 1028.6 8 1027.6 8 11.6 24 2.8 24 8.0 999.9 44.4* 28.4* 0.00I 999.9 000000 724050 13743 19600102 32.8 24 24.6 24 1028.9 8 1027.8 8 7.4 24 1.8 24 7.0 999.9 39.4* 28.4* 99.99 999.9 110000 724050 13743 19600103 44.5 24 36.1 24 1009.6 8 1008.5 8 6.8 24 9.9 24 23.9 999.9 53.4* 37.4* 99.99 999.9 110000 724050 13743 19600104 39.3 24 23.8 24 1019.0 8 1018.0 8 11.3 24 5.9 24 15.9 999.9 44.4* 34.3* 0.00I 999.9 000000 724050 13743 19600105 38.7 24 22.9 24 1022.1 8 1021.1 8 10.1 24 3.2 24 8.0 999.9 43.3* 35.4* 0.00I 999.9 000000 724050 13743 19600106 38.3 24 26.7 24 1021.1 8 1020.1 8 9.6 24 3.6 24 8.9 999.9 42.4* 34.3* 99.99 999.9 111000 724050 13743 19600107 37.5 24 33.4 24 1015.2 8 1014.2 8 7.3 24 1.4 24 6.0 999.9 38.3* 35.4* 99.99 999.9 111000 724050 13743 19600108 40.9 24 30.2 24 1013.2 8 1012.2 8 9.4 24 8.5 24 16.9 999.9 51.3* 35.4* 0.00I 999.9 100000 724050 13743 19600109 41.5 24 17.7 24 1024.4 8 1023.4 8 11.9 24 8.0 24 25.1 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19600110 40.7 24 28.5 24 1020.9 8 1019.9 8 9.2 24 2.0 24 9.9 999.9 59.4* 32.4* 0.00I 999.9 000000 724050 13743 19600111 45.3 24 31.4 24 1019.9 8 1018.8 8 6.8 24 4.5 24 9.9 999.9 51.3* 41.4* 0.00I 999.9 000000 724050 13743 19600112 33.8 24 23.3 24 1028.9 8 1027.9 8 7.5 24 3.1 24 8.9 999.9 38.3* 30.4* 99.99 999.9 111000 724050 13743 19600113 42.8 24 37.3 24 1011.2 8 1010.2 8 4.0 24 2.8 24 12.0 999.9 55.4* 34.3* 99.99 999.9 110000 724050 13743 19600114 42.0 24 34.2 24 1016.0 8 1014.9 8 6.4 24 4.6 24 12.0 999.9 46.4* 40.3* 99.99 999.9 110000 724050 13743 19600115 44.9 24 42.4 24 1004.7 8 1003.7 8 2.8 24 3.9 24 8.9 999.9 51.3* 41.4* 99.99 999.9 110000 724050 13743 19600116 41.8 24 25.2 24 1007.1 8 1006.1 8 11.9 24 13.4 24 22.0 999.9 53.4* 34.3* 0.00I 999.9 000000 724050 13743 19600117 36.7 24 20.0 24 1019.6 8 1018.6 8 11.6 24 7.2 24 12.0 999.9 42.4* 32.4* 0.00I 999.9 000000 724050 13743 19600118 39.4 24 31.0 24 1014.7 8 1013.7 8 6.1 24 2.7 24 8.0 999.9 40.3* 38.3* 99.99 999.9 110000 724050 13743 19600119 39.5 24 29.9 24 1004.3 8 1003.3 8 8.2 24 7.7 24 26.0 999.9 41.4* 37.4* 99.99 999.9 110000 724050 13743 19600120 34.2 24 18.7 24 1014.6 8 1013.5 8 11.9 24 16.9 24 22.9 999.9 38.3* 31.3* 0.00I 999.9 000000 724050 13743 19600121 27.6 24 13.8 24 1017.4 8 1016.4 8 11.9 24 16.4 24 19.0 999.9 31.3* 24.4* 0.00I 999.9 000000 724050 13743 19600122 25.7 24 11.1 24 1018.7 8 1017.6 8 11.9 24 13.6 24 19.0 999.9 33.4* 21.4* 0.00I 999.9 000000 724050 13743 19600123 30.3 24 18.0 24 1023.3 8 1022.3 8 11.6 24 13.3 24 20.0 999.9 37.4* 25.3* 0.00I 999.9 000000 724050 13743 19600124 29.9 24 19.3 24 1027.4 8 1026.4 8 9.7 24 5.2 24 12.0 999.9 34.3* 25.3* 99.99 999.9 001000 724050 13743 19600125 30.6 24 19.6 24 1025.7 8 1024.7 8 6.9 24 1.3 24 7.0 999.9 42.4* 22.5* 0.00I 999.9 000000 724050 13743 19600126 40.7 24 22.7 24 1023.0 8 1022.0 8 9.7 24 4.7 24 12.0 999.9 55.4* 32.4* 0.00I 999.9 000000 724050 13743 19600127 41.1 24 29.5 24 1024.5 8 1023.5 8 6.5 24 1.5 24 6.0 999.9 54.3* 32.4* 99.99 999.9 010000 724050 13743 19600128 46.5 24 44.0 24 1019.3 8 1018.2 8 2.5 24 0.9 24 5.1 999.9 50.4* 43.3* 99.99 999.9 110000 724050 13743 19600129 45.0 24 41.1 24 1021.6 8 1020.6 8 3.2 24 0.0 24 999.9 999.9 47.3* 41.4* 99.99 999.9 110000 724050 13743 19600130 42.9 24 33.6 24 1025.0 8 1024.0 8 5.7 24 6.1 24 11.1 999.9 46.4* 37.4* 0.00I 999.9 100000 724050 13743 19600131 38.7 24 30.5 24 1023.1 8 1022.0 8 7.6 24 9.2 24 14.0 999.9 43.3* 34.3* 0.00I 999.9 000000 724050 13743 19600201 40.3 24 28.4 24 1019.4 8 1018.4 8 9.2 24 6.4 24 15.0 999.9 45.3* 37.4* 0.00I 999.9 000000 724050 13743 19600202 36.7 24 24.2 24 1018.6 8 1017.6 8 9.5 24 6.8 24 15.0 999.9 40.3* 32.4* 0.00I 999.9 000000 724050 13743 19600203 31.2 24 14.7 24 1025.5 8 1024.5 8 11.9 24 10.3 24 16.9 999.9 43.3* 23.4* 0.00I 999.9 000000 724050 13743 19600204 38.1 24 20.1 24 1028.5 8 1027.5 8 8.9 24 3.3 24 9.9 999.9 54.3* 28.4* 0.00I 999.9 000000 724050 13743 19600205 40.5 24 25.8 24 1023.6 8 1022.6 8 7.4 24 2.4 24 9.9 999.9 49.3* 32.4* 99.99 999.9 010000 724050 13743 19600206 50.1 24 43.6 24 999.5 8 998.4 8 9.1 24 9.1 24 18.1 999.9 61.3* 42.4* 99.99 999.9 110000 724050 13743 19600207 43.1 24 25.8 24 1002.1 8 1001.1 8 11.9 24 16.3 24 26.0 999.9 51.3* 39.4* 0.00I 999.9 000000 724050 13743 19600208 36.3 24 18.9 24 1010.3 8 1009.3 8 11.8 24 8.6 24 16.9 999.9 43.3* 30.4* 0.00I 999.9 000000 724050 13743 19600209 48.1 24 25.7 24 1001.8 8 1000.8 8 11.9 24 5.2 24 14.0 999.9 58.3* 41.4* 0.00I 999.9 000000 724050 13743 19600210 58.1 24 43.6 24 1001.9 8 1000.8 8 11.9 24 8.1 24 12.0 999.9 67.3* 51.3* 0.00I 999.9 000000 724050 13743 19600211 58.4 24 48.3 24 997.1 8 996.1 8 10.3 24 10.4 24 18.1 999.9 64.4* 48.4* 99.99 999.9 010000 724050 13743 19600212 39.6 24 20.1 24 1015.6 8 1014.6 8 11.9 24 15.9 24 22.0 999.9 46.4* 35.4* 0.00I 999.9 000000 724050 13743 19600213 31.8 24 19.3 24 1021.8 8 1020.8 8 9.1 24 8.5 24 19.0 999.9 38.3* 27.3* 99.99 999.9 101000 724050 13743 19600214 26.1 24 20.7 24 1001.6 8 1000.5 8 4.6 24 16.3 24 26.0 999.9 30.4* 23.4* 99.99 999.9 111000 724050 13743 19600215 28.3 24 11.8 24 1018.3 8 1017.2 8 11.9 24 15.5 24 25.1 999.9 35.4* 23.4* 0.00I 999.9 000000 724050 13743 19600216 31.2 24 17.5 24 1021.9 8 1020.8 8 8.8 24 0.5 24 4.1 999.9 45.3* 21.4* 0.00I 999.9 000000 724050 13743 19600217 40.4 24 24.0 24 1017.7 8 1016.6 8 8.5 24 0.6 24 6.0 999.9 54.3* 34.3* 0.00I 999.9 000000 724050 13743 19600218 39.6 24 32.1 24 1011.3 8 1010.2 8 5.9 24 3.6 24 15.9 999.9 49.3* 32.4* 99.99 999.9 110000 724050 13743 19600219 37.2 24 27.1 24 995.5 8 994.4 8 8.8 24 22.0 24 33.0 999.9 46.4* 31.3* 99.99 999.9 111000 724050 13743 19600220 31.9 24 17.9 24 1017.3 8 1016.3 8 11.9 24 19.4 24 28.9 999.9 38.3* 28.4* 0.00I 999.9 000000 724050 13743 19600221 31.8 24 17.2 24 1023.0 8 1021.9 8 9.9 24 6.2 24 20.0 999.9 36.3* 28.4* 0.00I 999.9 000000 724050 13743 19600222 35.9 24 26.6 24 1013.6 8 1012.6 8 6.2 24 4.7 24 22.0 999.9 44.4* 30.4* 99.99 999.9 101000 724050 13743 19600223 35.7 24 19.8 24 1018.5 8 1017.5 8 8.7 24 10.3 24 15.9 999.9 42.4* 31.3* 0.00I 999.9 000000 724050 13743 19600224 35.5 24 20.1 24 1022.2 8 1021.2 8 5.8 24 4.1 24 9.9 999.9 43.3* 28.4* 0.00I 999.9 000000 724050 13743 19600225 37.0 24 28.8 24 1017.6 8 1016.6 8 4.1 24 4.7 24 15.9 999.9 41.4* 32.4* 99.99 999.9 111000 724050 13743 19600226 41.8 24 33.8 24 1004.3 8 1003.3 8 7.0 24 7.4 24 16.9 999.9 46.4* 37.4* 99.99 999.9 110000 724050 13743 19600227 37.7 24 15.5 24 1017.1 8 1016.1 8 11.9 24 12.5 24 22.0 999.9 44.4* 32.4* 0.00I 999.9 000000 724050 13743 19600228 36.6 24 19.0 24 1023.5 8 1022.5 8 11.7 24 3.4 24 8.0 999.9 44.4* 31.3* 0.00I 999.9 000000 724050 13743 19600229 37.5 24 23.6 24 1018.5 8 1017.5 8 10.0 24 7.8 24 16.9 999.9 40.3* 34.3* 99.99 999.9 101000 724050 13743 19600301 30.2 24 13.8 24 1028.6 8 1027.6 8 11.8 24 15.2 24 20.0 999.9 36.3* 24.4* 0.00I 999.9 000000 724050 13743 19600302 29.7 24 13.3 24 1032.4 8 1031.4 8 11.6 24 6.5 24 15.9 999.9 35.4* 23.4* 0.00I 999.9 000000 724050 13743 19600303 27.1 24 23.2 24 1012.0 8 1011.0 8 3.1 24 7.9 24 15.9 999.9 33.4* 24.4* 99.99 999.9 101000 724050 13743 19600304 23.4 24 14.5 24 1005.5 8 1004.5 8 8.3 24 18.1 24 23.9 999.9 27.3* 20.3* 99.99 999.9 001000 724050 13743 19600305 23.3 24 9.2 24 1015.0 8 1014.0 8 11.9 24 16.7 24 23.9 999.9 26.4* 20.3* 0.00I 999.9 000000 724050 13743 19600306 25.8 24 12.3 24 1025.1 8 1024.1 8 11.9 24 15.0 24 21.0 999.9 33.4* 20.3* 0.00I 999.9 000000 724050 13743 19600307 25.5 24 12.8 24 1029.5 8 1028.4 8 9.9 24 4.8 24 9.9 999.9 31.3* 19.4* 99.99 999.9 001000 724050 13743 19600308 24.2 24 13.7 24 1028.2 8 1027.2 8 11.0 24 10.1 24 20.0 999.9 32.4* 17.4* 99.99 999.9 001000 724050 13743 19600309 26.0 24 12.1 24 1028.4 8 1027.3 8 9.9 24 4.2 24 12.0 999.9 32.4* 19.4* 0.00I 999.9 000000 724050 13743 19600310 27.0 24 21.8 24 1018.9 8 1017.9 8 3.6 24 5.4 24 9.9 999.9 34.3* 23.4* 99.99 999.9 101000 724050 13743 19600311 26.2 24 10.8 24 1024.0 8 1022.9 8 11.2 24 5.9 24 8.9 999.9 33.4* 18.3* 0.00I 999.9 000000 724050 13743 19600312 27.3 24 10.3 24 1019.6 8 1018.5 8 11.8 24 5.9 24 14.0 999.9 36.3* 21.4* 0.00I 999.9 000000 724050 13743 19600313 28.7 24 10.4 24 1023.8 8 1022.8 8 11.9 24 10.8 24 16.9 999.9 35.4* 21.4* 0.00I 999.9 000000 724050 13743 19600314 31.7 24 14.9 24 1026.2 8 1025.2 8 11.8 24 5.5 24 11.1 999.9 39.4* 25.3* 0.00I 999.9 000000 724050 13743 19600315 33.9 24 18.5 24 1027.0 8 1025.9 8 8.2 24 3.6 24 9.9 999.9 40.3* 27.3* 0.00I 999.9 000000 724050 13743 19600316 30.9 24 20.9 24 1023.7 8 1022.7 8 5.2 24 2.7 24 9.9 999.9 35.4* 24.4* 99.99 999.9 101000 724050 13743 19600317 37.4 24 33.8 24 1013.3 8 1012.3 8 4.2 24 5.3 24 11.1 999.9 43.3* 33.4* 99.99 999.9 111000 724050 13743 19600318 41.5 24 29.3 24 1010.8 8 1009.8 8 6.3 24 4.7 24 11.1 999.9 48.4* 37.4* 0.00I 999.9 000000 724050 13743 19600319 40.6 24 21.4 24 1009.9 8 1008.9 8 9.7 24 6.3 24 12.0 999.9 48.4* 34.3* 0.00I 999.9 000000 724050 13743 19600320 39.5 24 22.4 24 1011.5 8 1010.5 8 9.4 24 6.7 24 18.1 999.9 44.4* 33.4* 0.00I 999.9 000000 724050 13743 19600321 36.7 24 20.9 24 1014.9 8 1013.9 8 10.4 24 14.6 24 22.0 999.9 40.3* 32.4* 0.00I 999.9 000000 724050 13743 19600322 37.0 24 17.4 24 1007.1 8 1006.1 8 11.6 24 17.1 24 34.0 999.9 44.4* 32.4* 99.99 999.9 001000 724050 13743 19600323 34.4 24 17.1 24 1018.5 8 1017.5 8 11.5 24 15.3 24 29.9 999.9 43.3* 27.3* 0.00I 999.9 000000 724050 13743 19600324 42.8 24 17.2 24 1012.7 8 1011.6 8 11.8 24 8.6 24 16.9 999.9 56.3* 34.3* 0.00I 999.9 000000 724050 13743 19600325 34.9 24 16.5 24 1017.6 8 1016.6 8 11.8 24 19.7 24 30.9 999.9 48.4* 28.4* 99.99 999.9 001000 724050 13743 19600326 37.6 24 20.9 24 1022.3 8 1021.2 8 10.9 24 7.1 24 18.1 999.9 51.3* 32.4* 99.99 999.9 001000 724050 13743 19600327 45.9 24 27.9 24 1023.8 8 1022.8 8 9.3 24 4.6 24 14.0 999.9 66.4* 31.3* 0.00I 999.9 000000 724050 13743 19600328 63.5 24 34.6 24 1018.2 8 1017.1 8 11.6 24 6.6 24 9.9 999.9 80.2* 52.3* 0.00I 999.9 000000 724050 13743 19600329 64.2 24 45.3 24 1019.4 8 1018.4 8 9.2 24 6.5 24 9.9 999.9 74.3* 52.3* 0.00I 999.9 000000 724050 13743 19600330 64.3 24 56.5 24 1010.6 8 1009.6 8 8.6 24 8.3 24 15.9 999.9 69.3* 59.4* 99.99 999.9 010000 724050 13743 19600331 61.5 24 55.9 24 1002.2 8 1001.1 8 9.8 24 9.7 24 20.0 999.9 64.4* 56.3* 99.99 999.9 010000 724050 13743 19600401 57.5 24 42.9 24 1013.5 8 1012.4 8 11.9 24 6.3 24 12.0 999.9 70.3* 49.3* 0.00I 999.9 000000 724050 13743 19600402 56.3 24 44.6 24 1021.8 8 1020.7 8 9.3 24 7.2 24 15.9 999.9 66.4* 49.3* 0.00I 999.9 000000 724050 13743 19600403 46.8 24 43.7 24 1023.3 8 1022.3 8 5.1 24 6.8 24 12.0 999.9 53.4* 42.4* 99.99 999.9 110000 724050 13743 19600404 60.0 24 53.7 24 1010.0 8 1009.0 8 7.9 24 4.2 24 12.0 999.9 76.3* 50.4* 99.99 999.9 110000 724050 13743 19600405 51.2 24 45.6 24 1002.9 8 1001.9 8 6.0 24 12.3 24 23.9 999.9 67.3* 45.3* 99.99 999.9 110000 724050 13743 19600406 44.4 24 24.3 24 1008.4 8 1007.4 8 11.5 24 15.5 24 22.0 999.9 53.4* 37.4* 0.00I 999.9 000000 724050 13743 19600407 51.9 24 32.6 24 1006.2 8 1005.1 8 11.9 24 7.8 24 18.1 999.9 64.4* 42.4* 99.99 999.9 010000 724050 13743 19600408 55.0 24 31.7 24 1009.4 8 1008.4 8 11.4 24 7.9 24 22.0 999.9 66.4* 46.4* 0.00I 999.9 000000 724050 13743 19600409 50.2 24 25.2 24 1010.8 8 1009.8 8 11.9 24 15.6 24 28.0 999.9 58.3* 44.4* 0.00I 999.9 000000 724050 13743 19600410 42.8 24 20.4 24 1020.0 8 1019.0 8 11.9 24 14.0 24 20.0 999.9 51.3* 35.4* 0.00I 999.9 000000 724050 13743 19600411 44.8 24 22.5 24 1026.1 8 1025.1 8 11.6 24 7.0 24 16.9 999.9 60.3* 32.4* 0.00I 999.9 000000 724050 13743 19600412 63.6 24 32.3 24 1016.8 8 1015.8 8 11.8 24 13.3 24 22.0 999.9 78.3* 55.4* 99.99 999.9 010000 724050 13743 19600413 64.5 24 33.6 24 1023.3 8 1022.3 8 11.0 24 5.3 24 11.1 999.9 79.3* 47.3* 0.00I 999.9 000000 724050 13743 19600414 70.2 24 45.6 24 1021.8 8 1020.8 8 10.4 24 7.0 24 15.0 999.9 89.2* 58.3* 0.00I 999.9 000000 724050 13743 19600415 77.2 24 44.0 24 1017.3 8 1016.3 8 11.2 24 5.3 24 9.9 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19600416 74.7 24 52.2 24 1015.1 8 1014.1 8 10.4 24 3.7 24 9.9 999.9 87.3* 62.4* 0.00I 999.9 000000 724050 13743 19600417 72.6 24 54.3 24 1015.0 8 1014.0 8 9.9 24 5.5 24 12.0 999.9 84.4* 57.4* 0.00I 999.9 000000 724050 13743 19600418 66.4 24 48.1 24 1013.7 8 1012.7 8 10.4 24 14.0 24 26.0 999.9 81.3* 53.4* 99.99 999.9 010000 724050 13743 19600419 52.9 24 29.0 24 1028.7 8 1027.7 8 10.9 24 3.5 24 16.9 999.9 65.3* 41.4* 0.00I 999.9 000000 724050 13743 19600420 55.4 24 34.1 24 1028.8 8 1027.7 8 10.1 24 5.5 24 14.0 999.9 70.3* 44.4* 0.00I 999.9 000000 724050 13743 19600421 63.8 24 42.5 24 1021.2 8 1020.2 8 11.7 24 9.8 24 14.0 999.9 79.3* 53.4* 0.00I 999.9 000000 724050 13743 19600422 72.0 24 51.2 24 1016.9 8 1015.9 8 11.8 24 6.9 24 12.0 999.9 84.4* 62.4* 99.99 999.9 010000 724050 13743 19600423 76.4 24 50.3 24 1018.1 8 1017.1 8 10.2 24 2.0 24 9.9 999.9 94.3* 60.3* 0.00I 999.9 000000 724050 13743 19600424 76.6 24 52.7 24 1011.9 8 1010.9 8 9.9 24 2.7 24 12.0 999.9 94.3* 58.3* 0.00I 999.9 000000 724050 13743 19600425 81.1 24 55.8 23 1006.5 8 1005.5 8 11.3 24 5.3 24 15.0 999.9 93.4* 67.3* 0.00I 999.9 000000 724050 13743 19600426 77.4 24 55.2 24 1006.8 8 1005.7 8 9.8 24 2.5 24 22.0 999.9 92.3* 65.3* 99.99 999.9 010000 724050 13743 19600427 67.9 24 60.0 24 1009.3 8 1008.4 8 9.7 24 7.6 24 15.9 999.9 72.3* 63.3* 99.99 999.9 010000 724050 13743 19600428 60.1 24 41.1 24 1014.3 8 1013.3 8 11.3 24 8.7 24 15.9 999.9 64.4* 56.3* 0.00I 999.9 000000 724050 13743 19600429 58.3 24 38.8 24 1018.3 8 1017.3 8 10.6 24 4.0 24 9.9 999.9 73.4* 46.4* 0.00I 999.9 000000 724050 13743 19600430 61.9 24 44.3 24 1020.4 8 1019.4 8 9.9 24 9.0 24 14.0 999.9 71.2* 53.4* 0.00I 999.9 000000 724050 13743 19600501 62.3 24 48.7 24 1014.9 8 1013.8 8 9.9 24 10.4 24 19.0 999.9 65.3* 60.3* 99.99 999.9 110000 724050 13743 19600502 55.9 24 29.1 24 1019.9 8 1018.8 8 11.9 24 9.6 24 16.9 999.9 67.3* 45.3* 0.00I 999.9 000000 724050 13743 19600503 57.9 24 39.3 24 1023.0 8 1022.0 8 11.2 24 5.9 24 14.0 999.9 70.3* 46.4* 0.00I 999.9 000000 724050 13743 19600504 59.5 24 42.9 24 1025.3 8 1024.2 8 9.9 24 4.1 24 12.0 999.9 71.2* 46.4* 0.00I 999.9 000000 724050 13743 19600505 63.8 24 47.5 24 1025.0 8 1024.0 8 10.8 24 4.2 24 11.1 999.9 76.3* 50.4* 0.00I 999.9 000000 724050 13743 19600506 64.7 24 46.5 24 1022.6 8 1021.6 8 10.5 24 5.6 24 12.0 999.9 78.3* 51.3* 0.00I 999.9 000000 724050 13743 19600507 65.5 24 50.6 24 1015.4 8 1014.4 8 11.4 24 7.1 24 12.0 999.9 76.3* 54.3* 0.00I 999.9 000000 724050 13743 19600508 64.8 24 60.8 24 1005.5 8 1004.4 8 8.2 24 8.3 24 15.0 999.9 69.3* 61.3* 99.99 999.9 110000 724050 13743 19600509 54.0 24 46.6 24 1000.2 8 999.2 8 9.1 24 12.3 24 18.1 999.9 61.3* 48.4* 99.99 999.9 110000 724050 13743 19600510 58.1 24 40.0 24 1005.5 8 1004.5 8 11.6 24 7.7 24 14.0 999.9 71.2* 49.3* 0.00I 999.9 000000 724050 13743 19600511 59.0 24 47.1 24 1005.3 8 1004.2 8 10.1 24 8.6 24 15.0 999.9 66.4* 53.4* 99.99 999.9 110000 724050 13743 19600512 54.0 24 46.6 24 1011.3 8 1010.2 8 8.2 24 8.2 24 9.9 999.9 57.4* 50.4* 99.99 999.9 110000 724050 13743 19600513 55.9 24 45.1 24 1009.4 8 1008.4 8 7.0 24 5.1 24 8.9 999.9 63.3* 49.3* 0.00I 999.9 000000 724050 13743 19600514 55.6 24 43.7 24 1008.9 8 1007.9 8 9.7 24 6.2 24 15.0 999.9 62.4* 47.3* 99.99 999.9 010000 724050 13743 19600515 62.2 24 45.0 24 1011.5 8 1010.4 8 11.1 24 7.4 24 15.9 999.9 80.2* 50.4* 0.00I 999.9 000000 724050 13743 19600516 73.2 24 50.6 24 1009.9 8 1008.9 8 11.6 24 6.9 24 15.0 999.9 85.3* 62.4* 0.00I 999.9 000000 724050 13743 19600517 71.9 24 54.6 24 1010.1 8 1009.1 8 10.1 24 2.2 24 15.0 999.9 85.3* 61.3* 99.99 999.9 010010 724050 13743 19600518 68.4 24 58.6 24 1007.5 8 1006.5 8 9.7 24 9.7 24 22.0 999.9 75.4* 61.3* 99.99 999.9 010000 724050 13743 19600519 69.1 24 56.4 24 1018.5 8 1017.5 8 7.9 24 4.7 24 13.0 999.9 81.3* 58.3* 99.99 999.9 010000 724050 13743 19600520 71.7 24 59.5 24 1018.4 8 1017.4 8 8.7 24 8.2 24 13.0 999.9 85.3* 63.3* 99.99 999.9 010000 724050 13743 19600521 77.6 24 66.2 24 1012.1 8 1011.1 8 7.5 24 3.2 24 9.9 999.9 87.3* 70.3* 99.99 999.9 010010 724050 13743 19600522 67.4 24 64.9 24 1012.4 8 1011.4 8 6.5 24 6.8 24 12.0 999.9 70.3* 65.3* 99.99 999.9 110010 724050 13743 19600523 65.2 24 59.8 24 1007.9 8 1006.9 8 7.7 24 4.4 24 25.1 999.9 75.4* 60.3* 99.99 999.9 110010 724050 13743 19600524 68.7 24 54.5 24 1008.3 8 1007.3 8 11.4 24 5.3 24 16.9 999.9 82.4* 59.4* 0.00I 999.9 000000 724050 13743 19600525 68.4 24 55.0 24 1011.3 8 1010.2 8 7.7 24 2.5 24 8.9 999.9 76.3* 61.3* 99.99 999.9 010000 724050 13743 19600526 69.8 24 60.9 24 1014.1 8 1013.1 8 5.8 24 2.2 24 8.0 999.9 77.4* 62.4* 0.00I 999.9 000000 724050 13743 19600527 69.5 24 58.1 24 1015.8 8 1014.7 8 7.6 24 4.5 24 12.0 999.9 77.4* 62.4* 99.99 999.9 010000 724050 13743 19600528 61.6 24 57.4 24 1015.8 8 1014.8 8 5.5 24 7.4 24 15.0 999.9 65.3* 58.3* 99.99 999.9 110000 724050 13743 19600529 61.0 24 58.7 24 1017.7 8 1016.6 8 6.0 24 2.5 24 6.0 999.9 65.3* 59.4* 99.99 999.9 110000 724050 13743 19600530 65.2 24 62.6 24 1016.4 8 1015.4 8 5.0 24 2.6 24 9.9 999.9 70.3* 62.4* 99.99 999.9 110010 724050 13743 19600531 71.0 24 61.2 24 1011.8 8 1010.8 8 7.3 24 5.6 24 15.0 999.9 82.4* 63.3* 0.00I 999.9 100000 724050 13743 19600601 74.2 24 51.7 24 1012.4 8 1011.4 8 11.9 24 6.2 24 16.9 999.9 85.3* 65.3* 0.00I 999.9 000000 724050 13743 19600602 74.7 24 59.5 24 1011.0 8 1010.0 8 9.9 24 3.1 24 8.9 999.9 87.3* 63.3* 0.00I 999.9 000000 724050 13743 19600603 76.7 24 64.7 24 1010.2 8 1009.2 8 11.4 24 8.5 24 12.0 999.9 85.3* 68.4* 0.00I 999.9 000000 724050 13743 19600604 75.3 24 69.3 24 1012.8 8 1011.8 8 10.0 24 6.2 24 18.1 999.9 81.3* 71.2* 99.99 999.9 110000 724050 13743 19600605 75.2 24 66.3 24 1012.4 8 1011.4 8 8.6 24 1.9 24 6.0 999.9 87.3* 67.3* 0.00I 999.9 100000 724050 13743 19600606 77.2 24 65.5 24 1010.3 8 1009.3 8 9.6 24 4.3 24 8.0 999.9 83.3* 70.3* 0.00I 999.9 000000 724050 13743 19600607 72.3 24 52.7 24 1014.5 8 1013.5 8 11.2 24 6.6 24 13.0 999.9 80.2* 62.4* 0.00I 999.9 000000 724050 13743 19600608 69.6 24 50.3 24 1018.2 8 1017.2 8 11.8 24 5.4 24 9.9 999.9 78.3* 61.3* 0.00I 999.9 000000 724050 13743 19600609 69.0 24 51.0 24 1019.9 8 1018.9 8 9.5 24 3.7 24 12.0 999.9 78.3* 58.3* 0.00I 999.9 000000 724050 13743 19600610 67.5 24 48.2 24 1023.3 8 1022.3 8 10.9 24 4.1 24 11.1 999.9 76.3* 56.3* 0.00I 999.9 000000 724050 13743 19600611 71.2 24 52.7 24 1017.5 8 1016.5 8 10.9 24 2.8 24 12.0 999.9 85.3* 57.4* 0.00I 999.9 000000 724050 13743 19600612 76.4 24 63.8 24 1012.1 8 1011.1 8 8.0 24 4.0 24 14.0 999.9 85.3* 68.4* 99.99 999.9 010010 724050 13743 19600613 74.9 24 65.7 24 1012.7 8 1011.6 8 9.6 24 3.8 24 15.0 999.9 81.3* 70.3* 0.00I 999.9 000000 724050 13743 19600614 76.1 24 69.4 24 1010.0 8 1009.0 8 5.7 24 5.5 24 14.0 999.9 89.2* 69.3* 99.99 999.9 110010 724050 13743 19600615 75.9 24 66.4 24 1008.6 8 1007.6 8 9.7 24 6.0 24 18.1 999.9 85.3* 68.4* 99.99 999.9 010000 724050 13743 19600616 75.0 24 61.1 24 1014.8 8 1013.8 8 10.3 24 4.4 24 16.9 999.9 86.4* 63.3* 0.00I 999.9 000000 724050 13743 19600617 79.6 24 71.3 24 1012.0 8 1011.0 8 10.4 24 8.0 24 14.0 999.9 88.3* 74.3* 0.00I 999.9 000000 724050 13743 19600618 76.0 24 63.4 24 1014.0 8 1013.0 8 10.9 24 10.3 24 15.9 999.9 86.4* 71.2* 0.00I 999.9 000000 724050 13743 19600619 71.1 24 57.7 24 1019.8 8 1018.8 8 9.7 24 1.7 24 11.1 999.9 81.3* 61.3* 0.00I 999.9 000000 724050 13743 19600620 76.6 24 61.0 24 1017.5 8 1016.5 8 8.4 24 4.7 24 15.9 999.9 86.4* 67.3* 0.00I 999.9 000000 724050 13743 19600621 72.9 24 52.5 24 1021.0 8 1020.0 8 11.8 24 5.7 24 9.9 999.9 81.3* 65.3* 0.00I 999.9 000000 724050 13743 19600622 68.7 24 60.2 24 1019.6 8 1018.6 8 9.6 24 2.4 24 7.0 999.9 75.4* 65.3* 99.99 999.9 010000 724050 13743 19600623 74.5 24 67.4 24 1012.9 8 1011.9 8 4.4 24 1.2 24 6.0 999.9 86.4* 67.3* 0.00I 999.9 100000 724050 13743 19600624 79.3 24 71.5 24 1008.9 8 1007.9 8 6.4 24 3.5 24 11.1 999.9 91.2* 71.2* 0.00I 999.9 100000 724050 13743 19600625 77.8 24 54.1 24 1012.8 8 1011.8 8 11.7 24 11.9 24 18.1 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19600626 75.9 24 53.8 24 1021.1 8 1020.1 8 11.9 24 2.6 24 9.9 999.9 86.4* 64.4* 0.00I 999.9 000000 724050 13743 19600627 76.3 24 55.4 24 1022.5 8 1021.5 8 10.7 24 3.0 24 8.0 999.9 86.4* 62.4* 0.00I 999.9 000000 724050 13743 19600628 76.0 24 58.9 24 1022.4 8 1021.4 8 10.8 24 4.0 24 8.9 999.9 87.3* 64.4* 0.00I 999.9 000000 724050 13743 19600629 77.2 24 67.1 24 1016.1 8 1015.0 8 10.9 24 6.8 24 8.9 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19600630 79.4 24 67.2 24 1013.2 8 1012.2 8 10.2 24 6.0 24 14.0 999.9 88.3* 70.3* 99.99 999.9 010010 724050 13743 19600701 75.2 24 67.1 24 1013.8 8 1012.8 8 8.9 24 3.7 24 9.9 999.9 85.3* 70.3* 99.99 999.9 110000 724050 13743 19600702 76.4 24 64.6 24 1011.8 8 1010.8 8 10.0 24 6.1 24 9.9 999.9 85.3* 68.4* 99.99 999.9 010000 724050 13743 19600703 79.3 24 69.3 24 1010.2 8 1009.2 8 7.8 24 6.5 24 14.0 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19600704 80.5 24 63.0 24 1007.8 8 1006.7 8 11.0 24 6.7 24 11.1 999.9 87.3* 72.3* 0.00I 999.9 000000 724050 13743 19600705 76.9 24 54.8 24 1013.1 8 1012.1 8 11.9 24 5.6 24 14.0 999.9 84.4* 70.3* 0.00I 999.9 000000 724050 13743 19600706 76.6 24 54.6 24 1019.6 8 1018.6 8 11.2 24 2.5 24 11.1 999.9 89.2* 65.3* 0.00I 999.9 000000 724050 13743 19600707 76.9 24 57.6 24 1020.0 8 1019.0 8 10.4 24 3.8 24 11.1 999.9 84.4* 70.3* 99.99 999.9 010000 724050 13743 19600708 74.6 24 54.7 24 1021.9 8 1020.8 8 10.9 24 3.5 24 9.9 999.9 85.3* 63.3* 0.00I 999.9 000000 724050 13743 19600709 77.9 24 57.3 24 1021.1 8 1020.0 8 10.1 24 2.3 24 7.0 999.9 90.3* 66.4* 0.00I 999.9 000000 724050 13743 19600710 77.7 24 65.2 24 1018.0 8 1017.0 8 5.5 24 1.9 24 8.9 999.9 86.4* 69.3* 0.00I 999.9 000000 724050 13743 19600711 73.6 24 69.4 24 1012.6 8 1011.6 8 5.1 24 4.2 24 9.9 999.9 79.3* 70.3* 99.99 999.9 110000 724050 13743 19600712 74.9 24 64.9 24 1014.4 8 1013.3 8 6.7 24 1.5 24 6.0 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19600713 79.6 24 68.2 24 1012.4 8 1011.4 8 7.4 24 1.8 24 8.0 999.9 89.2* 71.2* 0.00I 999.9 100000 724050 13743 19600714 77.5 24 71.8 24 1007.8 8 1006.8 8 6.2 24 5.2 24 11.1 999.9 84.4* 74.3* 99.99 999.9 110000 724050 13743 19600715 71.3 24 58.3 24 1017.8 8 1016.7 8 11.8 24 7.8 24 15.0 999.9 81.3* 62.4* 0.00I 999.9 000000 724050 13743 19600716 74.5 24 61.1 24 1020.6 8 1019.6 8 11.3 24 1.7 24 6.0 999.9 85.3* 63.3* 0.00I 999.9 000000 724050 13743 19600717 77.6 24 64.7 24 1016.6 8 1015.6 8 10.8 24 4.5 24 8.0 999.9 89.2* 69.3* 0.00I 999.9 000000 724050 13743 19600718 79.0 24 64.3 24 1014.7 8 1013.7 8 11.8 24 6.3 24 11.1 999.9 88.3* 72.3* 0.00I 999.9 000000 724050 13743 19600719 77.7 24 68.4 24 1014.2 8 1013.2 8 10.3 24 4.3 24 9.9 999.9 83.3* 73.4* 99.99 999.9 010000 724050 13743 19600720 80.5 24 67.8 24 1015.3 8 1014.3 8 9.7 24 4.8 24 15.9 999.9 89.2* 72.3* 0.00I 999.9 000000 724050 13743 19600721 76.5 24 56.8 24 1020.8 8 1019.8 8 11.6 24 3.2 24 8.9 999.9 85.3* 66.4* 0.00I 999.9 000000 724050 13743 19600722 76.5 24 61.4 24 1020.8 8 1019.7 8 11.1 24 3.9 24 11.1 999.9 89.2* 65.3* 0.00I 999.9 000000 724050 13743 19600723 82.4 24 66.1 24 1015.3 8 1014.3 8 8.5 24 4.1 24 9.9 999.9 94.3* 70.3* 0.00I 999.9 000000 724050 13743 19600724 82.7 24 66.1 24 1014.7 8 1013.6 8 9.3 24 3.2 24 8.0 999.9 92.3* 72.3* 0.00I 999.9 000000 724050 13743 19600725 79.0 24 59.9 24 1018.9 8 1017.9 8 11.2 24 2.4 24 7.0 999.9 88.3* 69.3* 0.00I 999.9 000000 724050 13743 19600726 78.7 24 64.1 24 1020.0 8 1018.9 8 9.9 24 4.8 24 14.0 999.9 87.3* 72.3* 0.00I 999.9 000000 724050 13743 19600727 75.0 24 68.3 24 1014.3 8 1013.3 8 7.1 24 6.4 24 9.9 999.9 82.4* 68.4* 99.99 999.9 110010 724050 13743 19600728 77.3 24 66.7 24 1012.7 8 1011.7 8 7.8 24 1.0 24 5.1 999.9 87.3* 69.3* 0.00I 999.9 100000 724050 13743 19600729 76.5 24 66.5 24 1011.9 8 1010.9 8 8.7 24 0.8 24 6.0 999.9 82.4* 70.3* 99.99 999.9 110000 724050 13743 19600730 72.4 24 64.9 24 1004.4 8 1003.4 8 7.2 24 9.3 24 18.1 999.9 86.4* 65.3* 99.99 999.9 010000 724050 13743 19600731 80.4 24 67.0 24 1011.0 8 1010.0 8 9.5 24 2.7 24 8.0 999.9 87.3* 75.4* 99.99 999.9 010000 724050 13743 19600801 78.5 24 68.9 24 1018.5 8 1017.5 8 7.2 24 1.2 24 5.1 999.9 88.3* 72.3* 0.00I 999.9 000000 724050 13743 19600802 82.4 24 68.5 24 1017.9 8 1016.9 8 8.3 24 3.1 24 8.9 999.9 93.4* 74.3* 0.00I 999.9 000000 724050 13743 19600803 84.5 24 71.4 24 1012.5 8 1011.5 8 7.8 24 3.5 24 9.9 999.9 94.3* 73.4* 99.99 999.9 010010 724050 13743 19600804 80.4 24 71.3 24 1010.6 8 1009.6 8 7.5 24 0.4 24 4.1 999.9 92.3* 74.3* 99.99 999.9 010000 724050 13743 19600805 80.2 24 70.0 24 1012.9 8 1011.9 8 9.8 24 4.3 24 25.1 999.9 90.3* 72.3* 99.99 999.9 010010 724050 13743 19600806 77.2 24 71.1 24 1017.5 8 1016.5 8 5.7 24 2.2 24 8.0 999.9 86.4* 72.3* 0.00I 999.9 100000 724050 13743 19600807 78.7 24 70.8 24 1017.7 8 1016.6 8 7.7 24 2.0 24 7.0 999.9 86.4* 72.3* 99.99 999.9 010000 724050 13743 19600808 82.5 24 70.9 24 1011.7 8 1010.6 8 10.6 24 6.1 24 13.0 999.9 94.3* 74.3* 0.00I 999.9 000000 724050 13743 19600809 81.4 24 68.3 24 1014.2 8 1013.2 8 11.8 24 2.5 24 7.0 999.9 89.2* 73.4* 0.00I 999.9 000000 724050 13743 19600810 80.4 24 72.1 24 1012.0 8 1011.0 8 7.2 24 2.8 24 8.9 999.9 89.2* 72.3* 99.99 999.9 110010 724050 13743 19600811 75.7 24 65.7 24 1013.5 8 1012.5 8 9.7 24 4.8 24 8.9 999.9 84.4* 70.3* 0.00I 999.9 000000 724050 13743 19600812 75.7 24 66.1 24 1017.5 8 1016.4 8 6.2 24 1.6 24 7.0 999.9 80.2* 71.2* 0.00I 999.9 100000 724050 13743 19600813 71.4 24 66.7 24 1017.1 8 1016.1 8 4.5 24 3.4 24 8.0 999.9 77.4* 67.3* 99.99 999.9 110000 724050 13743 19600814 75.4 24 67.9 24 1018.5 8 1017.5 8 5.6 24 1.3 24 4.1 999.9 88.3* 67.3* 0.00I 999.9 100000 724050 13743 19600815 79.6 24 70.3 24 1018.3 8 1017.3 8 7.9 24 0.8 24 4.1 999.9 90.3* 72.3* 99.99 999.9 010000 724050 13743 19600816 76.1 24 67.1 24 1020.9 8 1019.9 8 6.0 24 4.5 24 20.0 999.9 83.3* 69.3* 99.99 999.9 010010 724050 13743 19600817 74.6 24 63.3 24 1024.1 8 1023.0 8 5.4 24 4.1 24 7.0 999.9 81.3* 69.3* 0.00I 999.9 000000 724050 13743 19600818 75.8 24 59.4 24 1019.6 8 1018.6 8 9.1 24 3.6 24 9.9 999.9 84.4* 67.3* 0.00I 999.9 000000 724050 13743 19600819 76.5 24 62.3 24 1014.8 8 1013.8 8 10.9 24 3.4 24 8.9 999.9 89.2* 67.3* 0.00I 999.9 000000 724050 13743 19600820 78.9 24 66.2 24 1014.3 8 1013.2 8 8.9 24 3.1 24 8.0 999.9 88.3* 71.2* 0.00I 999.9 000000 724050 13743 19600821 81.4 24 70.7 24 1014.4 8 1013.3 8 9.3 24 4.6 24 9.9 999.9 92.3* 73.4* 99.99 999.9 110000 724050 13743 19600822 78.7 24 70.0 24 1011.0 8 1010.0 8 10.4 24 2.9 24 8.0 999.9 87.3* 71.2* 0.00I 999.9 000000 724050 13743 19600823 79.9 24 67.5 24 1008.8 8 1007.8 8 10.3 24 3.8 24 8.0 999.9 87.3* 72.3* 0.00I 999.9 000000 724050 13743 19600824 76.3 24 63.8 24 1014.5 8 1013.5 8 9.2 24 4.9 24 8.9 999.9 82.4* 71.2* 0.00I 999.9 000000 724050 13743 19600825 70.8 24 58.9 24 1022.8 8 1021.8 8 9.8 24 2.5 24 8.9 999.9 77.4* 63.3* 0.00I 999.9 000000 724050 13743 19600826 70.9 24 59.4 24 1024.1 8 1023.1 8 11.1 24 2.0 24 7.0 999.9 82.4* 61.3* 0.00I 999.9 000000 724050 13743 19600827 77.9 24 68.6 24 1020.2 8 1019.2 8 11.4 24 1.2 24 4.1 999.9 88.3* 70.3* 0.00I 999.9 000000 724050 13743 19600828 82.9 24 72.2 24 1019.0 8 1018.0 8 8.7 24 0.0 24 999.9 999.9 95.4* 74.3* 0.00I 999.9 100000 724050 13743 19600829 83.2 24 72.6 24 1019.9 8 1018.9 8 8.0 24 4.5 24 9.9 999.9 95.4* 74.3* 0.00I 999.9 000000 724050 13743 19600830 84.7 24 72.7 24 1019.0 8 1018.0 8 9.3 24 2.3 24 8.0 999.9 94.3* 76.3* 0.00I 999.9 000000 724050 13743 19600831 80.0 24 71.3 24 1018.8 8 1017.7 8 9.0 24 1.8 24 8.0 999.9 90.3* 72.3* 99.99 999.9 010010 724050 13743 19600901 79.4 24 68.8 24 1017.7 8 1016.7 8 9.7 24 2.7 24 8.9 999.9 91.2* 72.3* 0.00I 999.9 000000 724050 13743 19600902 81.9 24 67.1 24 1016.6 8 1015.6 8 8.5 24 3.0 24 8.0 999.9 88.3* 76.3* 0.00I 999.9 000000 724050 13743 19600903 72.3 24 54.3 24 1020.8 8 1019.8 8 11.9 24 4.2 24 8.9 999.9 81.3* 61.3* 0.00I 999.9 000000 724050 13743 19600904 73.0 24 59.9 24 1018.6 8 1017.6 8 10.5 24 2.9 24 7.0 999.9 88.3* 63.3* 0.00I 999.9 000000 724050 13743 19600905 78.6 24 68.2 24 1013.2 8 1012.2 8 8.0 24 2.5 24 6.0 999.9 86.4* 74.3* 0.00I 999.9 000000 724050 13743 19600906 75.3 24 67.2 24 1017.2 8 1016.1 8 4.9 24 2.2 24 7.0 999.9 81.3* 69.3* 0.00I 999.9 100000 724050 13743 19600907 74.6 24 61.4 24 1022.3 8 1021.3 8 9.1 24 2.1 24 6.0 999.9 84.4* 67.3* 0.00I 999.9 000000 724050 13743 19600908 74.3 24 64.0 24 1022.0 8 1020.9 8 10.2 24 2.7 24 9.9 999.9 85.3* 66.4* 0.00I 999.9 000000 724050 13743 19600909 78.7 24 70.2 24 1018.1 8 1017.1 8 7.8 24 5.4 24 13.0 999.9 89.2* 72.3* 0.00I 999.9 100000 724050 13743 19600910 76.9 24 69.5 24 1015.9 8 1014.9 8 6.0 24 3.3 24 9.9 999.9 84.4* 71.2* 99.99 999.9 010010 724050 13743 19600911 74.9 24 69.5 24 1014.1 8 1013.0 8 6.2 24 2.8 24 6.0 999.9 84.4* 70.3* 99.99 999.9 110010 724050 13743 19600912 69.3 24 64.3 24 1000.0 8 998.9 8 7.1 24 12.4 24 22.9 999.9 75.4* 65.3* 99.99 999.9 110000 724050 13743 19600913 68.2 24 55.6 24 1005.8 8 1004.7 8 10.7 24 4.2 24 16.9 999.9 76.3* 60.3* 0.00I 999.9 000000 724050 13743 19600914 64.8 24 46.2 24 1016.8 8 1015.8 8 11.9 24 4.0 24 11.1 999.9 74.3* 56.3* 0.00I 999.9 000000 724050 13743 19600915 66.6 24 53.2 24 1021.2 8 1020.2 8 10.6 24 1.5 24 7.0 999.9 77.4* 60.3* 0.00I 999.9 000000 724050 13743 19600916 69.9 24 56.8 24 1024.5 8 1023.5 8 7.8 24 0.7 24 7.0 999.9 83.3* 60.3* 0.00I 999.9 000000 724050 13743 19600917 69.1 24 60.7 24 1026.5 8 1025.5 8 6.3 24 2.3 24 8.9 999.9 75.4* 62.4* 0.00I 999.9 000000 724050 13743 19600918 70.1 24 63.8 24 1020.8 8 1019.8 8 7.0 24 1.0 24 7.0 999.9 76.3* 65.3* 99.99 999.9 110000 724050 13743 19600919 72.5 24 67.8 24 1017.6 8 1016.6 8 3.7 24 1.8 24 7.0 999.9 80.2* 68.4* 99.99 999.9 110000 724050 13743 19600920 73.2 24 67.8 24 1014.8 8 1013.8 8 5.0 24 1.1 24 8.9 999.9 84.4* 68.4* 99.99 999.9 110010 724050 13743 19600921 71.1 24 64.3 24 1019.8 8 1018.8 8 3.5 24 2.8 24 6.0 999.9 75.4* 68.4* 0.00I 999.9 100000 724050 13743 19600922 67.1 24 58.1 24 1024.6 8 1023.5 8 7.1 24 1.7 24 7.0 999.9 73.4* 61.3* 0.00I 999.9 100000 724050 13743 19600923 66.4 24 55.1 24 1023.3 8 1022.3 8 10.9 24 1.7 24 7.0 999.9 74.3* 57.4* 0.00I 999.9 000000 724050 13743 19600924 65.5 24 56.7 24 1023.0 8 1022.0 8 5.1 24 0.8 24 6.0 999.9 76.3* 56.3* 0.00I 999.9 000000 724050 13743 19600925 64.9 24 54.9 24 1025.7 8 1024.6 8 8.7 24 2.0 24 7.0 999.9 70.3* 56.3* 0.00I 999.9 000000 724050 13743 19600926 62.4 24 53.2 24 1024.5 8 1023.5 8 6.9 24 0.9 24 6.0 999.9 68.4* 56.3* 0.00I 999.9 000000 724050 13743 19600927 63.4 24 53.0 24 1019.6 8 1018.6 8 4.0 24 1.2 24 6.0 999.9 77.4* 53.4* 0.00I 999.9 100000 724050 13743 19600928 67.6 24 58.7 24 1014.8 8 1013.8 8 3.8 24 0.5 24 4.1 999.9 75.4* 62.4* 0.00I 999.9 000000 724050 13743 19600929 69.3 24 64.7 24 1013.6 8 1012.6 8 2.2 24 1.2 24 5.1 999.9 71.2* 68.4* 99.99 999.9 110000 724050 13743 19600930 71.2 24 64.2 24 1011.5 8 1010.5 8 4.8 24 1.9 24 8.9 999.9 80.2* 65.3* 99.99 999.9 110000 724050 13743 19601001 63.9 24 47.2 24 1019.0 8 1018.0 8 10.3 24 9.1 24 15.0 999.9 73.4* 56.3* 0.00I 999.9 000000 724050 13743 19601002 58.1 24 46.3 24 1023.0 8 1022.0 8 10.1 24 2.9 24 12.0 999.9 72.3* 49.3* 0.00I 999.9 000000 724050 13743 19601003 67.5 24 54.9 24 1018.0 8 1017.0 8 9.5 24 7.9 24 15.9 999.9 73.4* 61.3* 0.00I 999.9 100000 724050 13743 19601004 60.9 24 44.9 24 1022.3 8 1021.2 8 10.3 24 1.7 24 7.0 999.9 66.4* 55.4* 0.00I 999.9 000000 724050 13743 19601005 60.0 24 48.7 24 1021.7 8 1020.7 8 8.6 24 2.5 24 8.9 999.9 70.3* 51.3* 0.00I 999.9 000000 724050 13743 19601006 66.1 24 60.4 24 1014.2 8 1013.1 8 7.7 24 7.3 24 9.9 999.9 73.4* 60.3* 99.99 999.9 110000 724050 13743 19601007 64.0 24 48.2 24 1017.4 8 1016.4 8 11.6 24 4.4 24 12.0 999.9 70.3* 55.4* 0.00I 999.9 000000 724050 13743 19601008 56.4 24 47.8 24 1020.1 8 1019.0 8 8.2 24 0.1 24 2.9 999.9 63.3* 49.3* 99.99 999.9 010000 724050 13743 19601009 58.6 24 54.2 24 1016.3 8 1015.2 8 5.5 24 0.5 24 2.9 999.9 60.3* 57.4* 99.99 999.9 110000 724050 13743 19601010 62.2 24 53.0 24 1016.7 8 1015.6 8 5.6 24 1.6 24 7.0 999.9 76.3* 53.4* 0.00I 999.9 100000 724050 13743 19601011 66.4 24 50.9 24 1014.6 8 1013.6 8 10.4 24 2.9 24 9.9 999.9 82.4* 55.4* 0.00I 999.9 000000 724050 13743 19601012 69.5 24 51.5 24 1013.6 8 1012.6 8 10.0 24 1.4 24 7.0 999.9 79.3* 61.3* 0.00I 999.9 000000 724050 13743 19601013 65.4 24 54.3 24 1016.9 8 1015.8 8 6.9 24 0.8 24 7.0 999.9 79.3* 55.4* 0.00I 999.9 100000 724050 13743 19601014 68.3 24 60.4 24 1017.7 8 1016.7 8 4.8 24 0.9 24 6.0 999.9 81.3* 59.4* 0.00I 999.9 100000 724050 13743 19601015 70.4 24 63.0 24 1018.9 8 1017.8 8 6.3 24 2.0 24 7.0 999.9 81.3* 62.4* 0.00I 999.9 100000 724050 13743 19601016 70.2 24 61.5 24 1017.2 8 1016.2 8 6.9 24 0.9 24 5.1 999.9 79.3* 63.3* 0.00I 999.9 000000 724050 13743 19601017 66.8 24 53.0 24 1014.3 8 1013.2 8 8.9 24 2.8 24 7.0 999.9 73.4* 58.3* 0.00I 999.9 000000 724050 13743 19601018 65.7 24 45.0 24 1015.2 8 1014.2 8 10.3 24 2.0 24 8.9 999.9 76.3* 57.4* 0.00I 999.9 000000 724050 13743 19601019 62.9 24 55.3 24 1017.1 8 1016.1 8 5.6 24 2.5 24 9.9 999.9 71.2* 55.4* 99.99 999.9 110000 724050 13743 19601020 63.0 24 54.7 24 1009.9 8 1008.9 8 7.2 24 9.7 24 20.0 999.9 71.2* 55.4* 99.99 999.9 110000 724050 13743 19601021 48.7 24 30.4 24 1021.0 8 1019.9 8 11.7 24 3.4 24 15.0 999.9 55.4* 39.4* 0.00I 999.9 000000 724050 13743 19601022 48.9 24 34.7 24 1021.8 8 1020.8 8 8.8 24 1.3 24 4.1 999.9 59.4* 40.3* 0.00I 999.9 000000 724050 13743 19601023 51.4 24 39.8 24 1012.1 8 1011.1 8 9.8 24 5.1 24 11.1 999.9 58.3* 46.4* 99.99 999.9 010000 724050 13743 19601024 52.1 24 35.3 24 1003.3 8 1002.2 8 11.1 24 13.1 24 26.0 999.9 57.4* 44.4* 0.00I 999.9 000000 724050 13743 19601025 46.5 24 25.1 24 1013.7 8 1012.7 8 11.9 24 13.5 24 22.0 999.9 55.4* 41.4* 0.00I 999.9 000000 724050 13743 19601026 47.0 24 32.9 24 1019.7 8 1018.7 8 8.6 24 2.1 24 6.0 999.9 56.3* 38.3* 0.00I 999.9 000000 724050 13743 19601027 52.7 24 43.6 24 1017.5 8 1016.5 8 5.7 24 1.2 24 5.1 999.9 57.4* 49.3* 99.99 999.9 010000 724050 13743 19601028 53.0 24 46.2 24 1013.7 8 1012.7 8 4.2 24 5.1 24 8.9 999.9 56.3* 49.3* 99.99 999.9 110000 724050 13743 19601029 53.8 24 43.4 24 1012.4 8 1011.4 8 9.8 24 6.2 24 8.9 999.9 58.3* 49.3* 99.99 999.9 010000 724050 13743 19601030 54.2 24 38.7 24 1017.3 8 1016.3 8 11.0 24 1.8 24 6.0 999.9 63.3* 46.4* 0.00I 999.9 000000 724050 13743 19601031 53.9 24 47.7 24 1016.4 8 1015.4 8 6.4 24 1.7 24 6.0 999.9 55.4* 51.3* 99.99 999.9 110000 724050 13743 19601101 57.8 24 52.5 24 1004.7 8 1003.6 8 6.5 24 0.7 24 7.0 999.9 65.3* 54.3* 99.99 999.9 110000 724050 13743 19601102 56.5 24 42.8 24 1002.6 8 1001.6 8 9.4 24 3.2 24 9.9 999.9 68.4* 47.3* 0.00I 999.9 000000 724050 13743 19601103 53.4 24 34.4 24 1009.7 8 1008.7 8 11.1 24 10.0 24 19.0 999.9 61.3* 49.3* 99.99 999.9 010000 724050 13743 19601104 52.5 24 29.5 24 1020.6 8 1019.5 8 11.9 24 9.8 24 20.0 999.9 63.3* 43.3* 0.00I 999.9 000000 724050 13743 19601105 51.7 24 37.4 24 1017.6 8 1016.6 8 9.4 24 1.7 24 9.9 999.9 57.4* 47.3* 99.99 999.9 010000 724050 13743 19601106 45.5 24 29.7 24 1013.4 8 1012.4 8 11.0 24 6.6 24 16.9 999.9 50.4* 40.3* 99.99 999.9 010000 724050 13743 19601107 41.6 24 28.2 24 1018.3 8 1017.3 8 10.6 24 7.9 24 15.9 999.9 44.4* 37.4* 99.99 999.9 011000 724050 13743 19601108 38.4 24 24.5 24 1031.8 8 1030.8 8 10.4 24 3.0 24 8.9 999.9 49.3* 30.4* 0.00I 999.9 000000 724050 13743 19601109 46.3 24 30.1 24 1029.9 8 1028.9 8 11.0 24 4.4 24 8.9 999.9 60.3* 38.3* 0.00I 999.9 000000 724050 13743 19601110 52.8 24 46.3 24 1020.9 8 1019.8 8 6.9 24 5.7 24 19.0 999.9 58.3* 45.3* 99.99 999.9 110000 724050 13743 19601111 41.8 24 27.4 24 1027.1 8 1026.1 8 11.9 24 5.5 24 14.0 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19601112 42.0 24 29.3 24 1026.2 8 1025.2 8 8.6 24 0.7 24 6.0 999.9 57.4* 32.4* 0.00I 999.9 000000 724050 13743 19601113 44.8 24 34.2 24 1026.9 8 1025.9 8 5.5 24 1.1 24 5.1 999.9 60.3* 34.3* 0.00I 999.9 100000 724050 13743 19601114 51.9 24 38.2 24 1026.7 8 1025.7 8 6.9 24 0.8 24 5.1 999.9 67.3* 42.4* 0.00I 999.9 000000 724050 13743 19601115 57.9 24 37.8 24 1025.1 8 1024.1 8 8.8 24 4.2 24 8.0 999.9 69.3* 50.4* 0.00I 999.9 000000 724050 13743 19601116 61.8 24 41.2 24 1015.7 8 1014.6 8 10.6 24 6.9 24 11.1 999.9 72.3* 54.3* 0.00I 999.9 000000 724050 13743 19601117 61.2 24 35.9 24 1015.6 8 1014.6 8 11.5 24 7.6 24 22.0 999.9 69.3* 55.4* 0.00I 999.9 000000 724050 13743 19601118 50.5 24 33.6 24 1019.9 8 1018.9 8 8.7 24 1.6 24 8.9 999.9 63.3* 38.3* 0.00I 999.9 000000 724050 13743 19601119 50.8 24 38.3 24 1015.6 8 1014.6 8 9.1 24 5.4 24 14.0 999.9 58.3* 42.4* 0.00I 999.9 000000 724050 13743 19601120 49.2 24 33.8 24 1022.4 8 1021.4 8 9.1 24 2.0 24 9.9 999.9 62.4* 39.4* 0.00I 999.9 000000 724050 13743 19601121 52.2 24 32.7 24 1020.0 8 1018.9 8 8.9 24 0.7 24 4.1 999.9 65.3* 43.3* 0.00I 999.9 000000 724050 13743 19601122 51.4 24 34.0 24 1021.9 8 1020.8 8 8.1 24 1.3 24 5.1 999.9 64.4* 40.3* 0.00I 999.9 000000 724050 13743 19601123 53.2 24 40.5 24 1020.7 8 1019.7 8 8.5 24 1.7 24 8.9 999.9 58.3* 50.4* 99.99 999.9 010000 724050 13743 19601124 41.2 24 27.7 24 1027.5 8 1026.5 8 8.3 24 1.2 24 6.0 999.9 50.4* 34.3* 0.00I 999.9 000000 724050 13743 19601125 47.5 24 33.6 24 1020.7 8 1019.7 8 6.5 24 0.4 24 2.9 999.9 55.4* 43.3* 0.00I 999.9 000000 724050 13743 19601126 48.3 24 39.2 24 1021.5 8 1020.5 8 5.0 24 1.0 24 5.1 999.9 61.3* 38.3* 0.00I 999.9 000000 724050 13743 19601127 52.8 24 44.8 24 1019.2 8 1018.1 8 5.6 24 0.9 24 7.0 999.9 61.3* 45.3* 0.00I 999.9 000000 724050 13743 19601128 52.4 24 46.4 24 1019.7 8 1018.7 8 3.0 24 0.0 24 999.9 999.9 64.4* 45.3* 0.00I 999.9 100000 724050 13743 19601129 58.7 24 52.0 24 1013.6 8 1012.6 8 6.1 24 5.4 24 15.9 999.9 69.3* 50.4* 99.99 999.9 010000 724050 13743 19601130 39.0 24 21.8 24 1012.4 8 1011.4 8 11.9 24 14.9 24 23.9 999.9 56.3* 34.3* 0.00I 999.9 000000 724050 13743 19601201 34.1 24 15.6 24 1021.7 8 1020.7 8 11.9 24 12.1 24 22.0 999.9 40.3* 30.4* 0.00I 999.9 000000 724050 13743 19601202 34.3 24 17.1 24 1032.6 8 1031.6 8 11.9 24 5.3 24 9.9 999.9 43.3* 29.3* 0.00I 999.9 000000 724050 13743 19601203 39.0 24 20.9 24 1031.8 8 1030.8 8 10.4 24 0.5 24 7.0 999.9 56.3* 31.3* 0.00I 999.9 000000 724050 13743 19601204 41.6 24 20.4 24 1029.1 8 1028.1 8 8.5 24 0.6 24 6.0 999.9 58.3* 30.4* 0.00I 999.9 000000 724050 13743 19601205 53.4 24 27.3 24 1027.3 8 1026.3 8 7.4 24 0.3 24 5.1 999.9 69.3* 44.4* 0.00I 999.9 000000 724050 13743 19601206 48.2 24 30.5 24 1025.8 8 1024.8 8 5.3 24 0.2 24 2.9 999.9 64.4* 36.3* 0.00I 999.9 000000 724050 13743 19601207 51.7 24 33.2 24 1017.5 8 1016.4 8 9.7 24 7.5 24 22.0 999.9 55.4* 45.3* 0.00I 999.9 000000 724050 13743 19601208 38.2 24 22.2 24 1019.4 8 1018.4 8 10.8 24 9.2 24 15.0 999.9 43.3* 35.4* 0.00I 999.9 000000 724050 13743 19601209 27.5 24 11.2 24 1028.6 8 1027.6 8 11.9 24 9.8 24 20.0 999.9 35.4* 19.4* 0.00I 999.9 000000 724050 13743 19601210 32.8 24 8.1 24 1023.6 8 1022.6 8 10.6 24 3.8 24 8.0 999.9 49.3* 23.4* 0.00I 999.9 000000 724050 13743 19601211 36.3 24 21.7 24 1021.5 8 1020.4 8 5.8 24 4.4 24 9.9 999.9 44.4* 27.3* 99.99 999.9 001000 724050 13743 19601212 24.4 24 17.8 24 1006.5 8 1005.5 8 5.1 24 14.9 24 22.0 999.9 28.4* 20.3* 99.99 999.9 101000 724050 13743 19601213 15.8 24 -0.1 24 1020.8 8 1019.8 8 11.0 24 18.7 24 23.9 999.9 21.4* 11.3* 0.00I 999.9 000000 724050 13743 19601214 23.4 24 7.1 24 1020.7 8 1019.7 8 10.4 24 2.8 24 8.0 999.9 33.4* 18.3* 0.00I 999.9 000000 724050 13743 19601215 26.7 24 18.1 24 1015.6 8 1014.6 8 4.1 24 0.5 24 4.1 999.9 35.4* 20.3* 0.00I 999.9 000000 724050 13743 19601216 34.8 24 25.4 24 1008.1 8 1007.0 8 6.5 24 5.7 24 20.0 999.9 41.4* 30.4* 99.99 999.9 011000 724050 13743 19601217 29.2 24 14.8 24 1017.1 8 1016.1 8 10.7 24 6.4 24 11.1 999.9 39.4* 20.3* 0.00I 999.9 000000 724050 13743 19601218 29.3 24 19.2 24 1027.3 8 1026.3 8 9.9 24 1.1 24 7.0 999.9 36.3* 21.4* 0.00I 999.9 000000 724050 13743 19601219 28.7 24 19.7 24 1025.9 8 1024.9 8 8.2 24 2.0 24 11.1 999.9 38.3* 22.5* 99.99 999.9 001000 724050 13743 19601220 28.1 24 17.1 24 1029.1 8 1028.1 8 8.8 24 2.0 24 7.0 999.9 34.3* 20.3* 0.00I 999.9 000000 724050 13743 19601221 33.1 24 25.8 24 1009.8 8 1008.8 8 6.7 24 6.4 24 22.0 999.9 36.3* 30.4* 99.99 999.9 111000 724050 13743 19601222 21.6 24 7.8 24 1018.9 8 1017.9 8 11.9 24 9.1 24 18.1 999.9 29.3* 17.4* 0.00I 999.9 000000 724050 13743 19601223 18.9 24 2.7 24 1028.1 8 1027.1 8 10.1 24 2.9 24 15.9 999.9 26.4* 13.5* 0.00I 999.9 000000 724050 13743 19601224 19.1 24 1.9 24 1035.4 8 1034.4 8 11.2 24 2.3 24 8.9 999.9 29.3* 13.5* 0.00I 999.9 000000 724050 13743 19601225 27.9 24 17.6 24 1030.5 8 1029.5 8 7.3 24 0.5 24 2.9 999.9 43.3* 20.3* 0.00I 999.9 000000 724050 13743 19601226 35.5 24 27.9 24 1020.6 8 1019.6 8 7.1 24 2.5 24 8.9 999.9 50.4* 27.3* 0.00I 999.9 000000 724050 13743 19601227 39.8 24 26.6 24 1022.0 8 1021.0 8 11.4 24 10.1 24 16.9 999.9 48.4* 33.4* 0.00I 999.9 000000 724050 13743 19601228 25.2 24 5.1 24 1037.0 8 1036.0 8 9.6 24 2.7 24 8.0 999.9 30.4* 17.4* 0.00I 999.9 000000 724050 13743 19601229 29.3 24 21.5 24 1027.2 8 1026.1 8 4.9 24 0.4 24 4.1 999.9 34.3* 25.3* 99.99 999.9 111000 724050 13743 19601230 36.7 24 31.5 24 1016.8 8 1015.7 8 4.8 24 1.8 24 12.0 999.9 41.4* 34.3* 99.99 999.9 110000 724050 13743 19601231 31.7 24 27.6 24 1020.1 8 1019.0 8 4.8 24 0.6 24 4.1 999.9 37.4* 26.4* 0.00I 999.9 100000 fluids-1.0.22/tests/gsod/1969/0000755000175000017500000000000014302004506015110 5ustar nileshnileshfluids-1.0.22/tests/gsod/1969/724050-13743.op0000644000175000017500000005654414302004506016706 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19690102 27.8 13 6.2 13 1022.8 4 1021.8 4 14.5 13 9.1 13 14.0 999.9 34.3* 20.3* 0.00I 999.9 000000 724050 13743 19690103 32.1 13 16.0 13 1016.2 4 1015.2 4 8.3 13 4.2 13 6.0 999.9 35.4* 27.3* 0.00I 999.9 000000 724050 13743 19690106 27.7 13 11.5 13 1017.0 4 1016.0 4 9.2 13 7.1 13 12.0 999.9 34.3* 19.4* 99.99 999.9 001000 724050 13743 19690107 32.0 13 16.2 13 1003.2 4 1002.4 4 12.4 13 18.6 13 26.0 999.9 34.3* 29.3* 99.99 999.9 001000 724050 13743 19690108 29.5 13 7.8 13 1013.5 4 1012.5 4 13.5 13 11.4 13 19.0 999.9 34.3* 22.5* 0.00I 999.9 000000 724050 13743 19690109 47.0 13 30.4 13 999.9 4 998.9 4 10.9 13 5.9 13 18.1 999.9 55.4* 36.3* 0.00I 999.9 000000 724050 13743 19690110 30.8 13 9.4 13 1013.4 4 1012.4 4 13.4 13 14.8 13 22.0 999.9 34.3* 25.3* 0.00I 999.9 000000 724050 13743 19690113 28.9 13 12.1 13 1025.8 4 1024.7 4 9.2 13 15.4 13 18.1 999.9 36.3* 21.4* 0.00I 999.9 000000 724050 13743 19690114 33.9 13 18.0 13 1025.8 4 1024.7 4 14.9 13 15.6 13 18.1 999.9 40.3* 26.4* 0.00I 999.9 000000 724050 13743 19690115 34.6 13 21.0 13 1028.6 4 1027.6 4 12.9 13 10.8 13 15.0 999.9 40.3* 27.3* 0.00I 999.9 000000 724050 13743 19690116 33.3 13 13.0 13 1031.9 4 1030.9 4 8.9 13 2.7 13 8.0 999.9 41.4* 23.4* 0.00I 999.9 000000 724050 13743 19690117 41.1 13 25.7 13 1030.4 4 1029.4 4 9.0 13 5.9 13 9.9 999.9 48.4* 33.4* 0.00I 999.9 000000 724050 13743 19690121 38.6 13 37.1 13 1016.5 4 1015.5 4 3.1 13 12.1 13 15.9 999.9 39.4* 37.4* 99.99 999.9 110000 724050 13743 19690122 41.8 13 30.8 10 1020.3 4 1019.3 4 7.7 13 8.2 13 13.0 999.9 47.3* 36.3* 0.00I 999.9 000000 724050 13743 19690123 44.3 13 9999.9 0 1018.5 4 1017.4 4 3.7 13 4.8 13 8.0 999.9 45.3* 43.3* 99.99 999.9 110000 724050 13743 19690124 46.1 13 9999.9 0 1014.5 4 1013.5 4 2.9 13 2.4 13 6.0 999.9 50.4* 43.3* 0.00I 999.9 100000 724050 13743 19690127 26.7 13 9999.9 0 1032.4 4 1031.4 4 14.9 13 4.9 13 8.0 999.9 33.4* 19.4* 0.00I 999.9 000000 724050 13743 19690128 26.8 13 9999.9 0 1037.4 4 1036.3 4 8.4 13 5.2 13 7.0 999.9 31.3* 20.3* 0.00I 999.9 000000 724050 13743 19690129 34.6 13 9999.9 0 1031.8 4 1030.8 4 3.7 13 0.8 13 4.1 999.9 37.4* 31.3* 99.99 999.9 110000 724050 13743 19690130 45.1 13 9999.9 0 1022.4 4 1021.4 4 2.0 13 3.2 13 9.9 999.9 58.3* 37.4* 0.00I 999.9 100000 724050 13743 19690131 49.7 13 9999.9 0 1022.4 4 1020.9 4 12.7 13 10.9 13 15.9 999.9 56.3* 47.3* 0.00I 999.9 000000 724050 13743 19690203 41.1 13 9999.9 0 1004.8 4 1003.8 4 6.3 13 9.0 13 29.9 999.9 44.4* 38.3* 99.99 999.9 110000 724050 13743 19690204 31.7 13 9.1 7 1014.9 4 1013.9 4 13.7 13 23.1 13 29.9 999.9 37.4* 26.4* 0.00I 999.9 000000 724050 13743 19690205 39.9 13 13.8 13 1012.6 4 1011.6 4 13.5 13 17.6 13 22.9 999.9 42.4* 36.3* 0.00I 999.9 000000 724050 13743 19690206 41.8 13 24.0 13 1014.6 4 1013.6 4 9.6 13 2.4 13 8.0 999.9 49.3* 31.3* 0.00I 999.9 000000 724050 13743 19690207 37.3 13 23.2 13 1015.7 4 1014.7 4 7.6 13 4.3 13 8.9 999.9 42.4* 33.4* 99.99 999.9 001000 724050 13743 19690210 31.1 13 9.8 13 1014.9 4 1013.9 4 14.7 13 20.3 13 26.0 999.9 38.3* 24.4* 0.00I 999.9 000000 724050 13743 19690211 39.4 13 16.5 13 1009.7 4 1008.7 4 11.5 13 3.5 13 8.9 999.9 47.3* 29.3* 0.00I 999.9 000000 724050 13743 19690212 39.9 13 22.1 13 1003.8 4 1002.8 4 13.1 13 10.4 13 22.0 999.9 44.4* 35.4* 0.00I 999.9 000000 724050 13743 19690213 30.9 13 14.9 13 1015.9 4 1014.9 4 14.0 13 18.5 13 29.9 999.9 33.4* 29.3* 0.00I 999.9 000000 724050 13743 19690214 27.4 13 7.8 13 1027.1 4 1026.1 4 14.5 13 16.9 13 20.0 999.9 32.4* 21.4* 0.00I 999.9 000000 724050 13743 19690217 36.3 13 15.0 13 1015.8 4 1014.8 4 11.6 13 7.4 13 8.0 999.9 41.4* 30.4* 0.00I 999.9 000000 724050 13743 19690218 37.1 13 20.0 13 1016.2 4 1015.1 4 10.6 13 10.3 13 15.0 999.9 41.4* 33.4* 0.00I 999.9 000000 724050 13743 19690219 40.2 13 19.8 13 1015.8 4 1014.7 4 11.6 13 19.4 13 22.9 999.9 43.3* 36.3* 0.00I 999.9 000000 724050 13743 19690220 34.2 13 31.3 13 1023.2 4 1021.8 4 2.9 13 10.3 13 12.0 999.9 36.3* 32.4* 99.99 999.9 111000 724050 13743 19690224 42.2 13 32.7 13 1014.6 4 1013.6 4 6.7 13 8.4 13 15.0 999.9 48.4* 35.4* 0.00I 999.9 000000 724050 13743 19690225 40.4 13 26.0 13 1012.6 4 1011.6 4 10.2 13 13.9 13 22.0 999.9 43.3* 36.3* 0.00I 999.9 000000 724050 13743 19690226 38.6 13 24.3 13 1009.4 4 1008.4 4 10.1 13 20.1 13 22.0 999.9 41.4* 36.3* 0.00I 999.9 000000 724050 13743 19690227 36.0 13 23.1 13 1016.7 4 1015.7 4 14.7 13 10.4 13 14.0 999.9 39.4* 30.4* 0.00I 999.9 000000 724050 13743 19690228 39.9 13 24.0 13 1020.8 4 1019.8 4 10.7 13 3.8 13 8.9 999.9 47.3* 32.4* 0.00I 999.9 000000 724050 13743 19690303 41.1 13 18.1 13 1011.4 4 1010.3 4 13.5 13 11.6 13 14.0 999.9 47.3* 33.4* 0.00I 999.9 000000 724050 13743 19690304 41.5 12 19.4 12 1011.9 4 1010.9 4 13.8 12 10.7 12 18.1 999.9 47.3* 34.3* 0.00I 999.9 000000 724050 13743 19690305 35.7 13 11.7 13 1019.8 4 1018.8 4 14.3 13 11.0 13 18.1 999.9 41.4* 28.4* 0.00I 999.9 000000 724050 13743 19690306 39.4 13 23.9 13 1011.0 4 1010.0 4 7.7 13 0.4 13 5.1 999.9 43.3* 33.4* 0.00I 999.9 000000 724050 13743 19690307 38.2 13 27.9 13 1000.2 4 999.2 4 7.7 13 20.9 13 28.0 999.9 41.4* 34.3* 99.99 999.9 111000 724050 13743 19690310 38.0 13 21.0 13 1003.7 4 1002.6 4 13.8 13 18.8 13 25.1 999.9 40.3* 34.3* 0.00I 999.9 000000 724050 13743 19690311 30.1 13 13.2 13 1006.2 4 1004.7 4 14.1 13 20.6 13 29.9 999.9 32.4* 27.3* 0.00I 999.9 000000 724050 13743 19690312 33.0 13 11.8 13 1011.0 4 1010.0 4 14.9 13 17.4 13 25.1 999.9 40.3* 22.5* 0.00I 999.9 000000 724050 13743 19690313 39.7 13 17.0 13 1012.6 4 1011.5 4 14.2 13 13.3 13 18.1 999.9 46.4* 30.4* 0.00I 999.9 000000 724050 13743 19690314 42.1 13 17.3 13 1018.7 4 1017.7 4 11.2 13 14.9 13 23.9 999.9 47.3* 34.3* 0.00I 999.9 000000 724050 13743 19690317 53.1 13 20.3 13 1022.8 4 1021.8 4 10.2 13 2.5 13 5.1 999.9 62.4* 34.3* 0.00I 999.9 000000 724050 13743 19690318 57.5 13 29.3 13 1016.5 4 1015.4 4 6.1 13 1.2 13 5.1 999.9 66.4* 43.3* 0.00I 999.9 000000 724050 13743 19690319 58.9 13 30.9 13 1010.9 4 1009.8 4 6.7 13 3.1 13 8.0 999.9 68.4* 46.4* 0.00I 999.9 000000 724050 13743 19690320 47.5 13 37.9 13 1018.6 4 1017.5 4 5.0 13 5.7 13 9.9 999.9 56.3* 38.3* 0.00I 999.9 100000 724050 13743 19690321 60.7 13 35.6 13 1011.4 4 1010.4 4 12.9 13 8.4 13 12.0 999.9 66.4* 54.3* 0.00I 999.9 000000 724050 13743 19690324 49.2 13 41.9 13 1010.6 4 1009.6 4 6.1 13 8.1 13 15.0 999.9 56.3* 43.3* 99.99 999.9 110000 724050 13743 19690325 56.7 13 47.4 13 994.7 4 993.7 4 10.7 13 9.1 13 15.0 999.9 59.4* 55.4* 99.99 999.9 010000 724050 13743 19690326 47.2 13 27.7 13 1004.3 4 1003.3 4 11.3 13 8.8 13 20.0 999.9 49.3* 45.3* 0.00I 999.9 000000 724050 13743 19690327 42.8 13 22.1 13 1014.1 4 1013.1 4 14.9 13 10.8 13 20.0 999.9 48.4* 36.3* 0.00I 999.9 000000 724050 13743 19690328 47.2 13 21.6 13 1023.9 4 1022.9 4 14.0 13 5.8 13 9.9 999.9 56.3* 34.3* 0.00I 999.9 000000 724050 13743 19690401 48.6 13 27.8 13 1029.4 4 1028.3 4 11.5 13 7.4 13 15.0 999.9 60.3* 31.3* 0.00I 999.9 000000 724050 13743 19690402 65.3 13 47.7 13 1011.9 4 1010.8 4 9.5 13 8.4 13 14.0 999.9 73.4* 57.4* 99.99 999.9 010000 724050 13743 19690403 50.6 13 33.9 13 1024.9 4 1023.8 4 7.7 13 3.2 13 8.0 999.9 58.3* 43.3* 0.00I 999.9 000000 724050 13743 19690404 51.1 13 42.3 13 1024.6 4 1023.6 4 5.0 13 4.4 13 8.0 999.9 56.3* 46.4* 99.99 999.9 110000 724050 13743 19690407 62.0 13 31.1 13 1024.4 4 1023.4 4 14.0 13 1.8 13 5.1 999.9 71.2* 42.4* 0.00I 999.9 000000 724050 13743 19690408 68.9 13 34.8 13 1022.6 4 1021.6 4 9.5 13 2.7 13 8.0 999.9 78.3* 48.4* 0.00I 999.9 000000 724050 13743 19690409 69.0 13 42.6 13 1021.5 4 1020.5 4 9.7 13 5.3 13 12.0 999.9 81.3* 50.4* 0.00I 999.9 000000 724050 13743 19690410 67.2 13 53.7 13 1011.7 4 1010.7 4 12.1 13 15.7 13 20.0 999.9 72.3* 62.4* 99.99 999.9 010000 724050 13743 19690411 59.7 13 38.0 13 1018.0 4 1017.0 4 14.3 13 10.2 13 18.1 999.9 63.3* 55.4* 0.00I 999.9 000000 724050 13743 19690414 57.9 13 37.6 13 1026.3 4 1025.3 4 12.5 13 5.5 13 9.9 999.9 65.3* 45.3* 0.00I 999.9 000000 724050 13743 19690415 60.4 13 51.2 13 1024.5 4 1023.5 4 8.5 13 1.5 13 2.9 999.9 66.4* 53.4* 99.99 999.9 010000 724050 13743 19690416 64.3 13 58.7 13 1018.0 4 1016.9 4 8.2 13 4.7 13 8.0 999.9 67.3* 61.3* 99.99 999.9 110000 724050 13743 19690417 68.8 13 57.6 13 1014.9 4 1013.9 4 5.9 13 3.2 13 7.0 999.9 80.2* 60.3* 99.99 999.9 110000 724050 13743 19690418 67.5 13 60.2 13 1005.3 4 1004.3 4 6.3 13 8.1 13 13.0 999.9 72.3* 60.3* 99.99 999.9 110000 724050 13743 19690421 58.2 13 36.5 13 1018.8 4 1017.8 4 13.8 13 8.1 13 12.0 999.9 64.4* 45.3* 0.00I 999.9 000000 724050 13743 19690422 53.9 13 43.9 13 1004.2 4 1003.2 4 11.1 13 6.9 13 15.9 999.9 59.4* 48.4* 99.99 999.9 010000 724050 13743 19690423 55.0 13 36.7 13 1002.9 4 1001.8 4 13.4 13 12.0 13 15.9 999.9 58.3* 50.4* 99.99 999.9 010000 724050 13743 19690424 52.9 13 36.4 13 1009.8 4 1008.8 4 14.9 13 17.5 13 22.9 999.9 57.4* 46.4* 0.00I 999.9 000000 724050 13743 19690425 63.2 13 29.7 13 1013.6 4 1012.6 4 14.7 13 8.6 13 18.1 999.9 72.3* 45.3* 0.00I 999.9 000000 724050 13743 19690428 74.7 13 52.9 13 1010.5 4 1009.5 4 14.9 13 13.4 13 15.0 999.9 82.4* 66.4* 0.00I 999.9 000000 724050 13743 19690429 66.6 13 50.1 13 1012.0 4 1011.0 4 9.5 13 3.4 13 8.0 999.9 71.2* 61.3* 99.99 999.9 010000 724050 13743 19690430 56.1 12 39.8 12 1018.5 4 1017.4 4 11.3 12 9.7 12 15.0 999.9 60.3* 52.3* 0.00I 999.9 000000 724050 13743 19690501 61.1 13 37.4 13 1023.3 4 1022.3 4 9.8 13 3.9 13 8.0 999.9 68.4* 47.3* 0.00I 999.9 000000 724050 13743 19690502 63.2 13 42.3 13 1024.2 4 1023.2 4 7.3 13 5.3 13 8.0 999.9 72.3* 49.3* 0.00I 999.9 000000 724050 13743 19690505 73.2 13 45.7 13 1015.3 4 1014.3 4 10.7 13 6.0 13 9.9 999.9 81.3* 61.3* 0.00I 999.9 000000 724050 13743 19690506 68.9 13 33.3 13 1017.0 4 1015.9 4 10.9 13 3.6 13 8.0 999.9 80.2* 58.3* 0.00I 999.9 000000 724050 13743 19690507 71.6 13 44.3 13 1019.5 4 1018.5 4 9.9 13 6.6 13 12.0 999.9 80.2* 57.4* 0.00I 999.9 000000 724050 13743 19690508 72.9 13 61.2 13 1013.1 4 1012.1 4 7.4 13 8.4 13 14.0 999.9 78.3* 65.3* 99.99 999.9 010000 724050 13743 19690509 68.0 13 56.0 13 1000.0 4 999.0 4 9.5 13 12.2 13 23.9 999.9 73.4* 64.4* 99.99 999.9 010000 724050 13743 19690512 59.8 13 34.6 13 1016.7 4 1015.6 4 14.0 13 9.4 13 15.0 999.9 66.4* 47.3* 0.00I 999.9 000000 724050 13743 19690513 65.2 13 39.8 13 1021.5 4 1020.5 4 12.2 13 3.6 13 8.0 999.9 72.3* 52.3* 0.00I 999.9 000000 724050 13743 19690514 66.7 13 48.3 13 1019.2 4 1018.1 4 9.3 13 3.5 13 9.9 999.9 73.4* 60.3* 0.00I 999.9 000000 724050 13743 19690515 66.4 13 48.1 13 1024.2 4 1023.2 4 6.7 13 7.1 13 9.9 999.9 74.3* 55.4* 0.00I 999.9 100000 724050 13743 19690516 69.1 13 50.7 13 1027.3 4 1026.3 4 8.3 13 7.8 13 13.0 999.9 80.2* 55.4* 0.00I 999.9 000000 724050 13743 19690519 70.0 13 64.4 13 1019.2 4 1018.2 4 5.7 13 10.0 13 13.0 999.9 74.3* 66.4* 99.99 999.9 110000 724050 13743 19690520 75.9 13 63.8 13 1014.0 4 1013.0 4 11.2 13 4.9 13 9.9 999.9 83.3* 68.4* 0.00I 999.9 000000 724050 13743 19690521 71.2 13 50.2 13 1022.0 4 1020.9 4 8.8 13 7.4 13 9.9 999.9 75.4* 66.4* 0.00I 999.9 000000 724050 13743 19690522 69.2 13 50.0 13 1022.3 4 1021.3 4 7.6 13 4.2 13 8.9 999.9 76.3* 58.3* 0.00I 999.9 000000 724050 13743 19690523 68.6 13 51.8 13 1021.1 4 1020.1 4 9.6 13 2.8 13 6.0 999.9 74.3* 60.3* 0.00I 999.9 000000 724050 13743 19690526 66.5 13 42.1 13 1019.9 4 1018.8 4 12.5 13 7.1 13 11.1 999.9 72.3* 61.3* 0.00I 999.9 000000 724050 13743 19690527 66.6 13 34.7 13 1025.7 4 1024.6 4 11.2 13 5.6 13 8.0 999.9 73.4* 54.3* 0.00I 999.9 000000 724050 13743 19690528 72.5 13 53.1 13 1020.6 4 1019.6 4 8.6 13 6.0 13 8.0 999.9 81.3* 60.3* 0.00I 999.9 000000 724050 13743 19690529 85.9 13 56.4 13 1010.6 4 1009.6 4 8.4 13 12.0 13 16.9 999.9 96.3* 69.3* 0.00I 999.9 000000 724050 13743 19690602 82.6 9 65.6 9 9999.9 0 9999.9 0 10.6 9 12.7 9 15.0 999.9 86.4* 75.4* 0.00I 999.9 000000 724050 13743 19690603 72.1 9 47.7 9 9999.9 0 9999.9 0 14.3 9 11.4 9 18.1 999.9 75.4* 66.4* 0.00I 999.9 000000 724050 13743 19690604 72.9 9 46.0 9 9999.9 0 9999.9 0 12.6 9 4.5 9 7.0 999.9 77.4* 66.4* 0.00I 999.9 000000 724050 13743 19690605 73.4 9 58.2 9 9999.9 0 9999.9 0 7.8 9 7.7 9 9.9 999.9 79.3* 65.3* 0.00I 999.9 000000 724050 13743 19690606 78.2 9 60.4 9 9999.9 0 9999.9 0 7.5 9 6.3 9 11.1 999.9 86.4* 68.4* 0.00I 999.9 000000 724050 13743 19690609 67.6 9 54.6 9 9999.9 0 9999.9 0 6.6 9 10.1 9 14.0 999.9 70.3* 65.3* 0.00I 999.9 000000 724050 13743 19690610 68.7 9 56.4 9 9999.9 0 9999.9 0 6.8 9 3.4 9 6.0 999.9 73.4* 63.3* 99.99 999.9 010000 724050 13743 19690611 72.1 9 64.1 9 9999.9 0 9999.9 0 4.5 9 6.7 9 8.0 999.9 76.3* 68.4* 0.00I 999.9 000000 724050 13743 19690612 82.4 9 69.9 9 9999.9 0 9999.9 0 7.3 9 9.1 9 13.0 999.9 88.3* 73.4* 0.00I 999.9 000000 724050 13743 19690613 83.3 9 68.3 9 9999.9 0 9999.9 0 10.1 9 8.8 9 12.0 999.9 88.3* 76.3* 0.00I 999.9 000000 724050 13743 19690616 69.1 9 53.2 9 9999.9 0 9999.9 0 12.9 9 14.5 9 20.0 999.9 73.4* 65.3* 0.00I 999.9 000000 724050 13743 19690617 73.8 9 48.2 9 9999.9 0 9999.9 0 8.9 9 4.1 9 6.0 999.9 79.3* 64.4* 0.00I 999.9 000000 724050 13743 19690618 69.5 9 62.1 9 9999.9 0 9999.9 0 4.8 9 3.1 9 6.0 999.9 72.3* 67.3* 99.99 999.9 110000 724050 13743 19690619 78.1 9 67.4 9 9999.9 0 9999.9 0 5.5 9 4.8 9 8.0 999.9 86.4* 70.3* 0.00I 999.9 100000 724050 13743 19690620 84.6 9 62.5 9 9999.9 0 9999.9 0 8.9 9 5.9 9 8.0 999.9 89.2* 75.4* 0.00I 999.9 000000 724050 13743 19690623 82.4 9 71.0 9 9999.9 0 9999.9 0 4.9 9 11.8 9 15.0 999.9 89.2* 75.4* 0.00I 999.9 100000 724050 13743 19690624 87.7 9 67.6 9 9999.9 0 9999.9 0 11.7 9 6.1 9 8.9 999.9 93.4* 78.3* 0.00I 999.9 000000 724050 13743 19690625 85.0 9 69.2 9 9999.9 0 9999.9 0 11.9 9 8.6 9 15.9 999.9 89.2* 78.3* 0.00I 999.9 000000 724050 13743 19690626 79.0 9 67.3 9 9999.9 0 9999.9 0 3.9 9 5.2 9 8.9 999.9 84.4* 72.3* 0.00I 999.9 100000 724050 13743 19690627 80.3 9 72.6 9 9999.9 0 9999.9 0 2.2 9 6.6 9 8.0 999.9 91.2* 72.3* 0.00I 999.9 100000 724050 13743 19690630 87.9 9 65.3 9 9999.9 0 9999.9 0 11.6 9 6.9 9 9.9 999.9 94.3* 80.2* 0.00I 999.9 000000 724050 13743 19690701 86.5 9 70.2 9 9999.9 0 9999.9 0 7.3 9 10.7 9 15.0 999.9 89.2* 81.3* 0.00I 999.9 000000 724050 13743 19690702 81.8 9 60.4 9 9999.9 0 9999.9 0 6.7 9 3.8 9 7.0 999.9 88.3* 71.2* 0.00I 999.9 000000 724050 13743 19690703 84.5 9 64.8 9 9999.9 0 9999.9 0 6.4 9 6.3 9 13.0 999.9 88.3* 78.3* 0.00I 999.9 000000 724050 13743 19690707 78.2 9 69.4 9 9999.9 0 9999.9 0 3.4 9 6.1 9 15.9 999.9 81.3* 75.4* 99.99 999.9 010000 724050 13743 19690708 67.9 9 62.7 9 9999.9 0 9999.9 0 2.8 9 7.6 9 9.9 999.9 72.3* 65.3* 99.99 999.9 110000 724050 13743 19690709 74.3 9 58.2 9 9999.9 0 9999.9 0 7.5 9 4.7 9 8.0 999.9 78.3* 69.3* 0.00I 999.9 000000 724050 13743 19690710 72.6 9 62.9 9 9999.9 0 9999.9 0 9.6 9 7.6 9 8.9 999.9 74.3* 71.2* 0.00I 999.9 000000 724050 13743 19690711 81.4 9 68.5 9 9999.9 0 9999.9 0 4.0 9 4.4 9 7.0 999.9 87.3* 72.3* 0.00I 999.9 000000 724050 13743 19690714 82.3 9 59.1 9 9999.9 0 9999.9 0 13.4 9 8.6 9 9.9 999.9 89.2* 73.4* 0.00I 999.9 000000 724050 13743 19690715 87.0 9 59.3 9 9999.9 0 9999.9 0 12.4 9 5.6 9 6.0 999.9 93.4* 78.3* 0.00I 999.9 000000 724050 13743 19690716 86.8 9 65.1 9 9999.9 0 9999.9 0 8.2 9 6.9 9 9.9 999.9 92.3* 76.3* 0.00I 999.9 000000 724050 13743 19690717 88.1 9 70.2 9 9999.9 0 9999.9 0 5.5 9 5.2 9 9.9 999.9 96.3* 76.3* 0.00I 999.9 000000 724050 13743 19690718 92.3 9 72.0 9 9999.9 0 9999.9 0 4.2 9 7.3 9 9.9 999.9 98.2* 84.4* 0.00I 999.9 000000 724050 13743 19690722 82.9 9 72.6 9 9999.9 0 9999.9 0 2.4 9 4.3 9 8.0 999.9 88.3* 75.4* 0.00I 999.9 100000 724050 13743 19690723 76.8 9 71.1 9 9999.9 0 9999.9 0 6.7 9 6.8 9 15.0 999.9 79.3* 74.3* 99.99 999.9 010000 724050 13743 19690724 72.1 9 63.4 9 9999.9 0 9999.9 0 6.1 9 3.9 9 8.0 999.9 76.3* 67.3* 0.00I 999.9 000000 724050 13743 19690725 76.1 9 67.9 9 9999.9 0 9999.9 0 4.5 9 6.5 9 9.9 999.9 81.3* 70.3* 0.00I 999.9 000000 724050 13743 19690728 77.2 9 73.8 9 9999.9 0 9999.9 0 3.8 9 7.0 9 11.1 999.9 80.2* 73.4* 99.99 999.9 110010 724050 13743 19690729 78.2 9 70.6 9 9999.9 0 9999.9 0 4.6 9 2.0 9 4.1 999.9 81.3* 74.3* 0.00I 999.9 000000 724050 13743 19690730 80.2 9 64.9 9 9999.9 0 9999.9 0 9.4 9 7.4 9 8.9 999.9 86.4* 73.4* 0.00I 999.9 000000 724050 13743 19690731 84.5 9 63.5 9 9999.9 0 9999.9 0 8.1 9 4.2 9 6.0 999.9 90.3* 74.3* 0.00I 999.9 000000 724050 13743 19690801 81.0 9 70.8 9 9999.9 0 9999.9 0 7.6 9 7.1 9 9.9 999.9 85.3* 75.4* 0.00I 999.9 000000 724050 13743 19690804 76.3 9 68.9 9 9999.9 0 9999.9 0 4.9 9 3.3 9 6.0 999.9 80.2* 71.2* 0.00I 999.9 000000 724050 13743 19690805 72.2 9 66.2 9 9999.9 0 9999.9 0 4.8 9 2.0 9 4.1 999.9 76.3* 69.3* 99.99 999.9 010000 724050 13743 19690806 79.9 9 64.1 9 9999.9 0 9999.9 0 12.5 9 7.4 9 8.9 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19690807 84.5 9 64.9 9 9999.9 0 9999.9 0 4.6 9 2.4 9 8.0 999.9 89.2* 73.4* 0.00I 999.9 000000 724050 13743 19690808 82.2 9 69.3 9 9999.9 0 9999.9 0 3.6 9 9.1 9 12.0 999.9 89.2* 73.4* 0.00I 999.9 000000 724050 13743 19690811 77.6 9 58.6 9 9999.9 0 9999.9 0 12.6 9 5.4 9 8.0 999.9 84.4* 69.3* 0.00I 999.9 000000 724050 13743 19690812 80.4 9 61.9 9 9999.9 0 9999.9 0 7.6 9 3.8 9 7.0 999.9 85.3* 70.3* 0.00I 999.9 000000 724050 13743 19690813 79.9 9 60.3 9 9999.9 0 9999.9 0 8.1 9 5.5 9 9.9 999.9 84.4* 70.3* 0.00I 999.9 000000 724050 13743 19690814 78.2 9 69.9 9 9999.9 0 9999.9 0 5.7 9 4.6 9 8.0 999.9 82.4* 73.4* 99.99 999.9 010000 724050 13743 19690815 80.0 9 72.7 9 9999.9 0 9999.9 0 5.3 9 5.2 9 7.0 999.9 82.4* 76.3* 0.00I 999.9 000000 724050 13743 19690816 82.3 9 71.4 9 9999.9 0 9999.9 0 8.9 9 7.7 9 9.9 999.9 87.3* 76.3* 0.00I 999.9 000000 724050 13743 19690817 85.1 9 71.7 9 9999.9 0 9999.9 0 9.9 9 3.3 9 6.0 999.9 90.3* 77.4* 0.00I 999.9 000000 724050 13743 19690818 82.3 9 72.1 9 9999.9 0 9999.9 0 9.9 9 3.9 9 8.0 999.9 87.3* 76.3* 99.99 999.9 010000 724050 13743 19690819 81.3 9 71.8 9 9999.9 0 9999.9 0 9.9 9 6.5 9 8.0 999.9 84.4* 75.4* 0.00I 999.9 000000 724050 13743 19690820 73.8 9 62.6 9 9999.9 0 9999.9 0 8.5 9 12.1 9 15.0 999.9 80.2* 68.4* 0.00I 999.9 100000 724050 13743 19690821 71.3 9 49.1 9 9999.9 0 9999.9 0 14.9 9 6.4 9 8.9 999.9 77.4* 62.4* 0.00I 999.9 000000 724050 13743 19690822 72.7 9 49.4 9 9999.9 0 9999.9 0 13.9 9 3.3 9 6.0 999.9 79.3* 64.4* 0.00I 999.9 000000 724050 13743 19690825 84.0 9 66.0 9 9999.9 0 9999.9 0 6.2 9 5.4 9 9.9 999.9 92.3* 73.4* 0.00I 999.9 000000 724050 13743 19690826 82.1 9 66.6 9 9999.9 0 9999.9 0 5.7 9 12.2 9 16.9 999.9 86.4* 75.4* 0.00I 999.9 000000 724050 13743 19690827 70.7 9 48.0 9 9999.9 0 9999.9 0 14.0 9 6.2 9 9.9 999.9 80.2* 62.4* 0.00I 999.9 000000 724050 13743 19690828 75.1 9 56.8 9 9999.9 0 9999.9 0 8.8 9 3.0 9 5.1 999.9 80.2* 64.4* 0.00I 999.9 000000 724050 13743 19690829 76.3 9 59.2 9 9999.9 0 9999.9 0 10.5 9 5.2 9 7.0 999.9 83.3* 67.3* 0.00I 999.9 000000 724050 13743 19690902 81.5 9 70.4 9 9999.9 0 9999.9 0 9.3 9 5.4 9 9.9 999.9 85.3* 75.4* 0.00I 999.9 000000 724050 13743 19690903 77.0 9 71.3 9 9999.9 0 9999.9 0 6.0 9 4.3 9 7.0 999.9 80.2* 73.4* 99.99 999.9 010000 724050 13743 19690904 81.3 9 69.7 9 9999.9 0 9999.9 0 5.5 9 1.6 9 6.0 999.9 87.3* 73.4* 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/2020/0000755000175000017500000000000014302004506015063 5ustar nileshnileshfluids-1.0.22/tests/gsod/2020/724050-13743.op0000644000175000017500000014350514302004506016653 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20200101 45.9 24 25.8 24 1009.4 24 1007.1 24 10.0 24 8.7 24 14.0 20.0 54.0 41.0 0.00G 999.9 000000 724050 13743 20200102 40.6 24 29.7 24 1014.6 24 1012.3 24 10.0 24 3.6 24 8.0 999.9 52.0 32.0 0.00G 999.9 000000 724050 13743 20200103 50.1 24 43.3 24 1010.9 21 1008.5 24 9.9 24 6.3 24 9.9 999.9 54.0 32.0 0.18G 999.9 010000 724050 13743 20200104 53.2 24 52.4 24 1005.5 19 1003.6 24 6.7 24 3.4 24 14.0 21.0 59.0 46.0 0.09G 999.9 110000 724050 13743 20200105 43.3 24 28.9 24 1013.2 24 1010.9 24 10.0 24 12.7 24 19.0 28.9 59.0 37.9 0.29G 999.9 010000 724050 13743 20200106 42.8 24 26.2 24 1017.1 24 1014.7 24 10.0 24 6.9 24 15.0 24.1 55.9 35.1 0.00G 999.9 000000 724050 13743 20200107 39.4 24 25.7 24 1018.4 21 1015.2 24 8.7 24 4.4 24 15.0 999.9 55.9 33.1 0.00G 999.9 011000 724050 13743 20200108 37.4 24 26.3 24 1018.6 24 1016.3 24 10.0 24 9.5 24 20.0 28.9 46.9 30.0 0.32G 999.9 000000 724050 13743 20200109 34.0 24 16.3 24 1037.2 24 1034.9 24 10.0 24 7.5 24 15.0 999.9 46.9 28.9 0.00G 999.9 000000 724050 13743 20200110 41.3 24 31.5 24 1035.9 24 1033.5 24 10.0 24 7.4 24 11.1 999.9 54.0 28.9 0.00G 999.9 000000 724050 13743 20200111 57.5 24 50.2 24 1025.2 24 1022.9 24 10.0 24 10.5 24 22.0 28.9 72.0 35.1 0.00G 999.9 000000 724050 13743 20200112 65.6 24 53.8 24 1018.6 23 1015.6 24 9.7 24 11.8 24 28.0 35.9 72.0 46.0 0.38G 999.9 010000 724050 13743 20200113 49.5 24 39.9 24 1028.0 24 1025.6 24 10.0 24 5.1 24 8.9 999.9 70.0 44.1 0.00I 999.9 000000 724050 13743 20200114 46.7 24 43.9 24 1025.8 21 1023.2 24 7.6 24 2.9 24 7.0 999.9 53.1 44.1 0.00G 999.9 010000 724050 13743 20200115 49.3 24 45.2 24 1021.8 20 1019.7 24 6.5 24 3.5 24 9.9 999.9 57.9 44.1 0.04G 999.9 010000 724050 13743 20200116 50.9 24 36.4 24 1018.0 24 1015.6 24 10.0 24 11.8 24 21.0 31.1 57.9 43.0 0.00G 999.9 000000 724050 13743 20200117 36.2 24 16.1 24 1035.6 24 1033.0 24 10.0 24 14.5 24 24.1 33.0 57.0 30.9 0.00G 999.9 001000 724050 13743 20200118 31.1 24 18.6 24 1034.0 21 1031.0 24 9.1 24 7.9 24 22.0 27.0 35.1* 26.6* 0.00G 999.9 011000 724050 13743 20200119 40.9 24 31.7 24 1012.1 24 1009.3 24 10.0 24 12.0 24 21.0 29.9 46.0 27.0 0.25G 999.9 000000 724050 13743 20200120 30.0 24 11.3 24 1025.4 24 1023.1 24 10.0 24 13.7 24 18.1 28.0 46.0 24.1 0.00G 999.9 000000 724050 13743 20200121 29.6 24 11.4 24 1032.1 24 1029.8 24 10.0 24 10.1 24 15.0 999.9 37.9 23.0 0.00G 999.9 000000 724050 13743 20200122 30.8 24 15.8 24 1032.4 24 1030.1 24 10.0 24 5.4 24 9.9 999.9 39.9 23.0 0.00G 999.9 000000 724050 13743 20200123 34.7 24 23.3 24 1029.9 24 1027.6 24 10.0 24 1.0 24 7.0 999.9 44.1 24.1 0.00G 999.9 000000 724050 13743 20200124 40.9 24 31.6 24 1025.7 22 1023.6 24 9.9 24 4.6 24 9.9 999.9 51.1 27.0 0.00G 999.9 010000 724050 13743 20200125 48.9 24 43.9 24 1013.7 22 1011.2 24 8.9 24 8.4 24 15.0 22.0 52.0 34.0 1.20G 999.9 010000 724050 13743 20200126 43.9 24 31.9 24 1012.6 24 1010.3 24 10.0 24 5.9 24 12.0 21.0 52.0 36.0 0.03G 999.9 000000 724050 13743 20200127 42.6 24 28.9 24 1010.2 24 1007.9 24 10.0 24 6.7 24 14.0 20.0 50.0 35.1 0.00G 999.9 000000 724050 13743 20200128 43.5 24 28.7 24 1012.6 24 1010.2 24 10.0 24 11.4 24 19.0 22.0 50.0 35.1 0.00G 999.9 000000 724050 13743 20200129 42.4 24 26.3 24 1018.6 24 1016.3 24 10.0 24 9.1 24 15.0 18.1 48.9 39.9 0.00G 999.9 000000 724050 13743 20200130 36.4 24 21.4 24 1024.0 24 1021.7 24 10.0 24 5.5 24 8.9 999.9 46.9 30.9 0.00G 999.9 000000 724050 13743 20200131 38.8 24 27.6 24 1026.0 24 1023.7 24 10.0 24 3.4 24 6.0 999.9 46.9 30.9 0.00G 999.9 010000 724050 13743 20200201 41.2 24 33.7 24 1016.4 24 1014.1 24 9.6 24 2.4 24 12.0 999.9 51.1 30.9 0.01G 999.9 010000 724050 13743 20200202 43.2 24 35.5 24 1004.8 23 1003.1 24 8.3 24 7.1 24 14.0 17.1 55.0 30.9 0.06G 999.9 110000 724050 13743 20200203 53.1 24 35.1 24 1007.9 24 1005.5 24 10.0 24 5.5 24 8.0 999.9 63.0 35.1 0.01G 999.9 000000 724050 13743 20200204 56.1 24 43.6 24 1010.3 24 1008.0 24 10.0 24 6.1 24 8.9 999.9 64.9 42.1 0.01G 999.9 010000 724050 13743 20200205 49.8 24 43.2 24 1012.6 22 1010.7 24 9.8 24 8.1 24 17.1 999.9 64.9 39.9 0.02G 999.9 010000 724050 13743 20200206 41.0 24 39.1 24 1005.6 14 1004.3 24 6.6 24 5.5 24 11.1 999.9 57.0 39.0 0.13G 999.9 010000 724050 13743 20200207 49.6 24 42.3 24 994.3 18 989.5 24 8.8 24 11.7 24 25.1 35.9 59.0 39.0 0.92G 999.9 010010 724050 13743 20200208 38.5 24 20.3 24 1019.4 24 1017.1 24 10.0 24 9.4 24 21.0 24.1 59.0 30.9 0.28G 999.9 000000 724050 13743 20200209 40.4 24 26.1 24 1030.1 24 1027.7 24 10.0 24 4.3 24 9.9 999.9 50.0 30.9 0.00G 999.9 000000 724050 13743 20200210 45.2 24 35.9 24 1024.5 24 1022.1 24 9.3 24 10.4 24 18.1 26.0 50.0 30.9 0.00G 999.9 010000 724050 13743 20200211 51.9 24 49.9 24 1016.2 12 1013.0 24 5.9 24 6.0 24 15.9 18.1 57.9 43.0 0.82G 999.9 010000 724050 13743 20200212 47.4 24 32.7 24 1020.3 24 1018.0 24 10.0 24 8.1 24 14.0 19.0 57.9 42.1 0.11G 999.9 010000 724050 13743 20200213 47.2 24 43.8 24 1010.7 17 1007.2 24 8.0 24 9.5 24 21.0 28.9 57.0 41.0 0.18G 999.9 010000 724050 13743 20200214 40.5 24 23.0 24 1022.7 24 1020.4 24 10.0 24 12.5 24 19.0 28.0 57.0 30.9 0.21G 999.9 000000 724050 13743 20200215 28.7 24 10.6 24 1035.8 24 1033.5 24 10.0 24 9.0 24 15.0 20.0 44.1 21.9 0.00G 999.9 000000 724050 13743 20200216 38.0 24 24.0 24 1024.4 24 1022.1 24 10.0 24 7.2 24 11.1 999.9 52.0 21.9 0.00G 999.9 000000 724050 13743 20200217 45.5 24 30.7 24 1022.5 24 1020.2 24 10.0 24 4.9 24 11.1 999.9 55.9 32.0 0.00G 999.9 000000 724050 13743 20200218 47.5 24 35.9 24 1022.7 23 1020.7 24 9.7 24 4.4 24 13.0 20.0 59.0 37.9 0.00G 999.9 000000 724050 13743 20200219 50.1 24 30.7 24 1023.2 24 1020.8 24 10.0 24 11.0 24 18.1 24.1 59.0 41.0 0.01G 999.9 010000 724050 13743 20200220 39.6 24 16.9 24 1030.8 24 1028.5 24 10.0 24 6.1 24 12.0 999.9 55.9 33.1 0.00I 999.9 000000 724050 13743 20200221 32.8 24 11.4 24 1032.6 24 1030.3 24 10.0 24 12.0 24 18.1 19.0 42.1 24.1 0.00G 999.9 001000 724050 13743 20200222 37.3 24 12.1 24 1029.1 24 1026.8 24 10.0 24 6.5 24 11.1 999.9 55.0 24.1 0.00G 999.9 000000 724050 13743 20200223 43.3 24 21.1 24 1023.9 24 1021.6 24 10.0 24 4.2 24 8.9 999.9 59.0 26.1 0.00G 999.9 000000 724050 13743 20200224 46.1 24 29.0 24 1017.7 24 1015.3 24 10.0 24 3.9 24 12.0 999.9 60.1 30.0 0.00G 999.9 000000 724050 13743 20200225 49.5 24 45.2 24 1011.8 19 1009.2 24 8.1 24 6.1 24 9.9 999.9 60.1 36.0 0.03G 999.9 010000 724050 13743 20200226 50.9 24 48.9 24 1011.2 14 1008.8 24 5.7 24 4.8 24 9.9 999.9 55.0 46.0 0.20G 999.9 010000 724050 13743 20200227 43.3 24 28.9 24 1007.2 22 1003.9 24 8.4 24 14.0 24 25.1 36.9 54.0 37.0 0.22G 999.9 010000 724050 13743 20200228 37.6 24 17.9 24 1014.0 24 1011.7 24 10.0 24 9.5 24 15.0 26.0 48.0 30.0 0.05G 999.9 000000 724050 13743 20200229 36.3 24 14.4 24 1015.1 24 1012.9 24 10.0 24 12.6 24 22.9 31.1 48.0 30.0 0.00G 999.9 000000 724050 13743 20200301 37.9 24 14.2 24 1023.0 24 1020.6 24 10.0 24 7.0 24 14.0 26.0 52.0 26.1 0.00G 999.9 000000 724050 13743 20200302 48.9 24 27.5 24 1017.0 24 1014.7 24 10.0 24 9.6 24 15.9 28.0 66.9 26.1 0.00G 999.9 010000 724050 13743 20200303 53.7 24 45.7 24 1007.1 22 1004.7 24 9.9 24 7.5 24 14.0 999.9 66.9 37.9 0.09G 999.9 010000 724050 13743 20200304 56.4 24 32.3 24 1009.0 24 1006.7 24 10.0 24 10.1 24 35.9 47.0 64.9 45.0 0.07G 999.9 010000 724050 13743 20200305 50.6 24 27.7 24 1018.4 24 1016.1 24 10.0 24 7.4 24 22.0 27.0 64.9 41.0 0.00G 999.9 000000 724050 13743 20200306 44.4 24 32.4 24 1013.2 24 1010.9 24 10.0 24 6.4 24 15.0 28.0 54.0 37.0 0.00G 999.9 000000 724050 13743 20200307 45.3 24 24.2 24 1022.2 24 1019.8 24 10.0 24 16.2 24 25.1 35.9 53.1 37.0 0.00G 999.9 010000 724050 13743 20200308 47.6 24 20.4 24 1032.7 24 1030.3 24 10.0 24 7.7 24 12.0 17.1 62.1 36.0 0.00G 999.9 000000 724050 13743 20200309 55.1 24 30.0 24 1029.5 24 1027.1 24 10.0 24 7.6 24 9.9 19.0 73.9 36.0 0.00G 999.9 000000 724050 13743 20200310 61.8 24 43.8 24 1021.9 24 1019.6 24 10.0 24 10.9 24 20.0 28.0 73.9 43.0 0.00G 999.9 010000 724050 13743 20200311 55.1 24 42.2 24 1019.2 24 1016.8 24 10.0 24 7.7 24 15.0 18.1 72.0 46.9 0.01G 999.9 010000 724050 13743 20200312 53.2 24 41.7 24 1018.1 24 1015.8 24 10.0 24 5.1 24 8.9 999.9 64.0 45.0 0.00G 999.9 010000 724050 13743 20200313 60.2 24 48.3 24 1013.5 20 1010.4 24 9.2 24 7.3 24 15.0 24.1 77.0 48.0 0.22G 999.9 010000 724050 13743 20200314 54.9 24 20.9 24 1026.3 24 1024.0 24 10.0 24 9.9 24 18.1 29.9 66.0* 46.9* 0.00I 999.9 000000 724050 13743 20200315 45.2 24 37.4 24 1030.5 22 1027.9 24 9.7 24 8.4 24 18.1 999.9 57.9 41.0 0.16G 999.9 010000 724050 13743 20200316 46.2 24 32.3 24 1031.9 24 1029.6 24 10.0 24 6.0 24 13.0 999.9 55.0 37.9 0.04G 999.9 000000 724050 13743 20200317 50.5 24 40.6 24 1023.8 22 1021.5 24 10.0 24 6.8 24 13.0 999.9 64.0 37.9 0.00G 999.9 010000 724050 13743 20200318 52.4 24 36.7 24 1029.1 24 1026.7 24 10.0 24 8.5 24 14.0 999.9 64.0 44.1 0.01G 999.9 010000 724050 13743 20200319 56.6 24 50.3 24 1023.4 22 1021.3 24 8.3 24 6.3 24 11.1 999.9 75.0 44.1 0.41G 999.9 010000 724050 13743 20200320 67.6 24 57.7 24 1016.7 24 1014.4 24 9.1 24 9.5 24 22.0 33.0 82.9 48.9 0.33G 999.9 010000 724050 13743 20200321 59.2 24 42.4 24 1022.0 24 1019.7 24 9.9 24 10.7 24 17.1 25.1 82.9 48.9 0.10G 999.9 010000 724050 13743 20200322 47.3 24 26.7 24 1032.9 24 1030.5 24 10.0 24 8.7 24 14.0 999.9 52.0* 39.9* 0.08G 999.9 000000 724050 13743 20200323 44.2 24 39.3 24 1027.1 15 1025.1 24 8.0 24 9.6 24 17.1 22.0 53.1 39.9 0.13G 999.9 010000 724050 13743 20200324 48.0 24 40.2 24 1020.3 24 1018.1 24 10.0 24 4.2 24 14.0 999.9 55.0 41.0 0.23G 999.9 000000 724050 13743 20200325 48.1 24 42.8 24 1016.0 20 1013.3 24 8.5 24 9.8 24 15.9 20.0 55.0 44.1 0.08G 999.9 010000 724050 13743 20200326 50.2 24 42.4 24 1017.2 18 1015.5 24 9.2 24 6.7 24 12.0 18.1 59.0 44.1 0.21G 999.9 010000 724050 13743 20200327 58.7 24 47.6 24 1011.4 24 1009.0 24 10.0 24 5.5 24 9.9 999.9 70.0 45.0 0.00G 999.9 010000 724050 13743 20200328 57.2 24 52.2 24 1015.6 20 1013.3 24 9.0 24 4.8 24 12.0 999.9 70.0 51.1 0.32G 999.9 010010 724050 13743 20200329 55.3 24 52.0 24 1012.9 22 1010.8 24 7.7 24 5.2 24 15.0 999.9 71.1 51.1 0.15G 999.9 000000 724050 13743 20200330 60.2 24 49.0 24 1012.0 20 1009.8 24 8.2 24 8.6 24 18.1 25.1 75.9 51.1 0.00G 999.9 100000 724050 13743 20200331 53.6 24 38.5 24 1014.4 23 1012.0 24 9.9 24 9.6 24 15.0 20.0 75.9 46.0 0.00G 999.9 010000 724050 13743 20200401 47.1 24 38.4 24 1009.9 18 1007.8 24 9.9 24 11.2 24 15.9 20.0 57.0 42.1 0.12G 999.9 010000 724050 13743 20200402 53.0 24 30.3 24 1011.7 24 1009.4 24 10.0 24 12.3 24 24.1 33.0 63.0 42.1 0.00G 999.9 000000 724050 13743 20200403 56.8 24 28.5 24 1009.6 24 1007.2 24 10.0 24 15.3 24 24.1 35.0 68.0 42.1 0.00G 999.9 000000 724050 13743 20200404 55.0 24 40.9 24 1015.0 24 1012.7 24 10.0 24 8.7 24 17.1 999.9 68.0 46.9 0.00G 999.9 000000 724050 13743 20200405 55.7 24 46.3 24 1018.0 24 1015.8 24 10.0 24 5.3 24 9.9 999.9 68.0 46.9 0.00G 999.9 000000 724050 13743 20200406 62.4 24 44.0 24 1017.1 24 1014.7 24 10.0 24 6.0 24 11.1 15.0 71.1 46.9 0.00G 999.9 010000 724050 13743 20200407 60.2 24 48.3 24 1013.4 23 1011.5 24 9.6 24 4.6 24 9.9 999.9 73.9 54.0 0.00G 999.9 010000 724050 13743 20200408 65.0 24 55.1 24 1003.4 24 1001.1 24 9.9 24 7.9 24 15.9 22.9 78.1 54.0 0.40G 999.9 010000 724050 13743 20200409 62.4 24 48.1 24 998.3 23 995.7 24 9.7 24 9.1 24 27.0 41.0 78.1 55.0 0.14G 999.9 010010 724050 13743 20200410 48.5 24 22.8 24 1003.8 24 1001.5 24 10.0 24 18.2 24 25.1 35.0 55.0* 43.0* 0.00A 999.9 000000 724050 13743 20200411 49.7 24 25.7 24 1015.1 24 1012.8 24 10.0 24 8.1 24 17.1 22.9 64.0 39.0 0.00G 999.9 000000 724050 13743 20200412 56.9 24 42.0 24 1018.2 24 1015.9 24 10.0 24 6.1 24 15.9 18.1 73.9 39.0 0.00G 999.9 000000 724050 13743 20200413 66.6 24 58.6 24 1007.7 16 1004.0 24 8.2 24 11.0 24 24.1 31.1 81.0 46.0 2.16G 999.9 110010 724050 13743 20200414 54.9 24 32.9 24 1017.6 24 1015.3 24 10.0 24 9.2 24 20.0 28.9 81.0 46.0 0.38G 999.9 000000 724050 13743 20200415 46.0 24 31.2 24 1017.4 21 1015.5 24 9.4 24 9.1 24 18.1 27.0 60.1 37.9 0.30G 999.9 010000 724050 13743 20200416 48.0 24 25.8 24 1020.3 24 1018.0 24 10.0 24 10.5 24 18.1 25.1 55.0 37.9 0.16G 999.9 000000 724050 13743 20200417 48.5 24 28.9 24 1024.1 24 1021.8 24 10.0 24 6.2 24 14.0 999.9 57.9 37.9 0.00G 999.9 000000 724050 13743 20200418 51.3 24 40.4 24 1011.0 24 1008.5 24 9.8 24 9.0 24 24.1 32.1 57.9 37.9 0.05G 999.9 010000 724050 13743 20200419 51.4 24 33.5 24 1014.3 24 1011.9 24 10.0 24 7.4 24 15.9 21.0 66.0 37.0 0.01G 999.9 000000 724050 13743 20200420 57.4 24 43.5 24 1004.8 24 1002.4 24 10.0 24 5.1 24 12.0 999.9 64.0* 53.1* 0.00G 999.9 010000 724050 13743 20200421 56.4 24 43.4 24 1003.4 24 1000.9 24 9.8 24 10.5 24 32.1 39.0 68.0 48.9 0.00G 999.9 010000 724050 13743 20200422 49.6 24 19.9 24 1013.8 24 1011.5 24 10.0 24 10.9 24 22.9 28.0 68.0 37.9 0.02G 999.9 000000 724050 13743 20200423 54.6 24 37.4 24 1016.1 24 1013.8 24 9.2 24 5.3 24 9.9 999.9 62.1 37.9 0.00G 999.9 010000 724050 13743 20200424 55.1 24 52.2 24 1006.1 20 1003.8 24 7.3 24 6.5 24 11.1 999.9 61.0 48.9 1.30G 999.9 010000 724050 13743 20200425 55.6 24 48.0 24 1015.0 24 1012.8 24 9.6 24 4.7 24 12.0 999.9 64.9 48.0 0.05G 999.9 010000 724050 13743 20200426 53.3 24 50.2 24 1009.9 17 1008.3 24 8.0 24 5.5 24 12.0 999.9 64.9 48.0 0.23G 999.9 010000 724050 13743 20200427 51.7 24 43.1 24 1014.7 17 1010.8 24 9.1 24 12.0 24 18.1 28.0 59.0* 44.6* 0.14G 999.9 010000 724050 13743 20200428 51.4 24 41.0 24 1021.5 24 1019.1 24 10.0 24 4.4 24 9.9 999.9 60.1 45.0 0.09G 999.9 010000 724050 13743 20200429 59.1 24 49.7 24 1017.6 24 1015.2 24 10.0 24 5.0 24 17.1 24.1 75.0 45.0 0.02G 999.9 000000 724050 13743 20200430 64.4 24 57.5 24 1010.0 20 1007.2 24 7.8 24 11.7 24 20.0 29.9 75.0 46.9 0.01G 999.9 010000 724050 13743 20200501 58.8 24 50.3 24 1007.9 20 1005.2 24 9.9 24 8.0 24 14.0 21.0 66.9 52.0 1.12G 999.9 010000 724050 13743 20200502 60.9 24 43.4 24 1016.8 24 1014.5 24 10.0 24 8.3 24 15.0 20.0 72.0 52.0 0.06G 999.9 000000 724050 13743 20200503 64.4 24 53.3 24 1011.5 24 1009.3 24 10.0 24 7.2 24 12.0 999.9 79.0 52.0 0.00G 999.9 010000 724050 13743 20200504 68.1 24 50.6 24 1008.1 23 1005.5 24 9.2 24 12.1 24 25.1 38.1 79.0 60.1 1.02G 999.9 010010 724050 13743 20200505 55.9 24 36.2 24 1014.8 24 1012.5 24 10.0 24 7.7 24 17.1 999.9 75.0 50.0 0.09G 999.9 010000 724050 13743 20200506 52.4 24 47.2 24 1009.5 18 1007.2 24 7.6 24 6.8 24 15.0 22.9 57.9 48.9 0.20G 999.9 010000 724050 13743 20200507 54.4 24 35.7 24 1011.9 20 1009.5 24 10.0 24 9.6 24 15.0 24.1 69.1 44.1 0.06G 999.9 010000 724050 13743 20200508 59.4 24 38.5 24 1009.3 24 1007.0 24 10.0 24 7.5 24 19.0 24.1 69.1 44.1 0.00G 999.9 010000 724050 13743 20200509 45.2 24 26.0 24 1015.5 23 1012.2 24 9.7 24 14.0 24 24.1 38.1 69.1 37.0 0.12G 999.9 010000 724050 13743 20200510 50.2 24 26.8 24 1022.2 24 1019.9 24 10.0 24 9.0 24 17.1 22.0 64.9 37.0 0.00G 999.9 010000 724050 13743 20200511 56.1 24 38.6 24 1014.3 24 1011.9 24 10.0 24 10.0 24 22.0 31.1 64.9 37.9 0.00G 999.9 010000 724050 13743 20200512 52.5 24 30.7 24 1020.6 24 1018.3 24 10.0 24 10.5 24 15.9 26.0 64.0 43.0 0.02G 999.9 000000 724050 13743 20200513 57.5 24 32.9 24 1025.1 24 1022.6 24 10.0 24 5.2 24 9.9 17.1 71.1 43.0 0.00G 999.9 000000 724050 13743 20200514 59.8 24 48.1 24 1024.3 24 1022.0 24 10.0 24 5.3 24 11.1 999.9 71.1 45.0 0.00G 999.9 010000 724050 13743 20200515 71.0 24 59.4 24 1017.0 24 1014.6 24 10.0 24 9.3 24 18.1 26.0 86.0 51.1 0.02G 999.9 010000 724050 13743 20200516 75.4 24 57.2 24 1015.9 24 1013.6 24 10.0 24 8.0 24 13.0 15.9 86.0 62.1 0.00G 999.9 000000 724050 13743 20200517 65.7 24 55.4 24 1021.1 21 1019.0 24 10.0 24 7.0 24 11.1 999.9 82.9 61.0 0.00G 999.9 000000 724050 13743 20200518 61.8 24 55.0 24 1017.8 20 1015.6 24 9.1 24 10.7 24 15.0 22.0 69.1 57.0 0.00G 999.9 010000 724050 13743 20200519 63.2 24 44.0 24 1019.3 24 1017.1 24 10.0 24 14.4 24 22.9 33.0 69.1 57.0 0.00G 999.9 000000 724050 13743 20200520 58.0 24 39.6 24 1025.9 24 1023.6 24 10.0 24 14.5 24 22.0 27.0 69.1 53.1 0.00G 999.9 000000 724050 13743 20200521 58.8 24 49.2 24 1026.6 22 1024.5 24 10.0 24 9.9 24 15.0 22.0 73.0 50.0 0.00G 999.9 000000 724050 13743 20200522 66.6 24 61.3 24 1019.7 17 1017.2 24 7.8 24 6.0 24 11.1 999.9 79.0 50.0 0.14G 999.9 010000 724050 13743 20200523 72.4 24 63.0 24 1015.6 22 1013.3 24 9.5 24 6.0 24 13.0 18.1 82.9 60.1 0.73G 999.9 010000 724050 13743 20200524 66.5 24 59.8 24 1020.8 22 1018.4 24 10.0 24 7.4 24 14.0 999.9 82.9 60.1 0.29G 999.9 010000 724050 13743 20200525 67.1 24 58.3 24 1022.5 24 1020.3 24 10.0 24 3.1 24 8.0 999.9 78.1 60.1 0.00G 999.9 000000 724050 13743 20200526 69.9 24 61.5 24 1022.2 24 1019.9 24 10.0 24 3.9 24 8.9 999.9 80.1 62.1 0.00G 999.9 000000 724050 13743 20200527 71.8 24 64.7 24 1021.8 22 1019.7 24 10.0 24 5.1 24 9.9 999.9 80.1 62.1 0.00G 999.9 000000 724050 13743 20200528 75.0 24 70.1 24 1018.6 19 1016.5 24 9.2 24 9.2 24 14.0 18.1 80.1 66.0 0.01G 999.9 010000 724050 13743 20200529 78.4 24 71.9 24 1015.1 17 1013.5 24 9.4 24 10.0 24 17.1 21.0 87.1 72.0 0.07G 999.9 000000 724050 13743 20200530 76.0 24 60.1 24 1013.9 24 1011.6 24 10.0 24 7.6 24 18.1 26.0 87.1 69.1 0.01G 999.9 010000 724050 13743 20200531 70.4 24 45.2 24 1018.5 24 1016.1 24 10.0 24 10.7 24 15.9 22.9 84.0 61.0 0.00G 999.9 000000 724050 13743 20200601 65.7 24 39.3 24 1023.9 24 1021.7 24 10.0 24 7.6 24 13.0 17.1 75.9 54.0 0.00G 999.9 000000 724050 13743 20200602 66.1 24 48.6 24 1019.1 24 1016.7 24 10.0 24 6.9 24 12.0 999.9 77.0 54.0 0.00G 999.9 010000 724050 13743 20200603 78.4 24 62.3 24 1008.5 24 1006.1 24 10.0 24 8.4 24 15.9 22.9 93.0 57.9 0.00G 999.9 000000 724050 13743 20200604 82.9 24 66.0 24 1010.1 24 1007.8 24 10.0 24 5.6 24 11.1 999.9 93.0 68.0 0.00G 999.9 010010 724050 13743 20200605 77.2 24 69.5 24 1012.4 17 1010.0 24 9.4 24 7.2 24 31.1 42.9 91.9 70.0 0.88G 999.9 010010 724050 13743 20200606 79.4 24 69.7 24 1010.8 24 1008.6 24 9.8 24 6.3 24 15.0 20.0 91.0 70.0 0.90G 999.9 010000 724050 13743 20200607 77.3 24 54.3 24 1013.0 24 1010.7 24 10.0 24 9.1 24 13.0 17.1 91.0 66.9 0.00G 999.9 010000 724050 13743 20200608 73.7 24 52.7 24 1016.9 24 1014.6 24 10.0 24 6.4 24 11.1 999.9 82.9 64.0 0.00G 999.9 000000 724050 13743 20200609 76.9 24 62.8 24 1015.3 24 1013.0 24 10.0 24 5.5 24 13.0 999.9 89.1 64.0 0.00G 999.9 000000 724050 13743 20200610 82.0 24 73.2 24 1013.3 22 1011.0 24 10.0 24 10.2 24 15.9 21.0 89.1 66.9 0.00G 999.9 000000 724050 13743 20200611 80.1 24 71.8 24 1015.3 20 1012.6 24 9.3 24 10.2 24 20.0 26.0 89.1 73.9 0.17G 999.9 010010 724050 13743 20200612 79.5 24 56.5 24 1020.0 24 1017.7 24 10.0 24 7.4 24 11.1 17.1 88.0 68.0 0.21G 999.9 000000 724050 13743 20200613 74.0 24 50.8 24 1021.1 24 1018.8 24 10.0 24 8.7 24 13.0 999.9 88.0 64.9 0.00G 999.9 000000 724050 13743 20200614 70.5 24 49.3 24 1025.3 24 1023.1 24 10.0 24 7.6 24 13.0 999.9 80.1 63.0 0.00G 999.9 010000 724050 13743 20200615 70.2 24 52.8 24 1027.2 24 1024.9 24 10.0 24 9.3 24 14.0 21.0 78.1 63.0 0.00G 999.9 000000 724050 13743 20200616 70.2 24 52.9 24 1026.7 24 1024.4 24 10.0 24 11.4 24 15.9 999.9 78.1 63.0 0.00G 999.9 000000 724050 13743 20200617 68.6 24 59.6 24 1022.7 19 1020.0 24 9.2 24 12.1 24 15.9 21.0 78.1 64.9 0.00G 999.9 010010 724050 13743 20200618 72.6 24 66.2 24 1019.2 16 1016.8 24 8.8 24 8.0 24 15.0 999.9 81.0 64.9 0.85G 999.9 010000 724050 13743 20200619 75.0 24 66.7 24 1019.0 24 1016.7 24 10.0 24 7.2 24 12.0 999.9 84.0 68.0 0.00G 999.9 010010 724050 13743 20200620 73.4 24 67.4 24 1017.6 21 1015.4 24 9.6 24 4.2 24 9.9 999.9 84.0 69.1 0.01G 999.9 010010 724050 13743 20200621 75.5 24 68.4 24 1015.9 18 1013.7 24 9.5 24 3.6 24 11.1 999.9 86.0 69.1 0.47G 999.9 000000 724050 13743 20200622 78.8 24 69.9 24 1014.7 23 1012.1 24 10.0 24 7.2 24 13.0 999.9 90.0 70.0 0.00G 999.9 010010 724050 13743 20200623 77.4 24 70.0 24 1009.5 24 1007.4 24 10.0 24 6.5 24 13.0 999.9 90.0 71.1 0.00G 999.9 010000 724050 13743 20200624 80.6 24 62.5 24 1008.2 24 1005.9 24 10.0 24 8.7 24 13.0 19.0 89.1 71.1 0.00G 999.9 000000 724050 13743 20200625 79.1 24 62.5 24 1013.8 24 1011.5 24 10.0 24 4.8 24 9.9 999.9 86.0 71.1 0.00G 999.9 000000 724050 13743 20200626 77.3 24 60.1 24 1016.3 24 1014.0 24 10.0 24 6.8 24 17.1 999.9 90.0 66.0 0.00G 999.9 000000 724050 13743 20200627 82.3 24 65.3 24 1011.9 24 1009.6 24 9.9 24 8.3 24 17.1 21.0 93.0 66.0 0.00G 999.9 010000 724050 13743 20200628 82.0 24 69.4 24 1008.5 24 1006.2 24 10.0 24 5.7 24 11.1 15.9 93.0 75.0 0.02G 999.9 000000 724050 13743 20200629 83.5 24 65.4 24 1010.0 24 1007.7 24 10.0 24 8.8 24 15.0 19.0 91.9 75.0 0.00G 999.9 000000 724050 13743 20200630 82.9 24 62.2 24 1012.0 24 1009.7 24 10.0 24 5.8 24 12.0 999.9 91.9 73.0 0.00G 999.9 000000 724050 13743 20200701 79.9 24 67.1 24 1011.5 24 1009.2 24 10.0 24 5.7 24 11.1 15.0 91.9 73.0 0.01G 999.9 010000 724050 13743 20200702 80.9 24 65.4 24 1011.9 24 1009.6 24 10.0 24 6.2 24 11.1 14.0 91.9 72.0 0.11G 999.9 000000 724050 13743 20200703 86.3 24 64.3 24 1011.9 24 1009.6 24 10.0 24 5.4 24 12.0 999.9 97.0 72.0 0.00G 999.9 000000 724050 13743 20200704 86.0 24 67.0 24 1012.2 23 1009.9 24 10.0 24 6.3 24 15.0 21.0 97.0 75.9 0.00G 999.9 010010 724050 13743 20200705 83.4 24 71.7 24 1014.5 23 1012.1 24 8.0 24 8.1 24 14.0 999.9 93.9 75.9 0.00G 999.9 010010 724050 13743 20200706 83.8 24 73.1 24 1015.8 24 1013.4 24 9.6 24 8.1 24 38.1 52.1 96.1 75.0 0.00G 999.9 010010 724050 13743 20200707 78.2 24 70.8 24 1017.3 14 1015.1 24 9.0 24 7.4 24 21.0 31.1 96.1 71.1 2.47G 999.9 010010 724050 13743 20200708 82.9 24 71.7 24 1015.5 24 1013.1 24 10.0 24 7.0 24 11.1 999.9 91.9 71.1 2.04G 999.9 000000 724050 13743 20200709 82.3 24 71.2 24 1014.2 23 1012.0 24 10.0 24 5.7 24 9.9 15.0 91.9 75.0 0.00G 999.9 000000 724050 13743 20200710 82.5 24 72.0 24 1010.9 23 1008.9 24 10.0 24 9.3 24 14.0 19.0 91.0 75.0 0.00G 999.9 000000 724050 13743 20200711 83.4 24 69.1 24 1006.8 24 1004.4 24 9.9 24 7.7 24 15.0 21.0 93.0 75.9 0.00G 999.9 000000 724050 13743 20200712 82.1 24 64.0 24 1008.3 24 1005.9 24 10.0 24 6.6 24 11.1 999.9 93.0 73.0 0.00G 999.9 010000 724050 13743 20200713 80.4 24 64.8 24 1010.0 24 1007.7 24 10.0 24 6.0 24 11.1 999.9 91.0 71.1 0.01G 999.9 010000 724050 13743 20200714 81.0 24 62.8 24 1014.7 24 1012.3 24 10.0 24 6.0 24 12.0 19.0 91.0 71.1 0.14G 999.9 010000 724050 13743 20200715 81.7 24 63.4 24 1019.5 24 1017.1 24 10.0 24 5.0 24 9.9 15.9 91.0 72.0 0.00G 999.9 000000 724050 13743 20200716 80.6 24 70.7 24 1022.1 19 1020.1 24 10.0 24 9.0 24 13.0 19.0 91.0 72.0 0.00G 999.9 000000 724050 13743 20200717 83.5 24 71.0 24 1019.7 23 1017.6 24 10.0 24 8.2 24 13.0 15.0 95.0* 75.2* 0.00G 999.9 000000 724050 13743 20200718 88.0 24 67.4 24 1017.9 24 1015.6 24 10.0 24 4.8 24 11.1 999.9 98.1 75.9 0.00G 999.9 000000 724050 13743 20200719 87.8 24 72.0 24 1014.8 24 1012.4 24 9.9 24 5.2 24 11.1 18.1 99.0 79.0 0.00G 999.9 000000 724050 13743 20200720 89.7 24 71.8 24 1012.7 22 1010.3 24 9.8 24 6.7 24 14.0 20.0 99.0 79.0 0.00G 999.9 010010 724050 13743 20200721 85.9 24 70.4 24 1015.4 22 1012.9 24 9.7 24 5.4 24 17.1 18.1 99.0 78.1 0.15G 999.9 010010 724050 13743 20200722 80.1 24 73.8 24 1017.1 18 1014.8 24 9.7 24 5.7 24 35.0 49.9 93.9* 73.4* 0.52G 999.9 010010 724050 13743 20200723 80.8 24 72.7 24 1017.6 24 1015.3 24 10.0 24 5.8 24 11.1 999.9 93.9 73.9 0.56G 999.9 010000 724050 13743 20200724 79.1 24 72.6 24 1018.2 18 1015.8 24 9.7 24 4.2 24 24.1 28.9 91.9 72.0 2.31G 999.9 010010 724050 13743 20200725 81.9 24 72.1 24 1018.8 24 1016.4 24 10.0 24 3.6 24 9.9 999.9 93.0 73.0 0.01G 999.9 000000 724050 13743 20200726 86.2 24 71.0 24 1017.7 24 1015.4 24 10.0 24 6.5 24 13.0 19.0 95.0 73.9 0.00G 999.9 000000 724050 13743 20200727 87.7 24 68.8 24 1013.6 24 1011.2 24 10.0 24 5.3 24 12.0 18.1 96.1 78.1 0.00G 999.9 000000 724050 13743 20200728 86.5 24 71.4 24 1011.0 24 1008.6 24 10.0 24 6.8 24 13.0 18.1 96.1 79.0 0.00G 999.9 010000 724050 13743 20200729 83.8 24 67.0 24 1013.7 24 1011.3 24 10.0 24 5.3 24 12.0 15.0 93.9 75.0 0.00G 999.9 000000 724050 13743 20200730 85.7 24 71.0 24 1012.1 23 1009.6 24 10.0 24 6.8 24 22.0 35.0 93.9 75.0 0.00G 999.9 010010 724050 13743 20200731 76.4 24 71.8 24 1009.8 16 1007.4 24 9.5 24 5.7 24 20.0 25.1 93.9 73.9 0.18G 999.9 010000 724050 13743 20200801 80.6 24 72.2 24 1012.6 24 1010.4 24 10.0 24 5.1 24 9.9 999.9 88.0 73.9 0.04G 999.9 010000 724050 13743 20200802 83.0 24 74.6 24 1012.3 22 1010.0 24 9.7 24 10.4 24 27.0 35.9 91.9 75.0 0.00G 999.9 010000 724050 13743 20200803 81.6 24 68.1 24 1016.1 22 1013.9 24 9.5 24 6.7 24 22.9 33.0 87.1* 73.4* 0.07G 999.9 010010 724050 13743 20200804 76.0 24 69.5 24 1013.0 19 1009.2 24 7.9 24 10.5 24 22.0 29.9 87.1* 69.8* 1.69G 999.9 010000 724050 13743 20200805 79.2 24 67.1 24 1016.1 24 1013.9 24 10.0 24 3.9 24 11.1 19.0 89.1 70.0 1.25G 999.9 010000 724050 13743 20200806 79.5 24 70.4 24 1017.9 20 1015.5 24 9.8 24 5.8 24 11.1 999.9 88.0 71.1 0.16G 999.9 010010 724050 13743 20200807 78.6 24 70.9 24 1018.2 22 1015.9 24 10.0 24 5.0 24 11.1 999.9 88.0 72.0 0.46G 999.9 010000 724050 13743 20200808 77.9 24 70.1 24 1020.2 19 1017.8 24 9.8 24 4.3 24 15.9 27.0 88.0 73.0 0.30G 999.9 010010 724050 13743 20200809 80.4 24 72.3 24 1020.2 22 1017.8 24 10.0 24 5.3 24 11.1 15.9 88.0 73.0 0.00G 999.9 010010 724050 13743 20200810 82.8 24 73.8 24 1017.7 24 1015.3 24 9.9 24 5.6 24 13.0 999.9 91.9 73.9 0.00G 999.9 010000 724050 13743 20200811 82.6 24 74.5 24 1014.6 24 1012.3 24 10.0 24 7.3 24 11.1 999.9 91.9 75.0 0.00G 999.9 000000 724050 13743 20200812 82.2 24 74.3 24 1015.6 21 1013.3 24 9.6 24 5.7 24 13.0 15.9 91.9 75.0 0.25G 999.9 010010 724050 13743 20200813 78.4 24 72.9 24 1017.4 17 1015.3 24 8.9 24 5.1 24 11.1 999.9 91.9 73.9 0.12G 999.9 010010 724050 13743 20200814 79.4 24 72.4 24 1015.4 21 1013.2 24 9.6 24 8.7 24 12.0 20.0 88.0 73.9 0.54G 999.9 010000 724050 13743 20200815 77.1 24 68.2 24 1015.0 24 1012.6 24 10.0 24 6.5 24 11.1 18.1 88.0 75.0 0.06G 999.9 010000 724050 13743 20200816 71.3 24 66.3 24 1013.9 19 1011.6 24 8.3 24 9.9 24 15.0 19.0 80.1 66.0 1.22G 999.9 010000 724050 13743 20200817 73.5 24 66.2 24 1013.8 23 1011.6 24 10.0 24 4.7 24 12.0 999.9 82.9 66.0 0.02G 999.9 010010 724050 13743 20200818 76.1 24 64.7 24 1012.2 24 1009.9 24 10.0 24 5.6 24 11.1 999.9 88.0 66.0 0.14G 999.9 000000 724050 13743 20200819 76.0 24 64.9 24 1013.2 24 1010.8 24 9.9 24 4.8 24 11.1 17.1 88.0 68.0 0.09G 999.9 010000 724050 13743 20200820 75.9 24 64.4 24 1016.7 24 1014.3 24 10.0 24 4.9 24 8.9 999.9 84.9 68.0 0.00A 999.9 000000 724050 13743 20200821 76.3 24 67.7 24 1015.8 24 1013.5 24 10.0 24 6.4 24 8.9 999.9 84.0 68.0 0.00G 999.9 000000 724050 13743 20200822 78.5 24 71.1 24 1014.8 21 1012.4 24 10.0 24 6.2 24 8.9 999.9 84.0 69.1 0.00G 999.9 010000 724050 13743 20200823 80.5 24 72.9 24 1016.7 20 1014.4 24 10.0 24 6.2 24 12.0 999.9 89.1 73.9 0.00G 999.9 000000 724050 13743 20200824 81.3 24 73.0 24 1017.2 22 1014.9 24 10.0 24 5.3 24 14.0 27.0 89.1 75.9 0.00G 999.9 010000 724050 13743 20200825 81.6 24 70.8 24 1014.1 24 1011.7 24 10.0 24 7.2 24 24.1 33.0 91.9 73.9 0.05G 999.9 010010 724050 13743 20200826 79.3 24 64.1 24 1015.3 24 1013.0 24 10.0 24 8.0 24 12.0 22.0 91.9 71.1 0.01G 999.9 010000 724050 13743 20200827 82.7 24 69.4 24 1012.5 24 1010.2 24 10.0 24 8.5 24 17.1 26.0 93.0 71.1 0.00G 999.9 000000 724050 13743 20200828 84.0 24 69.4 24 1011.7 22 1009.3 24 9.7 24 7.2 24 28.9 36.9 93.0 73.9 0.00G 999.9 010010 724050 13743 20200829 77.3 24 73.5 24 1005.4 14 1003.4 24 8.7 24 6.6 24 12.0 20.0 93.0 72.0 1.57G 999.9 010010 724050 13743 20200830 77.3 24 60.9 24 1008.0 24 1005.7 24 10.0 24 8.1 24 13.0 20.0 88.0 66.0 0.39G 999.9 000000 724050 13743 20200831 73.6 24 63.6 24 1015.5 24 1013.2 24 9.4 24 3.6 24 8.0 999.9 82.9 66.0 0.00G 999.9 010000 724050 13743 20200901 72.9 24 67.4 24 1017.3 18 1015.1 24 9.7 24 5.6 24 8.9 999.9 82.0 68.0 0.50G 999.9 010000 724050 13743 20200902 79.2 24 72.8 24 1012.7 16 1011.3 24 9.7 24 7.0 24 14.0 999.9 88.0 68.0 0.02G 999.9 010000 724050 13743 20200903 82.4 24 74.1 24 1010.4 22 1007.7 24 9.9 24 5.4 24 19.0 25.1 91.0 73.9 0.01G 999.9 010010 724050 13743 20200904 80.5 24 71.1 24 1011.7 24 1009.4 24 9.8 24 5.8 24 13.0 22.0 91.0 73.0 0.38G 999.9 010010 724050 13743 20200905 74.3 24 56.3 24 1021.8 24 1019.2 24 10.0 24 5.9 24 9.9 999.9 91.0 63.0 0.00G 999.9 000000 724050 13743 20200906 73.0 24 58.6 24 1022.5 24 1020.2 24 10.0 24 4.9 24 9.9 999.9 82.9 62.1 0.00G 999.9 000000 724050 13743 20200907 73.6 24 61.9 24 1018.9 24 1016.6 24 10.0 24 5.2 24 9.9 999.9 82.9 62.1 0.00G 999.9 000000 724050 13743 20200908 75.5 24 64.2 24 1019.4 24 1017.1 24 10.0 24 3.3 24 7.0 999.9 87.1 64.9 0.00G 999.9 000000 724050 13743 20200909 76.0 24 71.0 24 1022.4 15 1020.5 24 9.2 24 6.3 24 9.9 999.9 87.1 66.0 0.00G 999.9 010000 724050 13743 20200910 77.2 24 74.7 24 1022.6 9 1020.3 24 7.1 24 6.2 24 15.9 21.0 81.0 73.0 0.64G 999.9 110000 724050 13743 20200911 77.4 24 72.5 24 1020.6 14 1018.0 24 9.9 24 7.0 24 14.0 18.1 81.0 73.9 2.88G 999.9 000000 724050 13743 20200912 72.7 24 64.8 24 1022.8 21 1020.7 24 10.0 24 7.5 24 12.0 17.1 81.0 69.1 0.00G 999.9 010000 724050 13743 20200913 70.5 24 61.3 24 1020.6 24 1018.3 24 10.0 24 5.5 24 9.9 999.9 81.0 62.1 0.00G 999.9 000000 724050 13743 20200914 75.1 24 63.8 24 1019.7 24 1017.4 24 10.0 24 7.7 24 14.0 19.0 81.0 62.1 0.00G 999.9 010000 724050 13743 20200915 64.2 24 47.6 24 1025.8 24 1023.6 24 10.0 24 8.1 24 13.0 22.0 79.0 55.0 0.00G 999.9 000000 724050 13743 20200916 63.8 24 53.6 24 1023.6 24 1021.6 24 10.0 24 4.3 24 8.9 999.9 73.4* 55.9* 0.00G 999.9 000000 724050 13743 20200917 69.1 24 61.8 24 1017.6 22 1015.5 24 9.6 24 2.3 24 8.0 999.9 73.0 55.0 0.00G 999.9 010000 724050 13743 20200918 69.5 24 62.3 24 1014.3 21 1011.8 24 9.2 24 8.1 24 15.0 21.0 75.9 66.0 0.46G 999.9 010000 724050 13743 20200919 59.9 24 37.7 24 1025.0 24 1022.6 24 10.0 24 11.3 24 17.1 24.1 75.9 48.9 0.07G 999.9 000000 724050 13743 20200920 58.0 24 41.9 24 1030.5 24 1028.1 24 10.0 24 6.6 24 12.0 999.9 69.1 46.0 0.00G 999.9 000000 724050 13743 20200921 58.3 24 41.0 24 1033.5 24 1031.1 24 10.0 24 7.7 24 12.0 19.0 69.1 46.0 0.00G 999.9 000000 724050 13743 20200922 59.2 24 42.4 24 1024.7 24 1022.3 24 10.0 24 4.4 24 8.9 17.1 73.0 48.0 0.00G 999.9 000000 724050 13743 20200923 67.2 24 48.7 24 1016.1 24 1013.7 24 10.0 24 5.1 24 9.9 19.0 81.0 48.0 0.00G 999.9 000000 724050 13743 20200924 67.1 24 57.6 24 1016.0 24 1013.7 24 10.0 24 4.2 24 8.9 999.9 81.0 55.0 0.00G 999.9 000000 724050 13743 20200925 65.0 24 60.8 24 1018.8 24 1016.4 24 10.0 24 4.5 24 8.9 999.9 73.9 61.0 0.00G 999.9 010000 724050 13743 20200926 66.3 24 62.9 24 1017.4 16 1015.3 24 8.4 24 5.1 24 8.9 999.9 72.0 62.1 0.64G 999.9 010000 724050 13743 20200927 71.1 24 66.8 24 1014.4 18 1012.5 24 7.3 24 3.0 24 6.0 999.9 78.1 62.1 0.10G 999.9 010000 724050 13743 20200928 72.0 24 66.8 24 1012.0 21 1009.8 24 10.0 24 6.9 24 9.9 999.9 81.0 66.9 0.01G 999.9 010000 724050 13743 20200929 73.1 24 67.0 24 1009.6 22 1007.6 24 10.0 24 9.6 24 14.0 22.9 81.0 64.0 0.00H 999.9 010000 724050 13743 20200930 62.4 24 52.6 24 1008.7 23 1006.1 24 9.6 24 10.0 24 15.0 27.0 80.1 55.0 0.30G 999.9 010000 724050 13743 20201001 64.8 24 53.7 24 1013.2 24 1010.9 24 10.0 24 6.9 24 12.0 999.9 75.9 55.0 0.10G 999.9 010000 724050 13743 20201002 61.9 24 50.5 24 1016.6 23 1014.2 24 10.0 24 6.7 24 13.0 21.0 75.9 57.0 0.11G 999.9 010000 724050 13743 20201003 58.4 24 42.0 24 1022.9 24 1020.7 24 10.0 24 7.0 24 11.1 14.0 69.1 48.9 0.07G 999.9 000000 724050 13743 20201004 58.6 24 45.7 24 1023.4 24 1021.1 24 10.0 24 3.6 24 7.0 999.9 70.0 48.0 0.00G 999.9 000000 724050 13743 20201005 61.7 24 49.2 24 1020.7 24 1018.4 24 10.0 24 6.8 24 15.0 22.0 70.0 48.0 0.02G 999.9 010000 724050 13743 20201006 60.5 24 49.7 24 1020.9 24 1018.6 24 10.0 24 5.0 24 11.1 999.9 72.0 48.9 0.00I 999.9 000000 724050 13743 20201007 66.3 24 55.2 24 1011.9 24 1009.6 24 10.0 24 7.7 24 15.9 22.0 81.0 48.9 0.00G 999.9 000000 724050 13743 20201008 66.5 24 48.0 24 1015.6 24 1013.3 24 10.0 24 9.7 24 15.0 25.1 81.0 55.9 0.00G 999.9 000000 724050 13743 20201009 60.3 24 45.9 24 1023.2 24 1020.9 24 10.0 24 5.5 24 12.0 999.9 71.1 50.0 0.00G 999.9 000000 724050 13743 20201010 64.4 24 57.1 24 1018.8 24 1016.4 24 10.0 24 7.4 24 9.9 15.0 73.9 50.0 0.00G 999.9 000000 724050 13743 20201011 67.8 24 64.4 24 1016.7 17 1014.5 24 9.0 24 4.3 24 9.9 999.9 73.9 60.1 0.00G 999.9 010000 724050 13743 20201012 63.4 24 61.2 24 1015.6 9 1013.2 24 4.0 24 11.3 24 19.0 26.0 71.1 59.0 1.43G 999.9 010000 724050 13743 20201013 61.8 24 55.6 24 1013.8 19 1011.3 24 8.5 24 9.3 24 15.0 21.0 73.0 55.9 0.11G 999.9 010000 724050 13743 20201014 60.8 24 48.3 24 1016.9 24 1014.6 24 10.0 24 5.8 24 12.0 999.9 75.0 48.9 0.00G 999.9 000000 724050 13743 20201015 64.4 24 54.9 24 1015.7 24 1013.4 24 10.0 24 9.6 24 15.9 24.1 75.9 48.9 0.00G 999.9 000000 724050 13743 20201016 61.5 24 53.3 24 1018.0 24 1015.5 24 10.0 24 8.4 24 14.0 17.1 75.9 55.0 0.07G 999.9 010000 724050 13743 20201017 54.6 24 38.5 24 1025.8 24 1023.4 24 10.0 24 6.6 24 11.1 17.1 66.9 45.0 0.09G 999.9 000000 724050 13743 20201018 55.1 24 44.7 24 1029.6 24 1027.2 24 10.0 24 4.3 24 8.9 999.9 66.0 45.0 0.00G 999.9 000000 724050 13743 20201019 62.6 24 55.3 24 1025.9 22 1023.7 24 10.0 24 4.7 24 8.0 999.9 72.0 45.0 0.00G 999.9 000000 724050 13743 20201020 64.5 24 58.2 24 1023.4 18 1021.2 24 8.3 24 5.3 24 8.9 999.9 75.9 57.0 0.00G 999.9 110000 724050 13743 20201021 66.8 24 63.7 24 1023.7 16 1021.6 24 6.5 24 3.9 24 8.0 999.9 75.9 59.0 0.01G 999.9 110000 724050 13743 20201022 68.7 24 63.9 24 1023.0 19 1020.9 24 7.1 24 3.6 24 7.0 999.9 80.1 60.1 0.00I 999.9 100000 724050 13743 20201023 68.8 24 62.4 24 1021.2 22 1019.1 24 8.4 24 5.1 24 8.9 999.9 80.1 60.1 0.00G 999.9 100000 724050 13743 20201024 67.0 24 60.3 24 1015.5 23 1013.1 24 10.0 24 7.2 24 14.0 999.9 78.1 62.1 0.00G 999.9 000000 724050 13743 20201025 52.6 24 44.7 24 1021.1 23 1018.9 24 9.3 24 10.4 24 14.0 999.9 78.1 46.9 0.33G 999.9 010000 724050 13743 20201026 52.7 24 49.2 24 1021.4 21 1019.0 24 7.4 24 6.1 24 11.1 999.9 62.6* 48.0* 0.12G 999.9 010000 724050 13743 20201027 60.6 24 55.5 24 1021.4 19 1019.0 24 9.7 24 2.6 24 8.0 999.9 66.0 48.0 0.00G 999.9 000000 724050 13743 20201028 64.8 24 60.3 24 1017.6 19 1015.6 24 8.8 24 5.8 24 11.1 14.0 71.1 57.9 0.00G 999.9 000000 724050 13743 20201029 61.1 24 58.6 24 1008.9 14 1004.9 24 6.1 24 7.8 24 15.9 22.0 71.1 53.1 0.62G 999.9 010000 724050 13743 20201030 51.6 24 45.6 24 1011.4 19 1007.1 24 9.5 24 11.9 24 18.1 25.1 64.0 50.0 1.94G 999.9 010000 724050 13743 20201031 47.6 24 37.9 24 1030.2 24 1027.8 24 10.0 24 7.5 24 13.0 999.9 55.0 41.0 0.01G 999.9 000000 724050 13743 20201101 51.4 24 45.5 24 1022.6 19 1018.0 24 9.3 24 8.5 24 15.9 21.0 59.0 41.0 0.00G 999.9 010000 724050 13743 20201102 45.4 24 22.4 24 1016.9 24 1014.6 24 10.0 24 15.6 24 28.0 41.0 59.0 39.0 0.52G 999.9 000000 724050 13743 20201103 50.4 24 23.4 24 1019.7 24 1017.4 24 10.0 24 8.5 24 18.1 29.9 66.0 39.0 0.00G 999.9 000000 724050 13743 20201104 52.2 24 40.3 24 1028.9 24 1026.5 24 9.9 24 3.6 24 8.9 999.9 66.9 39.0 0.00G 999.9 000000 724050 13743 20201105 55.8 24 45.9 24 1030.1 24 1027.7 24 9.7 24 5.3 24 11.1 999.9 69.1 42.1 0.00G 999.9 000000 724050 13743 20201106 57.0 24 48.7 24 1026.6 24 1024.2 24 9.5 24 2.8 24 8.9 999.9 70.0 46.9 0.00G 999.9 000000 724050 13743 20201107 57.6 24 47.5 24 1026.2 24 1023.8 24 9.0 24 3.2 24 6.0 999.9 73.9 46.9 0.00G 999.9 000000 724050 13743 20201108 59.3 24 51.2 24 1027.9 24 1025.5 24 8.4 24 1.7 24 8.0 999.9 73.9 46.9 0.00G 999.9 000000 724050 13743 20201109 61.4 24 55.4 24 1027.6 23 1025.4 24 9.3 24 3.1 24 8.0 999.9 75.0 48.9 0.00G 999.9 100000 724050 13743 20201110 62.8 24 56.0 24 1023.4 24 1021.1 24 10.0 24 5.6 24 11.1 15.9 75.9 52.0 0.00G 999.9 000000 724050 13743 20201111 65.2 24 63.0 24 1017.4 16 1014.9 24 8.3 24 7.3 24 11.1 999.9 75.9 54.0 0.00G 999.9 010000 724050 13743 20201112 62.8 24 60.1 24 1014.1 15 1011.8 24 6.6 24 8.1 24 15.0 22.9 69.8* 51.8* 2.68G 999.9 110000 724050 13743 20201113 53.5 24 43.2 24 1017.1 22 1014.7 24 10.0 24 5.9 24 12.0 17.1 68.0 48.9 0.23G 999.9 000000 724050 13743 20201114 52.8 24 36.2 24 1021.6 24 1019.3 24 10.0 24 5.5 24 8.9 999.9 62.1 42.1 0.00G 999.9 000000 724050 13743 20201115 56.2 24 46.3 24 1018.0 24 1015.6 24 10.0 24 7.7 24 17.1 28.0 71.1 42.1 0.00G 999.9 000000 724050 13743 20201116 56.9 24 30.6 24 1015.4 24 1012.7 24 10.0 24 11.0 24 25.1 35.9 71.1 48.0 0.26G 999.9 010000 724050 13743 20201117 49.0 24 24.8 24 1017.6 24 1015.3 24 10.0 24 10.1 24 21.0 39.0 62.1 39.9 0.00G 999.9 000000 724050 13743 20201118 40.4 24 21.6 24 1031.4 24 1029.1 24 10.0 24 11.4 24 18.1 29.9 57.0 36.0 0.00G 999.9 000000 724050 13743 20201119 40.9 24 27.1 24 1035.9 24 1033.6 24 10.0 24 7.2 24 15.9 22.0 53.1 32.0 0.00G 999.9 000000 724050 13743 20201120 50.9 24 33.4 24 1029.5 24 1027.1 24 10.0 24 7.8 24 14.0 999.9 64.0 32.0 0.00G 999.9 000000 724050 13743 20201121 53.2 24 43.9 24 1027.7 24 1025.4 24 10.0 24 1.1 24 5.1 999.9 64.0 42.1 0.00G 999.9 000000 724050 13743 20201122 55.5 24 44.5 24 1027.6 23 1025.0 24 10.0 24 6.6 24 9.9 999.9 64.0 45.0 0.00G 999.9 000000 724050 13743 20201123 53.6 24 42.1 24 1019.0 22 1016.1 24 9.6 24 12.3 24 22.0 35.9 59.0 46.9 0.02G 999.9 010000 724050 13743 20201124 46.1 24 27.4 24 1027.6 24 1025.2 24 10.0 24 5.9 24 12.0 999.9 59.0 37.9 0.00I 999.9 000000 724050 13743 20201125 49.1 24 37.5 24 1026.8 24 1024.4 24 10.0 24 8.7 24 15.9 22.0 57.0 37.9 0.00G 999.9 000000 724050 13743 20201126 58.5 24 52.4 24 1017.8 23 1015.3 24 9.9 24 4.8 24 11.1 999.9 66.9 44.1 0.04G 999.9 010000 724050 13743 20201127 56.2 24 46.3 24 1018.6 24 1016.2 24 10.0 24 3.2 24 7.0 999.9 66.9 51.1 0.03G 999.9 000000 724050 13743 20201128 54.1 24 41.8 24 1017.3 24 1014.9 24 10.0 24 4.1 24 13.0 26.0 61.0 46.0 0.00G 999.9 000000 724050 13743 20201129 48.0 24 31.6 24 1021.5 24 1019.2 24 10.0 24 4.0 24 8.9 999.9 61.0 37.0 0.00G 999.9 000000 724050 13743 20201130 56.3 24 51.3 24 1008.5 17 1002.8 24 7.4 24 7.0 24 17.1 27.0 64.9 37.0 0.56G 999.9 110010 724050 13743 20201201 47.2 24 33.3 24 1003.8 24 1000.9 24 10.0 24 9.2 24 15.9 26.0 64.9 39.9 1.84G 999.9 010000 724050 13743 20201202 42.3 24 22.8 24 1017.0 24 1014.7 24 10.0 24 9.5 24 21.0 33.0 50.0 36.0 0.01G 999.9 000000 724050 13743 20201203 42.4 24 24.2 24 1025.0 24 1022.6 24 10.0 24 4.1 24 12.0 999.9 54.0 30.9 0.00G 999.9 000000 724050 13743 20201204 49.5 24 32.8 24 1019.4 24 1017.0 24 10.0 24 5.3 24 8.9 999.9 53.1* 46.9* 0.00G 999.9 010000 724050 13743 20201205 47.2 24 38.3 24 1011.5 21 1008.4 24 8.2 24 12.0 24 24.1 33.0 53.1 45.0 1.24G 999.9 010000 724050 13743 20201206 42.7 24 25.1 24 1014.9 24 1012.6 24 10.0 24 11.5 24 15.9 24.1 48.9 39.0 0.82G 999.9 000000 724050 13743 20201207 36.4 24 23.2 24 1012.3 24 1010.0 24 10.0 24 7.0 24 11.1 18.1 48.0 32.0 0.00G 999.9 000000 724050 13743 20201208 38.1 24 20.4 24 1011.1 24 1008.8 24 10.0 24 12.4 24 20.0 27.0 46.9 32.0 0.00G 999.9 000000 724050 13743 20201209 36.7 24 23.1 24 1013.3 24 1011.1 24 10.0 24 6.1 24 11.1 17.1 46.9 30.0 0.00G 999.9 000000 724050 13743 20201210 39.7 24 31.0 24 1018.2 24 1015.9 24 9.4 24 2.6 24 8.9 999.9 51.1 30.0 0.00G 999.9 000000 724050 13743 20201211 45.7 24 37.4 24 1022.2 24 1019.9 24 8.4 24 4.8 24 12.0 18.1 61.0 32.0 0.00G 999.9 000000 724050 13743 20201212 49.3 24 42.6 24 1017.7 22 1015.7 24 8.4 24 4.6 24 14.0 22.0 63.0 35.1 0.00G 999.9 100000 724050 13743 20201213 55.1 24 45.6 24 1015.2 24 1012.9 24 10.0 24 8.2 24 12.0 999.9 66.0 39.9 0.00G 999.9 000000 724050 13743 20201214 44.0 24 36.5 24 1015.9 23 1013.3 24 8.2 24 8.8 24 18.1 25.1 50.0* 39.2* 0.11G 999.9 010000 724050 13743 20201215 37.7 24 22.4 24 1024.9 24 1022.7 24 10.0 24 7.7 24 13.0 999.9 46.0 32.0 0.95G 999.9 000000 724050 13743 20201216 33.6 24 25.2 24 1024.3 20 1021.4 24 8.0 24 10.0 24 21.0 28.0 43.0 32.0 0.00G 999.9 011000 724050 13743 20201217 33.9 24 27.8 24 1014.2 21 1011.2 24 8.6 24 10.8 24 19.0 28.9 41.0 28.0 1.12G 999.9 011000 724050 13743 20201218 35.3 24 27.1 24 1025.3 23 1022.6 24 9.8 24 5.7 24 8.9 999.9 41.0 28.0 0.01G 999.9 001000 724050 13743 20201219 32.8 24 24.4 24 1030.1 24 1027.8 24 10.0 24 4.9 24 8.9 999.9 39.0 28.0 0.00G 999.9 000000 724050 13743 20201220 38.6 24 32.0 24 1021.9 24 1019.7 24 10.0 24 6.4 24 12.0 18.1 44.1 28.0 0.00G 999.9 000000 724050 13743 20201221 41.6 24 37.3 24 1012.4 21 1010.7 24 8.3 24 4.3 24 8.0 999.9 46.0 35.1 0.00G 999.9 000000 724050 13743 20201222 44.7 24 35.0 24 1012.2 24 1009.9 24 9.7 24 9.3 24 22.0 35.0 51.1 39.0 0.04G 999.9 010000 724050 13743 20201223 40.8 24 29.7 24 1027.5 24 1025.2 24 10.0 24 5.8 24 13.0 15.0 51.1 32.0 0.01G 999.9 000000 724050 13743 20201224 49.5 24 43.4 24 1018.3 22 1014.9 24 9.2 24 7.0 24 19.0 26.0 61.0 32.0 0.00G 999.9 010000 724050 13743 20201225 42.7 24 34.8 24 1003.7 18 999.6 24 9.1 24 11.6 24 22.0 31.1 62.1 28.0 1.48G 999.9 011000 724050 13743 20201226 28.2 24 9.3 24 1016.1 24 1013.8 24 10.0 24 8.7 24 15.9 25.1 36.0* 23.0* 0.18G 999.9 000000 724050 13743 20201227 33.5 24 18.8 24 1024.0 24 1021.7 24 10.0 24 5.0 24 8.9 999.9 43.0 23.0 0.00G 999.9 000000 724050 13743 20201228 41.3 24 30.1 24 1022.7 24 1020.4 24 10.0 24 8.3 24 11.1 999.9 52.0 26.1 0.00G 999.9 000000 724050 13743 20201229 41.2 24 23.0 24 1029.2 24 1026.8 24 10.0 24 10.0 24 18.1 28.0 52.0 34.0 0.00G 999.9 000000 724050 13743 20201230 36.7 24 20.1 24 1032.1 24 1029.8 24 10.0 24 7.1 24 15.0 22.0 46.0 30.9 0.00G 999.9 000000 724050 13743 20201231 48.0 24 37.9 24 1020.7 23 1018.0 24 10.0 24 10.5 24 15.9 26.0 55.0 30.9 0.00G 999.9 010000 fluids-1.0.22/tests/gsod/2020/722324-03071.op0000644000175000017500000014350514302004506016646 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20200101 43.7 24 28.2 24 9999.9 0 914.5 17 10.0 24 8.3 24 17.1 22.9 53.1 36.3 0.00I 999.9 000000 722324 03071 20200102 50.6 24 29.3 24 9999.9 0 905.0 24 10.0 24 11.2 24 19.0 24.1 60.6 41.7 99.99 999.9 010000 722324 03071 20200103 47.9 24 33.0 24 9999.9 0 915.7 24 10.0 24 8.6 22 14.0 20.0 55.4* 41.5* 99.99 999.9 010000 722324 03071 20200104 45.6 24 27.9 24 9999.9 0 926.5 24 10.0 24 5.6 24 12.0 15.9 63.9 31.8 0.00I 999.9 000000 722324 03071 20200105 51.4 24 23.0 24 9999.9 0 926.5 24 10.0 24 6.6 24 15.0 19.0 63.9* 36.0* 0.00I 999.9 000000 722324 03071 20200106 47.0 24 23.0 24 9999.9 0 923.2 24 10.0 24 5.8 24 20.0 26.0 63.1 30.0 0.00I 999.9 000000 722324 03071 20200107 42.7 24 15.6 24 9999.9 0 929.2 24 10.0 24 5.4 24 15.0 19.0 61.3 26.2 0.00I 999.9 000000 722324 03071 20200108 48.1 24 17.2 24 9999.9 0 922.4 24 10.0 24 11.0 24 22.0 27.0 64.0 36.5 0.00I 999.9 000000 722324 03071 20200109 57.6 24 40.6 24 9999.9 0 914.4 24 10.0 24 12.5 24 18.1 26.0 72.5 48.9 0.00I 999.9 000000 722324 03071 20200110 55.2 24 40.2 24 9999.9 0 910.8 24 8.6 24 7.4 24 22.0 29.9 65.7 45.5 0.00I 999.9 000000 722324 03071 20200111 41.3 24 29.6 24 9999.9 0 919.5 24 9.4 24 10.0 24 15.9 22.9 55.9 28.8 99.99 999.9 011000 722324 03071 20200112 48.5 24 22.5 24 9999.9 0 917.9 24 10.0 24 8.2 24 15.0 18.1 62.4 39.2 0.00I 999.9 000000 722324 03071 20200113 52.3 24 32.4 24 9999.9 0 919.3 24 10.0 24 9.4 24 17.1 24.1 73.0 43.2 0.00I 999.9 000000 722324 03071 20200114 50.9 24 31.4 24 9999.9 0 920.1 24 10.0 24 3.9 24 12.0 999.9 76.8 32.2 0.00I 999.9 000000 722324 03071 20200115 56.5 24 35.2 24 9999.9 0 919.0 24 10.0 24 5.1 24 14.0 999.9 71.1 46.2 0.00I 999.9 000000 722324 03071 20200116 46.1 24 32.2 24 9999.9 0 926.4 24 8.0 24 11.4 24 17.1 21.0 60.8 34.0 99.99 999.9 010010 722324 03071 20200117 39.2 24 36.7 24 9999.9 0 923.7 24 7.4 24 6.2 24 13.0 999.9 59.4 33.1 99.99 999.9 011000 722324 03071 20200118 46.3 24 38.4 24 9999.9 0 924.2 24 9.6 24 7.5 24 18.1 22.0 56.5 36.0 0.00I 999.9 000000 722324 03071 20200119 38.4 24 24.0 24 9999.9 0 931.4 24 10.0 24 6.3 24 14.0 18.1 51.1 29.1 0.00I 999.9 000000 722324 03071 20200120 41.7 24 23.1 24 9999.9 0 932.7 24 10.0 24 5.1 24 8.9 17.1 53.8 31.5 0.00I 999.9 000000 722324 03071 20200121 45.6 24 26.2 24 9999.9 0 927.0 24 10.0 24 8.7 24 21.0 28.9 52.7 40.3 99.99 999.9 010000 722324 03071 20200122 49.8 24 41.7 24 9999.9 0 916.6 24 10.0 24 10.8 24 15.0 21.0 65.8 42.3 99.99 999.9 010000 722324 03071 20200123 48.5 24 33.7 24 9999.9 0 917.8 24 10.0 24 7.2 24 15.0 19.0 61.7 36.0 0.00I 999.9 000000 722324 03071 20200124 46.5 24 33.4 24 9999.9 0 921.3 24 10.0 24 4.8 24 13.0 18.1 61.9 32.7 0.00I 999.9 000000 722324 03071 20200125 53.3 24 36.6 24 9999.9 0 917.3 24 10.0 24 8.2 24 14.0 19.0 72.0 44.6 0.00I 999.9 000000 722324 03071 20200126 52.2 24 29.4 24 9999.9 0 918.3 24 10.0 24 5.1 24 9.9 999.9 71.4 35.8 0.00I 999.9 000000 722324 03071 20200127 55.1 24 31.6 24 9999.9 0 915.8 24 10.0 24 6.5 24 19.0 27.0 73.6 37.4 0.00I 999.9 000000 722324 03071 20200128 53.1 24 31.7 24 9999.9 0 914.7 24 9.3 24 15.8 24 25.1 35.0 68.9 42.4 0.00I 999.9 000000 722324 03071 20200129 41.6 24 23.8 24 9999.9 0 920.2 24 10.0 24 6.9 22 15.9 19.0 57.6 28.2 0.00I 999.9 000000 722324 03071 20200130 39.2 24 30.7 24 9999.9 0 919.0 21 9.4 24 7.5 24 14.0 18.1 53.1 32.9 0.00I 999.9 000000 722324 03071 20200131 40.3 24 30.4 24 9999.9 0 921.3 24 9.8 24 5.6 24 14.0 17.1 53.6 31.8 0.00I 999.9 000000 722324 03071 20200201 46.7 24 27.0 24 9999.9 0 925.5 24 9.9 24 9.0 24 14.0 21.0 69.1 33.1 0.00I 999.9 000000 722324 03071 20200202 56.1 24 18.5 24 9999.9 0 921.4 24 10.0 24 8.4 24 15.9 21.0 72.9 39.6 0.00I 999.9 000000 722324 03071 20200203 60.2 24 25.0 24 9999.9 0 910.5 24 10.0 24 11.1 23 15.9 21.0 74.1 51.3 99.99 999.9 010000 722324 03071 20200204 48.5 24 41.6 24 9999.9 0 910.0 24 9.0 24 10.3 24 17.1 22.9 70.0 34.2 99.99 999.9 010000 722324 03071 20200205 26.8 24 23.8 24 9999.9 0 916.5 24 4.6 24 10.0 24 15.9 27.0 34.5 23.4 99.99 999.9 111000 722324 03071 20200206 25.1 24 18.7 24 9999.9 0 912.7 24 8.6 24 6.3 24 17.1 22.0 48.0 13.5 0.00I 999.9 100000 722324 03071 20200207 44.1 24 28.1 24 9999.9 0 912.2 24 10.0 24 8.5 23 14.0 17.1 52.3 37.9 0.00I 999.9 000000 722324 03071 20200208 43.3 24 32.6 24 9999.9 0 918.9 24 10.0 24 7.2 24 14.0 999.9 64.6 32.0 0.00I 999.9 000000 722324 03071 20200209 59.4 24 44.1 24 9999.9 0 914.8 24 9.9 24 10.2 24 17.1 24.1 73.2 53.4 0.00I 999.9 000000 722324 03071 20200210 46.3 24 33.9 24 9999.9 0 918.2 24 10.0 24 8.7 24 15.9 20.0 69.1 36.0 99.99 999.9 010000 722324 03071 20200211 36.2 24 34.8 24 9999.9 0 920.2 24 4.2 24 12.3 24 19.0 22.0 47.7 32.4 99.99 999.9 110000 722324 03071 20200212 38.2 24 31.9 24 9999.9 0 916.0 24 8.1 24 9.8 24 22.0 28.0 56.3 32.2 99.99 999.9 010000 722324 03071 20200213 39.3 24 29.2 24 9999.9 0 922.2 24 10.0 24 5.8 24 12.0 15.9 52.9 28.8 0.00I 999.9 000000 722324 03071 20200214 37.2 24 32.0 24 9999.9 0 925.3 24 8.8 24 10.0 24 14.0 19.0 53.2 31.3 0.00I 999.9 000000 722324 03071 20200215 49.5 24 37.6 24 9999.9 0 920.8 24 10.0 24 8.2 24 13.0 21.0 70.9 38.1 0.00I 999.9 000000 722324 03071 20200216 58.7 24 32.9 24 9999.9 0 917.8 24 10.0 24 7.3 24 14.0 20.0 75.4 42.3 0.00I 999.9 000000 722324 03071 20200217 61.2 24 26.8 24 9999.9 0 912.8 24 10.0 24 6.9 24 12.0 999.9 76.5 48.0 0.00I 999.9 000000 722324 03071 20200218 51.1 24 36.6 24 9999.9 0 917.9 24 9.8 24 9.4 24 18.1 24.1 72.5 42.6 0.00I 999.9 000000 722324 03071 20200219 41.7 24 31.3 24 9999.9 0 925.6 24 10.0 24 6.9 24 9.9 999.9 50.2 36.7 99.99 999.9 010000 722324 03071 20200220 39.7 24 35.1 24 9999.9 0 928.5 24 6.3 24 11.0 23 18.1 22.9 42.8 36.7 99.99 999.9 010000 722324 03071 20200221 35.0 24 27.5 24 9999.9 0 936.1 24 9.9 24 5.3 24 9.9 999.9 48.7 26.8 0.00I 999.9 000000 722324 03071 20200222 47.0 24 33.8 24 9999.9 0 925.5 24 10.0 24 8.7 24 14.0 15.0 63.7 39.9 0.00I 999.9 000000 722324 03071 20200223 52.4 24 41.0 24 9999.9 0 917.3 24 10.0 24 8.8 24 27.0 33.0 69.3 46.6 99.99 999.9 010000 722324 03071 20200224 57.2 24 27.2 24 9999.9 0 914.5 24 10.0 24 12.3 24 21.0 31.1 72.0 42.3 0.00I 999.9 000000 722324 03071 20200225 48.7 24 24.8 24 9999.9 0 917.0 24 9.9 24 9.9 24 17.1 27.0 69.6 33.4 0.00I 999.9 000000 722324 03071 20200226 35.8 24 13.9 24 9999.9 0 931.1 24 9.9 24 11.6 24 22.9 31.1 48.0 24.1 0.00I 999.9 000000 722324 03071 20200227 43.3 24 12.6 24 9999.9 0 927.1 24 10.0 24 7.2 24 15.0 20.0 66.0 30.7 0.00I 999.9 000000 722324 03071 20200228 50.5 24 19.4 24 9999.9 0 926.4 24 10.0 24 4.1 24 12.0 19.0 73.0 29.8 0.00I 999.9 000000 722324 03071 20200229 59.3 24 20.6 24 9999.9 0 923.0 23 10.0 24 9.1 24 22.0 25.1 74.7 50.2 0.00I 999.9 000000 722324 03071 20200301 62.1 24 32.9 24 9999.9 0 913.8 19 10.0 24 11.8 24 19.0 26.0 72.1 52.3 0.00I 999.9 000000 722324 03071 20200302 64.6 24 29.6 24 9999.9 0 912.8 24 10.0 24 8.5 24 15.0 22.9 71.1 60.1 0.00I 999.9 000000 722324 03071 20200303 59.2 24 43.3 24 9999.9 0 912.5 24 10.0 24 9.7 24 18.1 25.1 67.1 52.7 99.99 999.9 010000 722324 03071 20200304 49.0 24 46.2 24 9999.9 0 915.1 24 8.0 24 11.1 24 21.0 26.0 53.6* 46.2* 99.99 999.9 010010 722324 03071 20200305 49.1 24 38.2 24 9999.9 0 925.3 24 10.0 24 8.8 24 17.1 21.0 70.2 38.7 0.00I 999.9 000000 722324 03071 20200306 52.1 24 36.7 24 9999.9 0 931.4 24 10.0 24 8.0 24 15.9 21.0 66.2 40.8 0.00I 999.9 000000 722324 03071 20200307 56.3 24 36.9 24 9999.9 0 925.8 24 10.0 24 11.0 24 19.0 25.1 71.1 45.5 0.00I 999.9 000000 722324 03071 20200308 57.9 24 44.1 24 9999.9 0 920.0 24 10.0 24 13.8 24 20.0 26.0 67.5 52.5 99.99 999.9 010000 722324 03071 20200309 60.7 24 48.0 24 9999.9 0 920.0 24 10.0 24 11.9 24 19.0 26.0 73.9 53.4 99.99 999.9 010000 722324 03071 20200310 63.6 24 49.9 24 9999.9 0 923.9 24 8.8 24 6.9 24 12.0 15.9 77.7 54.7 0.00I 999.9 000000 722324 03071 20200311 66.5 24 54.7 24 9999.9 0 920.9 24 7.8 24 6.2 24 13.0 999.9 80.4* 57.7* 0.00I 999.9 100000 722324 03071 20200312 69.6 24 52.3 24 9999.9 0 915.0 24 10.0 24 6.0 24 9.9 999.9 79.0 61.5 99.99 999.9 010000 722324 03071 20200313 58.6 24 55.3 24 9999.9 0 916.4 24 8.4 24 7.4 24 24.1 42.0 68.2* 52.9* 99.99 999.9 110000 722324 03071 20200314 54.8 24 51.5 24 9999.9 0 919.5 24 3.6 24 7.3 24 12.0 999.9 69.1* 50.5* 99.99 999.9 110000 722324 03071 20200315 53.0 24 50.6 24 9999.9 0 924.5 24 3.7 24 10.3 24 15.0 18.1 67.5 48.0 99.99 999.9 110010 722324 03071 20200316 51.2 24 49.8 24 9999.9 0 921.7 24 4.4 24 6.4 24 17.1 22.9 68.0* 45.9* 99.99 999.9 110000 722324 03071 20200317 64.6 24 58.0 24 9999.9 0 918.4 24 8.0 24 8.9 24 20.0 27.0 78.1 54.3 0.00I 999.9 000000 722324 03071 20200318 64.7 24 54.4 24 9999.9 0 916.3 24 9.9 24 6.5 24 14.0 32.1 79.0 54.7 99.99 999.9 010010 722324 03071 20200319 63.7 24 50.6 24 9999.9 0 914.6 24 10.0 24 10.6 24 24.1 27.0 71.2 56.5 99.99 999.9 010010 722324 03071 20200320 53.0 24 33.1 24 9999.9 0 924.3 24 10.0 24 10.5 24 17.1 25.1 65.5 41.2 99.99 999.9 010000 722324 03071 20200321 42.3 24 37.0 24 9999.9 0 927.5 24 7.0 24 9.1 24 12.0 15.9 54.7 38.1 99.99 999.9 010000 722324 03071 20200322 48.7 24 44.7 24 9999.9 0 921.7 24 7.4 24 4.9 24 9.9 999.9 69.6 42.3 99.99 999.9 010000 722324 03071 20200323 62.7 24 48.7 24 9999.9 0 918.0 24 9.8 24 5.7 24 9.9 14.0 83.7 48.6 0.00I 999.9 000000 722324 03071 20200324 67.6 24 41.0 24 9999.9 0 916.3 24 10.0 24 10.5 24 19.0 24.1 81.5 53.6 0.00I 999.9 000000 722324 03071 20200325 69.0 24 29.7 24 9999.9 0 915.5 24 10.0 24 7.4 24 21.0 25.1 90.5 49.3 0.00I 999.9 000000 722324 03071 20200326 74.1 24 41.3 24 9999.9 0 912.5 24 10.0 24 5.6 24 14.0 20.0 93.0 55.0 0.00I 999.9 000000 722324 03071 20200327 73.7 24 47.8 24 9999.9 0 910.1 24 10.0 24 6.9 24 15.9 21.0 87.8 64.6 0.00I 999.9 000000 722324 03071 20200328 63.4 24 26.2 24 9999.9 0 913.9 24 10.0 24 13.2 24 22.0 28.0 77.2 46.2 0.00I 999.9 000000 722324 03071 20200329 56.1 24 25.3 24 9999.9 0 920.2 24 10.0 24 5.7 24 14.0 22.0 71.2 41.2 0.00I 999.9 000000 722324 03071 20200330 64.2 24 35.1 24 9999.9 0 916.6 24 10.0 24 10.1 24 22.0 32.1 80.1 55.8 0.00I 999.9 000000 722324 03071 20200331 61.6 24 25.4 24 9999.9 0 919.3 23 10.0 24 8.0 24 17.1 24.1 76.1 43.7 0.00I 999.9 000000 722324 03071 20200401 64.2 24 40.8 24 9999.9 0 913.8 19 10.0 24 10.8 24 19.0 24.1 74.3 55.9 0.00I 999.9 000000 722324 03071 20200402 70.2 24 45.1 24 9999.9 0 911.4 24 10.0 24 11.6 24 19.0 25.1 85.5 58.8 0.00I 999.9 000000 722324 03071 20200403 57.2 24 34.6 24 9999.9 0 915.7 24 10.0 24 10.8 24 18.1 25.1 82.8 38.7 0.00I 999.9 000000 722324 03071 20200404 44.9 24 35.8 24 9999.9 0 919.2 24 9.3 24 10.4 24 14.0 17.1 56.7 38.3 99.99 999.9 010010 722324 03071 20200405 54.7 24 47.6 24 9999.9 0 916.7 24 7.3 24 7.2 24 14.0 19.0 77.9 46.4 0.00I 999.9 100000 722324 03071 20200406 64.1 24 57.0 24 9999.9 0 915.9 24 10.0 24 10.9 24 17.1 24.1 74.5 59.5 99.99 999.9 010000 722324 03071 20200407 70.7 24 49.7 24 9999.9 0 916.9 24 10.0 24 8.7 24 13.0 20.0 83.8* 60.8* 0.00I 999.9 000000 722324 03071 20200408 73.4 24 40.3 24 9999.9 0 916.4 24 10.0 24 6.8 24 15.0 21.0 87.6 58.5 0.00I 999.9 000000 722324 03071 20200409 70.3 24 42.5 24 9999.9 0 916.7 24 10.0 24 5.0 24 12.0 15.0 84.6 60.1 99.99 999.9 010000 722324 03071 20200410 60.3 24 48.5 24 9999.9 0 918.4 24 10.0 24 8.7 24 15.0 21.0 76.1 46.9 0.00I 999.9 000000 722324 03071 20200411 67.9 24 56.7 24 9999.9 0 912.0 24 9.2 24 8.7 24 14.0 20.0 83.3 59.0 99.99 999.9 010010 722324 03071 20200412 66.3 24 32.3 24 9999.9 0 906.4 24 10.0 24 12.1 24 27.0 35.0 81.0 52.9 99.99 999.9 010000 722324 03071 20200413 46.6 24 27.1 24 9999.9 0 919.7 24 10.0 24 11.0 24 18.1 22.0 64.9 33.8 0.00I 999.9 000000 722324 03071 20200414 43.3 24 28.1 24 9999.9 0 922.8 24 10.0 24 10.4 24 17.1 22.9 57.0 34.5 0.00I 999.9 000000 722324 03071 20200415 50.4 24 33.7 24 9999.9 0 922.2 24 10.0 24 9.1 24 15.9 22.9 70.9 40.6 0.00I 999.9 000000 722324 03071 20200416 62.9 24 42.3 24 9999.9 0 916.5 24 10.0 24 13.3 24 19.0 27.0 82.6 50.2 0.00I 999.9 000000 722324 03071 20200417 56.6 24 41.6 24 9999.9 0 918.2 24 10.0 24 11.7 24 21.0 27.0 77.2 43.7 0.00I 999.9 000000 722324 03071 20200418 51.8 24 42.9 24 9999.9 0 918.7 24 8.7 24 5.5 24 9.9 999.9 74.1 42.8 0.00I 999.9 000000 722324 03071 20200419 68.8 24 41.8 24 9999.9 0 912.0 24 10.0 24 9.9 24 20.0 26.0 82.6 58.6 0.00I 999.9 000000 722324 03071 20200420 70.6 24 26.6 24 9999.9 0 913.5 24 9.7 24 6.7 24 18.1 22.9 87.3 52.5 0.00I 999.9 000000 722324 03071 20200421 72.4 24 38.6 24 9999.9 0 914.8 24 10.0 24 4.7 24 14.0 19.0 91.8 50.2 0.00I 999.9 000000 722324 03071 20200422 76.3 24 42.7 24 9999.9 0 911.2 24 9.0 24 12.2 24 22.0 31.1 90.1 63.3 0.00I 999.9 000000 722324 03071 20200423 71.0 24 36.0 24 9999.9 0 913.5 24 10.0 24 8.0 24 17.1 22.9 86.9 52.0 0.00I 999.9 000000 722324 03071 20200424 75.6 24 28.6 24 9999.9 0 911.5 24 10.0 24 10.6 24 24.1 28.9 87.8 63.0 0.00I 999.9 000000 722324 03071 20200425 66.3 24 35.7 24 9999.9 0 919.9 24 10.0 24 7.9 24 15.0 20.0 84.4 49.3 0.00I 999.9 000000 722324 03071 20200426 68.8 24 38.7 24 9999.9 0 922.2 24 10.0 24 11.4 24 21.0 27.0 87.1 54.0 0.00I 999.9 000000 722324 03071 20200427 77.4 24 48.2 24 9999.9 0 916.5 24 10.0 24 11.2 24 18.1 24.1 95.2 65.8 0.00I 999.9 000000 722324 03071 20200428 80.8 24 47.3 24 9999.9 0 914.0 24 10.0 24 11.1 24 17.1 27.0 99.9 68.0 0.00I 999.9 000000 722324 03071 20200429 74.8 24 37.4 24 9999.9 0 919.7 24 10.0 24 11.5 24 25.1 31.1 96.1 61.3 0.00I 999.9 000000 722324 03071 20200430 71.9 24 34.9 24 9999.9 0 922.1 23 10.0 24 5.7 24 15.9 24.1 90.9* 52.7* 0.00I 999.9 000000 722324 03071 20200501 81.2 24 45.1 24 9999.9 0 915.0 19 10.0 24 11.3 24 20.0 28.0 99.9 68.2 99.99 999.9 010000 722324 03071 20200502 85.7 24 41.0 24 9999.9 0 915.2 24 10.0 24 11.6 24 18.1 26.0 102.2 70.7 0.00I 999.9 000000 722324 03071 20200503 86.0 24 41.6 24 9999.9 0 915.4 24 10.0 24 8.5 24 20.0 27.0 100.4 71.1 0.00I 999.9 000000 722324 03071 20200504 87.6 24 44.0 24 9999.9 0 913.0 24 10.0 24 9.0 24 15.9 25.1 102.4 72.9 0.00I 999.9 000000 722324 03071 20200505 77.3 24 39.0 24 9999.9 0 918.0 24 9.6 24 13.6 24 28.9 36.9 99.9 64.2 0.00I 999.9 000000 722324 03071 20200506 69.9 24 37.5 24 9999.9 0 923.3 24 10.0 24 8.8 24 13.0 18.1 86.5 57.2 0.00I 999.9 000000 722324 03071 20200507 77.6 24 51.9 24 9999.9 0 917.1 24 10.0 24 13.9 24 22.9 29.9 97.3 64.2 0.00I 999.9 000000 722324 03071 20200508 73.2 24 40.7 24 9999.9 0 917.6 24 9.8 24 17.6 24 27.0 34.0 91.0 62.2 0.00I 999.9 000000 722324 03071 20200509 62.0 24 38.5 24 9999.9 0 923.1 24 10.0 24 7.7 24 15.0 18.1 81.3 49.3 0.00I 999.9 000000 722324 03071 20200510 68.3 24 46.9 24 9999.9 0 922.2 24 10.0 24 10.7 24 18.1 24.1 81.7 56.7 0.00I 999.9 000000 722324 03071 20200511 71.4 24 48.9 24 9999.9 0 920.6 24 10.0 24 11.6 24 18.1 25.1 83.3 57.7 0.00I 999.9 000000 722324 03071 20200512 71.8 24 53.4 24 9999.9 0 915.9 24 10.0 24 9.3 24 29.9 42.0 90.9 57.2 99.99 999.9 010010 722324 03071 20200513 78.8 24 56.3 24 9999.9 0 913.4 24 10.0 24 12.8 24 22.9 34.0 93.0 67.6 99.99 999.9 010010 722324 03071 20200514 77.9 24 51.5 24 9999.9 0 913.0 24 10.0 24 12.2 24 20.0 25.1 95.7 66.4 0.00I 999.9 000000 722324 03071 20200515 80.9 24 55.7 24 9999.9 0 911.5 24 9.9 24 8.9 24 27.0 41.0 91.4 63.1 99.99 999.9 010010 722324 03071 20200516 66.5 24 56.3 24 9999.9 0 913.1 24 9.9 24 9.3 24 19.0 28.0 81.7 59.9 99.99 999.9 010010 722324 03071 20200517 72.7 24 54.5 24 9999.9 0 917.2 24 10.0 24 7.2 24 13.0 21.0 91.9 59.0 0.00I 999.9 000000 722324 03071 20200518 81.6 24 49.9 24 9999.9 0 915.5 24 10.0 24 6.9 24 12.0 19.0 102.0 64.0 0.00I 999.9 000000 722324 03071 20200519 89.1 24 49.5 24 9999.9 0 912.4 24 10.0 24 11.5 23 18.1 26.0 105.8 71.2 0.00I 999.9 000000 722324 03071 20200520 84.8 24 51.1 24 9999.9 0 911.7 24 10.0 24 8.3 24 17.1 21.0 101.1 67.8 0.00I 999.9 000000 722324 03071 20200521 80.2 24 48.6 24 9999.9 0 911.6 24 9.9 24 10.1 24 20.0 31.1 97.5 63.3 0.00I 999.9 000000 722324 03071 20200522 83.6 24 47.1 24 9999.9 0 912.1 24 9.9 24 8.4 24 15.9 27.0 97.7 68.9 0.00I 999.9 000000 722324 03071 20200523 83.3 24 54.7 24 9999.9 0 911.4 24 10.0 24 10.5 24 24.1 41.0 95.9 70.2 0.00I 999.9 000000 722324 03071 20200524 78.6 24 52.7 24 9999.9 0 911.1 24 10.0 24 11.0 24 28.0 33.0 95.0 64.8 0.00I 999.9 000000 722324 03071 20200525 69.5 24 51.4 24 9999.9 0 911.6 24 9.7 24 10.0 24 19.0 38.1 86.7* 61.0* 0.00I 999.9 000000 722324 03071 20200526 67.1 24 48.5 24 9999.9 0 918.0 24 10.0 24 5.5 24 9.9 21.0 83.8 52.5 0.00I 999.9 000000 722324 03071 20200527 78.3 24 42.3 24 9999.9 0 914.8 24 10.0 24 7.2 24 13.0 15.9 97.9 62.8 0.00I 999.9 000000 722324 03071 20200528 77.9 24 50.0 24 9999.9 0 917.1 24 8.1 24 7.3 24 18.1 22.9 93.7 62.8 0.00I 999.9 000000 722324 03071 20200529 75.3 24 48.4 24 9999.9 0 923.7 24 10.0 24 7.3 24 14.0 19.0 89.1 59.9 0.00I 999.9 000000 722324 03071 20200530 76.9 24 45.9 24 9999.9 0 923.3 24 10.0 24 8.1 24 15.9 20.0 90.5 63.1 0.00I 999.9 000000 722324 03071 20200531 76.5 24 49.5 24 9999.9 0 922.0 21 10.0 24 9.0 24 17.1 26.0 88.3 61.5 0.00I 999.9 000000 722324 03071 20200601 75.2 24 58.2 24 9999.9 0 921.7 24 9.9 24 9.0 24 17.1 24.1 86.9 66.7 0.00I 999.9 000000 722324 03071 20200602 74.6 24 61.5 24 9999.9 0 920.1 24 10.0 24 8.6 24 15.0 20.0 90.7 65.3 0.00I 999.9 000000 722324 03071 20200603 79.9 24 60.7 24 9999.9 0 918.2 24 10.0 24 8.5 24 13.0 17.1 94.5 68.0 0.00I 999.9 000000 722324 03071 20200604 84.7 24 59.2 24 9999.9 0 915.4 24 10.0 24 9.1 24 15.0 19.0 99.9 72.0 0.00I 999.9 000000 722324 03071 20200605 86.1 24 59.3 24 9999.9 0 915.8 24 10.0 24 11.4 24 22.0 27.0 99.9 72.9 0.00I 999.9 000000 722324 03071 20200606 84.8 24 58.8 24 9999.9 0 916.3 24 10.0 24 11.2 24 19.0 25.1 97.0 71.4 0.00I 999.9 000000 722324 03071 20200607 85.0 24 54.9 24 9999.9 0 912.9 24 9.8 24 11.8 24 19.0 22.9 98.8 71.1 0.00I 999.9 000000 722324 03071 20200608 87.6 24 55.0 24 9999.9 0 909.6 24 10.0 24 9.0 24 15.0 20.0 105.8 73.2 0.00I 999.9 000000 722324 03071 20200609 84.6 24 25.0 24 9999.9 0 911.9 24 9.2 24 14.5 24 28.0 34.0 103.6 68.5 0.00I 999.9 000000 722324 03071 20200610 74.7 24 32.6 24 9999.9 0 921.2 24 9.3 24 6.9 24 11.1 19.0 92.8 55.9 0.00I 999.9 000000 722324 03071 20200611 82.2 24 42.3 24 9999.9 0 924.6 24 10.0 24 12.5 24 18.1 27.0 95.5 69.6 0.00I 999.9 000000 722324 03071 20200612 82.5 24 38.7 24 9999.9 0 926.3 24 10.0 24 10.4 24 17.1 22.9 95.7 66.0 0.00I 999.9 000000 722324 03071 20200613 82.0 24 39.7 24 9999.9 0 922.9 24 10.0 24 10.9 24 17.1 25.1 95.4 66.2 0.00I 999.9 000000 722324 03071 20200614 81.8 24 44.8 24 9999.9 0 920.5 24 10.0 24 11.3 24 17.1 22.9 93.4 69.4 0.00I 999.9 000000 722324 03071 20200615 79.9 24 45.4 24 9999.9 0 921.5 24 10.0 24 10.9 24 15.0 26.0 92.3 68.0 0.00I 999.9 000000 722324 03071 20200616 81.4 24 55.4 24 9999.9 0 920.6 24 10.0 24 11.5 24 15.9 22.9 93.2 70.0 0.00I 999.9 000000 722324 03071 20200617 83.7 24 59.5 24 9999.9 0 916.9 24 10.0 24 13.4 24 20.0 31.1 98.2 72.1 99.99 999.9 010000 722324 03071 20200618 84.1 24 56.9 24 9999.9 0 914.5 24 9.8 24 11.3 24 21.0 28.0 103.3 72.7 99.99 999.9 010000 722324 03071 20200619 84.0 24 60.9 24 9999.9 0 914.8 24 9.8 24 13.6 24 25.1 40.0 99.1 71.8 99.99 999.9 010010 722324 03071 20200620 80.3 24 62.5 24 9999.9 0 916.5 24 10.0 24 11.2 24 17.1 22.9 95.9 68.0 0.00I 999.9 000000 722324 03071 20200621 86.5 24 56.8 24 9999.9 0 914.9 24 10.0 24 9.9 24 18.1 25.1 104.7 74.5 99.99 999.9 010010 722324 03071 20200622 90.5 24 55.5 24 9999.9 0 912.5 24 10.0 24 12.5 24 20.0 27.0 106.3 77.2 0.00I 999.9 000000 722324 03071 20200623 80.9 24 59.1 24 9999.9 0 916.5 24 9.4 24 9.8 24 24.1 34.0 103.3 68.0 0.14G 999.9 010010 722324 03071 20200624 81.4 24 55.3 24 9999.9 0 918.3 24 10.0 24 7.8 24 14.0 19.0 94.5 70.5 0.01G 999.9 000000 722324 03071 20200625 82.5 24 52.3 24 9999.9 0 917.3 24 10.0 24 8.0 24 14.0 21.0 96.8 68.7 0.00G 999.9 000000 722324 03071 20200626 86.2 24 55.9 24 9999.9 0 917.4 24 10.0 24 10.2 24 17.1 24.1 97.9 73.9 0.00I 999.9 000000 722324 03071 20200627 83.7 24 61.7 24 9999.9 0 916.5 24 9.8 24 11.8 24 18.1 22.9 96.8 72.3 0.00I 999.9 000000 722324 03071 20200628 85.7 24 58.5 24 9999.9 0 911.8 24 8.9 24 11.7 24 19.0 22.9 100.0 75.7 0.00I 999.9 000000 722324 03071 20200629 89.2 24 55.8 24 9999.9 0 910.4 24 10.0 24 13.7 24 22.0 27.0 103.3 76.8 0.00I 999.9 000000 722324 03071 20200630 88.9 24 58.0 24 9999.9 0 912.1 24 10.0 24 11.2 24 18.1 26.0 104.0 75.7 0.00I 999.9 000000 722324 03071 20200701 90.3 24 57.3 24 9999.9 0 913.8 19 10.0 24 8.4 24 17.1 24.1 104.0 77.7 0.00I 999.9 000000 722324 03071 20200702 83.3 24 61.2 24 9999.9 0 916.2 24 10.0 24 11.1 24 22.0 31.1 99.7 72.5 99.99 999.9 010010 722324 03071 20200703 84.0 24 62.1 24 9999.9 0 917.9 24 7.8 24 10.9 24 36.9 44.1 98.1 72.9 1.44G 999.9 010010 722324 03071 20200704 87.2 24 54.3 24 9999.9 0 917.9 24 9.2 24 5.3 24 11.1 15.0 99.9 74.5 0.00G 999.9 000000 722324 03071 20200705 87.8 24 55.9 24 9999.9 0 915.9 24 9.6 24 7.3 24 15.9 27.0 100.0 75.7 0.00I 999.9 000000 722324 03071 20200706 80.5 24 63.6 24 9999.9 0 916.6 24 9.6 24 7.3 24 22.0 27.0 99.0 69.4 0.03G 999.9 010010 722324 03071 20200707 83.6 24 65.0 24 9999.9 0 917.4 24 10.0 24 5.8 24 14.0 18.1 97.0 72.3 0.00G 999.9 000000 722324 03071 20200708 85.4 24 61.4 24 9999.9 0 915.7 24 10.0 24 8.7 24 18.1 20.0 101.8 72.5 0.00I 999.9 000000 722324 03071 20200709 91.3 24 60.2 24 9999.9 0 913.8 24 10.0 24 11.2 24 14.0 20.0 105.4 79.3 0.00I 999.9 000000 722324 03071 20200710 91.7 24 61.0 24 9999.9 0 916.5 24 10.0 24 10.2 24 17.1 22.0 104.9 77.5 0.00I 999.9 000000 722324 03071 20200711 92.5 24 60.0 24 9999.9 0 918.7 24 10.0 24 10.3 24 15.9 22.0 106.9 78.6 0.00I 999.9 000000 722324 03071 20200712 93.6 24 48.9 24 9999.9 0 917.6 24 10.0 24 10.1 24 17.1 26.0 105.8 78.1 0.00I 999.9 000000 722324 03071 20200713 94.1 24 44.5 24 9999.9 0 915.4 24 10.0 24 10.5 24 15.9 22.0 109.9 80.1 0.00I 999.9 000000 722324 03071 20200714 97.5 24 43.8 24 9999.9 0 913.7 24 10.0 24 12.3 24 19.0 28.0 111.0 85.8 0.00I 999.9 000000 722324 03071 20200715 94.3 24 44.8 24 9999.9 0 915.1 24 10.0 24 10.8 24 18.1 22.9 107.4 81.5 0.00I 999.9 000000 722324 03071 20200716 90.7 24 52.1 24 9999.9 0 918.4 24 10.0 24 9.9 24 19.0 24.1 103.3 78.6 0.00I 999.9 000000 722324 03071 20200717 89.9 24 55.5 24 9999.9 0 919.3 24 10.0 24 9.7 24 18.1 21.0 102.9 76.6 0.00I 999.9 000000 722324 03071 20200718 89.4 24 57.0 24 9999.9 0 918.2 24 9.9 24 10.5 24 15.0 21.0 100.4 76.8 0.00I 999.9 000000 722324 03071 20200719 85.3 24 60.3 24 9999.9 0 917.9 24 10.0 24 10.3 24 15.9 22.0 98.2 73.0 0.00I 999.9 000000 722324 03071 20200720 85.8 24 56.8 24 9999.9 0 917.3 24 10.0 24 9.0 24 15.9 21.0 97.0 75.2 0.00I 999.9 000000 722324 03071 20200721 87.3 24 56.7 24 9999.9 0 916.2 24 10.0 24 8.5 24 15.9 20.0 99.0 77.5 0.00I 999.9 000000 722324 03071 20200722 83.7 24 61.6 24 9999.9 0 917.4 24 9.9 24 8.6 24 22.9 29.9 98.4 75.6 0.02A 999.9 010010 722324 03071 20200723 82.5 24 63.7 24 9999.9 0 917.9 24 10.0 24 8.4 24 17.1 24.1 96.1 73.4 0.00I 999.9 000000 722324 03071 20200724 84.5 24 63.8 24 9999.9 0 917.9 24 10.0 24 8.7 24 15.9 20.0 99.1 75.2 99.99 999.9 010000 722324 03071 20200725 87.0 24 61.8 24 9999.9 0 917.4 24 10.0 24 9.6 24 15.9 21.0 97.9 76.8 0.00I 999.9 000000 722324 03071 20200726 83.5 24 63.0 24 9999.9 0 919.4 24 10.0 24 10.3 24 15.0 22.9 95.0 72.3 0.00I 999.9 000000 722324 03071 20200727 84.7 24 61.4 24 9999.9 0 920.0 24 10.0 24 8.7 24 13.0 19.0 95.7 73.6 0.00I 999.9 000000 722324 03071 20200728 87.3 24 59.5 24 9999.9 0 917.9 24 10.0 24 6.8 24 11.1 15.9 99.1 77.9 0.00I 999.9 000000 722324 03071 20200729 87.0 24 60.3 24 9999.9 0 916.3 24 10.0 24 11.0 24 20.0 25.1 101.8 77.9 0.00I 999.9 000000 722324 03071 20200730 87.6 24 59.5 24 9999.9 0 916.4 16 10.0 24 11.2 24 15.9 21.0 102.0 74.5 0.00I 999.9 000000 722324 03071 20200731 82.8 24 60.9 24 9999.9 0 9999.9 0 9.9 24 9.9 24 19.0 25.1 100.0 71.2 0.01G 999.9 010010 722324 03071 20200801 84.1 24 56.6 24 9999.9 0 920.1 18 10.0 24 4.5 24 8.9 15.9 97.5 71.8 0.00I 999.9 000000 722324 03071 20200802 85.3 24 51.6 24 9999.9 0 919.5 24 10.0 24 4.9 24 13.0 17.1 99.7 71.4 0.00I 999.9 000000 722324 03071 20200803 80.9 24 58.2 24 9999.9 0 920.4 24 9.9 24 9.1 24 21.0 28.9 97.7 67.6 0.15G 999.9 010010 722324 03071 20200804 84.4 24 57.2 24 9999.9 0 919.1 24 9.9 24 7.7 24 14.0 19.0 101.3 70.7 0.00I 999.9 000000 722324 03071 20200805 89.8 24 52.1 24 9999.9 0 917.2 24 10.0 24 10.7 24 18.1 24.1 103.5 77.0 0.00I 999.9 000000 722324 03071 20200806 88.8 24 55.6 24 9999.9 0 916.6 24 10.0 24 11.5 24 18.1 24.1 101.8 76.3 0.00I 999.9 000000 722324 03071 20200807 87.8 24 58.4 24 9999.9 0 917.6 24 10.0 24 12.7 24 19.0 25.1 100.0 75.9 0.00I 999.9 000000 722324 03071 20200808 87.2 24 59.2 24 9999.9 0 919.8 24 10.0 24 10.4 24 17.1 24.1 98.8 75.7 0.00I 999.9 000000 722324 03071 20200809 86.5 24 59.7 24 9999.9 0 919.6 24 10.0 24 11.6 24 20.0 25.1 100.0 74.7 0.00I 999.9 000000 722324 03071 20200810 86.9 24 59.1 24 9999.9 0 918.1 24 10.0 24 11.9 24 18.1 22.9 101.3 74.7 0.00I 999.9 000000 722324 03071 20200811 88.4 24 57.5 24 9999.9 0 916.6 24 10.0 24 11.3 24 15.9 22.0 102.4 75.9 0.00I 999.9 000000 722324 03071 20200812 89.8 24 55.1 24 9999.9 0 916.5 24 10.0 24 9.4 24 14.0 18.1 103.5* 76.6* 0.00I 999.9 000000 722324 03071 20200813 91.5 24 54.5 24 9999.9 0 916.8 24 10.0 24 10.9 24 15.9 20.0 105.1 77.2 0.00I 999.9 000000 722324 03071 20200814 92.1 24 50.0 24 9999.9 0 916.6 24 10.0 24 8.7 24 14.0 18.1 108.1 77.7 0.00I 999.9 000000 722324 03071 20200815 94.4 24 48.1 24 9999.9 0 917.1 24 10.0 24 5.6 24 14.0 22.9 105.3 81.5 99.99 999.9 010000 722324 03071 20200816 88.0 24 54.6 24 9999.9 0 920.4 24 9.8 24 8.9 24 18.1 27.0 101.3 77.2 99.99 999.9 010000 722324 03071 20200817 81.0 24 56.9 24 9999.9 0 923.4 24 9.9 24 7.2 24 15.0 20.0 92.3 67.8 0.06G 999.9 010010 722324 03071 20200818 82.5 24 54.5 24 9999.9 0 922.8 24 9.9 24 4.8 24 14.0 19.0 96.1 68.9 0.25G 999.9 000000 722324 03071 20200819 84.6 24 53.8 24 9999.9 0 919.2 24 10.0 24 4.5 24 11.1 15.9 97.9 69.8 0.00G 999.9 000000 722324 03071 20200820 86.9 24 46.5 24 9999.9 0 915.9 24 10.0 24 8.3 24 15.9 20.0 99.7 75.9 0.00I 999.9 000000 722324 03071 20200821 84.4 24 52.2 24 9999.9 0 914.1 24 10.0 24 10.0 24 17.1 22.9 99.0 70.5 0.00I 999.9 000000 722324 03071 20200822 87.1 24 54.6 24 9999.9 0 915.0 24 10.0 24 6.8 24 12.0 17.1 98.4 75.6 0.00I 999.9 000000 722324 03071 20200823 85.8 24 56.3 24 9999.9 0 917.4 24 10.0 24 7.8 24 13.0 24.1 97.0 74.3 0.00I 999.9 000000 722324 03071 20200824 83.3 24 51.5 24 9999.9 0 919.5 24 10.0 24 8.2 24 15.0 19.0 94.8 70.7 0.00I 999.9 000000 722324 03071 20200825 82.6 24 53.3 24 9999.9 0 919.4 24 9.9 24 5.2 24 11.1 19.0 94.8 70.2 0.00I 999.9 000000 722324 03071 20200826 84.4 24 50.5 24 9999.9 0 916.8 24 10.0 24 5.6 24 11.1 15.0 96.1 72.0 0.00I 999.9 000000 722324 03071 20200827 85.5 24 53.7 24 9999.9 0 914.8 24 10.0 24 7.1 24 13.0 17.1 99.5 73.2 0.00I 999.9 000000 722324 03071 20200828 89.3 24 53.5 24 9999.9 0 914.2 24 10.0 24 8.4 24 14.0 20.0 103.3 77.0 0.00I 999.9 000000 722324 03071 20200829 90.5 24 54.9 24 9999.9 0 914.8 24 10.0 24 6.8 24 15.9 21.0 103.1 77.7 0.00I 999.9 000000 722324 03071 20200830 90.0 24 54.2 24 9999.9 0 912.8 24 10.0 24 8.1 24 13.0 20.0 103.8 75.0 0.00I 999.9 000000 722324 03071 20200831 91.0 24 57.7 24 9999.9 0 911.1 23 10.0 24 10.8 24 22.0 26.0 100.9 80.6 99.99 999.9 010000 722324 03071 20200901 84.6 24 62.5 24 9999.9 0 912.0 19 9.9 24 9.1 24 15.0 22.9 97.2 76.6 0.00I 999.9 000000 722324 03071 20200902 78.8 24 59.9 24 9999.9 0 914.4 24 9.4 24 7.5 24 17.1 27.0 95.2 66.2 0.02G 999.9 010000 722324 03071 20200903 80.6 24 61.7 24 9999.9 0 917.3 24 9.9 24 5.4 24 14.0 21.0 98.8 66.7 0.00G 999.9 000000 722324 03071 20200904 81.6 24 58.8 24 9999.9 0 921.0 24 10.0 24 7.2 24 15.0 19.0 93.6 67.1 0.00I 999.9 000000 722324 03071 20200905 79.8 24 61.6 24 9999.9 0 925.5 24 9.8 24 7.5 24 14.0 17.1 90.1 68.9 0.00I 999.9 000000 722324 03071 20200906 80.7 24 60.0 24 9999.9 0 924.4 24 10.0 24 8.8 24 15.9 24.1 93.4 68.9 0.00I 999.9 000000 722324 03071 20200907 82.0 24 57.6 24 9999.9 0 916.6 24 10.0 24 9.5 24 14.0 22.0 96.8 68.5 0.00I 999.9 000000 722324 03071 20200908 81.4 24 63.1 24 9999.9 0 910.1 24 10.0 24 15.0 24 21.0 25.1 93.4 71.8 0.00I 999.9 000000 722324 03071 20200909 52.8 24 47.8 24 9999.9 0 919.1 24 7.9 24 15.0 24 22.0 29.9 71.2* 47.1* 0.34G 999.9 010010 722324 03071 20200910 49.0 24 45.0 24 9999.9 0 927.0 24 8.8 24 8.4 24 12.0 17.1 54.0 45.9 0.02G 999.9 010000 722324 03071 20200911 58.3 24 51.0 24 9999.9 0 925.7 24 10.0 24 4.0 24 9.9 15.0 73.9 52.7 0.00G 999.9 010000 722324 03071 20200912 69.5 24 59.8 24 9999.9 0 919.5 24 10.0 24 4.1 24 12.0 999.9 85.8 59.7 0.00I 999.9 000000 722324 03071 20200913 75.0 24 63.4 24 9999.9 0 920.2 24 10.0 24 5.0 24 15.9 20.0 85.3 65.8 0.00I 999.9 000000 722324 03071 20200914 73.1 24 61.8 24 9999.9 0 924.3 24 10.0 24 8.0 24 15.0 18.1 82.8 68.0 99.99 999.9 010000 722324 03071 20200915 73.4 24 56.4 24 9999.9 0 924.4 24 10.0 24 4.1 24 8.9 999.9 84.4 66.9 0.00I 999.9 000000 722324 03071 20200916 75.2 24 54.4 24 9999.9 0 920.6 24 10.0 24 5.3 24 11.1 999.9 88.9 62.6 0.00I 999.9 000000 722324 03071 20200917 75.3 24 57.3 24 9999.9 0 921.8 24 9.9 24 5.4 24 14.0 20.0 84.7 66.4 0.14A 999.9 010010 722324 03071 20200918 73.1 24 55.3 24 9999.9 0 923.3 24 10.0 24 5.4 24 13.0 18.1 83.1 60.3 0.00I 999.9 000000 722324 03071 20200919 69.2 24 52.2 24 9999.9 0 923.7 24 9.9 24 4.3 24 9.9 999.9 81.0 57.4 0.00I 999.9 000000 722324 03071 20200920 69.6 24 52.8 24 9999.9 0 922.9 24 7.5 24 5.4 24 8.9 999.9 82.2 58.3 0.00I 999.9 000000 722324 03071 20200921 68.3 24 46.6 24 9999.9 0 922.5 24 9.5 24 4.1 24 8.0 999.9 83.1 52.7 0.00I 999.9 000000 722324 03071 20200922 68.9 24 52.1 24 9999.9 0 921.3 24 9.8 24 4.4 24 11.1 999.9 85.5 53.8 0.00I 999.9 000000 722324 03071 20200923 71.7 24 55.8 24 9999.9 0 918.8 24 8.5 24 6.0 24 8.9 999.9 87.6 61.5 0.00I 999.9 000000 722324 03071 20200924 74.1 24 54.4 24 9999.9 0 918.2 24 10.0 24 4.8 24 11.1 999.9 90.7 59.2 0.00I 999.9 000000 722324 03071 20200925 78.0 24 46.4 24 9999.9 0 917.3 24 10.0 24 6.9 24 11.1 15.9 94.1 62.2 0.00I 999.9 000000 722324 03071 20200926 79.4 24 54.2 24 9999.9 0 914.8 24 10.0 24 9.1 24 14.0 20.0 97.9 64.4 0.00I 999.9 000000 722324 03071 20200927 84.3 24 50.4 24 9999.9 0 910.9 24 10.0 24 9.7 24 17.1 21.0 104.2 69.6 0.00I 999.9 000000 722324 03071 20200928 69.8 24 34.0 24 9999.9 0 921.8 24 8.3 24 15.4 24 29.9 36.9 98.1 60.8 0.00I 999.9 000000 722324 03071 20200929 61.7 24 22.5 24 9999.9 0 926.8 24 10.0 24 5.7 24 11.1 15.9 81.1 45.5 0.00I 999.9 000000 722324 03071 20200930 73.5 23 25.4 23 9999.9 0 921.7 21 10.0 23 5.5 23 11.1 999.9 90.1 56.8 0.00I 999.9 000000 722324 03071 20201001 70.9 24 31.4 24 9999.9 0 923.3 24 10.0 24 6.0 24 13.0 19.0 87.1 52.9 0.00I 999.9 000000 722324 03071 20201002 68.7 24 40.9 24 9999.9 0 924.6 24 10.0 24 10.3 24 15.9 22.0 84.6 55.0 0.00I 999.9 000000 722324 03071 20201003 74.7 24 43.5 24 9999.9 0 918.0 24 9.8 24 10.0 24 15.0 18.1 91.6 63.9 0.00I 999.9 000000 722324 03071 20201004 70.7 24 44.4 24 9999.9 0 923.2 24 10.0 24 8.6 24 18.1 26.0 86.5 57.4 0.00I 999.9 000000 722324 03071 20201005 73.6 24 49.5 24 9999.9 0 921.7 24 10.0 24 7.9 24 12.0 18.1 92.8 58.6 0.00I 999.9 000000 722324 03071 20201006 75.9 24 41.9 24 9999.9 0 918.6 24 9.5 24 6.6 24 14.0 20.0 94.5 58.8 0.00I 999.9 000000 722324 03071 20201007 77.2 24 42.8 24 9999.9 0 920.0 24 10.0 24 6.0 24 12.0 17.1 90.5 58.8 0.00I 999.9 000000 722324 03071 20201008 75.1 24 45.5 24 9999.9 0 919.1 24 10.0 24 7.1 24 14.0 21.0 88.5 61.2 0.00I 999.9 000000 722324 03071 20201009 74.7 24 46.4 24 9999.9 0 916.4 24 10.0 24 6.9 24 12.0 999.9 92.5 58.1 0.00I 999.9 000000 722324 03071 20201010 79.1 24 40.0 24 9999.9 0 914.1 24 10.0 24 5.7 24 11.1 15.0 99.3 56.1 0.00I 999.9 000000 722324 03071 20201011 80.9 24 29.7 24 9999.9 0 913.9 24 9.9 24 6.9 24 15.9 21.0 96.8 58.6 0.00I 999.9 000000 722324 03071 20201012 74.4 24 26.8 24 9999.9 0 919.0 24 9.1 24 9.8 24 17.1 25.1 91.6 61.5 0.00I 999.9 000000 722324 03071 20201013 69.7 24 30.7 24 9999.9 0 922.0 24 9.9 24 4.8 24 11.1 15.0 92.1 51.4 0.00I 999.9 000000 722324 03071 20201014 78.1 24 46.4 24 9999.9 0 918.4 24 10.0 24 8.7 24 15.9 24.1 98.2 64.2 0.00I 999.9 000000 722324 03071 20201015 71.0 24 29.0 24 9999.9 0 917.0 24 8.5 24 11.7 24 24.1 28.9 92.3 57.9 0.00I 999.9 000000 722324 03071 20201016 59.6 24 27.8 24 9999.9 0 926.7 24 10.0 24 9.0 24 14.0 20.0 72.0 47.3 0.00I 999.9 000000 722324 03071 20201017 65.6 24 34.9 24 9999.9 0 919.5 24 10.0 24 9.8 24 15.9 21.0 89.8 51.6 0.00I 999.9 000000 722324 03071 20201018 74.0 24 44.8 24 9999.9 0 915.3 24 10.0 24 8.5 24 15.0 22.0 85.5 60.4 0.00I 999.9 000000 722324 03071 20201019 57.9 24 44.3 24 9999.9 0 918.9 24 9.8 24 7.4 24 14.0 22.9 78.6 44.1 0.00I 999.9 000000 722324 03071 20201020 68.6 24 54.9 24 9999.9 0 916.1 24 10.0 24 7.6 24 15.9 22.9 88.9 52.0 0.00I 999.9 000000 722324 03071 20201021 74.8 24 60.3 24 9999.9 0 916.1 24 10.0 24 11.1 24 18.1 25.1 87.1 64.4 0.00I 999.9 000000 722324 03071 20201022 75.3 24 58.4 24 9999.9 0 915.3 12 10.0 24 12.9 24 19.0 25.1 88.9 66.9 99.99 999.9 010000 722324 03071 20201023 62.2 24 47.8 24 9999.9 0 9999.9 0 9.8 24 12.2 24 18.1 25.1 83.1 48.9 0.00I 999.9 000000 722324 03071 20201024 52.3 24 33.3 24 9999.9 0 922.4 24 10.0 24 7.6 24 13.0 15.0 72.9* 43.0* 0.00I 999.9 000000 722324 03071 20201025 68.7 24 43.5 24 9999.9 0 912.9 24 9.5 24 9.1 24 22.9 26.0 89.6 56.5 0.00I 999.9 000000 722324 03071 20201026 38.4 24 35.1 24 9999.9 0 919.6 24 6.3 24 15.1 24 19.0 27.0 56.3 29.8 99.99 999.9 011000 722324 03071 20201027 28.4 24 26.6 24 9999.9 0 922.0 24 4.8 24 11.6 24 15.0 22.0 31.5 26.1 99.99 999.9 001000 722324 03071 20201028 35.3 24 29.6 24 9999.9 0 919.1 24 8.2 24 11.1 24 24.1 32.1 50.2 30.0 99.99 999.9 001000 722324 03071 20201029 48.5 24 33.9 24 9999.9 0 922.1 24 10.0 24 13.4 24 20.0 29.9 62.1 40.1 0.00I 999.9 000000 722324 03071 20201030 51.6 24 35.1 24 9999.9 0 926.0 24 10.0 24 3.1 24 9.9 999.9 70.2 37.8 0.00I 999.9 000000 722324 03071 20201031 61.1 24 34.2 24 9999.9 0 921.8 24 10.0 24 8.1 24 12.0 15.9 84.4 48.4 0.00I 999.9 000000 722324 03071 20201101 63.7 24 35.6 24 9999.9 0 931.6 18 10.0 24 9.5 24 17.1 22.0 77.2 51.3 0.00I 999.9 000000 722324 03071 20201102 57.1 24 36.0 24 9999.9 0 932.1 24 10.0 24 5.5 24 13.0 15.0 73.6 42.4 0.00I 999.9 000000 722324 03071 20201103 60.8 24 34.7 24 9999.9 0 926.0 24 10.0 24 8.3 24 13.0 18.1 78.4 46.9 0.00I 999.9 000000 722324 03071 20201104 65.9 24 38.1 24 9999.9 0 922.3 24 10.0 24 9.1 24 13.0 18.1 84.2 54.1 0.00I 999.9 000000 722324 03071 20201105 67.1 24 37.5 24 9999.9 0 923.4 24 10.0 24 7.1 24 12.0 15.0 85.3 47.1 0.00I 999.9 000000 722324 03071 20201106 62.7 24 35.4 24 9999.9 0 921.8 24 10.0 24 3.5 24 8.9 999.9 80.4 45.0 0.00I 999.9 000000 722324 03071 20201107 64.5 24 49.4 24 9999.9 0 917.4 24 10.0 24 11.3 24 19.0 24.1 75.6 52.9 0.00I 999.9 000000 722324 03071 20201108 66.3 24 51.5 24 9999.9 0 912.8 24 10.0 24 14.3 24 20.0 27.0 81.1 58.5 0.00I 999.9 000000 722324 03071 20201109 70.9 24 54.0 24 9999.9 0 912.2 24 10.0 24 13.7 24 17.1 26.0 84.0 61.7 0.00I 999.9 000000 722324 03071 20201110 61.5 24 33.8 24 9999.9 0 915.4 24 10.0 24 9.7 24 17.1 22.0 77.9 46.2 0.00I 999.9 000000 722324 03071 20201111 55.2 24 25.3 24 9999.9 0 917.0 24 10.0 24 3.4 24 8.9 999.9 73.8 41.9 0.00I 999.9 000000 722324 03071 20201112 61.6 24 39.0 24 9999.9 0 917.3 24 10.0 24 3.9 24 8.9 999.9 77.9 44.2 0.00I 999.9 000000 722324 03071 20201113 56.1 24 34.4 24 9999.9 0 921.0 24 10.0 24 8.0 24 17.1 21.0 71.4* 48.9* 0.00I 999.9 000000 722324 03071 20201114 61.8 24 39.3 24 9999.9 0 915.8 24 9.5 24 8.7 24 22.9 32.1 81.0 52.3 0.00I 999.9 000000 722324 03071 20201115 57.7 24 15.4 24 9999.9 0 923.6 24 9.6 24 7.2 24 20.0 25.1 75.7 40.8 0.00I 999.9 000000 722324 03071 20201116 54.9 24 16.1 24 9999.9 0 925.7 24 10.0 24 4.4 24 8.9 999.9 77.2* 39.4* 0.00I 999.9 000000 722324 03071 20201117 57.3 24 26.5 24 9999.9 0 928.6 24 10.0 24 5.8 24 17.1 21.0 73.8 40.5 0.00I 999.9 000000 722324 03071 20201118 60.0 24 39.0 24 9999.9 0 926.5 24 10.0 24 10.1 24 18.1 25.1 74.8 46.4 0.00I 999.9 000000 722324 03071 20201119 63.9 24 47.3 24 9999.9 0 923.1 24 10.0 24 11.7 24 15.0 19.0 80.4 55.2 0.00I 999.9 000000 722324 03071 20201120 65.9 24 50.9 24 9999.9 0 923.5 24 10.0 24 7.5 24 15.0 18.1 80.6 55.2 0.00I 999.9 000000 722324 03071 20201121 62.3 24 50.4 24 9999.9 0 925.2 24 9.8 24 6.5 24 15.0 18.1 75.6 47.5 0.00I 999.9 000000 722324 03071 20201122 55.9 24 49.6 24 9999.9 0 924.1 24 9.0 24 8.7 24 15.9 19.0 69.4 49.3 99.99 999.9 010000 722324 03071 20201123 51.3 24 48.2 24 9999.9 0 923.4 24 5.8 24 9.8 24 19.0 26.0 69.6 47.1 99.99 999.9 010000 722324 03071 20201124 63.7 24 47.0 24 9999.9 0 912.8 24 9.4 24 15.5 24 28.0 36.9 77.7 55.2 0.00I 999.9 000000 722324 03071 20201125 49.9 24 27.9 24 9999.9 0 919.5 24 10.0 24 7.4 24 17.1 22.9 67.6 34.0 0.00I 999.9 000000 722324 03071 20201126 59.3 24 24.8 24 9999.9 0 916.8 24 10.0 24 8.6 24 15.0 20.0 77.9 47.7 0.00I 999.9 000000 722324 03071 20201127 53.4 24 26.8 24 9999.9 0 919.2 24 9.9 24 9.4 24 19.0 25.1 70.3 44.6 0.00I 999.9 000000 722324 03071 20201128 48.3 24 37.5 24 9999.9 0 922.7 24 9.9 24 9.0 24 15.9 19.0 54.7 41.5 0.10G 999.9 010000 722324 03071 20201129 42.5 24 36.4 24 9999.9 0 922.3 24 7.5 24 7.2 24 15.9 21.0 52.7 31.5 0.02G 999.9 100000 722324 03071 20201130 39.1 24 23.0 24 9999.9 0 931.8 23 10.0 24 6.3 24 11.1 999.9 52.5 25.9 0.00G 999.9 000000 722324 03071 20201201 46.6 24 10.4 24 9999.9 0 917.2 18 10.0 24 9.8 24 19.0 24.1 65.8 37.8 0.00I 999.9 000000 722324 03071 20201202 44.3 24 21.9 24 9999.9 0 920.2 24 10.0 24 10.2 24 20.0 28.0 60.1 36.1 0.00I 999.9 000000 722324 03071 20201203 35.0 24 20.0 24 9999.9 0 927.1 24 10.0 24 9.8 24 15.0 21.0 45.3 27.0 0.00I 999.9 000000 722324 03071 20201204 36.6 24 19.0 24 9999.9 0 925.5 24 10.0 24 3.3 24 6.0 999.9 55.8 23.2 0.00I 999.9 000000 722324 03071 20201205 39.6 24 18.4 24 9999.9 0 924.9 24 10.0 24 3.8 24 12.0 15.0 50.4 32.7 99.99 999.9 010000 722324 03071 20201206 44.5 24 24.6 24 9999.9 0 924.1 24 10.0 24 7.3 24 11.1 999.9 63.5 32.0 99.99 999.9 010000 722324 03071 20201207 47.2 24 19.1 24 9999.9 0 924.9 24 10.0 24 3.6 24 7.0 999.9 68.0 31.6 0.00I 999.9 000000 722324 03071 20201208 50.2 24 17.3 24 9999.9 0 926.5 24 10.0 24 4.5 24 8.0 999.9 72.9 34.3 0.00I 999.9 000000 722324 03071 20201209 53.6 24 16.7 24 9999.9 0 924.0 24 10.0 24 6.5 24 13.0 15.0 72.0 37.9 0.00I 999.9 000000 722324 03071 20201210 57.3 24 23.2 24 9999.9 0 916.4 24 10.0 24 5.9 24 17.1 21.0 79.9 38.7 0.00I 999.9 000000 722324 03071 20201211 59.6 24 42.5 24 9999.9 0 914.2 24 9.9 24 9.1 24 18.1 27.0 73.2 51.1 0.12G 999.9 010000 722324 03071 20201212 47.0 24 31.3 24 9999.9 0 917.5 24 10.0 24 7.8 24 14.0 999.9 61.9 34.5 0.02G 999.9 000000 722324 03071 20201213 46.5 24 28.9 24 9999.9 0 916.3 24 9.9 24 12.0 24 24.1 32.1 56.5 38.3 0.00G 999.9 000000 722324 03071 20201214 35.1 24 23.1 24 9999.9 0 925.7 24 10.0 24 5.6 24 17.1 21.0 51.6 21.9 0.00I 999.9 000000 722324 03071 20201215 43.6 24 21.7 24 9999.9 0 914.1 24 9.0 24 13.4 24 22.0 29.9 49.6 36.1 0.00I 999.9 000000 722324 03071 20201216 37.0 24 16.3 24 9999.9 0 921.1 24 9.4 24 6.6 24 14.0 17.1 55.9 22.6 0.00I 999.9 000000 722324 03071 20201217 41.0 24 16.1 24 9999.9 0 922.3 24 10.0 24 3.3 24 12.0 14.0 61.2 25.3 0.00I 999.9 000000 722324 03071 20201218 49.6 24 26.3 24 9999.9 0 918.4 24 10.0 24 12.3 24 18.1 22.9 63.0 43.3 0.00I 999.9 000000 722324 03071 20201219 47.3 24 30.2 24 9999.9 0 921.9 24 10.0 24 6.7 24 12.0 17.1 59.2 32.4 0.00I 999.9 000000 722324 03071 20201220 46.9 24 21.1 24 9999.9 0 922.1 24 10.0 24 7.1 24 12.0 15.0 60.6 35.4 0.00I 999.9 000000 722324 03071 20201221 48.4 24 17.0 24 9999.9 0 921.0 24 10.0 24 3.2 24 8.9 999.9 66.6 30.6 0.00I 999.9 000000 722324 03071 20201222 51.9 24 20.1 24 9999.9 0 919.9 24 10.0 24 6.0 24 15.9 22.0 70.9 35.1 0.00I 999.9 000000 722324 03071 20201223 54.0 24 25.1 24 9999.9 0 915.3 24 9.9 24 10.6 24 18.1 26.0 65.8 45.3 0.00I 999.9 000000 722324 03071 20201224 37.3 24 4.4 24 9999.9 0 928.4 24 8.4 24 10.4 24 19.0 31.1 57.6 22.6 0.00I 999.9 000000 722324 03071 20201225 44.2 24 -3.0 24 9999.9 0 926.4 24 10.0 24 7.2 24 13.0 19.0 63.3 29.8 0.00I 999.9 000000 722324 03071 20201226 50.1 24 6.6 24 9999.9 0 919.9 24 10.0 24 8.5 24 17.1 20.0 66.7 36.1 0.00I 999.9 000000 722324 03071 20201227 53.0 24 15.2 24 9999.9 0 915.4 24 10.0 24 5.8 24 9.9 999.9 70.2* 38.8* 0.00I 999.9 000000 722324 03071 20201228 50.9 24 26.6 24 9999.9 0 919.7 24 10.0 24 8.5 24 15.9 20.0 64.9 39.9 0.00I 999.9 000000 722324 03071 20201229 59.3 24 47.9 24 9999.9 0 914.7 24 9.9 24 14.6 24 25.1 29.9 70.7 48.4 0.00I 999.9 000000 722324 03071 20201230 46.8 24 39.6 24 9999.9 0 916.1 24 9.1 24 13.1 24 22.0 28.0 66.0 32.7 0.04A 999.9 011000 722324 03071 20201231 33.2 24 26.2 24 9999.9 0 918.4 23 7.9 24 9.3 24 15.9 26.0 36.9 28.4 99.99 999.9 111000 fluids-1.0.22/tests/gsod/1944/0000755000175000017500000000000014302004506015101 5ustar nileshnileshfluids-1.0.22/tests/gsod/1944/724050-13743.op0000644000175000017500000014350514302004506016671 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19440101 33.0 24 20.5 24 1025.7 24 9999.9 0 3.5 24 8.0 24 13.0 999.9 41.4* 27.3* 0.00I 999.9 000000 724050 13743 19440102 31.4 24 23.8 24 1027.7 24 9999.9 0 1.9 24 1.9 24 10.1 999.9 38.3* 25.3* 0.00I 999.9 000000 724050 13743 19440103 37.7 24 35.0 24 1015.1 24 9999.9 0 2.8 24 10.9 24 32.1 999.9 46.4* 32.0* 99.99 999.9 011000 724050 13743 19440104 41.6 24 37.1 24 1011.3 24 9999.9 0 4.0 24 15.8 24 30.1 999.9 46.4* 37.9* 99.99 999.9 010000 724050 13743 19440105 39.7 24 34.6 24 1021.6 24 9999.9 0 11.8 24 7.7 24 17.1 999.9 44.1* 37.0* 99.99 999.9 110000 724050 13743 19440106 38.4 24 30.8 24 1013.9 24 9999.9 0 5.2 24 11.5 24 26.0 999.9 41.4* 36.0* 99.99 999.9 110000 724050 13743 19440107 35.1 24 19.5 24 1022.8 24 9999.9 0 36.8 24 9.9 24 17.1 999.9 41.4* 28.9* 0.00I 999.9 000000 724050 13743 19440108 29.0 24 14.6 24 1026.0 24 9999.9 0 5.6 24 10.7 24 17.1 999.9 37.0* 25.0* 99.99 999.9 001000 724050 13743 19440109 24.6 24 10.9 24 1021.2 24 9999.9 0 45.2 24 11.3 24 25.1 999.9 30.4* 16.3* 99.99 999.9 001000 724050 13743 19440110 26.7 24 13.2 24 1023.1 24 9999.9 0 4.7 24 5.9 24 15.0 999.9 36.0* 20.3* 0.00I 999.9 000000 724050 13743 19440111 29.5 24 19.5 24 1023.7 24 9999.9 0 3.5 24 4.6 24 14.0 999.9 39.4* 22.5* 0.00I 999.9 100000 724050 13743 19440112 32.4 24 23.1 24 1022.7 24 9999.9 0 11.0 24 8.3 24 20.0 999.9 39.0* 25.3* 0.00I 999.9 100000 724050 13743 19440113 28.3 24 13.4 24 1031.9 24 9999.9 0 5.7 24 11.2 24 22.9 999.9 34.3* 23.4* 0.00I 999.9 000000 724050 13743 19440114 30.2 24 16.9 24 1025.6 24 9999.9 0 2.2 24 3.7 24 11.1 999.9 46.0* 19.9* 0.00I 999.9 000000 724050 13743 19440115 32.8 24 24.8 24 1014.5 24 9999.9 0 1.5 24 3.5 24 15.0 999.9 38.3* 30.0* 99.99 999.9 111000 724050 13743 19440116 31.8 24 26.5 24 1017.9 24 9999.9 0 2.8 24 8.2 24 19.0 999.9 36.3* 26.4* 99.99 999.9 101000 724050 13743 19440117 28.6 24 19.9 24 1031.8 24 9999.9 0 2.7 24 4.3 24 12.0 999.9 40.3* 20.3* 0.00I 999.9 000000 724050 13743 19440118 32.9 24 26.0 24 1029.7 24 9999.9 0 2.3 24 3.1 24 8.9 999.9 43.3* 26.4* 0.00I 999.9 000000 724050 13743 19440119 34.1 24 30.1 24 1020.2 24 9999.9 0 2.0 24 2.7 24 7.0 999.9 39.0* 28.4* 99.99 999.9 110000 724050 13743 19440120 35.9 24 33.5 24 1014.6 24 9999.9 0 1.9 24 3.0 24 10.1 999.9 39.0* 34.0* 99.99 999.9 111000 724050 13743 19440121 35.1 24 32.8 24 1017.7 24 9999.9 0 0.9 24 3.0 24 15.9 999.9 50.4* 30.0* 99.99 999.9 110000 724050 13743 19440122 41.5 24 31.9 24 1021.1 24 9999.9 0 3.2 24 4.7 24 15.9 999.9 55.4* 30.9* 0.00I 999.9 000000 724050 13743 19440123 44.5 24 32.1 24 1015.6 24 9999.9 0 5.0 24 13.8 24 35.0 999.9 48.0* 39.4* 99.99 999.9 010000 724050 13743 19440124 38.3 24 26.0 24 1025.2 24 9999.9 0 4.5 24 7.4 24 13.0 999.9 47.3* 32.4* 0.00I 999.9 000000 724050 13743 19440125 37.6 24 25.7 24 1028.5 24 9999.9 0 2.7 24 2.6 24 10.1 999.9 55.4* 28.0* 0.00I 999.9 100000 724050 13743 19440126 46.7 24 35.8 24 1027.4 24 9999.9 0 1.7 24 2.9 24 6.0 999.9 66.4* 31.3* 0.00I 999.9 000000 724050 13743 19440127 53.4 24 43.2 24 1024.7 24 9999.9 0 2.0 24 2.7 24 10.1 999.9 70.3* 41.4* 0.00I 999.9 100000 724050 13743 19440128 58.7 24 51.2 24 1014.7 24 9999.9 0 2.5 24 2.4 24 10.1 999.9 68.4* 47.3* 99.99 999.9 110000 724050 13743 19440129 48.3 24 34.0 24 1010.6 24 9999.9 0 39.8 24 14.3 24 26.0 999.9 60.1* 41.4* 0.00I 999.9 000000 724050 13743 19440130 41.8 24 28.0 24 1015.0 24 9999.9 0 33.7 24 16.0 24 21.0 999.9 47.3* 37.4* 0.00I 999.9 000000 724050 13743 19440131 37.1 24 26.4 24 1015.2 24 9999.9 0 3.4 24 6.7 24 17.1 999.9 46.9* 28.0* 0.00I 999.9 000000 724050 13743 19440201 37.2 24 22.5 24 1015.7 24 9999.9 0 60.8 24 22.7 24 37.9 999.9 46.0* 30.4* 0.00I 999.9 000000 724050 13743 19440202 31.1 24 16.7 24 1023.8 24 9999.9 0 3.6 24 6.1 24 15.9 999.9 41.4* 22.5* 0.00I 999.9 000000 724050 13743 19440203 39.1 24 29.8 24 1013.8 24 9999.9 0 2.6 24 3.7 24 10.1 999.9 49.3* 33.4* 99.99 999.9 001000 724050 13743 19440204 39.7 24 32.0 23 1016.2 24 9999.9 0 2.9 24 7.3 24 16.9 999.9 46.4* 32.0* 99.99 999.9 010000 724050 13743 19440205 38.6 24 27.0 24 1022.1 24 9999.9 0 4.0 24 7.7 24 20.0 999.9 54.3* 27.3* 0.00I 999.9 000000 724050 13743 19440206 49.1 24 29.9 24 1009.7 24 9999.9 0 17.9 24 14.0 24 22.9 999.9 57.0* 38.3* 0.00I 999.9 000000 724050 13743 19440207 35.8 24 23.1 24 1012.8 23 9999.9 0 4.7 24 6.4 24 13.0 999.9 50.4* 26.4* 0.00I 999.9 000000 724050 13743 19440208 37.0 24 23.9 24 1017.6 24 9999.9 0 17.4 24 8.2 24 17.1 999.9 46.9* 30.9* 0.00I 999.9 000000 724050 13743 19440209 32.7 24 21.7 24 1019.9 24 9999.9 0 4.9 24 7.0 24 15.9 999.9 36.3* 30.9* 99.99 999.9 001000 724050 13743 19440210 31.8 24 20.0 24 1025.3 24 9999.9 0 4.1 24 7.2 24 19.0 999.9 43.0* 25.3* 0.00I 999.9 100000 724050 13743 19440211 31.6 24 26.8 24 1018.8 24 9999.9 0 4.0 24 7.7 24 17.1 999.9 34.0* 29.3* 99.99 999.9 111000 724050 13743 19440212 26.8 24 17.8 24 1013.5 24 9999.9 0 43.8 24 17.4 24 30.1 999.9 30.9* 23.0* 99.99 999.9 111000 724050 13743 19440213 23.4 24 6.5 24 1032.0 24 9999.9 0 60.9 24 12.9 24 26.0 999.9 31.3* 18.0* 0.00I 999.9 000000 724050 13743 19440214 30.8 24 19.9 24 1026.8 24 9999.9 0 4.8 24 7.7 24 15.9 999.9 39.0* 26.1* 99.99 999.9 110000 724050 13743 19440215 39.4 24 28.5 24 1014.5 24 9999.9 0 17.3 24 15.4 24 28.9 999.9 45.3* 34.3* 99.99 999.9 110000 724050 13743 19440216 35.8 24 22.5 24 1028.9 24 9999.9 0 4.2 24 8.1 24 15.9 999.9 42.1* 28.4* 0.00I 999.9 000000 724050 13743 19440217 35.2 24 30.3 24 1024.2 23 9999.9 0 2.2 24 5.0 24 13.0 999.9 39.0* 31.3* 99.99 999.9 110000 724050 13743 19440218 43.0 24 35.8 24 1014.5 24 9999.9 0 4.6 24 13.4 24 29.9 999.9 48.4* 36.0* 99.99 999.9 110000 724050 13743 19440219 33.2 24 14.2 24 1032.5 24 9999.9 0 6.5 24 11.2 24 20.0 999.9 44.1* 24.1* 0.00I 999.9 100000 724050 13743 19440220 31.4 24 19.5 24 1026.6 23 9999.9 0 4.8 24 6.3 24 13.0 999.9 38.3* 27.3* 99.99 999.9 010000 724050 13743 19440221 39.6 24 29.6 24 1024.2 24 9999.9 0 3.9 24 6.4 24 13.0 999.9 53.1* 30.4* 99.99 999.9 011000 724050 13743 19440222 41.2 24 34.0 24 1019.9 24 9999.9 0 3.8 24 9.1 24 22.0 999.9 48.4* 35.1* 99.99 999.9 110000 724050 13743 19440223 53.0 24 42.1 24 1006.3 24 9999.9 0 43.3 24 16.9 24 42.0 999.9 55.9* 46.0* 99.99 999.9 110000 724050 13743 19440224 48.7 24 35.3 24 1013.6 24 9999.9 0 7.1 24 5.6 24 10.1 999.9 69.3* 36.0* 0.00I 999.9 100000 724050 13743 19440225 48.3 24 24.7 24 1020.9 24 9999.9 0 5.2 24 6.7 24 19.0 999.9 61.0* 36.3* 0.00I 999.9 000000 724050 13743 19440226 40.9 24 31.6 24 1020.7 24 9999.9 0 3.3 24 6.9 24 17.1 999.9 47.3* 37.0* 99.99 999.9 110000 724050 13743 19440227 40.9 24 38.7 24 1017.2 24 9999.9 0 2.0 24 5.4 24 15.9 999.9 47.3* 37.0* 99.99 999.9 110000 724050 13743 19440228 43.8 24 37.5 24 1017.9 24 9999.9 0 2.6 24 5.1 24 15.9 999.9 51.3* 36.0* 0.00I 999.9 100000 724050 13743 19440229 36.6 24 31.9 24 1010.0 24 9999.9 0 2.5 24 10.4 24 17.1 999.9 45.0* 32.0* 99.99 999.9 111000 724050 13743 19440301 33.1 24 19.8 24 1016.7 24 9999.9 0 57.1 24 24.4 24 32.1 999.9 37.4* 28.9* 0.00I 999.9 000000 724050 13743 19440302 31.6 24 11.9 24 1026.0 24 9999.9 0 68.3 24 15.1 24 26.0 999.9 40.3* 23.0* 0.00I 999.9 000000 724050 13743 19440303 39.0 24 19.6 24 1020.6 24 9999.9 0 4.4 24 6.2 24 11.1 999.9 59.4* 28.4* 0.00I 999.9 000000 724050 13743 19440304 40.1 24 31.9 24 1010.1 24 9999.9 0 2.0 24 6.0 24 22.0 999.9 55.0* 33.4* 99.99 999.9 111000 724050 13743 19440305 28.1 24 22.2 24 1015.6 24 9999.9 0 16.4 24 9.9 24 28.9 999.9 35.4* 21.9* 99.99 999.9 111000 724050 13743 19440306 33.6 24 24.9 24 1023.9 24 9999.9 0 3.6 24 5.5 24 15.9 999.9 41.4* 26.4* 99.99 999.9 010000 724050 13743 19440307 40.7 24 37.7 24 1007.9 24 9999.9 0 2.9 24 6.0 24 20.0 999.9 46.4* 37.0* 99.99 999.9 110000 724050 13743 19440308 37.3 24 22.2 24 1010.2 24 9999.9 0 29.5 24 11.3 24 23.9 999.9 44.1* 32.0* 99.99 999.9 011000 724050 13743 19440309 28.2 24 9.0 24 1024.6 24 9999.9 0 41.7 24 15.1 24 26.0 999.9 33.1* 23.0* 0.00I 999.9 000000 724050 13743 19440310 29.5 24 7.5 24 1031.4 24 9999.9 0 32.5 24 8.5 24 17.1 999.9 41.0* 19.4* 0.00I 999.9 000000 724050 13743 19440311 37.0 24 19.8 24 1032.7 24 9999.9 0 20.2 24 5.8 24 13.0 999.9 52.3* 24.4* 0.00I 999.9 000000 724050 13743 19440312 41.1 24 33.7 24 1026.8 24 9999.9 0 3.6 24 5.7 24 13.0 999.9 49.3* 33.4* 99.99 999.9 010000 724050 13743 19440313 48.4 24 39.9 24 1019.0 24 9999.9 0 47.7 24 14.9 24 25.1 999.9 54.3* 43.0* 99.99 999.9 010000 724050 13743 19440314 44.9 24 25.2 24 1028.7 24 9999.9 0 80.3 24 10.2 24 17.1 999.9 57.4* 35.1* 0.00I 999.9 000000 724050 13743 19440315 53.0 24 32.0 23 1023.3 24 9999.9 0 6.2 24 7.2 24 13.0 999.9 72.3* 42.1* 0.00I 999.9 000000 724050 13743 19440316 65.7 24 45.0 24 1011.0 24 9999.9 0 5.0 24 8.4 24 17.1 999.9 82.4* 53.1* 0.00I 999.9 000000 724050 13743 19440317 63.0 24 47.3 24 1002.8 24 9999.9 0 9.3 24 10.2 23 23.9 999.9 73.9* 52.3* 99.99 999.9 010000 724050 13743 19440318 49.1 24 38.0 24 1012.5 24 9999.9 0 16.5 24 9.9 24 22.0 999.9 63.0* 40.3* 99.99 999.9 110000 724050 13743 19440319 30.5 24 19.1 24 1024.0 24 9999.9 0 4.7 24 12.3 24 26.0 999.9 41.4* 24.4* 99.99 999.9 111000 724050 13743 19440320 28.5 24 26.2 24 1010.1 24 9999.9 0 1.8 24 8.7 24 17.1 999.9 32.4* 24.4* 99.99 999.9 111000 724050 13743 19440321 35.0 24 25.7 24 1023.0 24 9999.9 0 5.3 24 9.2 24 15.9 999.9 44.4* 30.0* 99.99 999.9 111000 724050 13743 19440322 38.7 24 23.9 24 1035.4 24 9999.9 0 16.4 24 7.0 24 17.1 999.9 51.3* 28.4* 0.00I 999.9 000000 724050 13743 19440323 43.5 24 39.8 24 1018.2 24 9999.9 0 3.3 24 6.7 24 15.0 999.9 48.9* 37.9* 99.99 999.9 110000 724050 13743 19440324 50.9 24 37.0 24 1009.5 24 9999.9 0 40.5 24 9.7 24 17.1 999.9 60.1* 45.0* 99.99 999.9 110000 724050 13743 19440325 53.5 24 38.1 24 1014.3 24 9999.9 0 23.8 24 5.2 24 19.0 999.9 72.3* 37.4* 0.00I 999.9 000000 724050 13743 19440326 58.7 24 38.9 24 1017.7 24 9999.9 0 37.2 24 11.0 24 20.0 999.9 65.3* 52.0* 0.00I 999.9 000000 724050 13743 19440327 52.5 24 41.0 24 1017.5 24 9999.9 0 20.4 24 5.6 24 15.9 999.9 63.3* 45.0* 99.99 999.9 110000 724050 13743 19440328 51.6 24 31.4 24 1024.7 24 9999.9 0 28.8 24 10.4 24 23.9 999.9 61.0* 44.1* 0.00I 999.9 000000 724050 13743 19440329 41.8 24 32.8 24 1025.6 24 9999.9 0 3.8 24 8.9 24 22.0 999.9 48.9* 33.4* 99.99 999.9 111000 724050 13743 19440330 45.2 24 34.9 24 1012.1 24 9999.9 0 8.6 24 9.5 24 19.0 999.9 53.1* 41.0* 99.99 999.9 110000 724050 13743 19440331 44.6 24 23.5 24 1010.7 24 9999.9 0 49.3 24 11.1 24 22.0 999.9 51.3* 37.4* 99.99 999.9 010000 724050 13743 19440401 45.6 24 26.8 24 1016.6 24 9999.9 0 24.0 24 5.9 24 17.1 999.9 59.4* 32.4* 0.00I 999.9 000000 724050 13743 19440402 53.3 24 41.9 24 1015.5 24 9999.9 0 4.6 24 8.2 24 22.9 999.9 66.4* 43.3* 99.99 999.9 010000 724050 13743 19440403 41.1 24 27.1 24 1018.9 24 9999.9 0 48.7 24 10.1 24 15.9 999.9 45.3* 35.1* 99.99 999.9 010000 724050 13743 19440404 37.9 24 26.6 24 1012.0 24 9999.9 0 11.0 24 6.2 24 17.1 999.9 44.4* 32.4* 99.99 999.9 011010 724050 13743 19440405 34.8 24 22.8 24 1011.3 24 9999.9 0 49.3 24 17.3 24 28.0 999.9 39.9* 30.0* 99.99 999.9 001000 724050 13743 19440406 40.0 24 24.4 24 1019.2 24 9999.9 0 26.3 24 10.2 24 15.9 999.9 55.0* 30.9* 0.00I 999.9 000000 724050 13743 19440407 52.7 24 31.1 24 1018.0 24 9999.9 0 20.5 24 8.4 24 17.1 999.9 68.4* 39.0* 0.00I 999.9 000000 724050 13743 19440408 62.7 24 41.3 24 1013.5 24 9999.9 0 17.7 24 10.2 24 19.0 999.9 73.9* 51.1* 99.99 999.9 010000 724050 13743 19440409 65.7 24 50.2 24 1016.7 24 9999.9 0 20.2 24 6.0 24 22.0 999.9 84.4* 50.0* 0.00I 999.9 000000 724050 13743 19440410 71.2 24 51.4 24 1011.6 24 9999.9 0 45.2 24 12.8 24 27.0 999.9 78.3* 64.4* 99.99 999.9 010000 724050 13743 19440411 53.7 24 42.3 24 1018.7 24 9999.9 0 44.2 24 9.8 24 22.0 999.9 71.1* 46.0* 99.99 999.9 010000 724050 13743 19440412 54.2 24 47.6 24 1001.4 24 9999.9 0 27.6 24 11.0 24 29.9 999.9 71.1* 46.9* 99.99 999.9 110010 724050 13743 19440413 49.1 24 26.5 24 1010.9 24 9999.9 0 76.4 24 17.3 24 30.1 999.9 62.4* 39.9* 0.00I 999.9 000000 724050 13743 19440414 56.2 24 31.0 24 1014.0 24 9999.9 0 44.5 24 6.8 24 14.0 999.9 70.3* 39.9* 0.00I 999.9 000000 724050 13743 19440415 57.6 24 47.1 24 1005.6 24 9999.9 0 24.7 24 8.2 24 22.0 999.9 64.9* 53.1* 99.99 999.9 110000 724050 13743 19440416 56.6 24 51.2 24 1001.6 24 9999.9 0 4.2 24 7.5 24 15.9 999.9 69.3* 46.9* 99.99 999.9 110010 724050 13743 19440417 54.2 24 42.1 24 1011.6 24 9999.9 0 7.0 24 13.8 24 17.1 999.9 64.0* 48.9* 0.00I 999.9 000000 724050 13743 19440418 51.0 24 29.6 24 1022.3 24 9999.9 0 10.6 24 7.9 24 15.9 999.9 56.3* 43.3* 0.00I 999.9 000000 724050 13743 19440419 50.6 24 42.7 24 1020.6 24 9999.9 0 4.2 24 6.5 24 12.0 999.9 57.9* 45.3* 99.99 999.9 110000 724050 13743 19440420 53.4 24 45.4 24 1019.9 24 9999.9 0 10.9 24 6.0 24 15.9 999.9 69.3* 41.0* 0.00I 999.9 100000 724050 13743 19440421 59.4 24 50.8 24 1017.6 24 9999.9 0 5.0 24 6.9 24 17.1 999.9 73.4* 49.3* 99.99 999.9 010000 724050 13743 19440422 52.0 24 46.1 24 1025.6 24 9999.9 0 4.0 24 9.2 24 19.0 999.9 64.0* 47.3* 99.99 999.9 110000 724050 13743 19440423 49.5 24 45.6 24 1025.2 24 9999.9 0 27.9 24 7.4 24 19.0 999.9 54.0* 47.3* 99.99 999.9 110000 724050 13743 19440424 49.8 24 48.2 24 1014.7 24 9999.9 0 2.3 24 6.8 24 17.1 999.9 55.0* 46.4* 99.99 999.9 110000 724050 13743 19440425 58.5 24 47.7 24 1008.9 24 9999.9 0 36.0 24 8.6 24 19.0 999.9 72.3* 49.3* 99.99 999.9 110000 724050 13743 19440426 61.6 24 45.2 24 1015.2 24 9999.9 0 17.2 24 7.5 24 15.9 999.9 76.3* 52.3* 0.00I 999.9 000000 724050 13743 19440427 55.8 24 49.9 24 1013.8 24 9999.9 0 4.4 24 9.4 24 26.0 999.9 66.9* 50.0* 99.99 999.9 110000 724050 13743 19440428 51.8 24 34.5 24 1023.6 24 9999.9 0 76.3 24 11.1 24 22.0 999.9 61.3* 43.0* 99.99 999.9 010000 724050 13743 19440429 55.7 24 29.9 24 1029.2 24 9999.9 0 84.2 24 6.6 24 17.1 999.9 69.3* 42.4* 0.00I 999.9 000000 724050 13743 19440430 62.4 24 39.1 24 1026.4 24 9999.9 0 31.7 24 5.8 24 13.0 999.9 80.2* 46.0* 0.00I 999.9 000000 724050 13743 19440501 70.3 24 43.0 24 1021.3 24 9999.9 0 13.3 24 5.1 24 10.1 999.9 87.3* 54.0* 0.00I 999.9 000000 724050 13743 19440502 72.7 24 50.3 24 1022.8 24 9999.9 0 24.5 24 6.8 24 17.1 999.9 86.4* 63.0* 0.00I 999.9 000000 724050 13743 19440503 70.2 24 54.7 24 1023.3 24 9999.9 0 29.5 24 7.4 24 25.1 999.9 85.3* 55.4* 0.00I 999.9 000000 724050 13743 19440504 74.2 24 55.2 24 1018.4 24 9999.9 0 11.1 24 7.6 24 13.0 999.9 85.3* 63.0* 0.00I 999.9 000000 724050 13743 19440505 75.2 24 55.8 24 1015.3 24 9999.9 0 53.5 24 10.0 24 26.0 999.9 86.4* 63.0* 0.00I 999.9 000000 724050 13743 19440506 71.1 24 59.7 24 1012.9 24 9999.9 0 76.2 24 10.6 24 26.0 999.9 80.1* 64.4* 99.99 999.9 010010 724050 13743 19440507 63.4 24 53.5 24 1010.8 24 9999.9 0 56.3 24 11.5 24 22.0 999.9 68.4* 56.3* 99.99 999.9 010000 724050 13743 19440508 59.1 24 42.6 24 1022.6 24 9999.9 0 41.5 24 7.5 24 13.0 999.9 71.2* 48.9* 0.00I 999.9 000000 724050 13743 19440509 64.4 24 49.8 24 1024.9 24 9999.9 0 57.0 24 8.3 24 17.1 999.9 79.3* 52.3* 0.00I 999.9 000000 724050 13743 19440510 65.5 24 53.1 24 1027.7 24 9999.9 0 29.4 24 4.8 24 15.9 999.9 78.3* 52.3* 0.00I 999.9 000000 724050 13743 19440511 68.6 24 57.5 24 1029.5 24 9999.9 0 51.3 24 4.1 24 13.0 999.9 82.4* 57.9* 99.99 999.9 110000 724050 13743 19440512 72.8 24 59.6 24 1026.4 24 9999.9 0 37.4 24 6.1 24 13.0 999.9 87.3* 61.0* 0.00I 999.9 000000 724050 13743 19440513 75.1 24 60.5 24 1019.3 24 9999.9 0 10.6 24 7.4 24 15.9 999.9 89.2* 66.0* 0.00I 999.9 000000 724050 13743 19440514 74.4 24 56.7 24 1015.2 24 9999.9 0 45.0 24 7.2 24 15.9 999.9 83.3* 66.9* 99.99 999.9 010000 724050 13743 19440515 73.5 24 54.8 24 1015.5 24 9999.9 0 16.6 24 3.0 24 10.1 999.9 88.0* 59.4* 0.00I 999.9 100000 724050 13743 19440516 78.7 24 57.6 23 1011.8 24 9999.9 0 31.4 24 2.0 24 17.1 999.9 93.4* 63.3* 0.00I 999.9 000000 724050 13743 19440517 74.5 24 62.1 24 1011.1 24 9999.9 0 21.2 24 3.5 24 17.1 999.9 86.4* 65.3* 99.99 999.9 010000 724050 13743 19440518 75.4 24 62.2 24 1011.6 24 9999.9 0 9.4 24 5.5 24 17.1 999.9 82.4* 66.9* 0.00I 999.9 000000 724050 13743 19440519 62.9 24 45.3 24 1020.3 24 9999.9 0 18.1 24 7.4 24 16.9 999.9 74.3* 52.3* 99.99 999.9 010000 724050 13743 19440520 65.5 24 56.8 24 1016.9 24 9999.9 0 5.0 24 5.3 24 9.9 999.9 71.2* 60.3* 0.00I 999.9 000000 724050 13743 19440521 67.3 24 60.4 24 1016.1 24 9999.9 0 4.3 24 3.0 24 7.0 999.9 77.4* 61.3* 99.99 999.9 110000 724050 13743 19440522 76.2 23 65.2 23 1009.8 23 9999.9 0 50.1 23 5.5 23 13.0 999.9 90.3* 65.3* 99.99 999.9 110000 724050 13743 19440523 78.3 24 66.6 24 1011.8 24 9999.9 0 40.2 24 3.2 24 15.9 999.9 87.3* 69.3* 99.99 999.9 010010 724050 13743 19440524 65.5 24 62.0 24 1017.3 24 9999.9 0 4.2 24 4.4 24 8.9 999.9 74.3* 61.3* 99.99 999.9 110000 724050 13743 19440525 65.3 24 63.5 24 1020.8 24 9999.9 0 2.0 24 4.0 24 8.9 999.9 71.2* 63.3* 99.99 999.9 110000 724050 13743 19440526 70.5 24 64.8 24 1024.2 24 9999.9 0 4.1 24 4.5 24 8.9 999.9 81.3* 65.3* 0.00I 999.9 100000 724050 13743 19440527 75.1 24 67.5 24 1021.6 24 9999.9 0 4.8 24 4.4 24 8.9 999.9 87.3* 68.4* 99.99 999.9 110000 724050 13743 19440528 77.2 24 65.3 24 1018.0 24 9999.9 0 20.9 24 5.2 24 13.0 999.9 87.3* 68.4* 0.00I 999.9 100010 724050 13743 19440529 74.8 24 55.2 24 1021.0 24 9999.9 0 60.9 24 5.9 24 13.0 999.9 86.4* 62.4* 0.00I 999.9 000000 724050 13743 19440530 74.9 24 56.1 24 1022.0 24 9999.9 0 32.9 24 3.1 24 7.0 999.9 88.3* 60.3* 0.00I 999.9 000000 724050 13743 19440531 76.2 24 59.7 24 1016.8 24 9999.9 0 36.1 24 4.7 24 8.9 999.9 90.3* 63.3* 0.00I 999.9 000000 724050 13743 19440601 79.3 24 64.8 24 1010.9 24 9999.9 0 39.9 24 5.1 24 16.9 999.9 93.4* 68.4* 99.99 999.9 010010 724050 13743 19440602 77.0 24 67.7 24 1008.9 24 9999.9 0 13.1 24 4.8 24 9.9 999.9 88.3* 68.4* 99.99 999.9 010000 724050 13743 19440603 81.7 24 66.1 24 1006.7 24 9999.9 0 55.8 24 5.6 24 13.0 999.9 95.4* 70.3* 0.00I 999.9 000000 724050 13743 19440604 68.1 24 54.8 24 1019.3 24 9999.9 0 99.4 24 7.7 24 13.0 999.9 83.3* 61.3* 0.00I 999.9 000000 724050 13743 19440605 63.9 24 51.0 23 1023.1 24 9999.9 0 80.2 24 4.7 24 9.9 999.9 74.3* 57.4* 0.00I 999.9 000000 724050 13743 19440606 72.0 24 60.6 24 1015.0 24 9999.9 0 49.8 24 8.6 24 14.0 999.9 87.3* 62.4* 99.99 999.9 010010 724050 13743 19440607 70.2 24 57.8 24 1012.5 24 9999.9 0 52.3 24 10.1 24 16.9 999.9 72.3* 67.3* 99.99 999.9 110000 724050 13743 19440608 62.9 24 42.8 24 1021.9 24 9999.9 0 76.2 24 4.9 24 13.0 999.9 73.4* 52.3* 0.00I 999.9 000000 724050 13743 19440609 67.4 24 55.0 24 1024.4 24 9999.9 0 28.6 24 4.3 24 7.0 999.9 80.2* 56.3* 0.00I 999.9 000000 724050 13743 19440610 71.1 24 62.3 24 1018.0 24 9999.9 0 13.3 24 6.6 24 12.0 999.9 78.3* 64.4* 99.99 999.9 010000 724050 13743 19440611 71.4 24 58.2 24 1015.3 24 9999.9 0 60.6 24 6.6 24 14.0 999.9 81.3* 63.3* 0.00I 999.9 000000 724050 13743 19440612 73.0 24 59.6 24 1016.4 24 9999.9 0 44.1 24 4.4 24 7.0 999.9 85.3* 62.4* 0.00I 999.9 100000 724050 13743 19440613 79.5 24 64.5 24 1015.5 24 9999.9 0 28.4 24 3.5 24 7.0 999.9 95.4* 67.3* 0.00I 999.9 100000 724050 13743 19440614 71.4 24 63.6 24 1017.0 24 9999.9 0 4.6 24 4.6 24 8.9 999.9 82.4* 65.3* 99.99 999.9 110010 724050 13743 19440615 68.1 24 65.1 24 1014.0 24 9999.9 0 3.5 24 3.1 24 7.0 999.9 74.3* 64.4* 99.99 999.9 110000 724050 13743 19440616 77.2 24 66.5 24 1010.1 24 9999.9 0 3.9 24 4.2 24 8.0 999.9 91.2* 66.4* 0.00I 999.9 100000 724050 13743 19440617 82.6 24 67.9 24 1010.9 24 9999.9 0 32.1 24 6.1 24 13.0 999.9 95.4* 69.3* 0.00I 999.9 000000 724050 13743 19440618 84.8 24 70.5 24 1014.9 24 9999.9 0 25.0 24 3.8 24 8.0 999.9 97.3* 72.3* 0.00I 999.9 000000 724050 13743 19440619 81.2 24 71.7 24 1010.3 24 9999.9 0 5.6 24 5.5 24 26.0 999.9 90.3* 73.4* 99.99 999.9 010010 724050 13743 19440620 71.2 24 60.6 24 1005.5 24 9999.9 0 55.8 24 12.8 24 21.0 999.9 74.3* 67.3* 99.99 999.9 010010 724050 13743 19440621 68.8 24 53.1 24 1009.3 24 9999.9 0 76.6 24 11.5 24 18.1 999.9 78.3* 61.3* 0.00I 999.9 000000 724050 13743 19440622 73.4 24 59.3 24 1012.9 24 9999.9 0 34.1 24 6.0 24 8.9 999.9 82.4* 63.3* 0.00I 999.9 000000 724050 13743 19440623 75.2 24 68.1 24 1008.4 24 9999.9 0 5.5 24 4.4 24 7.0 999.9 85.3* 68.4* 99.99 999.9 010010 724050 13743 19440624 76.8 24 63.7 24 1000.3 23 9999.9 0 48.7 24 12.9 24 26.0 999.9 82.4* 71.2* 99.99 999.9 110000 724050 13743 19440625 75.7 24 61.1 24 1003.4 24 9999.9 0 60.8 24 13.8 24 22.0 999.9 83.3* 71.2* 0.00I 999.9 000000 724050 13743 19440626 78.1 24 62.3 24 1011.2 24 9999.9 0 48.5 24 4.6 24 9.9 999.9 92.3* 68.4* 0.00I 999.9 000000 724050 13743 19440627 80.9 24 65.7 24 1019.3 24 9999.9 0 5.6 24 4.0 24 7.0 999.9 94.3* 69.3* 0.00I 999.9 100000 724050 13743 19440628 79.6 24 69.0 24 1023.4 24 9999.9 0 4.1 24 5.2 24 8.9 999.9 92.3* 70.3* 0.00I 999.9 100000 724050 13743 19440629 83.0 24 66.8 24 1020.8 24 9999.9 0 5.9 24 4.5 24 8.9 999.9 96.3* 72.3* 0.00I 999.9 000000 724050 13743 19440630 81.9 24 67.9 23 1016.5 24 9999.9 0 5.4 24 7.3 24 15.9 999.9 87.3* 75.4* 0.00I 999.9 000000 724050 13743 19440701 76.7 24 57.2 24 1017.0 24 9999.9 0 65.2 24 6.1 24 8.9 999.9 84.4* 66.4* 0.00I 999.9 000000 724050 13743 19440702 76.1 24 56.9 24 1018.2 24 9999.9 0 40.0 24 4.5 24 8.0 999.9 87.3* 65.3* 0.00I 999.9 000000 724050 13743 19440703 76.1 24 54.6 24 1022.9 24 9999.9 0 56.2 24 5.7 24 11.1 999.9 84.4* 65.3* 0.00I 999.9 000000 724050 13743 19440704 75.3 24 54.9 24 1022.5 24 9999.9 0 52.2 24 4.2 24 6.0 999.9 90.3* 61.3* 0.00I 999.9 000000 724050 13743 19440705 80.1 24 58.6 24 1021.2 24 9999.9 0 37.1 24 4.7 24 8.0 999.9 95.4* 64.4* 0.00I 999.9 000000 724050 13743 19440706 82.1 24 60.5 24 1019.9 24 9999.9 0 17.2 24 3.9 24 7.0 999.9 95.4* 66.4* 0.00I 999.9 000000 724050 13743 19440707 83.6 24 62.1 24 1018.2 24 9999.9 0 4.5 24 3.3 24 8.9 999.9 97.3* 70.3* 0.00I 999.9 000000 724050 13743 19440708 81.3 24 62.4 24 1018.4 24 9999.9 0 5.7 24 6.3 24 9.9 999.9 90.3* 72.3* 0.00I 999.9 000000 724050 13743 19440709 81.1 24 67.4 24 1019.9 24 9999.9 0 5.5 24 5.4 24 8.9 999.9 93.4* 71.2* 0.00I 999.9 000000 724050 13743 19440710 81.1 24 67.7 24 1019.3 24 9999.9 0 21.1 24 6.1 24 9.9 999.9 93.4* 71.2* 0.00I 999.9 000000 724050 13743 19440711 83.6 24 69.0 24 1018.6 24 9999.9 0 60.4 24 6.7 24 8.9 999.9 94.3* 76.3* 0.00I 999.9 000000 724050 13743 19440712 84.4 24 69.8 24 1015.0 24 9999.9 0 80.4 24 10.2 24 19.0 999.9 94.3* 75.4* 0.00I 999.9 000000 724050 13743 19440713 81.9 24 69.8 24 1015.1 24 9999.9 0 60.6 24 7.2 24 12.0 999.9 89.2* 76.3* 99.99 999.9 010000 724050 13743 19440714 74.0 24 69.7 24 1020.2 24 9999.9 0 3.4 24 4.7 24 7.0 999.9 81.3* 69.3* 99.99 999.9 110000 724050 13743 19440715 75.9 24 69.7 24 1018.7 24 9999.9 0 4.2 24 3.9 24 7.0 999.9 84.4* 70.3* 0.00I 999.9 100000 724050 13743 19440716 80.2 24 71.3 24 1013.9 24 9999.9 0 13.2 24 4.0 24 8.9 999.9 91.2* 72.3* 0.00I 999.9 100000 724050 13743 19440717 77.7 24 63.6 24 1012.9 24 9999.9 0 14.1 24 6.5 24 13.0 999.9 85.3* 70.3* 0.00I 999.9 000000 724050 13743 19440718 74.9 24 60.1 24 1017.5 24 9999.9 0 41.0 24 6.8 24 9.9 999.9 83.3* 65.3* 99.99 999.9 010000 724050 13743 19440719 74.7 24 61.6 24 1018.6 24 9999.9 0 68.8 24 9.0 24 14.0 999.9 83.3* 66.4* 99.99 999.9 010000 724050 13743 19440720 72.6 24 67.0 24 1012.6 24 9999.9 0 17.5 24 7.4 24 15.9 999.9 82.4* 65.3* 99.99 999.9 010010 724050 13743 19440721 73.3 24 59.9 24 1011.7 24 9999.9 0 48.3 24 9.5 24 19.0 999.9 79.3* 65.3* 99.99 999.9 010000 724050 13743 19440722 73.4 24 54.2 24 1018.1 24 9999.9 0 72.4 24 5.8 24 9.9 999.9 86.4* 61.3* 0.00I 999.9 000000 724050 13743 19440723 77.8 24 61.4 24 1016.8 24 9999.9 0 32.7 24 5.2 24 8.9 999.9 90.3* 65.3* 0.00I 999.9 000000 724050 13743 19440724 80.3 24 64.1 24 1013.7 24 9999.9 0 41.2 24 8.0 24 9.9 999.9 91.2* 72.3* 0.00I 999.9 000000 724050 13743 19440725 83.7 24 68.6 24 1011.0 24 9999.9 0 33.3 24 7.4 24 9.9 999.9 94.3* 77.4* 99.99 999.9 010000 724050 13743 19440726 81.7 24 70.6 24 1010.6 24 9999.9 0 4.9 24 5.8 24 9.9 999.9 93.4* 71.2* 0.00I 999.9 000000 724050 13743 19440727 85.8 24 69.2 24 1005.6 24 9999.9 0 49.3 24 9.5 24 16.9 999.9 94.3* 79.3* 0.00I 999.9 000000 724050 13743 19440728 81.0 24 69.1 24 1007.5 24 9999.9 0 36.3 24 7.0 24 12.0 999.9 93.4* 71.2* 99.99 999.9 110010 724050 13743 19440729 80.7 24 66.9 24 1008.4 24 9999.9 0 45.7 24 6.7 24 11.1 999.9 91.2* 73.4* 0.00I 999.9 000000 724050 13743 19440730 77.7 24 66.8 24 1011.9 24 9999.9 0 29.0 24 7.2 24 13.0 999.9 97.3* 68.4* 99.99 999.9 110010 724050 13743 19440731 78.0 24 66.6 24 1016.4 24 9999.9 0 68.5 24 7.9 24 16.9 999.9 90.3* 70.3* 99.99 999.9 010010 724050 13743 19440801 80.3 24 70.9 24 1020.4 24 9999.9 0 53.4 24 7.0 24 9.9 999.9 91.2* 73.4* 0.00I 999.9 000000 724050 13743 19440802 75.1 24 71.8 24 1015.6 24 9999.9 0 16.1 24 9.7 24 21.0 999.9 81.3* 72.3* 99.99 999.9 110000 724050 13743 19440803 77.8 24 71.1 24 1013.5 24 9999.9 0 44.8 24 9.6 24 15.0 999.9 87.3* 72.3* 99.99 999.9 110000 724050 13743 19440804 83.6 24 71.9 24 1014.8 24 9999.9 0 39.8 24 5.2 24 9.9 999.9 97.3* 72.3* 0.00I 999.9 000000 724050 13743 19440805 87.1 24 72.9 24 1011.7 24 9999.9 0 52.1 24 6.1 24 9.9 999.9 97.3* 77.4* 0.00I 999.9 000000 724050 13743 19440806 82.6 24 71.6 24 1009.1 24 9999.9 0 22.8 24 6.3 24 9.9 999.9 89.2* 78.3* 99.99 999.9 010000 724050 13743 19440807 76.8 24 72.0 24 1011.0 24 9999.9 0 3.5 24 6.8 24 14.0 999.9 82.4* 72.3* 99.99 999.9 110010 724050 13743 19440808 73.1 24 60.1 24 1018.3 24 9999.9 0 41.2 24 8.6 24 15.0 999.9 83.3* 65.3* 0.00I 999.9 000000 724050 13743 19440809 72.8 24 60.4 24 1023.3 24 9999.9 0 37.0 24 6.0 24 8.9 999.9 82.4* 61.3* 0.00I 999.9 000000 724050 13743 19440810 75.6 24 62.1 24 1019.9 24 9999.9 0 51.8 24 5.7 24 9.9 999.9 89.2* 65.3* 0.00I 999.9 000000 724050 13743 19440811 80.1 24 64.8 24 1014.4 24 9999.9 0 28.7 24 5.6 24 8.9 999.9 93.4* 68.4* 0.00I 999.9 000000 724050 13743 19440812 82.1 24 70.2 24 1010.8 24 9999.9 0 4.5 24 5.9 24 8.9 999.9 95.4* 71.2* 0.00I 999.9 000000 724050 13743 19440813 84.7 24 74.1 24 1011.0 24 9999.9 0 9.9 24 7.4 24 9.9 999.9 94.3* 77.4* 0.00I 999.9 000000 724050 13743 19440814 83.9 24 70.6 24 1014.1 24 9999.9 0 42.3 24 8.8 24 13.0 999.9 91.2* 77.4* 0.00I 999.9 000000 724050 13743 19440815 83.0 24 71.4 24 1015.3 24 9999.9 0 68.8 24 6.9 24 9.9 999.9 93.4* 74.3* 0.00I 999.9 000000 724050 13743 19440816 84.3 24 73.5 24 1012.3 24 9999.9 0 45.4 24 6.5 24 8.0 999.9 94.3* 77.4* 99.99 999.9 010000 724050 13743 19440817 83.6 24 71.5 24 1008.2 24 9999.9 0 43.8 24 6.1 24 8.9 999.9 95.4* 75.4* 99.99 999.9 010000 724050 13743 19440818 80.4 24 65.1 24 1008.4 24 9999.9 0 49.0 24 10.3 24 16.9 999.9 87.3* 73.4* 99.99 999.9 010000 724050 13743 19440819 73.8 24 52.2 24 1019.8 24 9999.9 0 84.1 24 7.6 24 9.9 999.9 82.4* 62.4* 0.00I 999.9 000000 724050 13743 19440820 70.8 24 54.8 24 1026.0 24 9999.9 0 48.2 24 6.3 24 9.9 999.9 83.3* 58.3* 0.00I 999.9 000000 724050 13743 19440821 75.3 24 59.7 24 1023.7 24 9999.9 0 65.2 24 9.5 24 14.0 999.9 87.3* 66.4* 0.00I 999.9 000000 724050 13743 19440822 74.2 24 65.7 24 1018.9 24 9999.9 0 21.2 24 7.0 24 9.9 999.9 79.3* 68.4* 99.99 999.9 010000 724050 13743 19440823 77.1 24 61.3 24 1015.4 23 9999.9 0 44.0 24 5.3 24 8.9 999.9 86.4* 70.3* 0.00I 999.9 000000 724050 13743 19440824 71.0 24 56.6 24 1013.3 24 9999.9 0 55.8 24 12.4 24 22.9 999.9 77.4* 66.4* 99.99 999.9 010000 724050 13743 19440825 67.5 24 50.2 24 1019.7 24 9999.9 0 45.2 24 6.2 24 9.9 999.9 77.4* 55.4* 0.00I 999.9 000000 724050 13743 19440826 66.5 24 50.0 24 1023.2 24 9999.9 0 47.9 24 5.0 24 9.9 999.9 79.3* 54.3* 0.00I 999.9 000000 724050 13743 19440827 67.7 24 52.2 24 1025.5 24 9999.9 0 52.2 24 5.3 24 8.9 999.9 79.3* 56.3* 0.00I 999.9 000000 724050 13743 19440828 65.4 24 56.1 24 1023.1 24 9999.9 0 21.6 24 6.3 24 8.9 999.9 71.2* 57.4* 99.99 999.9 010000 724050 13743 19440829 69.0 24 59.0 24 1016.0 24 9999.9 0 17.9 24 7.7 24 13.0 999.9 80.2* 63.3* 0.00I 999.9 000000 724050 13743 19440830 72.8 24 57.1 24 1016.8 24 9999.9 0 37.0 24 7.2 24 9.9 999.9 88.3* 62.4* 0.00I 999.9 000000 724050 13743 19440831 73.8 24 62.3 24 1016.2 24 9999.9 0 12.5 24 6.0 24 8.9 999.9 85.3* 61.3* 0.00I 999.9 100000 724050 13743 19440901 79.4 24 71.8 24 1014.1 24 9999.9 0 9.9 24 8.1 24 21.0 999.9 90.3* 74.3* 99.99 999.9 010010 724050 13743 19440902 79.2 24 68.8 24 1013.7 24 9999.9 0 52.5 24 7.1 24 9.9 999.9 93.4* 72.3* 0.00I 999.9 000000 724050 13743 19440903 79.5 24 67.6 24 1013.5 24 9999.9 0 63.5 24 6.7 24 12.0 999.9 91.2* 67.3* 0.00I 999.9 000000 724050 13743 19440904 82.5 24 68.0 24 1010.0 24 9999.9 0 21.3 24 5.8 24 8.9 999.9 93.4* 72.3* 0.00I 999.9 000000 724050 13743 19440905 81.5 24 65.8 24 1004.5 24 9999.9 0 52.9 24 7.5 24 15.0 999.9 89.2* 74.3* 0.00I 999.9 000000 724050 13743 19440906 76.7 24 58.6 24 1008.1 24 9999.9 0 64.6 24 6.8 24 12.0 999.9 88.3* 66.4* 0.00I 999.9 000000 724050 13743 19440907 71.9 24 58.7 24 1011.9 24 9999.9 0 44.1 24 10.8 24 26.0 999.9 79.3* 66.4* 99.99 999.9 110000 724050 13743 19440908 65.4 24 46.8 24 1017.9 24 9999.9 0 72.1 24 8.0 24 15.0 999.9 72.3* 54.3* 0.00I 999.9 000000 724050 13743 19440909 65.2 24 51.6 24 1018.6 24 9999.9 0 32.6 24 6.8 24 12.0 999.9 78.3* 54.3* 0.00I 999.9 000000 724050 13743 19440910 66.3 24 54.7 24 1020.8 24 9999.9 0 13.3 24 5.4 24 8.9 999.9 79.3* 56.3* 0.00I 999.9 000000 724050 13743 19440911 66.3 24 57.2 24 1020.9 24 9999.9 0 28.4 24 6.4 24 11.1 999.9 74.3* 58.3* 0.00I 999.9 000000 724050 13743 19440912 67.9 24 64.9 24 1013.5 24 9999.9 0 3.5 24 6.6 24 8.9 999.9 73.4* 64.4* 99.99 999.9 110000 724050 13743 19440913 72.6 24 71.5 24 1010.0 24 9999.9 0 3.0 24 6.3 24 8.9 999.9 76.3* 69.3* 99.99 999.9 110000 724050 13743 19440914 75.0 24 72.9 24 1005.5 24 9999.9 0 11.3 24 8.8 24 22.0 999.9 80.2* 72.3* 99.99 999.9 110000 724050 13743 19440915 75.5 24 63.6 24 1010.1 24 9999.9 0 29.8 24 7.1 24 14.0 999.9 84.4* 68.4* 0.00I 999.9 000000 724050 13743 19440916 73.3 24 61.7 24 1019.4 24 9999.9 0 24.6 24 7.2 24 12.0 999.9 83.3* 64.4* 0.00I 999.9 100000 724050 13743 19440917 70.2 24 62.8 24 1025.9 24 9999.9 0 4.0 24 5.5 24 9.9 999.9 81.3* 61.3* 0.00I 999.9 100000 724050 13743 19440918 69.8 24 66.4 24 1027.9 24 9999.9 0 16.8 24 6.9 24 8.9 999.9 73.4* 68.4* 99.99 999.9 110000 724050 13743 19440919 71.2 24 67.5 24 1023.1 24 9999.9 0 28.8 24 6.6 24 8.9 999.9 76.3* 68.4* 99.99 999.9 010000 724050 13743 19440920 74.9 24 68.9 24 1018.6 24 9999.9 0 41.2 24 5.8 24 8.9 999.9 85.3* 70.3* 99.99 999.9 110000 724050 13743 19440921 74.5 24 69.6 24 1013.6 24 9999.9 0 16.8 24 7.0 24 16.9 999.9 84.4* 70.3* 99.99 999.9 110010 724050 13743 19440922 70.5 24 60.0 24 1012.1 24 9999.9 0 26.8 24 7.5 24 15.9 999.9 75.4* 64.4* 0.00I 999.9 000000 724050 13743 19440923 63.3 24 49.8 24 1019.5 24 9999.9 0 41.3 24 8.6 24 11.1 999.9 69.3* 59.4* 0.00I 999.9 000000 724050 13743 19440924 59.3 24 43.6 24 1026.3 24 9999.9 0 42.0 24 6.9 24 9.9 999.9 68.4* 53.4* 99.99 999.9 010000 724050 13743 19440925 58.6 24 49.6 24 1026.1 24 9999.9 0 64.3 24 5.1 24 8.0 999.9 66.4* 53.4* 0.00I 999.9 000000 724050 13743 19440926 61.8 24 53.3 24 1023.2 24 9999.9 0 39.5 24 4.6 24 8.0 999.9 76.3* 52.3* 0.00I 999.9 100000 724050 13743 19440927 66.4 24 59.4 24 1021.0 24 9999.9 0 4.0 24 5.8 24 9.9 999.9 79.3* 58.3* 0.00I 999.9 000000 724050 13743 19440928 70.6 24 64.9 24 1016.5 24 9999.9 0 4.0 24 6.5 24 9.9 999.9 78.3* 64.4* 99.99 999.9 110000 724050 13743 19440929 68.1 24 65.4 24 1013.1 24 9999.9 0 3.4 24 5.8 24 8.9 999.9 70.3* 64.4* 99.99 999.9 110000 724050 13743 19440930 58.0 24 55.1 24 1014.0 24 9999.9 0 3.5 24 8.2 24 13.0 999.9 64.4* 55.4* 99.99 999.9 110000 724050 13743 19441001 62.0 24 52.1 24 1016.9 24 9999.9 0 40.5 24 6.8 24 9.9 999.9 71.2* 56.3* 0.00I 999.9 100000 724050 13743 19441002 63.7 24 55.7 24 1017.8 24 9999.9 0 4.0 24 3.8 24 8.9 999.9 76.3* 54.3* 0.00I 999.9 100000 724050 13743 19441003 55.5 24 49.4 23 1019.1 24 9999.9 0 4.0 24 7.3 24 9.9 999.9 66.4* 48.4* 99.99 999.9 110000 724050 13743 19441004 52.1 24 49.5 24 1021.2 24 9999.9 0 2.2 24 5.5 24 8.9 999.9 56.3* 48.4* 99.99 999.9 110000 724050 13743 19441005 59.2 24 57.4 24 1023.4 24 9999.9 0 1.7 24 4.3 24 6.0 999.9 64.4* 52.3* 99.99 999.9 110000 724050 13743 19441006 68.3 24 65.2 24 1021.4 24 9999.9 0 2.4 24 5.4 24 7.0 999.9 80.2* 61.3* 99.99 999.9 110000 724050 13743 19441007 71.7 24 64.4 24 1016.1 24 9999.9 0 30.1 24 6.0 24 9.9 999.9 85.3* 60.3* 0.00I 999.9 100000 724050 13743 19441008 67.5 24 54.0 24 1011.5 24 9999.9 0 72.3 24 6.4 24 9.9 999.9 74.3* 60.3* 99.99 999.9 010010 724050 13743 19441009 59.8 24 48.9 24 1012.4 24 9999.9 0 44.3 24 6.1 24 15.9 999.9 68.4* 51.3* 99.99 999.9 010010 724050 13743 19441010 57.1 24 47.0 24 1014.7 24 9999.9 0 64.4 24 7.5 24 11.1 999.9 64.4* 48.4* 0.00I 999.9 000000 724050 13743 19441011 55.0 24 45.3 24 1016.9 24 9999.9 0 21.4 24 6.4 24 9.9 999.9 65.3* 47.3* 0.00I 999.9 100000 724050 13743 19441012 56.4 24 46.7 24 1019.5 24 9999.9 0 3.9 24 5.2 24 7.0 999.9 68.4* 47.3* 0.00I 999.9 000000 724050 13743 19441013 59.4 24 53.8 24 1014.0 24 9999.9 0 2.5 24 7.0 24 9.9 999.9 63.3* 57.4* 99.99 999.9 110000 724050 13743 19441014 63.0 24 53.6 24 1008.4 24 9999.9 0 34.5 24 8.5 24 16.9 999.9 74.3* 56.3* 99.99 999.9 110000 724050 13743 19441015 55.1 24 36.5 24 1025.3 24 9999.9 0 65.1 24 12.5 24 22.0 999.9 62.4* 49.3* 0.00I 999.9 000000 724050 13743 19441016 47.9 24 33.8 24 1031.6 24 9999.9 0 36.5 24 5.1 24 9.9 999.9 62.4* 36.3* 0.00I 999.9 000000 724050 13743 19441017 55.3 24 39.6 24 1025.2 24 9999.9 0 32.8 24 6.0 24 9.9 999.9 69.3* 46.4* 0.00I 999.9 000000 724050 13743 19441018 57.5 24 46.6 24 1021.8 24 9999.9 0 2.5 24 4.5 24 8.9 999.9 75.4* 46.4* 0.00I 999.9 100000 724050 13743 19441019 61.4 24 48.8 24 1017.6 24 9999.9 0 3.3 24 5.3 24 8.9 999.9 75.4* 50.4* 0.00I 999.9 000000 724050 13743 19441020 53.8 24 45.0 24 1014.3 24 9999.9 0 4.9 24 10.8 24 15.9 999.9 63.3* 50.4* 99.99 999.9 110000 724050 13743 19441021 53.3 24 49.1 24 1003.4 24 9999.9 0 35.8 24 15.1 24 22.0 999.9 59.4* 47.3* 99.99 999.9 110000 724050 13743 19441022 49.8 24 38.0 24 1022.0 24 9999.9 0 87.9 24 7.9 24 15.9 999.9 58.3* 42.4* 0.00I 999.9 000000 724050 13743 19441023 46.0 24 34.7 24 1028.3 24 9999.9 0 34.6 24 5.6 24 8.9 999.9 62.4* 34.3* 0.00I 999.9 100000 724050 13743 19441024 51.7 24 42.7 24 1020.8 24 9999.9 0 16.1 24 6.2 24 8.9 999.9 66.4* 40.3* 0.00I 999.9 000000 724050 13743 19441025 57.8 24 49.6 24 1017.3 24 9999.9 0 3.6 24 4.4 24 7.0 999.9 73.4* 46.4* 99.99 999.9 010000 724050 13743 19441026 56.5 24 46.5 24 1015.7 24 9999.9 0 23.1 24 7.1 24 18.1 999.9 66.4* 49.3* 0.00I 999.9 100000 724050 13743 19441027 48.4 24 33.7 24 1020.5 24 9999.9 0 99.4 24 16.0 24 22.0 999.9 57.4* 42.4* 0.00I 999.9 000000 724050 13743 19441028 45.4 24 30.2 24 1017.3 24 9999.9 0 84.1 24 12.8 24 16.9 999.9 60.3* 35.4* 0.00I 999.9 000000 724050 13743 19441029 54.2 24 37.0 24 1013.7 24 9999.9 0 72.2 24 13.4 24 22.0 999.9 61.3* 49.3* 0.00I 999.9 000000 724050 13743 19441030 53.2 24 37.5 24 1022.3 24 9999.9 0 24.4 24 5.3 24 8.0 999.9 67.3* 40.3* 0.00I 999.9 000000 724050 13743 19441031 53.5 24 41.1 24 1028.2 24 9999.9 0 31.9 24 5.4 24 11.1 999.9 69.3* 40.3* 0.00I 999.9 000000 724050 13743 19441101 56.8 24 48.7 24 1030.8 24 9999.9 0 31.3 24 6.0 24 9.9 999.9 72.3* 45.3* 0.00I 999.9 100000 724050 13743 19441102 56.6 24 51.2 24 1031.1 24 9999.9 0 15.0 24 6.1 24 11.1 999.9 68.4* 49.3* 0.00I 999.9 100000 724050 13743 19441103 60.1 24 54.4 24 1028.0 24 9999.9 0 3.8 24 5.7 24 8.0 999.9 69.3* 55.4* 99.99 999.9 110000 724050 13743 19441104 57.2 24 53.5 24 1019.5 24 9999.9 0 11.1 24 5.0 24 7.0 999.9 67.3* 51.3* 99.99 999.9 110000 724050 13743 19441105 51.5 24 40.9 24 1014.1 24 9999.9 0 64.3 24 12.7 24 22.0 999.9 61.3* 45.3* 99.99 999.9 010000 724050 13743 19441106 41.8 24 28.0 24 1016.9 24 9999.9 0 91.8 24 17.8 24 25.1 999.9 46.4* 36.3* 0.00I 999.9 000000 724050 13743 19441107 45.9 24 32.6 24 1021.2 24 9999.9 0 6.3 24 10.6 24 22.0 999.9 57.4* 39.4* 0.00I 999.9 000000 724050 13743 19441108 52.2 24 37.9 24 1019.4 24 9999.9 0 14.8 24 5.9 24 8.9 999.9 72.3* 40.3* 0.00I 999.9 000000 724050 13743 19441109 56.2 24 43.7 24 1016.3 24 9999.9 0 4.1 24 5.5 24 13.0 999.9 70.3* 44.4* 0.00I 999.9 000000 724050 13743 19441110 59.0 24 52.5 24 1007.8 24 9999.9 0 29.5 24 9.8 24 15.0 999.9 63.3* 54.3* 99.99 999.9 110000 724050 13743 19441111 52.6 24 41.1 24 1012.4 24 9999.9 0 57.2 24 11.9 24 22.9 999.9 57.4* 49.3* 99.99 999.9 010000 724050 13743 19441112 46.2 24 33.7 24 1020.7 24 9999.9 0 48.6 24 8.0 24 14.0 999.9 58.3* 37.4* 0.00I 999.9 000000 724050 13743 19441113 44.5 24 33.0 24 1019.6 24 9999.9 0 7.2 24 3.3 24 8.9 999.9 61.3* 33.4* 0.00I 999.9 000000 724050 13743 19441114 45.7 24 36.7 23 1016.1 24 9999.9 0 2.3 24 2.8 24 9.9 999.9 63.3* 34.3* 0.00I 999.9 000000 724050 13743 19441115 52.8 24 45.3 24 1010.7 24 9999.9 0 2.3 24 3.6 24 8.9 999.9 65.3* 46.4* 99.99 999.9 010000 724050 13743 19441116 53.4 24 42.8 24 1006.9 24 9999.9 0 47.4 24 8.0 24 16.9 999.9 57.4* 48.4* 0.00I 999.9 000000 724050 13743 19441117 48.1 24 38.6 24 1014.5 24 9999.9 0 64.4 24 11.2 24 15.0 999.9 52.3* 44.4* 0.00I 999.9 000000 724050 13743 19441118 47.6 24 36.2 24 1022.3 24 9999.9 0 67.9 24 9.2 24 11.1 999.9 53.4* 43.3* 0.00I 999.9 000000 724050 13743 19441119 42.9 24 36.7 24 1024.1 24 9999.9 0 17.7 24 7.2 24 8.9 999.9 50.4* 36.3* 0.00I 999.9 000000 724050 13743 19441120 42.0 24 37.4 24 1013.5 24 9999.9 0 35.5 24 8.2 24 11.1 999.9 44.4* 39.4* 99.99 999.9 110000 724050 13743 19441121 42.7 24 34.5 24 1004.6 24 9999.9 0 56.5 24 17.4 24 30.9 999.9 48.4* 37.4* 99.99 999.9 110000 724050 13743 19441122 42.3 24 30.5 24 1011.4 24 9999.9 0 99.4 24 12.2 24 15.9 999.9 47.3* 38.3* 0.00I 999.9 000000 724050 13743 19441123 40.3 24 27.6 24 1011.3 24 9999.9 0 37.1 24 6.8 24 9.9 999.9 46.4* 34.3* 0.00I 999.9 000000 724050 13743 19441124 38.9 24 27.9 24 1013.7 24 9999.9 0 17.7 24 10.6 24 21.0 999.9 43.3* 34.3* 99.99 999.9 010000 724050 13743 19441125 38.7 24 25.0 24 1023.8 24 9999.9 0 80.2 24 10.7 24 15.9 999.9 45.3* 32.4* 0.00I 999.9 000000 724050 13743 19441126 37.7 24 26.3 24 1026.0 24 9999.9 0 28.9 24 5.1 24 9.9 999.9 49.3* 28.4* 0.00I 999.9 000000 724050 13743 19441127 42.8 24 39.0 24 1019.7 24 9999.9 0 4.4 24 7.5 24 9.9 999.9 46.4* 39.4* 99.99 999.9 110000 724050 13743 19441128 47.6 24 38.0 24 1018.2 24 9999.9 0 53.1 24 10.5 24 16.9 999.9 51.3* 43.3* 99.99 999.9 110000 724050 13743 19441129 42.5 24 36.3 24 1019.6 24 9999.9 0 3.8 24 6.5 24 9.9 999.9 46.4* 40.3* 99.99 999.9 110000 724050 13743 19441130 40.6 24 34.3 24 1005.1 24 9999.9 0 35.7 24 16.2 24 26.0 999.9 44.4* 36.3* 99.99 999.9 110000 724050 13743 19441201 33.1 24 17.0 24 1019.4 24 9999.9 0 91.8 24 16.2 24 22.9 999.9 39.4* 28.4* 0.00I 999.9 000000 724050 13743 19441202 32.3 24 16.6 24 1030.2 24 9999.9 0 80.1 24 13.6 24 22.0 999.9 36.3* 26.4* 0.00I 999.9 000000 724050 13743 19441203 30.6 24 13.5 24 1036.1 24 9999.9 0 87.9 24 10.7 24 19.0 999.9 36.3* 25.3* 0.00I 999.9 000000 724050 13743 19441204 33.7 24 12.5 24 1035.2 24 9999.9 0 80.1 24 8.6 24 11.1 999.9 43.3* 26.4* 0.00I 999.9 000000 724050 13743 19441205 35.9 24 14.2 24 1029.0 24 9999.9 0 9.3 24 5.3 24 7.0 999.9 53.4* 24.4* 0.00I 999.9 000000 724050 13743 19441206 37.9 24 23.0 24 1021.2 24 9999.9 0 2.5 24 4.2 24 6.0 999.9 53.4* 26.4* 0.00I 999.9 000000 724050 13743 19441207 39.6 24 29.8 24 1018.0 23 9999.9 0 2.7 24 3.3 24 7.0 999.9 46.4* 31.3* 0.00I 999.9 000000 724050 13743 19441208 45.0 24 39.6 24 1002.6 24 9999.9 0 3.4 24 10.4 24 19.0 999.9 53.4* 41.4* 99.99 999.9 010000 724050 13743 19441209 40.0 24 25.6 24 1014.8 24 9999.9 0 68.6 24 14.5 24 26.0 999.9 45.3* 36.3* 0.00I 999.9 000000 724050 13743 19441210 36.1 24 23.4 24 1024.5 24 9999.9 0 72.1 24 8.2 24 15.9 999.9 42.4* 30.4* 0.00I 999.9 000000 724050 13743 19441211 34.2 24 29.5 24 1013.3 24 9999.9 0 2.5 24 7.9 24 19.0 999.9 49.3* 29.3* 99.99 999.9 110000 724050 13743 19441212 36.9 24 30.0 24 988.1 24 9999.9 0 35.8 24 15.0 24 26.0 999.9 50.4* 29.3* 99.99 999.9 111000 724050 13743 19441213 34.6 24 19.5 24 1006.3 24 9999.9 0 91.8 24 16.0 24 23.9 999.9 40.3* 31.3* 0.00I 999.9 000000 724050 13743 19441214 29.7 24 16.7 24 1015.3 24 9999.9 0 22.3 24 12.2 24 15.9 999.9 35.4* 24.4* 0.00I 999.9 000000 724050 13743 19441215 31.5 24 17.0 24 1021.8 24 9999.9 0 16.5 24 7.8 24 11.1 999.9 39.4* 25.3* 0.00I 999.9 000000 724050 13743 19441216 37.4 24 23.5 24 1011.5 24 9999.9 0 28.8 24 10.4 24 22.9 999.9 44.4* 34.3* 0.00I 999.9 000000 724050 13743 19441217 36.2 24 22.0 24 1015.3 24 9999.9 0 47.7 24 7.1 24 11.1 999.9 47.3* 26.4* 0.00I 999.9 000000 724050 13743 19441218 35.9 24 26.0 24 1014.4 24 9999.9 0 3.5 24 4.7 24 8.9 999.9 47.3* 27.3* 0.00I 999.9 000000 724050 13743 19441219 31.1 24 18.1 24 1014.8 24 9999.9 0 56.6 24 14.4 24 23.9 999.9 41.4* 26.4* 99.99 999.9 010000 724050 13743 19441220 28.2 24 14.6 24 1022.2 24 9999.9 0 28.5 24 8.9 24 15.9 999.9 40.3* 20.3* 0.00I 999.9 000000 724050 13743 19441221 40.9 24 24.1 24 1014.3 24 9999.9 0 21.4 24 9.3 24 15.0 999.9 46.4* 37.4* 0.00I 999.9 000000 724050 13743 19441222 24.3 24 16.1 24 1030.4 24 9999.9 0 20.0 24 9.2 24 16.9 999.9 36.3* 16.3* 99.99 999.9 011000 724050 13743 19441223 28.5 24 20.4 24 1029.3 24 9999.9 0 20.2 24 6.4 24 8.9 999.9 37.4* 24.4* 0.00I 999.9 000000 724050 13743 19441224 35.2 24 29.8 24 1026.4 24 9999.9 0 2.5 24 5.8 24 9.9 999.9 38.3* 31.3* 0.00I 999.9 000000 724050 13743 19441225 37.3 24 34.5 24 1022.7 24 9999.9 0 1.6 24 4.1 24 9.9 999.9 44.4* 33.4* 99.99 999.9 110000 724050 13743 19441226 40.9 24 28.0 24 1024.5 24 9999.9 0 83.8 24 14.7 24 22.0 999.9 56.3* 28.4* 0.00I 999.9 100000 724050 13743 19441227 24.7 24 14.4 24 1034.0 23 9999.9 0 39.8 24 6.9 24 14.0 999.9 29.3* 20.3* 99.99 999.9 010000 724050 13743 19441228 34.4 24 28.6 24 1020.2 24 9999.9 0 40.8 24 10.2 24 23.9 999.9 37.4* 31.3* 99.99 999.9 010000 724050 13743 19441229 28.6 24 16.5 24 1032.5 24 9999.9 0 33.4 24 8.5 24 11.1 999.9 32.4* 26.4* 99.99 999.9 001000 724050 13743 19441230 27.6 24 25.0 24 1028.0 23 9999.9 0 2.8 24 6.5 24 8.0 999.9 30.4* 25.3* 99.99 999.9 111000 724050 13743 19441231 33.3 24 32.6 24 1021.6 24 9999.9 0 1.7 24 5.6 24 8.0 999.9 38.3* 30.4* 99.99 999.9 110000 fluids-1.0.22/tests/gsod/1995/0000755000175000017500000000000014302004506015107 5ustar nileshnileshfluids-1.0.22/tests/gsod/1995/724050-13743.op0000644000175000017500000014327214302004506016700 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19950101 40.5 24 38.6 24 1016.5 24 1014.2 24 5.1 24 5.6 24 8.0 999.9 51.1* 28.9 0.45G 999.9 110000 724050 13743 19950102 39.7 24 26.4 24 1014.4 24 1012.0 24 16.2 24 11.2 24 22.0 31.9 52.0 32.0* 0.03G 999.9 010000 724050 13743 19950103 29.5 24 11.0 24 1026.0 24 1023.7 24 16.8 24 8.1 24 15.0 22.0 33.1* 25.0 0.02G 999.9 000000 724050 13743 19950104 33.1 24 11.5 24 1021.4 24 1019.0 24 14.7 24 8.0 24 14.0 22.9 37.0 25.0 0.00G 999.9 001000 724050 13743 19950105 21.1 24 -3.0 24 1029.0 24 1026.6 24 15.3 24 10.8 24 20.0 26.8 37.0 15.1 0.00G 999.9 000000 724050 13743 19950106 27.0 24 7.4 24 1024.6 24 1022.2 24 13.8 24 9.1 24 15.9 22.0 37.9* 15.1 0.00G 999.9 111000 724050 13743 19950107 36.3 24 32.7 24 1005.0 24 1002.7 24 5.3 24 6.3 24 15.0 999.9 45.0* 19.9 1.07G 999.9 110000 724050 13743 19950108 37.3 24 20.8 24 1018.7 24 1016.3 24 14.2 24 10.1 24 18.1 23.9 45.0 32.9 0.01G 999.9 000000 724050 13743 19950109 36.3 24 27.2 24 1022.4 24 1020.0 24 11.4 24 4.8 24 10.1 999.9 45.0* 30.9 0.00G 999.9 000000 724050 13743 19950110 35.2 24 20.8 24 1027.9 24 1025.6 24 13.5 24 6.7 24 11.1 999.9 45.0 30.0 0.00G 999.9 001000 724050 13743 19950111 35.1 24 24.8 24 1028.2 24 1025.8 24 9.2 24 5.5 24 7.0 999.9 44.1* 29.8 0.04G 999.9 111000 724050 13743 19950112 44.1 24 38.8 24 1021.9 24 1019.5 24 6.8 24 6.8 24 15.0 19.8 63.0* 32.0 0.01G 999.9 110000 724050 13743 19950113 54.5 24 48.5 24 1020.5 24 1018.1 24 9.5 24 8.4 24 13.0 999.9 68.0* 36.0 0.00D 999.9 100000 724050 13743 19950114 59.7 24 54.3 24 1020.6 24 1018.3 24 11.4 24 9.0 24 17.1 22.9 69.1 46.9 0.05G 999.9 110000 724050 13743 19950115 62.6 24 58.5 24 1012.3 24 1009.9 24 8.3 24 14.6 24 20.0 28.9 70.0 52.0 0.21G 999.9 110000 724050 13743 19950116 53.4 24 47.7 24 1009.6 24 1007.3 24 15.2 24 10.3 24 15.0 23.9 64.9 46.9* 0.20G 999.9 000000 724050 13743 19950117 44.7 24 35.0 24 1016.9 24 1014.5 24 17.1 24 11.8 24 15.0 999.9 57.9 39.9 0.00G 999.9 000000 724050 13743 19950118 47.2 24 41.1 24 1022.8 24 1020.4 24 8.6 24 7.0 24 10.1 999.9 50.0 39.9 0.00G 999.9 110000 724050 13743 19950119 44.0 24 42.3 24 1020.6 24 1018.3 24 4.0 24 6.5 24 8.0 999.9 48.9 42.1 0.00D 999.9 110000 724050 13743 19950120 45.6 24 42.7 24 998.2 24 995.9 24 6.5 24 8.8 24 18.8 25.8 48.9 41.9 1.28G 999.9 110010 724050 13743 19950121 41.8 24 28.0 24 999.1 24 996.7 24 14.6 24 9.7 24 15.0 23.9 48.9 36.0 0.01G 999.9 010000 724050 13743 19950122 35.0 24 16.2 24 1009.0 24 1006.6 24 14.9 24 10.2 24 14.0 17.9 46.0 30.9 0.00G 999.9 000000 724050 13743 19950123 33.4 24 20.0 24 1013.1 24 1010.7 24 14.2 24 6.8 24 15.0 21.0 43.0 27.0 0.00G 999.9 001000 724050 13743 19950124 34.3 24 19.8 24 1013.3 24 1011.0 24 14.3 24 12.0 24 18.1 24.9 43.0 27.0 0.00G 0.4 001000 724050 13743 19950125 35.4 24 17.3 24 1020.2 24 1017.8 24 13.6 24 11.1 24 15.0 22.9 43.0* 29.8 0.00G 999.9 000000 724050 13743 19950126 32.4 24 14.4 24 1020.5 24 1018.1 24 13.5 24 11.0 24 15.0 25.8 43.0 27.0 0.00G 999.9 000000 724050 13743 19950127 33.3 24 14.9 24 1020.8 24 1018.4 24 13.0 24 8.3 24 13.0 999.9 45.0* 25.0 0.00G 999.9 000000 724050 13743 19950128 35.8 24 19.5 24 1018.5 24 1016.1 24 10.5 24 8.8 24 12.8 999.9 45.0 25.0 0.00G 999.9 111000 724050 13743 19950129 28.7 24 18.6 24 1020.5 24 1018.1 24 11.2 24 8.2 24 14.0 999.9 39.9 21.9 0.28G 3.5 101000 724050 13743 19950130 33.9 24 24.3 24 1017.2 24 1014.9 24 11.0 24 7.6 24 11.1 999.9 39.9* 21.9 0.00G 0.8 001000 724050 13743 19950131 37.0 24 23.1 24 1011.4 24 1009.0 24 13.0 24 8.1 24 12.0 999.9 48.0* 30.0 0.00G 0.4 000000 724050 13743 19950201 39.0 24 27.0 24 1006.2 24 1003.8 24 13.3 24 7.7 24 12.0 999.9 48.0 29.8 0.00G 999.9 000000 724050 13743 19950202 44.4 24 28.3 24 1007.4 24 1005.1 24 12.7 24 9.8 24 15.0 22.0 48.0 30.9 0.00G 999.9 000000 724050 13743 19950203 32.1 24 11.3 24 1017.3 24 1014.9 24 12.6 24 8.6 24 13.0 999.9 46.9 23.9 0.00G 999.9 000000 724050 13743 19950204 31.9 24 22.6 24 1001.2 24 998.9 24 8.8 24 11.1 24 19.8 37.9 37.0* 23.9 0.59G 4.3 101000 724050 13743 19950205 24.5 24 4.6 24 1002.9 24 1000.6 24 14.9 24 16.8 24 26.0 35.0 37.0 19.0* 0.00D 2.4 000000 724050 13743 19950206 14.3 24 -7.9 24 1013.6 24 1011.2 24 19.3 24 13.8 24 19.0 30.9 28.0 7.0 0.00G 2.4 000000 724050 13743 19950207 21.4 24 1.3 24 1015.1 24 1012.7 24 13.8 24 7.3 24 11.1 999.9 30.9* 7.0 0.00G 2.4 000000 724050 13743 19950208 24.2 24 8.2 24 1012.8 24 1010.5 24 12.6 24 10.8 24 19.0 32.8 30.9 12.9 0.00G 1.6 001000 724050 13743 19950209 23.0 24 3.8 24 1019.5 24 1017.1 24 13.5 24 9.7 24 14.0 18.8 30.9* 18.0 0.00G 1.2 000000 724050 13743 19950210 31.8 24 16.4 24 1012.5 24 1010.2 24 12.8 24 4.9 24 13.0 999.9 42.1* 18.0 0.00G 1.2 000000 724050 13743 19950211 38.4 24 26.3 24 1007.4 24 1005.0 24 11.6 24 6.8 24 13.0 14.0 48.9 25.0 0.00G 0.4 100000 724050 13743 19950212 25.7 24 -0.3 24 1017.1 24 1014.8 24 14.6 24 15.3 24 25.1 32.8 50.0 14.0 0.00G 999.9 000000 724050 13743 19950213 23.2 24 -2.3 24 1027.6 24 1025.3 24 18.1 24 8.8 24 14.0 999.9 33.1 14.0 0.00G 999.9 000000 724050 13743 19950214 29.5 24 10.9 24 1027.5 24 1025.2 24 14.1 24 3.3 24 12.0 999.9 39.9* 17.1 0.00G 999.9 000000 724050 13743 19950215 31.3 24 23.0 24 1027.6 24 1025.2 24 7.5 24 5.3 24 10.1 999.9 41.0 18.9 0.15G 1.2 111000 724050 13743 19950216 37.9 24 35.5 24 1016.9 24 1014.5 24 4.7 24 5.3 24 10.9 999.9 43.0* 27.9 0.20G 0.4 110000 724050 13743 19950217 40.3 24 32.1 24 1026.8 24 1024.4 24 8.0 24 4.0 24 7.0 999.9 48.0* 33.1 0.12G 999.9 110000 724050 13743 19950218 37.5 24 28.6 24 1030.6 24 1028.2 24 9.2 24 3.5 24 7.0 999.9 48.0 28.0 0.00G 999.9 100000 724050 13743 19950219 39.1 24 29.6 24 1025.5 24 1023.1 24 9.8 24 2.6 24 6.0 999.9 52.0* 27.0 0.00G 999.9 100000 724050 13743 19950220 45.8 24 37.9 24 1012.9 24 1010.5 24 9.8 24 3.5 24 8.9 999.9 62.1* 27.0 0.00G 999.9 100000 724050 13743 19950221 44.6 24 37.2 24 1003.0 24 1000.7 24 11.7 24 7.9 24 19.0 26.8 62.1 36.0 0.00G 999.9 100000 724050 13743 19950222 36.3 24 18.3 24 1017.6 24 1015.2 24 16.2 24 12.6 24 22.0 30.9 48.0 28.0 0.00G 999.9 000000 724050 13743 19950223 42.9 24 29.6 24 1015.5 24 1013.2 24 12.8 24 5.2 24 10.1 999.9 55.9* 27.9 0.00G 999.9 010000 724050 13743 19950224 45.1 24 27.4 24 1012.3 24 1009.9 24 15.7 24 11.3 24 22.0 33.8 57.0 36.0 0.00G 999.9 010000 724050 13743 19950225 36.3 24 14.7 24 1024.7 24 1022.3 24 16.2 24 8.6 24 17.1 26.8 50.0 27.0 0.00G 999.9 000000 724050 13743 19950226 39.8 24 27.2 24 1024.7 24 1022.3 24 12.3 24 7.7 24 14.0 999.9 48.0 27.0 0.00G 999.9 001000 724050 13743 19950227 33.2 24 30.6 24 1029.7 24 1027.3 24 5.1 24 7.0 24 12.0 999.9 43.0 30.0 0.00G 999.9 110000 724050 13743 19950228 43.2 24 42.3 24 1019.0 24 1016.6 24 2.8 24 3.8 24 8.0 999.9 53.1* 29.8 0.63G 999.9 110000 724050 13743 19950301 45.4 24 38.2 24 1019.4 24 1017.0 24 10.7 24 11.5 24 15.9 999.9 53.1 38.8 0.03G 999.9 100000 724050 13743 19950302 37.8 24 24.3 24 1025.7 24 1023.3 24 12.7 24 11.0 24 15.0 21.0 48.9 32.0 0.00G 999.9 000000 724050 13743 19950303 35.6 24 20.8 24 1030.0 24 1027.6 24 12.4 24 7.5 24 12.0 999.9 44.1 32.0 0.00G 999.9 000000 724050 13743 19950304 38.3 24 31.5 24 1030.4 24 1028.0 24 8.7 24 7.7 24 12.0 999.9 43.0* 32.0 0.00G 999.9 000000 724050 13743 19950305 41.8 24 34.4 24 1030.1 24 1027.7 24 7.9 24 8.2 24 11.1 999.9 50.0* 36.0 0.00G 999.9 100000 724050 13743 19950306 47.5 24 41.2 24 1022.6 24 1020.2 24 8.2 24 7.6 24 14.0 999.9 61.0* 37.9 0.05G 999.9 110000 724050 13743 19950307 50.0 24 48.0 24 1022.4 24 1020.0 24 5.1 24 6.2 24 12.0 999.9 62.1 41.0 0.04G 999.9 110000 724050 13743 19950308 54.7 24 52.7 24 1012.9 24 1010.6 24 7.9 24 12.3 24 24.9 35.9 62.1 41.0* 0.74G 999.9 110000 724050 13743 19950309 31.8 24 19.9 24 1020.2 24 1017.8 24 12.7 24 18.7 24 22.9 29.9 39.0* 25.0 1.24G 0.4 111000 724050 13743 19950310 29.5 24 9.1 24 1032.5 24 1030.1 24 14.7 24 12.0 24 15.0 19.8 37.9* 21.9 0.00G 999.9 000000 724050 13743 19950311 40.1 24 19.2 24 1031.3 24 1028.9 24 15.0 24 6.0 24 8.9 999.9 60.1* 21.9 0.00G 999.9 000000 724050 13743 19950312 48.1 24 33.6 24 1031.2 24 1028.9 24 14.2 24 6.4 24 11.1 999.9 66.9* 28.9 0.00G 999.9 000000 724050 13743 19950313 52.5 24 37.8 24 1031.9 24 1029.5 24 11.4 24 4.2 24 7.0 999.9 71.1* 36.0 0.00C 999.9 100000 724050 13743 19950314 57.2 24 39.7 24 1027.5 24 1025.1 24 9.7 24 3.5 24 7.0 999.9 75.0* 37.9 0.00C 999.9 000000 724050 13743 19950315 56.7 24 44.2 24 1023.0 24 1020.6 24 7.4 24 4.6 24 8.9 999.9 75.9 41.9 0.00G 999.9 100000 724050 13743 19950316 60.1 24 43.8 24 1016.7 24 1014.3 24 8.5 24 5.4 24 8.0 999.9 77.0* 43.9 0.00G 999.9 100000 724050 13743 19950317 61.7 24 41.0 24 1014.8 24 1012.4 24 10.9 24 7.5 24 15.9 22.9 78.1 46.9 0.00G 999.9 100000 724050 13743 19950318 51.7 24 29.0 24 1019.4 24 1017.0 24 15.0 24 14.7 24 24.1 29.9 75.9 39.9 0.00G 999.9 000000 724050 13743 19950319 51.0 24 36.0 24 1019.4 24 1017.1 24 13.3 24 6.2 24 15.0 19.8 62.1* 37.9 0.00G 999.9 000000 724050 13743 19950320 52.0 24 42.8 24 1016.5 24 1014.1 24 12.8 24 11.1 24 19.0 19.8 66.0* 37.9 0.00G 999.9 000000 724050 13743 19950321 58.9 24 46.1 24 1003.1 24 1000.7 24 13.7 24 11.2 24 15.0 22.0 66.9 44.1 0.09G 999.9 110000 724050 13743 19950322 54.0 24 35.4 24 1001.7 24 999.4 24 16.3 24 10.9 24 18.1 25.8 68.0 46.9 0.00D 999.9 000000 724050 13743 19950323 46.1 24 32.7 24 1005.0 24 1002.6 24 11.7 24 9.8 24 17.1 999.9 61.0 39.0 0.00G 999.9 000000 724050 13743 19950324 48.4 24 26.3 24 1008.6 24 1006.2 24 16.1 24 15.4 24 22.0 28.0 57.0* 38.8 0.00G 999.9 000000 724050 13743 19950325 46.7 24 14.4 24 1015.9 24 1013.6 24 16.8 24 14.0 24 20.0 28.9 57.9 37.0 0.00G 999.9 000000 724050 13743 19950326 52.6 24 19.9 24 1019.1 24 1016.8 24 17.2 24 12.4 24 15.0 999.9 63.0* 36.9 0.00G 999.9 000000 724050 13743 19950327 56.8 24 25.8 24 1017.0 24 1014.7 24 16.0 24 8.7 24 13.0 999.9 64.0 43.9 0.00G 999.9 000000 724050 13743 19950328 48.8 24 36.2 24 1015.4 24 1013.1 24 13.7 24 7.2 24 15.0 999.9 64.0 45.0 0.00D 999.9 010000 724050 13743 19950329 49.0 24 36.6 24 1017.6 24 1015.2 24 9.1 24 7.3 24 13.0 999.9 60.1 39.0 0.00D 999.9 000000 724050 13743 19950330 52.3 24 39.5 24 1016.5 24 1014.2 24 10.1 24 6.7 24 13.0 999.9 60.1 38.8 0.02G 999.9 110000 724050 13743 19950331 48.5 24 31.0 24 1015.1 24 1012.7 24 13.3 24 10.3 24 15.0 19.8 57.9 39.0 0.01G 999.9 000000 724050 13743 19950401 45.2 24 23.2 24 1015.5 24 1013.1 24 16.1 24 10.1 24 14.0 999.9 55.0 37.9 0.00G 999.9 000000 724050 13743 19950402 46.7 24 29.0 24 1016.1 24 1013.8 24 13.8 24 7.7 24 16.9 23.9 54.0 37.9 0.05G 999.9 110000 724050 13743 19950403 48.6 24 34.2 24 1020.9 24 1018.5 24 12.4 24 8.1 24 14.0 19.8 66.0* 35.1 0.00D 999.9 000000 724050 13743 19950404 60.3 24 38.9 24 1008.7 24 1006.4 24 14.4 24 15.8 24 26.0 33.8 71.1 55.0* 0.00G 999.9 010000 724050 13743 19950405 38.5 24 12.6 24 1018.1 24 1015.7 24 16.6 24 15.2 24 25.1 30.9 48.9* 30.0 0.00G 999.9 000000 724050 13743 19950406 46.9 24 21.4 24 1018.7 24 1016.3 24 13.2 24 8.1 24 15.9 999.9 63.0* 29.8 0.00G 999.9 000000 724050 13743 19950407 58.7 24 37.5 24 1011.9 24 1009.5 24 13.5 24 7.3 24 13.0 17.9 71.1* 36.0 0.00G 999.9 000000 724050 13743 19950408 59.0 24 40.2 24 1012.9 24 1010.5 24 11.3 24 9.5 24 17.1 22.9 80.1* 45.0 0.00G 999.9 000000 724050 13743 19950409 64.2 24 51.2 24 1008.1 24 1005.8 24 6.3 24 9.4 24 26.0 35.0 84.0* 45.0 0.02G 999.9 110010 724050 13743 19950410 52.4 24 40.6 24 1019.1 24 1016.7 24 11.4 24 11.4 24 18.8 26.8 78.1* 44.1 0.06G 999.9 110010 724050 13743 19950411 49.4 24 39.9 24 1028.5 24 1026.2 24 11.6 24 7.5 24 12.0 999.9 57.0* 43.9 0.09G 999.9 000000 724050 13743 19950412 58.1 24 51.3 24 1022.9 24 1020.6 24 8.0 24 9.5 24 17.1 999.9 73.0* 45.0 0.00G 999.9 110000 724050 13743 19950413 56.2 24 49.0 24 1010.9 24 1008.6 24 8.3 24 9.5 24 19.0 25.8 73.9 50.9 0.71G 999.9 110000 724050 13743 19950414 49.7 24 33.1 24 1012.0 24 1009.7 24 13.4 24 12.3 24 19.0 22.0 64.0 45.0 0.00G 999.9 010000 724050 13743 19950415 48.6 24 26.6 24 1015.8 24 1013.4 24 18.2 24 12.4 24 19.0 26.8 63.0* 37.9 0.00G 999.9 000000 724050 13743 19950416 55.4 24 29.9 24 1014.7 24 1012.4 24 14.3 24 7.9 24 12.0 19.8 70.0* 37.9 0.00G 999.9 000000 724050 13743 19950417 56.7 24 33.6 24 1016.3 24 1013.9 24 15.6 24 7.2 24 11.1 999.9 71.1 43.0 0.00G 999.9 010000 724050 13743 19950418 56.3 24 46.6 24 1017.4 24 1015.0 24 12.8 24 6.6 24 10.1 999.9 66.0* 48.0 0.00G 999.9 010000 724050 13743 19950419 68.7 24 55.3 24 1009.5 24 1007.1 24 8.9 24 10.1 24 15.0 23.9 89.1* 47.8 0.00G 999.9 100000 724050 13743 19950420 68.2 24 45.0 24 1013.3 24 1010.9 24 13.5 24 8.4 24 14.0 999.9 91.0 55.9 0.00G 999.9 010000 724050 13743 19950421 64.6 24 53.7 24 1011.9 24 1009.5 24 9.7 24 7.5 24 14.0 18.8 80.1* 55.9 0.00G 999.9 000000 724050 13743 19950422 70.5 24 52.0 24 1009.2 24 1006.9 24 14.8 24 11.0 24 22.9 32.8 82.9 56.8 0.01G 999.9 010010 724050 13743 19950423 54.7 24 32.6 24 1016.6 24 1014.2 24 13.9 24 12.4 24 28.0 31.9 64.9* 45.0 0.00D 999.9 000000 724050 13743 19950424 48.8 24 41.8 24 1009.1 24 1006.7 24 9.4 24 9.1 24 13.0 999.9 60.1 45.0 0.34G 999.9 110000 724050 13743 19950425 54.4 24 40.2 24 1012.1 24 1009.7 24 11.6 24 9.3 24 23.9 35.9 69.1* 45.0 0.05G 999.9 110000 724050 13743 19950426 57.5 24 36.1 24 1020.6 24 1018.2 24 17.0 24 7.2 24 13.0 15.0 69.1 45.0 0.00G 999.9 000000 724050 13743 19950427 62.4 24 44.4 24 1017.9 24 1015.5 24 12.6 24 10.3 24 17.1 24.9 78.1* 45.0 0.00G 999.9 000000 724050 13743 19950428 63.8 24 42.4 24 1013.6 24 1011.2 24 15.4 24 10.6 24 15.0 23.9 78.1 47.8 0.00D 999.9 010000 724050 13743 19950429 59.7 24 36.8 24 1016.9 24 1014.5 24 16.5 24 9.2 24 13.0 23.9 73.0* 46.0 0.00G 999.9 000000 724050 13743 19950430 55.7 24 48.0 24 1014.0 24 1011.7 24 9.6 24 9.1 24 15.0 999.9 73.0 45.9 0.00C 999.9 110000 724050 13743 19950501 53.8 24 44.1 24 1013.5 24 1011.2 24 12.8 24 12.1 24 19.0 999.9 63.9 46.0 0.63G 999.9 110000 724050 13743 19950502 50.9 24 45.7 24 1009.7 24 1007.3 24 9.4 24 10.4 24 15.9 999.9 64.9 45.9 0.42G 999.9 110000 724050 13743 19950503 55.8 24 41.3 24 1015.1 24 1012.7 24 13.2 24 6.5 24 10.1 999.9 71.1* 45.0 0.10G 999.9 010000 724050 13743 19950504 59.0 24 47.2 24 1018.7 24 1016.3 24 11.8 24 5.9 24 12.0 999.9 73.0 45.0 0.00G 999.9 010000 724050 13743 19950505 60.7 24 51.4 24 1013.6 24 1011.2 24 7.9 24 7.4 24 14.0 17.9 69.1 52.0 0.10G 999.9 110000 724050 13743 19950506 62.8 24 41.7 24 1014.9 24 1012.6 24 14.4 24 11.6 24 18.1 22.9 71.1* 54.9 0.09G 999.9 000000 724050 13743 19950507 62.2 24 36.4 24 1018.4 24 1016.0 24 14.0 24 9.3 24 15.9 18.8 72.0* 48.9 0.00G 999.9 000000 724050 13743 19950508 61.7 24 29.9 24 1019.3 24 1016.9 24 18.4 24 9.7 24 14.0 18.8 72.0 48.0 0.00G 999.9 000000 724050 13743 19950509 61.7 24 39.1 24 1020.0 24 1017.6 24 15.4 24 6.0 24 12.0 999.9 73.0 47.8 0.00G 999.9 000000 724050 13743 19950510 59.9 24 54.5 24 1012.2 24 1009.9 24 6.9 23 7.4 24 12.0 999.9 73.0 50.0 0.24G 999.9 110000 724050 13743 19950511 63.5 24 58.6 24 1006.0 24 1003.6 24 6.6 24 5.2 24 15.0 999.9 78.1* 54.0 0.86G 999.9 110010 724050 13743 19950512 66.1 24 49.1 24 1007.5 24 1005.1 24 12.4 24 9.0 24 12.0 19.8 79.0 55.9 0.07G 999.9 000000 724050 13743 19950513 66.9 24 50.0 24 1012.2 24 1009.9 24 13.3 24 6.3 24 11.1 999.9 77.0 54.0 0.00G 999.9 000000 724050 13743 19950514 60.4 24 54.8 24 1015.5 24 1013.1 24 9.1 24 9.3 24 15.0 21.0 79.0 54.0 0.50G 999.9 110010 724050 13743 19950515 66.1 24 55.7 24 1011.2 24 1008.9 24 8.3 24 10.9 24 17.1 22.9 77.0* 54.9 0.00D 999.9 110000 724050 13743 19950516 66.9 24 48.7 24 1013.8 24 1011.4 24 14.9 24 7.8 24 14.0 999.9 78.1 53.1 0.00G 999.9 000000 724050 13743 19950517 68.5 24 60.0 24 1007.7 24 1005.4 24 9.0 24 11.6 24 19.0 999.9 79.0* 52.9 0.04G 999.9 110000 724050 13743 19950518 72.5 24 68.7 24 1004.9 24 1002.5 24 6.9 24 7.0 24 29.9 47.8 81.0 61.9 0.04G 999.9 110010 724050 13743 19950519 68.4 24 60.9 24 1002.5 24 1000.2 24 11.7 24 12.1 24 18.1 29.9 81.0 63.0* 0.75G 999.9 110010 724050 13743 19950520 67.4 24 46.9 24 1009.2 24 1006.8 24 15.6 24 8.8 24 13.0 15.9 80.1* 54.9 0.01G 999.9 000000 724050 13743 19950521 70.6 24 52.6 24 1012.8 24 1010.5 24 14.4 24 7.3 24 13.0 999.9 82.0 54.9 0.00G 999.9 000000 724050 13743 19950522 69.9 24 49.0 24 1018.0 24 1015.6 24 16.4 24 8.4 24 14.0 999.9 82.0 56.8 0.00G 999.9 010000 724050 13743 19950523 68.7 24 51.3 24 1023.3 24 1020.9 24 16.4 24 6.6 24 15.0 999.9 80.1* 53.1 0.00G 999.9 000000 724050 13743 19950524 73.8 24 57.1 24 1020.0 24 1017.6 24 13.4 24 12.4 24 15.0 999.9 87.1* 52.9 0.00G 999.9 000000 724050 13743 19950525 77.3 24 64.5 24 1016.8 24 1014.4 24 9.9 24 6.9 24 22.9 29.9 88.0 63.9 0.00G 999.9 110010 724050 13743 19950526 71.6 24 65.9 24 1018.3 24 1015.9 24 6.4 24 6.8 24 14.0 999.9 88.0 66.9 0.72G 999.9 110010 724050 13743 19950527 67.6 24 59.0 24 1022.5 24 1020.1 24 9.5 24 8.1 24 11.1 999.9 81.0 62.1 0.03G 999.9 100000 724050 13743 19950528 63.4 24 56.6 24 1025.3 24 1022.9 24 11.4 24 9.1 24 13.0 999.9 75.0 61.0 0.00G 999.9 110000 724050 13743 19950529 69.5 24 65.5 24 1017.5 24 1015.1 24 5.5 24 12.2 24 15.9 24.9 81.0* 61.0 0.35G 999.9 110010 724050 13743 19950530 69.2 24 56.9 24 1014.4 24 1012.0 24 14.8 24 10.4 24 18.1 23.9 82.0 63.9 0.14G 999.9 000010 724050 13743 19950531 69.3 24 54.3 24 1018.7 24 1016.4 24 12.5 24 7.3 24 12.0 999.9 82.0 57.0 0.00G 999.9 000000 724050 13743 19950601 71.0 24 57.7 24 1020.0 24 1017.6 24 13.1 24 7.4 24 10.1 999.9 82.9 56.8 0.00G 999.9 000000 724050 13743 19950602 74.3 24 66.5 24 1019.0 24 1016.6 24 8.9 24 8.8 24 15.9 999.9 86.0 59.9 0.00G 999.9 110000 724050 13743 19950603 73.5 24 67.9 24 1016.1 24 1013.7 24 11.3 24 9.7 24 15.0 21.0 86.0 68.0 0.05G 999.9 110010 724050 13743 19950604 71.9 24 62.4 24 1016.1 24 1013.7 24 12.6 24 8.3 24 13.0 999.9 84.0 63.0 0.18G 999.9 100010 724050 13743 19950605 73.9 24 61.1 24 1017.2 24 1014.8 24 11.8 24 5.9 24 10.1 999.9 84.9 63.0 0.00G 999.9 000000 724050 13743 19950606 70.8 24 63.9 24 1009.5 24 1007.2 24 9.2 24 8.8 24 12.0 999.9 82.0 63.0 0.00G 999.9 010000 724050 13743 19950607 77.9 24 66.1 24 1003.0 24 1000.6 24 6.2 24 9.5 24 14.0 999.9 90.0* 65.8 0.00G 999.9 100000 724050 13743 19950608 81.2 24 68.3 24 1007.2 24 1004.8 24 7.6 24 9.3 24 15.0 19.8 91.0 68.0 0.03G 999.9 010010 724050 13743 19950609 76.5 24 63.9 24 1017.3 24 1015.0 24 10.2 24 8.1 24 12.0 999.9 91.9 66.9 0.00G 999.9 000000 724050 13743 19950610 74.2 24 65.9 24 1018.6 24 1016.2 24 11.0 24 9.2 24 12.0 999.9 82.0 66.9 0.00G 999.9 010010 724050 13743 19950611 78.4 24 69.3 24 1013.6 24 1011.2 24 10.3 24 9.0 24 22.0 31.9 90.0* 70.0 0.00G 999.9 110010 724050 13743 19950612 68.9 24 65.7 24 1007.5 24 1005.2 24 9.8 24 10.7 24 21.0 26.8 72.0* 64.0 0.82G 999.9 110010 724050 13743 19950613 65.3 24 52.1 24 1008.6 24 1006.2 24 16.7 24 13.6 24 15.9 999.9 73.0* 57.9 0.37G 999.9 010000 724050 13743 19950614 70.5 24 52.2 24 1010.9 24 1008.5 24 16.1 24 7.1 24 12.0 999.9 82.0* 57.9 0.00G 999.9 000000 724050 13743 19950615 73.8 24 50.4 24 1019.7 24 1017.4 24 15.2 24 8.3 24 13.0 999.9 82.9 59.0 0.00G 999.9 000000 724050 13743 19950616 71.6 24 53.7 24 1027.2 24 1024.9 24 13.8 24 7.9 24 11.1 999.9 82.9 61.9 0.00G 999.9 000000 724050 13743 19950617 72.4 24 53.4 24 1027.8 24 1025.4 24 13.9 24 6.1 24 10.1 999.9 82.9 60.1 0.00G 999.9 000000 724050 13743 19950618 74.8 24 57.7 24 1024.5 24 1022.1 24 13.9 24 5.3 24 10.1 999.9 86.0 59.9 0.00G 999.9 000000 724050 13743 19950619 76.4 24 60.5 24 1017.8 24 1015.4 24 11.9 24 6.8 24 10.1 999.9 88.0* 63.0 0.00G 999.9 000000 724050 13743 19950620 78.6 24 63.0 24 1011.7 24 1009.4 24 10.6 24 7.6 24 11.1 999.9 91.0* 63.9 0.00G 999.9 000000 724050 13743 19950621 81.3 24 70.4 24 1014.5 24 1012.1 24 10.0 24 8.4 24 12.0 999.9 93.0 68.0 0.00G 999.9 000000 724050 13743 19950622 76.2 24 68.9 24 1017.8 24 1015.5 24 7.2 24 10.2 24 15.9 999.9 91.9 70.0 0.00G 999.9 100000 724050 13743 19950623 71.2 24 68.3 24 1016.3 24 1014.0 24 6.3 24 11.4 24 15.0 999.9 82.9 68.0 0.18G 999.9 110000 724050 13743 19950624 72.5 24 67.9 24 1013.4 24 1011.0 24 7.8 24 5.7 24 10.9 999.9 82.9* 65.8 1.05G 999.9 110000 724050 13743 19950625 77.2 24 71.7 24 1012.0 24 1009.6 24 9.3 24 6.6 24 15.0 999.9 88.0 65.8 0.74G 999.9 110000 724050 13743 19950626 78.4 24 72.2 24 1013.0 24 1010.6 24 6.6 24 6.9 24 13.0 999.9 89.1 72.0 0.03G 999.9 110010 724050 13743 19950627 74.7 24 70.9 24 1018.0 24 1015.6 24 8.4 24 11.1 24 17.1 999.9 86.0 72.0 0.06G 999.9 110000 724050 13743 19950628 67.3 24 64.9 24 1021.5 24 1019.2 24 5.0 24 9.8 24 12.8 999.9 77.0 64.9 0.01G 999.9 110000 724050 13743 19950629 71.3 24 64.8 24 1019.8 24 1017.4 24 8.5 24 5.4 24 8.0 999.9 80.1* 64.9 0.00G 999.9 100000 724050 13743 19950630 76.0 24 69.2 24 1015.8 24 1013.4 24 11.1 24 7.4 24 13.0 999.9 86.0* 64.9 0.00G 999.9 010000 724050 13743 19950701 75.3 24 71.1 24 1011.2 24 1008.8 24 9.3 24 6.7 24 14.0 15.0 86.0 70.9 0.00G 999.9 110010 724050 13743 19950702 75.3 24 64.5 24 1011.8 24 1009.5 24 9.1 24 8.4 24 15.0 999.9 84.9 70.0 0.33G 999.9 100000 724050 13743 19950703 73.4 24 57.5 24 1015.9 24 1013.5 24 13.7 24 7.0 24 10.1 999.9 84.0 66.0 0.00G 999.9 000000 724050 13743 19950704 75.3 24 68.7 24 1019.3 24 1017.0 24 7.2 24 6.1 24 24.9 25.8 86.0 65.8 0.00D 999.9 110000 724050 13743 19950705 78.1 24 71.9 24 1022.2 24 1019.8 24 6.2 24 6.9 24 10.1 999.9 87.1* 70.0 0.04G 999.9 110000 724050 13743 19950706 78.6 24 71.6 24 1020.5 24 1018.1 24 6.7 24 8.5 24 19.8 28.0 90.0 71.1* 0.00G 999.9 010010 724050 13743 19950707 75.1 24 69.6 24 1016.5 24 1014.2 24 8.5 24 7.0 24 17.9 22.9 90.0 70.0 1.03G 999.9 110010 724050 13743 19950708 75.9 24 65.3 24 1013.3 24 1010.9 24 8.2 24 7.6 24 15.9 999.9 87.1 68.0 0.11G 999.9 000010 724050 13743 19950709 71.0 24 54.9 24 1014.9 24 1012.6 24 14.7 24 8.7 24 13.0 999.9 84.0 61.0 0.00G 999.9 010110 724050 13743 19950710 74.5 24 63.6 24 1014.8 24 1012.4 24 11.4 24 6.9 24 12.0 999.9 82.9 61.0 0.14G 999.9 110000 724050 13743 19950711 77.4 24 65.3 24 1014.4 24 1012.0 24 8.3 24 7.8 24 14.0 24.9 88.0* 66.0 0.22G 999.9 010010 724050 13743 19950712 79.5 24 67.8 24 1017.5 24 1015.2 24 6.8 24 6.2 24 13.0 999.9 91.0 66.9 0.00G 999.9 100000 724050 13743 19950713 81.3 24 70.2 24 1018.8 24 1016.4 24 5.8 24 8.5 24 13.0 999.9 91.0 70.0 0.00G 999.9 100000 724050 13743 19950714 84.6 24 72.6 24 1016.8 24 1014.4 24 5.8 24 7.9 24 11.1 999.9 97.0* 72.9 0.00G 999.9 000000 724050 13743 19950715 88.8 24 77.0 24 1013.9 24 1011.6 24 5.3 24 7.5 24 11.1 999.9 99.0* 74.8 0.00G 999.9 100000 724050 13743 19950716 85.5 24 73.2 24 1014.1 24 1011.8 24 10.6 24 7.4 24 18.8 28.0 99.0 78.1 0.00G 999.9 000000 724050 13743 19950717 84.2 24 73.3 24 1011.9 24 1009.5 24 9.0 24 7.5 24 12.0 999.9 93.9* 75.9 0.00G 999.9 100000 724050 13743 19950718 82.9 24 70.1 24 1009.0 24 1006.6 24 8.4 24 7.1 24 17.9 26.8 93.9 73.9 0.07G 999.9 110010 724050 13743 19950719 83.5 24 60.4 24 1012.5 24 1010.1 24 13.0 24 7.6 24 12.0 999.9 95.0 73.9 0.00G 999.9 000000 724050 13743 19950720 82.3 24 64.4 24 1014.8 24 1012.5 24 10.8 24 7.2 24 12.0 999.9 90.0 73.0 0.00G 999.9 000000 724050 13743 19950721 83.9 24 72.3 24 1012.7 24 1010.3 24 6.1 24 7.6 24 12.8 999.9 95.0 72.9 0.00G 999.9 110010 724050 13743 19950722 79.7 24 73.1 24 1013.4 24 1011.0 24 4.3 24 5.1 24 8.9 999.9 95.0 74.8 1.60G 999.9 110000 724050 13743 19950723 83.5 24 73.0 24 1010.5 24 1008.2 24 5.9 24 7.0 24 12.8 999.9 93.0 73.9 0.14G 999.9 110000 724050 13743 19950724 85.6 24 72.1 24 1011.5 24 1009.1 24 9.8 24 7.3 24 15.0 22.9 93.9 73.9 0.00G 999.9 010000 724050 13743 19950725 82.3 24 73.2 24 1013.3 24 1010.9 24 8.2 24 6.2 24 13.0 999.9 95.0 74.8 0.09G 999.9 100000 724050 13743 19950726 83.8 24 71.5 24 1013.0 24 1010.6 24 9.1 24 8.0 24 12.0 999.9 93.0 74.8 0.00G 999.9 000000 724050 13743 19950727 85.0 24 73.2 24 1014.5 24 1012.1 24 7.7 24 7.6 24 12.0 999.9 93.0 75.9 0.00G 999.9 000000 724050 13743 19950728 81.2 24 73.7 24 1017.7 24 1015.3 24 9.7 24 9.9 24 15.9 21.0 93.0 73.9 0.26G 999.9 110010 724050 13743 19950729 84.8 24 73.7 24 1019.0 24 1016.6 24 12.9 24 9.6 24 13.0 17.9 93.9* 73.9 0.00B 999.9 000000 724050 13743 19950730 85.5 24 68.2 24 1020.2 24 1017.8 24 11.7 24 6.6 24 10.1 999.9 95.0* 75.9 0.00G 999.9 000000 724050 13743 19950731 84.2 24 66.2 24 1020.8 24 1018.5 24 12.6 24 5.2 24 10.1 999.9 96.1 73.0 0.00G 999.9 000000 724050 13743 19950801 82.9 24 69.2 24 1019.7 24 1017.3 24 9.2 24 8.3 24 13.0 999.9 93.0 72.9 0.00G 999.9 000000 724050 13743 19950802 85.5 24 73.6 24 1019.7 24 1017.3 24 5.4 24 8.3 24 13.0 999.9 95.0 72.9 0.00G 999.9 100000 724050 13743 19950803 86.5 24 73.1 24 1022.0 24 1019.6 24 8.9 24 9.0 24 14.0 999.9 96.1 75.9 0.00D 999.9 000000 724050 13743 19950804 86.6 24 72.7 24 1019.7 24 1017.3 24 14.0 24 9.9 24 15.0 999.9 97.0 77.0 0.00G 999.9 000000 724050 13743 19950805 85.5 24 72.0 24 1014.0 24 1011.6 24 13.3 24 7.3 24 15.9 23.9 98.1 77.0 0.00G 999.9 010000 724050 13743 19950806 76.1 24 72.8 24 1010.8 24 1008.4 24 8.0 24 7.5 24 16.9 24.9 80.1* 72.9 0.88G 999.9 110010 724050 13743 19950807 73.2 24 64.7 24 1018.8 24 1016.4 24 12.5 24 10.2 24 15.9 19.8 80.1 70.0 0.38G 999.9 010000 724050 13743 19950808 71.7 24 60.9 24 1023.0 24 1020.6 24 15.5 24 7.7 24 11.1 999.9 78.1 64.9 0.00G 999.9 000000 724050 13743 19950809 73.7 24 64.2 24 1020.1 24 1017.7 24 13.2 24 7.0 24 11.1 999.9 82.0* 64.9 0.00G 999.9 000000 724050 13743 19950810 77.8 24 68.2 24 1016.3 24 1013.9 24 13.3 24 6.3 24 15.0 999.9 87.1 66.9 0.00G 999.9 010000 724050 13743 19950811 79.8 24 70.9 24 1014.4 24 1012.0 24 13.9 24 4.5 24 11.1 999.9 90.0 70.9 0.00G 999.9 000000 724050 13743 19950812 82.3 24 70.3 24 1012.1 24 1009.7 24 11.7 24 6.7 24 11.1 999.9 93.0 72.0 0.00G 999.9 000000 724050 13743 19950813 87.0 24 71.9 24 1012.0 24 1009.6 24 7.6 24 6.9 24 10.1 999.9 95.0* 72.0 0.00G 999.9 000000 724050 13743 19950814 85.3 24 72.5 24 1013.3 24 1010.9 24 8.0 24 5.5 24 10.1 999.9 97.0* 77.0 0.00G 999.9 000000 724050 13743 19950815 83.8 24 72.5 24 1014.5 24 1012.1 24 8.2 24 6.8 24 11.1 999.9 98.1 77.0 0.00G 999.9 000000 724050 13743 19950816 83.9 24 68.9 24 1013.6 24 1011.2 24 12.1 24 8.7 24 14.0 999.9 93.9* 75.0 0.00G 999.9 000000 724050 13743 19950817 86.3 24 72.5 24 1010.9 24 1008.5 24 8.2 24 11.1 24 15.0 999.9 95.0 74.8 0.00G 999.9 000000 724050 13743 19950818 87.3 24 66.3 24 1012.3 24 1010.0 24 9.9 24 9.5 24 13.0 999.9 97.0 77.0 0.00G 999.9 000000 724050 13743 19950819 80.2 24 61.2 24 1016.9 24 1014.6 24 13.8 24 6.9 24 13.0 999.9 97.0 73.0 0.00G 999.9 000000 724050 13743 19950820 76.3 24 56.7 24 1018.1 24 1015.7 24 15.6 24 4.7 24 10.1 999.9 88.0 64.0 0.00G 999.9 000000 724050 13743 19950821 79.0 24 60.1 24 1014.8 24 1012.4 24 13.3 24 7.0 24 14.0 999.9 95.0* 64.0 0.00G 999.9 000000 724050 13743 19950822 83.8 24 62.7 24 1015.8 24 1013.4 24 10.3 24 9.1 24 13.0 999.9 96.1 65.8 0.00C 999.9 000000 724050 13743 19950823 78.0 24 54.1 24 1020.5 24 1018.1 24 12.8 24 8.1 24 12.0 999.9 91.0 68.0 0.00G 999.9 000000 724050 13743 19950824 79.7 24 60.3 24 1016.9 24 1014.5 24 8.7 24 6.9 24 11.1 999.9 95.0* 68.0 0.00G 999.9 000000 724050 13743 19950825 80.1 24 53.7 24 1017.5 24 1015.2 24 15.7 24 8.2 24 14.0 999.9 96.1 68.0 0.00G 999.9 000000 724050 13743 19950826 75.7 24 55.9 24 1019.3 24 1016.9 24 17.6 24 6.2 24 11.1 999.9 88.0 64.9 0.00G 999.9 000000 724050 13743 19950827 78.8 24 69.6 24 1016.0 24 1013.6 24 11.1 24 5.8 24 10.1 999.9 87.1 64.9 0.00G 999.9 000000 724050 13743 19950828 77.5 24 66.5 24 1016.3 24 1013.9 24 9.9 24 8.6 24 14.0 999.9 87.1 73.0 0.00G 999.9 110000 724050 13743 19950829 76.8 24 61.7 24 1016.6 24 1014.2 24 10.5 24 6.3 24 10.1 999.9 89.1* 66.9 0.00G 999.9 000000 724050 13743 19950830 80.3 24 63.0 24 1016.1 24 1013.8 24 8.6 24 6.8 24 11.1 999.9 90.0 66.9 0.00G 999.9 100000 724050 13743 19950831 79.7 24 67.6 24 1015.0 24 1012.6 24 7.8 24 8.8 24 12.0 999.9 93.0* 70.0 0.00G 999.9 100000 724050 13743 19950901 84.4 24 67.6 24 1009.4 24 1007.0 24 6.3 24 8.8 24 15.0 22.0 93.9 70.0 0.00G 999.9 000000 724050 13743 19950902 76.4 24 51.7 24 1013.1 24 1010.7 24 17.3 24 10.8 24 15.0 16.9 95.0 68.0 0.00D 999.9 010000 724050 13743 19950903 73.7 24 50.3 24 1018.0 24 1015.7 24 17.6 24 6.1 24 10.1 15.9 87.1* 61.0 0.00G 999.9 000000 724050 13743 19950904 75.3 24 56.5 24 1021.0 24 1018.6 24 15.4 24 7.6 24 12.0 999.9 89.1* 61.0 0.00G 999.9 000000 724050 13743 19950905 77.4 24 61.1 24 1022.1 24 1019.7 24 12.7 24 8.9 24 12.0 999.9 90.0* 63.9 0.00G 999.9 000000 724050 13743 19950906 79.4 24 58.8 24 1020.6 24 1018.2 24 11.1 24 7.2 24 11.1 999.9 93.0 65.8 0.00G 999.9 000000 724050 13743 19950907 78.1 24 61.1 24 1016.6 24 1014.3 24 8.8 24 8.7 24 11.1 999.9 93.0 66.9 0.00G 999.9 100000 724050 13743 19950908 78.4 24 64.4 24 1013.2 24 1010.9 24 9.2 24 6.4 24 11.1 999.9 90.0 68.0 0.00C 999.9 100000 724050 13743 19950909 79.1 24 66.3 24 1013.5 24 1011.1 24 11.2 24 6.1 24 22.0 35.0 90.0 68.9 0.00G 999.9 110010 724050 13743 19950910 72.1 24 56.9 24 1017.1 24 1014.7 24 11.5 24 9.2 24 15.9 999.9 91.0 66.0 0.94G 999.9 110010 724050 13743 19950911 67.0 24 43.4 24 1025.6 24 1023.3 24 19.9 24 8.4 24 12.0 999.9 80.1 55.0 0.00G 999.9 000000 724050 13743 19950912 69.4 24 54.6 24 1025.5 24 1023.2 24 15.8 24 8.3 24 11.1 999.9 80.1* 54.9 0.00G 999.9 000000 724050 13743 19950913 76.4 24 63.1 24 1018.9 24 1016.5 24 10.2 24 10.2 24 14.0 999.9 89.1* 61.0 0.00G 999.9 110000 724050 13743 19950914 79.4 24 67.4 24 1014.7 24 1012.3 24 8.0 24 7.3 24 12.0 999.9 91.9* 68.0 0.12G 999.9 110000 724050 13743 19950915 75.5 24 53.9 24 1022.5 24 1020.2 24 16.0 24 7.7 24 12.0 999.9 93.0 63.9 0.00G 999.9 000000 724050 13743 19950916 69.2 24 58.1 24 1025.2 24 1022.8 24 13.4 24 7.4 24 12.0 999.9 82.9 63.9 0.00G 999.9 010000 724050 13743 19950917 66.2 24 63.1 24 1012.3 24 1009.9 24 7.3 24 10.1 24 16.9 999.9 72.0 63.0 1.17G 999.9 110000 724050 13743 19950918 67.9 24 58.3 24 1014.7 24 1012.3 24 15.9 24 8.7 24 15.0 999.9 73.0 63.0 0.05G 999.9 000000 724050 13743 19950919 66.1 24 51.9 24 1021.7 24 1019.4 24 17.2 24 8.7 24 15.0 999.9 75.0 57.9 0.00G 999.9 000000 724050 13743 19950920 70.0 24 60.3 24 1020.2 24 1017.8 24 12.3 24 6.2 24 8.9 999.9 77.0* 57.9 0.00G 999.9 010000 724050 13743 19950921 73.1 24 64.3 24 1018.8 24 1016.4 24 10.6 24 8.6 24 12.0 999.9 81.0 64.9 0.00G 999.9 000000 724050 13743 19950922 72.5 24 68.3 24 1015.4 24 1013.0 24 7.6 24 9.7 24 14.0 999.9 81.0 64.0* 0.06G 999.9 110000 724050 13743 19950923 56.9 24 39.4 24 1023.3 24 1020.9 24 16.9 24 13.2 24 18.1 22.9 62.1* 54.0 0.76G 999.9 010000 724050 13743 19950924 55.3 24 36.9 24 1025.0 24 1022.6 24 12.7 24 7.9 24 12.0 999.9 59.0 52.0 0.03G 999.9 110000 724050 13743 19950925 59.5 24 58.1 24 1019.3 24 1016.9 24 5.6 24 6.5 24 12.0 999.9 64.0 52.0 0.32G 999.9 110000 724050 13743 19950926 62.0 24 59.8 24 1014.6 24 1012.3 24 6.7 24 6.6 24 10.9 999.9 64.0 56.8 0.33G 999.9 110000 724050 13743 19950927 62.6 24 55.7 24 1016.0 24 1013.6 24 8.3 24 4.7 24 8.9 999.9 78.1* 52.0 0.22G 999.9 100000 724050 13743 19950928 66.8 24 55.2 24 1020.1 24 1017.7 24 11.5 24 5.8 24 10.1 999.9 80.1* 52.0 0.00G 999.9 100000 724050 13743 19950929 65.4 24 55.7 24 1025.3 24 1022.9 24 12.5 24 7.9 24 14.0 999.9 80.1 54.9 0.00G 999.9 000000 724050 13743 19950930 62.3 24 54.2 24 1025.7 24 1023.3 24 14.3 24 6.2 24 10.1 999.9 73.0 53.1 0.00G 999.9 000000 724050 13743 19951001 64.3 24 57.2 24 1020.9 24 1018.5 24 12.8 24 3.9 24 8.0 999.9 73.0 52.9 0.00G 999.9 000000 724050 13743 19951002 67.9 24 60.3 24 1015.6 24 1013.3 24 10.9 24 3.2 24 8.0 999.9 82.9 57.9 0.00G 999.9 100000 724050 13743 19951003 72.2 24 66.3 24 1013.6 24 1011.2 24 7.9 24 4.6 24 10.1 999.9 84.0 57.9 0.00G 999.9 110000 724050 13743 19951004 71.3 24 68.0 24 1011.7 24 1009.3 24 8.7 24 7.1 24 11.1 999.9 82.9 63.9 0.04G 999.9 010000 724050 13743 19951005 70.9 24 70.5 24 1009.5 24 1007.2 24 6.1 24 7.6 24 17.1 999.9 79.0* 66.9 1.24G 999.9 110000 724050 13743 19951006 76.7 24 70.3 24 1005.2 24 1002.8 24 15.3 24 11.5 24 18.1 22.0 82.9 66.9 0.89G 999.9 110000 724050 13743 19951007 74.6 24 67.4 24 1009.6 24 1007.3 24 10.8 24 6.8 24 8.9 999.9 84.9 70.0 0.00G 999.9 100000 724050 13743 19951008 64.7 24 50.8 24 1017.1 24 1014.7 24 15.1 24 8.8 24 13.0 999.9 81.0 55.9 0.00G 999.9 000000 724050 13743 19951009 60.8 24 50.3 24 1021.4 24 1019.0 24 14.7 24 4.1 24 8.0 999.9 71.1* 51.1 0.00G 999.9 000000 724050 13743 19951010 63.1 24 56.2 24 1022.1 24 1019.7 24 11.4 24 4.6 24 8.0 999.9 73.9 50.9 0.00G 999.9 100000 724050 13743 19951011 65.6 24 58.9 24 1023.0 24 1020.6 24 9.1 24 4.3 24 8.0 999.9 75.9 54.0 0.00G 999.9 100000 724050 13743 19951012 67.0 24 59.5 24 1022.8 24 1020.4 24 8.1 24 5.0 24 8.0 999.9 80.1 56.8 0.00G 999.9 100000 724050 13743 19951013 65.4 24 58.1 24 1020.1 24 1017.7 24 9.7 24 7.5 24 12.0 999.9 80.1 54.0 0.00G 999.9 100000 724050 13743 19951014 71.0 24 68.7 24 1011.9 24 1009.5 24 7.3 24 9.1 24 22.0 28.9 79.0 54.0 2.20G 999.9 110010 724050 13743 19951015 59.2 24 45.1 24 1007.3 24 1004.9 24 14.0 24 9.9 24 15.0 22.0 79.0 51.1 1.15G 999.9 110010 724050 13743 19951016 54.1 24 33.7 24 1014.4 24 1012.0 24 18.2 24 10.6 24 15.9 22.9 64.0 45.0 0.00G 999.9 000000 724050 13743 19951017 53.7 24 36.1 24 1025.8 24 1023.5 24 17.6 24 6.4 24 12.0 999.9 64.9 42.1 0.00G 999.9 000000 724050 13743 19951018 54.6 24 44.6 24 1026.0 24 1023.6 24 14.4 24 7.7 24 12.0 999.9 66.9* 41.9 0.00G 999.9 000000 724050 13743 19951019 59.2 24 50.3 24 1024.0 24 1021.6 24 10.6 24 4.8 24 8.0 999.9 75.0* 43.9 0.00G 999.9 000000 724050 13743 19951020 62.9 24 58.2 24 1019.0 24 1016.6 24 11.1 24 8.0 24 15.9 999.9 75.0 48.0 0.00G 999.9 110000 724050 13743 19951021 57.6 24 52.2 24 1008.2 24 1005.8 24 10.3 24 10.4 24 21.0 28.9 75.9 48.9 1.93G 999.9 110010 724050 13743 19951022 51.7 24 42.0 24 1019.1 24 1016.7 24 14.8 24 6.9 24 8.9 999.9 71.1 42.1 0.07G 999.9 000000 724050 13743 19951023 56.7 24 48.4 24 1025.7 24 1023.3 24 15.0 24 5.5 24 10.1 999.9 72.0* 41.9 0.00G 999.9 000000 724050 13743 19951024 61.3 24 54.7 24 1021.4 24 1019.0 24 13.7 24 9.5 24 18.1 22.9 75.0* 45.9 0.00G 999.9 000000 724050 13743 19951025 58.7 24 43.7 24 1019.4 24 1017.0 24 15.5 24 10.6 24 15.0 17.9 75.9 51.1 0.00G 999.9 000000 724050 13743 19951026 51.4 24 41.2 24 1018.4 24 1016.0 24 10.1 24 7.0 24 13.0 999.9 64.9 44.1 0.00G 999.9 000000 724050 13743 19951027 57.1 24 53.5 24 1011.9 24 1009.5 24 7.3 24 6.3 24 17.9 999.9 69.1* 43.9 0.00G 999.9 110010 724050 13743 19951028 62.4 24 56.2 24 1002.6 24 1000.3 24 10.9 24 9.6 24 17.9 23.9 69.1 48.9 1.19G 999.9 110010 724050 13743 19951029 52.4 24 40.7 24 1013.8 24 1011.4 24 14.6 24 9.4 24 14.0 999.9 66.9 46.9 0.16G 999.9 010000 724050 13743 19951030 50.2 24 34.9 24 1025.5 24 1023.1 24 17.8 24 8.1 24 15.0 999.9 60.1* 41.0 0.00G 999.9 000000 724050 13743 19951031 55.1 24 46.0 24 1026.8 24 1024.4 24 15.6 24 7.1 24 12.0 999.9 60.1 41.0 0.00G 999.9 010000 724050 13743 19951101 57.6 24 56.4 24 1026.2 24 1023.9 24 5.6 24 5.7 24 8.9 999.9 61.0* 52.0 0.27G 999.9 110000 724050 13743 19951102 64.1 24 63.2 24 1017.9 24 1015.5 24 6.2 24 8.2 24 15.0 999.9 69.1 55.9 0.18G 999.9 110000 724050 13743 19951103 65.6 24 62.7 24 1010.6 24 1008.2 24 8.5 24 8.4 24 15.9 999.9 73.0 57.9* 0.07G 999.9 110000 724050 13743 19951104 44.5 24 27.4 24 1019.7 24 1017.3 24 15.4 24 14.0 24 18.1 23.9 55.9* 36.0 0.12G 999.9 010000 724050 13743 19951105 38.8 24 20.0 24 1028.8 24 1026.4 24 14.3 24 9.0 24 13.0 999.9 48.9 32.0 0.00G 999.9 000000 724050 13743 19951106 43.4 24 23.2 24 1024.9 24 1022.5 24 15.0 24 7.0 24 12.0 999.9 50.0* 32.0 0.00G 999.9 000000 724050 13743 19951107 44.7 24 40.1 24 1012.2 24 1009.9 24 10.4 24 10.6 24 18.1 22.9 51.1 37.0 0.16G 999.9 110000 724050 13743 19951108 47.1 24 35.7 24 1007.6 24 1005.2 24 15.2 24 12.3 24 21.0 26.8 51.1 38.8 0.14G 999.9 110000 724050 13743 19951109 36.4 24 20.1 24 1022.3 24 1019.9 24 17.7 24 11.1 24 15.9 19.8 50.0 30.9 0.00G 999.9 000000 724050 13743 19951110 42.5 24 27.6 24 1027.3 24 1025.0 24 13.3 24 9.9 24 15.0 999.9 55.9* 30.9 0.00G 999.9 000000 724050 13743 19951111 56.1 24 48.8 24 1015.8 24 1013.5 24 13.2 24 13.8 24 24.1 30.9 64.9 48.9* 0.00G 999.9 110000 724050 13743 19951112 39.6 24 27.4 24 1011.5 24 1009.1 24 12.8 24 16.3 24 31.9 40.8 66.9 32.9 1.15G 999.9 111010 724050 13743 19951113 36.4 24 27.8 24 1022.8 24 1020.4 24 15.0 24 7.8 24 14.0 999.9 42.1 32.0 0.00G 999.9 010000 724050 13743 19951114 39.3 24 38.1 24 1012.6 24 1010.2 24 7.1 24 12.6 24 18.8 999.9 41.0 32.0 0.88G 999.9 110000 724050 13743 19951115 39.8 24 33.2 24 1001.8 24 999.5 24 10.7 24 16.2 24 22.0 28.0 46.9 36.0 0.50G 999.9 111000 724050 13743 19951116 35.4 24 23.7 24 1020.3 24 1017.9 24 13.7 24 7.7 24 12.0 999.9 46.9 28.9 0.01G 999.9 000000 724050 13743 19951117 38.9 24 27.4 24 1026.2 24 1023.8 24 13.3 24 5.8 24 11.1 999.9 46.0 28.9 0.00G 999.9 000000 724050 13743 19951118 41.6 24 33.3 24 1025.2 24 1022.8 24 14.9 24 7.2 24 13.0 999.9 48.0 30.9 0.00G 999.9 010000 724050 13743 19951119 44.2 24 36.3 24 1021.4 24 1019.0 24 12.1 24 8.1 24 17.1 999.9 52.0* 37.0 0.00G 999.9 010000 724050 13743 19951120 40.5 24 33.8 24 1022.1 24 1019.7 24 11.3 24 6.9 24 10.1 999.9 52.0 30.9 0.00G 999.9 100000 724050 13743 19951121 44.4 24 36.5 24 1011.1 24 1008.7 24 11.3 24 7.1 24 20.0 22.9 57.0 30.9 0.00G 999.9 100000 724050 13743 19951122 36.7 24 21.4 24 1015.4 24 1013.0 24 15.0 24 11.8 24 17.1 22.0 57.0 30.9 0.00G 999.9 000000 724050 13743 19951123 34.8 24 26.7 24 1018.7 24 1016.3 24 11.1 24 7.8 24 12.0 999.9 43.0 28.0 0.05G 999.9 011000 724050 13743 19951124 39.8 24 33.8 24 1023.6 24 1021.2 24 8.3 24 9.2 24 15.0 999.9 44.1 28.0 0.31G 999.9 110000 724050 13743 19951125 37.5 24 24.3 24 1025.7 24 1023.3 24 12.9 24 8.6 24 12.0 999.9 46.9* 29.8 0.00G 999.9 000000 724050 13743 19951126 38.3 24 29.1 24 1018.5 24 1016.1 24 10.0 24 6.9 24 12.0 999.9 51.1* 28.9 0.00G 999.9 000000 724050 13743 19951127 48.5 24 35.5 24 1009.8 24 1007.4 24 13.9 24 8.0 24 15.9 999.9 62.1* 28.9 0.00G 999.9 000000 724050 13743 19951128 58.6 24 44.9 24 1010.3 24 1008.0 24 13.0 24 15.5 24 19.0 22.9 66.0 39.9 0.00G 999.9 000000 724050 13743 19951129 37.4 24 34.2 24 1018.9 24 1016.5 24 7.9 24 12.8 24 16.9 999.9 46.9* 33.1 1.01G 0.4 111000 724050 13743 19951130 35.4 24 26.8 24 1021.2 24 1018.8 24 11.6 24 10.1 24 15.0 999.9 42.1* 30.0 0.39G 999.9 000000 724050 13743 19951201 46.5 24 31.5 24 1010.6 24 1008.3 24 12.8 24 12.4 24 15.9 24.9 66.9* 29.8 0.00G 999.9 000000 724050 13743 19951202 50.7 24 28.5 24 1015.5 24 1013.1 24 15.1 24 10.9 24 15.0 19.8 66.9 36.9 0.00G 999.9 000000 724050 13743 19951203 44.7 24 34.6 24 1020.1 24 1017.8 24 13.2 24 7.6 24 15.0 22.9 61.0* 33.1 0.00G 999.9 010000 724050 13743 19951204 52.1 24 37.9 24 1016.0 24 1013.6 24 14.0 24 8.5 24 15.0 21.0 62.1 32.9 0.00G 999.9 000000 724050 13743 19951205 40.9 24 29.3 24 1024.3 24 1022.0 24 14.0 24 7.9 24 15.0 999.9 57.0 35.1 0.00G 999.9 000000 724050 13743 19951206 41.7 24 25.3 24 1019.2 24 1016.8 24 13.0 24 8.6 24 14.0 999.9 46.9 34.9 0.02G 999.9 010000 724050 13743 19951207 39.7 24 22.0 24 1019.2 24 1016.8 24 13.3 24 8.8 24 15.9 18.8 45.0 35.1 0.00G 999.9 111000 724050 13743 19951208 33.9 24 14.4 24 1026.1 24 1023.8 24 14.6 24 6.9 24 15.0 999.9 45.0 26.1 0.00G 999.9 000000 724050 13743 19951209 35.2 24 29.0 24 1021.5 24 1019.1 24 7.9 24 9.0 24 15.0 999.9 41.0 25.9 0.18G 0.8 111000 724050 13743 19951210 26.7 24 6.3 24 1020.9 24 1018.5 24 17.4 24 12.9 24 20.0 28.0 41.0 17.1 0.10G 999.9 000000 724050 13743 19951211 22.8 24 -0.7 24 1023.7 24 1021.3 24 19.9 24 11.6 24 18.1 23.9 30.9 16.9 0.00G 999.9 000000 724050 13743 19951212 27.4 24 7.7 24 1028.6 24 1026.3 24 16.1 24 5.6 24 11.1 999.9 32.0 18.0 0.00G 999.9 000000 724050 13743 19951213 29.5 24 16.6 24 1032.6 24 1030.2 24 11.9 24 7.1 24 10.1 999.9 32.0 23.9 0.00G 999.9 001000 724050 13743 19951214 31.6 24 28.5 24 1026.3 24 1024.0 24 5.6 24 6.4 24 11.1 999.9 39.0* 27.0 0.03G 999.9 111000 724050 13743 19951215 42.0 24 36.5 24 1019.7 24 1017.3 24 4.9 24 6.0 24 14.0 999.9 62.1* 27.9 0.02G 999.9 100000 724050 13743 19951216 44.1 24 38.7 24 1020.0 24 1017.7 24 9.2 24 8.6 24 15.9 999.9 63.0 32.9 0.68G 999.9 110000 724050 13743 19951217 37.8 24 26.0 24 1027.7 24 1025.3 24 12.9 24 11.5 24 15.9 999.9 51.1 33.1 0.23G 999.9 100000 724050 13743 19951218 34.0 24 28.9 24 1027.0 24 1024.6 24 11.0 24 5.0 24 10.1 999.9 43.0 28.9 0.01G 999.9 111000 724050 13743 19951219 33.6 24 33.2 24 1012.2 24 1009.8 24 4.4 24 8.7 24 13.0 999.9 37.9 28.9 0.62G 999.9 111000 724050 13743 19951220 27.5 24 22.9 24 1004.2 24 1001.8 24 10.6 24 12.8 24 18.1 18.8 35.1 24.1 0.47G 0.4 111000 724050 13743 19951221 28.3 24 18.1 24 1010.8 24 1008.4 24 13.3 24 10.7 24 15.9 22.0 35.1 23.0 0.00G 999.9 000000 724050 13743 19951222 29.2 24 15.4 24 1013.7 24 1011.3 24 14.4 24 13.2 24 17.1 23.9 36.0 23.0 0.00G 999.9 000000 724050 13743 19951223 31.8 24 19.5 24 1016.8 24 1014.4 24 14.2 24 9.9 24 15.0 16.9 37.0 25.0 0.00G 999.9 000000 724050 13743 19951224 32.8 24 19.4 24 1015.9 24 1013.5 24 14.3 24 10.1 24 14.0 999.9 37.0 27.9 0.00D 999.9 000000 724050 13743 19951225 32.3 24 18.2 24 1015.3 24 1013.0 24 14.8 24 8.0 24 12.0 999.9 37.0 28.9 0.00G 999.9 000000 724050 13743 19951226 30.4 24 14.7 24 1012.4 24 1010.1 24 16.4 24 12.1 24 21.0 25.8 36.0 27.0 0.00G 999.9 000000 724050 13743 19951227 28.1 24 12.1 24 1013.4 24 1011.0 24 14.2 24 9.7 24 14.0 23.9 34.0 23.0 0.00G 999.9 000000 724050 13743 19951228 31.8 24 18.9 24 1019.5 24 1017.1 24 13.3 24 12.6 24 19.0 19.8 39.0 23.0 0.00G 999.9 000000 724050 13743 19951229 34.2 24 21.4 24 1027.4 24 1025.1 24 13.0 24 10.2 24 17.1 999.9 43.0* 27.9 0.00G 999.9 000000 724050 13743 19951230 33.6 24 23.9 24 1028.0 24 1025.6 24 11.1 24 4.3 24 8.9 999.9 46.9* 24.1 0.00G 999.9 000000 724050 13743 19951231 37.1 24 30.2 24 1019.0 24 1016.6 24 9.2 24 4.7 24 10.1 999.9 48.0 23.9 0.00G 999.9 100000 fluids-1.0.22/tests/gsod/1979/0000755000175000017500000000000014302004506015111 5ustar nileshnileshfluids-1.0.22/tests/gsod/1979/724050-13743.op0000644000175000017500000014327214302004506016702 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19790101 48.8 23 44.7 23 1022.2 23 1019.8 23 6.0 23 8.9 23 15.0 999.9 60.1* 37.0 0.28G 999.9 110000 724050 13743 19790102 53.7 24 44.8 24 1009.4 24 1007.0 24 7.8 24 10.7 24 19.8 999.9 63.0 43.0* 1.18G 999.9 110000 724050 13743 19790103 22.2 24 4.9 24 1024.7 24 1022.2 24 20.1 24 16.1 24 22.0 29.9 39.9* 9.9 0.28G 999.9 111000 724050 13743 19790104 23.1 24 6.0 24 1036.2 24 1033.8 24 17.6 24 7.6 24 16.9 24.9 36.0* 10.0 0.00G 999.9 000000 724050 13743 19790105 31.7 24 13.6 24 1037.7 24 1035.3 24 17.0 24 5.5 24 9.9 999.9 36.0 15.1 0.00I 999.9 000000 724050 13743 19790106 35.7 24 24.1 24 1029.9 24 1027.5 24 8.4 24 6.4 24 10.9 999.9 39.9 27.0 0.04G 999.9 011000 724050 13743 19790107 39.1 23 34.3 23 1022.8 23 1020.4 23 3.3 23 4.2 23 8.0 999.9 46.0* 33.1 0.47G 999.9 111000 724050 13743 19790108 41.3 24 34.4 24 1011.2 24 1008.9 24 5.9 24 11.4 24 19.8 26.8 52.0 34.9 0.75G 999.9 111000 724050 13743 19790109 26.2 24 7.4 24 1026.5 24 1024.0 24 18.2 24 10.7 24 16.9 23.9 35.1* 17.1 0.04G 999.9 000000 724050 13743 19790110 29.0 24 14.2 24 1029.2 24 1026.8 24 17.4 24 6.8 24 9.9 999.9 34.0 17.1 0.00G 999.9 000000 724050 13743 19790111 26.6 24 12.7 24 1033.3 24 1030.8 24 13.8 24 9.6 24 15.0 999.9 34.0 20.8 0.00G 999.9 001000 724050 13743 19790112 23.6 24 13.2 24 1032.7 24 1030.3 24 7.6 24 8.0 24 10.9 999.9 30.9 20.8 0.02G 0.8 001000 724050 13743 19790113 32.8 22 26.2 22 1019.6 22 1016.8 21 2.7 22 9.6 22 11.8 999.9 39.0* 21.0 0.35G 999.9 111000 724050 13743 19790114 37.7 24 33.6 24 1003.6 24 1001.2 24 5.0 24 10.6 24 24.9 39.8 43.0* 28.9 0.31G 999.9 110000 724050 13743 19790115 30.5 24 6.3 24 1025.7 24 1023.3 24 21.3 24 13.5 24 19.8 25.8 43.0 21.9 0.02G 999.9 000000 724050 13743 19790116 36.9 24 14.5 24 1030.1 24 1027.7 24 19.8 24 7.4 24 11.8 999.9 46.9 21.9 0.00G 999.9 000000 724050 13743 19790117 36.3 24 22.8 24 1026.2 24 1023.7 24 13.2 24 6.7 24 12.8 999.9 46.9 32.0 0.04G 999.9 011000 724050 13743 19790118 35.2 24 20.6 24 1017.0 24 1014.6 24 12.8 24 16.0 24 35.9 49.9 44.1 29.1* 0.00I 999.9 000000 724050 13743 19790119 24.1 24 4.6 24 1029.6 24 1027.2 24 15.9 24 9.6 24 19.8 26.8 28.2* 18.0 0.00G 999.9 000000 724050 13743 19790120 30.8 23 18.6 23 1017.9 23 1015.5 23 10.2 23 7.3 23 9.9 999.9 35.1* 18.0 0.00G 999.9 111000 724050 13743 19790121 38.6 24 36.1 24 989.1 24 986.8 24 6.8 24 8.5 24 15.9 25.8 46.0* 28.9 1.46G 999.9 110000 724050 13743 19790122 41.6 24 27.7 24 1000.5 24 998.1 24 14.4 24 12.6 24 18.8 30.9 46.9 35.1 0.35G 999.9 011000 724050 13743 19790123 36.0 24 22.2 24 1019.7 24 1017.2 24 13.7 24 7.1 24 12.8 999.9 43.0 27.9 0.00G 999.9 000000 724050 13743 19790124 46.7 24 42.4 24 1002.2 24 999.9 24 7.7 24 11.3 24 22.9 34.0 57.9* 28.0 0.67G 999.9 110000 724050 13743 19790125 38.9 22 23.0 22 993.6 22 991.2 22 18.8 22 15.1 22 22.0 31.9 59.0 32.9 0.39G 999.9 010000 724050 13743 19790126 36.2 23 20.5 23 1003.6 23 1001.3 23 15.3 23 15.4 23 19.8 31.9 44.1* 30.9 0.00G 999.9 001000 724050 13743 19790127 38.9 24 25.0 24 1006.0 24 1003.6 24 18.5 24 9.4 24 14.0 16.9 48.9* 32.0 0.00G 999.9 000000 724050 13743 19790128 38.1 24 29.3 24 996.3 24 994.0 24 8.1 24 8.2 24 15.9 22.9 48.9 33.1 0.28G 0.8 111000 724050 13743 19790129 41.2 24 27.7 24 1002.0 24 999.6 24 17.9 24 17.0 24 25.8 35.9 44.1 35.1 0.12G 999.9 000000 724050 13743 19790130 36.1 24 21.5 24 1009.9 24 1007.5 24 18.2 24 15.9 24 19.8 29.9 45.0 32.0 0.00G 999.9 000000 724050 13743 19790131 32.5 23 19.2 23 1008.5 23 1006.1 23 14.6 23 11.0 22 16.9 22.0 42.1 27.9 0.00G 999.9 001000 724050 13743 19790201 31.7 24 11.9 24 1006.5 24 1004.1 24 16.2 24 18.4 24 26.8 37.9 36.0 27.9 0.00A 999.9 000000 724050 13743 19790202 30.1 24 8.6 24 1017.2 24 1014.8 24 19.9 24 16.1 24 21.0 28.9 37.9* 25.0 0.00G 999.9 000000 724050 13743 19790203 30.9 24 11.7 24 1021.1 24 1018.7 24 19.9 24 8.7 24 14.0 999.9 39.0 23.9 0.00G 999.9 000000 724050 13743 19790204 37.8 24 24.2 24 1015.4 24 1013.0 24 14.6 24 6.9 24 14.0 999.9 48.0 24.1 0.00G 999.9 001000 724050 13743 19790205 28.3 22 3.1 22 1018.0 22 1015.6 22 19.4 22 13.4 22 52.8 999.9 48.9 18.0 0.00G 999.9 000000 724050 13743 19790206 23.8 24 -3.5 24 1024.5 24 1022.1 24 19.9 24 8.6 23 14.0 999.9 33.1* 16.0 0.00G 999.9 000000 724050 13743 19790207 28.5 23 14.2 23 1015.1 23 1012.7 23 8.3 23 7.7 23 15.9 999.9 34.0 16.0 0.20G 4.7 011000 724050 13743 19790208 28.6 24 16.7 24 1014.0 24 1011.6 24 8.6 24 8.3 24 15.0 21.0 36.0* 19.9 0.12G 5.1 101000 724050 13743 19790209 23.5 23 8.7 23 1020.4 23 1018.0 23 13.2 23 12.2 23 17.9 999.9 36.0 20.1* 0.04G 4.7 001000 724050 13743 19790210 16.8 23 -2.9 23 1025.5 23 1023.1 23 18.4 23 9.3 23 16.9 22.0 27.1* 6.1 0.01G 3.9 000000 724050 13743 19790211 15.3 24 -6.9 24 1031.9 24 1029.5 24 19.9 24 10.1 24 14.0 999.9 27.0 6.1 0.00G 3.9 000000 724050 13743 19790212 20.0 24 2.5 24 1026.9 24 1024.5 24 9.9 24 6.5 24 11.8 999.9 25.0 8.1 0.00G 5.9 101000 724050 13743 19790213 17.7 22 5.7 22 1023.8 22 1021.4 22 10.1 22 10.7 22 16.9 999.9 25.0 9.0 0.43G 8.7 101000 724050 13743 19790214 17.1 24 1.6 24 1026.3 24 1023.8 24 11.0 24 6.3 24 8.9 999.9 27.0 7.0 0.00G 7.9 001000 724050 13743 19790215 21.9 21 16.2 21 1018.5 21 1016.1 21 5.9 21 6.9 20 9.9 999.9 23.2* 7.0 0.01G 7.9 111000 724050 13743 19790216 27.6 23 21.9 23 1017.4 23 1015.0 23 4.6 23 9.0 23 17.9 999.9 35.1* 16.2* 0.08G 7.9 111000 724050 13743 19790217 17.0 24 -0.4 24 1037.4 24 1035.0 24 17.1 24 14.0 24 19.8 999.9 35.1 8.1 0.02G 6.7 001000 724050 13743 19790218 10.1 23 -10.7 23 1044.2 23 1041.7 23 15.2 23 10.3 22 12.8 999.9 21.9 6.1 0.00G 5.9 001000 724050 13743 19790219 21.5 23 15.0 23 1028.2 23 1025.8 23 6.1 23 15.0 22 22.0 999.9 35.1* 6.1 1.02G 22.8 001000 724050 13743 19790220 24.4 24 17.2 24 1032.8 24 1030.4 24 6.7 24 4.5 24 7.0 999.9 37.9* 9.9 0.35G 21.7 100000 724050 13743 19790221 35.2 23 25.8 23 1025.6 23 1023.2 23 4.6 23 7.2 23 12.8 999.9 42.1* 28.2* 0.02G 16.9 110000 724050 13743 19790222 41.5 24 34.4 24 1024.9 24 1022.4 24 4.1 24 5.1 24 11.8 999.9 55.9* 27.0 0.04G 11.8 100000 724050 13743 19790223 40.6 24 32.4 24 1029.0 24 1026.6 24 7.4 24 4.9 24 8.9 999.9 55.9 33.1 0.00G 5.9 110000 724050 13743 19790224 40.7 22 39.3 22 1022.2 22 1019.7 22 2.2 22 6.5 22 9.9 999.9 44.1 35.1 0.59G 2.8 110000 724050 13743 19790225 42.6 24 41.4 24 1017.2 24 1014.8 24 5.1 24 10.9 24 15.9 999.9 45.0 37.9 1.34G 0.8 110000 724050 13743 19790226 39.4 24 38.0 24 1004.2 24 1001.9 24 3.8 24 10.4 24 16.9 999.9 45.0 37.9 1.18G 999.9 110000 724050 13743 19790227 40.0 24 29.9 24 1010.8 24 1008.4 24 16.5 24 11.3 24 18.8 26.8 44.1 36.9 0.01G 999.9 110000 724050 13743 19790228 43.3 23 28.7 23 1021.8 23 1019.4 23 14.9 23 5.9 23 9.9 999.9 55.9* 34.0 0.00G 999.9 000000 724050 13743 19790301 44.9 23 32.7 23 1023.2 23 1020.8 23 16.8 23 3.8 23 8.0 999.9 55.9 34.0 0.00G 999.9 010000 724050 13743 19790302 48.9 22 39.8 22 1025.7 22 1023.2 22 11.0 22 6.5 22 16.9 999.9 59.0* 37.9 0.01G 999.9 110000 724050 13743 19790303 45.4 24 39.3 24 1031.8 24 1029.4 24 7.5 24 6.4 24 12.8 999.9 59.0 37.9 0.00G 999.9 100000 724050 13743 19790304 49.7 24 45.6 24 1026.8 24 1024.3 24 7.6 24 7.9 24 14.0 999.9 63.0* 42.1 0.00D 999.9 110000 724050 13743 19790305 58.9 24 55.5 24 1020.4 24 1018.0 24 12.6 23 10.0 23 14.0 17.9 63.0 43.0 0.43G 999.9 110000 724050 13743 19790306 55.6 24 49.9 24 1015.6 24 1013.2 24 8.5 23 9.3 24 12.8 999.9 61.0 50.9 0.12G 999.9 110000 724050 13743 19790307 47.9 22 34.9 22 1013.6 22 1011.3 22 10.4 22 7.6 22 11.8 999.9 60.1 37.9 0.02G 999.9 000000 724050 13743 19790308 48.4 24 35.1 24 1010.8 24 1008.4 24 9.0 24 4.2 24 5.8 999.9 57.9 37.9 0.00G 999.9 000000 724050 13743 19790309 50.2 24 36.0 24 1017.5 24 1015.1 24 10.4 24 5.8 24 11.8 999.9 61.0* 37.9 0.00G 999.9 000000 724050 13743 19790310 55.3 23 45.9 23 1017.2 23 1014.8 23 12.0 23 10.7 23 15.0 999.9 66.9* 39.9 0.00G 999.9 000000 724050 13743 19790311 42.3 22 33.0 22 1009.4 22 1007.0 21 10.4 22 13.5 22 23.9 29.9 68.0 35.1* 0.24G 999.9 111000 724050 13743 19790312 38.4 24 15.9 24 1018.0 24 1015.6 24 18.8 24 12.9 24 17.9 26.8 52.0* 32.0 0.59G 999.9 000000 724050 13743 19790313 48.8 24 26.2 24 1024.8 24 1022.3 24 17.6 24 8.9 24 23.9 35.0 66.9* 32.0 0.00G 999.9 000000 724050 13743 19790314 58.1 24 41.8 24 1010.7 24 1008.3 24 14.9 24 16.4 24 25.8 35.0 66.9 35.1 0.02G 999.9 010000 724050 13743 19790315 36.8 24 14.0 23 1021.5 24 1019.1 24 17.6 24 17.5 24 28.9 30.9 45.0* 27.9 0.04G 999.9 010000 724050 13743 19790316 34.7 24 11.2 24 1034.4 24 1031.9 24 19.8 24 9.7 24 15.0 999.9 50.0* 25.0 0.00G 999.9 000000 724050 13743 19790317 46.8 24 26.2 24 1032.9 24 1030.5 24 15.1 24 5.9 24 12.8 999.9 64.9* 25.0 0.00D 999.9 000000 724050 13743 19790318 53.5 24 35.6 24 1025.2 24 1022.8 24 15.1 24 7.2 24 16.9 999.9 69.1* 34.0 0.00D 999.9 000000 724050 13743 19790319 49.6 24 28.7 24 1023.6 24 1021.1 24 19.8 24 6.7 24 14.0 999.9 69.1 36.9 0.00C 999.9 000000 724050 13743 19790320 50.4 24 29.0 24 1019.5 24 1017.1 24 18.0 24 8.4 24 11.8 999.9 64.9* 37.0 0.00D 999.9 000000 724050 13743 19790321 55.4 24 31.4 24 1018.8 24 1016.4 24 19.9 24 8.1 24 12.8 999.9 66.9* 39.9 0.00D 999.9 000000 724050 13743 19790322 55.2 24 40.5 24 1022.1 24 1019.7 23 17.1 24 6.5 24 9.9 999.9 70.0* 43.0 0.00D 999.9 000000 724050 13743 19790323 56.7 24 41.9 24 1016.8 24 1014.4 24 17.8 24 9.5 24 17.9 999.9 70.0 43.0 0.00G 999.9 000000 724050 13743 19790324 60.6 24 55.1 24 1001.3 24 998.9 24 12.5 24 16.2 24 24.9 32.8 70.0 46.0 0.79G 999.9 110010 724050 13743 19790325 52.1 24 43.9 24 999.0 24 996.6 24 17.6 24 10.4 24 21.0 999.9 64.9 47.8 0.20G 999.9 010000 724050 13743 19790326 45.5 23 30.0 23 1009.4 23 1007.0 23 18.5 22 12.7 23 17.9 28.9 55.0 38.8 0.02G 999.9 000000 724050 13743 19790327 43.0 22 26.6 22 1023.0 22 1020.6 22 15.9 22 8.9 22 15.0 19.8 52.0* 34.9 0.00G 999.9 000000 724050 13743 19790328 44.4 23 25.4 23 1031.2 23 1028.8 23 15.6 23 8.6 23 12.8 999.9 55.9* 34.0 0.00G 999.9 000000 724050 13743 19790329 57.9 24 45.1 24 1025.1 24 1022.6 24 13.0 24 11.9 24 16.9 999.9 75.9* 34.0 0.00G 999.9 010000 724050 13743 19790330 69.2 24 52.2 24 1022.7 24 1020.3 24 13.4 24 8.5 24 15.9 999.9 82.9* 46.0 0.00D 999.9 000000 724050 13743 19790331 70.5 24 55.0 24 1018.8 24 1016.4 24 14.9 24 9.5 24 14.0 999.9 84.0 57.0 0.00G 999.9 000000 724050 13743 19790401 63.9 24 58.8 24 1018.3 24 1016.0 24 6.8 24 6.1 24 12.8 999.9 84.9 59.0 0.20G 999.9 110000 724050 13743 19790402 53.4 23 49.2 23 1018.2 23 1015.9 23 3.7 23 9.0 23 15.0 999.9 69.1 47.8 0.04G 999.9 110000 724050 13743 19790403 54.8 24 51.5 24 1018.8 24 1016.4 24 3.3 24 7.0 24 11.8 999.9 57.9 48.0 0.02G 999.9 110000 724050 13743 19790404 48.1 23 43.2 23 1020.7 23 1018.4 23 7.2 23 9.3 23 12.8 999.9 57.9 45.0 0.28G 999.9 110000 724050 13743 19790405 52.1 24 43.5 24 1011.4 24 1009.1 24 9.7 24 9.3 24 17.9 999.9 61.0 45.0 0.12G 999.9 110000 724050 13743 19790406 50.4 23 25.8 23 1013.0 23 1010.7 23 17.3 23 17.5 23 29.9 42.0 62.1 45.9 0.04G 999.9 000000 724050 13743 19790407 42.9 22 15.0 22 1022.5 22 1020.1 22 17.9 22 15.1 22 19.8 25.8 55.0 34.9 0.00G 999.9 000000 724050 13743 19790408 48.6 24 24.7 24 1019.3 24 1017.0 24 16.4 24 7.8 24 11.8 999.9 55.0* 35.1 0.00G 999.9 000000 724050 13743 19790409 47.0 24 40.1 24 1000.1 24 997.9 24 10.2 24 9.1 24 17.9 29.9 55.0 44.1 0.20G 999.9 110000 724050 13743 19790410 48.0 23 30.7 23 1010.8 23 1008.6 23 19.1 23 14.6 23 22.9 30.9 61.0* 41.0 0.43G 999.9 010000 724050 13743 19790411 53.8 23 35.0 23 1024.6 23 1022.3 23 17.8 23 6.0 23 10.9 999.9 68.0* 41.0 0.00G 999.9 000000 724050 13743 19790412 57.4 24 46.1 24 1022.9 24 1020.6 24 12.0 24 5.6 24 10.9 999.9 69.1 41.0 0.00G 999.9 010000 724050 13743 19790413 53.0 24 48.3 24 1019.5 23 1017.2 23 6.7 24 11.6 24 17.9 24.9 66.9 44.1* 0.00G 999.9 110000 724050 13743 19790414 51.2 23 43.3 23 1014.3 23 1012.0 23 12.8 23 12.4 23 19.8 31.9 66.0* 41.0* 0.20G 999.9 110000 724050 13743 19790415 55.1 23 42.8 23 1008.8 23 1006.5 23 15.3 23 10.6 23 21.0 25.8 66.0 42.1 0.00G 999.9 010000 724050 13743 19790416 51.1 23 36.6 23 1013.5 23 1011.2 23 14.9 23 12.2 23 16.9 23.9 61.0 46.9 0.02G 999.9 010000 724050 13743 19790417 52.4 23 35.8 23 1018.5 23 1016.2 23 14.5 23 13.1 23 18.8 23.9 60.1* 45.9 0.00G 999.9 000000 724050 13743 19790418 55.9 24 32.9 24 1020.9 24 1018.6 24 17.6 24 13.1 24 19.8 28.0 66.9* 45.9 0.00G 999.9 000000 724050 13743 19790419 57.6 24 28.7 24 1021.9 24 1019.6 24 19.8 24 11.0 24 17.9 22.9 68.0 41.9 0.00G 999.9 000000 724050 13743 19790420 57.7 23 28.5 23 1023.5 23 1021.2 23 19.7 23 7.5 23 12.8 999.9 68.0 42.1 0.00G 999.9 000000 724050 13743 19790421 59.2 24 39.9 24 1024.1 24 1021.8 24 19.4 24 7.9 24 11.8 999.9 73.9* 44.1 0.00D 999.9 000000 724050 13743 19790422 62.9 24 45.7 24 1024.0 24 1021.7 24 16.2 24 6.7 24 10.9 999.9 77.0* 46.0 0.00D 999.9 000000 724050 13743 19790423 67.4 24 56.6 24 1024.4 24 1022.1 24 10.3 24 5.5 24 9.9 999.9 77.0 53.1 0.01G 999.9 010000 724050 13743 19790424 62.9 24 57.9 24 1024.7 24 1022.4 24 5.1 24 4.0 24 5.8 999.9 73.9 57.9 0.00C 999.9 110000 724050 13743 19790425 68.5 24 61.4 24 1020.9 24 1018.7 24 5.8 24 7.0 24 15.0 999.9 79.0* 57.9 0.02G 999.9 100000 724050 13743 19790426 66.0 24 60.9 24 1013.4 24 1011.1 24 9.2 23 9.4 24 16.9 999.9 79.0 62.1 0.02G 999.9 110000 724050 13743 19790427 64.8 23 60.8 23 1003.2 23 1000.9 23 8.8 23 7.3 23 14.0 999.9 71.1* 61.9 0.16G 999.9 110000 724050 13743 19790428 61.0 24 47.9 24 1010.9 24 1008.6 24 13.5 24 7.2 24 21.0 28.0 72.0 54.9 0.31G 999.9 010000 724050 13743 19790429 54.7 24 40.9 24 1017.2 24 1014.9 24 14.4 24 10.3 24 15.9 999.9 68.0 45.9 0.00G 999.9 010000 724050 13743 19790430 58.3 24 41.3 24 1018.7 24 1016.4 24 12.0 24 7.0 24 10.9 999.9 73.9* 45.9 0.00G 999.9 000000 724050 13743 19790501 63.7 23 38.9 23 1019.6 23 1017.2 23 18.2 23 10.3 23 15.9 999.9 73.9 46.0 0.00G 999.9 000000 724050 13743 19790502 60.1 23 38.4 23 1024.1 23 1021.7 23 17.0 23 6.7 23 10.9 999.9 73.9* 46.9 0.00D 999.9 000000 724050 13743 19790503 65.2 24 51.4 24 1019.1 24 1016.7 24 12.8 24 10.6 24 17.9 24.9 75.9 46.9 0.00G 999.9 010000 724050 13743 19790504 67.1 23 59.8 23 1012.1 23 1009.7 23 7.3 23 7.4 23 15.0 999.9 77.0 55.0 0.00G 999.9 110000 724050 13743 19790505 56.6 24 43.5 24 1015.1 24 1012.7 24 13.4 24 10.9 24 21.0 999.9 70.0 47.8 0.12G 999.9 110000 724050 13743 19790506 60.7 23 48.7 23 1016.4 23 1014.0 23 14.4 23 6.4 23 10.9 999.9 73.9* 47.8 0.00G 999.9 000000 724050 13743 19790507 67.2 24 52.5 24 1019.0 24 1016.6 24 15.1 24 9.0 24 12.8 999.9 82.0* 48.0 0.00D 999.9 000000 724050 13743 19790508 72.6 24 62.7 24 1019.6 24 1017.2 24 12.2 24 8.7 24 11.8 999.9 84.9* 55.0 0.00D 999.9 000000 724050 13743 19790509 75.7 23 66.2 23 1019.5 23 1017.1 23 11.1 23 9.9 23 13.0 999.9 88.0* 62.1 0.00C 999.9 000000 724050 13743 19790510 76.2 21 67.9 21 1016.5 21 1014.1 21 11.6 21 8.1 21 12.8 999.9 89.1* 66.0 0.00G 999.9 000000 724050 13743 19790511 77.2 22 69.9 22 1014.4 22 1012.0 22 9.6 22 5.8 22 9.9 999.9 89.1 69.1 0.02G 999.9 110000 724050 13743 19790512 73.2 23 67.7 23 1016.2 23 1013.8 23 6.1 23 6.5 23 10.9 999.9 86.0 68.9 0.00D 999.9 110000 724050 13743 19790513 72.1 23 68.6 23 1014.2 23 1011.8 23 6.5 23 6.2 23 10.9 999.9 77.0 68.0* 0.20G 999.9 110010 724050 13743 19790514 65.6 24 58.1 24 1016.8 24 1014.4 24 8.8 24 7.6 24 14.0 999.9 75.9 59.9 1.06G 999.9 110000 724050 13743 19790515 65.8 24 55.6 24 1019.9 24 1017.4 24 9.4 24 5.1 24 8.0 999.9 78.1* 54.0 0.00G 999.9 100000 724050 13743 19790516 66.4 22 51.1 22 1023.0 22 1020.6 22 12.9 21 10.0 22 15.0 999.9 79.0 54.0 0.04G 999.9 010000 724050 13743 19790517 63.9 24 44.2 24 1027.3 24 1024.9 24 19.9 24 9.0 24 12.8 999.9 73.9 55.9 0.00G 999.9 000000 724050 13743 19790518 63.7 24 51.5 24 1023.8 24 1021.4 24 13.5 24 8.8 24 16.9 999.9 75.0 55.9 0.00G 999.9 010000 724050 13743 19790519 66.8 23 61.0 23 1017.1 23 1014.7 23 10.7 23 10.6 23 15.0 999.9 73.9* 55.9 0.20G 999.9 110000 724050 13743 19790520 67.9 23 61.6 23 1016.8 23 1014.3 23 8.7 23 7.1 22 10.9 999.9 75.9* 61.9 0.01G 999.9 110000 724050 13743 19790521 68.0 24 62.6 24 1015.1 24 1012.6 24 7.4 23 7.0 24 9.9 999.9 75.9 61.9 0.00D 999.9 110000 724050 13743 19790522 68.7 24 62.3 24 1017.1 24 1014.7 24 5.1 24 5.5 24 10.9 999.9 75.0* 62.1 0.00D 999.9 100000 724050 13743 19790523 71.7 23 67.2 23 1016.3 23 1013.9 23 4.0 23 7.5 23 11.8 999.9 78.1* 63.0 0.16G 999.9 110000 724050 13743 19790524 72.0 22 67.3 22 1006.7 22 1004.3 22 7.9 22 10.5 22 16.9 22.9 78.1 66.9 0.67G 999.9 110010 724050 13743 19790525 66.7 23 61.4 23 1000.9 23 998.5 23 10.1 22 6.9 23 10.9 999.9 77.0 61.0 0.20G 999.9 110010 724050 13743 19790526 57.9 23 49.2 23 1003.9 23 1001.5 23 18.2 23 7.2 23 11.8 999.9 72.0 50.9 0.12G 999.9 010000 724050 13743 19790527 62.8 24 48.5 24 1012.0 24 1009.6 24 16.8 24 11.3 24 18.8 24.9 75.0* 51.1 0.00G 999.9 010000 724050 13743 19790528 67.3 24 57.6 24 1012.5 24 1010.1 24 12.9 24 7.9 24 15.0 21.0 75.9 53.1 0.00G 999.9 010000 724050 13743 19790529 64.4 23 58.0 23 1012.8 23 1010.5 23 9.3 23 4.6 23 9.9 999.9 77.0 54.0 0.01G 999.9 110110 724050 13743 19790530 69.9 23 58.0 23 1015.8 23 1013.4 23 10.0 23 6.7 22 11.8 999.9 81.0* 54.0 0.24G 999.9 100000 724050 13743 19790531 70.7 24 65.0 24 1019.7 24 1017.3 24 8.2 24 6.0 24 9.9 999.9 82.0 57.0 0.00G 999.9 110000 724050 13743 19790601 75.6 23 70.8 23 1016.8 23 1014.4 23 8.2 23 7.3 23 9.9 999.9 84.0* 64.9 1.18G 999.9 110000 724050 13743 19790602 75.3 23 70.8 23 1017.1 23 1014.7 23 5.5 23 5.3 23 8.9 999.9 84.9 71.1 0.00D 999.9 110000 724050 13743 19790603 69.3 24 65.2 24 1016.1 24 1013.7 24 4.6 24 6.4 24 8.9 999.9 80.1 66.0* 0.28G 999.9 110000 724050 13743 19790604 66.8 24 63.4 24 1012.5 24 1009.9 24 6.2 24 7.9 24 12.8 999.9 75.0* 61.9 0.98G 999.9 110000 724050 13743 19790605 71.2 24 63.4 24 1009.9 24 1007.5 24 6.7 24 5.8 24 10.9 999.9 86.0* 59.0 0.28G 999.9 100000 724050 13743 19790606 75.7 23 66.1 23 1011.7 23 1009.3 23 7.1 23 5.3 23 12.8 999.9 87.1 59.0 0.00G 999.9 100000 724050 13743 19790607 76.9 24 70.8 24 1016.7 24 1014.3 24 5.2 24 5.8 24 10.9 999.9 87.1 66.0 0.00G 999.9 100000 724050 13743 19790608 77.0 23 69.8 23 1021.4 23 1019.0 23 8.3 23 8.2 23 12.8 999.9 87.1 70.0 0.00D 999.9 100000 724050 13743 19790609 78.2 24 71.6 24 1020.5 24 1018.1 24 5.6 24 7.6 24 9.9 999.9 87.1* 70.9 0.00C 999.9 100000 724050 13743 19790610 79.7 24 72.1 24 1016.1 24 1013.7 24 4.5 24 7.5 24 14.0 999.9 89.1* 70.9 0.00G 999.9 100000 724050 13743 19790611 72.0 23 60.8 23 1011.3 23 1008.9 23 9.1 23 11.2 23 15.9 28.0 88.9 59.9 0.00G 999.9 110000 724050 13743 19790612 67.0 24 47.2 24 1016.1 24 1013.7 24 21.3 24 9.7 24 15.9 23.9 77.0* 54.9 0.04G 999.9 000000 724050 13743 19790613 68.8 24 47.9 23 1023.1 24 1020.7 24 19.1 24 7.1 24 10.9 999.9 77.0 55.0 0.00G 999.9 000000 724050 13743 19790614 68.4 24 50.1 24 1027.9 24 1025.5 24 19.7 24 5.1 24 8.0 999.9 79.0* 54.9 0.00G 999.9 000000 724050 13743 19790615 71.4 24 53.0 24 1026.9 24 1024.5 24 19.9 24 8.5 24 11.8 999.9 82.0* 55.0 0.00G 999.9 000000 724050 13743 19790616 71.9 24 59.4 24 1021.5 24 1019.1 24 15.3 24 7.5 24 9.9 999.9 82.9 60.1 0.00G 999.9 000000 724050 13743 19790617 71.5 21 66.5 21 1014.1 21 1011.7 21 10.6 21 8.6 21 11.8 999.9 84.0 62.1 0.39G 999.9 110010 724050 13743 19790618 75.1 24 66.8 24 1012.6 24 1010.2 24 7.6 24 8.2 24 15.9 999.9 88.0* 64.9 0.00D 999.9 100010 724050 13743 19790619 71.0 24 58.6 24 1020.9 24 1018.5 24 12.5 24 9.7 24 14.0 999.9 88.0 63.0 0.00G 999.9 000000 724050 13743 19790620 71.6 24 59.1 24 1027.6 24 1025.1 24 12.3 24 6.8 24 9.9 999.9 80.1 61.9 0.00D 999.9 100000 724050 13743 19790621 67.9 24 54.1 24 1024.6 24 1022.2 24 15.7 24 9.5 24 11.8 999.9 82.0 61.0 0.00D 999.9 010000 724050 13743 19790622 70.6 23 64.1 23 1016.3 23 1013.9 23 8.9 23 7.9 23 15.0 999.9 82.0* 61.0 0.02G 999.9 110000 724050 13743 19790623 76.1 24 65.8 24 1014.0 24 1011.6 24 12.2 24 7.2 23 14.0 999.9 87.1* 63.0 0.01G 999.9 000000 724050 13743 19790624 69.0 24 60.2 24 1016.9 24 1014.5 24 9.7 24 8.9 24 15.0 999.9 87.1 61.0* 0.31G 999.9 110010 724050 13743 19790625 64.3 23 50.1 23 1023.4 23 1021.0 23 17.1 23 9.8 23 14.0 999.9 75.9* 54.9 0.00G 999.9 000000 724050 13743 19790626 68.7 24 51.2 24 1029.4 24 1027.0 24 18.3 24 6.0 24 9.9 18.8 78.1 55.0 0.00D 999.9 000000 724050 13743 19790627 69.0 24 54.9 24 1028.6 24 1026.2 24 19.1 24 7.1 24 11.8 999.9 79.0 55.9 0.00G 999.9 010000 724050 13743 19790628 72.9 24 61.0 24 1022.0 24 1019.5 24 13.0 24 7.4 24 10.9 999.9 82.9* 57.9 0.00G 999.9 000000 724050 13743 19790629 75.9 23 65.1 23 1017.1 23 1014.7 23 9.0 23 7.1 23 10.9 999.9 87.1* 64.0 0.00G 999.9 010000 724050 13743 19790630 78.0 23 67.5 23 1012.6 23 1010.2 23 8.4 23 9.1 23 12.8 999.9 88.0 68.0 0.00G 999.9 010010 724050 13743 19790701 71.6 23 65.1 23 1009.3 23 1006.9 23 8.0 23 6.9 23 24.9 36.9 84.9 64.9* 0.35G 999.9 110010 724050 13743 19790702 72.6 23 62.7 23 1010.6 23 1008.2 23 9.5 23 9.6 23 17.9 22.0 81.0* 64.9 0.51G 999.9 010000 724050 13743 19790703 76.8 24 60.7 24 1014.9 24 1012.5 24 11.5 24 10.2 24 15.0 999.9 84.9* 66.0 0.01G 999.9 000000 724050 13743 19790704 73.2 23 61.6 23 1011.9 23 1009.5 23 7.7 23 6.1 23 11.8 999.9 84.9 64.0* 0.12G 999.9 110000 724050 13743 19790705 66.2 24 54.6 24 1016.4 24 1014.0 24 16.5 24 11.0 24 16.9 999.9 78.1 59.9 0.20G 999.9 110000 724050 13743 19790706 69.3 24 49.8 24 1025.0 24 1022.6 24 19.9 24 8.9 24 15.9 999.9 80.1* 56.8 0.00G 999.9 000000 724050 13743 19790707 72.7 24 55.0 24 1026.4 24 1024.0 24 19.1 24 4.5 24 9.9 999.9 84.0* 57.0 0.00D 999.9 000000 724050 13743 19790708 74.6 24 59.4 24 1025.4 24 1023.0 24 14.8 24 4.7 24 8.0 999.9 84.0 60.1 0.00G 999.9 000000 724050 13743 19790709 76.0 23 63.4 22 1021.9 23 1019.5 23 10.4 23 6.9 23 9.9 999.9 84.9 64.0 0.00G 999.9 000000 724050 13743 19790710 75.0 24 64.5 24 1018.5 24 1016.1 24 9.4 24 7.8 24 11.8 999.9 86.0 66.9 0.00D 999.9 000000 724050 13743 19790711 76.4 24 67.2 24 1016.7 24 1014.3 24 7.4 24 5.0 24 9.9 999.9 87.1* 68.0 0.00G 999.9 100000 724050 13743 19790712 82.1 24 70.9 24 1016.6 24 1014.2 24 6.5 24 5.4 24 9.9 999.9 91.9* 68.0 0.00G 999.9 100000 724050 13743 19790713 82.2 24 74.5 24 1012.5 24 1010.1 24 5.8 24 6.5 24 22.0 999.9 93.0 73.0 0.00G 999.9 010010 724050 13743 19790714 80.1 23 74.7 23 1010.3 23 1007.9 23 7.4 23 6.3 23 10.9 999.9 91.9 74.8 1.30G 999.9 110010 724050 13743 19790715 80.8 24 73.8 24 1013.9 24 1011.5 24 5.2 24 6.9 24 9.9 999.9 89.1* 74.8 0.08G 999.9 100000 724050 13743 19790716 83.6 24 74.0 24 1016.9 24 1014.5 24 5.1 24 5.2 24 8.0 999.9 91.9* 75.0 0.00G 999.9 100000 724050 13743 19790717 82.9 24 73.5 24 1016.8 24 1014.4 24 5.0 24 5.6 24 9.9 999.9 91.9 75.9 0.00D 999.9 000000 724050 13743 19790718 83.1 24 72.4 24 1017.3 24 1015.0 24 7.7 23 6.5 24 10.9 999.9 90.0 75.9 0.00D 999.9 000000 724050 13743 19790719 80.0 23 72.2 22 1020.3 23 1017.9 23 4.4 23 6.5 23 9.9 999.9 89.1 74.8 0.01G 999.9 100000 724050 13743 19790720 79.5 24 73.6 24 1021.4 24 1019.0 24 4.2 24 6.1 24 18.8 999.9 86.0 75.0 0.00G 999.9 100000 724050 13743 19790721 77.4 22 71.6 22 1020.7 22 1018.3 22 6.2 22 5.8 22 9.9 999.9 86.0 74.8 0.12G 999.9 110000 724050 13743 19790722 78.1 23 72.1 23 1020.0 23 1017.6 23 6.4 23 6.4 23 10.9 999.9 84.9* 72.0 0.04G 999.9 100000 724050 13743 19790723 80.3 24 74.5 24 1021.4 24 1019.1 24 8.3 24 8.2 24 11.8 999.9 89.6* 72.0 0.00G 999.9 110010 724050 13743 19790724 78.9 24 72.5 24 1021.8 24 1019.4 24 12.6 24 6.5 24 9.9 999.9 90.0 72.9 0.31G 999.9 010000 724050 13743 19790725 80.1 24 74.2 24 1018.7 24 1016.2 24 13.4 24 7.6 24 10.9 999.9 86.0 73.0 0.04G 999.9 010000 724050 13743 19790726 81.2 24 76.6 24 1013.3 24 1010.9 24 9.3 24 6.7 24 9.9 999.9 88.0* 75.9 0.55G 999.9 110010 724050 13743 19790727 82.5 23 71.9 23 1013.0 23 1010.6 23 10.8 23 8.2 23 10.9 999.9 88.9 75.9 0.01G 999.9 100000 724050 13743 19790728 80.6 21 71.4 21 1015.0 21 1012.6 21 7.0 21 4.7 21 22.0 26.8 90.0* 74.8 0.00G 999.9 110010 724050 13743 19790729 79.8 24 74.9 24 1013.7 24 1011.3 24 5.1 24 5.4 24 14.0 999.9 90.0 75.0 0.24G 999.9 110000 724050 13743 19790730 77.4 24 73.3 24 1014.9 24 1012.5 24 4.6 24 9.4 24 14.0 999.9 89.1 72.0 0.24G 999.9 110010 724050 13743 19790731 83.0 23 76.6 23 1016.0 23 1013.6 23 4.7 23 5.0 23 8.0 999.9 91.0* 72.0 0.08G 999.9 100000 724050 13743 19790801 84.7 24 78.2 24 1014.7 24 1012.3 24 6.2 24 6.6 24 9.9 999.9 93.0* 77.0 0.00G 999.9 100000 724050 13743 19790802 84.0 23 78.4 23 1012.7 23 1010.3 23 5.6 23 7.9 23 15.9 999.9 93.0 78.1 0.00G 999.9 110010 724050 13743 19790803 79.9 23 75.4 23 1015.3 23 1012.9 23 6.3 23 6.3 23 11.8 999.9 91.9 75.9 0.55G 999.9 110010 724050 13743 19790804 81.7 22 73.0 22 1016.9 22 1014.3 22 5.0 22 6.8 22 11.8 999.9 91.4* 74.8 0.04G 999.9 110000 724050 13743 19790805 84.0 24 70.1 24 1017.7 24 1015.3 24 5.6 24 7.3 24 12.8 999.9 91.9* 75.0 0.00G 999.9 000000 724050 13743 19790806 82.1 24 70.7 24 1016.0 24 1013.6 24 7.7 24 8.2 24 16.9 999.9 93.0 74.8 0.00D 999.9 010000 724050 13743 19790807 81.0 23 66.7 23 1018.1 23 1015.7 23 10.9 23 7.4 23 9.9 999.9 91.0 73.9 0.00G 999.9 000000 724050 13743 19790808 83.4 23 74.5 23 1016.3 23 1013.8 23 6.0 23 7.3 23 11.8 999.9 95.0 73.9 0.00D 999.9 110010 724050 13743 19790809 80.1 24 71.5 24 1018.9 24 1016.5 24 8.6 24 7.3 24 17.9 31.9 95.0 73.9 0.39G 999.9 110010 724050 13743 19790810 84.6 23 74.3 23 1015.0 23 1012.6 23 5.9 23 8.9 23 14.0 999.9 96.1* 73.9 0.31G 999.9 100000 724050 13743 19790811 80.6 22 72.9 22 1010.0 22 1007.6 22 5.5 22 6.5 22 22.9 36.9 97.0 73.0* 0.28G 999.9 110010 724050 13743 19790812 65.8 23 63.2 23 1012.3 23 1009.9 23 7.1 23 14.5 23 19.8 26.8 69.1* 63.0 2.05G 999.9 110000 724050 13743 19790813 68.6 24 58.2 24 1017.8 24 1015.4 24 17.0 24 10.7 24 15.9 999.9 80.1* 59.0 0.59G 999.9 000000 724050 13743 19790814 73.6 22 61.9 22 1018.4 22 1016.0 22 13.6 21 7.3 22 11.8 999.9 86.0 59.0 0.00G 999.9 000000 724050 13743 19790815 72.6 23 57.3 23 1018.4 23 1016.0 23 13.3 23 12.0 23 16.9 999.9 86.0 63.0 0.00G 999.9 000000 724050 13743 19790816 67.3 24 53.9 24 1023.8 24 1021.3 24 20.9 24 9.5 24 12.8 999.9 77.0* 59.0 0.00G 999.9 000000 724050 13743 19790817 68.7 24 53.8 24 1024.9 24 1022.5 24 16.9 24 5.4 24 10.9 999.9 78.1* 57.9 0.00D 999.9 000000 724050 13743 19790818 70.2 24 60.3 24 1020.1 24 1017.7 24 12.0 24 10.6 24 15.0 999.9 78.1 57.9 0.00D 999.9 110000 724050 13743 19790819 75.5 24 70.6 24 1015.9 24 1013.5 24 4.4 24 4.9 24 12.8 999.9 86.0* 68.0 0.01G 999.9 110010 724050 13743 19790820 76.7 23 70.6 23 1017.0 23 1014.6 23 5.4 23 5.3 23 8.9 999.9 86.0 69.1 0.12G 999.9 110010 724050 13743 19790821 74.9 24 69.8 24 1017.9 24 1015.5 24 5.2 24 7.9 23 14.0 999.9 86.0 70.0 0.51D 999.9 110000 724050 13743 19790822 72.1 24 64.7 24 1020.0 24 1017.4 24 8.1 24 4.6 24 8.0 999.9 82.0* 61.9 0.00D 999.9 100000 724050 13743 19790823 76.6 22 71.1 22 1019.3 22 1016.9 22 10.6 22 6.9 22 12.8 999.9 84.0* 70.9 0.00D 999.9 000000 724050 13743 19790824 80.5 21 75.0 21 1016.8 21 1014.4 21 6.3 21 7.7 21 9.9 999.9 88.0* 75.9 0.00D 999.9 100000 724050 13743 19790825 81.5 21 75.8 21 1017.0 21 1014.6 21 9.1 21 7.9 21 14.0 999.9 89.1* 75.9* 0.12D 999.9 110010 724050 13743 19790826 80.3 20 75.2 20 1020.1 20 1017.7 20 6.6 19 5.0 20 12.8 999.9 90.0 74.8 0.20G 999.9 110000 724050 13743 19790827 81.0 23 75.7 23 1017.4 23 1015.1 23 9.4 23 9.3 23 19.8 39.8 89.1 75.0 0.16G 999.9 010010 724050 13743 19790828 78.2 23 74.3 23 1016.1 23 1013.7 23 6.1 23 4.8 23 9.9 999.9 89.1 73.9 0.91G 999.9 110000 724050 13743 19790829 79.7 24 74.3 24 1015.3 24 1012.9 24 8.6 24 10.0 24 12.8 999.9 88.0* 73.9 0.04G 999.9 010000 724050 13743 19790830 81.2 23 75.0 23 1015.4 23 1013.0 23 5.5 23 6.3 23 11.8 999.9 90.0 73.9 0.04G 999.9 110000 724050 13743 19790831 81.1 23 71.5 23 1017.7 23 1015.3 23 7.6 22 5.4 23 8.0 999.9 90.0 73.9 0.00D 999.9 100000 724050 13743 19790901 79.0 24 71.7 24 1020.0 24 1017.6 24 7.2 24 6.0 24 9.9 999.9 91.0 73.9 0.00D 999.9 100000 724050 13743 19790902 79.7 23 74.7 23 1017.3 23 1014.9 23 7.0 23 8.1 23 12.8 999.9 84.9* 73.9 0.00D 999.9 100000 724050 13743 19790903 79.4 23 74.6 23 1014.8 23 1012.4 23 11.3 23 7.6 23 11.8 999.9 84.9 73.9 0.04G 999.9 010000 724050 13743 19790904 79.2 24 74.7 24 1016.5 24 1014.1 24 7.1 24 4.9 24 11.8 999.9 86.0* 73.9 0.12G 999.9 110000 724050 13743 19790905 77.8 20 75.8 20 1016.0 20 1013.6 20 8.2 19 8.3 20 19.8 30.9 86.0 73.9 0.63G 999.9 110000 724050 13743 19790906 81.5 17 73.3 17 1003.5 17 1001.1 17 11.2 17 16.1 17 19.8 35.0 87.8* 75.9 3.07G 999.9 110000 724050 13743 19790907 78.9 21 66.6 21 1009.0 21 1006.6 21 6.7 21 5.8 21 8.9 999.9 88.0 70.0 0.00G 999.9 000000 724050 13743 19790908 71.5 24 61.9 24 1014.4 24 1012.0 24 14.7 24 9.8 24 15.0 17.9 84.0 63.0 0.00D 999.9 000000 724050 13743 19790909 67.0 22 54.1 22 1022.0 22 1019.6 22 18.1 22 8.5 22 11.8 999.9 77.0 56.8 0.00D 999.9 000000 724050 13743 19790910 69.1 23 59.4 23 1022.0 23 1019.6 23 12.1 23 5.7 23 10.9 999.9 78.1* 57.0 0.00G 999.9 100000 724050 13743 19790911 73.1 22 64.2 22 1019.0 22 1016.6 22 9.8 22 5.1 22 8.0 999.9 84.9* 60.1 0.00G 999.9 000000 724050 13743 19790912 73.6 23 65.6 23 1021.7 23 1019.3 23 6.2 23 6.0 23 9.9 999.9 84.9 63.0 0.00G 999.9 100000 724050 13743 19790913 73.0 23 66.5 23 1020.8 23 1018.4 23 9.6 23 6.7 23 12.8 999.9 81.0 63.9 0.00G 999.9 000000 724050 13743 19790914 79.5 24 74.6 24 1008.7 24 1006.3 24 9.8 24 13.3 24 19.8 31.9 86.0* 64.0 0.00G 999.9 010000 724050 13743 19790915 70.4 24 56.5 24 1016.6 24 1014.2 24 19.9 24 10.4 24 15.0 19.8 87.1 59.9 0.16G 999.9 000000 724050 13743 19790916 66.6 24 54.1 24 1024.6 24 1022.1 24 19.8 24 6.0 24 8.9 999.9 75.9 56.8 0.00G 999.9 000000 724050 13743 19790917 68.2 24 58.9 24 1026.2 24 1023.8 24 14.4 24 4.0 24 7.0 999.9 78.1* 57.0 0.00D 999.9 000000 724050 13743 19790918 68.8 21 61.4 20 1020.4 21 1018.0 21 13.6 21 6.3 21 9.9 999.9 79.0* 57.9 0.08C 999.9 100000 724050 13743 19790919 72.5 23 59.9 23 1013.8 23 1011.4 23 12.3 23 10.1 23 18.8 26.8 80.1 60.1 0.00G 999.9 010000 724050 13743 19790920 62.6 23 49.7 23 1021.8 23 1019.4 23 17.1 23 7.3 23 9.9 999.9 77.9 54.0 0.00G 999.9 000000 724050 13743 19790921 67.8 24 64.3 24 1017.7 24 1015.3 24 9.5 24 8.9 24 12.8 17.9 73.0* 54.0 0.24G 999.9 110000 724050 13743 19790922 72.2 22 71.0 22 1009.1 22 1006.8 22 4.4 22 8.9 22 17.9 24.9 73.9 64.9 2.13G 999.9 110000 724050 13743 19790923 65.6 24 58.3 24 1018.6 24 1016.2 24 12.1 24 12.8 24 16.9 19.8 73.9 61.0 0.24G 999.9 110000 724050 13743 19790924 62.4 24 53.3 24 1025.4 24 1023.0 24 14.4 24 8.1 24 9.9 999.9 71.1 55.9 0.00G 999.9 000000 724050 13743 19790925 64.7 23 58.4 23 1024.4 23 1022.0 23 11.5 23 7.2 23 9.9 999.9 71.1 61.0 0.00D 999.9 000000 724050 13743 19790926 67.9 24 62.4 24 1023.0 24 1020.6 24 8.0 24 3.5 24 8.0 999.9 77.0* 59.9 0.00G 999.9 100000 724050 13743 19790927 68.3 24 62.1 24 1023.4 24 1020.9 24 5.0 24 4.9 24 8.0 999.9 77.0 60.1 0.00G 999.9 100000 724050 13743 19790928 68.8 22 64.6 22 1020.8 22 1018.3 22 7.0 22 3.8 22 5.8 999.9 77.0 62.1 0.00G 999.9 110000 724050 13743 19790929 73.8 24 70.6 24 1015.8 24 1013.4 24 4.6 24 4.9 24 9.9 999.9 81.0 64.9 0.02G 999.9 110000 724050 13743 19790930 72.7 20 71.2 20 1015.3 20 1012.9 20 3.6 20 5.4 20 11.8 999.9 81.0 70.0 0.08G 999.9 110000 724050 13743 19791001 69.5 23 67.2 23 1011.5 23 1009.1 23 6.6 23 9.0 23 15.0 999.9 75.0* 65.8 1.57G 999.9 110000 724050 13743 19791002 69.7 24 68.2 24 1008.0 24 1005.6 24 5.8 24 4.5 24 9.9 999.9 75.9* 65.8 0.20G 999.9 110010 724050 13743 19791003 70.0 24 61.9 24 1007.8 24 1005.5 24 10.6 24 9.3 24 15.0 21.0 77.0 63.0* 0.16G 999.9 110010 724050 13743 19791004 67.1 24 59.1 24 1013.7 24 1011.3 24 10.6 24 6.5 24 11.8 999.9 75.9 56.8 0.00G 999.9 100000 724050 13743 19791005 65.4 24 60.9 24 1006.9 24 1004.5 24 10.0 24 7.7 24 17.9 29.9 75.9 57.0 0.00G 999.9 110000 724050 13743 19791006 56.4 22 46.8 22 1010.1 22 1007.7 22 17.2 22 8.7 22 15.9 21.0 69.1 46.9 0.01G 999.9 000000 724050 13743 19791007 60.9 23 48.7 22 1005.9 23 1003.5 23 15.7 23 10.5 23 18.8 25.8 68.0 46.9 0.00G 999.9 010000 724050 13743 19791008 57.9 24 42.1 24 1013.8 24 1011.4 24 19.5 24 9.1 24 15.0 18.8 69.1* 47.8 0.00D 999.9 000000 724050 13743 19791009 61.7 24 56.5 24 1009.8 24 1007.3 24 11.2 23 11.0 24 18.8 24.9 71.1* 48.0 0.51G 999.9 010010 724050 13743 19791010 44.6 23 42.5 23 1015.1 23 1012.7 23 6.7 23 10.5 23 15.9 999.9 55.0* 36.0 0.79G 999.9 111000 724050 13743 19791011 46.9 23 42.7 23 1014.0 23 1011.6 23 9.4 23 6.7 23 9.9 999.9 55.9* 36.0 0.51G 999.9 110000 724050 13743 19791012 54.7 24 50.9 24 1008.3 24 1005.9 24 9.0 24 8.8 24 15.0 999.9 62.1 42.1 0.04G 999.9 110000 724050 13743 19791013 55.2 23 50.4 23 1010.5 23 1008.1 23 8.0 23 5.5 23 11.8 999.9 62.1 50.9 0.24G 999.9 110000 724050 13743 19791014 50.3 24 37.4 24 1020.8 24 1018.4 24 15.5 24 8.0 24 12.8 19.8 57.9 41.9 0.16G 999.9 000000 724050 13743 19791015 51.0 22 39.8 22 1024.3 22 1021.9 22 16.6 22 6.5 22 11.8 17.9 63.0* 38.8 0.00G 999.9 000000 724050 13743 19791016 56.4 22 49.2 22 1021.9 22 1019.5 22 11.0 22 3.4 22 7.0 999.9 66.9* 39.0 0.00C 999.9 100000 724050 13743 19791017 59.8 24 55.1 24 1023.5 24 1021.1 24 8.0 24 3.5 24 5.8 999.9 73.0* 50.0 0.00G 999.9 110000 724050 13743 19791018 64.1 23 57.8 23 1024.2 23 1021.8 23 6.1 23 3.1 23 5.8 999.9 75.0* 51.1 0.00D 999.9 100000 724050 13743 19791019 64.1 23 58.7 23 1024.2 23 1021.7 23 5.2 23 4.3 23 9.9 999.9 75.9* 54.0 0.00D 999.9 100000 724050 13743 19791020 66.0 24 61.6 24 1022.6 24 1020.2 24 6.9 24 7.4 24 9.9 999.9 77.0 55.0 0.00G 999.9 100000 724050 13743 19791021 70.5 24 66.0 24 1021.1 24 1018.6 24 9.1 24 7.1 24 8.9 999.9 81.0* 59.0 0.00G 999.9 100000 724050 13743 19791022 70.9 23 65.1 23 1019.2 23 1016.8 23 10.9 23 7.1 22 10.9 17.9 84.0* 61.9 0.00G 999.9 100000 724050 13743 19791023 70.0 24 64.5 24 1012.0 24 1009.6 24 10.3 24 9.9 24 15.9 16.9 84.0 62.1 0.00G 999.9 110000 724050 13743 19791024 51.9 21 39.3 21 1010.1 21 1007.7 21 16.3 21 11.3 21 15.0 25.8 57.9* 47.8 0.51G 999.9 010000 724050 13743 19791025 50.4 22 36.0 22 1014.2 22 1011.8 22 17.4 22 9.2 22 15.0 22.9 57.0* 43.0 0.00G 999.9 000000 724050 13743 19791026 47.8 22 33.5 22 1020.1 22 1017.7 22 17.6 22 8.9 22 14.0 16.9 57.0 41.0 0.00D 999.9 000000 724050 13743 19791027 45.2 23 30.7 23 1024.0 23 1021.6 23 17.3 23 6.7 23 9.9 999.9 54.0* 36.0 0.00G 999.9 000000 724050 13743 19791028 50.6 24 41.6 24 1014.5 24 1012.1 24 10.0 24 7.4 24 10.9 999.9 55.0 36.0 0.01D 999.9 110000 724050 13743 19791029 56.9 24 48.0 24 1015.5 24 1013.1 24 9.2 24 4.9 24 10.9 999.9 70.0* 43.9 0.00D 999.9 100000 724050 13743 19791030 54.4 24 44.5 24 1025.6 24 1023.2 24 9.7 24 6.2 24 9.9 999.9 70.0 44.1 0.00G 999.9 000000 724050 13743 19791031 52.9 24 45.0 24 1030.6 24 1028.2 24 7.0 24 5.2 24 8.0 999.9 63.0 45.0 0.00D 999.9 100000 724050 13743 19791101 56.6 24 50.1 24 1027.8 24 1025.4 24 8.5 24 4.9 24 11.8 999.9 70.0* 45.0 0.00D 999.9 100000 724050 13743 19791102 65.1 21 59.7 21 1019.8 21 1017.4 21 10.1 21 6.4 21 10.9 999.9 73.0 46.9 0.00H 999.9 110000 724050 13743 19791103 54.3 24 45.9 24 1015.5 24 1013.1 24 10.0 24 11.7 24 15.0 22.0 73.9 48.9 0.55G 999.9 110000 724050 13743 19791104 49.9 23 33.0 23 1025.3 23 1022.9 23 16.2 23 7.1 23 11.8 16.9 60.1 38.8 0.02G 999.9 000000 724050 13743 19791105 48.8 24 37.1 24 1032.1 24 1029.7 24 12.7 24 5.3 24 8.9 999.9 61.0 37.9 0.00G 999.9 000000 724050 13743 19791106 50.6 23 43.4 23 1026.1 23 1023.7 23 10.8 23 5.5 23 10.9 999.9 62.1* 37.9 0.00D 999.9 100000 724050 13743 19791107 53.5 24 41.9 24 1019.8 24 1017.4 24 13.3 24 9.3 24 17.9 28.0 63.0 39.9 0.00G 999.9 000000 724050 13743 19791108 47.2 24 38.0 24 1019.2 24 1016.8 24 10.1 24 7.2 24 11.8 17.9 59.0 37.9 0.00G 999.9 100000 724050 13743 19791109 55.9 24 47.5 24 1015.3 24 1012.9 24 8.5 24 5.4 24 15.0 18.8 66.0* 37.9 0.01G 999.9 110000 724050 13743 19791110 61.8 24 58.3 24 1010.2 24 1007.8 24 7.1 24 6.5 24 10.9 999.9 66.0 50.0 0.24G 999.9 110000 724050 13743 19791111 54.9 24 48.5 24 1020.2 24 1017.8 24 8.9 24 9.4 24 12.8 999.9 64.9 50.0* 0.08G 999.9 110000 724050 13743 19791112 49.6 24 43.3 24 1023.5 24 1021.1 24 7.0 24 10.1 24 12.8 16.9 57.9 46.9 0.51G 999.9 110000 724050 13743 19791113 51.2 24 47.6 24 1019.7 24 1017.2 24 5.7 24 7.8 24 10.9 999.9 53.1 46.9 0.08G 999.9 110000 724050 13743 19791114 48.6 23 36.7 23 1019.1 23 1016.7 23 13.2 23 12.4 23 15.9 26.8 52.0 43.9 0.12G 999.9 010000 724050 13743 19791115 45.3 24 28.6 24 1022.8 24 1020.4 24 17.2 24 9.0 24 14.0 21.0 53.1* 36.9 0.00G 999.9 000000 724050 13743 19791116 51.3 23 33.4 23 1018.1 23 1015.7 23 14.8 23 10.7 23 16.9 23.9 55.9* 37.0 0.00G 999.9 010000 724050 13743 19791117 48.9 24 33.3 24 1020.1 24 1017.7 24 16.1 24 6.5 24 9.9 999.9 66.9* 36.9 0.00G 999.9 000000 724050 13743 19791118 55.8 20 41.6 20 1017.9 20 1015.5 20 17.4 20 5.8 20 7.0 999.9 75.0* 37.0 0.00G 999.9 000000 724050 13743 19791119 55.9 23 42.8 23 1022.2 23 1019.8 23 10.9 23 3.3 23 5.8 999.9 75.0 43.0 0.00G 999.9 000000 724050 13743 19791120 56.2 24 46.3 24 1025.3 24 1022.9 24 6.3 24 3.2 24 8.0 999.9 72.0 43.0 0.00G 999.9 100000 724050 13743 19791121 57.0 24 46.4 24 1027.6 24 1025.1 24 7.5 24 2.8 24 4.9 999.9 71.1* 45.9 0.00G 999.9 100000 724050 13743 19791122 57.8 24 48.4 24 1024.8 24 1022.3 24 6.5 24 5.1 24 8.9 999.9 73.9* 45.9 0.00D 999.9 100000 724050 13743 19791123 61.5 24 54.3 24 1022.2 24 1019.8 24 12.2 24 5.6 24 11.8 999.9 75.0 46.0 0.00D 999.9 100000 724050 13743 19791124 65.3 24 58.7 24 1022.7 24 1020.3 24 11.6 24 9.9 24 12.8 999.9 75.0 53.1 0.00D 999.9 100000 724050 13743 19791125 66.3 22 60.1 22 1023.3 22 1020.9 22 11.6 22 6.5 22 9.9 999.9 73.9 59.9 0.00G 999.9 010000 724050 13743 19791126 67.8 22 62.1 22 1010.1 22 1007.7 22 12.0 22 12.0 22 22.0 26.8 73.9 59.0* 0.43G 999.9 110010 724050 13743 19791127 55.6 23 42.6 23 1019.8 23 1017.4 23 19.9 23 6.0 23 8.9 999.9 73.9 45.9 0.08G 999.9 000000 724050 13743 19791128 57.2 24 43.5 24 1013.9 24 1011.5 24 18.2 24 11.7 24 16.9 23.9 68.0 46.0 0.00G 999.9 000000 724050 13743 19791129 42.3 24 23.8 24 1014.4 24 1012.0 24 18.6 24 10.9 24 15.0 21.0 51.1* 36.0 0.00G 999.9 000000 724050 13743 19791130 35.1 23 17.6 23 1019.8 23 1017.4 23 19.9 23 8.5 23 12.8 16.9 45.0 27.9 0.00D 999.9 000000 724050 13743 19791201 38.6 24 22.4 24 1022.3 24 1019.9 24 17.4 24 6.5 24 8.9 999.9 48.0* 28.0 0.00G 999.9 000000 724050 13743 19791202 39.1 24 24.1 24 1023.6 24 1021.2 24 14.1 24 11.3 24 19.8 28.0 48.0 32.9 0.00G 999.9 000000 724050 13743 19791203 36.1 24 18.7 24 1034.5 24 1032.0 24 18.8 24 9.3 24 12.8 17.9 46.0* 28.9 0.00G 999.9 000000 724050 13743 19791204 40.7 24 20.9 24 1022.9 24 1020.5 24 16.8 24 7.0 24 9.9 999.9 55.0* 28.9 0.00G 999.9 000000 724050 13743 19791205 45.2 24 27.2 24 1016.7 24 1014.4 24 14.5 24 7.6 24 14.0 18.8 59.0* 32.0 0.00G 999.9 000000 724050 13743 19791206 50.1 23 33.5 23 1008.5 23 1006.1 23 12.5 23 9.6 23 15.0 999.9 60.1 33.1 0.00G 999.9 110000 724050 13743 19791207 51.2 24 38.6 24 1008.1 24 1005.7 24 12.6 24 8.3 24 11.8 999.9 57.0 43.0 0.04G 999.9 110000 724050 13743 19791208 48.5 24 29.2 24 1017.3 24 1014.9 24 16.8 24 13.0 24 19.8 35.9 55.9 43.0* 0.00G 999.9 000000 724050 13743 19791209 38.8 24 20.7 24 1031.7 24 1029.3 24 18.2 24 7.1 24 11.8 16.9 53.1 32.9 0.00G 999.9 000000 724050 13743 19791210 43.3 24 27.8 24 1025.4 24 1023.0 24 13.8 24 6.1 24 10.9 999.9 59.0* 33.1 0.00G 999.9 000000 724050 13743 19791211 49.4 24 35.8 24 1023.9 24 1021.4 24 13.5 24 6.8 24 9.9 999.9 68.0* 34.0 0.00G 999.9 000000 724050 13743 19791212 55.2 24 44.2 24 1022.0 24 1019.5 24 12.9 24 7.2 24 9.9 999.9 69.1* 39.9 0.00D 999.9 000000 724050 13743 19791213 52.6 24 50.1 24 1019.2 24 1016.8 24 9.0 24 6.9 24 14.0 999.9 69.1 44.1* 0.02G 999.9 110000 724050 13743 19791214 40.9 24 29.9 24 1025.5 24 1023.0 24 12.7 24 10.2 24 16.9 24.9 59.0 34.9 0.31G 999.9 000000 724050 13743 19791215 37.7 23 24.7 23 1032.3 23 1029.9 23 16.0 23 5.8 23 9.9 999.9 46.0 30.9 0.00G 999.9 000000 724050 13743 19791216 43.4 24 37.3 24 1023.6 24 1021.2 24 10.8 24 3.5 24 5.8 999.9 50.0* 30.9 0.00G 999.9 110000 724050 13743 19791217 36.7 24 20.3 24 1020.9 24 1018.5 24 18.6 24 15.9 24 25.1 35.9 52.0 25.9 0.00G 999.9 010000 724050 13743 19791218 27.4 24 8.8 24 1028.0 24 1025.6 24 19.1 24 7.5 24 12.8 999.9 33.1* 20.8 0.00G 999.9 000000 724050 13743 19791219 34.0 24 18.0 24 1023.0 24 1020.6 24 14.6 24 6.7 24 11.8 999.9 39.0* 21.0 0.00G 999.9 011000 724050 13743 19791220 34.3 21 29.9 21 1029.9 21 1027.4 21 7.5 21 10.8 21 12.0 999.9 39.9 30.9 0.00D 999.9 101000 724050 13743 19791221 35.4 24 28.9 24 1034.7 24 1032.3 24 8.5 24 7.4 24 9.9 999.9 45.0 29.8 0.00G 999.9 000000 724050 13743 19791222 40.3 23 34.1 23 1027.7 23 1025.2 23 6.8 23 3.9 23 5.8 999.9 46.9* 30.0 0.00C 999.9 100000 724050 13743 19791223 46.4 23 41.8 23 1022.0 23 1019.6 23 8.2 23 4.2 23 8.9 999.9 54.0* 36.0 0.00G 999.9 000000 724050 13743 19791224 49.7 24 49.1 23 1015.8 24 1013.4 24 4.7 24 4.3 24 9.9 999.9 55.9* 42.1 0.08G 999.9 110000 724050 13743 19791225 56.0 23 49.9 23 998.8 23 996.5 23 16.1 23 10.5 23 16.9 23.9 63.0 45.0 0.39G 999.9 110000 724050 13743 19791226 46.4 23 33.9 23 1008.1 23 1005.7 23 14.9 23 14.2 23 21.0 29.9 62.1 43.0* 0.00D 999.9 000000 724050 13743 19791227 41.3 24 29.0 24 1018.9 24 1016.5 24 14.7 24 9.7 24 15.9 25.8 48.9 34.0 0.00D 999.9 000000 724050 13743 19791228 41.1 24 26.7 24 1024.9 24 1022.5 24 14.9 24 13.4 24 16.9 26.8 50.0* 34.0 0.00G 999.9 000000 724050 13743 19791229 46.1 24 26.9 24 1022.6 24 1020.1 24 18.0 24 9.4 24 14.0 18.8 60.1* 35.1 0.00D 999.9 000000 724050 13743 19791230 45.8 24 26.2 24 1014.2 24 1011.8 24 22.6 24 5.5 24 10.9 999.9 60.1 30.9 0.00D 999.9 000000 724050 13743 19791231 41.6 24 28.7 24 1013.9 24 1011.5 24 17.4 24 3.6 24 8.0 999.9 61.0 30.9 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/1988/0000755000175000017500000000000014302004506015111 5ustar nileshnileshfluids-1.0.22/tests/gsod/1988/724050-13743.op0000644000175000017500000014350514302004506016701 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19880101 48.6 23 29.8 23 1022.9 23 1020.5 23 11.6 23 9.7 23 14.0 999.9 55.0 45.0* 0.00G 999.9 010000 724050 13743 19880102 33.9 23 10.5 23 1032.7 23 1030.2 23 14.1 23 10.6 23 15.9 17.1 55.0 28.0 0.00G 999.9 000000 724050 13743 19880103 27.6 23 15.9 23 1034.0 23 1031.5 23 9.6 22 5.1 23 8.9 999.9 36.0 23.0 0.00G 999.9 101000 724050 13743 19880104 30.9 23 26.7 23 1019.6 23 1017.1 23 5.9 23 7.8 23 12.0 999.9 39.0* 23.0 0.04G 2.4 111000 724050 13743 19880105 23.1 24 1.7 24 1026.1 24 1023.7 24 16.9 24 12.6 24 21.0 29.9 39.0 17.1 0.10G 1.6 000000 724050 13743 19880106 15.3 23 -4.0 23 1033.3 23 1030.8 23 14.8 23 11.6 23 14.0 22.9 27.0 10.9 0.00G 0.8 000000 724050 13743 19880107 16.1 23 1.4 23 1038.8 23 1036.4 23 13.4 23 7.8 23 12.0 999.9 21.2* 10.0 0.00G 0.8 000000 724050 13743 19880108 21.4 23 18.5 23 1025.7 23 1023.3 23 3.2 23 10.7 23 15.9 999.9 28.2* 10.0 0.57G 8.7 101000 724050 13743 19880109 26.4 23 16.7 23 1023.1 23 1020.7 23 9.3 23 6.9 23 11.1 999.9 30.2* 18.0 0.08G 7.5 000000 724050 13743 19880110 23.0 24 13.7 24 1029.7 24 1027.3 24 7.2 24 6.3 24 11.1 999.9 32.0* 15.1 0.00G 6.7 100000 724050 13743 19880111 21.6 23 14.1 23 1031.8 23 1029.3 23 5.4 23 3.7 23 5.1 999.9 32.0 10.0 0.00G 5.9 100000 724050 13743 19880112 24.9 24 18.7 24 1027.8 24 1025.4 24 5.8 24 5.0 24 12.0 999.9 34.0* 10.0 0.00G 5.1 100000 724050 13743 19880113 35.4 24 22.1 24 1017.6 24 1015.2 24 9.5 23 11.2 24 25.1 35.9 44.1* 16.0 0.00G 4.7 010000 724050 13743 19880114 22.0 24 4.1 24 1032.5 24 1030.0 24 14.3 24 14.0 24 20.0 28.0 45.0 16.0 0.00G 3.5 000000 724050 13743 19880115 19.1 21 1.7 21 1034.7 21 1032.3 21 12.5 21 5.3 21 8.0 999.9 26.2* 14.0 0.00C 3.5 000000 724050 13743 19880116 24.7 24 14.3 24 1030.5 24 1028.1 24 9.8 24 5.4 24 8.9 999.9 37.9* 14.0 0.00G 3.5 000000 724050 13743 19880117 34.6 24 20.9 24 1027.3 24 1024.9 24 12.1 24 7.2 24 12.0 999.9 45.0* 15.1 0.00G 2.8 000000 724050 13743 19880118 40.4 21 36.3 21 1018.0 21 1015.6 21 4.4 21 6.2 21 9.9 999.9 50.0* 28.9 0.29G 1.2 110000 724050 13743 19880119 41.0 24 32.8 24 1023.4 24 1021.0 24 12.0 24 6.2 24 11.1 999.9 51.1 34.0 0.19G 999.9 110000 724050 13743 19880120 38.5 23 37.6 23 1014.7 23 1012.3 23 4.2 23 6.5 23 11.1 999.9 46.0 34.0 1.27G 999.9 110000 724050 13743 19880121 42.7 22 39.8 22 1008.8 22 1006.4 22 4.0 22 6.6 22 13.0 999.9 52.0 36.0 0.01G 999.9 110000 724050 13743 19880122 38.2 22 24.5 22 1015.3 22 1012.9 22 12.9 22 10.0 22 15.0 999.9 52.0 35.1 0.00G 999.9 000000 724050 13743 19880123 36.4 24 23.6 24 1015.8 24 1013.4 24 12.1 24 7.3 24 15.0 999.9 43.0 30.9 0.00G 999.9 000000 724050 13743 19880124 38.3 24 25.7 24 1017.6 24 1015.2 24 11.6 24 7.1 24 17.1 22.9 51.1* 27.0 0.00G 999.9 000000 724050 13743 19880125 38.0 22 32.2 22 1012.9 22 1010.6 22 8.8 22 8.0 22 14.0 999.9 51.1 27.0 0.09G 999.9 111000 724050 13743 19880126 28.6 23 19.9 23 1008.9 23 1006.5 23 12.7 23 12.3 23 17.1 26.0 43.0 19.9 0.51G 1.2 111000 724050 13743 19880127 23.2 22 9.3 22 1028.2 22 1025.8 22 13.0 22 7.9 22 14.0 21.0 35.1 16.0 0.00G 1.2 000000 724050 13743 19880128 25.4 22 11.9 22 1034.6 22 1032.2 22 11.7 22 7.2 22 13.0 999.9 34.0* 16.0 0.00G 0.4 000000 724050 13743 19880129 28.9 19 17.9 19 1037.6 19 1035.2 19 11.3 19 7.4 19 11.1 999.9 35.1* 18.0 0.00D 0.4 000000 724050 13743 19880130 35.9 24 28.5 24 1031.0 24 1028.6 24 10.2 24 6.5 24 11.1 999.9 52.0* 21.9 0.00G 999.9 000000 724050 13743 19880131 48.5 24 39.5 24 1028.1 24 1025.6 24 13.5 24 9.3 24 15.0 999.9 64.0* 28.0 0.00G 999.9 000000 724050 13743 19880201 54.6 24 48.5 24 1025.2 24 1022.8 24 13.8 24 11.1 24 15.9 22.0 69.1* 37.9 0.00G 999.9 010000 724050 13743 19880202 59.4 24 54.5 24 1019.1 24 1016.7 24 11.1 24 12.9 24 22.0 28.0 70.0 46.9 0.02G 999.9 110000 724050 13743 19880203 38.8 23 35.4 23 1027.6 23 1025.2 23 8.2 23 10.4 23 18.1 24.1 46.9* 35.1 0.68G 999.9 111000 724050 13743 19880204 39.3 21 36.7 21 1017.3 21 1014.9 21 6.5 21 12.1 21 22.0 36.9 44.1* 35.1 0.20G 999.9 110000 724050 13743 19880205 31.2 24 14.4 24 1023.3 24 1020.9 24 13.7 24 9.8 24 18.1 22.9 46.0 25.0 0.20G 999.9 000000 724050 13743 19880206 20.6 24 -1.7 24 1029.4 24 1027.0 24 14.0 24 12.1 24 17.1 27.0 39.0 12.0 0.00G 999.9 000000 724050 13743 19880207 18.8 23 -1.0 23 1035.2 23 1032.8 23 14.9 23 11.0 23 18.1 26.0 29.1* 10.9 0.00G 999.9 000000 724050 13743 19880208 33.5 23 12.8 23 1027.7 23 1025.4 23 14.9 23 9.7 23 17.1 999.9 44.1 26.2* 0.00G 999.9 000000 724050 13743 19880209 33.8 24 23.6 24 1027.3 24 1024.9 24 9.8 24 5.8 24 11.1 999.9 44.1 26.1 0.00G 999.9 000000 724050 13743 19880210 36.5 22 26.4 22 1026.0 22 1023.6 22 8.2 22 4.4 22 9.9 999.9 46.9 26.1 0.00G 999.9 100000 724050 13743 19880211 34.8 22 26.2 22 1029.7 22 1027.5 22 9.0 22 7.3 22 14.0 999.9 48.0 27.0 0.00G 999.9 111000 724050 13743 19880212 35.8 21 34.3 21 1010.4 21 1008.0 21 4.1 21 11.2 21 20.0 29.9 43.0 28.0 0.84G 999.9 111000 724050 13743 19880213 24.9 24 4.7 24 1009.6 24 1007.2 24 14.2 24 18.1 24 25.1 40.0 39.0 19.9 0.01G 999.9 001000 724050 13743 19880214 27.9 24 3.2 24 1021.6 24 1019.2 24 13.8 21 8.6 24 17.1 24.1 39.9* 19.9 0.00G 999.9 000000 724050 13743 19880215 40.2 23 30.8 23 1012.9 23 1010.5 23 12.4 23 9.6 23 15.9 20.0 52.0 19.9 0.00G 999.9 110000 724050 13743 19880216 43.3 23 34.2 23 1007.4 23 1005.1 23 10.8 23 14.1 23 22.0 35.9 52.0 34.0 0.34G 999.9 110000 724050 13743 19880217 39.5 22 26.1 22 1021.5 22 1019.1 22 9.9 22 4.9 22 9.9 999.9 55.9* 28.9 0.01G 999.9 100000 724050 13743 19880218 43.0 24 32.4 24 1020.5 24 1018.1 24 9.2 24 5.5 24 8.0 999.9 55.9 28.9 0.00G 999.9 100000 724050 13743 19880219 41.8 23 33.2 23 1018.3 23 1015.9 23 7.4 23 6.7 23 11.1 999.9 54.0 33.1 0.00G 999.9 110000 724050 13743 19880220 45.1 22 42.5 22 1000.6 22 998.2 22 6.4 22 7.8 22 13.0 999.9 52.0* 39.0 0.37G 999.9 110000 724050 13743 19880221 36.9 24 15.6 24 1010.2 24 1007.8 24 16.9 24 12.1 24 21.0 28.0 53.1 28.9 0.00G 999.9 000000 724050 13743 19880222 34.1 24 11.9 24 1020.4 24 1018.0 24 19.7 24 11.3 24 20.0 31.1 53.1* 21.0 0.00G 999.9 000000 724050 13743 19880223 49.2 24 31.0 24 1011.7 24 1009.3 24 18.1 24 15.1 24 20.0 27.0 66.0 41.0* 0.00G 999.9 010000 724050 13743 19880224 39.0 19 23.6 19 1016.8 19 1014.4 19 16.2 19 10.4 19 18.1 21.0 43.0* 33.1 0.05G 999.9 010000 724050 13743 19880225 32.3 24 14.0 24 1020.0 24 1017.6 24 13.9 24 8.8 24 15.0 18.1 42.1 25.0 0.00G 999.9 000000 724050 13743 19880226 31.9 24 14.8 24 1022.0 24 1019.6 24 12.0 24 7.7 24 11.1 999.9 39.9* 25.0 0.00G 999.9 000000 724050 13743 19880227 36.4 24 23.2 24 1010.6 24 1008.2 24 10.5 24 6.7 24 14.0 999.9 44.1 24.1 0.00D 999.9 010000 724050 13743 19880228 35.7 23 28.8 23 1017.5 23 1015.1 23 6.3 23 11.0 23 17.1 999.9 46.0 32.0 0.03G 999.9 111000 724050 13743 19880229 38.2 22 26.9 22 1017.1 22 1014.7 22 7.5 22 8.7 22 15.0 20.0 52.0* 28.0 0.01G 999.9 100000 724050 13743 19880301 41.2 24 23.4 24 1022.0 24 1019.5 24 14.7 24 8.2 24 15.0 18.1 53.1 28.0 0.00G 999.9 000000 724050 13743 19880302 43.6 24 25.9 24 1022.1 24 1019.7 24 10.7 24 7.4 24 15.9 999.9 61.0* 30.0 0.00G 999.9 000000 724050 13743 19880303 52.2 23 35.2 23 1017.4 23 1015.0 23 9.1 23 6.3 23 11.1 999.9 62.1 48.0* 0.00G 999.9 010000 724050 13743 19880304 46.9 24 45.8 24 1011.0 24 1008.4 23 3.4 24 6.8 24 20.0 24.1 61.0 43.0* 0.08G 999.9 110000 724050 13743 19880305 38.2 24 25.0 24 1023.8 24 1021.3 24 13.4 24 8.9 24 19.0 25.1 52.0 30.0 0.66G 999.9 010000 724050 13743 19880306 40.6 24 26.1 24 1024.1 24 1021.6 24 11.6 24 5.0 24 11.1 999.9 54.0* 30.0 0.00G 999.9 000000 724050 13743 19880307 46.9 24 32.9 24 1019.1 24 1016.7 24 12.2 24 8.1 24 15.0 20.0 62.1* 30.0 0.00G 999.9 000000 724050 13743 19880308 48.3 24 34.1 24 1026.7 24 1024.2 24 8.8 24 6.8 24 11.1 999.9 63.0 34.0 0.00G 999.9 100000 724050 13743 19880309 49.1 22 41.8 22 1015.6 22 1013.2 22 8.2 22 9.4 22 15.9 22.0 64.9 37.0 0.00G 999.9 110000 724050 13743 19880310 51.8 23 40.0 23 1003.5 23 1001.2 23 11.0 23 13.6 23 22.0 29.9 66.0 39.0 0.04G 999.9 110000 724050 13743 19880311 44.6 22 19.4 22 1016.4 22 1014.0 22 19.7 22 8.5 22 15.9 999.9 57.9* 34.0 0.02G 999.9 000000 724050 13743 19880312 52.3 24 33.3 24 1015.1 24 1012.7 24 15.7 24 12.2 24 18.1 24.1 68.0* 34.0 0.00G 999.9 000000 724050 13743 19880313 57.2 23 45.4 23 1004.6 23 1002.2 23 11.1 23 9.5 23 15.9 20.0 68.0 42.1 0.10G 999.9 110000 724050 13743 19880314 38.9 23 20.4 23 1005.9 23 1003.6 23 19.7 22 12.4 23 18.1 25.1 63.0 34.0 0.00D 999.9 000000 724050 13743 19880315 32.1 24 13.2 24 1007.6 24 1005.2 24 17.7 24 13.0 24 17.1 24.1 41.0 28.0 0.00G 999.9 011000 724050 13743 19880316 35.4 24 15.9 24 1014.5 24 1012.1 24 16.2 24 14.1 24 18.1 27.0 46.0* 27.0 0.00D 999.9 000000 724050 13743 19880317 39.4 24 20.7 24 1021.1 24 1018.7 24 14.8 24 11.9 24 18.1 24.1 48.0* 27.0 0.00G 999.9 000000 724050 13743 19880318 38.9 24 22.3 24 1020.3 24 1017.9 24 11.6 24 7.4 24 9.9 999.9 48.9 30.9 0.00G 999.9 000000 724050 13743 19880319 44.0 23 26.0 23 1009.4 23 1007.0 23 10.5 23 11.1 23 17.1 24.1 48.9 32.0 0.00G 999.9 110000 724050 13743 19880320 41.4 24 20.1 24 1009.7 24 1007.4 24 14.1 24 13.3 24 21.0 34.0 50.0 36.0 0.01G 999.9 011000 724050 13743 19880321 34.9 23 14.8 23 1022.6 23 1020.2 23 15.4 23 10.8 23 15.9 17.1 48.0 26.1 0.04G 0.4 101000 724050 13743 19880322 35.9 24 11.8 24 1031.6 24 1029.2 24 14.7 24 6.1 24 11.1 999.9 48.0* 25.0 0.01G 999.9 000000 724050 13743 19880323 43.6 24 28.8 24 1031.9 24 1029.5 24 13.1 24 8.9 24 15.9 999.9 59.0* 25.0 0.00G 999.9 000000 724050 13743 19880324 60.9 24 50.0 24 1024.3 24 1021.9 24 10.0 24 12.4 24 15.9 21.0 77.0* 51.1* 0.00G 999.9 000000 724050 13743 19880325 64.3 23 52.2 23 1021.5 23 1019.1 23 11.0 23 13.2 23 19.0 28.0 77.0 52.0 0.00G 999.9 000000 724050 13743 19880326 58.3 24 53.7 24 1015.9 24 1013.5 24 10.4 24 11.9 24 18.1 24.1 77.0 51.1 0.80G 999.9 110110 724050 13743 19880327 50.4 23 39.2 23 1013.1 23 1010.7 23 10.7 23 10.5 23 19.0 27.0 64.0 45.0 0.54G 999.9 110010 724050 13743 19880328 47.5 23 26.9 23 1025.4 23 1023.0 23 14.3 23 9.4 23 15.9 18.1 60.1* 37.9 0.00G 999.9 000000 724050 13743 19880329 55.4 23 39.3 23 1026.2 23 1023.8 23 11.5 23 6.6 23 12.0 999.9 72.0* 37.9 0.00G 999.9 000000 724050 13743 19880330 60.4 22 48.4 22 1022.2 22 1019.7 22 10.3 22 6.5 22 8.9 999.9 75.0* 42.1 0.00G 999.9 000000 724050 13743 19880331 59.8 24 48.7 24 1024.9 24 1022.4 24 9.8 24 8.2 24 12.0 999.9 75.9 46.9 0.00G 999.9 100000 724050 13743 19880401 57.8 23 49.5 23 1024.2 23 1021.7 23 7.7 23 5.5 23 8.0 999.9 69.1 51.1 0.00D 999.9 100000 724050 13743 19880402 58.1 24 52.3 24 1023.3 24 1020.9 24 6.3 24 7.7 24 11.1 999.9 70.0* 51.1 0.00G 999.9 100000 724050 13743 19880403 60.2 24 54.3 24 1020.4 24 1018.0 24 6.5 24 8.2 24 17.1 22.9 75.0* 51.1 0.00G 999.9 100000 724050 13743 19880404 67.8 22 58.4 22 1011.2 22 1008.8 22 11.6 22 10.9 22 14.0 999.9 75.0 53.1 0.02G 999.9 110000 724050 13743 19880405 66.1 24 48.6 24 1012.3 24 1009.9 24 15.9 24 7.2 24 14.0 19.0 77.0* 51.1 0.00D 999.9 000000 724050 13743 19880406 63.1 23 53.6 23 1008.4 23 1006.0 23 9.9 23 9.4 23 19.0 26.0 79.0 51.1 0.00G 999.9 010000 724050 13743 19880407 49.4 22 48.4 22 997.8 22 995.4 22 5.5 22 14.8 22 20.0 26.0 54.0* 46.9 0.95G 999.9 110000 724050 13743 19880408 49.1 24 45.7 24 1005.6 24 1003.2 24 6.9 24 13.4 24 18.1 21.0 53.1* 46.0 0.18G 999.9 110000 724050 13743 19880409 50.4 23 37.9 23 1012.5 23 1010.1 23 16.0 23 15.3 23 17.1 25.1 60.1* 42.1 0.01G 999.9 010000 724050 13743 19880410 52.8 24 34.1 24 1014.0 24 1011.6 24 15.7 24 11.5 24 17.1 20.0 64.0* 41.0 0.00D 999.9 000000 724050 13743 19880411 53.3 24 35.2 24 1012.4 24 1010.0 24 19.7 24 6.2 24 12.0 999.9 64.9* 39.9 0.00G 999.9 000000 724050 13743 19880412 47.4 23 39.4 23 1015.0 23 1012.6 23 12.0 23 11.1 23 19.0 21.0 64.9 39.9 0.00G 999.9 000000 724050 13743 19880413 45.8 24 34.2 24 1014.4 24 1012.1 24 12.1 24 13.3 24 17.1 24.1 55.0* 37.9 0.00G 999.9 000000 724050 13743 19880414 45.9 24 35.3 24 1016.4 24 1014.0 24 11.4 24 8.1 24 15.0 999.9 57.9* 37.0 0.00G 999.9 000000 724050 13743 19880415 51.2 24 43.0 24 1011.7 24 1009.6 24 9.7 24 9.4 24 27.0 38.1 64.0* 37.0 0.01G 999.9 110010 724050 13743 19880416 45.0 24 27.6 24 1014.9 24 1012.5 24 13.2 24 16.2 24 26.0 35.9 66.9 37.9 0.00D 999.9 001000 724050 13743 19880417 51.5 24 30.4 24 1014.5 24 1012.1 24 13.2 24 10.5 24 17.1 24.1 69.1* 37.9 0.00G 999.9 000000 724050 13743 19880418 59.2 22 42.1 22 1000.8 22 998.4 22 11.9 22 14.1 22 19.0 27.0 69.1 54.0* 0.00G 999.9 110000 724050 13743 19880419 45.9 23 34.9 23 1005.5 23 1003.2 23 11.5 23 11.4 23 15.0 999.9 63.0 41.0 0.05G 999.9 010000 724050 13743 19880420 48.2 22 24.9 22 1010.5 22 1008.1 22 15.9 22 10.4 22 15.9 21.0 62.1* 35.1 0.00G 999.9 000000 724050 13743 19880421 54.8 21 34.4 21 1003.3 21 1001.0 21 12.1 21 12.7 21 21.0 31.1 63.0 35.1 0.00G 999.9 000000 724050 13743 19880422 53.6 23 26.0 23 1010.4 23 1008.0 23 12.8 23 11.9 23 19.0 24.1 63.0 46.0 0.00G 999.9 000000 724050 13743 19880423 55.6 24 41.5 24 1012.2 24 1009.8 24 10.9 24 9.4 24 17.1 999.9 64.0 46.0 0.00G 999.9 000000 724050 13743 19880424 55.9 22 45.0 22 1004.6 22 1002.2 22 10.6 22 12.9 22 22.9 33.0 64.9 48.0 0.04G 999.9 110000 724050 13743 19880425 54.2 24 31.8 24 1012.9 24 1010.5 24 14.9 24 11.9 24 20.0 26.0 64.0* 46.0 0.00G 999.9 000000 724050 13743 19880426 57.4 24 39.5 24 1012.6 24 1010.2 24 11.4 24 7.8 24 14.0 999.9 69.1 44.1 0.00G 999.9 000000 724050 13743 19880427 59.4 23 47.3 23 1009.3 23 1006.9 23 10.1 23 12.0 23 27.0 42.0 75.0 44.1 0.00G 999.9 010010 724050 13743 19880428 54.2 24 41.5 24 1007.3 24 1004.9 24 12.8 24 11.4 24 25.1 39.0 75.0 46.0 0.68G 999.9 011010 724050 13743 19880429 49.9 23 35.0 23 1008.7 22 1006.3 22 14.4 23 11.7 23 19.0 25.1 59.0 42.1* 0.03G 999.9 010000 724050 13743 19880430 55.2 24 37.4 24 1012.4 24 1009.9 23 15.6 24 13.8 24 21.0 29.9 63.0* 44.1 0.01G 999.9 010000 724050 13743 19880501 57.1 23 39.0 23 1017.5 23 1015.1 23 13.0 22 7.5 23 13.0 19.0 69.1* 45.0 0.00D 999.9 000000 724050 13743 19880502 57.9 23 41.8 23 1017.2 23 1014.8 23 12.9 23 8.1 23 9.9 999.9 70.0 45.0 0.00G 999.9 000000 724050 13743 19880503 54.5 23 45.8 23 1019.8 23 1017.4 23 10.2 23 7.8 23 11.1 999.9 62.1 48.0 0.00D 999.9 110000 724050 13743 19880504 54.9 22 49.2 22 1017.9 22 1015.5 22 8.2 22 7.4 22 9.9 999.9 62.1 48.0 0.02G 999.9 110000 724050 13743 19880505 58.3 24 57.1 24 1013.1 24 1010.7 24 4.4 24 7.9 24 13.0 999.9 61.0 52.0 0.37G 999.9 110010 724050 13743 19880506 57.6 22 56.4 22 1006.7 22 1004.3 22 4.7 22 14.8 22 18.1 24.1 61.0 55.9 0.73G 999.9 110000 724050 13743 19880507 65.3 24 50.6 24 1011.9 24 1009.5 24 11.6 24 11.4 24 20.0 25.1 80.1* 54.0 0.03G 999.9 010000 724050 13743 19880508 61.8 24 48.0 24 1020.8 24 1018.4 24 12.5 24 7.1 24 15.0 999.9 80.1 50.0 0.00G 999.9 000000 724050 13743 19880509 59.1 24 45.8 24 1019.7 24 1017.3 24 14.3 24 9.8 24 14.0 999.9 73.0* 48.9 0.00G 999.9 010000 724050 13743 19880510 65.8 22 58.7 22 1012.2 22 1009.9 22 9.4 22 8.9 22 13.0 999.9 78.1* 48.9 0.06G 999.9 110010 724050 13743 19880511 63.9 23 56.3 23 1013.4 23 1011.0 23 8.4 23 7.6 23 25.1 33.0 79.0 55.0 0.10G 999.9 110010 724050 13743 19880512 63.7 23 49.4 23 1021.9 23 1019.5 23 11.6 22 6.2 23 8.9 999.9 75.9 54.0 0.04G 999.9 000000 724050 13743 19880513 67.4 24 57.1 24 1020.4 24 1018.0 24 10.1 24 11.0 24 18.1 27.0 81.0* 54.0 0.00G 999.9 100000 724050 13743 19880514 69.1 23 58.6 23 1017.1 23 1014.7 23 9.5 23 8.5 23 15.0 999.9 82.0 57.0 0.00G 999.9 100000 724050 13743 19880515 67.2 24 57.0 24 1017.3 24 1014.9 24 10.6 24 7.5 24 13.0 999.9 77.0 60.1 0.00G 999.9 000000 724050 13743 19880516 67.8 23 61.3 23 1010.2 23 1007.8 23 5.9 23 8.6 23 20.0 31.1 81.0* 60.1 0.00G 999.9 110110 724050 13743 19880517 70.7 23 62.9 22 1008.6 23 1006.2 23 7.5 23 7.9 23 20.0 28.0 82.0 60.1 1.33G 999.9 110010 724050 13743 19880518 65.2 24 61.2 24 1009.7 24 1007.3 24 6.4 24 10.5 24 15.0 25.1 80.1 60.1 1.05G 999.9 110010 724050 13743 19880519 66.5 22 62.7 22 1010.9 22 1008.5 22 7.8 21 8.0 22 15.9 22.9 73.9 61.0 0.12G 999.9 110010 724050 13743 19880520 63.8 24 61.2 24 1014.5 24 1012.1 24 4.7 24 8.5 24 12.0 999.9 73.9 61.0 0.04G 999.9 110000 724050 13743 19880521 66.6 24 61.3 24 1015.8 24 1013.4 24 5.3 24 6.4 23 9.9 999.9 75.9* 60.1 0.02G 999.9 100000 724050 13743 19880522 69.0 24 63.0 24 1015.6 24 1013.2 24 7.4 24 6.5 24 9.9 999.9 79.0 60.1 0.00G 999.9 100000 724050 13743 19880523 72.5 24 66.3 24 1012.4 24 1010.0 24 6.3 24 8.7 24 19.0 33.0 84.0 60.1 0.00G 999.9 110010 724050 13743 19880524 71.2 22 63.3 22 1008.7 22 1006.3 22 12.7 21 9.4 22 19.0 28.9 84.9 63.0 0.01G 999.9 010010 724050 13743 19880525 62.5 23 54.5 23 1008.5 23 1006.1 23 9.5 23 12.1 23 22.0 28.0 84.0 53.1 0.52G 999.9 110010 724050 13743 19880526 56.9 23 38.7 23 1019.9 23 1017.4 23 13.6 23 10.9 23 20.0 26.0 69.1* 46.9 0.09G 999.9 000000 724050 13743 19880527 62.8 24 48.6 24 1022.7 24 1020.2 24 13.0 24 7.3 24 9.9 999.9 75.0* 46.9 0.00G 999.9 000000 724050 13743 19880528 67.4 23 53.0 23 1019.5 23 1017.0 23 13.2 23 5.5 23 9.9 999.9 80.1 50.0 0.00G 999.9 000000 724050 13743 19880529 72.2 24 58.0 24 1016.1 24 1013.7 24 11.9 24 7.0 24 13.0 999.9 88.0* 55.9 0.00G 999.9 000000 724050 13743 19880530 76.7 24 60.6 24 1017.2 24 1014.8 24 8.5 24 6.7 24 12.0 999.9 91.0* 59.0 0.00G 999.9 100000 724050 13743 19880531 81.0 22 62.9 22 1016.0 22 1013.6 22 6.9 22 8.5 22 14.0 20.0 91.0 63.0 0.00G 999.9 100000 724050 13743 19880601 83.1 22 57.6 22 1011.0 22 1008.7 22 8.1 22 9.8 22 18.1 25.1 91.9 66.0 0.00G 999.9 000000 724050 13743 19880602 66.7 22 55.7 22 1009.7 22 1007.3 22 10.4 22 11.5 22 25.1 38.1 93.0 57.0 0.07G 999.9 110000 724050 13743 19880603 57.6 22 48.4 22 1012.5 22 1010.1 22 13.3 22 11.0 22 14.0 999.9 75.9 54.0 0.00D 999.9 010000 724050 13743 19880604 58.7 24 45.7 24 1014.9 24 1012.5 24 14.8 24 9.1 24 15.0 999.9 68.0 50.0 0.00D 999.9 000000 724050 13743 19880605 65.8 24 46.5 24 1015.6 24 1013.2 24 14.9 24 9.8 24 19.0 25.1 82.9* 50.0 0.00G 999.9 000000 724050 13743 19880606 78.6 24 51.8 24 1009.8 24 1007.4 24 13.2 23 12.1 24 20.0 26.0 89.1* 69.1* 0.00G 999.9 000000 724050 13743 19880607 84.2 24 61.8 24 1006.2 24 1003.8 24 12.1 24 11.5 24 18.1 27.0 93.9* 68.0 0.00G 999.9 000000 724050 13743 19880608 75.0 23 58.3 23 1006.0 23 1003.6 23 11.3 23 7.9 23 12.0 999.9 95.0 66.0 0.00G 999.9 000000 724050 13743 19880609 60.8 23 54.5 23 1007.6 23 1005.3 23 10.4 23 11.1 23 17.1 22.9 81.0 54.0 0.70G 999.9 110010 724050 13743 19880610 59.3 23 44.9 23 1016.6 23 1014.2 23 12.7 23 10.3 23 15.0 21.0 69.1* 50.0 0.17G 999.9 000000 724050 13743 19880611 64.2 24 44.7 24 1019.8 24 1017.4 24 15.6 24 9.8 24 13.0 21.0 75.0* 50.0 0.00G 999.9 000000 724050 13743 19880612 71.8 24 50.2 24 1019.7 24 1017.3 24 13.2 24 7.8 24 13.0 999.9 84.9* 52.0 0.00G 999.9 000000 724050 13743 19880613 78.3 21 57.9 21 1021.9 21 1019.5 21 11.2 21 7.9 21 11.1 999.9 90.0 59.0 0.00G 999.9 000000 724050 13743 19880614 80.3 23 64.3 23 1024.4 23 1022.0 23 7.3 23 6.4 23 11.1 999.9 93.9* 62.1 0.00G 999.9 100000 724050 13743 19880615 80.4 24 67.7 24 1022.8 24 1020.4 24 5.9 24 7.7 24 13.0 999.9 93.9 66.9 0.00G 999.9 100000 724050 13743 19880616 80.6 23 71.1 23 1017.2 23 1014.9 23 4.9 23 8.4 23 12.0 999.9 91.9 68.0 0.00G 999.9 100000 724050 13743 19880617 76.9 24 68.3 24 1014.4 24 1012.0 24 4.9 24 8.4 24 12.0 999.9 91.0 71.1 0.01G 999.9 110010 724050 13743 19880618 77.0 22 66.8 22 1018.0 22 1015.6 22 6.3 22 6.0 22 11.1 999.9 87.1 68.0 0.00D 999.9 100000 724050 13743 19880619 77.3 24 70.1 24 1021.6 24 1019.2 24 3.6 24 7.4 24 9.9 999.9 88.0 68.0 0.00G 999.9 100000 724050 13743 19880620 79.8 24 70.0 24 1019.4 24 1017.0 24 5.6 24 9.4 24 14.0 21.0 91.0 70.0 0.00G 999.9 000000 724050 13743 19880621 85.2 23 69.9 23 1014.5 23 1012.1 23 4.9 23 8.6 23 12.0 15.9 98.1* 70.0 0.00G 999.9 100000 724050 13743 19880622 88.2 24 72.7 24 1012.3 24 1009.9 24 5.0 24 7.4 24 13.0 999.9 100.0* 72.0 0.00G 999.9 000000 724050 13743 19880623 86.9 24 70.5 24 1010.3 24 1007.9 24 5.9 24 9.5 24 19.0 25.1 100.9 75.9 0.00D 999.9 100000 724050 13743 19880624 75.8 24 53.9 24 1019.9 24 1017.4 24 14.6 24 11.0 24 15.9 999.9 98.1 66.9 0.00G 999.9 000000 724050 13743 19880625 72.6 24 59.4 24 1019.7 24 1017.3 24 13.7 24 11.2 24 17.1 999.9 81.0 61.0 0.00G 999.9 000000 724050 13743 19880626 79.4 24 67.0 24 1007.4 24 1005.1 24 9.4 24 12.7 24 21.0 27.0 91.9 61.0 0.00G 999.9 010000 724050 13743 19880627 71.7 24 48.6 24 1011.9 24 1009.5 24 17.7 24 13.2 24 22.9 28.0 91.9 60.1 0.00D 999.9 000000 724050 13743 19880628 75.6 24 46.5 24 1013.7 24 1011.3 24 18.4 24 7.7 24 15.9 19.0 86.0* 60.1 0.00G 999.9 000000 724050 13743 19880629 78.3 24 53.0 24 1011.1 24 1008.7 24 13.0 24 8.2 24 12.0 14.0 88.0 61.0 0.00G 999.9 000000 724050 13743 19880630 71.7 24 43.2 24 1009.2 24 1006.8 24 16.2 24 12.8 24 16.9 24.1 86.0 59.0 0.00G 999.9 000000 724050 13743 19880701 67.3 23 40.8 23 1010.5 23 1008.1 23 15.2 23 12.6 23 21.0 27.0 80.1 54.0 0.00C 999.9 000000 724050 13743 19880702 70.9 24 46.9 24 1014.0 24 1011.6 24 15.2 24 10.2 24 14.0 18.1 82.9* 54.0 0.00G 999.9 000000 724050 13743 19880703 75.5 24 55.8 24 1015.4 24 1013.0 24 14.4 24 8.4 24 15.0 999.9 88.0* 60.1 0.00G 999.9 000000 724050 13743 19880704 78.5 23 62.8 23 1020.3 23 1017.9 23 10.4 23 9.7 23 14.0 999.9 90.0* 63.0 0.00G 999.9 000000 724050 13743 19880705 78.1 24 61.8 24 1025.3 24 1022.9 24 9.8 24 9.2 24 13.0 999.9 90.0 66.9 0.00G 999.9 000000 724050 13743 19880706 80.6 24 62.7 24 1023.6 24 1021.1 24 8.6 24 7.2 24 11.1 999.9 96.1* 66.9 0.00G 999.9 000000 724050 13743 19880707 85.6 24 65.7 24 1019.0 24 1016.6 24 6.6 24 8.9 24 13.0 999.9 98.1* 68.0 0.00G 999.9 000000 724050 13743 19880708 83.0 23 66.8 23 1017.6 23 1015.3 23 6.4 23 9.7 23 13.0 999.9 98.1 73.0 0.00G 999.9 000000 724050 13743 19880709 81.9 23 69.1 23 1014.0 23 1011.6 23 5.8 23 8.5 23 25.1 32.1 96.1 73.0 0.00G 999.9 010000 724050 13743 19880710 86.3 20 63.5 20 1012.8 20 1010.5 20 4.8 20 7.5 20 11.1 999.9 100.9* 71.1 0.00G 999.9 100000 724050 13743 19880711 85.2 19 66.9 19 1012.7 19 1010.3 19 3.9 19 8.3 19 18.1 27.0 102.0 71.1 0.00G 999.9 010010 724050 13743 19880712 77.5 24 72.8 24 1013.3 24 1010.9 24 4.3 24 6.4 24 8.9 999.9 81.0* 73.9 0.11G 999.9 110000 724050 13743 19880713 82.2 24 65.9 24 1015.1 24 1012.7 24 8.7 24 8.7 24 13.0 17.1 93.0 73.9 0.09G 999.9 100000 724050 13743 19880714 84.2 22 68.9 22 1013.5 22 1011.1 22 6.8 22 8.2 22 15.0 999.9 95.0 73.0 0.00G 999.9 000000 724050 13743 19880715 88.4 23 69.2 23 1013.2 23 1010.8 23 7.5 23 8.1 23 13.0 18.1 100.0* 73.0 0.00D 999.9 000000 724050 13743 19880716 88.3 24 72.0 24 1016.6 24 1014.3 24 6.6 24 9.0 24 14.0 999.9 102.9* 77.0 0.00G 999.9 100000 724050 13743 19880717 89.5 22 74.1 22 1013.9 22 1011.5 22 4.8 22 11.4 22 18.1 25.1 104.0 77.0 0.00G 999.9 110010 724050 13743 19880718 84.0 24 74.3 24 1015.2 24 1012.8 24 6.5 24 6.8 24 13.0 19.0 100.9 78.1 0.29G 999.9 110010 724050 13743 19880719 82.1 24 72.6 23 1015.4 24 1013.0 24 7.0 24 10.5 24 20.0 26.0 93.9 75.0 0.00G 999.9 110010 724050 13743 19880720 79.2 20 73.9 20 1017.4 20 1015.0 20 7.4 20 10.6 20 22.0 35.0 95.0 73.0* 0.11G 999.9 110010 724050 13743 19880721 80.3 21 73.6 21 1015.5 21 1013.1 21 8.1 21 13.3 21 20.0 27.0 91.9 73.0 0.64G 999.9 010010 724050 13743 19880722 76.3 23 71.6 23 1015.6 23 1013.2 23 6.1 23 7.4 23 15.0 999.9 90.0 72.0 1.20G 999.9 110010 724050 13743 19880723 76.6 24 72.5 24 1017.1 24 1014.7 24 4.7 24 7.2 24 13.0 999.9 84.9 72.0 0.01G 999.9 110000 724050 13743 19880724 77.3 24 67.6 24 1015.7 24 1013.3 24 6.8 24 8.8 24 48.0 999.9 88.0* 69.1 0.33G 999.9 110000 724050 13743 19880725 79.8 24 63.6 24 1017.5 24 1015.1 24 5.8 24 6.8 24 12.0 999.9 91.0 68.0 0.00G 999.9 100000 724050 13743 19880726 81.0 24 70.3 24 1016.6 24 1014.2 24 5.3 24 10.0 24 18.1 26.0 91.0 68.0 0.00D 999.9 110110 724050 13743 19880727 75.0 22 69.2 22 1018.5 22 1016.1 22 4.2 22 4.5 22 11.1 999.9 90.0 68.0 1.01G 999.9 110010 724050 13743 19880728 76.2 23 69.6 23 1020.8 23 1018.4 23 4.2 23 5.8 23 15.0 999.9 88.0* 68.0 0.05G 999.9 110000 724050 13743 19880729 83.6 23 70.7 23 1021.7 23 1019.3 23 5.3 23 7.5 23 11.1 999.9 95.0* 69.1 0.00D 999.9 100000 724050 13743 19880730 86.7 23 71.7 21 1018.8 23 1016.5 23 6.2 23 7.8 23 15.0 999.9 96.1 73.0 0.00G 999.9 000000 724050 13743 19880731 84.8 24 70.9 24 1015.2 24 1012.8 24 6.4 24 6.8 24 11.1 17.1 95.0 75.0 0.00G 999.9 000000 724050 13743 19880801 84.2 24 71.7 24 1016.8 24 1014.5 24 5.6 24 6.5 24 11.1 999.9 95.0* 75.0 0.00G 999.9 100000 724050 13743 19880802 84.6 24 74.2 24 1020.4 24 1018.1 24 4.7 24 6.7 24 12.0 999.9 96.1 75.9 0.00G 999.9 100000 724050 13743 19880803 82.7 24 73.5 24 1023.1 24 1020.8 24 8.9 24 7.6 24 12.0 999.9 93.0 75.9 0.00G 999.9 100000 724050 13743 19880804 82.3 22 73.1 22 1023.2 22 1020.9 22 13.8 22 9.8 22 13.0 999.9 91.0* 75.0 0.00G 999.9 000000 724050 13743 19880805 82.7 24 72.7 24 1020.4 24 1018.1 24 12.3 24 10.7 24 14.0 999.9 91.9 75.0 0.00G 999.9 000000 724050 13743 19880806 81.5 24 71.8 24 1016.3 24 1014.0 24 14.2 24 8.1 24 18.1 27.0 91.9 73.9 0.00G 999.9 110010 724050 13743 19880807 81.2 24 69.6 24 1014.7 24 1012.3 24 8.4 24 6.7 24 11.1 999.9 93.0 73.9 0.05G 999.9 010000 724050 13743 19880808 83.3 23 64.3 23 1015.7 23 1013.4 23 9.7 23 6.5 23 11.1 999.9 93.9* 73.0 0.00G 999.9 000000 724050 13743 19880809 83.0 24 64.9 24 1017.0 24 1014.7 24 7.2 24 6.0 24 12.0 999.9 95.0* 71.1 0.00G 999.9 000000 724050 13743 19880810 84.4 24 72.9 24 1018.0 24 1015.7 24 8.9 24 6.1 24 12.0 999.9 96.1 71.1 0.00G 999.9 000000 724050 13743 19880811 83.5 22 75.6 22 1019.3 22 1017.0 22 5.7 22 10.3 22 15.9 999.9 97.0 77.0 0.00D 999.9 100000 724050 13743 19880812 84.4 24 73.8 24 1019.4 24 1017.1 24 7.4 24 10.3 24 13.0 999.9 93.9* 75.9 0.00D 999.9 000000 724050 13743 19880813 86.3 24 74.1 24 1019.7 24 1017.4 24 8.7 24 9.9 24 14.0 999.9 96.1* 75.9 0.00G 999.9 000000 724050 13743 19880814 86.3 24 71.8 24 1018.7 24 1016.4 24 12.0 24 12.6 24 17.1 24.1 97.0 77.0 0.00G 999.9 000000 724050 13743 19880815 86.9 23 71.8 23 1014.3 23 1012.0 23 12.6 23 12.8 23 32.1 46.0 102.0* 77.0 0.00G 999.9 010010 724050 13743 19880816 81.1 23 65.6 23 1014.4 23 1012.2 23 10.4 23 9.2 23 24.1 35.0 102.9 72.0 0.26G 999.9 110010 724050 13743 19880817 85.7 24 65.1 24 1013.6 24 1011.3 24 11.4 24 7.6 24 14.0 20.0 100.9* 72.0 0.00G 999.9 000000 724050 13743 19880818 86.0 23 69.7 23 1010.2 23 1007.9 23 9.1 23 10.4 23 19.0 21.0 102.0 75.9 0.03G 999.9 010010 724050 13743 19880819 74.1 24 64.2 24 1013.0 24 1010.8 24 9.8 24 8.4 24 14.0 999.9 91.9 64.0 0.09G 999.9 110010 724050 13743 19880820 69.4 23 67.6 23 1010.7 23 1008.4 23 5.1 23 7.0 23 12.0 999.9 78.1 64.0 1.00G 999.9 110000 724050 13743 19880821 73.5 23 64.0 23 1011.1 23 1008.8 23 7.9 23 8.7 23 15.9 20.0 84.0* 66.9 1.02G 999.9 100000 724050 13743 19880822 71.9 24 53.9 24 1019.4 24 1017.1 24 17.4 24 7.4 24 12.0 999.9 84.0 62.1 0.00G 999.9 000000 724050 13743 19880823 71.0 24 60.8 24 1020.5 24 1018.2 24 14.9 24 8.4 24 15.0 20.0 81.0 62.1 0.00G 999.9 000000 724050 13743 19880824 77.1 24 66.8 24 1010.8 24 1008.5 24 8.0 24 10.4 24 15.0 18.1 87.1* 66.9 0.08G 999.9 110000 724050 13743 19880825 77.4 24 61.7 24 1007.8 24 1005.6 23 9.2 24 9.2 24 15.9 22.0 88.0 66.9 0.07G 999.9 110000 724050 13743 19880826 78.7 21 63.1 21 1009.1 21 1006.8 21 11.7 21 8.2 21 13.0 999.9 91.0* 66.0 0.00G 999.9 000000 724050 13743 19880827 79.7 24 67.8 24 1014.6 24 1012.3 24 8.4 24 8.5 24 14.0 999.9 91.9 66.0 0.00G 999.9 000000 724050 13743 19880828 79.2 24 72.1 24 1019.1 24 1016.8 24 7.1 24 11.3 24 15.0 21.0 91.0 70.0 0.00G 999.9 110000 724050 13743 19880829 77.2 21 73.4 21 1016.3 21 1014.0 21 6.4 21 12.2 21 24.1 41.0 84.0 73.0 0.85G 999.9 110000 724050 13743 19880830 71.6 23 63.2 23 1016.2 23 1013.9 23 11.0 23 8.5 23 12.0 999.9 80.1 69.1 0.80G 999.9 000000 724050 13743 19880831 70.2 24 56.0 24 1019.6 24 1017.3 24 11.0 24 5.6 24 8.9 999.9 82.0 53.1 0.00G 999.9 000000 724050 13743 19880901 71.0 24 57.3 24 1024.9 24 1022.5 24 9.5 24 5.4 24 11.1 999.9 82.9 60.1 0.00G 999.9 100000 724050 13743 19880902 70.9 23 57.1 23 1025.9 23 1023.4 23 9.3 23 5.1 23 8.0 999.9 81.0 60.1 0.00G 999.9 100000 724050 13743 19880903 72.1 23 61.3 23 1019.2 23 1016.8 23 9.0 23 6.7 23 9.9 999.9 83.8* 61.0 0.00G 999.9 100000 724050 13743 19880904 73.0 24 69.5 24 1008.0 24 1005.6 24 6.4 24 12.0 24 15.9 21.0 82.0 62.1 0.08G 999.9 110010 724050 13743 19880905 73.3 23 63.7 23 1001.4 23 999.0 23 10.7 23 10.2 23 14.0 22.9 78.1 68.0 0.11G 999.9 110000 724050 13743 19880906 64.6 23 47.3 23 1012.5 23 1010.1 23 15.9 23 9.9 23 14.0 17.1 78.1 55.0 0.00G 999.9 000000 724050 13743 19880907 62.3 23 46.3 23 1018.8 23 1016.4 23 15.9 23 7.1 23 9.9 999.9 73.0* 51.1 0.00G 999.9 000000 724050 13743 19880908 64.0 24 51.2 24 1022.4 24 1019.9 24 12.2 24 5.8 24 8.9 999.9 73.9 51.1 0.00G 999.9 000000 724050 13743 19880909 69.2 22 61.3 22 1019.1 22 1016.7 22 9.8 22 7.2 22 11.1 999.9 77.0 52.0 0.00G 999.9 000000 724050 13743 19880910 72.8 24 64.8 24 1018.5 24 1016.1 24 6.7 24 7.7 24 14.0 17.1 82.0* 61.0 0.04G 999.9 110000 724050 13743 19880911 73.0 24 58.8 24 1022.0 24 1019.6 24 9.1 24 6.3 24 12.0 999.9 82.9 63.0 0.03G 999.9 000000 724050 13743 19880912 67.6 21 56.9 21 1024.5 21 1022.1 21 10.3 21 6.5 21 8.9 999.9 82.9 59.0 0.00G 999.9 000000 724050 13743 19880913 75.5 23 65.2 23 1015.3 23 1012.8 23 7.6 23 11.0 23 14.0 999.9 88.0* 59.0 0.00G 999.9 110000 724050 13743 19880914 72.6 22 54.6 22 1015.6 22 1013.2 22 11.5 22 9.8 22 15.0 15.9 91.0 62.1 0.00G 999.9 000000 724050 13743 19880915 68.0 21 50.1 21 1022.2 21 1019.8 21 13.8 21 8.9 21 14.0 999.9 79.0 60.1 0.00G 999.9 000000 724050 13743 19880916 62.9 23 46.5 23 1030.0 23 1027.6 23 14.9 23 7.8 23 12.0 999.9 75.9 53.1 0.00G 999.9 000000 724050 13743 19880917 63.8 23 56.7 23 1026.2 23 1023.8 23 11.3 23 10.1 23 15.0 999.9 75.0 53.1 0.00G 999.9 110000 724050 13743 19880918 68.6 23 64.6 23 1020.7 23 1018.3 23 6.5 23 7.3 23 13.0 999.9 80.1* 59.0 0.13G 999.9 110000 724050 13743 19880919 72.9 22 68.0 22 1018.7 22 1016.3 22 9.4 21 6.5 22 12.0 999.9 82.9 59.0 0.00G 999.9 100000 724050 13743 19880920 76.3 24 70.7 24 1016.3 24 1013.9 24 9.5 24 13.2 24 20.0 27.0 84.0 64.9 0.00G 999.9 010010 724050 13743 19880921 73.1 24 62.9 24 1015.1 24 1012.7 24 11.1 24 9.7 24 15.9 21.0 84.0 69.1 0.07G 999.9 100000 724050 13743 19880922 67.3 24 55.0 24 1016.9 24 1014.5 24 9.4 24 9.2 24 14.0 999.9 78.1 59.0 0.00G 999.9 000000 724050 13743 19880923 73.1 22 62.8 22 1010.2 22 1007.8 22 7.5 22 9.6 22 13.0 18.1 89.1 59.0 0.00G 999.9 100010 724050 13743 19880924 69.6 23 58.1 22 1014.8 23 1012.4 23 10.8 23 10.8 23 17.1 999.9 91.0 55.9* 0.00G 999.9 110010 724050 13743 19880925 55.7 23 54.1 23 1019.3 23 1016.9 23 6.3 23 8.9 23 14.0 999.9 75.0 53.1 0.67G 999.9 110010 724050 13743 19880926 63.9 23 54.9 23 1021.5 23 1019.1 23 8.0 23 8.2 23 11.1 999.9 77.0* 53.1 0.01G 999.9 100000 724050 13743 19880927 65.5 24 54.8 24 1023.7 24 1021.3 24 9.3 24 5.6 24 9.9 999.9 77.0 54.0 0.00G 999.9 100000 724050 13743 19880928 67.5 24 58.5 24 1022.3 24 1019.8 24 8.8 24 5.4 24 9.9 999.9 81.0* 54.0 0.00G 999.9 100000 724050 13743 19880929 62.3 22 53.4 22 1028.0 22 1025.6 22 10.1 22 10.1 22 13.0 999.9 82.0 57.0 0.00G 999.9 000000 724050 13743 19880930 64.8 23 58.0 23 1028.1 23 1025.7 23 8.0 23 6.0 23 11.1 999.9 73.0* 57.0 0.00G 999.9 000000 724050 13743 19881001 67.5 24 62.7 24 1023.4 24 1021.0 24 5.1 24 7.9 24 14.0 999.9 78.1 59.0 0.00G 999.9 100000 724050 13743 19881002 69.1 24 64.0 24 1015.5 24 1013.1 24 6.7 24 12.1 24 18.1 32.1 79.0 59.0 0.00G 999.9 110000 724050 13743 19881003 65.1 22 62.5 22 1014.7 22 1012.3 22 6.6 22 7.2 22 14.0 999.9 80.1 61.0* 0.24G 999.9 110000 724050 13743 19881004 60.7 23 55.3 23 1016.0 23 1013.6 23 7.2 23 7.3 23 12.0 999.9 68.0 59.0 0.07G 999.9 110000 724050 13743 19881005 57.1 22 45.6 22 1020.3 22 1017.9 22 13.0 22 10.3 22 15.0 20.0 66.0 51.1 0.03G 999.9 100000 724050 13743 19881006 52.2 23 32.0 23 1028.8 23 1026.4 23 17.6 23 8.6 23 14.0 999.9 63.0 43.0 0.03G 999.9 000000 724050 13743 19881007 50.8 24 36.0 24 1029.3 24 1026.9 24 12.4 24 8.3 24 13.0 999.9 62.1 42.1 0.00G 999.9 000000 724050 13743 19881008 49.8 24 37.4 24 1023.9 24 1021.5 24 12.0 24 10.9 24 15.9 19.0 59.0 39.9 0.00G 999.9 010000 724050 13743 19881009 51.0 24 39.7 24 1022.4 24 1020.0 24 10.6 24 7.3 24 14.0 999.9 62.1* 39.9 0.00G 999.9 100000 724050 13743 19881010 55.1 23 43.1 23 1015.4 23 1013.0 23 10.1 23 10.6 23 14.0 999.9 68.0* 39.9 0.00G 999.9 000000 724050 13743 19881011 59.2 24 40.0 24 1007.7 24 1005.3 24 15.8 24 11.6 24 18.1 25.1 70.0 45.0 0.00G 999.9 000000 724050 13743 19881012 50.5 24 31.8 24 1017.0 24 1014.6 24 16.9 24 12.3 24 20.0 29.9 66.9 43.0 0.00G 999.9 000000 724050 13743 19881013 44.3 24 27.4 24 1026.9 24 1024.5 24 16.4 24 12.6 24 17.1 22.0 55.0 37.0 0.00G 999.9 000000 724050 13743 19881014 46.5 23 29.7 23 1028.9 23 1026.5 23 13.4 23 8.0 23 14.0 999.9 60.1* 34.0 0.00G 999.9 000000 724050 13743 19881015 54.4 24 38.9 24 1023.7 24 1021.3 24 12.0 24 7.1 24 11.1 999.9 73.9* 34.0 0.00G 999.9 000000 724050 13743 19881016 60.7 24 45.2 24 1023.0 24 1020.6 24 10.1 24 6.7 24 12.0 999.9 75.9 42.1 0.00G 999.9 000000 724050 13743 19881017 61.5 23 50.0 23 1022.6 23 1020.2 23 13.3 23 8.0 23 11.1 999.9 77.0 48.0 0.00G 999.9 000000 724050 13743 19881018 62.5 24 55.7 24 1015.5 24 1013.1 24 8.7 24 10.6 24 15.0 20.0 75.0 51.1 0.03G 999.9 110000 724050 13743 19881019 58.2 23 41.2 23 1015.7 23 1013.3 23 14.4 23 9.7 23 15.0 999.9 70.0 52.0 0.00D 999.9 000000 724050 13743 19881020 51.4 22 35.3 22 1021.6 22 1019.2 22 13.8 20 7.4 22 12.0 999.9 63.0 41.0 0.00G 999.9 000000 724050 13743 19881021 50.5 22 44.3 22 1020.3 22 1018.0 22 8.4 22 6.5 22 11.1 18.1 62.1 41.0 0.21G 999.9 110000 724050 13743 19881022 50.9 24 43.7 24 1002.7 24 1000.3 24 13.0 24 12.5 24 18.1 26.0 57.9* 44.1 1.01G 999.9 110000 724050 13743 19881023 53.8 23 37.5 23 1009.6 23 1007.2 23 17.0 23 11.3 23 15.9 22.9 61.0 39.0 0.00G 999.9 010000 724050 13743 19881024 56.5 22 40.3 22 1005.3 22 1002.9 22 12.3 22 12.0 22 19.0 999.9 64.9* 45.0 0.11G 999.9 110000 724050 13743 19881025 51.7 23 29.5 23 1009.4 23 1007.0 23 15.1 23 10.4 23 15.9 24.1 66.0 32.7 0.00D 999.9 010000 724050 13743 19881026 50.2 22 32.5 22 1013.2 22 1010.8 22 13.8 22 10.5 22 21.0 33.0 63.0 39.9 0.04G 999.9 010000 724050 13743 19881027 46.2 23 27.9 23 1022.1 23 1019.9 23 11.3 23 5.8 23 8.9 999.9 57.9* 34.0 0.00G 999.9 000000 724050 13743 19881028 54.0 22 44.2 22 1019.2 22 1016.8 22 9.6 22 10.2 22 18.1 999.9 72.0* 34.0 0.00G 999.9 100000 724050 13743 19881029 50.2 24 23.4 24 1024.3 24 1021.9 24 15.6 24 9.7 24 18.1 20.0 73.0 39.0 0.00G 999.9 000000 724050 13743 19881030 46.9 23 27.5 23 1026.3 23 1023.9 23 11.9 23 7.9 23 15.0 19.0 55.9 39.0 0.00G 999.9 000000 724050 13743 19881031 43.0 22 26.0 22 1028.3 22 1025.9 22 11.6 22 7.6 22 12.0 999.9 54.0 34.0 0.00G 999.9 000000 724050 13743 19881101 47.2 22 42.6 22 1015.8 22 1013.5 22 5.8 22 7.0 22 13.0 999.9 50.0 32.0 0.71G 999.9 110000 724050 13743 19881102 47.1 24 36.7 24 1006.6 24 1004.2 24 11.0 24 11.7 24 20.0 28.0 53.1* 39.9 0.17G 999.9 100000 724050 13743 19881103 50.4 23 31.7 23 1014.5 23 1012.1 23 13.3 23 9.3 23 15.0 22.0 61.0* 39.9 0.00G 999.9 000000 724050 13743 19881104 53.9 21 44.1 21 1013.9 21 1011.5 21 8.8 21 7.3 21 15.0 999.9 66.9* 42.1 0.00C 999.9 100000 724050 13743 19881105 62.5 24 59.2 24 999.9 24 997.6 24 7.6 24 11.3 24 22.9 32.1 68.0 46.0 0.08G 999.9 110110 724050 13743 19881106 53.6 20 47.0 20 999.4 20 997.0 20 14.5 20 12.5 20 20.0 26.0 69.1 48.0 0.20G 999.9 010000 724050 13743 19881107 52.9 21 35.9 21 1008.2 21 1005.8 21 15.3 21 10.7 21 15.0 18.1 63.0 48.0 0.00G 999.9 000000 724050 13743 19881108 48.8 23 38.2 23 1018.1 23 1015.7 23 10.9 23 7.3 23 12.0 999.9 60.1* 39.0 0.00G 999.9 000000 724050 13743 19881109 51.8 20 38.0 20 1023.2 20 1020.8 20 11.1 20 6.5 20 11.1 999.9 60.1 39.0 0.00G 999.9 000000 724050 13743 19881110 51.3 24 45.9 24 1017.4 24 1015.0 24 7.4 24 9.8 24 18.1 999.9 64.9* 43.0 0.00G 999.9 110000 724050 13743 19881111 54.5 24 35.0 24 1018.9 24 1016.5 24 13.2 24 12.4 23 19.0 25.1 66.0 43.0 0.12G 999.9 010000 724050 13743 19881112 44.1 23 28.5 23 1030.2 23 1027.8 23 13.9 23 8.7 23 13.0 999.9 57.9 34.0 0.00G 999.9 000000 724050 13743 19881113 50.0 24 44.0 24 1022.7 24 1020.2 24 9.3 24 7.9 24 13.0 25.1 60.1* 34.0 0.32G 999.9 110000 724050 13743 19881114 52.6 24 40.3 24 1022.1 24 1019.7 24 12.6 24 7.9 24 14.0 999.9 64.0* 37.9 0.00D 999.9 000000 724050 13743 19881115 51.1 23 40.9 23 1024.3 23 1021.9 23 9.9 23 6.1 23 11.1 999.9 64.9 37.9 0.00G 999.9 100000 724050 13743 19881116 54.2 23 48.8 23 1021.1 23 1018.7 23 7.3 23 6.1 23 8.9 999.9 66.9* 41.0 0.01G 999.9 110000 724050 13743 19881117 57.7 23 44.8 23 1015.2 23 1012.8 23 10.6 23 12.3 23 19.0 25.1 66.9 48.0 1.04G 999.9 110010 724050 13743 19881118 48.1 24 21.8 24 1028.1 24 1025.7 24 12.5 24 4.8 24 12.0 999.9 63.0 39.9* 0.08G 999.9 000000 724050 13743 19881119 44.1 24 33.4 24 1029.5 24 1027.0 24 8.1 24 2.3 24 4.1 999.9 57.0 39.9 0.04G 999.9 110000 724050 13743 19881120 47.9 24 47.3 24 1015.5 24 1013.1 24 2.6 24 4.0 24 12.0 999.9 57.9* 39.9 0.99G 999.9 110000 724050 13743 19881121 53.8 24 39.1 24 1013.4 24 1011.0 24 14.4 24 9.3 24 15.9 22.9 62.1 48.9* 0.28G 999.9 100000 724050 13743 19881122 44.1 23 29.6 23 1028.2 23 1025.7 23 12.5 23 5.1 23 8.0 999.9 60.1 35.1 0.00G 999.9 000000 724050 13743 19881123 41.0 24 33.9 24 1024.3 24 1021.9 24 7.6 24 3.4 24 8.9 999.9 50.0 33.1 0.00G 999.9 100000 724050 13743 19881124 41.6 24 29.8 24 1019.0 24 1016.6 24 9.7 24 9.9 24 15.0 999.9 50.0 33.1 0.00G 999.9 000000 724050 13743 19881125 41.6 22 31.9 22 1020.2 22 1017.7 22 8.0 22 4.3 22 7.0 999.9 52.0* 32.0 0.00C 999.9 100000 724050 13743 19881126 44.8 21 38.9 21 1017.5 21 1015.1 21 7.2 21 4.4 21 8.9 999.9 59.0* 32.0 0.00G 999.9 100000 724050 13743 19881127 60.6 24 55.3 24 1011.4 24 1009.0 24 9.7 24 12.0 24 17.1 22.9 66.9 52.0* 0.00G 999.9 010000 724050 13743 19881128 53.0 24 44.7 24 1005.7 24 1003.3 24 9.5 24 10.6 24 20.0 26.0 68.0 46.0 1.79G 999.9 110010 724050 13743 19881129 42.9 23 24.4 23 1022.3 23 1019.9 23 17.9 23 10.6 23 15.0 21.0 60.1 37.0 0.02G 999.9 000000 724050 13743 19881130 42.7 24 30.4 24 1020.6 24 1018.2 24 12.0 24 10.0 24 14.0 999.9 53.1* 27.0 0.00G 999.9 000000 724050 13743 19881201 45.7 24 25.1 24 1017.9 24 1015.5 24 16.3 24 9.8 24 14.0 19.0 53.1 37.0 0.00G 999.9 000000 724050 13743 19881202 39.3 24 20.9 24 1023.6 24 1021.1 24 12.5 24 10.3 24 15.9 999.9 50.0 34.0 0.00G 999.9 000000 724050 13743 19881203 43.6 24 24.9 24 1019.4 24 1016.9 24 10.6 24 8.7 24 11.1 999.9 62.1* 34.0 0.00G 999.9 000000 724050 13743 19881204 45.9 24 20.8 24 1020.9 24 1018.5 24 15.5 24 13.7 24 22.0 27.0 62.1 34.0 0.00G 999.9 000000 724050 13743 19881205 41.3 24 12.2 24 1024.2 24 1021.8 24 17.1 24 8.3 24 13.0 999.9 57.0 36.0 0.00G 999.9 000000 724050 13743 19881206 42.3 23 21.9 23 1020.9 23 1018.5 23 12.1 23 8.1 23 12.0 999.9 57.9* 30.9 0.00G 999.9 000000 724050 13743 19881207 44.7 23 28.4 23 1014.6 23 1012.1 23 11.4 23 6.4 23 8.9 999.9 57.9 30.9 0.00G 999.9 010000 724050 13743 19881208 46.3 24 30.8 24 1020.7 24 1018.3 24 11.0 24 9.0 24 17.1 999.9 55.9 36.0 0.00G 999.9 000000 724050 13743 19881209 37.9 24 27.5 24 1024.2 24 1021.8 24 8.1 24 7.5 24 9.9 999.9 51.1 33.1 0.00G 0.8 101000 724050 13743 19881210 31.2 24 15.3 24 1020.7 24 1018.2 24 13.0 24 9.4 24 14.0 999.9 42.1 26.1 0.19G 999.9 000000 724050 13743 19881211 29.8 24 13.5 24 1021.0 24 1018.7 24 13.3 24 11.5 24 17.1 20.0 35.1 25.0 0.00G 999.9 001000 724050 13743 19881212 19.4 23 2.5 23 1030.4 23 1028.0 23 14.0 23 10.4 23 15.9 999.9 33.1 12.9 0.00G 999.9 000000 724050 13743 19881213 20.0 24 9.2 24 1019.1 24 1016.7 24 11.3 24 6.6 24 9.9 999.9 27.1* 12.9 0.00G 999.9 001000 724050 13743 19881214 31.4 24 21.7 24 1017.2 24 1014.7 24 10.4 24 7.9 24 13.0 999.9 45.0 14.0 0.00G 999.9 000000 724050 13743 19881215 45.7 22 26.3 22 1015.6 22 1013.2 22 11.9 22 13.5 22 22.0 28.0 52.0 41.0* 0.00G 999.9 000000 724050 13743 19881216 29.1 22 7.1 22 1025.8 22 1023.3 22 14.1 22 12.8 22 18.1 20.0 52.0 24.1 0.00G 999.9 000000 724050 13743 19881217 27.3 24 11.5 24 1016.4 24 1014.0 24 11.4 24 7.7 24 13.0 999.9 33.1* 24.1 0.00G 999.9 000000 724050 13743 19881218 27.6 23 8.5 23 1018.6 23 1016.4 23 13.9 23 10.3 23 15.0 21.0 33.1 21.9 0.00G 999.9 000000 724050 13743 19881219 34.7 22 16.4 22 1020.5 22 1018.1 22 12.5 22 10.0 22 13.0 999.9 48.0* 21.9 0.00G 999.9 000000 724050 13743 19881220 46.6 24 26.5 24 1022.7 24 1020.3 24 12.1 24 11.1 24 20.0 25.1 64.9* 28.0 0.00G 999.9 000000 724050 13743 19881221 51.8 24 37.6 24 1021.5 24 1019.1 24 8.9 24 10.4 24 18.1 24.1 64.9 34.0 0.10G 999.9 110000 724050 13743 19881222 41.0 24 33.0 24 1031.3 24 1028.8 24 9.3 24 9.2 24 14.0 999.9 53.1 32.0 0.14G 999.9 110000 724050 13743 19881223 37.4 23 33.8 23 1027.9 23 1025.5 23 7.4 23 6.8 23 9.9 999.9 45.0 32.0 0.18G 999.9 110000 724050 13743 19881224 44.1 24 43.2 24 1017.6 24 1015.2 24 3.3 24 7.6 24 15.0 999.9 60.1* 34.0 0.20G 999.9 110000 724050 13743 19881225 51.9 24 37.5 24 1015.5 24 1013.1 24 17.9 24 10.3 24 17.1 19.0 60.1 35.1 0.37G 999.9 010000 724050 13743 19881226 38.9 24 20.0 24 1029.5 24 1027.1 24 16.3 24 10.4 24 14.0 20.0 55.0 30.9 0.00G 999.9 000000 724050 13743 19881227 39.6 24 23.2 24 1032.3 24 1029.9 24 14.3 24 9.5 24 14.0 999.9 46.9* 28.0 0.00G 999.9 000000 724050 13743 19881228 53.3 24 41.2 24 1013.9 24 1011.5 24 13.6 24 18.3 24 33.0 47.0 70.0* 36.0 0.00G 999.9 110000 724050 13743 19881229 33.3 24 16.8 24 1026.8 24 1024.4 24 13.3 24 11.0 24 17.1 24.1 44.1* 27.0 0.12G 999.9 000000 724050 13743 19881230 34.8 24 21.5 24 1025.6 24 1023.1 24 11.3 24 6.0 24 11.1 999.9 39.9* 27.0 0.00G 999.9 000000 724050 13743 19881231 40.2 24 27.1 24 1019.8 24 1017.4 24 11.5 24 6.6 24 9.9 999.9 53.1* 24.1 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/1970/0000755000175000017500000000000014302004506015100 5ustar nileshnileshfluids-1.0.22/tests/gsod/1970/724050-13743.op0000644000175000017500000000001114302004506016650 0ustar nileshnileshExceptionfluids-1.0.22/tests/gsod/1996/0000755000175000017500000000000014302004506015110 5ustar nileshnileshfluids-1.0.22/tests/gsod/1996/724050-13743.op0000644000175000017500000014350514302004506016700 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19960101 38.8 24 34.1 24 1012.9 24 1010.6 24 4.7 24 7.4 24 10.1 999.9 48.0 30.9 0.04G 999.9 110000 724050 13743 19960102 39.1 24 37.4 24 1009.3 24 1006.9 24 3.0 24 8.2 24 11.1 999.9 41.0 36.9 0.75G 999.9 110000 724050 13743 19960103 38.0 24 35.5 24 999.4 24 997.0 24 6.4 24 8.0 24 15.9 21.0 43.0* 34.0* 0.46G 999.9 110000 724050 13743 19960104 28.2 24 14.3 24 1014.2 24 1011.8 24 16.4 24 12.8 24 17.1 25.8 43.0 23.0 0.02G 999.9 000000 724050 13743 19960105 30.6 24 16.8 24 1024.9 24 1022.6 24 13.3 24 8.9 24 18.1 999.9 35.1 23.0 0.00G 999.9 000000 724050 13743 19960106 25.1 24 10.7 24 1031.9 24 1029.5 24 13.2 24 9.5 24 15.9 999.9 36.0 21.9 0.00G 999.9 000000 724050 13743 19960107 19.3 24 17.0 24 1018.9 24 1017.2 23 2.3 24 14.7 24 22.9 29.9 27.0 16.9 0.48G 11.8 101000 724050 13743 19960108 23.7 24 19.3 24 1001.0 24 998.6 24 6.7 24 20.5 24 25.1 31.9 30.0* 16.9 0.59G 16.9 101000 724050 13743 19960109 22.5 24 12.5 24 1011.3 24 1008.9 24 11.6 24 7.0 24 15.0 999.9 30.0 15.1 0.13G 18.5 101000 724050 13743 19960110 28.5 24 20.5 24 1011.0 24 1008.7 24 8.9 24 9.1 24 19.0 25.8 34.0 14.9 0.14G 18.5 111000 724050 13743 19960111 19.9 24 6.9 24 1023.5 24 1021.1 24 12.3 24 7.9 24 14.0 999.9 34.0 14.0 0.01G 15.7 000000 724050 13743 19960112 23.5 24 18.8 24 1011.5 24 1009.1 24 6.6 24 11.3 24 17.1 999.9 28.0* 14.0 0.43G 18.9 111000 724050 13743 19960113 33.2 24 23.8 24 1007.1 24 1004.8 24 14.7 24 11.1 24 15.0 21.0 39.0* 19.9 0.28G 16.9 101000 724050 13743 19960114 33.8 24 28.0 24 1014.7 24 1012.3 24 14.9 24 7.9 24 12.0 999.9 41.0* 24.1 0.00G 15.0 000000 724050 13743 19960115 36.5 24 30.7 24 1018.7 24 1016.3 24 14.4 24 7.5 24 15.0 999.9 46.9 23.9 0.00G 12.2 000000 724050 13743 19960116 29.5 24 16.4 24 1032.9 24 1030.5 24 11.8 24 7.2 24 15.0 999.9 48.0 21.0 0.00G 9.4 000000 724050 13743 19960117 37.8 24 33.6 24 1025.1 24 1022.8 24 7.7 24 5.6 24 8.9 999.9 50.0* 20.8 0.00G 7.9 110000 724050 13743 19960118 39.4 24 38.3 24 1024.8 24 1022.4 24 4.4 24 6.4 24 11.1 999.9 50.0 32.0 0.00G 3.5 100000 724050 13743 19960119 53.0 24 49.9 24 1004.7 24 1002.4 24 8.0 24 16.9 24 28.9 36.9 62.1 30.9* 0.86G 0.4 110010 724050 13743 19960120 23.4 24 7.2 24 1027.4 24 1025.1 24 18.0 24 10.4 24 25.1 35.9 30.9* 17.1 0.76G 999.9 000000 724050 13743 19960121 28.0 24 20.0 24 1031.8 24 1029.5 24 15.6 24 6.4 24 10.1 999.9 34.0* 16.9 0.00G 999.9 000000 724050 13743 19960122 31.0 24 25.0 24 1031.3 24 1029.0 24 9.7 24 6.1 24 12.0 999.9 42.1* 21.9 0.00G 999.9 100000 724050 13743 19960123 33.8 24 30.7 24 1024.0 24 1021.6 24 8.2 24 6.2 24 12.0 999.9 42.1 21.9 0.00G 999.9 100000 724050 13743 19960124 47.2 24 42.3 24 1006.8 24 1004.4 24 10.6 24 10.4 24 25.8 32.8 57.0 28.9 0.21G 999.9 010000 724050 13743 19960125 35.9 24 20.2 24 1021.3 24 1018.9 24 14.3 24 12.1 24 17.1 25.8 57.9 30.9 0.01G 999.9 000000 724050 13743 19960126 32.9 24 23.8 24 1033.1 24 1030.8 24 12.1 24 6.6 24 10.1 999.9 42.1* 27.0 0.00G 999.9 000000 724050 13743 19960127 49.5 24 45.3 24 1015.8 24 1013.4 24 9.6 24 11.7 24 19.0 25.8 57.9 27.0 0.34G 999.9 110000 724050 13743 19960128 34.4 24 14.6 24 1025.3 24 1022.9 24 18.2 24 13.2 24 20.0 32.8 42.1* 28.9 0.14G 999.9 000000 724050 13743 19960129 32.9 24 21.1 24 1028.6 24 1026.2 24 15.0 24 8.3 24 15.9 999.9 37.9* 28.9 0.00G 999.9 000000 724050 13743 19960130 36.8 24 30.5 24 1019.6 24 1017.3 24 13.1 24 6.5 24 11.1 999.9 48.9* 29.8 0.00G 999.9 000000 724050 13743 19960131 36.2 24 24.2 24 1013.4 24 1011.0 24 13.1 24 11.4 24 17.1 22.0 48.9 27.0* 0.00G 999.9 000000 724050 13743 19960201 23.5 24 5.6 24 1023.8 24 1021.4 24 13.4 24 8.7 24 14.0 999.9 27.0* 19.0 0.00G 999.9 001000 724050 13743 19960202 26.2 24 18.4 24 1023.7 24 1021.3 24 7.1 24 8.3 24 17.9 999.9 30.0 18.9 0.23G 2.8 101000 724050 13743 19960203 18.8 24 12.2 24 1022.6 24 1020.2 24 8.2 24 16.8 24 19.0 24.9 30.0 15.1 0.52G 8.3 101000 724050 13743 19960204 15.3 24 0.0 24 1028.9 24 1026.5 24 14.7 24 14.2 24 19.0 22.0 19.9 12.0 0.21G 7.1 001000 724050 13743 19960205 12.0 24 -2.8 24 1034.7 24 1032.3 24 15.2 24 9.7 24 15.0 999.9 19.9* 5.0 0.00G 6.7 000000 724050 13743 19960206 20.7 24 6.8 24 1033.0 24 1030.6 24 13.1 24 6.8 24 12.0 999.9 35.1* 5.0 0.00G 6.3 000000 724050 13743 19960207 27.4 24 19.5 24 1030.5 24 1028.2 24 11.4 24 9.2 24 13.0 999.9 37.0* 9.9 0.00G 4.7 000000 724050 13743 19960208 37.0 24 34.9 24 1015.4 24 1013.0 24 6.3 24 9.1 24 14.0 999.9 42.1* 20.8 0.13G 2.4 111000 724050 13743 19960209 42.2 24 35.6 24 1006.0 24 1003.6 24 9.9 24 10.2 24 18.1 25.8 50.0 34.0 0.16G 0.4 110000 724050 13743 19960210 41.7 24 31.6 24 1012.3 24 1009.9 24 13.3 24 7.7 24 11.1 999.9 50.0 34.9 0.08G 0.4 000000 724050 13743 19960211 49.5 24 33.7 24 1000.6 24 998.3 24 14.1 24 11.6 24 20.0 28.9 54.0 36.0 0.00G 999.9 000000 724050 13743 19960212 34.5 24 15.9 24 1008.0 24 1005.6 24 17.9 24 15.3 24 20.0 31.9 54.0 28.9 0.00D 999.9 011000 724050 13743 19960213 26.6 24 5.7 24 1017.0 24 1014.6 24 15.0 24 12.9 24 19.0 25.8 39.0 19.0 0.00D 999.9 001000 724050 13743 19960214 40.2 24 20.3 24 1003.0 24 1000.7 24 11.8 24 10.4 24 14.0 999.9 53.1 18.9 0.00G 999.9 001000 724050 13743 19960215 37.7 24 28.7 24 1006.0 24 1003.7 24 9.4 24 7.2 24 15.0 999.9 53.1 34.0 0.00G 999.9 101000 724050 13743 19960216 31.2 24 28.5 24 1009.9 24 1007.5 24 3.7 24 12.1 24 22.0 28.0 43.0 26.1* 0.12G 3.9 101000 724050 13743 19960217 24.7 24 10.4 24 1008.8 24 1006.4 24 15.5 24 13.8 24 22.0 28.0 35.1 17.1 0.10G 3.9 101000 724050 13743 19960218 30.4 24 14.2 24 1009.8 24 1007.4 24 14.2 24 8.6 24 17.1 18.8 37.9* 16.9 0.00G 1.2 000000 724050 13743 19960219 34.6 24 23.4 24 1021.6 24 1019.3 24 14.1 24 6.8 24 15.0 19.8 46.0 25.0 0.00G 0.4 000000 724050 13743 19960220 42.1 24 39.4 24 1021.6 24 1019.2 24 7.2 24 7.0 24 11.1 999.9 53.1* 27.0 0.02G 999.9 110000 724050 13743 19960221 52.8 24 51.3 24 1017.4 24 1015.0 24 4.2 24 6.0 24 9.9 999.9 60.1 36.0 0.49G 999.9 110000 724050 13743 19960222 50.9 24 50.1 24 1016.2 24 1013.9 24 2.8 24 4.0 24 10.1 999.9 61.0 45.9 0.03G 999.9 110000 724050 13743 19960223 50.2 24 50.0 24 1014.3 24 1011.9 24 2.5 24 5.6 24 12.8 999.9 55.9 45.9 0.16G 999.9 110000 724050 13743 19960224 54.4 24 37.4 24 1008.3 24 1005.9 24 10.1 24 12.0 24 20.0 28.9 62.1* 47.8 0.05G 999.9 110000 724050 13743 19960225 56.7 24 23.3 24 1015.2 24 1012.8 24 16.6 24 13.5 24 19.0 23.9 72.0* 42.1 0.00G 999.9 000000 724050 13743 19960226 54.2 24 36.0 24 1014.5 24 1012.1 24 15.2 24 6.7 24 11.1 999.9 72.0 41.9 0.00G 999.9 010000 724050 13743 19960227 53.1 24 45.1 24 1014.5 24 1012.1 24 11.1 24 5.4 24 11.1 999.9 62.1* 45.0 0.04G 999.9 110000 724050 13743 19960228 60.0 24 45.6 24 1003.5 24 1001.1 24 10.8 24 9.6 24 22.0 31.9 66.9 46.9 0.02G 999.9 010000 724050 13743 19960229 35.7 24 11.0 24 1016.4 24 1014.0 24 14.4 24 15.9 24 22.9 31.9 53.1* 28.0 0.00G 999.9 000000 724050 13743 19960301 32.0 24 12.2 24 1019.9 24 1017.5 24 13.8 24 8.3 24 15.0 999.9 41.0* 25.0 0.00G 999.9 000000 724050 13743 19960302 36.2 24 29.5 24 1012.0 24 1009.7 24 7.0 24 6.0 24 10.1 999.9 42.1 25.0 0.10G 1.2 101000 724050 13743 19960303 34.8 24 19.6 24 1014.5 24 1012.1 24 11.4 24 12.1 24 22.9 31.9 39.9 28.0* 0.00D 999.9 101000 724050 13743 19960304 29.4 24 -0.1 24 1032.6 24 1030.2 24 15.7 24 9.6 24 15.0 16.9 44.1* 19.9 0.00G 999.9 000000 724050 13743 19960305 47.8 24 28.7 24 1021.7 24 1019.3 24 14.2 24 14.5 24 25.1 32.8 66.0* 35.1* 0.00G 999.9 000000 724050 13743 19960306 58.1 24 51.7 24 1007.7 24 1005.3 24 7.6 24 8.9 24 17.1 22.0 66.0 53.1* 0.34G 999.9 110000 724050 13743 19960307 44.0 24 42.6 24 1007.8 24 1005.4 24 4.5 24 10.9 24 19.8 999.9 64.0 37.0* 0.42G 999.9 110000 724050 13743 19960308 26.0 24 16.6 24 1011.4 24 1009.0 24 9.3 24 16.4 24 22.0 29.9 46.9 19.9 0.20G 3.9 101000 724050 13743 19960309 22.6 24 4.0 24 1028.3 24 1025.9 24 14.3 24 13.7 24 18.1 23.9 30.0* 17.1 0.08G 0.4 000000 724050 13743 19960310 26.9 24 8.5 24 1043.6 24 1041.2 24 14.5 24 8.9 24 14.0 999.9 37.9* 16.9 0.00G 0.4 000000 724050 13743 19960311 33.4 24 17.4 24 1041.1 24 1038.7 24 14.4 24 6.7 24 11.1 999.9 45.0* 18.9 0.00G 999.9 000000 724050 13743 19960312 41.4 24 19.9 24 1026.2 24 1023.9 24 14.5 24 9.2 24 14.0 999.9 57.9* 23.0 0.00G 999.9 000000 724050 13743 19960313 46.9 24 21.4 24 1020.2 24 1017.8 24 13.2 24 6.1 24 13.0 999.9 63.0* 27.9 0.00G 999.9 000000 724050 13743 19960314 50.3 24 30.4 24 1015.8 24 1013.4 24 11.9 24 6.3 24 13.0 999.9 66.9* 32.9 0.00D 999.9 000000 724050 13743 19960315 55.9 24 46.4 24 1005.9 24 1003.6 24 10.2 24 8.0 24 14.0 999.9 69.1 37.9 0.07G 999.9 110000 724050 13743 19960316 51.8 24 31.9 24 1009.3 24 1006.9 24 15.5 24 11.4 24 18.1 22.9 64.9 42.1 0.02G 999.9 000000 724050 13743 19960317 44.5 24 32.1 24 1013.4 24 1011.1 24 10.9 24 7.7 24 13.0 999.9 57.0 39.9 0.06G 999.9 010000 724050 13743 19960318 49.2 24 38.8 24 1012.2 24 1009.9 24 9.8 24 5.9 24 8.9 999.9 59.0 39.9 0.00D 999.9 000000 724050 13743 19960319 48.5 24 42.7 24 1002.6 24 1000.2 24 8.0 24 10.1 24 23.9 31.9 59.0 43.0 0.00G 999.9 110000 724050 13743 19960320 44.6 24 33.2 24 992.7 24 990.3 24 14.0 24 16.3 24 22.9 29.9 53.1 39.0 1.00G 999.9 010000 724050 13743 19960321 42.9 24 29.6 24 999.1 24 996.7 24 12.6 24 12.4 24 17.1 22.0 48.9* 37.0 0.00G 999.9 011000 724050 13743 19960322 38.7 24 21.1 24 1007.2 24 1004.8 24 13.8 24 12.0 24 17.1 22.9 48.9 32.0 0.00G 999.9 000000 724050 13743 19960323 40.8 24 18.6 24 1014.2 24 1011.8 24 15.3 24 12.9 24 20.0 25.8 53.1* 32.0 0.00G 999.9 000000 724050 13743 19960324 47.4 24 15.7 24 1023.9 24 1021.6 24 14.5 24 7.4 24 13.0 999.9 57.9* 32.0 0.00G 999.9 000000 724050 13743 19960325 55.7 24 36.4 24 1019.1 24 1016.7 24 15.0 24 12.5 24 22.9 29.9 73.0* 36.0 0.00G 999.9 000000 724050 13743 19960326 58.6 24 36.4 24 1020.0 24 1017.6 24 16.9 24 11.8 24 16.9 18.8 73.0 41.9 0.00G 999.9 000000 724050 13743 19960327 44.8 24 14.3 24 1032.1 24 1029.7 24 14.3 24 11.4 24 20.0 999.9 64.0 35.1 0.00G 999.9 000000 724050 13743 19960328 39.3 24 29.6 24 1030.7 24 1028.3 24 8.0 24 9.0 24 15.0 999.9 51.1 34.9 0.38G 999.9 110000 724050 13743 19960329 39.4 24 37.0 24 1018.1 24 1015.8 24 6.3 24 12.4 24 15.9 999.9 44.1 36.0 1.00G 999.9 111000 724050 13743 19960330 46.2 24 39.4 24 1022.3 24 1019.9 24 9.0 24 5.8 24 14.0 999.9 55.9 32.4 0.10G 999.9 100000 724050 13743 19960331 51.5 24 42.5 24 1017.8 24 1015.4 24 12.7 24 6.1 24 15.9 999.9 63.0 36.0 0.00G 999.9 000000 724050 13743 19960401 50.4 24 46.6 24 1010.9 24 1008.6 24 6.9 24 8.6 24 17.1 999.9 64.9 41.9 0.29G 999.9 110000 724050 13743 19960402 47.5 24 31.6 24 1013.1 24 1010.7 24 13.7 24 17.3 24 22.9 32.8 54.0* 39.0 0.66G 999.9 110000 724050 13743 19960403 52.7 24 31.3 24 1015.5 24 1013.1 24 14.4 24 7.7 24 11.1 17.9 70.0* 38.8 0.00G 999.9 000000 724050 13743 19960404 57.5 24 42.6 24 1009.1 24 1006.8 24 12.0 24 7.0 24 14.0 999.9 71.1 39.9 0.00G 999.9 000000 724050 13743 19960405 50.8 24 38.0 24 1012.0 24 1009.6 24 13.7 24 12.4 24 20.0 24.9 72.0 46.0 0.00G 999.9 010000 724050 13743 19960406 43.7 24 29.5 24 1017.8 24 1015.4 24 14.5 24 8.4 24 13.0 999.9 54.0 39.9* 0.00G 999.9 110000 724050 13743 19960407 43.5 24 33.3 24 1012.2 24 1009.8 24 9.3 24 9.8 24 19.0 999.9 53.1* 37.9 0.03G 999.9 110000 724050 13743 19960408 44.0 24 23.0 24 1016.0 24 1013.6 24 18.6 24 9.0 24 14.0 999.9 53.1 35.1 0.00G 999.9 000000 724050 13743 19960409 42.6 24 37.8 24 1011.5 24 1009.1 24 7.6 24 9.5 24 12.8 999.9 54.0 34.9 0.13G 999.9 111000 724050 13743 19960410 41.0 24 30.2 24 1011.4 24 1009.0 24 12.1 24 14.1 24 21.0 29.9 48.9 36.0 0.24G 999.9 111000 724050 13743 19960411 54.1 24 29.3 24 1012.1 24 1009.7 24 15.2 24 11.2 24 17.1 23.9 73.9* 36.0 0.02G 999.9 010000 724050 13743 19960412 63.8 24 42.0 24 1008.8 24 1006.4 24 13.2 24 9.2 24 15.9 999.9 82.9* 54.0* 0.00G 999.9 000000 724050 13743 19960413 63.8 24 49.5 24 1007.6 24 1005.2 24 11.7 24 10.2 24 14.0 999.9 84.0 52.0 0.00G 999.9 000000 724050 13743 19960414 58.2 24 46.2 24 1010.8 24 1008.5 24 10.1 24 11.8 24 19.0 23.9 70.0 52.0 0.00G 999.9 100000 724050 13743 19960415 50.6 24 38.3 24 1018.8 24 1016.5 24 14.5 24 11.1 24 15.9 999.9 66.9 44.1 0.00G 999.9 110000 724050 13743 19960416 54.3 24 45.9 24 1004.8 24 1002.5 24 8.9 24 10.7 24 18.1 23.9 60.1 43.9 1.09G 999.9 110010 724050 13743 19960417 50.5 24 29.5 24 1014.2 24 1011.8 24 16.3 24 14.0 24 20.0 24.9 60.1 43.0 0.01G 999.9 000000 724050 13743 19960418 56.5 24 34.4 24 1019.9 24 1017.5 24 14.9 24 7.2 24 10.1 999.9 71.1* 41.0 0.00G 999.9 000000 724050 13743 19960419 62.0 24 47.4 24 1016.0 24 1013.7 24 12.2 24 7.9 24 14.0 999.9 73.0 41.0 0.00G 999.9 010000 724050 13743 19960420 68.5 24 58.8 24 1013.9 24 1011.5 24 13.6 24 14.4 24 21.0 26.8 78.1* 48.9 0.00G 999.9 000000 724050 13743 19960421 69.0 24 58.5 24 1016.4 24 1014.0 24 14.3 24 10.3 24 15.0 18.8 79.0 57.9 0.00G 999.9 010000 724050 13743 19960422 70.9 24 59.3 24 1019.1 24 1016.7 24 12.7 24 7.9 24 17.1 999.9 87.1* 57.9 0.00G 999.9 000000 724050 13743 19960423 75.9 24 60.0 24 1011.3 24 1009.0 24 12.7 24 15.0 24 23.9 33.8 87.1 57.9 0.00G 999.9 010000 724050 13743 19960424 55.9 24 34.1 24 1015.5 24 1013.1 24 17.1 24 15.1 24 26.0 39.8 84.0 45.0 0.13G 999.9 010000 724050 13743 19960425 61.7 24 38.4 24 1013.7 24 1011.4 24 13.9 24 11.0 24 20.0 25.8 77.0* 45.0 0.00G 999.9 000000 724050 13743 19960426 66.9 24 49.8 24 1002.9 24 1000.6 24 13.3 24 15.8 24 20.0 30.9 78.1 48.9 0.02G 999.9 010000 724050 13743 19960427 57.6 24 38.8 24 1011.9 24 1009.6 24 16.5 24 11.2 24 17.1 19.8 69.1 50.0 0.00D 999.9 000000 724050 13743 19960428 58.5 24 37.5 24 1023.7 24 1021.4 24 16.3 24 8.9 24 13.0 999.9 73.0* 45.0 0.00G 999.9 000000 724050 13743 19960429 69.3 24 57.8 24 1017.6 24 1015.2 24 13.5 24 11.9 24 19.0 999.9 84.9* 61.0* 0.00G 999.9 000000 724050 13743 19960430 69.1 24 62.7 24 1006.5 24 1004.1 24 12.1 24 13.0 24 19.0 31.9 84.9 57.9* 0.10G 999.9 010010 724050 13743 19960501 55.7 24 38.5 24 1015.7 24 1013.3 24 14.6 24 11.1 24 18.1 22.0 72.0 42.1 0.45G 999.9 000000 724050 13743 19960502 62.3 24 46.5 24 1017.2 24 1014.9 24 13.0 24 8.3 24 14.0 999.9 73.9 41.9 0.00G 999.9 000000 724050 13743 19960503 64.8 24 55.6 24 1017.5 24 1015.1 24 9.8 24 6.5 24 11.1 999.9 75.9* 50.0 0.05G 999.9 110000 724050 13743 19960504 67.2 24 61.6 24 1015.0 24 1012.7 24 8.1 24 6.6 24 11.1 999.9 80.1* 57.9 0.02G 999.9 110000 724050 13743 19960505 67.1 24 58.7 24 1018.6 24 1016.2 24 10.3 24 9.2 24 25.1 37.9 81.0 59.0 0.85G 999.9 110010 724050 13743 19960506 63.4 24 57.6 24 1017.6 24 1015.2 24 7.7 24 10.2 24 19.8 24.9 73.9 57.9 0.76G 999.9 110010 724050 13743 19960507 52.6 24 46.2 24 1030.2 24 1027.9 24 11.9 24 11.0 24 17.1 999.9 75.0 48.9 0.00G 999.9 110000 724050 13743 19960508 55.2 24 52.8 24 1024.6 24 1022.3 24 6.3 24 8.0 24 13.0 999.9 62.1 48.9 0.47G 999.9 110000 724050 13743 19960509 58.4 24 56.4 24 1023.5 24 1021.1 24 6.3 24 8.6 24 13.0 999.9 62.1 50.9 0.46G 999.9 110010 724050 13743 19960510 62.0 24 58.5 24 1023.0 24 1020.6 24 6.7 24 7.2 24 13.0 999.9 75.9* 55.9 0.31G 999.9 100000 724050 13743 19960511 70.8 24 64.0 24 1010.4 24 1008.0 24 7.5 24 8.3 24 23.9 32.8 87.1* 56.8 0.00G 999.9 110010 724050 13743 19960512 56.9 24 40.5 24 1010.2 24 1007.8 24 14.1 24 12.6 24 24.9 33.8 66.9* 48.9 0.39G 999.9 010000 724050 13743 19960513 51.8 24 29.3 24 1020.5 24 1018.1 24 17.8 24 9.7 24 14.0 25.8 62.1 42.1 0.00G 999.9 000000 724050 13743 19960514 54.4 24 31.2 24 1026.6 24 1024.2 24 15.8 24 6.6 24 11.1 999.9 64.9* 41.9 0.00G 999.9 000000 724050 13743 19960515 56.5 24 39.4 24 1028.5 24 1026.2 24 12.5 24 8.9 24 13.0 999.9 66.0 41.9 0.00G 999.9 010000 724050 13743 19960516 56.9 24 54.0 24 1021.6 24 1019.3 24 8.0 24 6.8 24 12.0 999.9 66.0 50.0 0.33G 999.9 110000 724050 13743 19960517 62.3 24 59.3 24 1016.6 24 1014.2 24 4.6 24 5.8 24 8.9 999.9 66.9* 53.1 0.07G 999.9 110000 724050 13743 19960518 69.5 24 65.7 24 1015.3 24 1012.9 24 4.0 24 5.6 24 11.1 999.9 84.0* 59.9 0.00D 999.9 110000 724050 13743 19960519 79.2 24 66.7 24 1011.7 24 1009.3 24 10.0 24 7.5 24 12.0 999.9 95.0* 63.0 0.00G 999.9 000000 724050 13743 19960520 80.5 24 67.2 24 1007.8 24 1005.4 24 11.1 24 7.5 24 11.1 999.9 96.1* 64.9 0.00G 999.9 100000 724050 13743 19960521 81.5 24 69.0 24 1004.2 24 1001.9 24 10.1 24 8.9 24 18.1 30.9 96.1 65.8 0.00G 999.9 010010 724050 13743 19960522 74.6 24 61.2 24 1008.6 24 1006.3 24 10.0 24 7.8 24 15.0 19.8 93.9 66.0 0.53G 999.9 110010 724050 13743 19960523 73.5 24 55.9 24 1013.5 24 1011.2 24 13.8 24 6.5 24 12.0 999.9 82.9 62.1 0.00G 999.9 000000 724050 13743 19960524 75.7 24 59.6 24 1015.4 24 1013.1 24 12.1 24 8.2 24 12.0 999.9 84.0 61.9 0.00G 999.9 000000 724050 13743 19960525 65.6 24 46.4 24 1019.9 24 1017.6 24 15.7 24 9.3 24 17.1 999.9 82.0 60.1 0.00G 999.9 010010 724050 13743 19960526 58.5 24 48.6 24 1019.8 24 1017.5 24 14.2 24 7.5 24 12.0 999.9 71.1 54.0 0.00G 999.9 110000 724050 13743 19960527 56.0 24 52.9 24 1017.1 24 1014.8 24 7.3 24 9.3 24 14.0 999.9 63.0 54.0 0.10G 999.9 110000 724050 13743 19960528 56.6 24 54.6 24 1016.2 24 1013.9 24 7.2 24 7.2 24 12.0 999.9 60.1 54.0 0.44G 999.9 110000 724050 13743 19960529 57.4 24 55.6 24 1012.4 24 1010.0 24 6.6 24 8.1 24 13.0 999.9 60.1 54.0 0.45G 999.9 110000 724050 13743 19960530 59.6 24 44.9 24 1016.4 24 1014.1 24 15.9 24 9.8 24 15.9 999.9 72.0* 46.9 0.33G 999.9 000000 724050 13743 19960531 62.5 24 45.5 24 1023.1 24 1020.7 24 15.8 24 5.8 24 8.9 999.9 73.9* 45.9 0.00G 999.9 000000 724050 13743 19960601 66.1 24 53.6 24 1026.5 24 1024.1 24 13.7 24 6.6 24 10.1 999.9 80.1* 48.9 0.00G 999.9 000000 724050 13743 19960602 67.2 24 52.4 24 1027.1 24 1024.7 24 15.8 24 7.9 24 12.0 999.9 80.1 54.0 0.00G 999.9 000000 724050 13743 19960603 66.2 24 53.3 24 1020.6 24 1018.2 24 14.2 24 5.8 24 11.1 999.9 79.0 55.9 0.00G 999.9 000000 724050 13743 19960604 67.8 24 59.1 24 1015.2 24 1012.8 24 13.3 24 7.7 24 22.9 37.9 81.0* 57.0 0.00G 999.9 010010 724050 13743 19960605 71.4 24 57.4 24 1018.7 24 1016.4 24 14.3 24 6.5 24 11.1 999.9 82.0 59.9 0.20G 999.9 010010 724050 13743 19960606 73.0 24 61.7 24 1021.3 24 1018.9 24 9.9 24 7.1 24 13.0 999.9 82.9 61.0 0.00G 999.9 000000 724050 13743 19960607 75.1 24 65.5 24 1017.4 24 1015.0 24 8.1 24 9.3 24 14.0 999.9 87.1* 61.9 0.00G 999.9 100000 724050 13743 19960608 79.6 24 71.0 24 1015.4 24 1013.0 24 9.7 24 9.3 24 13.0 999.9 89.1* 64.9 0.00G 999.9 000000 724050 13743 19960609 77.0 24 71.6 24 1017.5 24 1015.1 24 10.9 24 8.5 24 12.0 999.9 89.1 72.0 0.00G 999.9 110010 724050 13743 19960610 77.6 24 73.0 24 1017.3 24 1015.0 24 10.5 24 8.7 24 15.0 999.9 87.1* 72.0 0.38G 999.9 110000 724050 13743 19960611 79.0 24 72.0 24 1015.3 24 1012.9 24 10.7 24 10.0 24 15.0 999.9 87.1 72.9 0.00G 999.9 010000 724050 13743 19960612 77.5 24 70.8 24 1013.4 24 1011.0 24 11.6 24 8.8 24 20.0 999.9 84.9 72.0 0.00G 999.9 010010 724050 13743 19960613 77.1 24 67.1 24 1013.2 24 1010.8 24 7.9 24 7.0 24 12.0 16.9 87.1 68.0 0.00G 999.9 100000 724050 13743 19960614 79.9 24 66.8 24 1014.0 24 1011.6 24 8.6 24 6.6 24 14.0 999.9 90.0 68.0 0.00G 999.9 100000 724050 13743 19960615 81.0 24 66.4 24 1014.3 24 1011.9 24 9.7 24 6.5 24 15.9 999.9 91.9 68.9 0.00G 999.9 110010 724050 13743 19960616 82.7 24 67.2 24 1017.4 24 1015.0 24 11.6 24 4.9 24 12.0 999.9 93.0 69.1 0.00G 999.9 000000 724050 13743 19960617 82.5 24 73.3 24 1016.7 24 1014.3 24 6.7 24 8.0 24 11.1 999.9 91.9 72.0 0.00G 999.9 000000 724050 13743 19960618 78.5 24 72.8 24 1013.8 24 1011.4 24 7.7 24 7.3 24 15.9 999.9 91.9 72.0 0.75G 999.9 110010 724050 13743 19960619 77.9 24 73.5 24 1013.1 24 1010.7 24 6.3 24 6.5 24 10.1 999.9 87.1* 72.0 0.15G 999.9 110010 724050 13743 19960620 79.8 24 75.2 24 1009.9 24 1007.6 24 7.8 24 5.0 24 15.0 999.9 88.0 72.9 0.27G 999.9 010010 724050 13743 19960621 80.1 24 69.4 24 1009.9 24 1007.5 24 7.8 24 10.3 24 18.1 35.9 87.1* 72.9 0.34G 999.9 110010 724050 13743 19960622 82.1 24 68.4 24 1010.0 24 1007.6 24 8.6 24 7.9 24 14.0 999.9 91.9* 72.0 0.00G 999.9 000000 724050 13743 19960623 82.8 24 64.3 24 1010.8 24 1008.4 24 12.4 24 9.7 24 15.0 16.9 93.0 72.0 0.00G 999.9 000000 724050 13743 19960624 78.4 24 68.6 24 1013.5 24 1011.1 24 11.2 24 5.4 24 39.8 999.9 89.1* 71.1 0.00G 999.9 010010 724050 13743 19960625 78.7 24 70.0 24 1010.9 24 1008.6 24 8.5 24 9.9 24 19.0 19.8 90.0 70.9 0.74G 999.9 110000 724050 13743 19960626 75.1 24 56.3 24 1019.5 24 1017.1 24 14.0 24 10.1 24 17.1 999.9 88.0 64.0 0.00G 999.9 000000 724050 13743 19960627 74.8 24 58.5 24 1021.2 24 1018.8 24 12.5 24 6.3 24 10.1 999.9 84.0 63.9 0.00G 999.9 000000 724050 13743 19960628 78.1 24 63.5 24 1019.7 24 1017.3 24 10.4 24 6.5 24 10.1 999.9 88.0* 64.9 0.00G 999.9 100000 724050 13743 19960629 75.7 24 62.4 24 1021.7 24 1019.3 24 12.6 24 7.8 24 13.0 999.9 89.1 68.0 0.00G 999.9 000000 724050 13743 19960630 73.9 24 67.0 24 1016.0 24 1013.7 24 10.8 24 10.7 24 18.8 999.9 87.1* 64.9 0.27G 999.9 010000 724050 13743 19960701 79.4 24 74.3 24 1011.7 22 1009.2 8 4.5 24 7.1 23 10.1 999.9 88.5* 73.4* 0.04G 999.9 110010 724050 13743 19960702 82.1 24 71.8 24 1009.3 24 1007.3 6 6.1 24 5.5 24 8.9 999.9 91.2* 75.9* 0.00G 999.9 100000 724050 13743 19960703 76.1 24 64.1 24 1003.3 24 1002.0 4 12.2 24 7.9 24 20.0 27.0 91.4 67.8 0.18G 999.9 010000 724050 13743 19960704 69.0 24 54.3 24 1007.0 24 1005.3 5 15.8 24 12.0 24 19.0 23.9 77.5* 61.0* 0.04G 999.9 000000 724050 13743 19960705 74.2 24 52.0 24 1015.2 24 1012.4 6 15.2 24 8.8 24 14.0 15.0 85.1 61.0 0.00G 999.9 000000 724050 13743 19960706 77.0 24 62.1 24 1016.4 24 1014.1 7 13.7 24 6.5 24 11.1 999.9 91.0 63.9 0.00G 999.9 000000 724050 13743 19960707 81.6 24 68.6 24 1012.6 24 1010.9 6 8.9 24 5.8 24 11.1 15.0 91.9* 71.8* 0.00G 999.9 100000 724050 13743 19960708 82.2 24 71.6 24 1006.2 24 1003.9 8 8.0 24 7.2 24 21.0 27.0 93.2 71.6 0.00G 999.9 010000 724050 13743 19960709 80.9 24 69.4 24 1004.6 22 1002.1 7 8.7 24 8.4 24 25.1 32.1 93.7 72.1 0.54G 999.9 010010 724050 13743 19960710 76.6 24 59.4 24 1014.2 24 1010.4 4 13.7 24 9.0 24 15.0 999.9 81.5* 69.8* 0.54D 999.9 000000 724050 13743 19960711 74.5 24 57.5 24 1024.0 24 1021.6 8 13.0 24 5.7 24 8.0 999.9 83.3 64.9 0.00G 999.9 000000 724050 13743 19960712 73.0 24 65.1 24 1023.7 21 1022.2 5 10.0 24 7.1 24 11.1 999.9 83.3 64.9 0.11G 999.9 110000 724050 13743 19960713 76.9 24 70.5 24 1008.5 17 9999.9 0 8.7 24 13.8 24 22.9 35.9 89.8* 71.6* 1.60G 999.9 110000 724050 13743 19960714 82.0 24 74.5 24 1012.5 24 1009.9 6 8.2 24 7.6 24 11.1 999.9 89.8 72.1 0.02G 999.9 100000 724050 13743 19960715 81.4 24 75.3 24 1013.9 22 1011.8 5 7.5 24 13.5 24 18.1 21.0 89.8 75.4 0.00G 999.9 110000 724050 13743 19960716 80.6 24 70.0 24 1018.6 21 1015.9 6 9.9 24 8.7 24 14.0 999.9 88.7* 72.5* 0.06G 999.9 100000 724050 13743 19960717 82.1 24 68.3 24 1020.4 24 1017.8 5 10.5 24 7.5 24 11.1 999.9 91.4* 72.1* 0.00G 999.9 000000 724050 13743 19960718 79.8 24 72.8 24 1019.9 21 1018.4 4 6.7 24 5.9 24 15.9 999.9 91.6 72.1 0.28G 999.9 110000 724050 13743 19960719 76.7 24 74.8 24 1009.8 18 9999.9 0 6.7 24 9.1 24 18.1 25.1 84.2* 73.4* 0.56G 999.9 110010 724050 13743 19960720 76.0 24 59.7 24 1010.4 24 1007.9 4 14.1 24 12.0 24 17.1 20.0 85.5 70.5 0.88G 999.9 000000 724050 13743 19960721 74.9 24 55.2 24 1014.9 24 1012.3 4 14.9 24 8.8 24 13.0 999.9 84.2* 65.5* 0.00G 999.9 000000 724050 13743 19960722 73.0 24 65.2 24 1013.8 23 1011.8 4 11.4 24 5.7 24 10.1 999.9 84.9 64.9 0.02G 999.9 110000 724050 13743 19960723 73.5 24 65.2 24 1012.2 22 9999.9 0 6.7 24 8.7 24 13.0 999.9 82.8* 67.6* 0.06G 999.9 110000 724050 13743 19960724 77.2 24 64.8 24 1015.1 24 1012.6 7 6.8 24 5.5 24 8.9 999.9 85.6* 68.2* 0.00G 999.9 100000 724050 13743 19960725 77.7 24 70.2 24 1015.6 24 1013.2 24 4.2 24 8.4 24 12.0 999.9 85.5* 71.4* 0.00G 999.9 110000 724050 13743 19960726 76.9 24 67.5 24 1014.4 24 1012.0 24 7.8 24 8.7 24 15.9 19.0 85.6* 69.6* 1.16G 999.9 110010 724050 13743 19960727 76.2 24 60.8 24 1020.2 24 1017.8 24 14.3 24 7.0 24 11.1 999.9 86.0 65.8 0.10G 999.9 000000 724050 13743 19960728 75.5 24 64.8 24 1024.1 24 1021.7 24 12.8 24 4.5 24 10.1 999.9 84.6 65.8 0.00G 999.9 000000 724050 13743 19960729 74.1 24 67.6 24 1022.5 24 1020.0 24 9.2 24 6.1 24 8.9 999.9 84.6 67.3 0.20G 999.9 110000 724050 13743 19960730 74.7 24 70.0 24 1019.2 24 1016.9 24 6.5 24 6.6 24 10.1 999.9 82.8* 69.6* 0.15G 999.9 110000 724050 13743 19960731 76.1 24 71.0 24 1016.3 24 1013.9 24 8.8 24 6.8 24 11.1 999.9 82.9 69.4 0.11G 999.9 110000 724050 13743 19960801 76.6 24 68.2 24 1014.0 24 1011.6 24 10.0 24 6.6 24 11.1 999.9 84.4* 70.7* 0.01G 999.9 110000 724050 13743 19960802 76.3 24 66.2 24 1015.2 24 1012.8 24 10.0 24 5.6 24 10.1 999.9 85.5 67.3 0.00D 999.9 000000 724050 13743 19960803 76.5 24 69.5 24 1017.5 24 1015.1 24 7.8 24 6.1 24 11.1 999.9 82.4* 71.4* 0.00G 999.9 110000 724050 13743 19960804 75.7 24 68.3 24 1021.7 24 1019.3 24 8.5 24 4.4 24 8.0 999.9 84.0* 68.7* 0.00G 999.9 100000 724050 13743 19960805 77.1 24 70.6 24 1023.2 24 1020.8 24 8.2 24 4.7 24 8.9 999.9 85.6* 70.5* 0.00G 999.9 100000 724050 13743 19960806 76.4 24 71.2 24 1023.4 24 1021.0 23 7.4 24 6.0 24 13.0 999.9 86.0* 70.7* 0.00G 999.9 110000 724050 13743 19960807 77.1 24 69.7 24 1022.8 24 1020.3 23 5.7 24 4.2 24 8.9 999.9 86.4* 69.1* 0.29G 999.9 100000 724050 13743 19960808 77.8 24 70.5 24 1021.1 24 1018.8 23 4.5 24 7.4 24 10.1 999.9 87.3 68.5 0.00G 999.9 100000 724050 13743 19960809 73.8 24 69.6 24 1016.7 24 1014.2 24 6.9 24 8.1 24 11.1 999.9 79.9* 71.4* 0.05G 999.9 110000 724050 13743 19960810 73.9 24 63.7 24 1016.8 24 1014.4 24 11.8 24 7.6 24 12.0 15.0 82.8* 64.9* 0.00D 999.9 110000 724050 13743 19960811 73.2 24 59.8 24 1020.1 24 1017.8 24 14.5 24 6.0 24 8.0 999.9 83.5 63.7 0.00G 999.9 000000 724050 13743 19960812 71.2 24 65.5 24 1019.7 24 1017.3 24 9.8 24 6.1 24 13.0 999.9 81.0 63.7 0.01G 999.9 110000 724050 13743 19960813 67.3 24 64.9 24 1014.4 24 1012.0 24 7.3 24 12.9 24 15.9 999.9 74.7* 64.0* 1.74G 999.9 110000 724050 13743 19960814 73.6 24 66.0 24 1017.6 24 1015.2 24 10.8 24 4.7 24 11.1 999.9 85.6 63.3 0.08G 999.9 100000 724050 13743 19960815 75.5 24 68.8 24 1019.1 24 1016.7 23 7.7 24 6.0 24 8.9 999.9 84.0* 67.8* 0.00G 999.9 100000 724050 13743 19960816 74.2 23 68.4 23 1018.8 23 1016.5 20 7.7 23 7.2 23 15.0 23.9 84.9* 68.0* 0.00G 999.9 010010 724050 13743 19960817 74.0 24 66.9 24 1019.1 24 1016.6 22 7.7 24 4.4 24 8.9 999.9 86.0 66.2 0.52G 999.9 100000 724050 13743 19960818 76.6 24 67.4 24 1020.9 24 1018.5 23 6.4 24 4.5 24 11.1 999.9 88.0 66.2 0.00G 999.9 100000 724050 13743 19960819 76.9 24 65.2 24 1024.8 24 1022.3 23 9.9 24 4.9 24 8.9 999.9 87.1 66.0 0.00G 999.9 000000 724050 13743 19960820 75.6 24 67.3 24 1026.5 24 1024.0 24 9.6 24 5.3 24 11.1 999.9 88.0 66.0 0.00G 999.9 100000 724050 13743 19960821 75.3 24 68.4 24 1023.2 24 1020.7 23 9.7 24 8.5 24 12.0 999.9 84.2* 68.5* 0.00G 999.9 000000 724050 13743 19960822 79.8 24 69.8 24 1020.6 24 1018.1 24 6.5 24 6.1 24 12.0 999.9 90.7* 71.2* 0.00G 999.9 100000 724050 13743 19960823 80.9 24 72.4 24 1020.2 24 1017.7 24 5.0 24 5.9 24 10.1 999.9 92.5* 72.9* 0.00G 999.9 100000 724050 13743 19960824 79.2 24 70.6 24 1017.8 24 1015.4 24 7.0 24 8.2 24 13.0 999.9 85.5* 72.1* 0.00G 999.9 110010 724050 13743 19960825 76.1 24 63.5 24 1018.2 24 1015.8 24 13.8 24 7.2 24 11.1 999.9 87.3 66.2 0.00G 999.9 000000 724050 13743 19960826 77.3 24 65.3 24 1016.8 24 1014.4 24 10.6 24 4.9 24 8.9 999.9 87.3 66.2 0.00G 999.9 100000 724050 13743 19960827 75.8 24 70.3 24 1015.9 24 1013.5 23 6.4 24 6.2 24 15.9 999.9 86.9* 71.2* 0.00G 999.9 110010 724050 13743 19960828 74.3 24 67.1 24 1017.7 24 1015.3 24 6.7 24 5.8 24 8.9 999.9 87.1 66.7 0.01G 999.9 110000 724050 13743 19960829 76.9 24 67.5 24 1018.4 24 1016.0 24 5.4 24 4.2 24 11.1 999.9 86.7* 68.4* 0.00G 999.9 100000 724050 13743 19960830 76.3 24 64.5 24 1018.6 24 1016.2 24 7.9 24 6.6 24 10.1 999.9 87.3 68.2 0.00G 999.9 100000 724050 13743 19960831 74.8 24 63.7 24 1019.4 24 1017.0 21 11.3 24 5.0 24 8.9 999.9 83.8* 65.7* 0.00G 999.9 100000 724050 13743 19960901 75.5 24 62.8 24 1016.6 24 1014.2 24 11.2 24 6.6 24 11.1 999.9 87.1* 63.7* 0.00G 999.9 000000 724050 13743 19960902 77.0 24 63.2 24 1015.9 24 1013.5 23 11.1 24 4.8 24 8.9 13.0 88.9 63.7 0.00G 999.9 000000 724050 13743 19960903 75.3 24 66.4 24 1017.2 24 1014.9 24 9.1 24 5.7 24 16.9 26.0 89.2 65.3 0.00G 999.9 110000 724050 13743 19960904 72.8 24 69.3 24 1016.9 24 1014.5 24 7.7 24 6.7 24 18.1 999.9 79.3* 70.0* 1.83G 999.9 110010 724050 13743 19960905 77.8 24 73.1 24 1017.6 24 1015.2 24 7.5 24 7.2 24 18.1 999.9 84.7* 73.4* 1.70G 999.9 100000 724050 13743 19960906 76.7 24 72.5 24 1010.5 24 1008.1 24 7.3 24 18.1 24 33.0 40.0 80.6* 74.5* 0.36G 999.9 110000 724050 13743 19960907 79.3 23 69.2 23 1007.9 23 1005.5 23 15.4 23 12.8 23 17.1 999.9 87.8* 72.7* 1.19G 999.9 000000 724050 13743 19960908 77.1 24 70.5 24 1010.6 24 1008.2 24 12.4 24 6.5 24 11.1 19.0 89.6 70.3 0.00G 999.9 010010 724050 13743 19960909 76.4 24 70.7 24 1011.5 24 1009.0 24 7.7 24 5.6 24 11.1 999.9 89.6 69.1 0.00G 999.9 100000 724050 13743 19960910 78.5 24 70.3 24 1013.4 24 1011.0 24 7.4 24 5.8 24 10.1 999.9 88.3* 71.1* 0.00G 999.9 000000 724050 13743 19960911 73.4 24 71.3 24 1014.0 24 1011.6 24 4.9 24 5.4 24 8.9 999.9 77.7* 70.7* 1.15G 999.9 110010 724050 13743 19960912 72.3 24 68.0 24 1011.6 24 1009.2 21 6.2 24 5.9 24 8.9 999.9 76.3 69.6 0.87G 999.9 100000 724050 13743 19960913 70.0 24 64.3 24 1006.4 24 1004.1 23 10.6 24 6.8 24 20.0 999.9 77.5* 63.5* 0.82G 999.9 010010 724050 13743 19960914 64.9 24 52.2 24 1008.8 24 1006.4 24 13.9 24 7.0 24 13.0 16.9 77.9 56.3 0.02G 999.9 000000 724050 13743 19960915 65.8 24 53.6 24 1012.6 24 1010.2 24 13.5 24 6.6 24 12.0 999.9 75.4* 55.9* 0.00G 999.9 000000 724050 13743 19960916 64.8 24 60.2 24 1015.0 24 1012.6 24 9.6 24 4.1 24 8.9 999.9 76.3 55.6 0.07G 999.9 110000 724050 13743 19960917 66.6 24 63.4 24 1005.9 24 1003.5 24 6.7 24 6.6 24 15.0 999.9 70.5* 62.6* 0.85G 999.9 110000 724050 13743 19960918 66.2 24 56.2 24 1010.1 24 1007.7 24 18.0 24 14.1 24 19.0 26.0 72.9* 60.6* 0.01G 999.9 010000 724050 13743 19960919 68.1 24 52.5 24 1013.2 24 1010.8 24 16.4 24 13.2 24 17.1 19.0 76.1* 61.0* 0.00G 999.9 000000 724050 13743 19960920 66.4 24 52.4 24 1016.0 24 1013.6 24 14.3 24 6.1 24 10.1 999.9 77.9* 56.1* 0.00G 999.9 000000 724050 13743 19960921 65.0 24 57.8 24 1015.8 24 1013.4 24 14.6 24 5.1 24 10.1 999.9 78.6 55.6 0.00G 999.9 000000 724050 13743 19960922 68.7 24 60.8 24 1008.5 24 1006.1 24 10.4 24 8.1 24 15.0 999.9 77.5 56.5 0.63G 999.9 110000 724050 13743 19960923 67.0 24 53.4 24 1009.4 24 1007.0 24 18.2 24 11.5 24 20.0 22.0 78.3 59.7 0.00C 999.9 000000 724050 13743 19960924 63.8 24 56.6 24 1015.1 24 1012.7 24 11.2 24 6.1 24 13.0 999.9 72.9 58.6 0.00G 999.9 000000 724050 13743 19960925 66.0 24 53.8 24 1017.0 24 1014.6 24 13.3 24 7.6 24 14.0 15.0 72.3* 57.0* 0.00G 999.9 000000 724050 13743 19960926 61.2 24 54.0 24 1025.3 24 1022.9 24 14.3 24 5.0 24 8.9 999.9 72.7 52.9 0.00G 999.9 000000 724050 13743 19960927 68.8 24 61.4 24 1026.3 24 1023.8 24 12.0 24 8.0 24 12.0 999.9 78.3* 62.8* 0.06G 999.9 010000 724050 13743 19960928 71.2 24 66.8 24 1018.9 24 1016.4 24 12.2 24 10.8 24 18.1 22.9 78.3 62.4 0.00D 999.9 010000 724050 13743 19960929 61.8 24 54.3 24 1019.6 24 1017.2 24 13.5 24 6.8 24 15.0 19.0 68.4* 58.3* 0.68G 999.9 010000 724050 13743 19960930 63.2 24 53.6 24 1025.8 24 1023.4 24 15.9 24 4.8 24 10.1 999.9 73.6 52.2 0.00G 999.9 000000 724050 13743 19961001 65.2 24 57.5 24 1029.3 24 1026.8 4 12.2 24 5.1 24 8.9 999.9 75.9 52.2 0.00G 999.9 100000 724050 13743 19961002 65.4 24 61.3 24 1025.2 21 1023.7 6 8.7 24 5.4 24 12.0 999.9 76.3 55.8 0.39G 999.9 110000 724050 13743 19961003 64.9 24 55.7 24 1020.8 21 1017.1 4 11.8 24 10.2 24 20.0 999.9 69.8* 58.3* 0.27G 999.9 100000 724050 13743 19961004 50.2 24 33.4 24 1031.9 24 1028.5 5 15.2 24 11.6 24 15.9 16.9 66.9 43.2 0.00G 999.9 000000 724050 13743 19961005 50.3 24 39.8 24 1035.1 24 1032.6 5 16.8 24 5.7 24 10.1 12.0 61.2 41.2 0.00G 999.9 000000 724050 13743 19961006 54.4 24 45.2 24 1032.3 24 1030.5 7 14.9 24 6.0 24 11.1 999.9 64.4* 45.1* 0.00G 999.9 000000 724050 13743 19961007 56.2 24 49.6 24 1022.8 24 1019.9 7 12.4 24 5.2 24 8.0 999.9 66.4 45.0 0.00G 999.9 000000 724050 13743 19961008 58.9 24 56.4 24 1009.7 24 1007.2 24 6.8 24 11.7 24 21.0 28.0 66.6 46.6 0.81G 999.9 110000 724050 13743 19961009 59.4 24 52.5 24 1005.6 24 1003.2 24 14.5 24 7.1 24 17.1 999.9 68.2* 53.2* 0.68G 999.9 110000 724050 13743 19961010 58.4 24 46.2 23 1010.5 24 1008.1 24 13.4 24 9.3 24 18.1 25.1 60.8* 55.0* 0.28G 999.9 110000 724050 13743 19961011 52.4 24 38.8 24 1022.9 24 1020.5 24 13.3 24 8.7 24 13.0 999.9 61.5 33.8 0.00G 999.9 000000 724050 13743 19961012 51.1 24 43.9 24 1028.7 24 1026.3 24 16.1 24 4.8 24 10.1 999.9 61.2* 41.0* 0.00G 999.9 000000 724050 13743 19961013 56.8 24 51.2 24 1025.3 24 1022.9 24 14.3 24 5.8 24 10.1 999.9 71.4* 48.6* 0.00G 999.9 000000 724050 13743 19961014 64.2 24 53.6 24 1017.7 23 1015.3 23 14.5 24 8.2 24 14.0 999.9 77.5 48.6 0.00G 999.9 000000 724050 13743 19961015 59.7 24 43.1 24 1021.7 24 1019.3 24 14.3 24 6.0 24 10.1 999.9 70.7* 49.1* 0.00G 999.9 000000 724050 13743 19961016 61.4 23 52.7 23 1018.3 23 1015.9 23 10.1 23 6.7 23 8.9 999.9 74.7* 53.8* 0.00G 999.9 000000 724050 13743 19961017 67.6 24 61.0 24 1015.7 24 1013.3 21 5.9 24 4.4 24 7.0 999.9 80.6* 58.5* 0.00G 999.9 100000 724050 13743 19961018 66.9 24 62.6 24 1011.5 24 1009.1 24 5.6 24 5.1 24 15.0 999.9 71.6* 61.3* 0.13G 999.9 110000 724050 13743 19961019 51.0 24 44.8 24 1003.9 24 1001.5 24 10.8 24 14.6 24 24.1 28.0 72.9 33.6 1.62G 999.9 110000 724050 13743 19961020 49.8 24 44.8 24 1004.2 24 1001.9 24 11.5 23 8.2 24 15.0 999.9 56.1 33.3 0.12G 999.9 110000 724050 13743 19961021 52.4 24 44.7 24 1012.8 24 1010.4 23 16.3 24 6.8 24 12.0 999.9 61.0 44.2 0.10G 999.9 010000 724050 13743 19961022 58.1 24 53.1 24 1016.1 24 1013.7 23 13.2 24 3.3 24 8.0 999.9 64.6 44.2 0.00G 999.9 010000 724050 13743 19961023 60.9 24 57.2 24 1012.0 24 1009.6 24 9.9 24 5.7 24 12.0 999.9 72.5 51.6 0.00G 999.9 110000 724050 13743 19961024 61.9 24 50.4 24 1011.0 24 1008.6 24 12.5 24 7.3 24 11.1 16.9 70.5* 50.7* 0.01G 999.9 000000 724050 13743 19961025 58.5 24 48.7 24 1019.6 24 1017.2 24 12.9 24 4.4 24 8.0 999.9 65.8* 50.7* 0.00G 999.9 000000 724050 13743 19961026 61.6 24 53.0 24 1027.2 24 1025.1 22 13.6 24 5.0 24 8.9 999.9 72.1* 56.3* 0.00G 999.9 010000 724050 13743 19961027 63.4 24 57.9 24 1028.0 24 1025.3 23 12.0 24 5.5 24 10.1 999.9 72.1 56.1 0.00G 999.9 010000 724050 13743 19961028 63.9 24 59.2 24 1016.7 24 1014.5 23 8.9 24 8.0 24 13.0 999.9 73.0* 58.6* 0.00G 999.9 110000 724050 13743 19961029 56.9 24 41.9 24 1017.4 24 1015.0 23 14.8 24 7.1 24 12.0 999.9 73.2 47.5 0.00G 999.9 000000 724050 13743 19961030 64.3 24 53.7 24 1008.3 24 1005.9 24 11.6 24 12.0 24 21.0 27.0 82.0* 55.4* 0.00G 999.9 000000 724050 13743 19961031 66.4 24 38.9 24 1010.6 24 1008.3 23 14.4 24 10.0 24 17.1 19.0 82.2 55.9 0.00G 999.9 000000 724050 13743 19961101 54.7 24 35.0 24 1012.6 24 1010.2 22 13.2 24 6.4 24 10.1 999.9 72.1 48.6 0.01G 999.9 010000 724050 13743 19961102 48.1 24 30.0 24 1011.3 24 1008.8 24 13.2 24 10.1 24 17.1 22.9 58.8 45.9 0.00D 999.9 000000 724050 13743 19961103 42.4 24 22.7 24 1022.0 24 1019.6 24 14.3 24 9.9 24 17.1 22.9 52.2 34.3 0.00G 999.9 000000 724050 13743 19961104 44.0 24 28.6 24 1029.9 24 1027.3 23 14.0 24 5.7 24 12.0 999.9 57.2* 33.4* 0.00G 999.9 000000 724050 13743 19961105 52.3 24 37.6 24 1027.8 24 1025.4 24 13.4 24 7.0 24 10.1 999.9 63.1* 45.1* 0.00G 999.9 000000 724050 13743 19961106 56.3 24 50.3 24 1027.1 24 1024.6 22 9.2 24 5.1 24 8.0 999.9 64.9 44.6 0.00G 999.9 000000 724050 13743 19961107 62.8 24 60.4 24 1022.0 24 1019.6 24 8.9 24 7.3 24 13.0 999.9 69.8* 58.5* 0.00G 999.9 110000 724050 13743 19961108 65.8 24 64.0 24 1008.0 24 1005.6 24 9.5 24 11.8 24 20.0 29.9 71.6* 56.8* 0.20G 999.9 110010 724050 13743 19961109 51.5 24 37.2 24 1005.8 24 1003.2 21 12.3 24 9.1 24 18.1 19.0 71.6 33.8 0.02G 999.9 110000 724050 13743 19961110 42.1 24 30.4 24 1015.9 24 1013.4 23 13.5 24 7.5 24 11.1 999.9 56.3 34.9 0.01G 999.9 010000 724050 13743 19961111 39.4 24 22.9 24 1021.8 24 1019.4 24 14.3 24 9.4 24 15.9 22.0 49.6 33.3 0.00G 999.9 000000 724050 13743 19961112 37.2 24 19.0 24 1031.7 24 1029.4 21 14.5 24 11.1 24 15.9 18.1 43.3* 32.2* 0.00G 999.9 000000 724050 13743 19961113 35.7 24 18.3 24 1037.3 24 1034.9 22 13.5 24 8.8 24 13.0 999.9 44.4 28.6 0.00G 999.9 000000 724050 13743 19961114 36.7 24 27.0 24 1034.4 24 1031.9 24 8.1 24 7.6 24 14.0 999.9 40.1 28.6 0.07G 999.9 101000 724050 13743 19961115 34.9 24 21.6 24 1040.9 24 1038.5 24 13.7 24 9.5 24 12.0 999.9 43.7 29.1 0.01G 999.9 000000 724050 13743 19961116 35.8 24 22.9 24 1042.3 24 1039.9 24 13.8 24 3.8 24 8.0 999.9 46.2 26.6 0.00G 999.9 000000 724050 13743 19961117 39.0 24 28.1 24 1035.8 24 1033.3 24 13.8 24 3.9 24 10.1 999.9 52.5 26.6 0.00G 999.9 000000 724050 13743 19961118 45.5 24 36.7 24 1021.9 24 1019.5 24 9.6 24 4.8 24 10.1 999.9 56.3* 38.5* 0.00G 999.9 010000 724050 13743 19961119 50.4 24 42.5 24 1012.5 24 1010.1 24 8.9 24 8.0 24 13.0 999.9 56.7* 46.4* 0.08G 999.9 110000 724050 13743 19961120 46.2 24 30.3 24 1012.6 24 1010.3 23 13.5 24 10.6 24 15.9 999.9 57.9 41.0 0.00G 999.9 000000 724050 13743 19961121 39.8 24 24.9 24 1014.0 24 1011.6 24 12.8 24 8.5 24 14.0 999.9 50.0 36.0 0.00G 999.9 000000 724050 13743 19961122 41.1 24 29.8 24 1015.5 24 1013.1 24 12.4 24 11.9 24 15.9 26.0 46.8 32.4 0.00G 999.9 000000 724050 13743 19961123 41.0 24 27.1 24 1021.2 24 1018.8 24 15.4 24 9.2 24 15.0 999.9 48.0* 34.0* 0.00G 999.9 000000 724050 13743 19961124 42.9 24 31.8 24 1021.5 24 1019.0 23 14.5 24 5.0 24 8.0 999.9 53.2* 34.3* 0.00G 999.9 000000 724050 13743 19961125 46.2 24 38.7 24 1020.9 24 1018.5 23 10.1 24 4.6 24 8.0 999.9 53.4 34.0 0.00G 999.9 100000 724050 13743 19961126 53.4 24 49.2 24 1010.7 24 1008.3 24 8.4 24 10.8 24 25.1 35.9 63.0 32.5 0.62G 999.9 110010 724050 13743 19961127 38.2 24 19.9 24 1026.8 24 1024.2 23 17.3 24 16.7 24 22.0 26.0 42.4* 34.2* 0.42G 999.9 000000 724050 13743 19961128 31.2 24 18.1 24 1032.6 24 1030.1 24 14.1 24 8.3 24 14.0 999.9 40.8 26.1 0.00G 999.9 000000 724050 13743 19961129 34.9 24 24.4 24 1030.3 24 1027.8 24 11.4 24 5.5 24 8.9 999.9 43.9* 28.0* 0.00G 999.9 000000 724050 13743 19961130 38.7 24 32.3 24 1027.2 24 1024.8 24 10.7 24 7.0 24 12.0 999.9 44.6 27.9 0.00G 999.9 110000 724050 13743 19961201 49.4 24 48.8 24 1014.9 24 1012.5 24 4.5 24 10.2 24 19.0 28.9 60.8* 41.0* 0.90G 999.9 110000 724050 13743 19961202 51.9 24 41.5 24 1009.7 24 1007.3 24 12.8 24 12.2 24 20.0 25.1 63.1 32.9 0.74G 999.9 110000 724050 13743 19961203 41.7 24 33.1 24 1021.1 24 1018.7 24 13.8 24 5.3 24 13.0 999.9 59.0 33.6 0.20G 999.9 000000 724050 13743 19961204 44.9 24 35.3 24 1020.6 24 1018.3 24 13.5 24 9.4 24 17.1 23.9 51.3 33.6 0.00G 999.9 000000 724050 13743 19961205 39.5 24 33.3 24 1024.0 24 1021.6 24 10.2 24 6.9 24 12.0 999.9 50.2 33.1 0.00G 999.9 100000 724050 13743 19961206 42.0 24 34.5 24 1009.3 24 1007.1 23 11.4 24 10.3 24 24.1 27.0 46.6 32.0 0.94G 999.9 110000 724050 13743 19961207 41.1 24 33.5 24 1009.5 24 1006.6 19 10.1 24 6.8 24 15.0 999.9 46.8 36.1 0.16G 999.9 110000 724050 13743 19961208 40.4 24 32.5 24 1005.9 24 1003.5 24 8.6 24 8.1 24 14.0 999.9 53.1* 31.5* 0.29G 999.9 110000 724050 13743 19961209 38.8 24 27.7 24 1010.7 24 1008.4 24 14.4 24 11.5 24 19.0 27.0 53.1 31.1 0.00G 999.9 010000 724050 13743 19961210 38.8 24 25.4 24 1020.4 24 1017.9 24 15.2 24 8.4 24 13.0 999.9 45.9 32.4 0.00G 999.9 000000 724050 13743 19961211 42.7 24 34.8 24 1013.9 24 1011.5 24 10.9 24 5.6 24 8.9 999.9 45.9 32.4 0.03G 999.9 110000 724050 13743 19961212 44.8 24 43.3 24 1016.8 24 1014.3 24 3.2 24 6.3 24 9.9 999.9 49.8 40.3 0.05G 999.9 110000 724050 13743 19961213 50.9 24 50.3 24 1016.7 24 1014.3 23 4.4 24 10.3 24 20.0 999.9 53.6* 47.3* 1.53G 999.9 110000 724050 13743 19961214 45.1 24 39.1 24 1021.9 24 1019.4 23 13.1 24 18.9 24 22.9 28.9 52.9 33.3 0.38G 999.9 010000 724050 13743 19961215 43.2 24 34.8 24 1028.5 24 1026.1 24 14.2 24 13.2 24 20.0 999.9 51.6 37.0 0.00G 999.9 000000 724050 13743 19961216 45.0 24 41.4 24 1025.3 24 1022.8 24 10.1 24 5.4 24 12.0 999.9 51.6 37.0 0.00G 999.9 100000 724050 13743 19961217 46.2 24 45.6 24 1014.6 24 1012.3 23 5.4 24 6.5 24 16.9 999.9 51.8* 44.2* 0.04G 999.9 110000 724050 13743 19961218 49.5 24 46.1 24 1013.0 24 1010.6 24 9.5 24 7.8 24 18.1 20.0 53.2 44.4 0.02G 999.9 100000 724050 13743 19961219 40.7 24 37.5 24 1011.9 24 1009.5 24 6.7 24 10.9 24 15.9 21.0 47.7* 32.0* 0.26G 999.9 111000 724050 13743 19961220 26.2 24 10.6 24 1021.9 24 1019.4 24 13.4 24 10.9 24 21.0 30.9 43.7 20.7 0.01G 0.4 101000 724050 13743 19961221 26.0 24 11.6 24 1034.3 24 1032.1 22 15.8 24 7.2 24 12.0 999.9 34.0 19.8 0.00G 0.4 000000 724050 13743 19961222 33.5 24 21.0 24 1031.4 24 1028.9 24 15.1 24 6.7 24 11.1 16.9 42.1* 27.7* 0.00G 999.9 000000 724050 13743 19961223 42.0 24 30.3 24 1026.1 24 1023.6 24 12.9 24 2.8 24 8.0 13.0 53.2* 37.0* 0.00G 999.9 010000 724050 13743 19961224 52.6 24 46.2 24 1014.8 24 1012.3 24 13.2 24 11.3 24 22.0 26.0 61.0* 45.1* 0.00G 999.9 110000 724050 13743 19961225 38.4 24 22.6 24 1021.0 24 1018.6 24 16.7 24 10.9 24 15.9 26.0 61.7 29.5 0.02G 999.9 010000 724050 13743 19961226 34.7 24 25.2 24 1030.7 24 1028.4 24 11.2 24 3.3 24 8.9 999.9 41.5 29.5 0.00G 999.9 000000 724050 13743 19961227 42.4 24 32.0 24 1025.1 24 1022.7 24 7.7 24 2.8 24 8.0 999.9 53.4* 37.2* 0.09G 999.9 110000 724050 13743 19961228 45.8 24 36.8 24 1023.2 24 1020.8 24 10.6 24 5.0 24 8.9 999.9 54.1 36.5 0.07G 999.9 100000 724050 13743 19961229 56.5 24 51.9 24 1017.4 24 1014.9 21 7.6 24 6.5 24 8.9 999.9 65.8* 50.0* 0.08G 999.9 111000 724050 13743 19961230 56.5 24 46.3 24 1021.5 24 1019.1 24 12.2 24 5.2 24 13.0 999.9 65.8 46.9 0.00D 999.9 000000 724050 13743 19961231 47.6 24 43.0 24 1020.4 24 1018.0 24 7.5 24 7.6 24 15.9 999.9 63.0 44.2 0.00G 999.9 110000 fluids-1.0.22/tests/gsod/2010/0000755000175000017500000000000014302004506015062 5ustar nileshnileshfluids-1.0.22/tests/gsod/2010/724050-13743.op0000644000175000017500000014327214302004506016653 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 20100101 37.5 24 31.5 24 1015.3 20 1013.3 24 6.5 24 4.2 24 18.1 24.1 44.1 32.0 0.16G 999.9 010000 724050 13743 20100102 28.7 24 9.6 24 1013.9 24 1011.6 24 10.0 24 16.9 24 27.0 36.9 44.1 24.1 0.00G 999.9 000000 724050 13743 20100103 21.5 24 1.2 24 1013.1 24 1010.9 24 10.0 24 17.9 24 26.0 40.0 30.0 16.0 0.00G 999.9 000000 724050 13743 20100104 26.9 24 8.2 24 1012.1 24 1009.9 24 10.0 24 11.4 24 15.9 28.0 34.0 17.1 0.00G 999.9 000000 724050 13743 20100105 30.2 24 11.9 24 1012.3 24 1010.0 24 10.0 24 10.7 24 15.0 25.1 37.0 23.0 0.00G 999.9 001000 724050 13743 20100106 32.0 24 14.2 24 1012.6 24 1010.3 24 10.0 24 12.0 24 18.1 29.9 39.0 27.0 0.00G 999.9 001000 724050 13743 20100107 32.9 24 16.3 24 1016.4 24 1014.2 24 10.0 24 9.1 24 13.0 25.1 39.0 28.9 0.00G 999.9 000000 724050 13743 20100108 30.0 24 17.4 24 1012.9 20 1010.2 24 8.2 24 8.2 24 20.0 31.1 39.0 26.1 0.03G 1.2 101000 724050 13743 20100109 28.1 24 10.6 24 1020.1 24 1017.8 24 10.0 24 10.4 24 17.1 26.0 36.0 23.0 0.00I 1.2 000000 724050 13743 20100110 26.2 24 6.2 24 1026.7 24 1024.4 24 10.0 24 11.1 24 15.0 19.0 36.0 19.0 0.00G 999.9 000000 724050 13743 20100111 27.0 24 7.6 24 1024.9 24 1022.6 24 10.0 24 5.8 24 8.9 14.0 36.0 19.9 0.00G 999.9 000000 724050 13743 20100112 31.8 24 15.3 24 1021.8 24 1019.6 24 10.0 24 10.3 24 15.9 21.0 36.0 21.0 0.00G 999.9 000000 724050 13743 20100113 33.9 24 15.9 24 1025.2 24 1022.9 24 10.0 24 7.0 24 13.0 20.0 44.1 27.0 0.00G 999.9 000000 724050 13743 20100114 35.8 24 21.3 24 1024.3 24 1022.0 24 9.9 24 2.3 24 7.0 999.9 50.0 26.1 0.00G 999.9 000000 724050 13743 20100115 39.1 24 25.5 24 1023.3 24 1021.0 24 10.0 24 3.7 24 9.9 14.0 57.0 26.2 0.00G 999.9 000000 724050 13743 20100116 41.5 24 32.9 24 1024.3 24 1022.0 24 8.6 24 5.5 24 15.0 999.9 57.0 28.2 0.00G 999.9 000000 724050 13743 20100117 40.7 24 35.7 24 1015.5 21 1012.1 24 5.7 24 4.8 24 11.1 999.9 52.0 32.0 0.01G 999.9 010000 724050 13743 20100118 46.0 24 37.0 24 1008.8 18 1004.8 24 9.1 24 10.7 24 15.0 21.0 55.9 37.0 0.67G 999.9 010000 724050 13743 20100119 43.4 24 34.1 24 1013.3 24 1011.1 24 9.4 24 4.5 24 8.9 999.9 60.1 33.1 0.00G 999.9 010000 724050 13743 20100120 40.9 24 29.1 24 1014.8 22 1012.5 24 9.5 24 6.3 24 8.9 999.9 60.1 33.1 0.02G 999.9 011000 724050 13743 20100121 37.9 24 23.3 24 1021.0 24 1018.7 24 10.0 24 6.9 24 9.9 999.9 44.1 30.9 0.01G 999.9 000000 724050 13743 20100122 38.3 24 28.4 24 1014.4 17 1012.3 24 9.8 24 9.5 24 13.0 18.1 44.1 31.1 0.11G 999.9 011000 724050 13743 20100123 38.7 24 23.8 24 1021.9 24 1019.7 24 10.0 24 4.6 24 8.0 999.9 46.9 30.9 0.03G 999.9 000000 724050 13743 20100124 39.3 24 31.5 24 1019.5 23 1017.4 24 9.4 24 4.1 24 8.0 999.9 46.9 32.0 0.00G 999.9 010000 724050 13743 20100125 58.6 24 50.4 24 998.6 20 994.9 24 9.1 24 13.2 24 22.9 36.9 68.0 37.0 0.36G 999.9 010000 724050 13743 20100126 43.8 24 25.9 24 1004.7 24 1002.4 24 10.0 24 9.5 24 15.0 24.1 51.1* 39.0* 0.02G 999.9 000000 724050 13743 20100127 37.6 24 19.0 24 1018.8 23 1016.6 24 10.0 24 8.3 24 14.0 21.0 46.0 30.9 0.00G 999.9 000000 724050 13743 20100128 41.1 24 23.4 24 1019.4 24 1017.1 24 10.0 24 7.4 24 22.0 28.0 54.0 31.1 0.00G 999.9 000000 724050 13743 20100129 25.3 24 3.1 24 1027.6 24 1025.4 24 10.0 24 13.7 24 22.9 32.1 54.0 19.9 0.00G 999.9 000000 724050 13743 20100130 21.3 24 5.4 24 1026.9 16 1022.7 24 6.6 24 11.0 24 17.1 999.9 26.1* 17.6* 0.00G 5.9 001000 724050 13743 20100131 22.3 24 4.9 24 1021.5 19 1018.2 24 8.3 24 9.3 24 15.9 19.0 33.1 16.0 0.13G 3.9 001000 724050 13743 20100201 29.3 24 11.4 24 1025.9 24 1023.7 24 10.0 24 5.0 24 12.0 17.1 39.0 16.0 0.00G 2.0 000000 724050 13743 20100202 32.8 24 21.1 24 1023.6 24 1021.3 24 10.0 24 2.8 24 8.0 999.9 41.0 19.9 0.00G 1.2 001000 724050 13743 20100203 35.3 24 29.1 24 1019.7 16 1017.0 24 4.3 24 5.2 24 8.9 14.0 42.1 27.0 0.26G 1.2 101000 724050 13743 20100204 36.7 24 19.4 24 1027.8 24 1025.5 24 10.0 24 7.3 24 13.0 15.9 42.1 30.9 0.06G 1.2 000000 724050 13743 20100205 34.8 24 25.6 24 1026.7 17 1023.3 24 7.2 24 3.0 24 11.1 999.9 41.0 31.1 0.00G 2.0 111000 724050 13743 20100206 29.7 24 26.6 24 1005.9 18 1003.3 24 0.9 24 16.1 24 22.0 29.9 37.0 26.1 0.92G 18.1 001000 724050 13743 20100207 23.5 24 11.8 24 1014.8 24 1012.5 24 9.9 24 7.7 24 11.1 999.9 32.0 16.0 0.07G 14.2 000000 724050 13743 20100208 27.0 24 11.8 24 1020.1 24 1017.9 24 10.0 24 7.9 24 14.0 21.0 34.0 16.0 0.00G 13.0 000000 724050 13743 20100209 28.9 24 15.9 24 1020.2 23 1017.6 24 9.5 24 2.5 24 7.0 999.9 36.0 21.0 0.00G 13.0 101000 724050 13743 20100210 27.1 24 22.7 24 1003.8 6 997.5 24 1.9 24 11.8 24 24.1 39.0 30.9* 19.4* 0.52G 22.0 111000 724050 13743 20100211 32.5 24 18.5 24 1006.7 23 1003.6 24 8.6 24 16.4 24 22.0 38.1 39.9 19.9 0.02G 18.1 001000 724050 13743 20100212 32.9 24 16.7 24 1013.4 24 1011.1 24 10.0 24 7.4 24 13.0 17.1 39.9 28.9 0.00G 16.1 000000 724050 13743 20100213 31.2 24 15.5 24 1008.1 24 1005.9 24 10.0 24 9.8 24 18.1 22.9 37.9 28.0 0.00G 14.2 000000 724050 13743 20100214 31.4 24 14.3 24 1008.4 24 1006.1 24 10.0 24 10.2 24 22.0 28.9 41.0 21.0 0.00G 13.0 000000 724050 13743 20100215 30.6 24 20.0 24 1011.3 19 1007.8 24 8.7 24 3.6 24 11.1 999.9 41.0 19.0 0.00G 11.8 011000 724050 13743 20100216 32.8 24 18.8 24 1004.4 24 1002.0 24 8.7 24 10.0 24 19.0 31.1 39.0 19.2 0.04G 9.8 011000 724050 13743 20100217 31.5 24 16.2 24 1006.9 24 1004.7 24 10.0 24 8.7 24 15.0 22.0 37.0 25.0 0.00G 9.1 000000 724050 13743 20100218 38.0 24 21.2 24 1007.3 24 1005.0 24 10.0 24 11.9 24 19.0 35.0 43.0 25.2 0.00G 7.1 000000 724050 13743 20100219 39.6 24 21.7 24 1013.7 24 1011.4 24 10.0 24 12.0 24 19.0 26.0 45.0 34.0 0.00G 5.9 000000 724050 13743 20100220 39.5 24 19.1 24 1019.2 24 1016.9 24 10.0 24 9.7 24 15.9 22.9 45.0 35.1 0.00G 5.1 000000 724050 13743 20100221 40.7 24 21.6 24 1018.9 24 1016.6 24 10.0 24 5.8 24 15.0 20.0 50.0 30.0 0.00G 2.0 000000 724050 13743 20100222 40.6 24 29.5 24 1013.8 24 1011.5 24 9.6 24 4.0 24 8.9 999.9 50.0 30.2 0.00G 1.2 010000 724050 13743 20100223 39.1 24 33.9 24 1007.9 20 1005.6 24 7.3 24 9.7 24 14.0 999.9 45.0* 35.6* 0.27G 1.2 010000 724050 13743 20100224 41.5 24 28.1 24 1010.1 24 1007.7 24 10.0 24 7.9 24 13.0 18.1 46.9 37.0 0.00G 999.9 000000 724050 13743 20100225 39.1 24 25.3 24 1004.4 23 1002.3 24 9.9 24 11.9 24 24.1 35.9 46.9 35.1 0.01G 999.9 011000 724050 13743 20100226 34.3 24 15.1 24 998.1 24 995.9 24 10.0 24 19.1 24 27.0 42.0 43.0 30.0 0.00B 999.9 000000 724050 13743 20100227 37.6 24 21.8 24 1003.1 24 1000.7 24 9.5 24 9.1 24 15.0 22.0 46.9 30.2 0.00G 999.9 001000 724050 13743 20100228 40.5 24 22.2 24 1005.6 24 1003.3 24 10.0 24 9.4 24 18.1 24.1 46.9 31.1 0.01G 999.9 010000 724050 13743 20100301 42.4 24 26.2 24 1012.2 24 1010.0 24 10.0 24 11.2 24 21.0 28.0 50.0 37.0 0.00G 999.9 010000 724050 13743 20100302 40.8 24 26.8 24 1013.7 24 1011.5 24 10.0 24 6.6 24 12.0 15.9 50.0 37.0 0.00G 999.9 010000 724050 13743 20100303 38.8 24 32.5 24 1004.1 20 1002.0 24 9.3 24 13.0 24 17.1 22.9 42.8* 35.6* 0.06G 999.9 011000 724050 13743 20100304 41.4 24 22.8 24 1008.2 24 1005.9 24 10.0 24 13.3 24 18.1 29.9 48.0 35.1 0.00G 999.9 010000 724050 13743 20100305 41.9 24 17.1 24 1015.8 24 1013.5 24 10.0 24 13.1 24 19.0 24.1 52.0 36.0 0.00G 999.9 000000 724050 13743 20100306 42.7 24 14.7 24 1022.3 24 1020.0 24 10.0 24 11.3 24 14.0 20.0 54.0 33.1 0.00G 999.9 000000 724050 13743 20100307 47.4 24 11.9 24 1021.7 24 1019.3 24 10.0 24 8.9 24 12.0 18.1 59.0 33.1 0.00G 999.9 000000 724050 13743 20100308 49.1 24 15.0 24 1017.0 24 1014.6 24 10.0 24 6.8 24 12.0 19.0 62.1 37.0 0.00G 999.9 000000 724050 13743 20100309 52.5 24 20.3 24 1016.1 24 1013.7 24 10.0 24 4.5 24 12.0 19.0 64.0 37.0 0.00G 999.9 000000 724050 13743 20100310 52.0 24 33.6 24 1014.7 24 1012.4 24 10.0 24 2.9 24 7.0 18.1 64.9 39.0 0.00G 999.9 000000 724050 13743 20100311 53.4 24 44.6 24 1014.5 24 1012.1 24 8.0 24 5.8 24 9.9 999.9 64.9 43.0 0.00G 999.9 000000 724050 13743 20100312 53.1 24 48.7 24 1012.8 16 1010.3 24 6.7 24 8.4 24 17.1 18.1 64.9 46.0 0.50G 999.9 010000 724050 13743 20100313 51.7 24 47.9 24 1000.2 10 997.4 24 5.5 24 14.1 24 27.0 34.0 55.4* 48.0* 0.38G 999.9 010000 724050 13743 20100314 50.3 24 46.6 24 997.0 18 994.8 24 8.4 24 6.5 24 11.1 999.9 55.0 48.0 0.61G 999.9 010000 724050 13743 20100315 48.7 24 42.3 24 1004.0 19 1001.4 24 9.0 24 11.5 24 17.1 22.0 52.0 46.0 0.05G 999.9 010000 724050 13743 20100316 51.6 24 32.8 24 1014.3 21 1011.7 24 10.0 24 11.1 24 17.1 21.0 64.0 46.0 0.03G 999.9 010000 724050 13743 20100317 54.0 24 30.5 24 1017.1 24 1014.7 24 10.0 24 2.4 24 6.0 999.9 68.0 41.0 0.00G 999.9 000000 724050 13743 20100318 55.9 24 30.6 24 1012.2 24 1010.0 24 9.9 24 3.4 24 8.9 15.9 71.1 41.0 0.00G 999.9 000000 724050 13743 20100319 58.3 24 33.5 24 1011.6 24 1009.4 24 10.0 24 4.0 24 8.9 15.9 73.0 41.0 0.00G 999.9 000000 724050 13743 20100320 59.2 24 36.4 24 1015.9 24 1013.6 24 10.0 24 3.8 24 11.1 999.9 73.9 44.1 0.00G 999.9 000000 724050 13743 20100321 60.9 24 40.4 24 1016.4 24 1014.1 24 10.0 24 5.8 24 14.0 999.9 75.9 46.0 0.00G 999.9 000000 724050 13743 20100322 61.9 24 52.7 24 1010.5 20 1008.2 24 9.4 24 7.1 24 17.1 22.0 75.9 48.9 0.00G 999.9 010010 724050 13743 20100323 51.2 24 38.3 24 1002.7 24 1000.4 24 10.0 24 9.8 24 18.1 28.9 64.9 45.0 0.53G 999.9 010000 724050 13743 20100324 55.4 24 33.0 24 1012.5 24 1010.1 24 10.0 24 10.7 24 19.0 27.0 68.0 45.0 0.01G 999.9 000000 724050 13743 20100325 58.5 24 37.9 24 1013.8 24 1011.5 24 10.0 24 7.1 24 22.0 32.1 73.9 46.9 0.00G 999.9 010000 724050 13743 20100326 52.3 24 40.1 24 1008.2 20 1004.8 24 8.5 24 11.3 24 28.9 45.1 73.9 43.0 0.26G 999.9 010000 724050 13743 20100327 41.0 24 16.9 24 1025.2 24 1022.9 24 10.0 24 9.1 24 15.9 21.0 55.9 33.1 0.08G 999.9 000000 724050 13743 20100328 46.6 24 36.3 24 1022.8 24 1020.5 24 10.0 24 6.9 24 20.0 28.9 62.6* 37.4* 0.00G 999.9 010000 724050 13743 20100329 54.0 24 49.2 24 1007.8 18 1005.5 24 6.1 24 6.0 24 18.1 28.9 62.1 37.9 0.87G 999.9 010000 724050 13743 20100330 51.8 24 36.6 24 1005.1 23 1002.8 24 10.0 24 14.1 24 22.0 32.1 57.0 45.0 0.15G 999.9 010000 724050 13743 20100331 57.0 24 29.4 24 1009.9 24 1007.6 24 10.0 24 15.1 24 25.1 41.0 71.1 45.0 0.02G 999.9 010000 724050 13743 20100401 59.9 24 40.0 24 1018.0 24 1015.8 23 10.0 24 3.3 24 8.0 18.1 73.9 46.0 0.00G 999.9 000000 724050 13743 20100402 62.8 24 45.8 24 1019.4 24 1017.1 24 10.0 24 3.9 24 9.9 999.9 77.0 46.0 0.00G 999.9 000000 724050 13743 20100403 59.3 24 47.9 24 1019.3 23 1017.2 24 10.0 24 5.6 24 11.1 999.9 77.0 48.9 0.00G 999.9 000000 724050 13743 20100404 64.7 24 48.1 24 1019.2 24 1016.9 24 10.0 24 4.5 24 8.0 999.9 77.0 48.9 0.00G 999.9 000000 724050 13743 20100405 66.9 24 50.9 24 1019.0 24 1016.7 24 10.0 24 4.4 24 8.9 999.9 82.9 54.0 0.00G 999.9 000000 724050 13743 20100406 73.6 24 54.9 24 1013.0 24 1010.6 24 10.0 24 7.0 24 14.0 20.0 90.0 55.0 0.00G 999.9 000000 724050 13743 20100407 77.5 24 50.2 24 1008.3 24 1006.0 24 10.0 24 9.6 24 15.0 18.1 90.0 62.1 0.00G 999.9 000000 724050 13743 20100408 77.1 24 51.8 24 1005.2 23 1002.7 24 10.0 24 13.1 24 38.1 51.1 90.0 63.0 0.00G 999.9 010010 724050 13743 20100409 56.7 24 39.9 24 1009.5 22 1006.6 24 9.4 24 13.4 24 26.0 51.1 82.9 50.0 0.69G 999.9 010010 724050 13743 20100410 52.7 24 28.0 24 1023.2 24 1020.9 24 10.0 24 6.7 24 14.0 21.0 66.0 43.0 0.07G 999.9 000000 724050 13743 20100411 59.5 24 38.9 24 1025.0 24 1022.7 24 10.0 24 5.6 24 9.9 999.9 75.9 43.0 0.00G 999.9 000000 724050 13743 20100412 65.0 24 36.8 24 1025.4 24 1023.2 24 9.9 24 5.1 24 9.9 999.9 75.9 46.0 0.00G 999.9 000000 724050 13743 20100413 54.6 24 38.0 24 1028.9 21 1027.0 24 9.5 24 7.6 24 17.1 999.9 64.9* 48.2* 0.00G 999.9 010000 724050 13743 20100414 52.4 24 40.1 24 1034.0 19 1032.1 24 8.9 24 4.5 24 8.0 999.9 63.0* 44.6* 0.12G 999.9 000000 724050 13743 20100415 57.2 24 42.6 24 1028.4 24 1026.0 24 10.0 24 6.1 24 9.9 999.9 73.0 44.1 0.00G 999.9 000000 724050 13743 20100416 70.1 24 49.6 24 1015.5 24 1013.2 24 10.0 24 8.3 24 28.9 39.0 84.9 44.1 0.00G 999.9 010000 724050 13743 20100417 64.2 24 39.9 24 1009.2 24 1006.7 24 10.0 24 14.9 24 25.1 34.0 84.9 52.0 0.00G 999.9 010000 724050 13743 20100418 49.0 24 29.7 24 1015.9 24 1013.6 24 10.0 24 11.8 24 28.0 32.1 66.0 41.0 0.00G 999.9 000000 724050 13743 20100419 54.4 24 33.4 24 1017.6 24 1015.3 24 10.0 24 10.4 24 15.0 22.0 66.0 41.0 0.00G 999.9 000000 724050 13743 20100420 57.9 24 37.0 24 1016.0 24 1013.6 24 9.9 24 3.5 24 8.0 999.9 69.1 46.0 0.00G 999.9 000000 724050 13743 20100421 56.2 24 46.8 24 1011.1 17 1008.3 24 8.5 24 4.3 24 8.0 999.9 69.1 46.9 0.00G 999.9 010000 724050 13743 20100422 60.0 24 46.4 24 1008.2 17 1006.0 24 6.4 24 4.4 24 14.0 20.0 73.9 50.0 0.22G 999.9 100000 724050 13743 20100423 63.2 24 40.7 24 1011.5 24 1009.2 24 10.0 24 5.9 24 12.0 19.0 73.9 50.0 0.00G 999.9 000000 724050 13743 20100424 58.5 24 39.8 24 1017.8 24 1015.5 24 10.0 24 4.7 24 11.1 999.9 73.0 53.1 0.00G 999.9 010000 724050 13743 20100425 60.7 24 53.0 24 1004.2 20 1001.2 24 8.0 24 6.0 24 17.1 21.0 77.0 53.1 0.14G 999.9 010000 724050 13743 20100426 56.8 24 52.3 24 993.1 14 990.9 24 8.3 24 5.9 24 22.0 27.0 77.0 53.1 0.06G 999.9 010010 724050 13743 20100427 58.8 24 45.2 24 995.2 22 992.3 24 9.1 24 10.0 24 18.1 24.1 64.9 54.0 0.27G 999.9 010000 724050 13743 20100428 51.3 24 26.8 24 1007.1 24 1004.7 24 10.0 24 11.5 24 19.0 28.9 64.9 43.0 0.00G 999.9 000000 724050 13743 20100429 57.5 24 28.4 24 1014.1 24 1011.8 24 10.0 24 7.5 24 15.0 22.0 72.0 43.0 0.00G 999.9 000000 724050 13743 20100430 64.5 24 44.3 24 1012.2 24 1009.9 24 10.0 24 5.3 24 13.0 999.9 82.9 44.1 0.00G 999.9 000000 724050 13743 20100501 72.2 24 55.8 24 1010.5 24 1008.2 24 10.0 24 7.6 24 15.0 18.1 88.0 55.0 0.00G 999.9 000000 724050 13743 20100502 77.7 24 65.9 24 1010.6 24 1008.2 24 10.0 24 9.2 24 15.9 22.0 88.0 61.0 0.00G 999.9 010000 724050 13743 20100503 78.1 24 67.2 24 1008.8 23 1006.5 24 9.4 24 10.1 24 14.0 22.9 87.1 71.1 0.21G 999.9 010000 724050 13743 20100504 75.5 24 57.4 24 1010.7 24 1008.3 24 9.9 24 6.6 24 15.0 21.0 84.0 69.1 0.02G 999.9 000000 724050 13743 20100505 72.7 24 48.8 24 1013.9 24 1011.6 24 10.0 24 4.5 24 12.0 999.9 84.0 59.0 0.00G 999.9 000000 724050 13743 20100506 75.4 24 53.8 24 1009.8 24 1007.5 24 10.0 24 9.9 24 17.1 25.1 84.0 59.0 0.00G 999.9 000000 724050 13743 20100507 68.8 24 41.7 24 1015.4 24 1013.1 24 10.0 24 8.0 24 13.0 18.1 84.0 59.0 0.00G 999.9 000000 724050 13743 20100508 71.8 24 47.6 24 1004.9 24 1002.4 24 9.9 24 14.0 24 22.9 41.0 79.0 59.0 0.00G 999.9 010000 724050 13743 20100509 56.9 24 30.1 24 1017.0 24 1014.6 24 10.0 24 15.1 24 22.0 33.0 79.0 48.9 0.00G 999.9 000000 724050 13743 20100510 54.3 24 26.1 24 1026.2 24 1023.9 24 10.0 24 10.7 24 17.1 22.0 66.0 43.0 0.00G 999.9 000000 724050 13743 20100511 53.5 24 35.1 24 1028.7 24 1026.6 24 9.8 24 7.1 24 15.9 21.0 66.0 43.0 0.00G 999.9 010000 724050 13743 20100512 64.2 24 53.7 24 1019.3 21 1016.8 24 9.8 24 7.9 24 15.9 21.0 79.0 46.0 0.11G 999.9 010000 724050 13743 20100513 56.9 24 48.7 24 1025.5 24 1023.1 24 8.7 24 5.7 24 12.0 999.9 63.0* 52.0* 0.00G 999.9 000000 724050 13743 20100514 69.0 24 58.2 24 1021.9 20 1019.5 24 8.8 24 10.3 24 19.0 24.1 89.1 52.0 0.00G 999.9 010110 724050 13743 20100515 72.8 24 51.6 24 1019.2 24 1016.8 24 10.0 24 9.0 24 15.9 22.0 89.1 59.0 0.14G 999.9 010010 724050 13743 20100516 68.3 24 49.3 24 1020.8 24 1018.5 24 10.0 24 3.9 24 8.9 999.9 79.0 62.1 0.00G 999.9 000000 724050 13743 20100517 61.8 24 51.4 24 1021.4 21 1019.0 24 9.1 24 4.4 24 13.0 999.9 75.9 55.0 0.03G 999.9 010000 724050 13743 20100518 54.8 24 49.6 24 1015.5 18 1013.5 24 7.7 24 10.6 24 14.0 19.0 57.2* 51.8* 0.47G 999.9 010000 724050 13743 20100519 58.1 24 48.4 24 1013.5 23 1011.1 24 9.7 24 6.9 24 13.0 15.0 68.0 51.1 0.13G 999.9 000000 724050 13743 20100520 67.0 24 50.8 24 1015.7 24 1013.4 24 10.0 24 4.8 24 8.0 15.0 82.9 51.1 0.00G 999.9 000000 724050 13743 20100521 71.7 24 54.2 24 1019.4 24 1017.1 24 9.9 24 4.6 24 8.9 999.9 86.0 54.0 0.00G 999.9 000000 724050 13743 20100522 71.2 24 56.7 24 1020.0 24 1017.7 24 9.8 24 7.6 24 13.0 19.0 86.0 57.9 0.00G 999.9 010000 724050 13743 20100523 69.8 24 63.4 24 1019.2 20 1016.9 24 9.0 24 7.7 24 12.0 999.9 78.1 64.0 0.69G 999.9 010010 724050 13743 20100524 70.1 24 61.2 24 1022.3 18 1020.0 24 10.0 24 5.2 24 9.9 34.0 79.0 66.0 0.01G 999.9 010000 724050 13743 20100525 71.7 24 62.2 24 1022.5 21 1020.4 24 9.5 24 5.3 24 8.9 999.9 81.0 66.0 0.00G 999.9 010000 724050 13743 20100526 75.5 24 61.1 24 1015.4 24 1013.1 24 10.0 24 3.3 24 9.9 999.9 90.0 63.0 0.00G 999.9 000000 724050 13743 20100527 81.2 24 65.0 24 1008.5 24 1006.2 24 9.9 24 4.4 24 9.9 999.9 93.0 63.0 0.00G 999.9 000000 724050 13743 20100528 73.2 24 61.0 24 1012.7 18 1010.4 24 9.6 24 6.7 24 19.0 24.1 93.0 66.0 0.30G 999.9 010010 724050 13743 20100529 71.0 24 62.7 24 1013.8 23 1011.6 24 9.7 24 4.6 24 8.9 999.9 79.0 66.0 0.29G 999.9 010000 724050 13743 20100530 77.9 24 63.2 24 1013.2 24 1010.9 24 9.3 24 4.3 24 8.9 999.9 89.1 66.0 0.00G 999.9 000000 724050 13743 20100531 80.4 24 65.7 24 1014.7 24 1012.4 24 9.1 24 6.2 24 14.0 19.0 91.0 68.0 0.00G 999.9 000000 724050 13743 20100601 79.4 24 65.4 24 1012.2 23 1009.7 24 9.6 24 10.5 24 14.0 20.0 91.0 73.0 0.00G 999.9 010010 724050 13743 20100602 79.8 24 64.5 24 1010.9 24 1008.3 24 10.0 24 4.9 24 11.1 17.1 89.1 71.1 0.06G 999.9 000000 724050 13743 20100603 80.3 24 66.9 24 1007.5 20 1005.2 24 9.5 24 7.1 24 24.1 35.0 91.0* 71.6* 0.00G 999.9 010010 724050 13743 20100604 77.6 24 67.0 24 1009.8 24 1007.5 24 10.0 24 5.6 24 11.1 999.9 91.9 70.0 0.33G 999.9 000000 724050 13743 20100605 81.7 24 67.7 24 1008.7 24 1006.4 24 9.9 24 6.8 24 12.0 999.9 91.0 70.0 0.00G 999.9 000000 724050 13743 20100606 81.4 24 67.7 24 1003.7 24 1001.3 24 9.9 24 9.0 24 25.1 35.9 91.0 73.0 0.00G 999.9 010000 724050 13743 20100607 72.0 24 51.7 24 1010.4 24 1008.1 24 10.0 24 10.4 24 15.9 22.0 91.0 63.0 0.03G 999.9 000000 724050 13743 20100608 70.2 24 44.8 24 1018.5 24 1016.2 24 10.0 24 8.3 24 12.0 21.0 79.0 60.1 0.00G 999.9 000000 724050 13743 20100609 70.1 24 53.2 24 1018.0 23 1015.6 24 10.0 24 7.1 24 15.9 22.0 79.0 60.1 0.00G 999.9 010000 724050 13743 20100610 78.8 24 61.5 24 1011.3 24 1008.9 24 9.5 24 7.6 24 13.0 25.1 90.0 66.0 0.11G 999.9 000000 724050 13743 20100611 77.2 24 56.0 24 1018.0 24 1015.7 24 10.0 24 5.6 24 9.9 999.9 90.0 66.9 0.05G 999.9 000000 724050 13743 20100612 79.0 24 64.1 24 1018.6 24 1016.3 24 10.0 24 8.5 24 22.9 28.0 93.0 66.9 0.00G 999.9 010010 724050 13743 20100613 81.6 24 69.0 24 1012.1 24 1009.8 24 10.0 24 6.5 24 14.0 21.0 93.9 69.1 0.00G 999.9 000000 724050 13743 20100614 83.3 24 66.1 24 1011.3 24 1009.0 24 10.0 24 7.4 24 19.0 24.1 93.9 73.0 0.00G 999.9 010000 724050 13743 20100615 76.6 24 66.3 24 1016.0 24 1013.4 24 9.2 24 5.5 24 14.0 21.0 91.0 72.0 0.27G 999.9 010000 724050 13743 20100616 75.3 24 66.6 24 1018.1 21 1015.9 24 8.6 24 6.2 24 11.1 999.9 82.4* 71.1* 0.01G 999.9 010000 724050 13743 20100617 79.8 24 63.1 24 1013.5 24 1011.2 24 9.4 24 9.8 24 17.1 26.0 87.1 71.1 0.02G 999.9 000000 724050 13743 20100618 76.0 24 54.1 24 1018.7 24 1016.3 24 10.0 24 7.0 24 15.0 20.0 87.1 64.9 0.00G 999.9 000000 724050 13743 20100619 79.2 24 62.8 24 1017.9 24 1015.6 24 10.0 24 8.1 24 11.1 15.9 93.0 64.9 0.00G 999.9 000000 724050 13743 20100620 84.7 24 65.6 24 1013.8 24 1011.5 24 10.0 24 7.9 24 15.9 22.9 95.0 70.0 0.00G 999.9 000000 724050 13743 20100621 84.8 24 60.0 24 1016.6 24 1014.3 24 10.0 24 7.2 24 11.1 15.0 95.0 75.9 0.00G 999.9 000000 724050 13743 20100622 85.0 24 65.3 24 1018.3 24 1015.9 24 10.0 24 5.2 24 13.0 17.1 96.1 73.0 0.00G 999.9 010010 724050 13743 20100623 84.9 24 67.0 24 1016.4 24 1014.1 24 10.0 24 6.4 24 34.0 48.0 97.0 73.0 0.25G 999.9 010010 724050 13743 20100624 88.6 24 68.1 24 1012.1 24 1009.8 24 9.3 24 8.0 24 26.0 28.9 100.0 73.9 0.00G 999.9 010000 724050 13743 20100625 84.2 24 60.6 24 1015.2 24 1012.9 24 10.0 24 7.2 24 12.0 22.0 100.0 75.9 0.00G 999.9 000000 724050 13743 20100626 83.6 24 62.2 24 1014.2 24 1011.9 24 8.9 24 4.4 24 9.9 999.9 95.0 73.0 0.00G 999.9 000000 724050 13743 20100627 87.1 24 66.4 24 1008.8 24 1006.5 24 8.5 24 6.2 24 14.0 18.1 99.0 73.0 0.00G 999.9 000000 724050 13743 20100628 86.3 24 68.7 24 1005.0 23 1002.7 24 9.3 24 7.7 24 26.0 39.0 99.0 73.0 0.00G 999.9 010010 724050 13743 20100629 85.3 24 63.8 24 1009.8 24 1007.5 24 10.0 24 7.3 24 14.0 15.9 97.0 73.0 0.79G 999.9 000000 724050 13743 20100630 76.0 24 47.7 24 1018.4 24 1016.1 24 10.0 24 9.5 24 15.0 19.0 91.9 66.9 0.00G 999.9 000000 724050 13743 20100701 73.0 24 44.7 24 1022.3 24 1020.0 24 10.0 24 9.4 24 15.0 22.0 81.0 64.9 0.00G 999.9 000000 724050 13743 20100702 73.5 24 44.1 24 1024.1 24 1021.8 24 10.0 24 6.5 24 13.0 15.0 82.9 63.0 0.00G 999.9 000000 724050 13743 20100703 75.2 24 49.8 24 1022.4 24 1020.1 24 10.0 24 5.2 24 8.9 999.9 87.1 63.0 0.00G 999.9 000000 724050 13743 20100704 79.9 24 57.3 24 1018.3 24 1016.0 24 10.0 24 6.2 24 9.9 999.9 93.9 63.0 0.00G 999.9 000000 724050 13743 20100705 85.6 24 62.4 24 1016.5 24 1014.1 24 8.7 24 4.6 24 8.9 15.0 99.0 66.9 0.00G 999.9 000000 724050 13743 20100706 90.1 24 65.1 24 1016.9 24 1014.5 24 6.8 24 3.7 24 8.9 999.9 102.0 73.0 0.00G 999.9 000000 724050 13743 20100707 91.5 24 66.0 24 1016.2 24 1013.9 24 6.7 24 4.9 24 9.9 999.9 102.0 77.0 0.00G 999.9 000000 724050 13743 20100708 88.4 24 69.5 24 1015.2 24 1012.9 24 7.8 24 4.9 24 12.0 999.9 102.0 80.1 0.00G 999.9 000000 724050 13743 20100709 83.6 24 67.8 24 1013.3 22 1011.4 24 10.0 24 5.7 24 9.9 999.9 95.0 75.9 0.00G 999.9 000000 724050 13743 20100710 78.2 24 68.9 24 1010.2 14 1007.7 24 8.0 24 8.2 24 15.0 22.9 86.0* 73.4* 0.70G 999.9 010000 724050 13743 20100711 80.9 24 60.2 24 1012.2 24 1009.8 24 10.0 24 5.8 24 12.0 14.0 91.9 73.0 0.49G 999.9 000000 724050 13743 20100712 79.2 24 64.9 24 1011.9 24 1009.6 24 9.6 24 5.5 24 15.0 24.1 91.9 73.0 0.00G 999.9 010010 724050 13743 20100713 78.3 24 69.6 24 1011.7 17 1009.5 24 9.4 24 4.1 24 27.0 35.0 87.1 73.0 0.44G 999.9 110010 724050 13743 20100714 78.0 24 69.0 24 1012.7 17 1009.8 24 8.5 24 8.5 24 27.0 35.0 90.0 73.0 2.14G 999.9 010010 724050 13743 20100715 83.7 24 67.8 24 1016.5 24 1014.0 24 9.0 24 4.2 24 8.9 999.9 91.9 73.9 0.02G 999.9 000000 724050 13743 20100716 86.1 24 69.0 24 1014.8 24 1012.5 24 8.7 24 7.5 24 13.0 17.1 98.1 73.9 0.00G 999.9 000000 724050 13743 20100717 85.7 24 67.6 24 1013.9 22 1011.6 24 9.9 24 5.1 24 22.0 28.9 98.1 75.9 0.01G 999.9 010010 724050 13743 20100718 85.2 24 66.4 24 1013.3 24 1010.9 24 10.0 24 7.8 24 12.0 18.1 95.0 75.0 0.00G 999.9 000000 724050 13743 20100719 84.3 24 70.4 24 1011.9 24 1009.6 24 9.8 24 8.2 24 14.0 20.0 95.0 75.0 0.00G 999.9 010010 724050 13743 20100720 84.1 24 67.9 24 1014.4 24 1012.1 24 9.9 24 5.6 24 12.0 17.1 93.0 75.0 0.03G 999.9 000000 724050 13743 20100721 82.2 24 70.2 24 1015.2 24 1012.9 24 10.0 24 6.0 24 11.1 15.9 93.0 75.0 0.00G 999.9 010000 724050 13743 20100722 87.1 24 64.4 24 1015.6 24 1013.3 24 10.0 24 7.1 24 12.0 18.1 96.1 75.0 0.00G 999.9 000000 724050 13743 20100723 87.3 24 68.1 24 1015.6 24 1013.2 24 9.2 24 4.6 24 13.0 15.0 98.1 77.0 0.00G 999.9 000000 724050 13743 20100724 91.5 24 70.9 24 1013.2 24 1010.9 24 10.0 24 7.9 24 13.0 19.0 100.9 77.0 0.00G 999.9 000000 724050 13743 20100725 89.5 24 68.6 24 1011.7 23 1009.4 24 9.9 24 7.7 24 36.9 46.0 100.9 75.0 0.00G 999.9 110010 724050 13743 20100726 81.4 24 62.3 24 1016.7 23 1014.5 24 10.0 24 8.3 24 12.0 14.0 99.0 75.0 0.64G 999.9 000000 724050 13743 20100727 80.8 24 62.5 24 1019.0 24 1016.7 24 10.0 24 5.5 24 11.1 999.9 89.1 72.0 0.00G 999.9 000000 724050 13743 20100728 82.6 24 68.1 24 1016.7 20 1014.6 24 9.9 24 7.0 24 9.9 999.9 93.0 72.0 0.00G 999.9 000000 724050 13743 20100729 84.0 24 71.6 24 1012.4 22 1010.1 24 9.1 24 5.9 24 20.0 28.9 93.9 75.0 0.00G 999.9 010010 724050 13743 20100730 78.7 24 58.3 24 1013.8 23 1011.4 24 10.0 24 7.5 24 11.1 15.9 93.9 70.0 0.70G 999.9 000000 724050 13743 20100731 78.0 24 57.9 24 1013.8 24 1011.4 24 10.0 24 5.4 24 12.0 999.9 86.0 70.0 0.00G 999.9 000000 724050 13743 20100801 74.5 24 61.8 24 1015.5 24 1013.0 24 10.0 24 6.4 24 13.0 20.0 86.0 68.0 0.05G 999.9 010000 724050 13743 20100802 75.4 24 64.2 24 1019.3 22 1017.1 24 10.0 24 5.3 24 9.9 999.9 82.9 68.0 0.00H 999.9 010000 724050 13743 20100803 78.9 24 68.3 24 1019.0 21 1017.0 24 10.0 24 8.4 24 11.1 999.9 86.0 71.1 0.00G 999.9 000000 724050 13743 20100804 83.5 24 71.9 24 1013.0 23 1010.9 24 9.2 24 8.3 24 12.0 999.9 93.9 73.9 0.08G 999.9 010010 724050 13743 20100805 82.5 24 68.3 24 1008.5 21 1005.8 24 9.7 24 6.9 24 32.1 51.1 96.1 75.0 0.47A 999.9 010010 724050 13743 20100806 80.1 24 66.3 24 1008.0 23 1005.6 24 9.3 24 6.8 24 15.0 24.1 96.1 72.0 0.00I 999.9 000000 724050 13743 20100807 79.5 24 56.2 24 1013.3 24 1011.0 24 10.0 24 5.6 24 9.9 999.9 91.0 68.0 0.00G 999.9 000000 724050 13743 20100808 79.9 24 61.3 24 1015.8 24 1013.5 24 9.9 24 5.3 24 8.9 999.9 91.0 68.0 0.00G 999.9 000000 724050 13743 20100809 83.0 24 68.4 24 1015.9 24 1013.6 24 8.0 24 7.6 24 11.1 999.9 93.0 70.0 0.00G 999.9 000000 724050 13743 20100810 86.4 24 67.0 24 1013.5 24 1011.2 24 8.9 24 6.4 24 11.1 18.1 98.1 75.0 0.00G 999.9 000000 724050 13743 20100811 88.8 24 67.3 24 1011.2 24 1008.9 24 8.5 24 5.3 24 9.9 15.0 98.1 75.9 0.00G 999.9 000000 724050 13743 20100812 83.6 24 70.4 24 1008.9 21 1006.6 24 8.1 24 4.5 24 28.0 36.9 97.0 73.0 0.13G 999.9 010010 724050 13743 20100813 76.3 24 68.1 24 1013.4 21 1010.8 24 8.9 24 8.7 24 14.0 19.0 88.0 73.0 1.03G 999.9 010000 724050 13743 20100814 75.7 24 59.9 24 1018.7 24 1016.4 24 10.0 24 4.4 24 8.9 999.9 84.0 69.1 0.18G 999.9 000000 724050 13743 20100815 76.4 24 67.0 24 1016.8 21 1014.5 24 9.2 24 8.5 24 13.0 17.1 84.0 69.1 0.00G 999.9 010000 724050 13743 20100816 80.7 24 71.7 24 1014.2 24 1011.9 24 10.0 24 7.3 24 11.1 15.9 91.0 73.9 0.16G 999.9 000000 724050 13743 20100817 83.9 24 66.6 24 1015.9 24 1013.5 24 9.8 24 4.7 24 11.1 15.9 93.0 73.9 0.00G 999.9 000000 724050 13743 20100818 75.9 24 67.4 24 1016.9 19 1014.7 24 7.4 24 6.5 24 13.0 15.9 93.0 69.1 0.37G 999.9 010000 724050 13743 20100819 77.8 24 66.1 24 1014.1 22 1012.1 24 8.8 24 3.6 24 7.0 999.9 88.0 70.0 0.15G 999.9 010000 724050 13743 20100820 81.2 24 66.0 24 1013.8 24 1011.4 24 10.0 24 4.3 24 7.0 999.9 91.9 71.1 0.00G 999.9 000000 724050 13743 20100821 81.8 24 67.7 24 1015.3 24 1013.0 24 9.5 24 5.1 24 11.1 999.9 91.9 71.1 0.00G 999.9 000000 724050 13743 20100822 81.2 24 69.6 24 1011.5 24 1009.3 24 9.1 24 9.5 24 15.0 22.0 89.1 73.9 0.00G 999.9 010010 724050 13743 20100823 79.2 24 62.9 24 1011.1 24 1008.7 24 10.0 24 6.3 24 12.0 15.0 89.1 73.0 0.15G 999.9 000000 724050 13743 20100824 72.3 24 61.8 24 1014.7 22 1012.4 24 10.0 24 9.9 24 14.0 999.9 86.0 68.0 0.00G 999.9 010000 724050 13743 20100825 73.1 24 60.1 24 1013.7 22 1011.5 24 10.0 24 6.1 24 11.1 999.9 82.9 66.0 0.00G 999.9 000000 724050 13743 20100826 77.5 24 60.4 24 1015.4 24 1013.1 24 10.0 24 5.7 24 9.9 17.1 87.1 66.0 0.00G 999.9 000000 724050 13743 20100827 75.0 24 54.9 24 1019.7 23 1017.4 24 10.0 24 4.7 24 8.9 999.9 82.9* 66.0* 0.00G 999.9 000000 724050 13743 20100828 77.1 24 61.7 24 1021.8 24 1019.4 24 10.0 24 3.0 24 7.0 999.9 89.1 66.9 0.00G 999.9 000000 724050 13743 20100829 79.8 24 64.2 24 1023.5 24 1021.1 24 9.6 24 3.2 24 8.9 999.9 91.9 68.0 0.00G 999.9 000000 724050 13743 20100830 83.7 24 64.3 24 1023.5 24 1021.1 24 9.7 24 3.7 24 8.9 999.9 96.1 70.0 0.00G 999.9 000000 724050 13743 20100831 83.4 24 60.2 24 1022.0 24 1019.7 24 10.0 24 3.3 24 7.0 999.9 96.1 71.1 0.00G 999.9 000000 724050 13743 20100901 84.8 24 64.1 24 1018.3 24 1015.7 24 9.9 24 5.6 24 9.9 999.9 97.0 75.0 0.00G 999.9 000000 724050 13743 20100902 84.3 24 65.2 24 1015.9 24 1013.6 24 9.9 24 7.5 24 12.0 999.9 97.0 73.9 0.00G 999.9 000000 724050 13743 20100903 82.5 24 65.1 24 1008.5 24 1006.1 24 10.0 24 5.4 24 8.9 999.9 95.0 73.9 0.00G 999.9 000000 724050 13743 20100904 79.6 24 49.2 24 1006.9 24 1004.6 24 10.0 24 10.2 24 17.1 27.0 91.0 72.0 0.00G 999.9 000000 724050 13743 20100905 72.5 24 42.7 24 1015.0 24 1012.6 24 10.0 24 6.6 24 9.9 15.9 84.9 61.0 0.00G 999.9 000000 724050 13743 20100906 73.3 24 52.4 24 1020.6 24 1018.2 24 10.0 24 5.5 24 9.9 15.9 87.1 61.0 0.00G 999.9 000000 724050 13743 20100907 78.9 24 60.2 24 1021.0 24 1018.7 24 10.0 24 9.2 24 15.0 21.0 93.9 62.1 0.00G 999.9 000000 724050 13743 20100908 84.1 24 55.6 24 1012.5 24 1010.1 24 10.0 24 11.2 24 17.1 27.0 96.1 69.1 0.00G 999.9 000000 724050 13743 20100909 73.9 24 44.2 24 1012.6 24 1010.3 24 10.0 24 11.2 24 15.9 22.9 96.1 64.9 0.00G 999.9 000000 724050 13743 20100910 69.0 24 46.7 24 1013.9 24 1011.6 24 10.0 24 10.0 24 13.0 21.0 75.0* 61.0* 0.00G 999.9 000000 724050 13743 20100911 69.0 24 48.6 24 1016.4 24 1014.1 24 10.0 24 5.1 24 11.1 999.9 80.1 57.0 0.00G 999.9 000000 724050 13743 20100912 68.4 24 60.2 24 1014.9 14 1012.6 24 8.4 24 5.5 24 9.9 999.9 80.1 57.0 0.62G 999.9 010000 724050 13743 20100913 70.4 24 60.1 24 1015.6 21 1013.8 24 9.3 24 6.0 24 13.0 999.9 84.9* 62.6* 0.05G 999.9 000000 724050 13743 20100914 74.2 24 54.2 24 1014.2 24 1011.9 24 10.0 24 5.6 24 13.0 22.0 84.9 63.0 0.00G 999.9 000000 724050 13743 20100915 72.6 24 52.3 24 1018.6 24 1016.3 24 10.0 24 2.4 24 8.0 999.9 86.0 62.1 0.00G 999.9 000000 724050 13743 20100916 75.1 24 60.7 24 1016.3 24 1013.9 24 10.0 24 5.8 24 20.0 26.0 91.9 62.1 0.00G 999.9 010000 724050 13743 20100917 74.1 24 60.1 24 1013.5 24 1011.2 24 9.4 24 7.4 24 17.1 22.0 91.9 66.9 0.04G 999.9 010000 724050 13743 20100918 68.2 24 51.0 24 1022.2 24 1019.9 24 10.0 24 6.7 24 12.0 999.9 82.0 57.9 0.01G 999.9 000000 724050 13743 20100919 71.5 24 56.2 24 1020.4 24 1018.2 24 10.0 24 2.8 24 8.0 999.9 84.9 57.9 0.00G 999.9 000000 724050 13743 20100920 73.9 24 52.2 24 1017.0 24 1014.6 24 10.0 24 8.4 24 14.0 21.0 84.9 61.0 0.00G 999.9 000000 724050 13743 20100921 68.5 24 47.2 24 1021.8 24 1019.5 24 10.0 24 5.6 24 9.9 999.9 81.0 55.9 0.00G 999.9 000000 724050 13743 20100922 76.7 24 61.0 24 1018.5 24 1016.2 24 9.9 24 8.4 24 13.0 999.9 95.0 55.9 0.00G 999.9 000000 724050 13743 20100923 81.1 24 66.0 24 1020.1 23 1017.7 24 9.8 24 4.0 24 8.9 999.9 95.0 66.9 0.00G 999.9 000000 724050 13743 20100924 82.7 24 67.1 24 1018.6 24 1016.3 24 7.8 24 6.8 24 15.9 22.0 99.0 71.1 0.00G 999.9 000000 724050 13743 20100925 82.3 24 61.1 24 1012.2 24 1009.9 24 9.5 24 7.5 24 12.0 999.9 99.0 72.0 0.00G 999.9 000000 724050 13743 20100926 72.0 24 53.1 24 1014.9 24 1012.6 24 10.0 24 9.9 24 13.0 999.9 93.0 63.0 0.00G 999.9 010000 724050 13743 20100927 70.7 24 65.2 24 1012.9 17 1010.4 24 9.0 24 9.3 24 19.0 28.9 78.1 64.0 0.23G 999.9 010000 724050 13743 20100928 75.6 24 65.3 24 1006.0 22 1003.5 24 10.0 24 11.3 24 17.1 22.9 84.0 64.0 0.07G 999.9 010000 724050 13743 20100929 66.6 24 54.2 24 1012.8 22 1010.7 24 10.0 24 5.9 24 9.9 999.9 84.0 61.0 0.00G 999.9 010000 724050 13743 20100930 72.1 24 68.3 24 1005.6 13 1003.4 24 6.9 24 9.8 24 24.1 33.0 81.0 61.0 1.91G 999.9 110000 724050 13743 20101001 67.8 24 56.8 24 1006.2 21 1003.1 24 8.6 24 13.4 24 20.0 27.0 73.9* 60.8* 3.13G 999.9 010000 724050 13743 20101002 62.6 24 44.4 24 1014.7 24 1012.5 24 10.0 24 5.8 24 11.1 999.9 75.0 52.0 0.03G 999.9 000000 724050 13743 20101003 59.8 24 50.0 24 1016.4 23 1014.1 24 10.0 24 7.5 24 14.0 999.9 72.0 52.0 0.00G 999.9 010000 724050 13743 20101004 54.4 24 49.6 24 1019.3 15 1017.3 24 7.1 24 12.2 24 15.0 22.0 57.9* 51.8* 0.64G 999.9 010000 724050 13743 20101005 54.8 24 43.2 24 1019.4 24 1017.0 24 10.0 24 10.3 24 18.1 21.0 63.0 50.0 0.14G 999.9 000000 724050 13743 20101006 56.7 24 43.6 24 1015.5 22 1013.3 24 10.0 24 6.8 24 12.0 19.0 63.0 50.0 0.00G 999.9 000000 724050 13743 20101007 61.9 24 47.2 24 1010.5 24 1008.1 24 10.0 24 7.7 24 14.0 22.9 77.0 51.1 0.03G 999.9 010000 724050 13743 20101008 66.5 24 44.8 24 1016.2 24 1013.9 24 10.0 24 4.9 24 9.9 999.9 79.0 51.1 0.00G 999.9 000000 724050 13743 20101009 67.0 24 49.0 24 1014.7 24 1012.5 24 10.0 24 5.2 24 12.0 15.0 82.9 53.1 0.00G 999.9 000000 724050 13743 20101010 65.3 24 50.8 24 1014.6 24 1012.3 24 10.0 24 5.0 24 11.1 18.1 82.9 54.0 0.00G 999.9 000000 724050 13743 20101011 72.6 24 57.2 24 1009.9 24 1007.6 24 10.0 24 5.3 24 9.9 15.9 88.0 55.0 0.00G 999.9 000000 724050 13743 20101012 70.7 24 58.3 24 1009.1 24 1006.8 24 10.0 24 5.1 24 8.9 22.9 88.0 62.1 0.00G 999.9 000000 724050 13743 20101013 63.2 24 44.1 24 1015.1 24 1012.9 24 10.0 24 6.6 24 12.0 999.9 82.9 54.0 0.00G 999.9 000000 724050 13743 20101014 57.7 24 51.0 24 1013.1 17 1010.2 24 8.3 24 4.9 24 12.0 17.1 71.1 54.0 0.02G 999.9 010000 724050 13743 20101015 57.1 24 40.8 24 1007.6 24 1005.3 24 10.0 24 9.4 24 15.9 27.0 64.9 50.0 1.24G 999.9 010000 724050 13743 20101016 58.8 24 37.2 24 1012.9 24 1010.6 24 10.0 24 11.1 24 20.0 26.0 68.0 50.0 0.00G 999.9 000000 724050 13743 20101017 60.5 24 42.4 24 1015.7 24 1013.4 24 10.0 24 6.8 24 12.0 18.1 75.9 48.0 0.00G 999.9 000000 724050 13743 20101018 61.5 24 44.7 24 1014.9 24 1012.6 24 10.0 24 2.6 24 6.0 999.9 75.9 48.0 0.00G 999.9 000000 724050 13743 20101019 57.4 24 47.5 24 1013.5 22 1011.3 24 10.0 24 5.5 24 14.0 999.9 68.0 53.1 0.01G 999.9 010000 724050 13743 20101020 56.2 24 51.1 24 1013.8 21 1011.3 24 8.0 24 2.8 24 8.0 999.9 63.0 53.1 0.00G 999.9 010000 724050 13743 20101021 58.1 24 45.3 24 1007.7 18 1005.3 24 9.3 24 9.2 24 19.0 27.0 70.0 51.1 0.02G 999.9 000000 724050 13743 20101022 54.8 24 32.1 24 1016.9 24 1014.6 24 10.0 24 8.8 24 15.0 22.0 70.0 48.0 0.00G 999.9 000000 724050 13743 20101023 53.8 24 38.6 24 1023.4 24 1021.0 24 10.0 24 6.2 24 12.0 999.9 70.0 42.1 0.00G 999.9 000000 724050 13743 20101024 62.2 24 49.8 24 1020.6 24 1018.3 24 10.0 24 6.3 24 8.9 999.9 73.0 42.1 0.01G 999.9 000000 724050 13743 20101025 65.1 24 57.1 24 1014.1 22 1011.9 24 10.0 24 9.4 24 15.0 22.9 75.9 55.0 0.00G 999.9 000000 724050 13743 20101026 67.6 24 61.9 24 1010.7 17 1008.6 24 10.0 24 9.0 24 14.0 19.0 75.9 57.9 0.00G 999.9 000000 724050 13743 20101027 71.6 24 67.8 24 1010.6 16 1008.5 24 8.3 24 9.4 24 15.9 28.0 75.2* 68.0* 0.44G 999.9 010000 724050 13743 20101028 70.8 24 58.0 24 1012.5 21 1010.2 24 10.0 24 6.7 24 15.0 20.0 79.0 64.0 0.83G 999.9 000000 724050 13743 20101029 55.3 24 33.1 24 1018.4 24 1016.1 24 10.0 24 14.2 24 19.0 31.1 79.0 50.0 0.00G 999.9 000000 724050 13743 20101030 49.7 24 32.3 24 1020.9 24 1018.5 24 10.0 24 8.3 24 15.0 22.0 60.1 39.9 0.00G 999.9 000000 724050 13743 20101031 55.7 24 38.4 24 1012.3 24 1009.7 24 10.0 24 8.7 24 15.9 22.9 66.9 39.9 0.00G 999.9 000000 724050 13743 20101101 49.5 24 30.6 24 1025.5 24 1023.5 24 10.0 24 6.1 24 11.1 15.9 66.9 41.0 0.00G 999.9 000000 724050 13743 20101102 44.8 24 29.5 24 1031.3 24 1028.9 24 10.0 24 6.6 24 11.1 999.9 55.0 37.9 0.00G 999.9 000000 724050 13743 20101103 47.5 24 37.2 24 1023.4 24 1021.4 24 10.0 24 3.7 24 8.0 999.9 57.0 37.9 0.00G 999.9 000000 724050 13743 20101104 51.2 24 47.5 24 1005.7 14 1003.9 24 6.5 24 7.1 24 13.0 999.9 57.0 41.0 0.75G 999.9 010000 724050 13743 20101105 50.6 24 39.8 24 1003.2 19 999.8 24 9.5 24 9.3 24 15.0 22.0 57.9 46.0 0.69G 999.9 010000 724050 13743 20101106 46.5 24 33.5 24 1018.5 24 1016.2 24 10.0 24 8.4 24 11.1 17.1 57.9 39.0 0.00G 999.9 000000 724050 13743 20101107 44.7 24 30.5 24 1027.1 24 1024.4 24 10.0 24 10.6 24 15.0 20.0 54.0 36.0 0.00G 999.9 000000 724050 13743 20101108 50.0 24 27.6 24 1015.2 24 1012.8 24 10.0 24 9.2 24 15.9 26.0 64.0 36.0 0.00G 999.9 000000 724050 13743 20101109 54.3 24 33.8 24 1012.7 24 1010.3 24 10.0 24 9.7 24 12.0 16.9 64.0 41.0 0.00G 999.9 000000 724050 13743 20101110 54.4 24 42.2 24 1018.4 24 1016.1 24 10.0 24 8.4 24 14.0 22.0 64.0 44.1 0.00G 999.9 000000 724050 13743 20101111 53.0 24 35.5 24 1026.4 24 1024.1 24 10.0 24 6.0 24 13.0 999.9 64.0 42.1 0.00G 999.9 000000 724050 13743 20101112 49.9 24 29.3 24 1029.9 24 1027.5 24 10.0 24 3.4 24 7.0 999.9 66.0 36.0 0.00G 999.9 000000 724050 13743 20101113 50.5 24 31.9 24 1024.6 24 1022.3 24 10.0 24 1.2 24 5.1 999.9 68.0 36.0 0.00G 999.9 000000 724050 13743 20101114 50.5 24 37.8 24 1019.1 24 1016.7 24 10.0 24 2.4 24 8.9 999.9 68.0 37.0 0.00G 999.9 000000 724050 13743 20101115 51.7 24 45.7 24 1016.2 22 1013.8 24 8.4 24 3.2 24 8.9 999.9 64.9 39.9 0.00G 999.9 000000 724050 13743 20101116 53.4 24 49.9 24 1013.8 21 1012.0 24 5.6 24 3.5 24 11.1 999.9 61.0 48.0 0.25G 999.9 010000 724050 13743 20101117 59.5 24 46.6 24 1007.9 19 1003.8 24 10.0 24 13.2 24 32.1 47.0 64.9 50.0 0.46G 999.9 010010 724050 13743 20101118 50.1 24 33.8 24 1020.1 24 1017.7 24 10.0 24 6.2 24 13.0 18.1 63.0 42.1 0.23G 999.9 000000 724050 13743 20101119 47.7 24 31.2 24 1024.7 24 1022.3 24 10.0 24 6.3 24 13.0 19.0 59.0 37.9 0.00G 999.9 000000 724050 13743 20101120 48.9 24 35.8 24 1023.5 24 1021.2 24 10.0 24 4.7 24 11.1 15.9 66.0 37.9 0.00G 999.9 000000 724050 13743 20101121 50.4 24 38.8 24 1029.0 24 1026.7 24 9.4 24 3.9 24 8.0 999.9 66.0 39.9 0.00G 999.9 000000 724050 13743 20101122 52.8 24 46.9 24 1026.5 20 1024.8 24 7.1 24 4.4 24 9.9 999.9 61.0 42.1 0.00G 999.9 010000 724050 13743 20101123 58.7 24 49.4 24 1016.9 24 1014.4 24 10.0 24 6.5 24 11.1 15.0 69.1 48.9 0.00G 999.9 010000 724050 13743 20101124 50.3 24 26.4 24 1022.1 24 1019.7 24 10.0 24 9.2 24 13.0 20.0 69.1 42.1 0.00G 999.9 000000 724050 13743 20101125 46.6 24 32.9 24 1021.4 23 1019.6 24 9.9 24 4.8 24 9.9 999.9 54.0 42.1 0.03G 999.9 011000 724050 13743 20101126 54.4 24 43.4 24 1006.9 24 1004.6 24 9.5 24 9.5 24 15.9 25.1 61.0 43.0 0.01B 999.9 010000 724050 13743 20101127 41.5 24 20.1 24 1011.6 24 1009.3 24 10.0 24 9.8 24 17.1 29.9 61.0 33.1 0.00I 999.9 000000 724050 13743 20101128 41.1 24 21.9 24 1026.2 24 1023.9 24 10.0 24 6.2 24 14.0 999.9 50.0 33.1 0.00G 999.9 000000 724050 13743 20101129 41.1 24 30.4 24 1032.2 24 1029.9 24 9.7 24 3.6 24 8.0 999.9 52.0 33.1 0.00G 999.9 000000 724050 13743 20101130 53.2 24 45.6 24 1024.9 22 1023.2 24 9.9 24 5.8 24 14.8 21.0 63.0 48.0 0.00G 999.9 010000 724050 13743 20101201 56.2 24 48.5 24 1010.5 19 1006.9 24 8.6 24 15.4 24 24.1 35.0 64.9 41.0 0.26G 999.9 010000 724050 13743 20101202 38.1 24 22.3 24 1020.3 24 1018.0 24 10.0 24 6.7 24 14.0 19.0 43.0* 33.1* 0.55G 999.9 000000 724050 13743 20101203 38.4 24 23.0 24 1020.3 24 1018.0 24 10.0 24 7.4 24 11.1 17.1 43.0 32.0 0.00G 999.9 000000 724050 13743 20101204 35.9 24 20.3 24 1017.1 24 1014.8 24 10.0 24 8.8 24 13.0 17.1 43.0 30.9 0.00G 999.9 000000 724050 13743 20101205 36.9 24 18.0 24 1010.7 24 1008.4 24 10.0 24 11.9 24 21.0 32.1 43.0 31.1 0.00G 999.9 000000 724050 13743 20101206 33.9 24 13.4 24 1010.2 24 1008.0 24 10.0 24 13.5 24 24.1 33.0 41.0 30.9 0.00G 999.9 000000 724050 13743 20101207 31.4 24 10.0 24 1008.5 24 1006.3 24 10.0 24 13.5 24 20.0 29.9 39.0 28.9 0.00G 999.9 000000 724050 13743 20101208 30.1 24 9.5 24 1017.0 24 1014.8 24 10.0 24 10.7 24 18.1 22.9 37.0 26.1 0.00G 999.9 000000 724050 13743 20101209 30.5 24 12.2 24 1025.5 24 1023.2 24 10.0 24 7.3 24 12.0 15.0 37.0 26.1 0.00G 999.9 000000 724050 13743 20101210 32.5 24 19.2 24 1027.9 22 1025.7 24 10.0 24 3.8 24 8.0 18.1 39.0 26.1 0.00G 999.9 001000 724050 13743 20101211 36.3 24 26.3 24 1024.3 23 1022.1 24 9.3 24 2.5 24 7.0 999.9 46.0* 30.0* 0.00G 999.9 010000 724050 13743 20101212 40.9 24 38.4 24 1008.5 11 1003.4 24 3.5 24 5.2 24 11.1 999.9 45.0 30.2 0.36G 999.9 110000 724050 13743 20101213 35.5 24 22.2 24 994.7 22 992.4 24 9.2 24 12.7 24 19.0 32.1 45.0* 26.1* 0.46G 999.9 011000 724050 13743 20101214 24.3 24 5.5 24 1006.0 23 1003.3 24 9.6 24 15.7 24 22.0 31.1 27.0* 21.2* 0.00G 999.9 001000 724050 13743 20101215 25.5 24 4.0 24 1013.9 24 1011.7 24 10.0 24 11.9 24 19.0 29.9 34.0 21.0 0.00G 999.9 000000 724050 13743 20101216 24.6 24 12.0 24 1013.6 21 1011.1 24 7.9 24 5.0 24 11.1 20.0 34.0 21.0 0.00G 2.0 001000 724050 13743 20101217 29.5 24 17.8 24 1015.5 23 1012.9 24 10.0 24 6.6 24 11.1 999.9 39.0 21.0 0.17G 1.2 000000 724050 13743 20101218 29.8 24 22.7 24 1021.1 24 1018.9 24 8.5 24 3.7 24 8.0 999.9 39.0 23.0 0.00G 1.2 000000 724050 13743 20101219 32.8 24 22.3 24 1017.8 24 1015.5 24 9.5 24 6.3 24 13.0 999.9 37.9 23.0 0.00G 999.9 000000 724050 13743 20101220 31.1 24 17.1 24 1016.9 24 1014.7 24 10.0 24 11.1 24 18.1 25.1 37.9 25.0 0.00G 999.9 000000 724050 13743 20101221 33.6 24 17.6 24 1017.6 24 1015.3 24 10.0 24 10.7 24 18.1 24.1 41.0 25.0 0.00G 999.9 000000 724050 13743 20101222 37.5 24 18.8 24 1014.1 24 1011.9 23 10.0 24 8.0 24 13.0 999.9 45.0 29.1 0.00G 999.9 000000 724050 13743 20101223 36.8 24 18.8 24 1016.5 24 1014.1 20 10.0 24 16.7 24 25.1 36.9 45.0 32.0 0.00G 999.9 000000 724050 13743 20101224 35.1 24 18.5 24 1020.8 24 1018.5 24 10.0 24 13.2 24 18.1 25.1 39.9* 30.2* 0.00G 999.9 000000 724050 13743 20101225 33.6 24 20.7 24 1018.7 23 1016.6 24 9.9 24 6.7 24 9.9 999.9 41.0 31.1 0.00G 999.9 001000 724050 13743 20101226 31.6 24 21.6 24 1011.8 19 1008.3 24 8.2 24 10.8 24 21.0 28.0 36.0 28.0 0.00G 999.9 001000 724050 13743 20101227 31.0 24 10.7 24 1003.8 24 1001.4 24 9.5 24 19.5 24 28.0 41.0 37.0 27.0 0.01G 999.9 001000 724050 13743 20101228 35.3 24 11.7 24 1015.9 24 1013.6 24 10.0 24 11.6 24 19.0 29.9 46.0 27.1 0.00G 999.9 000000 724050 13743 20101229 39.7 24 16.8 24 1018.4 24 1016.1 24 10.0 24 6.8 24 12.0 18.1 48.0 28.2 0.00G 999.9 000000 724050 13743 20101230 36.2 24 25.0 24 1023.0 24 1020.7 24 9.3 24 3.2 24 8.9 999.9 48.0 28.0 0.00G 999.9 000000 724050 13743 20101231 39.0 24 26.4 24 1022.9 24 1020.6 24 10.0 24 4.1 24 7.0 999.9 50.0 28.2 0.00G 999.9 000000 fluids-1.0.22/tests/gsod/2010/722324-03071.op0000644000175000017500000014327214302004506016646 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 722324 03071 20100101 39.6 24 28.0 24 9999.9 0 929.4 24 10.0 24 5.9 24 12.0 19.0 57.2* 30.9* 0.00I 999.9 000000 722324 03071 20100102 42.2 24 26.8 24 9999.9 0 923.5 24 10.0 24 5.2 24 12.0 15.9 56.8 27.3 0.00I 999.9 000000 722324 03071 20100103 38.8 24 30.8 24 9999.9 0 922.1 24 7.5 24 6.4 24 11.1 14.0 53.8 28.4 0.00I 999.9 000000 722324 03071 20100104 32.1 24 29.3 24 9999.9 0 929.3 24 4.0 24 3.6 24 6.0 999.9 43.9 27.7 99.99 999.9 101000 722324 03071 20100105 36.3 24 29.7 24 9999.9 0 926.9 24 8.7 24 5.5 24 12.0 15.9 53.8 27.0 0.00I 999.9 000000 722324 03071 20100106 45.2 24 32.2 24 9999.9 0 918.1 24 10.0 24 8.7 24 14.0 18.1 68.2 33.8 0.00I 999.9 000000 722324 03071 20100107 33.3 24 16.3 24 9999.9 0 926.2 24 9.6 24 12.1 24 24.1 31.1 62.2* 22.5* 0.00I 999.9 000000 722324 03071 20100108 27.2 24 3.0 24 9999.9 0 932.6 24 9.9 24 6.4 24 15.0 19.0 34.3 22.1 0.00I 999.9 000000 722324 03071 20100109 32.4 24 13.1 24 9999.9 0 928.6 24 10.0 24 4.7 24 8.0 999.9 53.6 21.7 0.00I 999.9 000000 722324 03071 20100110 34.3 24 15.4 24 9999.9 0 929.6 24 10.0 24 4.3 24 11.1 15.0 50.0 20.3 0.00I 999.9 000000 722324 03071 20100111 36.4 24 16.0 24 9999.9 0 928.3 24 10.0 24 3.2 24 8.9 14.0 48.2 24.8 0.00I 999.9 000000 722324 03071 20100112 38.8 24 20.8 24 9999.9 0 929.6 24 10.0 24 2.9 24 8.9 14.0 55.4 25.7 0.00I 999.9 000000 722324 03071 20100113 49.8 21 34.8 21 9999.9 0 923.6 21 8.8 21 8.4 21 14.0 18.1 63.9 39.6 0.00I 999.9 000000 722324 03071 20100114 53.0 23 43.6 23 9999.9 0 916.2 23 9.6 23 8.1 23 14.0 19.0 64.4 45.5 0.00I 999.9 000000 722324 03071 20100115 48.9 24 41.6 24 9999.9 0 920.9 24 8.5 24 7.4 24 13.0 15.9 59.0 42.4 0.00I 999.9 000000 722324 03071 20100116 41.7 24 37.8 24 9999.9 0 921.1 24 5.0 24 2.5 24 7.0 999.9 56.5 34.7 99.99 999.9 111000 722324 03071 20100117 46.8 24 30.9 24 9999.9 0 916.3 24 9.4 24 2.8 24 13.0 18.1 70.0 31.8 0.00I 999.9 000000 722324 03071 20100118 56.6 24 32.5 24 9999.9 0 915.3 24 10.0 24 9.2 24 15.9 21.0 70.9 46.2 0.00I 999.9 000000 722324 03071 20100119 56.8 24 25.5 24 9999.9 0 912.9 24 10.0 24 4.2 24 12.0 999.9 67.6 44.6 0.00I 999.9 000000 722324 03071 20100120 54.6 24 26.0 24 9999.9 0 908.1 24 10.0 24 8.5 24 28.9 40.0 70.9 39.6 0.00I 999.9 000000 722324 03071 20100121 54.5 24 25.6 24 9999.9 0 908.5 24 10.0 24 8.5 24 17.1 26.0 71.6 37.8 0.00I 999.9 000000 722324 03071 20100122 61.1 24 33.1 24 9999.9 0 905.7 24 9.9 24 9.4 24 26.0 38.1 82.0 46.9 0.00I 999.9 000000 722324 03071 20100123 52.5 24 40.3 24 9999.9 0 905.4 24 9.7 24 14.1 24 31.1 40.0 64.6 47.3 0.10G 999.9 010000 722324 03071 20100124 48.2 24 22.9 24 9999.9 0 909.8 24 10.0 24 17.2 24 24.1 32.1 58.1 40.1 0.01G 999.9 000000 722324 03071 20100125 45.9 24 16.2 24 9999.9 0 915.7 24 10.0 24 9.8 24 15.9 22.0 58.5 36.0 0.00G 999.9 000000 722324 03071 20100126 46.3 24 21.3 24 9999.9 0 919.7 24 10.0 24 3.9 24 15.9 18.1 65.1 30.9 0.00I 999.9 000000 722324 03071 20100127 55.7 24 44.7 24 9999.9 0 918.0 24 10.0 24 7.8 24 13.0 18.1 66.0 46.6 0.00I 999.9 000000 722324 03071 20100128 51.2 24 47.8 24 9999.9 0 916.2 24 8.0 24 9.5 24 20.0 27.0 59.9 36.5 0.06G 999.9 010010 722324 03071 20100129 30.4 24 22.9 24 9999.9 0 920.9 24 10.0 24 13.1 24 19.0 22.9 36.7 25.5 1.01G 999.9 000000 722324 03071 20100130 35.1 24 26.8 24 9999.9 0 921.8 24 10.0 24 4.4 24 11.1 15.9 52.5 26.2 0.00G 999.9 000000 722324 03071 20100131 40.7 24 31.9 24 9999.9 0 920.3 24 10.0 24 6.6 24 14.0 19.0 54.7 31.5 0.00I 999.9 000000 722324 03071 20100201 44.3 24 33.9 24 9999.9 0 916.0 24 8.5 24 5.5 24 13.0 19.0 65.3* 32.7* 0.00I 999.9 100000 722324 03071 20100202 43.8 24 38.1 24 9999.9 0 918.4 24 5.1 24 5.7 24 9.9 999.9 63.9 37.8 99.99 999.9 111000 722324 03071 20100203 42.6 24 41.5 24 9999.9 0 916.2 24 3.8 24 9.3 24 15.9 21.0 44.2 40.1 0.21G 999.9 110000 722324 03071 20100204 43.8 24 41.8 24 9999.9 0 912.7 24 5.7 24 5.4 24 14.0 20.0 52.0 41.2 0.96G 999.9 110000 722324 03071 20100205 46.9 24 39.1 24 9999.9 0 914.6 24 9.2 24 5.0 24 14.0 999.9 63.0 39.4 0.00G 999.9 000000 722324 03071 20100206 46.9 24 37.3 24 9999.9 0 917.9 24 9.9 24 4.7 24 9.9 999.9 61.9 35.8 0.00I 999.9 000000 722324 03071 20100207 46.1 24 42.1 24 9999.9 0 914.6 24 6.9 24 6.2 24 9.9 999.9 59.9 38.3 0.00I 999.9 100000 722324 03071 20100208 42.2 24 39.3 24 9999.9 0 912.1 24 5.1 24 8.3 24 12.0 17.1 57.6 37.6 99.99 999.9 110000 722324 03071 20100209 36.2 24 28.5 24 9999.9 0 922.9 24 9.9 24 7.6 24 12.0 18.1 43.3 30.6 0.00I 999.9 000000 722324 03071 20100210 37.2 24 25.2 24 9999.9 0 921.8 24 10.0 24 8.4 24 15.0 19.0 45.1 32.9 0.00I 999.9 000000 722324 03071 20100211 37.7 24 32.8 24 9999.9 0 915.3 24 8.0 24 4.2 24 9.9 999.9 43.0 35.1 0.08G 999.9 010000 722324 03071 20100212 37.7 24 32.9 24 9999.9 0 919.0 24 8.1 24 3.8 24 8.9 999.9 53.1 29.8 0.00G 999.9 100000 722324 03071 20100213 48.7 24 31.4 24 9999.9 0 916.7 24 10.0 24 8.2 24 15.9 20.0 66.9 37.9 0.00I 999.9 000000 722324 03071 20100214 46.1 24 31.0 24 9999.9 0 917.2 24 9.8 24 8.1 24 24.1 31.1 64.6 38.3 0.00I 999.9 000000 722324 03071 20100215 37.9 24 19.5 24 9999.9 0 926.9 24 10.0 24 5.9 24 11.1 15.9 49.5 30.2 0.00I 999.9 000000 722324 03071 20100216 39.6 24 19.0 24 9999.9 0 925.1 24 10.0 24 1.1 24 8.0 999.9 50.5 28.9 0.00I 999.9 000000 722324 03071 20100217 44.9 24 18.8 24 9999.9 0 923.5 24 10.0 24 4.1 24 13.0 17.1 63.0 32.4 0.00I 999.9 000000 722324 03071 20100218 50.7 24 27.3 24 9999.9 0 918.5 24 10.0 24 9.0 24 15.9 24.1 67.1 36.7 0.00I 999.9 000000 722324 03071 20100219 55.0 24 36.4 24 9999.9 0 914.6 24 10.0 24 10.9 24 15.9 22.0 74.5 42.3 0.00I 999.9 000000 722324 03071 20100220 59.0 24 44.6 24 9999.9 0 913.9 24 10.0 24 10.1 24 15.0 20.0 71.6 51.4 0.00I 999.9 000000 722324 03071 20100221 58.4 24 37.0 24 9999.9 0 911.5 24 10.0 24 11.1 24 19.0 28.9 66.9 47.5 0.00I 999.9 000000 722324 03071 20100222 40.8 24 31.4 24 9999.9 0 914.4 24 8.7 24 8.6 24 14.0 999.9 65.8 32.5 0.00I 999.9 000000 722324 03071 20100223 32.1 24 26.5 24 9999.9 0 918.8 24 5.9 24 11.7 24 19.0 24.1 41.0 27.1 0.01G 999.9 001000 722324 03071 20100224 39.4 24 24.4 24 9999.9 0 923.6 24 10.0 24 7.0 24 15.9 21.0 59.0 27.9 0.00G 999.9 000000 722324 03071 20100225 50.5 24 25.0 24 9999.9 0 914.3 24 10.0 24 7.9 24 18.1 22.0 67.1 41.0 0.00I 999.9 000000 722324 03071 20100226 47.9 24 30.9 24 9999.9 0 918.5 24 10.0 24 11.6 24 20.0 31.1 63.3 34.7 99.99 999.9 010000 722324 03071 20100227 47.1 24 26.3 24 9999.9 0 922.3 24 10.0 24 5.2 24 14.0 19.0 64.6 33.1 0.00I 999.9 000000 722324 03071 20100228 52.5 24 29.5 24 9999.9 0 912.1 24 10.0 24 11.5 24 28.9 36.9 64.4 43.3 99.99 999.9 010000 722324 03071 20100301 44.4 24 39.6 24 9999.9 0 914.4 23 9.7 24 9.9 24 18.1 28.9 54.0 39.4 0.04G 999.9 010000 722324 03071 20100302 41.8 24 31.5 24 9999.9 0 923.4 24 9.9 24 5.1 24 12.0 15.9 60.3 30.7 0.06G 999.9 000000 722324 03071 20100303 53.9 24 30.5 24 9999.9 0 918.4 24 10.0 24 4.9 24 11.1 15.9 71.4 39.4 0.00G 999.9 000000 722324 03071 20100304 58.6 24 33.4 24 9999.9 0 916.7 24 10.0 24 10.2 24 18.1 22.9 75.2 45.0 0.00I 999.9 000000 722324 03071 20100305 60.8 24 43.8 24 9999.9 0 915.1 24 10.0 24 11.7 24 17.1 22.0 76.5 51.4 0.00I 999.9 000000 722324 03071 20100306 57.7 24 48.4 24 9999.9 0 919.2 24 10.0 24 11.6 24 19.0 24.1 68.2 53.6 0.00I 999.9 000000 722324 03071 20100307 58.6 24 54.9 24 9999.9 0 917.7 24 7.8 24 10.3 24 15.9 21.0 62.8 55.8 0.02G 999.9 010000 722324 03071 20100308 62.4 24 47.3 24 9999.9 0 912.2 24 9.6 24 16.0 24 31.1 41.0 69.6 59.0 0.00G 999.9 000000 722324 03071 20100309 59.0 24 27.0 24 9999.9 0 910.2 24 10.0 24 15.4 24 29.9 41.0 72.5 47.7 0.00I 999.9 000000 722324 03071 20100310 58.0 24 20.2 24 9999.9 0 905.7 24 10.0 24 13.2 24 26.0 34.0 70.9 49.3 0.00I 999.9 000000 722324 03071 20100311 52.3 24 22.6 24 9999.9 0 908.0 24 10.0 24 11.0 24 22.0 32.1 65.3 40.6 0.00I 999.9 000000 722324 03071 20100312 49.5 24 27.5 24 9999.9 0 916.1 24 10.0 24 8.5 24 21.0 28.0 68.4 36.0 0.00I 999.9 000000 722324 03071 20100313 54.3 24 18.2 24 9999.9 0 915.2 24 10.0 24 4.3 24 9.9 17.1 77.2 35.2 0.00I 999.9 000000 722324 03071 20100314 65.1 24 18.8 24 9999.9 0 910.6 24 10.0 24 6.4 24 15.0 19.0 82.6 47.8 0.00I 999.9 000000 722324 03071 20100315 50.2 24 40.7 24 9999.9 0 920.1 24 8.2 24 16.5 24 25.1 32.1 79.0 42.3 0.39A 999.9 010010 722324 03071 20100316 45.2 24 39.9 24 9999.9 0 928.6 24 9.9 24 9.3 24 13.0 22.0 59.0* 39.2* 0.01A 999.9 010000 722324 03071 20100317 55.4 24 36.7 24 9999.9 0 925.3 24 10.0 24 5.8 24 13.0 19.0 76.5 41.5 0.00I 999.9 000000 722324 03071 20100318 56.4 24 39.5 24 9999.9 0 921.0 24 8.6 24 6.3 24 12.0 15.9 74.5 40.8 0.00I 999.9 000000 722324 03071 20100319 62.3 24 37.0 24 9999.9 0 911.6 24 10.0 24 9.2 24 17.1 26.0 80.2 51.1 0.00I 999.9 000000 722324 03071 20100320 42.8 24 28.8 24 9999.9 0 920.2 24 9.8 24 16.8 24 22.9 32.1 71.6 32.4 99.99 999.9 010000 722324 03071 20100321 43.8 24 18.1 24 9999.9 0 924.0 24 10.0 24 8.6 24 18.1 22.9 64.4 30.7 0.00I 999.9 000000 722324 03071 20100322 55.0 24 18.8 24 9999.9 0 919.4 24 10.0 24 4.5 24 15.0 20.0 77.4 36.5 0.00I 999.9 000000 722324 03071 20100323 65.6 24 20.3 24 9999.9 0 912.0 24 10.0 24 9.5 24 15.0 21.0 84.4 50.5 0.00I 999.9 000000 722324 03071 20100324 64.3 24 36.1 24 9999.9 0 912.6 24 10.0 24 9.4 24 21.0 28.9 81.1 57.2 0.00I 999.9 000000 722324 03071 20100325 50.2 24 29.2 24 9999.9 0 920.8 24 10.0 24 10.5 24 19.0 25.1 66.7 39.2 0.00I 999.9 000000 722324 03071 20100326 60.8 24 27.0 24 9999.9 0 914.9 24 10.0 24 10.7 24 27.0 35.9 82.8 45.0 0.00I 999.9 000000 722324 03071 20100327 63.6 24 19.6 24 9999.9 0 911.7 24 9.9 24 14.3 24 29.9 40.0 79.2 49.3 0.00I 999.9 000000 722324 03071 20100328 55.8 24 26.3 24 9999.9 0 923.6 24 10.0 24 10.2 24 15.0 22.9 70.3 41.9 0.00I 999.9 000000 722324 03071 20100329 60.9 24 21.2 24 9999.9 0 920.2 24 10.0 24 7.9 24 15.9 22.9 80.6 46.4 0.00I 999.9 000000 722324 03071 20100330 69.5 24 17.0 24 9999.9 0 913.2 24 10.0 24 11.0 24 19.0 27.0 91.4 52.3 0.00I 999.9 000000 722324 03071 20100331 75.4 24 23.7 24 9999.9 0 911.6 24 10.0 24 11.6 24 15.0 24.1 92.3 59.4 0.00I 999.9 000000 722324 03071 20100401 73.9 24 46.1 24 9999.9 0 909.5 24 10.0 24 13.3 24 21.0 27.0 89.6 62.2 0.00I 999.9 000000 722324 03071 20100402 63.7 24 33.9 24 9999.9 0 910.3 24 9.9 24 12.7 24 22.0 31.1 79.5 51.1 0.00I 999.9 000000 722324 03071 20100403 59.2 24 16.7 24 9999.9 0 915.7 24 10.0 24 6.5 24 18.1 25.1 81.5 40.1 0.00I 999.9 000000 722324 03071 20100404 72.6 24 44.5 24 9999.9 0 913.5 24 9.0 24 8.2 24 13.0 17.1 89.8 60.8 0.00I 999.9 000000 722324 03071 20100405 76.6 24 53.0 24 9999.9 0 914.6 24 8.8 24 9.3 24 18.1 24.1 91.8 62.1 0.00I 999.9 000000 722324 03071 20100406 75.7 24 49.0 24 9999.9 0 910.8 24 9.9 24 15.0 24 24.1 34.0 86.4 66.7 0.00I 999.9 000000 722324 03071 20100407 62.9 24 11.6 24 9999.9 0 914.8 24 10.0 24 11.7 24 20.0 28.9 84.7 45.7 0.00I 999.9 000000 722324 03071 20100408 53.1 24 16.8 24 9999.9 0 922.7 24 10.0 24 5.1 24 14.0 26.0 71.1 36.5 0.00I 999.9 000000 722324 03071 20100409 62.9 24 20.6 24 9999.9 0 917.5 24 10.0 24 10.1 24 19.0 24.1 81.3 46.4 0.00I 999.9 000000 722324 03071 20100410 68.5 24 36.4 24 9999.9 0 916.9 24 10.0 24 9.9 24 18.1 21.0 90.3 53.1 0.00I 999.9 000000 722324 03071 20100411 72.2 24 47.9 24 9999.9 0 919.3 24 10.0 24 8.2 24 17.1 25.1 88.3 61.7 0.00I 999.9 000000 722324 03071 20100412 69.7 24 57.4 24 9999.9 0 920.0 24 10.0 24 10.9 24 20.0 27.0 79.7 64.2 99.99 999.9 010000 722324 03071 20100413 66.4 24 55.9 24 9999.9 0 917.4 24 10.0 24 14.5 24 20.0 27.0 75.7 61.0 0.00I 999.9 000000 722324 03071 20100414 65.1 24 58.3 24 9999.9 0 918.9 24 8.7 24 14.3 24 21.0 32.1 69.8 60.8 0.03A 999.9 010010 722324 03071 20100415 61.5 24 59.0 24 9999.9 0 920.5 23 6.9 24 7.6 24 14.0 18.1 65.3 59.2 1.17C 999.9 010010 722324 03071 20100416 62.6 24 57.8 24 9999.9 0 920.0 24 8.6 24 9.6 24 22.9 28.9 71.2 59.0 0.03B 999.9 010000 722324 03071 20100417 54.8 24 51.5 24 9999.9 0 920.0 24 7.0 24 12.3 24 20.0 29.9 64.4 50.9 99.99 999.9 010000 722324 03071 20100418 57.9 24 48.1 24 9999.9 0 920.2 24 10.0 24 7.1 24 12.0 17.1 68.4 52.0 0.00I 999.9 000000 722324 03071 20100419 55.7 24 48.6 24 9999.9 0 920.4 24 10.0 24 5.7 24 9.9 999.9 66.9 51.3 0.00I 999.9 000000 722324 03071 20100420 60.4 24 50.5 24 9999.9 0 918.0 24 9.7 24 6.7 24 13.0 19.0 78.4 51.4 0.00I 999.9 000000 722324 03071 20100421 70.1 24 52.8 24 9999.9 0 912.0 24 9.5 24 10.3 24 17.1 24.1 85.6 58.5 0.00I 999.9 000000 722324 03071 20100422 73.4 24 57.6 24 9999.9 0 906.0 24 10.0 24 13.8 24 19.0 27.0 84.7 65.3 0.00I 999.9 000000 722324 03071 20100423 63.9 24 42.2 24 9999.9 0 906.5 24 10.0 24 11.2 24 24.1 28.9 82.8 51.8 0.29G 999.9 010010 722324 03071 20100424 63.9 24 32.2 24 9999.9 0 908.9 24 10.0 24 13.7 24 22.0 28.0 79.0 52.9 0.00G 999.9 000000 722324 03071 20100425 66.0 24 38.6 24 9999.9 0 914.9 24 9.9 24 5.5 24 14.0 24.1 80.8 50.9 0.00I 999.9 000000 722324 03071 20100426 66.8 24 39.4 24 9999.9 0 914.0 24 10.0 24 10.4 24 22.9 28.9 80.4 59.4 0.00I 999.9 000000 722324 03071 20100427 57.7 24 38.9 24 9999.9 0 919.6 24 10.0 24 5.5 24 12.0 17.1 73.0 45.0 0.00I 999.9 000000 722324 03071 20100428 67.3 24 41.6 24 9999.9 0 914.8 24 10.0 24 9.8 24 20.0 26.0 87.8 52.7 0.00I 999.9 000000 722324 03071 20100429 75.3 24 51.0 24 9999.9 0 905.6 24 10.0 24 15.1 24 19.0 35.0 94.1 62.2 0.00I 999.9 000000 722324 03071 20100430 71.3 24 41.9 24 9999.9 0 903.0 24 10.0 24 10.8 24 21.0 28.0 92.8 55.2 0.00I 999.9 000000 722324 03071 20100501 61.0 24 31.4 24 9999.9 0 908.0 23 10.0 24 7.9 24 20.0 27.0 66.4 56.8 99.99 999.9 010000 722324 03071 20100502 62.1 24 24.7 24 9999.9 0 908.8 24 10.0 24 12.9 24 26.0 32.1 75.9 49.1 0.00I 999.9 000000 722324 03071 20100503 64.6 24 28.6 24 9999.9 0 915.7 24 10.0 24 8.8 24 17.1 27.0 76.1 53.1 0.00I 999.9 000000 722324 03071 20100504 71.0 24 29.7 24 9999.9 0 918.4 24 10.0 24 8.7 24 21.0 27.0 93.2 54.0 0.00I 999.9 000000 722324 03071 20100505 75.3 24 31.7 24 9999.9 0 914.5 24 10.0 24 7.2 24 13.0 18.1 92.7 52.0 0.00I 999.9 000000 722324 03071 20100506 78.7 24 37.8 24 9999.9 0 912.8 24 10.0 24 7.3 24 19.0 29.9 100.6 58.3 0.00I 999.9 000000 722324 03071 20100507 76.3 24 47.1 24 9999.9 0 914.4 24 10.0 24 13.0 24 19.0 24.1 98.1 63.0 0.00I 999.9 000000 722324 03071 20100508 60.7 24 31.6 24 9999.9 0 924.6 24 10.0 24 11.5 24 17.1 22.9 75.9 54.1 0.00I 999.9 000000 722324 03071 20100509 63.9 24 47.7 24 9999.9 0 920.4 24 9.4 24 7.0 24 12.0 15.9 83.8* 58.1* 99.99 999.9 010000 722324 03071 20100510 80.2 24 54.9 24 9999.9 0 912.6 24 10.0 24 14.6 24 26.0 36.9 98.2 68.9 0.00I 999.9 000000 722324 03071 20100511 81.9 24 39.3 24 9999.9 0 911.7 24 9.3 24 10.2 24 18.1 25.1 96.8 66.7 0.00I 999.9 000000 722324 03071 20100512 82.3 24 57.1 24 9999.9 0 908.7 24 9.3 24 11.3 24 21.0 28.0 94.8* 71.6* 0.00I 999.9 000000 722324 03071 20100513 67.0 24 54.1 24 9999.9 0 914.5 24 10.0 24 9.8 24 22.0 33.0 86.0* 52.0* 0.30G 999.9 010010 722324 03071 20100514 62.9 24 58.7 24 9999.9 0 918.1 24 6.3 24 11.1 24 20.0 28.0 75.4* 57.2* 0.00G 999.9 010010 722324 03071 20100515 62.0 24 58.1 24 9999.9 0 919.1 24 9.8 24 7.9 24 13.0 22.9 66.4* 58.6* 0.02A 999.9 010010 722324 03071 20100516 66.5 24 60.5 24 9999.9 0 919.4 24 8.6 24 4.1 24 11.1 999.9 81.5* 60.8* 99.99 999.9 010000 722324 03071 20100517 71.6 24 62.3 24 9999.9 0 919.4 24 8.7 24 5.7 24 17.1 21.0 81.9* 61.7* 0.00I 999.9 000000 722324 03071 20100518 70.6 24 58.4 24 9999.9 0 917.1 24 9.4 24 6.0 24 15.0 18.1 88.3* 59.4* 99.99 999.9 010000 722324 03071 20100519 78.0 24 51.3 24 9999.9 0 911.1 24 10.0 24 9.8 24 15.9 22.0 90.7* 65.5* 0.00I 999.9 000000 722324 03071 20100520 75.2 24 45.7 24 9999.9 0 911.7 24 10.0 24 4.3 24 9.9 999.9 91.6* 57.4* 0.00I 999.9 000000 722324 03071 20100521 79.8 24 57.1 24 9999.9 0 914.2 24 9.4 24 9.5 24 18.1 26.0 93.4* 67.6* 0.00I 999.9 000000 722324 03071 20100522 82.0 24 64.3 24 9999.9 0 911.2 24 9.5 24 16.3 24 28.0 40.0 93.2* 74.3* 0.00I 999.9 000000 722324 03071 20100523 79.9 24 66.0 24 9999.9 0 911.0 24 10.0 24 16.2 24 22.0 28.9 87.4* 75.0* 0.00I 999.9 000000 722324 03071 20100524 79.1 24 65.7 24 9999.9 0 911.6 24 10.0 24 14.9 24 22.9 31.1 85.8* 73.8* 99.99 999.9 010010 722324 03071 20100525 76.2 24 64.6 24 9999.9 0 914.3 24 10.0 24 8.4 24 15.0 21.0 86.4* 68.4* 0.00I 999.9 000000 722324 03071 20100526 76.2 24 62.3 24 9999.9 0 917.6 24 10.0 24 8.7 24 15.9 21.0 88.7* 66.4* 0.00I 999.9 000000 722324 03071 20100527 78.0 24 60.4 24 9999.9 0 919.3 24 10.0 24 6.2 24 17.1 27.0 89.4* 64.4* 99.99 999.9 010010 722324 03071 20100528 79.5 24 54.5 24 9999.9 0 918.4 24 10.0 24 6.1 24 12.0 17.1 91.4* 67.8* 0.00I 999.9 000000 722324 03071 20100529 81.3 24 51.1 24 9999.9 0 914.4 24 10.0 24 6.0 24 14.0 18.1 94.1* 65.8* 0.00I 999.9 000000 722324 03071 20100530 82.5 24 51.3 24 9999.9 0 912.9 24 10.0 24 6.8 24 11.1 15.0 95.0* 68.5* 0.00I 999.9 000000 722324 03071 20100531 83.2 24 52.4 24 9999.9 0 916.0 24 9.8 24 6.5 24 17.1 21.0 95.4* 69.1* 99.99 999.9 010000 722324 03071 20100601 83.4 24 56.5 24 9999.9 0 915.4 23 10.0 24 8.8 24 13.0 20.0 96.8* 70.3* 0.00I 999.9 000000 722324 03071 20100602 79.7 24 58.0 24 9999.9 0 912.2 24 9.7 24 7.4 24 19.0 25.1 96.8* 68.5* 99.99 999.9 010010 722324 03071 20100603 79.9 24 56.0 24 9999.9 0 912.2 24 9.9 24 7.1 24 20.0 28.9 94.5* 65.3* 0.00I 999.9 000000 722324 03071 20100604 85.3 24 52.8 24 9999.9 0 911.8 24 10.0 24 6.3 24 11.1 15.0 104.0* 70.0* 0.00I 999.9 000000 722324 03071 20100605 90.2 24 51.9 24 9999.9 0 911.3 24 10.0 24 6.5 24 14.0 22.0 109.8* 72.3* 0.00I 999.9 000000 722324 03071 20100606 89.8 24 61.4 24 9999.9 0 913.5 24 8.5 24 7.9 24 19.0 24.1 108.0* 72.7* 0.00I 999.9 000000 722324 03071 20100607 88.6 24 65.7 24 9999.9 0 917.1 24 9.6 24 10.0 24 15.9 22.0 98.6* 80.1* 0.00I 999.9 000000 722324 03071 20100608 86.0 24 60.4 24 9999.9 0 915.0 24 10.0 24 10.2 24 15.0 21.0 97.0* 75.2* 0.00I 999.9 000000 722324 03071 20100609 86.5 24 60.7 24 9999.9 0 915.2 24 10.0 24 8.1 24 13.0 17.1 99.5* 74.3* 0.00I 999.9 000000 722324 03071 20100610 88.7 24 63.2 24 9999.9 0 912.9 24 9.3 24 9.9 24 15.0 20.0 101.5* 75.7* 0.00I 999.9 000000 722324 03071 20100611 86.6 24 58.6 24 9999.9 0 911.0 24 10.0 24 9.3 24 22.0 34.0 102.6* 74.7* 99.99 999.9 010010 722324 03071 20100612 83.4 24 67.5 24 9999.9 0 913.5 24 10.0 24 15.2 24 28.9 39.0 94.3* 74.8* 99.99 999.9 010010 722324 03071 20100613 85.8 24 67.3 24 9999.9 0 914.8 24 10.0 24 15.0 24 22.9 31.1 95.5* 78.4* 0.00I 999.9 000000 722324 03071 20100614 86.7 24 66.2 24 9999.9 0 914.2 24 10.0 24 11.1 24 18.1 27.0 98.8* 78.1* 99.99 999.9 010010 722324 03071 20100615 77.8 24 66.5 24 9999.9 0 915.5 24 10.0 24 10.1 24 22.0 31.1 92.7* 70.5* 99.99 999.9 010000 722324 03071 20100616 84.6 24 60.8 24 9999.9 0 917.9 24 10.0 24 11.4 24 19.0 28.0 94.8* 74.3* 0.00I 999.9 000000 722324 03071 20100617 84.2 24 61.2 24 9999.9 0 916.8 24 10.0 24 13.5 24 19.0 25.1 96.6* 72.9* 0.00I 999.9 000000 722324 03071 20100618 85.5 24 63.4 24 9999.9 0 916.5 24 10.0 24 10.2 24 18.1 26.0 100.0* 73.8* 0.00I 999.9 000000 722324 03071 20100619 88.2 24 61.8 24 9999.9 0 917.5 24 10.0 24 9.8 24 15.0 19.0 99.0* 77.4* 0.00I 999.9 000000 722324 03071 20100620 88.4 24 62.4 24 9999.9 0 917.5 24 10.0 24 11.4 24 17.1 25.1 100.2* 76.5* 0.00I 999.9 000000 722324 03071 20100621 86.3 24 60.4 24 9999.9 0 916.9 24 10.0 24 9.8 24 15.9 22.0 102.0* 75.6* 99.99 999.9 010000 722324 03071 20100622 89.5 24 58.6 24 9999.9 0 917.1 24 10.0 24 10.0 24 15.9 22.9 103.8* 75.7* 0.00I 999.9 000000 722324 03071 20100623 88.6 24 57.0 24 9999.9 0 918.5 24 10.0 24 9.9 24 17.1 22.0 100.9* 75.2* 0.00I 999.9 000000 722324 03071 20100624 87.7 24 56.3 24 9999.9 0 920.5 24 10.0 24 4.8 24 12.0 18.1 98.4* 73.6* 0.00I 999.9 000000 722324 03071 20100625 86.2 24 59.4 24 9999.9 0 919.2 24 9.8 24 7.8 24 22.0 29.9 97.7* 74.7* 0.00I 999.9 000000 722324 03071 20100626 85.8 24 60.8 24 9999.9 0 916.1 24 10.0 24 9.1 24 19.0 24.1 100.4* 76.6* 0.00I 999.9 000000 722324 03071 20100627 81.6 24 64.7 24 9999.9 0 913.7 24 9.6 24 8.5 24 22.9 39.0 96.4* 71.1* 99.99 999.9 010010 722324 03071 20100628 75.4 24 63.9 24 9999.9 0 916.0 24 10.0 24 7.9 24 15.0 21.0 81.9* 69.4* 99.99 999.9 010010 722324 03071 20100629 75.2 24 66.8 24 9999.9 0 918.6 24 8.6 24 8.5 24 15.9 22.0 85.5* 70.7* 99.99 999.9 010010 722324 03071 20100630 74.4 24 67.4 24 9999.9 0 920.8 24 8.4 24 8.6 24 20.0 999.9 82.9* 69.1* 99.99 999.9 010010 722324 03071 20100701 74.9 24 68.2 24 9999.9 0 921.4 21 9.5 24 8.0 24 17.1 25.1 80.6* 71.6* 99.99 999.9 010000 722324 03071 20100702 72.9 24 70.4 24 9999.9 0 919.5 24 9.0 24 7.2 24 11.1 15.9 77.5* 70.7* 99.99 999.9 010000 722324 03071 20100703 73.8 24 70.7 24 9999.9 0 915.5 24 8.9 24 9.9 24 17.1 22.9 77.4* 71.6* 99.99 999.9 010000 722324 03071 20100704 75.6 24 71.1 24 9999.9 0 913.7 24 9.5 24 10.7 24 15.9 22.0 81.3* 72.9* 99.99 999.9 010000 722324 03071 20100705 76.8 24 70.0 24 9999.9 0 914.1 24 9.8 24 9.4 24 15.0 19.0 80.6* 73.4* 0.00I 999.9 000000 722324 03071 20100706 77.7 24 68.5 24 9999.9 0 916.3 24 10.0 24 5.1 24 12.0 15.0 86.5* 73.8* 99.99 999.9 010000 722324 03071 20100707 79.8 24 66.8 24 9999.9 0 917.5 24 9.8 24 3.6 24 15.9 21.0 88.9* 74.1* 0.00I 999.9 000000 722324 03071 20100708 75.4 24 68.6 24 9999.9 0 920.1 24 9.6 24 6.2 24 14.0 22.9 85.6* 70.2* 99.99 999.9 010000 722324 03071 20100709 74.9 24 69.8 24 9999.9 0 920.9 24 9.2 24 7.4 24 13.0 15.9 82.9* 71.4* 0.03A 999.9 010000 722324 03071 20100710 77.4 24 69.1 24 9999.9 0 920.9 24 10.0 24 6.7 24 14.0 18.1 87.4 72.5 0.25G 999.9 010000 722324 03071 20100711 81.1 24 67.9 24 9999.9 0 917.1 24 10.0 24 9.3 24 13.0 17.1 92.3 73.9 0.09G 999.9 000000 722324 03071 20100712 81.6 24 69.7 24 9999.9 0 913.9 24 10.0 24 6.0 24 12.0 20.0 91.4 74.8 0.00G 999.9 000000 722324 03071 20100713 83.2 24 71.6 24 9999.9 0 913.6 24 10.0 24 5.3 24 9.9 999.9 91.9 74.7 0.00I 999.9 000000 722324 03071 20100714 84.5 24 72.6 24 9999.9 0 916.3 24 9.4 24 9.9 24 15.9 20.0 94.6 76.6 0.00I 999.9 000000 722324 03071 20100715 83.2 24 68.8 24 9999.9 0 919.1 24 10.0 24 9.0 24 14.0 21.0 93.2 75.6 0.00I 999.9 000000 722324 03071 20100716 83.3 24 67.1 24 9999.9 0 920.5 24 9.6 24 6.6 24 11.1 15.9 93.4 75.7 99.99 999.9 010000 722324 03071 20100717 83.9 24 61.9 24 9999.9 0 920.5 24 9.9 24 6.3 24 13.0 17.1 94.1 73.4 0.00I 999.9 000000 722324 03071 20100718 84.1 24 59.8 24 9999.9 0 919.4 24 10.0 24 8.1 24 14.0 20.0 95.0 72.1 0.00I 999.9 000000 722324 03071 20100719 83.7 24 63.2 24 9999.9 0 918.1 24 10.0 24 8.0 24 14.0 20.0 93.2 72.5 0.00I 999.9 000000 722324 03071 20100720 83.0 24 66.0 24 9999.9 0 917.6 24 10.0 24 10.1 24 15.9 22.0 91.8 73.4 0.00I 999.9 000000 722324 03071 20100721 82.0 24 65.0 24 9999.9 0 919.3 24 10.0 24 11.4 24 17.1 25.1 91.4 74.3 0.00I 999.9 000000 722324 03071 20100722 82.7 24 64.8 24 9999.9 0 918.8 24 10.0 24 10.6 24 19.0 22.0 93.2 72.9 0.00I 999.9 000000 722324 03071 20100723 82.8 24 65.8 24 9999.9 0 917.9 24 10.0 24 11.0 24 17.1 22.0 93.0 73.4 0.00I 999.9 000000 722324 03071 20100724 82.0 24 66.0 24 9999.9 0 919.2 24 10.0 24 11.1 24 15.9 22.0 90.7* 73.4* 0.00I 999.9 000000 722324 03071 20100725 81.5 24 60.2 24 9999.9 0 920.6 24 10.0 24 7.5 24 15.9 21.0 93.4 70.2 0.00I 999.9 000000 722324 03071 20100726 81.9 24 60.0 24 9999.9 0 920.1 24 10.0 24 7.1 24 12.0 17.1 92.7 69.8 0.00I 999.9 000000 722324 03071 20100727 79.2 24 62.7 24 9999.9 0 918.7 24 10.0 24 8.3 24 15.9 25.1 93.6* 68.4* 0.00I 999.9 000000 722324 03071 20100728 81.9 24 65.7 24 9999.9 0 919.4 24 10.0 24 9.1 24 17.1 20.0 93.6 71.8 0.00I 999.9 000000 722324 03071 20100729 81.2 24 64.4 24 9999.9 0 922.1 24 10.0 24 9.0 24 14.0 21.0 91.8 72.7 0.00I 999.9 000000 722324 03071 20100730 82.7 24 62.4 24 9999.9 0 919.7 24 10.0 24 7.7 24 19.0 24.1 97.7 71.1 0.00I 999.9 000000 722324 03071 20100731 85.5 24 62.6 24 9999.9 0 917.2 24 9.9 24 5.3 24 12.0 17.1 100.8 73.9 0.00I 999.9 000000 722324 03071 20100801 88.7 24 58.3 24 9999.9 0 916.3 21 10.0 24 5.3 24 9.9 15.9 101.7* 73.9* 0.00I 999.9 000000 722324 03071 20100802 88.6 24 48.9 24 9999.9 0 917.8 24 10.0 24 8.6 24 13.0 17.1 101.5 72.7 0.00I 999.9 000000 722324 03071 20100803 87.4 24 53.6 24 9999.9 0 919.6 24 10.0 24 7.2 24 13.0 15.0 100.4 71.6 0.00I 999.9 000000 722324 03071 20100804 87.7 24 60.8 24 9999.9 0 919.0 24 9.9 24 7.7 24 13.0 15.9 99.7 73.9 0.00I 999.9 000000 722324 03071 20100805 88.5 24 61.0 24 9999.9 0 917.9 24 10.0 24 6.1 24 11.1 15.9 99.9 74.3 0.00I 999.9 000000 722324 03071 20100806 87.4 24 59.9 24 9999.9 0 917.5 24 10.0 24 4.8 24 12.0 15.9 99.5 72.7 0.00I 999.9 000000 722324 03071 20100807 88.4 24 61.0 24 9999.9 0 916.1 24 10.0 24 7.6 24 13.0 19.0 101.3 77.5 0.00I 999.9 000000 722324 03071 20100808 88.2 24 58.3 24 9999.9 0 915.0 24 9.9 24 8.4 24 13.0 19.0 101.5 75.7 0.00I 999.9 000000 722324 03071 20100809 85.9 24 61.5 24 9999.9 0 916.2 24 10.0 24 7.5 24 21.0 28.9 99.3 73.9 0.01G 999.9 010010 722324 03071 20100810 80.8 24 66.4 24 9999.9 0 917.5 24 9.7 24 6.0 24 28.0 42.9 98.8 67.8 0.25G 999.9 010010 722324 03071 20100811 86.9 24 64.1 24 9999.9 0 917.3 24 9.6 24 5.0 24 21.0 27.0 99.1 75.2 0.00G 999.9 010000 722324 03071 20100812 85.8 24 64.6 24 9999.9 0 916.2 24 9.9 24 4.7 24 9.9 14.0 99.0 76.3 0.00I 999.9 000000 722324 03071 20100813 88.4 24 60.1 24 9999.9 0 913.9 24 9.9 24 7.0 24 11.1 14.0 100.2 76.1 0.00I 999.9 000000 722324 03071 20100814 89.0 24 60.5 24 9999.9 0 914.7 24 9.9 24 8.4 24 13.0 17.1 98.6 77.2 0.00I 999.9 000000 722324 03071 20100815 88.6 24 64.1 24 9999.9 0 917.8 24 10.0 24 8.3 24 15.9 18.1 99.5 77.5 0.00I 999.9 000000 722324 03071 20100816 86.2 24 63.1 24 9999.9 0 919.4 24 10.0 24 4.8 24 19.0 22.9 99.9 74.7 0.00I 999.9 000000 722324 03071 20100817 89.0 24 59.6 24 9999.9 0 917.6 24 10.0 24 4.4 24 11.1 15.0 103.1 73.6 0.00I 999.9 000000 722324 03071 20100818 85.5 24 65.3 24 9999.9 0 918.7 24 10.0 24 5.7 24 13.0 17.1 100.0* 74.3* 0.18G 999.9 010000 722324 03071 20100819 84.6 24 65.3 24 9999.9 0 917.2 24 10.0 24 6.4 24 12.0 22.9 98.6 73.0 0.00G 999.9 000000 722324 03071 20100820 88.1 24 61.3 24 9999.9 0 913.3 24 10.0 24 8.1 24 14.0 18.1 101.5 75.4 0.00I 999.9 000000 722324 03071 20100821 86.3 24 62.7 24 9999.9 0 915.9 24 9.9 24 7.7 24 21.0 28.0 99.5 77.4 0.00I 999.9 000000 722324 03071 20100822 88.0 24 58.7 24 9999.9 0 919.3 24 10.0 24 8.6 24 13.0 18.1 100.0 75.9 0.00I 999.9 000000 722324 03071 20100823 89.5 24 51.9 24 9999.9 0 917.8 24 10.0 24 6.0 24 12.0 18.1 102.7 75.2 0.00I 999.9 000000 722324 03071 20100824 86.2 24 54.9 24 9999.9 0 918.0 24 10.0 24 9.6 24 22.0 29.9 101.3 73.2 0.00I 999.9 000000 722324 03071 20100825 77.2 24 56.1 24 9999.9 0 924.3 24 10.0 24 11.4 24 20.0 28.0 86.9 69.1 99.99 999.9 010000 722324 03071 20100826 74.8 24 47.8 24 9999.9 0 924.4 24 10.0 24 4.5 24 12.0 15.0 88.0 62.4 0.00I 999.9 000000 722324 03071 20100827 78.8 24 57.8 24 9999.9 0 920.7 24 9.8 24 4.4 24 8.9 14.0 91.9 65.7 0.00I 999.9 000000 722324 03071 20100828 82.1 24 56.2 24 9999.9 0 916.1 24 10.0 24 8.5 24 17.1 22.0 94.6 69.8 0.00I 999.9 000000 722324 03071 20100829 83.7 24 54.6 24 9999.9 0 914.6 24 10.0 24 9.6 24 15.9 20.0 96.3 72.1 0.00I 999.9 000000 722324 03071 20100830 84.4 24 62.9 24 9999.9 0 916.6 24 10.0 24 11.1 24 18.1 24.1 94.1 75.4 0.00I 999.9 000000 722324 03071 20100831 85.1 24 63.6 24 9999.9 0 918.0 24 10.0 24 8.2 24 15.9 21.0 96.1 75.9 0.00I 999.9 000000 722324 03071 20100901 84.6 24 62.2 24 9999.9 0 916.1 22 10.0 24 5.8 24 18.1 28.9 97.3* 74.3* 99.99 999.9 010000 722324 03071 20100902 80.9 24 63.9 24 9999.9 0 915.4 24 10.0 24 5.9 24 15.0 17.1 99.5 70.2 99.99 999.9 010010 722324 03071 20100903 76.2 24 55.9 24 9999.9 0 923.1 24 10.0 24 11.0 24 22.0 28.0 95.9 64.0 0.09G 999.9 010000 722324 03071 20100904 71.7 24 46.0 24 9999.9 0 923.8 24 10.0 24 3.3 24 8.9 999.9 88.2 57.4 0.00G 999.9 000000 722324 03071 20100905 80.1 24 47.5 24 9999.9 0 916.9 24 10.0 24 6.5 24 14.0 17.1 97.5 65.1 0.00I 999.9 000000 722324 03071 20100906 82.3 24 55.6 24 9999.9 0 913.8 24 10.0 24 10.8 24 15.0 20.0 95.7 70.3 0.00I 999.9 000000 722324 03071 20100907 76.8 24 60.3 24 9999.9 0 916.6 24 10.0 24 7.0 24 14.0 21.0 93.2 67.1 0.02A 999.9 010000 722324 03071 20100908 75.5 24 65.1 24 9999.9 0 916.7 24 9.7 24 6.4 24 9.9 999.9 89.1 69.3 99.99 999.9 010000 722324 03071 20100909 81.1 24 64.1 24 9999.9 0 914.3 24 10.0 24 5.7 24 13.0 15.9 97.0 69.1 0.00I 999.9 000000 722324 03071 20100910 81.7 24 63.4 24 9999.9 0 913.8 24 10.0 24 6.7 24 12.0 17.1 93.2 74.3 99.99 999.9 010000 722324 03071 20100911 82.9 24 48.3 24 9999.9 0 916.2 24 10.0 24 6.7 24 11.1 999.9 98.6 64.2 0.00I 999.9 000000 722324 03071 20100912 80.6 24 60.4 24 9999.9 0 920.6 24 9.8 24 5.7 24 9.9 15.0 95.2 71.6 0.00I 999.9 000000 722324 03071 20100913 81.7 24 64.4 24 9999.9 0 920.6 24 10.0 24 7.0 24 13.0 19.0 94.1 71.6 0.00I 999.9 000000 722324 03071 20100914 82.5 24 61.3 24 9999.9 0 919.1 24 10.0 24 5.7 24 13.0 17.1 95.2 69.6 0.00I 999.9 000000 722324 03071 20100915 84.2 24 62.2 24 9999.9 0 917.4 24 10.0 24 7.5 24 14.0 21.0 96.4* 72.7* 99.99 999.9 010010 722324 03071 20100916 79.2 24 65.4 24 9999.9 0 917.3 24 10.0 24 6.0 24 14.0 20.0 94.5 71.2 99.99 999.9 010010 722324 03071 20100917 75.9 24 64.4 24 9999.9 0 919.3 24 9.4 24 7.1 24 21.0 28.9 90.9 64.4 0.81G 999.9 010010 722324 03071 20100918 77.8 24 64.0 24 9999.9 0 919.9 24 10.0 24 5.4 24 11.1 15.9 89.6 68.0 0.02G 999.9 000000 722324 03071 20100919 76.7 24 62.9 24 9999.9 0 921.3 24 10.0 24 7.0 24 12.0 15.9 88.2 67.3 0.00G 999.9 000000 722324 03071 20100920 73.3 24 63.5 24 9999.9 0 919.5 24 10.0 24 6.7 24 12.0 17.1 80.6 65.1 99.99 999.9 010000 722324 03071 20100921 74.9 24 66.7 24 9999.9 0 915.8 24 9.2 24 8.3 24 14.0 17.1 85.6 69.6 99.99 999.9 010000 722324 03071 20100922 76.3 24 65.6 24 9999.9 0 915.1 24 10.0 24 11.1 24 18.1 24.1 83.7 71.8 0.00I 999.9 000000 722324 03071 20100923 78.2 24 65.7 24 9999.9 0 915.0 24 10.0 24 13.9 24 19.0 27.0 87.6 73.6 0.00I 999.9 000000 722324 03071 20100924 78.4 24 67.1 24 9999.9 0 919.6 24 10.0 24 6.3 24 12.0 15.0 87.4 72.5 99.99 999.9 010000 722324 03071 20100925 73.0 24 67.0 24 9999.9 0 922.1 24 9.5 24 4.6 24 20.0 27.0 84.7* 64.4* 0.84A 999.9 010010 722324 03071 20100926 69.9 24 58.9 24 9999.9 0 921.7 24 10.0 24 5.8 24 17.1 21.0 77.5 65.8 0.00I 999.9 000000 722324 03071 20100927 66.3 24 47.4 24 9999.9 0 920.5 24 10.0 24 2.0 24 8.0 999.9 81.9 54.5 0.00I 999.9 000000 722324 03071 20100928 72.2 24 52.8 24 9999.9 0 917.8 24 10.0 24 4.6 24 9.9 999.9 88.7 58.1 0.00I 999.9 000000 722324 03071 20100929 74.4 24 53.8 24 9999.9 0 915.3 24 10.0 24 2.4 24 7.0 999.9 91.0 59.9 0.00I 999.9 000000 722324 03071 20100930 75.3 24 51.9 24 9999.9 0 917.9 24 10.0 24 5.3 24 13.0 19.0 88.7 60.1 0.00I 999.9 000000 722324 03071 20101001 73.0 24 54.4 24 9999.9 0 922.5 22 10.0 24 4.6 24 8.0 999.9 85.1* 58.6* 0.00I 999.9 000000 722324 03071 20101002 72.2 24 51.7 24 9999.9 0 922.5 24 10.0 24 5.9 24 9.9 15.9 83.7 59.4 0.00I 999.9 000000 722324 03071 20101003 64.0 24 48.4 24 9999.9 0 926.1 24 10.0 24 7.4 24 12.0 19.0 78.1 55.9 99.99 999.9 010000 722324 03071 20101004 61.0 24 46.3 24 9999.9 0 925.3 24 10.0 24 7.9 24 15.0 17.1 75.7 52.9 0.00I 999.9 000000 722324 03071 20101005 66.3 24 48.5 24 9999.9 0 924.3 24 10.0 24 8.7 24 15.9 22.0 80.8 55.9 0.00I 999.9 000000 722324 03071 20101006 68.3 24 50.0 24 9999.9 0 926.0 24 10.0 24 7.5 24 11.1 17.1 81.7 54.5 0.00I 999.9 000000 722324 03071 20101007 69.0 24 45.8 24 9999.9 0 925.3 24 9.8 24 4.7 24 9.9 15.0 83.5 52.7 0.00I 999.9 000000 722324 03071 20101008 69.3 24 42.8 24 9999.9 0 922.7 24 10.0 24 4.2 24 11.1 15.9 82.4 53.6 0.00I 999.9 000000 722324 03071 20101009 71.1 24 44.9 24 9999.9 0 920.0 24 9.9 24 4.9 24 9.9 14.0 90.7 58.3 0.00I 999.9 000000 722324 03071 20101010 74.5 24 46.7 24 9999.9 0 916.3 24 10.0 24 5.8 24 12.0 15.9 87.8 61.7 0.00I 999.9 000000 722324 03071 20101011 68.7 24 42.0 24 9999.9 0 916.0 24 10.0 24 4.6 24 11.1 15.0 83.5 53.8 0.00I 999.9 000000 722324 03071 20101012 69.2 24 43.9 24 9999.9 0 920.2 24 10.0 24 4.9 24 8.9 15.0 82.4 54.0 0.00I 999.9 000000 722324 03071 20101013 66.1 24 45.6 24 9999.9 0 927.3 24 10.0 24 4.8 24 11.1 15.0 79.2 55.4 0.00I 999.9 000000 722324 03071 20101014 65.0 24 43.2 24 9999.9 0 928.9 24 10.0 24 3.7 24 8.0 999.9 80.2 50.0 0.00I 999.9 000000 722324 03071 20101015 68.6 24 42.3 24 9999.9 0 923.5 24 10.0 24 3.6 24 9.9 999.9 83.8 52.0 0.00I 999.9 000000 722324 03071 20101016 69.4 24 39.9 24 9999.9 0 921.1 24 10.0 24 5.7 24 12.0 14.0 84.6 52.7 0.00I 999.9 000000 722324 03071 20101017 70.7 24 40.8 24 9999.9 0 920.1 24 10.0 24 5.5 24 9.9 999.9 86.2 56.5 0.00I 999.9 000000 722324 03071 20101018 71.9 24 48.9 24 9999.9 0 916.4 24 9.8 24 6.0 24 13.0 999.9 88.9 59.4 0.00I 999.9 000000 722324 03071 20101019 69.0 24 52.6 24 9999.9 0 916.8 24 10.0 24 4.1 24 11.1 15.0 83.3* 54.9* 0.00I 999.9 000000 722324 03071 20101020 68.7 24 57.5 24 9999.9 0 919.6 24 10.0 24 4.8 24 9.9 14.0 82.0 57.6 0.00I 999.9 000000 722324 03071 20101021 71.0 24 59.1 24 9999.9 0 917.2 24 10.0 24 9.0 24 17.1 22.0 80.8 64.4 0.00I 999.9 000000 722324 03071 20101022 69.5 24 52.4 24 9999.9 0 914.5 24 9.9 24 7.3 24 17.1 22.0 77.5 62.1 0.00I 999.9 000000 722324 03071 20101023 69.7 24 38.3 24 9999.9 0 914.9 24 10.0 24 8.4 24 19.0 25.1 81.1 57.4 99.99 999.9 010000 722324 03071 20101024 69.9 24 34.5 24 9999.9 0 915.4 24 10.0 24 10.1 24 17.1 25.1 81.7 57.2 0.00I 999.9 000000 722324 03071 20101025 72.7 24 34.1 24 9999.9 0 908.0 24 9.8 24 13.9 24 27.0 39.0 86.4 60.8 0.00I 999.9 000000 722324 03071 20101026 68.4 24 28.8 24 9999.9 0 909.3 24 10.0 24 8.4 24 25.1 34.0 82.2 52.3 0.00I 999.9 000000 722324 03071 20101027 67.4 24 32.4 24 9999.9 0 914.5 24 10.0 24 6.5 24 9.9 15.0 79.2 52.2 0.03G 999.9 000000 722324 03071 20101028 59.0 24 24.8 24 9999.9 0 930.3 24 10.0 24 6.2 24 13.0 15.9 74.3 44.4 0.00G 999.9 000000 722324 03071 20101029 58.2 24 25.0 24 9999.9 0 930.3 24 10.0 24 5.9 24 13.0 17.1 76.6 43.7 0.00I 999.9 000000 722324 03071 20101030 67.0 24 30.6 24 9999.9 0 920.7 24 10.0 24 7.1 24 11.1 14.0 90.1 50.4 0.00I 999.9 000000 722324 03071 20101031 73.0 24 34.0 24 9999.9 0 916.3 24 10.0 24 7.7 24 15.0 20.0 88.5 60.1 0.00I 999.9 000000 722324 03071 20101101 62.6 24 35.6 24 9999.9 0 920.4 22 10.0 24 5.1 24 13.0 18.1 81.5 49.1 0.00I 999.9 000000 722324 03071 20101102 58.4 24 35.3 24 9999.9 0 926.0 24 10.0 24 9.4 24 17.1 22.9 72.7 45.5 0.00I 999.9 000000 722324 03071 20101103 58.3 24 31.8 24 9999.9 0 925.1 24 10.0 24 9.8 24 19.0 28.0 75.2 43.7 0.00I 999.9 000000 722324 03071 20101104 56.0 24 28.8 24 9999.9 0 929.0 24 10.0 24 7.8 24 14.0 19.0 70.7 41.5 0.00I 999.9 000000 722324 03071 20101105 53.8 24 25.8 24 9999.9 0 926.1 24 9.9 24 2.5 24 9.9 14.0 72.3 39.2 0.00I 999.9 000000 722324 03071 20101106 61.2 24 26.2 24 9999.9 0 924.1 24 10.0 24 8.4 24 13.0 17.1 77.4 49.1 0.00I 999.9 000000 722324 03071 20101107 59.9 24 26.4 24 9999.9 0 924.6 24 10.0 24 9.5 24 15.0 19.0 77.4 46.2 0.00I 999.9 000000 722324 03071 20101108 63.3 24 36.6 24 9999.9 0 918.2 24 10.0 24 10.1 24 14.0 19.0 80.6 52.0 0.00I 999.9 000000 722324 03071 20101109 65.2 24 37.9 24 9999.9 0 912.0 24 10.0 24 10.6 24 14.0 21.0 80.2 54.9 0.00I 999.9 000000 722324 03071 20101110 61.6 24 32.1 24 9999.9 0 914.7 24 10.0 24 4.4 24 8.9 15.0 74.3 44.6 0.00I 999.9 000000 722324 03071 20101111 60.4 24 42.3 24 9999.9 0 917.4 24 10.0 24 5.7 24 20.0 27.0 74.5* 46.4* 0.00I 999.9 000000 722324 03071 20101112 58.8 24 46.6 24 9999.9 0 920.9 24 10.0 24 9.7 24 21.0 28.0 70.0 48.6 0.00I 999.9 000000 722324 03071 20101113 44.9 24 30.7 24 9999.9 0 926.8 24 9.6 24 2.3 24 9.9 999.9 61.3 32.0 0.00I 999.9 000000 722324 03071 20101114 51.5 24 27.8 24 9999.9 0 918.0 24 10.0 24 6.7 24 9.9 15.0 70.7 37.4 0.00I 999.9 000000 722324 03071 20101115 56.8 24 29.2 24 9999.9 0 909.2 24 10.0 24 11.0 24 22.0 28.9 68.0 49.3 0.00I 999.9 000000 722324 03071 20101116 49.9 24 29.7 24 9999.9 0 914.9 24 10.0 24 7.4 24 18.1 25.1 67.5 35.6 0.00I 999.9 000000 722324 03071 20101117 57.1 24 23.8 24 9999.9 0 915.9 24 9.9 24 11.4 24 22.0 32.1 64.9 46.9 0.00I 999.9 000000 722324 03071 20101118 46.1 24 30.1 24 9999.9 0 929.1 24 10.0 24 3.9 24 8.9 999.9 65.3 30.0 0.00I 999.9 000000 722324 03071 20101119 56.6 24 27.2 24 9999.9 0 921.5 24 10.0 24 8.3 24 13.0 17.1 76.6 45.9 0.00I 999.9 000000 722324 03071 20101120 61.4 24 35.4 24 9999.9 0 917.5 24 10.0 24 8.6 24 12.0 17.1 79.2 49.3 0.00I 999.9 000000 722324 03071 20101121 66.4 24 43.0 24 9999.9 0 915.5 24 10.0 24 8.6 24 13.0 21.0 82.9 55.9 0.00I 999.9 000000 722324 03071 20101122 65.9 24 40.0 24 9999.9 0 915.1 24 9.9 24 7.8 24 18.1 28.0 78.8 50.9 0.00I 999.9 000000 722324 03071 20101123 57.0 24 20.1 24 9999.9 0 918.3 24 10.0 24 5.0 24 9.9 15.9 74.8 38.3 0.00I 999.9 000000 722324 03071 20101124 66.5 24 43.3 24 9999.9 0 911.8 24 8.3 24 9.3 24 15.0 22.0 79.7 58.6 0.00I 999.9 000000 722324 03071 20101125 53.8 24 25.6 24 9999.9 0 912.0 24 9.8 24 6.6 24 15.9 24.1 73.8 39.2 0.00I 999.9 000000 722324 03071 20101126 37.8 24 4.5 24 9999.9 0 924.1 24 10.0 24 3.4 24 8.0 999.9 56.5 23.5 0.00I 999.9 000000 722324 03071 20101127 44.7 24 8.3 24 9999.9 0 922.5 24 10.0 24 4.4 24 14.0 17.1 64.2 27.3 0.00I 999.9 000000 722324 03071 20101128 51.9 24 19.4 24 9999.9 0 912.1 24 10.0 24 10.8 24 18.1 22.9 70.3 41.4 0.00I 999.9 000000 722324 03071 20101129 52.2 24 25.5 24 9999.9 0 910.0 24 10.0 24 10.6 24 25.1 32.1 63.5 39.9 0.00I 999.9 000000 722324 03071 20101130 40.0 24 13.1 24 9999.9 0 925.4 24 10.0 24 7.8 24 13.0 19.0 53.8 26.6 0.00I 999.9 000000 722324 03071 20101201 44.0 23 10.5 23 9999.9 0 924.4 16 10.0 23 6.6 23 15.0 19.0 63.5* 30.9* 0.00I 999.9 000000 722324 03071 20101202 55.0 24 12.2 24 9999.9 0 921.0 24 10.0 24 5.2 24 8.9 999.9 77.2 39.7 0.00I 999.9 000000 722324 03071 20101203 56.9 24 20.6 24 9999.9 0 920.6 24 10.0 24 3.2 24 12.0 15.9 79.3 35.6 0.00I 999.9 000000 722324 03071 20101204 56.9 24 23.1 24 9999.9 0 920.6 24 10.0 24 9.0 24 22.9 28.9 70.7 41.9 0.00I 999.9 000000 722324 03071 20101205 41.4 24 23.2 24 9999.9 0 928.7 24 10.0 24 5.5 24 9.9 999.9 53.8 30.6 0.00I 999.9 000000 722324 03071 20101206 37.7 24 18.2 24 9999.9 0 930.6 24 10.0 24 2.6 24 7.0 999.9 52.7 26.6 0.00I 999.9 000000 722324 03071 20101207 47.8 24 22.3 24 9999.9 0 920.4 24 9.8 24 4.6 24 18.1 28.9 74.3 32.0 0.00I 999.9 000000 722324 03071 20101208 45.2 24 26.6 24 9999.9 0 926.6 24 9.9 24 5.8 24 15.9 22.0 61.9 30.0 0.00I 999.9 000000 722324 03071 20101209 52.7 24 24.8 24 9999.9 0 920.2 24 10.0 24 8.3 24 17.1 22.0 74.3 39.2 0.00I 999.9 000000 722324 03071 20101210 52.4 24 19.3 24 9999.9 0 916.6 24 10.0 24 3.0 24 9.9 15.0 73.9 35.2 0.00I 999.9 000000 722324 03071 20101211 57.8 24 21.5 24 9999.9 0 916.1 24 10.0 24 8.4 24 15.9 26.0 67.6 47.8 0.00I 999.9 000000 722324 03071 20101212 40.8 24 10.7 24 9999.9 0 927.8 24 10.0 24 3.8 24 8.9 999.9 53.6 27.7 0.00I 999.9 000000 722324 03071 20101213 50.2 22 11.5 22 9999.9 0 922.9 22 10.0 22 7.2 22 13.0 15.0 70.7 37.6 0.00I 999.9 000000 722324 03071 20101214 55.4 24 18.3 24 9999.9 0 916.4 24 10.0 24 7.2 24 11.1 15.0 77.2 38.3 0.00I 999.9 000000 722324 03071 20101215 62.7 24 20.8 24 9999.9 0 909.1 24 9.9 24 12.4 24 20.0 28.0 81.3 49.3 0.00I 999.9 000000 722324 03071 20101216 54.4 24 26.2 24 9999.9 0 913.1 24 10.0 24 9.2 24 15.9 25.1 74.8 37.4 0.00I 999.9 000000 722324 03071 20101217 42.7 24 22.3 24 9999.9 0 918.8 24 10.0 24 6.8 24 12.0 20.0 52.2 34.0 0.00I 999.9 000000 722324 03071 20101218 40.5 24 19.9 24 9999.9 0 920.2 24 10.0 24 5.3 24 13.0 15.0 60.8 30.7 0.00I 999.9 000000 722324 03071 20101219 55.1 24 31.4 24 9999.9 0 914.3 24 10.0 24 6.1 24 12.0 17.1 75.9 41.0 0.00I 999.9 000000 722324 03071 20101220 64.6 24 34.3 24 9999.9 0 912.8 24 10.0 24 10.6 24 20.0 25.1 79.7 53.1 0.00I 999.9 000000 722324 03071 20101221 64.9 24 29.2 24 9999.9 0 916.6 24 10.0 24 8.8 24 18.1 22.0 81.5 46.9 0.00I 999.9 000000 722324 03071 20101222 49.3 24 33.5 24 9999.9 0 922.4 23 7.5 24 7.7 24 15.0 20.0 74.7 38.7 0.00I 999.9 000000 722324 03071 20101223 45.5 24 32.7 24 9999.9 0 922.8 22 8.1 24 7.4 24 12.0 999.9 50.4 43.3 99.99 999.9 010000 722324 03071 20101224 44.6 24 41.0 24 9999.9 0 921.0 23 3.8 24 7.6 24 19.0 26.0 47.7 40.3 0.00I 999.9 100000 722324 03071 20101225 37.7 24 27.3 24 9999.9 0 928.6 24 10.0 24 4.3 24 8.9 999.9 51.1 26.4 0.00I 999.9 000000 722324 03071 20101226 39.5 24 24.9 24 9999.9 0 927.1 24 10.0 24 5.1 24 15.9 19.0 57.7 22.8 0.00I 999.9 000000 722324 03071 20101227 45.9 24 24.2 24 9999.9 0 919.4 24 10.0 24 6.2 24 13.0 15.9 64.8 33.4 0.00I 999.9 000000 722324 03071 20101228 47.2 24 33.0 24 9999.9 0 918.9 24 9.6 24 5.6 24 12.0 17.1 59.4 34.9 0.00I 999.9 000000 722324 03071 20101229 52.1 24 37.0 24 9999.9 0 911.3 24 8.6 24 8.9 24 22.9 31.1 68.9 41.5 0.00I 999.9 100000 722324 03071 20101230 59.6 24 21.7 24 9999.9 0 903.2 24 10.0 24 9.1 24 20.0 28.0 72.9 47.5 0.00I 999.9 000000 722324 03071 20101231 49.5 24 17.0 24 9999.9 0 908.0 24 9.8 24 11.1 24 31.1 41.0 69.1 40.1 0.00I 999.9 000000 fluids-1.0.22/tests/gsod/1992/0000755000175000017500000000000014302004506015104 5ustar nileshnileshfluids-1.0.22/tests/gsod/1992/724050-13743.op0000644000175000017500000014350514302004506016674 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19920101 35.5 24 28.1 24 1035.7 24 1033.3 24 10.5 24 4.8 24 8.9 999.9 43.0* 28.0 0.00G 999.9 000000 724050 13743 19920102 41.4 22 36.8 22 1030.5 22 1028.1 22 6.1 22 5.0 22 8.0 999.9 46.9* 28.0 0.00G 999.9 100000 724050 13743 19920103 47.8 24 45.4 24 1020.1 24 1017.7 24 5.2 23 10.6 24 20.0 26.0 55.0* 39.0 0.07G 999.9 110000 724050 13743 19920104 48.7 24 46.9 24 1005.9 24 1003.5 24 4.9 24 19.8 24 28.0 36.9 55.0 44.1 0.20G 999.9 110000 724050 13743 19920105 48.5 24 42.6 24 1009.4 24 1007.0 24 9.9 24 14.2 24 22.9 24.1 53.1 46.0 1.44G 999.9 110000 724050 13743 19920106 41.5 24 30.9 24 1011.5 24 1009.1 24 11.8 24 8.1 24 14.0 999.9 53.1 32.0 0.00G 999.9 000000 724050 13743 19920107 40.3 23 28.3 23 1016.2 23 1013.9 23 11.0 23 11.4 23 15.9 20.0 48.0 32.0 0.00G 999.9 000000 724050 13743 19920108 40.5 24 27.5 24 1023.5 24 1021.1 24 11.3 24 6.8 24 14.0 20.0 48.0 32.0 0.00G 999.9 000000 724050 13743 19920109 42.6 24 36.3 24 1016.8 24 1014.4 24 6.9 24 6.9 24 12.0 999.9 48.0 32.0 0.08G 999.9 110000 724050 13743 19920110 46.3 23 38.0 23 1008.9 23 1006.5 23 10.0 22 10.8 23 18.1 25.1 51.1 37.9 0.01G 999.9 110000 724050 13743 19920111 42.0 24 24.8 24 1013.2 24 1010.8 24 16.8 24 11.9 24 15.9 22.9 51.1 37.9 0.00G 999.9 000000 724050 13743 19920112 39.6 23 30.0 23 1020.2 23 1017.8 23 12.6 23 5.4 23 11.1 999.9 51.1* 30.9 0.00G 999.9 000000 724050 13743 19920113 48.6 24 36.4 24 1012.6 24 1010.2 24 10.5 24 5.9 24 8.9 999.9 55.0* 30.0 0.00G 999.9 010000 724050 13743 19920114 55.3 24 45.2 24 993.6 24 991.2 24 9.7 24 15.1 24 29.9 41.0 64.9 42.1 0.31G 999.9 110000 724050 13743 19920115 31.0 24 10.6 24 1011.6 24 1009.2 24 18.3 24 14.4 24 22.0 32.1 42.1* 24.1 0.29G 999.9 000000 724050 13743 19920116 26.6 23 5.6 23 1012.2 23 1009.8 23 15.0 23 14.9 23 24.1 38.1 35.1 19.9 0.02G 999.9 001000 724050 13743 19920117 27.3 24 5.8 24 1013.6 24 1011.2 24 15.6 24 9.0 24 15.9 18.1 45.0* 16.0 0.04G 999.9 000000 724050 13743 19920118 34.1 24 10.5 24 1017.2 24 1014.7 24 18.1 24 10.9 24 20.0 31.1 45.0 18.0 0.00G 999.9 000000 724050 13743 19920119 21.6 24 -0.2 24 1027.1 24 1024.7 24 19.7 24 12.3 24 18.1 22.0 39.9 14.0 0.00D 999.9 000000 724050 13743 19920120 27.4 24 8.8 24 1018.4 24 1016.0 24 16.1 24 7.9 24 15.0 24.1 42.1* 14.0 0.00G 999.9 000000 724050 13743 19920121 35.9 23 22.8 23 1016.3 23 1013.9 23 12.4 23 7.7 23 14.0 999.9 53.1* 18.0 0.00G 999.9 000000 724050 13743 19920122 36.1 24 26.4 24 1023.1 24 1020.6 24 8.9 24 7.0 24 11.1 999.9 54.0 24.1 0.00G 999.9 100000 724050 13743 19920123 41.0 22 38.3 22 1010.5 22 1008.1 22 5.1 22 7.7 22 20.0 29.9 54.0* 28.9 0.06G 999.9 110000 724050 13743 19920124 40.3 24 27.7 24 1001.1 24 998.7 24 15.2 23 12.3 24 22.0 34.0 55.9 31.1* 0.24G 999.9 110000 724050 13743 19920125 28.9 24 11.7 24 1021.8 24 1019.4 24 15.9 24 10.7 24 19.0 29.9 46.9 25.0 0.00G 999.9 101000 724050 13743 19920126 30.1 24 23.9 24 1025.0 24 1022.5 24 9.3 24 8.2 24 14.0 19.0 35.1* 25.0 0.15G 2.8 101000 724050 13743 19920127 29.0 24 23.9 24 1033.3 24 1030.8 24 7.6 24 5.7 24 12.0 999.9 37.0* 21.0 0.00G 1.2 100000 724050 13743 19920128 37.7 22 30.6 22 1027.5 22 1025.1 22 8.1 22 6.0 22 8.9 999.9 48.0* 21.0 0.00G 999.9 100000 724050 13743 19920129 36.3 24 30.7 24 1025.9 24 1023.5 24 5.7 24 5.6 24 9.9 999.9 48.0 28.9 0.00G 999.9 100000 724050 13743 19920130 37.2 23 32.3 23 1017.7 23 1015.3 23 3.9 23 3.8 23 8.0 999.9 48.0 28.9 0.00G 999.9 100000 724050 13743 19920131 40.1 23 33.8 23 1006.8 23 1004.4 23 7.4 23 8.5 23 20.0 22.0 48.9 28.9 0.00G 999.9 100000 724050 13743 19920201 38.4 24 24.0 24 1010.9 24 1008.5 24 15.1 24 14.9 24 24.1 31.1 46.9 35.1 0.00G 999.9 001000 724050 13743 19920202 31.8 23 11.4 23 1018.9 23 1016.5 23 15.6 23 14.2 23 18.1 25.1 43.0* 24.1 0.00G 999.9 000000 724050 13743 19920203 39.8 24 18.9 24 1018.8 24 1016.4 24 13.3 24 9.1 24 14.0 999.9 48.9* 24.1 0.00G 999.9 000000 724050 13743 19920204 39.6 23 30.3 23 1013.0 23 1010.6 23 8.4 23 7.2 23 15.0 999.9 54.0* 28.9 0.00G 999.9 100000 724050 13743 19920205 39.3 24 20.3 24 1012.3 24 1009.9 24 16.5 24 14.1 24 22.9 28.0 57.0 30.0 0.00G 999.9 000000 724050 13743 19920206 34.3 23 18.6 23 1014.8 23 1012.4 23 14.7 23 6.6 23 12.0 999.9 44.1 26.1 0.00G 999.9 000000 724050 13743 19920207 35.2 24 27.5 24 1006.1 24 1003.7 24 10.6 24 6.4 24 8.9 999.9 46.9* 26.1 0.00G 999.9 100000 724050 13743 19920208 37.2 24 29.0 24 1006.1 24 1003.7 24 8.9 24 7.1 24 15.9 22.9 48.0 28.0 0.04G 999.9 111000 724050 13743 19920209 31.2 24 12.4 24 1021.3 24 1018.8 24 16.3 24 12.5 24 15.9 25.1 43.0 27.0 0.00D 999.9 000000 724050 13743 19920210 26.9 24 8.3 24 1036.1 24 1033.6 24 14.2 24 8.0 24 12.0 999.9 36.0 19.9 0.00G 999.9 000000 724050 13743 19920211 38.5 22 23.5 22 1027.4 22 1025.0 22 13.7 22 8.3 22 13.0 19.0 55.9* 19.9 0.00G 999.9 000000 724050 13743 19920212 36.4 24 14.1 24 1030.2 24 1027.8 24 14.3 24 12.1 24 21.0 999.9 55.9 25.0 0.00G 999.9 000000 724050 13743 19920213 28.2 24 18.7 24 1027.8 24 1025.3 24 7.0 24 5.9 24 11.1 999.9 45.0 24.1 0.26G 2.8 111000 724050 13743 19920214 37.9 24 31.9 24 1017.5 24 1015.1 24 4.8 24 5.9 24 9.9 999.9 53.1* 24.1 0.02G 0.4 101000 724050 13743 19920215 44.1 24 40.1 24 1018.6 24 1016.2 24 5.4 24 4.2 24 9.9 999.9 54.0 30.0 0.19G 999.9 110000 724050 13743 19920216 50.3 24 43.9 24 1008.8 24 1006.4 24 9.4 24 9.3 24 20.0 28.0 55.9 39.9 0.47G 999.9 110000 724050 13743 19920217 42.3 24 30.6 24 1025.7 24 1023.2 24 13.4 24 6.8 24 13.0 24.1 55.9 35.1 0.00G 999.9 000000 724050 13743 19920218 42.0 24 39.5 24 1022.4 24 1020.0 24 5.2 24 6.3 24 11.1 999.9 48.9 35.1 0.30G 999.9 110000 724050 13743 19920219 48.6 24 45.8 24 1013.1 24 1010.7 24 4.4 24 5.4 24 9.9 20.0 61.0* 39.0 0.01G 999.9 110000 724050 13743 19920220 49.9 24 34.7 24 1017.6 24 1015.2 24 14.5 23 11.7 24 19.0 26.0 62.1 42.1 0.00G 999.9 010000 724050 13743 19920221 43.5 24 31.5 24 1024.3 24 1021.9 24 12.5 24 7.6 24 15.0 15.9 57.9* 35.1 0.00G 999.9 000000 724050 13743 19920222 47.3 24 32.9 24 1027.6 24 1025.2 24 11.4 24 5.7 24 13.0 999.9 62.1* 35.1 0.00G 999.9 000000 724050 13743 19920223 50.8 24 38.8 24 1019.6 24 1017.3 24 10.8 24 5.5 24 8.9 999.9 62.1 37.0 0.00G 999.9 000000 724050 13743 19920224 46.9 24 45.3 24 1019.1 24 1016.7 24 4.5 24 8.3 24 13.0 999.9 60.1 41.0 0.14G 999.9 110000 724050 13743 19920225 40.3 23 40.1 23 1020.9 23 1018.5 23 4.1 23 8.3 23 11.1 999.9 51.1 39.0 0.03G 999.9 110000 724050 13743 19920226 41.9 24 39.2 24 1005.8 24 1003.4 24 6.7 24 10.1 24 13.0 999.9 46.0* 39.0 0.86G 999.9 110000 724050 13743 19920227 42.5 24 29.0 24 1007.2 24 1004.8 24 10.3 24 9.2 24 15.9 22.0 55.0* 33.1 0.01G 999.9 000000 724050 13743 19920228 49.6 24 33.4 24 1006.4 24 1004.1 24 12.8 24 9.1 24 18.1 28.0 60.1* 33.1 0.00G 999.9 000000 724050 13743 19920229 43.9 23 22.9 23 1005.2 23 1002.8 23 16.8 23 17.2 23 22.9 36.9 62.1 32.0 0.00G 999.9 000000 724050 13743 19920301 39.4 24 18.1 24 1020.8 24 1018.4 24 17.8 24 9.3 24 17.1 999.9 61.0* 26.1 0.00G 999.9 000000 724050 13743 19920302 55.2 23 32.9 23 1019.0 23 1016.6 23 14.0 23 6.6 23 13.0 18.1 73.0* 26.1 0.00G 999.9 000000 724050 13743 19920303 45.7 24 41.1 24 1021.1 24 1018.7 24 6.5 24 9.1 24 13.0 999.9 52.0* 39.9 0.00G 999.9 100000 724050 13743 19920304 42.6 24 38.7 24 1026.0 24 1023.6 24 5.1 24 5.6 24 8.0 999.9 51.1 39.9 0.00G 999.9 100000 724050 13743 19920305 46.1 24 42.3 24 1026.7 24 1024.3 24 4.0 24 6.6 24 8.0 999.9 53.1* 39.9 0.00G 999.9 100000 724050 13743 19920306 50.3 23 48.7 23 1024.4 23 1022.0 23 2.4 23 6.1 23 15.0 18.1 54.0 43.0 0.00C 999.9 110000 724050 13743 19920307 53.0 24 51.3 24 1016.5 24 1014.1 24 5.1 24 7.0 24 18.1 999.9 62.1* 45.0 0.68G 999.9 110000 724050 13743 19920308 57.4 24 51.5 24 1009.9 24 1007.5 24 7.7 24 6.8 24 15.0 18.1 68.0 46.9 0.02G 999.9 110000 724050 13743 19920309 60.1 24 47.2 24 1016.5 24 1014.1 24 13.4 24 7.4 24 13.0 999.9 68.0 48.9 0.00G 999.9 010000 724050 13743 19920310 57.1 23 49.2 23 1009.2 23 1006.8 23 9.8 23 11.1 23 19.0 25.1 69.1 50.0 0.00G 999.9 110000 724050 13743 19920311 44.2 24 35.3 24 997.0 24 994.6 24 12.4 23 16.5 24 24.1 41.0 66.0 30.0 0.63G 999.9 111000 724050 13743 19920312 34.2 23 14.8 23 1007.8 23 1005.4 23 14.4 23 11.1 23 21.0 31.1 59.0 25.0 0.24G 999.9 000000 724050 13743 19920313 34.1 24 13.2 24 1011.6 24 1009.2 24 13.7 24 13.7 24 17.1 27.0 46.9 25.0 0.00G 999.9 000000 724050 13743 19920314 34.8 24 13.2 24 1014.3 24 1011.9 24 15.1 24 8.4 24 14.0 20.0 45.0* 25.0 0.00G 999.9 000000 724050 13743 19920315 36.2 24 19.9 24 1014.3 24 1011.9 24 12.2 24 9.5 24 18.1 21.0 45.0 25.0 0.00G 999.9 001000 724050 13743 19920316 29.4 24 7.9 24 1022.5 24 1020.1 24 16.1 24 12.9 24 18.1 22.9 42.1 21.0 0.00G 999.9 000000 724050 13743 19920317 40.4 24 21.4 24 1017.2 24 1014.9 24 13.3 23 8.0 24 15.0 999.9 62.1* 21.0 0.00G 999.9 001000 724050 13743 19920318 44.8 23 32.2 23 1019.9 23 1017.5 23 9.1 23 8.5 23 17.1 22.0 64.0 28.0 0.00G 999.9 110000 724050 13743 19920319 36.7 24 35.9 24 1007.7 24 1005.3 24 4.0 24 8.8 24 19.0 20.0 52.0 35.1 0.39G 999.9 111000 724050 13743 19920320 38.8 24 28.2 24 1012.4 24 1010.0 24 10.6 24 9.5 24 17.1 20.0 46.0* 32.0 0.03G 999.9 000000 724050 13743 19920321 38.5 24 24.1 24 1016.5 24 1014.1 24 13.3 24 9.2 24 15.0 24.1 46.9 32.0 0.00G 999.9 001000 724050 13743 19920322 36.2 24 23.6 24 1014.9 24 1012.6 24 9.9 24 7.8 24 18.1 20.0 45.0 30.9 0.00G 999.9 111000 724050 13743 19920323 37.9 23 25.6 23 1009.2 23 1006.8 23 11.4 23 14.8 23 22.9 26.0 42.1 30.9 0.12G 999.9 100000 724050 13743 19920324 38.3 24 16.9 24 1022.9 24 1020.5 24 14.7 24 7.9 24 13.0 19.0 51.1* 30.0 0.00G 999.9 000000 724050 13743 19920325 45.2 24 28.2 24 1026.6 24 1024.2 24 12.5 24 9.0 24 15.0 20.0 57.9 30.0 0.00G 999.9 000000 724050 13743 19920326 47.2 23 43.3 23 1018.0 23 1015.6 23 5.7 23 7.9 23 15.0 999.9 57.9 34.0 0.42G 999.9 110000 724050 13743 19920327 49.1 24 38.5 24 1005.1 24 1002.7 24 10.7 24 10.3 24 15.0 21.0 55.9 42.1 1.11G 999.9 110000 724050 13743 19920328 45.4 24 23.8 24 1014.5 24 1012.1 24 16.7 24 14.8 24 22.0 31.1 55.9 37.9 0.01G 999.9 000000 724050 13743 19920329 46.9 24 15.5 24 1019.6 24 1017.2 24 17.0 24 10.5 24 15.0 18.1 59.0* 37.0 0.00G 999.9 000000 724050 13743 19920330 55.6 24 28.5 24 1015.6 24 1013.2 24 14.9 24 5.6 24 12.0 19.0 64.9* 37.0 0.00G 999.9 010000 724050 13743 19920331 51.8 24 41.5 24 1009.2 24 1006.8 24 9.0 24 10.9 24 21.0 25.1 64.9 45.0 0.08G 999.9 110000 724050 13743 19920401 48.3 24 36.4 24 1009.0 24 1006.6 24 10.9 24 7.5 24 15.9 22.0 61.0 37.0 0.01G 999.9 010000 724050 13743 19920402 41.3 24 25.3 24 1007.5 24 1005.1 24 14.2 24 12.4 24 21.0 28.0 46.9* 36.0 0.06G 999.9 010000 724050 13743 19920403 37.4 23 18.1 23 1009.5 23 1007.1 23 17.8 23 12.4 23 19.0 27.0 48.0* 30.9 0.00G 999.9 000000 724050 13743 19920404 40.9 24 21.7 24 1007.5 24 1005.2 24 15.6 24 7.7 24 14.0 999.9 50.0 30.9 0.00G 999.9 000000 724050 13743 19920405 43.7 24 28.0 24 1013.2 24 1010.8 24 13.2 24 11.7 24 20.0 28.0 55.0* 30.9 0.00G 999.9 000000 724050 13743 19920406 50.2 23 19.7 23 1022.2 23 1019.8 23 18.4 23 11.5 23 15.9 22.9 62.1* 35.1 0.00G 999.9 000000 724050 13743 19920407 56.0 23 33.7 23 1017.2 23 1014.8 23 13.8 23 4.2 23 9.9 999.9 70.0* 39.0 0.00G 999.9 000000 724050 13743 19920408 60.0 23 38.5 23 1013.9 23 1011.5 23 14.8 23 9.0 23 18.1 24.1 71.1 46.0 0.00G 999.9 000000 724050 13743 19920409 56.8 24 38.8 24 1019.1 24 1016.7 24 12.6 24 7.2 24 13.0 999.9 69.1 45.0 0.00G 999.9 010000 724050 13743 19920410 62.0 24 53.1 24 1018.0 24 1015.6 24 7.2 23 4.9 24 12.0 999.9 75.0 45.0 0.08G 999.9 110010 724050 13743 19920411 64.2 24 56.9 24 1016.1 24 1013.7 24 5.0 23 6.0 24 11.1 999.9 79.0* 51.1 0.01G 999.9 110010 724050 13743 19920412 62.7 24 53.1 24 1016.9 24 1014.5 24 8.5 24 8.8 24 17.1 24.1 80.1 54.0 0.00G 999.9 110000 724050 13743 19920413 47.0 24 23.5 24 1031.8 24 1029.4 24 16.5 24 11.3 24 17.1 22.0 73.0 37.9 0.00G 999.9 000000 724050 13743 19920414 48.6 23 29.8 23 1027.9 23 1025.4 23 13.7 23 7.4 23 11.1 999.9 61.0* 37.9 0.00G 999.9 000000 724050 13743 19920415 52.3 24 37.5 24 1024.7 24 1022.3 24 12.0 24 7.8 24 11.1 999.9 62.1 42.1 0.00G 999.9 000000 724050 13743 19920416 52.0 24 45.2 24 1024.0 24 1021.6 24 9.3 24 6.7 24 8.9 999.9 60.1 46.0 0.08G 999.9 010010 724050 13743 19920417 63.0 24 54.5 24 1015.0 24 1012.6 24 4.8 23 7.0 24 19.0 32.1 84.9* 48.0 0.00D 999.9 110010 724050 13743 19920418 58.0 24 55.7 24 1018.5 24 1016.1 24 7.0 24 7.4 24 13.0 999.9 68.0* 50.0 0.01G 999.9 110010 724050 13743 19920419 49.0 24 48.0 24 1023.4 24 1021.0 24 4.6 24 7.7 24 12.0 999.9 64.0 46.9 0.09G 999.9 110000 724050 13743 19920420 53.8 24 51.4 24 1022.6 24 1020.1 24 4.1 24 6.6 24 11.1 999.9 70.0* 46.9 0.00G 999.9 110000 724050 13743 19920421 64.8 24 61.6 24 1016.2 24 1013.8 24 8.2 23 7.9 24 15.0 20.0 72.0 48.0 0.13G 999.9 110000 724050 13743 19920422 65.8 20 62.6 20 1014.6 20 1012.2 20 6.0 19 7.2 20 14.0 15.0 73.0* 57.0 1.09G 999.9 110010 724050 13743 19920423 66.1 24 52.2 24 1019.5 24 1017.1 24 11.9 24 5.3 24 11.1 999.9 77.0* 54.0 0.06G 999.9 010000 724050 13743 19920424 65.7 23 53.7 23 1012.9 23 1010.5 23 10.9 23 8.8 23 19.0 33.0 79.0 54.0 0.00G 999.9 010010 724050 13743 19920425 60.4 24 49.1 24 1006.3 24 1003.9 24 11.8 24 9.7 24 18.1 28.9 66.9* 55.0 0.32G 999.9 110000 724050 13743 19920426 50.8 24 44.4 24 1009.8 24 1007.5 24 9.5 24 7.5 24 13.0 15.9 66.0 46.9 0.12G 999.9 110010 724050 13743 19920427 51.1 24 40.3 24 1013.8 24 1011.4 24 11.7 24 7.8 24 13.0 999.9 61.0 44.1 0.34G 999.9 010000 724050 13743 19920428 55.2 22 35.8 22 1015.7 22 1013.3 22 13.5 20 6.2 22 11.1 999.9 64.9 44.1 0.00G 999.9 000000 724050 13743 19920429 54.6 24 40.2 24 1018.0 24 1015.6 24 11.4 24 4.7 24 8.9 999.9 64.9 43.0 0.00G 999.9 000000 724050 13743 19920430 55.2 23 43.5 23 1013.9 23 1011.5 23 10.1 23 9.2 23 18.1 21.0 66.9 43.0 0.00D 999.9 110000 724050 13743 19920501 58.3 24 49.9 24 1016.9 24 1014.5 24 7.0 24 5.9 24 11.1 999.9 70.0* 48.9 0.02G 999.9 100000 724050 13743 19920502 69.0 24 53.9 24 1011.7 24 1009.3 24 10.5 24 11.4 24 18.1 24.1 87.1* 48.9 0.00G 999.9 000000 724050 13743 19920503 72.9 21 50.2 21 1006.5 21 1004.2 21 13.8 21 10.1 21 15.9 26.0 87.1 57.9 0.00G 999.9 010000 724050 13743 19920504 60.2 23 38.2 23 1009.8 23 1007.4 23 15.3 23 11.6 23 17.1 26.0 79.0 51.1 0.00G 999.9 000000 724050 13743 19920505 54.9 24 41.2 24 1013.5 24 1011.1 24 13.0 24 7.8 24 15.0 24.1 64.0 50.0 0.00G 999.9 010000 724050 13743 19920506 51.5 23 40.6 23 1023.3 23 1020.9 23 11.1 23 11.6 23 15.0 20.0 62.1 44.1 0.01G 999.9 010000 724050 13743 19920507 49.9 24 37.2 24 1027.9 23 1025.5 23 10.5 24 12.5 24 20.0 29.9 59.0 44.1 0.00G 999.9 010000 724050 13743 19920508 51.0 23 47.5 23 1018.8 23 1016.4 23 6.4 23 14.3 23 24.1 32.1 57.0* 44.1 0.12G 999.9 110010 724050 13743 19920509 56.6 23 52.0 23 1014.8 23 1012.4 23 8.9 22 7.2 23 12.0 999.9 63.0* 45.0 0.34G 999.9 110010 724050 13743 19920510 59.5 24 49.8 24 1017.8 24 1015.4 24 13.0 24 9.1 24 15.9 999.9 73.0* 50.0 0.00G 999.9 000000 724050 13743 19920511 66.2 23 55.5 23 1021.8 23 1019.4 23 7.7 23 6.1 23 12.0 999.9 75.0* 50.0 0.00G 999.9 100000 724050 13743 19920512 62.4 24 46.6 24 1020.6 24 1018.2 24 11.9 24 5.9 24 9.9 999.9 75.9 50.0 0.00G 999.9 000000 724050 13743 19920513 64.9 24 56.1 24 1011.8 24 1009.4 24 10.2 24 4.3 24 8.0 999.9 77.0* 50.0 0.00G 999.9 100000 724050 13743 19920514 69.5 22 56.5 22 1012.1 22 1009.7 22 9.9 22 6.1 22 9.9 12.0 79.0 55.0 0.00G 999.9 110000 724050 13743 19920515 66.5 23 58.6 23 1019.8 23 1017.4 23 7.6 23 6.2 23 13.0 999.9 79.0 61.0 0.02G 999.9 110000 724050 13743 19920516 62.1 24 60.5 24 1025.6 24 1023.2 24 3.0 24 7.5 24 11.1 999.9 73.0 57.9 0.36G 999.9 110000 724050 13743 19920517 63.7 24 61.3 24 1028.1 24 1025.7 24 3.7 24 5.6 24 8.9 999.9 71.1* 57.9 0.00G 999.9 110000 724050 13743 19920518 69.3 24 63.8 24 1021.6 24 1019.2 24 6.1 24 8.4 24 12.0 22.9 82.0 60.1 0.00G 999.9 110000 724050 13743 19920519 67.2 24 55.0 24 1026.4 24 1023.9 24 14.1 24 9.1 24 14.0 20.0 82.0 62.1 0.25G 999.9 110000 724050 13743 19920520 60.1 23 41.4 23 1030.3 23 1027.9 23 17.0 23 8.4 23 14.0 15.9 73.0* 48.0 0.00G 999.9 000000 724050 13743 19920521 63.3 24 38.2 24 1030.1 24 1027.7 24 17.3 24 5.0 24 14.0 999.9 80.1 43.0 0.00G 999.9 000000 724050 13743 19920522 70.3 23 46.0 23 1024.6 23 1022.2 23 14.0 23 4.3 23 8.0 999.9 87.1* 43.0 0.00G 999.9 000000 724050 13743 19920523 73.6 24 51.5 24 1017.3 24 1014.9 24 10.6 24 5.2 24 8.9 999.9 89.1 53.1 0.00G 999.9 000000 724050 13743 19920524 73.5 24 61.6 24 1009.8 24 1007.5 24 7.3 24 8.0 24 19.0 24.1 91.0 55.9 0.00G 999.9 110000 724050 13743 19920525 51.7 23 46.3 23 1015.5 23 1013.1 23 8.9 23 10.2 23 20.0 22.0 57.9* 48.0 0.25G 999.9 110000 724050 13743 19920526 53.4 23 49.0 23 1015.7 23 1013.3 23 6.7 23 6.7 23 9.9 999.9 57.9 48.0 0.00G 999.9 110000 724050 13743 19920527 57.2 24 46.4 24 1014.7 24 1012.3 24 9.6 24 5.6 24 9.9 14.0 66.9 51.1 0.08G 999.9 110000 724050 13743 19920528 59.9 23 40.2 23 1019.3 23 1016.9 23 12.8 23 6.0 23 8.9 999.9 71.1 46.9 0.00G 999.9 000000 724050 13743 19920529 64.8 23 47.2 23 1023.5 23 1021.1 23 12.6 23 5.7 23 15.0 999.9 75.0* 46.9 0.00G 999.9 000000 724050 13743 19920530 60.3 24 52.4 24 1022.6 24 1020.1 24 7.6 24 8.8 24 13.0 999.9 75.0 55.0 0.62G 999.9 110000 724050 13743 19920531 66.3 24 59.9 24 1015.2 24 1012.8 24 8.1 24 9.7 24 15.9 21.0 73.0 55.0 0.95G 999.9 110000 724050 13743 19920601 66.0 24 53.9 24 1013.3 24 1010.9 24 12.8 24 9.8 24 15.0 22.0 75.0 57.9 0.64G 999.9 000000 724050 13743 19920602 67.1 24 55.2 24 1015.9 24 1013.5 24 15.7 24 7.6 24 13.0 999.9 73.9 57.9 0.00G 999.9 000000 724050 13743 19920603 67.9 24 60.4 24 1017.6 24 1015.2 24 10.0 24 7.4 24 11.1 999.9 79.0* 57.9 0.00G 999.9 100000 724050 13743 19920604 66.2 24 59.5 24 1015.1 24 1012.7 24 10.5 24 6.9 24 9.9 999.9 79.0 57.9 0.00G 999.9 010000 724050 13743 19920605 67.4 23 65.3 23 1008.4 23 1006.1 23 5.4 23 7.2 23 13.0 999.9 75.9* 57.9 0.63G 999.9 110000 724050 13743 19920606 72.4 23 66.5 23 1009.6 23 1007.2 23 5.4 23 4.8 23 8.9 999.9 81.0* 63.0 0.43G 999.9 110000 724050 13743 19920607 75.6 23 69.9 23 1015.1 23 1012.7 23 4.9 23 5.7 23 11.1 999.9 87.1 63.0 0.00G 999.9 100000 724050 13743 19920608 80.5 23 70.8 23 1014.9 23 1012.5 23 6.8 23 7.3 23 15.0 20.0 90.0 66.9 0.00G 999.9 110010 724050 13743 19920609 74.9 22 69.2 22 1013.1 22 1010.7 22 6.1 22 5.6 22 12.0 999.9 90.0 73.0 0.05G 999.9 110000 724050 13743 19920610 71.6 24 55.9 24 1013.8 24 1011.4 24 14.6 24 7.0 24 9.9 999.9 82.0* 61.0 0.01G 999.9 000000 724050 13743 19920611 70.6 22 54.3 22 1016.7 22 1014.3 22 15.1 22 5.4 22 11.1 999.9 82.0 57.9 0.00G 999.9 010000 724050 13743 19920612 72.1 24 57.0 24 1019.0 24 1016.5 24 11.1 24 6.3 24 12.0 999.9 82.0 59.0 0.00G 999.9 000000 724050 13743 19920613 71.3 24 56.5 24 1016.6 24 1014.2 24 13.2 24 8.3 24 13.0 999.9 82.9 59.0 0.00G 999.9 000000 724050 13743 19920614 73.4 24 62.7 24 1013.4 24 1011.0 24 12.6 24 7.5 24 9.9 999.9 82.9* 59.0 0.00G 999.9 000000 724050 13743 19920615 77.8 22 64.7 22 1013.2 22 1010.8 22 9.2 22 7.0 22 11.1 999.9 89.1* 64.9 0.00G 999.9 000000 724050 13743 19920616 73.7 24 59.2 24 1020.9 24 1018.5 24 10.3 24 9.3 24 12.0 999.9 89.1 66.9 0.00G 999.9 000000 724050 13743 19920617 71.2 24 56.7 24 1024.6 24 1022.2 24 13.4 24 8.9 24 13.0 999.9 80.1* 64.9 0.00G 999.9 000000 724050 13743 19920618 71.5 24 59.3 24 1020.2 24 1017.8 24 12.4 24 12.4 24 15.9 21.0 81.0 63.0 0.00G 999.9 000000 724050 13743 19920619 72.8 23 66.1 23 1009.8 23 1007.4 23 8.3 23 10.8 23 18.1 27.0 82.0 63.0 0.12G 999.9 010010 724050 13743 19920620 71.0 24 62.3 24 1007.3 24 1004.9 24 7.6 24 8.3 24 15.0 21.0 82.0 66.0 0.46G 999.9 110000 724050 13743 19920621 64.6 24 49.8 24 1012.1 24 1009.7 24 10.2 24 10.9 24 17.1 22.9 78.1 59.0 0.00G 999.9 010000 724050 13743 19920622 60.5 24 42.3 24 1015.9 24 1013.5 24 14.6 24 10.4 24 15.0 22.9 72.0 51.1 0.00G 999.9 000000 724050 13743 19920623 66.1 23 48.8 23 1014.8 23 1012.4 23 15.0 23 6.8 23 11.1 17.9 77.9* 51.1 0.00G 999.9 000000 724050 13743 19920624 72.2 23 61.9 23 1007.8 23 1005.4 23 8.0 23 10.7 23 15.0 19.8 82.9 52.0 0.00G 999.9 110010 724050 13743 19920625 70.6 24 61.5 24 1007.0 24 1004.6 24 9.0 24 6.8 24 15.0 29.9 84.0 62.1 0.06G 999.9 110010 724050 13743 19920626 73.2 24 64.4 24 1010.0 24 1007.6 24 5.6 24 6.4 24 12.8 999.9 82.9 62.1 0.67G 999.9 010010 724050 13743 19920627 74.0 24 60.2 24 1008.5 24 1006.2 24 7.9 24 9.7 24 16.9 22.9 84.0 64.0 0.00G 999.9 000000 724050 13743 19920628 73.2 24 52.4 24 1013.7 24 1011.3 24 14.8 24 7.6 24 13.0 999.9 84.0 61.0 0.00G 999.9 000000 724050 13743 19920629 74.9 23 62.0 23 1014.7 23 1012.3 23 9.6 23 7.4 23 14.0 999.9 86.0 61.0 0.00G 999.9 000000 724050 13743 19920630 78.6 24 66.5 24 1013.2 24 1010.8 24 7.4 24 10.1 24 23.9 35.0 88.9* 64.0 0.00G 999.9 010010 724050 13743 19920701 76.8 24 71.8 24 1011.1 24 1008.7 24 5.7 24 5.9 24 24.9 36.9 90.0 71.1 0.36G 999.9 010010 724050 13743 19920702 75.3 24 65.1 24 1012.7 24 1010.3 24 9.1 24 6.9 24 12.8 999.9 86.0 70.0 1.02G 999.9 010000 724050 13743 19920703 71.5 23 62.3 23 1015.5 23 1013.1 23 11.5 23 8.9 23 12.8 999.9 84.0 68.0 0.00G 999.9 010000 724050 13743 19920704 75.2 24 64.9 24 1014.5 24 1012.1 24 8.3 24 7.7 24 15.0 19.8 84.0 68.0 0.16G 999.9 010000 724050 13743 19920705 75.5 24 61.2 24 1014.0 24 1011.6 24 10.5 24 7.8 24 15.9 21.0 84.9 64.0 0.00G 999.9 000000 724050 13743 19920706 75.6 24 65.9 24 1010.3 24 1007.9 24 10.3 24 6.5 24 13.0 999.9 84.0 64.0 0.03G 999.9 010010 724050 13743 19920707 74.1 22 57.0 22 1016.0 22 1013.6 22 15.1 22 8.3 21 14.0 16.9 82.9 64.0 0.01G 999.9 000000 724050 13743 19920708 74.5 24 59.7 24 1019.4 24 1017.0 24 15.3 24 7.7 24 12.8 999.9 82.9 64.0 0.00G 999.9 000000 724050 13743 19920709 82.6 23 71.3 23 1011.9 23 1009.5 23 8.2 23 11.3 23 16.9 22.9 93.9* 64.9 0.01G 999.9 010000 724050 13743 19920710 87.0 24 70.5 24 1012.9 24 1010.5 24 8.3 24 8.3 24 15.0 18.8 95.9* 77.0 0.00D 999.9 000000 724050 13743 19920711 86.5 24 66.7 24 1013.4 24 1011.0 24 11.1 24 9.4 24 18.8 23.9 96.1 77.0 0.00D 999.9 000000 724050 13743 19920712 81.9 24 69.6 24 1015.4 24 1013.0 24 9.4 24 5.9 24 11.8 22.0 93.9 75.0 0.00D 999.9 010010 724050 13743 19920713 83.0 23 69.1 23 1011.5 23 1009.1 23 11.3 23 9.9 23 15.9 21.0 91.9 75.0 0.03G 999.9 000000 724050 13743 19920714 86.0 24 70.2 24 1012.2 24 1009.8 24 10.6 24 7.6 24 16.9 23.9 97.9* 74.8* 0.00G 999.9 010010 724050 13743 19920715 84.0 23 71.7 23 1008.8 23 1006.5 23 9.9 23 9.1 23 21.0 39.8 99.0 75.0 0.13G 999.9 010010 724050 13743 19920716 81.6 24 69.7 24 1012.8 24 1010.4 24 11.7 24 6.2 24 11.1 999.9 95.0 73.9 0.00G 999.9 000000 724050 13743 19920717 82.4 24 73.1 24 1015.3 24 1012.9 24 6.9 24 8.7 24 18.8 24.9 91.9 73.9 0.00G 999.9 010000 724050 13743 19920718 81.5 23 67.5 23 1016.0 23 1013.6 23 9.9 23 8.7 23 14.0 23.9 93.0 75.9 0.00G 999.9 000000 724050 13743 19920719 79.9 24 64.1 24 1018.2 24 1015.8 24 10.2 24 6.4 24 10.9 999.9 90.0 71.1 0.00G 999.9 000000 724050 13743 19920720 83.3 24 64.7 24 1018.5 24 1016.1 24 9.3 24 7.1 24 12.8 999.9 93.0 71.1 0.00G 999.9 000000 724050 13743 19920721 81.7 24 67.8 24 1017.6 24 1015.2 24 8.2 24 6.8 24 16.9 35.9 96.1 72.0* 0.00G 999.9 010010 724050 13743 19920722 74.8 23 68.2 23 1020.5 23 1018.1 23 7.1 23 7.8 23 11.1 999.9 78.1* 71.1 0.62G 999.9 000000 724050 13743 19920723 76.5 22 70.0 22 1019.3 22 1016.9 22 6.5 22 6.6 22 11.8 22.0 86.0* 71.1 0.01G 999.9 010010 724050 13743 19920724 72.6 24 70.0 24 1020.2 24 1017.8 24 6.4 24 7.4 24 12.0 999.9 87.1 70.0 1.79G 999.9 110010 724050 13743 19920725 70.5 22 68.0 22 1020.7 22 1018.3 22 6.1 22 9.4 22 14.0 999.9 77.0 68.0 0.52G 999.9 010010 724050 13743 19920726 74.3 24 68.7 24 1015.7 24 1013.3 24 6.0 24 7.3 24 14.0 999.9 82.0 68.0 0.01G 999.9 010000 724050 13743 19920727 77.8 24 71.8 24 1008.5 24 1006.1 24 6.7 24 6.2 24 9.9 999.9 88.0 70.0 0.01G 999.9 010000 724050 13743 19920728 74.7 23 63.8 23 1011.5 23 1009.1 23 12.6 23 8.4 23 14.0 17.9 88.0 65.8* 0.28G 999.9 000000 724050 13743 19920729 77.2 24 63.9 24 1014.2 24 1011.8 24 11.8 24 5.5 24 11.8 14.0 86.9* 64.9 0.00G 999.9 000000 724050 13743 19920730 79.6 24 67.2 24 1014.6 24 1012.2 24 8.4 24 5.8 24 8.9 999.9 88.9* 64.9 0.00G 999.9 000000 724050 13743 19920731 79.9 24 71.8 24 1012.5 24 1010.1 24 6.6 24 9.2 24 21.0 33.8 89.1 68.9* 0.01G 999.9 010010 724050 13743 19920801 71.7 24 58.2 24 1016.4 24 1014.0 24 14.8 24 9.6 24 14.0 18.8 91.0 64.0 0.72G 999.9 000000 724050 13743 19920802 72.7 24 58.8 24 1020.0 24 1017.6 24 15.0 24 6.7 24 12.8 999.9 81.0 62.1 0.00G 999.9 000000 724050 13743 19920803 76.1 24 64.0 24 1016.1 24 1013.6 24 11.0 24 7.5 24 10.9 999.9 88.0 62.1 0.00G 999.9 000000 724050 13743 19920804 74.4 24 68.3 24 1012.9 24 1010.5 24 7.7 24 6.5 24 14.0 28.9 88.0 66.9 0.00G 999.9 010010 724050 13743 19920805 72.2 23 56.2 23 1019.1 23 1016.8 23 15.7 23 7.1 23 11.8 16.9 84.9 61.9* 0.50G 999.9 000000 724050 13743 19920806 72.4 23 58.2 23 1024.0 23 1021.6 23 14.7 23 5.6 23 8.0 999.9 81.0 62.1 0.00G 999.9 000000 724050 13743 19920807 72.8 24 60.7 24 1024.7 24 1022.3 24 10.2 24 4.9 24 8.9 999.9 82.0 63.0 0.00G 999.9 000000 724050 13743 19920808 73.5 23 65.4 23 1022.3 23 1019.9 23 10.0 23 7.6 23 12.8 999.9 82.9 63.0 0.00G 999.9 000000 724050 13743 19920809 79.5 24 70.3 24 1016.3 24 1013.9 24 6.3 24 9.3 24 15.0 21.0 88.0 66.9 0.01G 999.9 010000 724050 13743 19920810 80.3 24 67.1 24 1013.9 24 1011.5 24 8.9 24 5.6 24 8.9 999.9 90.9* 70.0 0.00D 999.9 000000 724050 13743 19920811 79.8 24 72.3 24 1011.4 24 1009.0 24 7.2 24 7.0 24 22.9 37.9 93.0 70.0 0.00G 999.9 010110 724050 13743 19920812 74.4 24 64.5 24 1015.9 24 1013.5 24 12.7 24 6.4 24 11.8 999.9 93.0 68.0 0.55G 999.9 010000 724050 13743 19920813 71.1 22 64.9 22 1020.0 22 1017.6 22 8.9 22 5.4 22 9.9 999.9 82.9 63.9* 0.13G 999.9 010000 724050 13743 19920814 67.3 24 63.6 24 1019.9 24 1017.5 24 7.4 24 7.0 24 9.9 999.9 77.0 63.0 0.39G 999.9 010000 724050 13743 19920815 66.1 24 63.8 24 1020.4 24 1018.0 24 6.0 24 9.4 24 12.0 999.9 77.0 63.0 0.41G 999.9 010000 724050 13743 19920816 65.0 24 63.4 24 1020.3 24 1017.9 24 4.6 24 6.8 24 13.0 999.9 70.0* 61.9* 0.24G 999.9 010000 724050 13743 19920817 69.4 24 66.8 24 1021.4 24 1019.0 24 6.9 24 6.0 24 8.9 999.9 73.0 62.1 0.03G 999.9 010000 724050 13743 19920818 73.2 24 67.8 24 1019.0 24 1016.6 24 6.3 24 4.2 24 8.9 999.9 81.0 66.9 0.05G 999.9 010000 724050 13743 19920819 75.4 24 65.7 24 1017.0 24 1014.6 24 6.2 24 3.6 24 11.8 999.9 84.9 66.0 0.00G 999.9 000000 724050 13743 19920820 72.0 24 58.2 24 1018.9 24 1016.5 24 10.6 24 6.0 24 8.9 999.9 84.9 66.0 0.00G 999.9 010000 724050 13743 19920821 70.4 24 57.6 24 1022.9 24 1020.4 24 13.8 24 2.1 24 8.9 999.9 81.0* 59.0 0.00G 999.9 000000 724050 13743 19920822 70.9 24 61.8 24 1025.2 24 1022.8 24 7.9 24 3.7 24 8.0 999.9 82.0 59.0 0.00G 999.9 000000 724050 13743 19920823 73.5 23 65.0 23 1026.5 23 1024.1 23 5.5 23 4.5 23 9.9 999.9 81.0 64.0 0.00D 999.9 000000 724050 13743 19920824 73.1 24 64.2 24 1027.2 24 1024.7 24 7.5 24 5.8 24 9.9 999.9 82.0 63.0 0.00G 999.9 000000 724050 13743 19920825 77.6 24 70.1 24 1024.1 24 1021.7 24 7.1 24 6.0 24 8.9 999.9 90.0 63.0 0.00G 999.9 000000 724050 13743 19920826 81.3 24 71.1 24 1020.5 24 1018.1 24 5.3 24 5.3 24 8.0 999.9 91.0 69.1 0.00G 999.9 000010 724050 13743 19920827 81.4 23 71.9 23 1016.8 23 1014.4 23 4.3 23 5.2 23 10.9 999.9 91.9 72.9* 0.00G 999.9 000000 724050 13743 19920828 77.5 24 71.8 24 1008.9 24 1006.5 24 6.7 24 12.3 24 22.0 26.8 91.0 71.1 0.00G 999.9 010000 724050 13743 19920829 70.1 24 53.4 24 1013.4 24 1011.0 24 17.6 24 9.9 24 16.9 22.9 84.9 61.0 0.20G 999.9 000000 724050 13743 19920830 66.8 24 54.8 24 1019.8 24 1017.4 24 15.2 24 7.9 24 14.0 19.8 79.0* 55.9 0.00G 999.9 000000 724050 13743 19920831 75.2 24 62.2 24 1016.6 24 1014.2 24 11.9 24 9.1 24 14.0 17.9 84.9 55.9 0.00G 999.9 000000 724050 13743 19920901 71.6 24 54.8 24 1021.0 24 1018.6 24 16.0 24 5.4 24 8.0 999.9 84.9 61.0 0.00G 999.9 000000 724050 13743 19920902 72.7 24 63.5 24 1022.6 24 1020.2 24 10.3 24 6.3 24 14.0 999.9 82.0 61.0 0.00G 999.9 000000 724050 13743 19920903 74.5 24 70.5 24 1019.5 24 1017.1 24 5.2 24 10.9 24 15.9 24.9 81.0 66.9 0.36G 999.9 010010 724050 13743 19920904 76.6 23 69.7 23 1020.9 23 1018.5 23 6.1 23 5.6 23 9.9 999.9 86.0* 68.9* 0.00G 999.9 000000 724050 13743 19920905 75.9 24 71.7 24 1025.0 24 1022.6 24 4.2 24 7.0 24 11.8 999.9 86.0 69.1 0.00G 999.9 000000 724050 13743 19920906 69.7 23 68.3 23 1025.5 23 1023.1 23 4.9 23 10.4 23 13.0 999.9 82.9 68.0* 0.63G 999.9 010000 724050 13743 19920907 71.0 24 68.4 24 1024.1 24 1021.7 24 5.8 24 6.6 24 12.0 999.9 79.0* 66.9 0.20G 999.9 010000 724050 13743 19920908 75.2 24 70.5 24 1021.1 24 1018.7 24 7.3 24 6.5 24 11.8 999.9 82.9* 68.0 0.14G 999.9 000000 724050 13743 19920909 75.9 24 69.9 24 1019.4 24 1017.0 24 8.5 24 4.9 24 14.0 999.9 86.0* 66.9 0.04G 999.9 010010 724050 13743 19920910 78.3 24 72.9 24 1016.9 24 1014.5 24 9.7 24 11.3 24 18.1 24.9 86.0 66.9 0.00G 999.9 000000 724050 13743 19920911 71.9 24 61.6 24 1018.8 24 1016.4 24 11.0 24 9.9 24 15.0 24.9 86.0 66.9 0.44G 999.9 010010 724050 13743 19920912 64.8 24 49.4 24 1025.7 24 1023.2 24 19.4 24 8.4 24 13.0 999.9 77.0 55.9 0.00G 999.9 000000 724050 13743 19920913 64.3 24 52.9 24 1027.4 24 1025.0 24 14.7 24 4.3 24 8.9 999.9 73.9 52.9* 0.00G 999.9 000000 724050 13743 19920914 65.6 24 54.8 24 1026.8 24 1024.3 24 13.0 24 4.4 24 8.0 999.9 75.9* 53.1 0.00G 999.9 000000 724050 13743 19920915 67.2 24 57.5 24 1026.7 24 1024.3 24 11.3 24 4.3 24 8.0 999.9 79.0* 55.9 0.00G 999.9 000000 724050 13743 19920916 69.1 24 61.1 24 1024.8 24 1022.4 24 9.0 24 5.6 24 9.9 999.9 80.1 57.0 0.00G 999.9 000000 724050 13743 19920917 72.5 24 64.6 24 1020.2 24 1017.8 24 6.7 24 6.8 24 9.9 999.9 83.8* 59.0 0.00G 999.9 000000 724050 13743 19920918 75.2 24 66.8 24 1015.9 24 1013.5 24 7.8 24 7.5 24 15.9 24.9 86.0* 64.0 0.00G 999.9 000000 724050 13743 19920919 74.5 24 65.0 24 1012.4 24 1010.0 24 12.0 24 10.4 24 14.0 22.0 86.0 66.0 0.02G 999.9 010000 724050 13743 19920920 68.1 23 54.1 23 1018.5 23 1016.1 23 17.8 23 7.2 23 9.9 999.9 77.0 61.9 0.00D 999.9 000000 724050 13743 19920921 71.5 24 63.5 24 1018.3 24 1015.9 24 10.4 24 5.8 24 9.9 999.9 77.9* 62.1 0.00G 999.9 000000 724050 13743 19920922 78.0 22 72.3 22 1012.0 22 1009.6 22 9.0 22 9.5 22 17.9 23.9 86.9* 66.9 0.00G 999.9 010010 724050 13743 19920923 65.7 24 53.1 24 1017.5 24 1015.1 24 18.4 24 13.3 24 19.8 25.8 88.0 57.0 0.44G 999.9 010010 724050 13743 19920924 55.6 24 41.2 24 1027.8 24 1025.4 24 19.1 24 13.6 24 17.9 19.8 71.1 46.9 0.00G 999.9 000000 724050 13743 19920925 56.1 24 49.4 24 1026.6 24 1024.2 24 9.4 24 13.5 24 16.9 28.0 64.0 46.9 0.39G 999.9 010000 724050 13743 19920926 61.9 24 57.1 24 1020.7 24 1018.3 24 10.9 24 10.7 24 18.8 24.9 70.9* 52.0 0.75G 999.9 010000 724050 13743 19920927 68.6 23 65.6 23 1018.7 23 1016.3 23 7.4 23 7.1 23 12.8 999.9 73.9* 57.0 0.06G 999.9 010000 724050 13743 19920928 66.2 24 61.8 24 1019.2 24 1016.8 24 7.4 24 5.8 24 9.9 999.9 73.9 61.9* 0.12G 999.9 010000 724050 13743 19920929 60.0 23 49.4 23 1019.5 23 1017.1 23 13.2 23 10.6 23 18.8 23.9 70.0 55.9 0.15G 999.9 110000 724050 13743 19920930 52.1 21 38.7 21 1023.3 21 1021.0 21 17.3 21 11.1 21 15.9 22.0 64.9 44.1 0.00G 999.9 000000 724050 13743 19921001 52.8 23 39.7 23 1023.1 23 1020.7 23 13.9 23 8.3 23 17.9 999.9 62.1 44.1 0.00G 999.9 000000 724050 13743 19921002 57.3 23 46.0 23 1020.2 23 1017.8 23 14.4 23 6.1 23 9.9 999.9 70.0* 45.0 0.00G 999.9 000000 724050 13743 19921003 60.8 24 52.6 24 1016.2 24 1013.8 24 11.3 24 7.5 24 11.1 999.9 74.8* 45.0 0.00G 999.9 000000 724050 13743 19921004 60.4 24 55.9 24 1015.0 24 1012.6 24 8.0 24 6.1 24 10.9 999.9 75.9 50.0 0.00G 999.9 000000 724050 13743 19921005 57.3 24 41.1 24 1018.5 24 1016.1 24 15.1 24 13.5 24 18.8 22.0 64.9 48.9 0.00G 999.9 010000 724050 13743 19921006 52.6 24 37.7 24 1026.9 24 1024.5 24 17.2 24 8.0 24 12.8 999.9 63.0 43.0 0.00G 999.9 000000 724050 13743 19921007 53.4 23 42.8 23 1027.7 23 1025.4 23 12.5 23 5.1 23 9.9 999.9 63.9* 30.0 0.00G 999.9 000000 724050 13743 19921008 59.1 24 51.6 24 1024.6 24 1022.2 24 12.3 24 6.2 24 11.8 999.9 72.9* 42.1 0.00G 999.9 000000 724050 13743 19921009 66.5 24 63.1 24 1017.8 24 1015.4 24 8.7 24 11.0 24 16.9 19.8 73.9 48.9 0.44G 999.9 010000 724050 13743 19921010 65.1 24 56.2 24 1015.7 24 1013.3 24 9.6 24 6.5 24 15.0 999.9 73.0 57.0 0.55G 999.9 010010 724050 13743 19921011 60.5 24 55.8 24 1011.3 24 1008.9 24 8.6 24 6.2 24 21.0 25.8 73.0 56.8* 0.00G 999.9 010010 724050 13743 19921012 57.3 24 44.9 24 1011.4 24 1009.0 24 14.5 24 8.4 24 12.8 17.9 69.1 46.9 0.25G 999.9 000000 724050 13743 19921013 58.0 24 46.4 24 1012.3 24 1009.9 24 13.6 24 7.5 24 12.8 999.9 66.9* 46.9 0.00G 999.9 000000 724050 13743 19921014 59.8 24 51.7 24 1018.9 24 1016.5 24 11.3 24 5.8 24 14.0 999.9 72.9* 48.9 0.00G 999.9 000000 724050 13743 19921015 64.6 24 57.6 24 1019.6 24 1017.2 24 8.9 24 4.3 24 8.9 999.9 81.9* 48.9 0.00G 999.9 000000 724050 13743 19921016 68.3 23 60.0 23 1016.0 23 1013.6 23 8.8 23 11.8 23 17.9 25.8 82.0 53.1 0.00G 999.9 000000 724050 13743 19921017 55.3 24 37.3 24 1019.8 24 1017.4 24 17.5 24 13.5 24 31.9 36.9 77.0 46.0 0.00G 999.9 000000 724050 13743 19921018 48.2 24 32.7 24 1023.9 24 1021.5 24 14.5 24 6.7 24 11.8 999.9 57.9 41.0 0.00G 999.9 000000 724050 13743 19921019 47.6 24 30.1 24 1019.8 24 1017.4 24 14.8 24 12.6 24 23.9 35.0 57.0 41.0 0.00G 999.9 010000 724050 13743 19921020 41.5 24 27.0 24 1029.0 24 1026.5 24 16.6 24 8.2 24 12.8 999.9 51.1 32.0 0.00I 999.9 000000 724050 13743 19921021 54.4 24 37.9 24 1026.1 24 1023.7 24 13.2 24 10.7 24 15.0 19.8 65.8* 47.8* 0.00G 999.9 010000 724050 13743 19921022 52.1 24 40.1 24 1032.9 24 1030.5 24 11.7 24 7.6 24 10.9 999.9 66.0 41.9* 0.00G 999.9 000000 724050 13743 19921023 49.9 24 40.5 24 1031.0 24 1028.6 24 9.5 24 4.4 24 8.9 999.9 61.0* 38.8* 0.00G 999.9 000000 724050 13743 19921024 54.0 24 46.9 24 1015.4 24 1013.0 24 8.4 24 7.9 24 17.9 23.9 68.0* 39.0 0.00G 999.9 010010 724050 13743 19921025 53.7 24 38.2 24 1010.4 24 1008.0 24 16.5 24 13.9 24 22.0 26.8 68.0 46.0 0.32G 999.9 010010 724050 13743 19921026 50.7 23 33.9 23 1012.7 23 1010.3 23 15.6 23 8.7 23 14.0 999.9 63.9* 27.9 0.00G 999.9 000000 724050 13743 19921027 56.4 24 42.5 24 1012.7 24 1010.3 24 14.1 24 6.6 24 14.0 999.9 64.0 39.0 0.00G 999.9 000000 724050 13743 19921028 52.9 24 44.4 24 1014.5 24 1012.1 24 11.0 24 4.5 24 7.0 999.9 63.0 46.9 0.00G 999.9 010000 724050 13743 19921029 54.5 23 52.3 23 1014.8 23 1012.4 23 4.8 23 4.3 23 8.9 999.9 59.0 48.0 0.00G 999.9 110000 724050 13743 19921030 56.9 24 52.5 24 1015.9 24 1013.5 24 4.5 24 6.7 24 11.8 999.9 61.0 50.0 0.00G 999.9 010000 724050 13743 19921031 49.3 24 48.1 24 1019.0 24 1016.6 24 3.7 24 10.5 24 14.0 999.9 61.0 47.8* 0.47G 999.9 010000 724050 13743 19921101 46.1 24 45.2 24 1023.5 24 1021.1 24 3.0 24 7.9 24 9.9 999.9 50.0 45.0 0.01G 999.9 010000 724050 13743 19921102 48.7 23 48.2 23 1022.3 23 1019.9 23 3.9 23 7.9 23 11.8 19.8 55.9* 43.9* 0.31G 999.9 010000 724050 13743 19921103 63.0 24 53.3 24 1016.2 24 1013.8 24 10.8 24 8.2 24 16.9 24.9 72.9* 46.0 0.72G 999.9 010000 724050 13743 19921104 55.7 24 52.1 24 1015.9 24 1013.5 24 11.0 24 6.2 24 15.9 999.9 73.0 46.9 0.35G 999.9 010000 724050 13743 19921105 56.1 21 52.6 21 1009.5 21 1007.1 21 6.2 21 9.1 21 16.9 22.0 66.9 45.9* 0.01G 999.9 010000 724050 13743 19921106 44.4 24 34.9 24 1016.4 24 1014.0 24 13.2 24 11.5 24 15.9 21.0 48.9* 39.9 0.10G 999.9 010000 724050 13743 19921107 43.6 24 33.5 24 1023.5 24 1021.1 24 12.4 24 7.7 24 9.9 999.9 51.1 39.9 0.00G 999.9 010000 724050 13743 19921108 42.5 24 31.8 24 1028.1 24 1025.7 24 10.1 24 7.3 24 12.8 999.9 50.0 37.0 0.02G 999.9 010000 724050 13743 19921109 39.5 24 27.1 24 1034.5 24 1032.0 24 10.7 24 5.7 24 9.9 999.9 48.9 30.9 0.00G 999.9 000000 724050 13743 19921110 43.8 23 33.2 23 1035.4 23 1033.0 23 11.4 23 6.1 23 11.8 999.9 54.0* 30.9 0.00G 999.9 000000 724050 13743 19921111 49.5 24 45.2 24 1027.9 24 1025.5 24 9.9 24 7.6 24 12.0 999.9 57.9 34.0 0.00G 999.9 010000 724050 13743 19921112 56.8 24 53.9 24 1017.8 24 1015.4 24 7.2 24 8.4 24 22.0 28.0 66.9* 44.1 0.06G 999.9 010000 724050 13743 19921113 55.4 24 36.7 24 1007.8 24 1005.5 24 15.1 24 15.1 24 28.0 45.8 66.9 46.9 0.58G 999.9 010000 724050 13743 19921114 42.0 24 19.8 24 1020.6 24 1018.2 24 16.5 24 8.3 24 12.8 18.8 48.9* 35.1 0.00G 999.9 000000 724050 13743 19921115 38.4 24 21.7 24 1023.5 24 1021.1 24 13.9 24 7.4 24 15.9 22.9 46.9 32.0 0.00G 999.9 001000 724050 13743 19921116 34.9 24 17.8 24 1030.8 24 1028.3 24 14.8 24 7.5 24 11.1 999.9 45.0 27.0 0.00G 999.9 000000 724050 13743 19921117 43.5 23 25.8 23 1024.0 23 1021.6 23 12.9 23 10.9 23 14.0 999.9 57.9* 27.0 0.00G 999.9 011000 724050 13743 19921118 50.6 24 41.6 24 1022.4 24 1020.0 24 9.9 24 4.4 24 8.9 999.9 59.0 36.0 0.00G 999.9 000000 724050 13743 19921119 43.1 24 41.6 24 1029.1 24 1026.7 24 4.7 24 10.5 24 12.8 999.9 60.1 37.9* 0.03G 999.9 010000 724050 13743 19921120 42.0 24 35.7 24 1034.9 24 1032.5 24 7.3 24 8.6 24 12.8 999.9 50.0* 36.9* 0.01G 999.9 010000 724050 13743 19921121 51.0 24 46.0 24 1028.1 24 1025.6 24 9.1 24 7.0 24 9.9 999.9 64.9* 39.0 0.00G 999.9 010000 724050 13743 19921122 57.3 24 56.7 24 1016.2 24 1013.8 24 6.9 24 6.7 24 11.8 999.9 66.0 45.0 0.06G 999.9 010000 724050 13743 19921123 63.1 23 56.1 23 1006.3 23 1003.9 23 13.0 23 10.9 23 19.8 25.8 70.0 53.1 1.00G 999.9 010110 724050 13743 19921124 52.6 24 41.7 24 1018.7 24 1016.3 24 12.7 24 7.8 24 11.8 999.9 70.0 45.0 0.99G 999.9 000000 724050 13743 19921125 53.1 24 51.6 24 1020.2 24 1017.8 24 5.4 24 6.6 24 15.0 999.9 61.0 45.0 0.06G 999.9 010000 724050 13743 19921126 55.9 23 55.9 23 1017.0 23 1014.6 23 3.4 23 6.0 23 9.9 999.9 59.9* 51.1 0.17G 999.9 010000 724050 13743 19921127 50.3 24 40.7 24 1016.4 24 1014.0 24 13.6 24 9.7 24 15.9 999.9 61.0 43.0 0.09G 999.9 010000 724050 13743 19921128 45.3 24 33.4 24 1017.5 24 1015.2 24 13.4 24 8.2 24 11.8 999.9 55.0 39.9 0.00G 999.9 000000 724050 13743 19921129 44.4 23 32.0 23 1018.4 23 1016.0 23 11.8 23 8.4 23 11.8 17.9 53.1 39.9 0.00G 999.9 000000 724050 13743 19921130 39.1 24 24.6 24 1018.5 24 1016.1 24 11.1 24 8.7 24 12.0 17.9 46.9 32.0 0.00G 999.9 000000 724050 13743 19921201 40.8 24 34.7 24 1012.8 24 1010.4 24 8.2 24 6.2 24 14.0 999.9 46.9 32.0 0.03G 999.9 011000 724050 13743 19921202 37.5 24 32.6 24 1011.5 24 1009.1 24 8.4 24 6.8 24 14.0 999.9 45.0 30.9 0.00D 999.9 010000 724050 13743 19921203 40.1 23 26.4 23 1015.5 23 1013.1 23 15.9 23 12.0 23 23.9 29.9 46.9 30.9 0.00G 999.9 010000 724050 13743 19921204 36.5 24 24.2 24 1022.3 24 1019.8 24 12.1 24 6.9 24 11.8 999.9 46.9 30.9 0.00G 999.9 010000 724050 13743 19921205 39.3 24 24.5 24 1012.8 24 1010.4 24 12.3 24 12.8 24 26.8 36.9 45.0 30.9 0.06G 999.9 011000 724050 13743 19921206 32.7 24 13.5 24 1024.4 24 1022.0 24 15.6 24 10.8 24 17.9 32.8 43.0 26.1 0.00G 999.9 000000 724050 13743 19921207 40.0 24 18.8 24 1015.9 24 1013.5 24 14.9 24 9.8 24 14.0 22.9 45.0 26.1 0.00G 999.9 000000 724050 13743 19921208 38.3 24 21.3 24 1021.4 24 1018.9 24 13.1 24 11.6 24 15.9 23.9 45.0 36.9* 0.00G 999.9 000000 724050 13743 19921209 34.1 22 20.5 22 1027.8 22 1025.4 22 13.6 22 9.8 22 15.0 999.9 42.1 29.8* 0.00G 999.9 000000 724050 13743 19921210 35.5 23 29.8 23 1018.7 23 1016.3 23 8.1 23 12.0 23 23.9 40.8 47.8* 29.8* 0.48G 0.4 111000 724050 13743 19921211 41.9 22 40.1 22 992.2 22 989.8 22 5.0 22 19.9 22 33.0 43.9 52.0 30.0 0.72G 999.9 011000 724050 13743 19921212 40.9 24 36.5 24 1007.1 24 1004.7 24 9.8 24 16.7 24 20.0 25.8 52.0 35.1 0.30G 999.9 010000 724050 13743 19921213 40.7 24 31.2 24 1021.0 24 1018.6 24 16.2 24 14.3 24 16.9 23.9 45.0 37.9 0.01G 999.9 000000 724050 13743 19921214 38.9 24 29.9 24 1029.0 24 1026.6 24 13.7 24 8.7 24 12.8 999.9 44.1 35.1 0.00G 999.9 000000 724050 13743 19921215 37.4 24 30.2 24 1027.2 24 1024.8 24 8.4 24 6.6 24 9.9 999.9 39.9 35.1 0.00G 999.9 000000 724050 13743 19921216 40.3 24 35.8 24 1022.4 24 1020.0 24 6.3 24 9.1 24 12.8 999.9 47.8* 34.9 0.00G 999.9 010000 724050 13743 19921217 49.4 24 48.1 24 1014.4 24 1011.9 24 4.2 24 6.5 24 21.0 29.9 59.0* 35.1 0.28G 999.9 110000 724050 13743 19921218 44.0 23 32.9 23 1022.0 23 1019.6 23 14.3 23 9.6 23 15.0 19.8 59.0 38.8* 0.02G 999.9 000000 724050 13743 19921219 41.0 24 34.2 24 1027.1 24 1024.7 24 9.5 24 5.1 24 9.9 999.9 50.0 34.0 0.00G 999.9 000000 724050 13743 19921220 47.0 24 38.4 24 1015.6 24 1013.2 24 10.6 24 8.8 24 14.0 22.9 54.0* 35.1 0.20G 999.9 010000 724050 13743 19921221 37.5 23 18.9 23 1026.0 23 1023.6 23 14.3 23 8.9 23 15.0 19.8 55.0 30.0 0.00C 999.9 000000 724050 13743 19921222 39.1 24 30.0 24 1021.4 24 1018.9 24 12.2 24 6.8 24 12.0 999.9 50.0* 30.0 0.00G 999.9 000000 724050 13743 19921223 45.0 23 41.8 23 1017.2 23 1014.8 23 7.0 23 6.1 23 11.8 999.9 50.9* 34.0 0.22G 999.9 010000 724050 13743 19921224 36.7 24 21.8 24 1021.1 24 1018.7 24 14.5 24 13.7 24 28.0 42.9 52.0 25.9* 0.00D 999.9 000000 724050 13743 19921225 27.3 24 7.7 24 1029.5 24 1027.1 24 15.1 24 10.1 24 17.9 23.9 46.0 19.9 0.00G 999.9 000000 724050 13743 19921226 37.5 24 10.6 24 1023.9 24 1021.5 24 15.5 24 12.0 24 18.1 24.9 39.9 19.9 0.00G 999.9 000000 724050 13743 19921227 28.0 24 9.2 24 1040.3 24 1037.8 24 15.8 24 9.1 24 12.8 999.9 39.0 21.9 0.00G 999.9 000000 724050 13743 19921228 33.2 24 27.8 24 1036.1 24 1033.7 24 5.8 24 8.7 24 11.8 999.9 37.9* 21.9 0.00G 0.4 011000 724050 13743 19921229 40.4 24 39.0 24 1031.3 24 1028.9 24 1.4 24 8.2 24 12.8 999.9 46.9 30.0 0.02G 999.9 110000 724050 13743 19921230 45.5 23 45.3 23 1023.3 23 1020.9 23 1.5 23 5.4 23 9.9 999.9 50.9* 37.0 0.01G 999.9 110000 724050 13743 19921231 52.3 23 49.1 23 1015.4 23 1013.0 23 7.9 23 9.2 23 14.0 999.9 63.9* 41.0 0.00G 999.9 100000 fluids-1.0.22/tests/gsod/1985/0000755000175000017500000000000014302004506015106 5ustar nileshnileshfluids-1.0.22/tests/gsod/1985/724050-13743.op0000644000175000017500000014327214302004506016677 0ustar nileshnileshSTN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 724050 13743 19850101 47.7 24 46.2 24 1021.7 24 1019.3 24 2.7 24 7.6 24 13.0 999.9 60.1* 43.0 0.01G 999.9 110000 724050 13743 19850102 54.1 24 48.9 24 1020.6 24 1018.2 24 10.0 24 9.5 24 14.0 999.9 61.0* 46.0* 0.01G 999.9 110000 724050 13743 19850103 37.5 24 28.9 24 1028.3 24 1025.9 24 9.3 24 12.5 24 15.9 999.9 43.0* 33.1* 0.24G 999.9 111000 724050 13743 19850104 33.1 23 28.6 23 1016.2 23 1013.8 23 5.3 23 6.5 23 9.9 999.9 41.0 32.0 0.43G 999.9 111000 724050 13743 19850105 36.1 24 28.7 24 1005.9 24 1003.5 24 10.5 24 10.6 24 20.0 27.0 41.0* 32.0 0.43G 0.4 111000 724050 13743 19850106 37.1 24 24.3 24 1020.8 24 1018.4 24 14.5 24 7.9 24 13.0 999.9 46.9* 30.0 0.13G 999.9 000000 724050 13743 19850107 39.5 24 29.0 24 1010.7 24 1008.3 24 11.3 24 7.2 24 12.0 999.9 46.9 30.0 0.00G 999.9 000000 724050 13743 19850108 40.6 21 21.8 21 1009.4 21 1007.0 21 15.9 21 14.9 21 27.0 39.0 46.9 34.0 0.00G 999.9 000000 724050 13743 19850109 27.0 24 7.0 24 1027.8 24 1025.3 24 17.2 24 13.4 24 19.0 28.0 44.1 21.0 0.00D 999.9 000000 724050 13743 19850110 26.2 24 10.2 24 1031.5 24 1029.1 24 11.8 24 7.4 24 11.1 999.9 30.9 21.0 0.00D 999.9 001000 724050 13743 19850111 26.5 24 20.6 24 1020.7 24 1018.2 24 5.6 24 7.4 24 15.9 999.9 31.1* 24.1 0.12G 1.6 101000 724050 13743 19850112 27.0 24 12.5 24 1019.9 24 1017.5 24 15.6 24 14.9 24 23.9 28.0 33.1* 21.9 0.05G 0.4 000000 724050 13743 19850113 30.7 24 16.1 24 1015.6 24 1013.2 24 15.0 24 7.5 24 9.9 15.0 41.0* 21.6 0.00G 0.4 000000 724050 13743 19850114 33.9 22 21.0 22 1006.4 22 1004.0 22 14.3 21 6.8 22 20.0 999.9 48.0* 24.1 0.00G 999.9 000000 724050 13743 19850115 32.8 23 11.6 23 1007.0 23 1004.7 23 17.1 22 18.1 23 25.1 38.1 48.9 26.1 0.00G 999.9 000000 724050 13743 19850116 23.4 23 3.4 23 1026.1 23 1023.7 23 17.2 23 11.4 23 15.0 22.0 37.9 18.0 0.00G 999.9 000000 724050 13743 19850117 29.0 23 19.4 23 1012.0 23 1009.6 23 8.0 23 8.0 23 15.9 999.9 34.0* 18.0 0.27G 3.9 101000 724050 13743 19850118 34.5 22 24.3 22 1004.0 22 1001.6 22 9.5 21 6.9 22 9.9 999.9 37.9 25.0 0.08G 2.0 101000 724050 13743 19850119 33.7 22 23.2 22 1000.6 22 998.2 22 8.2 20 7.9 22 19.0 27.0 39.9 28.0 0.01G 0.4 101000 724050 13743 19850120 18.1 23 0.2 23 1008.4 23 1006.0 23 13.0 23 15.0 23 22.0 36.9 39.9 5.2* 0.00G 0.8 001000 724050 13743 19850121 3.8 24 -17.1 24 1014.6 24 1012.2 24 14.4 24 11.1 24 18.1 22.0 27.0 -4.0 0.07G 0.8 000000 724050 13743 19850122 18.6 24 2.3 24 1012.1 24 1009.7 24 14.3 24 10.1 24 17.1 27.0 32.0* -4.0 0.00G 0.4 000000 724050 13743 19850123 26.0 23 9.4 23 1011.8 23 1009.4 23 14.6 23 7.9 23 18.1 999.9 39.0* 9.0 0.00G 0.4 000000 724050 13743 19850124 30.7 24 18.3 23 1007.8 24 1005.5 24 12.2 24 6.9 24 13.0 999.9 43.9 15.1 0.00G 999.9 000000 724050 13743 19850125 36.4 24 24.9 24 1001.9 24 999.6 24 11.7 24 6.9 24 13.0 20.0 42.1* 24.1 0.00G 999.9 001000 724050 13743 19850126 26.2 24 12.1 24 1011.7 24 1009.3 24 14.6 24 18.3 24 29.9 44.1 42.1 21.0 0.04G 0.4 111000 724050 13743 19850127 23.9 24 9.4 24 1018.5 24 1016.1 24 14.0 24 7.2 24 14.0 999.9 33.1* 15.1 0.02G 0.4 000000 724050 13743 19850128 30.7 24 19.6 24 1012.4 24 1010.1 24 8.5 24 7.0 24 12.0 999.9 39.0 15.1 0.00G 999.9 100000 724050 13743 19850129 30.8 24 16.1 24 1018.3 24 1015.9 24 12.1 24 10.1 24 15.0 999.9 39.9 23.0 0.00G 999.9 000000 724050 13743 19850130 28.8 23 19.6 23 1023.1 23 1020.7 23 10.6 23 4.7 23 9.9 999.9 37.9* 19.9 0.00G 999.9 000000 724050 13743 19850131 32.7 24 28.8 24 1019.5 24 1017.1 24 3.8 24 4.7 24 8.0 999.9 37.9 19.9 0.45G 1.6 111000 724050 13743 19850201 34.8 23 34.2 23 1015.5 23 1013.1 23 2.9 23 5.6 22 11.1 999.9 37.9* 32.0 0.78G 0.4 110000 724050 13743 19850202 34.3 23 32.8 23 1015.3 23 1012.9 23 3.1 23 7.8 23 11.1 999.9 37.9 32.0 0.58G 999.9 111000 724050 13743 19850203 27.4 24 18.7 24 1026.5 24 1024.0 24 9.2 24 11.0 24 14.0 19.0 35.1 19.0 0.06G 999.9 110000 724050 13743 19850204 25.0 24 8.0 24 1034.4 24 1032.0 24 12.7 24 6.5 24 11.1 999.9 34.0* 16.0 0.00G 999.9 000000 724050 13743 19850205 27.6 24 13.8 24 1026.8 24 1024.4 24 9.6 24 5.1 24 7.0 999.9 34.0 16.0 0.00G 999.9 111000 724050 13743 19850206 33.6 23 29.9 23 1010.7 23 1008.3 23 3.1 23 5.1 23 8.0 999.9 39.9* 24.1 0.14G 999.9 110000 724050 13743 19850207 31.9 24 17.6 24 1017.3 24 1014.9 24 7.2 24 10.5 24 27.0 32.1 39.9 27.0 0.04G 999.9 000000 724050 13743 19850208 22.1 24 1.6 24 1023.2 24 1020.8 24 12.9 24 16.3 24 25.1 35.9 35.1 17.1 0.00G 999.9 000000 724050 13743 19850209 24.6 23 4.5 23 1022.7 23 1020.2 23 17.2 23 16.9 23 22.9 29.9 33.1* 17.1 0.00G 999.9 000000 724050 13743 19850210 28.7 24 12.6 24 1026.2 24 1023.8 24 16.9 24 10.5 24 15.9 999.9 37.9* 19.0 0.00G 999.9 000000 724050 13743 19850211 32.8 24 22.1 24 1025.0 24 1022.6 24 9.1 23 4.4 24 9.9 999.9 46.0* 21.0 0.00G 999.9 100000 724050 13743 19850212 41.0 24 36.0 24 1002.9 24 1000.5 24 7.0 24 14.2 24 22.0 36.9 50.0 21.9 1.37G 999.9 110000 724050 13743 19850213 34.8 23 22.5 23 1001.2 23 998.8 23 13.9 23 10.9 23 18.1 24.1 50.0 28.9 0.62G 999.9 000000 724050 13743 19850214 33.9 23 17.0 23 1012.1 23 1009.7 23 15.2 23 8.5 23 15.0 22.0 42.1* 24.1 0.00G 999.9 000000 724050 13743 19850215 32.7 23 15.0 23 1015.5 23 1013.0 23 14.9 23 7.2 23 13.0 999.9 42.1 24.1 0.00G 999.9 000000 724050 13743 19850216 29.0 24 12.1 24 1018.5 24 1016.1 24 13.5 24 7.4 24 11.1 999.9 39.9 19.9 0.00G 999.9 000000 724050 13743 19850217 36.1 24 21.9 24 1020.1 24 1017.7 24 11.9 24 7.3 24 13.0 999.9 45.0* 19.9 0.00G 999.9 000000 724050 13743 19850218 40.3 24 15.1 24 1030.1 24 1027.7 24 16.0 24 7.8 24 9.9 999.9 50.0* 28.9 0.00G 999.9 000000 724050 13743 19850219 43.5 23 23.3 23 1025.3 23 1022.9 23 15.4 23 10.0 23 14.0 999.9 53.1 30.9 0.00G 999.9 000000 724050 13743 19850220 38.8 23 14.6 23 1026.7 23 1024.3 23 15.9 23 6.1 23 9.9 999.9 54.0 30.0 0.00G 999.9 000000 724050 13743 19850221 39.3 24 22.3 24 1032.3 24 1029.9 24 11.1 24 6.1 24 12.0 999.9 54.0* 27.0 0.00G 999.9 000000 724050 13743 19850222 52.3 23 31.0 23 1028.2 23 1025.8 23 12.6 23 9.8 23 14.0 18.1 66.9* 43.0* 0.00G 999.9 000000 724050 13743 19850223 57.8 24 44.4 23 1024.4 24 1022.0 24 11.8 24 8.2 24 18.1 26.0 73.0* 42.1 0.00G 999.9 000000 724050 13743 19850224 62.3 24 50.0 24 1015.9 24 1013.5 24 11.5 24 10.1 24 19.0 24.1 78.1* 46.9 0.00G 999.9 000000 724050 13743 19850225 61.7 24 41.9 24 1018.6 24 1016.2 24 13.5 24 10.7 24 16.9 22.0 78.1 51.1 0.00G 999.9 000000 724050 13743 19850226 46.6 23 39.1 23 1024.2 23 1021.8 23 7.8 23 5.7 23 9.9 999.9 52.0* 42.1 0.18G 999.9 110000 724050 13743 19850227 49.8 24 39.7 24 1017.7 24 1015.3 24 7.1 24 10.3 24 22.0 33.0 57.0 42.1 0.01G 999.9 110000 724050 13743 19850228 36.6 24 15.3 24 1027.4 24 1025.0 24 16.1 24 8.8 24 17.1 999.9 57.0 26.1 0.00G 999.9 000000 724050 13743 19850301 42.0 24 26.2 24 1022.5 24 1020.0 24 13.2 24 9.3 24 15.0 22.9 55.9* 26.1 0.00G 999.9 000000 724050 13743 19850302 50.8 24 33.9 24 1013.7 24 1011.3 24 12.0 24 8.9 24 17.1 22.0 63.0* 28.9 0.00G 999.9 000000 724050 13743 19850303 44.8 24 21.4 24 1025.8 24 1023.3 24 14.5 24 7.9 24 12.0 999.9 63.0 35.1 0.00G 999.9 000000 724050 13743 19850304 39.8 24 31.3 24 1025.7 24 1023.2 24 8.3 24 5.8 24 11.1 999.9 52.0 35.1 0.03G 999.9 110000 724050 13743 19850305 53.7 23 39.3 23 1011.4 23 1009.0 23 9.6 23 10.2 23 49.0 999.9 70.0* 37.0 0.06G 999.9 110000 724050 13743 19850306 38.2 23 16.2 23 1029.3 23 1026.9 23 19.7 23 15.7 23 22.0 28.9 48.9* 32.0 0.00D 999.9 000000 724050 13743 19850307 36.3 24 17.2 24 1037.9 24 1035.5 24 16.1 24 8.5 24 13.0 999.9 46.9* 26.1 0.00G 999.9 000000 724050 13743 19850308 47.0 24 37.2 24 1022.8 24 1020.4 24 10.5 24 8.3 24 12.0 999.9 55.0* 44.1* 0.04G 999.9 010000 724050 13743 19850309 54.1 24 30.7 24 1020.8 24 1018.4 24 14.4 24 9.4 24 13.0 21.0 61.0* 44.1 0.03G 999.9 000000 724050 13743 19850310 51.0 24 25.0 24 1023.1 24 1020.6 24 14.9 24 7.2 23 12.0 999.9 62.1 35.1 0.00G 999.9 000000 724050 13743 19850311 47.4 23 31.1 23 1021.5 23 1019.1 23 11.7 23 7.2 23 19.0 999.9 62.1 35.1 0.00G 999.9 010000 724050 13743 19850312 52.7 23 39.5 23 1004.6 23 1002.2 23 11.3 23 15.0 23 27.0 36.9 60.1 36.0 0.12G 999.9 110000 724050 13743 19850313 51.9 24 29.5 24 1012.7 24 1010.3 24 18.7 24 12.5 24 25.1 35.9 61.0* 44.1 0.02G 999.9 000000 724050 13743 19850314 53.3 24 31.2 24 1012.8 24 1010.4 24 15.2 24 11.1 24 17.1 27.0 62.1 44.1 0.00G 999.9 000000 724050 13743 19850315 47.6 24 22.2 24 1017.9 24 1015.5 24 15.9 24 12.1 24 22.0 28.9 60.1 39.0 0.00G 999.9 000000 724050 13743 19850316 42.8 23 19.5 23 1024.1 23 1021.7 23 15.9 23 7.9 23 14.0 20.0 55.0* 30.0 0.00G 999.9 000000 724050 13743 19850317 47.5 23 27.8 23 1011.0 23 1008.6 23 14.1 23 11.9 23 20.0 25.1 55.0 30.0 0.00G 999.9 000000 724050 13743 19850318 35.5 24 13.1 24 1013.7 24 1011.3 24 16.3 24 16.4 24 21.0 28.9 54.0 27.0 0.00G 999.9 000000 724050 13743 19850319 37.0 23 5.6 23 1022.8 23 1020.4 23 17.2 23 9.6 23 15.0 20.0 53.1* 24.1 0.00G 999.9 000000 724050 13743 19850320 53.4 24 27.2 24 1016.9 24 1014.5 24 13.7 24 10.5 24 15.9 18.1 66.9* 45.0* 0.00G 999.9 010000 724050 13743 19850321 46.3 24 18.1 24 1024.7 24 1022.3 24 14.9 24 9.2 24 18.1 999.9 69.1 37.0 0.00G 999.9 000000 724050 13743 19850322 39.5 24 25.0 24 1025.3 24 1022.9 24 11.1 24 7.3 24 15.0 999.9 50.0 37.0 0.09G 999.9 111000 724050 13743 19850323 39.9 24 37.5 24 1014.6 24 1012.2 24 4.0 24 9.5 24 13.0 999.9 42.1 37.9 0.54G 999.9 110000 724050 13743 19850324 42.0 23 38.4 23 1011.7 23 1009.4 23 6.0 23 6.2 23 9.9 999.9 44.1 37.9 0.64G 999.9 110000 724050 13743 19850325 42.3 23 33.2 23 1017.3 23 1015.0 22 11.5 23 8.4 23 15.9 22.0 50.0* 37.9 0.11G 999.9 010000 724050 13743 19850326 44.4 24 20.8 24 1027.6 24 1025.2 24 16.1 24 5.8 24 9.9 15.0 59.0* 30.9 0.01G 999.9 000000 724050 13743 19850327 51.2 22 34.5 22 1019.7 22 1017.3 22 13.2 22 6.6 22 11.1 999.9 68.0* 39.0* 0.00G 999.9 000000 724050 13743 19850328 65.2 23 44.6 23 1010.3 23 1007.9 23 12.8 22 9.9 23 20.0 27.0 81.0* 37.0 0.00G 999.9 000000 724050 13743 19850329 67.2 23 55.8 23 1007.9 23 1005.5 23 10.8 23 9.0 23 15.0 20.0 81.0 50.0 0.00D 999.9 010000 724050 13743 19850330 61.6 24 53.0 24 1012.7 24 1010.4 24 8.6 24 6.9 24 15.0 999.9 80.1 55.9* 0.15G 999.9 110000 724050 13743 19850331 50.8 24 42.7 24 1018.2 24 1015.8 24 6.7 24 5.7 24 8.9 999.9 64.9 48.9 0.08G 999.9 110000 724050 13743 19850401 54.2 23 41.1 23 1006.6 23 1004.2 23 9.4 23 8.8 23 20.0 26.0 64.0 48.9 0.10G 999.9 110000 724050 13743 19850402 49.5 24 24.5 24 1010.2 24 1007.8 24 16.9 24 11.9 24 22.9 28.0 64.9 44.1 0.00G 999.9 000000 724050 13743 19850403 47.2 23 28.6 23 1008.5 23 1006.1 23 16.0 23 10.3 23 19.0 27.0 64.9* 36.0 0.00G 999.9 010000 724050 13743 19850404 57.4 22 30.8 22 1011.6 22 1009.2 22 16.7 22 7.7 22 14.0 999.9 66.9* 36.0 0.00G 999.9 000000 724050 13743 19850405 65.7 23 44.7 23 1007.8 23 1005.4 23 13.0 23 12.3 23 22.0 29.9 82.0* 44.1 0.00G 999.9 000000 724050 13743 19850406 67.6 24 40.1 24 1003.7 24 1001.3 24 14.3 24 15.2 24 21.0 29.9 82.0 50.0 0.00G 999.9 010000 724050 13743 19850407 56.0 24 30.5 24 1016.6 24 1014.2 24 15.9 24 9.6 24 20.0 28.0 71.1 48.9 0.00G 999.9 010000 724050 13743 19850408 47.9 24 27.9 24 1017.9 24 1015.5 24 16.1 24 10.6 23 20.0 32.1 61.0 37.9 0.02G 999.9 010000 724050 13743 19850409 40.8 22 25.4 22 1019.1 22 1016.8 22 13.6 22 10.2 22 22.0 29.9 55.0 36.0 0.01G 999.9 011000 724050 13743 19850410 39.3 24 13.7 24 1028.4 24 1026.0 24 16.5 24 8.9 24 13.0 15.0 52.0* 28.9 0.00G 999.9 000000 724050 13743 19850411 52.2 21 32.1 21 1023.9 21 1021.5 21 12.0 21 8.0 21 13.0 999.9 69.1* 44.1* 0.00G 999.9 010000 724050 13743 19850412 59.0 23 43.1 23 1028.9 23 1026.5 23 9.0 23 3.8 23 8.0 999.9 72.0* 42.1 0.00G 999.9 000000 724050 13743 19850413 62.9 24 47.0 24 1028.4 24 1026.0 24 8.5 24 6.4 24 13.0 999.9 77.0* 45.0 0.00G 999.9 000000 724050 13743 19850414 60.1 24 48.8 24 1025.3 24 1022.9 24 8.8 24 7.0 24 11.1 999.9 77.0 50.0 0.00G 999.9 000000 724050 13743 19850415 62.3 24 54.6 24 1016.4 24 1013.9 24 6.5 24 6.2 24 8.0 999.9 70.0 50.0 0.00G 999.9 100000 724050 13743 19850416 66.0 24 55.9 24 1010.4 24 1008.0 24 6.2 24 5.9 24 11.1 999.9 73.9* 57.0 0.00G 999.9 100000 724050 13743 19850417 61.6 24 33.6 24 1018.9 24 1016.5 24 17.1 24 8.9 24 19.0 25.1 73.9 48.9 0.00G 999.9 000000 724050 13743 19850418 60.7 24 35.9 24 1023.0 24 1020.6 24 14.9 24 9.7 24 20.0 22.9 81.0* 46.0 0.00G 999.9 000000 724050 13743 19850419 77.8 23 52.3 23 1016.1 23 1013.7 23 11.9 23 9.1 23 13.0 20.0 91.0* 64.0* 0.00G 999.9 000000 724050 13743 19850420 75.7 23 54.5 23 1017.0 23 1014.5 23 10.4 23 5.6 23 11.1 18.1 91.0 61.0 0.00G 999.9 100000 724050 13743 19850421 70.7 24 56.1 24 1018.9 24 1016.5 24 6.2 24 6.5 24 9.9 999.9 89.1 57.0 0.00G 999.9 100000 724050 13743 19850422 76.9 24 58.1 24 1016.5 24 1014.1 24 6.8 24 5.2 24 8.9 999.9 91.9* 57.0 0.00G 999.9 100000 724050 13743 19850423 74.0 24 57.2 24 1016.0 24 1013.6 24 6.6 24 6.6 23 9.9 999.9 93.0 62.1 0.00G 999.9 000000 724050 13743 19850424 62.1 24 53.1 24 1017.6 24 1015.2 24 9.0 24 6.7 24 9.9 999.9 82.0 57.9 0.00G 999.9 110000 724050 13743 19850425 63.4 24 52.1 24 1011.1 24 1008.7 24 7.8 24 8.6 24 15.0 999.9 75.9 55.0 0.00G 999.9 110000 724050 13743 19850426 69.2 23 48.0 23 1013.4 23 1011.0 23 12.8 23 6.1 23 11.1 15.9 86.0* 55.0 0.00G 999.9 000000 724050 13743 19850427 72.1 23 50.5 23 1011.6 23 1009.2 23 14.1 23 7.6 22 13.0 17.1 86.0 55.0 0.00G 999.9 000000 724050 13743 19850428 69.1 23 49.4 23 1013.3 23 1010.9 23 13.0 23 7.4 23 13.0 999.9 84.0 59.0 0.00G 999.9 000000 724050 13743 19850429 63.3 23 39.4 23 1019.2 23 1016.8 23 14.0 23 10.9 22 16.9 22.0 77.0 51.1 0.00G 999.9 000000 724050 13743 19850430 66.4 24 42.0 24 1020.6 24 1018.2 24 13.8 24 6.0 24 12.0 999.9 82.0* 50.0 0.00G 999.9 000000 724050 13743 19850501 71.8 24 49.8 24 1015.1 24 1012.7 24 12.6 24 7.6 24 8.9 999.9 86.0* 50.0 0.00G 999.9 000000 724050 13743 19850502 66.5 23 51.0 23 1015.3 23 1012.9 23 8.8 23 10.1 23 17.1 999.9 86.0 55.9* 0.00G 999.9 110000 724050 13743 19850503 54.7 24 45.6 24 1013.5 24 1011.1 24 10.9 24 13.0 24 19.0 25.1 71.1 50.0 0.90G 999.9 110000 724050 13743 19850504 58.0 23 36.5 23 1019.7 23 1017.3 23 15.6 23 5.2 23 8.9 999.9 70.0* 46.0 0.44G 999.9 000000 724050 13743 19850505 65.7 23 46.5 23 1017.7 23 1015.4 23 15.3 23 8.4 23 13.0 22.0 82.0* 46.0 0.00G 999.9 000000 724050 13743 19850506 71.9 22 54.3 22 1013.0 22 1010.6 22 10.8 22 7.6 22 15.9 999.9 84.9 51.1 0.00G 999.9 000000 724050 13743 19850507 69.9 24 50.3 24 1011.3 24 1008.9 24 10.7 24 9.1 24 14.0 20.0 84.9 60.1 0.00G 999.9 000000 724050 13743 19850508 65.1 24 43.5 24 1019.2 24 1016.8 24 12.2 24 7.3 24 9.9 18.1 75.9* 54.0 0.00G 999.9 000000 724050 13743 19850509 66.3 24 49.8 24 1023.9 24 1021.5 24 10.0 24 6.8 24 12.0 17.1 78.1 54.0 0.00G 999.9 000000 724050 13743 19850510 70.1 24 56.5 24 1021.5 24 1019.1 24 10.2 24 7.8 24 14.0 999.9 84.0* 55.0 0.00G 999.9 000000 724050 13743 19850511 74.7 24 63.8 24 1017.4 24 1015.0 24 9.6 24 7.5 24 12.0 999.9 84.9* 59.0 0.00G 999.9 000000 724050 13743 19850512 75.0 24 65.4 24 1016.1 24 1013.7 24 12.1 24 7.6 24 11.1 999.9 84.9 64.9 0.00G 999.9 000000 724050 13743 19850513 73.5 24 65.4 24 1014.5 24 1012.1 24 9.6 24 6.7 24 18.1 27.0 84.0 66.0 1.41G 999.9 110010 724050 13743 19850514 76.7 24 58.8 24 1014.2 24 1011.9 24 10.9 24 5.5 24 12.0 999.9 86.0* 66.0 0.00G 999.9 100000 724050 13743 19850515 68.1 24 56.4 24 1020.0 24 1017.6 24 10.1 24 6.5 24 15.9 22.0 86.0 63.0 0.00G 999.9 000000 724050 13743 19850516 64.7 24 58.2 24 1013.6 24 1011.2 24 8.1 24 5.8 24 8.0 999.9 72.0 61.0 0.00G 999.9 110000 724050 13743 19850517 63.8 24 59.2 24 998.8 24 996.5 24 5.5 24 5.9 24 14.0 999.9 68.0 61.0 0.76G 999.9 110010 724050 13743 19850518 62.6 24 48.8 24 998.5 24 996.1 24 13.1 24 10.2 24 15.0 22.0 69.1* 55.9 0.07G 999.9 110000 724050 13743 19850519 62.7 23 45.0 23 1010.2 23 1007.9 23 15.5 23 6.5 23 11.1 17.1 75.0* 51.1 0.06G 999.9 000000 724050 13743 19850520 71.4 24 55.3 24 1015.4 24 1013.0 24 13.8 24 7.6 24 14.0 20.0 84.9* 51.1 0.00G 999.9 000000 724050 13743 19850521 76.2 24 63.5 24 1014.2 24 1011.8 24 9.4 24 7.0 24 12.0 17.1 84.9 57.9 0.00G 999.9 000000 724050 13743 19850522 70.4 23 58.9 23 1015.5 23 1013.1 23 7.5 23 5.4 23 18.1 999.9 82.0 64.9 1.02G 999.9 110010 724050 13743 19850523 63.2 24 56.2 24 1014.0 24 1011.6 24 8.0 24 5.3 24 9.9 15.0 75.9 59.0 0.57G 999.9 110000 724050 13743 19850524 61.8 23 55.0 23 1012.8 23 1010.4 23 7.1 23 5.1 23 8.0 999.9 68.0 57.9 0.05G 999.9 110000 724050 13743 19850525 67.6 24 53.9 24 1010.1 24 1007.7 24 7.9 24 5.9 24 11.1 17.1 82.0* 55.0 0.09G 999.9 110000 724050 13743 19850526 74.8 22 54.9 22 1010.5 22 1008.1 22 10.6 22 6.2 22 9.9 999.9 86.0* 55.0 0.00G 999.9 000000 724050 13743 19850527 75.1 23 60.7 23 1010.4 23 1008.0 23 9.7 23 6.8 23 11.1 999.9 86.0 63.0 0.00G 999.9 000000 724050 13743 19850528 76.7 23 66.0 23 1007.4 23 1005.0 23 6.8 23 5.8 23 12.0 999.9 86.0 64.9 0.00G 999.9 110000 724050 13743 19850529 64.3 24 58.1 24 1013.1 24 1010.7 24 8.8 24 7.4 24 15.9 999.9 82.0 62.1 0.59G 999.9 110000 724050 13743 19850530 63.3 24 54.2 24 1017.7 24 1015.3 24 10.6 24 5.6 24 8.9 999.9 73.9* 55.0 0.00G 999.9 000000 724050 13743 19850531 69.1 21 62.8 21 1010.9 21 1008.5 21 7.6 21 9.4 21 17.1 22.0 78.1* 55.0 0.33G 999.9 110000 724050 13743 19850601 77.2 22 60.9 22 1005.9 22 1003.5 22 10.1 22 9.1 22 13.0 21.0 82.9* 63.0 0.31G 999.9 100000 724050 13743 19850602 73.8 22 57.8 22 1012.5 22 1010.1 22 13.8 22 4.8 22 7.0 999.9 84.9* 63.0 0.00G 999.9 000000 724050 13743 19850603 75.1 22 65.5 22 1012.9 22 1010.5 22 9.5 22 5.2 22 8.9 999.9 84.9 63.0 0.00G 999.9 100000 724050 13743 19850604 74.7 21 66.3 21 1015.7 21 1013.3 21 6.0 21 5.5 21 7.0 999.9 84.0 64.9 0.00D 999.9 100000 724050 13743 19850605 70.7 23 66.3 23 1014.9 23 1012.5 23 4.6 23 5.2 23 15.0 27.0 78.1 66.0 0.59G 999.9 110010 724050 13743 19850606 70.8 20 61.9 20 1014.8 20 1012.4 20 6.7 20 5.6 20 8.9 999.9 79.0 64.9 0.68G 999.9 110000 724050 13743 19850607 67.0 23 56.7 23 1018.9 23 1016.5 23 10.7 23 5.7 23 12.0 999.9 77.0 59.0 0.01G 999.9 110000 724050 13743 19850608 68.0 24 61.4 24 1011.5 24 1009.1 24 5.9 24 5.4 24 8.9 15.0 79.0* 59.0 0.16G 999.9 110000 724050 13743 19850609 74.2 22 66.9 22 1009.2 22 1006.8 22 6.4 22 6.7 22 15.0 999.9 86.0* 63.0 0.07G 999.9 110000 724050 13743 19850610 79.7 21 64.9 21 1011.0 21 1008.6 21 8.9 21 6.2 21 11.1 14.0 86.0 66.0 0.00G 999.9 100000 724050 13743 19850611 76.4 22 67.9 22 1012.6 22 1010.2 22 7.9 21 4.2 22 8.0 999.9 84.9 70.0 0.12G 999.9 010000 724050 13743 19850612 75.6 22 68.2 22 1003.3 22 1000.9 22 8.3 22 9.1 22 14.0 25.1 81.0 70.0 0.05G 999.9 110010 724050 13743 19850613 65.1 22 47.9 22 1008.7 22 1006.4 22 15.1 22 10.1 22 15.9 28.0 81.0 57.9 0.00D 999.9 000000 724050 13743 19850614 63.3 23 46.0 23 1016.5 23 1014.1 23 15.2 23 5.8 23 9.9 15.0 73.9 52.0 0.00G 999.9 000000 724050 13743 19850615 67.8 24 54.5 24 1018.6 24 1016.2 24 12.7 24 4.4 24 15.9 999.9 77.0* 52.0 0.00G 999.9 110010 724050 13743 19850616 72.4 21 66.9 21 1011.5 21 1009.1 21 7.6 21 7.3 20 11.1 17.1 79.0* 57.0 0.17G 999.9 110000 724050 13743 19850617 75.0 23 63.7 23 1011.0 23 1008.6 23 11.5 23 5.9 23 12.0 14.0 84.0* 66.0 0.00G 999.9 000010 724050 13743 19850618 76.9 23 67.6 23 1007.0 23 1004.6 23 9.4 23 7.5 23 13.0 999.9 84.0 66.0 0.00C 999.9 010000 724050 13743 19850619 74.0 23 53.9 23 1007.8 23 1005.4 23 14.1 23 6.5 23 12.0 15.0 82.0* 64.9 0.00D 999.9 010000 724050 13743 19850620 68.2 23 54.0 23 1012.5 23 1010.1 23 13.2 23 5.6 23 14.0 19.0 82.0 57.9 0.03G 999.9 010000 724050 13743 19850621 68.1 23 56.5 23 1019.1 23 1016.7 23 9.5 23 4.1 23 8.9 999.9 80.1 57.9 0.07G 999.9 000000 724050 13743 19850622 74.6 24 61.6 24 1020.7 24 1018.2 24 9.9 24 6.9 24 14.0 20.0 86.0* 57.9 0.00G 999.9 000000 724050 13743 19850623 78.3 23 64.9 23 1019.4 23 1017.0 23 8.0 23 6.3 23 8.9 999.9 87.1* 66.0 0.00G 999.9 010000 724050 13743 19850624 79.1 23 68.8 23 1017.2 23 1014.8 23 7.4 23 6.0 23 12.0 22.0 91.0* 70.0 0.00G 999.9 110010 724050 13743 19850625 74.2 24 52.4 24 1017.2 24 1014.8 24 15.3 24 5.2 24 11.1 999.9 93.0 63.0 0.16G 999.9 000000 724050 13743 19850626 70.9 24 46.1 24 1014.4 24 1012.0 24 18.5 24 6.4 24 13.0 19.0 84.0 62.1 0.00G 999.9 000000 724050 13743 19850627 67.7 24 50.1 24 1016.5 24 1014.1 24 18.8 24 5.1 24 8.9 13.0 77.0* 57.9 0.00G 999.9 010000 724050 13743 19850628 66.8 24 54.9 24 1016.3 24 1013.9 24 12.4 24 5.6 24 11.1 999.9 79.0* 55.9 0.00G 999.9 010000 724050 13743 19850629 72.1 24 57.8 24 1014.9 24 1012.5 24 13.5 24 5.2 24 8.9 999.9 84.0* 57.9 0.02G 999.9 010000 724050 13743 19850630 74.6 24 64.4 24 1018.6 24 1016.2 24 7.7 24 6.4 24 12.0 17.1 84.0 61.0 0.00G 999.9 100000 724050 13743 19850701 70.0 24 60.7 24 1022.3 24 1019.9 24 8.7 24 6.1 24 8.9 999.9 82.9 66.0 0.04G 999.9 110000 724050 13743 19850702 72.3 24 61.1 24 1018.5 24 1016.1 24 9.5 24 6.4 24 9.9 999.9 79.0 66.0 0.00D 999.9 000000 724050 13743 19850703 73.8 22 63.8 22 1013.9 22 1011.5 22 7.1 22 5.8 22 12.0 999.9 84.0 64.0 0.00D 999.9 110010 724050 13743 19850704 78.1 24 64.4 24 1013.4 24 1011.0 24 7.0 24 4.6 24 8.0 999.9 87.1 64.0 0.15G 999.9 000000 724050 13743 19850705 79.7 23 66.5 23 1013.7 23 1011.3 23 8.7 23 6.8 23 11.1 18.1 88.0 69.1 0.00G 999.9 010000 724050 13743 19850706 77.7 23 69.5 23 1013.8 23 1011.4 23 9.3 23 10.0 23 20.0 27.0 89.1 72.0 0.00G 999.9 010000 724050 13743 19850707 79.8 24 61.3 24 1013.7 24 1011.3 24 12.8 24 7.7 24 12.0 21.0 88.0 72.0 0.00G 999.9 000000 724050 13743 19850708 80.3 23 58.3 23 1013.6 23 1011.2 23 11.7 23 7.0 23 14.0 20.0 93.9* 68.0 0.00G 999.9 000000 724050 13743 19850709 82.0 23 62.7 23 1009.6 23 1007.2 23 11.3 23 5.7 23 8.0 999.9 95.0 68.0 0.00G 999.9 010000 724050 13743 19850710 78.4 23 69.4 23 1009.8 23 1007.4 23 7.9 23 5.9 23 17.1 999.9 91.9 71.1 0.01G 999.9 010010 724050 13743 19850711 79.2 23 61.2 23 1012.8 23 1010.4 23 10.3 23 6.0 23 13.0 19.0 89.1* 69.1 0.07G 999.9 100000 724050 13743 19850712 76.3 24 64.8 24 1017.1 24 1014.7 24 8.4 24 5.2 24 8.9 999.9 91.0 69.1 0.11G 999.9 110000 724050 13743 19850713 76.6 24 68.6 24 1018.4 24 1016.1 24 5.8 24 4.9 24 17.1 26.0 89.1* 66.9 0.77G 999.9 110010 724050 13743 19850714 80.4 24 68.2 24 1018.1 24 1015.7 24 8.8 24 6.6 24 11.1 999.9 93.0 66.9 0.00G 999.9 000000 724050 13743 19850715 84.8 24 74.1 24 1013.0 24 1010.6 24 5.5 24 6.9 24 11.1 17.1 93.9* 70.0 0.00G 999.9 100000 724050 13743 19850716 80.8 24 70.5 24 1013.0 24 1010.6 24 7.5 24 6.0 24 19.0 28.0 95.0 73.9 0.06G 999.9 010010 724050 13743 19850717 78.4 23 59.5 23 1017.8 23 1015.4 23 12.1 23 6.9 23 9.9 999.9 91.0 70.0 0.00G 999.9 000000 724050 13743 19850718 76.6 23 56.4 23 1019.8 23 1017.4 23 12.3 23 5.2 23 8.0 999.9 87.1 64.0 0.00G 999.9 000000 724050 13743 19850719 79.5 23 62.8 23 1019.9 23 1017.5 23 10.5 23 6.5 23 9.9 17.1 91.0* 64.0 0.00G 999.9 000000 724050 13743 19850720 82.9 24 67.3 24 1016.1 24 1013.7 24 5.3 24 6.5 24 9.9 999.9 93.0 68.0 0.00D 999.9 100000 724050 13743 19850721 83.8 24 67.2 24 1013.8 24 1011.5 24 3.5 24 6.1 24 9.9 999.9 93.9 73.0 0.00G 999.9 000000 724050 13743 19850722 83.5 24 68.4 24 1010.5 24 1008.1 24 5.2 24 7.2 24 12.0 999.9 91.9 75.9 0.00G 999.9 010000 724050 13743 19850723 76.5 24 54.1 24 1015.3 24 1012.9 24 14.5 24 7.0 24 13.0 999.9 89.1 68.0 0.00G 999.9 000010 724050 13743 19850724 74.8 24 55.6 24 1022.4 24 1020.0 24 17.3 24 5.7 24 9.9 999.9 84.0* 63.0 0.00G 999.9 000000 724050 13743 19850725 75.7 23 68.6 23 1022.4 23 1019.9 23 10.6 23 8.0 23 22.0 42.0 91.0 63.0 0.08G 999.9 110010 724050 13743 19850726 79.0 24 72.6 24 1015.5 24 1013.1 24 8.6 24 12.0 24 18.1 24.1 90.0 71.1 0.98G 999.9 110000 724050 13743 19850727 77.5 24 69.6 24 1014.7 24 1012.3 24 8.5 24 6.3 24 13.0 19.0 89.1 68.0 0.25G 999.9 110000 724050 13743 19850728 76.3 24 63.8 24 1019.1 24 1016.7 24 10.4 24 4.8 24 6.0 999.9 84.9 66.9 0.00D 999.9 100000 724050 13743 19850729 75.7 23 65.3 23 1020.1 23 1017.7 23 10.8 23 4.2 23 6.0 999.9 86.0 66.9 0.03G 999.9 010000 724050 13743 19850730 78.6 24 70.1 24 1018.9 24 1016.5 24 7.5 24 5.0 24 8.0 999.9 90.0* 70.0 0.00D 999.9 100000 724050 13743 19850731 81.5 23 75.3 23 1015.8 23 1013.4 23 6.5 23 6.4 23 11.1 999.9 91.0 70.0 0.00G 999.9 110010 724050 13743 19850801 75.2 24 66.1 24 1012.7 24 1010.3 24 10.0 24 5.0 24 9.9 15.9 90.0 69.1 0.37G 999.9 110000 724050 13743 19850802 73.0 24 55.2 24 1018.4 24 1016.0 24 16.9 24 7.9 24 15.0 19.0 80.1* 66.9 0.01G 999.9 000000 724050 13743 19850803 72.8 24 57.5 23 1023.2 24 1020.8 24 13.0 24 4.5 24 8.9 999.9 82.9* 62.1 0.00G 999.9 000000 724050 13743 19850804 73.6 24 59.5 24 1023.4 24 1021.0 24 13.9 24 6.3 24 9.9 999.9 82.9 62.1 0.00G 999.9 000000 724050 13743 19850805 73.8 24 59.0 24 1023.7 24 1021.2 24 14.1 24 6.7 24 12.0 999.9 82.9 63.0 0.00G 999.9 000000 724050 13743 19850806 74.9 23 62.9 23 1021.9 23 1019.5 23 16.4 23 7.2 23 12.0 999.9 82.9 64.0 0.00G 999.9 000000 724050 13743 19850807 77.7 22 68.6 22 1018.5 22 1016.1 22 14.8 22 10.8 22 17.1 22.9 86.0* 69.1 0.00G 999.9 000000 724050 13743 19850808 76.8 24 70.3 23 1015.4 24 1013.0 24 10.6 24 5.4 24 18.1 27.0 88.0 71.1 0.32G 999.9 010010 724050 13743 19850809 78.6 24 70.1 24 1016.5 24 1014.1 24 6.1 24 5.6 24 8.9 999.9 87.1 71.1 0.05G 999.9 100000 724050 13743 19850810 78.7 24 68.7 24 1017.0 24 1014.6 24 8.2 24 5.5 24 8.0 999.9 87.1 71.1 0.00G 999.9 100000 724050 13743 19850811 80.1 24 70.4 24 1015.9 24 1013.5 24 9.6 24 5.1 24 8.0 999.9 90.0 72.0 0.00D 999.9 000000 724050 13743 19850812 80.3 24 64.3 24 1017.9 24 1015.4 24 7.6 24 7.7 24 12.0 999.9 90.0 72.0 0.00G 999.9 000000 724050 13743 19850813 80.3 23 66.2 23 1019.3 23 1016.9 23 8.4 23 6.5 23 12.0 999.9 93.0* 71.1 0.00G 999.9 000000 724050 13743 19850814 86.4 23 74.5 23 1017.9 23 1015.5 23 4.1 23 7.1 23 13.0 999.9 97.0* 71.1 0.00G 999.9 100000 724050 13743 19850815 86.1 22 69.7 22 1016.0 22 1013.6 22 5.3 22 8.4 22 15.9 21.0 98.1 73.9 0.00D 999.9 000000 724050 13743 19850816 82.5 21 68.6 21 1015.1 21 1012.7 21 7.1 21 7.5 21 12.0 999.9 98.1 73.9 0.00G 999.9 010000 724050 13743 19850817 76.6 24 62.1 24 1018.7 24 1016.3 24 11.3 24 7.5 24 11.1 999.9 87.1 72.0 0.00G 999.9 010000 724050 13743 19850818 73.0 24 68.0 24 1018.5 24 1016.1 24 7.4 24 7.7 24 15.0 999.9 82.9 71.1 0.33G 999.9 110000 724050 13743 19850819 74.4 24 68.4 24 1015.5 24 1013.1 24 7.1 24 9.6 24 15.0 999.9 86.0* 68.0 0.81G 999.9 110000 724050 13743 19850820 77.8 24 67.6 24 1016.9 24 1014.5 24 7.8 24 6.2 24 13.0 999.9 86.0 69.1 0.00G 999.9 110000 724050 13743 19850821 72.8 24 66.1 24 1017.2 24 1014.8 24 6.5 24 7.3 24 11.1 999.9 84.0 66.9 0.20G 999.9 110000 724050 13743 19850822 72.2 23 58.0 23 1018.3 23 1015.9 23 10.7 22 6.8 23 9.9 999.9 79.0 64.0 0.01G 999.9 010000 724050 13743 19850823 70.4 23 56.7 23 1020.7 23 1018.2 23 12.3 23 5.7 23 11.1 999.9 81.0 59.0 0.00G 999.9 000000 724050 13743 19850824 71.7 24 60.8 24 1019.9 24 1017.5 24 10.2 24 8.5 24 13.0 999.9 81.0 59.0 0.00G 999.9 000000 724050 13743 19850825 71.5 24 67.3 24 1017.1 24 1014.7 24 5.9 24 7.5 24 12.0 999.9 81.0 60.1 0.26G 999.9 110000 724050 13743 19850826 76.2 24 71.7 24 1019.5 24 1017.0 24 6.7 24 8.7 24 13.0 999.9 84.9* 68.0 0.56G 999.9 110000 724050 13743 19850827 77.7 24 67.2 24 1023.2 24 1020.7 24 6.8 24 7.4 24 14.0 999.9 84.9 72.0 0.01G 999.9 110000 724050 13743 19850828 76.4 24 61.4 24 1024.3 24 1021.9 24 8.0 24 6.8 24 13.0 999.9 84.0 66.9 0.00G 999.9 000000 724050 13743 19850829 76.6 22 63.3 22 1022.1 22 1019.7 22 7.1 22 5.6 21 9.9 999.9 84.0 66.9 0.00G 999.9 000000 724050 13743 19850830 77.3 23 68.2 23 1014.8 23 1012.4 23 6.3 23 8.7 23 15.0 20.0 88.0 68.0 0.00G 999.9 110000 724050 13743 19850831 74.1 24 63.8 24 1014.0 24 1011.5 24 9.3 24 8.5 24 12.0 999.9 88.0 68.0 0.16G 999.9 110000 724050 13743 19850901 69.7 24 59.6 24 1023.3 24 1020.9 24 12.3 24 8.2 24 13.0 999.9 78.1 61.0 0.01G 999.9 000000 724050 13743 19850902 75.1 24 66.4 24 1023.1 24 1020.7 24 7.5 24 8.9 24 13.0 999.9 88.0* 61.0 0.00G 999.9 100000 724050 13743 19850903 80.1 24 69.7 24 1020.1 24 1017.7 24 5.7 24 6.1 24 9.9 999.9 90.0 66.9 0.00G 999.9 100000 724050 13743 19850904 82.3 24 70.1 24 1017.7 24 1015.3 24 5.8 24 7.0 24 12.0 999.9 93.9 70.0 0.00G 999.9 100000 724050 13743 19850905 84.2 24 70.0 24 1016.2 24 1013.7 24 9.2 24 7.2 24 13.0 999.9 95.0 72.0 0.00D 999.9 000000 724050 13743 19850906 85.1 24 70.9 24 1014.5 24 1012.1 24 9.6 24 8.1 24 12.0 15.9 96.1 73.0 0.00G 999.9 000000 724050 13743 19850907 85.3 24 71.3 24 1017.5 24 1015.1 24 6.5 24 7.2 24 11.1 999.9 96.1 75.0 0.00G 999.9 000000 724050 13743 19850908 82.3 24 73.7 24 1018.1 24 1015.7 24 5.6 24 5.5 24 15.9 22.0 96.1 75.9 0.05G 999.9 110010 724050 13743 19850909 81.8 24 73.9 24 1014.4 24 1012.0 24 4.1 24 5.4 24 13.0 25.1 93.9 75.0 0.11G 999.9 110010 724050 13743 19850910 78.8 24 71.0 24 1011.9 24 1009.5 24 4.6 24 6.9 24 25.1 47.0 95.0 71.1 0.13G 999.9 110010 724050 13743 19850911 71.3 24 62.5 24 1015.8 24 1013.4 24 10.2 24 9.3 24 14.0 20.0 73.9* 68.0 2.00G 999.9 110010 724050 13743 19850912 64.0 23 45.3 23 1022.7 23 1020.3 23 17.0 23 8.9 23 15.0 999.9 75.9 50.2 0.00G 999.9 000000 724050 13743 19850913 59.9 23 39.9 23 1028.6 23 1026.2 23 17.4 23 14.1 23 19.0 25.1 72.0 52.0 0.00G 999.9 000000 724050 13743 19850914 59.4 23 41.4 23 1032.6 23 1030.2 23 19.2 23 8.8 23 12.0 999.9 70.0* 50.0 0.00G 999.9 000000 724050 13743 19850915 62.3 24 44.4 24 1030.6 24 1028.2 24 17.4 24 5.6 24 12.0 999.9 73.9* 50.0* 0.00G 999.9 000000 724050 13743 19850916 63.9 24 46.7 24 1026.2 24 1023.8 24 14.3 24 3.9 24 9.9 999.9 78.1* 50.0 0.00G 999.9 000000 724050 13743 19850917 65.9 23 52.5 23 1024.7 23 1022.3 23 12.1 23 4.9 23 8.9 999.9 78.1 52.0 0.00G 999.9 000000 724050 13743 19850918 66.9 24 56.1 24 1027.2 24 1024.7 24 9.0 24 4.5 24 7.0 999.9 77.0 54.0 0.00G 999.9 100000 724050 13743 19850919 69.7 24 58.1 24 1026.7 24 1024.3 24 8.6 24 4.5 24 8.9 999.9 82.9* 55.9 0.00G 999.9 100000 724050 13743 19850920 71.7 23 59.8 23 1024.4 23 1022.0 23 7.2 23 6.0 23 9.9 999.9 82.9 57.9 0.00G 999.9 000000 724050 13743 19850921 69.7 24 61.5 24 1021.1 24 1018.7 24 7.4 24 6.6 24 9.9 999.9 82.9 60.1 0.00G 999.9 100000 724050 13743 19850922 70.4 22 64.6 22 1020.4 22 1018.0 22 9.6 22 5.7 22 13.0 999.9 82.9 60.1 0.00G 999.9 110000 724050 13743 19850923 69.0 24 66.5 24 1020.0 24 1017.6 24 4.9 24 7.0 24 11.1 999.9 79.0 61.0 0.40G 999.9 110000 724050 13743 19850924 72.4 23 66.3 23 1015.7 23 1013.3 23 7.1 23 8.3 23 15.0 999.9 80.1* 64.9 0.02G 999.9 110000 724050 13743 19850925 66.2 24 48.1 24 1020.7 24 1018.2 24 14.1 24 8.0 24 14.0 999.9 81.0 55.0 0.00G 999.9 000000 724050 13743 19850926 66.9 24 57.8 24 1017.3 24 1014.9 24 9.4 24 6.3 24 8.9 999.9 75.9 55.0 0.00G 999.9 110000 724050 13743 19850927 68.0 24 61.0 24 1004.2 24 1001.8 24 7.2 24 14.4 24 21.0 33.0 73.0* 61.0 3.96G 999.9 110000 724050 13743 19850928 65.6 24 48.5 24 1021.5 24 1019.1 24 13.8 24 8.7 24 13.0 15.9 75.0* 57.0 0.20G 999.9 000000 724050 13743 19850929 66.0 24 52.9 24 1028.2 24 1025.7 24 10.3 24 4.3 24 8.0 999.9 79.0* 55.9 0.00G 999.9 100000 724050 13743 19850930 65.7 23 55.9 23 1024.0 23 1021.6 23 9.5 23 6.2 23 11.1 999.9 79.0 46.9* 0.00G 999.9 100000 724050 13743 19851001 68.1 24 61.1 24 1018.7 24 1016.3 24 8.0 24 7.9 24 11.1 999.9 79.0* 57.9 0.00G 999.9 100000 724050 13743 19851002 63.6 23 58.6 23 1019.9 23 1017.5 23 9.6 23 8.6 23 15.0 999.9 79.0 57.9* 0.00G 999.9 110000 724050 13743 19851003 59.2 24 56.8 24 1020.7 24 1018.2 23 4.9 24 7.0 24 9.9 999.9 68.0 57.0 1.42G 999.9 110000 724050 13743 19851004 62.3 24 60.0 24 1017.7 24 1015.3 24 2.3 24 4.2 24 6.0 999.9 66.0* 57.0 0.12G 999.9 110000 724050 13743 19851005 66.4 24 56.5 24 1009.9 24 1007.5 24 9.8 24 8.6 24 17.1 22.0 70.0 60.1 0.00G 999.9 110000 724050 13743 19851006 57.1 24 39.1 24 1014.1 24 1011.7 24 16.3 24 7.5 24 13.0 18.1 70.0 46.9 0.00G 999.9 000000 724050 13743 19851007 57.4 24 39.4 24 1022.6 24 1020.2 24 14.3 24 5.3 24 8.0 999.9 66.9* 46.9 0.00G 999.9 000000 724050 13743 19851008 58.2 24 47.7 24 1031.1 24 1028.7 24 9.3 24 5.1 24 8.9 999.9 72.0* 46.9 0.00G 999.9 100000 724050 13743 19851009 63.6 23 56.8 23 1030.4 23 1027.9 23 9.1 23 6.1 23 9.9 999.9 75.0* 48.0 0.00G 999.9 100000 724050 13743 19851010 66.8 24 60.2 24 1022.4 24 1020.0 24 8.6 24 7.7 24 11.1 999.9 79.0* 53.1 0.00G 999.9 100000 724050 13743 19851011 68.3 24 61.4 24 1017.5 24 1015.1 24 9.1 24 6.2 24 12.0 999.9 81.0 57.9 0.00G 999.9 000000 724050 13743 19851012 56.6 24 44.2 24 1024.8 24 1022.4 24 12.7 24 7.6 24 13.0 999.9 73.9 51.1 0.00G 999.9 000000 724050 13743 19851013 63.4 24 55.0 24 1020.5 24 1018.1 24 11.2 24 7.9 24 14.0 20.0 75.0 51.1 0.00G 999.9 000000 724050 13743 19851014 68.2 24 63.6 24 1016.2 24 1013.8 24 5.2 24 5.3 24 9.9 999.9 81.0* 57.0 0.00G 999.9 110010 724050 13743 19851015 70.3 24 66.6 23 1012.5 24 1010.2 24 5.8 24 7.1 24 24.1 32.1 84.0 60.1 0.16G 999.9 110010 724050 13743 19851016 68.1 24 53.3 24 1018.6 24 1016.2 24 13.3 24 7.3 24 12.0 999.9 84.9 60.1 0.08G 999.9 010000 724050 13743 19851017 59.0 24 45.4 24 1032.0 24 1029.6 24 14.4 24 7.4 24 12.0 999.9 75.9 50.0 0.00G 999.9 000000 724050 13743 19851018 60.9 24 51.6 24 1033.3 24 1030.9 24 12.4 24 6.7 24 11.1 999.9 71.1* 50.0 0.00G 999.9 000000 724050 13743 19851019 66.9 22 59.8 22 1024.8 22 1022.3 22 8.9 22 9.4 22 12.0 999.9 78.1* 54.0 0.00G 999.9 100000 724050 13743 19851020 63.9 23 58.4 23 1023.0 23 1020.6 23 8.2 23 8.3 23 14.0 999.9 79.0 55.9* 0.10G 999.9 110000 724050 13743 19851021 52.2 22 48.8 22 1026.9 22 1024.5 22 5.8 22 9.2 22 14.0 999.9 55.9* 50.0 1.16G 999.9 110000 724050 13743 19851022 57.6 24 55.1 23 1024.2 24 1021.8 24 5.3 24 10.5 24 14.0 999.9 61.0* 50.0 0.08G 999.9 110000 724050 13743 19851023 62.2 23 58.1 23 1024.5 23 1022.1 23 6.4 23 9.4 23 14.0 999.9 70.0* 55.0 0.11G 999.9 110000 724050 13743 19851024 63.3 22 60.7 22 1023.1 22 1020.7 22 5.2 22 5.7 22 8.0 999.9 71.1 57.9 0.01G 999.9 110000 724050 13743 19851025 64.4 20 55.1 20 1019.4 20 1017.0 20 8.1 20 7.8 20 15.9 21.0 70.0* 60.1 0.01G 999.9 110000 724050 13743 19851026 56.0 24 35.4 24 1024.1 24 1021.7 24 17.1 24 6.2 24 9.9 999.9 70.0 43.0 0.00G 999.9 000000 724050 13743 19851027 54.9 23 43.5 23 1021.3 23 1019.0 23 14.5 23 7.4 23 13.0 999.9 68.0 43.0 0.00G 999.9 000000 724050 13743 19851028 56.2 23 39.3 23 1021.6 23 1019.2 23 15.2 23 9.0 23 12.0 999.9 69.1 45.0 0.00G 999.9 000000 724050 13743 19851029 47.3 24 23.4 24 1027.0 24 1024.5 24 14.7 24 9.0 24 14.0 999.9 59.0 37.0 0.00G 999.9 000000 724050 13743 19851030 49.8 24 31.0 24 1021.4 24 1019.0 24 11.4 24 5.9 24 9.9 999.9 60.1 37.0 0.00G 999.9 000000 724050 13743 19851031 55.1 24 44.4 24 1017.6 24 1015.2 24 11.6 24 11.0 24 17.1 22.9 61.0 51.1* 0.00G 999.9 010000 724050 13743 19851101 56.2 21 50.3 21 1013.8 21 1011.4 21 6.6 21 15.2 21 19.0 28.0 60.1 51.1 0.06G 999.9 110000 724050 13743 19851102 55.2 21 48.4 21 1012.4 21 1010.0 21 10.5 21 13.0 21 17.1 22.0 61.0 52.0 0.01G 999.9 110000 724050 13743 19851103 54.5 23 51.7 23 1015.6 23 1013.2 23 5.3 23 11.1 23 15.9 22.0 59.0 52.0 0.02G 999.9 110000 724050 13743 19851104 59.5 24 55.6 24 1010.4 24 1008.0 24 6.2 24 16.0 24 24.1 35.0 64.0* 53.1 0.85G 999.9 110000 724050 13743 19851105 56.6 22 52.5 22 997.3 22 994.9 22 8.6 22 11.4 22 26.0 35.0 64.0 53.1* 0.15G 999.9 110000 724050 13743 19851106 55.3 23 47.4 23 1004.4 23 1002.0 23 11.4 23 11.3 23 19.0 27.0 61.0 52.0 0.02G 999.9 110000 724050 13743 19851107 52.9 24 44.5 24 1010.7 24 1008.3 24 12.8 24 5.9 24 13.0 999.9 64.0* 43.0 0.00G 999.9 100000 724050 13743 19851108 53.3 23 33.9 23 1017.5 23 1015.1 23 16.7 23 10.9 23 21.0 29.9 64.0 43.0 0.00G 999.9 000000 724050 13743 19851109 51.9 23 35.2 23 1026.5 23 1024.0 23 15.0 23 9.9 23 19.0 28.9 66.9* 41.0 0.00G 999.9 000000 724050 13743 19851110 60.2 24 46.4 24 1023.5 24 1021.1 24 14.7 24 12.9 24 19.0 26.0 72.0* 41.0 0.00G 999.9 000000 724050 13743 19851111 60.8 24 51.9 24 1024.5 24 1022.1 24 11.6 24 5.4 24 11.1 999.9 73.0 52.0 0.00G 999.9 000000 724050 13743 19851112 58.6 24 54.7 24 1028.9 24 1026.5 24 4.3 24 6.4 24 13.0 999.9 73.0 52.0 0.00D 999.9 110000 724050 13743 19851113 63.6 24 59.7 24 1021.7 24 1019.2 24 5.6 24 8.0 24 11.1 999.9 75.0* 55.9 0.00G 999.9 110000 724050 13743 19851114 65.8 24 59.0 24 1020.1 24 1017.7 24 9.8 24 7.2 24 12.0 999.9 75.9 55.0 0.00D 999.9 100000 724050 13743 19851115 60.3 24 45.0 24 1024.2 24 1021.8 24 13.7 24 11.3 24 15.9 24.1 77.0 51.1* 0.00G 999.9 000000 724050 13743 19851116 48.1 21 38.6 21 1029.7 21 1027.3 21 10.5 20 8.4 21 13.0 999.9 51.1* 46.0 0.00G 12.2 110000 724050 13743 19851117 52.7 23 49.2 23 1023.0 23 1020.6 23 6.5 23 5.8 23 14.0 999.9 62.1* 46.0 0.35G 999.9 110000 724050 13743 19851118 52.5 22 47.1 22 1029.8 22 1027.3 22 8.1 22 4.6 22 8.9 999.9 64.9* 42.1 0.00G 999.9 100000 724050 13743 19851119 60.2 23 55.2 23 1029.0 23 1026.6 23 7.9 23 6.2 23 12.0 999.9 71.1 42.1 0.00G 999.9 100000 724050 13743 19851120 66.0 24 61.3 24 1023.1 24 1020.7 24 7.8 24 11.4 24 16.9 999.9 75.0 54.0 0.00G 999.9 110000 724050 13743 19851121 56.2 24 36.0 24 1026.3 24 1023.9 24 12.6 24 10.8 24 15.0 999.9 75.9 51.1 0.00G 999.9 010000 724050 13743 19851122 42.1 22 35.2 22 1022.3 22 1019.9 22 6.6 22 11.9 22 15.0 999.9 61.0 37.0 1.11G 999.9 110000 724050 13743 19851123 42.8 24 34.3 24 1020.8 24 1018.3 24 10.3 24 7.1 24 13.0 999.9 51.1* 37.0 0.12G 999.9 000000 724050 13743 19851124 45.0 24 35.1 24 1022.1 24 1019.7 24 9.5 24 6.4 24 13.0 17.1 57.9 36.0 0.00G 999.9 000000 724050 13743 19851125 44.7 23 28.9 23 1026.6 23 1024.2 23 10.9 23 5.5 23 8.0 999.9 59.0 36.0 0.00G 999.9 010000 724050 13743 19851126 46.4 24 38.1 24 1020.9 24 1018.5 24 8.9 24 4.7 24 8.0 999.9 54.0 37.9 0.00G 999.9 010000 724050 13743 19851127 51.9 24 49.7 24 1012.6 24 1010.2 24 3.7 24 6.0 24 14.0 999.9 57.9 42.1 0.02G 999.9 110000 724050 13743 19851128 45.3 24 44.4 24 1014.8 24 1012.4 24 2.7 24 7.3 24 13.0 999.9 60.1 43.0 0.07G 999.9 110000 724050 13743 19851129 45.0 23 41.7 23 1019.8 23 1017.4 23 7.5 23 9.1 23 13.0 999.9 46.9 42.1 0.64G 999.9 110000 724050 13743 19851130 45.0 24 43.6 24 1021.9 24 1019.5 24 4.2 24 10.4 24 15.0 999.9 48.0* 42.1 0.75G 999.9 110000 724050 13743 19851201 46.4 24 45.7 24 1019.3 24 1017.0 24 2.5 24 8.8 24 14.0 999.9 48.9* 42.1 0.28G 999.9 110000 724050 13743 19851202 48.0 23 38.7 23 1004.9 23 1002.6 23 11.2 23 15.0 23 22.9 38.1 57.0 33.1* 0.03G 999.9 110000 724050 13743 19851203 31.1 23 13.0 23 1022.1 23 1019.6 23 16.4 23 16.4 23 22.9 33.0 37.9* 28.0 0.00G 999.9 000000 724050 13743 19851204 33.2 23 19.3 23 1031.2 23 1028.8 23 14.4 23 6.3 23 11.1 999.9 39.0 28.0 0.00G 999.9 000000 724050 13743 19851205 36.7 23 25.9 23 1026.1 23 1023.7 23 9.9 23 4.8 23 8.9 999.9 42.1 28.9 0.00G 999.9 000000 724050 13743 19851206 37.9 23 31.5 23 1017.1 23 1014.7 23 6.8 23 9.7 23 17.1 24.1 44.1 30.9 0.00G 999.9 111000 724050 13743 19851207 41.3 24 29.6 24 1024.2 24 1021.8 24 11.0 24 9.7 24 14.0 18.1 44.1 32.0 0.00G 999.9 000000 724050 13743 19851208 40.8 23 31.1 23 1020.6 23 1018.2 23 9.5 23 6.2 23 11.1 999.9 51.1* 32.0 0.00G 999.9 000000 724050 13743 19851209 42.2 24 32.8 24 1022.4 24 1020.0 24 7.6 24 4.7 24 8.0 999.9 53.1* 32.0 0.00G 999.9 100000 724050 13743 19851210 42.6 24 36.1 24 1028.0 24 1025.6 24 6.9 24 3.9 24 8.0 999.9 54.0 33.1 0.00G 999.9 100000 724050 13743 19851211 48.1 24 42.3 24 1020.9 24 1018.5 24 7.3 24 5.8 24 9.9 999.9 57.0* 33.1 0.00G 999.9 100000 724050 13743 19851212 56.7 24 50.2 24 1011.8 24 1009.4 24 9.2 24 10.1 24 15.9 25.1 64.9 39.9 0.03G 999.9 010000 724050 13743 19851213 43.6 23 37.4 23 1012.9 23 1010.5 23 7.5 23 9.2 23 13.0 999.9 64.9 39.0 0.17G 999.9 110000 724050 13743 19851214 35.8 24 22.3 24 1011.0 24 1008.6 24 14.6 23 13.8 24 19.0 28.9 48.0 28.2* 0.27G 999.9 110000 724050 13743 19851215 28.0 22 9.9 22 1022.8 22 1020.4 22 15.5 22 9.0 22 15.9 22.0 41.0 19.9 0.00G 999.9 000000 724050 13743 19851216 36.3 24 23.1 24 1020.1 24 1017.7 24 11.2 24 6.2 24 11.1 999.9 46.0* 19.9 0.00G 999.9 000000 724050 13743 19851217 39.2 24 21.7 24 1016.7 24 1014.3 24 15.2 24 9.2 24 15.0 18.1 46.0 26.1 0.00G 999.9 000000 724050 13743 19851218 32.3 22 14.0 22 1018.5 22 1016.1 22 17.5 22 10.8 22 42.0 49.0 45.0 23.2* 0.00G 999.9 000000 724050 13743 19851219 21.3 24 0.8 24 1031.3 24 1028.9 24 16.1 24 7.6 24 18.1 22.0 39.0 13.1 0.00G 999.9 000000 724050 13743 19851220 25.0 24 16.4 23 1027.8 24 1025.3 24 8.5 24 4.2 23 6.0 999.9 30.9 15.1 0.00G 0.8 101000 724050 13743 19851221 26.4 24 15.4 24 1021.4 24 1019.0 24 10.8 24 10.3 24 15.0 20.0 28.9 21.0 0.06G 0.8 101000 724050 13743 19851222 23.3 23 7.9 23 1021.2 23 1018.8 23 14.3 23 8.8 23 15.0 21.0 32.0* 15.1 0.00G 0.4 000000 724050 13743 19851223 38.3 24 23.2 24 1007.3 24 1005.0 24 12.3 23 8.6 23 14.0 19.0 48.9* 32.0* 0.00G 999.9 010000 724050 13743 19851224 42.6 24 33.0 24 1004.5 24 1002.2 24 8.9 24 6.7 24 14.0 999.9 57.9* 30.9 0.00D 999.9 100000 724050 13743 19851225 33.3 24 19.9 24 1008.1 24 1005.7 24 12.2 24 13.8 24 20.0 27.0 57.9 22.1* 0.10G 999.9 111000 724050 13743 19851226 17.1 23 -3.3 23 1019.6 23 1017.2 23 15.9 23 11.7 23 17.1 24.1 22.1* 10.9 0.01G 999.9 000000 724050 13743 19851227 30.9 24 11.4 24 1016.2 24 1013.8 24 15.7 24 12.5 24 19.0 22.0 46.9 10.9 0.00G 999.9 000000 724050 13743 19851228 36.9 24 20.3 24 1017.7 24 1015.3 24 16.2 24 9.2 24 15.0 20.0 48.0 24.1 0.00G 999.9 000000 724050 13743 19851229 35.5 24 16.8 24 1015.2 24 1012.8 24 14.3 24 5.9 24 13.0 20.0 46.9* 28.0 0.00G 999.9 000000 724050 13743 19851230 35.0 23 9.3 23 1018.1 23 1015.6 23 15.3 23 7.6 23 19.0 25.1 46.9 28.0 0.00G 999.9 000000 724050 13743 19851231 35.5 24 19.9 24 1016.5 24 1014.1 24 11.9 24 10.6 24 18.1 21.0 44.1 28.0 0.00G 999.9 010000 fluids-1.0.22/tests/test_numerics_doubledouble.py0000644000175000017500000002741314302004506021536 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2021 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids.numerics.doubledouble import * from fluids.numerics import assert_close, assert_close1d from math import * import pytest try: import mpmath as mp has_mpmath = True mp.mp.dps=100 except: has_mpmath = False def mark_mpmath(f): f = pytest.mark.mpmath(f) f = pytest.mark.skipif(not has_mpmath, reason='missing mpmath')(f) return f def test_cube_dd(): ans = cube_dd(2.718281828459045, 1.4456468917292502e-16) assert_close1d(ans, (20.085536923187668, -1.8275625525512858e-16), rtol=1e-14) def test_div_imag_dd(): mp_ans = (-6221711.561975023 - 2.5074521914349666e-10j)/(1247.1686953729213 +2160.157819988352j) ans = div_imag_dd(-6221711.561975023, 0.0, - 2.5074521914349666e-10, 0.0, 1247.1686953729213, 0.0, 2160.157819988352, 0.0) assert_close1d(ans, (-1247.168695372921, -7.085386715133776e-14, 2160.1578199883515, -1.7404258749820416e-14), rtol=1e-13) def test_add_dd(): ans = add_dd(2.718281828459045, 1.4456468917292502e-16, -3.141592653589793, -1.2246467991473532e-16) assert_close1d(ans, (-0.423310825130748, 2.2100009258189695e-17), rtol=1e-13) @mark_mpmath def test_add_dd_mp(): ans = add_dd(2.718281828459045, 1.4456468917292502e-16, -3.141592653589793, -1.2246467991473532e-16) assert abs(mp.e-mp.pi - (mp.mpf(ans[0]) + mp.mpf(ans[1]))) < 1e-30 @mark_mpmath def test_mul_dd_mp(): ans = mul_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16) assert_close1d(ans, (8.539734222673568, -6.773815290502423e-16), rtol=1e-13) assert abs(mp.e*mp.pi - (mp.mpf(ans[0]) + mp.mpf(ans[1]))) < 1e-30 def test_div_dd(): ans = div_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16) assert_close1d(ans, (0.8652559794322651, 2.1741459631779752e-17), rtol=1e-13) @mark_mpmath def test_div_dd_mp(): ans = div_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16) assert abs(mp.e/mp.pi - (mp.mpf(ans[0]) + mp.mpf(ans[1]))) < 1e-30 def test_sqrt_dd(): ans = sqrt_dd(2.718281828459045, 1.4456468917292502e-16) assert_close1d(ans, (1.6487212707001282, -4.731568479435833e-17), rtol=1e-13) @mark_mpmath def test_sqrt_dd_mp(): ans = sqrt_dd(2.718281828459045, 1.4456468917292502e-16) assert abs(mp.sqrt(mp.e) - (mp.mpf(ans[0]) + mp.mpf(ans[1]))) < 1e-30 def test_mul_noerrors_dd(): ans = mul_noerrors_dd(2.718281828, 3.1415926) assert_close1d(ans, (8.539734075559272, 6.111502792870851e-16), rtol=1e-13) assert_close1d(ans, mul_dd(2.718281828, 0.0, 3.1415926, 0.0), rtol=1e-13) def test_square_dd(): ans = square_dd(2.718281828459045, 1.4456468917292502e-16) assert_close1d(ans, (7.38905609893065, -1.7971139497839148e-16), rtol=1e-13) @mark_mpmath def test_square_dd_mp(): ans = square_dd(2.718281828459045, 1.4456468917292502e-16) assert abs(mp.e**2 - (mp.mpf(ans[0]) + mp.mpf(ans[1]))) < 1e-30 def test_mul_imag_dd(): ans = mul_imag_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16, 2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16) assert_close1d(ans, (-2.4805483021587085, 8.193747384776261e-17, 17.079468445347135, -1.3547630581004847e-15), rtol=1e-14) ans = mul_imag_dd(1.11, 0.00, .027, 0.0, -1.2, 0.0, .2995, 0.0) assert_close1d(ans, (-1.3400865, -1.0926552718171222e-16, 0.300045, 1.1863843241144421e-17), rtol=1e-14) @mark_mpmath def test_mul_imag_dd_mp(): ans = mul_imag_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16, 2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16) mp_ans = (mp.e + mp.pi*1j)*(mp.e + mp.pi*1j) assert abs(mp_ans.real - (mp.mpf(ans[0]) + mp.mpf(ans[1]) )) < 1e-30 assert abs(mp_ans.imag - (mp.mpf(ans[2]) + mp.mpf(ans[3]) )) < 1e-30 def test_mul_imag_noerrors_dd(): ans = mul_imag_noerrors_dd(1.11, .027, -1.2, .2995) assert_close1d(ans, (-1.3400865, -1.0926552718171222e-16, 0.300045, 1.1863843241144421e-17), rtol=1e-14) def test_sqrt_imag_dd(): ans = sqrt_imag_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16) assert_close1d(ans, (1.853730863795006, 1.8197550334075816e-17, 0.8473702183385572, 4.942630438677856e-17)) ans = sqrt_imag_dd(2.718281828459045, 1.4456468917292502e-16, 0, 0) assert_close1d(ans, (1.6487212707001282, -4.731568479435833e-17, 0.0, 0.0)) @mark_mpmath def test_sqrt_imag_dd(): ans = sqrt_imag_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16) mp_ans = mp.sqrt(mp.e + mp.pi*1j) assert abs(mp_ans.real - (mp.mpf(ans[0]) + mp.mpf(ans[1]) )) < 1e-30 assert abs(mp_ans.imag - (mp.mpf(ans[2]) + mp.mpf(ans[3]) )) < 1e-30 ans = sqrt_imag_dd(2.718281828459045, 1.4456468917292502e-16, 0, 0) mp_ans = mp.sqrt(mp.e) assert abs(mp_ans.real - (mp.mpf(ans[0]) + mp.mpf(ans[1]) )) < 1e-30 assert abs(mp_ans.imag - (mp.mpf(ans[2]) + mp.mpf(ans[3]) )) < 1e-30 def test_add_imag_dd(): ans = add_imag_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16, 3.141592653589793, 1.2246467991473532e-16, 2.718281828459045, 1.4456468917292502e-16) assert_close1d(ans, (5.859874482048839, -1.770598407624023e-16, 5.859874482048839, -1.770598407624023e-16)) @mark_mpmath def test_add_imag_dd_mp(): ans = add_imag_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16, 3.141592653589793, 1.2246467991473532e-16, 2.718281828459045, 1.4456468917292502e-16) mp_ans = (mp.e + mp.pi*1j) + (mp.pi + mp.e*1j) assert abs(mp_ans.real - (mp.mpf(ans[0]) + mp.mpf(ans[1]) )) < 1e-30 assert abs(mp_ans.imag - (mp.mpf(ans[2]) + mp.mpf(ans[3]) )) < 1e-30 def test_div_imag_dd(): ans = div_imag_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16, 3.141592653589793, 1.2246467991473532e-16, 2.718281828459045, 1.4456468917292502e-16) assert_close1d(ans, (0.9896172675351794, -2.57625629153772e-17, 0.14372774191576643, 1.174077497180584e-17), rtol=1e-13) @mark_mpmath def test_div_imag_dd_mp(): ans = div_imag_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16, 3.141592653589793, 1.2246467991473532e-16, 2.718281828459045, 1.4456468917292502e-16) mp_ans = (mp.e + mp.pi*1j)/(mp.pi + mp.e*1j) assert abs(mp_ans.real - (mp.mpf(ans[0]) + mp.mpf(ans[1]) )) < 1e-30 assert abs(mp_ans.imag - (mp.mpf(ans[2]) + mp.mpf(ans[3]) )) < 1e-30 def test_imag_inv_dd(): ans = imag_inv_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16) assert_close1d(ans, (0.15750247989731844, -3.9415361951446925e-18, -0.18202992367722576, -5.408691854671257e-18), rtol=1e-13) @mark_mpmath def test_imag_inv_dd_mp(): ans = imag_inv_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16) mp_ans = 1/(mp.e + mp.pi*1j) assert abs(mp_ans.real - (mp.mpf(ans[0]) + mp.mpf(ans[1]) )) < 1e-30 assert abs(mp_ans.imag - (mp.mpf(ans[2]) + mp.mpf(ans[3]) )) < 1e-30 def test_cbrt_imag_dd(): ans = cbrt_imag_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16) assert_close1d(ans, (1.5423370526780396, 8.764992916723807e-17, 0.45326965450036827, 2.105896617565284e-17), rtol=1e-14) @mark_mpmath def test_cbrt_imag_dd_mp(): ans = cbrt_imag_dd(2.718281828459045, 1.4456468917292502e-16, 3.141592653589793, 1.2246467991473532e-16) mp_ans = mp.cbrt(mp.e + mp.pi*1j) assert abs(mp_ans.real - (mp.mpf(ans[0]) + mp.mpf(ans[1]) )) < 1e-30 assert abs(mp_ans.imag - (mp.mpf(ans[2]) + mp.mpf(ans[3]) )) < 1e-30 def test_cbrt_dd(): ans = cbrt_dd(3, 0.0) assert_close1d(ans, (1.4422495703074083, 8.054912676113696e-17), rtol=1e-13) ans = cbrt_dd(1.4422495703074083, 8.054912676113696e-17) assert_close1d(ans, (1.129830963909753, 1.601807086137469e-17), rtol=1e-13) @mark_mpmath def test_cbrt_dd_mp(): ans = cbrt_dd(3, 0.0) assert abs(mp.mpf(3)**(mp.mpf(1)/mp.mpf(3)) - (mp.mpf(ans[0]) + mp.mpf(ans[1]))) < 1e-30 ans = cbrt_dd(1.4422495703074083, 8.054912676113696e-17) assert abs((mp.mpf(3)**(mp.mpf(1)/mp.mpf(3)))**(mp.mpf(1)/mp.mpf(3)) - (mp.mpf(ans[0]) + mp.mpf(ans[1]))) < 1e-30 def test_eq_dd(): assert eq_dd(1, 0, 1, 0) assert not eq_dd(1, 0, 1, .1) assert not eq_dd(1, 0, 0, 0) assert not eq_dd(1, 1, 1, 0) assert not eq_dd(0, 0, 1, 0) def test_neq_dd(): assert not neq_dd(1, 0, 1, 0) assert neq_dd(1, 0, 1, .1) assert neq_dd(1, 0, 0, 0) assert neq_dd(1, 1, 1, 0) assert neq_dd(0, 0, 1, 0) def test_lt_dd(): assert not lt_dd(1, 0, 1, 0) assert not lt_dd(1, 1e-10, 1, 1e-10) assert lt_dd(.9, 0, 1, 0) assert not lt_dd(1, 1e-10, 1, 0) assert lt_dd(1, 0, 1, 1e-10) def test_gt_dd(): assert not gt_dd(1, 0, 1, 0) assert not gt_dd(1, 1e-10, 1, 1e-10) assert not gt_dd(.9, 0, 1, 0) assert gt_dd(1, 1e-10, 1, 0) assert not gt_dd(1, 0, 1, 1e-10) def test_le_dd(): assert le_dd(1, 0, 1, 0) assert le_dd(1, 1e-10, 1, 1e-10) assert le_dd(.9, 0, 1, 0) assert not le_dd(1, 1e-10, 1, 0) assert le_dd(1, 0, 1, 1e-10) def test_ge_dd(): assert ge_dd(1, 0, 1, 0) assert ge_dd(1, 1e-10, 1, 1e-10) assert not ge_dd(.9, 0, 1, 0) assert ge_dd(1, 1e-10, 1, 0) assert not ge_dd(1, 0, 1, 1e-10) @mark_mpmath def test_intpow_dd(): ar, ae = 0.6931471805599453, 2.3190468138462996e-17 for n in range(-7, 4): outr, oute = intpow_dd(ar, ae, n=n) mp_ans = (mp.mpf(ar) + mp.mpf(ae))**n ans_as_mp = mp.mpf(outr) + mp.mpf(oute) err = abs(1.0 - ans_as_mp/mp_ans) assert err < 1e-30 def test_exp_dd(): ar, ae = 0.6931471805599453, 2.3190468138462996e-17 outr, oute = exp_dd(ar, ae) assert outr == 2 assert_close(oute, 0, atol=1e-30) def test_log_dd(): a, b = log_dd(0.6931471805599453, 2.3190468138462996e-17) assert_close(a, -0.36651292058166435, rtol=1e-14) assert_close(b, 2.0606571710351483e-17, rtol=1e-14) def test_pow_dd(): for n in range(-3, 4): assert pow_dd(0.6931471805599453, 2.3190468138462996e-17, n, 0) == intpow_dd(0.6931471805599453, 2.3190468138462996e-17, n) a, b = pow_dd(0.6931471805599453, 2.3190468138462996e-17, 0.6931471805599453, 2.3190468138462996e-17) assert_close(a, 0.7756550370345752, rtol=1e-14) assert_close(b, 3.1024007879879916e-17, rtol=1e-14)fluids-1.0.22/tests/test_pump.py0000644000175000017500000001752014302004506016143 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids.pump import * from fluids.numerics import assert_close, assert_close1d from fluids.constants import hp import pytest def test_Corripio_pump_efficiency(): eta = Corripio_pump_efficiency(461./15850.323) assert_close(eta, 0.7058888670951621) def test_Corripio_motor_efficiency(): eta = Corripio_motor_efficiency(137*745.7) assert_close(eta, 0.9128920875679222) def test_VFD_efficiency(): eta = VFD_efficiency(10*hp) assert_close(eta, 0.96) eta = VFD_efficiency(100*hp, load=0.5) assert_close(eta, 0.96) # Lower bound, 3 hp; upper bound, 400 hp; 0.016 load bound etas = VFD_efficiency(1*hp), VFD_efficiency(500*hp), VFD_efficiency(8*hp, load=0.01) assert_close1d(etas, [0.94, 0.97, 0.386]) hp_sum = sum(nema_sizes_hp) assert_close(hp_sum, 3356.333333333333) W_sum = sum(nema_sizes) assert_close(W_sum, 2502817.33565396) def test_motor_round_size(): sizes = [motor_round_size(i) for i in [.1*hp, .25*hp, 1E5, 3E5]] sizes_calc = [186.42496789556753, 186.42496789556753, 111854.98073734052, 335564.94221202156] assert_close1d(sizes, sizes_calc) with pytest.raises(Exception): motor_round_size(1E100) def test_CSA_motor_efficiency(): nema_high_P_calcs = [CSA_motor_efficiency(k*hp, high_efficiency=True, closed=i, poles=j) for i in [True, False] for j in [2, 4, 6] for k in nema_high_P] nema_high_Ps = [0.77, 0.84, 0.855, 0.865, 0.885, 0.885, 0.885, 0.895, 0.902, 0.91, 0.91, 0.917, 0.917, 0.924, 0.93, 0.936, 0.936, 0.941, 0.95, 0.95, 0.954, 0.954, 0.855, 0.865, 0.865, 0.895, 0.895, 0.895, 0.895, 0.917, 0.917, 0.924, 0.93, 0.936, 0.936, 0.941, 0.945, 0.95, 0.954, 0.954, 0.954, 0.958, 0.962, 0.962, 0.825, 0.875, 0.885, 0.895, 0.895, 0.895, 0.895, 0.91, 0.91, 0.917, 0.917, 0.93, 0.93, 0.941, 0.941, 0.945, 0.945, 0.95, 0.95, 0.958, 0.958, 0.958, 0.77, 0.84, 0.855, 0.855, 0.865, 0.865, 0.865, 0.885, 0.895, 0.902, 0.91, 0.917, 0.917, 0.924, 0.93, 0.936, 0.936, 0.936, 0.941, 0.941, 0.95, 0.95, 0.855, 0.865, 0.865, 0.895, 0.895, 0.895, 0.895, 0.91, 0.917, 0.93, 0.93, 0.936, 0.941, 0.941, 0.945, 0.95, 0.95, 0.954, 0.954, 0.958, 0.958, 0.958, 0.825, 0.865, 0.875, 0.885, 0.895, 0.895, 0.895, 0.902, 0.917, 0.917, 0.924, 0.93, 0.936, 0.941, 0.941, 0.945, 0.945, 0.95, 0.95, 0.954, 0.954, 0.954] assert_close1d(nema_high_P_calcs, nema_high_Ps) nema_min_P_calcs = [CSA_motor_efficiency(k*hp, high_efficiency=False, closed=i, poles=j) for i in [True, False] for j in [2, 4, 6, 8] for k in nema_min_P] nema_min_Ps = [0.755, 0.825, 0.84, 0.855, 0.855, 0.875, 0.875, 0.885, 0.895, 0.902, 0.902, 0.91, 0.91, 0.917, 0.924, 0.93, 0.93, 0.936, 0.945, 0.945, 0.95, 0.95, 0.954, 0.954, 0.954, 0.954, 0.954, 0.954, 0.825, 0.84, 0.84, 0.875, 0.875, 0.875, 0.875, 0.895, 0.895, 0.91, 0.91, 0.924, 0.924, 0.93, 0.93, 0.936, 0.941, 0.945, 0.945, 0.95, 0.95, 0.95, 0.95, 0.954, 0.954, 0.954, 0.954, 0.958, 0.8, 0.855, 0.865, 0.875, 0.875, 0.875, 0.875, 0.895, 0.895, 0.902, 0.902, 0.917, 0.917, 0.93, 0.93, 0.936, 0.936, 0.941, 0.941, 0.95, 0.95, 0.95, 0.95, 0.95, 0.95, 0.95, 0.95, 0.95, 0.74, 0.77, 0.825, 0.84, 0.84, 0.855, 0.855, 0.855, 0.885, 0.885, 0.895, 0.895, 0.91, 0.91, 0.917, 0.917, 0.93, 0.93, 0.936, 0.936, 0.941, 0.941, 0.945, 0.945, 0.945, 0.945, 0.945, 0.945, 0.755, 0.825, 0.84, 0.84, 0.84, 0.855, 0.855, 0.875, 0.885, 0.895, 0.902, 0.91, 0.91, 0.917, 0.924, 0.93, 0.93, 0.93, 0.936, 0.936, 0.945, 0.945, 0.945, 0.95, 0.95, 0.954, 0.958, 0.958, 0.825, 0.84, 0.84, 0.865, 0.865, 0.875, 0.875, 0.885, 0.895, 0.91, 0.91, 0.917, 0.924, 0.93, 0.93, 0.936, 0.941, 0.941, 0.945, 0.95, 0.95, 0.95, 0.954, 0.954, 0.954, 0.954, 0.958, 0.958, 0.8, 0.84, 0.855, 0.865, 0.865, 0.875, 0.875, 0.885, 0.902, 0.902, 0.91, 0.917, 0.924, 0.93, 0.93, 0.936, 0.936, 0.941, 0.941, 0.945, 0.945, 0.945, 0.954, 0.954, 0.954, 0.954, 0.954, 0.954, 0.74, 0.755, 0.855, 0.865, 0.865, 0.875, 0.875, 0.885, 0.895, 0.895, 0.902, 0.902, 0.91, 0.91, 0.917, 0.924, 0.936, 0.936, 0.936, 0.936, 0.936, 0.936, 0.945, 0.945, 0.945, 0.945, 0.945, 0.945] assert_close1d(nema_min_P_calcs, nema_min_Ps) def test_motor_efficiency_underloaded(): full_efficiencies = [motor_efficiency_underloaded(P*hp, .99) for P in (0.5, 2.5, 7, 12, 42, 90)] assert_close1d(full_efficiencies, [1, 1, 1, 1, 1, 1]) low_efficiencies = [motor_efficiency_underloaded(P*hp, .25) for P in (0.5, 2.5, 7, 12, 42, 90)] low_ans = [0.6761088414400706, 0.7581996772085579, 0.8679397648030529, 0.9163243775499996, 0.9522559064662419, 0.9798906308690559] assert_close1d(low_efficiencies, low_ans) def test_specific_speed(): nS = specific_speed(0.0402, 100.0, 3550.0) assert_close(nS, 22.50823182748925) def test_specific_diameter(): Ds = specific_diameter(Q=0.1, H=10., D=0.1) assert_close(Ds, 0.5623413251903491) def test_speed_synchronous(): s1, s2 = speed_synchronous(50.0, poles=12), speed_synchronous(60.0, phase=1) assert_close1d([s1, s2], [1500, 3600]) def test_current_ideal(): I = current_ideal(V=120.0, P=1E4, PF=1.0, phase=1) assert_close(I, 83.33333333333333) I = current_ideal(V=208, P=1E4, PF=1, phase=3) assert_close(I, 27.757224480270473) I = current_ideal(V=208, P=1E4, PF=0.95, phase=3) assert_close(I,29.218131031863656) with pytest.raises(Exception): current_ideal(V=208, P=1E4, PF=0.95, phase=5) def test_power_sources(): assert sum(map(ord, electrical_plug_types)) == 1001 assert len(electrical_plug_types) == 14 assert sum(voltages_1_phase_residential) == 1262 assert len(voltages_1_phase_residential) == 8 assert sum(voltages_3_phase) == 3800 assert len(voltages_3_phase) == 13 assert residential_power_frequencies == [50, 60] assert sum([i.voltage for i in residential_power.values()]) == 42071 assert sum([i.freq for i in residential_power.values()]) == 10530 assert len(residential_power) == 203 ca = residential_power['ca'] assert (ca.voltage, ca.freq, ca.plugs) == (120, 60, ('A', 'B')) assert sum([sum(i.voltage) for i in industrial_power.values()]) == 82144 assert sum([i.freq for i in industrial_power.values()]) == 10210 assert len(industrial_power) == 197 ca = industrial_power['ca'] assert (ca.voltage, ca.freq) == ((120, 208, 240, 480, 347, 600), 60) def test_CountryPower(): a = CountryPower(plugs=('C', 'F', 'M', 'N'), voltage=230.0, freq=50.0, country="South Africa") assert type(a) is CountryPower assert type(a.voltage) is float assert type(a.freq) is float CountryPower(plugs=('G',), voltage=240, freq=50, country="Seychelles") CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Armenia") CountryPower(plugs=('D', 'G', 'J', 'K', 'L'), voltage=230, freq=50, country="Maldives") fluids-1.0.22/tests/test_filters.py0000644000175000017500000000534514302004506016634 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids.filters import * from fluids.numerics import assert_close, assert_close1d import pytest def test_filters(): K1 = round_edge_screen(0.5, 100.0) K2 = round_edge_screen(0.5, 100, 45.0) K3 = round_edge_screen(0.5, 100, 85) assert_close1d([K1, K2, K3], [2.0999999999999996, 1.05, 0.18899999999999997]) Ks = [round_edge_open_mesh(0.88, i) for i in ['round bar screen', 'diamond pattern wire', 'knotted net', 'knotless net']] K_values = [0.11687999999999998, 0.09912, 0.15455999999999998, 0.11664] assert_close1d(Ks, K_values) K1 = round_edge_open_mesh(0.96, angle=33.) K2 = round_edge_open_mesh(0.96, angle=50) assert_close1d([K1, K2], [0.02031327712601458, 0.012996000000000014]) with pytest.raises(Exception): round_edge_open_mesh(0.96, subtype='not_filter', angle=33.) K = square_edge_screen(0.99) assert_close(K, 0.008000000000000009) K1 = square_edge_grill(.45) K2 = square_edge_grill(.45, l=.15, Dh=.002, fd=.0185) assert_close1d([K1, K2], [5.296296296296296, 12.148148148148147]) K1 = round_edge_grill(.4) K2 = round_edge_grill(.4, l=.15, Dh=.002, fd=.0185) assert_close1d([K1, K2], [1.0, 2.3874999999999997]) @pytest.mark.scipy def test_grills_rounded(): from scipy.interpolate import splrep from fluids.filters import grills_rounded_tck, grills_rounded_alphas, grills_rounded_Ks tck_recalc = splrep(grills_rounded_alphas, grills_rounded_Ks, s=0, k=2) [assert_close1d(i, j) for i, j in zip(grills_rounded_tck[:-1], tck_recalc[:-1])] fluids-1.0.22/tests/test_nrlmsise00_full.py0000644000175000017500000001021514302004506020172 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from fluids.numerics import assert_close1d, assert_close from fluids.atmosphere import ATMOSPHERE_NRLMSISE00 import pytest import os def helper_test_match(f, atms): indexes = [1, 2, 3, 7, 8, 10] keys = ['O_density', 'N2_density', 'O2_density', 'He_density', 'Ar_density', 'N_density'] for i, k in zip(indexes, keys): calcs = [getattr(a, k) for a in atms] assert_close1d(calcs, f[:, i]*1E6, rtol=1E-3) calcs = [a.rho for a in atms] assert_close1d(calcs, f[:, 4]*1E3, rtol=1E-3) calcs = [a.T for a in atms] assert_close1d(calcs, f[:, 5], rtol=1E-3) calcs = [a.T_exospheric for a in atms] assert_close1d(calcs, f[:, 6], rtol=1E-3) @pytest.mark.slow def test_ATMOSPHERE_NRLMSISE00(): import numpy as np name = os.path.join(os.path.dirname(__file__), 'nrlmsise00', 'known_data_height.txt') f = np.loadtxt(name, delimiter=' ') heights = f[:,0] atms = [ATMOSPHERE_NRLMSISE00(float(h)*1000, latitude=45, longitude=45, day=1, seconds=0, geomagnetic_disturbance_indices=[4]*7) for h in heights] helper_test_match(f, atms) name = os.path.join(os.path.dirname(__file__), 'nrlmsise00', 'known_data_high_height.txt') f = np.loadtxt(name, delimiter=' ') heights = f[:,0] atms = [ATMOSPHERE_NRLMSISE00(float(h)*1000, latitude=45, longitude=45, day=1, seconds=0, geomagnetic_disturbance_indices=[4]*7) for h in heights] helper_test_match(f, atms) name = os.path.join(os.path.dirname(__file__),'nrlmsise00', 'known_data_day_of_year.txt') f = np.loadtxt(name, delimiter=' ') atms = [ATMOSPHERE_NRLMSISE00(100000., latitude=45, longitude=45, day=d, seconds=0, geomagnetic_disturbance_indices=[4]*7) for d in range(1, 367)] helper_test_match(f, atms) name = os.path.join(os.path.dirname(__file__), 'nrlmsise00', 'known_data_hours.txt') f = np.loadtxt(name, delimiter=' ') atms = [ATMOSPHERE_NRLMSISE00(100000., latitude=45, longitude=45, day=1, seconds=3600.*h, geomagnetic_disturbance_indices=[4]*7) for h in range(1, 25)] helper_test_match(f, atms) name = os.path.join(os.path.dirname(__file__), 'nrlmsise00', 'known_data_latitudes.txt') f = np.loadtxt(name, delimiter=' ') atms = [ATMOSPHERE_NRLMSISE00(100000., latitude=l, longitude=45, day=1, seconds=0, geomagnetic_disturbance_indices=[4]*7) for l in range(-90, 91)] helper_test_match(f, atms) name = os.path.join(os.path.dirname(__file__), 'nrlmsise00', 'known_data_longitudes.txt') f = np.loadtxt(name, delimiter=' ') atms = [ATMOSPHERE_NRLMSISE00(100000., latitude=45, longitude=l, day=1, seconds=0, geomagnetic_disturbance_indices=[4]*7) for l in range(0, 361)] helper_test_match(f, atms) # Custom test, particle total density and composition atm = ATMOSPHERE_NRLMSISE00(Z=1E3, latitude=45.0, longitude=45.0, day=150.0) assert_close(atm.particle_density, 2.2929008167737723e+25) assert_close1d(atm.zs, [0.7811046347676225, 0.2095469403691101, 0.009343183088772914, 5.241774494627779e-06, 0.0, 0.0, 0.0]) fluids-1.0.22/tests/test_numerics_special.py0000644000175000017500000001433514302004506020510 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2021 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids.numerics.special import * from fluids.numerics import assert_close from math import * def test_hypot(): values = [(.5, -1), (-.5, 1), (100, -100), (-100, 100)] rtol = 1e-14 for (x, y) in values: assert_close(py_hypot(x, y), hypot(x, y), rtol=rtol) def test_py_cacos(): # Missed a asinh in this case assert_close(py_cacos(1.0000000000000033), 8.16170211889097e-08j, rtol=1e-11) def test_py_catanh(): from cmath import atanh as catanh tests = [(-9.8813129168249309e-324, 0.0), (-9.8813129168249309e-324, -0.0), (-1e-305, 0.0), (-1e-305, -0.0), (-1e-150, 0.0), (-1e-150, -0.0), (-9.9999999999999998e-17, 0.0), (-9.9999999999999998e-17, -0.0), (-0.001, 0.0), (-0.001, -0.0), (-0.57899999999999996, 0.0), (-0.57899999999999996, -0.0), (-0.99999999999999989, 0.0), (-0.99999999999999989, -0.0), (-1.0000000000000002, 0.0), (-1.0000000000000002, -0.0), (-1.0009999999999999, 0.0), (-1.0009999999999999, -0.0), (-2.0, 0.0), (-2.0, -0.0), (-23.0, 0.0), (-23.0, -0.0), (-10000000000000000.0, 0.0), (-10000000000000000.0, -0.0), (-9.9999999999999998e+149, 0.0), (-9.9999999999999998e+149, -0.0), (-1.0000000000000001e+299, 0.0), (-1.0000000000000001e+299, -0.0), (9.8813129168249309e-324, 0.0), (9.8813129168249309e-324, -0.0), (1e-305, 0.0), (1e-305, -0.0), (1e-150, 0.0), (1e-150, -0.0), (9.9999999999999998e-17, 0.0), (9.9999999999999998e-17, -0.0), (0.001, 0.0), (0.001, -0.0), (0.57899999999999996, 0.0), (0.57899999999999996, -0.0), (0.99999999999999989, 0.0), (0.99999999999999989, -0.0), (1.0000000000000002, 0.0), (1.0000000000000002, -0.0), (1.0009999999999999, 0.0), (1.0009999999999999, -0.0), (2.0, 0.0), (2.0, -0.0), (23.0, 0.0), (23.0, -0.0), (10000000000000000.0, 0.0), (10000000000000000.0, -0.0), (9.9999999999999998e+149, 0.0), (9.9999999999999998e+149, -0.0), (1.0000000000000001e+299, 0.0), (1.0000000000000001e+299, -0.0), (-0.54460925980633501, -0.54038050126721027), (-1.6934614269829051, -0.48807386108113621), (-1.3467293985501207, -0.47868354895395876), (-5.6142232418984888, -544551613.39307702), (-0.011841460381263651, -3.259978899823385), (-0.0073345736950029532, 0.35821949670922248), (-13.866782244320014, 0.9541129545860273), (-708.59964982780775, 21.984802159266675), (-30.916832076030602, 1.3691897138829843), (-0.57461806339861754, 0.29534797443913063), (0.40089246737415685, -1.632285984300659), (2119.6167688262176, -1.5383653437377242e+17), (756.86017850941641, -6.6064087133223817), (4.0490617718041602, -2.5784456791040652e-12), (10.589254957173523, -0.13956391149624509), (1.0171187553160499, 0.70766113465354019), (0.031645502527750849, 0.067319983726544394), (0.13670177624994517, 0.43240089361857947), (0.64173899243596688, 2.9008577686695256), (0.19313813528025942, 38.799619150741869), (5.3242646831347954e+307, 1.3740396080084153e+308), (1.158701641241358e+308, -6.5579268873375853e+307), (-1.3435325735762247e+308, 9.8947369259601547e+307), (-1.4359857522598942e+308, -9.4701204702391004e+307), (0.0, 5.6614181068098497e+307), (-0.0, 6.9813212721450139e+307), (0.0, -7.4970613060311453e+307), (-0.0, -1.5280601880314068e+308), (8.2219472336000745e+307, 0.0), (1.4811519617280899e+308, -0.0), (-1.2282016263598785e+308, 0.0), (-1.0616427760154426e+308, -0.0), (1.2971536510180682e+308, 5.2847948452333293), (1.1849860977411851e+308, -7.9781906447459949), (-1.4029969422586635e+308, 0.93891986543663375), (-4.7508098912248211e+307, -8.2702421247039908), (8.2680742115769998, 8.1153898410918065e+307), (1.2575325146218885, -1.4746679147661649e+308), (-2.4618803682310899, 1.3781522717005568e+308), (-4.0952386694788112, -1.231083376353703e+308), (3.8017563659811628e-314, 2.6635484239074319e-312), (1.7391110733611878e-321, -4.3547800672541419e-313), (-5.9656816081325078e-317, 9.9692253555416263e-313), (-6.5606671178400239e-313, -2.1680936406357335e-309), (0.0, 2.5230944401820779e-319), (-0.0, 5.6066569490064658e-320), (0.0, -2.4222487249468377e-317), (-0.0, -3.0861101089206037e-316), (3.1219222884393986e-310, 0.0), (9.8926337564976196e-309, -0.0), (-1.5462535092918154e-312, 0.0), (-9.8813129168249309e-324, -0.0), (1.0, 1e-153), (1.0, 9.9999999999999997e-155), (-1.0, 1e-161), (1.0, -1e-165), (-1.0, -9.8813129168249309e-324)] rtol = 1e-13 atol = 0.0 for (real, imag) in tests: res_good = catanh(real + imag*1j) res_implemented = py_catanh(real + imag*1j) assert_close(res_good.real, res_implemented.real, rtol=rtol, atol=atol) assert_close(res_good.imag, res_implemented.imag, rtol=rtol, atol=atol) # Windows 2.7 fails on Appveyor # assert res_good.real == res_implemented.real # assert res_good.imag == res_implemented.imag fluids-1.0.22/tests/test_numerics.py0000644000175000017500000015130314302004506017005 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2018 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids import * from fluids.numerics import numpy as np import pytest import fluids.numerics from fluids.numerics import * from scipy.integrate import quad from math import * from random import random assert_allclose = np.testing.assert_allclose def test_py_solve_bad_cases(): j = [[-3.8789618086360855, -3.8439678951838587, -1.1398039850146757e-07], [1.878915113936518, 1.8439217680605073, 1.139794740950828e-07], [-1.0, -1.0, 0.0]] nv = [-1.4181331207951953e-07, 1.418121622354107e-07, 2.220446049250313e-16] import fluids.numerics calc = fluids.numerics.py_solve(j, nv) import numpy as np expect = np.linalg.solve(j, nv) fluids.numerics.assert_close1d(calc, expect, rtol=1e-4) def test_error_functions(): data = [1.0, 2.0, 3.0] calc = [.99, 2.01, 3.2] assert_close(max_abs_error(data, calc), 0.2, rtol=1e-13) assert_close(max_abs_rel_error(data, calc), 0.06666666666666672, rtol=1e-13) assert_close(max_squared_error(data, calc), 0.04000000000000007, rtol=1e-13) assert_close(max_squared_rel_error(data, calc), 0.004444444444444451, rtol=1e-13) assert_close(mean_abs_error(data, calc), 0.07333333333333332, rtol=1e-13) assert_close(mean_abs_rel_error(data, calc), 0.027222222222222207, rtol=1e-13) assert_close(mean_squared_error(data, calc), 0.013400000000000023, rtol=1e-13) assert_close(mean_squared_rel_error(data, calc), 0.0015231481481481502, rtol=1e-13) def test_sincos(): N = 10**1 for v in linspace(0.0, 2.0*pi, N): a, b = sincos(v) assert_close(a, sin(v), rtol=1e-14) assert_close(b, cos(v), rtol=1e-14) for v in linspace(-100.0, 100.0, N): a, b = sincos(v) assert_close(a, sin(v), rtol=1e-14) assert_close(b, cos(v), rtol=1e-14) def test_bisect_log_exp_terminations(): from math import exp, log from fluids.numerics import bisect def to_solve(x): try: return exp(x) except: return -1 assert 709.782712893384 == bisect(to_solve, 600, 800, xtol=1e-16) def to_solve(x): x = 10**x try: return log(x) except: return 1.0 assert -323.60724533877976 == bisect(to_solve, -300, -400, xtol=1e-16) def test_horner(): from fluids.numerics import horner assert_allclose(horner([1.0, 3.0], 2.0), 5.0) assert_allclose(horner_backwards(2.0, [1.0, 3.0]), 5.0) assert_allclose(horner([3.0], 2.0), 3.0) poly = [1.12, 432.32, 325.5342, .235532, 32.235] assert_allclose(horner_and_der2(poly, 3.0), (14726.109396, 13747.040732, 8553.7884)) assert_allclose(horner_and_der3(poly, 3.0), (14726.109396, 13747.040732, 8553.7884, 2674.56)) poly = [1.12, 432.32, 325.5342, .235532, 32.235, 1.01] assert_allclose(horner_and_der4(poly, 3.0), [np.polyval(np.polyder(poly,o), 3) for o in range(5)]) def test_exp_horner_backwards(): assert_allclose((exp_horner_backwards(2.0, [1.0, 3.0])), exp(5.0)) # Test the derivatives coeffs = [1,.2,.03,.0004,.00005] x = 1.1 val = exp_horner_backwards(x, coeffs) assert_close(val, 5.853794011493425) der_num = derivative(lambda x: exp_horner_backwards(x, coeffs), x, dx=x*8e-7, order=7) der_ana = exp_horner_backwards_and_der(x, coeffs)[1] assert_close(der_ana, 35.804145691898384, rtol=1e-10) assert_close(der_num,der_ana, rtol=1e-10) der_num = derivative(lambda x: exp_horner_backwards_and_der(x, coeffs)[1], x, dx=x*8e-7, order=7) der_ana = exp_horner_backwards_and_der2(x, coeffs)[2] assert_close(der_ana, 312.0678014926728, rtol=1e-10) assert_close(der_num,der_ana, rtol=1e-10) der_num = derivative(lambda x: exp_horner_backwards_and_der2(x, coeffs)[2], x, dx=x*8e-7, order=7) der_ana = exp_horner_backwards_and_der3(x, coeffs)[3] assert_close(der_ana, 3208.8680487693714, rtol=1e-10) assert_close(der_num,der_ana, rtol=1e-10) def test_horner_backwards_ln_tau(): coeffs = [9.661381155485653, 224.16316385569456, 2195.419519751738, 11801.26111760343, 37883.05110910901, 74020.46380982929, 87244.40329893673, 69254.45831263301, 61780.155823216155] Tc = 591.75 val = horner_backwards_ln_tau(500.0, Tc, coeffs) assert_close(val, 24168.867169087476) assert 0 == horner_backwards_ln_tau(600.0, Tc, coeffs) T = 300.0 val = horner_backwards_ln_tau(T, Tc, coeffs) assert_close(val, 37900.38881665646) der_num = derivative(lambda T: horner_backwards_ln_tau(T, Tc, coeffs), T, dx=T*8e-7, order=7) der_ana = horner_backwards_ln_tau_and_der(T, Tc, coeffs)[1] assert_close(der_ana, -54.63227984137121, rtol=1e-10) assert_close(der_num,der_ana, rtol=1e-10) der_num = derivative(lambda T: horner_backwards_ln_tau_and_der(T, Tc, coeffs)[1], T, dx=T*8e-7, order=7) der_ana = horner_backwards_ln_tau_and_der2(T, Tc, coeffs)[2] assert_close(der_ana, 0.037847046150971016, rtol=1e-10) assert_close(der_num,der_ana, rtol=1e-8) der_num = derivative(lambda T: horner_backwards_ln_tau_and_der2(T, Tc, coeffs)[2], T, dx=T*160e-7, order=7) der_ana = horner_backwards_ln_tau_and_der3(T, Tc, coeffs)[3] assert_close(der_ana, -0.001920502581912092, rtol=1e-10) assert_close(der_num,der_ana, rtol=1e-10) def test_exp_horner_backwards_ln_tau(): # Coefficients for water from REFPROP, fit cs=[-1.2616237655927602e-05, -0.0004061873638525952, -0.005563382112542401, -0.04240531802937599, -0.19805733513004808, -0.5905741856310869, -1.1388001144550794, -0.1477584393673108, -2.401287527958821] Tc = 647.096 T = 300.0 expect = 0.07175344047522199 val = exp_horner_backwards_ln_tau(T, Tc, cs) assert_close(val, expect, rtol=1e-9) assert 0 == exp_horner_backwards_ln_tau(Tc, Tc, cs) assert 0 == exp_horner_backwards_ln_tau(Tc+1, Tc, cs) expect_der = -0.000154224581713238 val, der = exp_horner_backwards_ln_tau_and_der(T, Tc, cs) assert_close(der, expect_der, rtol=1e-13) assert_close(val, expect, rtol=1e-9) val, der, der2 = exp_horner_backwards_ln_tau_and_der2(T, Tc, cs) assert_close(der, expect_der, rtol=1e-13) assert_close(val, expect, rtol=1e-9) expect_der2 = -5.959538970287795e-07 assert_close(der2, expect_der2, rtol=1e-13) args = (300, 647.096, 0.06730658226743809, -0.00020056690242827797, -5.155567532930362e-09) assert_close1d(exp_poly_ln_tau_coeffs3(*args), [-0.022358482008994165, 1.0064575672832698, -2.062906603289078]) args = (300, 647.096, 0.06576090309133853, -0.0002202298609576884) calc = exp_poly_ln_tau_coeffs2(*args) assert_close1d(calc, [1.1624065398371628, -1.9976745939643825 ], rtol=1e-9) def test_quadratic_from_f_ders(): poly = [1.12, 432.32, 325.5342, .235532, 32.235] p = 3.0 v, d1, d2 = horner_and_der2(poly, p) quadratic = quadratic_from_f_ders(p, v, d1, d2) v_new, d1_new, d2_new = horner_and_der2(quadratic, p) assert_close(v_new, v) assert_close(d1_new, d1) assert_close(d2_new, d2) p = 2.9 v, d1, d2 = horner_and_der2(poly, p) v_new, d1_new, d2_new = horner_and_der2(quadratic, p) v_new, d1_new, d2_new, v, d1, d2 assert_close(v_new, v, rtol=1e-4) assert_close(d1_new, d1, rtol=5e-3) def test_roots_quadratic(): a, b, c = 1,2,3 v0, v1 = roots_quadratic(a, b, c) if v0.imag < v1.imag: v1, v0 = v0, v1 assert_close(v0, -1+1.4142135623730951j) assert_close(v1, -1-1.4142135623730951j) a, b, c = .1,2,3 v0, v1 = roots_quadratic(a, b, c) if v0.real < v1.real: v1, v0 = v0, v1 assert_close(v0, -1.6333997346592444) assert_close(v1, -18.366600265340757) def test_cumsum(): assert_close1d(cumsum([1,2,3,4,5]), [1, 3, 6, 10, 15]) assert_close1d(cumsum([1]), [1]) def test_interp(): from fluids.numerics import interp # Real world test data a = [0.29916, 0.29947, 0.31239, 0.31901, 0.32658, 0.33729, 0.34202, 0.34706, 0.35903, 0.36596, 0.37258, 0.38487, 0.38581, 0.40125, 0.40535, 0.41574, 0.42425, 0.43401, 0.44788, 0.45259, 0.47181, 0.47309, 0.49354, 0.49924, 0.51653, 0.5238, 0.53763, 0.54806, 0.55684, 0.57389, 0.58235, 0.59782, 0.60156, 0.62265, 0.62649, 0.64948, 0.65099, 0.6687, 0.67587, 0.68855, 0.69318, 0.70618, 0.71333, 0.72351, 0.74954, 0.74965] b = [0.164534, 0.164504, 0.163591, 0.163508, 0.163439, 0.162652, 0.162224, 0.161866, 0.161238, 0.160786, 0.160295, 0.15928, 0.159193, 0.157776, 0.157467, 0.156517, 0.155323, 0.153835, 0.151862, 0.151154, 0.14784, 0.147613, 0.144052, 0.14305, 0.140107, 0.138981, 0.136794, 0.134737, 0.132847, 0.129303, 0.127637, 0.124758, 0.124006, 0.119269, 0.118449, 0.113605, 0.113269, 0.108995, 0.107109, 0.103688, 0.102529, 0.099567, 0.097791, 0.095055, 0.087681, 0.087648] xs = np.linspace(0.29, 0.76, 100) ys = [interp(xi, a, b) for xi in xs.tolist()] ys_numpy = np.interp(xs, a, b) assert_allclose(ys, ys_numpy, atol=1e-12, rtol=1e-11) # Test custom extrapolation method xs = [1,2,3] ys = [.1, .2, .3] assert_close(interp(3.5, xs, ys, extrapolate=True), .35, rtol=1e-15) assert_close(interp(0, xs, ys, extrapolate=True), 0, rtol=1e-15) assert_close(interp(-1, xs, ys, extrapolate=True), -.1, rtol=1e-15) assert_close(interp(-100, xs, ys, extrapolate=True), -10, rtol=1e-15) assert_close(interp(10, xs, ys, extrapolate=True), 1, rtol=1e-15) assert_close(interp(10.0**30, xs, ys, extrapolate=True), 10.0**29, rtol=1e-15) def test_zeros(): # Only support up to 4d so far assert_allclose(zeros(2), np.zeros(2), atol=0) assert_allclose(zeros((2, )), np.zeros((2, )), atol=0) assert_allclose(zeros((2, 3)), np.zeros((2, 3)), atol=0) assert_allclose(zeros((2, 3, 4)), np.zeros((2, 3, 4)), atol=0) assert_allclose(zeros((2, 3, 4, 5)), np.zeros((2, 3, 4, 5)), atol=0) def test_full(): assert_allclose(full(2, 1), np.full(2, 1), atol=0) assert_allclose(full((2, ), 1), np.full((2, ), 1), atol=0) assert_allclose(full((2, 3), 1), np.full((2, 3), 1), atol=0) assert_allclose(full((2, 3, 4), 1), np.full((2, 3, 4), 1), atol=0) assert_allclose(full((2, 3, 4, 5), 1), np.full((2, 3, 4, 5), 1), atol=0) def test_splev(): from fluids.numerics import py_splev from scipy.interpolate import splev # Originally Dukler_XA_tck tck = [np.array([-2.4791105294648372, -2.4791105294648372, -2.4791105294648372, -2.4791105294648372, 0.14360803483759585, 1.7199938263676038, 1.7199938263676038, 1.7199938263676038, 1.7199938263676038]), np.array([0.21299880246561081, 0.16299733301915248, -0.042340970712679615, -1.9967836909384598, -2.9917366639619414, 0.0, 0.0, 0.0, 0.0]), 3] my_tck = [tck[0].tolist(), tck[1].tolist(), tck[2]] xs = np.linspace(-3, 2, 100).tolist() # test extrapolation ys_scipy = splev(xs, tck, ext=0) ys = [py_splev(xi, my_tck, ext=0) for xi in xs] assert_allclose(ys, ys_scipy) # test truncating to side values ys_scipy = splev(xs, tck, ext=3) ys = [py_splev(xi, my_tck, ext=3) for xi in xs] assert_allclose(ys, ys_scipy) # Test returning zeros for bad values ys_scipy = splev(xs, tck, ext=1) ys = [py_splev(xi, my_tck, ext=1) for xi in xs] assert_allclose(ys, ys_scipy) # Test raising an error when extrapolating is not allowed with pytest.raises(ValueError): py_splev(xs[0], my_tck, ext=2) with pytest.raises(ValueError): splev(xs[0], my_tck, ext=2) def test_bisplev(): from fluids.numerics import bisplev as my_bisplev from scipy.interpolate import bisplev tck = [np.array([0.0, 0.0, 0.0, 0.0, 0.0213694, 0.0552542, 0.144818, 0.347109, 0.743614, 0.743614, 0.743614, 0.743614]), np.array([0.0, 0.0, 0.25, 0.5, 0.75, 1.0, 1.0]), np.array([1.0001228445490002, 0.9988161050974387, 0.9987070557919563, 0.9979385859402731, 0.9970983069823832, 0.96602540121758, 0.955136014969614, 0.9476842472211648, 0.9351143114374392, 0.9059649602818451, 0.9218915266550902, 0.9086000082864022, 0.8934758292610783, 0.8737960765592091, 0.83185251064324, 0.8664296734965998, 0.8349705397843921, 0.809133298969704, 0.7752206120745123, 0.7344035693011536, 0.817047920445813, 0.7694560150930563, 0.7250979336267909, 0.6766754605968431, 0.629304180420512, 0.7137237030611423, 0.6408238328161417, 0.5772000233279148, 0.504889627280836, 0.440579886434288, 0.6239736474980684, 0.5273646894226224, 0.43995388722059986, 0.34359277007615313, 0.26986439252143746, 0.5640689738382749, 0.4540959882735219, 0.35278120580740957, 0.24364672351604122, 0.1606942128340308]), 3, 1] my_tck = [tck[0].tolist(), tck[1].tolist(), tck[2].tolist(), tck[3], tck[4]] xs = np.linspace(0, 1, 10) zs = np.linspace(0, 1, 10) ys_scipy = bisplev(xs, zs, tck) ys = my_bisplev(xs, zs, my_tck) assert_allclose(ys, ys_scipy) ys_scipy = bisplev(0.5, .7, tck) ys = my_bisplev(.5, .7, my_tck) assert_allclose(ys, ys_scipy) def test_linspace(): from fluids.numerics import linspace calc = linspace(-3,10, endpoint=True, num=8) expect = np.linspace(-3,10, endpoint=True, num=8) assert_allclose(calc, expect) calc = linspace(-3,10, endpoint=False, num=20) expect = np.linspace(-3,10, endpoint=False, num=20) assert_allclose(calc, expect) calc = linspace(0,1e-10, endpoint=False, num=3) expect = np.linspace(0,1e-10, endpoint=False, num=3) assert_allclose(calc, expect) calc = linspace(0,1e-10, endpoint=False, num=2) expect = np.linspace(0,1e-10, endpoint=False, num=2) assert_allclose(calc, expect) calc = linspace(0,1e-10, endpoint=False, num=1) expect = np.linspace(0,1e-10, endpoint=False, num=1) assert_allclose(calc, expect) calc, calc_step = linspace(0,1e-10, endpoint=False, num=2, retstep=True) expect, expect_step = np.linspace(0,1e-10, endpoint=False, num=2, retstep=True) assert_allclose(calc, expect) assert_allclose(calc_step, expect_step) calc, calc_step = linspace(0,1e-10, endpoint=False, num=1, retstep=True) expect, expect_step = np.linspace(0,1e-10, endpoint=False, num=1, retstep=True) assert_allclose(calc, expect) assert isnan(calc_step) # Cannot compare against numpy expect_step - it did not use to give nan in older versions calc, calc_step = linspace(100, 1000, endpoint=False, num=21, retstep=True) expect, expect_step = np.linspace(100, 1000, endpoint=False, num=21, retstep=True) assert_allclose(calc, expect) assert_allclose(calc_step, expect_step) def test_logspace(): from fluids.numerics import logspace calc = logspace(3,10, endpoint=True, num=8) expect = np.logspace(3,10, endpoint=True, num=8) assert_allclose(calc, expect) calc = logspace(3,10, endpoint=False, num=20) expect = np.logspace(3,10, endpoint=False, num=20) assert_allclose(calc, expect) calc = logspace(0,1e-10, endpoint=False, num=3) expect = np.logspace(0,1e-10, endpoint=False, num=3) assert_allclose(calc, expect) calc = logspace(0,1e-10, endpoint=False, num=2) expect = np.logspace(0,1e-10, endpoint=False, num=2) assert_allclose(calc, expect) calc = logspace(0,1e-10, endpoint=False, num=1) expect = np.logspace(0,1e-10, endpoint=False, num=1) assert_allclose(calc, expect) calc = logspace(0,1e-10, endpoint=False, num=2) expect = np.logspace(0,1e-10, endpoint=False, num=2) assert_allclose(calc, expect) calc = logspace(0,1e-10, endpoint=False, num=1) expect = np.logspace(0,1e-10, endpoint=False, num=1) assert_allclose(calc, expect) calc = logspace(100, 200, endpoint=False, num=21) expect = np.logspace(100, 200, endpoint=False, num=21) assert_allclose(calc, expect) def test_diff(): from fluids.numerics import diff test_arrs = [np.ones(10), np.zeros(10), np.arange(1, 10), np.arange(1, 10)*25.1241251, (np.arange(1, 10)**1.2), (10.1 + np.arange(1, 10)**20), (10.1 + np.linspace(-100, -10, 9)), (np.logspace(-10, -100, 19)**1.241), (np.logspace(10, 100, 15)**1.241) ] for test_arr in test_arrs: arr = test_arr.tolist() for n in range(5): diff_np = np.diff(arr, n=n) diff_py = diff(arr, n=n) assert_allclose(diff_np, diff_py) assert tuple(diff([1,2,3], n=0)) == tuple([1,2,3]) with pytest.raises(Exception): diff([1,2,3], n=-1) def test_fit_integral_linear_extrapolation(): coeffs = [-6.496329615255804e-23,2.1505678500404716e-19, -2.2204849352453665e-16, 1.7454757436517406e-14, 9.796496485269412e-11, -4.7671178529502835e-08, 8.384926355629239e-06, -0.0005955479316119903, 29.114778709934264] Tmin, Tmax = 50.0, 1000.0 Tmin_value, Tmax_value = 29.10061916353635, 32.697696220612684 Tmin_slope, Tmax_slope = 9.512557609301246e-06, 0.005910807286115391 int_coeffs = polyint(coeffs) T_int_T_coeffs, log_coeff = polyint_over_x(coeffs) def func(T): if T < Tmin: Cp = (T - Tmin)*Tmin_slope + Tmin_value elif T > Tmax: Cp = (T - Tmax)*Tmax_slope + Tmax_value else: Cp = horner(coeffs, T) return Cp assert_allclose(func(300), 29.12046448327871, rtol=1e-12) Ts = [0, 1, 25, 49, 50, 51, 500, 999, 1000, 1001, 2000, 50000] T_ends = [0, Tmin, Tmin*2.0, Tmax, Tmax*2.0] expect_values = [0.0, 0.0, 29.10014829193469, -29.10014829193469, 727.50656106565, -727.50656106565, 1425.9184530725483, -1425.9184530725483, 1455.0190674798057, -1455.0190674798057, 1484.119654811151, -1484.119654811151, 14588.023573849947, -14588.023573849947, 30106.09421115182, -30106.09421115182, 30138.789058157658, -30138.789058157658, 30171.489709781912, -30171.489709781912, 65791.88892182804, -65791.88892182804, 8728250.050849704, -8728250.050849704, -1455.0190674798057, 1455.0190674798057, -1425.918919187871, 1425.918919187871, -727.5125064141557, 727.5125064141557, -29.100614407257353, 29.100614407257353, 0.0, 0.0, 29.100587331345196, -29.100587331345196, 13133.004506370142, -13133.004506370142, 28651.075143672013, -28651.075143672013, 28683.76999067785, -28683.76999067785, 28716.470642302105, -28716.470642302105, 64336.869854348224, -64336.869854348224, 8726795.031782223, -8726795.031782223, -2910.0427925248396, 2910.0427925248396, -2880.942644232905, 2880.942644232905, -2182.53623145919, 2182.53623145919, -1484.1243394522915, 1484.1243394522915, -1455.023725045034, 1455.023725045034, -1425.923137713689, 1425.923137713689, 11677.980781325108, -11677.980781325108, 27196.05141862698, -27196.05141862698, 27228.746265632813, -27228.746265632813, 27261.446917257068, -27261.446917257068, 62881.84612930319, -62881.84612930319, 8725340.008057179, -8725340.008057179, -30138.789058157658, 30138.789058157658, -30109.688909865723, 30109.688909865723, -29411.282497092005, 29411.282497092005, -28712.870605085107, 28712.870605085107, -28683.76999067785, 28683.76999067785, -28654.669403346503, 28654.669403346503, -15550.765484307707, 15550.765484307707, -32.6948470058378, 32.6948470058378, 0.0, 0.0, 32.70065162425453, -32.70065162425453, 35653.09986367037, -35653.09986367037, 8698111.261791546, -8698111.261791546, -65791.88892182804, 65791.88892182804, -65762.7887735361, 65762.7887735361, -65064.38236076238, 65064.38236076238, -64365.97046875548, 64365.97046875548, -64336.869854348224, 64336.869854348224, -64307.769267016876, 64307.769267016876, -51203.86534797808, 51203.86534797808, -35685.794710676215, 35685.794710676215, -35653.09986367037, 35653.09986367037, -35620.39921204612, 35620.39921204612, 0.0, 0.0, 8662458.161927875, -8662458.161927875] numericals = [] analyticals = [] analyticals2 = [] for Tend in T_ends: for Tdiff in Ts: for (T1, T2) in zip([Tend, Tdiff], [Tdiff, Tend]): analytical = fit_integral_linear_extrapolation(T1, T2, int_coeffs, Tmin, Tmax, Tmin_value, Tmax_value, Tmin_slope, Tmax_slope) analytical2 = (poly_fit_integral_value(T2, int_coeffs, Tmin, Tmax, Tmin_value, Tmax_value, Tmin_slope, Tmax_slope) - poly_fit_integral_value(T1, int_coeffs, Tmin, Tmax, Tmin_value, Tmax_value, Tmin_slope, Tmax_slope)) # numerical = quad(func, T1, T2, epsabs=1.49e-14, epsrel=1.49e-14)[0] # numericals.append(numerical) analyticals.append(analytical) analyticals2.append(analytical2) # print(analyticals) # assert_allclose(analyticals, numericals, rtol=1e-7) # assert_allclose(analyticals2, numericals, rtol=1e-7) assert_allclose(analyticals, expect_values, rtol=1e-12) assert_allclose(analyticals2, expect_values, rtol=1e-12) # Cannot have temperatures of 0 absolute for integrals over T cases Ts = [1e-9, 1, 25, 49, 50, 51, 500, 999, 1000, 1001, 2000, 50000] T_ends = [1e-9, Tmin, Tmin*2.0, Tmax, Tmax*2.0] expect_values = [0.0, 0.0, 603.0500198952521, -603.0500198952521, 696.719996723752, -696.719996723752, 716.3030057880156, -716.3030057880156, 716.890916983322, -716.890916983322, 717.467185070396, -717.467185070396, 783.9851859794122, -783.9851859794122, 805.3820356163964, -805.3820356163964, 805.4147468212567, -805.4147468212567, 805.4474311329551, -805.4474311329551, 829.8928106482913, -829.8928106482913, 1199.8352295965128, -1199.8352295965128, -716.890916983322, 716.890916983322, -113.84089708806982, 113.84089708806982, -20.170920259569826, 20.170920259569826, -0.5879111953062761, 0.5879111953062761, 0.0, 0.0, 0.5762680870740127, -0.5762680870740127, 67.09426899609028, -67.09426899609028, 88.4911186330744, -88.4911186330744, 88.5238298379347, -88.5238298379347, 88.5565141496331, -88.5565141496331, 113.00189366496929, -113.00189366496929, 482.94431261319096, -482.94431261319096, -737.0618021522312, 737.0618021522312, -134.01178225697902, 134.01178225697902, -40.34180542847902, 40.34180542847902, -20.75879636421547, 20.75879636421547, -20.170885168909194, 20.170885168909194, -19.59461708183518, 19.59461708183518, 46.923383827181084, -46.923383827181084, 68.3202334641652, -68.3202334641652, 68.3529446690255, -68.3529446690255, 68.38562898072391, -68.38562898072391, 92.8310084960601, -92.8310084960601, 462.77342744428177, -462.77342744428177, -805.4147468212567, 805.4147468212567, -202.36472692600452, 202.36472692600452, -108.69475009750452, 108.69475009750452, -89.11174103324097, 89.11174103324097, -88.5238298379347, 88.5238298379347, -87.94756175086069, 87.94756175086069, -21.42956084184442, 21.42956084184442, -0.03271120486030554, 0.03271120486030554, 0.0, 0.0, 0.03268431169840369, -0.03268431169840369, 24.47806382703459, -24.47806382703459, 394.42048277525623, -394.42048277525623, -829.8928106482913, 829.8928106482913, -226.8427907530391, 226.8427907530391, -133.17281392453913, 133.17281392453913, -113.58980486027556, 113.58980486027556, -113.00189366496929, 113.00189366496929, -112.42562557789527, 112.42562557789527, -45.90762466887901, 45.90762466887901, -24.510775031894894, 24.510775031894894, -24.47806382703459, 24.47806382703459, -24.445379515336185, 24.445379515336185, 0.0, 0.0, 369.94241894822164, -369.94241894822164] numericals = [] analyticals = [] analyticals2 = [] for Tend in T_ends: for Tdiff in Ts: for (T1, T2) in zip([Tend, Tdiff], [Tdiff, Tend]): analytical = fit_integral_over_T_linear_extrapolation(T1, T2, T_int_T_coeffs, log_coeff, Tmin, Tmax, Tmin_value, Tmax_value, Tmin_slope, Tmax_slope) analytical2 = (poly_fit_integral_over_T_value(T2, T_int_T_coeffs, log_coeff, Tmin, Tmax, Tmin_value, Tmax_value, Tmin_slope, Tmax_slope) - poly_fit_integral_over_T_value(T1, T_int_T_coeffs, log_coeff, Tmin, Tmax, Tmin_value, Tmax_value, Tmin_slope, Tmax_slope)) # numerical = quad(lambda T: func(float(T))/T, T1, T2, epsabs=1.49e-12, epsrel=1.49e-14)[0] # numericals.append(numerical) analyticals.append(analytical) analyticals2.append(analytical2) # # assert_allclose(analyticals, numericals, rtol=1e-7) # assert_allclose(analyticals2, numericals, rtol=1e-7) assert_allclose(analyticals, expect_values, rtol=1e-11) assert_allclose(analyticals2, expect_values, rtol=1e-11) def test_best_bounding_bounds(): def to_solve(x): return exp(x) - 100 vals = best_bounding_bounds(0, 5, to_solve, xs_pos=[4.831, 4.6054], ys_pos= [25.38, 0.0288], xs_neg=[4, 4.533, 4.6051690], ys_neg=[-45.40, -6.933, -0.0001139]) assert_allclose(vals, (4.605169, 4.6054, -0.0001139, 0.0288), rtol=1e-12) vals = best_bounding_bounds(4.60517018598, 5, to_solve, xs_pos=[4.831, 4.6054], ys_pos= [25.38, 0.0288], xs_neg=[4, 4.533, 4.6051690], ys_neg=[-45.40, -6.933, -0.0001139]) assert_allclose(vals, (4.60517018598, 4.6054, -8.091802783383173e-10, 0.0288), rtol=1e-12) vals = best_bounding_bounds(0, 4.60517018599, to_solve, xs_pos=[4.831, 4.6054], ys_pos= [25.38, 0.0288], xs_neg=[4, 4.533, 4.6051690], ys_neg=[-45.40, -6.933, -0.0001139]) assert_allclose(vals, (4.605169, 4.60517018599, -0.0001139, 1.908233571157325e-10), rtol=1e-12) vals = best_bounding_bounds(0, 4.60517018599, fa=to_solve(0), fb=to_solve(4.60517018599), xs_pos=[4.831, 4.6054], ys_pos= [25.38, 0.0288], xs_neg=[4, 4.533, 4.6051690], ys_neg=[-45.40, -6.933, -0.0001139]) assert_allclose(vals, (4.605169, 4.60517018599, -0.0001139, 1.908233571157325e-10), rtol=1e-12) def test_is_poly_positive(): assert not is_poly_positive([4, 3, 2, 1]) for high in range(0, 100, 5): assert is_poly_positive([4, 3, 2, 1], domain=(0, 10**high)) coeffs_4alpha = [2.1570803657937594e-10, 2.008831101045556e-06, -0.004656598178209313, 2.8575882247542514] assert not is_poly_positive(coeffs_4alpha) assert is_poly_positive(coeffs_4alpha, domain=(0, 511)) assert is_poly_positive(coeffs_4alpha, domain=(-10000, 511)) assert not is_poly_positive(coeffs_4alpha, domain=(-20000, 511)) assert not is_poly_positive(coeffs_4alpha, domain=(-15000, 511)) assert not is_poly_positive(coeffs_4alpha, domain=(-13000, 511)) assert not is_poly_positive(coeffs_4alpha, domain=(-11500, 511)) def test_roots_quartic(): coeffs = [1.0, -3.274390673429134, 0.3619541556604501, 2.4841800045762747, -0.49619076425603237] expect_roots = ((-0.8246324500888049+1.1609047395516947e-17j), (0.2041867922778502-3.6197168963943884e-17j), (1.027869356838059+2.910620457054182e-17j), (2.86696697440203-4.51808300211488e-18j)) expect_mp_roots_real = [-0.824632450088805, 0.20418679227785, 1.0278693568380592, 2.86696697440203] roots_calc = roots_quartic(*coeffs) assert_allclose(expect_roots, roots_calc, rtol=1e-9) assert_allclose(expect_mp_roots_real, [i.real for i in roots_calc], rtol=1e-9) def test_array_as_tridiagonals(): A = [[10.0, 2.0, 0.0, 0.0], [3.0, 10.0, 4.0, 0.0], [0.0, 1.0, 7.0, 5.0], [0.0, 0.0, 3.0, 4.0]] tridiagonals = array_as_tridiagonals(A) expect_diags = [[3.0, 1.0, 3.0], [10.0, 10.0, 7.0, 4.0], [2.0, 4.0, 5.0]] assert_allclose(tridiagonals[0], expect_diags[0], rtol=0, atol=0) assert_allclose(tridiagonals[1], expect_diags[1], rtol=0, atol=0) assert_allclose(tridiagonals[2], expect_diags[2], rtol=0, atol=0) A = np.array(A) tridiagonals = array_as_tridiagonals(A) assert_allclose(tridiagonals[0], expect_diags[0], rtol=0, atol=0) assert_allclose(tridiagonals[1], expect_diags[1], rtol=0, atol=0) assert_allclose(tridiagonals[2], expect_diags[2], rtol=0, atol=0) a, b, c = [3.0, 1.0, 3.0], [10.0, 10.0, 7.0, 4.0], [2.0, 4.0, 5.0] expect_mat = tridiagonals_as_array(a, b, c) assert_allclose(expect_mat, A, rtol=0, atol=0) d = [3.0, 4.0, 5.0, 6.0] solved_expect = [0.1487758945386064, 0.756120527306968, -1.001883239171375, 2.2514124293785316] assert_allclose(solve_tridiagonal(a, b, c, d), solved_expect, rtol=1e-12) def test_subset_matrix(): kijs = [[0, 0.00076, 0.00171], [0.00076, 0, 0.00061], [0.00171, 0.00061, 0]] expect = [[0, 0.00061], [0.00061, 0]] got = subset_matrix(kijs, [1,2]) assert_allclose(expect, got, atol=0, rtol=0) got = subset_matrix(kijs, slice(1, 3, 1)) assert_allclose(expect, got, atol=0, rtol=0) expect = [[0, 0.00171], [0.00171, 0]] got = subset_matrix(kijs, [0,2]) assert_allclose(expect, got, atol=0, rtol=0) got = subset_matrix(kijs, slice(0, 3, 2)) assert_allclose(expect, got, atol=0, rtol=0) expect = [[0, 0.00076], [0.00076, 0]] got = subset_matrix(kijs, [0,1]) assert_allclose(expect, got, atol=0, rtol=0) got = subset_matrix(kijs, slice(0, 2, 1)) assert_allclose(expect, got, atol=0, rtol=0) got = subset_matrix(kijs, [0,1, 2]) assert_allclose(kijs, got, atol=0, rtol=0) got = subset_matrix(kijs, slice(0, 3, 1)) assert_allclose(kijs, got, atol=0, rtol=0) def test_translate_bound_func(): def rosen_test(x): x, y = x return (1.0 - x)**2 + 100.0*(y - x**2)**2 f, into, outof = translate_bound_func(rosen_test, low=[-2, -.2], high=[3.0, 4]) point = [.6, .7] in_exp = [0.0800427076735365, -1.2992829841302609] assert_allclose(into(point), in_exp, rtol=1e-12) assert_allclose(outof(in_exp), point, rtol=1e-12) assert f(into([1, 1])) < 1e-20 assert_allclose(outof(into([1, 1])), [1, 1], rtol=1e-12) f, into, outof = translate_bound_func(rosen_test, bounds=[[-2, 3], [-.2, 4]]) point = [.6, .7] in_exp = [0.0800427076735365, -1.2992829841302609] assert_allclose(into(point), in_exp, rtol=1e-12) assert_allclose(outof(in_exp), point, rtol=1e-12) assert f(into([1, 1])) < 1e-20 assert_allclose(outof(into([1, 1])), [1, 1], rtol=1e-12) def test_translate_bound_jac(): from scipy.optimize import rosen_der def rosen_test(x): x, y = x return (1.0 - x)**2 + 100.0*(y - x**2)**2 j, into, outof = translate_bound_jac(rosen_der, low=[-2, -.2], high=[3.0, 4]) f, into, outof = translate_bound_func(rosen_test, low=[-2, -.2], high=[3.0, 4]) point = [3, -2] jac_num = jacobian(f, point, perturbation=1e-8) jac_anal = j(point) assert_allclose(jac_num, jac_anal, rtol=1e-6) def test_translate_bound_f_jac(): from scipy.optimize import rosen_der def rosen_test(x): x, y = x return (1.0 - x)**2 + 100.0*(y - x**2)**2 low, high = [-2, -.2], [3.0, 4] f_j, into, outof = translate_bound_f_jac(rosen_test, rosen_der, low=low, high=high) point = [3, -2] f0, j0 = f_j(point) f0_check = translate_bound_func(rosen_test, low=low, high=high)[0](point) assert_allclose(f0_check, f0, rtol=1e-13) j0_check = translate_bound_jac(rosen_der, low=low, high=high)[0](point) assert_allclose(j0_check, j0, rtol=1e-13) def test_translate_bound_f_jac_multivariable(): def cons_f(x): return [x[0]**2 + x[1], x[0]**2 - x[1]] def cons_J(x): return[[2*x[0], 1], [2*x[0], -1]] new_f_j, translate_into, translate_outof = translate_bound_f_jac(cons_f, cons_J, bounds=[(-10, 10), (-5, 5)]) assert_close2d(new_f_j([-2.23, 3.45])[1], jacobian(lambda g: new_f_j(g, )[0], [-2.23, 3.45], scalar=False), rtol=3e-6) def test_solve_direct(): A = [[1.0,2.53252], [34.34, .5342]] B = [1.1241, .54354] assert_close1d(np.linalg.solve(A, B), solve_2_direct(A, B), rtol=1e-14) assert type(solve_2_direct(A, B)) is list A = [[1.0,2.53252, 54.54], [34.34, .5342, .545], [12.43, .545, .55555]] B = [1.1241, .54354, 1.22333] assert_close1d(np.linalg.solve(A, B), solve_3_direct(A, B), rtol=5e-14) assert type(solve_3_direct(A, B)) is list A = [[1.0,2.53252, 54.54, .235], [34.34, .5342, .545, .223], [12.43, .545, .55555, 33.33], [1.11, 2.2, 3.33, 4.44]] B = [1.1241, .54354, 1.22333, 9.009] ans = solve_4_direct(A, B) assert_close1d(np.linalg.solve(A, B), ans, rtol=5e-14) assert type(ans) is list def test_polylog2(): x = polylog2(0.5) assert_close(x, 0.5822405264516294) xs = linspace(0,0.99999, 50) # ys_act = [float(polylog(2, x)) for x in xs] # from sympy import polylog ys_act = [0.0, 0.020513035768572635, 0.0412401364927588, 0.06218738124039796, 0.08336114665629184, 0.10476812813791354, 0.12641536301777412, 0.1483102559926201, 0.1704606070746889, 0.19287464238138674, 0.21556104812821067, 0.23852900824703252, 0.261788246119884, 0.2853490709994786, 0.309222429784819, 0.33341996493707843, 0.3579540794622072, 0.38283801005840257, 0.4080859097363812, 0.43371294147827794, 0.45973538481992837, 0.4861707576383267, 0.5130379559237574, 0.540357414944675, 0.5681512960135646, 0.596443704089335, 0.6252609427828415, 0.6546318150738004, 0.6845879803506546, 0.7151643814663312, 0.7463997596771124, 0.7783372810645774, 0.811025306032588, 0.8445183447984893, 0.878878258148156, 0.9141757868110273, 0.9504925291123206, 0.9879235426949309, 1.026580835488432, 1.0665981582977615, 1.108137763432647, 1.1514002456979586, 1.1966394380910048, 1.244186068718536, 1.2944877067946645, 1.3481819162579485, 1.4062463083287482, 1.4703641942000052, 1.5441353484206717, 1.644808936992927] ys = [polylog2(x) for x in xs] assert_close1d(ys, ys_act, rtol=1E-7, atol=1E-10) def test_std(): inputs = ([1.0,5.0,11.0,4.0], [1.0,-5.0,11.0,-4.0], [1e12,-5.e13,11e14,-4e13], [1, 2, 3, 4], [-1, -2, -3, 4], [14, 8, 11, 10, 7, 9, 10, 11, 10, 15, 5, 10] ) for thing in inputs: assert_close(std(thing), np.std(thing), rtol=1e-14) def test_min_max_ratios(): actual = [1,2,3,4,5] calculated = [.9, 2.1, 3.05, 3.8, 5.5] min_ratio_np, max_ratio_np = np.min(np.array(calculated)/actual), np.max(np.array(calculated)/actual) assert_close1d([min_ratio_np, max_ratio_np], min_max_ratios(actual, calculated), rtol=1e-14) # Case with a zero match actual = [1,2,3,0,5] calculated = [.9, 2.1, 3.05, 0.0, 5.5] assert_close1d(min_max_ratios(actual, calculated), (0.9, 1.1), rtol=0) # Case with a zero mismatch actual = [1,2,3,0,5] calculated = [.9, 2.1, 3.05, 1, 5.5] assert_close1d(min_max_ratios(actual, calculated), (0.9, 10.0), rtol=0) def test_py_factorial(): from fluids.numerics import py_factorial import math for i in range(30): assert math.factorial(i) == py_factorial(i) def test_exp_stablepoly_fit_ln_tau(): coeffs = [0.011399360373616219, -0.014916568994522095, -0.06881296308711171, 0.0900153056718409, 0.19066633691545576, -0.24937350547406822, -0.3148389292182401, 0.41171834646956995, 0.3440581845934503, -0.44989947455906076, -0.2590532901358529, 0.33869134876113094, 0.1391329435696207, -0.18195230788023764, -0.050437145563137165, 0.06583166394466389, 0.01685157036382634, -0.022266583863000733, 0.003539388708205138, -0.005171064606571463, 0.012264455189935575, -0.018085676249990357, 0.026950795197264732, -0.04077120220662778, 0.05786417011592615, -0.07222889554773304, 0.07433570330647113, -0.05829288696590232, -3.7182636506596722, -5.844828481765601] Tmin, Tmax, Tc = 233.22, 646.15, 647.096 xmin, xmax = log(1-Tmin/Tc), log(1-Tmax/Tc) offset, scale = polynomial_offset_scale(xmin, xmax) T = 500 expect = 0.03126447402046822 expect_d, expect_d2 = -0.0002337992205182661, -1.0453011134030858e-07 calc = exp_horner_stable_ln_tau(T, Tc, coeffs, offset, scale) assert_close(expect, calc) assert 0 == exp_horner_stable_ln_tau(700, Tc, coeffs, offset, scale) calc2 = exp_horner_stable_ln_tau_and_der(T, Tc, coeffs, offset, scale) assert (0,0) == exp_horner_stable_ln_tau_and_der(700, Tc, coeffs, offset, scale) assert_close(expect, calc2[0]) assert_close(expect_d, calc2[1]) calc3 = exp_horner_stable_ln_tau_and_der2(T, Tc, coeffs, offset, scale) assert (0,0, 0) == exp_horner_stable_ln_tau_and_der2(700, Tc, coeffs, offset, scale) assert_close(expect, calc3[0]) assert_close(expect_d, calc3[1]) assert_close(expect_d2, calc3[2]) def test_exp_cheb_fit_ln_tau(): coeffs = [-5.922664830406188, -3.6003367212635444, -0.0989717205896406, 0.05343895281736921, -0.02476759166597864, 0.010447569392539213, -0.004240542036664352, 0.0017273355647560718, -0.0007199858491173661, 0.00030714447101984343, -0.00013315510546685339, 5.832551964424226e-05, -2.5742454514671165e-05, 1.143577875153956e-05, -5.110008470393668e-06, 2.295229193177706e-06, -1.0355920205401548e-06, 4.690917226601865e-07, -2.1322112805921556e-07, 9.721709759435981e-08, -4.4448656630335925e-08, 2.0373327115630335e-08, -9.359475430792408e-09, 4.308620855930645e-09, -1.9872392620357004e-09, 9.181429297400179e-10, -4.2489342599871804e-10, 1.969051449668413e-10, -9.139573819982871e-11, 4.2452263926406886e-11, -1.9768853221080462e-11, 9.190537220149508e-12, -4.2949394041258415e-12, 1.9981863386142606e-12, -9.396025624219817e-13, 4.335282133283158e-13, -2.0410756418343112e-13, 1.0455525334407412e-13, -4.748978987834107e-14, 2.7630675525358583e-14] Tmin, Tmax, Tc = 233.22, 646.15, 647.096 expect = 0.031264474019763455 expect_d, expect_d2 = -0.00023379922039411865, -1.0453010755999069e-07 xmin, xmax = log(1-Tmin/Tc), log(1-Tmax/Tc) offset, scale = polynomial_offset_scale(xmin, xmax) coeffs_d = chebder(coeffs, m=1, scl=scale) coeffs_d2 = chebder(coeffs_d, m=1, scl=scale) coeffs_d3 = chebder(coeffs_d2, m=1, scl=scale) T = 500 calc = exp_cheb_ln_tau(T, Tc, coeffs, offset, scale) assert 0 == exp_cheb_ln_tau(700, Tc, coeffs, offset, scale) assert_close(expect, calc) calc2 = exp_cheb_ln_tau_and_der(T, Tc, coeffs, coeffs_d, offset, scale) assert (0,0) == exp_cheb_ln_tau_and_der(700, Tc, coeffs, coeffs_d, offset, scale) assert_close(expect, calc2[0]) assert_close(expect_d, calc2[1]) calc3 = exp_cheb_ln_tau_and_der2(T, Tc, coeffs, coeffs_d, coeffs_d2, offset, scale) assert (0,0,0) == exp_cheb_ln_tau_and_der2(700, Tc, coeffs, coeffs_d, coeffs_d2, offset, scale) assert_close(expect, calc3[0]) assert_close(expect_d, calc3[1]) assert_close(expect_d2, calc3[2]) def test_stablepoly_ln_tau(): Tmin, Tmax, Tc = 178.18, 591.74, 591.75 coeffs = [-0.00854738149791956, 0.05600738152861595, -0.30758192972280085, 1.6848304651211947, -8.432931053161155, 37.83695791102946, -150.87603890354512, 526.4891248463246, -1574.7593541151946, 3925.149223414621, -7826.869059381197, 11705.265444382389, -11670.331914006258, 5817.751307862842] expect = 24498.131947494512 expect_d, expect_d2, expect_d3 = -100.77476796035525, -0.6838185833621794, -0.012093191888904656 xmin, xmax = log(1-Tmin/Tc), log(1-Tmax/Tc) offset, scale = polynomial_offset_scale(xmin, xmax) T = 500.0 calc = horner_stable_ln_tau(T, Tc, coeffs, offset, scale) assert_close(expect, calc) calc2 = horner_stable_ln_tau_and_der(T, Tc, coeffs, offset, scale) assert_close(expect, calc2[0]) assert_close(expect_d, calc2[1]) calc3 = horner_stable_ln_tau_and_der2(T, Tc, coeffs, offset, scale) assert_close(expect, calc3[0]) assert_close(expect_d, calc3[1]) assert_close(expect_d2, calc3[2]) calc4 = horner_stable_ln_tau_and_der3(T, Tc, coeffs, offset, scale) assert_close(expect, calc4[0]) assert_close(expect_d, calc4[1]) assert_close(expect_d2, calc4[2]) assert_close(expect_d3, calc4[3]) def test_chebval_ln_tau(): Tmin, Tmax = 178.18, 591.0 Tc = 591.75 coeffs = [18231.740838720892, -18598.514785409734, 5237.841944302821, -1010.5549489362293, 147.88312821848922, -17.412144225239444, 1.7141064359038864, -0.14493639179363527, 0.01073811633477817, -0.0007078634084791702, 4.202655964036239e-05, -2.274648068123497e-06, 1.1239490049774759e-07] T = 500 xmin, xmax = log(1-Tmin/Tc), log(1-Tmax/Tc) offset, scale = polynomial_offset_scale(xmin, xmax) coeffs_d = chebder(coeffs, m=1, scl=scale) coeffs_d2 = chebder(coeffs_d, m=1, scl=scale) coeffs_d3 = chebder(coeffs_d2, m=1, scl=scale) calc = chebval_ln_tau(T, Tc, coeffs, offset, scale) assert 0 == chebval_ln_tau(600, Tc, coeffs, offset, scale) expect = 24498.131947622023 expect_d, expect_d2, expect_d3 = -100.77476795241955, -0.6838185834436981, -0.012093191904152178 assert_close(expect, calc) calc2 = chebval_ln_tau_and_der(T, Tc, coeffs, coeffs_d, offset, scale) assert (0,0) == chebval_ln_tau_and_der(600, Tc, coeffs, coeffs_d, offset, scale) assert_close(expect, calc2[0]) assert_close(expect_d, calc2[1]) calc3 = chebval_ln_tau_and_der2(T, Tc, coeffs, coeffs_d, coeffs_d2, offset, scale) assert (0,0,0) == chebval_ln_tau_and_der2(600, Tc, coeffs, coeffs_d, coeffs_d2, offset, scale) assert_close(expect, calc3[0]) assert_close(expect_d, calc3[1]) assert_close(expect_d2, calc3[2]) calc4 = chebval_ln_tau_and_der3(T, Tc, coeffs, coeffs_d, coeffs_d2, coeffs_d3, offset, scale) assert (0,0,0,0) == chebval_ln_tau_and_der3(600, Tc, coeffs, coeffs_d, coeffs_d2, coeffs_d3, offset, scale) assert_close(expect, calc4[0]) assert_close(expect_d, calc4[1]) assert_close(expect_d2, calc4[2]) assert_close(expect_d3, calc4[3]) def test_exp_cheb(): xmin, xmax = (309.0, 591.72) coeffs = [12.570668791524573, 3.1092695610681673, -0.5485217707981505, 0.11115875762247596, -0.01809803938553478, 0.003674911307077089, -0.00037626163070525465, 0.0001962813915017403, 6.120764548889213e-05, 3.602752453735203e-05] x = 400.0 offset, scale = polynomial_offset_scale(xmin, xmax) expect = 157186.81766860923 calc = exp_cheb(x, coeffs, offset, scale) assert_close(calc, expect, rtol=1e-14) coeffs_d = chebder(coeffs, m=1, scl=scale) coeffs_d2 = chebder(coeffs_d, m=1, scl=scale) coeffs_d3 = chebder(coeffs_d2, m=1, scl=scale) der_num = derivative(exp_cheb, x, args=(coeffs, offset, scale), dx=x*1e-7) der_analytical = exp_cheb_and_der(x, coeffs, coeffs_d, offset, scale)[1] assert_close(der_num, der_analytical, rtol=1e-7) assert_close(der_analytical, 4056.277312107932, rtol=1e-14) der_num = derivative(lambda *args: exp_cheb_and_der(*args)[1], x, args=(coeffs, coeffs_d, offset, scale), dx=x*1e-7) der_analytical = exp_cheb_and_der2(x, coeffs, coeffs_d, coeffs_d2, offset, scale)[-1] assert_close(der_analytical, 81.34302144188977, rtol=1e-14) assert_close(der_num, der_analytical, rtol=1e-7) der_num = derivative(lambda *args: exp_cheb_and_der2(*args)[-1], x, args=(coeffs, coeffs_d, coeffs_d2, offset, scale), dx=x*1e-7) der_analytical = exp_cheb_and_der3(x, coeffs, coeffs_d, coeffs_d2, coeffs_d3, offset, scale)[-1] assert_close(der_num, der_analytical, rtol=1e-7) assert_close(der_analytical, 1.105438780935656, rtol=1e-14) vals = exp_cheb_and_der3(x, coeffs, coeffs_d, coeffs_d2, coeffs_d3, offset, scale) assert_close1d(vals, (157186.81766860923, 4056.277312107932, 81.34302144188977, 1.105438780935656), rtol=1e-14) vals = exp_cheb_and_der2(x, coeffs, coeffs_d, coeffs_d2, offset, scale) assert_close1d(vals, (157186.81766860923, 4056.277312107932, 81.34302144188977), rtol=1e-14) vals = exp_cheb_and_der(x, coeffs, coeffs_d, offset, scale) assert_close1d(vals, (157186.81766860923, 4056.277312107932), rtol=1e-14) def test_exp_stablepoly_fit(): xmin, xmax = 309.0, 591.72 coeffs = [0.008603558174828078, 0.007358688688856427, -0.016890323025782954, -0.005289197721114957, -0.0028824712174469625, 0.05130960832946553, -0.12709896610233662, 0.37774977659528036, -0.9595325030688526, 2.7931528759840174, 13.10149649770156] x = 400 offset, scale = polynomial_offset_scale(xmin, xmax) expect = 157191.01706242564 calc = exp_horner_stable(x, coeffs, offset, scale) assert_close(calc, expect, rtol=1e-14) der_num = derivative(exp_horner_stable, x, args=(coeffs, offset, scale), dx=x*1e-7) der_analytical = exp_horner_stable_and_der(x, coeffs, offset, scale)[1] assert_close(der_num, der_analytical, rtol=1e-7) assert_close(der_analytical, 4056.436943642117, rtol=1e-14) der_num = derivative(lambda *args: exp_horner_stable_and_der(*args)[1], x, args=(coeffs, offset, scale), dx=x*1e-7) der_analytical = exp_horner_stable_and_der2(x, coeffs, offset, scale)[-1] assert_close(der_analytical, 81.32645570045084, rtol=1e-14) assert_close(der_num, der_analytical, rtol=1e-7) der_num = derivative(lambda *args: exp_horner_stable_and_der2(*args)[-1], x, args=(coeffs, offset, scale), dx=x*1e-7) der_analytical = exp_horner_stable_and_der3(x, coeffs, offset, scale)[-1] assert_close(der_num, der_analytical, rtol=1e-7) assert_close(der_analytical, 1.103603650822488, rtol=1e-14) vals = exp_horner_stable_and_der3(x, coeffs, offset, scale) assert_close1d(vals, (157191.01706242564, 4056.436943642117, 81.32645570045084, 1.103603650822488), rtol=1e-14) vals = exp_horner_stable_and_der2(x, coeffs, offset, scale) assert_close1d(vals, (157191.01706242564, 4056.436943642117, 81.32645570045084), rtol=1e-14) vals = exp_horner_stable_and_der(x, coeffs, offset, scale) assert_close1d(vals, (157191.01706242564, 4056.436943642117), rtol=1e-14) def test_horner_domain(): test_stable_coeffs = [28.0163226043884, 24.92038363551981, -7.469247118451516, 16.400149851861975, 67.52558234042988, 176.7837155284216] xmin, xmax = (162.0, 570.0) x = 300 expect = 157.0804912518053 calc = horner_domain(x, test_stable_coeffs, xmin, xmax) assert_close(calc, expect, rtol=1e-14) offset, scale = polynomial_offset_scale(xmin, xmax) calc = horner_stable(x, test_stable_coeffs, offset, scale) assert_close(calc, expect, rtol=1e-14) der_num = derivative(horner_stable, x, args=(test_stable_coeffs, offset, scale), dx=x*1e-7) der_analytical = horner_stable_and_der(x, test_stable_coeffs, offset, scale)[1] assert_close(der_analytical, 0.25846754626830115, rtol=1e-14) assert_close(der_num, der_analytical, rtol=1e-7) der_num = derivative(lambda *args: horner_stable_and_der(*args)[1], x, args=(test_stable_coeffs, offset, scale), dx=x*1e-7) der_analytical = horner_stable_and_der2(x, test_stable_coeffs, offset, scale)[2] assert_close(der_analytical, 0.0014327609525395784, rtol=1e-14) assert_close(der_num, der_analytical, rtol=1e-7) der_num = derivative(lambda *args: horner_stable_and_der2(*args)[-1], x, args=(test_stable_coeffs, offset, scale), dx=x*1e-7) der_analytical = horner_stable_and_der3(x, test_stable_coeffs, offset, scale)[-1] assert_close(der_analytical, -7.345952769973301e-06, rtol=1e-14) assert_close(der_num, der_analytical, rtol=1e-7) der_num = derivative(lambda *args: horner_stable_and_der3(*args)[-1], x, args=(test_stable_coeffs, offset, scale), dx=x*1e-7) der_analytical = horner_stable_and_der4(x, test_stable_coeffs, offset, scale)[-1] assert_close(der_analytical, -2.8269861583547557e-07, rtol=1e-14) assert_close(der_num, der_analytical, rtol=1e-7) five_vals = horner_stable_and_der4(x, test_stable_coeffs, offset, scale) assert_close1d(five_vals, (157.0804912518053, 0.25846754626830115, 0.0014327609525395784, -7.345952769973301e-06, -2.8269861583547557e-07), rtol=1e-14) four_vals = horner_stable_and_der3(x, test_stable_coeffs, offset, scale) assert_close1d(four_vals, (157.0804912518053, 0.25846754626830115, 0.0014327609525395784, -7.345952769973301e-06), rtol=1e-14) three_vals = horner_stable_and_der2(x, test_stable_coeffs, offset, scale) assert_close1d(three_vals, (157.0804912518053, 0.25846754626830115, 0.0014327609525395784), rtol=1e-14) two_vals = horner_stable_and_der(x, test_stable_coeffs, offset, scale) assert_close1d(two_vals, (157.0804912518053, 0.25846754626830115), rtol=1e-14) def test_stable_poly_to_unstable(): stuff = [1,2,3,4] out = stable_poly_to_unstable(stuff, 10, 100) expect = [1.0973936899862826e-05, -0.0008230452674897121, 0.05761316872427985, 1.4951989026063095] assert_close1d(out, expect, rtol=1e-12) out = stable_poly_to_unstable(stuff, 10, 10) assert_close1d(out, stuff) def test_cheb(): Tmin, Tmax = 50, 1500.0 toluene_TRC_cheb_fit = [194.9993931442641, 135.143566535142, -31.391834328585, -0.03951841213554952, 5.633110876073714, -3.686554783541794, 1.3108038668007862, -0.09053861376310801, -0.2614279887767278, 0.24832452742026911, -0.15919652548841812, 0.09374295717647019, -0.06233192560577938, 0.050814520356653126, -0.046331125185531064, 0.0424579816955023, -0.03739513702085129, 0.031402017733109244, -0.025212485578021915, 0.01939423141593144, -0.014231480849538403, 0.009801281575488097, -0.006075456686871594, 0.0029909809015365996, -0.0004841890018462136, -0.0014991199985455728, 0.0030051480117581075, -0.004076901418829215, 0.004758297389532928, -0.005096275567543218, 0.00514099984344718, -0.004944736724873944, 0.004560044671604424, -0.004037777783658769, 0.0034252408915679267, -0.002764690626354871, 0.0020922734527478726, -0.0014374230267101273, 0.0008226963858916081, -0.00026400260413972365, -0.0002288377348015347, 0.0006512726893767029, -0.0010030137199867895, 0.0012869214641443305, -0.001507857723972772, 0.001671575150882565, -0.0017837100581746812, 0.001848935469520696, -0.0009351605848800237] toluene_TRC_cheb_fit_copy = [v for v in toluene_TRC_cheb_fit] offset, scale = polynomial_offset_scale(Tmin, Tmax) val = chebval(300, toluene_TRC_cheb_fit, offset, scale) assert_close(val, 104.46956642594124, rtol=1e-14) d1_coeffs = chebder(toluene_TRC_cheb_fit, m=1, scl=scale) d2_coeffs = chebder(toluene_TRC_cheb_fit, m=2, scl=scale) d2_2_coeffs = chebder(d1_coeffs, m=1, scl=scale) val = chebval(300, d1_coeffs, offset, scale) assert_close(val, 0.36241217517888635, rtol=1e-14) val = chebval(300, d2_coeffs, offset, scale) assert_close(val, -6.445511348110282e-06, rtol=1e-14) val = chebval(300, d2_2_coeffs, offset, scale) assert_close(val, -6.445511348110282e-06, rtol=1e-14) assert d2_2_coeffs == d2_coeffs int_coeffs = chebint(toluene_TRC_cheb_fit, m=1, lbnd=0, scl=1/scale) assert_close(chebval(300, int_coeffs, offset, scale), -83708.18079449862, rtol=1e-10) assert toluene_TRC_cheb_fit == toluene_TRC_cheb_fit_copy fluids-1.0.22/tests/test_design_climate.py0000644000175000017500000015360714302004506020140 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from numpy.testing import assert_allclose from fluids.numerics import assert_close, assert_close1d import pytest import numpy as np from fluids.design_climate import * from fluids.design_climate import _latlongs, stations import os try: import geopy has_geopy = True except: has_geopy = False data_dir_override = os.path.join(os.path.dirname(__file__), 'gsod') def test_heating_degree_days(): assert_close(heating_degree_days(273, truncate=False), -18.483333333333292) assert 0 == heating_degree_days(273, truncate=True) assert 0 == heating_degree_days(273) assert_close(heating_degree_days(273, T_base = 250), 23) assert_close(heating_degree_days(279, T_base=300, truncate=False), -21) def test_cooling_degree_days(): assert_close( cooling_degree_days(250), 33.15) assert 0 == cooling_degree_days(300) assert_close(cooling_degree_days(300, truncate=False), -16.85) assert_close(cooling_degree_days(250, T_base=300), 50) @pytest.mark.slow def test_month_average_temperature(): station = get_closest_station(38.8572, -77.0369) station_data = StationDataGSOD(station, data_dir_override=data_dir_override) Ts_calc = station_data.month_average_temperature(1990, 2000, include_yearly=False, minimum_days=23) Ts_expect = [276.1599380905833, 277.5375516246206, 281.1881231671554, 286.7367003367004, 291.8689638318671, 296.79545454545456, 299.51868686868687, 298.2097914630174, 294.4116161616162, 288.25883023786247, 282.3188552188553, 277.8282339524275] assert_close1d(Ts_calc, Ts_expect, rtol=1E-3) assert station_data.warmest_month(1990, 2000) == 6 assert station_data.coldest_month(1990, 2000) == 0 def test_IntegratedSurfaceDatabaseStation(): # Information confirmed elsewhere i.e. https://geographic.org/global_weather/not_specified_canada/calgary_intl_cs_713930_99999.html values = [713930.0, 99999.0, 'CALGARY INTL CS', 'CA', None, None, 51.1, -114.0, 1081.0, 20040921.0, 20150831.0] test_station = IntegratedSurfaceDatabaseStation(*values) for value, attr in zip(values, test_station.__slots__): assert value == getattr(test_station, attr) def test_data(): assert _latlongs.shape[0] >= 27591 for station in stations: assert abs(station.LAT) <= 90 assert abs(station.LON) <= 180 @pytest.mark.slow def test_correct_WBAN(): station = get_closest_station(31.9973, -102.0779) station_data = StationDataGSOD(station, data_dir_override=data_dir_override) assert station.WBAN == '03071' assert station_data.month_average_temperature(2010, 2011, include_yearly=False) def test_get_closest_station(): s = get_closest_station(51.02532675, -114.049868485806, 20150000) assert s.NAME == 'CALGARY INTL CS' with pytest.raises(Exception): get_closest_station(51.02532675, -114.049868485806, 90150000) sample_data_random_station_1999 = '''STN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 712650 99999 19990101 12.3 24 3.1 24 1022.8 24 1013.0 24 8.4 24 15.0 24 22.9 29.9 23.7 4.1 0.00G 999.9 001000 712650 99999 19990102 10.1 24 -0.6 24 1034.1 24 1024.1 24 6.8 24 12.7 24 29.9 35.0 23.0* 5.0* 0.00G 999.9 001000 712650 99999 19990103 28.1 24 24.9 24 1007.5 24 997.9 24 3.6 24 24.2 24 36.9 43.9 35.6* 21.2* 0.71G 999.9 001000 712650 99999 19990104 17.8 24 10.8 24 1011.0 24 1001.3 24 8.8 24 26.1 24 30.9 42.0 36.7 13.3 0.04G 999.9 001000 712650 99999 19990105 16.3 22 9.3 22 1022.9 22 1013.1 22 8.0 22 15.4 22 22.9 38.1 20.1 13.3 0.00G 999.9 001000 712650 99999 19990106 19.3 24 14.4 24 1016.3 24 1006.6 24 6.2 24 19.7 24 28.0 34.0 28.4* 10.4* 0.00G 999.9 001000 712650 99999 19990107 17.4 23 8.6 23 1019.5 23 1009.8 23 8.9 23 20.9 23 23.9 35.0 29.1 10.9 0.02G 999.9 001000 712650 99999 19990108 15.5 24 9.8 24 1026.3 24 1016.5 24 7.0 24 9.3 24 20.0 26.0 21.2* 10.4* 0.00G 999.9 001000 712650 99999 19990109 20.8 24 16.2 24 1012.1 24 1002.4 24 3.8 24 9.3 24 18.1 23.9 24.8* 19.4* 0.04G 999.9 001000 712650 99999 19990111 12.2 24 4.7 24 1016.8 24 1007.0 24 7.7 24 14.4 24 27.0 38.1 20.7 7.5 0.02G 999.9 000000 712650 99999 19990112 20.8 24 15.8 24 1011.8 24 1002.1 24 4.6 24 7.8 24 15.9 19.0 24.8 7.5 0.00G 999.9 001000 712650 99999 19990113 10.3 24 2.7 24 1026.1 24 1016.3 24 3.9 24 11.7 24 19.0 23.9 22.5* -0.4* 0.20G 999.9 001000 712650 99999 19990114 -0.7 24 -9.1 24 1034.7 24 1024.5 24 2.1 24 20.1 24 34.0 42.0 15.8* -7.6* 0.00G 999.9 001000 712650 99999 19990115 13.4 22 9.2 22 1016.2 22 1006.4 22 3.2 22 13.5 22 20.0 42.0 19.4* 8.6* 0.55G 999.9 001000 712650 99999 19990116 25.4 24 21.7 24 1009.2 24 999.7 24 5.6 24 18.8 24 26.0 32.1 35.6* 12.2* 0.02G 999.9 001000 712650 99999 19990117 33.3 24 28.0 24 1017.6 24 1008.1 24 6.1 24 8.9 24 19.0 32.1 37.4* 29.8* 0.16G 999.9 000000 712650 99999 19990118 36.6 24 33.9 24 1006.8 24 997.5 24 6.8 24 13.7 24 18.1 21.0 41.4 27.7 0.26G 999.9 010000 712650 99999 19990119 34.2 24 28.5 24 1006.3 24 996.9 24 8.7 24 22.6 24 30.9 36.9 41.4 32.5 0.02G 999.9 000000 712650 99999 19990120 32.3 24 25.8 24 1017.6 24 1008.2 24 8.5 24 12.1 24 20.0 38.1 33.8* 30.2* 0.00G 999.9 000000 712650 99999 19990121 32.0 24 27.5 24 1018.7 24 1009.3 24 7.2 24 4.6 24 11.1 21.0 37.4* 26.6* 0.00G 999.9 000000 712650 99999 19990122 34.0 19 31.6 19 1020.7 19 1011.2 19 6.7 19 21.5 19 28.9 37.9 36.7 26.1 0.02G 999.9 010000 712650 99999 19990123 40.1 24 39.1 24 1013.3 24 1003.9 24 4.8 24 9.9 24 21.0 39.0 48.2* 36.3* 0.33G 999.9 010000 712650 99999 19990124 38.9 24 34.0 24 1009.7 23 1000.3 23 7.7 24 14.4 24 22.9 28.9 48.2* 33.8* 0.12G 999.9 011000 712650 99999 19990125 31.7 23 24.9 23 1021.4 23 1011.8 23 6.3 23 8.1 23 18.1 31.1 41.7 29.3 0.00G 999.9 001000 712650 99999 19990126 31.3 24 23.7 24 1028.3 24 1018.6 24 9.0 24 11.2 24 18.1 25.1 32.7 27.3 0.00I 999.9 000000 712650 99999 19990127 30.5 23 25.8 23 1021.1 23 1011.5 23 6.0 23 11.3 23 23.9 32.1 34.3 22.1 0.00G 999.9 010000 712650 99999 19990128 28.2 23 25.9 23 1015.2 23 1005.7 23 4.4 23 15.0 23 23.9 32.1 34.3 22.1 0.08G 999.9 011000 712650 99999 19990129 21.9 24 16.4 24 1028.6 24 1018.8 24 7.8 24 4.1 24 9.9 21.0 31.3 18.3 0.02G 999.9 001000 712650 99999 19990130 30.1 23 22.0 23 1033.4 23 1023.7 23 7.9 23 9.1 23 14.0 18.1 33.8* 26.6* 0.02G 999.9 000000 712650 99999 19990131 27.4 24 16.6 24 1042.4 24 1032.6 24 9.0 24 9.9 24 15.0 21.0 34.0 24.6 0.00G 999.9 000000 712650 99999 19990201 28.0 24 24.4 24 1030.5 24 1022.4 4 7.4 24 8.5 24 15.9 18.1 33.8* 23.0* 0.00G 999.9 000000 712650 99999 19990202 34.9 24 34.3 24 1012.5 22 1004.2 4 1.7 24 8.7 24 15.0 20.0 37.4* 33.6* 0.04G 999.9 010000 712650 99999 19990203 36.9 24 32.0 24 1009.6 24 998.9 4 9.0 24 12.5 24 16.9 25.1 40.3 33.4 0.14G 999.9 000000 712650 99999 19990204 37.2 24 32.1 24 1008.1 21 998.7 4 8.6 24 9.3 24 21.0 33.0 39.6* 33.8* 0.00G 999.9 010000 712650 99999 19990205 25.7 23 14.5 23 1027.2 23 9999.9 0 9.0 23 9.5 23 23.9 35.9 41.4 21.2 0.06G 999.9 000000 712650 99999 19990206 33.5 24 27.4 24 1014.9 21 1006.3 4 6.8 24 6.7 24 11.1 20.0 39.2* 27.9* 0.00G 999.9 001000 712650 99999 19990207 33.7 24 25.9 24 1015.5 22 1006.2 4 8.4 24 10.0 24 25.1 28.0 37.4* 30.2* 0.02G 999.9 000000 712650 99999 19990208 26.8 21 16.6 21 1016.7 21 9999.9 0 9.0 21 7.2 21 15.9 29.9 34.5 19.8 0.00G 999.9 000000 712650 99999 19990209 38.2 23 30.3 23 1012.0 23 1003.0 4 8.5 23 13.1 23 22.9 28.9 48.2* 32.0* 0.00G 999.9 000000 712650 99999 19990210 37.2 24 26.4 24 1020.4 24 1009.4 4 9.0 24 9.8 24 16.9 35.9 48.4 30.7 0.02G 999.9 000000 712650 99999 19990211 35.6 24 32.6 24 1020.1 23 1011.9 4 8.0 24 9.2 24 15.0 24.1 41.5 30.2 0.00G 999.9 010000 712650 99999 19990212 38.8 24 34.8 24 1006.6 24 997.3 4 7.5 24 13.7 24 25.1 40.0 50.0 31.3 0.02G 999.9 011000 712650 99999 19990213 25.2 24 15.8 24 1013.8 21 1002.8 4 8.1 24 18.3 24 22.9 45.1 32.0* 20.8* 0.18G 999.9 001000 712650 99999 19990214 23.0 24 7.9 24 1028.4 24 1018.2 4 9.0 24 7.6 24 15.0 32.1 32.0* 16.9* 0.00G 999.9 000000 712650 99999 19990215 34.5 21 26.4 21 1021.5 18 1013.0 4 8.9 21 11.6 21 18.1 999.9 41.0* 30.2* 0.00I 999.9 000000 712650 99999 19990216 36.6 24 32.6 24 1016.2 24 1007.4 4 7.6 24 7.6 24 14.0 20.0 42.3 28.9 0.00G 999.9 000000 712650 99999 19990217 37.4 24 33.3 24 1010.6 20 1001.2 4 5.8 24 12.8 24 22.0 28.0 42.3 31.6 0.06G 999.9 010000 712650 99999 19990218 33.2 24 24.0 24 1014.6 23 1004.7 4 8.3 24 10.1 24 15.9 24.1 41.2 29.8 0.02G 999.9 000000 712650 99999 19990219 24.7 24 11.2 24 1019.0 24 1009.2 4 9.0 24 8.5 24 12.0 19.0 34.2 19.0 0.00G 999.9 000000 712650 99999 19990220 23.6 24 11.2 24 1020.3 23 1010.4 4 9.0 24 8.8 24 13.0 16.9 30.2* 18.9* 0.00I 999.9 000000 712650 99999 19990221 21.0 24 2.7 24 1023.8 24 1013.6 4 9.0 24 12.6 24 15.9 26.0 30.6 15.4 0.00G 999.9 000000 712650 99999 19990222 13.1 23 -9.4 23 1031.8 23 1021.4 4 8.9 23 8.2 23 15.9 25.1 26.2 4.5 0.00G 999.9 000000 712650 99999 19990223 18.9 24 1.1 24 1032.5 24 1022.8 4 8.9 24 10.1 24 18.1 21.0 25.7 4.5 0.02G 999.9 000000 712650 99999 19990224 26.5 23 13.4 23 1028.9 22 1019.8 4 8.9 23 13.4 23 18.1 23.9 32.0* 21.2* 0.00G 999.9 000000 712650 99999 19990225 33.4 24 22.1 24 1021.3 24 1012.3 4 9.0 24 11.0 24 20.0 999.9 35.6* 32.0* 0.00I 999.9 000000 712650 99999 19990226 33.5 24 20.7 24 1021.9 24 1012.3 4 9.0 24 7.5 24 12.0 24.1 42.6 26.1 0.00G 999.9 000000 712650 99999 19990227 32.8 24 26.0 24 1017.3 24 1008.7 4 4.7 24 7.1 24 16.9 999.9 42.6 25.9 0.00I 999.9 000000 712650 99999 19990228 37.7 24 35.8 24 998.6 23 990.9 4 4.3 24 11.6 24 16.9 22.0 41.9 25.9 0.37G 999.9 010000 712650 99999 19990301 36.3 24 32.1 24 994.7 23 985.0 4 6.8 24 10.2 24 22.0 35.0 41.0* 32.0* 0.10G 999.9 010000 712650 99999 19990302 33.2 24 19.5 24 1005.5 23 9999.9 0 9.0 24 13.2 24 21.0 30.9 41.0* 24.8* 0.00G 999.9 001000 712650 99999 19990303 34.6 24 31.5 24 1004.4 24 996.3 4 5.6 24 11.8 24 21.0 29.9 42.3 25.0 0.02G 999.9 010000 712650 99999 19990304 28.0 24 18.7 24 1003.4 24 991.9 4 9.0 24 21.1 24 29.9 39.0 36.7 24.8 0.33G 999.9 001000 712650 99999 19990305 23.1 24 10.9 24 1026.0 24 1015.0 4 9.0 24 9.2 24 19.0 42.0 31.8 17.6 0.02G 999.9 000000 712650 99999 19990306 20.1 24 13.9 24 1023.4 21 1014.4 4 2.2 24 19.0 24 27.0 35.0 27.0 15.3 0.06G 999.9 001000 712650 99999 19990307 13.8 24 -2.9 24 1034.1 24 1022.7 4 8.7 24 13.2 24 22.0 36.9 25.3 6.6 0.04G 999.9 001000 712650 99999 19990308 18.6 24 3.4 24 1040.4 24 1030.7 4 9.0 24 6.2 24 9.9 28.9 26.6 6.6 0.00G 999.9 000000 712650 99999 19990309 24.0 24 10.8 24 1029.5 23 1021.2 4 9.0 24 12.3 24 25.1 29.9 27.5 10.9 0.00G 999.9 001000 712650 99999 19990310 24.4 24 5.7 24 1020.0 24 1010.5 4 9.0 24 10.9 24 15.9 32.1 28.4* 18.5* 0.06G 999.9 000000 712650 99999 19990311 28.9 24 14.6 24 1020.3 24 1010.8 4 9.0 24 11.0 24 19.0 28.0 33.8* 25.9* 0.02G 999.9 000000 712650 99999 19990312 28.2 24 13.8 24 1022.6 24 1012.6 4 9.0 24 13.5 24 19.0 28.9 34.0 22.8 0.00G 999.9 000000 712650 99999 19990313 29.5 24 12.7 24 1027.6 24 1017.9 4 9.0 24 7.9 24 14.0 28.9 35.4 22.8 0.00G 999.9 000000 712650 99999 19990314 32.4 24 17.6 24 1022.5 24 1013.8 4 9.0 24 9.8 24 15.0 22.0 35.4 23.5 0.00G 999.9 000000 712650 99999 19990315 34.1 24 15.5 24 1016.4 24 1007.3 4 9.0 24 7.5 24 15.9 21.0 42.8* 28.4* 0.00G 999.9 000000 712650 99999 19990316 37.0 24 22.3 24 1011.8 24 1003.3 4 9.0 24 11.1 24 26.0 999.9 42.8* 32.0* 0.00G 999.9 000000 712650 99999 19990317 39.8 24 33.0 24 1007.6 24 998.9 4 6.1 24 7.2 24 15.0 32.1 50.0* 34.9* 0.00G 999.9 000000 712650 99999 19990318 43.5 24 32.8 24 1004.3 24 994.1 4 8.9 24 17.5 24 34.0 41.0 52.5 33.6 0.00G 999.9 000000 712650 99999 19990319 35.3 24 22.5 24 1021.6 24 1010.9 4 9.0 24 12.8 24 18.1 41.0 47.5 29.3 0.02G 999.9 000000 712650 99999 19990320 32.9 24 23.4 24 1025.4 24 1016.4 4 9.0 24 6.8 24 13.0 22.0 43.3 27.0 0.00G 999.9 000000 712650 99999 19990321 38.0 24 31.7 24 1012.5 24 1004.6 4 8.9 24 11.0 24 18.1 999.9 42.8* 35.6* 99.99 999.9 010000 712650 99999 19990322 35.9 24 29.4 24 1005.4 23 996.1 4 7.8 24 15.6 24 27.0 34.0 43.9 32.9 99.99 999.9 011000 712650 99999 19990323 35.3 24 23.0 24 1015.7 24 1005.3 4 9.0 24 15.4 24 22.9 36.9 43.0 29.7 0.02G 999.9 000000 712650 99999 19990324 39.1 24 26.8 24 1014.2 24 1004.8 4 8.9 24 9.6 24 15.9 26.0 46.4* 34.9* 0.00G 999.9 000000 712650 99999 19990325 33.0 24 18.2 24 1022.4 22 9999.9 0 9.0 24 9.2 24 15.0 22.0 49.1 27.7 0.00G 999.9 001000 712650 99999 19990326 33.3 24 22.8 24 1026.8 24 1017.1 4 9.0 24 7.6 24 13.0 21.0 39.2* 26.6* 0.00G 999.9 001000 712650 99999 19990327 37.3 24 25.6 24 1026.6 24 1017.2 4 9.0 24 2.5 24 7.0 999.9 45.5 27.0 0.00I 999.9 000000 712650 99999 19990328 41.9 24 24.2 24 1021.7 24 1013.0 4 9.0 24 3.6 24 8.0 999.9 50.5 29.1 0.00I 999.9 000000 712650 99999 19990329 47.4 24 29.6 24 1016.6 24 1007.4 4 8.9 24 11.1 24 21.0 30.9 59.9 32.5 0.00I 999.9 000000 712650 99999 19990330 44.7 24 28.6 24 1022.6 24 1012.8 4 9.0 24 10.5 24 21.0 33.0 59.9 36.3 0.02G 999.9 000000 712650 99999 19990331 46.0 24 32.9 24 1018.4 24 1009.9 4 9.0 24 8.6 24 15.0 17.1 55.6 37.4 0.00G 999.9 000000 712650 99999 19990401 46.9 24 41.6 24 1013.6 23 9999.9 0 5.3 24 3.6 24 14.0 999.9 56.3 37.9 0.00I 999.9 000000 712650 99999 19990402 42.7 24 40.9 24 1017.8 22 1007.9 4 3.2 24 9.6 24 16.9 20.0 52.3 38.8 0.00I 999.9 000000 712650 99999 19990403 43.0 24 33.9 24 1016.1 24 1007.3 4 9.0 24 9.0 24 15.0 24.1 48.0 38.8 0.00G 999.9 000000 712650 99999 19990404 42.7 24 35.4 24 1016.1 23 1006.1 4 8.1 24 10.0 24 18.1 999.9 57.0 38.7 99.99 999.9 010000 712650 99999 19990405 38.8 23 23.5 23 1026.1 23 1016.1 4 8.9 23 13.3 23 19.0 27.0 57.0 33.8 0.06G 999.9 000000 712650 99999 19990406 42.6 24 35.7 24 1016.0 24 1009.1 4 8.9 24 14.5 24 21.0 27.0 50.0* 39.2* 0.00G 999.9 010000 712650 99999 19990407 48.8 24 36.6 24 1015.0 24 1004.7 4 9.0 24 16.1 24 25.1 36.9 57.0 38.8 0.12G 999.9 000000 712650 99999 19990408 51.4 23 37.9 23 1010.0 23 9999.9 0 8.4 23 10.9 23 22.9 34.0 64.4* 39.2* 0.00G 999.9 010000 712650 99999 19990409 44.9 24 31.2 24 1009.2 24 1000.5 4 9.0 24 14.4 24 20.0 33.0 64.6 39.0 0.06G 999.9 000000 712650 99999 19990410 42.3 24 23.7 24 1017.0 24 1006.3 4 9.0 24 8.6 24 14.0 27.0 48.7 36.3 0.00G 999.9 000000 712650 99999 19990411 38.0 24 30.0 24 1015.3 24 1007.0 4 8.1 24 20.3 24 35.0 42.0 41.2* 33.8* 0.00G 999.9 010000 712650 99999 19990412 43.0 23 25.8 23 1014.4 22 1003.8 4 8.9 23 12.4 23 19.0 42.9 52.2 32.9 0.12G 999.9 011000 712650 99999 19990413 45.6 24 18.7 24 1017.8 24 1008.8 4 9.0 24 12.2 24 16.9 25.1 56.5 36.0 0.02G 999.9 000000 712650 99999 19990414 50.2 23 22.0 23 1012.4 23 1003.5 4 8.9 23 10.5 23 16.9 28.9 64.4 36.0 0.00G 999.9 000000 712650 99999 19990415 47.2 24 28.2 24 1008.4 24 1000.0 4 9.0 24 6.5 24 12.0 29.9 65.7 38.1 0.00G 999.9 000000 712650 99999 19990416 43.0 24 32.4 24 998.6 24 990.0 4 8.6 24 15.3 24 25.1 30.9 51.1 38.8 0.00G 999.9 010000 712650 99999 19990417 43.2 24 38.8 24 1002.0 22 9999.9 0 8.5 24 6.9 24 12.0 33.0 51.8* 40.5* 0.14G 999.9 000000 712650 99999 19990418 45.0 24 36.6 24 1010.7 22 1000.7 4 9.0 24 7.1 24 15.9 19.0 51.8* 37.4* 0.00G 999.9 010000 712650 99999 19990419 44.2 24 39.3 24 1015.5 23 1006.1 4 8.4 24 6.4 24 13.0 22.0 51.6 37.9 0.02G 999.9 010000 712650 99999 19990420 45.7 23 32.9 23 1015.5 23 1006.0 4 8.9 23 6.8 22 9.9 15.0 55.0 40.1 0.00G 999.9 010000 712650 99999 19990421 45.8 24 35.8 24 1015.9 24 1006.9 4 8.7 24 5.0 24 11.1 17.1 55.0 38.1 0.02G 999.9 000000 712650 99999 19990422 46.9 24 39.8 24 1014.5 21 1004.6 4 7.4 24 7.8 24 14.0 999.9 55.8 38.1 0.00G 999.9 010000 712650 99999 19990423 45.1 24 35.6 24 1018.4 24 1008.6 4 7.1 24 10.7 24 18.1 22.0 50.0 42.4 0.75G 999.9 010000 712650 99999 19990424 43.6 24 17.3 24 1027.5 24 1017.2 4 9.0 24 9.6 24 15.0 27.0 53.6* 33.8* 0.06G 999.9 000000 712650 99999 19990425 45.4 24 24.3 24 1023.8 24 1015.5 4 9.0 24 11.1 24 21.0 26.0 62.6* 37.4* 0.02G 999.9 000000 712650 99999 19990426 53.5 24 32.5 24 1012.2 24 1003.3 4 9.0 24 11.6 24 18.1 26.0 65.1 36.7 0.00G 999.9 000000 712650 99999 19990427 46.4 24 28.6 24 1019.9 24 1009.4 4 9.0 24 8.9 24 13.0 29.9 65.1 41.0 0.00G 999.9 000000 712650 99999 19990428 48.8 24 33.4 24 1025.6 24 9999.9 0 9.0 24 12.3 24 21.0 26.0 51.8* 46.4* 0.00G 999.9 000000 712650 99999 19990429 51.7 24 30.7 24 1026.9 24 9999.9 0 9.0 24 7.3 24 12.0 18.1 55.9 45.5 0.00I 999.9 000000 712650 99999 19990430 54.4 24 28.9 24 1027.0 24 1017.7 4 9.0 24 5.5 24 11.1 18.1 59.4 46.6 0.00G 999.9 000000 712650 99999 19990501 55.9 24 30.6 24 1025.1 24 1016.0 4 9.0 24 4.2 24 8.0 999.9 62.6* 50.0* 0.00I 999.9 000000 712650 99999 19990502 57.4 24 37.8 24 1022.9 24 1013.8 4 9.0 24 3.6 24 8.0 999.9 68.7 45.7 0.00I 999.9 000000 712650 99999 19990503 59.9 24 39.3 24 1020.3 24 1011.3 4 9.0 24 6.9 24 11.1 999.9 68.9 45.7 0.00I 999.9 000000 712650 99999 19990504 59.5 24 40.8 24 1016.0 24 1007.0 4 9.0 24 4.2 24 11.1 999.9 67.6 50.0 0.00I 999.9 000000 712650 99999 19990505 59.7 23 49.5 23 1012.7 23 9999.9 0 9.0 23 11.4 23 19.0 25.1 67.6 50.0 0.00I 999.9 000000 712650 99999 19990506 59.0 24 52.7 24 1009.0 24 1000.4 4 8.2 24 13.0 24 20.0 26.0 65.5 48.2 0.00G 999.9 000000 712650 99999 19990507 57.8 24 53.0 24 1009.6 23 1000.0 4 7.7 24 6.9 24 12.0 27.0 64.2 48.2 0.00G 999.9 010000 712650 99999 19990508 55.2 24 53.4 24 1007.8 24 999.0 4 4.9 24 7.7 24 13.0 21.0 62.2 49.3 99.99 999.9 010000 712650 99999 19990509 55.0 24 47.3 24 1012.3 24 9999.9 0 7.5 24 10.3 24 19.0 22.0 62.1 49.3 0.20G 999.9 010000 712650 99999 19990510 49.6 24 36.8 24 1020.9 24 9999.9 0 9.0 24 6.3 24 13.0 24.1 61.3 40.5 0.06G 999.9 000000 712650 99999 19990511 52.2 24 37.1 24 1025.2 24 1015.6 4 9.0 24 10.0 24 18.1 999.9 57.9 40.5 0.00G 999.9 000000 712650 99999 19990512 51.5 24 32.4 24 1021.5 24 1012.9 4 9.0 24 5.6 24 15.0 26.0 57.6 42.4 0.00G 999.9 000000 712650 99999 19990513 50.1 22 29.9 22 1017.5 22 1008.1 4 8.9 22 9.6 22 16.9 20.0 57.6 42.4 0.00G 999.9 000000 712650 99999 19990514 54.0 22 36.7 22 1022.2 19 9999.9 0 9.0 22 13.6 22 20.0 25.1 57.2* 50.0* 0.00I 999.9 000000 712650 99999 19990515 57.2 24 41.9 24 1024.7 24 1015.3 4 9.0 24 7.2 24 11.1 26.0 60.8 49.5 0.00G 999.9 000000 712650 99999 19990516 57.9 24 45.2 24 1023.1 24 1014.0 4 9.0 24 8.6 24 12.0 999.9 62.8 48.6 0.00I 999.9 000000 712650 99999 19990517 57.7 24 48.1 24 1018.9 24 1010.2 4 9.0 24 8.9 24 14.0 17.1 64.6 48.6 0.00G 999.9 000000 712650 99999 19990518 61.1 24 53.6 24 1013.8 24 1005.2 4 8.8 24 7.6 24 14.0 19.0 66.2* 57.2* 0.00G 999.9 010000 712650 99999 19990519 58.8 24 51.6 24 1016.1 22 9999.9 0 7.2 24 8.9 24 14.0 22.0 68.0* 51.4* 0.26G 999.9 010000 712650 99999 19990520 55.2 24 44.1 24 1023.3 24 1013.8 4 9.0 24 6.2 24 11.1 25.1 68.2 45.1 0.18G 999.9 000000 712650 99999 19990521 57.5 24 50.0 24 1020.4 24 1011.6 4 8.2 24 4.0 24 11.1 999.9 67.1 45.1 0.00G 999.9 000000 712650 99999 19990522 60.2 24 50.6 24 1014.7 24 1005.9 4 8.9 24 5.5 24 12.0 999.9 67.1 50.0 0.00I 999.9 000000 712650 99999 19990523 62.4 22 52.7 22 1012.3 22 9999.9 0 8.9 22 5.6 22 11.1 999.9 69.8 55.8 0.00I 999.9 000000 712650 99999 19990524 57.2 24 53.4 24 999.1 22 9999.9 0 7.1 24 6.6 24 15.0 22.0 60.8* 53.6* 99.99 999.9 010000 712650 99999 19990525 50.4 22 44.3 22 999.2 22 989.7 4 8.8 22 18.1 22 22.9 29.9 55.0* 48.2* 0.41G 999.9 010000 712650 99999 19990526 51.7 24 46.7 24 1005.2 22 995.1 4 9.0 24 11.5 24 20.0 35.9 57.2* 47.7* 0.20G 999.9 010000 712650 99999 19990527 56.0 24 42.7 24 1013.1 24 1003.6 4 9.0 24 8.0 24 15.0 20.0 75.2* 42.8* 0.02G 999.9 000000 712650 99999 19990528 57.1 23 46.4 23 1014.9 23 1005.4 4 8.9 23 6.8 23 13.0 15.9 74.3 42.4 0.00G 999.9 000000 712650 99999 19990529 65.9 24 48.9 24 1018.7 23 1009.1 4 8.9 23 4.6 24 8.9 999.9 79.2 46.4 0.00I 999.9 000000 712650 99999 19990530 64.0 23 53.0 23 1021.1 23 1011.8 4 6.9 22 3.8 23 12.0 999.9 79.3 52.9 0.00I 999.9 000000 712650 99999 19990531 64.7 24 55.2 24 1017.1 24 1008.4 4 8.1 24 2.8 24 7.0 999.9 80.2 52.9 99.99 999.9 010000 712650 99999 19990601 61.3 24 59.3 24 1012.0 22 1003.2 4 2.9 24 5.5 24 12.0 999.9 73.8 57.6 99.99 999.9 010000 712650 99999 19990602 63.5 24 62.4 24 1010.4 15 9999.9 0 2.1 24 3.4 24 8.0 999.9 67.6 57.7 99.99 999.9 010000 712650 99999 19990603 61.4 24 55.6 24 1012.6 21 1001.5 4 7.4 24 11.3 24 16.9 21.0 67.8 57.9 0.00I 999.9 000000 712650 99999 19990604 59.4 23 46.2 23 1021.8 23 1012.1 4 8.9 23 6.4 23 9.9 25.1 65.5 52.5 0.02G 999.9 000000 712650 99999 19990605 58.6 24 45.9 24 1020.7 23 1011.6 4 9.0 24 8.0 24 13.0 999.9 66.6 52.5 0.00G 999.9 010000 712650 99999 19990606 63.2 24 56.3 24 1017.2 24 1008.4 4 7.2 24 6.2 24 15.0 999.9 72.0 52.5 0.00I 999.9 000000 712650 99999 19990607 66.6 24 62.2 24 1014.8 23 1005.9 4 4.4 24 4.7 24 22.9 41.0 77.7 52.5 0.00G 999.9 010000 712650 99999 19990608 72.4 24 59.7 24 1010.9 24 9999.9 0 8.8 24 11.1 24 25.1 41.0 84.2* 57.2* 0.33G 999.9 000000 712650 99999 19990609 68.0 23 58.2 23 1015.3 19 1006.0 4 8.9 23 7.0 23 16.9 31.1 84.2 57.0 0.02G 999.9 000000 712650 99999 19990610 65.0 23 59.5 23 1020.2 21 1010.6 4 8.8 23 13.9 23 18.1 21.0 72.1 60.8 0.00G 999.9 000000 712650 99999 19990611 65.9 24 61.1 24 1021.1 24 1011.8 4 6.3 24 9.9 24 15.9 24.1 71.6* 60.8* 0.00G 999.9 000000 712650 99999 19990612 68.4 24 62.2 24 1021.1 24 1012.0 4 6.6 24 7.6 24 13.0 18.1 73.6 60.3 0.00G 999.9 010000 712650 99999 19990613 69.0 24 60.3 24 1019.1 24 1010.4 4 9.0 24 5.8 24 11.1 999.9 74.5 60.6 0.00I 999.9 000000 712650 99999 19990614 68.4 24 62.2 24 1011.5 19 9999.9 0 7.9 24 9.6 24 22.9 27.0 73.6 61.2 99.99 999.9 010000 712650 99999 19990615 58.0 24 43.5 24 1018.2 24 1007.8 4 9.0 24 11.8 24 15.9 28.0 73.4 49.1 0.22G 999.9 000000 712650 99999 19990616 56.5 24 41.5 24 1022.4 24 1013.2 4 9.0 24 3.8 24 8.0 22.0 63.3 48.7 0.00G 999.9 000000 712650 99999 19990617 59.0 24 46.8 24 1020.8 24 1011.2 4 9.0 24 4.0 24 8.9 999.9 64.6 48.7 0.00I 999.9 000000 712650 99999 19990618 58.9 24 49.6 24 1024.7 24 1015.2 4 9.0 24 8.1 24 14.0 15.0 66.2* 50.0* 0.00I 999.9 000000 712650 99999 19990619 62.9 24 53.5 24 1027.8 24 1018.2 4 9.0 24 2.4 24 7.0 999.9 71.6* 53.6* 0.00I 999.9 000000 712650 99999 19990620 66.2 24 56.4 24 1026.6 24 1017.7 4 9.0 24 6.0 24 8.0 999.9 73.4* 62.6* 0.00I 999.9 000000 712650 99999 19990621 68.0 23 55.6 23 1025.0 23 1015.8 4 8.9 23 4.5 23 7.0 999.9 75.2* 60.8* 0.00I 999.9 000000 712650 99999 19990622 69.3 23 54.3 23 1022.8 23 9999.9 0 9.0 23 4.5 23 8.9 999.9 75.9 59.2 0.00I 999.9 000000 712650 99999 19990623 71.0 23 60.8 23 1018.1 23 1009.6 4 8.9 23 5.8 23 8.0 999.9 82.4* 66.2* 0.00I 999.9 000000 712650 99999 19990624 72.0 23 63.1 23 1013.3 22 1004.5 4 8.7 23 5.3 23 8.9 999.9 82.0 65.5 99.99 999.9 010000 712650 99999 19990625 72.3 24 67.7 24 1011.4 22 1002.2 4 6.9 24 6.6 24 15.9 999.9 78.3 66.9 99.99 999.9 010000 712650 99999 19990626 74.1 21 61.7 21 1013.6 21 9999.9 0 9.0 21 5.1 21 9.9 999.9 83.1* 66.2* 99.99 999.9 010000 712650 99999 19990627 73.3 24 65.5 24 1011.3 22 1002.7 4 8.3 24 6.4 24 13.0 999.9 84.2 66.4 99.99 999.9 010000 712650 99999 19990628 74.8 23 70.1 23 1005.2 22 996.7 4 5.4 23 5.7 23 9.9 17.1 80.6* 71.6* 0.06G 999.9 000000 712650 99999 19990629 72.4 23 63.5 23 1001.1 23 991.5 4 6.8 23 12.2 23 23.9 29.9 82.8 68.7 0.00G 999.9 010000 712650 99999 19990630 61.3 23 50.0 23 1014.4 23 1004.5 4 8.9 23 7.1 23 16.9 32.1 68.0* 51.8* 0.04G 999.9 000000 712650 99999 19990701 65.6 23 60.5 23 1012.3 23 1004.6 4 8.1 23 8.6 23 16.9 999.9 73.4* 60.8* 0.00G 999.9 010000 712650 99999 19990702 71.5 22 62.0 22 1010.5 22 1000.5 4 7.5 22 11.1 22 19.0 21.0 82.4* 62.6* 0.08G 999.9 010000 712650 99999 19990703 71.8 22 64.0 22 1017.3 22 1008.4 4 8.4 22 5.0 22 14.0 32.1 84.9 62.6 0.00G 999.9 010000 712650 99999 19990704 75.5 22 71.1 22 1014.8 20 9999.9 0 5.9 22 6.2 22 13.0 21.0 93.2* 69.8* 99.99 999.9 010000 712650 99999 19990705 80.2 24 71.9 24 1013.3 24 1004.6 4 8.7 24 10.0 24 15.9 20.0 93.4 67.8 0.00I 999.9 000000 712650 99999 19990706 77.9 22 68.1 22 1009.4 22 1000.4 4 6.7 22 12.8 22 21.0 33.0 92.7 66.6 0.00G 999.9 000000 712650 99999 19990707 71.8 23 53.8 23 1012.5 23 1003.4 4 9.0 21 12.5 23 21.0 28.9 89.8 53.4 0.00I 999.9 000000 712650 99999 19990708 67.4 19 51.2 19 1014.2 19 9999.9 0 9.0 19 10.8 19 16.9 21.0 82.8 53.4 0.00I 999.9 000000 712650 99999 19990709 63.4 24 55.3 24 1010.7 23 1002.7 4 9.0 24 8.8 24 20.0 25.1 75.9 55.8 99.99 999.9 010000 712650 99999 19990710 67.3 23 53.7 23 1009.5 23 998.7 4 8.9 23 12.6 23 15.9 26.0 77.2 55.8 0.00G 999.9 000000 712650 99999 19990711 63.2 22 49.5 22 1021.3 22 9999.9 0 9.0 22 7.7 22 14.0 20.0 74.3 55.2 0.00I 999.9 000000 712650 99999 19990712 62.8 23 54.6 23 1023.8 23 1014.5 4 8.9 23 5.0 23 11.1 999.9 73.9 54.0 0.00I 999.9 000000 712650 99999 19990713 67.1 22 55.8 22 1021.2 20 9999.9 0 9.0 22 6.3 22 9.9 999.9 75.2* 59.0* 0.00I 999.9 000000 712650 99999 19990714 69.0 23 61.4 23 1019.4 21 9999.9 0 8.6 23 6.1 23 8.9 999.9 75.2* 64.4* 0.00I 999.9 000000 712650 99999 19990715 69.9 20 60.6 20 1017.3 20 9999.9 0 6.6 20 5.7 20 15.0 999.9 78.8* 64.4* 0.00I 999.9 000000 712650 99999 19990716 72.2 23 64.0 23 1017.9 23 9999.9 0 2.5 15 6.4 23 15.9 999.9 80.6* 64.4* 0.00I 999.9 000000 712650 99999 19990717 72.6 22 65.4 22 1017.4 22 9999.9 0 4.0 21 6.9 22 22.9 999.9 84.2* 66.2* 99.99 999.9 010000 712650 99999 19990718 73.4 23 67.0 23 1018.4 23 9999.9 0 5.3 23 4.8 23 15.0 40.0 87.8* 66.2* 0.02G 999.9 000000 712650 99999 19990719 71.8 22 62.4 22 1016.7 21 9999.9 0 8.7 22 4.7 22 8.0 999.9 77.0* 68.0* 0.00G 999.9 010000 712650 99999 19990720 70.1 22 60.1 22 1019.2 22 9999.9 0 8.6 22 7.3 22 12.0 15.9 73.4* 64.4* 0.00I 999.9 000000 712650 99999 19990721 70.7 23 61.1 23 1019.3 23 9999.9 0 9.0 23 6.7 23 12.0 999.9 75.2* 66.2* 0.00I 999.9 000000 712650 99999 19990722 73.3 22 60.6 22 1015.1 22 9999.9 0 9.0 22 3.4 22 8.9 999.9 82.4* 66.2* 0.00I 999.9 000000 712650 99999 19990723 77.0 22 66.5 22 1013.8 22 9999.9 0 8.7 22 7.0 22 13.0 999.9 84.2* 69.8* 0.00I 999.9 000000 712650 99999 19990724 77.9 24 68.9 24 1008.2 24 9999.9 0 8.3 24 9.6 24 14.0 999.9 87.8* 71.6* 0.00I 999.9 000000 712650 99999 19990725 77.4 24 62.3 24 1007.7 23 9999.9 0 9.0 24 9.8 24 23.9 33.0 89.2 67.1 99.99 999.9 010000 712650 99999 19990726 77.2 24 64.2 24 1009.8 24 9999.9 0 9.0 24 9.6 24 16.9 22.0 86.0* 69.8* 0.00I 999.9 000000 712650 99999 19990727 80.6 24 60.3 24 1011.2 24 9999.9 0 9.0 24 9.6 24 21.0 28.0 91.4* 71.6* 0.00G 999.9 000000 712650 99999 19990728 73.2 21 54.5 21 1011.6 21 9999.9 0 9.0 21 5.8 21 14.0 20.0 82.4* 62.6* 0.00I 999.9 000000 712650 99999 19990729 75.7 21 66.0 21 1005.5 19 9999.9 0 9.0 21 6.7 21 11.1 999.9 87.6 68.9 0.00I 999.9 000000 712650 99999 19990730 78.0 24 68.5 24 1003.5 24 994.5 4 9.0 24 5.3 24 12.0 999.9 88.5 68.9 0.00I 999.9 000000 712650 99999 19990731 75.1 21 70.2 21 1005.6 18 9999.9 0 7.2 21 5.4 21 16.9 26.0 87.8 69.6 99.99 999.9 010000 712650 99999 19990801 75.4 24 61.8 24 1009.3 24 9999.9 0 8.6 24 7.9 24 14.0 15.9 82.4* 68.0* 0.00I 999.9 000000 712650 99999 19990802 69.9 24 56.6 24 1017.6 24 9999.9 0 9.0 24 7.1 24 13.0 16.9 78.8* 60.8* 0.00I 999.9 000000 712650 99999 19990803 69.7 23 54.5 23 1019.9 23 9999.9 0 9.0 23 8.1 23 15.0 19.0 79.2 60.8 0.00I 999.9 000000 712650 99999 19990804 66.9 23 63.0 23 1014.2 21 9999.9 0 7.7 23 5.4 23 8.9 21.0 79.2 60.8 99.99 999.9 010000 712650 99999 19990805 67.5 24 59.5 24 1010.2 24 9999.9 0 8.3 24 4.4 24 11.1 999.9 77.0* 60.8* 0.00I 999.9 000000 712650 99999 19990806 66.8 20 54.0 20 1011.6 20 9999.9 0 8.8 20 9.2 20 18.1 23.9 78.8* 59.0* 99.99 999.9 010000 712650 99999 19990807 64.4 23 55.7 23 1015.9 23 9999.9 0 9.0 23 5.5 23 11.1 15.9 71.6* 57.2* 0.00I 999.9 000000 712650 99999 19990808 68.9 23 62.3 23 1007.8 23 9999.9 0 6.6 23 9.5 23 22.0 29.9 78.8* 64.4* 99.99 999.9 010000 712650 99999 19990809 62.9 22 50.7 22 1013.9 22 9999.9 0 9.0 22 6.6 22 15.0 21.0 69.8* 55.4* 0.00I 999.9 000000 712650 99999 19990810 62.6 23 54.8 23 1010.4 23 9999.9 0 8.7 23 6.9 23 18.1 999.9 74.1 60.8 99.99 999.9 010000 712650 99999 19990811 66.0 23 63.5 23 1008.8 23 9999.9 0 4.0 23 3.8 23 9.9 999.9 71.6* 62.6* 0.00I 999.9 000000 712650 99999 19990812 68.8 21 62.3 21 1013.7 21 9999.9 0 7.6 21 4.3 21 9.9 999.9 78.8* 62.6* 0.00I 999.9 000000 712650 99999 19990813 70.8 21 67.4 21 1007.6 17 9999.9 0 4.9 21 6.0 21 11.1 999.9 75.2* 68.0* 99.99 999.9 010000 712650 99999 19990814 66.3 21 60.6 21 1008.7 21 998.7 4 8.5 21 9.2 21 16.9 22.0 75.9 61.7 99.99 999.9 010000 712650 99999 19990815 66.1 22 55.1 22 1019.5 22 1009.6 4 8.9 22 5.0 22 12.0 999.9 71.8* 60.8* 0.00I 999.9 000000 712650 99999 19990816 67.3 23 58.3 23 1022.2 22 1013.0 4 8.9 23 3.9 23 9.9 999.9 75.2* 62.6* 0.00I 999.9 000000 712650 99999 19990817 73.3 22 63.9 22 1013.4 21 1004.8 4 7.6 22 9.0 22 15.0 21.0 84.7* 66.2* 0.00I 999.9 000000 712650 99999 19990818 68.4 23 59.5 23 1014.0 23 1004.2 4 8.9 23 7.3 23 12.0 15.0 86.0 61.7 0.00I 999.9 000000 712650 99999 19990819 67.5 23 57.1 23 1016.5 23 1007.1 4 8.9 23 6.9 23 11.1 999.9 74.8 61.7 0.00I 999.9 000000 712650 99999 19990820 67.1 24 59.6 24 1016.8 24 1007.8 4 8.8 24 6.3 24 14.0 18.1 71.6 63.0 99.99 999.9 010000 712650 99999 19990821 67.8 23 62.3 23 1017.6 23 1008.2 4 8.9 23 9.0 23 14.0 18.1 72.1 63.0 0.24G 999.9 010000 712650 99999 19990822 68.3 23 60.0 23 1017.8 23 9999.9 0 8.9 23 4.9 23 8.9 999.9 74.1 61.2 0.00G 999.9 000000 712650 99999 19990823 70.8 23 61.3 23 1016.9 23 1007.9 4 8.6 23 3.8 23 7.0 999.9 79.0 61.2 0.00I 999.9 000000 712650 99999 19990824 72.5 23 66.3 23 1014.8 22 1005.9 4 8.4 23 10.3 23 15.0 999.9 79.9 62.6 99.99 999.9 010000 712650 99999 19990825 72.1 23 67.7 23 1014.4 22 1005.3 4 5.7 23 5.2 23 13.0 15.9 76.1 68.9 99.99 999.9 010000 712650 99999 19990826 72.4 23 67.7 23 1012.7 23 1003.8 4 8.6 23 9.3 23 15.0 18.1 75.7 68.9 99.99 999.9 010000 712650 99999 19990827 72.0 24 67.0 24 1011.6 24 1002.4 4 8.7 24 7.2 24 12.0 999.9 75.2* 68.0* 99.99 999.9 010000 712650 99999 19990828 76.7 24 66.3 24 1010.7 24 1001.9 4 6.7 24 8.5 24 16.9 25.1 89.6* 69.8* 99.99 999.9 010000 712650 99999 19990829 67.7 17 47.7 17 1015.5 15 1005.2 4 8.9 17 12.3 17 18.1 27.0 80.6* 62.6* 0.00I 999.9 000000 712650 99999 19990830 60.4 20 48.2 20 1026.3 15 9999.9 0 9.0 20 9.7 20 15.9 21.0 64.4* 53.6* 0.00I 999.9 000000 712650 99999 19990831 64.1 23 55.9 23 1026.3 23 1017.1 4 8.9 23 4.6 23 8.0 999.9 70.2 57.6 0.00I 999.9 000000 712650 99999 19990901 66.9 24 58.9 24 1023.0 22 1014.1 4 8.9 23 3.2 24 6.0 999.9 73.4 56.5 99.99 999.9 010000 712650 99999 19990902 69.7 24 59.6 24 1020.3 24 1011.4 4 8.5 24 2.9 24 8.0 999.9 82.4* 60.8* 0.00I 999.9 000000 712650 99999 19990903 72.2 23 60.2 23 1018.8 23 9999.9 0 8.5 23 3.2 23 8.0 999.9 82.4* 62.6* 0.00I 999.9 000000 712650 99999 19990904 73.4 23 62.7 23 1018.6 23 1009.5 4 7.9 23 3.4 23 9.9 999.9 81.9 62.1 0.00I 999.9 000000 712650 99999 19990905 74.8 23 67.1 23 1018.0 22 1009.2 4 8.0 23 8.7 23 14.0 999.9 80.2 66.4 99.99 999.9 010000 712650 99999 19990906 75.4 23 70.0 23 1012.5 21 9999.9 0 9.0 23 7.2 23 11.1 999.9 80.6* 71.6* 99.99 999.9 010000 712650 99999 19990907 72.0 24 68.1 24 1009.4 21 1000.4 4 7.4 24 7.1 24 14.0 15.9 77.0* 68.0* 99.99 999.9 010000 712650 99999 19990908 72.8 24 66.7 24 1009.0 23 1000.2 4 5.8 24 6.0 24 13.0 21.0 78.8* 68.0* 0.10G 999.9 010000 712650 99999 19990909 72.0 23 67.7 23 1007.3 21 9999.9 0 6.2 23 9.2 23 15.9 999.9 78.6 68.0 0.00G 999.9 010000 712650 99999 19990910 66.2 22 54.2 22 1008.6 20 9999.9 0 9.0 22 8.5 22 15.0 19.0 73.4* 60.8* 0.00I 999.9 000000 712650 99999 19990911 66.6 24 51.5 24 1012.2 24 1002.3 4 9.0 24 14.2 24 19.0 22.0 72.0 59.7 0.00G 999.9 010000 712650 99999 19990912 63.4 21 55.6 21 1019.0 21 1010.0 4 8.9 21 6.4 21 14.0 26.0 73.8 53.8 0.00G 999.9 000000 712650 99999 19990913 68.8 21 65.2 21 1015.0 15 9999.9 0 7.8 21 11.2 21 20.0 999.9 72.0 66.9 99.99 999.9 010000 712650 99999 19990914 66.1 23 59.1 23 1016.0 23 9999.9 0 7.0 23 9.0 23 15.9 999.9 72.0 57.9 0.00H 999.9 010000 712650 99999 19990915 61.6 24 52.0 24 1019.2 24 1009.7 4 9.0 24 5.4 24 13.0 35.0 71.8 53.4 0.00G 999.9 000000 712650 99999 19990916 63.4 24 51.7 24 1017.0 24 1008.2 4 9.0 24 10.9 24 19.0 21.0 71.1 53.4 0.00G 999.9 000000 712650 99999 19990917 61.2 22 46.6 22 1018.0 22 9999.9 0 9.0 22 11.3 22 15.9 24.1 69.8* 53.6* 0.00G 999.9 000000 712650 99999 19990918 60.8 24 50.2 24 1020.3 24 1011.3 4 9.0 24 5.8 24 9.9 15.0 70.5 51.4 0.00I 999.9 000000 712650 99999 19990919 62.9 22 57.8 22 1017.4 22 1008.3 4 8.6 22 5.0 22 11.1 999.9 69.8* 55.4* 0.00I 999.9 000000 712650 99999 19990920 64.0 23 58.7 23 1010.8 22 9999.9 0 8.2 23 7.9 23 14.0 21.0 70.2 55.0 99.99 999.9 010000 712650 99999 19990921 52.0 24 39.8 24 1017.7 24 1007.9 4 9.0 24 9.6 24 15.0 23.9 68.2 45.5 0.00I 999.9 000000 712650 99999 19990922 51.5 23 39.4 23 1015.8 23 1007.4 4 8.9 23 7.3 23 11.1 999.9 64.4* 41.0* 0.00I 999.9 000000 712650 99999 19990923 60.6 24 49.7 24 1008.0 23 999.3 4 9.0 24 10.5 24 21.0 23.9 69.8* 53.6* 99.99 999.9 010000 712650 99999 19990924 61.8 24 53.3 24 1007.1 24 997.5 4 8.9 24 7.7 24 15.9 27.0 69.6 53.4 0.00G 999.9 010000 712650 99999 19990925 56.6 24 46.5 24 1016.2 24 1006.1 4 9.0 24 6.2 24 8.9 19.0 67.6 51.3 0.08G 999.9 000000 712650 99999 19990926 59.3 24 52.2 24 1020.4 24 1011.2 4 9.0 24 9.7 24 20.0 21.0 64.4* 53.6* 0.00G 999.9 000000 712650 99999 19990927 63.9 20 60.6 20 1020.2 20 1010.8 4 6.1 20 7.8 20 14.0 24.1 70.2 55.6 0.00G 999.9 000000 712650 99999 19990928 66.7 4 64.6 4 1020.2 4 1011.0 4 999.9 0 6.8 4 11.1 999.9 70.9 60.3 0.00D 999.9 000000 712650 99999 19990930 57.2 4 51.0 4 1004.7 4 995.6 4 7.3 4 13.7 4 20.0 36.9 69.6 51.3 1.87G 999.9 000000 712650 99999 19991001 58.5 8 42.9 8 1012.8 8 1001.3 4 8.8 8 12.9 8 18.1 32.1 62.6 51.3 0.06G 3.1 000000 712650 99999 19991002 52.7 4 45.8 4 1017.7 4 1008.4 4 8.7 4 4.0 4 7.0 24.1 63.3 46.0 0.00G 3.5 000000 712650 99999 19991004 46.6 9 36.3 9 1024.1 9 1015.1 4 8.7 9 8.4 9 12.0 22.0 54.5 38.7 0.28G 2.8 000000 712650 99999 19991005 47.0 24 38.9 24 1022.1 24 9999.9 0 9.0 24 5.6 24 11.1 25.1 55.4* 40.6* 0.10G 0.4 000000 712650 99999 19991006 49.7 23 37.8 23 1018.7 21 1008.2 4 8.9 23 14.0 23 18.1 25.1 55.8 38.3 0.00G 0.4 010000 712650 99999 19991007 39.0 22 24.8 22 1030.5 22 1020.4 4 8.9 22 7.3 22 9.9 999.9 53.2 34.3 0.00D 1.2 000000 712650 99999 19991008 51.5 21 45.0 21 1022.3 19 1014.6 4 8.7 21 6.6 21 15.0 999.9 59.0* 42.4* 0.02D 2.0 010000 712650 99999 19991009 55.9 19 54.4 19 1018.5 13 9999.9 0 3.5 19 9.2 19 14.0 999.9 61.3 45.0 0.22C 2.0 010000 712650 99999 19991010 56.6 22 56.0 22 1016.1 15 1007.4 4 2.7 22 2.4 22 6.0 999.9 62.6* 51.8* 0.00D 2.0 000000 712650 99999 19991011 57.4 21 45.9 21 1019.3 21 1009.2 4 8.3 21 9.5 21 15.9 23.9 64.4* 49.5* 0.02D 999.9 010000 712650 99999 19991012 49.0 20 40.5 20 1025.9 18 1017.2 4 8.6 20 5.3 20 11.1 999.9 55.6* 42.8* 0.00D 999.9 000000 712650 99999 19991013 55.6 22 52.8 22 1009.6 22 9999.9 0 7.0 22 6.8 22 15.0 999.9 62.1 41.9 0.00H 0.4 010000 712650 99999 19991014 44.2 22 35.8 22 1015.6 20 1004.4 4 8.3 22 13.0 22 22.9 35.0 52.0* 37.4* 1.59D 999.9 010000 712650 99999 19991015 49.7 24 40.7 24 1020.9 24 1011.8 4 9.0 24 6.1 24 12.0 15.0 57.2* 44.6* 0.02D 999.9 000000 712650 99999 19991016 55.7 23 51.6 23 1015.1 23 1006.6 4 8.8 23 6.6 23 15.0 999.9 62.6 42.6 0.00D 2.0 000000 712650 99999 19991017 55.5 24 51.0 24 1014.3 22 1005.0 4 8.3 24 7.4 24 15.9 21.0 64.2 49.1 0.00D 2.4 010000 712650 99999 19991018 47.2 24 39.5 24 1017.8 23 9999.9 0 9.0 24 7.2 24 12.0 15.9 51.8* 42.8* 0.00C 999.9 000000 712650 99999 19991019 46.1 23 37.5 23 1024.8 23 1015.5 4 8.9 23 8.6 23 14.0 20.0 51.3 39.0 0.00G 2.0 000000 712650 99999 19991020 50.3 23 41.1 23 1020.2 22 1011.2 4 8.9 23 9.7 23 21.0 28.9 55.9 40.8 0.00G 999.9 000000 712650 99999 19991021 47.7 24 37.1 24 1018.0 24 1009.5 4 9.0 24 9.0 24 18.1 999.9 56.1 39.4 0.00D 2.0 000000 712650 99999 19991022 52.5 24 44.9 24 999.1 22 990.9 4 9.0 24 15.0 24 22.9 28.0 55.8 39.4 0.00G 2.0 010000 712650 99999 19991023 45.6 24 39.0 24 999.4 24 989.7 4 9.0 24 11.8 24 18.1 29.9 55.8 42.1 0.08G 2.0 000000 712650 99999 19991024 44.0 24 34.6 24 1012.1 24 1001.3 4 9.0 24 12.1 24 18.1 27.0 49.6 39.4 0.00G 999.9 000000 712650 99999 19991025 45.4 23 36.9 23 1017.6 23 1008.3 4 8.9 23 13.0 23 18.1 29.9 53.8 39.4 0.00G 2.4 000000 712650 99999 19991026 51.7 24 39.2 24 1011.6 23 1002.1 4 9.0 24 13.4 24 20.0 28.0 59.2 40.8 0.02G 3.1 000000 712650 99999 19991027 44.4 23 34.1 23 1023.9 23 1013.3 4 8.9 23 8.3 23 14.0 16.9 49.5* 41.0* 0.00G 2.0 000000 712650 99999 19991028 46.6 23 41.1 23 1024.4 23 1016.1 4 8.9 23 6.1 23 11.1 999.9 55.6 40.3 0.00D 0.4 000000 712650 99999 19991029 48.7 23 44.7 23 1024.5 23 1014.2 4 7.4 23 7.0 23 13.0 999.9 57.2 40.3 0.00D 999.9 000000 712650 99999 19991030 51.2 21 47.9 21 1024.6 21 1015.5 4 7.7 21 7.3 21 12.0 999.9 57.6* 48.7* 0.00D 999.9 000000 712650 99999 19991031 55.7 24 48.5 24 1020.6 21 1011.2 4 5.5 24 7.6 24 15.0 25.1 64.4* 48.2* 0.04D 999.9 010000 712650 99999 19991101 47.1 24 43.6 24 1020.6 24 1012.0 4 7.8 24 4.5 24 12.0 999.9 65.8 39.6 0.00D 999.9 000000 712650 99999 19991102 49.3 24 47.8 24 1005.6 22 998.0 4 4.3 24 11.0 24 25.1 35.9 55.8 39.6 0.31D 999.9 010000 712650 99999 19991103 37.1 24 34.0 24 994.6 20 985.3 4 7.5 24 22.1 24 30.9 42.9 40.1* 35.1* 1.46G 999.9 010000 712650 99999 19991104 40.7 24 31.3 24 1015.3 22 1004.0 4 9.0 24 18.0 24 26.0 33.0 46.4* 36.9* 0.06G 999.9 010000 712650 99999 19991105 47.0 23 41.7 23 1018.8 23 1010.1 4 8.9 23 12.2 23 25.1 30.9 55.4* 40.5* 0.00G 999.9 000000 712650 99999 19991106 46.3 22 34.5 22 1021.9 22 9999.9 0 9.0 22 11.4 22 16.9 31.1 56.3 39.7 0.00G 999.9 000000 712650 99999 19991107 39.3 23 27.0 23 1027.0 23 1017.1 4 8.9 23 7.7 23 15.0 19.0 49.6 33.4 0.00D 999.9 000000 712650 99999 19991108 40.3 22 30.1 22 1024.2 22 1015.6 4 8.9 22 5.3 22 11.1 999.9 46.4* 35.6* 0.00D 999.9 000000 712650 99999 19991109 47.0 21 43.1 21 1013.6 21 9999.9 0 7.6 21 6.8 21 16.9 22.0 55.4* 41.0* 0.00C 999.9 000000 712650 99999 19991110 50.6 24 47.7 24 1009.4 23 999.7 4 6.0 24 7.7 24 15.9 19.0 56.3 39.9 0.02D 999.9 010000 712650 99999 19991111 35.2 23 23.5 23 1027.1 23 1015.7 4 8.9 23 12.0 23 18.1 25.1 57.6 30.0 0.14G 999.9 000000 712650 99999 19991112 39.0 22 31.0 22 1024.7 22 1017.2 4 8.7 22 6.2 22 13.0 999.9 44.6* 34.5* 0.00G 999.9 000000 712650 99999 19991113 44.4 22 41.5 22 1017.8 22 1009.0 4 7.5 22 7.3 22 11.1 999.9 48.2* 42.8* 0.02D 999.9 000000 712650 99999 19991114 47.2 24 38.3 24 1005.8 23 996.5 4 5.9 24 13.9 24 22.9 35.0 55.4* 41.0* 0.00D 999.9 000000 712650 99999 19991115 38.7 23 26.2 23 1013.1 21 9999.9 0 8.8 23 12.6 23 19.0 38.1 42.8* 35.6* 0.00G 999.9 000000 712650 99999 19991116 30.4 22 18.3 22 1011.8 22 1001.9 4 8.9 22 13.1 22 22.9 29.9 39.6 26.1 0.00D 999.9 000000 712650 99999 19991117 31.0 22 20.2 22 1019.4 22 1009.5 4 8.9 22 8.7 22 15.0 15.9 39.2* 25.2* 0.00D 999.9 000000 712650 99999 19991118 39.5 22 29.2 22 1020.8 20 9999.9 0 9.0 22 8.5 22 12.0 999.9 44.6* 35.6* 0.00H 999.9 010000 712650 99999 19991119 46.4 21 38.2 21 1018.7 21 1010.2 4 8.2 21 6.0 21 14.0 999.9 51.8* 41.0* 0.00D 999.9 000000 712650 99999 19991120 46.6 24 42.6 24 1015.2 22 1005.4 4 6.2 24 7.0 24 13.0 999.9 53.2 40.8 0.18D 999.9 010000 712650 99999 19991121 44.1 21 43.3 21 1020.5 19 9999.9 0 4.4 21 4.4 21 12.0 999.9 50.9 42.3 0.00B 999.9 000000 712650 99999 19991122 47.7 24 46.4 24 1019.8 21 1010.3 4 3.8 24 7.1 24 13.0 999.9 51.1 43.0 0.02D 999.9 010000 712650 99999 19991123 49.4 24 48.3 24 1023.0 23 1013.5 4 2.4 24 5.8 24 16.9 999.9 55.2 43.2 0.02D 999.9 000000 712650 99999 19991124 48.5 24 44.4 24 1015.8 24 1006.1 4 6.3 24 13.8 24 23.9 29.9 55.2 43.2 0.00D 999.9 010000 712650 99999 19991125 42.3 24 35.0 24 1024.9 24 1015.1 4 9.0 24 6.7 24 19.0 32.1 52.7 38.1 0.00G 999.9 000000 712650 99999 19991126 42.2 24 41.3 24 1013.8 19 1005.4 4 6.1 24 12.2 24 21.0 27.0 45.1 38.1 0.00G 999.9 010000 712650 99999 19991127 43.6 23 39.5 23 1010.4 22 1000.2 4 7.8 23 11.1 23 16.9 21.0 48.2* 41.0* 0.26D 999.9 010000 712650 99999 19991128 41.1 22 30.1 22 1020.2 22 1009.3 4 8.9 22 14.4 22 21.0 28.9 48.7 37.2 0.00D 999.9 000000 712650 99999 19991129 35.4 23 26.6 23 1026.5 21 1016.4 4 8.9 23 11.2 23 16.9 23.9 38.7* 32.0* 0.00D 999.9 001000 712650 99999 19991130 27.9 23 15.6 23 1037.0 23 1026.5 4 8.9 23 7.5 23 12.0 27.0 32.0* 23.0* 0.00G 999.9 000000 712650 99999 19991201 28.0 23 16.0 23 1036.0 23 1026.9 4 8.9 23 5.2 23 8.0 999.9 33.8* 23.0* 0.00D 999.9 001000 712650 99999 19991202 37.9 21 30.9 21 1025.1 21 1016.1 4 8.9 21 10.2 21 16.9 999.9 41.2 22.8 0.00D 999.9 000000 712650 99999 19991203 43.8 23 39.5 23 1017.6 19 1008.4 4 8.9 23 4.6 23 8.9 999.9 48.9 40.5 0.02D 999.9 010000 712650 99999 19991204 46.2 24 44.7 24 1016.4 21 9999.9 0 6.3 24 7.1 24 15.9 999.9 55.4* 42.8* 0.02B 999.9 010000 712650 99999 19991205 47.0 24 46.7 24 1013.0 21 1005.5 4 3.4 24 5.4 24 13.0 999.9 49.6 44.4 0.08C 999.9 010000 712650 99999 19991206 42.9 24 40.1 24 1010.4 17 9999.9 0 7.7 24 8.1 24 12.0 18.1 48.2* 37.4* 0.36C 999.9 010000 712650 99999 19991207 36.3 24 27.5 24 1022.9 24 1012.6 4 8.9 23 9.2 24 15.9 18.1 37.4* 33.8* 0.00D 999.9 000000 712650 99999 19991208 37.4 23 32.7 23 1026.1 23 1016.5 4 7.9 22 5.1 23 14.0 999.9 43.2 30.7 0.00D 999.9 000000 712650 99999 19991209 37.9 24 36.9 24 1025.2 20 1016.4 4 2.9 24 3.0 24 8.9 999.9 43.5 31.8 0.00D 999.9 000000 712650 99999 19991210 42.7 23 38.7 23 1010.8 21 1002.3 4 5.9 23 9.0 23 22.9 35.9 45.5 31.8 0.14D 999.9 010000 712650 99999 19991211 34.2 21 22.8 21 1020.9 21 1010.4 4 8.9 21 15.5 21 23.9 35.9 47.1 31.6 0.00D 999.9 000000 712650 99999 19991212 31.6 22 25.5 22 1022.2 20 1012.7 4 8.9 22 5.8 22 15.0 999.9 37.4* 27.3* 0.00G 999.9 000000 712650 99999 19991213 36.5 24 32.2 24 1018.2 23 9999.9 0 7.5 24 6.2 24 15.0 15.9 41.0* 33.8* 0.02C 999.9 010000 712650 99999 19991214 35.9 22 30.6 22 1018.9 22 1010.1 4 8.5 22 22.7 22 35.0 40.0 41.2 34.0 0.02D 999.9 010000 712650 99999 19991215 40.8 23 38.2 23 1010.8 18 1002.5 4 7.1 23 9.7 23 26.0 32.1 46.4 34.0 0.18D 999.9 010000 712650 99999 19991216 39.8 24 32.1 24 1006.2 22 9999.9 0 8.9 24 20.9 24 28.9 36.9 46.6 37.2 0.06D 999.9 011000 712650 99999 19991217 31.6 23 16.3 23 1016.6 23 1006.0 4 8.9 23 16.9 23 22.9 35.9 41.4 26.6 0.00G 999.9 000000 712650 99999 19991218 27.5 22 17.5 22 1026.6 22 9999.9 0 9.0 22 5.3 22 12.0 999.9 33.6 23.5 0.00C 999.9 000000 712650 99999 19991219 31.0 23 21.3 23 1028.5 23 1019.0 4 8.9 23 10.4 23 22.0 27.0 35.6* 25.0* 0.00D 999.9 000000 712650 99999 19991220 40.4 23 35.3 23 1016.4 22 1008.5 4 8.6 23 10.9 23 23.9 30.9 44.6* 36.7* 0.02D 999.9 010000 712650 99999 19991221 28.2 18 14.5 18 1019.3 17 9999.9 0 9.0 18 19.2 18 29.9 36.9 45.1 24.3 0.02C 999.9 000000 712650 99999 19991222 21.5 23 10.1 23 1024.4 23 9999.9 0 9.0 23 14.9 23 20.0 31.1 28.2 18.7 0.00G 999.9 000000 712650 99999 19991223 22.1 22 10.3 22 1022.4 21 9999.9 0 8.6 22 15.8 22 22.0 26.0 25.0 18.7 0.00G 999.9 001000 712650 99999 19991224 18.5 24 7.7 24 1023.5 24 1013.4 4 9.0 24 8.4 24 15.9 27.0 24.8* 14.0* 0.00G 999.9 000000 712650 99999 19991225 20.8 24 11.4 24 1025.5 24 1016.7 4 9.0 24 11.2 24 30.9 36.9 30.2* 15.8* 0.00G 999.9 001000 712650 99999 19991226 31.1 23 19.8 23 1002.6 20 9999.9 0 8.6 23 26.2 23 36.9 43.9 33.8* 26.6* 0.00G 999.9 001000 712650 99999 19991227 21.9 22 12.4 22 1008.7 22 998.3 4 8.3 22 9.6 22 16.9 999.9 26.6* 17.6* 0.00D 999.9 001000 712650 99999 19991228 18.9 24 11.0 24 1005.5 24 997.5 4 8.3 24 13.9 24 26.0 30.9 27.0* 10.4* 0.00G 999.9 001000 712650 99999 19991229 23.1 24 14.9 24 1004.7 23 994.4 4 8.1 24 13.1 24 29.9 35.9 32.0* 14.0* 0.00G 999.9 001000 712650 99999 19991230 34.5 24 24.7 24 1003.9 24 992.8 4 8.7 24 17.9 24 35.0 45.1 42.3 12.6 0.00G 999.9 001000 712650 99999 19991231 22.9 24 13.1 24 1018.2 24 1008.2 4 9.0 24 6.2 24 11.1 29.9 42.3 16.3 0.02G 999.9 000000 ''' @pytest.mark.slow @pytest.mark.online def test_get_station_year_text(): downloaded_data = get_station_year_text(712650, 99999, 1999) try: downloaded_data = downloaded_data.decode('utf-8') except: pass assert downloaded_data == sample_data_random_station_1999 with pytest.raises(Exception): get_station_year_text(712650, 99999, 19999999999) @pytest.mark.slow @pytest.mark.online @pytest.mark.skipif(not has_geopy, reason='geopy is required') def test_geocode(): latlon = geocode('Fredericton, NB') assert_close(latlon, (45.966425, -66.645813), rtol=5e-4)fluids-1.0.22/tests/test_fittings_fits.py0000644000175000017500000005352714302004506020045 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2018 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division import os from fluids import * import numpy as np from math import pi, log10, log from random import uniform from numpy.testing import assert_allclose from scipy.constants import * from scipy.optimize import * from scipy.interpolate import * from fluids import fluids_data_dir from fluids.core import Engauge_2d_parser from fluids.optional.pychebfun import * import pytest ### Contractions def test_contraction_conical_Miller_coefficients(): from fluids.fittings import contraction_conical_Miller_tck path = os.path.join(fluids_data_dir, 'Miller 2E 1990 conical contractions K part 1.csv') Kds, l_ratios, A_ratios = Engauge_2d_parser(open(path).readlines()) path = os.path.join(fluids_data_dir, 'Miller 2E 1990 conical contractions K part 2.csv') Kd2, l_ratio2, A_ratio2 = Engauge_2d_parser(open(path).readlines()) Kds.extend(Kd2) l_ratios.extend(l_ratio2) A_ratios.extend(A_ratio2) A_ratios = [[i+1.0 for i in j] for j in A_ratios] # # The second set of data obviously looks terirble when plotted # # Normally the data should be smoothed, but, well, the smoothing # # function also requires smooth functions. # for K, ls, As in zip(Kds, l_ratios, A_ratios): # plt.loglog(ls, np.array(As)-1, label=str(K)) # plt.legend() # plt.show() all_zs = [] all_xs = [] all_ys = [] for z, xs, ys in zip(Kds, l_ratios, A_ratios): for x, y in zip(xs, ys): all_zs.append(z) all_xs.append(x) all_ys.append(y) tck = bisplrep(np.log(all_xs), np.log(all_ys), all_zs, kx=3, ky=1, s=.0001) [assert_allclose(i, j) for i, j in zip(contraction_conical_Miller_tck, tck)] # err = 0.0 # n = 0 # for z, xs, ys in zip(Kds, l_ratios, A_ratios): # for x, y in zip(xs, ys): # predict = bisplev(log(x), log(y), tck) # err += abs(predict - z)/z # n += 1 # 5% relative error seems like the sweetspot # print(err/n, n, err) # import matplotlib.pyplot as plt # ax = plt.gca() # ax.set_xscale("log") # ax.set_yscale("log") # x = np.logspace(np.log10(.1), np.log10(10), 200) # y = np.logspace(np.log10(1.1), np.log10(4), 200) # X, Y = np.meshgrid(x, y, indexing='ij') # func = np.vectorize(lambda x, y: max(min(bisplev(log(x), log(y), tck), .5), 0)) # # Z = func(X.ravel(), Y.ravel()) # Z = [[func(xi, yi) for yi in y.tolist()] for xi in x] # # levels = [.001, .01, .03, .04, .05, .1, .2, .3, .4] # plt.contourf(X, Y-1, Z, levels=levels, cmap='RdGy') # plt.colorbar() # plt.show() @pytest.mark.slow def test_contraction_abrupt_Miller_coefficients(): from fluids.fittings import tck_contraction_abrupt_Miller curve_path = os.path.join(fluids_data_dir, 'Miller 2E 1990 abrupt contraction K.csv') text = open(curve_path).readlines() zs, x_lists, y_lists = Engauge_2d_parser(text) for xs, values in zip(x_lists, y_lists): values[-1] = 0 low = 1e-8 for i in range(2): low = low/10 values.insert(-1, low) xs.insert(-1, 1-low) xs[-1] = 1 inter_objs = [] for rd, As, Ks in zip(zs, x_lists, y_lists): univar = UnivariateSpline(As, Ks, s=1e-5) inter_objs.append(univar) # make a rectangular grid As = np.linspace(0, 1, 1000) Ks_stored = [] for obj in inter_objs: Ks_smoothed = obj(As) Ks_smoothed[Ks_smoothed < 0] = 0 # Avoid zeros Ks_stored.append(Ks_smoothed) # Flatten the data to the form used in creating the spline all_zs = [] all_xs = [] all_ys = [] for z, x, ys in zip(zs, As, Ks_stored): for x, y in zip(As, ys): all_zs.append(z) all_xs.append(x) all_ys.append(y) tck_recalc = bisplrep(all_xs, all_zs, all_ys, s=5e-4) [assert_allclose(i, j, rtol=1e-2) for i, j in zip(tck_contraction_abrupt_Miller, tck_recalc)] # Plotting code # print([i.tolist() for i in tck[:3]]) # for i, (rd, As, Ks) in enumerate(zip(zs, x_lists, y_lists)): # plt.plot(As, Ks, '.') # univar = inter_objs[i] # As2 = np.linspace(0, 1, 1000) # Ks_smoothed = univar(As2) # plt.plot(As2, Ks_smoothed) # # Compute with the spline # Ks_new = bisplev(As2, rd, tck) # plt.plot(As2, Ks_new) # for rd in np.linspace(.1, 0, 100): # As2 = np.linspace(0, 1, 1000) # Ks_new = bisplev(As2, rd, tck) # plt.plot(As2, Ks_new) # plt.show() ### Diffusers @pytest.mark.slow def test_diffuser_conical_Miller_coefficients(): from fluids.fittings import tck_diffuser_conical_Miller path = os.path.join(fluids_data_dir, 'Miller 2E 1990 conical diffuser Kd.csv') Kds, l_ratios, A_ratios = Engauge_2d_parser(open(path).readlines()) # Fixup stupidity A_ratios = [[i+1.0 for i in j] for j in A_ratios] # for K, ls, As in zip(Kds, l_ratios, A_ratios): # plt.loglog(ls, np.array(As)-1) # plt.show() interp_objs = [] for K, ls, As in zip(Kds, l_ratios, A_ratios): univar = UnivariateSpline(np.log10(ls), np.log10(As), s=4e-5) interp_objs.append(univar) # Extrapolation to the left and right looks bad # Extrapolation upwards looks bad too ls_full = np.logspace(log10(0.1), log10(20.0)) ls_stored = [] As_stored = [] for i, (K, ls, As) in enumerate(zip(Kds, l_ratios, A_ratios)): # plt.loglog(ls, As) univar = interp_objs[i] As_full = 10**univar(np.log10(ls_full)) # plt.loglog(ls_full, As_full) # print(len(univar.get_coeffs()), len(univar.get_knots())) ls_smoothed = np.logspace(log10(ls[0]), log10(ls[-1]), 100) As_smoothed = 10**univar(np.log10(ls_smoothed)) # plt.loglog(ls_smoothed, As_smoothed) ls_stored.append(ls_smoothed) As_stored.append(As_smoothed) # plt.show() all_zs = [] all_xs = [] all_ys = [] for z, xs, ys in zip(Kds, ls_stored, As_stored): for x, y in zip(xs, ys): all_zs.append(z) all_xs.append(x) all_ys.append(y) tck_recalc = bisplrep(np.log(all_xs), np.log(all_ys), all_zs, s=.002) [assert_allclose(i, j, rtol=1e-2) for i, j in zip(tck_diffuser_conical_Miller, tck_recalc)] # Plotting code to re-create the graph through solving for points # print([len(i) for i in tck[0:3]]) # # for K, ls in zip(Kds, ls_stored): # def get_right_y(l, K_goal): # try: # def err(y_guess): # if y_guess <= 1.1: # y_guess = 1.1 # if y_guess > 4: # y_guess = 4 # return bisplev(log(l), log(y_guess), tck) - K_goal # # ans = newton(err, 1.3) # ans = bisect(err, 1.1, 4) # # # if abs(err(ans)) > .1: # # ans = None # return ans # except: # return None # As_needed = [get_right_y(l, K) for l in ls] # plt.loglog(ls, As_needed, 'x') # plt.show() ### Entrances def test_entrance_distance_Miller_coefficients(): from fluids.fittings import entrance_distance_Miller_coeffs t_ds = [0.006304, 0.007586, 0.009296, 0.011292, 0.013288, 0.015284, 0.019565, 0.022135, 0.024991, 0.02842, 0.032136, 0.036426, 0.040145, 0.043149, 0.048446, 0.054745, 0.061332, 0.067919, 0.075081, 0.081957, 0.089121, 0.096284, 0.099722, 0.106886, 0.110897, 0.118061, 0.125224, 0.132101, 0.139264, 0.147, 0.153877, 0.16104, 0.167917, 0.175081, 0.181957, 0.189121, 0.196284, 0.199723, 0.206886, 0.214049, 0.221213, 0.228376, 0.235539, 0.242416, 0.249579, 0.250726, 0.257889, 0.264766, 0.271929, 0.279093, 0.286256, 0.293419, 0.300009] Ks = [1.00003, 0.97655, 0.94239, 0.90824, 0.87408, 0.83993, 0.78301, 0.75028, 0.71756, 0.68626, 0.65638, 0.62793, 0.6066, 0.59166, 0.57532, 0.56111, 0.54833, 0.5384, 0.53416, 0.53135, 0.53138, 0.53142, 0.53143, 0.53147, 0.53149, 0.53152, 0.53156, 0.53159, 0.53162, 0.53023, 0.53027, 0.5303, 0.53033, 0.53179, 0.5304, 0.53186, 0.53189, 0.53191, 0.53194, 0.53198, 0.53201, 0.53347, 0.53208, 0.53353, 0.53215, 0.53215, 0.53218, 0.53364, 0.53367, 0.53371, 0.53374, 0.53378, 0.5331] # plt.plot(t_ds, Ks) t_ds2 = np.linspace(t_ds[0], t_ds[-1], 1000) # Ks_Rennels = [entrance_distance(Di=1, t=t) for t in t_ds2] # plt.plot(t_ds2, Ks_Rennels) # plt.show() obj = UnivariateSpline(t_ds, Ks, s=3e-5) # print(len(obj.get_coeffs()), len(obj.get_knots())) # plt.plot(t_ds2, obj(t_ds2)) fun = chebfun(f=obj, domain=[0,.3], N=15) coeffs = chebfun_to_poly(fun, text=False) assert_allclose(coeffs, entrance_distance_Miller_coeffs) def test_entrance_distance_45_Miller_coefficients(): from fluids.fittings import entrance_distance_45_Miller_coeffs t_ds_re_entrant_45 = [0.006375, 0.007586, 0.009296, 0.011292, 0.013288, 0.015284, 0.019565, 0.022135, 0.024991, 0.02842, 0.032136, 0.036426, 0.040109, 0.043328, 0.046868, 0.048443, 0.053379, 0.053594, 0.059318, 0.059855, 0.065044, 0.068836, 0.070768, 0.07678, 0.082793, 0.088805, 0.089663, 0.095963, 0.104267, 0.110566, 0.116866, 0.123451, 0.129751, 0.136337, 0.142637, 0.146933, 0.153807, 0.160394, 0.167268, 0.174143, 0.181018, 0.187893, 0.194769, 0.199927, 0.20709, 0.213966, 0.221129, 0.228292, 0.235455, 0.242332, 0.249495, 0.250641, 0.257804, 0.264967, 0.27213, 0.279006, 0.286169, 0.293333, 0.299815] Ks_re_entrant_45 = [1.0, 0.97655, 0.94239, 0.90824, 0.87408, 0.83993, 0.78301, 0.75028, 0.71756, 0.68626, 0.65638, 0.62793, 0.60642, 0.59113, 0.57033, 0.56535, 0.54225, 0.54403, 0.52128, 0.52003, 0.5028, 0.48752, 0.48147, 0.463, 0.44737, 0.42889, 0.4232, 0.41184, 0.39053, 0.3749, 0.3607, 0.34507, 0.33086, 0.31666, 0.30388, 0.29678, 0.28685, 0.27549, 0.26699, 0.25848, 0.25282, 0.24715, 0.24434, 0.24437, 0.24298, 0.24158, 0.2402, 0.24023, 0.23884, 0.23745, 0.23606, 0.23606, 0.2361, 0.23329, 0.23332, 0.23193, 0.23054, 0.23057, 0.22989] # plt.plot(t_ds_re_entrant_45, Ks_re_entrant_45) obj = UnivariateSpline(t_ds_re_entrant_45, Ks_re_entrant_45, s=1e-4) t_ds_re_entrant_45_long = np.linspace(0, 0.3, 1000) # plt.plot(t_ds_re_entrant_45_long, obj(t_ds_re_entrant_45_long)) fun = chebfun(f=obj, domain=[0,.3], N=15) # plt.plot(t_ds_re_entrant_45_long, fun(t_ds_re_entrant_45_long), '--') # plt.show() coeffs = chebfun_to_poly(fun) assert_allclose(coeffs, entrance_distance_45_Miller_coeffs) def test_entrance_rounded_Miller_coefficients(): from fluids.fittings import entrance_rounded_Miller_coeffs path = os.path.join(fluids_data_dir, 'Miller 2E 1990 entrances rounded beveled K.csv') lines = open(path).readlines() _, ratios, Ks = Engauge_2d_parser(lines) ratios_45, ratios_30, ratios_round = ratios Ks_45, Ks_30, Ks_round = Ks # plt.plot(ratios_round, Ks_round) t_ds2 = np.linspace(ratios_round[0], ratios_round[1], 1000) # Ks_Rennels = [entrance_rounded(Di=1, rc=t) for t in t_ds2] # plt.plot(t_ds2, Ks_Rennels) obj = UnivariateSpline(ratios_round, Ks_round, s=6e-5) # plt.plot(t_ds2, obj(t_ds2)) fun = chebfun(f=obj, domain=[0,.3], N=8) # plt.plot(t_ds2, fun(t_ds2), '--') # plt.show() coeffs = chebfun_to_poly(fun) assert_allclose(coeffs, entrance_rounded_Miller_coeffs) ### Bends def test_bend_rounded_Crane_coefficients(): from fluids.fittings import bend_rounded_Crane_ratios, bend_rounded_Crane_fds, bend_rounded_Crane_coeffs bend_rounded_Crane_obj = UnivariateSpline(bend_rounded_Crane_ratios, bend_rounded_Crane_fds, s=0) fun = chebfun(f=bend_rounded_Crane_obj, domain=[1,20], N=10) coeffs = chebfun_to_poly(fun) assert_allclose(coeffs, bend_rounded_Crane_coeffs) xs = np.linspace(1, 20, 2000) diffs = (abs(fun(xs)-bend_rounded_Crane_obj(xs))/bend_rounded_Crane_obj(xs)) assert np.max(diffs) < .02 assert np.mean(diffs) < .002 @pytest.mark.slow def test_bend_rounded_Miller_K_coefficients(): from fluids import fluids_data_dir from fluids.core import Engauge_2d_parser from fluids.fittings import tck_bend_rounded_Miller Kb_curve_path = os.path.join(fluids_data_dir, 'Miller 2E 1990 smooth bends Kb.csv') lines = open(Kb_curve_path).readlines() all_zs, all_xs, all_ys = Engauge_2d_parser(lines, flat=True) tck_recalc = bisplrep(all_xs, all_ys, all_zs, kx=3, ky=3, s=.001) # Different platforms don't generate the same coefficients at all # and that is OK # [assert_allclose(i, j) for i, j in zip(tck_bend_rounded_Miller, tck_recalc)] @pytest.mark.slow def test_bend_rounded_Miller_Re_correction(): from fluids import fluids_data_dir from fluids.core import Engauge_2d_parser from fluids.fittings import tck_bend_rounded_Miller_C_Re Re_curve_path = os.path.join(fluids_data_dir, 'Miller 2E 1990 smooth bends Re correction.csv') text = open(Re_curve_path).readlines() rds, Re_lists, C_lists = Engauge_2d_parser(text) inter_objs = [] for rd, Res, Cs in zip(rds, Re_lists, C_lists): univar = UnivariateSpline(np.log10(Res), Cs) # Default smoothing is great! inter_objs.append(univar) for i, (rd, Res, Cs) in enumerate(zip(rds, Re_lists, C_lists)): # plt.semilogx(Res, Cs) univar = inter_objs[i] Cs_smoothed = univar(np.log10(Res)) # plt.semilogx(Res, Cs_smoothed) # print(univar.get_coeffs(), univar.get_knots()) # plt.show() # make a rectangular grid Res = np.logspace(np.log10(1E4), np.log10(1E8), 100) Cs_stored = [] for obj in inter_objs: Cs_smoothed = obj(np.log10(Res)) # plt.semilogx(Res, Cs_smoothed) Cs_stored.append(Cs_smoothed) # plt.show() # Flatten the data to the form used in creating the spline all_zs = [] all_xs = [] all_ys = [] for z, x, ys in zip(rds, Res, Cs_stored): for x, y in zip(Res, ys): all_zs.append(z) all_xs.append(x) all_ys.append(y) tck_recalc = bisplrep(np.log10(all_xs), all_zs, all_ys) [assert_allclose(i, j) for i, j in zip(tck_bend_rounded_Miller_C_Re, tck_recalc)] spline_obj = lambda Re, r_D : bisplev(np.log10(Re), r_D, tck_recalc) Res = np.logspace(np.log10(1E4), np.log10(1E8), 100) for obj, r_d in zip(inter_objs, rds): Cs_smoothed = obj(np.log10(Res)) # plt.semilogx(Res, Cs_smoothed) # Cs_spline = spline_obj(Res, r_d) # plt.semilogx(Res, Cs_spline, '--') for r in np.linspace(1, 2, 10): Cs_spline = spline_obj(Res, r) # plt.semilogx(Res, Cs_spline, '-') # plt.show() from fluids.fittings import bend_rounded_Miller_C_Re_limit_1 from fluids.fittings import bend_rounded_Miller_C_Re ps = np.linspace(1, 2) qs = [newton(lambda x: bend_rounded_Miller_C_Re(x, i)-1, 2e5) for i in ps] rs = np.polyfit(ps, qs, 4).tolist() assert_allclose(rs, bend_rounded_Miller_C_Re_limit_1) @pytest.mark.slow def test_bend_rounded_Miller_outlet_tangent_correction(): from fluids.fittings import tck_bend_rounded_Miller_C_Re Re_curve_path = os.path.join(fluids_data_dir, 'Miller 2E 1990 smooth bends outlet tangent length correction.csv') text = open(Re_curve_path).readlines() Kbs, length_ratio_lists, Co_lists = Engauge_2d_parser(text) def BioScience_GeneralizedSubstrateDepletion_model(x_in): '''Fit created using zunzun.com, comparing the non-linear, non-logarithmic plot values with pixel positions on the graph. 0 0.00 1 311 2 493 4 721 6 872 10 1074 20 1365 30 1641 40 1661 ''' temp = 0.0 a = 1.0796070184265327E+03 b = 2.7557612059844967E+00 c = -2.1529870432577212E+01 d = 4.1229208061974096E-03 temp = (a * x_in) / (b + x_in) - (c * x_in) - d return temp def fix(y): # Reverse the plot # Convert input "y" to between 0 and 1661 y = y/30 # 0-1 linear y *= 1641 # to max err = lambda x: BioScience_GeneralizedSubstrateDepletion_model(x) - y return float(fsolve(err, 1)) for values in length_ratio_lists: for i in range(len(values)): x = min(values[i], 30) # Do not allow values over 30 values[i] = fix(x) # Plotting code # inter_objs = [] # for Kb, lrs, Cos in zip(Kbs, length_ratio_lists, Co_lists): # univar = UnivariateSpline(lrs, Cos, s=4e-4) # Default smoothing is great! # inter_objs.append(univar) # for i, (Kb, lrs, Cos) in enumerate(zip(Kbs, length_ratio_lists, Co_lists)): # plt.semilogx(lrs, Cos, 'x') # univar = inter_objs[i] # Cs_smoothed = univar(lrs) # plt.semilogx(lrs, Cs_smoothed) # plt.ylim([0.3, 3]) # plt.xlim([0.1, 30]) # plt.show() # Code to literally write the code min_vals = [] tcks = [] for Kb, lrs, Cos in zip(Kbs, length_ratio_lists, Co_lists): univar = splrep(lrs, Cos, s=4e-4) # Default smoothing is great! s = ('tck_bend_rounded_Miller_C_o_%s = ' %str(Kb).replace('.', '_')) template = 'np.array(%s),\n' t1 = template%str(univar[0].tolist()) t2 = template%str(univar[1].tolist()) s = s + '[%s%s3]' %(t1, t2) # print(s) min_vals.append(float(splev(0.01, univar))) tcks.append(univar) # Check the fixed constants above the function from fluids.fittings import tck_bend_rounded_Miller_C_os for tck, tck_recalc in zip(tck_bend_rounded_Miller_C_os, tcks): [assert_allclose(i, j) for i, j in zip(tck, tck_recalc)] from fluids.fittings import bend_rounded_Miller_C_o_limit_0_01 assert_allclose(min_vals, bend_rounded_Miller_C_o_limit_0_01) from fluids.fittings import bend_rounded_Miller_C_o_limits max_ratios = [i[-1] for i in length_ratio_lists] assert_allclose(max_ratios, bend_rounded_Miller_C_o_limits) def test_bend_miter_Miller_coefficients(): from fluids.optional.pychebfun import chebfun, chebfun_to_poly curve_path = os.path.join(fluids_data_dir, 'Miller 2E 1990 Kb mitre bend.csv') text = open(curve_path).readlines() zs, x_lists, y_lists = Engauge_2d_parser(text) x_raw, y_raw = x_lists[0], y_lists[0] univar = UnivariateSpline(x_raw, y_raw, s=1e-4) fun = chebfun(f=univar, domain=[0,120], N=15) # 15 max for many coeffs recalc_coeffs = chebfun_to_poly(fun) from fluids.fittings import bend_miter_Miller_coeffs assert_allclose(bend_miter_Miller_coeffs, recalc_coeffs) def test_diffuser_conical_Idelchik_coefficients(): from fluids.fittings import diffuser_conical_Idelchik_tck, diffuser_conical_Idelchik_angles, diffuser_conical_Idelchik_A_ratios, diffuser_conical_Idelchik_data diffuser_conical_Idelchik_obj = RectBivariateSpline(np.array(diffuser_conical_Idelchik_A_ratios), np.array(diffuser_conical_Idelchik_angles), np.array(diffuser_conical_Idelchik_data), kx=3, ky=1) [assert_allclose(i, j) for i, j in zip(diffuser_conical_Idelchik_obj.tck, diffuser_conical_Idelchik_tck)] def test_entrance_rounded_Idelchik_coeffs(): from fluids.fittings import entrance_rounded_ratios_Idelchik, entrance_rounded_Ks_Idelchik, entrance_rounded_Idelchik_tck tck_refit = splrep(entrance_rounded_ratios_Idelchik, entrance_rounded_Ks_Idelchik, s=0, k=2) [assert_allclose(i, j, rtol=1e-3) for i, j in zip(tck_refit, entrance_rounded_Idelchik_tck)] #entrance_rounded_Idelchik = UnivariateSpline(entrance_rounded_ratios_Idelchik, # entrance_rounded_Ks_Idelchik, # s=0, k=2, ext=3) # def test_entrance_rounded_Harris_coeffs(): from fluids.fittings import entrance_rounded_ratios_Harris, entrance_rounded_Ks_Harris, entrance_rounded_Harris_tck tck_refit = splrep(entrance_rounded_ratios_Harris, entrance_rounded_Ks_Harris, s=0, k=2) [assert_allclose(i, j, rtol=1e-3) for i, j in zip(tck_refit, entrance_rounded_Harris_tck)] #entrance_rounded_Harris = UnivariateSpline(entrance_rounded_ratios_Harris, # entrance_rounded_Ks_Harris, # s=0, k=2, ext=3) def test_entrance_distance_Harris_coeffs(): from fluids.fittings import( entrance_distance_Harris_t_Di, entrance_distance_Harris_Ks, entrance_distance_Harris_tck) tck_refit = splrep(entrance_distance_Harris_t_Di, entrance_distance_Harris_Ks, s=0, k=3) [assert_allclose(i, j, rtol=1e-3) for i, j in zip(tck_refit, entrance_distance_Harris_tck)] #entrance_distance_Harris_obj = UnivariateSpline(entrance_distance_Harris_t_Di, # entrance_distance_Harris_Ks, # s=0, k=3) fluids-1.0.22/tests/test_atmosphere.py0000644000175000017500000003743514302004506017340 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' import os from fluids.atmosphere import * import fluids from fluids.numerics import assert_close, assert_close1d, assert_close2d import fluids.optional try: from datetime import datetime, timedelta except: pass import pytest try: import pvlib has_pvlib = True except: has_pvlib = False try: import pytz except: pass from fluids.atmosphere import ATMOSPHERE_1976, hwm93, hwm14, airmass def test_ATMOSPHERE_1976(): # Test values from 'Atmosphere to 86 Km by 2 Km (SI units)', from # http://ckw.phys.ncku.edu.tw/public/pub/Notes/Languages/Fortran/FORSYTHE/www.pdas.com/m1.htm # as provided in atmtabs.html in http://www.pdas.com/atmosdownload.html H_1 = [-2000, 0, 2000, 4000, 6000, 8000, 10000, 12000, 14000, 16000, 18000, 20000, 22000, 24000, 26000, 28000, 30000, 32000, 34000, 36000, 38000, 40000, 42000, 44000, 46000, 48000, 50000, 52000, 54000, 56000, 58000, 60000, 62000, 64000, 66000, 68000, 70000, 72000, 74000, 76000, 78000, 80000, 82000, 84000, 86000] T_1 = [301.15, 288.15, 275.15, 262.17, 249.19, 236.22, 223.25, 216.65, 216.65, 216.65, 216.65, 216.65, 218.57, 220.56, 222.54, 224.53, 226.51, 228.49, 233.74, 239.28, 244.82, 250.35, 255.88, 261.4, 266.92, 270.65, 270.65, 269.03, 263.52, 258.02, 252.52, 247.02, 241.53, 236.04, 230.55, 225.07, 219.58, 214.26, 210.35, 206.45, 202.54, 198.64, 194.74, 190.84, 186.95] P_1 = [127780, 101320, 79501, 61660, 47218, 35652, 26500, 19399, 14170, 10353, 7565.2, 5529.3, 4047.5, 2971.7, 2188.4, 1616.2, 1197, 889.06, 663.41, 498.52, 377.14, 287.14, 219.97, 169.5, 131.34, 102.3, 79.779, 62.215, 48.338, 37.362, 28.724, 21.959, 16.689, 12.606, 9.4609, 7.0529, 5.2209, 3.8363, 2.8009, 2.0333, 1.4674, 1.0525, 0.75009, 0.53104, 0.37338] rho_1 = [1.4782, 1.225, 1.0066, 0.81935, 0.66011, 0.52579, 0.41351, 0.31194, 0.22786, 0.16647, 0.12165, 0.08891, 0.06451, 0.046938, 0.034257, 0.025076, 0.01841, 0.013555, 0.0098874, 0.0072579, 0.0053666, 0.0039957, 0.0029948, 0.0022589, 0.0017141, 0.0013167, 0.0010269, 0.00080562, 0.000639, 0.00050445, 0.00039626, 0.00030968, 0.00024071, 0.00018605, 0.00014296, 0.00010917, 0.000082829, 0.000062373, 0.000046385, 0.000034311, 0.000025239, 0.000018458, 0.000013418, 9.6939E-006, 6.9578E-006] c_1 = [347.89, 340.29, 332.53, 324.59, 316.45, 308.11, 299.53, 295.07, 295.07, 295.07, 295.07, 295.07, 296.38, 297.72, 299.06, 300.39, 301.71, 303.02, 306.49, 310.1, 313.67, 317.19, 320.67, 324.12, 327.52, 329.8, 329.8, 328.81, 325.43, 322.01, 318.56, 315.07, 311.55, 307.99, 304.39, 300.75, 297.06, 293.44, 290.75, 288.04, 285.3, 282.54, 279.75, 276.94, 274.1] mu_1 = [0.000018515, 0.000017894, 0.00001726, 0.000016612, 0.000015949, 0.000015271, 0.000014577, 0.000014216, 0.000014216, 0.000014216, 0.000014216, 0.000014216, 0.000014322, 0.00001443, 0.000014538, 0.000014646, 0.000014753, 0.000014859, 0.00001514, 0.000015433, 0.000015723, 0.000016009, 0.000016293, 0.000016573, 0.000016851, 0.000017037, 0.000017037, 0.000016956, 0.00001668, 0.000016402, 0.000016121, 0.000015837, 0.000015551, 0.000015262, 0.00001497, 0.000014675, 0.000014377, 0.000014085, 0.000013868, 0.00001365, 0.00001343, 0.000013208, 0.000012985, 0.00001276, 0.000012533] Ts = [ATMOSPHERE_1976(Z).T for Z in H_1] assert_close1d(Ts, T_1, atol=0.005) Ps = [ATMOSPHERE_1976(Z).P for Z in H_1] assert_close1d(Ps, P_1, rtol=5E-5) rhos = [ATMOSPHERE_1976(Z).rho for Z in H_1] assert_close1d(rhos, rho_1, rtol=5E-5) cs = [ATMOSPHERE_1976(Z).v_sonic for Z in H_1] assert_close1d(cs, c_1, rtol=5E-5) mus = [ATMOSPHERE_1976(Z).mu for Z in H_1] assert_close1d(mus, mu_1, rtol=5E-5) assert_close(ATMOSPHERE_1976(1000, dT=1).T, 282.6510223716947) # Check thermal conductivity with: http://www.aerospaceweb.org/design/scripts/atmosphere/ assert_close(ATMOSPHERE_1976(1000).k, 0.0248133634493) # Other possible additions: # mean air particle speed; mean collision frequency; mean free path; mole volume; total number density delta_P = ATMOSPHERE_1976.pressure_integral(288.6, 84100.0, 147.0) assert_close(delta_P, 1451.9583061008857) def test_airmass(): m = airmass(lambda Z : ATMOSPHERE_1976(Z).rho, 90) assert_close(m, 10356.127665863998) # vs 10356 m = airmass(lambda Z : ATMOSPHERE_1976(Z).rho, 60) assert_close(m, 11954.138271601627) # vs 11954 m = airmass(lambda Z : ATMOSPHERE_1976(Z).rho, 5) assert_close(m, 106861.56335489497) # vs 106837 m = airmass(lambda Z : ATMOSPHERE_1976(Z).rho, .1) assert_close(m, 379082.24065519444, rtol=1e-6) # vs 378596 # airmass(lambda Z : ATMOSPHERE_1976(Z).rho, .1, RI=1.0016977377367) # As refractive index increases, the atmospheric mass increases drastically. An exception is being raised numerically, not sure why # 7966284.95792788 - that's an 800x atmospheric increase. hwm93_compiled = True try: # Just check if works hwm93(5E5, 45.0, 50.0, 365.0) except: hwm93_compiled = False hwm14_compiled = True try: hwm14(11000.0, latitude=-45.0, longitude=-85.0, day=150, seconds=12*3600.0, geomagnetic_disturbance_index=80.0) except: hwm14_compiled = False @pytest.mark.f2py @pytest.mark.skipif(not hwm93_compiled, reason='hwm93 model is not built') def test_hwm93(): # pass on systems without f2py for now custom = hwm93(5E5, 45.0, 50.0, 365.0) assert_close1d(custom, [-73.00312042236328, 0.1485661268234253]) # Test from pyhwm93 ans = hwm93(Z=150E3, latitude=65.0, longitude=-148.0, day=90.0, seconds=12*3600.0, f107=100., f107_avg=100., geomagnetic_disturbance_index=4.0) assert_close1d(ans, [-110.16133880615234, -12.400712013244629]) @pytest.mark.f2py @pytest.mark.skipif(not hwm14_compiled, reason='hwm14 model is not built') def test_hwm14(): # Data in checkhwm14.f90; all checks out. # Disturbance wind model checks are not separately implemented. # Height profile HEIGHTS = [0, 25, 50, 75, 100, 125, 150, 175, 200, 225, 250, 275, 300, 325, 350, 375, 400] HEIGHT_PROFILE_MER = [0.031, 2.965, -6.627, 2.238, -14.253, 37.403, 42.789, 20.278, 25.027, 34.297, 40.408, 44.436, 47.092, 48.843, 49.997, 50.758, 51.259] HEIGHT_PROFILE_ZON = [6.271, 25.115, 96.343, 44.845, 31.59, 11.628, -33.319, -49.984, -68.588, -80.022, -87.56, -92.53, -95.806, -97.965, -99.389, -100.327, -100.946] winds = [hwm14(alt*1000.0, latitude=-45.0, longitude=-85.0, day=150.0, seconds=12*3600.0, geomagnetic_disturbance_index=80.0) for alt in HEIGHTS] winds = [[round(i, 3) for i in j] for j in winds] MER_CALC = [i[0] for i in winds] ZON_CALC = [i[1] for i in winds] assert_close1d(MER_CALC, HEIGHT_PROFILE_MER) assert_close1d(ZON_CALC, HEIGHT_PROFILE_ZON) # Latitude profile LATS = [-90, -80, -70, -60, -50, -40, -30, -20, -10, 0, 10, 20, 30, 40, 50, 60, 70, 80, 90] LAT_PROFILE_MER = [-124.197, -150.268, -124.54, -23.132, 31.377, 39.524, 56.305, 60.849, 58.117, 56.751, 51.048, 35.653, 14.832, 1.068, -2.749, -27.112, -91.199, -186.757, -166.717] LAT_PROFILE_ZON = [177.174, 63.864, -71.971, -105.913, -28.176, 36.532, 32.79, 34.341, 72.676, 110.18, 111.472, 90.547, 77.736, 74.993, 41.972, -140.557, 3.833, 179.951, 235.447] winds = [hwm14(250E3, latitude=LAT, longitude=30, day=305, seconds=18*3600, geomagnetic_disturbance_index=48) for LAT in LATS] winds = [[round(i, 3) for i in j] for j in winds] MER_CALC = [i[0] for i in winds] ZON_CALC = [i[1] for i in winds] assert_close1d(MER_CALC, LAT_PROFILE_MER) assert_close1d(ZON_CALC, LAT_PROFILE_ZON) # Time of day profile: Note the data is specified in terms of local time TIMES_LT = [0, 1.5, 3, 4.5, 6, 7.5, 9, 10.5, 12, 13.5, 15, 16.5, 18, 19.5, 21, 22.5, 24] TIMES = [(lt_hour+70/15.)*3600 for lt_hour in TIMES_LT] TIME_PROFILE_MER = [6.564, 28.79, 22.316, -4.946, -23.175, -11.278, 17.57, 34.192, 26.875, 9.39, -1.362, -7.168, -21.035, -41.123, -46.702, -27.048, 6.566] TIME_PROFILER_ZON = [-40.187, -54.899, -57.187, -47.936, -41.468, -43.648, -49.691, -44.868, -22.542, 2.052, 4.603, -24.13, -66.38, -83.942, -60.262, -36.616, -40.145] winds = [hwm14(125E3, latitude=45, longitude=-70, day=75, seconds=TIME, geomagnetic_disturbance_index=30) for TIME in TIMES] winds = [[round(i, 3) for i in j] for j in winds] MER_CALC = [i[0] for i in winds] ZON_CALC = [i[1] for i in winds] assert_close1d(MER_CALC, TIME_PROFILE_MER) assert_close1d(ZON_CALC, TIME_PROFILER_ZON) # Longitude profile LONGS = [-180, -160, -140, -120, -100, -80, -60, -40, -20, 0, 20, 40, 60, 80, 100, 120, 140, 160, 180] LONG_PROFILE_MER = [-0.757, -0.592, 0.033, 0.885, 1.507, 1.545, 1.041, 0.421, 0.172, 0.463, 1.049, 1.502, 1.552, 1.232, 0.757, 0.288, -0.146, -0.538, -0.757] LONG_PROFILE_ZON = [-16.835, -18.073, -20.107, -22.166, -22.9, -21.649, -19.089, -16.596, -14.992, -13.909, -12.395, -10.129, -7.991, -7.369, -8.869, -11.701, -14.359, -15.945, -16.835] winds = [hwm14(40E3, latitude=-5, longitude=LONG, day=330, seconds=6*3600, geomagnetic_disturbance_index=4) for LONG in LONGS] winds = [[round(i, 3) for i in j] for j in winds] MER_CALC = [i[0] for i in winds] ZON_CALC = [i[1] for i in winds] assert_close1d(MER_CALC, LONG_PROFILE_MER) assert_close1d(ZON_CALC, LONG_PROFILE_ZON) # Day of year profile DAYS = [0, 20, 40, 60, 80, 100, 120, 140, 160, 180, 200, 220, 240, 260, 280, 300, 320, 340, 360] DAY_PROFILE_MER = [1.57, -5.43, -13.908, -22.489, -30.844, -39.415, -48.717, -58.582, -67.762, -74.124, -75.371, -70.021, -58.19, -41.813, -24.159, -8.838, 1.319, 5.064, 2.908] DAY_PROFILE_ZON = [-42.143, -36.947, -29.927, -23.077, -17.698, -14.016, -11.35, -8.72, -5.53, -2.039, 0.608, 0.85, -2.529, -9.733, -19.666, -30.164, -38.684, -43.208, -42.951] winds = [hwm14(200E3, latitude=-65, longitude=-135, day=DAY, seconds=21*3600, geomagnetic_disturbance_index=15) for DAY in DAYS] winds = [[round(i, 3) for i in j] for j in winds] MER_CALC = [i[0] for i in winds] ZON_CALC = [i[1] for i in winds] assert_close1d(MER_CALC, DAY_PROFILE_MER) assert_close1d(ZON_CALC, DAY_PROFILE_ZON) # Magnetic strength profile APS = [0, 20, 40, 60, 80, 100, 120, 140, 160, 180, 200, 220, 240, 260] AP_PROFILE_MER = [18.63, 11.026, -0.395, -9.121, -13.965, -16.868, -18.476, -19.38, -19.82, -19.887, -19.685, -19.558, -19.558, -19.558] AP_PROFILE_ZON = [-71.801, -69.031, -83.49, -96.899, -104.811, -109.891, -112.984, -114.991, -116.293, -116.99, -117.22, -117.212, -117.212, -117.212] winds = [hwm14(350E3, latitude=38, longitude=125, day=280, seconds=21*3600, geomagnetic_disturbance_index=AP) for AP in APS] winds = [[round(i, 3) for i in j] for j in winds] MER_CALC = [i[0] for i in winds] ZON_CALC = [i[1] for i in winds] assert_close1d(MER_CALC, AP_PROFILE_MER) assert_close1d(ZON_CALC, AP_PROFILE_ZON) @pytest.mark.pytz def test_solar_position(): pos = solar_position(pytz.timezone('Australia/Perth').localize(datetime(2020, 6, 6, 7, 10, 57)), -31.95265, 115.85742) pos_expect = [90.89617025931763, 90.89617025931763, -0.8961702593176304, -0.8961702593176304, 63.60160176917509, 79.07112321438035] assert_close1d(pos, pos_expect, rtol=1e-9) pos = solar_position(pytz.timezone('Australia/Perth').localize(datetime(2020, 6, 6, 14, 30, 0)), -31.95265, 115.85742) pos_expect = [63.40805686233129, 63.44000181582068, 26.591943137668704, 26.559998184179317, 325.1213762464115, 75.74674754854641] assert_close1d(pos, pos_expect, rtol=1e-9) pos = solar_position(datetime(2020, 6, 6, 14, 30, 0) - timedelta(hours=8), -31.95265, 115.85742) pos_expect = [63.40805686233129, 63.44000181582068, 26.591943137668704, 26.559998184179317, 325.1213762464115, 75.74674754854641] assert_close1d(pos, pos_expect, rtol=1e-9) local_time = datetime(2018, 4, 15, 6, 43, 5) local_time = pytz.timezone('America/Edmonton').localize(local_time) assert_close(solar_position(local_time, 51.0486, -114.07)[0], 90.00054676987014, rtol=1e-9) pos = solar_position(pytz.timezone('America/Edmonton').localize(datetime(2018, 4, 15, 20, 30, 28)), 51.0486, -114.07) pos_expect = [89.9995695661236, 90.54103812161853, 0.00043043387640950836, -0.5410381216185247, 286.8313781904518, 6.631429525878048] assert_close1d(pos, pos_expect, rtol=1e-9) @pytest.mark.pytz def test_earthsun_distance(): dt = earthsun_distance(datetime(2003, 10, 17, 13, 30, 30)) assert_close(dt, 149090925951.18338, rtol=1e-10) dt = earthsun_distance(datetime(2013, 1, 1, 21, 21, 0, 0)) assert_close(dt, 147098127628.8943, rtol=1e-10) dt = earthsun_distance(datetime(2013, 7, 5, 8, 44, 0, 0)) assert_close(dt, 152097326908.20578, rtol=1e-10) assert_close(earthsun_distance(pytz.timezone('America/Edmonton').localize(datetime(2020, 6, 6, 10, 0, 0, 0))), 151817805599.67142, rtol=1e-10) assert_close(earthsun_distance(datetime(2020, 6, 6, 10, 0, 0, 0)), 151812898579.44104, rtol=1e-10) @pytest.mark.pytz def test_solar_irradiation(): ans = solar_irradiation(Z=1100.0, latitude=51.0486, longitude=-114.07, linke_turbidity=3, moment=datetime(2018, 4, 15, 19, 43, 5), surface_tilt=41.0, surface_azimuth=180.0) ans_expect = [1065.7622492480543, 945.2657257434173, 120.49652350463705, 95.31534254980346, 25.18118095483359] assert_close1d(ans, ans_expect, rtol=1e-5) @pytest.mark.pytz def test_solar_irradiation_pytz(): import pytz # Providing linke_turbidity always saves .1 seconds on unit testing from loading database ans = solar_irradiation(Z=1100.0, latitude=51.0486, longitude=-114.07, linke_turbidity=3, moment=pytz.timezone('America/Edmonton').localize(datetime(2018, 4, 15, 13, 43, 5)), surface_tilt=41.0, surface_azimuth=180.0) ans_expect = [1065.7622492480543, 945.2657257434173, 120.49652350463705, 95.31534254980346, 25.18118095483359] assert_close1d(ans, ans_expect, rtol=1e-5) @pytest.mark.pytz def test_sunrise_sunset(): sunrise, sunset, transit = sunrise_sunset(datetime(2018, 4, 17, 13, 43, 5), 51.0486, -114.07) sunrise_expected = datetime(2018, 4, 17, 12, 36, 55, 782660) sunset_expected = datetime(2018, 4, 18, 2, 34, 4, 249326) transit_expected = datetime(2018, 4, 17, 19, 35, 46, 686265) assert sunrise == sunrise_expected assert sunset == sunset_expected assert transit == transit_expected @pytest.mark.pytz def test_sunrise_sunset_pytz(): calgary = pytz.timezone('America/Edmonton') sunrise, sunset, transit = sunrise_sunset(calgary.localize(datetime(2018, 4, 17)), 51.0486, -114.07) assert sunrise == calgary.localize(datetime(2018, 4, 16, 6, 39, 1, 570479)) assert sunset == calgary.localize(datetime(2018, 4, 16, 20, 32, 25, 778162)) assert transit == calgary.localize(datetime(2018, 4, 16, 13, 36, 0, 386341)) fluids-1.0.22/tests/test_vectorized.py0000644000175000017500000000376114302004506017342 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids.vectorized import * from fluids import * from numpy.testing import assert_allclose import pytest import fluids.vectorized import numpy as np def test_a_complicated_function(): orig = [fluids.integrate_drag_sphere(D=D, rhop=rhop, rho=1.2, mu=1.78E-5, t=0.5, V=30, distance=True) for D, rhop in zip([0.002, 0.001], [2200., 2300])] ans_vect = fluids.vectorized.integrate_drag_sphere(D=[0.002, 0.001], rhop=[2200., 2300], rho=1.2, mu=1.78E-5, t=0.5, V=30, distance=True) # Note the transpose requirement to match! ans_vect = np.array(ans_vect).T assert_allclose(ans_vect, orig) def test_Morsi_Alexander(): Cds = [Morsi_Alexander(i) for i in [500, 5000, 5000]] Cds_vect = fluids.vectorized.Morsi_Alexander([500, 5000, 5000]) assert_allclose(Cds, Cds_vect) fluids-1.0.22/tests/test_saltation.py0000644000175000017500000000476114302004506017163 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from fluids.saltation import * from fluids.numerics import assert_close, assert_close1d import pytest def test_Rizk(): V1 = Rizk(0.25, 100E-6, 1.2, 0.078) assert_close(V1, 9.8833092829357) def test_Matsumoto_1974(): V2 = Matsumoto_1974(mp=1., rhop=1000., dp=1E-3, rhog=1.2, D=0.1, Vterminal=5.24) assert_close(V2, 19.583617317317895) def test_Matsumoto_1975(): V3 = Matsumoto_1975(mp=1., rhop=1000., dp=1E-3, rhog=1.2, D=0.1, Vterminal=5.24) assert_close(V3, 18.04523091703009) def test_Matsumoto_1977(): V1 = Matsumoto_1977(mp=1., rhop=1000., dp=1E-3, rhog=1.2, D=0.1, Vterminal=5.24) V2 = Matsumoto_1977(mp=1., rhop=600., dp=1E-3, rhog=1.2, D=0.1, Vterminal=5.24) assert_close1d([V1, V2], [16.64284834446686, 10.586175424073561]) def test_Schade(): V1 = Schade(mp=1., rhop=1000., dp=1E-3, rhog=1.2, D=0.1) assert_close(V1, 13.697415809497912) def test_Weber_saltation(): V1 = Weber_saltation(mp=1.0, rhop=1000., dp=1E-3, rhog=1.2, D=0.1, Vterminal=4.0) V2 = Weber_saltation(mp=1.0, rhop=1000., dp=1E-3, rhog=1.2, D=0.1, Vterminal=2.0) assert_close1d([V1, V2], [15.227445436331474, 13.020222930460088]) def test_Geldart_Ling(): V1 = Geldart_Ling(1., 1.2, 0.1, 2E-5) V2 = Geldart_Ling(50., 1.2, 0.1, 2E-5) assert_close1d([V1, V2], [7.467495862402707, 44.01407469835619])fluids-1.0.22/tests/test_open_flow.py0000644000175000017500000000552114302004506017150 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids.open_flow import * from fluids.numerics import assert_close, assert_close1d import pytest def test_open_flow(): Q1 = Q_weir_V_Shen(0.6, angle=45) Q2 = Q_weir_V_Shen(1.2) assert_close1d([Q1, Q2], [0.21071725775478228, 2.8587083148501078]) Q1 = Q_weir_rectangular_Kindsvater_Carter(0.2, 0.5, 1.0) assert_close(Q1, 0.15545928949179422) Q1 = Q_weir_rectangular_SIA(0.2, 0.5, 1.0, 2.0) assert_close(Q1, 1.0408858453811165) Q1 = Q_weir_rectangular_full_Ackers(h1=0.9, h2=0.6, b=5.0) Q2 = Q_weir_rectangular_full_Ackers(h1=0.3, h2=0.4, b=2.0) assert_close1d([Q1, Q2], [9.251938159899948, 0.6489618999846898]) Q1 = Q_weir_rectangular_full_SIA(h1=0.3, h2=0.4, b=2.0) assert_close(Q1, 1.1875825055400384) Q1 = Q_weir_rectangular_full_Rehbock(h1=0.3, h2=0.4, b=2.0) assert_close(Q1, 0.6486856330601333) Q1 = Q_weir_rectangular_full_Kindsvater_Carter(h1=0.3, h2=0.4, b=2.0) assert_close(Q1, 0.641560300081563) V1 = V_Manning(0.2859, 0.005236, 0.03)*0.5721 V2 = V_Manning(0.2859, 0.005236, 0.03) V3 = V_Manning(Rh=5, S=0.001, n=0.05) assert_close1d([V1, V2, V3], [0.5988618058239864, 1.0467781958118971, 1.8493111942973235]) C = n_Manning_to_C_Chezy(0.05, Rh=5.0) assert_close(C, 26.15320972023661) n = C_Chezy_to_n_Manning(26.15, Rh=5.0) assert_close(n, 0.05000613713238358) V = V_Chezy(Rh=5.0, S=0.001, C=26.153) assert_close(V, 1.8492963648371776) n_tot = 0.0 for thing in n_dicts: for val in thing.values(): for vals in val.values(): n_tot += abs(sum(vals)) assert_close(n_tot, 11.115999999999984)fluids-1.0.22/tests/test_numba.py0000644000175000017500000010151014302004506016255 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division import fluids from fluids import * import fluids.vectorized from math import * from fluids.constants import * from fluids.numerics import assert_close, assert_close1d import pytest try: import numba import fluids.numba import fluids.numba_vectorized except: numba = None import numpy as np from numpy.testing import assert_allclose try: import test_friction import test_utils except: from . import test_friction from . import test_utils def mark_as_numba(func): func = pytest.mark.numba(func) # func = pytest.mark.slow(func) func = pytest.mark.skipif(numba is None, reason="Numba is missing")(func) return func @mark_as_numba def test_normalize(): xs = np.array([1,2,3,4]) res = fluids.numba.normalize(xs) assert type(res) == np.ndarray @mark_as_numba def test_roughness_Farshad_numba(): assert_close(fluids.roughness_Farshad('Cr13, bare', 0.05), fluids.numba.roughness_Farshad('Cr13, bare', 0.05)) assert_close(fluids.roughness_Farshad('Cr13, bare'), fluids.numba.roughness_Farshad('Cr13, bare')) assert_close(fluids.roughness_Farshad(coeffs=(0.0021, -1.0055), D=0.05), fluids.numba.roughness_Farshad(coeffs=(0.0021, -1.0055), D=0.05)) @mark_as_numba def test_Clamond_numba(): assert_close(fluids.numba.Clamond(10000.0, 2.0), fluids.Clamond(10000.0, 2.0), rtol=5e-15) assert_close(fluids.numba.Clamond(10000.0, 2.0, True), fluids.Clamond(10000.0, 2.0, True), rtol=5e-15) assert_close(fluids.numba.Clamond(10000.0, 2.0, False), fluids.Clamond(10000.0, 2.0, False), rtol=5e-15) Res = np.array([1e5, 1e6]) eDs = np.array([1e-5, 1e-6]) fast = np.array([False]*2) assert_close1d(fluids.numba_vectorized.Clamond(Res, eDs, fast), fluids.vectorized.Clamond(Res, eDs, fast), rtol=1e-14) @mark_as_numba def test_string_error_message_outside_function(): fluids.numba.entrance_sharp('Miller') fluids.numba.entrance_sharp() fluids.numba.entrance_angled(30, 'Idelchik') fluids.numba.entrance_angled(30, None) fluids.numba.entrance_angled(30.0) @mark_as_numba def test_interp(): assert_close(fluids.numba.CSA_motor_efficiency(100*hp, closed=True, poles=6, high_efficiency=True), 0.95) # Should take ~10 us powers = np.array([70000]*100) closed = np.array([True]*100) poles = np.array([6]*100) high_efficiency = np.array([True]*100) fluids.numba_vectorized.CSA_motor_efficiency(powers, closed, poles, high_efficiency) assert_close(fluids.numba.bend_rounded_Crane(Di=.4020, rc=.4*5, angle=30), fluids.bend_rounded_Crane(Di=.4020, rc=.4*5, angle=30)) @mark_as_numba def test_constants(): assert_close(fluids.numba.K_separator_demister_York(975000), 0.09635076944244816) @mark_as_numba def test_calling_function_in_other_module(): assert_close(fluids.numba.ft_Crane(.5), 0.011782458726227104, rtol=1e-4) @mark_as_numba def test_None_is_not_multiplied_add_check_on_is_None(): assert_close(fluids.numba.polytropic_exponent(1.4, eta_p=0.78), 1.5780346820809246, rtol=1e-5) @mark_as_numba def test_core_from_other_module(): assert_close(fluids.numba.helical_turbulent_fd_Srinivasan(1E4, 0.01, .02), 0.0570745212117107) @mark_as_numba def test_string_branches(): # Currently slower assert_close(fluids.numba.C_Reader_Harris_Gallagher(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, taps='flange'), 0.5990326277163659) @mark_as_numba def test_interp_with_own_list(): assert_close(fluids.numba.dP_venturi_tube(D=0.07366, Do=0.05, P1=200000.0, P2=183000.0), 1788.5717754177406) @mark_as_numba def test_C_Reader_Harris_Gallagher_wet_venturi_tube_numba(): assert_close(fluids.numba.C_Reader_Harris_Gallagher_wet_venturi_tube(mg=5.31926, ml=5.31926/2, rhog=50.0, rhol=800., D=.1, Do=.06, H=1), 0.9754210845876333) @mark_as_numba def test_rename_constant(): assert_close(fluids.numba.friction_plate_Martin_1999(Re=20000, plate_enlargement_factor=1.15), 2.284018089834135) @mark_as_numba def test_list_in_list_constant_converted(): assert_close(fluids.numba.friction_plate_Kumar(Re=2000, chevron_angle=30), friction_plate_Kumar(Re=2000, chevron_angle=30)) @mark_as_numba def test_have_to_make_zero_division_a_check(): # Manually requires changes, and is unpythonic assert_close(fluids.numba.SA_ellipsoidal_head(2, 1.5), SA_ellipsoidal_head(2, 1.5)) @mark_as_numba def test_functions_used_to_return_different_return_value_signatures_changed(): assert_close1d(fluids.numba.SA_tank(D=1., L=5, sideA='spherical', sideA_a=0.5, sideB='spherical',sideB_a=0.5), SA_tank(D=1., L=5, sideA='spherical', sideA_a=0.5, sideB='spherical',sideB_a=0.5)) @mark_as_numba def test_Colebrook_ignored(): fd = fluids.numba.Colebrook(1e5, 1e-5) assert_close(fd, 0.018043802895063684, rtol=1e-14) # Not compatible with cache #@pytest.mark.numba #@pytest.mark.skipif(numba is None, reason="Numba is missing") #def test_secant_runs(): # # Really feel like the kwargs should work in object mode, but it doesn't # # Just gets slower # @numba.jit # def to_solve(x): # return sin(x*.3) - .5 # fluids.numba.secant(to_solve, .3, ytol=1e-10) # #@pytest.mark.numba #@pytest.mark.skipif(numba is None, reason="Numba is missing") #def test_brenth_runs(): # @numba.njit # def to_solve(x, goal): # return sin(x*.3) - goal # # ans = fluids.numba.brenth(to_solve, .3, 2, args=(.45,)) # assert_close(ans, 1.555884463490988) @mark_as_numba def test_lambertw_runs(): assert_close(fluids.numba.numerics.lambertw(5.0), 1.3267246652422002) assert_close(fluids.numba.Prandtl_von_Karman_Nikuradse(1e7), 0.008102669430874914) @mark_as_numba def test_ellipe_runs(): assert_close(fluids.numba.plate_enlargement_factor(amplitude=5E-4, wavelength=3.7E-3), 1.1611862034509677, rtol=1e-10) @mark_as_numba def test_control_valve_noise(): dB = fluids.numba.control_valve_noise_l_2015(m=40, P1=1E6, P2=6.5E5, Psat=2.32E3, rho=997, c=1400, Kv=77.848, d=0.1, Di=0.1071, FL=0.92, Fd=0.42, t_pipe=0.0036, rho_pipe=7800.0, c_pipe=5000.0,rho_air=1.293, c_air=343.0, An=-4.6) assert_close(dB, 81.58200097996539) dB = fluids.numba.control_valve_noise_g_2011(m=2.22, P1=1E6, P2=7.2E5, T1=450, rho=5.3, gamma=1.22, MW=19.8, Kv=77.85, d=0.1, Di=0.2031, FL=None, FLP=0.792, FP=0.98, Fd=0.296, t_pipe=0.008, rho_pipe=8000.0, c_pipe=5000.0, rho_air=1.293, c_air=343.0, An=-3.8, Stp=0.2) assert_close(dB, 91.67702674629604) @mark_as_numba def test_friction_factor(): # Bulk test of methods test_utils.swap_for_numba_test(test_friction.test_friction_basic) fluids.numba.friction_factor(1e5, 1e-3) assert_close(fluids.numba.friction.friction_factor(1e4, 1e-4, Method='Churchill_1973'), fluids.friction_factor(1e4, 1e-4, Method='Churchill_1973')) assert_close(fluids.numba.friction.friction_factor(1e4, 1e-4), fluids.friction_factor(1e4, 1e-4)) assert_close(fluids.numba.friction.friction_factor(1e2, 1e-4), fluids.friction_factor(1e2, 1e-4)) assert_close(fluids.numba.helical_Re_crit(Di=0.02, Dc=0.5), fluids.helical_Re_crit(Di=0.02, Dc=0.5)) assert_close(fluids.numba.transmission_factor(fd=0.0185), fluids.transmission_factor(fd=0.0185)) @mark_as_numba def test_AvailableMethods_removal(): assert_close(fluids.numba.friction_factor_curved(Re=1E5, Di=0.02, Dc=0.5), fluids.friction_factor_curved(Re=1E5, Di=0.02, Dc=0.5)) @mark_as_numba def test_bisplev_uses(): K = fluids.numba.entrance_beveled(Di=0.1, l=0.003, angle=45, method='Idelchik') assert_close(K, 0.39949999999999997) assert_close(fluids.numba.VFD_efficiency(100*hp, load=0.2), fluids.VFD_efficiency(100*hp, load=0.2)) @mark_as_numba def test_splev_uses(): methods = ['Rennels', 'Miller', 'Idelchik', 'Harris', 'Crane'] Ks = [fluids.numba.entrance_distance(Di=0.1, t=0.0005, method=m) for m in methods] Ks_orig = [fluids.fittings.entrance_distance(Di=0.1, t=0.0005, method=m) for m in methods] assert_close1d(Ks, Ks_orig) # Same speed assert_close(fluids.numba.entrance_rounded(Di=0.1, rc=0.0235), fluids.fittings.entrance_rounded(Di=0.1, rc=0.0235)) # Got 10x faster! no strings. assert_close(fluids.numba.bend_rounded_Miller(Di=.6, bend_diameters=2, angle=90, Re=2e6, roughness=2E-5, L_unimpeded=30*.6), fluids.bend_rounded_Miller(Di=.6, bend_diameters=2, angle=90, Re=2e6, roughness=2E-5, L_unimpeded=30*.6)) @mark_as_numba def test_misc_fittings(): methods = ['Rennels', 'Miller', 'Crane', 'Blevins'] assert_close1d([fluids.numba.bend_miter(Di=.6, angle=45, Re=1e6, roughness=1e-5, L_unimpeded=20, method=m) for m in methods], [fluids.fittings.bend_miter(Di=.6, angle=45, Re=1e6, roughness=1e-5, L_unimpeded=20, method=m) for m in methods]) assert_close(fluids.numba.contraction_round_Miller(Di1=1, Di2=0.4, rc=0.04), fluids.contraction_round_Miller(Di1=1, Di2=0.4, rc=0.04)) assert_close(fluids.numba.contraction_round(Di1=1, Di2=0.4, rc=0.04), fluids.contraction_round(Di1=1, Di2=0.4, rc=0.04)) assert_close(fluids.numba.contraction_beveled(Di1=0.5, Di2=0.1, l=.7*.1, angle=120), fluids.contraction_beveled(Di1=0.5, Di2=0.1, l=.7*.1, angle=120),) assert_close(fluids.numba.diffuser_pipe_reducer(Di1=.5, Di2=.75, l=1.5, fd1=0.07), fluids.diffuser_pipe_reducer(Di1=.5, Di2=.75, l=1.5, fd1=0.07),) assert_close(fluids.numba.K_gate_valve_Crane(D1=.1, D2=.146, angle=13.115), fluids.K_gate_valve_Crane(D1=.1, D2=.146, angle=13.115)) assert_close(fluids.numba.v_lift_valve_Crane(rho=998.2, D1=0.0627, D2=0.0779, style='lift check straight'), fluids.v_lift_valve_Crane(rho=998.2, D1=0.0627, D2=0.0779, style='lift check straight')) assert_close(fluids.numba.K_branch_converging_Crane(0.1023, 0.1023, 0.018917, 0.00633), fluids.K_branch_converging_Crane(0.1023, 0.1023, 0.018917, 0.00633),) assert_close(fluids.numba.bend_rounded(Di=4.020, rc=4.0*5, angle=30, Re=1E5), fluids.bend_rounded(Di=4.020, rc=4.0*5, angle=30, Re=1E5)) assert_close(fluids.numba.contraction_conical_Crane(Di1=0.0779, Di2=0.0525, l=0), fluids.contraction_conical_Crane(Di1=0.0779, Di2=0.0525, l=0)) assert_close(fluids.numba.contraction_conical(Di1=0.1, Di2=0.04, l=0.04, Re=1E6), fluids.contraction_conical(Di1=0.1, Di2=0.04, l=0.04, Re=1E6)) assert_close(fluids.numba.diffuser_conical(Di1=1/3., Di2=1.0, angle=50.0, Re=1E6), fluids.diffuser_conical(Di1=1/3., Di2=1.0, angle=50.0, Re=1E6)) assert_close(fluids.numba.diffuser_conical(Di1=1., Di2=10.,l=9, fd=0.01), fluids.diffuser_conical(Di1=1., Di2=10.,l=9, fd=0.01)) assert_close(fluids.numba.diffuser_conical_staged(Di1=1., Di2=10., DEs=np.array([2,3,4]), ls=np.array([1.1,1.2,1.3, 1.4]), fd=0.01), fluids.diffuser_conical_staged(Di1=1., Di2=10., DEs=np.array([2,3,4]), ls=np.array([1.1,1.2,1.3, 1.4]), fd=0.01)) assert_close(fluids.numba.K_globe_stop_check_valve_Crane(.1, .02, style=1), fluids.K_globe_stop_check_valve_Crane(.1, .02, style=1)) assert_close(fluids.numba.K_angle_stop_check_valve_Crane(.1, .02, style=1), fluids.K_angle_stop_check_valve_Crane(.1, .02, style=1)) assert_close(fluids.numba.K_diaphragm_valve_Crane(D=.1, style=0), fluids.K_diaphragm_valve_Crane(D=.1, style=0)) assert_close(fluids.numba.K_foot_valve_Crane(D=0.2, style=0), fluids.K_foot_valve_Crane(D=0.2, style=0)) assert_close(fluids.numba.K_butterfly_valve_Crane(D=.1, style=2), fluids.K_butterfly_valve_Crane(D=.1, style=2)) assert_close(fluids.numba.K_plug_valve_Crane(D1=.01, D2=.02, angle=50), fluids.K_plug_valve_Crane(D1=.01, D2=.02, angle=50)) # Darby and Hooper got slower because they don't a dict lookup assert_close(fluids.numba.Darby3K(NPS=2., Re=10000., name='Valve, Angle valve, 45°, full line size, β = 1'), fluids.Darby3K(NPS=2., Re=10000., name='Valve, Angle valve, 45°, full line size, β = 1')) assert_close(fluids.numba.Darby3K(NPS=12., Re=10000., K1=950, Ki=0.25, Kd=4), fluids.Darby3K(NPS=12., Re=10000., K1=950, Ki=0.25, Kd=4)) assert_close(fluids.numba.Hooper2K(Di=2., Re=10000., name='Valve, Globe, Standard'), fluids.Hooper2K(Di=2., Re=10000., name='Valve, Globe, Standard')) assert_close(fluids.numba.Hooper2K(Di=2., Re=10000., K1=900, Kinfty=4), fluids.Hooper2K(Di=2., Re=10000., K1=900, Kinfty=4)) # reported bug https://github.com/numba/numba/issues/6007 about this kwargs = dict(Di=.4020, rc=.4*5, angle=30.0) assert_close(fluids.numba.bend_rounded_Crane(**kwargs), fluids.bend_rounded_Crane(**kwargs)) @mark_as_numba def test_misc_filters_numba(): assert_close(fluids.numba.round_edge_screen(0.5, 100, 45), fluids.round_edge_screen(0.5, 100, 45)) assert_close(fluids.numba.round_edge_screen(0.5, 100), fluids.round_edge_screen(0.5, 100)) assert_close(fluids.numba.round_edge_open_mesh(0.96, angle=33.), fluids.round_edge_open_mesh(0.96, angle=33.)) assert_close(fluids.numba.square_edge_grill(.45, l=.15, Dh=.002, fd=.0185), fluids.square_edge_grill(.45, l=.15, Dh=.002, fd=.0185)) assert_close(fluids.numba.round_edge_grill(.4, l=.15, Dh=.002, fd=.0185), fluids.round_edge_grill(.4, l=.15, Dh=.002, fd=.0185)) assert_close(fluids.numba.square_edge_screen(0.99), fluids.square_edge_screen(0.99)) @mark_as_numba def test_misc_pump_numba(): assert_close(fluids.numba.motor_efficiency_underloaded(10.1*hp, .1), fluids.motor_efficiency_underloaded(10.1*hp, .1),) assert_close(fluids.numba.current_ideal(V=120, P=1E4, PF=1, phase=1), fluids.current_ideal(V=120, P=1E4, PF=1, phase=1)) @mark_as_numba def test_misc_separator_numba(): assert_close(fluids.numba.K_separator_Watkins(0.88, 985.4, 1.3, horizontal=True), fluids.K_separator_Watkins(0.88, 985.4, 1.3, horizontal=True)) @mark_as_numba def test_misc_mixing_numba(): assert_close(fluids.numba.size_tee(Q1=11.7, Q2=2.74, D=0.762, D2=None, n=1, pipe_diameters=5), fluids.size_tee(Q1=11.7, Q2=2.74, D=0.762, D2=None, n=1, pipe_diameters=5)) @mark_as_numba def test_misc_compressible(): assert_close(fluids.numba.isentropic_work_compression(P1=1E5, P2=1E6, T1=300, k=1.4, eta=0.78), fluids.isentropic_work_compression(P1=1E5, P2=1E6, T1=300, k=1.4, eta=0.78),) assert_close(fluids.numba.isentropic_efficiency(1E5, 1E6, 1.4, eta_p=0.78), fluids.isentropic_efficiency(1E5, 1E6, 1.4, eta_p=0.78)) assert_close(fluids.numba.polytropic_exponent(1.4, eta_p=0.78), fluids.polytropic_exponent(1.4, eta_p=0.78)) assert_close(fluids.numba.Panhandle_A(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15), fluids.Panhandle_A(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15)) assert_close(fluids.numba.Panhandle_B(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15), fluids.Panhandle_B(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15)) assert_close(fluids.numba.Weymouth(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15), fluids.Weymouth(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15)) assert_close(fluids.numba.Spitzglass_high(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15), fluids.Spitzglass_high(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15)) assert_close(fluids.numba.Spitzglass_high(P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15, Q=30), fluids.Spitzglass_high(P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15, Q=30)) assert_close(fluids.numba.Spitzglass_low(D=0.154051, P1=6720.3199, P2=0, L=54.864, SG=0.6, Tavg=288.7), fluids.Spitzglass_low(D=0.154051, P1=6720.3199, P2=0, L=54.864, SG=0.6, Tavg=288.7)) assert_close(fluids.numba.Spitzglass_low(P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15, Q=30), fluids.Spitzglass_low(P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15, Q=30)) assert_close(fluids.numba.Oliphant(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15), fluids.Oliphant(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15)) assert_close(fluids.numba.Oliphant(P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15, Q=30), fluids.Oliphant(P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15, Q=30)) # With the -1 lambertw branch assert_close(fluids.numba.P_isothermal_critical_flow(P=1E6, fd=0.00185, L=1000., D=0.5), fluids.P_isothermal_critical_flow(P=1E6, fd=0.00185, L=1000., D=0.5)) @mark_as_numba def test_misc_compressible_isothermal_gas(): assert_close(fluids.numba.isothermal_gas(rho=11.3, fd=0.00185, P1=1E6, P2=9E5, L=1000, m=145.48475726), fluids.isothermal_gas(rho=11.3, fd=0.00185, P1=1E6, P2=9E5, L=1000, m=145.48475726)) # the below used to work in numba not anymore # isothermal_gas(rho=11.3, fd=0.00185, m=145.4847572636031, P2=9E5, L=1000, D=0.5) @mark_as_numba def test_misc_control_valve(): # Not working - size_control_valve_g, size_control_valve_l # Can take the functions out, but the dictionary return remains problematic # fluids.numba.control_valve_choke_P_l(69682.89291024722, 22048320.0, 0.6, P2=458887.5306077305) # Willing to change this error message if the other can pass # fluids.numba.size_control_valve_g(T=433., MW=44.01, mu=1.4665E-4, gamma=1.30, #Z=0.988, P1=680E3, P2=310E3, Q=38/36., D1=0.08, D2=0.1, d=0.05, #FL=0.85, Fd=0.42, xT=0.60) assert_close(fluids.numba.Reynolds_factor(FL=0.98, C=0.015483, d=15., Rev=1202., full_trim=False), fluids.Reynolds_factor(FL=0.98, C=0.015483, d=15., Rev=1202., full_trim=False)) assert_close(fluids.numba.convert_flow_coefficient(10, 'Kv', 'Av'), fluids.convert_flow_coefficient(10, 'Kv', 'Av')) @mark_as_numba def test_misc_safety_valve(): assert_close(fluids.numba.API520_round_size(1E-4), fluids.API520_round_size(1E-4)) assert_close(fluids.numba.API520_SH(593+273.15, 1066.325E3), fluids.API520_SH(593+273.15, 1066.325E3)) assert_close(fluids.numba.API520_W(1E6, 3E5), fluids.API520_W(1E6, 3E5)) assert_close(fluids.numba.API520_B(1E6, 5E5), fluids.API520_B(1E6, 5E5)) assert_close(fluids.numba.API520_A_g(m=24270/3600., T=348., Z=0.90, MW=51., k=1.11, P1=670E3, Kb=1, Kc=1), fluids.API520_A_g(m=24270/3600., T=348., Z=0.90, MW=51., k=1.11, P1=670E3, Kb=1, Kc=1)) assert_close(fluids.numba.API520_A_steam(m=69615/3600., T=592.5, P1=12236E3, Kd=0.975, Kb=1, Kc=1), fluids.API520_A_steam(m=69615/3600., T=592.5, P1=12236E3, Kd=0.975, Kb=1, Kc=1)) @mark_as_numba def test_misc_packed_bed(): assert_close(fluids.numba.Harrison_Brunner_Hecker(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, Dt=1E-2), fluids.Harrison_Brunner_Hecker(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, Dt=1E-2)) assert_close(fluids.numba.Harrison_Brunner_Hecker(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3), fluids.Harrison_Brunner_Hecker(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3)) assert_close(fluids.numba.Montillet_Akkari_Comiti(dp=0.0008, voidage=0.4, L=0.5, vs=0.00132629120, rho=1000., mu=1.00E-003), fluids.Montillet_Akkari_Comiti(dp=0.0008, voidage=0.4, L=0.5, vs=0.00132629120, rho=1000., mu=1.00E-003)) assert_close(fluids.numba.dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3), fluids.dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3)) assert_close(fluids.numba.dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, Dt=0.01), fluids.dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, Dt=0.01)) @mark_as_numba def test_misc_packed_tower(): # 12.8 us CPython, 1.4 PyPy, 1.85 numba assert_close(fluids.numba.Stichlmair_wet(Vg=0.4, Vl = 5E-3, rhog=5., rhol=1200., mug=5E-5, voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.), fluids.Stichlmair_wet(Vg=0.4, Vl = 5E-3, rhog=5., rhol=1200., mug=5E-5, voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.),) assert_close(fluids.numba.Stichlmair_flood(Vl = 5E-3, rhog=5., rhol=1200., mug=5E-5, voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.), fluids.Stichlmair_flood(Vl = 5E-3, rhog=5., rhol=1200., mug=5E-5, voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.)) @mark_as_numba def test_misc_flow_meter(): assert_close(fluids.numba.differential_pressure_meter_beta(D=0.2575, D2=0.184, meter_type='cone meter'), fluids.differential_pressure_meter_beta(D=0.2575, D2=0.184, meter_type='cone meter')) assert_close(fluids.numba.C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, taps='flange', subtype='orifice'), fluids.C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, taps='flange', subtype='orifice')) assert_close1d(fluids.numba.differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=7.702338035732168, meter_type='ISO 5167 orifice', taps='D'), fluids.differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=7.702338035732168, meter_type='ISO 5167 orifice', taps='D')) assert_close(fluids.numba.differential_pressure_meter_dP(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, meter_type='as cast convergent venturi tube'), fluids.differential_pressure_meter_dP(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, meter_type='as cast convergent venturi tube')) assert_close(fluids.numba.differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D'), fluids.differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D')) assert_close(fluids.numba.differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D', epsilon_specified=1), fluids.differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D', epsilon_specified=1)) assert_close(fluids.numba.differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, meter_type='ISO 5167 orifice', taps='D', epsilon_specified=1), fluids.differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, meter_type='ISO 5167 orifice', taps='D', epsilon_specified=1)) @mark_as_numba def test_misc_core(): # All these had issues assert_close(fluids.numba.Reynolds(2.5, 0.25, nu=1.636e-05), fluids.Reynolds(2.5, 0.25, nu=1.636e-05)) assert_close(fluids.numba.Peclet_heat(1.5, 2, 1000., 4000., 0.6), fluids.Peclet_heat(1.5, 2, 1000., 4000., 0.6)) assert_close(fluids.numba.Fourier_heat(t=1.5, L=2, rho=1000., Cp=4000., k=0.6), fluids.Fourier_heat(t=1.5, L=2, rho=1000., Cp=4000., k=0.6)) assert_close(fluids.numba.Graetz_heat(1.5, 0.25, 5, 800., 2200., 0.6), fluids.Graetz_heat(1.5, 0.25, 5, 800., 2200., 0.6)) assert_close(fluids.numba.Schmidt(D=2E-6, mu=4.61E-6, rho=800), fluids.Schmidt(D=2E-6, mu=4.61E-6, rho=800)) assert_close(fluids.numba.Lewis(D=22.6E-6, alpha=19.1E-6), fluids.Lewis(D=22.6E-6, alpha=19.1E-6)) assert_close(fluids.numba.Confinement(0.001, 1077, 76.5, 4.27E-3), fluids.Confinement(0.001, 1077, 76.5, 4.27E-3)) assert_close(fluids.numba.Prandtl(Cp=1637., k=0.010, nu=6.4E-7, rho=7.1), fluids.Prandtl(Cp=1637., k=0.010, nu=6.4E-7, rho=7.1)) assert_close(fluids.numba.Grashof(L=0.9144, beta=0.000933, T1=178.2, rho=1.1613, mu=1.9E-5), fluids.Grashof(L=0.9144, beta=0.000933, T1=178.2, rho=1.1613, mu=1.9E-5)) assert_close(fluids.numba.Froude(1.83, L=2., squared=True), fluids.Froude(1.83, L=2., squared=True)) assert_close(fluids.numba.nu_mu_converter(998., nu=1.0E-6), fluids.nu_mu_converter(998., nu=1.0E-6)) assert_close(fluids.numba.gravity(55, 1E4), fluids.gravity(55, 1E4)) @mark_as_numba def test_misc_drag(): assert_close(fluids.numba.drag_sphere(200), fluids.drag_sphere(200)) assert_close(fluids.numba.drag_sphere(1e6, Method='Almedeij'), fluids.drag_sphere(1e6, Method='Almedeij')) assert_close(fluids.numba.v_terminal(D=70E-6, rhop=2600., rho=1000., mu=1E-3), fluids.v_terminal(D=70E-6, rhop=2600., rho=1000., mu=1E-3)) assert_close(fluids.numba.time_v_terminal_Stokes(D=1e-7, rhop=2200., rho=1.2, mu=1.78E-5, V0=1), fluids.time_v_terminal_Stokes(D=1e-7, rhop=2200., rho=1.2, mu=1.78E-5, V0=1), rtol=1e-1 ) @mark_as_numba def test_misc_two_phase_voidage(): assert_close(fluids.numba.gas_liquid_viscosity(x=0.4, mul=1E-3, mug=1E-5, rhol=850, rhog=1.2, Method='Duckler'), fluids.gas_liquid_viscosity(x=0.4, mul=1E-3, mug=1E-5, rhol=850, rhog=1.2, Method='Duckler')) assert_close(fluids.numba.liquid_gas_voidage(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05), fluids.liquid_gas_voidage(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05)) @mark_as_numba def test_misc_two_phase(): assert_close(fluids.numba.Beggs_Brill(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, P=1E7, D=0.05, angle=0, roughness=0, L=1), fluids.Beggs_Brill(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, P=1E7, D=0.05, angle=0, roughness=0, L=1)) assert_close(fluids.numba.Kim_Mudawar(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1), fluids.Kim_Mudawar(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1)) reg_numba = fluids.numba.Mandhane_Gregory_Aziz_regime(m=0.6, x=0.112, rhol=915.12, rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.065, D=0.05) reg_normal = fluids.Mandhane_Gregory_Aziz_regime(m=0.6, x=0.112, rhol=915.12, rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.065, D=0.05) assert reg_numba[0] == reg_normal[0] assert_close1d(reg_numba[1:], reg_normal[1:]) reg_numba = fluids.numba.Taitel_Dukler_regime(m=0.6, x=0.112, rhol=915.12, rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0, angle=0) reg_normal = fluids.Taitel_Dukler_regime(m=0.6, x=0.112, rhol=915.12, rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0, angle=0) assert reg_numba[0] == reg_normal[0] assert_close1d(reg_numba[1:], reg_normal[1:]) assert_close(fluids.numba.two_phase_dP(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1), fluids.two_phase_dP(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1)) assert_close(fluids.numba.two_phase_dP(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1, P=1e6), fluids.two_phase_dP(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1, P=1e6)) @mark_as_numba def tets_ATMOSPHERE_1976(): assert_close(fluids.numba.ATMOSPHERE_1976(4.4).v_sonic, fluids.ATMOSPHERE_1976(4.4).v_sonic) # pressure_integral not working do not know why @numba.njit def my_int(Z): return fluids.numba.atmosphere.ATMOSPHERE_1976(Z, 0).rho assert_close(fluids.numba.atmosphere.airmass(my_int, 90.0), fluids.atmosphere.airmass(lambda Z : ATMOSPHERE_1976(Z).rho, 90)) assert_close(fluids.numba.atmosphere.ATMOSPHERE_1976.pressure_integral(300, 1e5, 10), fluids.atmosphere.ATMOSPHERE_1976.pressure_integral(300, 1e5, 10)) @mark_as_numba def test_misc_geometry(): assert_close(fluids.numba.geometry.SA_partial_horiz_spherical_head(D=72., a=48.0, h=24.0), fluids.geometry.SA_partial_horiz_spherical_head(D=72., a=48.0, h=24.0)) # Probably the most impressive numba implementation to date - takes 1.4 us vs. 100 us with CPython # and 252 us with PyPy because of the ctypes function assert_close(fluids.numba.SA_partial_horiz_ellipsoidal_head(D=72., a=48.0, h=24.0), fluids.geometry.SA_partial_horiz_ellipsoidal_head(D=72., a=48.0, h=24.0)) assert_close(fluids.numba.SA_partial_horiz_guppy_head(D=72., a=48.0, h=24.0), fluids.SA_partial_horiz_guppy_head(D=72., a=48.0, h=24.0)) # Not working when h is higher, likes to return nans also assert_close(fluids.numba.SA_partial_horiz_torispherical_head(D=72., f=1.0, k=.1, h=1.0), SA_partial_horiz_torispherical_head(D=72., f=1.0, k=.1, h=1.0)) assert_close(fluids.numba.V_from_h(h=7, D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.), fluids.V_from_h(h=7, D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.)) assert_close(fluids.numba.V_from_h(h=1.2, D=1.5, L=5., horizontal=True, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.), fluids.V_from_h(h=1.2, D=1.5, L=5., horizontal=True, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.)) assert_close(fluids.numba.SA_from_h(h=7, D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.), SA_from_h(h=7, D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.)) assert_close(fluids.numba.SA_from_h(h=1.2, D=1.5, L=5., horizontal=True, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.), SA_from_h(h=1.2, D=1.5, L=5., horizontal=True, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.)) @mark_as_numba def tets_newton_system(): @numba.njit def to_solve_jac(x0): return np.array([5.0*x0[0] - 3]), np.array([[5.0]]) # fluids.numerics.newton_system(to_solve_jac, x0=[1.0], ytol=1e-5, jac=True) res, niter = fluids.numba.newton_system(to_solve_jac, x0=np.array([1.0]), ytol=1e-5, jac=True) assert niter == 2 assert_allclose(res, np.array([0.6])) @mark_as_numba def test_numerics_solve_direct(): A = np.array([[1.0,2.53252], [34.34, .5342]]) B = np.array([1.1241, .54354]) ans = fluids.numba.numerics.solve_2_direct(A, B) assert_close1d(np.linalg.solve(A, B), ans, rtol=1e-14) assert type(ans) is np.ndarray A = np.array([[1.0,2.53252, 54.54], [34.34, .5342, .545], [12.43, .545, .55555]]) B = np.array([1.1241, .54354, 1.22333]) ans = fluids.numba.numerics.solve_3_direct(A, B) assert_close1d(np.linalg.solve(A, B), ans, rtol=5e-14) assert type(ans) is np.ndarray A = np.array([[1.0,2.53252, 54.54, .235], [34.34, .5342, .545, .223], [12.43, .545, .55555, 33.33], [1.11, 2.2, 3.33, 4.44]]) B = np.array([1.1241, .54354, 1.22333, 9.009]) ans = fluids.numba.numerics.solve_4_direct(A, B) assert_close1d(np.linalg.solve(A, B), ans, rtol=5e-14) assert type(ans) is np.ndarray fluids-1.0.22/tests/test_two_phase_voidage.py0000644000175000017500000002144014302004506020645 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids.two_phase_voidage import * from fluids import * from fluids.numerics import assert_close, assert_close1d, linspace import pytest def test_Thom(): # >>> from sympy import * # >>> x, rhol, rhog, mug, mul = symbols('x, rhol, rhog, mug, mul') # >>> Z = (rhol/rhog)**Rational(555,1000)*(mug/mul)**Rational(111,1000) # >>> gamma = Z**1.6 # >>> alpha = (gamma*x/(1 + x*(gamma-1))) # >>> alpha # x*((mug/mul)**(111/1000)*(rhol/rhog)**(111/200))**1.6/(x*(((mug/mul)**(111/1000)*(rhol/rhog)**(111/200))**1.6 - 1) + 1) # >>> alpha.subs([(x, .4), (rhol, 800), (rhog, 2.5), (mul, 1E-3), (mug, 1E-5)]) # 0.980138792146901 assert_close(Thom(.4, 800, 2.5, 1E-3, 1E-5), 0.9801482164042417) def test_Zivi(): assert_close(Zivi(.4, 800, 2.5), 0.9689339909056356) def test_Smith(): assert_close(Smith(.4, 800, 2.5), 0.959981235534199) # Quick test function, to ensure results are the same regardless of # the form of the expression def Smith2(x, rhol, rhog): K = 0.4 first = 1 + rhog/rhol*K*(1/x-1) second = rhog/rhol*(1-K)*(1/x-1) third = ((rhol/rhog + K*(1/x-1))/(1 + K*(1/x -1)))**0.5 return (first + second*third)**-1 alpha_1 = [Smith(i, 800, 2.5) for i in linspace(1E-9,.99)] alpha_2 = [Smith2(i, 800, 2.5) for i in linspace(1E-9, .99)] assert_close1d(alpha_1, alpha_2) def test_Fauske(): assert_close(Fauske(.4, 800, 2.5), 0.9226347262627932) def test_Chisholm_voidage(): assert_close(Chisholm_voidage(.4, 800, 2.5), 0.949525900374774) def test_Turner_Wallis(): assert_close(Turner_Wallis(.4, 800, 2.5, 1E-3, 1E-5), 0.8384824581634625) ### Section 2 def test_homogeneous(): assert_close(homogeneous(.4, 800, 2.5), 0.995334370139969) assert_close(homogeneous(1, 800, 2.5), 1) assert_close(homogeneous(0, 800, 2.5), 0) # 1./(1. + (1-x)/x*(rhog/rhol)) def test_Chisholm_Armand(): assert_close(Chisholm_Armand(.4, 800, 2.5), 0.9357814394262114) def test_Armand(): assert_close(Armand(.4, 800, 2.5), 0.8291135303265941) def test_Nishino_Yamazaki(): assert_close(Nishino_Yamazaki(.4, 800, 2.5), 0.931694583962682) def test_Guzhov(): assert_close(Guzhov(.4, 800, 2.5, 1, .3), 0.7626030108534588) def test_Kawahara(): alphas_calc = [Kawahara(.4, 800, 2.5, D) for D in [0.001, 100E-6, 1E-7]] alphas_exp = [0.8291135303265941, 0.9276148194410238, 0.8952146812696503] assert_close1d(alphas_calc, alphas_exp) ### Drift flux models def test_Lockhart_Martinelli_Xtt(): assert_close(Lockhart_Martinelli_Xtt(0.4, 800, 2.5, 1E-3, 1E-5), 0.12761659240532292) assert_close(Lockhart_Martinelli_Xtt(0.4, 800, 2.5, 1E-3, 1E-5, n=0.2), 0.12761659240532292) def test_Baroczy(): assert_close(Baroczy(.4, 800, 2.5, 1E-3, 1E-5), 0.9453544598460807) def test_Tandon_Varma_Gupta(): alphas_calc = [Tandon_Varma_Gupta(.4, 800, 2.5, 1E-3, 1E-5, m, 0.3) for m in [1, .1]] assert_close1d(alphas_calc, [0.9228265670341428, 0.8799794756817589]) def test_Harms(): assert_close(Harms(.4, 800, 2.5, 1E-3, 1E-5, m=1, D=0.3), 0.9653289762907554) def test_Domanski_Didion(): assert_close(Domanski_Didion(.4, 800, 2.5, 1E-3, 1E-5), 0.9355795597059169) assert_close(Domanski_Didion(.002, 800, 2.5, 1E-3, 1E-5), 0.32567078492010837) def test_Graham(): assert_close(Graham(.4, 800, 2.5, 1E-3, 1E-5, m=1, D=0.3), 0.6403336287530644) assert 0 == Graham(.4, 800, 2.5, 1E-3, 1E-5, m=.001, D=0.3) def test_Yashar(): assert_close(Yashar(.4, 800, 2.5, 1E-3, 1E-5, m=1, D=0.3), 0.7934893185789146) def test_Huq_Loth(): assert_close(Huq_Loth(.4, 800, 2.5), 0.9593868838476147) def test_Kopte_Newell_Chato(): assert_close(Kopte_Newell_Chato(.4, 800, 2.5, 1E-3, 1E-5, m=1, D=0.3), 0.6864466770087425) assert_close(Kopte_Newell_Chato(.4, 800, 2.5, 1E-3, 1E-5, m=.01, D=0.3), 0.995334370139969) def test_Steiner(): assert_close(Steiner(0.4, 800., 2.5, sigma=0.02, m=1, D=0.3), 0.895950181381335) def test_Rouhani_1(): assert_close(Rouhani_1(0.4, 800., 2.5, sigma=0.02, m=1, D=0.3), 0.8588420244136714) def test_Rouhani_2(): assert_close(Rouhani_2(0.4, 800., 2.5, sigma=0.02, m=1, D=0.3), 0.44819733138968865) def test_Nicklin_Wilkes_Davidson(): assert_close(Nicklin_Wilkes_Davidson(0.4, 800., 2.5, m=1, D=0.3), 0.6798826626721431) def test_Gregory_Scott(): assert_close(Gregory_Scott(0.4, 800., 2.5), 0.8364154370924108) def test_Dix(): assert_close(Dix(0.4, 800., 2.5, sigma=0.02, m=1, D=0.3), 0.8268737961156514) def test_Sun_Duffey_Peng(): assert_close(Sun_Duffey_Peng(0.4, 800., 2.5, sigma=0.02, m=1, D=0.3, P=1E5, Pc=7E6), 0.7696546506515833) def test_Woldesemayat_Ghajar(): assert_close(Woldesemayat_Ghajar(0.4, 800., 2.5, sigma=0.2, m=1, D=0.3, P=1E6, angle=45.0), 0.7640815513429202) def test_Xu_Fang_voidage(): assert_close(Xu_Fang_voidage(0.4, 800., 2.5, m=1, D=0.3), 0.9414660089942093) def test_liquid_gas_voidage(): voidage = liquid_gas_voidage(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05) assert_close(voidage, 0.9744097632663492) kwargs = dict(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, P=1e5, Pc=1e7) for m in liquid_gas_voidage_methods(**kwargs): liquid_gas_voidage(Method=m, **kwargs) with pytest.raises(Exception): liquid_gas_voidage(Method='BADMETHOD', **kwargs) assert len(liquid_gas_voidage_methods(**kwargs)) == 29 def test_density_two_phase(): assert_close(density_two_phase(.4, 800.0, 2.5), 481.0) def test_two_phase_voidage_experimental(): alpha = two_phase_voidage_experimental(481.0, 800.0, 2.5) assert_close(alpha, 0.4) def test_Beattie_Whalley(): mu = Beattie_Whalley(x=0.4, mul=1E-3, mug=1E-5, rhol=850.0, rhog=1.2) assert_close(mu, 1.7363806909512365e-05) def test_McAdams(): mu = McAdams(x=0.4, mul=1E-3, mug=1E-5) assert_close(mu, 2.4630541871921184e-05) def test_Cicchitti(): mu = Cicchitti(x=0.4, mul=1E-3, mug=1E-5) assert_close(mu, 0.000604) def test_Lin_Kwok(): mu = Lin_Kwok(x=0.4, mul=1E-3, mug=1E-5) assert_close(mu, 3.515119398126066e-05) def test_Fourar_Bories(): mu = Fourar_Bories(x=0.4, mul=1E-3, mug=1E-5, rhol=850.0, rhog=1.2) assert_close(mu, 2.127617150298565e-05) def tets_Duckler(): mu = Duckler(x=0.4, mul=1E-3, mug=1E-5, rhol=850.0, rhog=1.2) assert_close(mu, 1.2092040385066917e-05) def Duckler1(x, mul, mug, rhol, rhog): # Effective property models for homogeneous two-phase flows. # different formulation rhom = 1./(x/rhog + (1. - x)/rhol) return rhom*(x*(mug/rhog) + (1. - x)*mul/rhol) mu = Duckler1(x=0.4, mul=1E-3, mug=1E-5, rhol=850.0, rhog=1.2) assert_close(mu, 1.2092040385066917e-05) def test_gas_liquid_viscosity(): mu = gas_liquid_viscosity(x=0.4, mul=1E-3, mug=1E-5) assert_close(2.4630541871921184e-05, mu) mu = gas_liquid_viscosity(x=0.4, mul=1E-3, mug=1E-5, rhol=850.0, rhog=1.2, Method='Duckler') assert_close(mu, 1.2092040385066917e-05) simple_methods = gas_liquid_viscosity_methods() assert list(sorted(simple_methods)) == list(sorted(['McAdams', 'Cicchitti', 'Lin Kwok'])) all_methods = gas_liquid_viscosity_methods(rhol=1000.0, rhog=2.) all_methods_expect = ['Beattie Whalley', 'Fourar Bories', 'Duckler', 'McAdams', 'Cicchitti', 'Lin Kwok'] assert list(sorted(all_methods)) == list(sorted(all_methods_expect)) for m in all_methods_expect: gas_liquid_viscosity(x=0.4, mul=1E-3, mug=1E-5, rhol=850.0, rhog=1.2, Method=m) with pytest.raises(Exception): gas_liquid_viscosity(x=0.4, mul=1E-3, mug=1E-5, Method='NOTAMETHOD')fluids-1.0.22/tests/test_units.py0000644000175000017500000004364214302004506016330 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division import types import numpy as np from fluids.numerics import assert_close, assert_close1d, assert_close2d import pytest import fluids from fluids.units import * from fluids.units import kwargs_to_args def test_kwargs_to_args(): sig = ['rho', 'mu', 'nu'] args = (1,) kwargs = {'mu': 2.2} assert [1, 2.2, None] == kwargs_to_args(args, kwargs, sig) kwargs = {'nu': 2.2} assert [1, None, 2.2] == kwargs_to_args(args, kwargs, sig) assert [12.2, 2.2, 5.5] == kwargs_to_args(tuple(), {'mu': 2.2, 'nu': 5.5, 'rho': 12.2}, sig) assert [None, None, None] == kwargs_to_args(tuple(), {}, sig) assert [12.2, 2.2, 5.5] == kwargs_to_args((12.2, 2.2, 5.5), {}, sig) def assert_pint_allclose(value, magnitude, units, rtol=1e-7, atol=0): assert_close(value.to_base_units().magnitude, magnitude, rtol=rtol, atol=atol) if type(units) != dict: units = dict(units.dimensionality) assert dict(value.dimensionality) == units def assert_pint_allclose1d(value, magnitude, units, rtol=1e-7, atol=0): assert_close1d(value.to_base_units().magnitude, magnitude, rtol=rtol, atol=atol) if type(units) != dict: units = dict(units.dimensionality) assert dict(value.dimensionality) == units def assert_pint_allclose2d(value, magnitude, units, rtol=1e-7, atol=0): assert_close2d(value.to_base_units().magnitude, magnitude, rtol=rtol, atol=atol) if type(units) != dict: units = dict(units.dimensionality) assert dict(value.dimensionality) == units def test_in_right_units(): assert u.default_system == 'mks' def test_nondimensional_reduction(): Re = 171.8865229090909 *u.meter * u.pound / u.centipoise / u.foot ** 2 / u.second eD = 0.0005937067088858105*u.inch/u.meter assert_close(friction_factor(Re, eD).magnitude, 0.012301598061848239) def test_convert_input(): from fluids.units import convert_input ans = convert_input(5, 'm', u, False) assert ans == 5 with pytest.raises(Exception): convert_input(5, 'm', u, True) def test_convert_output(): assert convert_output(None, ['Pa'], ['Pt'], u) is None assert convert_output(True, ['Pa'], ['Pt'], u) == True assert convert_output('hi', ['Pa'], ['Pt'], u) == 'hi' val = convert_output(5.5, ['Pa'], ['Pt'], u) assert_close(val.to_base_units().magnitude, 5.5) assert dict(val.dimensionality) == {'[length]': -1, '[mass]': 1, '[time]': -2} mat = convert_output(np.array([[1,2, 6], [3,4,9.5]]), ['Pa'], ['Pt'], u) assert mat.shape == (2, 3) assert dict(val.dimensionality) == {'[length]': -1, '[mass]': 1, '[time]': -2} mat = convert_output([[1,2, 6], [3,4,9.5]], ['Pa'], ['Pt'], u) assert mat.shape == (2, 3) assert dict(val.dimensionality) == {'[length]': -1, '[mass]': 1, '[time]': -2} def test_sample_cases(): Re = Reynolds(V=3.5*u.m/u.s, D=2*u.m, rho=997.1*u.kg/u.m**3, mu=1E-3*u.Pa*u.s) assert_close(Re.to_base_units().magnitude, 6979700.0) assert dict(Re.dimensionality) == {} # vs = hwm93(5E5*u.m, 45*u.degrees, 50*u.degrees, 365*u.day) # vs_known = [-73.00312042236328, 0.1485661268234253] # for v_known, v_calc in zip(vs_known, vs): # assert_close(v_known, v_calc.to_base_units().magnitude) # assert dict(v_calc.dimensionality) == {u'[length]': 1.0, u'[time]': -1.0} A = API520_A_g(m=24270*u.kg/u.hour, T=348.*u.K, Z=0.90, MW=51.*u.g/u.mol, k=1.11, P1=670*u.kPa, Kb=1, Kc=1) assert_close(A.to_base_units().magnitude, 0.00369904606468) assert dict(A.dimensionality) == {u'[length]': 2.0} T = T_critical_flow(473*u.K, 1.289) assert_close(T.to_base_units().magnitude, 413.280908694) assert dict(T.dimensionality) == {u'[temperature]': 1.0} T2 = T_critical_flow(473*u.K, 1.289*u.dimensionless) assert T == T2 with pytest.raises(Exception): T_critical_flow(473, 1.289) with pytest.raises(Exception): T_critical_flow(473*u.m, 1.289) # boolean P1 = 8*u.bar + 1*u.atm P2 = 1*u.atm assert True == is_critical_flow(P1, P2, k=1.4*u.dimensionless) A = size_control_valve_g(T=433.*u.K, MW=44.01*u.g/u.mol, mu=1.4665E-4*u.Pa*u.s, gamma=1.30, Z=0.988, P1=680*u.kPa, P2=310*u.kPa, Q=38/36.*u.m**3/u.s, D1=0.08*u.m, D2=0.1*u.m, d=0.05*u.m, FL=0.85, Fd=0.42, xT=0.60) assert_close(A.to_base_units().magnitude, 0.0201629570705307) assert dict(A.dimensionality) == {u'[length]': 3.0, u'[time]': -1.0} A = API520_round_size(A=1E-4*u.m**2) assert_close(A.to_base_units().magnitude, 0.00012645136) assert dict(A.dimensionality) == {u'[length]': 2.0} SS = specific_speed(0.0402*u.m**3/u.s, 100*u.m, 3550*u.rpm) assert_close(SS.to_base_units().magnitude, 2.3570565251512066) assert dict(SS.dimensionality) == {u'[length]': 0.75, u'[time]': -1.5} v = Geldart_Ling(1.*u.kg/u.s, 1.2*u.kg/u.m**3, 0.1*u.m, 2E-5*u.Pa*u.s) assert_close(v.to_base_units().magnitude, 7.467495862402707) assert dict(v.dimensionality) == {u'[length]': 1.0, u'[time]': -1.0} s = speed_synchronous(50*u.Hz, poles=12) assert_close(s.to_base_units().magnitude, 157.07963267948966) assert dict(s.dimensionality) == {u'[time]': -1.0} t = t_from_gauge(.2, False, 'AWG') assert_close(t.to_base_units().magnitude, 0.5165) assert dict(t.dimensionality) == {u'[length]': 1.0} dP = Robbins(G=2.03*u.kg/u.m**2/u.s, rhol=1000*u.kg/u.m**3, Fpd=24/u.ft, L=12.2*u.kg/u.m**2/u.s, rhog=1.1853*u.kg/u.m**3, mul=0.001*u.Pa*u.s, H=2*u.m) assert_close(dP.to_base_units().magnitude, 619.662459344 ) assert dict(dP.dimensionality) == {u'[length]': -1.0, u'[mass]': 1.0, u'[time]': -2.0} dP = dP_packed_bed(dp=8E-4*u.m, voidage=0.4, vs=1E-3*u.m/u.s, rho=1E3*u.kg/u.m**3, mu=1E-3*u.Pa*u.s) assert_close(dP.to_base_units().magnitude, 1438.28269588 ) assert dict(dP.dimensionality) == {u'[length]': -1.0, u'[mass]': 1.0, u'[time]': -2.0} dP = dP_packed_bed(dp=8E-4*u.m, voidage=0.4*u.dimensionless, vs=1E-3*u.m/u.s, rho=1E3*u.kg/u.m**3, mu=1E-3*u.Pa*u.s, Dt=0.01*u.m) assert_close(dP.to_base_units().magnitude, 1255.16256625) assert dict(dP.dimensionality) == {u'[length]': -1.0, u'[mass]': 1.0, u'[time]': -2.0} n = C_Chezy_to_n_Manning(26.15*u.m**0.5/u.s, Rh=5*u.m) assert_close(n.to_base_units().magnitude, 0.05000613713238358) assert dict(n.dimensionality) == {u'[length]': -0.3333333333333333, u'[time]': 1.0} Q = Q_weir_rectangular_SIA(0.2*u.m, 0.5*u.m, 1*u.m, 2*u.m) assert_close(Q.to_base_units().magnitude, 1.0408858453811165) assert dict(Q.dimensionality) == {u'[length]': 3.0, u'[time]': -1.0} t = agitator_time_homogeneous(D=36*.0254*u.m, N=56/60.*u.revolutions/u.second, P=957.*u.W, T=1.83*u.m, H=1.83*u.m, mu=0.018*u.Pa*u.s, rho=1020*u.kg/u.m**3, homogeneity=.995) assert_close(t.to_base_units().magnitude, 15.143198226374668) assert dict(t.dimensionality) == {u'[time]': 1.0} K = K_separator_Watkins(0.88*u.dimensionless, 985.4*u.kg/u.m**3, 1.3*u.kg/u.m**3, horizontal=True) assert_close(K.to_base_units().magnitude, 0.07951613600476297, rtol=1e-2) assert dict(K.dimensionality) == {u'[length]': 1.0, u'[time]': -1.0} A = current_ideal(V=120*u.V, P=1E4*u.W, PF=1, phase=1) assert_close(A.to_base_units().magnitude, 83.33333333333333) assert dict(A.dimensionality) == {u'[current]': 1.0} fd = friction_factor(Re=1E5, eD=1E-4) assert_close(fd.to_base_units().magnitude, 0.01851386607747165) assert dict(fd.dimensionality) == {} K = Cv_to_K(2.712*u.gallon/u.minute, .015*u.m) assert_close(K.to_base_units().magnitude, 14.719595348352552) assert dict(K.dimensionality) == {} Cv = K_to_Cv(16, .015*u.m) assert_close(Cv.to_base_units().magnitude, 0.0001641116865931214) assert dict(Cv.dimensionality) == {u'[length]': 3.0, u'[time]': -1.0} Cd = drag_sphere(200) assert_close(Cd.to_base_units().magnitude, 0.7682237950389874) assert dict(Cd.dimensionality) == {} V, D = integrate_drag_sphere(D=0.001*u.m, rhop=2200.*u.kg/u.m**3, rho=1.2*u.kg/u.m**3, mu=1.78E-5*u.Pa*u.s, t=0.5*u.s, V=30*u.m/u.s, distance=True) assert_close(V.to_base_units().magnitude, 9.686465044063436) assert dict(V.dimensionality) == {u'[length]': 1.0, u'[time]': -1.0} assert_close(D.to_base_units().magnitude, 7.829454643649386) assert dict(D.dimensionality) == {u'[length]': 1.0} Bo = Bond(1000*u.kg/u.m**3, 1.2*u.kg/u.m**3, .0589*u.N/u.m, 2*u.m) assert_close(Bo.to_base_units().magnitude, 665187.2339558573) assert dict(Bo.dimensionality) == {} head = head_from_P(P=98066.5*u.Pa, rho=1000*u.kg/u.m**3) assert_close(head.to_base_units().magnitude, 10.000000000000002) assert dict(head.dimensionality) == {u'[length]': 1.0} roughness = roughness_Farshad('Cr13, bare', 0.05*u.m) assert_close(roughness.to_base_units().magnitude, 5.3141677781137006e-05) assert dict(roughness.dimensionality) == {u'[length]': 1.0} def test_custom_wraps(): A = A_multiple_hole_cylinder(0.01*u.m, 0.1*u.m, [(0.005*u.m, 1)]) assert_close(A.to_base_units().magnitude, 0.004830198704894308) assert dict(A.dimensionality) == {u'[length]': 2.0} V = V_multiple_hole_cylinder(0.01*u.m, 0.1*u.m, [(0.005*u.m, 1)]) assert_close(V.to_base_units().magnitude, 5.890486225480862e-06) assert dict(V.dimensionality) == {u'[length]': 3.0} # custom compressible flow model wrappers functions = [Panhandle_A, Panhandle_B, Weymouth, Spitzglass_high, Oliphant, Fritzsche] values = [42.56082051195928, 42.35366178004172, 32.07729055913029, 29.42670246281681, 28.851535408143057, 39.421535157535565] for f, v in zip(functions, values): ans = f(D=0.340*u.m, P1=90E5*u.Pa, P2=20E5*u.Pa, L=160E3*u.m, SG=0.693, Tavg=277.15*u.K) assert_pint_allclose(ans, v, {u'[length]': 3.0, u'[time]': -1.0}) ans = IGT(D=0.340*u.m, P1=90E5*u.Pa, P2=20E5*u.Pa, L=160E3*u.m, SG=0.693, mu=1E-5*u.Pa*u.s, Tavg=277.15*u.K) assert_pint_allclose(ans, 48.92351786788815, {u'[length]': 3.0, u'[time]': -1.0}) ans = Muller(D=0.340*u.m, P1=90E5*u.Pa, P2=20E5*u.Pa, L=160E3*u.m, SG=0.693, mu=1E-5*u.Pa*u.s, Tavg=277.15*u.K) assert_pint_allclose(ans, 60.45796698148659, {u'[length]': 3.0, u'[time]': -1.0}) nu = nu_mu_converter(rho=1000*u.kg/u.m**3, mu=1E-4*u.Pa*u.s) assert_pint_allclose(nu, 1E-7, {u'[length]': 2.0, u'[time]': -1.0}) mu = nu_mu_converter(rho=1000*u.kg/u.m**3, nu=1E-7*u.m**2/u.s) assert_pint_allclose(mu, 1E-4, {u'[time]': -1.0, u'[length]': -1.0, u'[mass]': 1.0}) SA = SA_tank(D=1.*u.m, L=0*u.m, sideA='ellipsoidal', sideA_a=2*u.m, sideB='ellipsoidal', sideB_a=2*u.m)[0] assert_pint_allclose(SA, 10.124375616183064, {u'[length]': 2.0}) SA, sideA_SA, sideB_SA, lateral_SA = SA_tank(D=1.*u.m, L=0*u.m, sideA='ellipsoidal', sideA_a=2*u.m, sideB='ellipsoidal', sideB_a=2*u.m) expect = [10.124375616183064, 5.062187808091532, 5.062187808091532, 0] for value, expected in zip([SA, sideA_SA, sideB_SA, lateral_SA], expect): assert_pint_allclose(value, expected, {u'[length]': 2.0}) m = isothermal_gas(rho=11.3*u.kg/u.m**3, fd=0.00185*u.dimensionless, P1=1E6*u.Pa, P2=9E5*u.Pa, L=1000*u.m, D=0.5*u.m) assert_pint_allclose(m, 145.484757, {u'[mass]': 1.0, u'[time]': -1.0}) def test_db_functions(): # dB ans = control_valve_noise_g_2011(m=2.22*u.kg/u.s, P1=1E6*u.Pa, P2=7.2E5*u.Pa, T1=450*u.K, rho=5.3*u.kg/u.m**3, gamma=1.22, MW=19.8*u.g/u.mol, Kv=77.85*u.m**3/u.hour, d=0.1*u.m, Di=0.2031*u.m, FL=None, FLP=0.792, FP=0.98, Fd=0.296, t_pipe=0.008*u.m, rho_pipe=8000.0*u.kg/u.m**3, c_pipe=5000.0*u.m/u.s, rho_air=1.293*u.kg/u.m**3, c_air=343.0*u.m/u.s, An=-3.8, Stp=0.2) # assert_pint_allclose(ans, 91.67702674629604, {}) def test_check_signatures(): from fluids.units import check_args_order bad_names = set(['__getattr__']) for name in dir(fluids): if name in bad_names: continue obj = getattr(fluids, name) if isinstance(obj, types.FunctionType): if hasattr(obj, 'func_name') and obj.func_name == '': continue # 2 if hasattr(obj, '__name__') and obj.__name__ == '': continue # 3 check_args_order(obj) def test_differential_pressure_meter_solver(): m = differential_pressure_meter_solver(D=0.07366*u.m, D2=0.05*u.m, P1=200000.0*u.Pa, P2=183000.0*u.Pa, rho=999.1*u.kg/u.m**3, mu=0.0011*u.Pa*u.s, k=1.33*u.dimensionless, meter_type='ISO 5167 orifice', taps='D') assert_pint_allclose(m, 7.702338035732167, {'[mass]': 1, '[time]': -1}) P1 = differential_pressure_meter_solver(D=0.07366*u.m, D2=0.05*u.m, m=m, P2=183000.0*u.Pa, rho=999.1*u.kg/u.m**3, mu=0.0011*u.Pa*u.s, k=1.33*u.dimensionless, meter_type='ISO 5167 orifice', taps='D') assert_pint_allclose(P1, 200000, {'[length]': -1, '[mass]': 1, '[time]': -2}) P2 = differential_pressure_meter_solver(D=0.07366*u.m, D2=0.05*u.m, P1=200000.0*u.Pa, m=m, rho=999.1*u.kg/u.m**3, mu=0.0011*u.Pa*u.s, k=1.33*u.dimensionless, meter_type='ISO 5167 orifice', taps='D') assert_pint_allclose(P2, 183000, {'[length]': -1, '[mass]': 1, '[time]': -2}) D2 = differential_pressure_meter_solver(D=0.07366*u.m, m=m, P1=200000.0*u.Pa, P2=183000.0*u.Pa, rho=999.1*u.kg/u.m**3, mu=0.0011*u.Pa*u.s, k=1.33*u.dimensionless, meter_type='ISO 5167 orifice', taps='D') assert_pint_allclose(D2, .05, {'[length]': 1}) def test_Tank_units_full(): T1 = TANK(L=3*u.m, D=150*u.cm, horizontal=True, sideA=None, sideB=None) # test all methods V = T1.V_from_h(0.1*u.m, 'full') assert_pint_allclose(V, 0.151783071377, u.m**3) h = T1.h_from_V(0.151783071377*u.m**3, method='brenth') assert_pint_allclose(h, 0.1, u.m) h = T1.h_from_V(0.151783071377*u.m**3, 'brenth') assert_pint_allclose(h, 0.1, u.m) # Check the table and approximations T1.set_table(dx=1*u.cm) assert 151 == len(T1.volumes) assert_pint_allclose1d(T1.heights[0:3], [0, 0.01, 0.02], u.m) T1.set_table(n=10) assert 10 == len(T1.volumes) T1.set_table(n=10*u.dimensionless) assert 10 == len(T1.volumes) T1.set_chebyshev_approximators(8, 8) T1.set_chebyshev_approximators(8*u.dimensionless, 8) T1.set_chebyshev_approximators(8, 8*u.dimensionless) assert 16 == len(T1.c_forward) assert 16 == len(T1.c_backward) # Check the properties assert_pint_allclose(T1.h_max, 1.5, u.m) assert_pint_allclose(T1.V_total, 5.301437602932776, u.m**3) assert_pint_allclose(T1.L_over_D, 2, u.dimensionless) assert_pint_allclose(T1.A_sideA, 1.76714586764, u.m**2) assert_pint_allclose(T1.A_sideB, 1.76714586764, u.m**2) assert_pint_allclose(T1.A_lateral, 14.1371669412, u.m**2) assert_pint_allclose(T1.A, 17.6714586764, u.m**2) def test_HelicalCoil_units(): C2 = HelicalCoil(Do=30*u.cm, H=20*u.cm, pitch=5*u.cm, Dt=2*u.cm) C3 = HelicalCoil(2*u.cm, 30*u.cm, 5*u.cm, 20*u.cm) for C1 in [C2, C3]: assert_pint_allclose(C1.Dt, 0.02, u.m) assert_pint_allclose(C1.Do, 0.3, u.m) assert_pint_allclose(C1.Do_total, 0.32, u.m) assert_pint_allclose(C1.pitch, 0.05, u.m) assert_pint_allclose(C1.H, 0.2, u.m) assert_pint_allclose(C1.H_total, 0.22, u.m) assert_pint_allclose(C1.N, 4, u.dimensionless) assert_pint_allclose(C1.tube_circumference, 0.942477796077, u.m) assert_pint_allclose(C1.tube_length, 3.7752126215, u.m) assert_pint_allclose(C1.surface_area, 0.237203604749 , u.m**2) assert_pint_allclose(C1.curvature, 0.06, u.dimensionless) assert_pint_allclose(C1.helix_angle, 0.0530019606897, u.radians) def test_ATMOSPHERE_1976_units(): five_km = ATMOSPHERE_1976(5000*u.m) assert_pint_allclose(five_km.T, 255.675543222, u.K) assert_pint_allclose(five_km.P, 54048.2861458, u.Pa) assert_pint_allclose(five_km.rho, 0.73642842078, u.kg/u.m**3) assert_pint_allclose(five_km.g, 9.79124107698, u.m/u.s**2) assert_pint_allclose(five_km.mu, 1.62824813536e-05, u.Pa*u.s) assert_pint_allclose(five_km.k, 0.0227319029514, u.W/u.K/u.m) assert_pint_allclose(five_km.v_sonic, 320.54551967, u.m/u.s) assert_pint_allclose(five_km.sonic_velocity(300*u.K), 347.220809082, u.m/u.s) # Test the staticmethod works alone assert_pint_allclose(ATMOSPHERE_1976.sonic_velocity(300*u.K), 347.220809082, u.m/u.s) # Check AttribtueError is property raised on __getstate__ for classes # as they now have a __getattr_ method import copy copy.copy(five_km) copy.deepcopy(five_km) def test_ATMOSPHERE_NRLMSISE00(): a = ATMOSPHERE_NRLMSISE00(Z=1E3*u.m, latitude=45*u.degrees, longitude=45*u.degrees, day=150*u.day) assert_pint_allclose(a.T, 285.544086062, u.K) assert_pint_allclose(a.rho, 1.10190620264, u.kg/u.m**3) assert_pint_allclose(a.O2_density, 4.80470350725e+24, u.count/u.m**3) assert_pint_allclose(a.day, 12960000, u.day)fluids-1.0.22/tests/test_nrlmsise00_file_output.py0000644000175000017500000002177714302004506021606 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. The `gtd7_file_output` test is copyright: 12/19/2013 Author: Joshua Milas Python Version: 3.3.2 The NRLMSISE-00 model 2001 ported to python Based off of Dominik Brodowski 20100516 version available here http://www.brodo.de/english/pub/nrlmsise/ This is the test program, and the output should be compared to The MIT License (MIT) Copyright (c) 2016 Joshua Milas Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. /* -------------------------------------------------------------------- */ /* --------- N R L M S I S E - 0 0 M O D E L 2 0 0 1 ---------- */ /* -------------------------------------------------------------------- */ /* This file is part of the NRLMSISE-00 C source code package - release * 20041227 * * The NRLMSISE-00 model was developed by Mike Picone, Alan Hedin, and * Doug Drob. They also wrote a NRLMSISE-00 distribution package in * FORTRAN which is available at * http://uap-www.nrl.navy.mil/models_web/msis/msis_home.htm * * Dominik Brodowski implemented and maintains this C version. You can * reach him at mail@brodo.de. See the file "DOCUMENTATION" for details, * and check http://www.brodo.de/english/pub/nrlmsise/index.html for * updated releases of this package. */ ''' from __future__ import division import time from fluids.nrlmsise00.nrlmsise_00 import gtd7 from fluids.nrlmsise00.nrlmsise_00_header import nrlmsise_output, nrlmsise_input, nrlmsise_flags , ap_array import hashlib import os import pytest base = '' def build_file(txt, end=''): # TODO: replace print with this call. Return a giant string, not a plain text output. # It is important to not have to start a new python process - slow global base base += txt + end def gtd7_file_output(): output = [nrlmsise_output() for _ in range(17)] Input = [nrlmsise_input() for _ in range(17)] flags = nrlmsise_flags() aph = ap_array() for i in range(7): aph.a[i]=100 flags.switches[0] = 0 for i in range(1, 24): flags.switches[i]=1 for i in range(17): Input[i].doy=172; Input[i].year=0; #/* without effect */ Input[i].sec=29000; Input[i].alt=400; Input[i].g_lat=60; Input[i].g_long=-70; Input[i].lst=16; Input[i].f107A=150; Input[i].f107=150; Input[i].ap=4; Input[1].doy=81; Input[2].sec=75000; Input[2].alt=1000; Input[3].alt=100; Input[10].alt=0; Input[11].alt=10; Input[12].alt=30; Input[13].alt=50; Input[14].alt=70; Input[16].alt=100; Input[4].g_lat=0; Input[5].g_long=0; Input[6].lst=4; Input[7].f107A=70; Input[8].f107=180; Input[9].ap=40; Input[15].ap_a = aph Input[16].ap_a = aph #evaluate 0 to 14 for i in range(15): gtd7(Input[i], flags, output[i]) #/* evaluate 15 and 16 */ flags.switches[9] = -1 for i in range(15, 17): gtd7(Input[i], flags, output[i]) #/* output type 1 */ for i in range(17): build_file('\n', end='') for j in range(9): build_file('%E ' % output[i].d[j], end='') build_file('%E ' % output[i].t[0], end='') build_file('%E ' % output[i].t[1], end='\n') #/* DL omitted */ #/* output type 2 */ for i in range(3): build_file('\n', end='') build_file("\nDAY ", end='') for j in range(5): build_file(" %3i" % Input[i*5+j].doy, end='') build_file("\nUT ", end='') for j in range(5): build_file(" %5.0f" % Input[i*5+j].sec, end='') build_file("\nALT ", end='') for j in range(5): build_file(" %4.0f" % Input[i*5+j].alt, end='') build_file("\nLAT ", end='') for j in range(5): build_file(" %3.0f" % Input[i*5+j].g_lat, end='') build_file("\nLONG ", end='') for j in range(5): build_file(" %3.0f" % Input[i*5+j].g_long, end='') build_file("\nLST ", end='') for j in range(5): build_file(" %5.0f" % Input[i*5+j].lst, end='') build_file("\nF107A ", end='') for j in range(5): build_file(" %3.0f" % Input[i*5+j].f107A, end='') build_file("\nF107 ", end='') for j in range(5): build_file(" %3.0f" % Input[i*5+j].f107, end='') build_file('\n\n', end='') build_file("\nTINF ", end='') for j in range(5): build_file(" %7.2f" % output[i*5+j].t[0], end='') build_file("\nTG ", end='') for j in range(5): build_file(" %7.2f" % output[i*5+j].t[1], end='') build_file("\nHE ", end='') for j in range(5): build_file(" %1.3e" % output[i*5+j].d[0], end='') build_file("\nO ", end='') for j in range(5): build_file(" %1.3e" % output[i*5+j].d[1], end='') build_file("\nN2 ", end='') for j in range(5): build_file(" %1.3e" % output[i*5+j].d[2], end='') build_file("\nO2 ", end='') for j in range(5): build_file(" %1.3e" % output[i*5+j].d[3], end='') build_file("\nAR ", end='') for j in range(5): build_file(" %1.3e" % output[i*5+j].d[4], end='') build_file("\nH ", end='') for j in range(5): build_file(" %1.3e" % output[i*5+j].d[6], end='') build_file("\nN ", end='') for j in range(5): build_file(" %1.3e" % output[i*5+j].d[7], end='') build_file("\nANM ", end='') for j in range(5): build_file(" %1.3e" % output[i*5+j].d[8], end='') build_file("\nRHO ", end='') for j in range(5): build_file(" %1.3e" % output[i*5+j].d[5], end='') build_file('\n', '\n') known_hash = 'bb504fc1ab541260f13b2d2d89884c4d' @pytest.mark.slow def test_NRLMSISE00_against_C_output(): global base # Test results currently match up exactly with those of the C test file. script = os.path.join(os.path.dirname(__file__), 'nrlmsise_00_test.py') # Load known data known = os.path.join(os.path.dirname(__file__), 'data_from_C_version.txt') # On a separate process, run the test script, and capture its output from sys import platform if platform == "linux" or platform == "linux2" or platform == "darwin": # Run the test only on linux; print statements to files have different # formats on windows gtd7_file_output() response = base try: response = response.encode("utf-8") except: pass #proc = subprocess.Popen(["python", script], stdout=subprocess.PIPE) #response = proc.communicate()[0] # Hash it, check it is as expected. hasher = hashlib.md5() hasher.update(response) expect = hasher.hexdigest() assert expect == known_hash base = '' fluids-1.0.22/tests/test_safety_valve.py0000644000175000017500000000650114302004506017647 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids.safety_valve import * from fluids.numerics import assert_close, assert_close1d from fluids.constants import atm import pytest def test_safety_valve(): A = API520_round_size(1E-4) assert_close(A, 0.00012645136) assert 'E' == API526_letters[API526_A.index(API520_round_size(1E-4))] with pytest.raises(Exception): API520_round_size(1) C1, C2 = API520_C(1.35), API520_C(1.) Cs = [0.02669419967057233, 0.023945830445454768] assert_close1d([C1, C2], Cs) F2 = API520_F2(1.8, 1E6, 7E5) assert_close(F2, 0.8600724121105563) Kv_calcs = [API520_Kv(100), API520_Kv(4525), API520_Kv(1E5)] Kvs = [0.6157445891444229, 0.9639390032437682, 0.9973949303006829] assert_close1d(Kv_calcs, Kvs) KN = API520_N(1774700) assert_close(KN, 1) with pytest.raises(Exception): API520_SH(593+273.15, 21E6) with pytest.raises(Exception): API520_SH(1000, 1066E3) # Test under 15 psig sat case assert API520_SH(320, 5E4) == 1 from fluids.safety_valve import _KSH_Pa, _KSH_tempKs KSH_tot = sum([API520_SH(T, P) for P in _KSH_Pa[:-1] for T in _KSH_tempKs]) assert_close(229.93, KSH_tot) KW = [API520_W(1E6, 3E5), API520_W(1E6, 1E5)] assert_close1d(KW, [0.9511471848008564, 1]) B_calc = [API520_B(1E6, 3E5), API520_B(1E6, 5E5), API520_B(1E6, 5E5, overpressure=.16), API520_B(1E6, 5E5, overpressure=.21)] Bs = [1, 0.7929945420944432, 0.94825439189912, 1] assert_close1d(B_calc, Bs) # Issue # 45 assert 1 == API520_B(2*atm, 1.5*atm, overpressure=.21) with pytest.raises(Exception): API520_B(1E6, 5E5, overpressure=.17) with pytest.raises(Exception): API520_B(1E6, 7E5, overpressure=.16) A1 = API520_A_g(m=24270/3600., T=348., Z=0.90, MW=51., k=1.11, P1=670E3, Kb=1.0, Kc=1.0) A2 = API520_A_g(m=24270/3600., T=348., Z=0.90, MW=51., k=1.11, P1=670E3, P2=532E3, Kd=0.975, Kb=1.0, Kc=1.0) As = [0.0036990460646834414, 0.004248358775943481] assert_close1d([A1, A2], As) A = API520_A_steam(m=69615/3600., T=592.5, P1=12236E3, Kd=0.975, Kb=1.0, Kc=1.0) assert_close(A, 0.0011034712423692733) fluids-1.0.22/tests/nrlmsise00/0000755000175000017500000000000014302004506015540 5ustar nileshnileshfluids-1.0.22/tests/nrlmsise00/known_data_day_of_year.txt0000644000175000017500000010525514302004506022777 0ustar nileshnilesh100.0 6.104E+11 9.118E+12 1.964E+12 5.506E-10 176.5 1027 1.398E+08 9.317E+10 2.131E+07 2.147E+05 100.0 6.093E+11 9.119E+12 1.965E+12 5.506E-10 176.5 1027 1.397E+08 9.318E+10 2.131E+07 2.150E+05 100.0 6.083E+11 9.120E+12 1.967E+12 5.507E-10 176.5 1027 1.395E+08 9.320E+10 2.131E+07 2.153E+05 100.0 6.073E+11 9.122E+12 1.968E+12 5.509E-10 176.4 1027 1.394E+08 9.324E+10 2.131E+07 2.156E+05 100.0 6.064E+11 9.126E+12 1.970E+12 5.511E-10 176.4 1027 1.392E+08 9.329E+10 2.131E+07 2.160E+05 100.0 6.054E+11 9.131E+12 1.972E+12 5.514E-10 176.4 1027 1.391E+08 9.334E+10 2.132E+07 2.164E+05 100.0 6.046E+11 9.137E+12 1.974E+12 5.518E-10 176.3 1027 1.390E+08 9.341E+10 2.132E+07 2.168E+05 100.0 6.037E+11 9.144E+12 1.976E+12 5.522E-10 176.3 1027 1.389E+08 9.349E+10 2.133E+07 2.173E+05 100.0 6.029E+11 9.152E+12 1.979E+12 5.527E-10 176.3 1027 1.388E+08 9.358E+10 2.134E+07 2.178E+05 100.0 6.021E+11 9.161E+12 1.982E+12 5.533E-10 176.3 1027 1.388E+08 9.368E+10 2.135E+07 2.184E+05 100.0 6.014E+11 9.172E+12 1.984E+12 5.539E-10 176.3 1027 1.387E+08 9.380E+10 2.136E+07 2.190E+05 100.0 6.007E+11 9.183E+12 1.988E+12 5.546E-10 176.2 1027 1.387E+08 9.392E+10 2.137E+07 2.196E+05 100.0 6.001E+11 9.196E+12 1.991E+12 5.554E-10 176.2 1027 1.387E+08 9.405E+10 2.138E+07 2.203E+05 100.0 5.995E+11 9.209E+12 1.995E+12 5.562E-10 176.2 1027 1.386E+08 9.420E+10 2.140E+07 2.210E+05 100.0 5.989E+11 9.224E+12 1.998E+12 5.571E-10 176.2 1027 1.386E+08 9.435E+10 2.142E+07 2.217E+05 100.0 5.983E+11 9.240E+12 2.002E+12 5.580E-10 176.2 1027 1.387E+08 9.452E+10 2.143E+07 2.225E+05 100.0 5.978E+11 9.257E+12 2.006E+12 5.590E-10 176.1 1027 1.387E+08 9.469E+10 2.145E+07 2.233E+05 100.0 5.974E+11 9.275E+12 2.011E+12 5.601E-10 176.1 1027 1.387E+08 9.488E+10 2.147E+07 2.241E+05 100.0 5.969E+11 9.294E+12 2.015E+12 5.612E-10 176.1 1027 1.388E+08 9.508E+10 2.149E+07 2.250E+05 100.0 5.965E+11 9.314E+12 2.020E+12 5.624E-10 176.1 1027 1.388E+08 9.528E+10 2.151E+07 2.259E+05 100.0 5.962E+11 9.335E+12 2.024E+12 5.636E-10 176.1 1027 1.389E+08 9.550E+10 2.154E+07 2.269E+05 100.0 5.959E+11 9.357E+12 2.029E+12 5.649E-10 176.1 1027 1.390E+08 9.572E+10 2.156E+07 2.278E+05 100.0 5.956E+11 9.380E+12 2.034E+12 5.663E-10 176.0 1027 1.391E+08 9.595E+10 2.158E+07 2.288E+05 100.0 5.953E+11 9.404E+12 2.040E+12 5.677E-10 176.0 1027 1.392E+08 9.620E+10 2.161E+07 2.299E+05 100.0 5.951E+11 9.429E+12 2.045E+12 5.691E-10 176.0 1027 1.393E+08 9.645E+10 2.164E+07 2.309E+05 100.0 5.949E+11 9.455E+12 2.051E+12 5.706E-10 176.0 1027 1.394E+08 9.671E+10 2.167E+07 2.320E+05 100.0 5.947E+11 9.481E+12 2.056E+12 5.722E-10 176.0 1027 1.395E+08 9.697E+10 2.169E+07 2.331E+05 100.0 5.945E+11 9.509E+12 2.062E+12 5.738E-10 176.0 1027 1.397E+08 9.725E+10 2.172E+07 2.343E+05 100.0 5.944E+11 9.537E+12 2.068E+12 5.754E-10 176.0 1027 1.398E+08 9.753E+10 2.175E+07 2.355E+05 100.0 5.943E+11 9.566E+12 2.074E+12 5.771E-10 176.0 1027 1.400E+08 9.782E+10 2.178E+07 2.367E+05 100.0 5.942E+11 9.596E+12 2.080E+12 5.788E-10 176.0 1027 1.401E+08 9.812E+10 2.181E+07 2.379E+05 100.0 5.941E+11 9.627E+12 2.086E+12 5.806E-10 176.0 1027 1.403E+08 9.842E+10 2.185E+07 2.391E+05 100.0 5.941E+11 9.658E+12 2.093E+12 5.824E-10 176.0 1027 1.405E+08 9.873E+10 2.188E+07 2.404E+05 100.0 5.940E+11 9.690E+12 2.099E+12 5.842E-10 176.0 1027 1.407E+08 9.904E+10 2.191E+07 2.417E+05 100.0 5.940E+11 9.722E+12 2.105E+12 5.861E-10 176.0 1027 1.409E+08 9.936E+10 2.194E+07 2.430E+05 100.0 5.940E+11 9.755E+12 2.112E+12 5.880E-10 176.0 1027 1.411E+08 9.969E+10 2.198E+07 2.443E+05 100.0 5.940E+11 9.789E+12 2.119E+12 5.899E-10 176.0 1027 1.413E+08 1.000E+11 2.201E+07 2.457E+05 100.0 5.940E+11 9.823E+12 2.125E+12 5.919E-10 176.0 1027 1.415E+08 1.003E+11 2.204E+07 2.470E+05 100.0 5.940E+11 9.857E+12 2.132E+12 5.939E-10 176.0 1027 1.417E+08 1.007E+11 2.208E+07 2.484E+05 100.0 5.940E+11 9.892E+12 2.138E+12 5.959E-10 176.0 1027 1.419E+08 1.010E+11 2.211E+07 2.498E+05 100.0 5.940E+11 9.928E+12 2.145E+12 5.979E-10 176.0 1027 1.421E+08 1.014E+11 2.215E+07 2.512E+05 100.0 5.940E+11 9.963E+12 2.152E+12 5.999E-10 176.1 1027 1.423E+08 1.017E+11 2.218E+07 2.526E+05 100.0 5.939E+11 9.999E+12 2.158E+12 6.020E-10 176.1 1027 1.425E+08 1.021E+11 2.221E+07 2.541E+05 100.0 5.939E+11 1.004E+13 2.165E+12 6.040E-10 176.1 1027 1.427E+08 1.024E+11 2.225E+07 2.555E+05 100.0 5.939E+11 1.007E+13 2.172E+12 6.061E-10 176.1 1027 1.429E+08 1.028E+11 2.228E+07 2.569E+05 100.0 5.938E+11 1.011E+13 2.178E+12 6.082E-10 176.1 1027 1.431E+08 1.031E+11 2.231E+07 2.584E+05 100.0 5.937E+11 1.014E+13 2.185E+12 6.102E-10 176.1 1027 1.433E+08 1.035E+11 2.234E+07 2.598E+05 100.0 5.936E+11 1.018E+13 2.191E+12 6.123E-10 176.2 1027 1.435E+08 1.038E+11 2.237E+07 2.613E+05 100.0 5.935E+11 1.022E+13 2.198E+12 6.144E-10 176.2 1027 1.437E+08 1.041E+11 2.241E+07 2.627E+05 100.0 5.934E+11 1.025E+13 2.204E+12 6.164E-10 176.2 1027 1.439E+08 1.045E+11 2.244E+07 2.642E+05 100.0 5.932E+11 1.029E+13 2.210E+12 6.185E-10 176.2 1027 1.441E+08 1.048E+11 2.246E+07 2.656E+05 100.0 5.930E+11 1.033E+13 2.217E+12 6.205E-10 176.3 1027 1.443E+08 1.052E+11 2.249E+07 2.670E+05 100.0 5.927E+11 1.036E+13 2.223E+12 6.225E-10 176.3 1027 1.444E+08 1.055E+11 2.252E+07 2.685E+05 100.0 5.925E+11 1.040E+13 2.229E+12 6.245E-10 176.3 1027 1.446E+08 1.058E+11 2.255E+07 2.699E+05 100.0 5.921E+11 1.043E+13 2.234E+12 6.265E-10 176.4 1027 1.448E+08 1.062E+11 2.257E+07 2.713E+05 100.0 5.918E+11 1.047E+13 2.240E+12 6.284E-10 176.4 1027 1.449E+08 1.065E+11 2.260E+07 2.727E+05 100.0 5.914E+11 1.050E+13 2.245E+12 6.303E-10 176.4 1027 1.450E+08 1.068E+11 2.262E+07 2.741E+05 100.0 5.909E+11 1.054E+13 2.251E+12 6.322E-10 176.5 1027 1.452E+08 1.071E+11 2.264E+07 2.754E+05 100.0 5.904E+11 1.057E+13 2.256E+12 6.340E-10 176.5 1027 1.453E+08 1.074E+11 2.266E+07 2.768E+05 100.0 5.898E+11 1.060E+13 2.261E+12 6.358E-10 176.6 1027 1.454E+08 1.077E+11 2.268E+07 2.781E+05 100.0 5.892E+11 1.064E+13 2.265E+12 6.376E-10 176.6 1027 1.455E+08 1.080E+11 2.270E+07 2.794E+05 100.0 5.885E+11 1.067E+13 2.270E+12 6.393E-10 176.7 1027 1.455E+08 1.083E+11 2.271E+07 2.807E+05 100.0 5.877E+11 1.070E+13 2.274E+12 6.409E-10 176.7 1027 1.456E+08 1.085E+11 2.273E+07 2.819E+05 100.0 5.869E+11 1.073E+13 2.278E+12 6.425E-10 176.8 1027 1.456E+08 1.088E+11 2.274E+07 2.831E+05 100.0 5.860E+11 1.076E+13 2.282E+12 6.440E-10 176.8 1027 1.457E+08 1.090E+11 2.275E+07 2.843E+05 100.0 5.851E+11 1.079E+13 2.285E+12 6.455E-10 176.9 1027 1.457E+08 1.093E+11 2.276E+07 2.854E+05 100.0 5.840E+11 1.081E+13 2.289E+12 6.469E-10 176.9 1027 1.457E+08 1.095E+11 2.276E+07 2.866E+05 100.0 5.829E+11 1.084E+13 2.292E+12 6.483E-10 177.0 1027 1.456E+08 1.097E+11 2.277E+07 2.876E+05 100.0 5.818E+11 1.086E+13 2.294E+12 6.496E-10 177.0 1027 1.456E+08 1.099E+11 2.277E+07 2.887E+05 100.0 5.805E+11 1.089E+13 2.297E+12 6.508E-10 177.1 1027 1.455E+08 1.101E+11 2.277E+07 2.897E+05 100.0 5.792E+11 1.091E+13 2.299E+12 6.519E-10 177.2 1027 1.454E+08 1.103E+11 2.277E+07 2.907E+05 100.0 5.778E+11 1.093E+13 2.301E+12 6.530E-10 177.2 1027 1.453E+08 1.104E+11 2.276E+07 2.916E+05 100.0 5.763E+11 1.095E+13 2.302E+12 6.540E-10 177.3 1027 1.452E+08 1.106E+11 2.276E+07 2.925E+05 100.0 5.747E+11 1.097E+13 2.303E+12 6.549E-10 177.4 1027 1.451E+08 1.107E+11 2.275E+07 2.933E+05 100.0 5.730E+11 1.099E+13 2.304E+12 6.557E-10 177.5 1027 1.449E+08 1.108E+11 2.274E+07 2.941E+05 100.0 5.713E+11 1.100E+13 2.305E+12 6.564E-10 177.5 1027 1.447E+08 1.109E+11 2.272E+07 2.948E+05 100.0 5.694E+11 1.102E+13 2.305E+12 6.570E-10 177.6 1027 1.445E+08 1.110E+11 2.271E+07 2.955E+05 100.0 5.675E+11 1.103E+13 2.305E+12 6.576E-10 177.7 1027 1.443E+08 1.111E+11 2.269E+07 2.961E+05 100.0 5.655E+11 1.104E+13 2.304E+12 6.580E-10 177.8 1027 1.440E+08 1.111E+11 2.267E+07 2.967E+05 100.0 5.634E+11 1.105E+13 2.304E+12 6.584E-10 177.9 1027 1.437E+08 1.112E+11 2.264E+07 2.972E+05 100.0 5.612E+11 1.106E+13 2.302E+12 6.586E-10 178.0 1027 1.434E+08 1.112E+11 2.262E+07 2.977E+05 100.0 5.589E+11 1.107E+13 2.301E+12 6.588E-10 178.1 1027 1.431E+08 1.112E+11 2.259E+07 2.981E+05 100.0 5.565E+11 1.107E+13 2.299E+12 6.589E-10 178.1 1027 1.427E+08 1.112E+11 2.256E+07 2.984E+05 100.0 5.540E+11 1.107E+13 2.297E+12 6.588E-10 178.2 1027 1.424E+08 1.111E+11 2.252E+07 2.987E+05 100.0 5.515E+11 1.108E+13 2.294E+12 6.587E-10 178.3 1027 1.420E+08 1.111E+11 2.249E+07 2.990E+05 100.0 5.488E+11 1.108E+13 2.291E+12 6.584E-10 178.4 1027 1.415E+08 1.110E+11 2.245E+07 2.992E+05 100.0 5.461E+11 1.107E+13 2.288E+12 6.581E-10 178.5 1027 1.411E+08 1.109E+11 2.241E+07 2.993E+05 100.0 5.433E+11 1.107E+13 2.284E+12 6.576E-10 178.6 1027 1.406E+08 1.108E+11 2.236E+07 2.994E+05 100.0 5.404E+11 1.106E+13 2.280E+12 6.571E-10 178.7 1027 1.401E+08 1.107E+11 2.232E+07 2.994E+05 100.0 5.374E+11 1.106E+13 2.275E+12 6.564E-10 178.9 1027 1.396E+08 1.105E+11 2.227E+07 2.993E+05 100.0 5.343E+11 1.105E+13 2.271E+12 6.556E-10 179.0 1027 1.390E+08 1.104E+11 2.222E+07 2.992E+05 100.0 5.311E+11 1.104E+13 2.265E+12 6.548E-10 179.1 1027 1.385E+08 1.102E+11 2.216E+07 2.990E+05 100.0 5.279E+11 1.102E+13 2.260E+12 6.538E-10 179.2 1027 1.379E+08 1.100E+11 2.211E+07 2.988E+05 100.0 5.246E+11 1.101E+13 2.254E+12 6.527E-10 179.3 1027 1.373E+08 1.098E+11 2.205E+07 2.985E+05 100.0 5.212E+11 1.099E+13 2.248E+12 6.515E-10 179.4 1027 1.366E+08 1.095E+11 2.198E+07 2.981E+05 100.0 5.177E+11 1.098E+13 2.241E+12 6.502E-10 179.5 1027 1.360E+08 1.093E+11 2.192E+07 2.977E+05 100.0 5.142E+11 1.096E+13 2.234E+12 6.488E-10 179.7 1027 1.353E+08 1.090E+11 2.185E+07 2.973E+05 100.0 5.106E+11 1.093E+13 2.227E+12 6.473E-10 179.8 1027 1.346E+08 1.087E+11 2.179E+07 2.967E+05 100.0 5.069E+11 1.091E+13 2.220E+12 6.457E-10 179.9 1027 1.339E+08 1.084E+11 2.171E+07 2.961E+05 100.0 5.032E+11 1.089E+13 2.212E+12 6.441E-10 180.1 1027 1.331E+08 1.081E+11 2.164E+07 2.955E+05 100.0 4.994E+11 1.086E+13 2.204E+12 6.423E-10 180.2 1027 1.324E+08 1.078E+11 2.157E+07 2.948E+05 100.0 4.955E+11 1.083E+13 2.195E+12 6.404E-10 180.3 1027 1.316E+08 1.074E+11 2.149E+07 2.941E+05 100.0 4.916E+11 1.080E+13 2.187E+12 6.384E-10 180.5 1027 1.308E+08 1.071E+11 2.141E+07 2.933E+05 100.0 4.876E+11 1.077E+13 2.178E+12 6.363E-10 180.6 1027 1.300E+08 1.067E+11 2.133E+07 2.924E+05 100.0 4.836E+11 1.074E+13 2.168E+12 6.342E-10 180.7 1027 1.292E+08 1.063E+11 2.124E+07 2.915E+05 100.0 4.796E+11 1.070E+13 2.159E+12 6.319E-10 180.9 1027 1.283E+08 1.059E+11 2.116E+07 2.905E+05 100.0 4.754E+11 1.067E+13 2.149E+12 6.296E-10 181.0 1027 1.274E+08 1.054E+11 2.107E+07 2.895E+05 100.0 4.713E+11 1.063E+13 2.139E+12 6.272E-10 181.2 1027 1.266E+08 1.050E+11 2.098E+07 2.885E+05 100.0 4.671E+11 1.059E+13 2.129E+12 6.247E-10 181.3 1027 1.257E+08 1.045E+11 2.089E+07 2.874E+05 100.0 4.629E+11 1.055E+13 2.118E+12 6.221E-10 181.4 1027 1.248E+08 1.041E+11 2.080E+07 2.863E+05 100.0 4.586E+11 1.051E+13 2.108E+12 6.195E-10 181.6 1027 1.239E+08 1.036E+11 2.071E+07 2.851E+05 100.0 4.544E+11 1.047E+13 2.097E+12 6.167E-10 181.7 1027 1.229E+08 1.031E+11 2.061E+07 2.839E+05 100.0 4.500E+11 1.042E+13 2.086E+12 6.139E-10 181.9 1027 1.220E+08 1.026E+11 2.051E+07 2.826E+05 100.0 4.457E+11 1.038E+13 2.074E+12 6.111E-10 182.1 1027 1.210E+08 1.021E+11 2.042E+07 2.813E+05 100.0 4.414E+11 1.033E+13 2.063E+12 6.082E-10 182.2 1027 1.201E+08 1.016E+11 2.032E+07 2.800E+05 100.0 4.370E+11 1.028E+13 2.051E+12 6.052E-10 182.4 1027 1.191E+08 1.010E+11 2.022E+07 2.786E+05 100.0 4.327E+11 1.023E+13 2.040E+12 6.022E-10 182.5 1027 1.181E+08 1.005E+11 2.012E+07 2.772E+05 100.0 4.283E+11 1.018E+13 2.028E+12 5.991E-10 182.7 1027 1.172E+08 9.995E+10 2.001E+07 2.758E+05 100.0 4.239E+11 1.013E+13 2.016E+12 5.960E-10 182.8 1027 1.162E+08 9.939E+10 1.991E+07 2.743E+05 100.0 4.196E+11 1.008E+13 2.004E+12 5.928E-10 183.0 1027 1.152E+08 9.882E+10 1.981E+07 2.729E+05 100.0 4.152E+11 1.003E+13 1.992E+12 5.896E-10 183.2 1027 1.142E+08 9.825E+10 1.970E+07 2.714E+05 100.0 4.108E+11 9.978E+12 1.979E+12 5.863E-10 183.3 1027 1.132E+08 9.767E+10 1.960E+07 2.698E+05 100.0 4.065E+11 9.924E+12 1.967E+12 5.830E-10 183.5 1027 1.122E+08 9.709E+10 1.949E+07 2.683E+05 100.0 4.022E+11 9.870E+12 1.955E+12 5.797E-10 183.7 1027 1.112E+08 9.650E+10 1.939E+07 2.667E+05 100.0 3.978E+11 9.816E+12 1.942E+12 5.763E-10 183.8 1027 1.102E+08 9.591E+10 1.928E+07 2.652E+05 100.0 3.936E+11 9.761E+12 1.930E+12 5.730E-10 184.0 1027 1.092E+08 9.531E+10 1.917E+07 2.636E+05 100.0 3.893E+11 9.705E+12 1.917E+12 5.696E-10 184.1 1027 1.082E+08 9.472E+10 1.907E+07 2.620E+05 100.0 3.850E+11 9.649E+12 1.905E+12 5.662E-10 184.3 1027 1.072E+08 9.411E+10 1.896E+07 2.604E+05 100.0 3.808E+11 9.593E+12 1.892E+12 5.627E-10 184.5 1027 1.063E+08 9.351E+10 1.885E+07 2.588E+05 100.0 3.766E+11 9.537E+12 1.880E+12 5.593E-10 184.7 1027 1.053E+08 9.291E+10 1.875E+07 2.571E+05 100.0 3.725E+11 9.480E+12 1.867E+12 5.558E-10 184.8 1027 1.043E+08 9.230E+10 1.864E+07 2.555E+05 100.0 3.684E+11 9.423E+12 1.855E+12 5.524E-10 185.0 1027 1.033E+08 9.170E+10 1.853E+07 2.539E+05 100.0 3.643E+11 9.366E+12 1.842E+12 5.489E-10 185.2 1027 1.023E+08 9.110E+10 1.843E+07 2.522E+05 100.0 3.603E+11 9.309E+12 1.830E+12 5.455E-10 185.3 1027 1.014E+08 9.049E+10 1.832E+07 2.506E+05 100.0 3.563E+11 9.253E+12 1.818E+12 5.421E-10 185.5 1027 1.004E+08 8.989E+10 1.822E+07 2.490E+05 100.0 3.523E+11 9.196E+12 1.806E+12 5.386E-10 185.7 1027 9.949E+07 8.929E+10 1.811E+07 2.474E+05 100.0 3.484E+11 9.139E+12 1.794E+12 5.352E-10 185.8 1027 9.856E+07 8.870E+10 1.801E+07 2.457E+05 100.0 3.446E+11 9.083E+12 1.782E+12 5.318E-10 186.0 1027 9.763E+07 8.811E+10 1.791E+07 2.441E+05 100.0 3.408E+11 9.027E+12 1.770E+12 5.284E-10 186.2 1027 9.672E+07 8.752E+10 1.780E+07 2.425E+05 100.0 3.371E+11 8.971E+12 1.758E+12 5.251E-10 186.3 1027 9.581E+07 8.694E+10 1.770E+07 2.410E+05 100.0 3.334E+11 8.915E+12 1.746E+12 5.217E-10 186.5 1027 9.492E+07 8.636E+10 1.760E+07 2.394E+05 100.0 3.298E+11 8.860E+12 1.735E+12 5.184E-10 186.7 1027 9.404E+07 8.578E+10 1.750E+07 2.378E+05 100.0 3.263E+11 8.806E+12 1.723E+12 5.152E-10 186.8 1027 9.317E+07 8.522E+10 1.740E+07 2.363E+05 100.0 3.228E+11 8.752E+12 1.712E+12 5.119E-10 187.0 1027 9.232E+07 8.465E+10 1.731E+07 2.348E+05 100.0 3.193E+11 8.698E+12 1.701E+12 5.087E-10 187.2 1027 9.148E+07 8.410E+10 1.721E+07 2.332E+05 100.0 3.160E+11 8.645E+12 1.690E+12 5.055E-10 187.3 1027 9.065E+07 8.355E+10 1.712E+07 2.318E+05 100.0 3.127E+11 8.593E+12 1.680E+12 5.024E-10 187.5 1027 8.984E+07 8.301E+10 1.703E+07 2.303E+05 100.0 3.094E+11 8.541E+12 1.669E+12 4.993E-10 187.6 1027 8.904E+07 8.248E+10 1.693E+07 2.288E+05 100.0 3.063E+11 8.490E+12 1.659E+12 4.963E-10 187.8 1027 8.826E+07 8.196E+10 1.684E+07 2.274E+05 100.0 3.032E+11 8.440E+12 1.649E+12 4.933E-10 188.0 1027 8.749E+07 8.144E+10 1.676E+07 2.260E+05 100.0 3.002E+11 8.391E+12 1.639E+12 4.904E-10 188.1 1027 8.674E+07 8.094E+10 1.667E+07 2.247E+05 100.0 2.972E+11 8.342E+12 1.629E+12 4.875E-10 188.3 1027 8.601E+07 8.044E+10 1.658E+07 2.233E+05 100.0 2.943E+11 8.294E+12 1.619E+12 4.847E-10 188.4 1027 8.529E+07 7.996E+10 1.650E+07 2.220E+05 100.0 2.915E+11 8.248E+12 1.610E+12 4.819E-10 188.6 1027 8.459E+07 7.948E+10 1.642E+07 2.207E+05 100.0 2.888E+11 8.202E+12 1.601E+12 4.792E-10 188.7 1027 8.391E+07 7.901E+10 1.634E+07 2.194E+05 100.0 2.861E+11 8.157E+12 1.592E+12 4.765E-10 188.9 1027 8.325E+07 7.856E+10 1.626E+07 2.182E+05 100.0 2.835E+11 8.113E+12 1.583E+12 4.739E-10 189.0 1027 8.260E+07 7.812E+10 1.619E+07 2.170E+05 100.0 2.810E+11 8.070E+12 1.575E+12 4.714E-10 189.2 1027 8.197E+07 7.768E+10 1.611E+07 2.158E+05 100.0 2.786E+11 8.029E+12 1.567E+12 4.689E-10 189.3 1027 8.136E+07 7.726E+10 1.604E+07 2.147E+05 100.0 2.762E+11 7.988E+12 1.559E+12 4.665E-10 189.5 1027 8.077E+07 7.685E+10 1.597E+07 2.136E+05 100.0 2.740E+11 7.948E+12 1.551E+12 4.642E-10 189.6 1027 8.020E+07 7.645E+10 1.590E+07 2.125E+05 100.0 2.718E+11 7.910E+12 1.544E+12 4.619E-10 189.7 1027 7.964E+07 7.607E+10 1.584E+07 2.115E+05 100.0 2.696E+11 7.873E+12 1.537E+12 4.597E-10 189.9 1027 7.911E+07 7.570E+10 1.578E+07 2.105E+05 100.0 2.676E+11 7.837E+12 1.530E+12 4.576E-10 190.0 1027 7.859E+07 7.534E+10 1.571E+07 2.095E+05 100.0 2.656E+11 7.802E+12 1.523E+12 4.556E-10 190.1 1027 7.810E+07 7.499E+10 1.566E+07 2.086E+05 100.0 2.637E+11 7.768E+12 1.517E+12 4.536E-10 190.2 1027 7.762E+07 7.465E+10 1.560E+07 2.077E+05 100.0 2.619E+11 7.735E+12 1.511E+12 4.517E-10 190.4 1027 7.716E+07 7.433E+10 1.555E+07 2.069E+05 100.0 2.602E+11 7.704E+12 1.505E+12 4.499E-10 190.5 1027 7.673E+07 7.402E+10 1.549E+07 2.061E+05 100.0 2.585E+11 7.674E+12 1.500E+12 4.481E-10 190.6 1027 7.631E+07 7.373E+10 1.544E+07 2.053E+05 100.0 2.570E+11 7.645E+12 1.495E+12 4.465E-10 190.7 1027 7.591E+07 7.345E+10 1.540E+07 2.045E+05 100.0 2.555E+11 7.618E+12 1.490E+12 4.449E-10 190.8 1027 7.553E+07 7.318E+10 1.535E+07 2.038E+05 100.0 2.540E+11 7.592E+12 1.485E+12 4.433E-10 190.9 1027 7.518E+07 7.292E+10 1.531E+07 2.032E+05 100.0 2.527E+11 7.567E+12 1.480E+12 4.419E-10 191.0 1027 7.484E+07 7.268E+10 1.527E+07 2.025E+05 100.0 2.514E+11 7.544E+12 1.476E+12 4.405E-10 191.1 1027 7.452E+07 7.246E+10 1.523E+07 2.020E+05 100.0 2.502E+11 7.522E+12 1.472E+12 4.393E-10 191.2 1027 7.422E+07 7.224E+10 1.520E+07 2.014E+05 100.0 2.491E+11 7.501E+12 1.469E+12 4.381E-10 191.3 1027 7.395E+07 7.205E+10 1.516E+07 2.009E+05 100.0 2.481E+11 7.481E+12 1.466E+12 4.369E-10 191.4 1027 7.369E+07 7.186E+10 1.513E+07 2.004E+05 100.0 2.472E+11 7.463E+12 1.463E+12 4.359E-10 191.5 1027 7.346E+07 7.169E+10 1.510E+07 2.000E+05 100.0 2.463E+11 7.446E+12 1.460E+12 4.350E-10 191.6 1027 7.324E+07 7.154E+10 1.508E+07 1.996E+05 100.0 2.455E+11 7.431E+12 1.458E+12 4.341E-10 191.6 1027 7.305E+07 7.139E+10 1.506E+07 1.993E+05 100.0 2.448E+11 7.417E+12 1.455E+12 4.333E-10 191.7 1027 7.287E+07 7.127E+10 1.504E+07 1.989E+05 100.0 2.442E+11 7.405E+12 1.454E+12 4.326E-10 191.8 1027 7.272E+07 7.115E+10 1.502E+07 1.987E+05 100.0 2.436E+11 7.393E+12 1.452E+12 4.320E-10 191.9 1027 7.259E+07 7.105E+10 1.500E+07 1.984E+05 100.0 2.432E+11 7.384E+12 1.451E+12 4.314E-10 191.9 1027 7.248E+07 7.097E+10 1.499E+07 1.982E+05 100.0 2.428E+11 7.375E+12 1.450E+12 4.310E-10 192.0 1027 7.239E+07 7.090E+10 1.498E+07 1.981E+05 100.0 2.425E+11 7.368E+12 1.449E+12 4.306E-10 192.0 1027 7.232E+07 7.084E+10 1.497E+07 1.980E+05 100.0 2.423E+11 7.363E+12 1.449E+12 4.303E-10 192.1 1027 7.227E+07 7.080E+10 1.497E+07 1.979E+05 100.0 2.421E+11 7.358E+12 1.449E+12 4.301E-10 192.1 1027 7.224E+07 7.078E+10 1.496E+07 1.979E+05 100.0 2.420E+11 7.355E+12 1.449E+12 4.300E-10 192.2 1027 7.223E+07 7.076E+10 1.496E+07 1.979E+05 100.0 2.421E+11 7.354E+12 1.449E+12 4.299E-10 192.2 1027 7.224E+07 7.076E+10 1.497E+07 1.979E+05 100.0 2.421E+11 7.354E+12 1.450E+12 4.300E-10 192.2 1027 7.227E+07 7.078E+10 1.497E+07 1.980E+05 100.0 2.423E+11 7.355E+12 1.451E+12 4.301E-10 192.3 1027 7.233E+07 7.081E+10 1.498E+07 1.981E+05 100.0 2.426E+11 7.358E+12 1.453E+12 4.303E-10 192.3 1027 7.240E+07 7.086E+10 1.499E+07 1.982E+05 100.0 2.429E+11 7.362E+12 1.454E+12 4.306E-10 192.3 1027 7.250E+07 7.091E+10 1.500E+07 1.984E+05 100.0 2.433E+11 7.367E+12 1.456E+12 4.310E-10 192.3 1027 7.262E+07 7.099E+10 1.502E+07 1.987E+05 100.0 2.438E+11 7.374E+12 1.458E+12 4.314E-10 192.4 1027 7.276E+07 7.107E+10 1.503E+07 1.989E+05 100.0 2.444E+11 7.382E+12 1.461E+12 4.319E-10 192.4 1027 7.291E+07 7.117E+10 1.505E+07 1.992E+05 100.0 2.451E+11 7.392E+12 1.463E+12 4.325E-10 192.4 1027 7.309E+07 7.129E+10 1.508E+07 1.996E+05 100.0 2.458E+11 7.403E+12 1.466E+12 4.332E-10 192.4 1027 7.330E+07 7.142E+10 1.510E+07 2.000E+05 100.0 2.466E+11 7.415E+12 1.470E+12 4.340E-10 192.4 1027 7.352E+07 7.156E+10 1.513E+07 2.004E+05 100.0 2.475E+11 7.428E+12 1.473E+12 4.349E-10 192.4 1027 7.376E+07 7.172E+10 1.516E+07 2.008E+05 100.0 2.485E+11 7.443E+12 1.477E+12 4.358E-10 192.4 1027 7.402E+07 7.189E+10 1.519E+07 2.013E+05 100.0 2.496E+11 7.459E+12 1.481E+12 4.368E-10 192.3 1027 7.431E+07 7.207E+10 1.523E+07 2.018E+05 100.0 2.508E+11 7.477E+12 1.485E+12 4.379E-10 192.3 1027 7.461E+07 7.226E+10 1.526E+07 2.024E+05 100.0 2.520E+11 7.496E+12 1.490E+12 4.390E-10 192.3 1027 7.494E+07 7.247E+10 1.530E+07 2.029E+05 100.0 2.533E+11 7.516E+12 1.495E+12 4.403E-10 192.3 1027 7.529E+07 7.270E+10 1.534E+07 2.036E+05 100.0 2.548E+11 7.537E+12 1.500E+12 4.416E-10 192.3 1027 7.566E+07 7.293E+10 1.539E+07 2.042E+05 100.0 2.563E+11 7.560E+12 1.505E+12 4.430E-10 192.2 1027 7.605E+07 7.318E+10 1.544E+07 2.049E+05 100.0 2.578E+11 7.583E+12 1.511E+12 4.444E-10 192.2 1027 7.646E+07 7.344E+10 1.548E+07 2.056E+05 100.0 2.595E+11 7.608E+12 1.517E+12 4.460E-10 192.1 1027 7.689E+07 7.371E+10 1.553E+07 2.063E+05 100.0 2.613E+11 7.634E+12 1.523E+12 4.476E-10 192.1 1027 7.734E+07 7.400E+10 1.559E+07 2.071E+05 100.0 2.631E+11 7.662E+12 1.529E+12 4.493E-10 192.0 1027 7.781E+07 7.430E+10 1.564E+07 2.079E+05 100.0 2.650E+11 7.690E+12 1.535E+12 4.510E-10 192.0 1027 7.831E+07 7.461E+10 1.570E+07 2.087E+05 100.0 2.670E+11 7.720E+12 1.542E+12 4.528E-10 191.9 1027 7.882E+07 7.493E+10 1.576E+07 2.096E+05 100.0 2.691E+11 7.751E+12 1.549E+12 4.547E-10 191.9 1027 7.936E+07 7.526E+10 1.582E+07 2.105E+05 100.0 2.713E+11 7.783E+12 1.556E+12 4.566E-10 191.8 1027 7.991E+07 7.561E+10 1.589E+07 2.114E+05 100.0 2.736E+11 7.816E+12 1.564E+12 4.586E-10 191.7 1027 8.049E+07 7.596E+10 1.595E+07 2.123E+05 100.0 2.760E+11 7.849E+12 1.571E+12 4.607E-10 191.7 1027 8.108E+07 7.633E+10 1.602E+07 2.132E+05 100.0 2.784E+11 7.884E+12 1.579E+12 4.628E-10 191.6 1027 8.170E+07 7.671E+10 1.609E+07 2.142E+05 100.0 2.810E+11 7.920E+12 1.587E+12 4.650E-10 191.5 1027 8.234E+07 7.709E+10 1.616E+07 2.152E+05 100.0 2.836E+11 7.957E+12 1.595E+12 4.673E-10 191.4 1027 8.300E+07 7.749E+10 1.624E+07 2.162E+05 100.0 2.863E+11 7.995E+12 1.604E+12 4.696E-10 191.4 1027 8.367E+07 7.790E+10 1.631E+07 2.173E+05 100.0 2.891E+11 8.034E+12 1.612E+12 4.720E-10 191.3 1027 8.437E+07 7.831E+10 1.639E+07 2.183E+05 100.0 2.920E+11 8.074E+12 1.621E+12 4.744E-10 191.2 1027 8.508E+07 7.874E+10 1.647E+07 2.194E+05 100.0 2.950E+11 8.114E+12 1.630E+12 4.768E-10 191.1 1027 8.582E+07 7.917E+10 1.655E+07 2.205E+05 100.0 2.980E+11 8.156E+12 1.639E+12 4.794E-10 191.0 1027 8.657E+07 7.962E+10 1.663E+07 2.216E+05 100.0 3.012E+11 8.198E+12 1.648E+12 4.819E-10 190.9 1027 8.735E+07 8.007E+10 1.671E+07 2.227E+05 100.0 3.044E+11 8.241E+12 1.658E+12 4.845E-10 190.8 1027 8.814E+07 8.053E+10 1.680E+07 2.238E+05 100.0 3.078E+11 8.285E+12 1.667E+12 4.872E-10 190.7 1027 8.895E+07 8.099E+10 1.689E+07 2.249E+05 100.0 3.112E+11 8.329E+12 1.677E+12 4.899E-10 190.6 1027 8.977E+07 8.147E+10 1.697E+07 2.261E+05 100.0 3.147E+11 8.374E+12 1.687E+12 4.926E-10 190.5 1027 9.062E+07 8.195E+10 1.706E+07 2.273E+05 100.0 3.183E+11 8.419E+12 1.697E+12 4.954E-10 190.3 1027 9.148E+07 8.243E+10 1.715E+07 2.284E+05 100.0 3.219E+11 8.465E+12 1.706E+12 4.982E-10 190.2 1027 9.236E+07 8.292E+10 1.725E+07 2.296E+05 100.0 3.257E+11 8.512E+12 1.717E+12 5.010E-10 190.1 1027 9.326E+07 8.342E+10 1.734E+07 2.308E+05 100.0 3.295E+11 8.559E+12 1.727E+12 5.039E-10 190.0 1027 9.417E+07 8.393E+10 1.743E+07 2.319E+05 100.0 3.334E+11 8.606E+12 1.737E+12 5.068E-10 189.9 1027 9.510E+07 8.443E+10 1.753E+07 2.331E+05 100.0 3.374E+11 8.654E+12 1.747E+12 5.097E-10 189.7 1027 9.604E+07 8.495E+10 1.762E+07 2.343E+05 100.0 3.415E+11 8.702E+12 1.758E+12 5.126E-10 189.6 1027 9.700E+07 8.546E+10 1.772E+07 2.355E+05 100.0 3.457E+11 8.751E+12 1.768E+12 5.156E-10 189.5 1027 9.797E+07 8.598E+10 1.782E+07 2.366E+05 100.0 3.499E+11 8.800E+12 1.779E+12 5.185E-10 189.4 1027 9.896E+07 8.650E+10 1.792E+07 2.378E+05 100.0 3.542E+11 8.849E+12 1.789E+12 5.215E-10 189.2 1027 9.996E+07 8.703E+10 1.802E+07 2.390E+05 100.0 3.586E+11 8.898E+12 1.800E+12 5.245E-10 189.1 1027 1.010E+08 8.755E+10 1.812E+07 2.401E+05 100.0 3.631E+11 8.947E+12 1.810E+12 5.275E-10 189.0 1027 1.020E+08 8.808E+10 1.822E+07 2.413E+05 100.0 3.676E+11 8.996E+12 1.821E+12 5.305E-10 188.8 1027 1.030E+08 8.861E+10 1.832E+07 2.424E+05 100.0 3.722E+11 9.045E+12 1.831E+12 5.335E-10 188.7 1027 1.041E+08 8.913E+10 1.842E+07 2.435E+05 100.0 3.769E+11 9.094E+12 1.842E+12 5.365E-10 188.6 1027 1.051E+08 8.966E+10 1.852E+07 2.447E+05 100.0 3.816E+11 9.143E+12 1.852E+12 5.395E-10 188.4 1027 1.062E+08 9.019E+10 1.862E+07 2.458E+05 100.0 3.864E+11 9.192E+12 1.863E+12 5.425E-10 188.3 1027 1.073E+08 9.071E+10 1.872E+07 2.468E+05 100.0 3.912E+11 9.241E+12 1.873E+12 5.455E-10 188.1 1027 1.084E+08 9.124E+10 1.883E+07 2.479E+05 100.0 3.961E+11 9.289E+12 1.884E+12 5.484E-10 188.0 1027 1.094E+08 9.176E+10 1.893E+07 2.489E+05 100.0 4.011E+11 9.338E+12 1.894E+12 5.514E-10 187.8 1027 1.105E+08 9.228E+10 1.903E+07 2.500E+05 100.0 4.061E+11 9.385E+12 1.904E+12 5.543E-10 187.7 1027 1.116E+08 9.280E+10 1.913E+07 2.510E+05 100.0 4.112E+11 9.433E+12 1.914E+12 5.572E-10 187.5 1027 1.128E+08 9.331E+10 1.923E+07 2.519E+05 100.0 4.163E+11 9.479E+12 1.924E+12 5.601E-10 187.4 1027 1.139E+08 9.381E+10 1.933E+07 2.529E+05 100.0 4.214E+11 9.526E+12 1.934E+12 5.630E-10 187.3 1027 1.150E+08 9.432E+10 1.943E+07 2.538E+05 100.0 4.266E+11 9.571E+12 1.944E+12 5.658E-10 187.1 1027 1.161E+08 9.481E+10 1.953E+07 2.547E+05 100.0 4.318E+11 9.616E+12 1.954E+12 5.686E-10 187.0 1027 1.172E+08 9.530E+10 1.963E+07 2.556E+05 100.0 4.371E+11 9.661E+12 1.963E+12 5.713E-10 186.8 1027 1.183E+08 9.579E+10 1.973E+07 2.564E+05 100.0 4.424E+11 9.705E+12 1.973E+12 5.740E-10 186.7 1027 1.194E+08 9.626E+10 1.983E+07 2.572E+05 100.0 4.477E+11 9.747E+12 1.982E+12 5.767E-10 186.5 1027 1.205E+08 9.673E+10 1.993E+07 2.580E+05 100.0 4.530E+11 9.789E+12 1.991E+12 5.793E-10 186.4 1027 1.217E+08 9.719E+10 2.002E+07 2.587E+05 100.0 4.583E+11 9.831E+12 2.000E+12 5.818E-10 186.2 1027 1.228E+08 9.764E+10 2.012E+07 2.594E+05 100.0 4.637E+11 9.871E+12 2.009E+12 5.843E-10 186.1 1027 1.239E+08 9.809E+10 2.021E+07 2.601E+05 100.0 4.690E+11 9.910E+12 2.017E+12 5.868E-10 185.9 1027 1.250E+08 9.852E+10 2.030E+07 2.607E+05 100.0 4.744E+11 9.948E+12 2.025E+12 5.892E-10 185.8 1027 1.260E+08 9.894E+10 2.039E+07 2.613E+05 100.0 4.797E+11 9.986E+12 2.033E+12 5.915E-10 185.6 1027 1.271E+08 9.936E+10 2.048E+07 2.618E+05 100.0 4.851E+11 1.002E+13 2.041E+12 5.938E-10 185.5 1027 1.282E+08 9.976E+10 2.057E+07 2.623E+05 100.0 4.904E+11 1.006E+13 2.049E+12 5.960E-10 185.3 1027 1.293E+08 1.001E+11 2.066E+07 2.628E+05 100.0 4.958E+11 1.009E+13 2.056E+12 5.981E-10 185.2 1027 1.303E+08 1.005E+11 2.074E+07 2.632E+05 100.0 5.011E+11 1.012E+13 2.064E+12 6.001E-10 185.0 1027 1.313E+08 1.009E+11 2.083E+07 2.636E+05 100.0 5.063E+11 1.015E+13 2.071E+12 6.021E-10 184.9 1027 1.324E+08 1.012E+11 2.091E+07 2.639E+05 100.0 5.116E+11 1.018E+13 2.077E+12 6.040E-10 184.7 1027 1.334E+08 1.016E+11 2.099E+07 2.642E+05 100.0 5.168E+11 1.021E+13 2.084E+12 6.059E-10 184.6 1027 1.344E+08 1.019E+11 2.107E+07 2.645E+05 100.0 5.220E+11 1.024E+13 2.090E+12 6.076E-10 184.4 1027 1.353E+08 1.022E+11 2.114E+07 2.647E+05 100.0 5.271E+11 1.027E+13 2.096E+12 6.093E-10 184.3 1027 1.363E+08 1.025E+11 2.122E+07 2.649E+05 100.0 5.322E+11 1.029E+13 2.101E+12 6.109E-10 184.1 1027 1.373E+08 1.028E+11 2.129E+07 2.650E+05 100.0 5.372E+11 1.031E+13 2.107E+12 6.124E-10 184.0 1027 1.382E+08 1.031E+11 2.136E+07 2.651E+05 100.0 5.422E+11 1.034E+13 2.112E+12 6.138E-10 183.9 1027 1.391E+08 1.033E+11 2.143E+07 2.651E+05 100.0 5.471E+11 1.036E+13 2.117E+12 6.152E-10 183.7 1027 1.400E+08 1.036E+11 2.149E+07 2.651E+05 100.0 5.519E+11 1.037E+13 2.121E+12 6.164E-10 183.6 1027 1.408E+08 1.038E+11 2.156E+07 2.651E+05 100.0 5.567E+11 1.039E+13 2.125E+12 6.176E-10 183.4 1027 1.417E+08 1.040E+11 2.162E+07 2.650E+05 100.0 5.614E+11 1.041E+13 2.129E+12 6.187E-10 183.3 1027 1.425E+08 1.042E+11 2.168E+07 2.649E+05 100.0 5.660E+11 1.042E+13 2.133E+12 6.197E-10 183.2 1027 1.433E+08 1.044E+11 2.174E+07 2.647E+05 100.0 5.705E+11 1.043E+13 2.136E+12 6.206E-10 183.0 1027 1.441E+08 1.046E+11 2.179E+07 2.645E+05 100.0 5.750E+11 1.045E+13 2.139E+12 6.214E-10 182.9 1027 1.448E+08 1.047E+11 2.184E+07 2.642E+05 100.0 5.793E+11 1.046E+13 2.142E+12 6.221E-10 182.8 1027 1.455E+08 1.048E+11 2.189E+07 2.639E+05 100.0 5.835E+11 1.046E+13 2.144E+12 6.227E-10 182.6 1027 1.462E+08 1.050E+11 2.194E+07 2.636E+05 100.0 5.877E+11 1.047E+13 2.146E+12 6.233E-10 182.5 1027 1.469E+08 1.051E+11 2.199E+07 2.632E+05 100.0 5.917E+11 1.048E+13 2.148E+12 6.237E-10 182.4 1027 1.475E+08 1.051E+11 2.203E+07 2.628E+05 100.0 5.957E+11 1.048E+13 2.150E+12 6.241E-10 182.2 1027 1.481E+08 1.052E+11 2.207E+07 2.623E+05 100.0 5.995E+11 1.048E+13 2.151E+12 6.243E-10 182.1 1027 1.487E+08 1.053E+11 2.211E+07 2.618E+05 100.0 6.032E+11 1.048E+13 2.152E+12 6.245E-10 182.0 1027 1.493E+08 1.053E+11 2.214E+07 2.613E+05 100.0 6.068E+11 1.048E+13 2.153E+12 6.246E-10 181.9 1027 1.498E+08 1.053E+11 2.217E+07 2.607E+05 100.0 6.103E+11 1.048E+13 2.153E+12 6.246E-10 181.7 1027 1.503E+08 1.053E+11 2.221E+07 2.601E+05 100.0 6.137E+11 1.047E+13 2.153E+12 6.245E-10 181.6 1027 1.508E+08 1.053E+11 2.223E+07 2.595E+05 100.0 6.169E+11 1.047E+13 2.153E+12 6.244E-10 181.5 1027 1.512E+08 1.053E+11 2.226E+07 2.588E+05 100.0 6.200E+11 1.046E+13 2.153E+12 6.241E-10 181.4 1027 1.516E+08 1.053E+11 2.228E+07 2.582E+05 100.0 6.230E+11 1.046E+13 2.152E+12 6.238E-10 181.3 1027 1.520E+08 1.052E+11 2.230E+07 2.574E+05 100.0 6.259E+11 1.045E+13 2.151E+12 6.234E-10 181.1 1027 1.523E+08 1.052E+11 2.232E+07 2.567E+05 100.0 6.286E+11 1.044E+13 2.150E+12 6.229E-10 181.0 1027 1.527E+08 1.051E+11 2.234E+07 2.559E+05 100.0 6.312E+11 1.042E+13 2.149E+12 6.224E-10 180.9 1027 1.530E+08 1.050E+11 2.235E+07 2.551E+05 100.0 6.337E+11 1.041E+13 2.147E+12 6.218E-10 180.8 1027 1.532E+08 1.049E+11 2.236E+07 2.543E+05 100.0 6.361E+11 1.040E+13 2.145E+12 6.211E-10 180.7 1027 1.535E+08 1.048E+11 2.237E+07 2.535E+05 100.0 6.383E+11 1.038E+13 2.143E+12 6.203E-10 180.6 1027 1.537E+08 1.047E+11 2.238E+07 2.526E+05 100.0 6.404E+11 1.037E+13 2.141E+12 6.195E-10 180.5 1027 1.538E+08 1.045E+11 2.239E+07 2.517E+05 100.0 6.423E+11 1.035E+13 2.139E+12 6.186E-10 180.4 1027 1.540E+08 1.044E+11 2.239E+07 2.508E+05 100.0 6.441E+11 1.033E+13 2.136E+12 6.176E-10 180.3 1027 1.541E+08 1.042E+11 2.239E+07 2.499E+05 100.0 6.458E+11 1.031E+13 2.133E+12 6.166E-10 180.2 1027 1.542E+08 1.041E+11 2.239E+07 2.490E+05 100.0 6.474E+11 1.029E+13 2.130E+12 6.155E-10 180.1 1027 1.543E+08 1.039E+11 2.239E+07 2.480E+05 100.0 6.488E+11 1.027E+13 2.127E+12 6.144E-10 180.0 1027 1.543E+08 1.037E+11 2.238E+07 2.471E+05 100.0 6.501E+11 1.025E+13 2.124E+12 6.132E-10 179.9 1027 1.544E+08 1.035E+11 2.238E+07 2.461E+05 100.0 6.513E+11 1.022E+13 2.120E+12 6.120E-10 179.8 1027 1.544E+08 1.033E+11 2.237E+07 2.452E+05 100.0 6.524E+11 1.020E+13 2.117E+12 6.107E-10 179.7 1027 1.543E+08 1.031E+11 2.236E+07 2.442E+05 100.0 6.533E+11 1.018E+13 2.113E+12 6.094E-10 179.6 1027 1.543E+08 1.029E+11 2.235E+07 2.432E+05 100.0 6.541E+11 1.015E+13 2.109E+12 6.080E-10 179.5 1027 1.542E+08 1.027E+11 2.233E+07 2.422E+05 100.0 6.548E+11 1.013E+13 2.105E+12 6.067E-10 179.4 1027 1.541E+08 1.024E+11 2.232E+07 2.412E+05 100.0 6.554E+11 1.010E+13 2.101E+12 6.052E-10 179.3 1027 1.540E+08 1.022E+11 2.230E+07 2.402E+05 100.0 6.558E+11 1.007E+13 2.097E+12 6.038E-10 179.2 1027 1.539E+08 1.019E+11 2.229E+07 2.392E+05 100.0 6.562E+11 1.005E+13 2.093E+12 6.023E-10 179.1 1027 1.537E+08 1.017E+11 2.227E+07 2.383E+05 100.0 6.564E+11 1.002E+13 2.088E+12 6.008E-10 179.1 1027 1.535E+08 1.015E+11 2.225E+07 2.373E+05 100.0 6.566E+11 9.991E+12 2.084E+12 5.993E-10 179.0 1027 1.533E+08 1.012E+11 2.223E+07 2.363E+05 100.0 6.566E+11 9.963E+12 2.080E+12 5.977E-10 178.9 1027 1.531E+08 1.009E+11 2.221E+07 2.353E+05 100.0 6.566E+11 9.935E+12 2.075E+12 5.962E-10 178.8 1027 1.529E+08 1.007E+11 2.219E+07 2.344E+05 100.0 6.564E+11 9.907E+12 2.071E+12 5.946E-10 178.7 1027 1.527E+08 1.004E+11 2.216E+07 2.334E+05 100.0 6.561E+11 9.879E+12 2.066E+12 5.930E-10 178.7 1027 1.524E+08 1.002E+11 2.214E+07 2.325E+05 100.0 6.558E+11 9.850E+12 2.062E+12 5.914E-10 178.6 1027 1.521E+08 9.989E+10 2.211E+07 2.316E+05 100.0 6.554E+11 9.821E+12 2.058E+12 5.898E-10 178.5 1027 1.519E+08 9.962E+10 2.209E+07 2.306E+05 100.0 6.549E+11 9.793E+12 2.053E+12 5.882E-10 178.4 1027 1.516E+08 9.935E+10 2.206E+07 2.297E+05 100.0 6.543E+11 9.765E+12 2.049E+12 5.866E-10 178.4 1027 1.513E+08 9.909E+10 2.204E+07 2.289E+05 100.0 6.536E+11 9.736E+12 2.044E+12 5.851E-10 178.3 1027 1.510E+08 9.883E+10 2.201E+07 2.280E+05 100.0 6.529E+11 9.708E+12 2.040E+12 5.835E-10 178.2 1027 1.506E+08 9.856E+10 2.198E+07 2.271E+05 100.0 6.521E+11 9.680E+12 2.036E+12 5.819E-10 178.2 1027 1.503E+08 9.830E+10 2.195E+07 2.263E+05 100.0 6.513E+11 9.653E+12 2.031E+12 5.804E-10 178.1 1027 1.500E+08 9.804E+10 2.193E+07 2.255E+05 100.0 6.504E+11 9.625E+12 2.027E+12 5.788E-10 178.0 1027 1.496E+08 9.779E+10 2.190E+07 2.247E+05 100.0 6.494E+11 9.598E+12 2.023E+12 5.773E-10 178.0 1027 1.493E+08 9.753E+10 2.187E+07 2.239E+05 100.0 6.484E+11 9.572E+12 2.019E+12 5.758E-10 177.9 1027 1.489E+08 9.728E+10 2.184E+07 2.232E+05 100.0 6.473E+11 9.545E+12 2.015E+12 5.743E-10 177.8 1027 1.486E+08 9.704E+10 2.182E+07 2.224E+05 100.0 6.462E+11 9.520E+12 2.011E+12 5.729E-10 177.8 1027 1.482E+08 9.680E+10 2.179E+07 2.217E+05 100.0 6.450E+11 9.495E+12 2.007E+12 5.715E-10 177.7 1027 1.479E+08 9.656E+10 2.176E+07 2.211E+05 100.0 6.438E+11 9.470E+12 2.004E+12 5.701E-10 177.7 1027 1.475E+08 9.633E+10 2.173E+07 2.204E+05 100.0 6.426E+11 9.446E+12 2.000E+12 5.687E-10 177.6 1027 1.471E+08 9.611E+10 2.171E+07 2.198E+05 100.0 6.413E+11 9.422E+12 1.997E+12 5.674E-10 177.5 1027 1.468E+08 9.589E+10 2.168E+07 2.192E+05 100.0 6.401E+11 9.400E+12 1.993E+12 5.661E-10 177.5 1027 1.464E+08 9.568E+10 2.166E+07 2.186E+05 100.0 6.388E+11 9.377E+12 1.990E+12 5.649E-10 177.4 1027 1.461E+08 9.547E+10 2.163E+07 2.181E+05 100.0 6.374E+11 9.356E+12 1.987E+12 5.637E-10 177.4 1027 1.457E+08 9.527E+10 2.161E+07 2.176E+05 100.0 6.361E+11 9.335E+12 1.984E+12 5.625E-10 177.3 1027 1.453E+08 9.508E+10 2.158E+07 2.171E+05 100.0 6.347E+11 9.316E+12 1.982E+12 5.614E-10 177.3 1027 1.450E+08 9.490E+10 2.156E+07 2.167E+05 100.0 6.334E+11 9.297E+12 1.979E+12 5.603E-10 177.2 1027 1.447E+08 9.472E+10 2.154E+07 2.163E+05 100.0 6.320E+11 9.278E+12 1.977E+12 5.593E-10 177.2 1027 1.443E+08 9.455E+10 2.152E+07 2.159E+05 100.0 6.307E+11 9.261E+12 1.974E+12 5.584E-10 177.1 1027 1.440E+08 9.439E+10 2.149E+07 2.155E+05 100.0 6.293E+11 9.245E+12 1.972E+12 5.574E-10 177.1 1027 1.437E+08 9.424E+10 2.147E+07 2.152E+05 100.0 6.279E+11 9.229E+12 1.970E+12 5.566E-10 177.1 1027 1.433E+08 9.410E+10 2.146E+07 2.149E+05 100.0 6.266E+11 9.215E+12 1.969E+12 5.558E-10 177.0 1027 1.430E+08 9.397E+10 2.144E+07 2.147E+05 100.0 6.252E+11 9.201E+12 1.967E+12 5.550E-10 177.0 1027 1.427E+08 9.385E+10 2.142E+07 2.145E+05 100.0 6.239E+11 9.188E+12 1.966E+12 5.543E-10 176.9 1027 1.424E+08 9.373E+10 2.141E+07 2.143E+05 100.0 6.225E+11 9.177E+12 1.965E+12 5.536E-10 176.9 1027 1.421E+08 9.363E+10 2.139E+07 2.142E+05 100.0 6.212E+11 9.166E+12 1.964E+12 5.531E-10 176.8 1027 1.419E+08 9.354E+10 2.138E+07 2.140E+05 100.0 6.199E+11 9.156E+12 1.963E+12 5.525E-10 176.8 1027 1.416E+08 9.345E+10 2.136E+07 2.140E+05 100.0 6.186E+11 9.148E+12 1.962E+12 5.521E-10 176.8 1027 1.413E+08 9.338E+10 2.135E+07 2.139E+05 100.0 6.174E+11 9.140E+12 1.962E+12 5.517E-10 176.7 1027 1.411E+08 9.332E+10 2.134E+07 2.139E+05 100.0 6.161E+11 9.134E+12 1.962E+12 5.513E-10 176.7 1027 1.408E+08 9.327E+10 2.133E+07 2.140E+05 100.0 6.149E+11 9.129E+12 1.962E+12 5.510E-10 176.7 1027 1.406E+08 9.322E+10 2.133E+07 2.141E+05 100.0 6.138E+11 9.124E+12 1.962E+12 5.508E-10 176.6 1027 1.404E+08 9.319E+10 2.132E+07 2.142E+05 100.0 6.126E+11 9.121E+12 1.963E+12 5.507E-10 176.6 1027 1.402E+08 9.317E+10 2.132E+07 2.143E+05 100.0 6.115E+11 9.119E+12 1.963E+12 5.506E-10 176.6 1027 1.400E+08 9.317E+10 2.131E+07 2.145E+05 100.0 6.104E+11 9.118E+12 1.964E+12 5.506E-10 176.5 1027 1.398E+08 9.317E+10 2.131E+07 2.147E+05fluids-1.0.22/tests/nrlmsise00/known_data_hours.txt0000644000175000017500000000442714302004506021655 0ustar nileshnilesh100.0 6.107E+11 8.796E+12 1.895E+12 5.317E-10 178.3 1027 1.378E+08 8.957E+10 2.070E+07 1.963E+05 100.0 6.087E+11 8.389E+12 1.810E+12 5.079E-10 180.4 1027 1.341E+08 8.519E+10 1.982E+07 1.893E+05 100.0 6.047E+11 7.973E+12 1.725E+12 4.837E-10 181.9 1027 1.295E+08 8.082E+10 1.889E+07 1.941E+05 100.0 5.990E+11 7.639E+12 1.659E+12 4.642E-10 182.1 1027 1.251E+08 7.738E+10 1.810E+07 2.104E+05 100.0 5.924E+11 7.466E+12 1.626E+12 4.542E-10 181.4 1027 1.219E+08 7.565E+10 1.759E+07 2.374E+05 100.0 5.869E+11 7.502E+12 1.635E+12 4.562E-10 180.7 1027 1.207E+08 7.607E+10 1.739E+07 2.726E+05 100.0 5.840E+11 7.745E+12 1.684E+12 4.702E-10 180.6 1027 1.217E+08 7.861E+10 1.746E+07 3.114E+05 100.0 5.835E+11 8.138E+12 1.759E+12 4.927E-10 181.1 1027 1.241E+08 8.265E+10 1.770E+07 3.481E+05 100.0 5.834E+11 8.559E+12 1.834E+12 5.165E-10 181.4 1027 1.266E+08 8.699E+10 1.793E+07 3.770E+05 100.0 5.805E+11 8.866E+12 1.884E+12 5.336E-10 180.9 1027 1.275E+08 9.022E+10 1.803E+07 3.952E+05 100.0 5.724E+11 8.964E+12 1.892E+12 5.384E-10 179.2 1027 1.260E+08 9.138E+10 1.792E+07 4.034E+05 100.0 5.592E+11 8.853E+12 1.863E+12 5.313E-10 177.0 1027 1.222E+08 9.048E+10 1.762E+07 4.048E+05 100.0 5.433E+11 8.624E+12 1.818E+12 5.177E-10 175.4 1027 1.173E+08 8.843E+10 1.726E+07 4.031E+05 100.0 5.286E+11 8.402E+12 1.781E+12 5.049E-10 175.6 1027 1.131E+08 8.642E+10 1.694E+07 4.011E+05 100.0 5.186E+11 8.276E+12 1.767E+12 4.980E-10 178.2 1027 1.106E+08 8.536E+10 1.677E+07 3.996E+05 100.0 5.153E+11 8.281E+12 1.780E+12 4.988E-10 182.7 1027 1.104E+08 8.556E+10 1.681E+07 3.977E+05 100.0 5.195E+11 8.404E+12 1.815E+12 5.066E-10 187.7 1027 1.126E+08 8.688E+10 1.709E+07 3.936E+05 100.0 5.309E+11 8.611E+12 1.863E+12 5.192E-10 190.9 1027 1.166E+08 8.900E+10 1.763E+07 3.848E+05 100.0 5.480E+11 8.862E+12 1.918E+12 5.344E-10 190.9 1027 1.221E+08 9.152E+10 1.843E+07 3.694E+05 100.0 5.678E+11 9.107E+12 1.969E+12 5.492E-10 187.7 1027 1.280E+08 9.395E+10 1.941E+07 3.456E+05 100.0 5.860E+11 9.290E+12 2.006E+12 5.603E-10 183.0 1027 1.335E+08 9.570E+10 2.038E+07 3.140E+05 100.0 5.993E+11 9.368E+12 2.020E+12 5.651E-10 178.7 1027 1.376E+08 9.629E+10 2.114E+07 2.779E+05 100.0 6.071E+11 9.313E+12 2.007E+12 5.620E-10 176.5 1027 1.397E+08 9.547E+10 2.147E+07 2.430E+05 100.0 6.104E+11 9.118E+12 1.964E+12 5.506E-10 176.5 1027 1.398E+08 9.317E+10 2.131E+07 2.147E+05fluids-1.0.22/tests/nrlmsise00/known_data_latitudes.txt0000644000175000017500000004222414302004506022510 0ustar nileshnilesh100.0 1.651E+11 6.146E+12 1.188E+12 3.571E-10 215.5 1027 5.260E+07 5.944E+10 1.020E+07 2.073E+05 100.0 1.643E+11 6.151E+12 1.192E+12 3.575E-10 215.6 1027 5.258E+07 5.951E+10 1.023E+07 2.065E+05 100.0 1.635E+11 6.158E+12 1.195E+12 3.580E-10 215.7 1027 5.256E+07 5.959E+10 1.026E+07 2.056E+05 100.0 1.627E+11 6.165E+12 1.199E+12 3.585E-10 215.8 1027 5.256E+07 5.967E+10 1.030E+07 2.046E+05 100.0 1.620E+11 6.172E+12 1.202E+12 3.590E-10 215.9 1027 5.258E+07 5.975E+10 1.034E+07 2.036E+05 100.0 1.613E+11 6.180E+12 1.206E+12 3.595E-10 216.1 1027 5.261E+07 5.984E+10 1.038E+07 2.026E+05 100.0 1.607E+11 6.188E+12 1.210E+12 3.601E-10 216.3 1027 5.267E+07 5.993E+10 1.042E+07 2.015E+05 100.0 1.601E+11 6.197E+12 1.214E+12 3.608E-10 216.5 1027 5.274E+07 6.002E+10 1.046E+07 2.003E+05 100.0 1.595E+11 6.208E+12 1.218E+12 3.615E-10 216.7 1027 5.283E+07 6.013E+10 1.051E+07 1.992E+05 100.0 1.591E+11 6.219E+12 1.223E+12 3.622E-10 216.9 1027 5.294E+07 6.024E+10 1.056E+07 1.980E+05 100.0 1.586E+11 6.232E+12 1.227E+12 3.631E-10 217.1 1027 5.308E+07 6.036E+10 1.061E+07 1.967E+05 100.0 1.583E+11 6.246E+12 1.232E+12 3.640E-10 217.3 1027 5.324E+07 6.049E+10 1.067E+07 1.954E+05 100.0 1.580E+11 6.262E+12 1.237E+12 3.650E-10 217.5 1027 5.343E+07 6.065E+10 1.073E+07 1.942E+05 100.0 1.578E+11 6.280E+12 1.243E+12 3.661E-10 217.7 1027 5.365E+07 6.081E+10 1.080E+07 1.929E+05 100.0 1.577E+11 6.300E+12 1.249E+12 3.674E-10 217.9 1027 5.389E+07 6.100E+10 1.086E+07 1.916E+05 100.0 1.576E+11 6.323E+12 1.255E+12 3.688E-10 218.0 1027 5.418E+07 6.122E+10 1.094E+07 1.904E+05 100.0 1.577E+11 6.348E+12 1.262E+12 3.704E-10 218.1 1027 5.449E+07 6.146E+10 1.101E+07 1.891E+05 100.0 1.579E+11 6.377E+12 1.270E+12 3.721E-10 218.1 1027 5.485E+07 6.173E+10 1.110E+07 1.880E+05 100.0 1.582E+11 6.409E+12 1.278E+12 3.741E-10 218.1 1027 5.524E+07 6.203E+10 1.119E+07 1.868E+05 100.0 1.586E+11 6.444E+12 1.287E+12 3.762E-10 218.0 1027 5.567E+07 6.237E+10 1.128E+07 1.858E+05 100.0 1.592E+11 6.484E+12 1.296E+12 3.786E-10 217.9 1027 5.615E+07 6.274E+10 1.139E+07 1.848E+05 100.0 1.599E+11 6.528E+12 1.306E+12 3.813E-10 217.6 1027 5.668E+07 6.316E+10 1.150E+07 1.839E+05 100.0 1.608E+11 6.576E+12 1.317E+12 3.841E-10 217.3 1027 5.726E+07 6.362E+10 1.161E+07 1.831E+05 100.0 1.619E+11 6.629E+12 1.329E+12 3.873E-10 216.9 1027 5.789E+07 6.413E+10 1.174E+07 1.824E+05 100.0 1.631E+11 6.688E+12 1.342E+12 3.908E-10 216.4 1027 5.857E+07 6.469E+10 1.188E+07 1.818E+05 100.0 1.646E+11 6.751E+12 1.356E+12 3.945E-10 215.9 1027 5.931E+07 6.531E+10 1.202E+07 1.814E+05 100.0 1.662E+11 6.820E+12 1.371E+12 3.986E-10 215.2 1027 6.011E+07 6.597E+10 1.217E+07 1.811E+05 100.0 1.681E+11 6.895E+12 1.387E+12 4.031E-10 214.4 1027 6.096E+07 6.670E+10 1.234E+07 1.809E+05 100.0 1.702E+11 6.975E+12 1.404E+12 4.078E-10 213.5 1027 6.188E+07 6.749E+10 1.252E+07 1.810E+05 100.0 1.725E+11 7.062E+12 1.423E+12 4.129E-10 212.5 1027 6.287E+07 6.834E+10 1.270E+07 1.812E+05 100.0 1.751E+11 7.155E+12 1.442E+12 4.184E-10 211.5 1027 6.391E+07 6.925E+10 1.290E+07 1.815E+05 100.0 1.779E+11 7.254E+12 1.463E+12 4.243E-10 210.3 1027 6.503E+07 7.022E+10 1.311E+07 1.821E+05 100.0 1.810E+11 7.359E+12 1.485E+12 4.305E-10 209.0 1027 6.621E+07 7.127E+10 1.334E+07 1.829E+05 100.0 1.844E+11 7.471E+12 1.508E+12 4.370E-10 207.6 1027 6.746E+07 7.237E+10 1.357E+07 1.838E+05 100.0 1.881E+11 7.589E+12 1.532E+12 4.440E-10 206.1 1027 6.877E+07 7.355E+10 1.382E+07 1.850E+05 100.0 1.921E+11 7.713E+12 1.557E+12 4.513E-10 204.6 1027 7.015E+07 7.478E+10 1.408E+07 1.864E+05 100.0 1.964E+11 7.843E+12 1.584E+12 4.590E-10 203.0 1027 7.160E+07 7.609E+10 1.435E+07 1.880E+05 100.0 2.010E+11 7.979E+12 1.612E+12 4.670E-10 201.3 1027 7.312E+07 7.745E+10 1.464E+07 1.898E+05 100.0 2.059E+11 8.121E+12 1.641E+12 4.753E-10 199.5 1027 7.469E+07 7.888E+10 1.494E+07 1.919E+05 100.0 2.112E+11 8.268E+12 1.670E+12 4.840E-10 197.7 1027 7.633E+07 8.036E+10 1.525E+07 1.942E+05 100.0 2.169E+11 8.420E+12 1.701E+12 4.929E-10 195.8 1027 7.803E+07 8.190E+10 1.557E+07 1.967E+05 100.0 2.228E+11 8.577E+12 1.733E+12 5.022E-10 194.0 1027 7.978E+07 8.349E+10 1.590E+07 1.994E+05 100.0 2.292E+11 8.738E+12 1.765E+12 5.116E-10 192.0 1027 8.159E+07 8.513E+10 1.624E+07 2.024E+05 100.0 2.358E+11 8.902E+12 1.798E+12 5.213E-10 190.1 1027 8.344E+07 8.681E+10 1.660E+07 2.056E+05 100.0 2.429E+11 9.070E+12 1.832E+12 5.312E-10 188.1 1027 8.533E+07 8.853E+10 1.696E+07 2.090E+05 100.0 2.503E+11 9.240E+12 1.866E+12 5.412E-10 186.2 1027 8.726E+07 9.027E+10 1.733E+07 2.126E+05 100.0 2.580E+11 9.411E+12 1.900E+12 5.513E-10 184.2 1027 8.922E+07 9.204E+10 1.771E+07 2.164E+05 100.0 2.660E+11 9.583E+12 1.935E+12 5.615E-10 182.3 1027 9.120E+07 9.382E+10 1.809E+07 2.204E+05 100.0 2.744E+11 9.755E+12 1.970E+12 5.717E-10 180.4 1027 9.320E+07 9.561E+10 1.848E+07 2.246E+05 100.0 2.831E+11 9.926E+12 2.004E+12 5.818E-10 178.5 1027 9.520E+07 9.740E+10 1.887E+07 2.290E+05 100.0 2.921E+11 1.010E+13 2.038E+12 5.919E-10 176.6 1027 9.720E+07 9.918E+10 1.926E+07 2.335E+05 100.0 3.014E+11 1.026E+13 2.072E+12 6.018E-10 174.8 1027 9.920E+07 1.009E+11 1.965E+07 2.382E+05 100.0 3.110E+11 1.043E+13 2.105E+12 6.115E-10 173.0 1027 1.012E+08 1.027E+11 2.004E+07 2.430E+05 100.0 3.208E+11 1.058E+13 2.137E+12 6.209E-10 171.3 1027 1.031E+08 1.044E+11 2.043E+07 2.480E+05 100.0 3.308E+11 1.074E+13 2.168E+12 6.301E-10 169.6 1027 1.050E+08 1.060E+11 2.081E+07 2.530E+05 100.0 3.409E+11 1.088E+13 2.198E+12 6.389E-10 168.0 1027 1.069E+08 1.076E+11 2.118E+07 2.580E+05 100.0 3.512E+11 1.102E+13 2.226E+12 6.472E-10 166.4 1027 1.087E+08 1.091E+11 2.155E+07 2.631E+05 100.0 3.616E+11 1.116E+13 2.253E+12 6.551E-10 164.9 1027 1.105E+08 1.105E+11 2.190E+07 2.683E+05 100.0 3.721E+11 1.128E+13 2.278E+12 6.625E-10 163.5 1027 1.121E+08 1.119E+11 2.224E+07 2.733E+05 100.0 3.825E+11 1.139E+13 2.301E+12 6.693E-10 162.2 1027 1.137E+08 1.132E+11 2.256E+07 2.784E+05 100.0 3.930E+11 1.149E+13 2.323E+12 6.755E-10 160.9 1027 1.152E+08 1.143E+11 2.287E+07 2.833E+05 100.0 4.034E+11 1.158E+13 2.342E+12 6.811E-10 159.7 1027 1.166E+08 1.154E+11 2.316E+07 2.882E+05 100.0 4.136E+11 1.166E+13 2.359E+12 6.860E-10 158.5 1027 1.180E+08 1.163E+11 2.342E+07 2.929E+05 100.0 4.237E+11 1.173E+13 2.373E+12 6.901E-10 157.5 1027 1.192E+08 1.171E+11 2.367E+07 2.974E+05 100.0 4.335E+11 1.178E+13 2.386E+12 6.936E-10 156.5 1027 1.202E+08 1.178E+11 2.389E+07 3.017E+05 100.0 4.431E+11 1.182E+13 2.395E+12 6.963E-10 155.6 1027 1.212E+08 1.183E+11 2.409E+07 3.057E+05 100.0 4.523E+11 1.185E+13 2.403E+12 6.982E-10 154.8 1027 1.221E+08 1.187E+11 2.426E+07 3.094E+05 100.0 4.612E+11 1.186E+13 2.408E+12 6.994E-10 154.0 1027 1.228E+08 1.190E+11 2.441E+07 3.129E+05 100.0 4.697E+11 1.186E+13 2.410E+12 6.998E-10 153.4 1027 1.234E+08 1.192E+11 2.453E+07 3.160E+05 100.0 4.778E+11 1.185E+13 2.410E+12 6.995E-10 152.8 1027 1.239E+08 1.192E+11 2.462E+07 3.188E+05 100.0 4.853E+11 1.183E+13 2.407E+12 6.984E-10 152.2 1027 1.243E+08 1.191E+11 2.469E+07 3.211E+05 100.0 4.924E+11 1.179E+13 2.402E+12 6.966E-10 151.8 1027 1.245E+08 1.188E+11 2.473E+07 3.231E+05 100.0 4.990E+11 1.174E+13 2.395E+12 6.941E-10 151.4 1027 1.247E+08 1.184E+11 2.474E+07 3.246E+05 100.0 5.049E+11 1.168E+13 2.386E+12 6.910E-10 151.1 1027 1.247E+08 1.179E+11 2.473E+07 3.258E+05 100.0 5.104E+11 1.161E+13 2.374E+12 6.872E-10 150.9 1027 1.246E+08 1.173E+11 2.470E+07 3.265E+05 100.0 5.152E+11 1.153E+13 2.361E+12 6.829E-10 150.7 1027 1.244E+08 1.166E+11 2.464E+07 3.268E+05 100.0 5.195E+11 1.144E+13 2.345E+12 6.780E-10 150.6 1027 1.241E+08 1.158E+11 2.455E+07 3.266E+05 100.0 5.232E+11 1.135E+13 2.329E+12 6.726E-10 150.6 1027 1.238E+08 1.149E+11 2.445E+07 3.260E+05 100.0 5.264E+11 1.124E+13 2.310E+12 6.668E-10 150.6 1027 1.233E+08 1.139E+11 2.432E+07 3.250E+05 100.0 5.290E+11 1.113E+13 2.290E+12 6.606E-10 150.7 1027 1.228E+08 1.128E+11 2.418E+07 3.237E+05 100.0 5.310E+11 1.101E+13 2.270E+12 6.540E-10 150.9 1027 1.223E+08 1.117E+11 2.402E+07 3.219E+05 100.0 5.326E+11 1.089E+13 2.248E+12 6.471E-10 151.1 1027 1.216E+08 1.105E+11 2.385E+07 3.198E+05 100.0 5.337E+11 1.077E+13 2.225E+12 6.400E-10 151.4 1027 1.209E+08 1.093E+11 2.366E+07 3.173E+05 100.0 5.343E+11 1.064E+13 2.201E+12 6.327E-10 151.7 1027 1.202E+08 1.080E+11 2.346E+07 3.146E+05 100.0 5.345E+11 1.051E+13 2.177E+12 6.252E-10 152.1 1027 1.195E+08 1.067E+11 2.326E+07 3.115E+05 100.0 5.344E+11 1.037E+13 2.153E+12 6.177E-10 152.5 1027 1.187E+08 1.054E+11 2.305E+07 3.083E+05 100.0 5.339E+11 1.024E+13 2.129E+12 6.101E-10 153.0 1027 1.180E+08 1.041E+11 2.283E+07 3.048E+05 100.0 5.332E+11 1.011E+13 2.104E+12 6.025E-10 153.5 1027 1.172E+08 1.027E+11 2.260E+07 3.011E+05 100.0 5.322E+11 9.975E+12 2.080E+12 5.950E-10 154.0 1027 1.164E+08 1.014E+11 2.238E+07 2.973E+05 100.0 5.309E+11 9.845E+12 2.056E+12 5.875E-10 154.6 1027 1.157E+08 1.001E+11 2.216E+07 2.933E+05 100.0 5.296E+11 9.717E+12 2.032E+12 5.802E-10 155.2 1027 1.149E+08 9.875E+10 2.194E+07 2.893E+05 100.0 5.281E+11 9.592E+12 2.009E+12 5.731E-10 155.8 1027 1.142E+08 9.747E+10 2.172E+07 2.852E+05 100.0 5.265E+11 9.471E+12 1.986E+12 5.661E-10 156.5 1027 1.135E+08 9.623E+10 2.150E+07 2.811E+05 100.0 5.249E+11 9.354E+12 1.964E+12 5.594E-10 157.1 1027 1.129E+08 9.502E+10 2.130E+07 2.769E+05 100.0 5.234E+11 9.241E+12 1.943E+12 5.529E-10 157.8 1027 1.123E+08 9.386E+10 2.110E+07 2.728E+05 100.0 5.218E+11 9.133E+12 1.923E+12 5.467E-10 158.5 1027 1.118E+08 9.274E+10 2.091E+07 2.688E+05 100.0 5.204E+11 9.030E+12 1.904E+12 5.408E-10 159.3 1027 1.113E+08 9.167E+10 2.072E+07 2.648E+05 100.0 5.190E+11 8.933E+12 1.886E+12 5.352E-10 160.0 1027 1.109E+08 9.066E+10 2.055E+07 2.609E+05 100.0 5.178E+11 8.842E+12 1.869E+12 5.300E-10 160.7 1027 1.105E+08 8.971E+10 2.039E+07 2.571E+05 100.0 5.168E+11 8.757E+12 1.853E+12 5.251E-10 161.4 1027 1.102E+08 8.882E+10 2.024E+07 2.535E+05 100.0 5.159E+11 8.678E+12 1.839E+12 5.206E-10 162.1 1027 1.100E+08 8.800E+10 2.010E+07 2.499E+05 100.0 5.153E+11 8.605E+12 1.825E+12 5.164E-10 162.9 1027 1.099E+08 8.724E+10 1.998E+07 2.466E+05 100.0 5.150E+11 8.539E+12 1.813E+12 5.126E-10 163.6 1027 1.098E+08 8.655E+10 1.987E+07 2.433E+05 100.0 5.149E+11 8.480E+12 1.802E+12 5.093E-10 164.3 1027 1.098E+08 8.592E+10 1.977E+07 2.403E+05 100.0 5.150E+11 8.427E+12 1.793E+12 5.063E-10 164.9 1027 1.099E+08 8.537E+10 1.969E+07 2.374E+05 100.0 5.155E+11 8.381E+12 1.785E+12 5.037E-10 165.6 1027 1.101E+08 8.488E+10 1.962E+07 2.347E+05 100.0 5.162E+11 8.342E+12 1.778E+12 5.015E-10 166.2 1027 1.103E+08 8.446E+10 1.956E+07 2.322E+05 100.0 5.172E+11 8.309E+12 1.772E+12 4.997E-10 166.8 1027 1.107E+08 8.411E+10 1.952E+07 2.298E+05 100.0 5.186E+11 8.283E+12 1.768E+12 4.983E-10 167.4 1027 1.111E+08 8.384E+10 1.949E+07 2.277E+05 100.0 5.202E+11 8.263E+12 1.765E+12 4.972E-10 168.0 1027 1.116E+08 8.362E+10 1.948E+07 2.257E+05 100.0 5.221E+11 8.249E+12 1.764E+12 4.965E-10 168.6 1027 1.121E+08 8.348E+10 1.948E+07 2.239E+05 100.0 5.244E+11 8.242E+12 1.763E+12 4.962E-10 169.1 1027 1.128E+08 8.340E+10 1.949E+07 2.223E+05 100.0 5.269E+11 8.241E+12 1.764E+12 4.963E-10 169.6 1027 1.135E+08 8.339E+10 1.951E+07 2.208E+05 100.0 5.297E+11 8.245E+12 1.766E+12 4.966E-10 170.0 1027 1.143E+08 8.343E+10 1.954E+07 2.195E+05 100.0 5.327E+11 8.255E+12 1.769E+12 4.974E-10 170.5 1027 1.152E+08 8.354E+10 1.959E+07 2.184E+05 100.0 5.360E+11 8.270E+12 1.773E+12 4.984E-10 170.9 1027 1.161E+08 8.370E+10 1.964E+07 2.174E+05 100.0 5.396E+11 8.290E+12 1.778E+12 4.997E-10 171.3 1027 1.171E+08 8.391E+10 1.971E+07 2.166E+05 100.0 5.433E+11 8.315E+12 1.784E+12 5.013E-10 171.7 1027 1.182E+08 8.418E+10 1.978E+07 2.159E+05 100.0 5.472E+11 8.344E+12 1.791E+12 5.031E-10 172.0 1027 1.193E+08 8.450E+10 1.986E+07 2.153E+05 100.0 5.513E+11 8.377E+12 1.799E+12 5.052E-10 172.4 1027 1.204E+08 8.485E+10 1.995E+07 2.148E+05 100.0 5.555E+11 8.414E+12 1.808E+12 5.075E-10 172.7 1027 1.216E+08 8.525E+10 2.004E+07 2.145E+05 100.0 5.598E+11 8.454E+12 1.817E+12 5.100E-10 173.0 1027 1.229E+08 8.569E+10 2.014E+07 2.142E+05 100.0 5.641E+11 8.497E+12 1.826E+12 5.127E-10 173.2 1027 1.241E+08 8.616E+10 2.024E+07 2.140E+05 100.0 5.685E+11 8.543E+12 1.837E+12 5.155E-10 173.5 1027 1.254E+08 8.666E+10 2.034E+07 2.139E+05 100.0 5.729E+11 8.590E+12 1.847E+12 5.184E-10 173.8 1027 1.267E+08 8.718E+10 2.044E+07 2.138E+05 100.0 5.773E+11 8.640E+12 1.858E+12 5.214E-10 174.0 1027 1.280E+08 8.772E+10 2.055E+07 2.138E+05 100.0 5.815E+11 8.690E+12 1.869E+12 5.245E-10 174.2 1027 1.293E+08 8.828E+10 2.065E+07 2.139E+05 100.0 5.857E+11 8.741E+12 1.881E+12 5.276E-10 174.5 1027 1.306E+08 8.885E+10 2.075E+07 2.140E+05 100.0 5.897E+11 8.792E+12 1.892E+12 5.308E-10 174.7 1027 1.319E+08 8.942E+10 2.084E+07 2.141E+05 100.0 5.935E+11 8.843E+12 1.903E+12 5.339E-10 175.0 1027 1.332E+08 8.999E+10 2.093E+07 2.142E+05 100.0 5.970E+11 8.893E+12 1.914E+12 5.369E-10 175.2 1027 1.344E+08 9.056E+10 2.102E+07 2.143E+05 100.0 6.004E+11 8.942E+12 1.925E+12 5.399E-10 175.4 1027 1.356E+08 9.112E+10 2.109E+07 2.144E+05 100.0 6.034E+11 8.990E+12 1.936E+12 5.428E-10 175.7 1027 1.368E+08 9.166E+10 2.116E+07 2.145E+05 100.0 6.061E+11 9.035E+12 1.946E+12 5.455E-10 176.0 1027 1.378E+08 9.219E+10 2.122E+07 2.146E+05 100.0 6.084E+11 9.078E+12 1.955E+12 5.481E-10 176.2 1027 1.389E+08 9.269E+10 2.127E+07 2.147E+05 100.0 6.104E+11 9.118E+12 1.964E+12 5.506E-10 176.5 1027 1.398E+08 9.317E+10 2.131E+07 2.147E+05 100.0 6.120E+11 9.155E+12 1.973E+12 5.528E-10 176.8 1027 1.407E+08 9.361E+10 2.134E+07 2.147E+05 100.0 6.131E+11 9.189E+12 1.980E+12 5.548E-10 177.1 1027 1.415E+08 9.402E+10 2.135E+07 2.147E+05 100.0 6.138E+11 9.218E+12 1.987E+12 5.566E-10 177.5 1027 1.422E+08 9.438E+10 2.135E+07 2.146E+05 100.0 6.141E+11 9.243E+12 1.993E+12 5.581E-10 177.8 1027 1.429E+08 9.471E+10 2.134E+07 2.145E+05 100.0 6.139E+11 9.264E+12 1.998E+12 5.594E-10 178.2 1027 1.434E+08 9.499E+10 2.131E+07 2.144E+05 100.0 6.132E+11 9.280E+12 2.003E+12 5.603E-10 178.6 1027 1.438E+08 9.522E+10 2.127E+07 2.142E+05 100.0 6.121E+11 9.292E+12 2.006E+12 5.610E-10 179.0 1027 1.442E+08 9.541E+10 2.122E+07 2.139E+05 100.0 6.106E+11 9.298E+12 2.008E+12 5.614E-10 179.4 1027 1.444E+08 9.554E+10 2.115E+07 2.137E+05 100.0 6.086E+11 9.300E+12 2.009E+12 5.615E-10 179.9 1027 1.445E+08 9.562E+10 2.107E+07 2.134E+05 100.0 6.062E+11 9.297E+12 2.010E+12 5.613E-10 180.3 1027 1.446E+08 9.565E+10 2.098E+07 2.131E+05 100.0 6.034E+11 9.289E+12 2.009E+12 5.608E-10 180.8 1027 1.445E+08 9.563E+10 2.088E+07 2.128E+05 100.0 6.002E+11 9.275E+12 2.008E+12 5.601E-10 181.3 1027 1.444E+08 9.556E+10 2.076E+07 2.125E+05 100.0 5.966E+11 9.258E+12 2.005E+12 5.590E-10 181.9 1027 1.441E+08 9.543E+10 2.063E+07 2.121E+05 100.0 5.927E+11 9.235E+12 2.002E+12 5.577E-10 182.4 1027 1.438E+08 9.526E+10 2.050E+07 2.118E+05 100.0 5.885E+11 9.208E+12 1.998E+12 5.561E-10 183.0 1027 1.434E+08 9.504E+10 2.035E+07 2.115E+05 100.0 5.841E+11 9.177E+12 1.993E+12 5.542E-10 183.5 1027 1.429E+08 9.477E+10 2.020E+07 2.112E+05 100.0 5.794E+11 9.142E+12 1.987E+12 5.521E-10 184.1 1027 1.423E+08 9.446E+10 2.003E+07 2.109E+05 100.0 5.745E+11 9.103E+12 1.980E+12 5.498E-10 184.7 1027 1.416E+08 9.411E+10 1.986E+07 2.107E+05 100.0 5.694E+11 9.061E+12 1.973E+12 5.473E-10 185.3 1027 1.409E+08 9.372E+10 1.969E+07 2.105E+05 100.0 5.642E+11 9.016E+12 1.965E+12 5.447E-10 186.0 1027 1.402E+08 9.330E+10 1.951E+07 2.103E+05 100.0 5.589E+11 8.969E+12 1.957E+12 5.418E-10 186.6 1027 1.394E+08 9.285E+10 1.933E+07 2.103E+05 100.0 5.536E+11 8.919E+12 1.948E+12 5.389E-10 187.2 1027 1.385E+08 9.237E+10 1.914E+07 2.103E+05 100.0 5.482E+11 8.867E+12 1.940E+12 5.358E-10 187.8 1027 1.376E+08 9.187E+10 1.896E+07 2.104E+05 100.0 5.429E+11 8.814E+12 1.930E+12 5.327E-10 188.5 1027 1.367E+08 9.135E+10 1.877E+07 2.106E+05 100.0 5.375E+11 8.759E+12 1.921E+12 5.295E-10 189.1 1027 1.358E+08 9.082E+10 1.858E+07 2.109E+05 100.0 5.323E+11 8.704E+12 1.911E+12 5.262E-10 189.7 1027 1.349E+08 9.028E+10 1.840E+07 2.113E+05 100.0 5.272E+11 8.649E+12 1.902E+12 5.230E-10 190.3 1027 1.339E+08 8.973E+10 1.822E+07 2.118E+05 100.0 5.222E+11 8.593E+12 1.892E+12 5.197E-10 190.9 1027 1.330E+08 8.919E+10 1.804E+07 2.124E+05 100.0 5.174E+11 8.538E+12 1.883E+12 5.165E-10 191.4 1027 1.320E+08 8.864E+10 1.786E+07 2.132E+05 100.0 5.127E+11 8.484E+12 1.874E+12 5.134E-10 192.0 1027 1.311E+08 8.810E+10 1.770E+07 2.141E+05 100.0 5.083E+11 8.431E+12 1.865E+12 5.103E-10 192.5 1027 1.302E+08 8.757E+10 1.753E+07 2.151E+05 100.0 5.041E+11 8.380E+12 1.856E+12 5.073E-10 193.0 1027 1.293E+08 8.706E+10 1.737E+07 2.163E+05 100.0 5.002E+11 8.330E+12 1.848E+12 5.044E-10 193.5 1027 1.285E+08 8.656E+10 1.722E+07 2.177E+05 100.0 4.965E+11 8.283E+12 1.841E+12 5.017E-10 194.0 1027 1.276E+08 8.608E+10 1.708E+07 2.192E+05 100.0 4.932E+11 8.238E+12 1.834E+12 4.991E-10 194.4 1027 1.269E+08 8.562E+10 1.694E+07 2.209E+05 100.0 4.901E+11 8.196E+12 1.827E+12 4.967E-10 194.7 1027 1.261E+08 8.520E+10 1.682E+07 2.227E+05 100.0 4.873E+11 8.156E+12 1.821E+12 4.944E-10 195.1 1027 1.255E+08 8.480E+10 1.670E+07 2.247E+05 100.0 4.849E+11 8.120E+12 1.816E+12 4.924E-10 195.4 1027 1.248E+08 8.443E+10 1.659E+07 2.268E+05 100.0 4.828E+11 8.087E+12 1.811E+12 4.905E-10 195.6 1027 1.243E+08 8.409E+10 1.649E+07 2.292E+05 100.0 4.810E+11 8.057E+12 1.808E+12 4.889E-10 195.9 1027 1.237E+08 8.379E+10 1.639E+07 2.317E+05 100.0 4.796E+11 8.032E+12 1.804E+12 4.875E-10 196.0 1027 1.233E+08 8.353E+10 1.631E+07 2.343E+05 100.0 4.785E+11 8.010E+12 1.802E+12 4.863E-10 196.1 1027 1.229E+08 8.330E+10 1.624E+07 2.372E+05 100.0 4.778E+11 7.991E+12 1.801E+12 4.853E-10 196.2 1027 1.225E+08 8.311E+10 1.617E+07 2.401E+05 100.0 4.775E+11 7.977E+12 1.800E+12 4.846E-10 196.3 1027 1.222E+08 8.297E+10 1.612E+07 2.433E+05 100.0 4.774E+11 7.967E+12 1.800E+12 4.841E-10 196.2 1027 1.220E+08 8.286E+10 1.607E+07 2.466E+05fluids-1.0.22/tests/nrlmsise00/known_data_longitudes.txt0000644000175000017500000010431014302004506022662 0ustar nileshnilesh100.0 5.632E+11 9.289E+12 2.039E+12 5.614E-10 183.0 1027 1.326E+08 9.506E+10 2.027E+07 3.020E+05 100.0 5.641E+11 9.298E+12 2.040E+12 5.618E-10 182.6 1027 1.329E+08 9.516E+10 2.034E+07 3.001E+05 100.0 5.650E+11 9.306E+12 2.041E+12 5.623E-10 182.3 1027 1.332E+08 9.525E+10 2.040E+07 2.981E+05 100.0 5.659E+11 9.314E+12 2.042E+12 5.627E-10 182.0 1027 1.335E+08 9.534E+10 2.046E+07 2.961E+05 100.0 5.668E+11 9.321E+12 2.042E+12 5.631E-10 181.7 1027 1.338E+08 9.543E+10 2.052E+07 2.940E+05 100.0 5.677E+11 9.328E+12 2.043E+12 5.635E-10 181.4 1027 1.341E+08 9.550E+10 2.058E+07 2.920E+05 100.0 5.687E+11 9.335E+12 2.043E+12 5.639E-10 181.1 1027 1.344E+08 9.557E+10 2.064E+07 2.899E+05 100.0 5.696E+11 9.340E+12 2.044E+12 5.642E-10 180.8 1027 1.347E+08 9.564E+10 2.070E+07 2.879E+05 100.0 5.706E+11 9.346E+12 2.044E+12 5.645E-10 180.5 1027 1.349E+08 9.570E+10 2.076E+07 2.858E+05 100.0 5.715E+11 9.350E+12 2.044E+12 5.647E-10 180.2 1027 1.352E+08 9.575E+10 2.081E+07 2.837E+05 100.0 5.725E+11 9.355E+12 2.044E+12 5.649E-10 180.0 1027 1.354E+08 9.580E+10 2.086E+07 2.816E+05 100.0 5.735E+11 9.358E+12 2.043E+12 5.651E-10 179.7 1027 1.357E+08 9.584E+10 2.091E+07 2.795E+05 100.0 5.744E+11 9.361E+12 2.043E+12 5.653E-10 179.4 1027 1.359E+08 9.587E+10 2.096E+07 2.774E+05 100.0 5.754E+11 9.364E+12 2.043E+12 5.654E-10 179.2 1027 1.362E+08 9.590E+10 2.101E+07 2.752E+05 100.0 5.764E+11 9.365E+12 2.042E+12 5.655E-10 179.0 1027 1.364E+08 9.592E+10 2.105E+07 2.731E+05 100.0 5.774E+11 9.367E+12 2.041E+12 5.655E-10 178.7 1027 1.366E+08 9.594E+10 2.110E+07 2.710E+05 100.0 5.785E+11 9.367E+12 2.041E+12 5.655E-10 178.5 1027 1.369E+08 9.595E+10 2.114E+07 2.689E+05 100.0 5.795E+11 9.367E+12 2.040E+12 5.655E-10 178.3 1027 1.371E+08 9.595E+10 2.118E+07 2.667E+05 100.0 5.805E+11 9.367E+12 2.039E+12 5.655E-10 178.1 1027 1.373E+08 9.594E+10 2.121E+07 2.646E+05 100.0 5.815E+11 9.366E+12 2.038E+12 5.654E-10 177.9 1027 1.375E+08 9.593E+10 2.125E+07 2.625E+05 100.0 5.826E+11 9.364E+12 2.036E+12 5.652E-10 177.7 1027 1.377E+08 9.591E+10 2.128E+07 2.604E+05 100.0 5.836E+11 9.362E+12 2.035E+12 5.651E-10 177.5 1027 1.379E+08 9.588E+10 2.131E+07 2.583E+05 100.0 5.847E+11 9.359E+12 2.033E+12 5.649E-10 177.4 1027 1.380E+08 9.585E+10 2.134E+07 2.562E+05 100.0 5.858E+11 9.355E+12 2.032E+12 5.647E-10 177.2 1027 1.382E+08 9.581E+10 2.136E+07 2.542E+05 100.0 5.868E+11 9.351E+12 2.030E+12 5.644E-10 177.1 1027 1.384E+08 9.576E+10 2.138E+07 2.521E+05 100.0 5.879E+11 9.346E+12 2.028E+12 5.641E-10 177.0 1027 1.385E+08 9.571E+10 2.141E+07 2.501E+05 100.0 5.890E+11 9.341E+12 2.026E+12 5.638E-10 176.8 1027 1.387E+08 9.565E+10 2.142E+07 2.480E+05 100.0 5.901E+11 9.335E+12 2.024E+12 5.634E-10 176.7 1027 1.388E+08 9.558E+10 2.144E+07 2.460E+05 100.0 5.912E+11 9.328E+12 2.021E+12 5.630E-10 176.6 1027 1.389E+08 9.551E+10 2.145E+07 2.440E+05 100.0 5.923E+11 9.321E+12 2.019E+12 5.625E-10 176.5 1027 1.390E+08 9.542E+10 2.146E+07 2.421E+05 100.0 5.934E+11 9.313E+12 2.017E+12 5.621E-10 176.5 1027 1.392E+08 9.533E+10 2.147E+07 2.401E+05 100.0 5.945E+11 9.304E+12 2.014E+12 5.615E-10 176.4 1027 1.393E+08 9.524E+10 2.148E+07 2.382E+05 100.0 5.956E+11 9.295E+12 2.011E+12 5.610E-10 176.3 1027 1.394E+08 9.514E+10 2.148E+07 2.363E+05 100.0 5.968E+11 9.285E+12 2.008E+12 5.604E-10 176.3 1027 1.395E+08 9.502E+10 2.148E+07 2.345E+05 100.0 5.979E+11 9.274E+12 2.005E+12 5.598E-10 176.3 1027 1.395E+08 9.491E+10 2.148E+07 2.327E+05 100.0 5.990E+11 9.263E+12 2.002E+12 5.591E-10 176.2 1027 1.396E+08 9.478E+10 2.148E+07 2.309E+05 100.0 6.002E+11 9.252E+12 1.999E+12 5.584E-10 176.2 1027 1.397E+08 9.465E+10 2.147E+07 2.291E+05 100.0 6.013E+11 9.239E+12 1.995E+12 5.577E-10 176.2 1027 1.397E+08 9.451E+10 2.146E+07 2.273E+05 100.0 6.024E+11 9.226E+12 1.992E+12 5.569E-10 176.2 1027 1.398E+08 9.437E+10 2.145E+07 2.256E+05 100.0 6.036E+11 9.213E+12 1.988E+12 5.561E-10 176.2 1027 1.398E+08 9.422E+10 2.144E+07 2.240E+05 100.0 6.047E+11 9.198E+12 1.985E+12 5.553E-10 176.3 1027 1.398E+08 9.406E+10 2.142E+07 2.223E+05 100.0 6.058E+11 9.184E+12 1.981E+12 5.544E-10 176.3 1027 1.398E+08 9.389E+10 2.141E+07 2.207E+05 100.0 6.070E+11 9.168E+12 1.977E+12 5.535E-10 176.3 1027 1.399E+08 9.372E+10 2.138E+07 2.192E+05 100.0 6.081E+11 9.152E+12 1.973E+12 5.525E-10 176.4 1027 1.399E+08 9.354E+10 2.136E+07 2.177E+05 100.0 6.093E+11 9.136E+12 1.969E+12 5.516E-10 176.5 1027 1.398E+08 9.336E+10 2.134E+07 2.162E+05 100.0 6.104E+11 9.118E+12 1.964E+12 5.506E-10 176.5 1027 1.398E+08 9.317E+10 2.131E+07 2.147E+05 100.0 6.115E+11 9.101E+12 1.960E+12 5.495E-10 176.6 1027 1.398E+08 9.297E+10 2.128E+07 2.133E+05 100.0 6.126E+11 9.082E+12 1.955E+12 5.484E-10 176.7 1027 1.398E+08 9.277E+10 2.125E+07 2.120E+05 100.0 6.138E+11 9.063E+12 1.951E+12 5.473E-10 176.8 1027 1.397E+08 9.256E+10 2.121E+07 2.106E+05 100.0 6.149E+11 9.044E+12 1.946E+12 5.462E-10 176.9 1027 1.397E+08 9.234E+10 2.118E+07 2.094E+05 100.0 6.160E+11 9.024E+12 1.941E+12 5.450E-10 177.0 1027 1.396E+08 9.212E+10 2.114E+07 2.081E+05 100.0 6.171E+11 9.003E+12 1.936E+12 5.438E-10 177.1 1027 1.395E+08 9.189E+10 2.110E+07 2.069E+05 100.0 6.182E+11 8.982E+12 1.931E+12 5.426E-10 177.2 1027 1.394E+08 9.166E+10 2.106E+07 2.058E+05 100.0 6.193E+11 8.961E+12 1.926E+12 5.413E-10 177.3 1027 1.394E+08 9.142E+10 2.102E+07 2.047E+05 100.0 6.203E+11 8.939E+12 1.921E+12 5.401E-10 177.4 1027 1.393E+08 9.118E+10 2.097E+07 2.036E+05 100.0 6.214E+11 8.916E+12 1.916E+12 5.387E-10 177.6 1027 1.391E+08 9.093E+10 2.092E+07 2.026E+05 100.0 6.224E+11 8.893E+12 1.911E+12 5.374E-10 177.7 1027 1.390E+08 9.068E+10 2.087E+07 2.017E+05 100.0 6.235E+11 8.870E+12 1.905E+12 5.360E-10 177.8 1027 1.389E+08 9.042E+10 2.082E+07 2.008E+05 100.0 6.245E+11 8.846E+12 1.900E+12 5.346E-10 178.0 1027 1.388E+08 9.016E+10 2.077E+07 1.999E+05 100.0 6.255E+11 8.821E+12 1.894E+12 5.332E-10 178.1 1027 1.386E+08 8.989E+10 2.072E+07 1.991E+05 100.0 6.265E+11 8.796E+12 1.889E+12 5.318E-10 178.3 1027 1.385E+08 8.962E+10 2.066E+07 1.983E+05 100.0 6.275E+11 8.771E+12 1.883E+12 5.303E-10 178.4 1027 1.383E+08 8.935E+10 2.061E+07 1.976E+05 100.0 6.284E+11 8.746E+12 1.877E+12 5.288E-10 178.6 1027 1.381E+08 8.907E+10 2.055E+07 1.969E+05 100.0 6.293E+11 8.720E+12 1.872E+12 5.273E-10 178.7 1027 1.380E+08 8.879E+10 2.049E+07 1.963E+05 100.0 6.302E+11 8.694E+12 1.866E+12 5.258E-10 178.9 1027 1.378E+08 8.850E+10 2.043E+07 1.957E+05 100.0 6.311E+11 8.667E+12 1.860E+12 5.243E-10 179.0 1027 1.376E+08 8.822E+10 2.037E+07 1.951E+05 100.0 6.320E+11 8.640E+12 1.854E+12 5.227E-10 179.2 1027 1.374E+08 8.793E+10 2.031E+07 1.947E+05 100.0 6.328E+11 8.613E+12 1.848E+12 5.212E-10 179.3 1027 1.372E+08 8.763E+10 2.024E+07 1.942E+05 100.0 6.336E+11 8.586E+12 1.842E+12 5.196E-10 179.5 1027 1.370E+08 8.734E+10 2.018E+07 1.939E+05 100.0 6.344E+11 8.559E+12 1.836E+12 5.180E-10 179.6 1027 1.367E+08 8.704E+10 2.011E+07 1.935E+05 100.0 6.352E+11 8.531E+12 1.830E+12 5.164E-10 179.8 1027 1.365E+08 8.674E+10 2.005E+07 1.932E+05 100.0 6.359E+11 8.503E+12 1.824E+12 5.148E-10 179.9 1027 1.363E+08 8.644E+10 1.998E+07 1.930E+05 100.0 6.366E+11 8.475E+12 1.818E+12 5.131E-10 180.0 1027 1.360E+08 8.614E+10 1.991E+07 1.928E+05 100.0 6.373E+11 8.447E+12 1.812E+12 5.115E-10 180.2 1027 1.358E+08 8.584E+10 1.985E+07 1.927E+05 100.0 6.379E+11 8.418E+12 1.806E+12 5.099E-10 180.3 1027 1.355E+08 8.554E+10 1.978E+07 1.926E+05 100.0 6.385E+11 8.390E+12 1.800E+12 5.082E-10 180.4 1027 1.353E+08 8.523E+10 1.971E+07 1.926E+05 100.0 6.391E+11 8.362E+12 1.794E+12 5.066E-10 180.6 1027 1.350E+08 8.493E+10 1.964E+07 1.926E+05 100.0 6.396E+11 8.333E+12 1.788E+12 5.049E-10 180.7 1027 1.347E+08 8.463E+10 1.957E+07 1.927E+05 100.0 6.401E+11 8.305E+12 1.782E+12 5.033E-10 180.8 1027 1.344E+08 8.433E+10 1.950E+07 1.928E+05 100.0 6.406E+11 8.277E+12 1.776E+12 5.017E-10 180.9 1027 1.342E+08 8.403E+10 1.944E+07 1.930E+05 100.0 6.410E+11 8.248E+12 1.770E+12 5.000E-10 181.1 1027 1.339E+08 8.373E+10 1.937E+07 1.932E+05 100.0 6.414E+11 8.220E+12 1.765E+12 4.984E-10 181.2 1027 1.336E+08 8.343E+10 1.930E+07 1.935E+05 100.0 6.418E+11 8.192E+12 1.759E+12 4.968E-10 181.3 1027 1.333E+08 8.313E+10 1.923E+07 1.938E+05 100.0 6.421E+11 8.164E+12 1.753E+12 4.951E-10 181.4 1027 1.330E+08 8.283E+10 1.916E+07 1.942E+05 100.0 6.424E+11 8.136E+12 1.747E+12 4.935E-10 181.5 1027 1.327E+08 8.254E+10 1.909E+07 1.946E+05 100.0 6.426E+11 8.109E+12 1.742E+12 4.919E-10 181.5 1027 1.324E+08 8.225E+10 1.902E+07 1.951E+05 100.0 6.428E+11 8.082E+12 1.736E+12 4.904E-10 181.6 1027 1.321E+08 8.196E+10 1.895E+07 1.956E+05 100.0 6.430E+11 8.054E+12 1.731E+12 4.888E-10 181.7 1027 1.318E+08 8.168E+10 1.889E+07 1.962E+05 100.0 6.431E+11 8.028E+12 1.725E+12 4.873E-10 181.8 1027 1.315E+08 8.140E+10 1.882E+07 1.968E+05 100.0 6.432E+11 8.001E+12 1.720E+12 4.857E-10 181.8 1027 1.311E+08 8.112E+10 1.875E+07 1.975E+05 100.0 6.432E+11 7.975E+12 1.715E+12 4.842E-10 181.9 1027 1.308E+08 8.085E+10 1.869E+07 1.982E+05 100.0 6.432E+11 7.949E+12 1.710E+12 4.827E-10 181.9 1027 1.305E+08 8.058E+10 1.862E+07 1.990E+05 100.0 6.431E+11 7.924E+12 1.704E+12 4.813E-10 182.0 1027 1.302E+08 8.032E+10 1.856E+07 1.998E+05 100.0 6.431E+11 7.899E+12 1.700E+12 4.798E-10 182.0 1027 1.299E+08 8.006E+10 1.849E+07 2.007E+05 100.0 6.429E+11 7.875E+12 1.695E+12 4.784E-10 182.1 1027 1.296E+08 7.981E+10 1.843E+07 2.016E+05 100.0 6.428E+11 7.851E+12 1.690E+12 4.770E-10 182.1 1027 1.293E+08 7.956E+10 1.837E+07 2.026E+05 100.0 6.426E+11 7.827E+12 1.685E+12 4.757E-10 182.1 1027 1.290E+08 7.932E+10 1.831E+07 2.036E+05 100.0 6.423E+11 7.804E+12 1.681E+12 4.743E-10 182.1 1027 1.286E+08 7.908E+10 1.824E+07 2.047E+05 100.0 6.420E+11 7.782E+12 1.677E+12 4.730E-10 182.1 1027 1.283E+08 7.885E+10 1.819E+07 2.058E+05 100.0 6.417E+11 7.760E+12 1.672E+12 4.718E-10 182.1 1027 1.280E+08 7.862E+10 1.813E+07 2.070E+05 100.0 6.413E+11 7.738E+12 1.668E+12 4.705E-10 182.1 1027 1.277E+08 7.841E+10 1.807E+07 2.082E+05 100.0 6.409E+11 7.718E+12 1.664E+12 4.694E-10 182.1 1027 1.274E+08 7.820E+10 1.801E+07 2.095E+05 100.0 6.405E+11 7.698E+12 1.661E+12 4.682E-10 182.1 1027 1.271E+08 7.799E+10 1.796E+07 2.108E+05 100.0 6.400E+11 7.678E+12 1.657E+12 4.671E-10 182.1 1027 1.268E+08 7.780E+10 1.790E+07 2.122E+05 100.0 6.395E+11 7.660E+12 1.654E+12 4.660E-10 182.1 1027 1.265E+08 7.761E+10 1.785E+07 2.136E+05 100.0 6.389E+11 7.642E+12 1.650E+12 4.650E-10 182.1 1027 1.263E+08 7.743E+10 1.780E+07 2.150E+05 100.0 6.384E+11 7.625E+12 1.647E+12 4.640E-10 182.0 1027 1.260E+08 7.725E+10 1.775E+07 2.165E+05 100.0 6.377E+11 7.608E+12 1.644E+12 4.630E-10 182.0 1027 1.257E+08 7.709E+10 1.770E+07 2.181E+05 100.0 6.371E+11 7.592E+12 1.641E+12 4.621E-10 182.0 1027 1.254E+08 7.693E+10 1.765E+07 2.197E+05 100.0 6.364E+11 7.577E+12 1.639E+12 4.612E-10 181.9 1027 1.252E+08 7.678E+10 1.760E+07 2.213E+05 100.0 6.357E+11 7.563E+12 1.636E+12 4.604E-10 181.9 1027 1.249E+08 7.664E+10 1.755E+07 2.230E+05 100.0 6.350E+11 7.550E+12 1.634E+12 4.597E-10 181.9 1027 1.246E+08 7.651E+10 1.751E+07 2.247E+05 100.0 6.342E+11 7.537E+12 1.632E+12 4.589E-10 181.8 1027 1.244E+08 7.639E+10 1.747E+07 2.264E+05 100.0 6.334E+11 7.526E+12 1.630E+12 4.583E-10 181.8 1027 1.242E+08 7.628E+10 1.742E+07 2.282E+05 100.0 6.326E+11 7.515E+12 1.628E+12 4.576E-10 181.7 1027 1.239E+08 7.617E+10 1.738E+07 2.301E+05 100.0 6.317E+11 7.505E+12 1.627E+12 4.571E-10 181.7 1027 1.237E+08 7.608E+10 1.734E+07 2.319E+05 100.0 6.309E+11 7.496E+12 1.625E+12 4.566E-10 181.6 1027 1.235E+08 7.599E+10 1.731E+07 2.338E+05 100.0 6.300E+11 7.488E+12 1.624E+12 4.561E-10 181.6 1027 1.233E+08 7.592E+10 1.727E+07 2.358E+05 100.0 6.291E+11 7.481E+12 1.623E+12 4.557E-10 181.5 1027 1.231E+08 7.585E+10 1.723E+07 2.378E+05 100.0 6.282E+11 7.475E+12 1.622E+12 4.553E-10 181.4 1027 1.229E+08 7.579E+10 1.720E+07 2.398E+05 100.0 6.272E+11 7.469E+12 1.622E+12 4.550E-10 181.4 1027 1.227E+08 7.575E+10 1.717E+07 2.419E+05 100.0 6.263E+11 7.465E+12 1.622E+12 4.548E-10 181.3 1027 1.225E+08 7.571E+10 1.714E+07 2.439E+05 100.0 6.253E+11 7.461E+12 1.621E+12 4.546E-10 181.3 1027 1.223E+08 7.568E+10 1.711E+07 2.461E+05 100.0 6.243E+11 7.459E+12 1.621E+12 4.544E-10 181.2 1027 1.222E+08 7.567E+10 1.708E+07 2.482E+05 100.0 6.233E+11 7.457E+12 1.622E+12 4.543E-10 181.2 1027 1.220E+08 7.566E+10 1.705E+07 2.504E+05 100.0 6.224E+11 7.457E+12 1.622E+12 4.543E-10 181.1 1027 1.219E+08 7.567E+10 1.703E+07 2.526E+05 100.0 6.213E+11 7.457E+12 1.623E+12 4.543E-10 181.1 1027 1.218E+08 7.568E+10 1.700E+07 2.548E+05 100.0 6.203E+11 7.459E+12 1.624E+12 4.544E-10 181.0 1027 1.216E+08 7.570E+10 1.698E+07 2.571E+05 100.0 6.193E+11 7.461E+12 1.625E+12 4.546E-10 181.0 1027 1.215E+08 7.574E+10 1.696E+07 2.594E+05 100.0 6.183E+11 7.464E+12 1.626E+12 4.548E-10 180.9 1027 1.214E+08 7.578E+10 1.694E+07 2.617E+05 100.0 6.173E+11 7.469E+12 1.627E+12 4.550E-10 180.9 1027 1.213E+08 7.584E+10 1.692E+07 2.640E+05 100.0 6.163E+11 7.474E+12 1.629E+12 4.553E-10 180.8 1027 1.212E+08 7.590E+10 1.690E+07 2.663E+05 100.0 6.153E+11 7.480E+12 1.631E+12 4.557E-10 180.8 1027 1.212E+08 7.598E+10 1.689E+07 2.687E+05 100.0 6.143E+11 7.488E+12 1.633E+12 4.561E-10 180.7 1027 1.211E+08 7.606E+10 1.687E+07 2.711E+05 100.0 6.133E+11 7.496E+12 1.635E+12 4.566E-10 180.7 1027 1.211E+08 7.616E+10 1.686E+07 2.735E+05 100.0 6.123E+11 7.505E+12 1.638E+12 4.571E-10 180.7 1027 1.210E+08 7.626E+10 1.685E+07 2.759E+05 100.0 6.113E+11 7.515E+12 1.640E+12 4.577E-10 180.6 1027 1.210E+08 7.637E+10 1.684E+07 2.783E+05 100.0 6.103E+11 7.526E+12 1.643E+12 4.584E-10 180.6 1027 1.210E+08 7.650E+10 1.683E+07 2.807E+05 100.0 6.093E+11 7.538E+12 1.646E+12 4.591E-10 180.6 1027 1.209E+08 7.663E+10 1.682E+07 2.832E+05 100.0 6.084E+11 7.551E+12 1.649E+12 4.598E-10 180.6 1027 1.209E+08 7.678E+10 1.681E+07 2.856E+05 100.0 6.074E+11 7.565E+12 1.653E+12 4.606E-10 180.6 1027 1.209E+08 7.693E+10 1.681E+07 2.880E+05 100.0 6.065E+11 7.579E+12 1.656E+12 4.615E-10 180.5 1027 1.210E+08 7.709E+10 1.680E+07 2.905E+05 100.0 6.056E+11 7.595E+12 1.660E+12 4.624E-10 180.5 1027 1.210E+08 7.726E+10 1.680E+07 2.929E+05 100.0 6.047E+11 7.611E+12 1.664E+12 4.634E-10 180.5 1027 1.210E+08 7.744E+10 1.679E+07 2.954E+05 100.0 6.038E+11 7.629E+12 1.668E+12 4.644E-10 180.5 1027 1.211E+08 7.763E+10 1.679E+07 2.978E+05 100.0 6.029E+11 7.647E+12 1.672E+12 4.654E-10 180.5 1027 1.211E+08 7.783E+10 1.679E+07 3.002E+05 100.0 6.021E+11 7.666E+12 1.677E+12 4.665E-10 180.5 1027 1.212E+08 7.803E+10 1.679E+07 3.027E+05 100.0 6.013E+11 7.685E+12 1.681E+12 4.677E-10 180.5 1027 1.212E+08 7.824E+10 1.679E+07 3.051E+05 100.0 6.005E+11 7.706E+12 1.686E+12 4.689E-10 180.5 1027 1.213E+08 7.846E+10 1.679E+07 3.075E+05 100.0 5.997E+11 7.727E+12 1.691E+12 4.701E-10 180.6 1027 1.214E+08 7.869E+10 1.680E+07 3.099E+05 100.0 5.989E+11 7.749E+12 1.696E+12 4.714E-10 180.6 1027 1.215E+08 7.893E+10 1.680E+07 3.123E+05 100.0 5.982E+11 7.772E+12 1.701E+12 4.727E-10 180.6 1027 1.216E+08 7.917E+10 1.680E+07 3.146E+05 100.0 5.975E+11 7.795E+12 1.706E+12 4.741E-10 180.6 1027 1.217E+08 7.942E+10 1.681E+07 3.170E+05 100.0 5.968E+11 7.819E+12 1.711E+12 4.754E-10 180.6 1027 1.218E+08 7.967E+10 1.682E+07 3.193E+05 100.0 5.961E+11 7.843E+12 1.717E+12 4.769E-10 180.7 1027 1.220E+08 7.993E+10 1.682E+07 3.216E+05 100.0 5.954E+11 7.868E+12 1.722E+12 4.783E-10 180.7 1027 1.221E+08 8.020E+10 1.683E+07 3.239E+05 100.0 5.948E+11 7.894E+12 1.728E+12 4.798E-10 180.7 1027 1.222E+08 8.047E+10 1.684E+07 3.262E+05 100.0 5.942E+11 7.920E+12 1.733E+12 4.813E-10 180.8 1027 1.224E+08 8.075E+10 1.684E+07 3.284E+05 100.0 5.937E+11 7.946E+12 1.739E+12 4.829E-10 180.8 1027 1.225E+08 8.103E+10 1.685E+07 3.306E+05 100.0 5.931E+11 7.973E+12 1.745E+12 4.844E-10 180.8 1027 1.227E+08 8.132E+10 1.686E+07 3.328E+05 100.0 5.926E+11 8.000E+12 1.751E+12 4.860E-10 180.9 1027 1.228E+08 8.161E+10 1.687E+07 3.349E+05 100.0 5.921E+11 8.028E+12 1.757E+12 4.876E-10 180.9 1027 1.230E+08 8.190E+10 1.688E+07 3.370E+05 100.0 5.916E+11 8.056E+12 1.763E+12 4.893E-10 180.9 1027 1.231E+08 8.220E+10 1.689E+07 3.391E+05 100.0 5.911E+11 8.084E+12 1.769E+12 4.909E-10 181.0 1027 1.233E+08 8.250E+10 1.690E+07 3.411E+05 100.0 5.907E+11 8.113E+12 1.775E+12 4.926E-10 181.0 1027 1.235E+08 8.280E+10 1.691E+07 3.431E+05 100.0 5.903E+11 8.141E+12 1.781E+12 4.942E-10 181.1 1027 1.236E+08 8.310E+10 1.692E+07 3.450E+05 100.0 5.899E+11 8.170E+12 1.787E+12 4.959E-10 181.1 1027 1.238E+08 8.340E+10 1.693E+07 3.469E+05 100.0 5.895E+11 8.199E+12 1.793E+12 4.976E-10 181.1 1027 1.240E+08 8.371E+10 1.694E+07 3.488E+05 100.0 5.892E+11 8.228E+12 1.800E+12 4.993E-10 181.2 1027 1.242E+08 8.401E+10 1.695E+07 3.506E+05 100.0 5.889E+11 8.257E+12 1.806E+12 5.009E-10 181.2 1027 1.243E+08 8.432E+10 1.696E+07 3.524E+05 100.0 5.886E+11 8.286E+12 1.812E+12 5.026E-10 181.2 1027 1.245E+08 8.462E+10 1.697E+07 3.541E+05 100.0 5.883E+11 8.314E+12 1.818E+12 5.043E-10 181.3 1027 1.247E+08 8.492E+10 1.698E+07 3.558E+05 100.0 5.881E+11 8.343E+12 1.824E+12 5.059E-10 181.3 1027 1.248E+08 8.522E+10 1.699E+07 3.575E+05 100.0 5.878E+11 8.371E+12 1.830E+12 5.076E-10 181.3 1027 1.250E+08 8.552E+10 1.700E+07 3.591E+05 100.0 5.876E+11 8.400E+12 1.836E+12 5.092E-10 181.4 1027 1.252E+08 8.582E+10 1.701E+07 3.606E+05 100.0 5.874E+11 8.428E+12 1.841E+12 5.109E-10 181.4 1027 1.253E+08 8.611E+10 1.702E+07 3.621E+05 100.0 5.872E+11 8.455E+12 1.847E+12 5.125E-10 181.4 1027 1.255E+08 8.641E+10 1.703E+07 3.636E+05 100.0 5.870E+11 8.483E+12 1.853E+12 5.141E-10 181.4 1027 1.257E+08 8.669E+10 1.703E+07 3.650E+05 100.0 5.869E+11 8.510E+12 1.858E+12 5.156E-10 181.4 1027 1.258E+08 8.698E+10 1.704E+07 3.663E+05 100.0 5.867E+11 8.536E+12 1.864E+12 5.172E-10 181.4 1027 1.260E+08 8.725E+10 1.705E+07 3.676E+05 100.0 5.866E+11 8.562E+12 1.869E+12 5.187E-10 181.4 1027 1.261E+08 8.753E+10 1.706E+07 3.688E+05 100.0 5.865E+11 8.588E+12 1.874E+12 5.201E-10 181.4 1027 1.263E+08 8.779E+10 1.706E+07 3.700E+05 100.0 5.864E+11 8.613E+12 1.880E+12 5.216E-10 181.4 1027 1.264E+08 8.805E+10 1.707E+07 3.712E+05 100.0 5.863E+11 8.637E+12 1.884E+12 5.230E-10 181.4 1027 1.265E+08 8.831E+10 1.707E+07 3.723E+05 100.0 5.862E+11 8.661E+12 1.889E+12 5.244E-10 181.4 1027 1.266E+08 8.856E+10 1.708E+07 3.733E+05 100.0 5.862E+11 8.684E+12 1.894E+12 5.257E-10 181.4 1027 1.268E+08 8.880E+10 1.708E+07 3.743E+05 100.0 5.861E+11 8.706E+12 1.898E+12 5.270E-10 181.4 1027 1.269E+08 8.903E+10 1.709E+07 3.752E+05 100.0 5.861E+11 8.728E+12 1.903E+12 5.282E-10 181.4 1027 1.270E+08 8.926E+10 1.709E+07 3.761E+05 100.0 5.860E+11 8.749E+12 1.907E+12 5.294E-10 181.3 1027 1.270E+08 8.947E+10 1.709E+07 3.769E+05 100.0 5.860E+11 8.769E+12 1.911E+12 5.306E-10 181.3 1027 1.271E+08 8.968E+10 1.709E+07 3.777E+05 100.0 5.859E+11 8.788E+12 1.915E+12 5.317E-10 181.2 1027 1.272E+08 8.988E+10 1.709E+07 3.785E+05 100.0 5.859E+11 8.806E+12 1.919E+12 5.328E-10 181.2 1027 1.273E+08 9.007E+10 1.709E+07 3.792E+05 100.0 5.859E+11 8.823E+12 1.922E+12 5.338E-10 181.1 1027 1.273E+08 9.026E+10 1.709E+07 3.798E+05 100.0 5.859E+11 8.840E+12 1.925E+12 5.347E-10 181.1 1027 1.274E+08 9.043E+10 1.709E+07 3.804E+05 100.0 5.858E+11 8.855E+12 1.928E+12 5.356E-10 181.0 1027 1.274E+08 9.059E+10 1.709E+07 3.809E+05 100.0 5.858E+11 8.870E+12 1.931E+12 5.365E-10 180.9 1027 1.274E+08 9.074E+10 1.708E+07 3.814E+05 100.0 5.858E+11 8.884E+12 1.934E+12 5.372E-10 180.9 1027 1.274E+08 9.088E+10 1.708E+07 3.819E+05 100.0 5.858E+11 8.896E+12 1.936E+12 5.380E-10 180.8 1027 1.274E+08 9.101E+10 1.707E+07 3.823E+05 100.0 5.857E+11 8.908E+12 1.939E+12 5.386E-10 180.7 1027 1.274E+08 9.113E+10 1.707E+07 3.827E+05 100.0 5.857E+11 8.918E+12 1.941E+12 5.392E-10 180.6 1027 1.274E+08 9.124E+10 1.706E+07 3.830E+05 100.0 5.857E+11 8.928E+12 1.943E+12 5.398E-10 180.5 1027 1.274E+08 9.134E+10 1.706E+07 3.833E+05 100.0 5.856E+11 8.937E+12 1.944E+12 5.403E-10 180.4 1027 1.274E+08 9.143E+10 1.705E+07 3.836E+05 100.0 5.856E+11 8.944E+12 1.946E+12 5.407E-10 180.3 1027 1.273E+08 9.151E+10 1.704E+07 3.838E+05 100.0 5.855E+11 8.951E+12 1.947E+12 5.411E-10 180.2 1027 1.272E+08 9.158E+10 1.703E+07 3.839E+05 100.0 5.855E+11 8.956E+12 1.948E+12 5.414E-10 180.0 1027 1.272E+08 9.163E+10 1.702E+07 3.841E+05 100.0 5.854E+11 8.960E+12 1.949E+12 5.416E-10 179.9 1027 1.271E+08 9.168E+10 1.701E+07 3.842E+05 100.0 5.854E+11 8.964E+12 1.950E+12 5.418E-10 179.8 1027 1.270E+08 9.171E+10 1.700E+07 3.843E+05 100.0 5.853E+11 8.966E+12 1.950E+12 5.420E-10 179.7 1027 1.269E+08 9.174E+10 1.698E+07 3.843E+05 100.0 5.852E+11 8.967E+12 1.950E+12 5.421E-10 179.5 1027 1.268E+08 9.175E+10 1.697E+07 3.843E+05 100.0 5.851E+11 8.968E+12 1.951E+12 5.421E-10 179.4 1027 1.267E+08 9.176E+10 1.696E+07 3.843E+05 100.0 5.850E+11 8.967E+12 1.950E+12 5.420E-10 179.2 1027 1.265E+08 9.175E+10 1.694E+07 3.842E+05 100.0 5.848E+11 8.966E+12 1.950E+12 5.419E-10 179.1 1027 1.264E+08 9.173E+10 1.693E+07 3.842E+05 100.0 5.847E+11 8.963E+12 1.950E+12 5.418E-10 179.0 1027 1.262E+08 9.170E+10 1.691E+07 3.840E+05 100.0 5.846E+11 8.960E+12 1.949E+12 5.416E-10 178.8 1027 1.261E+08 9.167E+10 1.690E+07 3.839E+05 100.0 5.844E+11 8.955E+12 1.948E+12 5.413E-10 178.7 1027 1.259E+08 9.162E+10 1.688E+07 3.838E+05 100.0 5.842E+11 8.950E+12 1.947E+12 5.410E-10 178.5 1027 1.257E+08 9.157E+10 1.686E+07 3.836E+05 100.0 5.840E+11 8.944E+12 1.946E+12 5.407E-10 178.3 1027 1.255E+08 9.150E+10 1.685E+07 3.834E+05 100.0 5.838E+11 8.937E+12 1.945E+12 5.403E-10 178.2 1027 1.253E+08 9.143E+10 1.683E+07 3.832E+05 100.0 5.836E+11 8.929E+12 1.943E+12 5.398E-10 178.0 1027 1.251E+08 9.135E+10 1.681E+07 3.830E+05 100.0 5.834E+11 8.921E+12 1.942E+12 5.393E-10 177.9 1027 1.249E+08 9.126E+10 1.679E+07 3.827E+05 100.0 5.831E+11 8.911E+12 1.940E+12 5.388E-10 177.7 1027 1.247E+08 9.116E+10 1.677E+07 3.824E+05 100.0 5.829E+11 8.901E+12 1.938E+12 5.382E-10 177.6 1027 1.244E+08 9.106E+10 1.675E+07 3.822E+05 100.0 5.826E+11 8.891E+12 1.937E+12 5.376E-10 177.4 1027 1.242E+08 9.094E+10 1.673E+07 3.819E+05 100.0 5.823E+11 8.879E+12 1.934E+12 5.370E-10 177.3 1027 1.239E+08 9.083E+10 1.671E+07 3.816E+05 100.0 5.820E+11 8.867E+12 1.932E+12 5.363E-10 177.1 1027 1.237E+08 9.070E+10 1.669E+07 3.812E+05 100.0 5.817E+11 8.855E+12 1.930E+12 5.356E-10 177.0 1027 1.234E+08 9.057E+10 1.667E+07 3.809E+05 100.0 5.814E+11 8.842E+12 1.928E+12 5.348E-10 176.8 1027 1.232E+08 9.043E+10 1.665E+07 3.806E+05 100.0 5.810E+11 8.829E+12 1.925E+12 5.341E-10 176.7 1027 1.229E+08 9.029E+10 1.663E+07 3.802E+05 100.0 5.807E+11 8.815E+12 1.923E+12 5.333E-10 176.6 1027 1.226E+08 9.015E+10 1.660E+07 3.799E+05 100.0 5.803E+11 8.800E+12 1.920E+12 5.324E-10 176.4 1027 1.224E+08 9.000E+10 1.658E+07 3.795E+05 100.0 5.799E+11 8.785E+12 1.918E+12 5.316E-10 176.3 1027 1.221E+08 8.984E+10 1.656E+07 3.792E+05 100.0 5.795E+11 8.770E+12 1.915E+12 5.307E-10 176.2 1027 1.218E+08 8.968E+10 1.654E+07 3.788E+05 100.0 5.791E+11 8.755E+12 1.912E+12 5.298E-10 176.1 1027 1.215E+08 8.952E+10 1.652E+07 3.785E+05 100.0 5.787E+11 8.739E+12 1.910E+12 5.290E-10 175.9 1027 1.212E+08 8.936E+10 1.650E+07 3.781E+05 100.0 5.783E+11 8.723E+12 1.907E+12 5.281E-10 175.8 1027 1.210E+08 8.919E+10 1.648E+07 3.777E+05 100.0 5.778E+11 8.707E+12 1.904E+12 5.271E-10 175.7 1027 1.207E+08 8.902E+10 1.646E+07 3.774E+05 100.0 5.773E+11 8.691E+12 1.902E+12 5.262E-10 175.7 1027 1.204E+08 8.885E+10 1.643E+07 3.770E+05 100.0 5.769E+11 8.675E+12 1.899E+12 5.253E-10 175.6 1027 1.201E+08 8.868E+10 1.641E+07 3.766E+05 100.0 5.764E+11 8.659E+12 1.896E+12 5.244E-10 175.5 1027 1.198E+08 8.851E+10 1.639E+07 3.763E+05 100.0 5.759E+11 8.642E+12 1.893E+12 5.234E-10 175.4 1027 1.195E+08 8.834E+10 1.637E+07 3.759E+05 100.0 5.754E+11 8.626E+12 1.890E+12 5.225E-10 175.4 1027 1.192E+08 8.816E+10 1.635E+07 3.756E+05 100.0 5.749E+11 8.609E+12 1.888E+12 5.216E-10 175.3 1027 1.189E+08 8.799E+10 1.633E+07 3.752E+05 100.0 5.743E+11 8.593E+12 1.885E+12 5.206E-10 175.3 1027 1.187E+08 8.782E+10 1.631E+07 3.749E+05 100.0 5.738E+11 8.577E+12 1.882E+12 5.197E-10 175.2 1027 1.184E+08 8.765E+10 1.630E+07 3.745E+05 100.0 5.732E+11 8.561E+12 1.880E+12 5.188E-10 175.2 1027 1.181E+08 8.748E+10 1.628E+07 3.742E+05 100.0 5.727E+11 8.545E+12 1.877E+12 5.179E-10 175.2 1027 1.178E+08 8.731E+10 1.626E+07 3.739E+05 100.0 5.721E+11 8.529E+12 1.875E+12 5.170E-10 175.2 1027 1.176E+08 8.715E+10 1.624E+07 3.735E+05 100.0 5.716E+11 8.514E+12 1.872E+12 5.162E-10 175.2 1027 1.173E+08 8.699E+10 1.622E+07 3.732E+05 100.0 5.710E+11 8.499E+12 1.870E+12 5.153E-10 175.2 1027 1.170E+08 8.683E+10 1.621E+07 3.729E+05 100.0 5.704E+11 8.484E+12 1.868E+12 5.145E-10 175.2 1027 1.168E+08 8.667E+10 1.619E+07 3.726E+05 100.0 5.698E+11 8.470E+12 1.865E+12 5.136E-10 175.2 1027 1.165E+08 8.652E+10 1.618E+07 3.723E+05 100.0 5.692E+11 8.455E+12 1.863E+12 5.128E-10 175.3 1027 1.163E+08 8.636E+10 1.616E+07 3.720E+05 100.0 5.686E+11 8.442E+12 1.861E+12 5.121E-10 175.3 1027 1.160E+08 8.622E+10 1.615E+07 3.718E+05 100.0 5.680E+11 8.428E+12 1.859E+12 5.113E-10 175.4 1027 1.158E+08 8.608E+10 1.614E+07 3.715E+05 100.0 5.674E+11 8.415E+12 1.857E+12 5.106E-10 175.5 1027 1.156E+08 8.594E+10 1.612E+07 3.712E+05 100.0 5.668E+11 8.403E+12 1.856E+12 5.099E-10 175.6 1027 1.154E+08 8.580E+10 1.611E+07 3.710E+05 100.0 5.662E+11 8.390E+12 1.854E+12 5.092E-10 175.7 1027 1.151E+08 8.567E+10 1.610E+07 3.707E+05 100.0 5.656E+11 8.379E+12 1.852E+12 5.085E-10 175.8 1027 1.149E+08 8.555E+10 1.609E+07 3.705E+05 100.0 5.649E+11 8.368E+12 1.851E+12 5.079E-10 175.9 1027 1.147E+08 8.543E+10 1.608E+07 3.703E+05 100.0 5.643E+11 8.357E+12 1.850E+12 5.073E-10 176.0 1027 1.145E+08 8.531E+10 1.607E+07 3.701E+05 100.0 5.637E+11 8.347E+12 1.848E+12 5.068E-10 176.2 1027 1.144E+08 8.520E+10 1.606E+07 3.698E+05 100.0 5.631E+11 8.337E+12 1.847E+12 5.062E-10 176.3 1027 1.142E+08 8.510E+10 1.606E+07 3.696E+05 100.0 5.624E+11 8.328E+12 1.846E+12 5.057E-10 176.5 1027 1.140E+08 8.500E+10 1.605E+07 3.695E+05 100.0 5.618E+11 8.320E+12 1.845E+12 5.053E-10 176.7 1027 1.139E+08 8.491E+10 1.605E+07 3.693E+05 100.0 5.612E+11 8.312E+12 1.844E+12 5.048E-10 176.9 1027 1.137E+08 8.482E+10 1.604E+07 3.691E+05 100.0 5.606E+11 8.304E+12 1.844E+12 5.044E-10 177.0 1027 1.136E+08 8.474E+10 1.604E+07 3.689E+05 100.0 5.600E+11 8.298E+12 1.843E+12 5.041E-10 177.3 1027 1.134E+08 8.466E+10 1.604E+07 3.688E+05 100.0 5.593E+11 8.291E+12 1.843E+12 5.037E-10 177.5 1027 1.133E+08 8.460E+10 1.603E+07 3.686E+05 100.0 5.587E+11 8.286E+12 1.842E+12 5.034E-10 177.7 1027 1.132E+08 8.453E+10 1.603E+07 3.684E+05 100.0 5.581E+11 8.281E+12 1.842E+12 5.032E-10 177.9 1027 1.131E+08 8.447E+10 1.603E+07 3.683E+05 100.0 5.575E+11 8.276E+12 1.842E+12 5.029E-10 178.2 1027 1.130E+08 8.442E+10 1.603E+07 3.682E+05 100.0 5.569E+11 8.272E+12 1.842E+12 5.027E-10 178.4 1027 1.129E+08 8.438E+10 1.604E+07 3.680E+05 100.0 5.563E+11 8.269E+12 1.842E+12 5.026E-10 178.7 1027 1.128E+08 8.434E+10 1.604E+07 3.679E+05 100.0 5.557E+11 8.267E+12 1.842E+12 5.024E-10 179.0 1027 1.127E+08 8.431E+10 1.604E+07 3.678E+05 100.0 5.551E+11 8.265E+12 1.842E+12 5.023E-10 179.2 1027 1.127E+08 8.428E+10 1.605E+07 3.676E+05 100.0 5.545E+11 8.263E+12 1.843E+12 5.023E-10 179.5 1027 1.126E+08 8.426E+10 1.606E+07 3.675E+05 100.0 5.540E+11 8.262E+12 1.843E+12 5.023E-10 179.8 1027 1.126E+08 8.424E+10 1.606E+07 3.674E+05 100.0 5.534E+11 8.262E+12 1.844E+12 5.023E-10 180.1 1027 1.125E+08 8.424E+10 1.607E+07 3.673E+05 100.0 5.528E+11 8.262E+12 1.845E+12 5.023E-10 180.4 1027 1.125E+08 8.423E+10 1.608E+07 3.671E+05 100.0 5.522E+11 8.263E+12 1.846E+12 5.024E-10 180.7 1027 1.125E+08 8.424E+10 1.609E+07 3.670E+05 100.0 5.517E+11 8.265E+12 1.847E+12 5.025E-10 181.1 1027 1.125E+08 8.425E+10 1.610E+07 3.669E+05 100.0 5.511E+11 8.267E+12 1.848E+12 5.026E-10 181.4 1027 1.125E+08 8.426E+10 1.611E+07 3.668E+05 100.0 5.506E+11 8.269E+12 1.849E+12 5.028E-10 181.7 1027 1.125E+08 8.428E+10 1.613E+07 3.667E+05 100.0 5.501E+11 8.273E+12 1.850E+12 5.030E-10 182.0 1027 1.125E+08 8.431E+10 1.614E+07 3.666E+05 100.0 5.496E+11 8.276E+12 1.852E+12 5.032E-10 182.4 1027 1.126E+08 8.434E+10 1.616E+07 3.664E+05 100.0 5.491E+11 8.281E+12 1.853E+12 5.035E-10 182.7 1027 1.126E+08 8.438E+10 1.617E+07 3.663E+05 100.0 5.486E+11 8.285E+12 1.855E+12 5.038E-10 183.0 1027 1.127E+08 8.443E+10 1.619E+07 3.662E+05 100.0 5.481E+11 8.291E+12 1.856E+12 5.041E-10 183.4 1027 1.127E+08 8.448E+10 1.621E+07 3.660E+05 100.0 5.476E+11 8.296E+12 1.858E+12 5.045E-10 183.7 1027 1.128E+08 8.453E+10 1.623E+07 3.659E+05 100.0 5.471E+11 8.303E+12 1.860E+12 5.049E-10 184.1 1027 1.129E+08 8.459E+10 1.625E+07 3.658E+05 100.0 5.467E+11 8.310E+12 1.862E+12 5.053E-10 184.4 1027 1.129E+08 8.466E+10 1.627E+07 3.656E+05 100.0 5.462E+11 8.317E+12 1.864E+12 5.057E-10 184.8 1027 1.130E+08 8.473E+10 1.630E+07 3.654E+05 100.0 5.458E+11 8.325E+12 1.866E+12 5.062E-10 185.1 1027 1.131E+08 8.480E+10 1.632E+07 3.653E+05 100.0 5.454E+11 8.333E+12 1.868E+12 5.067E-10 185.4 1027 1.132E+08 8.488E+10 1.635E+07 3.651E+05 100.0 5.450E+11 8.342E+12 1.870E+12 5.072E-10 185.8 1027 1.134E+08 8.497E+10 1.637E+07 3.649E+05 100.0 5.446E+11 8.351E+12 1.872E+12 5.077E-10 186.1 1027 1.135E+08 8.506E+10 1.640E+07 3.647E+05 100.0 5.442E+11 8.360E+12 1.874E+12 5.083E-10 186.4 1027 1.136E+08 8.515E+10 1.643E+07 3.645E+05 100.0 5.438E+11 8.370E+12 1.877E+12 5.089E-10 186.7 1027 1.138E+08 8.525E+10 1.646E+07 3.643E+05 100.0 5.435E+11 8.381E+12 1.879E+12 5.095E-10 187.1 1027 1.139E+08 8.536E+10 1.649E+07 3.641E+05 100.0 5.432E+11 8.392E+12 1.882E+12 5.101E-10 187.4 1027 1.141E+08 8.546E+10 1.652E+07 3.638E+05 100.0 5.429E+11 8.403E+12 1.884E+12 5.108E-10 187.7 1027 1.143E+08 8.558E+10 1.656E+07 3.636E+05 100.0 5.426E+11 8.415E+12 1.887E+12 5.114E-10 188.0 1027 1.144E+08 8.569E+10 1.659E+07 3.633E+05 100.0 5.423E+11 8.426E+12 1.889E+12 5.121E-10 188.3 1027 1.146E+08 8.581E+10 1.663E+07 3.630E+05 100.0 5.420E+11 8.439E+12 1.892E+12 5.128E-10 188.5 1027 1.148E+08 8.594E+10 1.667E+07 3.627E+05 100.0 5.418E+11 8.451E+12 1.895E+12 5.136E-10 188.8 1027 1.150E+08 8.607E+10 1.671E+07 3.624E+05 100.0 5.416E+11 8.464E+12 1.898E+12 5.143E-10 189.1 1027 1.152E+08 8.620E+10 1.675E+07 3.621E+05 100.0 5.414E+11 8.478E+12 1.900E+12 5.151E-10 189.3 1027 1.154E+08 8.634E+10 1.679E+07 3.618E+05 100.0 5.412E+11 8.491E+12 1.903E+12 5.159E-10 189.5 1027 1.156E+08 8.647E+10 1.683E+07 3.614E+05 100.0 5.411E+11 8.505E+12 1.906E+12 5.167E-10 189.8 1027 1.159E+08 8.662E+10 1.687E+07 3.610E+05 100.0 5.409E+11 8.519E+12 1.909E+12 5.175E-10 190.0 1027 1.161E+08 8.676E+10 1.692E+07 3.606E+05 100.0 5.408E+11 8.534E+12 1.912E+12 5.184E-10 190.2 1027 1.163E+08 8.691E+10 1.696E+07 3.602E+05 100.0 5.407E+11 8.549E+12 1.915E+12 5.192E-10 190.3 1027 1.166E+08 8.706E+10 1.701E+07 3.598E+05 100.0 5.407E+11 8.564E+12 1.918E+12 5.201E-10 190.5 1027 1.168E+08 8.722E+10 1.706E+07 3.593E+05 100.0 5.406E+11 8.579E+12 1.921E+12 5.210E-10 190.7 1027 1.171E+08 8.738E+10 1.711E+07 3.588E+05 100.0 5.406E+11 8.594E+12 1.924E+12 5.218E-10 190.8 1027 1.174E+08 8.754E+10 1.716E+07 3.583E+05 100.0 5.406E+11 8.610E+12 1.927E+12 5.227E-10 190.9 1027 1.176E+08 8.770E+10 1.721E+07 3.578E+05 100.0 5.406E+11 8.626E+12 1.930E+12 5.237E-10 191.1 1027 1.179E+08 8.786E+10 1.726E+07 3.572E+05 100.0 5.407E+11 8.642E+12 1.933E+12 5.246E-10 191.2 1027 1.182E+08 8.803E+10 1.732E+07 3.566E+05 100.0 5.407E+11 8.658E+12 1.936E+12 5.255E-10 191.2 1027 1.185E+08 8.820E+10 1.737E+07 3.560E+05 100.0 5.408E+11 8.674E+12 1.940E+12 5.264E-10 191.3 1027 1.188E+08 8.837E+10 1.743E+07 3.554E+05 100.0 5.409E+11 8.691E+12 1.943E+12 5.274E-10 191.3 1027 1.191E+08 8.855E+10 1.749E+07 3.548E+05 100.0 5.411E+11 8.707E+12 1.946E+12 5.283E-10 191.4 1027 1.194E+08 8.872E+10 1.755E+07 3.541E+05 100.0 5.413E+11 8.724E+12 1.949E+12 5.293E-10 191.4 1027 1.197E+08 8.890E+10 1.760E+07 3.534E+05 100.0 5.414E+11 8.741E+12 1.952E+12 5.303E-10 191.4 1027 1.200E+08 8.908E+10 1.767E+07 3.526E+05 100.0 5.417E+11 8.758E+12 1.955E+12 5.312E-10 191.4 1027 1.203E+08 8.926E+10 1.773E+07 3.519E+05 100.0 5.419E+11 8.775E+12 1.958E+12 5.322E-10 191.3 1027 1.206E+08 8.944E+10 1.779E+07 3.511E+05 100.0 5.422E+11 8.792E+12 1.961E+12 5.332E-10 191.3 1027 1.210E+08 8.962E+10 1.785E+07 3.502E+05 100.0 5.425E+11 8.809E+12 1.964E+12 5.342E-10 191.2 1027 1.213E+08 8.980E+10 1.792E+07 3.494E+05 100.0 5.428E+11 8.826E+12 1.967E+12 5.351E-10 191.1 1027 1.216E+08 8.999E+10 1.798E+07 3.485E+05 100.0 5.431E+11 8.843E+12 1.970E+12 5.361E-10 191.1 1027 1.220E+08 9.017E+10 1.805E+07 3.476E+05 100.0 5.435E+11 8.860E+12 1.973E+12 5.371E-10 190.9 1027 1.223E+08 9.035E+10 1.812E+07 3.466E+05 100.0 5.439E+11 8.878E+12 1.976E+12 5.381E-10 190.8 1027 1.226E+08 9.054E+10 1.819E+07 3.456E+05 100.0 5.443E+11 8.895E+12 1.979E+12 5.390E-10 190.7 1027 1.230E+08 9.072E+10 1.826E+07 3.446E+05 100.0 5.447E+11 8.912E+12 1.982E+12 5.400E-10 190.5 1027 1.233E+08 9.090E+10 1.832E+07 3.436E+05 100.0 5.451E+11 8.928E+12 1.985E+12 5.410E-10 190.4 1027 1.237E+08 9.109E+10 1.840E+07 3.425E+05 100.0 5.456E+11 8.945E+12 1.988E+12 5.419E-10 190.2 1027 1.240E+08 9.127E+10 1.847E+07 3.413E+05 100.0 5.461E+11 8.962E+12 1.991E+12 5.429E-10 190.0 1027 1.244E+08 9.145E+10 1.854E+07 3.402E+05 100.0 5.466E+11 8.979E+12 1.994E+12 5.438E-10 189.8 1027 1.247E+08 9.163E+10 1.861E+07 3.390E+05 100.0 5.472E+11 8.995E+12 1.996E+12 5.448E-10 189.5 1027 1.251E+08 9.181E+10 1.868E+07 3.378E+05 100.0 5.477E+11 9.011E+12 1.999E+12 5.457E-10 189.3 1027 1.254E+08 9.199E+10 1.876E+07 3.365E+05 100.0 5.483E+11 9.028E+12 2.002E+12 5.466E-10 189.1 1027 1.258E+08 9.217E+10 1.883E+07 3.352E+05 100.0 5.489E+11 9.043E+12 2.004E+12 5.475E-10 188.8 1027 1.262E+08 9.234E+10 1.890E+07 3.338E+05 100.0 5.495E+11 9.059E+12 2.007E+12 5.484E-10 188.6 1027 1.265E+08 9.251E+10 1.898E+07 3.325E+05 100.0 5.501E+11 9.075E+12 2.009E+12 5.493E-10 188.3 1027 1.269E+08 9.268E+10 1.905E+07 3.311E+05 100.0 5.508E+11 9.090E+12 2.012E+12 5.502E-10 188.0 1027 1.272E+08 9.285E+10 1.912E+07 3.296E+05 100.0 5.515E+11 9.105E+12 2.014E+12 5.510E-10 187.7 1027 1.276E+08 9.302E+10 1.920E+07 3.281E+05 100.0 5.521E+11 9.120E+12 2.016E+12 5.518E-10 187.4 1027 1.279E+08 9.318E+10 1.927E+07 3.266E+05 100.0 5.528E+11 9.134E+12 2.019E+12 5.527E-10 187.1 1027 1.283E+08 9.334E+10 1.935E+07 3.251E+05 100.0 5.536E+11 9.148E+12 2.021E+12 5.535E-10 186.8 1027 1.286E+08 9.349E+10 1.942E+07 3.235E+05 100.0 5.543E+11 9.162E+12 2.023E+12 5.542E-10 186.5 1027 1.290E+08 9.365E+10 1.949E+07 3.219E+05 100.0 5.550E+11 9.176E+12 2.025E+12 5.550E-10 186.2 1027 1.293E+08 9.380E+10 1.957E+07 3.202E+05 100.0 5.558E+11 9.189E+12 2.027E+12 5.557E-10 185.9 1027 1.297E+08 9.394E+10 1.964E+07 3.185E+05 100.0 5.566E+11 9.202E+12 2.028E+12 5.565E-10 185.6 1027 1.300E+08 9.408E+10 1.971E+07 3.168E+05 100.0 5.574E+11 9.214E+12 2.030E+12 5.572E-10 185.2 1027 1.303E+08 9.422E+10 1.979E+07 3.151E+05 100.0 5.582E+11 9.226E+12 2.032E+12 5.578E-10 184.9 1027 1.307E+08 9.435E+10 1.986E+07 3.133E+05 100.0 5.590E+11 9.237E+12 2.033E+12 5.585E-10 184.6 1027 1.310E+08 9.448E+10 1.993E+07 3.115E+05 100.0 5.598E+11 9.249E+12 2.035E+12 5.591E-10 184.3 1027 1.313E+08 9.461E+10 2.000E+07 3.096E+05 100.0 5.606E+11 9.259E+12 2.036E+12 5.597E-10 183.9 1027 1.317E+08 9.473E+10 2.007E+07 3.078E+05 100.0 5.615E+11 9.270E+12 2.037E+12 5.603E-10 183.6 1027 1.320E+08 9.484E+10 2.014E+07 3.059E+05 100.0 5.624E+11 9.280E+12 2.038E+12 5.608E-10 183.3 1027 1.323E+08 9.495E+10 2.020E+07 3.040E+05 100.0 5.632E+11 9.289E+12 2.039E+12 5.614E-10 183.0 1027 1.326E+08 9.506E+10 2.027E+07 3.020E+05fluids-1.0.22/tests/nrlmsise00/known_data_height.txt0000644000175000017500000027307314302004506021772 0ustar nileshnilesh0.0 0.000E+00 2.064E+19 5.537E+18 1.270E-03 280.1 1027 1.385E+14 2.469E+17 0.000E+00 0.000E+00 0.1 0.000E+00 2.040E+19 5.473E+18 1.255E-03 279.9 1027 1.369E+14 2.440E+17 0.000E+00 0.000E+00 0.2 0.000E+00 2.017E+19 5.412E+18 1.241E-03 279.7 1027 1.354E+14 2.413E+17 0.000E+00 0.000E+00 0.3 0.000E+00 1.995E+19 5.351E+18 1.227E-03 279.4 1027 1.339E+14 2.386E+17 0.000E+00 0.000E+00 0.4 0.000E+00 1.972E+19 5.291E+18 1.213E-03 279.1 1027 1.324E+14 2.359E+17 0.000E+00 0.000E+00 0.5 0.000E+00 1.951E+19 5.233E+18 1.200E-03 278.8 1027 1.309E+14 2.333E+17 0.000E+00 0.000E+00 0.6 0.000E+00 1.929E+19 5.175E+18 1.187E-03 278.5 1027 1.295E+14 2.308E+17 0.000E+00 0.000E+00 0.7 0.000E+00 1.908E+19 5.119E+18 1.174E-03 278.1 1027 1.280E+14 2.282E+17 0.000E+00 0.000E+00 0.8 0.000E+00 1.887E+19 5.063E+18 1.161E-03 277.7 1027 1.267E+14 2.258E+17 0.000E+00 0.000E+00 0.9 0.000E+00 1.867E+19 5.009E+18 1.149E-03 277.3 1027 1.253E+14 2.233E+17 0.000E+00 0.000E+00 1.0 0.000E+00 1.847E+19 4.955E+18 1.136E-03 276.9 1027 1.240E+14 2.209E+17 0.000E+00 0.000E+00 1.1 0.000E+00 1.827E+19 4.902E+18 1.124E-03 276.4 1027 1.226E+14 2.186E+17 0.000E+00 0.000E+00 1.2 0.000E+00 1.808E+19 4.850E+18 1.112E-03 276.0 1027 1.213E+14 2.163E+17 0.000E+00 0.000E+00 1.3 0.000E+00 1.789E+19 4.799E+18 1.101E-03 275.5 1027 1.201E+14 2.140E+17 0.000E+00 0.000E+00 1.4 0.000E+00 1.770E+19 4.749E+18 1.089E-03 275.0 1027 1.188E+14 2.117E+17 0.000E+00 0.000E+00 1.5 0.000E+00 1.752E+19 4.699E+18 1.078E-03 274.4 1027 1.176E+14 2.095E+17 0.000E+00 0.000E+00 1.6 0.000E+00 1.734E+19 4.651E+18 1.067E-03 273.9 1027 1.163E+14 2.074E+17 0.000E+00 0.000E+00 1.7 0.000E+00 1.716E+19 4.602E+18 1.056E-03 273.3 1027 1.151E+14 2.052E+17 0.000E+00 0.000E+00 1.8 0.000E+00 1.698E+19 4.555E+18 1.045E-03 272.7 1027 1.139E+14 2.031E+17 0.000E+00 0.000E+00 1.9 0.000E+00 1.680E+19 4.508E+18 1.034E-03 272.1 1027 1.128E+14 2.010E+17 0.000E+00 0.000E+00 2.0 0.000E+00 1.663E+19 4.462E+18 1.023E-03 271.5 1027 1.116E+14 1.989E+17 0.000E+00 0.000E+00 2.1 0.000E+00 1.646E+19 4.416E+18 1.013E-03 270.9 1027 1.105E+14 1.969E+17 0.000E+00 0.000E+00 2.2 0.000E+00 1.629E+19 4.371E+18 1.003E-03 270.2 1027 1.093E+14 1.949E+17 0.000E+00 0.000E+00 2.3 0.000E+00 1.613E+19 4.327E+18 9.923E-04 269.6 1027 1.082E+14 1.929E+17 0.000E+00 0.000E+00 2.4 0.000E+00 1.597E+19 4.283E+18 9.823E-04 268.9 1027 1.071E+14 1.910E+17 0.000E+00 0.000E+00 2.5 0.000E+00 1.580E+19 4.240E+18 9.723E-04 268.2 1027 1.061E+14 1.890E+17 0.000E+00 0.000E+00 2.6 0.000E+00 1.564E+19 4.197E+18 9.625E-04 267.6 1027 1.050E+14 1.871E+17 0.000E+00 0.000E+00 2.7 0.000E+00 1.549E+19 4.154E+18 9.528E-04 266.9 1027 1.039E+14 1.852E+17 0.000E+00 0.000E+00 2.8 0.000E+00 1.533E+19 4.113E+18 9.432E-04 266.1 1027 1.029E+14 1.834E+17 0.000E+00 0.000E+00 2.9 0.000E+00 1.518E+19 4.071E+18 9.337E-04 265.4 1027 1.018E+14 1.815E+17 0.000E+00 0.000E+00 3.0 0.000E+00 1.502E+19 4.030E+18 9.243E-04 264.7 1027 1.008E+14 1.797E+17 0.000E+00 0.000E+00 3.1 0.000E+00 1.487E+19 3.990E+18 9.150E-04 264.0 1027 9.980E+13 1.779E+17 0.000E+00 0.000E+00 3.2 0.000E+00 1.472E+19 3.949E+18 9.057E-04 263.2 1027 9.879E+13 1.761E+17 0.000E+00 0.000E+00 3.3 0.000E+00 1.457E+19 3.910E+18 8.966E-04 262.5 1027 9.780E+13 1.743E+17 0.000E+00 0.000E+00 3.4 0.000E+00 1.443E+19 3.870E+18 8.876E-04 261.7 1027 9.681E+13 1.726E+17 0.000E+00 0.000E+00 3.5 0.000E+00 1.428E+19 3.831E+18 8.786E-04 261.0 1027 9.584E+13 1.708E+17 0.000E+00 0.000E+00 3.6 0.000E+00 1.414E+19 3.792E+18 8.698E-04 260.2 1027 9.487E+13 1.691E+17 0.000E+00 0.000E+00 3.7 0.000E+00 1.399E+19 3.754E+18 8.610E-04 259.4 1027 9.391E+13 1.674E+17 0.000E+00 0.000E+00 3.8 0.000E+00 1.385E+19 3.716E+18 8.523E-04 258.6 1027 9.296E+13 1.657E+17 0.000E+00 0.000E+00 3.9 0.000E+00 1.371E+19 3.678E+18 8.436E-04 257.9 1027 9.202E+13 1.640E+17 0.000E+00 0.000E+00 4.0 0.000E+00 1.357E+19 3.641E+18 8.351E-04 257.1 1027 9.108E+13 1.623E+17 0.000E+00 0.000E+00 4.1 0.000E+00 1.343E+19 3.604E+18 8.266E-04 256.3 1027 9.015E+13 1.607E+17 0.000E+00 0.000E+00 4.2 0.000E+00 1.330E+19 3.567E+18 8.181E-04 255.5 1027 8.924E+13 1.591E+17 0.000E+00 0.000E+00 4.3 0.000E+00 1.316E+19 3.531E+18 8.098E-04 254.7 1027 8.832E+13 1.574E+17 0.000E+00 0.000E+00 4.4 0.000E+00 1.303E+19 3.495E+18 8.014E-04 253.9 1027 8.742E+13 1.558E+17 0.000E+00 0.000E+00 4.5 0.000E+00 1.289E+19 3.459E+18 7.932E-04 253.1 1027 8.652E+13 1.542E+17 0.000E+00 0.000E+00 4.6 0.000E+00 1.276E+19 3.423E+18 7.850E-04 252.4 1027 8.563E+13 1.526E+17 0.000E+00 0.000E+00 4.7 0.000E+00 1.263E+19 3.388E+18 7.769E-04 251.6 1027 8.474E+13 1.510E+17 0.000E+00 0.000E+00 4.8 0.000E+00 1.250E+19 3.352E+18 7.688E-04 250.8 1027 8.386E+13 1.495E+17 0.000E+00 0.000E+00 4.9 0.000E+00 1.237E+19 3.317E+18 7.608E-04 250.0 1027 8.299E+13 1.479E+17 0.000E+00 0.000E+00 5.0 0.000E+00 1.224E+19 3.283E+18 7.529E-04 249.2 1027 8.212E+13 1.464E+17 0.000E+00 0.000E+00 5.1 0.000E+00 1.211E+19 3.248E+18 7.450E-04 248.4 1027 8.126E+13 1.448E+17 0.000E+00 0.000E+00 5.2 0.000E+00 1.198E+19 3.214E+18 7.371E-04 247.6 1027 8.040E+13 1.433E+17 0.000E+00 0.000E+00 5.3 0.000E+00 1.185E+19 3.180E+18 7.293E-04 246.9 1027 7.955E+13 1.418E+17 0.000E+00 0.000E+00 5.4 0.000E+00 1.173E+19 3.146E+18 7.215E-04 246.1 1027 7.870E+13 1.403E+17 0.000E+00 0.000E+00 5.5 0.000E+00 1.160E+19 3.113E+18 7.138E-04 245.3 1027 7.786E+13 1.388E+17 0.000E+00 0.000E+00 5.6 0.000E+00 1.148E+19 3.079E+18 7.062E-04 244.6 1027 7.703E+13 1.373E+17 0.000E+00 0.000E+00 5.7 0.000E+00 1.135E+19 3.046E+18 6.986E-04 243.8 1027 7.620E+13 1.358E+17 0.000E+00 0.000E+00 5.8 0.000E+00 1.123E+19 3.013E+18 6.910E-04 243.0 1027 7.537E+13 1.343E+17 0.000E+00 0.000E+00 5.9 0.000E+00 1.111E+19 2.980E+18 6.835E-04 242.3 1027 7.455E+13 1.329E+17 0.000E+00 0.000E+00 6.0 0.000E+00 1.099E+19 2.948E+18 6.760E-04 241.5 1027 7.373E+13 1.314E+17 0.000E+00 0.000E+00 6.1 0.000E+00 1.087E+19 2.915E+18 6.686E-04 240.8 1027 7.292E+13 1.300E+17 0.000E+00 0.000E+00 6.2 0.000E+00 1.075E+19 2.883E+18 6.612E-04 240.1 1027 7.212E+13 1.285E+17 0.000E+00 0.000E+00 6.3 0.000E+00 1.063E+19 2.851E+18 6.538E-04 239.3 1027 7.132E+13 1.271E+17 0.000E+00 0.000E+00 6.4 0.000E+00 1.051E+19 2.819E+18 6.465E-04 238.6 1027 7.052E+13 1.257E+17 0.000E+00 0.000E+00 6.5 0.000E+00 1.039E+19 2.787E+18 6.393E-04 237.9 1027 6.973E+13 1.243E+17 0.000E+00 0.000E+00 6.6 0.000E+00 1.027E+19 2.756E+18 6.320E-04 237.2 1027 6.894E+13 1.229E+17 0.000E+00 0.000E+00 6.7 0.000E+00 1.016E+19 2.725E+18 6.249E-04 236.5 1027 6.816E+13 1.215E+17 0.000E+00 0.000E+00 6.8 0.000E+00 1.004E+19 2.694E+18 6.177E-04 235.8 1027 6.738E+13 1.201E+17 0.000E+00 0.000E+00 6.9 0.000E+00 9.925E+18 2.663E+18 6.106E-04 235.1 1027 6.660E+13 1.187E+17 0.000E+00 0.000E+00 7.0 0.000E+00 9.810E+18 2.632E+18 6.036E-04 234.4 1027 6.583E+13 1.173E+17 0.000E+00 0.000E+00 7.1 0.000E+00 9.696E+18 2.601E+18 5.966E-04 233.7 1027 6.507E+13 1.160E+17 0.000E+00 0.000E+00 7.2 0.000E+00 9.583E+18 2.571E+18 5.896E-04 233.1 1027 6.431E+13 1.146E+17 0.000E+00 0.000E+00 7.3 0.000E+00 9.470E+18 2.541E+18 5.827E-04 232.4 1027 6.355E+13 1.133E+17 0.000E+00 0.000E+00 7.4 0.000E+00 9.358E+18 2.511E+18 5.758E-04 231.8 1027 6.280E+13 1.119E+17 0.000E+00 0.000E+00 7.5 0.000E+00 9.247E+18 2.481E+18 5.689E-04 231.1 1027 6.205E+13 1.106E+17 0.000E+00 0.000E+00 7.6 0.000E+00 9.136E+18 2.451E+18 5.621E-04 230.5 1027 6.131E+13 1.093E+17 0.000E+00 0.000E+00 7.7 0.000E+00 9.026E+18 2.421E+18 5.553E-04 229.9 1027 6.057E+13 1.080E+17 0.000E+00 0.000E+00 7.8 0.000E+00 8.917E+18 2.392E+18 5.486E-04 229.3 1027 5.984E+13 1.067E+17 0.000E+00 0.000E+00 7.9 0.000E+00 8.808E+18 2.363E+18 5.419E-04 228.7 1027 5.911E+13 1.054E+17 0.000E+00 0.000E+00 8.0 0.000E+00 8.700E+18 2.334E+18 5.353E-04 228.1 1027 5.838E+13 1.041E+17 0.000E+00 0.000E+00 8.1 0.000E+00 8.592E+18 2.305E+18 5.286E-04 227.5 1027 5.766E+13 1.028E+17 0.000E+00 0.000E+00 8.2 0.000E+00 8.486E+18 2.276E+18 5.221E-04 227.0 1027 5.694E+13 1.015E+17 0.000E+00 0.000E+00 8.3 0.000E+00 8.380E+18 2.248E+18 5.156E-04 226.4 1027 5.623E+13 1.002E+17 0.000E+00 0.000E+00 8.4 0.000E+00 8.274E+18 2.220E+18 5.091E-04 225.9 1027 5.553E+13 9.897E+16 0.000E+00 0.000E+00 8.5 0.000E+00 8.170E+18 2.192E+18 5.026E-04 225.3 1027 5.482E+13 9.772E+16 0.000E+00 0.000E+00 8.6 0.000E+00 8.066E+18 2.164E+18 4.962E-04 224.8 1027 5.413E+13 9.648E+16 0.000E+00 0.000E+00 8.7 0.000E+00 7.962E+18 2.136E+18 4.899E-04 224.3 1027 5.343E+13 9.524E+16 0.000E+00 0.000E+00 8.8 0.000E+00 7.860E+18 2.108E+18 4.836E-04 223.8 1027 5.274E+13 9.401E+16 0.000E+00 0.000E+00 8.9 0.000E+00 7.758E+18 2.081E+18 4.773E-04 223.3 1027 5.206E+13 9.279E+16 0.000E+00 0.000E+00 9.0 0.000E+00 7.656E+18 2.054E+18 4.711E-04 222.9 1027 5.138E+13 9.158E+16 0.000E+00 0.000E+00 9.1 0.000E+00 7.556E+18 2.027E+18 4.649E-04 222.4 1027 5.070E+13 9.038E+16 0.000E+00 0.000E+00 9.2 0.000E+00 7.456E+18 2.000E+18 4.587E-04 221.9 1027 5.003E+13 8.918E+16 0.000E+00 0.000E+00 9.3 0.000E+00 7.357E+18 1.974E+18 4.526E-04 221.5 1027 4.937E+13 8.800E+16 0.000E+00 0.000E+00 9.4 0.000E+00 7.258E+18 1.947E+18 4.466E-04 221.1 1027 4.871E+13 8.682E+16 0.000E+00 0.000E+00 9.5 0.000E+00 7.161E+18 1.921E+18 4.406E-04 220.7 1027 4.805E+13 8.565E+16 0.000E+00 0.000E+00 9.6 0.000E+00 7.064E+18 1.895E+18 4.346E-04 220.3 1027 4.740E+13 8.449E+16 0.000E+00 0.000E+00 9.7 0.000E+00 6.968E+18 1.869E+18 4.287E-04 219.9 1027 4.676E+13 8.334E+16 0.000E+00 0.000E+00 9.8 0.000E+00 6.872E+18 1.844E+18 4.228E-04 219.5 1027 4.612E+13 8.220E+16 0.000E+00 0.000E+00 9.9 0.000E+00 6.777E+18 1.818E+18 4.170E-04 219.2 1027 4.548E+13 8.107E+16 0.000E+00 0.000E+00 10.0 0.000E+00 6.683E+18 1.793E+18 4.112E-04 218.8 1027 4.485E+13 7.994E+16 0.000E+00 0.000E+00 10.1 0.000E+00 6.590E+18 1.768E+18 4.054E-04 218.5 1027 4.422E+13 7.883E+16 0.000E+00 0.000E+00 10.2 0.000E+00 6.498E+18 1.743E+18 3.998E-04 218.2 1027 4.360E+13 7.772E+16 0.000E+00 0.000E+00 10.3 0.000E+00 6.406E+18 1.718E+18 3.941E-04 217.9 1027 4.299E+13 7.662E+16 0.000E+00 0.000E+00 10.4 0.000E+00 6.315E+18 1.694E+18 3.885E-04 217.6 1027 4.238E+13 7.554E+16 0.000E+00 0.000E+00 10.5 0.000E+00 6.225E+18 1.670E+18 3.830E-04 217.3 1027 4.177E+13 7.446E+16 0.000E+00 0.000E+00 10.6 0.000E+00 6.136E+18 1.646E+18 3.775E-04 217.0 1027 4.117E+13 7.339E+16 0.000E+00 0.000E+00 10.7 0.000E+00 6.047E+18 1.622E+18 3.721E-04 216.8 1027 4.058E+13 7.233E+16 0.000E+00 0.000E+00 10.8 0.000E+00 5.960E+18 1.599E+18 3.667E-04 216.5 1027 3.999E+13 7.129E+16 0.000E+00 0.000E+00 10.9 0.000E+00 5.873E+18 1.576E+18 3.613E-04 216.3 1027 3.941E+13 7.025E+16 0.000E+00 0.000E+00 11.0 0.000E+00 5.787E+18 1.553E+18 3.561E-04 216.1 1027 3.884E+13 6.922E+16 0.000E+00 0.000E+00 11.1 0.000E+00 5.702E+18 1.530E+18 3.508E-04 215.8 1027 3.827E+13 6.821E+16 0.000E+00 0.000E+00 11.2 0.000E+00 5.619E+18 1.507E+18 3.457E-04 215.6 1027 3.770E+13 6.721E+16 0.000E+00 0.000E+00 11.3 0.000E+00 5.535E+18 1.485E+18 3.406E-04 215.5 1027 3.715E+13 6.621E+16 0.000E+00 0.000E+00 11.4 0.000E+00 5.453E+18 1.463E+18 3.355E-04 215.3 1027 3.660E+13 6.523E+16 0.000E+00 0.000E+00 11.5 0.000E+00 5.372E+18 1.441E+18 3.305E-04 215.1 1027 3.605E+13 6.426E+16 0.000E+00 0.000E+00 11.6 0.000E+00 5.292E+18 1.420E+18 3.256E-04 214.9 1027 3.551E+13 6.330E+16 0.000E+00 0.000E+00 11.7 0.000E+00 5.213E+18 1.398E+18 3.207E-04 214.8 1027 3.498E+13 6.235E+16 0.000E+00 0.000E+00 11.8 0.000E+00 5.134E+18 1.377E+18 3.159E-04 214.6 1027 3.445E+13 6.141E+16 0.000E+00 0.000E+00 11.9 0.000E+00 5.057E+18 1.357E+18 3.111E-04 214.5 1027 3.394E+13 6.049E+16 0.000E+00 0.000E+00 12.0 0.000E+00 4.980E+18 1.336E+18 3.064E-04 214.3 1027 3.342E+13 5.957E+16 0.000E+00 0.000E+00 12.1 0.000E+00 4.905E+18 1.316E+18 3.018E-04 214.2 1027 3.292E+13 5.867E+16 0.000E+00 0.000E+00 12.2 0.000E+00 4.830E+18 1.296E+18 2.972E-04 214.1 1027 3.241E+13 5.778E+16 0.000E+00 0.000E+00 12.3 0.000E+00 4.757E+18 1.276E+18 2.927E-04 214.0 1027 3.192E+13 5.690E+16 0.000E+00 0.000E+00 12.4 0.000E+00 4.684E+18 1.257E+18 2.882E-04 213.9 1027 3.143E+13 5.603E+16 0.000E+00 0.000E+00 12.5 0.000E+00 4.612E+18 1.237E+18 2.838E-04 213.8 1027 3.095E+13 5.517E+16 0.000E+00 0.000E+00 12.6 0.000E+00 4.541E+18 1.218E+18 2.794E-04 213.7 1027 3.048E+13 5.432E+16 0.000E+00 0.000E+00 12.7 0.000E+00 4.472E+18 1.200E+18 2.751E-04 213.6 1027 3.001E+13 5.349E+16 0.000E+00 0.000E+00 12.8 0.000E+00 4.403E+18 1.181E+18 2.709E-04 213.5 1027 2.955E+13 5.266E+16 0.000E+00 0.000E+00 12.9 0.000E+00 4.335E+18 1.163E+18 2.667E-04 213.4 1027 2.909E+13 5.185E+16 0.000E+00 0.000E+00 13.0 0.000E+00 4.268E+18 1.145E+18 2.626E-04 213.3 1027 2.864E+13 5.105E+16 0.000E+00 0.000E+00 13.1 0.000E+00 4.202E+18 1.127E+18 2.585E-04 213.3 1027 2.820E+13 5.026E+16 0.000E+00 0.000E+00 13.2 0.000E+00 4.136E+18 1.110E+18 2.545E-04 213.2 1027 2.776E+13 4.948E+16 0.000E+00 0.000E+00 13.3 0.000E+00 4.072E+18 1.092E+18 2.505E-04 213.1 1027 2.733E+13 4.871E+16 0.000E+00 0.000E+00 13.4 0.000E+00 4.009E+18 1.075E+18 2.466E-04 213.1 1027 2.690E+13 4.795E+16 0.000E+00 0.000E+00 13.5 0.000E+00 3.946E+18 1.059E+18 2.428E-04 213.0 1027 2.648E+13 4.720E+16 0.000E+00 0.000E+00 13.6 0.000E+00 3.885E+18 1.042E+18 2.390E-04 213.0 1027 2.607E+13 4.647E+16 0.000E+00 0.000E+00 13.7 0.000E+00 3.824E+18 1.026E+18 2.353E-04 212.9 1027 2.566E+13 4.574E+16 0.000E+00 0.000E+00 13.8 0.000E+00 3.764E+18 1.010E+18 2.316E-04 212.9 1027 2.526E+13 4.503E+16 0.000E+00 0.000E+00 13.9 0.000E+00 3.706E+18 9.941E+17 2.280E-04 212.8 1027 2.487E+13 4.432E+16 0.000E+00 0.000E+00 14.0 0.000E+00 3.648E+18 9.785E+17 2.244E-04 212.8 1027 2.448E+13 4.363E+16 0.000E+00 0.000E+00 14.1 0.000E+00 3.590E+18 9.632E+17 2.209E-04 212.8 1027 2.409E+13 4.295E+16 0.000E+00 0.000E+00 14.2 0.000E+00 3.534E+18 9.481E+17 2.174E-04 212.7 1027 2.372E+13 4.227E+16 0.000E+00 0.000E+00 14.3 0.000E+00 3.479E+18 9.333E+17 2.140E-04 212.7 1027 2.335E+13 4.161E+16 0.000E+00 0.000E+00 14.4 0.000E+00 3.424E+18 9.186E+17 2.107E-04 212.6 1027 2.298E+13 4.096E+16 0.000E+00 0.000E+00 14.5 0.000E+00 3.370E+18 9.042E+17 2.074E-04 212.6 1027 2.262E+13 4.032E+16 0.000E+00 0.000E+00 14.6 0.000E+00 3.318E+18 8.900E+17 2.041E-04 212.6 1027 2.226E+13 3.968E+16 0.000E+00 0.000E+00 14.7 0.000E+00 3.265E+18 8.760E+17 2.009E-04 212.5 1027 2.191E+13 3.906E+16 0.000E+00 0.000E+00 14.8 0.000E+00 3.214E+18 8.623E+17 1.978E-04 212.5 1027 2.157E+13 3.845E+16 0.000E+00 0.000E+00 14.9 0.000E+00 3.164E+18 8.487E+17 1.946E-04 212.5 1027 2.123E+13 3.784E+16 0.000E+00 0.000E+00 15.0 0.000E+00 3.114E+18 8.354E+17 1.916E-04 212.4 1027 2.090E+13 3.725E+16 0.000E+00 0.000E+00 15.1 0.000E+00 3.065E+18 8.223E+17 1.886E-04 212.4 1027 2.057E+13 3.666E+16 0.000E+00 0.000E+00 15.2 0.000E+00 3.017E+18 8.094E+17 1.856E-04 212.4 1027 2.025E+13 3.609E+16 0.000E+00 0.000E+00 15.3 0.000E+00 2.970E+18 7.967E+17 1.827E-04 212.3 1027 1.993E+13 3.552E+16 0.000E+00 0.000E+00 15.4 0.000E+00 2.923E+18 7.842E+17 1.798E-04 212.3 1027 1.962E+13 3.496E+16 0.000E+00 0.000E+00 15.5 0.000E+00 2.877E+18 7.719E+17 1.770E-04 212.2 1027 1.931E+13 3.441E+16 0.000E+00 0.000E+00 15.6 0.000E+00 2.832E+18 7.597E+17 1.742E-04 212.2 1027 1.900E+13 3.387E+16 0.000E+00 0.000E+00 15.7 0.000E+00 2.788E+18 7.478E+17 1.715E-04 212.2 1027 1.871E+13 3.334E+16 0.000E+00 0.000E+00 15.8 0.000E+00 2.744E+18 7.361E+17 1.688E-04 212.1 1027 1.841E+13 3.282E+16 0.000E+00 0.000E+00 15.9 0.000E+00 2.701E+18 7.245E+17 1.662E-04 212.1 1027 1.812E+13 3.230E+16 0.000E+00 0.000E+00 16.0 0.000E+00 2.658E+18 7.131E+17 1.635E-04 212.0 1027 1.784E+13 3.180E+16 0.000E+00 0.000E+00 16.1 0.000E+00 2.616E+18 7.019E+17 1.610E-04 212.0 1027 1.756E+13 3.130E+16 0.000E+00 0.000E+00 16.2 0.000E+00 2.575E+18 6.909E+17 1.584E-04 212.0 1027 1.728E+13 3.081E+16 0.000E+00 0.000E+00 16.3 0.000E+00 2.535E+18 6.800E+17 1.560E-04 211.9 1027 1.701E+13 3.032E+16 0.000E+00 0.000E+00 16.4 0.000E+00 2.495E+18 6.693E+17 1.535E-04 211.9 1027 1.674E+13 2.984E+16 0.000E+00 0.000E+00 16.5 0.000E+00 2.456E+18 6.588E+17 1.511E-04 211.8 1027 1.648E+13 2.938E+16 0.000E+00 0.000E+00 16.6 0.000E+00 2.417E+18 6.485E+17 1.487E-04 211.8 1027 1.622E+13 2.891E+16 0.000E+00 0.000E+00 16.7 0.000E+00 2.379E+18 6.383E+17 1.464E-04 211.8 1027 1.597E+13 2.846E+16 0.000E+00 0.000E+00 16.8 0.000E+00 2.342E+18 6.282E+17 1.441E-04 211.7 1027 1.571E+13 2.801E+16 0.000E+00 0.000E+00 16.9 0.000E+00 2.305E+18 6.183E+17 1.418E-04 211.7 1027 1.547E+13 2.757E+16 0.000E+00 0.000E+00 17.0 0.000E+00 2.269E+18 6.086E+17 1.396E-04 211.6 1027 1.522E+13 2.714E+16 0.000E+00 0.000E+00 17.1 0.000E+00 2.233E+18 5.990E+17 1.374E-04 211.6 1027 1.498E+13 2.671E+16 0.000E+00 0.000E+00 17.2 0.000E+00 2.198E+18 5.896E+17 1.352E-04 211.6 1027 1.475E+13 2.629E+16 0.000E+00 0.000E+00 17.3 0.000E+00 2.163E+18 5.803E+17 1.331E-04 211.5 1027 1.452E+13 2.587E+16 0.000E+00 0.000E+00 17.4 0.000E+00 2.129E+18 5.711E+17 1.310E-04 211.5 1027 1.429E+13 2.547E+16 0.000E+00 0.000E+00 17.5 0.000E+00 2.095E+18 5.621E+17 1.289E-04 211.5 1027 1.406E+13 2.506E+16 0.000E+00 0.000E+00 17.6 0.000E+00 2.062E+18 5.533E+17 1.269E-04 211.4 1027 1.384E+13 2.467E+16 0.000E+00 0.000E+00 17.7 0.000E+00 2.030E+18 5.445E+17 1.249E-04 211.4 1027 1.362E+13 2.428E+16 0.000E+00 0.000E+00 17.8 0.000E+00 1.998E+18 5.359E+17 1.229E-04 211.4 1027 1.341E+13 2.390E+16 0.000E+00 0.000E+00 17.9 0.000E+00 1.966E+18 5.275E+17 1.210E-04 211.3 1027 1.319E+13 2.352E+16 0.000E+00 0.000E+00 18.0 0.000E+00 1.935E+18 5.191E+17 1.191E-04 211.3 1027 1.299E+13 2.315E+16 0.000E+00 0.000E+00 18.1 0.000E+00 1.904E+18 5.109E+17 1.172E-04 211.3 1027 1.278E+13 2.278E+16 0.000E+00 0.000E+00 18.2 0.000E+00 1.874E+18 5.028E+17 1.153E-04 211.3 1027 1.258E+13 2.242E+16 0.000E+00 0.000E+00 18.3 0.000E+00 1.845E+18 4.949E+17 1.135E-04 211.2 1027 1.238E+13 2.207E+16 0.000E+00 0.000E+00 18.4 0.000E+00 1.815E+18 4.870E+17 1.117E-04 211.2 1027 1.218E+13 2.172E+16 0.000E+00 0.000E+00 18.5 0.000E+00 1.787E+18 4.793E+17 1.099E-04 211.2 1027 1.199E+13 2.137E+16 0.000E+00 0.000E+00 18.6 0.000E+00 1.758E+18 4.717E+17 1.082E-04 211.2 1027 1.180E+13 2.103E+16 0.000E+00 0.000E+00 18.7 0.000E+00 1.730E+18 4.642E+17 1.065E-04 211.1 1027 1.161E+13 2.070E+16 0.000E+00 0.000E+00 18.8 0.000E+00 1.703E+18 4.569E+17 1.048E-04 211.1 1027 1.143E+13 2.037E+16 0.000E+00 0.000E+00 18.9 0.000E+00 1.676E+18 4.496E+17 1.031E-04 211.1 1027 1.125E+13 2.005E+16 0.000E+00 0.000E+00 19.0 0.000E+00 1.649E+18 4.425E+17 1.015E-04 211.1 1027 1.107E+13 1.973E+16 0.000E+00 0.000E+00 19.1 0.000E+00 1.623E+18 4.354E+17 9.986E-05 211.1 1027 1.089E+13 1.941E+16 0.000E+00 0.000E+00 19.2 0.000E+00 1.597E+18 4.285E+17 9.827E-05 211.1 1027 1.072E+13 1.911E+16 0.000E+00 0.000E+00 19.3 0.000E+00 1.572E+18 4.217E+17 9.671E-05 211.1 1027 1.055E+13 1.880E+16 0.000E+00 0.000E+00 19.4 0.000E+00 1.547E+18 4.150E+17 9.517E-05 211.1 1027 1.038E+13 1.850E+16 0.000E+00 0.000E+00 19.5 0.000E+00 1.522E+18 4.084E+17 9.365E-05 211.1 1027 1.021E+13 1.821E+16 0.000E+00 0.000E+00 19.6 0.000E+00 1.498E+18 4.018E+17 9.216E-05 211.1 1027 1.005E+13 1.792E+16 0.000E+00 0.000E+00 19.7 0.000E+00 1.474E+18 3.954E+17 9.069E-05 211.1 1027 9.892E+12 1.763E+16 0.000E+00 0.000E+00 19.8 0.000E+00 1.450E+18 3.891E+17 8.924E-05 211.1 1027 9.734E+12 1.735E+16 0.000E+00 0.000E+00 19.9 0.000E+00 1.427E+18 3.829E+17 8.781E-05 211.1 1027 9.578E+12 1.707E+16 0.000E+00 0.000E+00 20.0 0.000E+00 1.404E+18 3.768E+17 8.641E-05 211.1 1027 9.425E+12 1.680E+16 0.000E+00 0.000E+00 20.1 0.000E+00 1.382E+18 3.707E+17 8.502E-05 211.1 1027 9.274E+12 1.653E+16 0.000E+00 0.000E+00 20.2 0.000E+00 1.360E+18 3.648E+17 8.366E-05 211.1 1027 9.125E+12 1.627E+16 0.000E+00 0.000E+00 20.3 0.000E+00 1.338E+18 3.590E+17 8.232E-05 211.1 1027 8.979E+12 1.600E+16 0.000E+00 0.000E+00 20.4 0.000E+00 1.317E+18 3.532E+17 8.100E-05 211.2 1027 8.835E+12 1.575E+16 0.000E+00 0.000E+00 20.5 0.000E+00 1.295E+18 3.475E+17 7.970E-05 211.2 1027 8.693E+12 1.550E+16 0.000E+00 0.000E+00 20.6 0.000E+00 1.275E+18 3.420E+17 7.842E-05 211.2 1027 8.554E+12 1.525E+16 0.000E+00 0.000E+00 20.7 0.000E+00 1.254E+18 3.365E+17 7.716E-05 211.2 1027 8.416E+12 1.500E+16 0.000E+00 0.000E+00 20.8 0.000E+00 1.234E+18 3.311E+17 7.592E-05 211.3 1027 8.281E+12 1.476E+16 0.000E+00 0.000E+00 20.9 0.000E+00 1.214E+18 3.257E+17 7.470E-05 211.3 1027 8.148E+12 1.452E+16 0.000E+00 0.000E+00 21.0 0.000E+00 1.195E+18 3.205E+17 7.350E-05 211.3 1027 8.017E+12 1.429E+16 0.000E+00 0.000E+00 21.1 0.000E+00 1.175E+18 3.153E+17 7.232E-05 211.4 1027 7.888E+12 1.406E+16 0.000E+00 0.000E+00 21.2 0.000E+00 1.156E+18 3.102E+17 7.115E-05 211.4 1027 7.761E+12 1.383E+16 0.000E+00 0.000E+00 21.3 0.000E+00 1.138E+18 3.052E+17 7.001E-05 211.5 1027 7.636E+12 1.361E+16 0.000E+00 0.000E+00 21.4 0.000E+00 1.119E+18 3.003E+17 6.888E-05 211.5 1027 7.513E+12 1.339E+16 0.000E+00 0.000E+00 21.5 0.000E+00 1.101E+18 2.955E+17 6.777E-05 211.6 1027 7.391E+12 1.317E+16 0.000E+00 0.000E+00 21.6 0.000E+00 1.084E+18 2.907E+17 6.667E-05 211.6 1027 7.272E+12 1.296E+16 0.000E+00 0.000E+00 21.7 0.000E+00 1.066E+18 2.860E+17 6.560E-05 211.7 1027 7.155E+12 1.275E+16 0.000E+00 0.000E+00 21.8 0.000E+00 1.049E+18 2.814E+17 6.454E-05 211.7 1027 7.039E+12 1.255E+16 0.000E+00 0.000E+00 21.9 0.000E+00 1.032E+18 2.769E+17 6.349E-05 211.8 1027 6.925E+12 1.234E+16 0.000E+00 0.000E+00 22.0 0.000E+00 1.015E+18 2.724E+17 6.247E-05 211.8 1027 6.814E+12 1.214E+16 0.000E+00 0.000E+00 22.1 0.000E+00 9.989E+17 2.680E+17 6.146E-05 211.9 1027 6.703E+12 1.195E+16 0.000E+00 0.000E+00 22.2 0.000E+00 9.827E+17 2.636E+17 6.046E-05 212.0 1027 6.595E+12 1.176E+16 0.000E+00 0.000E+00 22.3 0.000E+00 9.668E+17 2.594E+17 5.949E-05 212.0 1027 6.488E+12 1.156E+16 0.000E+00 0.000E+00 22.4 0.000E+00 9.512E+17 2.552E+17 5.852E-05 212.1 1027 6.383E+12 1.138E+16 0.000E+00 0.000E+00 22.5 0.000E+00 9.358E+17 2.510E+17 5.757E-05 212.2 1027 6.280E+12 1.119E+16 0.000E+00 0.000E+00 22.6 0.000E+00 9.206E+17 2.470E+17 5.664E-05 212.2 1027 6.178E+12 1.101E+16 0.000E+00 0.000E+00 22.7 0.000E+00 9.057E+17 2.430E+17 5.572E-05 212.3 1027 6.078E+12 1.083E+16 0.000E+00 0.000E+00 22.8 0.000E+00 8.910E+17 2.390E+17 5.482E-05 212.4 1027 5.980E+12 1.066E+16 0.000E+00 0.000E+00 22.9 0.000E+00 8.766E+17 2.352E+17 5.393E-05 212.5 1027 5.883E+12 1.049E+16 0.000E+00 0.000E+00 23.0 0.000E+00 8.624E+17 2.314E+17 5.306E-05 212.6 1027 5.787E+12 1.032E+16 0.000E+00 0.000E+00 23.1 0.000E+00 8.484E+17 2.276E+17 5.220E-05 212.7 1027 5.693E+12 1.015E+16 0.000E+00 0.000E+00 23.2 0.000E+00 8.346E+17 2.239E+17 5.135E-05 212.7 1027 5.601E+12 9.984E+15 0.000E+00 0.000E+00 23.3 0.000E+00 8.211E+17 2.203E+17 5.052E-05 212.8 1027 5.510E+12 9.822E+15 0.000E+00 0.000E+00 23.4 0.000E+00 8.078E+17 2.167E+17 4.970E-05 212.9 1027 5.421E+12 9.662E+15 0.000E+00 0.000E+00 23.5 0.000E+00 7.947E+17 2.132E+17 4.889E-05 213.0 1027 5.333E+12 9.505E+15 0.000E+00 0.000E+00 23.6 0.000E+00 7.818E+17 2.097E+17 4.810E-05 213.1 1027 5.246E+12 9.351E+15 0.000E+00 0.000E+00 23.7 0.000E+00 7.691E+17 2.063E+17 4.732E-05 213.2 1027 5.161E+12 9.199E+15 0.000E+00 0.000E+00 23.8 0.000E+00 7.566E+17 2.030E+17 4.655E-05 213.3 1027 5.077E+12 9.050E+15 0.000E+00 0.000E+00 23.9 0.000E+00 7.443E+17 1.997E+17 4.579E-05 213.4 1027 4.995E+12 8.903E+15 0.000E+00 0.000E+00 24.0 0.000E+00 7.322E+17 1.964E+17 4.505E-05 213.5 1027 4.914E+12 8.758E+15 0.000E+00 0.000E+00 24.1 0.000E+00 7.203E+17 1.932E+17 4.432E-05 213.6 1027 4.834E+12 8.616E+15 0.000E+00 0.000E+00 24.2 0.000E+00 7.086E+17 1.901E+17 4.360E-05 213.7 1027 4.755E+12 8.476E+15 0.000E+00 0.000E+00 24.3 0.000E+00 6.971E+17 1.870E+17 4.289E-05 213.9 1027 4.678E+12 8.339E+15 0.000E+00 0.000E+00 24.4 0.000E+00 6.858E+17 1.840E+17 4.219E-05 214.0 1027 4.602E+12 8.203E+15 0.000E+00 0.000E+00 24.5 0.000E+00 6.746E+17 1.810E+17 4.151E-05 214.1 1027 4.527E+12 8.070E+15 0.000E+00 0.000E+00 24.6 0.000E+00 6.637E+17 1.780E+17 4.083E-05 214.2 1027 4.454E+12 7.939E+15 0.000E+00 0.000E+00 24.7 0.000E+00 6.529E+17 1.752E+17 4.017E-05 214.3 1027 4.381E+12 7.810E+15 0.000E+00 0.000E+00 24.8 0.000E+00 6.423E+17 1.723E+17 3.952E-05 214.5 1027 4.310E+12 7.683E+15 0.000E+00 0.000E+00 24.9 0.000E+00 6.319E+17 1.695E+17 3.887E-05 214.6 1027 4.240E+12 7.558E+15 0.000E+00 0.000E+00 25.0 0.000E+00 6.216E+17 1.668E+17 3.824E-05 214.7 1027 4.171E+12 7.435E+15 0.000E+00 0.000E+00 25.1 0.000E+00 6.115E+17 1.640E+17 3.762E-05 214.8 1027 4.104E+12 7.314E+15 0.000E+00 0.000E+00 25.2 0.000E+00 6.016E+17 1.614E+17 3.701E-05 215.0 1027 4.037E+12 7.196E+15 0.000E+00 0.000E+00 25.3 0.000E+00 5.918E+17 1.588E+17 3.641E-05 215.1 1027 3.971E+12 7.079E+15 0.000E+00 0.000E+00 25.4 0.000E+00 5.822E+17 1.562E+17 3.582E-05 215.2 1027 3.907E+12 6.964E+15 0.000E+00 0.000E+00 25.5 0.000E+00 5.727E+17 1.536E+17 3.524E-05 215.4 1027 3.843E+12 6.851E+15 0.000E+00 0.000E+00 25.6 0.000E+00 5.634E+17 1.511E+17 3.466E-05 215.5 1027 3.781E+12 6.739E+15 0.000E+00 0.000E+00 25.7 0.000E+00 5.543E+17 1.487E+17 3.410E-05 215.7 1027 3.719E+12 6.630E+15 0.000E+00 0.000E+00 25.8 0.000E+00 5.453E+17 1.463E+17 3.355E-05 215.8 1027 3.659E+12 6.522E+15 0.000E+00 0.000E+00 25.9 0.000E+00 5.364E+17 1.439E+17 3.300E-05 216.0 1027 3.600E+12 6.416E+15 0.000E+00 0.000E+00 26.0 0.000E+00 5.277E+17 1.416E+17 3.247E-05 216.1 1027 3.541E+12 6.312E+15 0.000E+00 0.000E+00 26.1 0.000E+00 5.191E+17 1.393E+17 3.194E-05 216.3 1027 3.484E+12 6.210E+15 0.000E+00 0.000E+00 26.2 0.000E+00 5.107E+17 1.370E+17 3.142E-05 216.4 1027 3.427E+12 6.109E+15 0.000E+00 0.000E+00 26.3 0.000E+00 5.024E+17 1.348E+17 3.091E-05 216.6 1027 3.372E+12 6.010E+15 0.000E+00 0.000E+00 26.4 0.000E+00 4.943E+17 1.326E+17 3.041E-05 216.7 1027 3.317E+12 5.912E+15 0.000E+00 0.000E+00 26.5 0.000E+00 4.862E+17 1.304E+17 2.992E-05 216.9 1027 3.263E+12 5.816E+15 0.000E+00 0.000E+00 26.6 0.000E+00 4.784E+17 1.283E+17 2.943E-05 217.1 1027 3.210E+12 5.722E+15 0.000E+00 0.000E+00 26.7 0.000E+00 4.706E+17 1.262E+17 2.895E-05 217.2 1027 3.158E+12 5.629E+15 0.000E+00 0.000E+00 26.8 0.000E+00 4.630E+17 1.242E+17 2.848E-05 217.4 1027 3.107E+12 5.538E+15 0.000E+00 0.000E+00 26.9 0.000E+00 4.555E+17 1.222E+17 2.802E-05 217.5 1027 3.057E+12 5.448E+15 0.000E+00 0.000E+00 27.0 0.000E+00 4.481E+17 1.202E+17 2.757E-05 217.7 1027 3.007E+12 5.360E+15 0.000E+00 0.000E+00 27.1 0.000E+00 4.408E+17 1.183E+17 2.712E-05 217.9 1027 2.958E+12 5.273E+15 0.000E+00 0.000E+00 27.2 0.000E+00 4.337E+17 1.163E+17 2.668E-05 218.1 1027 2.910E+12 5.188E+15 0.000E+00 0.000E+00 27.3 0.000E+00 4.267E+17 1.145E+17 2.625E-05 218.2 1027 2.863E+12 5.104E+15 0.000E+00 0.000E+00 27.4 0.000E+00 4.198E+17 1.126E+17 2.583E-05 218.4 1027 2.817E+12 5.021E+15 0.000E+00 0.000E+00 27.5 0.000E+00 4.130E+17 1.108E+17 2.541E-05 218.6 1027 2.771E+12 4.940E+15 0.000E+00 0.000E+00 27.6 0.000E+00 4.063E+17 1.090E+17 2.500E-05 218.8 1027 2.726E+12 4.860E+15 0.000E+00 0.000E+00 27.7 0.000E+00 3.997E+17 1.072E+17 2.459E-05 219.0 1027 2.682E+12 4.781E+15 0.000E+00 0.000E+00 27.8 0.000E+00 3.933E+17 1.055E+17 2.419E-05 219.1 1027 2.639E+12 4.704E+15 0.000E+00 0.000E+00 27.9 0.000E+00 3.869E+17 1.038E+17 2.380E-05 219.3 1027 2.596E+12 4.628E+15 0.000E+00 0.000E+00 28.0 0.000E+00 3.806E+17 1.021E+17 2.342E-05 219.5 1027 2.554E+12 4.553E+15 0.000E+00 0.000E+00 28.1 0.000E+00 3.745E+17 1.005E+17 2.304E-05 219.7 1027 2.513E+12 4.480E+15 0.000E+00 0.000E+00 28.2 0.000E+00 3.685E+17 9.885E+16 2.267E-05 219.9 1027 2.473E+12 4.407E+15 0.000E+00 0.000E+00 28.3 0.000E+00 3.625E+17 9.725E+16 2.230E-05 220.1 1027 2.433E+12 4.336E+15 0.000E+00 0.000E+00 28.4 0.000E+00 3.567E+17 9.568E+16 2.194E-05 220.3 1027 2.393E+12 4.266E+15 0.000E+00 0.000E+00 28.5 0.000E+00 3.509E+17 9.414E+16 2.159E-05 220.5 1027 2.355E+12 4.197E+15 0.000E+00 0.000E+00 28.6 0.000E+00 3.453E+17 9.262E+16 2.124E-05 220.7 1027 2.317E+12 4.130E+15 0.000E+00 0.000E+00 28.7 0.000E+00 3.397E+17 9.113E+16 2.090E-05 220.9 1027 2.280E+12 4.063E+15 0.000E+00 0.000E+00 28.8 0.000E+00 3.342E+17 8.966E+16 2.056E-05 221.1 1027 2.243E+12 3.998E+15 0.000E+00 0.000E+00 28.9 0.000E+00 3.288E+17 8.822E+16 2.023E-05 221.3 1027 2.207E+12 3.933E+15 0.000E+00 0.000E+00 29.0 0.000E+00 3.235E+17 8.680E+16 1.991E-05 221.5 1027 2.171E+12 3.870E+15 0.000E+00 0.000E+00 29.1 0.000E+00 3.183E+17 8.540E+16 1.959E-05 221.7 1027 2.136E+12 3.808E+15 0.000E+00 0.000E+00 29.2 0.000E+00 3.132E+17 8.403E+16 1.927E-05 221.9 1027 2.102E+12 3.747E+15 0.000E+00 0.000E+00 29.3 0.000E+00 3.082E+17 8.268E+16 1.896E-05 222.2 1027 2.068E+12 3.686E+15 0.000E+00 0.000E+00 29.4 0.000E+00 3.032E+17 8.135E+16 1.866E-05 222.4 1027 2.035E+12 3.627E+15 0.000E+00 0.000E+00 29.5 0.000E+00 2.984E+17 8.004E+16 1.836E-05 222.6 1027 2.002E+12 3.569E+15 0.000E+00 0.000E+00 29.6 0.000E+00 2.936E+17 7.876E+16 1.806E-05 222.8 1027 1.970E+12 3.512E+15 0.000E+00 0.000E+00 29.7 0.000E+00 2.889E+17 7.750E+16 1.777E-05 223.0 1027 1.939E+12 3.455E+15 0.000E+00 0.000E+00 29.8 0.000E+00 2.842E+17 7.625E+16 1.749E-05 223.3 1027 1.907E+12 3.400E+15 0.000E+00 0.000E+00 29.9 0.000E+00 2.797E+17 7.503E+16 1.721E-05 223.5 1027 1.877E+12 3.345E+15 0.000E+00 0.000E+00 30.0 0.000E+00 2.752E+17 7.383E+16 1.693E-05 223.7 1027 1.847E+12 3.292E+15 0.000E+00 0.000E+00 30.1 0.000E+00 2.708E+17 7.265E+16 1.666E-05 223.9 1027 1.817E+12 3.239E+15 0.000E+00 0.000E+00 30.2 0.000E+00 2.665E+17 7.149E+16 1.639E-05 224.2 1027 1.788E+12 3.187E+15 0.000E+00 0.000E+00 30.3 0.000E+00 2.622E+17 7.034E+16 1.613E-05 224.4 1027 1.760E+12 3.136E+15 0.000E+00 0.000E+00 30.4 0.000E+00 2.580E+17 6.922E+16 1.587E-05 224.6 1027 1.732E+12 3.086E+15 0.000E+00 0.000E+00 30.5 0.000E+00 2.539E+17 6.811E+16 1.562E-05 224.9 1027 1.704E+12 3.037E+15 0.000E+00 0.000E+00 30.6 0.000E+00 2.498E+17 6.703E+16 1.537E-05 225.1 1027 1.677E+12 2.989E+15 0.000E+00 0.000E+00 30.7 0.000E+00 2.459E+17 6.596E+16 1.513E-05 225.4 1027 1.650E+12 2.941E+15 0.000E+00 0.000E+00 30.8 0.000E+00 2.419E+17 6.491E+16 1.489E-05 225.6 1027 1.624E+12 2.894E+15 0.000E+00 0.000E+00 30.9 0.000E+00 2.381E+17 6.387E+16 1.465E-05 225.8 1027 1.598E+12 2.848E+15 0.000E+00 0.000E+00 31.0 0.000E+00 2.343E+17 6.285E+16 1.442E-05 226.1 1027 1.572E+12 2.803E+15 0.000E+00 0.000E+00 31.1 0.000E+00 2.306E+17 6.185E+16 1.419E-05 226.3 1027 1.547E+12 2.758E+15 0.000E+00 0.000E+00 31.2 0.000E+00 2.269E+17 6.087E+16 1.396E-05 226.6 1027 1.523E+12 2.714E+15 0.000E+00 0.000E+00 31.3 0.000E+00 2.233E+17 5.990E+16 1.374E-05 226.8 1027 1.498E+12 2.671E+15 0.000E+00 0.000E+00 31.4 0.000E+00 2.198E+17 5.895E+16 1.352E-05 227.1 1027 1.475E+12 2.629E+15 0.000E+00 0.000E+00 31.5 0.000E+00 2.163E+17 5.802E+16 1.331E-05 227.3 1027 1.451E+12 2.587E+15 0.000E+00 0.000E+00 31.6 0.000E+00 2.128E+17 5.710E+16 1.309E-05 227.6 1027 1.428E+12 2.546E+15 0.000E+00 0.000E+00 31.7 0.000E+00 2.095E+17 5.619E+16 1.289E-05 227.8 1027 1.406E+12 2.505E+15 0.000E+00 0.000E+00 31.8 0.000E+00 2.061E+17 5.530E+16 1.268E-05 228.1 1027 1.383E+12 2.466E+15 0.000E+00 0.000E+00 31.9 0.000E+00 2.029E+17 5.443E+16 1.248E-05 228.4 1027 1.361E+12 2.427E+15 0.000E+00 0.000E+00 32.0 0.000E+00 1.997E+17 5.357E+16 1.228E-05 228.6 1027 1.340E+12 2.388E+15 0.000E+00 0.000E+00 32.1 0.000E+00 1.965E+17 5.272E+16 1.209E-05 228.9 1027 1.319E+12 2.351E+15 0.000E+00 0.000E+00 32.2 0.000E+00 1.934E+17 5.189E+16 1.190E-05 229.2 1027 1.298E+12 2.314E+15 0.000E+00 0.000E+00 32.3 0.000E+00 1.904E+17 5.107E+16 1.171E-05 229.4 1027 1.277E+12 2.277E+15 0.000E+00 0.000E+00 32.4 0.000E+00 1.874E+17 5.026E+16 1.153E-05 229.7 1027 1.257E+12 2.241E+15 0.000E+00 0.000E+00 32.5 0.000E+00 1.844E+17 4.947E+16 1.135E-05 230.0 1027 1.237E+12 2.206E+15 0.000E+00 0.000E+00 32.6 0.000E+00 1.815E+17 4.869E+16 1.117E-05 230.2 1027 1.218E+12 2.171E+15 0.000E+00 0.000E+00 32.7 0.000E+00 1.786E+17 4.793E+16 1.099E-05 230.5 1027 1.199E+12 2.137E+15 0.000E+00 0.000E+00 32.8 0.000E+00 1.758E+17 4.717E+16 1.082E-05 230.8 1027 1.180E+12 2.103E+15 0.000E+00 0.000E+00 32.9 0.000E+00 1.731E+17 4.643E+16 1.065E-05 231.1 1027 1.161E+12 2.070E+15 0.000E+00 0.000E+00 33.0 0.000E+00 1.704E+17 4.570E+16 1.048E-05 231.3 1027 1.143E+12 2.038E+15 0.000E+00 0.000E+00 33.1 0.000E+00 1.677E+17 4.498E+16 1.032E-05 231.6 1027 1.125E+12 2.006E+15 0.000E+00 0.000E+00 33.2 0.000E+00 1.650E+17 4.428E+16 1.015E-05 231.9 1027 1.108E+12 1.974E+15 0.000E+00 0.000E+00 33.3 0.000E+00 1.625E+17 4.358E+16 9.995E-06 232.2 1027 1.090E+12 1.943E+15 0.000E+00 0.000E+00 33.4 0.000E+00 1.599E+17 4.290E+16 9.839E-06 232.5 1027 1.073E+12 1.913E+15 0.000E+00 0.000E+00 33.5 0.000E+00 1.574E+17 4.223E+16 9.685E-06 232.8 1027 1.056E+12 1.883E+15 0.000E+00 0.000E+00 33.6 0.000E+00 1.549E+17 4.157E+16 9.533E-06 233.1 1027 1.040E+12 1.853E+15 0.000E+00 0.000E+00 33.7 0.000E+00 1.525E+17 4.092E+16 9.384E-06 233.4 1027 1.024E+12 1.824E+15 0.000E+00 0.000E+00 33.8 0.000E+00 1.501E+17 4.028E+16 9.237E-06 233.7 1027 1.008E+12 1.796E+15 0.000E+00 0.000E+00 33.9 0.000E+00 1.478E+17 3.965E+16 9.093E-06 234.0 1027 9.918E+11 1.768E+15 0.000E+00 0.000E+00 34.0 0.000E+00 1.455E+17 3.903E+16 8.951E-06 234.3 1027 9.764E+11 1.740E+15 0.000E+00 0.000E+00 34.1 0.000E+00 1.432E+17 3.842E+16 8.812E-06 234.6 1027 9.612E+11 1.713E+15 0.000E+00 0.000E+00 34.2 0.000E+00 1.410E+17 3.783E+16 8.675E-06 234.9 1027 9.462E+11 1.687E+15 0.000E+00 0.000E+00 34.3 0.000E+00 1.388E+17 3.724E+16 8.540E-06 235.2 1027 9.315E+11 1.660E+15 0.000E+00 0.000E+00 34.4 0.000E+00 1.366E+17 3.666E+16 8.407E-06 235.5 1027 9.170E+11 1.635E+15 0.000E+00 0.000E+00 34.5 0.000E+00 1.345E+17 3.609E+16 8.277E-06 235.8 1027 9.028E+11 1.609E+15 0.000E+00 0.000E+00 34.6 0.000E+00 1.324E+17 3.553E+16 8.148E-06 236.1 1027 8.888E+11 1.584E+15 0.000E+00 0.000E+00 34.7 0.000E+00 1.304E+17 3.498E+16 8.022E-06 236.4 1027 8.750E+11 1.560E+15 0.000E+00 0.000E+00 34.8 0.000E+00 1.284E+17 3.444E+16 7.898E-06 236.7 1027 8.614E+11 1.535E+15 0.000E+00 0.000E+00 34.9 0.000E+00 1.264E+17 3.390E+16 7.776E-06 237.1 1027 8.481E+11 1.512E+15 0.000E+00 0.000E+00 35.0 0.000E+00 1.244E+17 3.338E+16 7.656E-06 237.4 1027 8.350E+11 1.488E+15 0.000E+00 0.000E+00 35.1 0.000E+00 1.225E+17 3.287E+16 7.537E-06 237.7 1027 8.221E+11 1.465E+15 0.000E+00 0.000E+00 35.2 0.000E+00 1.206E+17 3.236E+16 7.421E-06 238.0 1027 8.095E+11 1.443E+15 0.000E+00 0.000E+00 35.3 0.000E+00 1.188E+17 3.186E+16 7.307E-06 238.3 1027 7.970E+11 1.421E+15 0.000E+00 0.000E+00 35.4 0.000E+00 1.169E+17 3.137E+16 7.195E-06 238.7 1027 7.847E+11 1.399E+15 0.000E+00 0.000E+00 35.5 0.000E+00 1.151E+17 3.089E+16 7.084E-06 239.0 1027 7.727E+11 1.377E+15 0.000E+00 0.000E+00 35.6 0.000E+00 1.134E+17 3.041E+16 6.975E-06 239.3 1027 7.608E+11 1.356E+15 0.000E+00 0.000E+00 35.7 0.000E+00 1.116E+17 2.995E+16 6.868E-06 239.6 1027 7.491E+11 1.335E+15 0.000E+00 0.000E+00 35.8 0.000E+00 1.099E+17 2.949E+16 6.763E-06 239.9 1027 7.377E+11 1.315E+15 0.000E+00 0.000E+00 35.9 0.000E+00 1.082E+17 2.904E+16 6.660E-06 240.3 1027 7.264E+11 1.295E+15 0.000E+00 0.000E+00 36.0 0.000E+00 1.066E+17 2.859E+16 6.558E-06 240.6 1027 7.153E+11 1.275E+15 0.000E+00 0.000E+00 36.1 0.000E+00 1.050E+17 2.816E+16 6.458E-06 240.9 1027 7.044E+11 1.256E+15 0.000E+00 0.000E+00 36.2 0.000E+00 1.034E+17 2.773E+16 6.359E-06 241.3 1027 6.936E+11 1.236E+15 0.000E+00 0.000E+00 36.3 0.000E+00 1.018E+17 2.731E+16 6.263E-06 241.6 1027 6.831E+11 1.218E+15 0.000E+00 0.000E+00 36.4 0.000E+00 1.002E+17 2.689E+16 6.167E-06 241.9 1027 6.727E+11 1.199E+15 0.000E+00 0.000E+00 36.5 0.000E+00 9.872E+16 2.648E+16 6.074E-06 242.2 1027 6.625E+11 1.181E+15 0.000E+00 0.000E+00 36.6 0.000E+00 9.722E+16 2.608E+16 5.982E-06 242.6 1027 6.524E+11 1.163E+15 0.000E+00 0.000E+00 36.7 0.000E+00 9.575E+16 2.569E+16 5.891E-06 242.9 1027 6.426E+11 1.145E+15 0.000E+00 0.000E+00 36.8 0.000E+00 9.430E+16 2.530E+16 5.802E-06 243.2 1027 6.328E+11 1.128E+15 0.000E+00 0.000E+00 36.9 0.000E+00 9.288E+16 2.492E+16 5.714E-06 243.5 1027 6.233E+11 1.111E+15 0.000E+00 0.000E+00 37.0 0.000E+00 9.148E+16 2.454E+16 5.628E-06 243.9 1027 6.139E+11 1.094E+15 0.000E+00 0.000E+00 37.1 0.000E+00 9.010E+16 2.417E+16 5.543E-06 244.2 1027 6.046E+11 1.078E+15 0.000E+00 0.000E+00 37.2 0.000E+00 8.875E+16 2.381E+16 5.460E-06 244.5 1027 5.955E+11 1.062E+15 0.000E+00 0.000E+00 37.3 0.000E+00 8.741E+16 2.345E+16 5.378E-06 244.9 1027 5.866E+11 1.046E+15 0.000E+00 0.000E+00 37.4 0.000E+00 8.610E+16 2.310E+16 5.297E-06 245.2 1027 5.778E+11 1.030E+15 0.000E+00 0.000E+00 37.5 0.000E+00 8.481E+16 2.275E+16 5.218E-06 245.5 1027 5.692E+11 1.014E+15 0.000E+00 0.000E+00 37.6 0.000E+00 8.354E+16 2.241E+16 5.140E-06 245.8 1027 5.606E+11 9.993E+14 0.000E+00 0.000E+00 37.7 0.000E+00 8.230E+16 2.208E+16 5.063E-06 246.2 1027 5.523E+11 9.844E+14 0.000E+00 0.000E+00 37.8 0.000E+00 8.107E+16 2.175E+16 4.988E-06 246.5 1027 5.440E+11 9.697E+14 0.000E+00 0.000E+00 37.9 0.000E+00 7.986E+16 2.143E+16 4.914E-06 246.8 1027 5.359E+11 9.553E+14 0.000E+00 0.000E+00 38.0 0.000E+00 7.868E+16 2.111E+16 4.841E-06 247.1 1027 5.280E+11 9.411E+14 0.000E+00 0.000E+00 38.1 0.000E+00 7.751E+16 2.079E+16 4.769E-06 247.5 1027 5.201E+11 9.271E+14 0.000E+00 0.000E+00 38.2 0.000E+00 7.636E+16 2.049E+16 4.698E-06 247.8 1027 5.124E+11 9.134E+14 0.000E+00 0.000E+00 38.3 0.000E+00 7.523E+16 2.018E+16 4.629E-06 248.1 1027 5.049E+11 8.999E+14 0.000E+00 0.000E+00 38.4 0.000E+00 7.412E+16 1.988E+16 4.560E-06 248.4 1027 4.974E+11 8.866E+14 0.000E+00 0.000E+00 38.5 0.000E+00 7.303E+16 1.959E+16 4.493E-06 248.7 1027 4.901E+11 8.735E+14 0.000E+00 0.000E+00 38.6 0.000E+00 7.195E+16 1.930E+16 4.427E-06 249.1 1027 4.828E+11 8.606E+14 0.000E+00 0.000E+00 38.7 0.000E+00 7.089E+16 1.902E+16 4.362E-06 249.4 1027 4.757E+11 8.480E+14 0.000E+00 0.000E+00 38.8 0.000E+00 6.985E+16 1.874E+16 4.298E-06 249.7 1027 4.688E+11 8.356E+14 0.000E+00 0.000E+00 38.9 0.000E+00 6.883E+16 1.847E+16 4.235E-06 250.0 1027 4.619E+11 8.233E+14 0.000E+00 0.000E+00 39.0 0.000E+00 6.782E+16 1.820E+16 4.173E-06 250.3 1027 4.551E+11 8.113E+14 0.000E+00 0.000E+00 39.1 0.000E+00 6.683E+16 1.793E+16 4.112E-06 250.6 1027 4.485E+11 7.994E+14 0.000E+00 0.000E+00 39.2 0.000E+00 6.586E+16 1.767E+16 4.052E-06 250.9 1027 4.420E+11 7.878E+14 0.000E+00 0.000E+00 39.3 0.000E+00 6.490E+16 1.741E+16 3.993E-06 251.3 1027 4.355E+11 7.763E+14 0.000E+00 0.000E+00 39.4 0.000E+00 6.396E+16 1.716E+16 3.935E-06 251.6 1027 4.292E+11 7.650E+14 0.000E+00 0.000E+00 39.5 0.000E+00 6.303E+16 1.691E+16 3.878E-06 251.9 1027 4.230E+11 7.539E+14 0.000E+00 0.000E+00 39.6 0.000E+00 6.212E+16 1.666E+16 3.822E-06 252.2 1027 4.169E+11 7.430E+14 0.000E+00 0.000E+00 39.7 0.000E+00 6.122E+16 1.642E+16 3.767E-06 252.5 1027 4.108E+11 7.323E+14 0.000E+00 0.000E+00 39.8 0.000E+00 6.034E+16 1.619E+16 3.712E-06 252.8 1027 4.049E+11 7.217E+14 0.000E+00 0.000E+00 39.9 0.000E+00 5.947E+16 1.595E+16 3.659E-06 253.1 1027 3.991E+11 7.113E+14 0.000E+00 0.000E+00 40.0 0.000E+00 5.862E+16 1.572E+16 3.606E-06 253.4 1027 3.933E+11 7.011E+14 0.000E+00 0.000E+00 40.1 0.000E+00 5.777E+16 1.550E+16 3.555E-06 253.6 1027 3.877E+11 6.911E+14 0.000E+00 0.000E+00 40.2 0.000E+00 5.695E+16 1.528E+16 3.504E-06 253.9 1027 3.822E+11 6.812E+14 0.000E+00 0.000E+00 40.3 0.000E+00 5.613E+16 1.506E+16 3.454E-06 254.2 1027 3.767E+11 6.714E+14 0.000E+00 0.000E+00 40.4 0.000E+00 5.533E+16 1.484E+16 3.404E-06 254.5 1027 3.713E+11 6.619E+14 0.000E+00 0.000E+00 40.5 0.000E+00 5.455E+16 1.463E+16 3.356E-06 254.8 1027 3.660E+11 6.524E+14 0.000E+00 0.000E+00 40.6 0.000E+00 5.377E+16 1.442E+16 3.308E-06 255.1 1027 3.608E+11 6.432E+14 0.000E+00 0.000E+00 40.7 0.000E+00 5.301E+16 1.422E+16 3.261E-06 255.3 1027 3.557E+11 6.341E+14 0.000E+00 0.000E+00 40.8 0.000E+00 5.226E+16 1.402E+16 3.215E-06 255.6 1027 3.507E+11 6.251E+14 0.000E+00 0.000E+00 40.9 0.000E+00 5.152E+16 1.382E+16 3.170E-06 255.9 1027 3.457E+11 6.162E+14 0.000E+00 0.000E+00 41.0 0.000E+00 5.079E+16 1.363E+16 3.125E-06 256.1 1027 3.409E+11 6.076E+14 0.000E+00 0.000E+00 41.1 0.000E+00 5.008E+16 1.343E+16 3.081E-06 256.4 1027 3.361E+11 5.990E+14 0.000E+00 0.000E+00 41.2 0.000E+00 4.937E+16 1.325E+16 3.038E-06 256.6 1027 3.313E+11 5.906E+14 0.000E+00 0.000E+00 41.3 0.000E+00 4.868E+16 1.306E+16 2.995E-06 256.9 1027 3.267E+11 5.823E+14 0.000E+00 0.000E+00 41.4 0.000E+00 4.800E+16 1.288E+16 2.953E-06 257.1 1027 3.221E+11 5.742E+14 0.000E+00 0.000E+00 41.5 0.000E+00 4.733E+16 1.270E+16 2.912E-06 257.4 1027 3.176E+11 5.662E+14 0.000E+00 0.000E+00 41.6 0.000E+00 4.667E+16 1.252E+16 2.872E-06 257.6 1027 3.132E+11 5.583E+14 0.000E+00 0.000E+00 41.7 0.000E+00 4.602E+16 1.235E+16 2.832E-06 257.9 1027 3.089E+11 5.505E+14 0.000E+00 0.000E+00 41.8 0.000E+00 4.539E+16 1.218E+16 2.792E-06 258.1 1027 3.046E+11 5.429E+14 0.000E+00 0.000E+00 41.9 0.000E+00 4.476E+16 1.201E+16 2.754E-06 258.3 1027 3.003E+11 5.354E+14 0.000E+00 0.000E+00 42.0 0.000E+00 4.414E+16 1.184E+16 2.716E-06 258.6 1027 2.962E+11 5.280E+14 0.000E+00 0.000E+00 42.1 0.000E+00 4.353E+16 1.168E+16 2.678E-06 258.8 1027 2.921E+11 5.207E+14 0.000E+00 0.000E+00 42.2 0.000E+00 4.293E+16 1.152E+16 2.641E-06 259.0 1027 2.881E+11 5.135E+14 0.000E+00 0.000E+00 42.3 0.000E+00 4.234E+16 1.136E+16 2.605E-06 259.2 1027 2.841E+11 5.065E+14 0.000E+00 0.000E+00 42.4 0.000E+00 4.176E+16 1.120E+16 2.569E-06 259.4 1027 2.802E+11 4.995E+14 0.000E+00 0.000E+00 42.5 0.000E+00 4.119E+16 1.105E+16 2.534E-06 259.6 1027 2.764E+11 4.927E+14 0.000E+00 0.000E+00 42.6 0.000E+00 4.063E+16 1.090E+16 2.500E-06 259.8 1027 2.726E+11 4.860E+14 0.000E+00 0.000E+00 42.7 0.000E+00 4.008E+16 1.075E+16 2.466E-06 260.0 1027 2.689E+11 4.794E+14 0.000E+00 0.000E+00 42.8 0.000E+00 3.953E+16 1.060E+16 2.432E-06 260.2 1027 2.653E+11 4.728E+14 0.000E+00 0.000E+00 42.9 0.000E+00 3.900E+16 1.046E+16 2.399E-06 260.4 1027 2.617E+11 4.664E+14 0.000E+00 0.000E+00 43.0 0.000E+00 3.847E+16 1.032E+16 2.367E-06 260.6 1027 2.581E+11 4.601E+14 0.000E+00 0.000E+00 43.1 0.000E+00 3.795E+16 1.018E+16 2.335E-06 260.7 1027 2.547E+11 4.539E+14 0.000E+00 0.000E+00 43.2 0.000E+00 3.744E+16 1.004E+16 2.303E-06 260.9 1027 2.512E+11 4.478E+14 0.000E+00 0.000E+00 43.3 0.000E+00 3.693E+16 9.908E+15 2.272E-06 261.1 1027 2.479E+11 4.418E+14 0.000E+00 0.000E+00 43.4 0.000E+00 3.644E+16 9.776E+15 2.242E-06 261.2 1027 2.445E+11 4.359E+14 0.000E+00 0.000E+00 43.5 0.000E+00 3.595E+16 9.645E+15 2.212E-06 261.4 1027 2.413E+11 4.300E+14 0.000E+00 0.000E+00 43.6 0.000E+00 3.547E+16 9.516E+15 2.182E-06 261.5 1027 2.380E+11 4.243E+14 0.000E+00 0.000E+00 43.7 0.000E+00 3.500E+16 9.389E+15 2.153E-06 261.7 1027 2.349E+11 4.186E+14 0.000E+00 0.000E+00 43.8 0.000E+00 3.453E+16 9.265E+15 2.125E-06 261.8 1027 2.318E+11 4.131E+14 0.000E+00 0.000E+00 43.9 0.000E+00 3.408E+16 9.142E+15 2.097E-06 261.9 1027 2.287E+11 4.076E+14 0.000E+00 0.000E+00 44.0 0.000E+00 3.363E+16 9.021E+15 2.069E-06 262.0 1027 2.257E+11 4.022E+14 0.000E+00 0.000E+00 44.1 0.000E+00 3.318E+16 8.902E+15 2.042E-06 262.2 1027 2.227E+11 3.969E+14 0.000E+00 0.000E+00 44.2 0.000E+00 3.275E+16 8.785E+15 2.015E-06 262.3 1027 2.197E+11 3.917E+14 0.000E+00 0.000E+00 44.3 0.000E+00 3.232E+16 8.669E+15 1.988E-06 262.4 1027 2.169E+11 3.865E+14 0.000E+00 0.000E+00 44.4 0.000E+00 3.189E+16 8.556E+15 1.962E-06 262.5 1027 2.140E+11 3.815E+14 0.000E+00 0.000E+00 44.5 0.000E+00 3.147E+16 8.444E+15 1.936E-06 262.6 1027 2.112E+11 3.765E+14 0.000E+00 0.000E+00 44.6 0.000E+00 3.106E+16 8.333E+15 1.911E-06 262.6 1027 2.085E+11 3.716E+14 0.000E+00 0.000E+00 44.7 0.000E+00 3.066E+16 8.225E+15 1.886E-06 262.7 1027 2.057E+11 3.667E+14 0.000E+00 0.000E+00 44.8 0.000E+00 3.026E+16 8.118E+15 1.862E-06 262.8 1027 2.031E+11 3.620E+14 0.000E+00 0.000E+00 44.9 0.000E+00 2.987E+16 8.013E+15 1.838E-06 262.8 1027 2.004E+11 3.573E+14 0.000E+00 0.000E+00 45.0 0.000E+00 2.948E+16 7.909E+15 1.814E-06 262.9 1027 1.978E+11 3.527E+14 0.000E+00 0.000E+00 45.1 0.000E+00 2.910E+16 7.807E+15 1.791E-06 262.9 1027 1.953E+11 3.481E+14 0.000E+00 0.000E+00 45.2 0.000E+00 2.873E+16 7.707E+15 1.767E-06 263.0 1027 1.928E+11 3.436E+14 0.000E+00 0.000E+00 45.3 0.000E+00 2.836E+16 7.608E+15 1.745E-06 263.0 1027 1.903E+11 3.392E+14 0.000E+00 0.000E+00 45.4 0.000E+00 2.800E+16 7.510E+15 1.722E-06 263.0 1027 1.879E+11 3.349E+14 0.000E+00 0.000E+00 45.5 0.000E+00 2.764E+16 7.414E+15 1.700E-06 263.1 1027 1.855E+11 3.306E+14 0.000E+00 0.000E+00 45.6 0.000E+00 2.728E+16 7.320E+15 1.679E-06 263.1 1027 1.831E+11 3.264E+14 0.000E+00 0.000E+00 45.7 0.000E+00 2.694E+16 7.226E+15 1.657E-06 263.1 1027 1.808E+11 3.222E+14 0.000E+00 0.000E+00 45.8 0.000E+00 2.659E+16 7.134E+15 1.636E-06 263.1 1027 1.785E+11 3.181E+14 0.000E+00 0.000E+00 45.9 0.000E+00 2.626E+16 7.044E+15 1.615E-06 263.1 1027 1.762E+11 3.141E+14 0.000E+00 0.000E+00 46.0 0.000E+00 2.592E+16 6.955E+15 1.595E-06 263.1 1027 1.740E+11 3.101E+14 0.000E+00 0.000E+00 46.1 0.000E+00 2.560E+16 6.867E+15 1.575E-06 263.0 1027 1.718E+11 3.062E+14 0.000E+00 0.000E+00 46.2 0.000E+00 2.527E+16 6.780E+15 1.555E-06 263.0 1027 1.696E+11 3.023E+14 0.000E+00 0.000E+00 46.3 0.000E+00 2.496E+16 6.695E+15 1.535E-06 263.0 1027 1.675E+11 2.985E+14 0.000E+00 0.000E+00 46.4 0.000E+00 2.464E+16 6.611E+15 1.516E-06 262.9 1027 1.654E+11 2.948E+14 0.000E+00 0.000E+00 46.5 0.000E+00 2.433E+16 6.528E+15 1.497E-06 262.9 1027 1.633E+11 2.911E+14 0.000E+00 0.000E+00 46.6 0.000E+00 2.403E+16 6.446E+15 1.478E-06 262.9 1027 1.612E+11 2.874E+14 0.000E+00 0.000E+00 46.7 0.000E+00 2.373E+16 6.365E+15 1.460E-06 262.8 1027 1.592E+11 2.838E+14 0.000E+00 0.000E+00 46.8 0.000E+00 2.343E+16 6.286E+15 1.442E-06 262.7 1027 1.572E+11 2.803E+14 0.000E+00 0.000E+00 46.9 0.000E+00 2.314E+16 6.207E+15 1.424E-06 262.7 1027 1.553E+11 2.768E+14 0.000E+00 0.000E+00 47.0 0.000E+00 2.285E+16 6.130E+15 1.406E-06 262.6 1027 1.533E+11 2.733E+14 0.000E+00 0.000E+00 47.1 0.000E+00 2.257E+16 6.054E+15 1.388E-06 262.5 1027 1.514E+11 2.699E+14 0.000E+00 0.000E+00 47.2 0.000E+00 2.229E+16 5.979E+15 1.371E-06 262.4 1027 1.496E+11 2.666E+14 0.000E+00 0.000E+00 47.3 0.000E+00 2.201E+16 5.905E+15 1.354E-06 262.3 1027 1.477E+11 2.633E+14 0.000E+00 0.000E+00 47.4 0.000E+00 2.174E+16 5.831E+15 1.337E-06 262.2 1027 1.459E+11 2.600E+14 0.000E+00 0.000E+00 47.5 0.000E+00 2.147E+16 5.759E+15 1.321E-06 262.1 1027 1.441E+11 2.568E+14 0.000E+00 0.000E+00 47.6 0.000E+00 2.120E+16 5.688E+15 1.305E-06 262.0 1027 1.423E+11 2.536E+14 0.000E+00 0.000E+00 47.7 0.000E+00 2.094E+16 5.618E+15 1.288E-06 261.9 1027 1.405E+11 2.505E+14 0.000E+00 0.000E+00 47.8 0.000E+00 2.068E+16 5.549E+15 1.273E-06 261.8 1027 1.388E+11 2.474E+14 0.000E+00 0.000E+00 47.9 0.000E+00 2.043E+16 5.480E+15 1.257E-06 261.7 1027 1.371E+11 2.444E+14 0.000E+00 0.000E+00 48.0 0.000E+00 2.018E+16 5.413E+15 1.241E-06 261.6 1027 1.354E+11 2.413E+14 0.000E+00 0.000E+00 48.1 0.000E+00 1.993E+16 5.346E+15 1.226E-06 261.4 1027 1.337E+11 2.384E+14 0.000E+00 0.000E+00 48.2 0.000E+00 1.968E+16 5.281E+15 1.211E-06 261.3 1027 1.321E+11 2.355E+14 0.000E+00 0.000E+00 48.3 0.000E+00 1.944E+16 5.216E+15 1.196E-06 261.2 1027 1.305E+11 2.326E+14 0.000E+00 0.000E+00 48.4 0.000E+00 1.920E+16 5.152E+15 1.182E-06 261.0 1027 1.289E+11 2.297E+14 0.000E+00 0.000E+00 48.5 0.000E+00 1.897E+16 5.089E+15 1.167E-06 260.9 1027 1.273E+11 2.269E+14 0.000E+00 0.000E+00 48.6 0.000E+00 1.874E+16 5.027E+15 1.153E-06 260.7 1027 1.257E+11 2.241E+14 0.000E+00 0.000E+00 48.7 0.000E+00 1.851E+16 4.965E+15 1.139E-06 260.6 1027 1.242E+11 2.214E+14 0.000E+00 0.000E+00 48.8 0.000E+00 1.828E+16 4.905E+15 1.125E-06 260.4 1027 1.227E+11 2.187E+14 0.000E+00 0.000E+00 48.9 0.000E+00 1.806E+16 4.845E+15 1.111E-06 260.2 1027 1.212E+11 2.160E+14 0.000E+00 0.000E+00 49.0 0.000E+00 1.784E+16 4.786E+15 1.098E-06 260.1 1027 1.197E+11 2.134E+14 0.000E+00 0.000E+00 49.1 0.000E+00 1.762E+16 4.727E+15 1.084E-06 259.9 1027 1.182E+11 2.108E+14 0.000E+00 0.000E+00 49.2 0.000E+00 1.741E+16 4.670E+15 1.071E-06 259.7 1027 1.168E+11 2.082E+14 0.000E+00 0.000E+00 49.3 0.000E+00 1.719E+16 4.613E+15 1.058E-06 259.5 1027 1.154E+11 2.057E+14 0.000E+00 0.000E+00 49.4 0.000E+00 1.698E+16 4.556E+15 1.045E-06 259.4 1027 1.140E+11 2.032E+14 0.000E+00 0.000E+00 49.5 0.000E+00 1.678E+16 4.501E+15 1.032E-06 259.2 1027 1.126E+11 2.007E+14 0.000E+00 0.000E+00 49.6 0.000E+00 1.657E+16 4.446E+15 1.020E-06 259.0 1027 1.112E+11 1.982E+14 0.000E+00 0.000E+00 49.7 0.000E+00 1.637E+16 4.392E+15 1.007E-06 258.8 1027 1.099E+11 1.958E+14 0.000E+00 0.000E+00 49.8 0.000E+00 1.617E+16 4.339E+15 9.950E-07 258.6 1027 1.085E+11 1.935E+14 0.000E+00 0.000E+00 49.9 0.000E+00 1.598E+16 4.286E+15 9.829E-07 258.4 1027 1.072E+11 1.911E+14 0.000E+00 0.000E+00 50.0 0.000E+00 1.578E+16 4.234E+15 9.710E-07 258.2 1027 1.059E+11 1.888E+14 0.000E+00 0.000E+00 50.1 0.000E+00 1.559E+16 4.182E+15 9.592E-07 258.0 1027 1.046E+11 1.865E+14 0.000E+00 0.000E+00 50.2 0.000E+00 1.540E+16 4.132E+15 9.475E-07 257.8 1027 1.033E+11 1.842E+14 0.000E+00 0.000E+00 50.3 0.000E+00 1.521E+16 4.081E+15 9.360E-07 257.6 1027 1.021E+11 1.820E+14 0.000E+00 0.000E+00 50.4 0.000E+00 1.503E+16 4.032E+15 9.246E-07 257.4 1027 1.009E+11 1.798E+14 0.000E+00 0.000E+00 50.5 0.000E+00 1.485E+16 3.983E+15 9.134E-07 257.1 1027 9.963E+10 1.776E+14 0.000E+00 0.000E+00 50.6 0.000E+00 1.467E+16 3.934E+15 9.023E-07 256.9 1027 9.842E+10 1.754E+14 0.000E+00 0.000E+00 50.7 0.000E+00 1.449E+16 3.887E+15 8.913E-07 256.7 1027 9.722E+10 1.733E+14 0.000E+00 0.000E+00 50.8 0.000E+00 1.431E+16 3.839E+15 8.805E-07 256.5 1027 9.604E+10 1.712E+14 0.000E+00 0.000E+00 50.9 0.000E+00 1.414E+16 3.793E+15 8.698E-07 256.3 1027 9.487E+10 1.691E+14 0.000E+00 0.000E+00 51.0 0.000E+00 1.397E+16 3.747E+15 8.592E-07 256.0 1027 9.372E+10 1.670E+14 0.000E+00 0.000E+00 51.1 0.000E+00 1.380E+16 3.701E+15 8.488E-07 255.8 1027 9.258E+10 1.650E+14 0.000E+00 0.000E+00 51.2 0.000E+00 1.363E+16 3.656E+15 8.385E-07 255.6 1027 9.145E+10 1.630E+14 0.000E+00 0.000E+00 51.3 0.000E+00 1.346E+16 3.611E+15 8.283E-07 255.3 1027 9.034E+10 1.610E+14 0.000E+00 0.000E+00 51.4 0.000E+00 1.330E+16 3.568E+15 8.182E-07 255.1 1027 8.924E+10 1.591E+14 0.000E+00 0.000E+00 51.5 0.000E+00 1.314E+16 3.524E+15 8.082E-07 254.9 1027 8.815E+10 1.571E+14 0.000E+00 0.000E+00 51.6 0.000E+00 1.298E+16 3.481E+15 7.984E-07 254.6 1027 8.708E+10 1.552E+14 0.000E+00 0.000E+00 51.7 0.000E+00 1.282E+16 3.439E+15 7.886E-07 254.4 1027 8.602E+10 1.533E+14 0.000E+00 0.000E+00 51.8 0.000E+00 1.266E+16 3.397E+15 7.790E-07 254.1 1027 8.497E+10 1.515E+14 0.000E+00 0.000E+00 51.9 0.000E+00 1.251E+16 3.355E+15 7.695E-07 253.9 1027 8.394E+10 1.496E+14 0.000E+00 0.000E+00 52.0 0.000E+00 1.236E+16 3.315E+15 7.601E-07 253.7 1027 8.291E+10 1.478E+14 0.000E+00 0.000E+00 52.1 0.000E+00 1.220E+16 3.274E+15 7.509E-07 253.4 1027 8.190E+10 1.460E+14 0.000E+00 0.000E+00 52.2 0.000E+00 1.206E+16 3.234E+15 7.417E-07 253.2 1027 8.090E+10 1.442E+14 0.000E+00 0.000E+00 52.3 0.000E+00 1.191E+16 3.195E+15 7.326E-07 252.9 1027 7.991E+10 1.424E+14 0.000E+00 0.000E+00 52.4 0.000E+00 1.176E+16 3.155E+15 7.237E-07 252.7 1027 7.893E+10 1.407E+14 0.000E+00 0.000E+00 52.5 0.000E+00 1.162E+16 3.117E+15 7.148E-07 252.4 1027 7.797E+10 1.390E+14 0.000E+00 0.000E+00 52.6 0.000E+00 1.148E+16 3.079E+15 7.061E-07 252.2 1027 7.701E+10 1.373E+14 0.000E+00 0.000E+00 52.7 0.000E+00 1.134E+16 3.041E+15 6.974E-07 251.9 1027 7.607E+10 1.356E+14 0.000E+00 0.000E+00 52.8 0.000E+00 1.120E+16 3.004E+15 6.889E-07 251.7 1027 7.514E+10 1.339E+14 0.000E+00 0.000E+00 52.9 0.000E+00 1.106E+16 2.967E+15 6.804E-07 251.4 1027 7.421E+10 1.323E+14 0.000E+00 0.000E+00 53.0 0.000E+00 1.092E+16 2.930E+15 6.721E-07 251.2 1027 7.330E+10 1.307E+14 0.000E+00 0.000E+00 53.1 0.000E+00 1.079E+16 2.894E+15 6.638E-07 250.9 1027 7.240E+10 1.291E+14 0.000E+00 0.000E+00 53.2 0.000E+00 1.066E+16 2.859E+15 6.556E-07 250.6 1027 7.151E+10 1.275E+14 0.000E+00 0.000E+00 53.3 0.000E+00 1.053E+16 2.824E+15 6.476E-07 250.4 1027 7.063E+10 1.259E+14 0.000E+00 0.000E+00 53.4 0.000E+00 1.040E+16 2.789E+15 6.396E-07 250.1 1027 6.976E+10 1.243E+14 0.000E+00 0.000E+00 53.5 0.000E+00 1.027E+16 2.754E+15 6.317E-07 249.9 1027 6.890E+10 1.228E+14 0.000E+00 0.000E+00 53.6 0.000E+00 1.014E+16 2.720E+15 6.239E-07 249.6 1027 6.805E+10 1.213E+14 0.000E+00 0.000E+00 53.7 0.000E+00 1.002E+16 2.687E+15 6.162E-07 249.4 1027 6.721E+10 1.198E+14 0.000E+00 0.000E+00 53.8 0.000E+00 9.891E+15 2.654E+15 6.086E-07 249.1 1027 6.638E+10 1.183E+14 0.000E+00 0.000E+00 53.9 0.000E+00 9.769E+15 2.621E+15 6.010E-07 248.9 1027 6.556E+10 1.168E+14 0.000E+00 0.000E+00 54.0 0.000E+00 9.648E+15 2.588E+15 5.936E-07 248.6 1027 6.474E+10 1.154E+14 0.000E+00 0.000E+00 54.1 0.000E+00 9.528E+15 2.556E+15 5.862E-07 248.4 1027 6.394E+10 1.140E+14 0.000E+00 0.000E+00 54.2 0.000E+00 9.410E+15 2.524E+15 5.789E-07 248.1 1027 6.315E+10 1.126E+14 0.000E+00 0.000E+00 54.3 0.000E+00 9.293E+15 2.493E+15 5.717E-07 247.8 1027 6.236E+10 1.112E+14 0.000E+00 0.000E+00 54.4 0.000E+00 9.177E+15 2.462E+15 5.646E-07 247.6 1027 6.158E+10 1.098E+14 0.000E+00 0.000E+00 54.5 0.000E+00 9.063E+15 2.431E+15 5.576E-07 247.3 1027 6.082E+10 1.084E+14 0.000E+00 0.000E+00 54.6 0.000E+00 8.950E+15 2.401E+15 5.506E-07 247.1 1027 6.006E+10 1.071E+14 0.000E+00 0.000E+00 54.7 0.000E+00 8.838E+15 2.371E+15 5.437E-07 246.8 1027 5.931E+10 1.057E+14 0.000E+00 0.000E+00 54.8 0.000E+00 8.727E+15 2.341E+15 5.369E-07 246.6 1027 5.857E+10 1.044E+14 0.000E+00 0.000E+00 54.9 0.000E+00 8.618E+15 2.312E+15 5.302E-07 246.3 1027 5.783E+10 1.031E+14 0.000E+00 0.000E+00 55.0 0.000E+00 8.510E+15 2.283E+15 5.236E-07 246.1 1027 5.711E+10 1.018E+14 0.000E+00 0.000E+00 55.1 0.000E+00 8.403E+15 2.254E+15 5.170E-07 245.8 1027 5.639E+10 1.005E+14 0.000E+00 0.000E+00 55.2 0.000E+00 8.298E+15 2.226E+15 5.105E-07 245.6 1027 5.568E+10 9.925E+13 0.000E+00 0.000E+00 55.3 0.000E+00 8.193E+15 2.198E+15 5.041E-07 245.3 1027 5.498E+10 9.800E+13 0.000E+00 0.000E+00 55.4 0.000E+00 8.090E+15 2.170E+15 4.977E-07 245.1 1027 5.429E+10 9.677E+13 0.000E+00 0.000E+00 55.5 0.000E+00 7.988E+15 2.143E+15 4.914E-07 244.8 1027 5.360E+10 9.555E+13 0.000E+00 0.000E+00 55.6 0.000E+00 7.887E+15 2.116E+15 4.852E-07 244.6 1027 5.293E+10 9.434E+13 0.000E+00 0.000E+00 55.7 0.000E+00 7.787E+15 2.089E+15 4.791E-07 244.3 1027 5.226E+10 9.315E+13 0.000E+00 0.000E+00 55.8 0.000E+00 7.689E+15 2.063E+15 4.730E-07 244.1 1027 5.160E+10 9.197E+13 0.000E+00 0.000E+00 55.9 0.000E+00 7.591E+15 2.036E+15 4.670E-07 243.9 1027 5.094E+10 9.080E+13 0.000E+00 0.000E+00 56.0 0.000E+00 7.495E+15 2.011E+15 4.611E-07 243.6 1027 5.030E+10 8.965E+13 0.000E+00 0.000E+00 56.1 0.000E+00 7.399E+15 1.985E+15 4.553E-07 243.4 1027 4.966E+10 8.851E+13 0.000E+00 0.000E+00 56.2 0.000E+00 7.305E+15 1.960E+15 4.495E-07 243.1 1027 4.902E+10 8.738E+13 0.000E+00 0.000E+00 56.3 0.000E+00 7.212E+15 1.935E+15 4.437E-07 242.9 1027 4.840E+10 8.627E+13 0.000E+00 0.000E+00 56.4 0.000E+00 7.120E+15 1.910E+15 4.381E-07 242.7 1027 4.778E+10 8.517E+13 0.000E+00 0.000E+00 56.5 0.000E+00 7.029E+15 1.886E+15 4.325E-07 242.4 1027 4.717E+10 8.408E+13 0.000E+00 0.000E+00 56.6 0.000E+00 6.939E+15 1.862E+15 4.269E-07 242.2 1027 4.657E+10 8.301E+13 0.000E+00 0.000E+00 56.7 0.000E+00 6.851E+15 1.838E+15 4.215E-07 242.0 1027 4.597E+10 8.194E+13 0.000E+00 0.000E+00 56.8 0.000E+00 6.763E+15 1.814E+15 4.161E-07 241.7 1027 4.538E+10 8.089E+13 0.000E+00 0.000E+00 56.9 0.000E+00 6.676E+15 1.791E+15 4.107E-07 241.5 1027 4.480E+10 7.985E+13 0.000E+00 0.000E+00 57.0 0.000E+00 6.590E+15 1.768E+15 4.055E-07 241.3 1027 4.422E+10 7.883E+13 0.000E+00 0.000E+00 57.1 0.000E+00 6.505E+15 1.745E+15 4.002E-07 241.0 1027 4.366E+10 7.781E+13 0.000E+00 0.000E+00 57.2 0.000E+00 6.422E+15 1.723E+15 3.951E-07 240.8 1027 4.309E+10 7.681E+13 0.000E+00 0.000E+00 57.3 0.000E+00 6.339E+15 1.700E+15 3.900E-07 240.6 1027 4.254E+10 7.582E+13 0.000E+00 0.000E+00 57.4 0.000E+00 6.257E+15 1.679E+15 3.850E-07 240.3 1027 4.199E+10 7.484E+13 0.000E+00 0.000E+00 57.5 0.000E+00 6.176E+15 1.657E+15 3.800E-07 240.1 1027 4.145E+10 7.387E+13 0.000E+00 0.000E+00 57.6 0.000E+00 6.096E+15 1.635E+15 3.751E-07 239.9 1027 4.091E+10 7.292E+13 0.000E+00 0.000E+00 57.7 0.000E+00 6.017E+15 1.614E+15 3.702E-07 239.7 1027 4.038E+10 7.197E+13 0.000E+00 0.000E+00 57.8 0.000E+00 5.939E+15 1.593E+15 3.654E-07 239.4 1027 3.985E+10 7.104E+13 0.000E+00 0.000E+00 57.9 0.000E+00 5.862E+15 1.573E+15 3.606E-07 239.2 1027 3.934E+10 7.012E+13 0.000E+00 0.000E+00 58.0 0.000E+00 5.786E+15 1.552E+15 3.560E-07 239.0 1027 3.883E+10 6.920E+13 0.000E+00 0.000E+00 58.1 0.000E+00 5.710E+15 1.532E+15 3.513E-07 238.8 1027 3.832E+10 6.830E+13 0.000E+00 0.000E+00 58.2 0.000E+00 5.636E+15 1.512E+15 3.467E-07 238.5 1027 3.782E+10 6.741E+13 0.000E+00 0.000E+00 58.3 0.000E+00 5.562E+15 1.492E+15 3.422E-07 238.3 1027 3.733E+10 6.653E+13 0.000E+00 0.000E+00 58.4 0.000E+00 5.489E+15 1.473E+15 3.377E-07 238.1 1027 3.684E+10 6.566E+13 0.000E+00 0.000E+00 58.5 0.000E+00 5.418E+15 1.453E+15 3.333E-07 237.9 1027 3.636E+10 6.480E+13 0.000E+00 0.000E+00 58.6 0.000E+00 5.347E+15 1.434E+15 3.290E-07 237.7 1027 3.588E+10 6.395E+13 0.000E+00 0.000E+00 58.7 0.000E+00 5.277E+15 1.416E+15 3.246E-07 237.5 1027 3.541E+10 6.312E+13 0.000E+00 0.000E+00 58.8 0.000E+00 5.207E+15 1.397E+15 3.204E-07 237.2 1027 3.494E+10 6.229E+13 0.000E+00 0.000E+00 58.9 0.000E+00 5.139E+15 1.379E+15 3.162E-07 237.0 1027 3.448E+10 6.147E+13 0.000E+00 0.000E+00 59.0 0.000E+00 5.071E+15 1.360E+15 3.120E-07 236.8 1027 3.403E+10 6.066E+13 0.000E+00 0.000E+00 59.1 0.000E+00 5.004E+15 1.343E+15 3.079E-07 236.6 1027 3.358E+10 5.986E+13 0.000E+00 0.000E+00 59.2 0.000E+00 4.938E+15 1.325E+15 3.038E-07 236.4 1027 3.314E+10 5.907E+13 0.000E+00 0.000E+00 59.3 0.000E+00 4.873E+15 1.307E+15 2.998E-07 236.2 1027 3.270E+10 5.829E+13 0.000E+00 0.000E+00 59.4 0.000E+00 4.809E+15 1.290E+15 2.958E-07 236.0 1027 3.227E+10 5.752E+13 0.000E+00 0.000E+00 59.5 0.000E+00 4.745E+15 1.273E+15 2.919E-07 235.8 1027 3.184E+10 5.676E+13 0.000E+00 0.000E+00 59.6 0.000E+00 4.682E+15 1.256E+15 2.881E-07 235.6 1027 3.142E+10 5.600E+13 0.000E+00 0.000E+00 59.7 0.000E+00 4.620E+15 1.239E+15 2.842E-07 235.4 1027 3.100E+10 5.526E+13 0.000E+00 0.000E+00 59.8 0.000E+00 4.558E+15 1.223E+15 2.805E-07 235.2 1027 3.059E+10 5.453E+13 0.000E+00 0.000E+00 59.9 0.000E+00 4.498E+15 1.207E+15 2.767E-07 235.0 1027 3.018E+10 5.380E+13 0.000E+00 0.000E+00 60.0 0.000E+00 4.438E+15 1.191E+15 2.730E-07 234.7 1027 2.978E+10 5.308E+13 0.000E+00 0.000E+00 60.1 0.000E+00 4.379E+15 1.175E+15 2.694E-07 234.5 1027 2.938E+10 5.238E+13 0.000E+00 0.000E+00 60.2 0.000E+00 4.320E+15 1.159E+15 2.658E-07 234.3 1027 2.899E+10 5.168E+13 0.000E+00 0.000E+00 60.3 0.000E+00 4.263E+15 1.144E+15 2.623E-07 234.1 1027 2.860E+10 5.099E+13 0.000E+00 0.000E+00 60.4 0.000E+00 4.206E+15 1.128E+15 2.587E-07 234.0 1027 2.822E+10 5.030E+13 0.000E+00 0.000E+00 60.5 0.000E+00 4.149E+15 1.113E+15 2.553E-07 233.8 1027 2.784E+10 4.963E+13 0.000E+00 0.000E+00 60.6 0.000E+00 4.094E+15 1.098E+15 2.519E-07 233.6 1027 2.747E+10 4.897E+13 0.000E+00 0.000E+00 60.7 0.000E+00 4.039E+15 1.083E+15 2.485E-07 233.4 1027 2.710E+10 4.831E+13 0.000E+00 0.000E+00 60.8 0.000E+00 3.984E+15 1.069E+15 2.451E-07 233.2 1027 2.674E+10 4.766E+13 0.000E+00 0.000E+00 60.9 0.000E+00 3.931E+15 1.054E+15 2.418E-07 233.0 1027 2.638E+10 4.702E+13 0.000E+00 0.000E+00 61.0 0.000E+00 3.878E+15 1.040E+15 2.386E-07 232.8 1027 2.602E+10 4.638E+13 0.000E+00 0.000E+00 61.1 0.000E+00 3.825E+15 1.026E+15 2.354E-07 232.6 1027 2.567E+10 4.576E+13 0.000E+00 0.000E+00 61.2 0.000E+00 3.774E+15 1.012E+15 2.322E-07 232.4 1027 2.532E+10 4.514E+13 0.000E+00 0.000E+00 61.3 0.000E+00 3.723E+15 9.987E+14 2.290E-07 232.2 1027 2.498E+10 4.453E+13 0.000E+00 0.000E+00 61.4 0.000E+00 3.672E+15 9.852E+14 2.259E-07 232.0 1027 2.464E+10 4.393E+13 0.000E+00 0.000E+00 61.5 0.000E+00 3.623E+15 9.718E+14 2.229E-07 231.8 1027 2.431E+10 4.333E+13 0.000E+00 0.000E+00 61.6 0.000E+00 3.574E+15 9.587E+14 2.199E-07 231.7 1027 2.398E+10 4.274E+13 0.000E+00 0.000E+00 61.7 0.000E+00 3.525E+15 9.457E+14 2.169E-07 231.5 1027 2.366E+10 4.216E+13 0.000E+00 0.000E+00 61.8 0.000E+00 3.477E+15 9.328E+14 2.139E-07 231.3 1027 2.333E+10 4.159E+13 0.000E+00 0.000E+00 61.9 0.000E+00 3.430E+15 9.201E+14 2.110E-07 231.1 1027 2.302E+10 4.103E+13 0.000E+00 0.000E+00 62.0 0.000E+00 3.383E+15 9.076E+14 2.081E-07 230.9 1027 2.270E+10 4.047E+13 0.000E+00 0.000E+00 62.1 0.000E+00 3.337E+15 8.952E+14 2.053E-07 230.8 1027 2.239E+10 3.991E+13 0.000E+00 0.000E+00 62.2 0.000E+00 3.291E+15 8.830E+14 2.025E-07 230.6 1027 2.209E+10 3.937E+13 0.000E+00 0.000E+00 62.3 0.000E+00 3.246E+15 8.709E+14 1.997E-07 230.4 1027 2.179E+10 3.883E+13 0.000E+00 0.000E+00 62.4 0.000E+00 3.202E+15 8.590E+14 1.970E-07 230.2 1027 2.149E+10 3.830E+13 0.000E+00 0.000E+00 62.5 0.000E+00 3.158E+15 8.472E+14 1.943E-07 230.0 1027 2.119E+10 3.778E+13 0.000E+00 0.000E+00 62.6 0.000E+00 3.115E+15 8.354E+14 1.916E-07 229.9 1027 2.091E+10 3.726E+13 0.000E+00 0.000E+00 62.7 0.000E+00 3.072E+15 8.237E+14 1.890E-07 229.7 1027 2.062E+10 3.674E+13 0.000E+00 0.000E+00 62.8 0.000E+00 3.030E+15 8.122E+14 1.864E-07 229.5 1027 2.034E+10 3.624E+13 0.000E+00 0.000E+00 62.9 0.000E+00 2.988E+15 8.008E+14 1.838E-07 229.4 1027 2.007E+10 3.574E+13 0.000E+00 0.000E+00 63.0 0.000E+00 2.947E+15 7.895E+14 1.813E-07 229.2 1027 1.979E+10 3.525E+13 0.000E+00 0.000E+00 63.1 0.000E+00 2.906E+15 7.784E+14 1.787E-07 229.0 1027 1.952E+10 3.476E+13 0.000E+00 0.000E+00 63.2 0.000E+00 2.866E+15 7.675E+14 1.763E-07 228.9 1027 1.926E+10 3.428E+13 0.000E+00 0.000E+00 63.3 0.000E+00 2.827E+15 7.567E+14 1.738E-07 228.7 1027 1.899E+10 3.381E+13 0.000E+00 0.000E+00 63.4 0.000E+00 2.788E+15 7.460E+14 1.714E-07 228.5 1027 1.873E+10 3.334E+13 0.000E+00 0.000E+00 63.5 0.000E+00 2.749E+15 7.355E+14 1.690E-07 228.4 1027 1.848E+10 3.287E+13 0.000E+00 0.000E+00 63.6 0.000E+00 2.711E+15 7.251E+14 1.667E-07 228.2 1027 1.823E+10 3.242E+13 0.000E+00 0.000E+00 63.7 0.000E+00 2.673E+15 7.149E+14 1.644E-07 228.0 1027 1.798E+10 3.197E+13 0.000E+00 0.000E+00 63.8 0.000E+00 2.636E+15 7.048E+14 1.621E-07 227.9 1027 1.773E+10 3.152E+13 0.000E+00 0.000E+00 63.9 0.000E+00 2.600E+15 6.948E+14 1.598E-07 227.7 1027 1.749E+10 3.108E+13 0.000E+00 0.000E+00 64.0 0.000E+00 2.563E+15 6.849E+14 1.576E-07 227.6 1027 1.724E+10 3.065E+13 0.000E+00 0.000E+00 64.1 0.000E+00 2.528E+15 6.752E+14 1.554E-07 227.4 1027 1.701E+10 3.022E+13 0.000E+00 0.000E+00 64.2 0.000E+00 2.492E+15 6.656E+14 1.532E-07 227.3 1027 1.677E+10 2.980E+13 0.000E+00 0.000E+00 64.3 0.000E+00 2.458E+15 6.561E+14 1.510E-07 227.1 1027 1.654E+10 2.938E+13 0.000E+00 0.000E+00 64.4 0.000E+00 2.423E+15 6.468E+14 1.489E-07 227.0 1027 1.631E+10 2.897E+13 0.000E+00 0.000E+00 64.5 0.000E+00 2.389E+15 6.376E+14 1.468E-07 226.8 1027 1.609E+10 2.857E+13 0.000E+00 0.000E+00 64.6 0.000E+00 2.356E+15 6.285E+14 1.448E-07 226.7 1027 1.587E+10 2.817E+13 0.000E+00 0.000E+00 64.7 0.000E+00 2.323E+15 6.195E+14 1.427E-07 226.5 1027 1.565E+10 2.777E+13 0.000E+00 0.000E+00 64.8 0.000E+00 2.290E+15 6.107E+14 1.407E-07 226.4 1027 1.543E+10 2.738E+13 0.000E+00 0.000E+00 64.9 0.000E+00 2.258E+15 6.019E+14 1.387E-07 226.2 1027 1.521E+10 2.700E+13 0.000E+00 0.000E+00 65.0 0.000E+00 2.227E+15 5.933E+14 1.368E-07 226.1 1027 1.500E+10 2.662E+13 0.000E+00 0.000E+00 65.1 0.000E+00 2.195E+15 5.848E+14 1.348E-07 225.9 1027 1.479E+10 2.624E+13 0.000E+00 0.000E+00 65.2 0.000E+00 2.164E+15 5.764E+14 1.329E-07 225.8 1027 1.459E+10 2.587E+13 0.000E+00 0.000E+00 65.3 0.000E+00 2.134E+15 5.681E+14 1.311E-07 225.6 1027 1.439E+10 2.551E+13 0.000E+00 0.000E+00 65.4 0.000E+00 2.104E+15 5.600E+14 1.292E-07 225.5 1027 1.418E+10 2.515E+13 0.000E+00 0.000E+00 65.5 0.000E+00 2.074E+15 5.519E+14 1.274E-07 225.4 1027 1.399E+10 2.479E+13 0.000E+00 0.000E+00 65.6 0.000E+00 2.045E+15 5.440E+14 1.256E-07 225.2 1027 1.379E+10 2.444E+13 0.000E+00 0.000E+00 65.7 0.000E+00 2.016E+15 5.361E+14 1.238E-07 225.1 1027 1.360E+10 2.409E+13 0.000E+00 0.000E+00 65.8 0.000E+00 1.987E+15 5.284E+14 1.220E-07 224.9 1027 1.341E+10 2.375E+13 0.000E+00 0.000E+00 65.9 0.000E+00 1.959E+15 5.207E+14 1.203E-07 224.8 1027 1.322E+10 2.341E+13 0.000E+00 0.000E+00 66.0 0.000E+00 1.931E+15 5.132E+14 1.186E-07 224.7 1027 1.303E+10 2.308E+13 0.000E+00 0.000E+00 66.1 0.000E+00 1.904E+15 5.058E+14 1.169E-07 224.6 1027 1.285E+10 2.275E+13 0.000E+00 0.000E+00 66.2 0.000E+00 1.877E+15 4.985E+14 1.152E-07 224.4 1027 1.267E+10 2.243E+13 0.000E+00 0.000E+00 66.3 0.000E+00 1.850E+15 4.912E+14 1.136E-07 224.3 1027 1.249E+10 2.211E+13 0.000E+00 0.000E+00 66.4 0.000E+00 1.824E+15 4.841E+14 1.119E-07 224.2 1027 1.232E+10 2.179E+13 0.000E+00 0.000E+00 66.5 0.000E+00 1.798E+15 4.771E+14 1.103E-07 224.0 1027 1.214E+10 2.148E+13 0.000E+00 0.000E+00 66.6 0.000E+00 1.772E+15 4.701E+14 1.087E-07 223.9 1027 1.197E+10 2.117E+13 0.000E+00 0.000E+00 66.7 0.000E+00 1.747E+15 4.633E+14 1.072E-07 223.8 1027 1.180E+10 2.087E+13 0.000E+00 0.000E+00 66.8 0.000E+00 1.722E+15 4.566E+14 1.056E-07 223.7 1027 1.164E+10 2.057E+13 0.000E+00 0.000E+00 66.9 0.000E+00 1.697E+15 4.499E+14 1.041E-07 223.5 1027 1.147E+10 2.028E+13 0.000E+00 0.000E+00 67.0 0.000E+00 1.673E+15 4.433E+14 1.026E-07 223.4 1027 1.131E+10 1.999E+13 0.000E+00 0.000E+00 67.1 0.000E+00 1.649E+15 4.369E+14 1.012E-07 223.3 1027 1.115E+10 1.970E+13 0.000E+00 0.000E+00 67.2 0.000E+00 1.625E+15 4.305E+14 9.970E-08 223.2 1027 1.099E+10 1.942E+13 0.000E+00 0.000E+00 67.3 0.000E+00 1.602E+15 4.242E+14 9.826E-08 223.1 1027 1.083E+10 1.914E+13 0.000E+00 0.000E+00 67.4 0.000E+00 1.579E+15 4.180E+14 9.684E-08 223.0 1027 1.068E+10 1.886E+13 0.000E+00 0.000E+00 67.5 0.000E+00 1.556E+15 4.119E+14 9.544E-08 222.8 1027 1.053E+10 1.859E+13 0.000E+00 0.000E+00 67.6 0.000E+00 1.534E+15 4.058E+14 9.406E-08 222.7 1027 1.038E+10 1.832E+13 0.000E+00 0.000E+00 67.7 0.000E+00 1.512E+15 3.999E+14 9.270E-08 222.6 1027 1.023E+10 1.806E+13 0.000E+00 0.000E+00 67.8 0.000E+00 1.490E+15 3.940E+14 9.136E-08 222.5 1027 1.008E+10 1.780E+13 0.000E+00 0.000E+00 67.9 0.000E+00 1.468E+15 3.882E+14 9.003E-08 222.4 1027 9.941E+09 1.754E+13 0.000E+00 0.000E+00 68.0 0.000E+00 1.447E+15 3.825E+14 8.873E-08 222.3 1027 9.799E+09 1.729E+13 0.000E+00 0.000E+00 68.1 0.000E+00 1.426E+15 3.768E+14 8.744E-08 222.2 1027 9.658E+09 1.704E+13 0.000E+00 0.000E+00 68.2 0.000E+00 1.406E+15 3.713E+14 8.617E-08 222.1 1027 9.520E+09 1.679E+13 0.000E+00 0.000E+00 68.3 0.000E+00 1.385E+15 3.658E+14 8.491E-08 222.0 1027 9.384E+09 1.655E+13 0.000E+00 0.000E+00 68.4 0.000E+00 1.365E+15 3.604E+14 8.368E-08 221.9 1027 9.249E+09 1.630E+13 0.000E+00 0.000E+00 68.5 0.000E+00 1.345E+15 3.551E+14 8.246E-08 221.8 1027 9.117E+09 1.607E+13 0.000E+00 0.000E+00 68.6 0.000E+00 1.326E+15 3.498E+14 8.126E-08 221.7 1027 8.986E+09 1.583E+13 0.000E+00 0.000E+00 68.7 0.000E+00 1.307E+15 3.447E+14 8.007E-08 221.6 1027 8.857E+09 1.560E+13 0.000E+00 0.000E+00 68.8 0.000E+00 1.288E+15 3.396E+14 7.890E-08 221.5 1027 8.729E+09 1.538E+13 0.000E+00 0.000E+00 68.9 0.000E+00 1.269E+15 3.345E+14 7.775E-08 221.4 1027 8.604E+09 1.515E+13 0.000E+00 0.000E+00 69.0 0.000E+00 1.250E+15 3.296E+14 7.661E-08 221.3 1027 8.480E+09 1.493E+13 0.000E+00 0.000E+00 69.1 0.000E+00 1.232E+15 3.247E+14 7.549E-08 221.2 1027 8.357E+09 1.471E+13 0.000E+00 0.000E+00 69.2 0.000E+00 1.214E+15 3.198E+14 7.438E-08 221.1 1027 8.237E+09 1.450E+13 0.000E+00 0.000E+00 69.3 0.000E+00 1.196E+15 3.151E+14 7.329E-08 221.0 1027 8.118E+09 1.429E+13 0.000E+00 0.000E+00 69.4 0.000E+00 1.179E+15 3.104E+14 7.222E-08 220.9 1027 8.001E+09 1.408E+13 0.000E+00 0.000E+00 69.5 0.000E+00 1.162E+15 3.058E+14 7.116E-08 220.9 1027 7.885E+09 1.387E+13 0.000E+00 0.000E+00 69.6 0.000E+00 1.145E+15 3.012E+14 7.011E-08 220.8 1027 7.771E+09 1.367E+13 0.000E+00 0.000E+00 69.7 0.000E+00 1.128E+15 2.967E+14 6.908E-08 220.7 1027 7.658E+09 1.347E+13 0.000E+00 0.000E+00 69.8 0.000E+00 1.111E+15 2.923E+14 6.806E-08 220.6 1027 7.547E+09 1.327E+13 0.000E+00 0.000E+00 69.9 0.000E+00 1.095E+15 2.879E+14 6.706E-08 220.5 1027 7.438E+09 1.307E+13 0.000E+00 0.000E+00 70.0 0.000E+00 1.079E+15 2.836E+14 6.607E-08 220.4 1027 7.330E+09 1.288E+13 0.000E+00 0.000E+00 70.1 0.000E+00 1.063E+15 2.794E+14 6.510E-08 220.4 1027 7.223E+09 1.269E+13 0.000E+00 0.000E+00 70.2 0.000E+00 1.047E+15 2.752E+14 6.414E-08 220.3 1027 7.118E+09 1.251E+13 0.000E+00 0.000E+00 70.3 0.000E+00 1.032E+15 2.711E+14 6.319E-08 220.2 1027 7.014E+09 1.232E+13 0.000E+00 0.000E+00 70.4 0.000E+00 1.017E+15 2.670E+14 6.225E-08 220.1 1027 6.912E+09 1.214E+13 0.000E+00 0.000E+00 70.5 0.000E+00 1.002E+15 2.630E+14 6.133E-08 220.1 1027 6.812E+09 1.196E+13 0.000E+00 0.000E+00 70.6 0.000E+00 9.871E+14 2.591E+14 6.043E-08 220.0 1027 6.712E+09 1.178E+13 0.000E+00 0.000E+00 70.7 0.000E+00 9.726E+14 2.552E+14 5.953E-08 219.9 1027 6.614E+09 1.161E+13 0.000E+00 0.000E+00 70.8 0.000E+00 9.582E+14 2.513E+14 5.865E-08 219.9 1027 6.518E+09 1.144E+13 0.000E+00 0.000E+00 70.9 0.000E+00 9.440E+14 2.475E+14 5.778E-08 219.8 1027 6.422E+09 1.127E+13 0.000E+00 0.000E+00 71.0 0.000E+00 9.301E+14 2.438E+14 5.692E-08 219.7 1027 6.328E+09 1.110E+13 0.000E+00 0.000E+00 71.1 0.000E+00 9.163E+14 2.401E+14 5.607E-08 219.7 1027 6.236E+09 1.094E+13 0.000E+00 0.000E+00 71.2 0.000E+00 9.028E+14 2.365E+14 5.524E-08 219.6 1027 6.144E+09 1.077E+13 0.000E+00 0.000E+00 71.3 0.000E+00 8.894E+14 2.330E+14 5.442E-08 219.5 1027 6.054E+09 1.061E+13 0.000E+00 0.000E+00 71.4 0.000E+00 8.762E+14 2.294E+14 5.361E-08 219.5 1027 5.966E+09 1.046E+13 0.000E+00 0.000E+00 71.5 0.000E+00 8.632E+14 2.260E+14 5.281E-08 219.4 1027 5.878E+09 1.030E+13 0.000E+00 0.000E+00 71.6 0.000E+00 8.504E+14 2.226E+14 5.202E-08 219.4 1027 5.792E+09 1.015E+13 0.000E+00 0.000E+00 71.7 0.000E+00 8.377E+14 2.192E+14 5.125E-08 219.3 1027 5.707E+09 9.998E+12 0.000E+00 0.000E+00 71.8 0.000E+00 8.253E+14 2.159E+14 5.048E-08 219.2 1027 5.623E+09 9.849E+12 0.000E+00 0.000E+00 71.9 0.000E+00 8.130E+14 2.126E+14 4.973E-08 219.2 1027 5.540E+09 9.702E+12 0.000E+00 0.000E+00 72.0 0.000E+00 8.009E+14 2.094E+14 4.898E-08 219.1 1027 5.458E+09 9.557E+12 0.000E+00 0.000E+00 72.1 0.000E+00 7.890E+14 2.062E+14 4.825E-08 219.1 1027 5.378E+09 9.415E+12 0.000E+00 0.000E+00 72.2 0.000E+00 7.772E+14 2.031E+14 4.753E-08 219.0 1027 5.299E+09 9.274E+12 0.000E+00 0.000E+00 72.3 0.000E+00 7.656E+14 2.000E+14 4.682E-08 219.0 1027 5.220E+09 9.136E+12 0.000E+00 0.000E+00 72.4 0.000E+00 7.542E+14 1.969E+14 4.611E-08 219.0 1027 5.143E+09 8.999E+12 0.000E+00 0.000E+00 72.6 6.109E+06 7.324E+14 1.912E+14 4.478E-08 218.9 1027 4.997E+09 8.739E+12 3.005E-29 2.674E+04 72.7 6.724E+06 7.215E+14 1.883E+14 4.411E-08 218.8 1027 4.923E+09 8.608E+12 1.355E-27 2.694E+04 72.8 7.401E+06 7.107E+14 1.854E+14 4.345E-08 218.8 1027 4.851E+09 8.479E+12 5.209E-26 2.715E+04 72.9 8.145E+06 7.001E+14 1.826E+14 4.280E-08 218.7 1027 4.780E+09 8.352E+12 1.718E-24 2.735E+04 73.0 8.962E+06 6.896E+14 1.798E+14 4.215E-08 218.7 1027 4.710E+09 8.227E+12 4.888E-23 2.756E+04 73.1 9.861E+06 6.793E+14 1.771E+14 4.152E-08 218.6 1027 4.640E+09 8.104E+12 1.206E-21 2.777E+04 73.2 1.085E+07 6.692E+14 1.744E+14 4.090E-08 218.6 1027 4.572E+09 7.983E+12 2.595E-20 2.798E+04 73.3 1.193E+07 6.592E+14 1.718E+14 4.029E-08 218.5 1027 4.505E+09 7.863E+12 4.893E-19 2.819E+04 73.4 1.312E+07 6.494E+14 1.692E+14 3.969E-08 218.5 1027 4.439E+09 7.746E+12 8.130E-18 2.841E+04 73.5 1.443E+07 6.397E+14 1.666E+14 3.909E-08 218.4 1027 4.374E+09 7.630E+12 1.196E-16 2.863E+04 73.6 1.587E+07 6.302E+14 1.641E+14 3.851E-08 218.4 1027 4.310E+09 7.516E+12 1.564E-15 2.885E+04 73.7 1.744E+07 6.208E+14 1.616E+14 3.793E-08 218.3 1027 4.247E+09 7.403E+12 1.829E-14 2.907E+04 73.8 1.917E+07 6.115E+14 1.592E+14 3.736E-08 218.3 1027 4.185E+09 7.292E+12 1.919E-13 2.929E+04 73.9 2.106E+07 6.024E+14 1.568E+14 3.680E-08 218.2 1027 4.124E+09 7.183E+12 1.815E-12 2.952E+04 74.0 2.314E+07 5.934E+14 1.544E+14 3.625E-08 218.1 1027 4.063E+09 7.076E+12 1.555E-11 2.975E+04 74.1 2.542E+07 5.846E+14 1.521E+14 3.571E-08 218.1 1027 4.004E+09 6.970E+12 1.211E-10 2.998E+04 74.2 2.792E+07 5.758E+14 1.498E+14 3.518E-08 218.0 1027 3.945E+09 6.866E+12 8.601E-10 3.021E+04 74.3 3.065E+07 5.673E+14 1.475E+14 3.465E-08 218.0 1027 3.888E+09 6.763E+12 5.598E-09 3.044E+04 74.4 3.365E+07 5.588E+14 1.453E+14 3.413E-08 217.9 1027 3.831E+09 6.662E+12 3.350E-08 3.068E+04 74.5 3.692E+07 5.505E+14 1.431E+14 3.362E-08 217.8 1027 3.775E+09 6.563E+12 1.850E-07 3.092E+04 74.6 4.051E+07 5.423E+14 1.409E+14 3.312E-08 217.8 1027 3.720E+09 6.464E+12 9.454E-07 3.116E+04 74.7 4.444E+07 5.342E+14 1.388E+14 3.262E-08 217.7 1027 3.666E+09 6.368E+12 4.488E-06 3.141E+04 74.8 4.873E+07 5.262E+14 1.367E+14 3.214E-08 217.6 1027 3.612E+09 6.273E+12 1.985E-05 3.165E+04 74.9 5.343E+07 5.184E+14 1.346E+14 3.165E-08 217.6 1027 3.560E+09 6.179E+12 8.207E-05 3.190E+04 75.0 5.856E+07 5.107E+14 1.326E+14 3.118E-08 217.5 1027 3.508E+09 6.087E+12 3.180E-04 3.215E+04 75.1 6.417E+07 5.031E+14 1.306E+14 3.072E-08 217.4 1027 3.457E+09 5.996E+12 1.158E-03 3.241E+04 75.2 7.029E+07 4.956E+14 1.286E+14 3.026E-08 217.4 1027 3.406E+09 5.906E+12 3.975E-03 3.266E+04 75.3 7.698E+07 4.882E+14 1.266E+14 2.980E-08 217.3 1027 3.357E+09 5.818E+12 1.289E-02 3.292E+04 75.4 8.427E+07 4.809E+14 1.247E+14 2.936E-08 217.2 1027 3.308E+09 5.731E+12 3.960E-02 3.318E+04 75.5 9.223E+07 4.738E+14 1.228E+14 2.892E-08 217.1 1027 3.260E+09 5.645E+12 1.155E-01 3.345E+04 75.6 1.009E+08 4.667E+14 1.210E+14 2.849E-08 217.1 1027 3.212E+09 5.561E+12 3.206E-01 3.371E+04 75.7 1.104E+08 4.597E+14 1.191E+14 2.806E-08 217.0 1027 3.166E+09 5.478E+12 8.487E-01 3.398E+04 75.8 1.207E+08 4.529E+14 1.173E+14 2.764E-08 216.9 1027 3.120E+09 5.396E+12 2.147E+00 3.425E+04 75.9 1.319E+08 4.462E+14 1.155E+14 2.723E-08 216.8 1027 3.075E+09 5.315E+12 5.203E+00 3.453E+04 76.0 1.441E+08 4.395E+14 1.138E+14 2.682E-08 216.7 1027 3.030E+09 5.236E+12 1.210E+01 3.480E+04 76.1 1.574E+08 4.330E+14 1.121E+14 2.642E-08 216.7 1027 2.986E+09 5.157E+12 2.704E+01 3.508E+04 76.2 1.719E+08 4.265E+14 1.104E+14 2.603E-08 216.6 1027 2.943E+09 5.080E+12 5.819E+01 3.536E+04 76.3 1.876E+08 4.202E+14 1.087E+14 2.564E-08 216.5 1027 2.900E+09 5.004E+12 1.208E+02 3.565E+04 76.4 2.047E+08 4.139E+14 1.071E+14 2.525E-08 216.4 1027 2.858E+09 4.929E+12 2.423E+02 3.593E+04 76.5 2.233E+08 4.078E+14 1.054E+14 2.488E-08 216.3 1027 2.817E+09 4.856E+12 4.704E+02 3.622E+04 76.6 2.434E+08 4.017E+14 1.038E+14 2.450E-08 216.2 1027 2.776E+09 4.783E+12 8.848E+02 3.652E+04 76.7 2.653E+08 3.957E+14 1.023E+14 2.414E-08 216.1 1027 2.736E+09 4.712E+12 1.615E+03 3.681E+04 76.8 2.891E+08 3.898E+14 1.007E+14 2.378E-08 216.0 1027 2.696E+09 4.641E+12 2.866E+03 3.711E+04 76.9 3.148E+08 3.840E+14 9.918E+13 2.342E-08 215.9 1027 2.657E+09 4.572E+12 4.948E+03 3.741E+04 77.0 3.427E+08 3.783E+14 9.768E+13 2.307E-08 215.9 1027 2.619E+09 4.503E+12 8.324E+03 3.771E+04 77.1 3.729E+08 3.727E+14 9.620E+13 2.273E-08 215.8 1027 2.581E+09 4.436E+12 1.366E+04 3.802E+04 77.2 4.056E+08 3.671E+14 9.474E+13 2.239E-08 215.7 1027 2.544E+09 4.370E+12 2.189E+04 3.833E+04 77.3 4.410E+08 3.617E+14 9.330E+13 2.205E-08 215.6 1027 2.507E+09 4.304E+12 3.428E+04 3.864E+04 77.4 4.793E+08 3.563E+14 9.188E+13 2.172E-08 215.5 1027 2.471E+09 4.240E+12 5.256E+04 3.895E+04 77.5 5.206E+08 3.510E+14 9.049E+13 2.140E-08 215.4 1027 2.435E+09 4.176E+12 7.894E+04 3.927E+04 77.6 5.654E+08 3.457E+14 8.911E+13 2.108E-08 215.3 1027 2.400E+09 4.114E+12 1.162E+05 3.959E+04 77.7 6.136E+08 3.406E+14 8.776E+13 2.076E-08 215.2 1027 2.366E+09 4.052E+12 1.680E+05 3.992E+04 77.8 6.658E+08 3.355E+14 8.643E+13 2.045E-08 215.0 1027 2.332E+09 3.992E+12 2.385E+05 4.024E+04 77.9 7.220E+08 3.305E+14 8.511E+13 2.014E-08 214.9 1027 2.298E+09 3.932E+12 3.329E+05 4.057E+04 78.0 7.826E+08 3.256E+14 8.382E+13 1.984E-08 214.8 1027 2.265E+09 3.873E+12 4.571E+05 4.091E+04 78.1 8.479E+08 3.207E+14 8.255E+13 1.955E-08 214.7 1027 2.232E+09 3.815E+12 6.179E+05 4.124E+04 78.2 9.183E+08 3.160E+14 8.129E+13 1.925E-08 214.6 1027 2.200E+09 3.758E+12 8.232E+05 4.158E+04 78.3 9.940E+08 3.113E+14 8.006E+13 1.897E-08 214.5 1027 2.169E+09 3.702E+12 1.081E+06 4.192E+04 78.4 1.076E+09 3.066E+14 7.884E+13 1.868E-08 214.4 1027 2.138E+09 3.646E+12 1.401E+06 4.227E+04 78.5 1.163E+09 3.021E+14 7.764E+13 1.840E-08 214.3 1027 2.107E+09 3.592E+12 1.792E+06 4.262E+04 78.6 1.257E+09 2.976E+14 7.646E+13 1.813E-08 214.2 1027 2.077E+09 3.538E+12 2.265E+06 4.297E+04 78.7 1.358E+09 2.931E+14 7.529E+13 1.786E-08 214.0 1027 2.047E+09 3.485E+12 2.829E+06 4.333E+04 78.8 1.467E+09 2.888E+14 7.415E+13 1.759E-08 213.9 1027 2.018E+09 3.433E+12 3.495E+06 4.368E+04 78.9 1.584E+09 2.845E+14 7.302E+13 1.732E-08 213.8 1027 1.989E+09 3.381E+12 4.272E+06 4.405E+04 79.0 1.708E+09 2.802E+14 7.191E+13 1.707E-08 213.7 1027 1.960E+09 3.330E+12 5.169E+06 4.441E+04 79.1 1.842E+09 2.760E+14 7.081E+13 1.681E-08 213.6 1027 1.932E+09 3.281E+12 6.194E+06 4.478E+04 79.2 1.986E+09 2.719E+14 6.973E+13 1.656E-08 213.4 1027 1.905E+09 3.231E+12 7.354E+06 4.515E+04 79.3 2.139E+09 2.679E+14 6.867E+13 1.631E-08 213.3 1027 1.877E+09 3.183E+12 8.655E+06 4.552E+04 79.4 2.303E+09 2.639E+14 6.762E+13 1.607E-08 213.2 1027 1.850E+09 3.135E+12 1.010E+07 4.590E+04 79.5 2.479E+09 2.599E+14 6.659E+13 1.582E-08 213.1 1027 1.824E+09 3.088E+12 1.170E+07 4.628E+04 79.6 2.667E+09 2.561E+14 6.557E+13 1.559E-08 212.9 1027 1.798E+09 3.042E+12 1.344E+07 4.667E+04 79.7 2.867E+09 2.522E+14 6.457E+13 1.535E-08 212.8 1027 1.772E+09 2.996E+12 1.534E+07 4.706E+04 79.8 3.081E+09 2.485E+14 6.359E+13 1.512E-08 212.7 1027 1.747E+09 2.951E+12 1.738E+07 4.745E+04 79.9 3.309E+09 2.448E+14 6.262E+13 1.490E-08 212.5 1027 1.722E+09 2.907E+12 1.956E+07 4.785E+04 80.0 3.552E+09 2.411E+14 6.166E+13 1.467E-08 212.4 1027 1.698E+09 2.863E+12 2.188E+07 4.824E+04 80.1 3.811E+09 2.375E+14 6.072E+13 1.445E-08 212.3 1027 1.673E+09 2.820E+12 2.432E+07 4.865E+04 80.2 4.087E+09 2.340E+14 5.979E+13 1.424E-08 212.1 1027 1.650E+09 2.777E+12 2.689E+07 4.905E+04 80.3 4.381E+09 2.305E+14 5.888E+13 1.402E-08 212.0 1027 1.626E+09 2.736E+12 2.957E+07 4.946E+04 80.4 4.693E+09 2.270E+14 5.798E+13 1.381E-08 211.9 1027 1.603E+09 2.695E+12 3.235E+07 4.988E+04 80.5 5.025E+09 2.236E+14 5.709E+13 1.360E-08 211.7 1027 1.580E+09 2.654E+12 3.521E+07 5.029E+04 80.6 5.377E+09 2.203E+14 5.621E+13 1.340E-08 211.6 1027 1.558E+09 2.614E+12 3.815E+07 5.071E+04 80.7 5.751E+09 2.170E+14 5.535E+13 1.320E-08 211.4 1027 1.536E+09 2.575E+12 4.114E+07 5.114E+04 80.8 6.148E+09 2.138E+14 5.451E+13 1.300E-08 211.3 1027 1.514E+09 2.536E+12 4.419E+07 5.157E+04 80.9 6.569E+09 2.106E+14 5.367E+13 1.280E-08 211.1 1027 1.492E+09 2.498E+12 4.726E+07 5.200E+04 81.0 7.015E+09 2.074E+14 5.285E+13 1.261E-08 211.0 1027 1.471E+09 2.460E+12 5.036E+07 5.244E+04 81.1 7.488E+09 2.043E+14 5.204E+13 1.242E-08 210.8 1027 1.451E+09 2.423E+12 5.346E+07 5.288E+04 81.2 7.988E+09 2.013E+14 5.124E+13 1.224E-08 210.7 1027 1.430E+09 2.386E+12 5.655E+07 5.332E+04 81.3 8.517E+09 1.983E+14 5.045E+13 1.205E-08 210.5 1027 1.410E+09 2.350E+12 5.962E+07 5.377E+04 81.4 9.076E+09 1.953E+14 4.968E+13 1.187E-08 210.4 1027 1.390E+09 2.315E+12 6.265E+07 5.422E+04 81.5 9.666E+09 1.924E+14 4.891E+13 1.169E-08 210.2 1027 1.370E+09 2.280E+12 6.564E+07 5.467E+04 81.6 1.029E+10 1.895E+14 4.816E+13 1.152E-08 210.1 1027 1.351E+09 2.245E+12 6.857E+07 5.513E+04 81.7 1.095E+10 1.866E+14 4.742E+13 1.134E-08 209.9 1027 1.332E+09 2.211E+12 7.144E+07 5.559E+04 81.8 1.164E+10 1.839E+14 4.669E+13 1.117E-08 209.7 1027 1.313E+09 2.178E+12 7.423E+07 5.606E+04 81.9 1.237E+10 1.811E+14 4.597E+13 1.100E-08 209.6 1027 1.294E+09 2.145E+12 7.693E+07 5.653E+04 82.0 1.314E+10 1.784E+14 4.527E+13 1.084E-08 209.4 1027 1.276E+09 2.113E+12 7.955E+07 5.701E+04 82.1 1.395E+10 1.757E+14 4.457E+13 1.067E-08 209.3 1027 1.258E+09 2.081E+12 8.206E+07 5.749E+04 82.2 1.480E+10 1.731E+14 4.388E+13 1.051E-08 209.1 1027 1.241E+09 2.049E+12 8.447E+07 5.797E+04 82.3 1.570E+10 1.705E+14 4.320E+13 1.035E-08 208.9 1027 1.223E+09 2.018E+12 8.678E+07 5.846E+04 82.4 1.664E+10 1.679E+14 4.254E+13 1.020E-08 208.8 1027 1.206E+09 1.987E+12 8.896E+07 5.895E+04 82.5 1.763E+10 1.654E+14 4.188E+13 1.004E-08 208.6 1027 1.189E+09 1.957E+12 9.104E+07 5.944E+04 82.6 1.866E+10 1.629E+14 4.123E+13 9.891E-09 208.4 1027 1.172E+09 1.928E+12 9.299E+07 5.994E+04 82.7 1.975E+10 1.605E+14 4.060E+13 9.741E-09 208.3 1027 1.156E+09 1.898E+12 9.483E+07 6.045E+04 82.8 2.089E+10 1.580E+14 3.997E+13 9.594E-09 208.1 1027 1.140E+09 1.870E+12 9.655E+07 6.096E+04 82.9 2.208E+10 1.557E+14 3.935E+13 9.449E-09 207.9 1027 1.124E+09 1.841E+12 9.814E+07 6.147E+04 83.0 2.333E+10 1.533E+14 3.874E+13 9.306E-09 207.7 1027 1.108E+09 1.813E+12 9.961E+07 6.199E+04 83.1 2.464E+10 1.510E+14 3.814E+13 9.165E-09 207.5 1027 1.093E+09 1.786E+12 1.010E+08 6.251E+04 83.2 2.600E+10 1.488E+14 3.755E+13 9.026E-09 207.4 1027 1.077E+09 1.758E+12 1.022E+08 6.303E+04 83.3 2.743E+10 1.465E+14 3.697E+13 8.889E-09 207.2 1027 1.062E+09 1.732E+12 1.033E+08 6.356E+04 83.4 2.892E+10 1.443E+14 3.639E+13 8.755E-09 207.0 1027 1.047E+09 1.705E+12 1.043E+08 6.410E+04 83.5 3.047E+10 1.421E+14 3.583E+13 8.622E-09 206.8 1027 1.033E+09 1.679E+12 1.052E+08 6.464E+04 83.6 3.209E+10 1.400E+14 3.527E+13 8.491E-09 206.6 1027 1.018E+09 1.654E+12 1.060E+08 6.518E+04 83.7 3.378E+10 1.379E+14 3.472E+13 8.362E-09 206.5 1027 1.004E+09 1.628E+12 1.067E+08 6.573E+04 83.8 3.554E+10 1.358E+14 3.418E+13 8.235E-09 206.3 1027 9.903E+08 1.603E+12 1.073E+08 6.628E+04 83.9 3.737E+10 1.337E+14 3.365E+13 8.110E-09 206.1 1027 9.765E+08 1.579E+12 1.078E+08 6.683E+04 84.0 3.927E+10 1.317E+14 3.313E+13 7.987E-09 205.9 1027 9.630E+08 1.555E+12 1.081E+08 6.739E+04 84.1 4.125E+10 1.297E+14 3.261E+13 7.865E-09 205.7 1027 9.496E+08 1.531E+12 1.084E+08 6.796E+04 84.2 4.331E+10 1.278E+14 3.210E+13 7.746E-09 205.5 1027 9.364E+08 1.508E+12 1.086E+08 6.853E+04 84.3 4.544E+10 1.258E+14 3.160E+13 7.628E-09 205.3 1027 9.235E+08 1.484E+12 1.088E+08 6.910E+04 84.4 4.766E+10 1.239E+14 3.111E+13 7.512E-09 205.1 1027 9.107E+08 1.462E+12 1.088E+08 6.968E+04 84.5 4.995E+10 1.221E+14 3.062E+13 7.397E-09 204.9 1027 8.981E+08 1.439E+12 1.088E+08 7.027E+04 84.6 5.233E+10 1.202E+14 3.014E+13 7.284E-09 204.7 1027 8.857E+08 1.417E+12 1.087E+08 7.086E+04 84.7 5.480E+10 1.184E+14 2.967E+13 7.173E-09 204.5 1027 8.734E+08 1.395E+12 1.085E+08 7.145E+04 84.8 5.735E+10 1.166E+14 2.921E+13 7.064E-09 204.3 1027 8.614E+08 1.374E+12 1.082E+08 7.205E+04 84.9 5.999E+10 1.148E+14 2.875E+13 6.956E-09 204.1 1027 8.495E+08 1.353E+12 1.079E+08 7.265E+04 85.0 6.272E+10 1.131E+14 2.830E+13 6.850E-09 203.9 1027 8.378E+08 1.332E+12 1.076E+08 7.326E+04 85.1 6.555E+10 1.114E+14 2.786E+13 6.745E-09 203.7 1027 8.263E+08 1.311E+12 1.072E+08 7.387E+04 85.2 6.846E+10 1.097E+14 2.742E+13 6.642E-09 203.5 1027 8.149E+08 1.291E+12 1.067E+08 7.448E+04 85.3 7.147E+10 1.080E+14 2.699E+13 6.540E-09 203.3 1027 8.037E+08 1.271E+12 1.062E+08 7.511E+04 85.4 7.457E+10 1.064E+14 2.656E+13 6.440E-09 203.1 1027 7.927E+08 1.252E+12 1.056E+08 7.573E+04 85.5 7.776E+10 1.048E+14 2.614E+13 6.342E-09 202.9 1027 7.819E+08 1.232E+12 1.050E+08 7.636E+04 85.6 8.106E+10 1.032E+14 2.573E+13 6.244E-09 202.7 1027 7.712E+08 1.213E+12 1.044E+08 7.700E+04 85.7 8.445E+10 1.016E+14 2.533E+13 6.149E-09 202.4 1027 7.606E+08 1.194E+12 1.037E+08 7.764E+04 85.8 8.794E+10 1.000E+14 2.493E+13 6.054E-09 202.2 1027 7.502E+08 1.176E+12 1.030E+08 7.829E+04 85.9 9.152E+10 9.851E+13 2.453E+13 5.961E-09 202.0 1027 7.400E+08 1.158E+12 1.022E+08 7.894E+04 86.0 9.521E+10 9.701E+13 2.415E+13 5.870E-09 201.8 1027 7.299E+08 1.140E+12 1.015E+08 7.959E+04 86.1 9.900E+10 9.553E+13 2.376E+13 5.780E-09 201.6 1027 7.199E+08 1.122E+12 1.007E+08 8.025E+04 86.2 1.029E+11 9.407E+13 2.339E+13 5.691E-09 201.4 1027 7.101E+08 1.105E+12 9.987E+07 8.092E+04 86.3 1.069E+11 9.263E+13 2.302E+13 5.603E-09 201.1 1027 7.005E+08 1.087E+12 9.903E+07 8.159E+04 86.4 1.110E+11 9.122E+13 2.265E+13 5.517E-09 200.9 1027 6.910E+08 1.070E+12 9.818E+07 8.226E+04 86.5 1.152E+11 8.982E+13 2.229E+13 5.432E-09 200.7 1027 6.816E+08 1.054E+12 9.730E+07 8.294E+04 86.6 1.194E+11 8.845E+13 2.194E+13 5.348E-09 200.5 1027 6.724E+08 1.037E+12 9.641E+07 8.363E+04 86.7 1.238E+11 8.709E+13 2.159E+13 5.266E-09 200.2 1027 6.633E+08 1.021E+12 9.551E+07 8.432E+04 86.8 1.283E+11 8.575E+13 2.125E+13 5.185E-09 200.0 1027 6.543E+08 1.005E+12 9.460E+07 8.502E+04 86.9 1.329E+11 8.444E+13 2.091E+13 5.105E-09 199.8 1027 6.455E+08 9.895E+11 9.367E+07 8.572E+04 87.0 1.376E+11 8.314E+13 2.057E+13 5.026E-09 199.6 1027 6.368E+08 9.740E+11 9.274E+07 8.642E+04 87.1 1.424E+11 8.186E+13 2.025E+13 4.948E-09 199.3 1027 6.282E+08 9.587E+11 9.180E+07 8.713E+04 87.2 1.473E+11 8.061E+13 1.992E+13 4.871E-09 199.1 1027 6.198E+08 9.437E+11 9.086E+07 8.785E+04 87.3 1.523E+11 7.937E+13 1.960E+13 4.796E-09 198.9 1027 6.114E+08 9.288E+11 8.991E+07 8.857E+04 87.4 1.574E+11 7.814E+13 1.929E+13 4.722E-09 198.6 1027 6.032E+08 9.142E+11 8.895E+07 8.930E+04 87.5 1.626E+11 7.694E+13 1.898E+13 4.648E-09 198.4 1027 5.952E+08 8.998E+11 8.800E+07 9.003E+04 87.6 1.678E+11 7.575E+13 1.868E+13 4.576E-09 198.1 1027 5.872E+08 8.857E+11 8.704E+07 9.076E+04 87.7 1.732E+11 7.458E+13 1.838E+13 4.505E-09 197.9 1027 5.794E+08 8.717E+11 8.608E+07 9.151E+04 87.8 1.787E+11 7.343E+13 1.808E+13 4.435E-09 197.7 1027 5.716E+08 8.579E+11 8.513E+07 9.225E+04 87.9 1.842E+11 7.230E+13 1.779E+13 4.366E-09 197.4 1027 5.640E+08 8.444E+11 8.417E+07 9.301E+04 88.0 1.899E+11 7.118E+13 1.750E+13 4.298E-09 197.2 1027 5.565E+08 8.310E+11 8.322E+07 9.376E+04 88.1 1.956E+11 7.008E+13 1.722E+13 4.232E-09 196.9 1027 5.491E+08 8.178E+11 8.227E+07 9.453E+04 88.2 2.014E+11 6.899E+13 1.694E+13 4.166E-09 196.7 1027 5.419E+08 8.049E+11 8.132E+07 9.529E+04 88.3 2.073E+11 6.792E+13 1.667E+13 4.101E-09 196.4 1027 5.347E+08 7.921E+11 8.038E+07 9.607E+04 88.4 2.133E+11 6.687E+13 1.640E+13 4.037E-09 196.2 1027 5.276E+08 7.795E+11 7.944E+07 9.685E+04 88.5 2.193E+11 6.583E+13 1.613E+13 3.974E-09 195.9 1027 5.206E+08 7.671E+11 7.850E+07 9.763E+04 88.6 2.255E+11 6.481E+13 1.587E+13 3.912E-09 195.7 1027 5.138E+08 7.549E+11 7.758E+07 9.842E+04 88.7 2.317E+11 6.380E+13 1.562E+13 3.850E-09 195.4 1027 5.070E+08 7.428E+11 7.666E+07 9.921E+04 88.8 2.380E+11 6.281E+13 1.536E+13 3.790E-09 195.2 1027 5.004E+08 7.310E+11 7.574E+07 1.000E+05 88.9 2.443E+11 6.183E+13 1.511E+13 3.731E-09 194.9 1027 4.938E+08 7.193E+11 7.483E+07 1.008E+05 89.0 2.507E+11 6.086E+13 1.487E+13 3.672E-09 194.7 1027 4.873E+08 7.078E+11 7.393E+07 1.016E+05 89.1 2.572E+11 5.991E+13 1.462E+13 3.615E-09 194.4 1027 4.810E+08 6.964E+11 7.304E+07 1.024E+05 89.2 2.637E+11 5.898E+13 1.439E+13 3.558E-09 194.2 1027 4.747E+08 6.852E+11 7.215E+07 1.033E+05 89.3 2.703E+11 5.806E+13 1.415E+13 3.502E-09 193.9 1027 4.685E+08 6.742E+11 7.128E+07 1.041E+05 89.4 2.769E+11 5.715E+13 1.392E+13 3.447E-09 193.6 1027 4.624E+08 6.634E+11 7.041E+07 1.049E+05 89.5 2.836E+11 5.625E+13 1.369E+13 3.393E-09 193.4 1027 4.564E+08 6.527E+11 6.955E+07 1.058E+05 89.6 2.903E+11 5.537E+13 1.347E+13 3.339E-09 193.1 1027 4.505E+08 6.421E+11 6.870E+07 1.066E+05 89.7 2.971E+11 5.450E+13 1.324E+13 3.287E-09 192.9 1027 4.447E+08 6.318E+11 6.785E+07 1.075E+05 89.8 3.039E+11 5.365E+13 1.303E+13 3.235E-09 192.6 1027 4.390E+08 6.215E+11 6.702E+07 1.083E+05 89.9 3.108E+11 5.280E+13 1.281E+13 3.184E-09 192.3 1027 4.333E+08 6.115E+11 6.620E+07 1.092E+05 90.0 3.176E+11 5.197E+13 1.260E+13 3.133E-09 192.1 1027 4.277E+08 6.015E+11 6.538E+07 1.100E+05 90.1 3.245E+11 5.115E+13 1.239E+13 3.084E-09 191.8 1027 4.223E+08 5.918E+11 6.458E+07 1.109E+05 90.2 3.315E+11 5.035E+13 1.219E+13 3.035E-09 191.5 1027 4.169E+08 5.821E+11 6.378E+07 1.118E+05 90.3 3.384E+11 4.955E+13 1.199E+13 2.987E-09 191.2 1027 4.115E+08 5.726E+11 6.299E+07 1.127E+05 90.4 3.454E+11 4.877E+13 1.179E+13 2.940E-09 191.0 1027 4.063E+08 5.633E+11 6.222E+07 1.136E+05 90.5 3.524E+11 4.800E+13 1.159E+13 2.893E-09 190.7 1027 4.011E+08 5.541E+11 6.145E+07 1.144E+05 90.6 3.593E+11 4.724E+13 1.140E+13 2.847E-09 190.4 1027 3.960E+08 5.450E+11 6.069E+07 1.153E+05 90.7 3.663E+11 4.649E+13 1.121E+13 2.802E-09 190.2 1027 3.910E+08 5.361E+11 5.994E+07 1.162E+05 90.8 3.733E+11 4.575E+13 1.102E+13 2.757E-09 189.9 1027 3.861E+08 5.273E+11 5.920E+07 1.172E+05 90.9 3.803E+11 4.502E+13 1.084E+13 2.713E-09 189.6 1027 3.812E+08 5.186E+11 5.847E+07 1.181E+05 91.0 3.873E+11 4.431E+13 1.066E+13 2.670E-09 189.3 1027 3.764E+08 5.100E+11 5.775E+07 1.190E+05 91.1 3.942E+11 4.360E+13 1.048E+13 2.627E-09 189.1 1027 3.717E+08 5.016E+11 5.704E+07 1.199E+05 91.2 4.012E+11 4.290E+13 1.030E+13 2.585E-09 188.8 1027 3.670E+08 4.933E+11 5.634E+07 1.208E+05 91.3 4.081E+11 4.222E+13 1.013E+13 2.543E-09 188.5 1027 3.624E+08 4.851E+11 5.564E+07 1.218E+05 91.4 4.149E+11 4.154E+13 9.960E+12 2.503E-09 188.3 1027 3.579E+08 4.770E+11 5.496E+07 1.227E+05 91.5 4.218E+11 4.088E+13 9.792E+12 2.462E-09 188.0 1027 3.535E+08 4.691E+11 5.428E+07 1.236E+05 91.6 4.286E+11 4.022E+13 9.626E+12 2.423E-09 187.7 1027 3.491E+08 4.613E+11 5.362E+07 1.246E+05 91.7 4.354E+11 3.957E+13 9.463E+12 2.384E-09 187.4 1027 3.447E+08 4.535E+11 5.296E+07 1.255E+05 91.8 4.421E+11 3.893E+13 9.302E+12 2.345E-09 187.2 1027 3.405E+08 4.459E+11 5.231E+07 1.265E+05 91.9 4.488E+11 3.831E+13 9.144E+12 2.307E-09 186.9 1027 3.363E+08 4.384E+11 5.168E+07 1.274E+05 92.0 4.554E+11 3.769E+13 8.988E+12 2.270E-09 186.6 1027 3.321E+08 4.310E+11 5.105E+07 1.284E+05 92.1 4.620E+11 3.708E+13 8.835E+12 2.233E-09 186.4 1027 3.280E+08 4.238E+11 5.042E+07 1.294E+05 92.2 4.685E+11 3.647E+13 8.684E+12 2.197E-09 186.1 1027 3.240E+08 4.166E+11 4.981E+07 1.303E+05 92.3 4.749E+11 3.588E+13 8.535E+12 2.161E-09 185.8 1027 3.200E+08 4.095E+11 4.921E+07 1.313E+05 92.4 4.813E+11 3.530E+13 8.388E+12 2.126E-09 185.6 1027 3.161E+08 4.026E+11 4.861E+07 1.323E+05 92.5 4.876E+11 3.472E+13 8.244E+12 2.091E-09 185.3 1027 3.123E+08 3.957E+11 4.802E+07 1.333E+05 92.6 4.938E+11 3.415E+13 8.101E+12 2.057E-09 185.1 1027 3.085E+08 3.889E+11 4.744E+07 1.343E+05 92.7 5.000E+11 3.360E+13 7.961E+12 2.023E-09 184.8 1027 3.047E+08 3.823E+11 4.687E+07 1.353E+05 92.8 5.060E+11 3.304E+13 7.823E+12 1.990E-09 184.6 1027 3.010E+08 3.757E+11 4.631E+07 1.363E+05 92.9 5.120E+11 3.250E+13 7.687E+12 1.957E-09 184.3 1027 2.974E+08 3.692E+11 4.575E+07 1.373E+05 93.0 5.178E+11 3.197E+13 7.553E+12 1.925E-09 184.0 1027 2.938E+08 3.629E+11 4.521E+07 1.383E+05 93.1 5.236E+11 3.144E+13 7.421E+12 1.893E-09 183.8 1027 2.903E+08 3.566E+11 4.467E+07 1.393E+05 93.2 5.293E+11 3.092E+13 7.291E+12 1.862E-09 183.6 1027 2.868E+08 3.504E+11 4.413E+07 1.403E+05 93.3 5.349E+11 3.041E+13 7.163E+12 1.831E-09 183.3 1027 2.834E+08 3.443E+11 4.361E+07 1.413E+05 93.4 5.403E+11 2.990E+13 7.038E+12 1.800E-09 183.1 1027 2.800E+08 3.383E+11 4.309E+07 1.423E+05 93.5 5.457E+11 2.940E+13 6.913E+12 1.770E-09 182.8 1027 2.767E+08 3.324E+11 4.258E+07 1.433E+05 93.6 5.509E+11 2.891E+13 6.791E+12 1.741E-09 182.6 1027 2.734E+08 3.265E+11 4.208E+07 1.443E+05 93.7 5.561E+11 2.843E+13 6.671E+12 1.712E-09 182.4 1027 2.702E+08 3.208E+11 4.159E+07 1.454E+05 93.8 5.611E+11 2.795E+13 6.553E+12 1.683E-09 182.1 1027 2.670E+08 3.151E+11 4.110E+07 1.464E+05 93.9 5.660E+11 2.749E+13 6.436E+12 1.655E-09 181.9 1027 2.638E+08 3.095E+11 4.062E+07 1.474E+05 94.0 5.707E+11 2.702E+13 6.321E+12 1.627E-09 181.7 1027 2.607E+08 3.040E+11 4.015E+07 1.485E+05 94.1 5.754E+11 2.657E+13 6.208E+12 1.600E-09 181.5 1027 2.577E+08 2.986E+11 3.968E+07 1.495E+05 94.2 5.799E+11 2.612E+13 6.097E+12 1.573E-09 181.2 1027 2.547E+08 2.933E+11 3.922E+07 1.505E+05 94.3 5.843E+11 2.568E+13 5.987E+12 1.546E-09 181.0 1027 2.517E+08 2.880E+11 3.877E+07 1.516E+05 94.4 5.886E+11 2.524E+13 5.879E+12 1.520E-09 180.8 1027 2.488E+08 2.829E+11 3.832E+07 1.526E+05 94.5 5.927E+11 2.481E+13 5.773E+12 1.494E-09 180.6 1027 2.459E+08 2.778E+11 3.788E+07 1.537E+05 94.6 5.967E+11 2.439E+13 5.669E+12 1.469E-09 180.4 1027 2.431E+08 2.728E+11 3.745E+07 1.547E+05 94.7 6.005E+11 2.398E+13 5.566E+12 1.444E-09 180.2 1027 2.403E+08 2.678E+11 3.702E+07 1.558E+05 94.8 6.043E+11 2.357E+13 5.464E+12 1.419E-09 180.0 1027 2.376E+08 2.630E+11 3.660E+07 1.568E+05 94.9 6.078E+11 2.316E+13 5.365E+12 1.395E-09 179.8 1027 2.348E+08 2.582E+11 3.618E+07 1.579E+05 95.0 6.113E+11 2.276E+13 5.266E+12 1.371E-09 179.6 1027 2.322E+08 2.534E+11 3.577E+07 1.589E+05 95.1 6.146E+11 2.237E+13 5.170E+12 1.347E-09 179.4 1027 2.295E+08 2.488E+11 3.537E+07 1.600E+05 95.2 6.177E+11 2.199E+13 5.075E+12 1.324E-09 179.2 1027 2.270E+08 2.442E+11 3.497E+07 1.611E+05 95.3 6.207E+11 2.161E+13 4.981E+12 1.301E-09 179.0 1027 2.244E+08 2.397E+11 3.458E+07 1.621E+05 95.4 6.236E+11 2.123E+13 4.889E+12 1.279E-09 178.9 1027 2.219E+08 2.353E+11 3.420E+07 1.632E+05 95.5 6.263E+11 2.086E+13 4.798E+12 1.257E-09 178.7 1027 2.194E+08 2.309E+11 3.382E+07 1.643E+05 95.6 6.289E+11 2.050E+13 4.709E+12 1.235E-09 178.5 1027 2.170E+08 2.266E+11 3.344E+07 1.653E+05 95.7 6.313E+11 2.014E+13 4.622E+12 1.213E-09 178.4 1027 2.146E+08 2.224E+11 3.307E+07 1.664E+05 95.8 6.336E+11 1.979E+13 4.535E+12 1.192E-09 178.2 1027 2.122E+08 2.182E+11 3.271E+07 1.675E+05 95.9 6.358E+11 1.944E+13 4.450E+12 1.171E-09 178.1 1027 2.099E+08 2.141E+11 3.235E+07 1.686E+05 96.0 6.378E+11 1.910E+13 4.367E+12 1.151E-09 177.9 1027 2.076E+08 2.101E+11 3.200E+07 1.697E+05 96.1 6.396E+11 1.877E+13 4.285E+12 1.131E-09 177.8 1027 2.053E+08 2.061E+11 3.165E+07 1.708E+05 96.2 6.413E+11 1.844E+13 4.204E+12 1.111E-09 177.6 1027 2.031E+08 2.022E+11 3.131E+07 1.718E+05 96.3 6.429E+11 1.811E+13 4.124E+12 1.091E-09 177.5 1027 2.009E+08 1.983E+11 3.097E+07 1.729E+05 96.4 6.443E+11 1.779E+13 4.046E+12 1.072E-09 177.4 1027 1.987E+08 1.946E+11 3.063E+07 1.740E+05 96.5 6.456E+11 1.747E+13 3.969E+12 1.053E-09 177.2 1027 1.966E+08 1.908E+11 3.031E+07 1.751E+05 96.6 6.467E+11 1.716E+13 3.893E+12 1.034E-09 177.1 1027 1.945E+08 1.872E+11 2.998E+07 1.762E+05 96.7 6.477E+11 1.686E+13 3.819E+12 1.016E-09 177.0 1027 1.925E+08 1.836E+11 2.966E+07 1.773E+05 96.8 6.485E+11 1.656E+13 3.746E+12 9.977E-10 176.9 1027 1.904E+08 1.800E+11 2.935E+07 1.784E+05 96.9 6.492E+11 1.626E+13 3.674E+12 9.799E-10 176.8 1027 1.884E+08 1.765E+11 2.904E+07 1.795E+05 97.0 6.498E+11 1.597E+13 3.603E+12 9.624E-10 176.7 1027 1.865E+08 1.731E+11 2.873E+07 1.806E+05 97.1 6.502E+11 1.568E+13 3.533E+12 9.451E-10 176.6 1027 1.845E+08 1.697E+11 2.843E+07 1.817E+05 97.2 6.505E+11 1.540E+13 3.465E+12 9.282E-10 176.5 1027 1.826E+08 1.664E+11 2.814E+07 1.828E+05 97.3 6.507E+11 1.512E+13 3.398E+12 9.115E-10 176.4 1027 1.807E+08 1.631E+11 2.784E+07 1.839E+05 97.4 6.507E+11 1.485E+13 3.332E+12 8.950E-10 176.3 1027 1.789E+08 1.599E+11 2.756E+07 1.851E+05 97.5 6.506E+11 1.458E+13 3.267E+12 8.788E-10 176.2 1027 1.771E+08 1.567E+11 2.727E+07 1.862E+05 97.6 6.504E+11 1.431E+13 3.203E+12 8.629E-10 176.2 1027 1.753E+08 1.536E+11 2.699E+07 1.873E+05 97.7 6.500E+11 1.405E+13 3.140E+12 8.473E-10 176.1 1027 1.735E+08 1.506E+11 2.672E+07 1.884E+05 97.8 6.495E+11 1.380E+13 3.078E+12 8.319E-10 176.1 1027 1.718E+08 1.476E+11 2.644E+07 1.895E+05 97.9 6.489E+11 1.355E+13 3.018E+12 8.167E-10 176.0 1027 1.701E+08 1.446E+11 2.618E+07 1.906E+05 98.0 6.481E+11 1.330E+13 2.958E+12 8.018E-10 176.0 1027 1.684E+08 1.417E+11 2.591E+07 1.918E+05 98.1 6.473E+11 1.305E+13 2.900E+12 7.872E-10 175.9 1027 1.667E+08 1.389E+11 2.565E+07 1.929E+05 98.2 6.463E+11 1.281E+13 2.842E+12 7.727E-10 175.9 1027 1.651E+08 1.361E+11 2.539E+07 1.940E+05 98.3 6.452E+11 1.258E+13 2.785E+12 7.586E-10 175.9 1027 1.635E+08 1.333E+11 2.514E+07 1.952E+05 98.4 6.439E+11 1.235E+13 2.730E+12 7.446E-10 175.9 1027 1.619E+08 1.306E+11 2.489E+07 1.963E+05 98.5 6.426E+11 1.212E+13 2.675E+12 7.309E-10 175.8 1027 1.604E+08 1.279E+11 2.464E+07 1.974E+05 98.6 6.412E+11 1.189E+13 2.622E+12 7.174E-10 175.8 1027 1.588E+08 1.253E+11 2.440E+07 1.986E+05 98.7 6.396E+11 1.167E+13 2.569E+12 7.041E-10 175.8 1027 1.573E+08 1.227E+11 2.416E+07 1.997E+05 98.8 6.379E+11 1.146E+13 2.517E+12 6.911E-10 175.9 1027 1.559E+08 1.202E+11 2.392E+07 2.008E+05 98.9 6.362E+11 1.124E+13 2.466E+12 6.783E-10 175.9 1027 1.544E+08 1.177E+11 2.369E+07 2.020E+05 99.0 6.343E+11 1.103E+13 2.417E+12 6.656E-10 175.9 1027 1.530E+08 1.153E+11 2.346E+07 2.031E+05 99.1 6.323E+11 1.083E+13 2.368E+12 6.532E-10 175.9 1027 1.516E+08 1.129E+11 2.323E+07 2.043E+05 99.2 6.303E+11 1.062E+13 2.319E+12 6.410E-10 176.0 1027 1.502E+08 1.105E+11 2.300E+07 2.054E+05 99.3 6.281E+11 1.042E+13 2.272E+12 6.291E-10 176.0 1027 1.488E+08 1.082E+11 2.278E+07 2.066E+05 99.4 6.258E+11 1.023E+13 2.226E+12 6.173E-10 176.1 1027 1.475E+08 1.060E+11 2.256E+07 2.077E+05 99.5 6.235E+11 1.003E+13 2.180E+12 6.057E-10 176.1 1027 1.461E+08 1.037E+11 2.235E+07 2.089E+05 99.6 6.210E+11 9.846E+12 2.135E+12 5.943E-10 176.2 1027 1.448E+08 1.016E+11 2.214E+07 2.101E+05 99.7 6.185E+11 9.659E+12 2.092E+12 5.831E-10 176.3 1027 1.436E+08 9.940E+10 2.193E+07 2.112E+05 99.8 6.159E+11 9.476E+12 2.048E+12 5.721E-10 176.3 1027 1.423E+08 9.729E+10 2.172E+07 2.124E+05 99.9 6.132E+11 9.297E+12 2.006E+12 5.613E-10 176.4 1027 1.411E+08 9.522E+10 2.151E+07 2.135E+05fluids-1.0.22/tests/nrlmsise00/__init__.py0000644000175000017500000000225114302004506017651 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' fluids-1.0.22/tests/nrlmsise00/known_data_high_height.txt0000644000175000017500000025077014302004506022770 0ustar nileshnilesh100.0 6.104E+11 9.118E+12 1.964E+12 5.506E-10 176.5 1027 1.398E+08 9.317E+10 2.131E+07 2.147E+05 101.0 5.788E+11 7.514E+12 1.590E+12 4.541E-10 178.0 1027 1.287E+08 7.482E+10 1.942E+07 2.266E+05 102.0 5.423E+11 6.179E+12 1.282E+12 3.737E-10 180.2 1027 1.193E+08 5.975E+10 1.776E+07 2.389E+05 103.0 5.030E+11 5.074E+12 1.031E+12 3.072E-10 183.2 1027 1.114E+08 4.749E+10 1.628E+07 2.519E+05 104.0 4.629E+11 4.166E+12 8.283E+11 2.524E-10 187.0 1027 1.049E+08 3.760E+10 1.496E+07 2.658E+05 105.0 4.233E+11 3.422E+12 6.648E+11 2.076E-10 191.6 1027 9.941E+07 2.969E+10 1.377E+07 2.807E+05 106.0 3.852E+11 2.814E+12 5.335E+11 1.709E-10 196.9 1027 9.487E+07 2.340E+10 1.270E+07 2.968E+05 107.0 3.492E+11 2.318E+12 4.285E+11 1.410E-10 203.2 1027 9.107E+07 1.842E+10 1.172E+07 3.143E+05 108.0 3.157E+11 1.914E+12 3.447E+11 1.166E-10 210.3 1027 8.787E+07 1.449E+10 1.082E+07 3.332E+05 109.0 2.848E+11 1.585E+12 2.778E+11 9.673E-11 218.3 1027 8.515E+07 1.141E+10 9.995E+06 3.537E+05 110.0 2.565E+11 1.316E+12 2.245E+11 8.050E-11 227.2 1027 8.280E+07 8.998E+09 9.233E+06 3.758E+05 111.0 2.309E+11 1.097E+12 1.819E+11 6.725E-11 237.1 1027 8.072E+07 7.110E+09 8.527E+06 3.997E+05 112.0 2.077E+11 9.175E+11 1.480E+11 5.640E-11 248.1 1027 7.885E+07 5.634E+09 7.872E+06 4.254E+05 113.0 1.868E+11 7.706E+11 1.208E+11 4.749E-11 260.2 1027 7.710E+07 4.479E+09 7.264E+06 4.530E+05 114.0 1.680E+11 6.499E+11 9.905E+10 4.017E-11 273.4 1027 7.544E+07 3.575E+09 6.700E+06 4.826E+05 115.0 1.513E+11 5.506E+11 8.157E+10 3.413E-11 287.7 1027 7.382E+07 2.866E+09 6.177E+06 5.143E+05 116.0 1.363E+11 4.686E+11 6.750E+10 2.914E-11 303.2 1027 7.223E+07 2.309E+09 5.693E+06 5.483E+05 117.0 1.230E+11 4.008E+11 5.616E+10 2.501E-11 319.7 1027 7.064E+07 1.871E+09 5.246E+06 5.848E+05 118.0 1.113E+11 3.447E+11 4.698E+10 2.157E-11 337.2 1027 6.907E+07 1.525E+09 4.836E+06 6.242E+05 119.0 1.010E+11 2.981E+11 3.954E+10 1.872E-11 355.4 1027 6.753E+07 1.252E+09 4.460E+06 6.671E+05 120.0 9.190E+10 2.595E+11 3.351E+10 1.635E-11 373.9 1027 6.603E+07 1.036E+09 4.119E+06 7.142E+05 121.0 8.404E+10 2.275E+11 2.861E+10 1.438E-11 392.3 1027 6.462E+07 8.639E+08 3.811E+06 7.666E+05 122.0 7.728E+10 2.010E+11 2.463E+10 1.275E-11 409.9 1027 6.333E+07 7.276E+08 3.536E+06 8.255E+05 123.0 7.154E+10 1.792E+11 2.140E+10 1.141E-11 426.1 1027 6.220E+07 6.193E+08 3.291E+06 8.930E+05 124.0 6.685E+10 1.615E+11 1.880E+10 1.031E-11 439.1 836 6.134E+07 5.342E+08 3.080E+06 9.726E+05 125.0 6.258E+10 1.460E+11 1.658E+10 9.359E-12 452.1 836 6.045E+07 4.628E+08 2.885E+06 1.059E+06 126.0 5.873E+10 1.325E+11 1.468E+10 8.524E-12 464.7 836 5.958E+07 4.029E+08 2.705E+06 1.152E+06 127.0 5.524E+10 1.206E+11 1.305E+10 7.791E-12 476.9 836 5.871E+07 3.525E+08 2.539E+06 1.254E+06 128.0 5.206E+10 1.102E+11 1.164E+10 7.145E-12 488.6 836 5.784E+07 3.097E+08 2.386E+06 1.363E+06 129.0 4.917E+10 1.010E+11 1.042E+10 6.572E-12 500.0 836 5.698E+07 2.733E+08 2.245E+06 1.481E+06 130.0 4.652E+10 9.278E+10 9.360E+09 6.062E-12 511.0 836 5.614E+07 2.420E+08 2.114E+06 1.607E+06 131.0 4.409E+10 8.546E+10 8.430E+09 5.606E-12 521.6 836 5.530E+07 2.152E+08 1.992E+06 1.743E+06 132.0 4.185E+10 7.889E+10 7.614E+09 5.196E-12 531.9 836 5.448E+07 1.920E+08 1.880E+06 1.887E+06 133.0 3.979E+10 7.299E+10 6.894E+09 4.828E-12 541.8 836 5.367E+07 1.718E+08 1.775E+06 2.040E+06 134.0 3.788E+10 6.767E+10 6.259E+09 4.495E-12 551.5 836 5.288E+07 1.543E+08 1.678E+06 2.202E+06 135.0 3.611E+10 6.286E+10 5.695E+09 4.193E-12 560.8 836 5.211E+07 1.389E+08 1.587E+06 2.374E+06 136.0 3.446E+10 5.848E+10 5.194E+09 3.918E-12 569.7 836 5.135E+07 1.254E+08 1.503E+06 2.554E+06 137.0 3.293E+10 5.451E+10 4.747E+09 3.668E-12 578.4 836 5.061E+07 1.135E+08 1.424E+06 2.744E+06 138.0 3.150E+10 5.088E+10 4.347E+09 3.440E-12 586.9 836 4.989E+07 1.029E+08 1.351E+06 2.942E+06 139.0 3.017E+10 4.756E+10 3.988E+09 3.230E-12 595.0 836 4.919E+07 9.360E+07 1.283E+06 3.149E+06 140.0 2.891E+10 4.452E+10 3.666E+09 3.038E-12 602.9 836 4.851E+07 8.529E+07 1.219E+06 3.365E+06 141.0 2.774E+10 4.173E+10 3.376E+09 2.861E-12 610.5 836 4.785E+07 7.786E+07 1.160E+06 3.588E+06 142.0 2.664E+10 3.916E+10 3.114E+09 2.698E-12 617.8 836 4.721E+07 7.121E+07 1.105E+06 3.819E+06 143.0 2.560E+10 3.679E+10 2.876E+09 2.548E-12 624.9 836 4.658E+07 6.524E+07 1.053E+06 4.056E+06 144.0 2.462E+10 3.461E+10 2.661E+09 2.408E-12 631.8 836 4.598E+07 5.987E+07 1.004E+06 4.301E+06 145.0 2.370E+10 3.258E+10 2.466E+09 2.279E-12 638.5 836 4.539E+07 5.502E+07 9.591E+05 4.551E+06 146.0 2.283E+10 3.071E+10 2.288E+09 2.159E-12 644.9 836 4.482E+07 5.064E+07 9.167E+05 4.806E+06 147.0 2.200E+10 2.896E+10 2.125E+09 2.047E-12 651.1 836 4.427E+07 4.667E+07 8.770E+05 5.067E+06 148.0 2.122E+10 2.735E+10 1.977E+09 1.943E-12 657.1 836 4.374E+07 4.306E+07 8.399E+05 5.330E+06 149.0 2.048E+10 2.584E+10 1.841E+09 1.846E-12 663.0 836 4.322E+07 3.978E+07 8.051E+05 5.597E+06 150.0 1.977E+10 2.444E+10 1.717E+09 1.755E-12 668.6 836 4.271E+07 3.680E+07 7.725E+05 5.866E+06 151.0 1.911E+10 2.313E+10 1.602E+09 1.670E-12 674.1 836 4.222E+07 3.407E+07 7.420E+05 6.137E+06 152.0 1.847E+10 2.190E+10 1.497E+09 1.591E-12 679.3 836 4.175E+07 3.158E+07 7.133E+05 6.408E+06 153.0 1.786E+10 2.076E+10 1.400E+09 1.516E-12 684.4 836 4.129E+07 2.930E+07 6.864E+05 6.679E+06 154.0 1.728E+10 1.968E+10 1.311E+09 1.446E-12 689.3 836 4.084E+07 2.720E+07 6.612E+05 6.948E+06 155.0 1.673E+10 1.868E+10 1.229E+09 1.380E-12 694.1 836 4.041E+07 2.528E+07 6.375E+05 7.216E+06 156.0 1.620E+10 1.773E+10 1.152E+09 1.318E-12 698.7 836 3.998E+07 2.351E+07 6.152E+05 7.481E+06 157.0 1.570E+10 1.685E+10 1.082E+09 1.259E-12 703.2 836 3.957E+07 2.189E+07 5.942E+05 7.742E+06 158.0 1.521E+10 1.601E+10 1.016E+09 1.204E-12 707.5 836 3.917E+07 2.039E+07 5.745E+05 7.998E+06 159.0 1.475E+10 1.523E+10 9.553E+08 1.152E-12 711.7 836 3.878E+07 1.901E+07 5.560E+05 8.250E+06 160.0 1.431E+10 1.449E+10 8.988E+08 1.103E-12 715.7 836 3.840E+07 1.773E+07 5.385E+05 8.495E+06 161.0 1.388E+10 1.378E+10 8.462E+08 1.056E-12 719.6 836 3.804E+07 1.655E+07 5.221E+05 8.734E+06 162.0 1.347E+10 1.313E+10 7.973E+08 1.012E-12 723.4 836 3.768E+07 1.545E+07 5.066E+05 8.965E+06 163.0 1.308E+10 1.251E+10 7.516E+08 9.700E-13 727.1 836 3.732E+07 1.444E+07 4.920E+05 9.188E+06 164.0 1.270E+10 1.192E+10 7.090E+08 9.305E-13 730.6 836 3.698E+07 1.350E+07 4.782E+05 9.403E+06 165.0 1.234E+10 1.137E+10 6.692E+08 8.930E-13 734.0 836 3.665E+07 1.263E+07 4.652E+05 9.608E+06 166.0 1.199E+10 1.084E+10 6.320E+08 8.574E-13 737.3 836 3.632E+07 1.182E+07 4.529E+05 9.804E+06 167.0 1.165E+10 1.035E+10 5.972E+08 8.235E-13 740.5 836 3.600E+07 1.107E+07 4.414E+05 9.990E+06 168.0 1.133E+10 9.880E+09 5.646E+08 7.913E-13 743.6 836 3.569E+07 1.037E+07 4.304E+05 1.017E+07 169.0 1.102E+10 9.435E+09 5.340E+08 7.607E-13 746.6 836 3.539E+07 9.723E+06 4.201E+05 1.033E+07 170.0 1.072E+10 9.013E+09 5.054E+08 7.315E-13 749.5 836 3.509E+07 9.118E+06 4.103E+05 1.049E+07 171.0 1.043E+10 8.612E+09 4.785E+08 7.037E-13 752.3 836 3.480E+07 8.553E+06 4.010E+05 1.063E+07 172.0 1.015E+10 8.232E+09 4.532E+08 6.772E-13 755.0 836 3.451E+07 8.027E+06 3.922E+05 1.076E+07 173.0 9.877E+09 7.871E+09 4.295E+08 6.520E-13 757.6 836 3.423E+07 7.536E+06 3.839E+05 1.088E+07 174.0 9.615E+09 7.528E+09 4.071E+08 6.279E-13 760.2 836 3.396E+07 7.077E+06 3.761E+05 1.099E+07 175.0 9.363E+09 7.202E+09 3.861E+08 6.048E-13 762.6 836 3.369E+07 6.649E+06 3.686E+05 1.109E+07 176.0 9.118E+09 6.891E+09 3.663E+08 5.828E-13 765.0 836 3.343E+07 6.249E+06 3.615E+05 1.118E+07 177.0 8.882E+09 6.596E+09 3.476E+08 5.618E-13 767.3 836 3.317E+07 5.875E+06 3.548E+05 1.125E+07 178.0 8.653E+09 6.315E+09 3.300E+08 5.417E-13 769.5 836 3.292E+07 5.525E+06 3.485E+05 1.132E+07 179.0 8.432E+09 6.047E+09 3.134E+08 5.225E-13 771.7 836 3.267E+07 5.197E+06 3.424E+05 1.137E+07 180.0 8.218E+09 5.792E+09 2.977E+08 5.041E-13 773.8 836 3.243E+07 4.890E+06 3.367E+05 1.141E+07 181.0 8.010E+09 5.549E+09 2.829E+08 4.865E-13 775.8 836 3.219E+07 4.603E+06 3.312E+05 1.144E+07 182.0 7.809E+09 5.317E+09 2.690E+08 4.696E-13 777.7 836 3.195E+07 4.333E+06 3.260E+05 1.147E+07 183.0 7.613E+09 5.095E+09 2.557E+08 4.534E-13 779.6 836 3.172E+07 4.081E+06 3.211E+05 1.148E+07 184.0 7.424E+09 4.884E+09 2.432E+08 4.379E-13 781.4 836 3.149E+07 3.844E+06 3.164E+05 1.148E+07 185.0 7.241E+09 4.683E+09 2.314E+08 4.230E-13 783.2 836 3.127E+07 3.622E+06 3.119E+05 1.147E+07 186.0 7.063E+09 4.490E+09 2.202E+08 4.087E-13 784.9 836 3.105E+07 3.413E+06 3.076E+05 1.146E+07 187.0 6.890E+09 4.307E+09 2.096E+08 3.950E-13 786.6 836 3.083E+07 3.217E+06 3.036E+05 1.143E+07 188.0 6.722E+09 4.131E+09 1.996E+08 3.818E-13 788.2 836 3.062E+07 3.033E+06 2.997E+05 1.140E+07 189.0 6.559E+09 3.964E+09 1.901E+08 3.692E-13 789.7 836 3.041E+07 2.861E+06 2.960E+05 1.136E+07 190.0 6.401E+09 3.803E+09 1.810E+08 3.570E-13 791.2 836 3.020E+07 2.698E+06 2.925E+05 1.131E+07 191.0 6.248E+09 3.650E+09 1.725E+08 3.454E-13 792.6 836 3.000E+07 2.546E+06 2.891E+05 1.126E+07 192.0 6.098E+09 3.503E+09 1.644E+08 3.342E-13 794.0 836 2.979E+07 2.402E+06 2.859E+05 1.119E+07 193.0 5.953E+09 3.363E+09 1.567E+08 3.234E-13 795.4 836 2.960E+07 2.267E+06 2.828E+05 1.112E+07 194.0 5.812E+09 3.229E+09 1.493E+08 3.130E-13 796.7 836 2.940E+07 2.140E+06 2.799E+05 1.105E+07 195.0 5.675E+09 3.100E+09 1.424E+08 3.030E-13 798.0 836 2.921E+07 2.020E+06 2.771E+05 1.097E+07 196.0 5.541E+09 2.978E+09 1.358E+08 2.934E-13 799.2 836 2.902E+07 1.907E+06 2.744E+05 1.088E+07 197.0 5.412E+09 2.860E+09 1.295E+08 2.841E-13 800.4 836 2.883E+07 1.801E+06 2.719E+05 1.079E+07 198.0 5.285E+09 2.747E+09 1.236E+08 2.752E-13 801.5 836 2.864E+07 1.701E+06 2.694E+05 1.070E+07 199.0 5.162E+09 2.639E+09 1.179E+08 2.666E-13 802.7 836 2.846E+07 1.607E+06 2.671E+05 1.060E+07 200.0 5.043E+09 2.536E+09 1.125E+08 2.583E-13 803.7 836 2.828E+07 1.519E+06 2.648E+05 1.049E+07 201.0 4.926E+09 2.436E+09 1.074E+08 2.503E-13 804.8 836 2.808E+07 1.435E+06 2.627E+05 1.039E+07 202.0 4.813E+09 2.341E+09 1.025E+08 2.426E-13 805.8 836 2.791E+07 1.356E+06 2.606E+05 1.028E+07 203.0 4.702E+09 2.250E+09 9.786E+07 2.352E-13 806.8 836 2.773E+07 1.282E+06 2.586E+05 1.016E+07 204.0 4.595E+09 2.163E+09 9.345E+07 2.280E-13 807.7 836 2.756E+07 1.212E+06 2.567E+05 1.004E+07 205.0 4.490E+09 2.079E+09 8.924E+07 2.211E-13 808.6 836 2.739E+07 1.146E+06 2.549E+05 9.926E+06 206.0 4.388E+09 1.999E+09 8.523E+07 2.145E-13 809.5 836 2.722E+07 1.083E+06 2.531E+05 9.805E+06 207.0 4.288E+09 1.922E+09 8.142E+07 2.080E-13 810.4 836 2.706E+07 1.025E+06 2.515E+05 9.682E+06 208.0 4.191E+09 1.848E+09 7.778E+07 2.018E-13 811.2 836 2.689E+07 9.690E+05 2.498E+05 9.557E+06 209.0 4.097E+09 1.777E+09 7.432E+07 1.958E-13 812.0 836 2.673E+07 9.165E+05 2.483E+05 9.431E+06 210.0 4.005E+09 1.709E+09 7.102E+07 1.900E-13 812.8 836 2.657E+07 8.670E+05 2.468E+05 9.304E+06 211.0 3.915E+09 1.644E+09 6.787E+07 1.844E-13 813.5 836 2.641E+07 8.203E+05 2.453E+05 9.176E+06 212.0 3.827E+09 1.581E+09 6.487E+07 1.790E-13 814.2 836 2.625E+07 7.761E+05 2.439E+05 9.047E+06 213.0 3.742E+09 1.521E+09 6.201E+07 1.738E-13 814.9 836 2.610E+07 7.344E+05 2.426E+05 8.917E+06 214.0 3.659E+09 1.463E+09 5.928E+07 1.687E-13 815.6 836 2.594E+07 6.950E+05 2.413E+05 8.787E+06 215.0 3.577E+09 1.407E+09 5.668E+07 1.639E-13 816.3 836 2.579E+07 6.578E+05 2.401E+05 8.657E+06 216.0 3.498E+09 1.354E+09 5.419E+07 1.591E-13 816.9 836 2.564E+07 6.226E+05 2.389E+05 8.527E+06 217.0 3.421E+09 1.303E+09 5.182E+07 1.546E-13 817.5 836 2.549E+07 5.894E+05 2.377E+05 8.397E+06 218.0 3.345E+09 1.254E+09 4.956E+07 1.501E-13 818.1 836 2.534E+07 5.580E+05 2.366E+05 8.267E+06 219.0 3.271E+09 1.206E+09 4.740E+07 1.459E-13 818.7 836 2.519E+07 5.283E+05 2.355E+05 8.137E+06 220.0 3.199E+09 1.161E+09 4.534E+07 1.417E-13 819.3 836 2.505E+07 5.002E+05 2.345E+05 8.008E+06 221.0 3.129E+09 1.117E+09 4.338E+07 1.377E-13 819.8 836 2.490E+07 4.737E+05 2.335E+05 7.879E+06 222.0 3.061E+09 1.076E+09 4.150E+07 1.339E-13 820.3 836 2.476E+07 4.486E+05 2.325E+05 7.752E+06 223.0 2.994E+09 1.035E+09 3.970E+07 1.301E-13 820.8 836 2.462E+07 4.248E+05 2.316E+05 7.625E+06 224.0 2.928E+09 9.965E+08 3.799E+07 1.265E-13 821.3 836 2.448E+07 4.024E+05 2.307E+05 7.498E+06 225.0 2.865E+09 9.593E+08 3.635E+07 1.230E-13 821.8 836 2.434E+07 3.811E+05 2.298E+05 7.373E+06 226.0 2.802E+09 9.235E+08 3.479E+07 1.196E-13 822.3 836 2.420E+07 3.610E+05 2.289E+05 7.249E+06 227.0 2.742E+09 8.890E+08 3.329E+07 1.163E-13 822.7 836 2.406E+07 3.420E+05 2.281E+05 7.126E+06 228.0 2.682E+09 8.560E+08 3.187E+07 1.131E-13 823.1 836 2.393E+07 3.240E+05 2.273E+05 7.004E+06 229.0 2.624E+09 8.241E+08 3.050E+07 1.100E-13 823.6 836 2.379E+07 3.070E+05 2.265E+05 6.884E+06 230.0 2.567E+09 7.935E+08 2.920E+07 1.070E-13 824.0 836 2.366E+07 2.909E+05 2.258E+05 6.764E+06 231.0 2.512E+09 7.641E+08 2.795E+07 1.040E-13 824.4 836 2.353E+07 2.756E+05 2.250E+05 6.646E+06 232.0 2.458E+09 7.358E+08 2.676E+07 1.012E-13 824.7 836 2.339E+07 2.612E+05 2.243E+05 6.530E+06 233.0 2.405E+09 7.086E+08 2.562E+07 9.849E-14 825.1 836 2.326E+07 2.475E+05 2.236E+05 6.415E+06 234.0 2.353E+09 6.824E+08 2.453E+07 9.584E-14 825.5 836 2.313E+07 2.346E+05 2.229E+05 6.301E+06 235.0 2.303E+09 6.572E+08 2.349E+07 9.327E-14 825.8 836 2.300E+07 2.223E+05 2.223E+05 6.189E+06 236.0 2.254E+09 6.330E+08 2.249E+07 9.078E-14 826.1 836 2.288E+07 2.107E+05 2.216E+05 6.078E+06 237.0 2.205E+09 6.096E+08 2.154E+07 8.836E-14 826.5 836 2.275E+07 1.998E+05 2.210E+05 5.969E+06 238.0 2.158E+09 5.872E+08 2.063E+07 8.601E-14 826.8 836 2.262E+07 1.894E+05 2.204E+05 5.861E+06 239.0 2.112E+09 5.656E+08 1.976E+07 8.373E-14 827.1 836 2.250E+07 1.795E+05 2.198E+05 5.755E+06 240.0 2.067E+09 5.448E+08 1.892E+07 8.152E-14 827.4 836 2.238E+07 1.702E+05 2.192E+05 5.650E+06 241.0 2.023E+09 5.248E+08 1.813E+07 7.938E-14 827.6 836 2.225E+07 1.614E+05 2.186E+05 5.547E+06 242.0 1.980E+09 5.056E+08 1.736E+07 7.730E-14 827.9 836 2.213E+07 1.530E+05 2.181E+05 5.446E+06 243.0 1.938E+09 4.871E+08 1.663E+07 7.527E-14 828.2 836 2.201E+07 1.451E+05 2.175E+05 5.346E+06 244.0 1.897E+09 4.692E+08 1.593E+07 7.331E-14 828.4 836 2.189E+07 1.375E+05 2.170E+05 5.247E+06 245.0 1.857E+09 4.521E+08 1.526E+07 7.141E-14 828.7 836 2.177E+07 1.304E+05 2.165E+05 5.151E+06 246.0 1.817E+09 4.355E+08 1.462E+07 6.956E-14 828.9 836 2.165E+07 1.237E+05 2.160E+05 5.055E+06 247.0 1.779E+09 4.196E+08 1.401E+07 6.776E-14 829.2 836 2.154E+07 1.173E+05 2.155E+05 4.962E+06 248.0 1.741E+09 4.043E+08 1.343E+07 6.602E-14 829.4 836 2.142E+07 1.112E+05 2.150E+05 4.870E+06 249.0 1.704E+09 3.896E+08 1.286E+07 6.432E-14 829.6 836 2.130E+07 1.055E+05 2.145E+05 4.779E+06 250.0 1.669E+09 3.754E+08 1.233E+07 6.268E-14 829.8 836 2.119E+07 1.000E+05 2.141E+05 4.690E+06 251.0 1.633E+09 3.617E+08 1.181E+07 6.108E-14 830.0 836 2.107E+07 9.489E+04 2.136E+05 4.602E+06 252.0 1.599E+09 3.486E+08 1.132E+07 5.952E-14 830.2 836 2.096E+07 9.001E+04 2.131E+05 4.516E+06 253.0 1.565E+09 3.359E+08 1.085E+07 5.801E-14 830.4 836 2.085E+07 8.537E+04 2.127E+05 4.432E+06 254.0 1.532E+09 3.237E+08 1.040E+07 5.654E-14 830.6 836 2.073E+07 8.098E+04 2.123E+05 4.349E+06 255.0 1.500E+09 3.120E+08 9.964E+06 5.512E-14 830.8 836 2.062E+07 7.682E+04 2.118E+05 4.267E+06 256.0 1.469E+09 3.006E+08 9.550E+06 5.373E-14 830.9 836 2.051E+07 7.288E+04 2.114E+05 4.187E+06 257.0 1.438E+09 2.897E+08 9.154E+06 5.238E-14 831.1 836 2.040E+07 6.914E+04 2.110E+05 4.109E+06 258.0 1.408E+09 2.793E+08 8.774E+06 5.107E-14 831.3 836 2.029E+07 6.559E+04 2.106E+05 4.031E+06 259.0 1.378E+09 2.691E+08 8.410E+06 4.980E-14 831.4 836 2.018E+07 6.223E+04 2.102E+05 3.956E+06 260.0 1.350E+09 2.594E+08 8.062E+06 4.856E-14 831.6 836 2.008E+07 5.904E+04 2.098E+05 3.881E+06 261.0 1.321E+09 2.500E+08 7.728E+06 4.735E-14 831.7 836 1.997E+07 5.602E+04 2.094E+05 3.808E+06 262.0 1.294E+09 2.410E+08 7.408E+06 4.618E-14 831.9 836 1.986E+07 5.315E+04 2.090E+05 3.736E+06 263.0 1.267E+09 2.323E+08 7.102E+06 4.504E-14 832.0 836 1.976E+07 5.043E+04 2.087E+05 3.666E+06 264.0 1.240E+09 2.239E+08 6.809E+06 4.393E-14 832.2 836 1.965E+07 4.785E+04 2.083E+05 3.597E+06 265.0 1.214E+09 2.158E+08 6.528E+06 4.285E-14 832.3 836 1.955E+07 4.541E+04 2.079E+05 3.529E+06 266.0 1.189E+09 2.081E+08 6.258E+06 4.180E-14 832.4 836 1.944E+07 4.309E+04 2.076E+05 3.462E+06 267.0 1.164E+09 2.006E+08 6.001E+06 4.078E-14 832.5 836 1.934E+07 4.089E+04 2.072E+05 3.397E+06 268.0 1.140E+09 1.933E+08 5.753E+06 3.978E-14 832.6 836 1.924E+07 3.881E+04 2.068E+05 3.333E+06 269.0 1.116E+09 1.864E+08 5.516E+06 3.882E-14 832.8 836 1.914E+07 3.683E+04 2.065E+05 3.270E+06 270.0 1.093E+09 1.797E+08 5.290E+06 3.787E-14 832.9 836 1.904E+07 3.495E+04 2.062E+05 3.209E+06 271.0 1.071E+09 1.732E+08 5.072E+06 3.696E-14 833.0 836 1.894E+07 3.317E+04 2.058E+05 3.148E+06 272.0 1.048E+09 1.670E+08 4.864E+06 3.606E-14 833.1 836 1.884E+07 3.148E+04 2.055E+05 3.089E+06 273.0 1.027E+09 1.610E+08 4.664E+06 3.520E-14 833.2 836 1.874E+07 2.988E+04 2.051E+05 3.031E+06 274.0 1.005E+09 1.552E+08 4.473E+06 3.435E-14 833.3 836 1.864E+07 2.836E+04 2.048E+05 2.973E+06 275.0 9.846E+08 1.497E+08 4.289E+06 3.353E-14 833.4 836 1.854E+07 2.692E+04 2.045E+05 2.917E+06 276.0 9.642E+08 1.443E+08 4.113E+06 3.272E-14 833.5 836 1.844E+07 2.555E+04 2.042E+05 2.863E+06 277.0 9.442E+08 1.391E+08 3.945E+06 3.194E-14 833.6 836 1.835E+07 2.426E+04 2.038E+05 2.809E+06 278.0 9.247E+08 1.341E+08 3.783E+06 3.118E-14 833.6 836 1.825E+07 2.303E+04 2.035E+05 2.756E+06 279.0 9.056E+08 1.293E+08 3.628E+06 3.044E-14 833.7 836 1.815E+07 2.186E+04 2.032E+05 2.704E+06 280.0 8.869E+08 1.247E+08 3.480E+06 2.972E-14 833.8 836 1.806E+07 2.075E+04 2.029E+05 2.653E+06 281.0 8.686E+08 1.202E+08 3.338E+06 2.902E-14 833.9 836 1.796E+07 1.970E+04 2.026E+05 2.603E+06 282.0 8.507E+08 1.159E+08 3.201E+06 2.833E-14 834.0 836 1.787E+07 1.870E+04 2.023E+05 2.554E+06 283.0 8.332E+08 1.118E+08 3.071E+06 2.767E-14 834.0 836 1.778E+07 1.775E+04 2.020E+05 2.507E+06 284.0 8.160E+08 1.078E+08 2.945E+06 2.702E-14 834.1 836 1.768E+07 1.685E+04 2.017E+05 2.459E+06 285.0 7.992E+08 1.040E+08 2.825E+06 2.638E-14 834.2 836 1.759E+07 1.600E+04 2.014E+05 2.413E+06 286.0 7.827E+08 1.002E+08 2.710E+06 2.577E-14 834.2 836 1.750E+07 1.519E+04 2.011E+05 2.368E+06 287.0 7.666E+08 9.667E+07 2.600E+06 2.516E-14 834.3 836 1.741E+07 1.443E+04 2.008E+05 2.324E+06 288.0 7.509E+08 9.323E+07 2.494E+06 2.458E-14 834.4 836 1.732E+07 1.370E+04 2.005E+05 2.280E+06 289.0 7.354E+08 8.990E+07 2.392E+06 2.401E-14 834.4 836 1.723E+07 1.300E+04 2.002E+05 2.238E+06 290.0 7.203E+08 8.670E+07 2.295E+06 2.345E-14 834.5 836 1.714E+07 1.235E+04 1.999E+05 2.196E+06 291.0 7.055E+08 8.361E+07 2.202E+06 2.291E-14 834.5 836 1.705E+07 1.172E+04 1.996E+05 2.155E+06 292.0 6.910E+08 8.064E+07 2.112E+06 2.238E-14 834.6 836 1.696E+07 1.113E+04 1.993E+05 2.115E+06 293.0 6.769E+08 7.777E+07 2.026E+06 2.186E-14 834.6 836 1.687E+07 1.057E+04 1.990E+05 2.075E+06 294.0 6.630E+08 7.500E+07 1.944E+06 2.136E-14 834.7 836 1.679E+07 1.004E+04 1.987E+05 2.037E+06 295.0 6.494E+08 7.234E+07 1.865E+06 2.087E-14 834.7 836 1.670E+07 9.533E+03 1.985E+05 1.999E+06 296.0 6.361E+08 6.977E+07 1.789E+06 2.039E-14 834.8 836 1.661E+07 9.053E+03 1.982E+05 1.961E+06 297.0 6.231E+08 6.729E+07 1.717E+06 1.992E-14 834.8 836 1.653E+07 8.598E+03 1.979E+05 1.925E+06 298.0 6.103E+08 6.490E+07 1.647E+06 1.947E-14 834.9 836 1.644E+07 8.165E+03 1.976E+05 1.889E+06 299.0 5.978E+08 6.260E+07 1.580E+06 1.902E-14 834.9 836 1.636E+07 7.754E+03 1.973E+05 1.854E+06 300.0 5.856E+08 6.037E+07 1.516E+06 1.859E-14 835.0 836 1.627E+07 7.364E+03 1.970E+05 1.819E+06 301.0 5.736E+08 5.823E+07 1.455E+06 1.817E-14 835.0 836 1.619E+07 6.994E+03 1.968E+05 1.785E+06 302.0 5.619E+08 5.617E+07 1.396E+06 1.776E-14 835.1 836 1.610E+07 6.643E+03 1.965E+05 1.752E+06 303.0 5.504E+08 5.418E+07 1.340E+06 1.735E-14 835.1 836 1.602E+07 6.309E+03 1.962E+05 1.720E+06 304.0 5.392E+08 5.226E+07 1.285E+06 1.696E-14 835.1 836 1.594E+07 5.992E+03 1.960E+05 1.688E+06 305.0 5.281E+08 5.041E+07 1.234E+06 1.658E-14 835.2 836 1.586E+07 5.691E+03 1.957E+05 1.657E+06 306.0 5.174E+08 4.862E+07 1.184E+06 1.621E-14 835.2 836 1.577E+07 5.406E+03 1.954E+05 1.626E+06 307.0 5.068E+08 4.690E+07 1.136E+06 1.584E-14 835.2 836 1.569E+07 5.135E+03 1.952E+05 1.596E+06 308.0 4.965E+08 4.524E+07 1.090E+06 1.549E-14 835.3 836 1.561E+07 4.877E+03 1.949E+05 1.567E+06 309.0 4.864E+08 4.364E+07 1.046E+06 1.514E-14 835.3 836 1.553E+07 4.633E+03 1.946E+05 1.538E+06 310.0 4.765E+08 4.210E+07 1.004E+06 1.480E-14 835.3 836 1.545E+07 4.401E+03 1.944E+05 1.510E+06 311.0 4.668E+08 4.061E+07 9.633E+05 1.447E-14 835.4 836 1.537E+07 4.180E+03 1.941E+05 1.482E+06 312.0 4.573E+08 3.918E+07 9.245E+05 1.415E-14 835.4 836 1.529E+07 3.971E+03 1.938E+05 1.455E+06 313.0 4.480E+08 3.780E+07 8.873E+05 1.384E-14 835.4 836 1.521E+07 3.772E+03 1.936E+05 1.428E+06 314.0 4.388E+08 3.646E+07 8.515E+05 1.353E-14 835.4 836 1.514E+07 3.584E+03 1.933E+05 1.402E+06 315.0 4.299E+08 3.518E+07 8.172E+05 1.323E-14 835.5 836 1.506E+07 3.404E+03 1.931E+05 1.376E+06 316.0 4.212E+08 3.393E+07 7.844E+05 1.294E-14 835.5 836 1.498E+07 3.234E+03 1.928E+05 1.351E+06 317.0 4.126E+08 3.274E+07 7.528E+05 1.265E-14 835.5 836 1.490E+07 3.072E+03 1.926E+05 1.326E+06 318.0 4.043E+08 3.158E+07 7.225E+05 1.237E-14 835.5 836 1.483E+07 2.919E+03 1.923E+05 1.302E+06 319.0 3.960E+08 3.047E+07 6.935E+05 1.210E-14 835.6 836 1.475E+07 2.773E+03 1.920E+05 1.278E+06 320.0 3.880E+08 2.940E+07 6.656E+05 1.183E-14 835.6 836 1.468E+07 2.635E+03 1.918E+05 1.255E+06 321.0 3.801E+08 2.836E+07 6.389E+05 1.157E-14 835.6 836 1.460E+07 2.503E+03 1.914E+05 1.232E+06 322.0 3.724E+08 2.736E+07 6.132E+05 1.132E-14 835.6 836 1.453E+07 2.378E+03 1.912E+05 1.209E+06 323.0 3.649E+08 2.640E+07 5.886E+05 1.107E-14 835.7 836 1.445E+07 2.260E+03 1.909E+05 1.187E+06 324.0 3.575E+08 2.547E+07 5.650E+05 1.083E-14 835.7 836 1.438E+07 2.147E+03 1.907E+05 1.166E+06 325.0 3.502E+08 2.458E+07 5.423E+05 1.060E-14 835.7 836 1.430E+07 2.040E+03 1.904E+05 1.144E+06 326.0 3.432E+08 2.371E+07 5.206E+05 1.037E-14 835.7 836 1.423E+07 1.938E+03 1.902E+05 1.124E+06 327.0 3.362E+08 2.288E+07 4.997E+05 1.014E-14 835.7 836 1.416E+07 1.842E+03 1.899E+05 1.103E+06 328.0 3.294E+08 2.208E+07 4.797E+05 9.920E-15 835.7 836 1.409E+07 1.750E+03 1.897E+05 1.083E+06 329.0 3.227E+08 2.130E+07 4.605E+05 9.705E-15 835.8 836 1.401E+07 1.663E+03 1.894E+05 1.064E+06 330.0 3.162E+08 2.055E+07 4.420E+05 9.495E-15 835.8 836 1.394E+07 1.580E+03 1.892E+05 1.044E+06 331.0 3.098E+08 1.983E+07 4.243E+05 9.290E-15 835.8 836 1.387E+07 1.502E+03 1.890E+05 1.025E+06 332.0 3.036E+08 1.914E+07 4.073E+05 9.089E-15 835.8 836 1.380E+07 1.427E+03 1.887E+05 1.007E+06 333.0 2.974E+08 1.847E+07 3.911E+05 8.893E-15 835.8 836 1.373E+07 1.356E+03 1.885E+05 9.886E+05 334.0 2.914E+08 1.782E+07 3.754E+05 8.702E-15 835.8 836 1.366E+07 1.289E+03 1.882E+05 9.707E+05 335.0 2.855E+08 1.719E+07 3.604E+05 8.515E-15 835.9 836 1.359E+07 1.225E+03 1.880E+05 9.532E+05 336.0 2.798E+08 1.659E+07 3.460E+05 8.332E-15 835.9 836 1.352E+07 1.164E+03 1.878E+05 9.360E+05 337.0 2.741E+08 1.601E+07 3.322E+05 8.154E-15 835.9 836 1.345E+07 1.106E+03 1.875E+05 9.191E+05 338.0 2.686E+08 1.545E+07 3.189E+05 7.979E-15 835.9 836 1.338E+07 1.051E+03 1.873E+05 9.025E+05 339.0 2.632E+08 1.491E+07 3.062E+05 7.809E-15 835.9 836 1.332E+07 9.989E+02 1.870E+05 8.863E+05 340.0 2.579E+08 1.439E+07 2.940E+05 7.642E-15 835.9 836 1.325E+07 9.493E+02 1.868E+05 8.703E+05 341.0 2.527E+08 1.388E+07 2.822E+05 7.480E-15 835.9 836 1.318E+07 9.023E+02 1.866E+05 8.546E+05 342.0 2.476E+08 1.340E+07 2.710E+05 7.320E-15 835.9 836 1.311E+07 8.575E+02 1.863E+05 8.393E+05 343.0 2.426E+08 1.293E+07 2.602E+05 7.165E-15 836.0 836 1.305E+07 8.150E+02 1.861E+05 8.242E+05 344.0 2.377E+08 1.248E+07 2.498E+05 7.013E-15 836.0 836 1.298E+07 7.747E+02 1.858E+05 8.094E+05 345.0 2.329E+08 1.204E+07 2.399E+05 6.864E-15 836.0 836 1.292E+07 7.363E+02 1.856E+05 7.949E+05 346.0 2.283E+08 1.162E+07 2.303E+05 6.719E-15 836.0 836 1.285E+07 6.998E+02 1.854E+05 7.806E+05 347.0 2.237E+08 1.122E+07 2.211E+05 6.577E-15 836.0 836 1.279E+07 6.652E+02 1.851E+05 7.666E+05 348.0 2.192E+08 1.082E+07 2.123E+05 6.438E-15 836.0 836 1.272E+07 6.323E+02 1.849E+05 7.529E+05 349.0 2.148E+08 1.045E+07 2.039E+05 6.302E-15 836.0 836 1.266E+07 6.010E+02 1.847E+05 7.394E+05 350.0 2.105E+08 1.008E+07 1.958E+05 6.170E-15 836.0 836 1.259E+07 5.713E+02 1.844E+05 7.262E+05 351.0 2.062E+08 9.731E+06 1.880E+05 6.040E-15 836.0 836 1.253E+07 5.430E+02 1.842E+05 7.132E+05 352.0 2.021E+08 9.392E+06 1.805E+05 5.913E-15 836.0 836 1.247E+07 5.162E+02 1.840E+05 7.005E+05 353.0 1.980E+08 9.064E+06 1.733E+05 5.789E-15 836.0 836 1.240E+07 4.907E+02 1.837E+05 6.880E+05 354.0 1.941E+08 8.748E+06 1.665E+05 5.668E-15 836.1 836 1.234E+07 4.665E+02 1.835E+05 6.757E+05 355.0 1.902E+08 8.444E+06 1.598E+05 5.549E-15 836.1 836 1.228E+07 4.434E+02 1.833E+05 6.636E+05 356.0 1.864E+08 8.150E+06 1.535E+05 5.433E-15 836.1 836 1.221E+07 4.215E+02 1.830E+05 6.518E+05 357.0 1.826E+08 7.866E+06 1.474E+05 5.320E-15 836.1 836 1.215E+07 4.007E+02 1.828E+05 6.402E+05 358.0 1.790E+08 7.592E+06 1.416E+05 5.209E-15 836.1 836 1.209E+07 3.810E+02 1.826E+05 6.288E+05 359.0 1.754E+08 7.328E+06 1.359E+05 5.101E-15 836.1 836 1.203E+07 3.622E+02 1.823E+05 6.176E+05 360.0 1.719E+08 7.074E+06 1.306E+05 4.994E-15 836.1 836 1.197E+07 3.443E+02 1.821E+05 6.066E+05 361.0 1.684E+08 6.828E+06 1.254E+05 4.891E-15 836.1 836 1.191E+07 3.274E+02 1.819E+05 5.958E+05 362.0 1.651E+08 6.590E+06 1.204E+05 4.789E-15 836.1 836 1.185E+07 3.112E+02 1.816E+05 5.853E+05 363.0 1.618E+08 6.361E+06 1.156E+05 4.690E-15 836.1 836 1.179E+07 2.959E+02 1.814E+05 5.749E+05 364.0 1.585E+08 6.140E+06 1.111E+05 4.593E-15 836.1 836 1.173E+07 2.813E+02 1.812E+05 5.647E+05 365.0 1.554E+08 5.927E+06 1.067E+05 4.498E-15 836.1 836 1.167E+07 2.675E+02 1.809E+05 5.547E+05 366.0 1.522E+08 5.722E+06 1.024E+05 4.405E-15 836.1 836 1.161E+07 2.543E+02 1.807E+05 5.448E+05 367.0 1.492E+08 5.523E+06 9.839E+04 4.314E-15 836.1 836 1.155E+07 2.418E+02 1.805E+05 5.352E+05 368.0 1.462E+08 5.331E+06 9.450E+04 4.225E-15 836.1 836 1.150E+07 2.299E+02 1.803E+05 5.257E+05 369.0 1.433E+08 5.147E+06 9.076E+04 4.138E-15 836.1 836 1.144E+07 2.186E+02 1.800E+05 5.164E+05 370.0 1.404E+08 4.968E+06 8.717E+04 4.053E-15 836.1 836 1.138E+07 2.079E+02 1.798E+05 5.073E+05 371.0 1.376E+08 4.796E+06 8.373E+04 3.970E-15 836.2 836 1.132E+07 1.976E+02 1.796E+05 4.983E+05 372.0 1.349E+08 4.630E+06 8.042E+04 3.889E-15 836.2 836 1.127E+07 1.879E+02 1.793E+05 4.895E+05 373.0 1.322E+08 4.469E+06 7.724E+04 3.809E-15 836.2 836 1.121E+07 1.787E+02 1.791E+05 4.809E+05 374.0 1.296E+08 4.315E+06 7.419E+04 3.731E-15 836.2 836 1.115E+07 1.699E+02 1.789E+05 4.724E+05 375.0 1.270E+08 4.165E+06 7.127E+04 3.655E-15 836.2 836 1.110E+07 1.616E+02 1.787E+05 4.640E+05 376.0 1.245E+08 4.021E+06 6.845E+04 3.580E-15 836.2 836 1.104E+07 1.537E+02 1.784E+05 4.559E+05 377.0 1.220E+08 3.882E+06 6.575E+04 3.507E-15 836.2 836 1.099E+07 1.461E+02 1.782E+05 4.478E+05 378.0 1.195E+08 3.748E+06 6.316E+04 3.436E-15 836.2 836 1.093E+07 1.390E+02 1.780E+05 4.399E+05 379.0 1.172E+08 3.618E+06 6.067E+04 3.366E-15 836.2 836 1.088E+07 1.322E+02 1.778E+05 4.322E+05 380.0 1.148E+08 3.493E+06 5.828E+04 3.298E-15 836.2 836 1.082E+07 1.257E+02 1.775E+05 4.246E+05 381.0 1.126E+08 3.373E+06 5.598E+04 3.231E-15 836.2 836 1.077E+07 1.195E+02 1.773E+05 4.171E+05 382.0 1.103E+08 3.256E+06 5.378E+04 3.165E-15 836.2 836 1.071E+07 1.137E+02 1.771E+05 4.098E+05 383.0 1.081E+08 3.144E+06 5.166E+04 3.101E-15 836.2 836 1.066E+07 1.081E+02 1.769E+05 4.026E+05 384.0 1.060E+08 3.035E+06 4.963E+04 3.038E-15 836.2 836 1.061E+07 1.028E+02 1.767E+05 3.955E+05 385.0 1.039E+08 2.930E+06 4.768E+04 2.977E-15 836.2 836 1.055E+07 9.778E+01 1.764E+05 3.886E+05 386.0 1.018E+08 2.829E+06 4.580E+04 2.917E-15 836.2 836 1.050E+07 9.299E+01 1.762E+05 3.818E+05 387.0 9.978E+07 2.732E+06 4.400E+04 2.858E-15 836.2 836 1.045E+07 8.845E+01 1.760E+05 3.751E+05 388.0 9.780E+07 2.637E+06 4.227E+04 2.800E-15 836.2 836 1.040E+07 8.412E+01 1.758E+05 3.685E+05 389.0 9.586E+07 2.547E+06 4.061E+04 2.744E-15 836.2 836 1.034E+07 8.001E+01 1.756E+05 3.620E+05 390.0 9.396E+07 2.459E+06 3.901E+04 2.689E-15 836.2 836 1.029E+07 7.610E+01 1.753E+05 3.557E+05 391.0 9.209E+07 2.374E+06 3.748E+04 2.635E-15 836.2 836 1.024E+07 7.238E+01 1.751E+05 3.495E+05 392.0 9.027E+07 2.292E+06 3.601E+04 2.582E-15 836.2 836 1.019E+07 6.885E+01 1.749E+05 3.434E+05 393.0 8.848E+07 2.213E+06 3.460E+04 2.530E-15 836.2 836 1.014E+07 6.549E+01 1.747E+05 3.374E+05 394.0 8.673E+07 2.137E+06 3.324E+04 2.480E-15 836.2 836 1.009E+07 6.229E+01 1.745E+05 3.315E+05 395.0 8.501E+07 2.064E+06 3.193E+04 2.430E-15 836.2 836 1.004E+07 5.925E+01 1.742E+05 3.257E+05 396.0 8.332E+07 1.993E+06 3.068E+04 2.381E-15 836.2 836 9.988E+06 5.636E+01 1.740E+05 3.200E+05 397.0 8.167E+07 1.924E+06 2.948E+04 2.334E-15 836.2 836 9.938E+06 5.361E+01 1.738E+05 3.144E+05 398.0 8.006E+07 1.858E+06 2.832E+04 2.287E-15 836.2 836 9.888E+06 5.100E+01 1.736E+05 3.089E+05 399.0 7.847E+07 1.794E+06 2.721E+04 2.242E-15 836.2 836 9.839E+06 4.851E+01 1.734E+05 3.035E+05 400.0 7.692E+07 1.733E+06 2.615E+04 2.197E-15 836.2 836 9.790E+06 4.615E+01 1.732E+05 2.982E+05 401.0 7.540E+07 1.673E+06 2.512E+04 2.153E-15 836.2 836 9.741E+06 4.390E+01 1.729E+05 2.930E+05 402.0 7.391E+07 1.616E+06 2.414E+04 2.111E-15 836.2 836 9.693E+06 4.177E+01 1.727E+05 2.879E+05 403.0 7.245E+07 1.560E+06 2.319E+04 2.069E-15 836.2 836 9.644E+06 3.973E+01 1.725E+05 2.829E+05 404.0 7.102E+07 1.507E+06 2.229E+04 2.028E-15 836.2 836 9.596E+06 3.780E+01 1.723E+05 2.780E+05 405.0 6.961E+07 1.455E+06 2.142E+04 1.988E-15 836.2 836 9.549E+06 3.596E+01 1.721E+05 2.732E+05 406.0 6.824E+07 1.405E+06 2.058E+04 1.948E-15 836.2 836 9.501E+06 3.421E+01 1.719E+05 2.684E+05 407.0 6.689E+07 1.357E+06 1.977E+04 1.910E-15 836.2 836 9.454E+06 3.255E+01 1.716E+05 2.637E+05 408.0 6.557E+07 1.310E+06 1.900E+04 1.872E-15 836.2 836 9.407E+06 3.097E+01 1.714E+05 2.592E+05 409.0 6.428E+07 1.265E+06 1.826E+04 1.835E-15 836.3 836 9.360E+06 2.946E+01 1.712E+05 2.547E+05 410.0 6.301E+07 1.222E+06 1.755E+04 1.799E-15 836.3 836 9.314E+06 2.803E+01 1.710E+05 2.502E+05 411.0 6.177E+07 1.180E+06 1.686E+04 1.764E-15 836.3 836 9.267E+06 2.667E+01 1.708E+05 2.459E+05 412.0 6.055E+07 1.140E+06 1.620E+04 1.729E-15 836.3 836 9.221E+06 2.537E+01 1.706E+05 2.416E+05 413.0 5.936E+07 1.101E+06 1.557E+04 1.695E-15 836.3 836 9.176E+06 2.414E+01 1.704E+05 2.374E+05 414.0 5.819E+07 1.063E+06 1.496E+04 1.662E-15 836.3 836 9.130E+06 2.297E+01 1.702E+05 2.333E+05 415.0 5.704E+07 1.027E+06 1.438E+04 1.629E-15 836.3 836 9.085E+06 2.186E+01 1.699E+05 2.293E+05 416.0 5.592E+07 9.916E+05 1.382E+04 1.598E-15 836.3 836 9.040E+06 2.080E+01 1.697E+05 2.253E+05 417.0 5.482E+07 9.577E+05 1.328E+04 1.566E-15 836.3 836 8.995E+06 1.979E+01 1.695E+05 2.214E+05 418.0 5.374E+07 9.250E+05 1.276E+04 1.536E-15 836.3 836 8.950E+06 1.883E+01 1.693E+05 2.176E+05 419.0 5.268E+07 8.934E+05 1.227E+04 1.506E-15 836.3 836 8.906E+06 1.792E+01 1.691E+05 2.138E+05 420.0 5.165E+07 8.629E+05 1.179E+04 1.477E-15 836.3 836 8.862E+06 1.705E+01 1.689E+05 2.101E+05 421.0 5.063E+07 8.334E+05 1.133E+04 1.448E-15 836.3 836 8.818E+06 1.622E+01 1.687E+05 2.065E+05 422.0 4.964E+07 8.050E+05 1.089E+04 1.420E-15 836.3 836 8.774E+06 1.544E+01 1.685E+05 2.029E+05 423.0 4.866E+07 7.775E+05 1.046E+04 1.392E-15 836.3 836 8.731E+06 1.469E+01 1.683E+05 1.994E+05 424.0 4.771E+07 7.510E+05 1.006E+04 1.365E-15 836.3 836 8.688E+06 1.398E+01 1.681E+05 1.960E+05 425.0 4.677E+07 7.253E+05 9.666E+03 1.339E-15 836.3 836 8.645E+06 1.330E+01 1.678E+05 1.926E+05 426.0 4.585E+07 7.006E+05 9.290E+03 1.313E-15 836.3 836 8.602E+06 1.266E+01 1.676E+05 1.893E+05 427.0 4.495E+07 6.767E+05 8.929E+03 1.287E-15 836.3 836 8.560E+06 1.205E+01 1.674E+05 1.860E+05 428.0 4.407E+07 6.537E+05 8.582E+03 1.262E-15 836.3 836 8.517E+06 1.147E+01 1.672E+05 1.828E+05 429.0 4.321E+07 6.314E+05 8.249E+03 1.238E-15 836.3 836 8.475E+06 1.091E+01 1.670E+05 1.796E+05 430.0 4.236E+07 6.099E+05 7.929E+03 1.214E-15 836.3 836 8.433E+06 1.039E+01 1.668E+05 1.765E+05 431.0 4.153E+07 5.891E+05 7.621E+03 1.191E-15 836.3 836 8.392E+06 9.885E+00 1.666E+05 1.735E+05 432.0 4.071E+07 5.691E+05 7.325E+03 1.168E-15 836.3 836 8.350E+06 9.407E+00 1.664E+05 1.705E+05 433.0 3.992E+07 5.497E+05 7.041E+03 1.145E-15 836.3 836 8.309E+06 8.954E+00 1.662E+05 1.676E+05 434.0 3.914E+07 5.310E+05 6.768E+03 1.123E-15 836.3 836 8.268E+06 8.522E+00 1.660E+05 1.647E+05 435.0 3.837E+07 5.130E+05 6.506E+03 1.102E-15 836.3 836 8.227E+06 8.111E+00 1.658E+05 1.619E+05 436.0 3.762E+07 4.955E+05 6.253E+03 1.081E-15 836.3 836 8.187E+06 7.720E+00 1.656E+05 1.591E+05 437.0 3.688E+07 4.787E+05 6.011E+03 1.060E-15 836.3 836 8.146E+06 7.348E+00 1.654E+05 1.563E+05 438.0 3.616E+07 4.624E+05 5.778E+03 1.040E-15 836.3 836 8.106E+06 6.993E+00 1.652E+05 1.537E+05 439.0 3.545E+07 4.467E+05 5.554E+03 1.020E-15 836.3 836 8.066E+06 6.657E+00 1.650E+05 1.510E+05 440.0 3.476E+07 4.315E+05 5.339E+03 1.001E-15 836.3 836 8.027E+06 6.336E+00 1.648E+05 1.484E+05 441.0 3.408E+07 4.169E+05 5.133E+03 9.815E-16 836.3 836 7.987E+06 6.031E+00 1.646E+05 1.459E+05 442.0 3.342E+07 4.027E+05 4.934E+03 9.629E-16 836.3 836 7.948E+06 5.741E+00 1.644E+05 1.434E+05 443.0 3.276E+07 3.891E+05 4.743E+03 9.446E-16 836.3 836 7.909E+06 5.465E+00 1.642E+05 1.409E+05 444.0 3.212E+07 3.759E+05 4.560E+03 9.266E-16 836.3 836 7.870E+06 5.202E+00 1.640E+05 1.385E+05 445.0 3.150E+07 3.631E+05 4.384E+03 9.091E-16 836.3 836 7.831E+06 4.952E+00 1.637E+05 1.361E+05 446.0 3.088E+07 3.508E+05 4.214E+03 8.919E-16 836.3 836 7.793E+06 4.713E+00 1.635E+05 1.338E+05 447.0 3.028E+07 3.389E+05 4.051E+03 8.750E-16 836.3 836 7.754E+06 4.487E+00 1.633E+05 1.315E+05 448.0 2.969E+07 3.274E+05 3.895E+03 8.585E-16 836.3 836 7.716E+06 4.271E+00 1.631E+05 1.292E+05 449.0 2.911E+07 3.164E+05 3.744E+03 8.423E-16 836.3 836 7.678E+06 4.066E+00 1.629E+05 1.270E+05 450.0 2.854E+07 3.056E+05 3.600E+03 8.264E-16 836.3 836 7.641E+06 3.871E+00 1.627E+05 1.249E+05 451.0 2.799E+07 2.953E+05 3.461E+03 8.108E-16 836.3 836 7.603E+06 3.685E+00 1.625E+05 1.225E+05 452.0 2.744E+07 2.853E+05 3.327E+03 7.956E-16 836.3 836 7.566E+06 3.508E+00 1.623E+05 1.205E+05 453.0 2.691E+07 2.757E+05 3.199E+03 7.806E-16 836.3 836 7.529E+06 3.340E+00 1.621E+05 1.184E+05 454.0 2.638E+07 2.663E+05 3.076E+03 7.660E-16 836.3 836 7.492E+06 3.180E+00 1.619E+05 1.164E+05 455.0 2.587E+07 2.573E+05 2.957E+03 7.516E-16 836.3 836 7.455E+06 3.027E+00 1.617E+05 1.144E+05 456.0 2.537E+07 2.486E+05 2.843E+03 7.376E-16 836.3 836 7.419E+06 2.882E+00 1.615E+05 1.124E+05 457.0 2.487E+07 2.402E+05 2.734E+03 7.238E-16 836.3 836 7.382E+06 2.744E+00 1.613E+05 1.105E+05 458.0 2.439E+07 2.321E+05 2.628E+03 7.103E-16 836.3 836 7.346E+06 2.613E+00 1.612E+05 1.086E+05 459.0 2.391E+07 2.243E+05 2.527E+03 6.970E-16 836.3 836 7.310E+06 2.487E+00 1.610E+05 1.068E+05 460.0 2.345E+07 2.167E+05 2.430E+03 6.840E-16 836.3 836 7.274E+06 2.368E+00 1.608E+05 1.050E+05 461.0 2.299E+07 2.094E+05 2.336E+03 6.713E-16 836.3 836 7.239E+06 2.255E+00 1.606E+05 1.032E+05 462.0 2.255E+07 2.023E+05 2.247E+03 6.588E-16 836.3 836 7.203E+06 2.147E+00 1.604E+05 1.014E+05 463.0 2.211E+07 1.955E+05 2.160E+03 6.466E-16 836.3 836 7.168E+06 2.044E+00 1.602E+05 9.971E+04 464.0 2.168E+07 1.889E+05 2.077E+03 6.346E-16 836.3 836 7.133E+06 1.947E+00 1.600E+05 9.802E+04 465.0 2.126E+07 1.825E+05 1.997E+03 6.229E-16 836.3 836 7.098E+06 1.854E+00 1.598E+05 9.635E+04 466.0 2.085E+07 1.764E+05 1.920E+03 6.114E-16 836.3 836 7.064E+06 1.765E+00 1.596E+05 9.471E+04 467.0 2.044E+07 1.704E+05 1.847E+03 6.001E-16 836.3 836 7.029E+06 1.681E+00 1.594E+05 9.310E+04 468.0 2.005E+07 1.647E+05 1.776E+03 5.890E-16 836.3 836 6.995E+06 1.600E+00 1.592E+05 9.152E+04 469.0 1.966E+07 1.591E+05 1.708E+03 5.782E-16 836.3 836 6.961E+06 1.524E+00 1.590E+05 8.997E+04 470.0 1.928E+07 1.538E+05 1.642E+03 5.675E-16 836.3 836 6.927E+06 1.451E+00 1.588E+05 8.844E+04 471.0 1.890E+07 1.486E+05 1.579E+03 5.571E-16 836.3 836 6.893E+06 1.382E+00 1.586E+05 8.694E+04 472.0 1.854E+07 1.436E+05 1.518E+03 5.469E-16 836.3 836 6.859E+06 1.316E+00 1.584E+05 8.546E+04 473.0 1.818E+07 1.388E+05 1.460E+03 5.369E-16 836.3 836 6.826E+06 1.253E+00 1.582E+05 8.401E+04 474.0 1.783E+07 1.341E+05 1.404E+03 5.271E-16 836.3 836 6.792E+06 1.193E+00 1.580E+05 8.259E+04 475.0 1.748E+07 1.296E+05 1.350E+03 5.174E-16 836.3 836 6.759E+06 1.136E+00 1.578E+05 8.119E+04 476.0 1.714E+07 1.253E+05 1.299E+03 5.080E-16 836.3 836 6.726E+06 1.082E+00 1.576E+05 7.981E+04 477.0 1.681E+07 1.210E+05 1.249E+03 4.987E-16 836.3 836 6.694E+06 1.031E+00 1.574E+05 7.846E+04 478.0 1.649E+07 1.170E+05 1.201E+03 4.897E-16 836.3 836 6.661E+06 9.817E-01 1.573E+05 7.713E+04 479.0 1.617E+07 1.131E+05 1.155E+03 4.808E-16 836.3 836 6.629E+06 9.349E-01 1.571E+05 7.583E+04 480.0 1.586E+07 1.093E+05 1.111E+03 4.721E-16 836.3 836 6.596E+06 8.904E-01 1.569E+05 7.454E+04 481.0 1.555E+07 1.056E+05 1.068E+03 4.635E-16 836.3 836 6.564E+06 8.480E-01 1.567E+05 7.328E+04 482.0 1.525E+07 1.020E+05 1.028E+03 4.551E-16 836.3 836 6.532E+06 8.077E-01 1.565E+05 7.204E+04 483.0 1.495E+07 9.863E+04 9.883E+02 4.469E-16 836.3 836 6.501E+06 7.693E-01 1.563E+05 7.082E+04 484.0 1.467E+07 9.532E+04 9.505E+02 4.388E-16 836.3 836 6.469E+06 7.327E-01 1.561E+05 6.963E+04 485.0 1.438E+07 9.212E+04 9.142E+02 4.309E-16 836.3 836 6.438E+06 6.978E-01 1.559E+05 6.845E+04 486.0 1.411E+07 8.904E+04 8.792E+02 4.232E-16 836.3 836 6.406E+06 6.647E-01 1.557E+05 6.729E+04 487.0 1.383E+07 8.605E+04 8.457E+02 4.156E-16 836.3 836 6.375E+06 6.331E-01 1.555E+05 6.616E+04 488.0 1.357E+07 8.317E+04 8.134E+02 4.081E-16 836.3 836 6.344E+06 6.030E-01 1.554E+05 6.504E+04 489.0 1.331E+07 8.039E+04 7.823E+02 4.008E-16 836.3 836 6.314E+06 5.744E-01 1.552E+05 6.394E+04 490.0 1.305E+07 7.770E+04 7.525E+02 3.937E-16 836.3 836 6.283E+06 5.471E-01 1.550E+05 6.286E+04 491.0 1.280E+07 7.510E+04 7.238E+02 3.867E-16 836.3 836 6.252E+06 5.212E-01 1.548E+05 6.180E+04 492.0 1.255E+07 7.258E+04 6.962E+02 3.798E-16 836.3 836 6.222E+06 4.964E-01 1.546E+05 6.076E+04 493.0 1.231E+07 7.016E+04 6.696E+02 3.730E-16 836.3 836 6.192E+06 4.729E-01 1.544E+05 5.973E+04 494.0 1.207E+07 6.781E+04 6.441E+02 3.664E-16 836.3 836 6.162E+06 4.505E-01 1.542E+05 5.873E+04 495.0 1.184E+07 6.554E+04 6.195E+02 3.599E-16 836.3 836 6.132E+06 4.291E-01 1.540E+05 5.774E+04 496.0 1.161E+07 6.335E+04 5.959E+02 3.535E-16 836.3 836 6.102E+06 4.088E-01 1.538E+05 5.676E+04 497.0 1.139E+07 6.124E+04 5.732E+02 3.473E-16 836.3 836 6.073E+06 3.894E-01 1.537E+05 5.581E+04 498.0 1.117E+07 5.919E+04 5.514E+02 3.411E-16 836.3 836 6.043E+06 3.710E-01 1.535E+05 5.487E+04 499.0 1.096E+07 5.722E+04 5.304E+02 3.351E-16 836.3 836 6.014E+06 3.534E-01 1.533E+05 5.394E+04 500.0 1.075E+07 5.531E+04 5.102E+02 3.292E-16 836.3 836 5.985E+06 3.367E-01 1.531E+05 5.304E+04 501.0 1.054E+07 5.346E+04 4.908E+02 3.235E-16 836.3 836 5.956E+06 3.207E-01 1.529E+05 5.214E+04 502.0 1.034E+07 5.168E+04 4.722E+02 3.178E-16 836.3 836 5.927E+06 3.056E-01 1.527E+05 5.127E+04 503.0 1.014E+07 4.996E+04 4.542E+02 3.122E-16 836.3 836 5.899E+06 2.911E-01 1.525E+05 5.040E+04 504.0 9.944E+06 4.829E+04 4.370E+02 3.068E-16 836.3 836 5.870E+06 2.773E-01 1.524E+05 4.956E+04 505.0 9.753E+06 4.668E+04 4.204E+02 3.014E-16 836.3 836 5.842E+06 2.642E-01 1.522E+05 4.872E+04 506.0 9.566E+06 4.513E+04 4.044E+02 2.962E-16 836.3 836 5.814E+06 2.517E-01 1.520E+05 4.791E+04 507.0 9.383E+06 4.362E+04 3.890E+02 2.910E-16 836.3 836 5.786E+06 2.399E-01 1.518E+05 4.710E+04 508.0 9.203E+06 4.217E+04 3.743E+02 2.860E-16 836.3 836 5.758E+06 2.285E-01 1.516E+05 4.631E+04 509.0 9.027E+06 4.077E+04 3.601E+02 2.810E-16 836.3 836 5.730E+06 2.177E-01 1.514E+05 4.553E+04 510.0 8.854E+06 3.941E+04 3.464E+02 2.762E-16 836.3 836 5.702E+06 2.075E-01 1.513E+05 4.477E+04 511.0 8.684E+06 3.810E+04 3.333E+02 2.714E-16 836.3 836 5.675E+06 1.977E-01 1.511E+05 4.402E+04 512.0 8.518E+06 3.683E+04 3.206E+02 2.667E-16 836.3 836 5.647E+06 1.883E-01 1.509E+05 4.328E+04 513.0 8.355E+06 3.561E+04 3.085E+02 2.621E-16 836.3 836 5.620E+06 1.795E-01 1.507E+05 4.255E+04 514.0 8.195E+06 3.442E+04 2.968E+02 2.576E-16 836.3 836 5.593E+06 1.710E-01 1.505E+05 4.184E+04 515.0 8.038E+06 3.328E+04 2.855E+02 2.532E-16 836.3 836 5.566E+06 1.629E-01 1.504E+05 4.114E+04 516.0 7.885E+06 3.217E+04 2.747E+02 2.489E-16 836.3 836 5.539E+06 1.553E-01 1.502E+05 4.045E+04 517.0 7.734E+06 3.110E+04 2.643E+02 2.447E-16 836.3 836 5.513E+06 1.479E-01 1.500E+05 3.977E+04 518.0 7.586E+06 3.007E+04 2.543E+02 2.405E-16 836.3 836 5.486E+06 1.410E-01 1.498E+05 3.911E+04 519.0 7.441E+06 2.907E+04 2.447E+02 2.364E-16 836.3 836 5.460E+06 1.343E-01 1.496E+05 3.845E+04 520.0 7.299E+06 2.811E+04 2.354E+02 2.324E-16 836.3 836 5.433E+06 1.280E-01 1.494E+05 3.781E+04 521.0 7.160E+06 2.718E+04 2.265E+02 2.285E-16 836.3 836 5.407E+06 1.220E-01 1.493E+05 3.718E+04 522.0 7.023E+06 2.627E+04 2.179E+02 2.246E-16 836.3 836 5.381E+06 1.163E-01 1.491E+05 3.655E+04 523.0 6.889E+06 2.540E+04 2.097E+02 2.208E-16 836.3 836 5.355E+06 1.108E-01 1.489E+05 3.594E+04 524.0 6.758E+06 2.456E+04 2.018E+02 2.171E-16 836.3 836 5.330E+06 1.056E-01 1.487E+05 3.534E+04 525.0 6.629E+06 2.375E+04 1.942E+02 2.134E-16 836.3 836 5.304E+06 1.006E-01 1.486E+05 3.475E+04 526.0 6.502E+06 2.296E+04 1.868E+02 2.099E-16 836.3 836 5.279E+06 9.589E-02 1.484E+05 3.417E+04 527.0 6.378E+06 2.220E+04 1.798E+02 2.064E-16 836.3 836 5.253E+06 9.139E-02 1.482E+05 3.360E+04 528.0 6.257E+06 2.147E+04 1.730E+02 2.029E-16 836.3 836 5.228E+06 8.709E-02 1.480E+05 3.304E+04 529.0 6.138E+06 2.075E+04 1.665E+02 1.995E-16 836.3 836 5.203E+06 8.301E-02 1.478E+05 3.249E+04 530.0 6.021E+06 2.007E+04 1.602E+02 1.962E-16 836.3 836 5.178E+06 7.911E-02 1.477E+05 3.195E+04 531.0 5.906E+06 1.940E+04 1.541E+02 1.930E-16 836.3 836 5.153E+06 7.540E-02 1.475E+05 3.141E+04 532.0 5.794E+06 1.876E+04 1.483E+02 1.898E-16 836.3 836 5.129E+06 7.186E-02 1.473E+05 3.089E+04 533.0 5.683E+06 1.814E+04 1.427E+02 1.866E-16 836.3 836 5.104E+06 6.849E-02 1.471E+05 3.038E+04 534.0 5.575E+06 1.754E+04 1.374E+02 1.836E-16 836.3 836 5.080E+06 6.528E-02 1.470E+05 2.987E+04 535.0 5.469E+06 1.696E+04 1.322E+02 1.806E-16 836.3 836 5.055E+06 6.222E-02 1.468E+05 2.937E+04 536.0 5.365E+06 1.640E+04 1.272E+02 1.776E-16 836.3 836 5.031E+06 5.931E-02 1.466E+05 2.888E+04 537.0 5.263E+06 1.586E+04 1.224E+02 1.747E-16 836.3 836 5.007E+06 5.653E-02 1.464E+05 2.840E+04 538.0 5.163E+06 1.534E+04 1.178E+02 1.718E-16 836.3 836 4.983E+06 5.388E-02 1.462E+05 2.793E+04 539.0 5.065E+06 1.483E+04 1.134E+02 1.690E-16 836.3 836 4.959E+06 5.136E-02 1.461E+05 2.746E+04 540.0 4.969E+06 1.434E+04 1.091E+02 1.663E-16 836.3 836 4.935E+06 4.895E-02 1.459E+05 2.701E+04 541.0 4.875E+06 1.387E+04 1.050E+02 1.636E-16 836.3 836 4.912E+06 4.666E-02 1.457E+05 2.656E+04 542.0 4.782E+06 1.341E+04 1.011E+02 1.610E-16 836.3 836 4.888E+06 4.448E-02 1.455E+05 2.612E+04 543.0 4.691E+06 1.297E+04 9.726E+01 1.584E-16 836.3 836 4.865E+06 4.240E-02 1.454E+05 2.568E+04 544.0 4.602E+06 1.254E+04 9.360E+01 1.558E-16 836.3 836 4.842E+06 4.042E-02 1.452E+05 2.526E+04 545.0 4.515E+06 1.213E+04 9.009E+01 1.533E-16 836.3 836 4.819E+06 3.853E-02 1.450E+05 2.484E+04 546.0 4.430E+06 1.173E+04 8.670E+01 1.509E-16 836.3 836 4.796E+06 3.673E-02 1.449E+05 2.442E+04 547.0 4.346E+06 1.134E+04 8.345E+01 1.484E-16 836.3 836 4.773E+06 3.501E-02 1.447E+05 2.402E+04 548.0 4.263E+06 1.097E+04 8.032E+01 1.461E-16 836.3 836 4.750E+06 3.338E-02 1.445E+05 2.362E+04 549.0 4.183E+06 1.061E+04 7.730E+01 1.438E-16 836.3 836 4.727E+06 3.182E-02 1.443E+05 2.323E+04 550.0 4.103E+06 1.026E+04 7.440E+01 1.415E-16 836.3 836 4.705E+06 3.034E-02 1.442E+05 2.284E+04 551.0 4.026E+06 9.922E+03 7.161E+01 1.392E-16 836.3 836 4.682E+06 2.892E-02 1.440E+05 2.246E+04 552.0 3.949E+06 9.595E+03 6.893E+01 1.370E-16 836.3 836 4.660E+06 2.757E-02 1.438E+05 2.209E+04 553.0 3.875E+06 9.280E+03 6.634E+01 1.349E-16 836.3 836 4.638E+06 2.629E-02 1.436E+05 2.172E+04 554.0 3.801E+06 8.975E+03 6.386E+01 1.328E-16 836.3 836 4.616E+06 2.506E-02 1.435E+05 2.136E+04 555.0 3.730E+06 8.680E+03 6.146E+01 1.307E-16 836.3 836 4.594E+06 2.389E-02 1.433E+05 2.101E+04 556.0 3.659E+06 8.395E+03 5.916E+01 1.287E-16 836.3 836 4.572E+06 2.278E-02 1.431E+05 2.066E+04 557.0 3.590E+06 8.119E+03 5.695E+01 1.267E-16 836.3 836 4.550E+06 2.172E-02 1.430E+05 2.032E+04 558.0 3.522E+06 7.853E+03 5.482E+01 1.247E-16 836.3 836 4.529E+06 2.071E-02 1.428E+05 1.998E+04 559.0 3.456E+06 7.595E+03 5.277E+01 1.228E-16 836.3 836 4.507E+06 1.974E-02 1.426E+05 1.965E+04 560.0 3.390E+06 7.346E+03 5.079E+01 1.209E-16 836.3 836 4.486E+06 1.882E-02 1.425E+05 1.933E+04 561.0 3.326E+06 7.105E+03 4.889E+01 1.190E-16 836.3 836 4.464E+06 1.795E-02 1.423E+05 1.901E+04 562.0 3.264E+06 6.872E+03 4.706E+01 1.172E-16 836.3 836 4.443E+06 1.711E-02 1.421E+05 1.869E+04 563.0 3.202E+06 6.647E+03 4.531E+01 1.154E-16 836.3 836 4.422E+06 1.632E-02 1.419E+05 1.839E+04 564.0 3.142E+06 6.429E+03 4.361E+01 1.136E-16 836.3 836 4.401E+06 1.556E-02 1.418E+05 1.808E+04 565.0 3.082E+06 6.218E+03 4.198E+01 1.119E-16 836.3 836 4.380E+06 1.484E-02 1.416E+05 1.778E+04 566.0 3.024E+06 6.015E+03 4.042E+01 1.102E-16 836.3 836 4.359E+06 1.415E-02 1.414E+05 1.749E+04 567.0 2.967E+06 5.818E+03 3.891E+01 1.085E-16 836.3 836 4.339E+06 1.349E-02 1.413E+05 1.720E+04 568.0 2.911E+06 5.627E+03 3.745E+01 1.069E-16 836.3 836 4.318E+06 1.286E-02 1.411E+05 1.692E+04 569.0 2.857E+06 5.443E+03 3.606E+01 1.053E-16 836.3 836 4.298E+06 1.227E-02 1.409E+05 1.664E+04 570.0 2.803E+06 5.265E+03 3.471E+01 1.037E-16 836.3 836 4.277E+06 1.170E-02 1.408E+05 1.636E+04 571.0 2.750E+06 5.093E+03 3.342E+01 1.022E-16 836.3 836 4.257E+06 1.115E-02 1.406E+05 1.609E+04 572.0 2.698E+06 4.926E+03 3.217E+01 1.006E-16 836.3 836 4.237E+06 1.064E-02 1.404E+05 1.583E+04 573.0 2.648E+06 4.765E+03 3.097E+01 9.913E-17 836.3 836 4.217E+06 1.014E-02 1.403E+05 1.557E+04 574.0 2.598E+06 4.610E+03 2.982E+01 9.767E-17 836.3 836 4.197E+06 9.674E-03 1.401E+05 1.531E+04 575.0 2.549E+06 4.459E+03 2.871E+01 9.622E-17 836.3 836 4.177E+06 9.225E-03 1.399E+05 1.506E+04 576.0 2.501E+06 4.313E+03 2.764E+01 9.481E-17 836.3 836 4.157E+06 8.798E-03 1.398E+05 1.481E+04 577.0 2.454E+06 4.172E+03 2.661E+01 9.342E-17 836.3 836 4.137E+06 8.391E-03 1.396E+05 1.457E+04 578.0 2.408E+06 4.036E+03 2.562E+01 9.205E-17 836.3 836 4.118E+06 8.002E-03 1.394E+05 1.433E+04 579.0 2.363E+06 3.905E+03 2.467E+01 9.071E-17 836.3 836 4.098E+06 7.632E-03 1.393E+05 1.409E+04 580.0 2.318E+06 3.777E+03 2.375E+01 8.939E-17 836.3 836 4.079E+06 7.278E-03 1.391E+05 1.386E+04 581.0 2.275E+06 3.654E+03 2.287E+01 8.809E-17 836.3 836 4.060E+06 6.942E-03 1.389E+05 1.363E+04 582.0 2.232E+06 3.535E+03 2.202E+01 8.682E-17 836.3 836 4.041E+06 6.621E-03 1.388E+05 1.341E+04 583.0 2.190E+06 3.420E+03 2.120E+01 8.557E-17 836.3 836 4.021E+06 6.315E-03 1.386E+05 1.319E+04 584.0 2.149E+06 3.308E+03 2.041E+01 8.434E-17 836.3 836 4.002E+06 6.023E-03 1.385E+05 1.297E+04 585.0 2.109E+06 3.200E+03 1.965E+01 8.314E-17 836.3 836 3.984E+06 5.744E-03 1.383E+05 1.276E+04 586.0 2.069E+06 3.096E+03 1.892E+01 8.195E-17 836.3 836 3.965E+06 5.479E-03 1.381E+05 1.255E+04 587.0 2.031E+06 2.995E+03 1.822E+01 8.079E-17 836.3 836 3.946E+06 5.226E-03 1.380E+05 1.234E+04 588.0 1.993E+06 2.898E+03 1.754E+01 7.965E-17 836.3 836 3.927E+06 4.985E-03 1.378E+05 1.214E+04 589.0 1.955E+06 2.804E+03 1.689E+01 7.852E-17 836.3 836 3.909E+06 4.755E-03 1.376E+05 1.194E+04 590.0 1.919E+06 2.712E+03 1.627E+01 7.742E-17 836.3 836 3.891E+06 4.535E-03 1.375E+05 1.175E+04 591.0 1.883E+06 2.624E+03 1.566E+01 7.634E-17 836.3 836 3.872E+06 4.326E-03 1.373E+05 1.155E+04 592.0 1.848E+06 2.539E+03 1.508E+01 7.527E-17 836.3 836 3.854E+06 4.126E-03 1.371E+05 1.136E+04 593.0 1.813E+06 2.456E+03 1.452E+01 7.422E-17 836.3 836 3.836E+06 3.936E-03 1.370E+05 1.118E+04 594.0 1.779E+06 2.377E+03 1.399E+01 7.320E-17 836.3 836 3.818E+06 3.755E-03 1.368E+05 1.099E+04 595.0 1.746E+06 2.299E+03 1.347E+01 7.218E-17 836.3 836 3.800E+06 3.582E-03 1.367E+05 1.081E+04 596.0 1.713E+06 2.225E+03 1.297E+01 7.119E-17 836.3 836 3.782E+06 3.417E-03 1.365E+05 1.064E+04 597.0 1.681E+06 2.152E+03 1.249E+01 7.022E-17 836.3 836 3.764E+06 3.259E-03 1.363E+05 1.046E+04 598.0 1.650E+06 2.083E+03 1.203E+01 6.926E-17 836.3 836 3.746E+06 3.109E-03 1.362E+05 1.029E+04 599.0 1.619E+06 2.015E+03 1.158E+01 6.831E-17 836.3 836 3.729E+06 2.966E-03 1.360E+05 1.012E+04 600.0 1.589E+06 1.950E+03 1.115E+01 6.739E-17 836.3 836 3.711E+06 2.830E-03 1.359E+05 9.958E+03 601.0 1.559E+06 1.886E+03 1.074E+01 6.648E-17 836.3 836 3.694E+06 2.699E-03 1.357E+05 9.795E+03 602.0 1.530E+06 1.825E+03 1.034E+01 6.558E-17 836.3 836 3.676E+06 2.575E-03 1.355E+05 9.635E+03 603.0 1.501E+06 1.766E+03 9.962E+00 6.470E-17 836.3 836 3.659E+06 2.457E-03 1.354E+05 9.477E+03 604.0 1.473E+06 1.709E+03 9.594E+00 6.384E-17 836.3 836 3.642E+06 2.344E-03 1.352E+05 9.323E+03 605.0 1.446E+06 1.654E+03 9.239E+00 6.299E-17 836.3 836 3.625E+06 2.236E-03 1.351E+05 9.170E+03 606.0 1.419E+06 1.600E+03 8.898E+00 6.216E-17 836.3 836 3.608E+06 2.134E-03 1.349E+05 9.021E+03 607.0 1.393E+06 1.548E+03 8.570E+00 6.133E-17 836.3 836 3.591E+06 2.036E-03 1.347E+05 8.873E+03 608.0 1.367E+06 1.498E+03 8.253E+00 6.053E-17 836.3 836 3.574E+06 1.942E-03 1.346E+05 8.729E+03 609.0 1.341E+06 1.450E+03 7.949E+00 5.973E-17 836.3 836 3.557E+06 1.853E-03 1.344E+05 8.586E+03 610.0 1.316E+06 1.403E+03 7.656E+00 5.896E-17 836.3 836 3.541E+06 1.768E-03 1.343E+05 8.446E+03 611.0 1.292E+06 1.357E+03 7.374E+00 5.819E-17 836.3 836 3.524E+06 1.687E-03 1.341E+05 8.309E+03 612.0 1.268E+06 1.313E+03 7.102E+00 5.744E-17 836.3 836 3.508E+06 1.609E-03 1.340E+05 8.173E+03 613.0 1.244E+06 1.271E+03 6.840E+00 5.669E-17 836.3 836 3.491E+06 1.536E-03 1.338E+05 8.040E+03 614.0 1.221E+06 1.230E+03 6.588E+00 5.597E-17 836.3 836 3.475E+06 1.465E-03 1.336E+05 7.909E+03 615.0 1.198E+06 1.190E+03 6.345E+00 5.525E-17 836.3 836 3.459E+06 1.398E-03 1.335E+05 7.780E+03 616.0 1.176E+06 1.152E+03 6.112E+00 5.455E-17 836.3 836 3.442E+06 1.334E-03 1.333E+05 7.654E+03 617.0 1.154E+06 1.115E+03 5.887E+00 5.386E-17 836.3 836 3.426E+06 1.273E-03 1.332E+05 7.529E+03 618.0 1.133E+06 1.079E+03 5.670E+00 5.317E-17 836.3 836 3.410E+06 1.215E-03 1.330E+05 7.407E+03 619.0 1.112E+06 1.044E+03 5.462E+00 5.251E-17 836.3 836 3.394E+06 1.159E-03 1.329E+05 7.286E+03 620.0 1.091E+06 1.010E+03 5.261E+00 5.185E-17 836.3 836 3.379E+06 1.106E-03 1.327E+05 7.168E+03 621.0 1.071E+06 9.776E+02 5.067E+00 5.120E-17 836.3 836 3.363E+06 1.055E-03 1.326E+05 7.051E+03 622.0 1.051E+06 9.461E+02 4.881E+00 5.056E-17 836.3 836 3.347E+06 1.007E-03 1.324E+05 6.936E+03 623.0 1.032E+06 9.156E+02 4.702E+00 4.994E-17 836.3 836 3.331E+06 9.612E-04 1.322E+05 6.824E+03 624.0 1.012E+06 8.861E+02 4.529E+00 4.932E-17 836.3 836 3.316E+06 9.172E-04 1.321E+05 6.713E+03 625.0 9.936E+05 8.575E+02 4.363E+00 4.872E-17 836.3 836 3.300E+06 8.753E-04 1.319E+05 6.604E+03 626.0 9.752E+05 8.299E+02 4.202E+00 4.812E-17 836.3 836 3.285E+06 8.353E-04 1.318E+05 6.497E+03 627.0 9.571E+05 8.032E+02 4.048E+00 4.754E-17 836.3 836 3.270E+06 7.972E-04 1.316E+05 6.391E+03 628.0 9.394E+05 7.774E+02 3.900E+00 4.696E-17 836.3 836 3.254E+06 7.608E-04 1.315E+05 6.288E+03 629.0 9.220E+05 7.523E+02 3.757E+00 4.639E-17 836.3 836 3.239E+06 7.260E-04 1.313E+05 6.186E+03 630.0 9.050E+05 7.281E+02 3.619E+00 4.584E-17 836.3 836 3.224E+06 6.929E-04 1.312E+05 6.085E+03 631.0 8.882E+05 7.047E+02 3.486E+00 4.529E-17 836.3 836 3.209E+06 6.613E-04 1.310E+05 5.987E+03 632.0 8.718E+05 6.821E+02 3.358E+00 4.475E-17 836.3 836 3.194E+06 6.311E-04 1.309E+05 5.890E+03 633.0 8.557E+05 6.602E+02 3.235E+00 4.422E-17 836.3 836 3.179E+06 6.024E-04 1.307E+05 5.794E+03 634.0 8.398E+05 6.389E+02 3.117E+00 4.370E-17 836.3 836 3.165E+06 5.749E-04 1.306E+05 5.700E+03 635.0 8.243E+05 6.184E+02 3.003E+00 4.318E-17 836.3 836 3.150E+06 5.487E-04 1.304E+05 5.608E+03 636.0 8.091E+05 5.986E+02 2.893E+00 4.268E-17 836.3 836 3.135E+06 5.237E-04 1.303E+05 5.517E+03 637.0 7.941E+05 5.793E+02 2.787E+00 4.218E-17 836.3 836 3.121E+06 4.999E-04 1.301E+05 5.428E+03 638.0 7.795E+05 5.608E+02 2.685E+00 4.169E-17 836.3 836 3.106E+06 4.771E-04 1.299E+05 5.340E+03 639.0 7.651E+05 5.428E+02 2.587E+00 4.121E-17 836.3 836 3.092E+06 4.554E-04 1.298E+05 5.254E+03 640.0 7.510E+05 5.254E+02 2.492E+00 4.074E-17 836.3 836 3.077E+06 4.347E-04 1.296E+05 5.169E+03 641.0 7.371E+05 5.085E+02 2.401E+00 4.027E-17 836.3 836 3.063E+06 4.149E-04 1.295E+05 5.085E+03 642.0 7.235E+05 4.922E+02 2.313E+00 3.981E-17 836.3 836 3.049E+06 3.960E-04 1.293E+05 5.003E+03 643.0 7.102E+05 4.764E+02 2.229E+00 3.936E-17 836.3 836 3.035E+06 3.780E-04 1.292E+05 4.922E+03 644.0 6.971E+05 4.612E+02 2.147E+00 3.892E-17 836.3 836 3.021E+06 3.608E-04 1.290E+05 4.843E+03 645.0 6.842E+05 4.464E+02 2.069E+00 3.848E-17 836.3 836 3.006E+06 3.444E-04 1.289E+05 4.765E+03 646.0 6.716E+05 4.321E+02 1.993E+00 3.805E-17 836.3 836 2.993E+06 3.288E-04 1.287E+05 4.688E+03 647.0 6.593E+05 4.183E+02 1.920E+00 3.763E-17 836.3 836 2.979E+06 3.139E-04 1.286E+05 4.612E+03 648.0 6.471E+05 4.049E+02 1.850E+00 3.721E-17 836.3 836 2.965E+06 2.996E-04 1.284E+05 4.538E+03 649.0 6.352E+05 3.919E+02 1.783E+00 3.680E-17 836.3 836 2.951E+06 2.860E-04 1.283E+05 4.465E+03 650.0 6.235E+05 3.794E+02 1.718E+00 3.640E-17 836.3 836 2.937E+06 2.730E-04 1.281E+05 4.393E+03 651.0 6.120E+05 3.673E+02 1.655E+00 3.600E-17 836.3 836 2.924E+06 2.606E-04 1.280E+05 4.322E+03 652.0 6.008E+05 3.555E+02 1.595E+00 3.561E-17 836.3 836 2.910E+06 2.488E-04 1.279E+05 4.252E+03 653.0 5.897E+05 3.442E+02 1.537E+00 3.522E-17 836.3 836 2.897E+06 2.375E-04 1.277E+05 4.184E+03 654.0 5.789E+05 3.332E+02 1.481E+00 3.484E-17 836.3 836 2.883E+06 2.268E-04 1.276E+05 4.116E+03 655.0 5.683E+05 3.225E+02 1.427E+00 3.447E-17 836.3 836 2.870E+06 2.165E-04 1.274E+05 4.050E+03 656.0 5.578E+05 3.122E+02 1.375E+00 3.410E-17 836.3 836 2.857E+06 2.067E-04 1.273E+05 3.985E+03 657.0 5.476E+05 3.023E+02 1.325E+00 3.374E-17 836.3 836 2.844E+06 1.973E-04 1.271E+05 3.921E+03 658.0 5.375E+05 2.926E+02 1.277E+00 3.338E-17 836.3 836 2.830E+06 1.884E-04 1.270E+05 3.858E+03 659.0 5.276E+05 2.833E+02 1.230E+00 3.303E-17 836.3 836 2.817E+06 1.799E-04 1.268E+05 3.796E+03 660.0 5.180E+05 2.742E+02 1.185E+00 3.269E-17 836.3 836 2.804E+06 1.717E-04 1.267E+05 3.735E+03 661.0 5.085E+05 2.655E+02 1.142E+00 3.235E-17 836.3 836 2.791E+06 1.640E-04 1.265E+05 3.675E+03 662.0 4.991E+05 2.570E+02 1.101E+00 3.201E-17 836.3 836 2.779E+06 1.565E-04 1.264E+05 3.616E+03 663.0 4.900E+05 2.488E+02 1.061E+00 3.168E-17 836.3 836 2.766E+06 1.495E-04 1.262E+05 3.557E+03 664.0 4.810E+05 2.409E+02 1.022E+00 3.136E-17 836.3 836 2.753E+06 1.427E-04 1.261E+05 3.500E+03 665.0 4.722E+05 2.332E+02 9.852E-01 3.104E-17 836.3 836 2.740E+06 1.363E-04 1.259E+05 3.444E+03 666.0 4.635E+05 2.258E+02 9.494E-01 3.072E-17 836.3 836 2.728E+06 1.301E-04 1.258E+05 3.389E+03 667.0 4.550E+05 2.186E+02 9.150E-01 3.041E-17 836.3 836 2.715E+06 1.242E-04 1.256E+05 3.335E+03 668.0 4.467E+05 2.117E+02 8.818E-01 3.010E-17 836.3 836 2.703E+06 1.186E-04 1.255E+05 3.281E+03 669.0 4.385E+05 2.049E+02 8.498E-01 2.980E-17 836.3 836 2.690E+06 1.133E-04 1.254E+05 3.228E+03 670.0 4.305E+05 1.984E+02 8.190E-01 2.950E-17 836.3 836 2.678E+06 1.082E-04 1.252E+05 3.177E+03 671.0 4.226E+05 1.921E+02 7.893E-01 2.921E-17 836.3 836 2.665E+06 1.033E-04 1.251E+05 3.126E+03 672.0 4.149E+05 1.860E+02 7.607E-01 2.892E-17 836.3 836 2.653E+06 9.862E-05 1.249E+05 3.076E+03 673.0 4.073E+05 1.801E+02 7.331E-01 2.864E-17 836.3 836 2.641E+06 9.417E-05 1.248E+05 3.026E+03 674.0 3.999E+05 1.744E+02 7.065E-01 2.836E-17 836.3 836 2.629E+06 8.993E-05 1.246E+05 2.978E+03 675.0 3.926E+05 1.688E+02 6.810E-01 2.808E-17 836.3 836 2.617E+06 8.588E-05 1.245E+05 2.930E+03 676.0 3.854E+05 1.635E+02 6.563E-01 2.781E-17 836.3 836 2.605E+06 8.201E-05 1.244E+05 2.883E+03 677.0 3.783E+05 1.583E+02 6.325E-01 2.754E-17 836.3 836 2.593E+06 7.832E-05 1.242E+05 2.837E+03 678.0 3.714E+05 1.533E+02 6.097E-01 2.728E-17 836.3 836 2.581E+06 7.479E-05 1.241E+05 2.792E+03 679.0 3.647E+05 1.484E+02 5.876E-01 2.702E-17 836.3 836 2.569E+06 7.142E-05 1.239E+05 2.747E+03 680.0 3.580E+05 1.437E+02 5.664E-01 2.676E-17 836.3 836 2.557E+06 6.821E-05 1.238E+05 2.703E+03 681.0 3.515E+05 1.391E+02 5.459E-01 2.651E-17 836.3 836 2.545E+06 6.514E-05 1.236E+05 2.660E+03 682.0 3.451E+05 1.347E+02 5.261E-01 2.626E-17 836.3 836 2.534E+06 6.221E-05 1.235E+05 2.618E+03 683.0 3.388E+05 1.305E+02 5.071E-01 2.601E-17 836.3 836 2.522E+06 5.941E-05 1.234E+05 2.576E+03 684.0 3.326E+05 1.263E+02 4.888E-01 2.577E-17 836.3 836 2.510E+06 5.674E-05 1.232E+05 2.535E+03 685.0 3.265E+05 1.223E+02 4.712E-01 2.553E-17 836.3 836 2.499E+06 5.419E-05 1.231E+05 2.494E+03 686.0 3.206E+05 1.184E+02 4.542E-01 2.530E-17 836.3 836 2.487E+06 5.176E-05 1.229E+05 2.454E+03 687.0 3.147E+05 1.147E+02 4.378E-01 2.507E-17 836.3 836 2.476E+06 4.943E-05 1.228E+05 2.415E+03 688.0 3.090E+05 1.111E+02 4.220E-01 2.484E-17 836.3 836 2.465E+06 4.721E-05 1.226E+05 2.377E+03 689.0 3.034E+05 1.076E+02 4.067E-01 2.461E-17 836.3 836 2.453E+06 4.509E-05 1.225E+05 2.339E+03 690.0 2.979E+05 1.042E+02 3.921E-01 2.439E-17 836.3 836 2.442E+06 4.307E-05 1.224E+05 2.302E+03 691.0 2.925E+05 1.009E+02 3.779E-01 2.417E-17 836.3 836 2.431E+06 4.114E-05 1.222E+05 2.265E+03 692.0 2.871E+05 9.767E+01 3.643E-01 2.395E-17 836.3 836 2.420E+06 3.929E-05 1.221E+05 2.229E+03 693.0 2.819E+05 9.458E+01 3.512E-01 2.374E-17 836.3 836 2.409E+06 3.753E-05 1.219E+05 2.193E+03 694.0 2.768E+05 9.160E+01 3.385E-01 2.353E-17 836.3 836 2.398E+06 3.585E-05 1.218E+05 2.158E+03 695.0 2.718E+05 8.870E+01 3.263E-01 2.332E-17 836.3 836 2.387E+06 3.424E-05 1.217E+05 2.124E+03 696.0 2.668E+05 8.590E+01 3.146E-01 2.312E-17 836.3 836 2.376E+06 3.271E-05 1.215E+05 2.090E+03 697.0 2.620E+05 8.319E+01 3.033E-01 2.291E-17 836.3 836 2.365E+06 3.124E-05 1.214E+05 2.057E+03 698.0 2.572E+05 8.057E+01 2.924E-01 2.272E-17 836.3 836 2.354E+06 2.984E-05 1.212E+05 2.024E+03 699.0 2.526E+05 7.802E+01 2.818E-01 2.252E-17 836.3 836 2.343E+06 2.851E-05 1.211E+05 1.992E+03 700.0 2.480E+05 7.556E+01 2.717E-01 2.233E-17 836.3 836 2.333E+06 2.723E-05 1.210E+05 1.960E+03 701.0 2.435E+05 7.318E+01 2.619E-01 2.213E-17 836.3 836 2.322E+06 2.601E-05 1.208E+05 1.929E+03 702.0 2.391E+05 7.087E+01 2.525E-01 2.195E-17 836.3 836 2.311E+06 2.485E-05 1.207E+05 1.899E+03 703.0 2.347E+05 6.864E+01 2.434E-01 2.176E-17 836.3 836 2.301E+06 2.374E-05 1.206E+05 1.868E+03 704.0 2.305E+05 6.648E+01 2.347E-01 2.158E-17 836.3 836 2.290E+06 2.268E-05 1.204E+05 1.839E+03 705.0 2.263E+05 6.438E+01 2.263E-01 2.139E-17 836.3 836 2.280E+06 2.167E-05 1.203E+05 1.810E+03 706.0 2.222E+05 6.236E+01 2.181E-01 2.121E-17 836.3 836 2.270E+06 2.070E-05 1.201E+05 1.781E+03 707.0 2.182E+05 6.039E+01 2.103E-01 2.104E-17 836.3 836 2.259E+06 1.977E-05 1.200E+05 1.753E+03 708.0 2.142E+05 5.849E+01 2.028E-01 2.086E-17 836.3 836 2.249E+06 1.889E-05 1.199E+05 1.725E+03 709.0 2.103E+05 5.665E+01 1.955E-01 2.069E-17 836.3 836 2.239E+06 1.805E-05 1.197E+05 1.697E+03 710.0 2.065E+05 5.487E+01 1.885E-01 2.052E-17 836.3 836 2.228E+06 1.724E-05 1.196E+05 1.671E+03 711.0 2.028E+05 5.315E+01 1.817E-01 2.035E-17 836.3 836 2.218E+06 1.647E-05 1.195E+05 1.644E+03 712.0 1.991E+05 5.147E+01 1.752E-01 2.019E-17 836.3 836 2.208E+06 1.574E-05 1.193E+05 1.618E+03 713.0 1.955E+05 4.986E+01 1.689E-01 2.003E-17 836.3 836 2.198E+06 1.504E-05 1.192E+05 1.592E+03 714.0 1.920E+05 4.829E+01 1.629E-01 1.987E-17 836.3 836 2.188E+06 1.437E-05 1.191E+05 1.567E+03 715.0 1.885E+05 4.677E+01 1.570E-01 1.971E-17 836.3 836 2.178E+06 1.373E-05 1.189E+05 1.542E+03 716.0 1.851E+05 4.531E+01 1.514E-01 1.955E-17 836.3 836 2.168E+06 1.311E-05 1.188E+05 1.518E+03 717.0 1.818E+05 4.388E+01 1.460E-01 1.939E-17 836.3 836 2.158E+06 1.253E-05 1.186E+05 1.494E+03 718.0 1.785E+05 4.251E+01 1.408E-01 1.924E-17 836.3 836 2.149E+06 1.197E-05 1.185E+05 1.470E+03 719.0 1.753E+05 4.117E+01 1.357E-01 1.909E-17 836.3 836 2.139E+06 1.144E-05 1.184E+05 1.447E+03 720.0 1.721E+05 3.988E+01 1.309E-01 1.894E-17 836.3 836 2.129E+06 1.093E-05 1.182E+05 1.424E+03 721.0 1.690E+05 3.863E+01 1.262E-01 1.879E-17 836.3 836 2.120E+06 1.044E-05 1.181E+05 1.402E+03 722.0 1.660E+05 3.742E+01 1.217E-01 1.865E-17 836.3 836 2.110E+06 9.979E-06 1.180E+05 1.380E+03 723.0 1.630E+05 3.625E+01 1.173E-01 1.850E-17 836.3 836 2.100E+06 9.535E-06 1.178E+05 1.358E+03 724.0 1.600E+05 3.511E+01 1.132E-01 1.836E-17 836.3 836 2.091E+06 9.111E-06 1.177E+05 1.336E+03 725.0 1.571E+05 3.401E+01 1.091E-01 1.822E-17 836.3 836 2.081E+06 8.706E-06 1.176E+05 1.315E+03 726.0 1.543E+05 3.295E+01 1.052E-01 1.808E-17 836.3 836 2.072E+06 8.320E-06 1.174E+05 1.294E+03 727.0 1.515E+05 3.192E+01 1.015E-01 1.795E-17 836.3 836 2.062E+06 7.950E-06 1.173E+05 1.274E+03 728.0 1.488E+05 3.092E+01 9.784E-02 1.781E-17 836.3 836 2.053E+06 7.597E-06 1.172E+05 1.254E+03 729.0 1.461E+05 2.995E+01 9.435E-02 1.768E-17 836.3 836 2.044E+06 7.260E-06 1.170E+05 1.234E+03 730.0 1.435E+05 2.901E+01 9.099E-02 1.754E-17 836.3 836 2.035E+06 6.938E-06 1.169E+05 1.215E+03 731.0 1.409E+05 2.811E+01 8.774E-02 1.741E-17 836.3 836 2.025E+06 6.630E-06 1.168E+05 1.196E+03 732.0 1.384E+05 2.723E+01 8.462E-02 1.728E-17 836.3 836 2.016E+06 6.336E-06 1.166E+05 1.177E+03 733.0 1.359E+05 2.638E+01 8.160E-02 1.716E-17 836.3 836 2.007E+06 6.055E-06 1.165E+05 1.158E+03 734.0 1.334E+05 2.555E+01 7.869E-02 1.703E-17 836.3 836 1.998E+06 5.786E-06 1.164E+05 1.140E+03 735.0 1.311E+05 2.475E+01 7.589E-02 1.691E-17 836.3 836 1.989E+06 5.530E-06 1.162E+05 1.122E+03 736.0 1.287E+05 2.398E+01 7.319E-02 1.678E-17 836.3 836 1.980E+06 5.285E-06 1.161E+05 1.104E+03 737.0 1.264E+05 2.323E+01 7.058E-02 1.666E-17 836.3 836 1.971E+06 5.051E-06 1.160E+05 1.087E+03 738.0 1.241E+05 2.251E+01 6.807E-02 1.654E-17 836.3 836 1.962E+06 4.827E-06 1.159E+05 1.070E+03 739.0 1.219E+05 2.180E+01 6.565E-02 1.642E-17 836.3 836 1.953E+06 4.613E-06 1.157E+05 1.053E+03 740.0 1.197E+05 2.112E+01 6.331E-02 1.631E-17 836.3 836 1.944E+06 4.409E-06 1.156E+05 1.037E+03 741.0 1.176E+05 2.047E+01 6.106E-02 1.619E-17 836.3 836 1.936E+06 4.214E-06 1.155E+05 1.020E+03 742.0 1.154E+05 1.983E+01 5.889E-02 1.608E-17 836.3 836 1.927E+06 4.028E-06 1.153E+05 1.004E+03 743.0 1.134E+05 1.921E+01 5.680E-02 1.596E-17 836.3 836 1.918E+06 3.850E-06 1.152E+05 9.884E+02 744.0 1.113E+05 1.861E+01 5.478E-02 1.585E-17 836.3 836 1.910E+06 3.679E-06 1.151E+05 9.729E+02 745.0 1.093E+05 1.803E+01 5.284E-02 1.574E-17 836.3 836 1.901E+06 3.517E-06 1.149E+05 9.576E+02 746.0 1.074E+05 1.747E+01 5.096E-02 1.563E-17 836.3 836 1.892E+06 3.361E-06 1.148E+05 9.426E+02 747.0 1.055E+05 1.693E+01 4.915E-02 1.552E-17 836.3 836 1.884E+06 3.213E-06 1.147E+05 9.278E+02 748.0 1.036E+05 1.640E+01 4.741E-02 1.542E-17 836.3 836 1.875E+06 3.071E-06 1.145E+05 9.133E+02 749.0 1.017E+05 1.589E+01 4.572E-02 1.531E-17 836.3 836 1.867E+06 2.935E-06 1.144E+05 8.989E+02 750.0 9.990E+04 1.540E+01 4.410E-02 1.520E-17 836.3 836 1.858E+06 2.806E-06 1.143E+05 8.849E+02 751.0 9.812E+04 1.492E+01 4.254E-02 1.510E-17 836.3 836 1.850E+06 2.682E-06 1.142E+05 8.710E+02 752.0 9.636E+04 1.445E+01 4.103E-02 1.500E-17 836.3 836 1.842E+06 2.564E-06 1.140E+05 8.573E+02 753.0 9.464E+04 1.400E+01 3.958E-02 1.490E-17 836.3 836 1.833E+06 2.451E-06 1.139E+05 8.439E+02 754.0 9.295E+04 1.357E+01 3.817E-02 1.480E-17 836.3 836 1.825E+06 2.343E-06 1.138E+05 8.307E+02 755.0 9.129E+04 1.315E+01 3.682E-02 1.470E-17 836.3 836 1.817E+06 2.239E-06 1.136E+05 8.177E+02 756.0 8.966E+04 1.274E+01 3.552E-02 1.460E-17 836.3 836 1.809E+06 2.141E-06 1.135E+05 8.049E+02 757.0 8.805E+04 1.234E+01 3.426E-02 1.450E-17 836.3 836 1.801E+06 2.046E-06 1.134E+05 7.923E+02 758.0 8.648E+04 1.196E+01 3.305E-02 1.441E-17 836.3 836 1.793E+06 1.956E-06 1.133E+05 7.799E+02 759.0 8.494E+04 1.159E+01 3.188E-02 1.431E-17 836.3 836 1.785E+06 1.870E-06 1.131E+05 7.677E+02 760.0 8.342E+04 1.123E+01 3.075E-02 1.422E-17 836.3 836 1.777E+06 1.788E-06 1.130E+05 7.557E+02 761.0 8.193E+04 1.088E+01 2.966E-02 1.412E-17 836.3 836 1.769E+06 1.709E-06 1.129E+05 7.439E+02 762.0 8.047E+04 1.054E+01 2.862E-02 1.403E-17 836.3 836 1.761E+06 1.634E-06 1.128E+05 7.323E+02 763.0 7.904E+04 1.022E+01 2.760E-02 1.394E-17 836.3 836 1.753E+06 1.562E-06 1.126E+05 7.209E+02 764.0 7.763E+04 9.901E+00 2.663E-02 1.385E-17 836.3 836 1.745E+06 1.493E-06 1.125E+05 7.096E+02 765.0 7.625E+04 9.594E+00 2.569E-02 1.376E-17 836.3 836 1.737E+06 1.428E-06 1.124E+05 6.985E+02 766.0 7.489E+04 9.297E+00 2.478E-02 1.367E-17 836.3 836 1.729E+06 1.365E-06 1.122E+05 6.876E+02 767.0 7.355E+04 9.009E+00 2.391E-02 1.359E-17 836.3 836 1.722E+06 1.305E-06 1.121E+05 6.769E+02 768.0 7.224E+04 8.730E+00 2.306E-02 1.350E-17 836.3 836 1.714E+06 1.248E-06 1.120E+05 6.663E+02 769.0 7.096E+04 8.460E+00 2.225E-02 1.341E-17 836.3 836 1.706E+06 1.193E-06 1.119E+05 6.559E+02 770.0 6.970E+04 8.198E+00 2.146E-02 1.333E-17 836.3 836 1.698E+06 1.141E-06 1.117E+05 6.457E+02 771.0 6.846E+04 7.945E+00 2.071E-02 1.325E-17 836.3 836 1.691E+06 1.091E-06 1.116E+05 6.357E+02 772.0 6.724E+04 7.699E+00 1.998E-02 1.316E-17 836.3 836 1.683E+06 1.043E-06 1.115E+05 6.258E+02 773.0 6.604E+04 7.461E+00 1.927E-02 1.308E-17 836.3 836 1.676E+06 9.970E-07 1.114E+05 6.160E+02 774.0 6.487E+04 7.231E+00 1.859E-02 1.300E-17 836.3 836 1.668E+06 9.532E-07 1.112E+05 6.064E+02 775.0 6.372E+04 7.007E+00 1.794E-02 1.292E-17 836.3 836 1.661E+06 9.115E-07 1.111E+05 5.970E+02 776.0 6.258E+04 6.791E+00 1.731E-02 1.284E-17 836.3 836 1.653E+06 8.715E-07 1.110E+05 5.877E+02 777.0 6.147E+04 6.581E+00 1.670E-02 1.276E-17 836.3 836 1.646E+06 8.333E-07 1.109E+05 5.785E+02 778.0 6.038E+04 6.378E+00 1.611E-02 1.268E-17 836.3 836 1.639E+06 7.968E-07 1.107E+05 5.695E+02 779.0 5.931E+04 6.181E+00 1.554E-02 1.260E-17 836.3 836 1.631E+06 7.619E-07 1.106E+05 5.607E+02 780.0 5.826E+04 5.991E+00 1.500E-02 1.253E-17 836.3 836 1.624E+06 7.286E-07 1.105E+05 5.520E+02 781.0 5.722E+04 5.806E+00 1.447E-02 1.245E-17 836.3 836 1.617E+06 6.967E-07 1.104E+05 5.434E+02 782.0 5.621E+04 5.627E+00 1.396E-02 1.238E-17 836.3 836 1.610E+06 6.662E-07 1.103E+05 5.350E+02 783.0 5.521E+04 5.453E+00 1.347E-02 1.230E-17 836.3 836 1.602E+06 6.371E-07 1.101E+05 5.266E+02 784.0 5.423E+04 5.285E+00 1.300E-02 1.223E-17 836.3 836 1.595E+06 6.092E-07 1.100E+05 5.185E+02 785.0 5.327E+04 5.123E+00 1.254E-02 1.215E-17 836.3 836 1.588E+06 5.826E-07 1.099E+05 5.104E+02 786.0 5.233E+04 4.965E+00 1.210E-02 1.208E-17 836.3 836 1.581E+06 5.571E-07 1.098E+05 5.025E+02 787.0 5.140E+04 4.812E+00 1.168E-02 1.201E-17 836.3 836 1.574E+06 5.328E-07 1.096E+05 4.947E+02 788.0 5.049E+04 4.664E+00 1.127E-02 1.194E-17 836.3 836 1.567E+06 5.095E-07 1.095E+05 4.870E+02 789.0 4.960E+04 4.520E+00 1.087E-02 1.187E-17 836.3 836 1.560E+06 4.873E-07 1.094E+05 4.795E+02 790.0 4.872E+04 4.381E+00 1.049E-02 1.180E-17 836.3 836 1.553E+06 4.660E-07 1.093E+05 4.720E+02 791.0 4.786E+04 4.247E+00 1.012E-02 1.173E-17 836.3 836 1.546E+06 4.457E-07 1.092E+05 4.647E+02 792.0 4.701E+04 4.116E+00 9.766E-03 1.166E-17 836.3 836 1.539E+06 4.262E-07 1.090E+05 4.575E+02 793.0 4.618E+04 3.989E+00 9.424E-03 1.159E-17 836.3 836 1.532E+06 4.076E-07 1.089E+05 4.504E+02 794.0 4.536E+04 3.867E+00 9.093E-03 1.153E-17 836.3 836 1.526E+06 3.898E-07 1.088E+05 4.435E+02 795.0 4.456E+04 3.748E+00 8.775E-03 1.146E-17 836.3 836 1.519E+06 3.728E-07 1.087E+05 4.366E+02 796.0 4.378E+04 3.633E+00 8.468E-03 1.139E-17 836.3 836 1.512E+06 3.566E-07 1.085E+05 4.298E+02 797.0 4.300E+04 3.521E+00 8.171E-03 1.133E-17 836.3 836 1.505E+06 3.411E-07 1.084E+05 4.232E+02 798.0 4.224E+04 3.413E+00 7.885E-03 1.126E-17 836.3 836 1.499E+06 3.262E-07 1.083E+05 4.166E+02 799.0 4.150E+04 3.309E+00 7.609E-03 1.120E-17 836.3 836 1.492E+06 3.120E-07 1.082E+05 4.102E+02 800.0 4.076E+04 3.207E+00 7.343E-03 1.113E-17 836.3 836 1.485E+06 2.984E-07 1.081E+05 4.039E+02 801.0 4.005E+04 3.109E+00 7.086E-03 1.107E-17 836.3 836 1.479E+06 2.854E-07 1.079E+05 3.976E+02 802.0 3.934E+04 3.013E+00 6.838E-03 1.101E-17 836.3 836 1.472E+06 2.730E-07 1.078E+05 3.915E+02 803.0 3.865E+04 2.921E+00 6.599E-03 1.095E-17 836.3 836 1.466E+06 2.611E-07 1.077E+05 3.854E+02 804.0 3.796E+04 2.832E+00 6.369E-03 1.088E-17 836.3 836 1.459E+06 2.498E-07 1.076E+05 3.795E+02 805.0 3.730E+04 2.745E+00 6.146E-03 1.082E-17 836.3 836 1.453E+06 2.389E-07 1.075E+05 3.736E+02 806.0 3.664E+04 2.661E+00 5.932E-03 1.076E-17 836.3 836 1.446E+06 2.285E-07 1.073E+05 3.679E+02 807.0 3.599E+04 2.579E+00 5.724E-03 1.070E-17 836.3 836 1.440E+06 2.186E-07 1.072E+05 3.622E+02 808.0 3.536E+04 2.500E+00 5.525E-03 1.064E-17 836.3 836 1.433E+06 2.091E-07 1.071E+05 3.566E+02 809.0 3.474E+04 2.424E+00 5.332E-03 1.058E-17 836.3 836 1.427E+06 2.000E-07 1.070E+05 3.511E+02 810.0 3.413E+04 2.350E+00 5.146E-03 1.053E-17 836.3 836 1.421E+06 1.913E-07 1.069E+05 3.457E+02 811.0 3.352E+04 2.278E+00 4.966E-03 1.047E-17 836.3 836 1.414E+06 1.830E-07 1.068E+05 3.404E+02 812.0 3.294E+04 2.208E+00 4.793E-03 1.041E-17 836.3 836 1.408E+06 1.751E-07 1.066E+05 3.351E+02 813.0 3.236E+04 2.141E+00 4.626E-03 1.035E-17 836.3 836 1.402E+06 1.675E-07 1.065E+05 3.300E+02 814.0 3.179E+04 2.075E+00 4.465E-03 1.030E-17 836.3 836 1.396E+06 1.602E-07 1.064E+05 3.249E+02 815.0 3.123E+04 2.012E+00 4.309E-03 1.024E-17 836.3 836 1.390E+06 1.533E-07 1.063E+05 3.199E+02 816.0 3.068E+04 1.950E+00 4.159E-03 1.018E-17 836.3 836 1.383E+06 1.466E-07 1.062E+05 3.149E+02 817.0 3.014E+04 1.891E+00 4.014E-03 1.013E-17 836.3 836 1.377E+06 1.403E-07 1.060E+05 3.101E+02 818.0 2.961E+04 1.833E+00 3.875E-03 1.007E-17 836.3 836 1.371E+06 1.342E-07 1.059E+05 3.053E+02 819.0 2.909E+04 1.777E+00 3.740E-03 1.002E-17 836.3 836 1.365E+06 1.284E-07 1.058E+05 3.006E+02 820.0 2.858E+04 1.723E+00 3.610E-03 9.967E-18 836.3 836 1.359E+06 1.228E-07 1.057E+05 2.960E+02 821.0 2.808E+04 1.670E+00 3.484E-03 9.913E-18 836.3 836 1.353E+06 1.175E-07 1.056E+05 2.915E+02 822.0 2.759E+04 1.619E+00 3.363E-03 9.860E-18 836.3 836 1.347E+06 1.124E-07 1.055E+05 2.870E+02 823.0 2.710E+04 1.570E+00 3.246E-03 9.807E-18 836.3 836 1.341E+06 1.076E-07 1.053E+05 2.826E+02 824.0 2.663E+04 1.522E+00 3.133E-03 9.755E-18 836.3 836 1.335E+06 1.029E-07 1.052E+05 2.782E+02 825.0 2.616E+04 1.476E+00 3.024E-03 9.703E-18 836.3 836 1.329E+06 9.846E-08 1.051E+05 2.740E+02 826.0 2.570E+04 1.431E+00 2.919E-03 9.652E-18 836.3 836 1.324E+06 9.421E-08 1.050E+05 2.698E+02 827.0 2.525E+04 1.387E+00 2.818E-03 9.601E-18 836.3 836 1.318E+06 9.014E-08 1.049E+05 2.656E+02 828.0 2.481E+04 1.345E+00 2.720E-03 9.550E-18 836.3 836 1.312E+06 8.624E-08 1.048E+05 2.615E+02 829.0 2.438E+04 1.304E+00 2.626E-03 9.500E-18 836.3 836 1.306E+06 8.252E-08 1.046E+05 2.575E+02 830.0 2.395E+04 1.264E+00 2.535E-03 9.450E-18 836.3 836 1.300E+06 7.895E-08 1.045E+05 2.536E+02 831.0 2.353E+04 1.226E+00 2.447E-03 9.401E-18 836.3 836 1.295E+06 7.555E-08 1.044E+05 2.497E+02 832.0 2.312E+04 1.189E+00 2.362E-03 9.352E-18 836.3 836 1.289E+06 7.229E-08 1.043E+05 2.459E+02 833.0 2.272E+04 1.153E+00 2.280E-03 9.303E-18 836.3 836 1.283E+06 6.917E-08 1.042E+05 2.421E+02 834.0 2.232E+04 1.118E+00 2.201E-03 9.255E-18 836.3 836 1.278E+06 6.618E-08 1.041E+05 2.384E+02 835.0 2.193E+04 1.084E+00 2.125E-03 9.207E-18 836.3 836 1.272E+06 6.333E-08 1.040E+05 2.348E+02 836.0 2.154E+04 1.051E+00 2.051E-03 9.159E-18 836.3 836 1.266E+06 6.060E-08 1.038E+05 2.312E+02 837.0 2.117E+04 1.019E+00 1.980E-03 9.112E-18 836.3 836 1.261E+06 5.799E-08 1.037E+05 2.276E+02 838.0 2.080E+04 9.878E-01 1.912E-03 9.065E-18 836.3 836 1.255E+06 5.549E-08 1.036E+05 2.241E+02 839.0 2.044E+04 9.578E-01 1.845E-03 9.019E-18 836.3 836 1.250E+06 5.310E-08 1.035E+05 2.207E+02 840.0 2.008E+04 9.288E-01 1.782E-03 8.973E-18 836.3 836 1.244E+06 5.081E-08 1.034E+05 2.173E+02 841.0 1.973E+04 9.006E-01 1.720E-03 8.927E-18 836.3 836 1.239E+06 4.862E-08 1.033E+05 2.140E+02 842.0 1.938E+04 8.733E-01 1.660E-03 8.881E-18 836.3 836 1.233E+06 4.653E-08 1.032E+05 2.107E+02 843.0 1.905E+04 8.468E-01 1.603E-03 8.836E-18 836.3 836 1.228E+06 4.453E-08 1.030E+05 2.075E+02 844.0 1.871E+04 8.211E-01 1.548E-03 8.791E-18 836.3 836 1.223E+06 4.261E-08 1.029E+05 2.044E+02 845.0 1.839E+04 7.963E-01 1.494E-03 8.747E-18 836.3 836 1.217E+06 4.078E-08 1.028E+05 2.012E+02 846.0 1.807E+04 7.721E-01 1.442E-03 8.702E-18 836.3 836 1.212E+06 3.903E-08 1.027E+05 1.982E+02 847.0 1.775E+04 7.488E-01 1.393E-03 8.658E-18 836.3 836 1.207E+06 3.735E-08 1.026E+05 1.951E+02 848.0 1.744E+04 7.261E-01 1.345E-03 8.615E-18 836.3 836 1.201E+06 3.574E-08 1.025E+05 1.922E+02 849.0 1.714E+04 7.041E-01 1.298E-03 8.572E-18 836.3 836 1.196E+06 3.421E-08 1.024E+05 1.892E+02 850.0 1.684E+04 6.828E-01 1.253E-03 8.529E-18 836.3 836 1.191E+06 3.274E-08 1.023E+05 1.863E+02 851.0 1.655E+04 6.621E-01 1.210E-03 8.486E-18 836.3 836 1.186E+06 3.133E-08 1.021E+05 1.835E+02 852.0 1.626E+04 6.421E-01 1.168E-03 8.444E-18 836.3 836 1.180E+06 2.999E-08 1.020E+05 1.807E+02 853.0 1.598E+04 6.227E-01 1.128E-03 8.402E-18 836.3 836 1.175E+06 2.870E-08 1.019E+05 1.780E+02 854.0 1.570E+04 6.039E-01 1.089E-03 8.360E-18 836.3 836 1.170E+06 2.747E-08 1.018E+05 1.752E+02 855.0 1.543E+04 5.856E-01 1.052E-03 8.318E-18 836.3 836 1.165E+06 2.629E-08 1.017E+05 1.726E+02 856.0 1.516E+04 5.679E-01 1.015E-03 8.277E-18 836.3 836 1.160E+06 2.517E-08 1.016E+05 1.700E+02 857.0 1.490E+04 5.508E-01 9.805E-04 8.236E-18 836.3 836 1.155E+06 2.409E-08 1.015E+05 1.674E+02 858.0 1.464E+04 5.342E-01 9.467E-04 8.196E-18 836.3 836 1.150E+06 2.305E-08 1.014E+05 1.648E+02 859.0 1.438E+04 5.180E-01 9.141E-04 8.155E-18 836.3 836 1.145E+06 2.207E-08 1.013E+05 1.623E+02 860.0 1.413E+04 5.024E-01 8.827E-04 8.115E-18 836.3 836 1.140E+06 2.112E-08 1.011E+05 1.598E+02 861.0 1.389E+04 4.872E-01 8.523E-04 8.075E-18 836.3 836 1.135E+06 2.022E-08 1.010E+05 1.574E+02 862.0 1.365E+04 4.725E-01 8.230E-04 8.036E-18 836.3 836 1.130E+06 1.935E-08 1.009E+05 1.550E+02 863.0 1.341E+04 4.583E-01 7.947E-04 7.997E-18 836.3 836 1.125E+06 1.852E-08 1.008E+05 1.527E+02 864.0 1.318E+04 4.445E-01 7.674E-04 7.958E-18 836.3 836 1.120E+06 1.773E-08 1.007E+05 1.504E+02 865.0 1.295E+04 4.311E-01 7.410E-04 7.919E-18 836.3 836 1.115E+06 1.697E-08 1.006E+05 1.481E+02 866.0 1.273E+04 4.181E-01 7.155E-04 7.880E-18 836.3 836 1.110E+06 1.625E-08 1.005E+05 1.458E+02 867.0 1.250E+04 4.055E-01 6.910E-04 7.842E-18 836.3 836 1.105E+06 1.555E-08 1.004E+05 1.436E+02 868.0 1.229E+04 3.933E-01 6.672E-04 7.804E-18 836.3 836 1.101E+06 1.489E-08 1.003E+05 1.414E+02 869.0 1.208E+04 3.815E-01 6.443E-04 7.766E-18 836.3 836 1.096E+06 1.425E-08 1.002E+05 1.393E+02 870.0 1.187E+04 3.700E-01 6.222E-04 7.729E-18 836.3 836 1.091E+06 1.364E-08 1.000E+05 1.372E+02 871.0 1.166E+04 3.588E-01 6.009E-04 7.692E-18 836.3 836 1.086E+06 1.306E-08 9.993E+04 1.351E+02 872.0 1.146E+04 3.481E-01 5.803E-04 7.655E-18 836.3 836 1.082E+06 1.250E-08 9.982E+04 1.330E+02 873.0 1.126E+04 3.376E-01 5.604E-04 7.618E-18 836.3 836 1.077E+06 1.197E-08 9.971E+04 1.310E+02 874.0 1.107E+04 3.274E-01 5.411E-04 7.581E-18 836.3 836 1.072E+06 1.146E-08 9.961E+04 1.290E+02 875.0 1.088E+04 3.176E-01 5.226E-04 7.545E-18 836.3 836 1.068E+06 1.097E-08 9.950E+04 1.271E+02 876.0 1.069E+04 3.081E-01 5.047E-04 7.509E-18 836.3 836 1.063E+06 1.050E-08 9.939E+04 1.252E+02 877.0 1.050E+04 2.988E-01 4.874E-04 7.473E-18 836.3 836 1.058E+06 1.005E-08 9.928E+04 1.233E+02 878.0 1.032E+04 2.898E-01 4.707E-04 7.438E-18 836.3 836 1.054E+06 9.626E-09 9.917E+04 1.214E+02 879.0 1.014E+04 2.811E-01 4.546E-04 7.402E-18 836.3 836 1.049E+06 9.215E-09 9.906E+04 1.196E+02 880.0 9.968E+03 2.727E-01 4.390E-04 7.367E-18 836.3 836 1.045E+06 8.823E-09 9.896E+04 1.178E+02 881.0 9.796E+03 2.645E-01 4.240E-04 7.332E-18 836.3 836 1.040E+06 8.447E-09 9.885E+04 1.160E+02 882.0 9.627E+03 2.566E-01 4.095E-04 7.298E-18 836.3 836 1.035E+06 8.087E-09 9.874E+04 1.142E+02 883.0 9.461E+03 2.489E-01 3.955E-04 7.263E-18 836.3 836 1.031E+06 7.743E-09 9.863E+04 1.125E+02 884.0 9.298E+03 2.414E-01 3.820E-04 7.229E-18 836.3 836 1.026E+06 7.414E-09 9.853E+04 1.108E+02 885.0 9.137E+03 2.342E-01 3.689E-04 7.195E-18 836.3 836 1.022E+06 7.098E-09 9.842E+04 1.091E+02 886.0 8.980E+03 2.272E-01 3.563E-04 7.161E-18 836.3 836 1.018E+06 6.796E-09 9.831E+04 1.075E+02 887.0 8.825E+03 2.204E-01 3.441E-04 7.127E-18 836.3 836 1.013E+06 6.507E-09 9.821E+04 1.059E+02 888.0 8.673E+03 2.138E-01 3.324E-04 7.094E-18 836.3 836 1.009E+06 6.231E-09 9.810E+04 1.043E+02 889.0 8.524E+03 2.074E-01 3.210E-04 7.061E-18 836.3 836 1.004E+06 5.966E-09 9.799E+04 1.027E+02 890.0 8.377E+03 2.011E-01 3.101E-04 7.028E-18 836.3 836 1.000E+06 5.713E-09 9.789E+04 1.011E+02 891.0 8.233E+03 1.951E-01 2.995E-04 6.995E-18 836.3 836 9.957E+05 5.470E-09 9.778E+04 9.962E+01 892.0 8.091E+03 1.893E-01 2.893E-04 6.962E-18 836.3 836 9.914E+05 5.238E-09 9.768E+04 9.812E+01 893.0 7.952E+03 1.836E-01 2.794E-04 6.930E-18 836.3 836 9.871E+05 5.015E-09 9.757E+04 9.664E+01 894.0 7.815E+03 1.781E-01 2.699E-04 6.898E-18 836.3 836 9.829E+05 4.802E-09 9.746E+04 9.518E+01 895.0 7.681E+03 1.728E-01 2.607E-04 6.866E-18 836.3 836 9.786E+05 4.599E-09 9.736E+04 9.375E+01 896.0 7.549E+03 1.677E-01 2.518E-04 6.834E-18 836.3 836 9.744E+05 4.404E-09 9.725E+04 9.234E+01 897.0 7.419E+03 1.626E-01 2.432E-04 6.802E-18 836.3 836 9.702E+05 4.217E-09 9.715E+04 9.095E+01 898.0 7.292E+03 1.578E-01 2.349E-04 6.771E-18 836.3 836 9.660E+05 4.038E-09 9.704E+04 8.958E+01 899.0 7.166E+03 1.531E-01 2.269E-04 6.740E-18 836.3 836 9.618E+05 3.867E-09 9.694E+04 8.823E+01 900.0 7.043E+03 1.485E-01 2.192E-04 6.709E-18 836.3 836 9.576E+05 3.703E-09 9.683E+04 8.691E+01 901.0 6.923E+03 1.441E-01 2.118E-04 6.678E-18 836.3 836 9.535E+05 3.546E-09 9.673E+04 8.560E+01 902.0 6.804E+03 1.398E-01 2.046E-04 6.647E-18 836.3 836 9.494E+05 3.396E-09 9.662E+04 8.431E+01 903.0 6.687E+03 1.356E-01 1.976E-04 6.617E-18 836.3 836 9.453E+05 3.252E-09 9.652E+04 8.305E+01 904.0 6.572E+03 1.316E-01 1.909E-04 6.586E-18 836.3 836 9.412E+05 3.115E-09 9.641E+04 8.180E+01 905.0 6.460E+03 1.276E-01 1.844E-04 6.556E-18 836.3 836 9.372E+05 2.983E-09 9.631E+04 8.057E+01 906.0 6.349E+03 1.238E-01 1.781E-04 6.526E-18 836.3 836 9.331E+05 2.857E-09 9.621E+04 7.936E+01 907.0 6.240E+03 1.201E-01 1.721E-04 6.496E-18 836.3 836 9.291E+05 2.736E-09 9.610E+04 7.817E+01 908.0 6.133E+03 1.166E-01 1.662E-04 6.467E-18 836.3 836 9.251E+05 2.620E-09 9.600E+04 7.700E+01 909.0 6.028E+03 1.131E-01 1.606E-04 6.437E-18 836.3 836 9.211E+05 2.509E-09 9.589E+04 7.584E+01 910.0 5.925E+03 1.097E-01 1.551E-04 6.408E-18 836.3 836 9.171E+05 2.403E-09 9.579E+04 7.470E+01 911.0 5.824E+03 1.065E-01 1.499E-04 6.379E-18 836.3 836 9.132E+05 2.302E-09 9.569E+04 7.358E+01 912.0 5.724E+03 1.033E-01 1.448E-04 6.350E-18 836.3 836 9.093E+05 2.205E-09 9.558E+04 7.248E+01 913.0 5.626E+03 1.002E-01 1.399E-04 6.321E-18 836.3 836 9.053E+05 2.112E-09 9.548E+04 7.139E+01 914.0 5.530E+03 9.724E-02 1.351E-04 6.292E-18 836.3 836 9.014E+05 2.022E-09 9.538E+04 7.032E+01 915.0 5.435E+03 9.435E-02 1.305E-04 6.264E-18 836.3 836 8.976E+05 1.937E-09 9.528E+04 6.927E+01 916.0 5.342E+03 9.155E-02 1.261E-04 6.236E-18 836.3 836 8.937E+05 1.855E-09 9.517E+04 6.823E+01 917.0 5.251E+03 8.883E-02 1.218E-04 6.208E-18 836.3 836 8.899E+05 1.777E-09 9.507E+04 6.721E+01 918.0 5.161E+03 8.619E-02 1.177E-04 6.180E-18 836.3 836 8.860E+05 1.702E-09 9.497E+04 6.621E+01 919.0 5.073E+03 8.363E-02 1.137E-04 6.152E-18 836.3 836 8.822E+05 1.630E-09 9.487E+04 6.522E+01 920.0 4.987E+03 8.115E-02 1.099E-04 6.124E-18 836.3 836 8.784E+05 1.562E-09 9.476E+04 6.424E+01 921.0 4.901E+03 7.874E-02 1.062E-04 6.097E-18 836.3 836 8.747E+05 1.496E-09 9.466E+04 6.328E+01 922.0 4.818E+03 7.640E-02 1.026E-04 6.069E-18 836.3 836 8.709E+05 1.433E-09 9.456E+04 6.233E+01 923.0 4.736E+03 7.413E-02 9.909E-05 6.042E-18 836.3 836 8.672E+05 1.373E-09 9.446E+04 6.140E+01 924.0 4.655E+03 7.194E-02 9.574E-05 6.015E-18 836.3 836 8.634E+05 1.315E-09 9.436E+04 6.049E+01 925.0 4.575E+03 6.980E-02 9.251E-05 5.988E-18 836.3 836 8.597E+05 1.259E-09 9.426E+04 5.958E+01 926.0 4.497E+03 6.773E-02 8.938E-05 5.961E-18 836.3 836 8.561E+05 1.206E-09 9.415E+04 5.869E+01 927.0 4.421E+03 6.573E-02 8.636E-05 5.935E-18 836.3 836 8.524E+05 1.156E-09 9.405E+04 5.782E+01 928.0 4.345E+03 6.378E-02 8.344E-05 5.908E-18 836.3 836 8.487E+05 1.107E-09 9.395E+04 5.695E+01 929.0 4.271E+03 6.189E-02 8.062E-05 5.882E-18 836.3 836 8.451E+05 1.061E-09 9.385E+04 5.610E+01 930.0 4.199E+03 6.006E-02 7.790E-05 5.856E-18 836.3 836 8.415E+05 1.016E-09 9.375E+04 5.527E+01 931.0 4.127E+03 5.828E-02 7.527E-05 5.830E-18 836.3 836 8.379E+05 9.733E-10 9.365E+04 5.444E+01 932.0 4.057E+03 5.656E-02 7.273E-05 5.804E-18 836.3 836 8.343E+05 9.324E-10 9.355E+04 5.363E+01 933.0 3.988E+03 5.488E-02 7.028E-05 5.778E-18 836.3 836 8.307E+05 8.933E-10 9.345E+04 5.283E+01 934.0 3.920E+03 5.326E-02 6.791E-05 5.753E-18 836.3 836 8.272E+05 8.558E-10 9.335E+04 5.204E+01 935.0 3.853E+03 5.168E-02 6.562E-05 5.727E-18 836.3 836 8.236E+05 8.199E-10 9.325E+04 5.127E+01 936.0 3.788E+03 5.016E-02 6.340E-05 5.702E-18 836.3 836 8.201E+05 7.855E-10 9.315E+04 5.051E+01 937.0 3.724E+03 4.867E-02 6.127E-05 5.677E-18 836.3 836 8.166E+05 7.525E-10 9.305E+04 4.975E+01 938.0 3.660E+03 4.724E-02 5.920E-05 5.652E-18 836.3 836 8.131E+05 7.209E-10 9.295E+04 4.901E+01 939.0 3.598E+03 4.584E-02 5.721E-05 5.627E-18 836.3 836 8.096E+05 6.907E-10 9.285E+04 4.828E+01 940.0 3.537E+03 4.449E-02 5.528E-05 5.602E-18 836.3 836 8.062E+05 6.618E-10 9.275E+04 4.757E+01 941.0 3.477E+03 4.317E-02 5.342E-05 5.577E-18 836.3 836 8.027E+05 6.340E-10 9.265E+04 4.686E+01 942.0 3.418E+03 4.190E-02 5.162E-05 5.553E-18 836.3 836 7.993E+05 6.075E-10 9.255E+04 4.616E+01 943.0 3.360E+03 4.066E-02 4.989E-05 5.528E-18 836.3 836 7.959E+05 5.820E-10 9.245E+04 4.548E+01 944.0 3.303E+03 3.946E-02 4.821E-05 5.504E-18 836.3 836 7.925E+05 5.577E-10 9.236E+04 4.480E+01 945.0 3.247E+03 3.830E-02 4.659E-05 5.480E-18 836.3 836 7.891E+05 5.343E-10 9.226E+04 4.413E+01 946.0 3.192E+03 3.717E-02 4.502E-05 5.456E-18 836.3 836 7.857E+05 5.119E-10 9.216E+04 4.348E+01 947.0 3.138E+03 3.607E-02 4.351E-05 5.432E-18 836.3 836 7.824E+05 4.905E-10 9.206E+04 4.283E+01 948.0 3.085E+03 3.501E-02 4.204E-05 5.408E-18 836.3 836 7.790E+05 4.700E-10 9.196E+04 4.220E+01 949.0 3.032E+03 3.398E-02 4.063E-05 5.385E-18 836.3 836 7.757E+05 4.504E-10 9.186E+04 4.157E+01 950.0 2.981E+03 3.298E-02 3.927E-05 5.361E-18 836.3 836 7.724E+05 4.315E-10 9.177E+04 4.095E+01 951.0 2.931E+03 3.201E-02 3.795E-05 5.338E-18 836.3 836 7.691E+05 4.135E-10 9.167E+04 4.035E+01 952.0 2.881E+03 3.107E-02 3.667E-05 5.315E-18 836.3 836 7.658E+05 3.962E-10 9.157E+04 3.975E+01 953.0 2.832E+03 3.015E-02 3.544E-05 5.292E-18 836.3 836 7.626E+05 3.797E-10 9.147E+04 3.916E+01 954.0 2.784E+03 2.927E-02 3.425E-05 5.269E-18 836.3 836 7.593E+05 3.638E-10 9.137E+04 3.858E+01 955.0 2.737E+03 2.840E-02 3.311E-05 5.246E-18 836.3 836 7.561E+05 3.486E-10 9.128E+04 3.801E+01 956.0 2.691E+03 2.757E-02 3.200E-05 5.223E-18 836.3 836 7.529E+05 3.341E-10 9.118E+04 3.745E+01 957.0 2.645E+03 2.676E-02 3.092E-05 5.200E-18 836.3 836 7.497E+05 3.201E-10 9.108E+04 3.689E+01 958.0 2.601E+03 2.597E-02 2.989E-05 5.178E-18 836.3 836 7.465E+05 3.068E-10 9.099E+04 3.634E+01 959.0 2.557E+03 2.521E-02 2.889E-05 5.155E-18 836.3 836 7.433E+05 2.940E-10 9.089E+04 3.581E+01 960.0 2.514E+03 2.447E-02 2.792E-05 5.133E-18 836.3 836 7.402E+05 2.817E-10 9.079E+04 3.528E+01 961.0 2.471E+03 2.375E-02 2.698E-05 5.111E-18 836.3 836 7.370E+05 2.700E-10 9.070E+04 3.476E+01 962.0 2.429E+03 2.305E-02 2.608E-05 5.089E-18 836.3 836 7.339E+05 2.587E-10 9.060E+04 3.424E+01 963.0 2.388E+03 2.238E-02 2.521E-05 5.067E-18 836.3 836 7.308E+05 2.480E-10 9.050E+04 3.374E+01 964.0 2.348E+03 2.172E-02 2.436E-05 5.045E-18 836.3 836 7.277E+05 2.376E-10 9.041E+04 3.324E+01 965.0 2.308E+03 2.108E-02 2.355E-05 5.023E-18 836.3 836 7.246E+05 2.277E-10 9.031E+04 3.275E+01 966.0 2.270E+03 2.047E-02 2.276E-05 5.002E-18 836.3 836 7.215E+05 2.183E-10 9.022E+04 3.226E+01 967.0 2.231E+03 1.987E-02 2.200E-05 4.980E-18 836.3 836 7.185E+05 2.092E-10 9.012E+04 3.179E+01 968.0 2.194E+03 1.928E-02 2.126E-05 4.959E-18 836.3 836 7.154E+05 2.005E-10 9.002E+04 3.132E+01 969.0 2.157E+03 1.872E-02 2.055E-05 4.937E-18 836.3 836 7.124E+05 1.921E-10 8.993E+04 3.085E+01 970.0 2.120E+03 1.817E-02 1.987E-05 4.916E-18 836.3 836 7.094E+05 1.841E-10 8.983E+04 3.040E+01 971.0 2.085E+03 1.764E-02 1.920E-05 4.895E-18 836.3 836 7.064E+05 1.765E-10 8.974E+04 2.995E+01 972.0 2.050E+03 1.712E-02 1.856E-05 4.874E-18 836.3 836 7.034E+05 1.692E-10 8.964E+04 2.951E+01 973.0 2.015E+03 1.662E-02 1.794E-05 4.853E-18 836.3 836 7.004E+05 1.621E-10 8.955E+04 2.907E+01 974.0 1.981E+03 1.613E-02 1.734E-05 4.833E-18 836.3 836 6.974E+05 1.554E-10 8.945E+04 2.865E+01 975.0 1.948E+03 1.566E-02 1.677E-05 4.812E-18 836.3 836 6.945E+05 1.489E-10 8.936E+04 2.822E+01 976.0 1.915E+03 1.520E-02 1.621E-05 4.791E-18 836.3 836 6.915E+05 1.428E-10 8.926E+04 2.781E+01 977.0 1.883E+03 1.476E-02 1.567E-05 4.771E-18 836.3 836 6.886E+05 1.368E-10 8.917E+04 2.740E+01 978.0 1.851E+03 1.433E-02 1.514E-05 4.751E-18 836.3 836 6.857E+05 1.312E-10 8.907E+04 2.699E+01 979.0 1.820E+03 1.391E-02 1.464E-05 4.730E-18 836.3 836 6.828E+05 1.257E-10 8.898E+04 2.660E+01 980.0 1.790E+03 1.350E-02 1.415E-05 4.710E-18 836.3 836 6.799E+05 1.205E-10 8.889E+04 2.621E+01 981.0 1.760E+03 1.311E-02 1.368E-05 4.690E-18 836.3 836 6.770E+05 1.155E-10 8.879E+04 2.582E+01 982.0 1.730E+03 1.273E-02 1.322E-05 4.670E-18 836.3 836 6.742E+05 1.107E-10 8.870E+04 2.544E+01 983.0 1.701E+03 1.235E-02 1.278E-05 4.650E-18 836.3 836 6.713E+05 1.061E-10 8.860E+04 2.507E+01 984.0 1.672E+03 1.199E-02 1.236E-05 4.631E-18 836.3 836 6.685E+05 1.017E-10 8.851E+04 2.470E+01 985.0 1.644E+03 1.164E-02 1.195E-05 4.611E-18 836.3 836 6.657E+05 9.752E-11 8.842E+04 2.433E+01 986.0 1.617E+03 1.130E-02 1.155E-05 4.592E-18 836.3 836 6.629E+05 9.348E-11 8.832E+04 2.398E+01 987.0 1.590E+03 1.097E-02 1.117E-05 4.572E-18 836.3 836 6.601E+05 8.961E-11 8.823E+04 2.363E+01 988.0 1.563E+03 1.065E-02 1.080E-05 4.553E-18 836.3 836 6.573E+05 8.590E-11 8.814E+04 2.328E+01 989.0 1.537E+03 1.034E-02 1.044E-05 4.533E-18 836.3 836 6.545E+05 8.235E-11 8.804E+04 2.294E+01 990.0 1.511E+03 1.004E-02 1.009E-05 4.514E-18 836.3 836 6.517E+05 7.894E-11 8.795E+04 2.260E+01 991.0 1.486E+03 9.750E-03 9.754E-06 4.495E-18 836.3 836 6.490E+05 7.568E-11 8.786E+04 2.227E+01 992.0 1.461E+03 9.467E-03 9.430E-06 4.476E-18 836.3 836 6.463E+05 7.255E-11 8.777E+04 2.194E+01 993.0 1.436E+03 9.191E-03 9.117E-06 4.457E-18 836.3 836 6.435E+05 6.955E-11 8.767E+04 2.162E+01 994.0 1.412E+03 8.923E-03 8.815E-06 4.439E-18 836.3 836 6.408E+05 6.668E-11 8.758E+04 2.130E+01 995.0 1.389E+03 8.664E-03 8.522E-06 4.420E-18 836.3 836 6.381E+05 6.392E-11 8.749E+04 2.099E+01 996.0 1.366E+03 8.412E-03 8.240E-06 4.401E-18 836.3 836 6.355E+05 6.129E-11 8.740E+04 2.068E+01 997.0 1.343E+03 8.167E-03 7.966E-06 4.383E-18 836.3 836 6.328E+05 5.876E-11 8.730E+04 2.038E+01 998.0 1.320E+03 7.930E-03 7.702E-06 4.364E-18 836.3 836 6.301E+05 5.633E-11 8.721E+04 2.008E+01 999.0 1.298E+03 7.699E-03 7.447E-06 4.346E-18 836.3 836 6.275E+05 5.401E-11 8.712E+04 1.979E+01 1000.0 1.276E+03 7.476E-03 7.200E-06 4.328E-18 836.3 836 6.248E+05 5.178E-11 8.703E+04 1.950E+01fluids-1.0.22/tests/nrlmsise00/data_from_C_version.txt0000644000175000017500000001423314302004506022247 0ustar nileshnilesh 6.665177E+05 1.138806E+08 1.998211E+07 4.022764E+05 3.557465E+03 4.074714E-15 3.475312E+04 4.095913E+06 2.667273E+04 1.250540E+03 1.241416E+03 3.407293E+06 1.586333E+08 1.391117E+07 3.262560E+05 1.559618E+03 5.001846E-15 4.854208E+04 4.380967E+06 6.956682E+03 1.166754E+03 1.161710E+03 1.123767E+05 6.934130E+04 4.247105E+01 1.322750E-01 2.618848E-05 2.756772E-18 2.016750E+04 5.741256E+03 2.374394E+04 1.239892E+03 1.239891E+03 5.411554E+07 1.918893E+11 6.115826E+12 1.225201E+12 6.023212E+10 3.584426E-10 1.059880E+07 2.615737E+05 2.819879E-42 1.027318E+03 2.068878E+02 1.851122E+06 1.476555E+08 1.579356E+07 2.633795E+05 1.588781E+03 4.809630E-15 5.816167E+04 5.478984E+06 1.264446E+03 1.212396E+03 1.208135E+03 8.673095E+05 1.278862E+08 1.822577E+07 2.922214E+05 2.402962E+03 4.355866E-15 3.686389E+04 3.897276E+06 2.667273E+04 1.220146E+03 1.212712E+03 5.776251E+05 6.979139E+07 1.236814E+07 2.492868E+05 1.405739E+03 2.470651E-15 5.291986E+04 1.069814E+06 2.667273E+04 1.116385E+03 1.112999E+03 3.740304E+05 4.782720E+07 5.240380E+06 1.759875E+05 5.501649E+02 1.571889E-15 8.896776E+04 1.979741E+06 9.121815E+03 1.031247E+03 1.024848E+03 6.748339E+05 1.245315E+08 2.369010E+07 4.911583E+05 4.578781E+03 4.564420E-15 3.244595E+04 5.370833E+06 2.667273E+04 1.306052E+03 1.293374E+03 5.528601E+05 1.198041E+08 3.495798E+07 9.339618E+05 1.096255E+04 4.974543E-15 2.686428E+04 4.889974E+06 2.805445E+04 1.361868E+03 1.347389E+03 1.375488E+14 0.000000E+00 2.049687E+19 5.498695E+18 2.451733E+17 1.261066E-03 0.000000E+00 0.000000E+00 0.000000E+00 1.027318E+03 2.814648E+02 4.427443E+13 0.000000E+00 6.597567E+18 1.769929E+18 7.891680E+16 4.059139E-04 0.000000E+00 0.000000E+00 0.000000E+00 1.027318E+03 2.274180E+02 2.127829E+12 0.000000E+00 3.170791E+17 8.506280E+16 3.792741E+15 1.950822E-05 0.000000E+00 0.000000E+00 0.000000E+00 1.027318E+03 2.374389E+02 1.412184E+11 0.000000E+00 2.104370E+16 5.645392E+15 2.517142E+14 1.294709E-06 0.000000E+00 0.000000E+00 0.000000E+00 1.027318E+03 2.795551E+02 1.254884E+10 0.000000E+00 1.874533E+15 4.923051E+14 2.239685E+13 1.147668E-07 0.000000E+00 0.000000E+00 0.000000E+00 1.027318E+03 2.190732E+02 5.196477E+05 1.274494E+08 4.850450E+07 1.720838E+06 2.354487E+04 5.881940E-15 2.500078E+04 6.279210E+06 2.667273E+04 1.426412E+03 1.408608E+03 4.260860E+07 1.241342E+11 4.929562E+12 1.048407E+12 4.993465E+10 2.914304E-10 8.831229E+06 2.252516E+05 2.415246E-42 1.027318E+03 1.934071E+02 DAY 172 81 172 172 172 UT 29000 29000 75000 29000 29000 ALT 400 400 1000 100 400 LAT 60 60 60 60 0 LONG -70 -70 -70 -70 -70 LST 16 16 16 16 16 F107A 150 150 150 150 150 F107 150 150 150 150 150 TINF 1250.54 1166.75 1239.89 1027.32 1212.40 TG 1241.42 1161.71 1239.89 206.89 1208.14 HE 6.665e+05 3.407e+06 1.124e+05 5.412e+07 1.851e+06 O 1.139e+08 1.586e+08 6.934e+04 1.919e+11 1.477e+08 N2 1.998e+07 1.391e+07 4.247e+01 6.116e+12 1.579e+07 O2 4.023e+05 3.263e+05 1.323e-01 1.225e+12 2.634e+05 AR 3.557e+03 1.560e+03 2.619e-05 6.023e+10 1.589e+03 H 3.475e+04 4.854e+04 2.017e+04 1.060e+07 5.816e+04 N 4.096e+06 4.381e+06 5.741e+03 2.616e+05 5.479e+06 ANM 2.667e+04 6.957e+03 2.374e+04 2.820e-42 1.264e+03 RHO 4.075e-15 5.002e-15 2.757e-18 3.584e-10 4.810e-15 DAY 172 172 172 172 172 UT 29000 29000 29000 29000 29000 ALT 400 400 400 400 400 LAT 60 60 60 60 60 LONG 0 -70 -70 -70 -70 LST 16 4 16 16 16 F107A 150 150 70 150 150 F107 150 150 150 180 150 TINF 1220.15 1116.39 1031.25 1306.05 1361.87 TG 1212.71 1113.00 1024.85 1293.37 1347.39 HE 8.673e+05 5.776e+05 3.740e+05 6.748e+05 5.529e+05 O 1.279e+08 6.979e+07 4.783e+07 1.245e+08 1.198e+08 N2 1.823e+07 1.237e+07 5.240e+06 2.369e+07 3.496e+07 O2 2.922e+05 2.493e+05 1.760e+05 4.912e+05 9.340e+05 AR 2.403e+03 1.406e+03 5.502e+02 4.579e+03 1.096e+04 H 3.686e+04 5.292e+04 8.897e+04 3.245e+04 2.686e+04 N 3.897e+06 1.070e+06 1.980e+06 5.371e+06 4.890e+06 ANM 2.667e+04 2.667e+04 9.122e+03 2.667e+04 2.805e+04 RHO 4.356e-15 2.471e-15 1.572e-15 4.564e-15 4.975e-15 DAY 172 172 172 172 172 UT 29000 29000 29000 29000 29000 ALT 0 10 30 50 70 LAT 60 60 60 60 60 LONG -70 -70 -70 -70 -70 LST 16 16 16 16 16 F107A 150 150 150 150 150 F107 150 150 150 150 150 TINF 1027.32 1027.32 1027.32 1027.32 1027.32 TG 281.46 227.42 237.44 279.56 219.07 HE 1.375e+14 4.427e+13 2.128e+12 1.412e+11 1.255e+10 O 0.000e+00 0.000e+00 0.000e+00 0.000e+00 0.000e+00 N2 2.050e+19 6.598e+18 3.171e+17 2.104e+16 1.875e+15 O2 5.499e+18 1.770e+18 8.506e+16 5.645e+15 4.923e+14 AR 2.452e+17 7.892e+16 3.793e+15 2.517e+14 2.240e+13 H 0.000e+00 0.000e+00 0.000e+00 0.000e+00 0.000e+00 N 0.000e+00 0.000e+00 0.000e+00 0.000e+00 0.000e+00 ANM 0.000e+00 0.000e+00 0.000e+00 0.000e+00 0.000e+00 RHO 1.261e-03 4.059e-04 1.951e-05 1.295e-06 1.148e-07 fluids-1.0.22/tests/make_test_stubs.py0000644000175000017500000000256514302004506017322 0ustar nileshnilesh#!/usr/bin/env python3 # -*- coding: utf-8 -*- import os import sys tests = ['test_drag', 'test_control_valve', 'test_two_phase', 'test_two_phase_voidage', 'test_separator', 'test_piping', 'test_packed_bed', 'test_compressible', 'test_core', 'test_safety_valve', 'test_open_flow', 'test_filters', 'test_flow_meter', 'test_atmosphere', 'test_pump', 'test_friction', 'test_fittings', 'test_packed_tower', 'test_saltation', 'test_mixing', 'test_geometry', 'test_particle_size_distribution', 'test_jet_pump'] #tests = ['test_geometry'] try: os.remove("monkeytype.sqlite3") except: pass for t in tests: os.system("python3 -m monkeytype run manual_runner.py %s" %t) for t in tests: mod = t[5:] os.system("python3 -m monkeytype stub fluids.%s > ../fluids/%s.pyi" %(mod, mod)) type_hit_path = "../fluids/%s.pyi" %mod dat = open(type_hit_path, 'r').read() imports = 'from typing import List\n' future = 'from __future__ import annotations\n' dat = '# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py!\n' + future + imports + dat dat = dat.replace('Union[int, float]', 'float') dat = dat.replace('Union[float, int]', 'float') dat += '\n__all__: List[str]' open(type_hit_path, 'w').write(dat) ''' First thing not supported by monkeytype: Tuple[t1, ...] in CountryPower ''' try: os.remove("monkeytype.sqlite3") except: pass fluids-1.0.22/tests/test_separator.py0000644000175000017500000001254614302004506017165 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from fluids.separator import K_separator_Watkins, K_separator_demister_York, v_Sounders_Brown, K_Sounders_Brown_theoretical import pytest from fluids.numerics import assert_close, assert_close1d, assert_close2d @pytest.mark.scipy def test_K_separator_Watkins_fit(): import numpy as np from fluids.separator import tck_Watkins from scipy.interpolate import UnivariateSpline, splev, splrep v_factors_Watkins = [0.006, 0.00649546, 0.00700535, 0.00755527, 0.00817788, 0.00881991, 0.00954676, 0.0103522, 0.0112256, 0.0121947, 0.0132476, 0.0143655, 0.0156059, 0.0169841, 0.018484, 0.0201165, 0.0219329, 0.0239133, 0.0260727, 0.0284272, 0.0309944, 0.0339158, 0.037046, 0.0403924, 0.0441998, 0.0483665, 0.0529259, 0.0579153, 0.0632613, 0.0692251, 0.0756157, 0.0825962, 0.0902214, 0.0983732, 0.107262, 0.116954, 0.127753, 0.139047, 0.151614, 0.165317, 0.179934, 0.195845, 0.21278, 0.231181, 0.251627, 0.272897, 0.295966, 0.32041, 0.347497, 0.3762, 0.407274, 0.440914, 0.476478, 0.513983, 0.554442, 0.59701, 0.642851, 0.690966, 0.744018, 0.798268, 0.856477, 0.920588, 0.987716, 1.05784, 1.13294, 1.21337, 1.29718, 1.38678, 1.4799, 1.58212, 1.68837, 1.79851, 1.91583, 2.04083, 2.16616, 2.29918, 2.44037, 2.59025, 2.73944, 2.89725, 3.06414, 3.24064, 3.42731, 3.61822, 3.81976, 4.02527, 4.24949, 4.47008, 4.71907, 4.96404, 5.22172, 5.43354] Kv_Watkins = [0.23722, 0.248265, 0.260298, 0.272915, 0.284578, 0.297283, 0.309422, 0.322054, 0.33398, 0.345714, 0.355905, 0.366397, 0.377197, 0.386898, 0.396125, 0.404831, 0.411466, 0.41821, 0.424289, 0.428886, 0.433533, 0.435832, 0.436547, 0.436468, 0.437982, 0.437898, 0.437815, 0.436932, 0.435258, 0.434381, 0.431138, 0.427919, 0.42395, 0.420018, 0.415364, 0.410012, 0.403988, 0.39733, 0.390067, 0.38154, 0.373883, 0.364378, 0.354467, 0.344197, 0.333613, 0.322767, 0.311704, 0.299923, 0.289114, 0.277173, 0.265725, 0.254749, 0.243338, 0.232438, 0.221621, 0.211309, 0.200742, 0.190704, 0.181498, 0.172108, 0.162906, 0.154196, 0.145952, 0.137897, 0.130049, 0.122647, 0.115667, 0.108885, 0.102502, 0.0963159, 0.0903385, 0.0847323, 0.0796194, 0.0744062, 0.0695348, 0.0651011, 0.060839, 0.0567521, 0.0529401, 0.0492041, 0.0458154, 0.0426601, 0.039722, 0.036919, 0.0343137, 0.0318924, 0.0296419, 0.0275001, 0.0255595, 0.0237127, 0.0219993, 0.0207107] Watkins_interp = UnivariateSpline(v_factors_Watkins, Kv_Watkins, s=.00001) tck_Watkins_recalc = splrep(np.log(v_factors_Watkins), np.log(Kv_Watkins), s=0.001, k=3) [assert_close1d(i, j, rtol=1e-3) for i, j in zip(tck_Watkins[:-1], tck_Watkins_recalc[:-1])] # plt.loglog(v_factors_Watkins, Watkins_interp(v_factors_Watkins)) # my_vs = np.logspace(np.log10(0.006/10), np.log10(5.43354*10), 1000) # plt.loglog(my_vs, np.exp(splev(np.log(my_vs), tck_Watkins)), 'x') # plt.show() def test_K_separator_Watkins(): calc = [[K_separator_Watkins(0.88, 985.4, 1.3, horizontal, method) for method in ['spline', 'branan', 'blackwell']] for horizontal in [False, True]] expect = [[0.06361290880381038, 0.06108986837654085, 0.06994527471072351], [0.07951613600476297, 0.07636233547067607, 0.0874315933884044]] assert_close2d(calc, expect, rtol=1e-4) with pytest.raises(Exception): K_separator_Watkins(0.88, 985.4, 1.3, horizontal=True, method='BADMETHOD') def test_K_separator_demister_York(): from fluids.constants import psi Ks_expect = [0.056387999999999994, 0.056387999999999994, 0.09662736507185091, 0.10667999999999998, 0.10520347947487964, 0.1036391539227465, 0.07068690636639535] Ks = [] for P in [.1, 1, 10, 20, 40, 50, 5600]: Ks.append(K_separator_demister_York(P*psi)) assert_close1d(Ks, Ks_expect) K = K_separator_demister_York(25*psi, horizontal=True) assert_close(K, 0.13334999999999997) def test_v_Sounders_Brown(): v = v_Sounders_Brown(K=0.08, rhol=985.4, rhog=1.3) assert_close(v, 2.2010906387516167) def test_K_Sounders_Brown_theoretical(): K = K_Sounders_Brown_theoretical(D=150E-6, Cd=0.5) assert_close(K, 0.06263114241333939)fluids-1.0.22/tests/test_utils.py0000644000175000017500000000470414302004506016322 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division import pytest def swap_funcs_and_test(names, substitutions, test): '''Function to replace some globals in another function, run that function, and then set the globals back. names : list[str] object names to switch out substitutions : list[obj] Objects to put in test : function Unit test to run in the file ''' originals = {} glob = test.__globals__ for name, sub in zip(names, substitutions): if name in glob: originals[name] = glob[name] glob[name] = sub try: test() except Exception as e: glob.update(originals) raise e glob.update(originals) try: import fluids.numba numba_substitutions = [] numba_func_names = [] for s in fluids.numba.__all__: if hasattr(fluids.numba, s): f = getattr(fluids.numba, s) numba_substitutions.append(f) numba_func_names.append(s) except: pass def swap_for_numba_test(func): return swap_funcs_and_test(fluids.numba.__all__, numba_substitutions, func) def mark_as_numba(func): func = pytest.mark.numba(func) func = pytest.mark.slow(func) func = pytest.mark.skipif(numba is None, reason="Numba is missing")(func) return func fluids-1.0.22/tests/test_control_valve.py0000644000175000017500000004226414302004506020042 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from fluids.control_valve import cavitation_index, FF_critical_pressure_ratio_l, is_choked_turbulent_l, is_choked_turbulent_g, Reynolds_valve, loss_coefficient_piping, Reynolds_factor from fluids.fittings import Cv_to_Kv from fluids.control_valve import * from fluids.numerics import assert_close, assert_close1d, assert_close2d, isclose import pytest def test_control_valve(): CI = cavitation_index(1E6, 8E5, 2E5) assert_close(CI, 4.0) FF = FF_critical_pressure_ratio_l(70100.0, 22120000.0) assert_close(FF, 0.9442375225233299) F = is_choked_turbulent_l(460.0, 680.0, 70.1, 0.9442375225233299, 0.9) assert not F T = is_choked_turbulent_l(460.0, 680.0, 70.1, 0.9442375225233299, 0.6) assert T with pytest.raises(Exception): is_choked_turbulent_l(460.0, 680.0, 70.1, 0.9442375225233299) # Example 4, compressible flow - small flow trim sized for gas flow: assert False == is_choked_turbulent_g(0.536, 1.193, 0.8) # Custom example assert True == is_choked_turbulent_g(0.9, 1.193, 0.7) with pytest.raises(Exception): is_choked_turbulent_g(0.544, 0.929) Rev = Reynolds_valve(3.26e-07, 360, 100.0, 0.6, 0.98, 238.05817216710483) assert_close(Rev, 6596953.826574914) Rev = Reynolds_valve(3.26e-07, 360, 150.0, 0.9, 0.46, 164.9954763704956) assert_close(Rev, 2967024.346783506) K = loss_coefficient_piping(0.05, 0.08, 0.1) assert_close(K, 0.6580810546875) ### Reynolds factor (laminar) # In Example 4, compressible flow with small flow trim sized for gas flow # (Cv in the problem was converted to Kv here to make FR match with N32, N2): f = Reynolds_factor(FL=0.98, C=0.015483, d=15., Rev=1202., full_trim=False) assert_close(f, 0.7148753122302025) # Custom, same as above but with full trim: f = Reynolds_factor(FL=0.98, C=0.015483, d=15., Rev=1202., full_trim=True) assert_close(f, 0.9875328782172637) # Example 4 with Rev < 10: f = Reynolds_factor(FL=0.98, C=0.015483, d=15., Rev=8., full_trim=False) assert_close(f, 0.08339546213461975) # Same, with full_trim f = Reynolds_factor(FL=0.98, C=0.015483, d=15., Rev=8., full_trim=True) assert_close(f, 43.619397389803986) def test_control_valve_size_l(): ### Control valve liquid # From [1]_, matching example 1 for a globe, parabolic plug, # flow-to-open valve. Kv = size_control_valve_l(rho=965.4, Psat=70.1E3, Pc=22120E3, mu=3.1472E-4, P1=680E3, P2=220E3, Q=0.1, D1=0.15, D2=0.15, d=0.15, FL=0.9, Fd=0.46) assert_close(Kv, 164.9954763704956) # Same as above - diameters removed Kv = size_control_valve_l(rho=965.4, Psat=70.1E3, Pc=22120E3, mu=3.1472E-4, P1=680E3, P2=220E3, Q=0.1) assert_close(Kv, 164.9954763704956) # From [1]_, matching example 2 for a ball, segmented ball, # flow-to-open valve. Kv = size_control_valve_l(rho=965.4, Psat=70.1E3, Pc=22120E3, mu=3.1472E-4, P1=680E3, P2=220E3, Q=0.1, D1=0.1, D2=0.1, d=0.1, FL=0.6, Fd=0.98) assert_close(Kv, 238.05817216710483) # Modified example 1 with non-choked flow, with reducer and expander Kv = size_control_valve_l(rho=965.4, Psat=70.1E3, Pc=22120E3, mu=3.1472E-4, P1=680E3, P2=220E3, Q=0.1, D1=0.1, D2=0.09, d=0.08, FL=0.9, Fd=0.46) assert_close(Kv, 177.44417090966715) # Modified example 2 with non-choked flow, with reducer and expander Kv = size_control_valve_l(rho=965.4, Psat=70.1E3, Pc=22120E3, mu=3.1472E-4, P1=680E3, P2=220E3, Q=0.1, D1=0.1, D2=0.1, d=0.095, FL=0.6, Fd=0.98) assert_close(Kv, 241.6812562245056) # Same, test intermediate values ans = size_control_valve_l(rho=965.4, Psat=70.1E3, Pc=22120E3, mu=3.1472E-4, P1=680E3, P2=220E3, Q=0.1, D1=0.1, D2=0.1, d=0.095, FL=0.6, Fd=0.98, full_output=True) del ans['choked'] del ans['FR'] ans_expect = {'FF': 0.9442375225233299, 'FLP': 0.5912597868996382, 'FP': 0.9969139124178094, 'Kv': 241.6812562245056, 'Rev': 6596962.21111206, 'laminar': False} for k in ans_expect.keys(): assert_close(ans[k], ans_expect[k]) # Modified example 2 with laminar flow at 100x viscosity, 100th flow rate, and 1/10th diameters: Kv = size_control_valve_l(rho=965.4, Psat=70.1E3, Pc=22120E3, mu=3.1472E-2, P1=680E3, P2=220E3, Q=0.001, D1=0.01, D2=0.01, d=0.01, FL=0.6, Fd=0.98) assert_close(Kv, 3.0947562381723626) # Last test, laminar full trim Kv = size_control_valve_l(rho=965.4, Psat=70.1E3, Pc=22120E3, mu=3.1472E-2, P1=680E3, P2=220E3, Q=0.001, D1=0.01, D2=0.01, d=0.02, FL=0.6, Fd=0.98) assert_close(Kv, 3.0947562381723626) # TODO: find a test where the following is tested, or remove it as unnecessary. # if C/FR >= Ci: # Ci = iterate_piping_laminar(Ci) # Efforts to make this happen have been unsuccessful. # Test the ignore choked option ans = size_control_valve_l(rho=965.4, Psat=70.1E3, Pc=22120E3, mu=3.1472E-4, P1=680E3, P2=220E3, Q=0.1, D1=0.1, D2=0.1, d=0.1, FL=0.6, Fd=0.98, allow_choked=False, full_output=True) assert_close(ans['Kv'], 164.9954763704956) assert_close(ans['Rev'], 7805019.992655547) assert ans['choked'] == True # Still true even though the choke is ignored assert ans['FF'] assert ans['FLP'] is None assert ans['FP'] is None assert ans['FR'] is None # Test the laminar switch for Kv, boolean in zip((0.014547698964079439, 0.011190537664676491), (True, False)): ans = size_control_valve_l(rho=965.4, Psat=70.1E3, Pc=22120E3, mu=3.1472E-4, P1=680E3, P2=670E3, Q=0.000001, D1=0.1, D2=0.1, d=0.1, FL=0.6, Fd=0.98, allow_laminar=boolean, full_output=True) assert_close(ans['Kv'], Kv) # Test for too many iterations, does not converge kwargs = {'allow_laminar': True, 'allow_choked': True, 'Fd': 1.0, 'FL': 1.0, 'D1': 0.1, 'D2': 0.1, 'd': 0.09, 'full_output': True, 'P1': 1000000.0, 'mu': 0.0008512512422708317, 'rho': 995.4212225776154, 'Pc': 22048320.0, 'Q': 0.004018399356246507, 'Psat': 3537.075987237396, 'P2': 999990.0} res = size_control_valve_l(**kwargs) assert 'warning' in res # Test 'choked' in results kwargs = {'allow_laminar': True, 'allow_choked': True, 'Fd': 0.42, 'FL': 0.85, 'D1': 0.08, 'D2': 0.1, 'd': 0.05, 'full_output': True, 'P1': 680000.0, 'mu': 2.099826023627934e-05, 'T': 433.0, 'MW': 44.0095, 'gamma': 1.2567580165935908, 'Z': 0.9896087377962121, 'xT': 0.6, 'Q': 1.0632314140418966, 'P2': 313744.8065927219} res = size_control_valve_g(**kwargs) assert res['choked'] def test_control_valve_size_g(): # From [1]_, matching example 3 for non-choked gas flow with attached # fittings and a rotary, eccentric plug, flow-to-open control valve: Kv = size_control_valve_g(T=433., MW=44.01, mu=1.4665E-4, gamma=1.30, Z=0.988, P1=680E3, P2=310E3, Q=38/36., D1=0.08, D2=0.1, d=0.05, FL=0.85, Fd=0.42, xT=0.60) assert_close(Kv, 72.58664545391052) # From [1]_, roughly matching example 4 for a small flow trim sized tapered # needle plug valve. Difference is 3% and explained by the difference in # algorithms used. Kv = size_control_valve_g(T=320., MW=39.95, mu=5.625E-5, gamma=1.67, Z=1.0, P1=2.8E5, P2=1.3E5, Q=0.46/3600., D1=0.015, D2=0.015, d=0.015, FL=0.98, Fd=0.07, xT=0.8) assert_close(Kv, 0.016498765335995726) # Diameters removed Kv = size_control_valve_g(T=320., MW=39.95, mu=5.625E-5, gamma=1.67, Z=1.0, P1=2.8E5, P2=1.3E5, Q=0.46/3600., xT=0.8) assert_close(Kv, 0.012691357950765944) ans = size_control_valve_g(T=320., MW=39.95, mu=5.625E-5, gamma=1.67, Z=1.0, P1=2.8E5, P2=1.3E5, Q=0.46/3600., xT=0.8, full_output=True) assert ans['laminar'] == False assert ans['choked'] == False assert ans['FP'] is None assert ans['FR'] is None assert ans['xTP'] is None assert ans['Rev'] is None # Choked custom example Kv = size_control_valve_g(T=433., MW=44.01, mu=1.4665E-4, gamma=1.30, Z=0.988, P1=680E3, P2=30E3, Q=38/36., D1=0.08, D2=0.1, d=0.05, FL=0.85, Fd=0.42, xT=0.60) assert_close(Kv, 70.67468803987839) # Laminar custom example Kv = size_control_valve_g(T=320., MW=39.95, mu=5.625E-5, gamma=1.67, Z=1.0, P1=2.8E5, P2=1.3E5, Q=0.46/3600., D1=0.015, D2=0.015, d=0.001, FL=0.98, Fd=0.07, xT=0.8) assert_close(Kv, 0.016498765335995726) # Laminar custom example with iteration Kv = size_control_valve_g(T=320., MW=39.95, mu=5.625E-5, gamma=1.67, Z=1.0, P1=2.8E5, P2=2.7E5, Q=0.1/3600., D1=0.015, D2=0.015, d=0.001, FL=0.98, Fd=0.07, xT=0.8) assert_close(Kv, 0.989125783445497) # test not allowing chokes ans_choked = size_control_valve_g(T=320., MW=39.95, mu=5.625E-5, gamma=1.67, Z=1.0, P1=2.8E5, P2=1e4, Q=0.46/3600., D1=0.015, D2=0.015, d=0.015, FL=0.98, Fd=0.07, xT=0.8, full_output=True, allow_choked=True) ans = size_control_valve_g(T=320., MW=39.95, mu=5.625E-5, gamma=1.67, Z=1.0, P1=2.8E5, P2=1e4, Q=0.46/3600., D1=0.015, D2=0.015, d=0.015, FL=0.98, Fd=0.07, xT=0.8, full_output=True, allow_choked=False) assert not isclose(ans_choked['Kv'], ans['Kv'], rel_tol=1E-4) # Test not allowing laminar for Kv, boolean in zip((0.001179609179354541, 0.00090739167642657), (True, False)): ans = size_control_valve_g(T=320., MW=39.95, mu=5.625E-5, gamma=1.67, Z=1.0, P1=2.8E5, P2=1e4, Q=1e-5, D1=0.015, D2=0.015, d=0.015, FL=0.98, Fd=0.07, xT=0.8, full_output=True, allow_laminar=boolean) assert_close(Kv, ans['Kv']) assert ans['choked'] # Still true even though the choke is ignored assert ans['xTP'] is None assert ans['Y'] assert ans['FP'] is None assert ans['FR'] is None assert ans['Rev'] # Test a warning is issued and a solution is still returned when in an unending loop # Ends with C ratio converged to 0.907207790871228 args = {'P1': 680000.0, 'full_output': True, 'allow_choked': True, 'Q': 0.24873053149856303, 'T': 433.0, 'Z': 0.9908749375670418, 'FL': 0.85, 'allow_laminar': True, 'd': 0.05, 'mu': 2.119519588834806e-05, 'MW': 44.0095, 'Fd': 0.42, 'gamma': 1.2431389717945152, 'D2': 0.1, 'xT': 0.6, 'D1': 0.08} ans = size_control_valve_g(P2=678000., **args) assert ans['warning'] # Test Kv does not reach infinity kwargs = {'P2': 310000.0028935982, 'P1': 680000.0, 'full_output': True, 'allow_choked': True, 'T': 433.0, 'Z': 0.9896087377962123, 'FL': 0.85, 'allow_laminar': True, 'd': 0.05, 'mu': 2.119519588834806e-05, 'MW': 44.0095, 'Fd': 0.42, 'gamma': 1.2431389717945152, 'D2': 0.1, 'xT': 0.6, 'D1': 0.08} size_control_valve_g(Q=1000000000.0, **kwargs) def test_control_valve_choke_P_l(): P2 = control_valve_choke_P_l(69682.89291024722, 22048320.0, 0.6, 680000.0) assert_close(P2, 458887.5306077305) P1 = control_valve_choke_P_l(69682.89291024722, 22048320.0, 0.6, P2=P2) assert_close(P1, 680000.0) def test_control_valve_choke_P_g(): P2 = control_valve_choke_P_g(1.0, 1.3, 1E5) assert_close(P2, 7142.857142857143) P1 = control_valve_choke_P_g(1.0, 1.3, P2=P2) assert_close(P1, 100000.0) def test_control_valve_noise_l_2015(): m = 30 # kg/s P1 = 1E6 P2 = 8E5 Psat = 2.32E3 rho = 997.0 c = 1400.0 Kv = Cv_to_Kv(90) d = .1 Di =.1071 FL = 0.92 Fd = 0.42 rho_air = 1.293 c_air = 343.0 t_pipe = .0036 # Example 1 noise = control_valve_noise_l_2015(m, P1, P2, Psat, rho, c, Kv, d, Di, FL, Fd, t_pipe, rho_pipe=7800.0, c_pipe=5000.0, rho_air=rho_air, c_air=343.0, xFz=None, An=-4.6) assert_close(noise, 65.47210071692108) # Example 2 m = 40 # kg/s P1 = 1E6 P2 = 6.5E5 noise = control_valve_noise_l_2015(m, P1, P2, Psat, rho, c, Kv, d, Di, FL, Fd, t_pipe, rho_pipe=7800.0, c_pipe=5000.0, rho_air=rho_air, c_air=343.0, xFz=None, An=-4.6) assert_close(noise, 81.58199982219298) # Example 3 m = 40 # kg/s P1 = 1E6 P2 = 6.5E5 noise = control_valve_noise_l_2015(m, P1, P2, Psat, rho, c, Kv, d, Di, FL, Fd, t_pipe, rho_pipe=7800.0, c_pipe=5000.0, rho_air=rho_air, c_air=343.0, xFz=0.254340899267+0.1, An=-4.6) assert_close(noise, 69.93930269695811) def test_control_valve_noise_g_2011(): ans = control_valve_noise_g_2011(m=2.22, P1=1E6, P2=7.2E5, T1=450, rho=5.3, gamma=1.22, MW=19.8, Kv=Cv_to_Kv(90.0), d=0.1, Di=0.2031, FL=None, FLP=0.792, FP=0.98, Fd=0.2959450058448346, t_pipe=0.008, rho_pipe=8000.0, c_pipe=5000.0, rho_air=1.293, c_air=343.0, An=-3.8, Stp=0.2) assert_close(ans, 91.67631681476502) ans = control_valve_noise_g_2011(m=2.29, P1=1E6, P2=6.9E5, T1=450, rho=5.3, gamma=1.22, MW=19.8, Kv=Cv_to_Kv(90.0), d=0.1, Di=0.2031, FL=None, FLP=0.792, FP=0.98, Fd=0.2959450058448346, t_pipe=0.008, rho_pipe=8000.0, c_pipe=5000.0, rho_air=1.293, c_air=343.0, An=-3.8, Stp=0.2) assert_close(ans, 92.80027236454005) ans = control_valve_noise_g_2011(m=2.59, P1=1E6, P2=4.8E5, T1=450, rho=5.3, gamma=1.22, MW=19.8, Kv=Cv_to_Kv(90.0), d=0.1, Di=0.2031, FL=None, FLP=0.792, FP=0.98, Fd=0.2959450058448346, t_pipe=0.008, rho_pipe=8000.0, c_pipe=5000.0, rho_air=1.293, c_air=343.0, An=-3.8, Stp=0.2) assert_close(97.65988432967984, ans) ans = control_valve_noise_g_2011(m=1.18, P1=1E6, P2=4.2E5, T1=450, rho=5.3, gamma=1.22, MW=19.8, Kv=Cv_to_Kv(40.0), d=0.2031, Di=0.2031, FL=None, FLP=0.792, FP=0.98, Fd=0.2959450058448346, t_pipe=0.008, rho_pipe=8000.0, c_pipe=5000.0, rho_air=1.293, c_air=343.0, An=-3.8, Stp=0.2) assert_close(94.16189978031449, ans)# should be 94 ans = control_valve_noise_g_2011(m=1.19, P1=1E6, P2=5E4, T1=450, rho=5.3, gamma=1.22, MW=19.8, Kv=Cv_to_Kv(40.0), d=0.2031, Di=0.2031, FL=None, FLP=0.792, FP=0.98, Fd=0.2959450058448346, t_pipe=0.008, rho_pipe=8000.0, c_pipe=5000.0, rho_air=1.293, c_air=343.0, An=-3.8, Stp=0.2) assert_close(ans, 97.48317214321824) ans = control_valve_noise_g_2011(m=0.89, P1=1E6, P2=5E4, T1=450, rho=5.3, gamma=1.22, MW=19.8, Kv=Cv_to_Kv(30.0), d=0.1, Di=0.15, FL=None, FLP=0.792, FP=0.98, Fd=0.2959450058448346, t_pipe=0.008, rho_pipe=8000.0, c_pipe=5000.0, rho_air=1.293, c_air=343.0, An=-3.8, Stp=0.2) assert_close(ans, 93.38835049261132) @pytest.mark.scipy def test_opening_quick_data(): # Add some tolerance to tests after failures on arm64 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=976558 from scipy.interpolate import splrep from fluids.control_valve import opening_quick_tck, opening_quick, frac_CV_quick tck_recalc = splrep(opening_quick, frac_CV_quick, k=3, s=0) [assert_close1d(i, j, atol=1e-10) for i, j in zip(opening_quick_tck[:-1], tck_recalc[:-1])] @pytest.mark.scipy def test_opening_equal_data(): # Add some tolerance to tests after failures on arm64 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=976558 from scipy.interpolate import splrep from fluids.control_valve import opening_equal, frac_CV_equal, opening_equal_tck tck_recalc = splrep(opening_equal, frac_CV_equal, k=3, s=0) [assert_close1d(i, j, atol=1e-10) for i, j in zip(opening_equal_tck[:-1], tck_recalc[:-1])] fluids-1.0.22/tests/test_friction.py0000644000175000017500000004720014302004506016775 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 2018 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from math import log10, log, exp, isnan, pi from fluids.numerics import secant, logspace, linspace, assert_close, assert_close1d, assert_close2d, assert_close3d import fluids.friction from fluids.friction import * import pytest from fluids.friction import _roughness, _Farshad_roughness try: import fuzzywuzzy has_fuzzywuzzy = True except: has_fuzzywuzzy = False try: import mpmath has_mpmath = True except: has_mpmath = False def test_friction_basic(): assert_close(Moody(1E5, 1E-4), 0.01809185666808665) assert_close(Alshul_1952(1E5, 1E-4), 0.018382997825686878) assert_close(Wood_1966(1E5, 1E-4), 0.021587570560090762) assert_close(Churchill_1973(1E5, 1E-4), 0.01846708694482294) assert_close(Eck_1973(1E5, 1E-4), 0.01775666973488564) assert_close(Jain_1976(1E5, 1E-4), 0.018436560312693327) assert_close(Swamee_Jain_1976(1E5, 1E-4), 0.018452424431901808) assert_close(Churchill_1977(1E5, 1E-4), 0.018462624566280075) assert_close(Chen_1979(1E5, 1E-4), 0.018552817507472126) assert_close(Round_1980(1E5, 1E-4), 0.01831475391244354) assert_close(Shacham_1980(1E5, 1E-4), 0.01860641215097828) assert_close(Barr_1981(1E5, 1E-4), 0.01849836032779929) assert_close(Zigrang_Sylvester_1(1E5, 1E-4), 0.018646892425980794) assert_close(Zigrang_Sylvester_2(1E5, 1E-4), 0.01850021312358548) assert_close(Haaland(1E5, 1E-4), 0.018265053014793857) assert_close(Serghides_1(1E5, 1E-4), 0.01851358983180063) assert_close(Serghides_2(1E5, 1E-4), 0.018486377560664482) assert_close(Tsal_1989(1E5, 1E-4), 0.018382997825686878) assert_close(Tsal_1989(1E8, 1E-4), 0.012165854627780102) assert_close(Manadilli_1997(1E5, 1E-4), 0.01856964649724108) assert_close(Romeo_2002(1E5, 1E-4), 0.018530291219676177) assert_close(Sonnad_Goudar_2006(1E5, 1E-4), 0.0185971269898162) assert_close(Rao_Kumar_2007(1E5, 1E-4), 0.01197759334600925) assert_close(Buzzelli_2008(1E5, 1E-4), 0.018513948401365277) assert_close(Avci_Karagoz_2009(1E5, 1E-4), 0.01857058061066499) assert_close(Papaevangelo_2010(1E5, 1E-4), 0.015685600818488177) assert_close(Brkic_2011_1(1E5, 1E-4), 0.01812455874141297) assert_close(Brkic_2011_2(1E5, 1E-4), 0.018619745410688716) assert_close(Fang_2011(1E5, 1E-4), 0.018481390682985432) assert_close(Clamond(1E5, 1E-4), 0.01851386607747165) assert_close(Clamond(1E5, 1E-4, fast=True), 0.01851486771096876) assert_close(friction_laminar(128), 0.5) assert_close(Blasius(10000.0), 0.03164) fd = ft_Crane(.1) assert_close(fd, 0.01628845962146481) assert_close(ft_Crane(1e-5), 604.8402578042682) def test_friction(): assert_close(sum(_roughness.values()), 0.01504508) assert_close(friction_factor(Re=1E5, eD=1E-4), 0.01851386607747165) methods_1 = friction_factor_methods(Re=1E5, eD=1E-4) methods_1.sort() methods_2 = ['Clamond', 'Colebrook', 'Manadilli_1997', 'Haaland', 'Alshul_1952', 'Avci_Karagoz_2009', 'Rao_Kumar_2007', 'Zigrang_Sylvester_2', 'Eck_1973', 'Buzzelli_2008', 'Tsal_1989', 'Papaevangelo_2010', 'Barr_1981', 'Jain_1976', 'Moody', 'Brkic_2011_2', 'Brkic_2011_1', 'Swamee_Jain_1976', 'Wood_1966', 'Shacham_1980', 'Romeo_2002', 'Chen_1979', 'Fang_2011', 'Round_1980', 'Sonnad_Goudar_2006', 'Churchill_1973', 'Churchill_1977', 'Serghides_2', 'Serghides_1', 'Zigrang_Sylvester_1'] methods_2.sort() assert methods_1 == methods_2 assert_close(friction_factor(Re=1E5, eD=1E-4, Darcy=False), 0.01851386607747165/4) assert_close(friction_factor(Re=128), 0.5) assert_close(friction_factor(Re=1E5, eD=0, Method=None), 0.01798977308427384) assert_close(friction_factor(20000, eD=0.0, Method='laminar'), 0.0032) with pytest.raises(ValueError): friction_factor(Re=1E5, eD=0, Method='BADMETHOD') assert ['laminar'] == friction_factor_methods(200, 0, True) assert 31 == len(friction_factor_methods(200, 0, False)) for m in friction_factor_methods(200, 0, False): friction_factor(Re=1E5, eD=1e-6, Method=m) fd = ft_Crane(.1) Di = 0.1 fd_act = Clamond(7.5E6*Di, eD=roughness_Farshad(ID='Carbon steel, bare', D=Di)/Di) assert_close(fd, fd_act, rtol=5e-6) def test_friction_Colebrook(): assert_close(Colebrook(1E5, 1E-4), 0.018513866077471648) # Test the colebrook is the clamond when tol=-1 assert Colebrook(1E5, 1E-4, -1) == Clamond(1E5, 1E-4) # Test the colebrook is the analytical solution when Re < 10 # even when the clamond solution is specified assert Colebrook(1, 1E-4, -1) == Colebrook(1, 1e-4) @pytest.mark.slow @pytest.mark.mpmath @pytest.mark.skipif(not has_mpmath, reason='mpmath is not installed') def test_Colebrook_numerical_mpmath(): # tested at n=500 for both Re and eD Res = logspace(log10(1e-12), log10(1E12), 30) # 1E12 is too large for sympy - it slows down too much eDs = logspace(log10(1e-20), log10(.1), 21) # 1-1e-9 for Re in Res: for eD in eDs: fd_exact = Colebrook(Re, eD, tol=0) fd_numerical = Colebrook(Re, eD, tol=1e-12) assert_close(fd_exact, fd_numerical, rtol=1e-5) @pytest.mark.slow @pytest.mark.mpmath @pytest.mark.skipif(not has_mpmath, reason='mpmath is not installed') def test_Colebrook_scipy_mpmath(): # Faily grueling test - check the lambertw implementations are matching mostly # NOTE the test is to Re = 1E7; at higher Res the numerical solver is almost # always used Res = logspace(log10(1e-12), log10(1e7), 20) # 1E12 is too large for sympy eDs = logspace(log10(1e-20), log10(.1), 19) # 1-1e-9 for Re in Res: for eD in eDs: Re = float(Re) eD = float(eD) fd_exact = Colebrook(Re, eD, tol=0) fd_scipy = Colebrook(Re, eD) assert_close(fd_exact, fd_scipy, rtol=1e-9) @pytest.mark.slow def test_Colebrook_vs_Clamond(): Res = logspace(log10(10), log10(1E50), 40) eDs = logspace(log10(1e-20), log10(1), 40) for Re in Res: for eD in eDs: fd_exact = Colebrook(Re, eD) fd_clamond = Clamond(Re, eD) # Interestingly, matches to rtol=1e-9 vs. numerical solver # But does not have such accuracy compared to mpmath if isnan(fd_exact) or isnan(fd_clamond): continue # older scipy on 3.4 returns a nan sometimes assert_close(fd_exact, fd_clamond, rtol=1e-9) # If rtol is moved to 1E-7, eD can be increased to 1 @pytest.mark.mpmath def test_Colebrook_hard_regimes(): fd_inf_regime = Colebrook(104800000000, 2.55e-08) assert_close(fd_inf_regime, 0.0037751087365339906, rtol=1e-10) def test_one_phase_dP(): dP = one_phase_dP(10.0, 1000., 1E-5, .1, L=1.000) assert_close(dP, 63.43447321097365) def test_one_phase_dP_gravitational(): dP = one_phase_dP_gravitational(angle=90., rho=2.6) assert_close(dP, 25.49729) dP = one_phase_dP_gravitational(angle=90, rho=2.6, L=2.) assert_close(dP, 25.49729*2) def test_one_phase_dP_dz_acceleration(): dP = one_phase_dP_dz_acceleration(m=1., D=0.1, rho=827.1, dv_dP=-1.1E-5, dP_dL=5E5, dA_dL=0.0001) assert_close(dP, 89162.89116373913) @pytest.mark.slow @pytest.mark.thermo @pytest.mark.skip def test_one_phase_dP_dz_acceleration_example(): # This requires thermo! from thermo import Stream, Vm_to_rho from fluids import one_phase_dP, one_phase_dP_acceleration import numpy as np from scipy.integrate import odeint from fluids.numerics import assert_close P0 = 1E5 s = Stream(['nitrogen', 'methane'], T=300, P=P0, zs=[0.5, 0.5], m=1) rho0 = s.rho D = 0.1 def dP_dz(P, L, acc=False): s.flash(P=float(P), Hm=s.Hm) dPf = one_phase_dP(m=s.m, rho=s.rhog, mu=s.rhog, D=D, roughness=0, L=1.0) if acc: G = 4.0*s.m/(pi*D*D) der = s.VolumeGasMixture.property_derivative_P(P=s.P, T=s.T, zs=s.zs, ws=s.ws) der = 1/Vm_to_rho(der, s.MW) factor = G*G*der dP = dPf/(1.0 + factor) return -dP return -dPf ls = linspace(0, .01) dP_noacc = odeint(dP_dz, s.P, ls, args=(False,))[-1] s.flash(P=float(P0), Hm=s.Hm) # Reset the stream object profile = odeint(dP_dz, s.P, ls, args=(True,)) dP_acc = profile[-1] s.flash(P=dP_acc, Hm=s.Hm) rho1 = s.rho dP_acc_numerical = dP_noacc - dP_acc dP_acc_basic = one_phase_dP_acceleration(m=s.m, D=D, rho_o=rho1, rho_i=rho0) assert_close(dP_acc_basic, dP_acc_numerical, rtol=1E-4) del test_one_phase_dP_dz_acceleration_example def test_transmission_factor(): assert_close(transmission_factor(fd=0.0185), 14.704292441876154) assert_close(transmission_factor(F=14.704292441876154), 0.0185) assert_close(transmission_factor(0.0185), 14.704292441876154) # Example in [1]_, lists answer as 12.65 assert_close(transmission_factor(fd=0.025), 12.649110640673516) with pytest.raises(Exception): transmission_factor() def test_roughness_Farshad(): e = roughness_Farshad('Cr13, bare', 0.05) assert_close(e, 5.3141677781137006e-05) e = roughness_Farshad('Cr13, bare') assert_close(e, 5.5e-05) e = roughness_Farshad(coeffs=(0.0021, -1.0055), D=0.05) assert_close(e, 5.3141677781137006e-05) tot = sum([abs(j) for i in _Farshad_roughness.values() for j in i]) assert_close(tot, 7.0729095) with pytest.raises(Exception): roughness_Farshad('BADID', 0.05) @pytest.mark.skipif(not has_fuzzywuzzy, reason='missing fuzzywuzzy') def test_nearest_material_roughness(): hit1 = nearest_material_roughness('condensate pipes', clean=False) assert hit1 == 'Seamless steel tubes, Condensate pipes in open systems or periodically operated steam pipelines' hit2 = nearest_material_roughness('Plastic', clean=True) assert hit2 == 'Plastic coated' @pytest.mark.skipif(not has_fuzzywuzzy, reason='missing fuzzywuzzy') def test_material_roughness(): e1 = material_roughness('Plastic coated') assert_close(e1, 5e-06) e2 = material_roughness('Plastic coated', D=1E-3) assert_close(e2, 5.243618447826409e-06) e3 = material_roughness('Brass') assert_close(e3, 1.52e-06) e4 = material_roughness('condensate pipes') assert_close(e4, 0.0005) ID = 'Old, poor fitting and manufacture; with an overgrown surface' e5 = [material_roughness(ID, optimism=i) for i in (True, False)] assert_close1d(e5, [0.001, 0.004]) def test_von_Karman(): f = von_Karman(1E-4) f_precalc = 0.01197365149564789 assert_close(f, f_precalc) def Prandtl_von_Karman_Nikuradse_numeric(Re): rat = 2.51/Re def to_solve(f): # Good to 1E75, down to 1E-17 v = f**-0.5 return v + 2.0*log10(rat*v) return secant(to_solve, 0.000001) def test_Prandtl_von_Karman_Nikuradse(): Re = 200 assert_close(Prandtl_von_Karman_Nikuradse_numeric(Re), Prandtl_von_Karman_Nikuradse(Re)) def test_Prandtl_von_Karman_Nikuradse_full(): # Tested to a very high number of points fds = [] fds_numeric = [] for Re in logspace(1E-15, 30, 40): fds.append(Prandtl_von_Karman_Nikuradse_numeric(Re)) fds_numeric.append(Prandtl_von_Karman_Nikuradse(Re)) assert_close1d(fds, fds_numeric) def test_helical_laminar_fd_White(): fd = helical_laminar_fd_White(250., .02, .1) assert_close(fd, 0.4063281817830202) assert_close(helical_laminar_fd_White(250, .02, 100), 0.256) def test_helical_laminar_fd_Mori_Nakayama(): fd = helical_laminar_fd_Mori_Nakayama(250., .02, .1) assert_close(fd, 0.4222458285779544) assert_close(4.4969472, helical_laminar_fd_Mori_Nakayama(20, .02, .1)) def test_helical_laminar_fd_Schmidt(): fd = helical_laminar_fd_Schmidt(250., .02, .1) assert_close(fd, 0.47460725672835236) # Test convergence at low curvature assert_close(helical_laminar_fd_Schmidt(250., 1, 1E10), friction_laminar(250)) def test_helical_turbulent_fd_Srinivasan(): fd = helical_turbulent_fd_Srinivasan(1E4, 0.01, .02) assert_close(fd, 0.0570745212117107) def test_helical_turbulent_fd_Schmidt(): fd = helical_turbulent_fd_Schmidt(1E4, 0.01, .02) assert_close(fd, 0.08875550767040916) fd = helical_turbulent_fd_Schmidt(1E4, 0.01, .2) assert_close(fd, 0.04476560991345504) assert_close(friction_factor(1E4), helical_turbulent_fd_Schmidt(1E4, 0.01, 1E11)) fd = helical_turbulent_fd_Schmidt(1E6, 0.01, .02) assert_close(fd, 0.04312877383550924) def test_helical_turbulent_fd_Mori_Nakayama(): # Formula in [1]_ is hard to read, but the powers have been confirmed in # two sources to be 1/5. [3]_ butchers the formula's brackets/power raising, # but is otherwise correct. fd = helical_turbulent_fd_Mori_Nakayama(1E4, 0.01, .2) assert_close(fd, 0.037311802071379796) def test_helical_turbulent_fd_Prasad(): # Checks out, formula in [2]_ is the same as in [1]_! fd = helical_turbulent_fd_Prasad(1E4, 0.01, .2) assert_close(fd, 0.043313098093994626) assert_close(helical_turbulent_fd_Prasad(1E4, 0.01, 1E20), friction_factor(1E4)) def test_helical_turbulent_fd_Czop(): fd = helical_turbulent_fd_Czop(1E4, 0.01, .2) assert_close(fd, 0.02979575250574106) def test_helical_turbulent_fd_Guo(): fd = helical_turbulent_fd_Guo(2E5, 0.01, .2) assert_close(fd, 0.022189161013253147) def test_helical_turbulent_fd_Ju(): fd = helical_turbulent_fd_Ju(1E4, 0.01, .2) assert_close(fd, 0.04945959480770937) assert_close(helical_turbulent_fd_Ju(1E4, 0.01, 1E80), friction_factor(1E4)) def test_helical_turbulent_fd_Mandal_Nigam(): fd = helical_turbulent_fd_Mandal_Nigam(1E4, 0.01, .2) assert_close(fd, 0.03831658117115902) assert_close(helical_turbulent_fd_Mandal_Nigam(1E4, 0.01, 1E80), friction_factor(1E4)) def test_helical_transition_Re_Seth_Stahel(): # Read the original assert_close(helical_transition_Re_Seth_Stahel(1, 7.), 7645.0599897402535) assert_close(helical_transition_Re_Seth_Stahel(1, 1E20), 1900) def test_helical_transition_Re_Ito(): assert_close(helical_transition_Re_Ito(1, 7.), 10729.972844697186) def test_helical_transition_Re_Kubair_Kuloor(): assert_close(helical_transition_Re_Kubair_Kuloor(1, 7), 8625.986927588123) def test_helical_transition_Re_Kutateladze_Borishanskii(): assert_close(helical_transition_Re_Kutateladze_Borishanskii(1, 7.), 7121.143774574058) assert_close(helical_transition_Re_Kutateladze_Borishanskii(1, 1E20), 2300) def test_helical_transition_Re_Schmidt(): assert_close(helical_transition_Re_Schmidt(1, 7.), 10540.094061770815) assert_close(helical_transition_Re_Schmidt(1, 1E20), 2300) def test_helical_transition_Re_Srinivasan(): assert_close(helical_transition_Re_Srinivasan(1, 7.), 11624.704719832524,) assert_close(helical_transition_Re_Srinivasan(1, 1E20), 2100) def test_friction_factor_curved(): fd = friction_factor_curved(2E4, 0.01, .02) assert_close(fd, 0.050134646621603024) fd = friction_factor_curved(250, .02, .1) assert_close(fd, 0.47460725672835236) fd_transition = [friction_factor_curved(i, 0.01, .02) for i in [16779, 16780]] assert_close1d(fd_transition, [0.03323676794260526, 0.057221855744623344]) with pytest.raises(Exception): friction_factor_curved(16779, 0.01, .02, Method='BADMETHOD') with pytest.raises(Exception): friction_factor_curved(16779, 0.01, .02, Rec_method='BADMETHOD') fd_rough_false = friction_factor_curved(20000, 0.01, .02, roughness=.0001, turbulent_method='Guo') assert_close(fd_rough_false, 0.1014240343662085) methods = friction_factor_curved_methods(20000, 0.01, .02, check_ranges=True) assert sorted(methods) == sorted(['Guo','Ju','Schmidt turbulent','Prasad','Mandel Nigam','Mori Nakayama turbulent','Czop', 'Srinivasan turbulent']) methods = friction_factor_curved_methods(2000, 0.01, .02, check_ranges=True) assert sorted(methods) == sorted(['White', 'Schmidt laminar', 'Mori Nakayama laminar']) assert 'Schmidt turbulent' in friction_factor_curved_methods(Re=1E5, Di=0.02, Dc=0.5) assert 11 == len(friction_factor_curved_methods(Re=1E5, Di=0.02, Dc=0.5, check_ranges=False)) for m in friction_factor_curved_methods(Re=1E5, Di=0.02, Dc=0.5, check_ranges=False): friction_factor_curved(2000, 0.01, .02, Method=m) # Test the Fanning case fd = friction_factor_curved(2E4, 0.01, .02, Darcy=False) assert_close(fd, 0.012533661655400756) for m in ['Seth Stahel', 'Ito', 'Kubair Kuloor', 'Kutateladze Borishanskii', 'Schmidt', 'Srinivasan']: helical_Re_crit(Di=0.02, Dc=0.5, Method=m) def test_friction_plate(): fd = friction_plate_Martin_1999(Re=20000., plate_enlargement_factor=1.15) assert_close(fd, 2.284018089834134) fd = friction_plate_Martin_1999(Re=1999., plate_enlargement_factor=1.15) assert_close(fd, 2.749383588479863) fd = friction_plate_Martin_VDI(Re=20000., plate_enlargement_factor=1.15) assert_close(fd, 2.702534119024076) fd = friction_plate_Martin_VDI(Re=1999., plate_enlargement_factor=1.15) assert_close(fd, 3.294294334690556) fd = friction_plate_Muley_Manglik(Re=2000., chevron_angle=45., plate_enlargement_factor=1.2) assert_close(fd, 1.0880870804075413) def test_friction_Kumar(): from fluids.friction import Kumar_beta_list, Kumar_fd_Res fd = friction_plate_Kumar(2000, 30) assert_close(fd, 2.9760669055634517) all_ans_expect = [[[22.22222222222222, 18.900854099814858, 5.181226661414687, 5.139730745446174], [20.88888888888889, 17.09090909090909, 3.656954441625244, 3.609575756782771]], [[13.428571428571427, 12.000171923243482, 1.7788367041690634, 1.7788497785371564], [9.714285714285714, 8.5, 1.2332865464612235, 1.2320492987599356]], [[7.157894736842104, 6.590102034105372, 1.2332865464612235, 1.2320492987599356], [5.052631578947368, 4.571428571428571, 0.9576862861589914, 0.9547729646969146]], [[2.4615384615384617, 2.374448634025773, 0.8393834232628009, 0.8379103279437352], [2.4615384615384617, 2.3414634146341466, 0.7519331759748705, 0.7502394735017442]], [[1.9591836734693877, 1.9015330284979595, 0.6797898512309091, 0.6799788644298855], [1.9591836734693877, 1.9015330284979595, 0.6797898512309091, 0.6799788644298855]]] all_ans = [] for i, beta_main in enumerate(Kumar_beta_list): beta_ans = [] for beta in (beta_main-1, beta_main+1): Re_ans = [] for Re_main in Kumar_fd_Res[i]: for Re in [Re_main-1, Re_main+1]: ans = friction_plate_Kumar(Re, beta) Re_ans.append(ans) beta_ans.append(Re_ans) all_ans.append(beta_ans) assert_close3d(all_ans, all_ans_expect) fluids-1.0.22/tests/spa/0000755000175000017500000000000014302004506014327 5ustar nileshnileshfluids-1.0.22/tests/spa/test_spa.py0000644000175000017500000004535114302004506016533 0ustar nileshnilesh# -*- coding: utf-8 -*- """ test_spa unit test suite from pvlib =================================== Vendorized version from: https://github.com/pvlib/pvlib-python/ The rational for not including this library as a strict dependency is to avoid including a dependency on pandas, keeping load time low, and PyPy compatibility . .. moduleauthor :: Tony Lorenzo .. moduleauthor :: Will Holmgren .. moduleauthor :: Volker Beutner < VolkerBeu@gmail.com > Some tests were changed and added as well. The copyright notice (BSD-3 clause) is as follows: BSD 3-Clause License Copyright (c) 2013-2018, Sandia National Laboratories and pvlib python Development Team All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the {organization} nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """ import os import datetime as dt try: from importlib import reload except ImportError: try: from imp import reload except ImportError: pass import numpy as np from numpy.testing import assert_almost_equal, assert_allclose import pandas as pd import unittest import pytest try: from numba import __version__ as numba_version numba_version_int = int(numba_version.split('.')[0] + numba_version.split('.')[1]) except ImportError: numba_version_int = 0 except: numba_version_int = -1 from fluids.optional import spa times = (pd.date_range('2003-10-17 12:30:30', periods=1, freq='D') .tz_localize('MST')) unixtimes = np.array(times.tz_convert('UTC').view(np.int64)*1.0/10**9) unixtimes = float(np.array(times.tz_convert('UTC').view(np.int64)*1.0/10**9)[0]) lat = 39.742476 lon = -105.1786 elev = 1830.14 pressure = 820 temp = 11 delta_t = 67.0 atmos_refract= 0.5667 JD = 2452930.312847 JC = 0.0379277986858 JDE = 2452930.313623 JCE = 0.037927819916852 JME = 0.003792781991685 L = 24.0182616917 B = -0.0001011219 R = 0.9965422974 Theta = 204.0182616917 beta = 0.0001011219 X0 = 17185.861179 X1 = 1722.893218 X2 = 18234.075703 X3 = 18420.071012 X4 = 51.686951 dPsi = -0.00399840 dEpsilon = 0.00166657 epsilon0 = 84379.672625 epsilon = 23.440465 dTau = -0.005711 lamd = 204.0085519281 v0 = 318.515579 v = 318.511910 alpha = 202.227408 delta = -9.31434 H = 11.10590 xi = 0.002451 dAlpha = -0.000369 alpha_prime = 202.22704 delta_prime = -9.316179 H_prime = 11.10627 e0 = 39.872046 de = 0.016332 e = 39.888378 theta = 50.11162 theta0 = 90 - e0 Gamma = 14.340241 Phi = 194.340241 year = 1985 month = 2 year_array = np.array([-499, 500, 1000, 1500, 1800, 1900, 1950, 1970, 1985, 1990, 2000, 2005]) month_array = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]) dt_actual = 54.413442486 dt_actual_array = np.array([1.7184831e+04, 5.7088051e+03, 1.5730419e+03, 1.9801820e+02, 1.3596506e+01, -2.1171894e+00, 2.9289261e+01, 4.0824887e+01, 5.4724581e+01, 5.7426651e+01, 6.4108015e+01, 6.5038015e+01]) mix_year_array = np.full((10), year) mix_month_array = np.full((10), month) mix_year_actual = np.full((10), dt_actual) mix_month_actual = mix_year_actual class SpaBase(object): """Test functions common to numpy and numba spa""" def test_julian_day_dt(self): dt = times.tz_convert('UTC')[0] year = dt.year month = dt.month day = dt.day hour = dt.hour minute = dt.minute second = dt.second microsecond = dt.microsecond assert_almost_equal(JD, self.spa.julian_day_dt(year, month, day, hour, minute, second, microsecond), 6) def test_julian_ephemeris_day(self): assert_almost_equal(JDE, self.spa.julian_ephemeris_day(JD, delta_t), 5) def test_julian_century(self): assert_almost_equal(JC, self.spa.julian_century(JD), 6) def test_julian_ephemeris_century(self): assert_almost_equal(JCE, self.spa.julian_ephemeris_century(JDE), 10) def test_julian_ephemeris_millenium(self): assert_almost_equal(JME, self.spa.julian_ephemeris_millennium(JCE), 10) def test_heliocentric_longitude(self): assert_almost_equal(L, self.spa.heliocentric_longitude(JME), 6) def test_heliocentric_latitude(self): assert_almost_equal(B, self.spa.heliocentric_latitude(JME), 6) def test_heliocentric_radius_vector(self): assert_almost_equal(R, self.spa.heliocentric_radius_vector(JME), 6) def test_geocentric_longitude(self): assert_almost_equal(Theta, self.spa.geocentric_longitude(L), 6) def test_geocentric_latitude(self): assert_almost_equal(beta, self.spa.geocentric_latitude(B), 6) def test_mean_elongation(self): assert_almost_equal(X0, self.spa.mean_elongation(JCE), 5) def test_mean_anomaly_sun(self): assert_almost_equal(X1, self.spa.mean_anomaly_sun(JCE), 5) def test_mean_anomaly_moon(self): assert_almost_equal(X2, self.spa.mean_anomaly_moon(JCE), 5) def test_moon_argument_latitude(self): assert_almost_equal(X3, self.spa.moon_argument_latitude(JCE), 5) def test_moon_ascending_longitude(self): assert_almost_equal(X4, self.spa.moon_ascending_longitude(JCE), 6) def test_longitude_nutation(self): assert_almost_equal(dPsi, self.spa.longitude_nutation(JCE, X0, X1, X2, X3, X4), 6) def test_obliquity_nutation(self): assert_almost_equal(dEpsilon, self.spa.obliquity_nutation(JCE, X0, X1, X2, X3, X4), 6) def test_mean_ecliptic_obliquity(self): assert_almost_equal(epsilon0, self.spa.mean_ecliptic_obliquity(JME), 6) def test_true_ecliptic_obliquity(self): assert_almost_equal(epsilon, self.spa.true_ecliptic_obliquity( epsilon0, dEpsilon), 6) def test_aberration_correction(self): assert_almost_equal(dTau, self.spa.aberration_correction(R), 6) def test_apparent_sun_longitude(self): assert_almost_equal(lamd, self.spa.apparent_sun_longitude( Theta, dPsi, dTau), 6) def test_mean_sidereal_time(self): assert_almost_equal(v0, self.spa.mean_sidereal_time(JD, JC), 3) def test_apparent_sidereal_time(self): assert_almost_equal(v, self.spa.apparent_sidereal_time( v0, dPsi, epsilon), 5) def test_geocentric_sun_right_ascension(self): assert_almost_equal(alpha, self.spa.geocentric_sun_right_ascension( lamd, epsilon, beta), 6) def test_geocentric_sun_declination(self): assert_almost_equal(delta, self.spa.geocentric_sun_declination( lamd, epsilon, beta), 6) def test_local_hour_angle(self): assert_almost_equal(H, self.spa.local_hour_angle(v, lon, alpha), 4) def test_equatorial_horizontal_parallax(self): assert_almost_equal(xi, self.spa.equatorial_horizontal_parallax(R), 6) def test_parallax_sun_right_ascension(self): u = self.spa.uterm(lat) x = self.spa.xterm(u, lat, elev) y = self.spa.yterm(u, lat, elev) assert_almost_equal(dAlpha, self.spa.parallax_sun_right_ascension( x, xi, H, delta), 4) def test_topocentric_sun_right_ascension(self): assert_almost_equal(alpha_prime, self.spa.topocentric_sun_right_ascension( alpha, dAlpha), 5) def test_topocentric_sun_declination(self): u = self.spa.uterm(lat) x = self.spa.xterm(u, lat, elev) y = self.spa.yterm(u, lat, elev) assert_almost_equal(delta_prime, self.spa.topocentric_sun_declination( delta, x, y, xi, dAlpha,H), 5) def test_topocentric_local_hour_angle(self): assert_almost_equal(H_prime, self.spa.topocentric_local_hour_angle( H, dAlpha), 5) def test_topocentric_elevation_angle_without_atmosphere(self): assert_almost_equal( e0, self.spa.topocentric_elevation_angle_without_atmosphere( lat, delta_prime, H_prime), 6) def test_atmospheric_refraction_correction(self): assert_almost_equal(de, self.spa.atmospheric_refraction_correction( pressure, temp, e0, atmos_refract), 6) def test_topocentric_elevation_angle(self): assert_almost_equal(e, self.spa.topocentric_elevation_angle(e0, de), 6) def test_topocentric_zenith_angle(self): assert_almost_equal(theta, self.spa.topocentric_zenith_angle(e), 5) def test_topocentric_astronomers_azimuth(self): assert_almost_equal(Gamma, self.spa.topocentric_astronomers_azimuth( H_prime, delta_prime, lat), 5) def test_topocentric_azimuth_angle(self): assert_almost_equal(Phi, self.spa.topocentric_azimuth_angle(Gamma), 5) def test_solar_position(self): assert_almost_equal(np.array([theta, theta0, e, e0, Phi]), self.spa.solar_position(unixtimes, lat, lon, elev, pressure, temp, delta_t, atmos_refract)[:-1], 5) assert_almost_equal(np.array([v, alpha, delta]), self.spa.solar_position(unixtimes, lat, lon, elev, pressure, temp, delta_t, atmos_refract, sst=True)[:3], 5) def test_equation_of_time(self): eot = 14.64 M = self.spa.sun_mean_longitude(JME) assert_almost_equal(eot, self.spa.equation_of_time( M, alpha, dPsi, epsilon), 2) def test_transit_sunrise_sunset(self): # tests at greenwich times = pd.DatetimeIndex([dt.datetime(1996, 7, 5, 0), dt.datetime(2004, 12, 4, 0)] ).tz_localize('UTC').view(np.int64)*1.0/10**9 sunrise = pd.DatetimeIndex([dt.datetime(1996, 7, 5, 7, 8, 15), dt.datetime(2004, 12, 4, 4, 38, 57)] ).tz_localize('UTC').view(np.int64)*1.0/10**9 sunset = pd.DatetimeIndex([dt.datetime(1996, 7, 5, 17, 1, 4), dt.datetime(2004, 12, 4, 19, 2, 2)] ).tz_localize('UTC').view(np.int64)*1.0/10**9 times = np.array(times) sunrise = np.array(sunrise) sunset = np.array(sunset) result = [self.spa.transit_sunrise_sunset(t, -35.0, 0.0, 64.0) for t in times] for i in range(2): assert_almost_equal(sunrise[i]/1e3, result[i][1]/1e3, 3) assert_almost_equal(sunset[i]/1e3, result[i][2]/1e3, 3) times = pd.DatetimeIndex([dt.datetime(1994, 1, 2),] ).tz_localize('UTC').view(np.int64)*1.0/10**9 sunset = pd.DatetimeIndex([dt.datetime(1994, 1, 2, 16, 59, 55),] ).tz_localize('UTC').view(np.int64)*1.0/10**9 sunrise = pd.DatetimeIndex([dt.datetime(1994, 1, 2, 7, 8, 12),] ).tz_localize('UTC').view(np.int64)*1.0/10**9 times = np.array(times) sunrise = np.array(sunrise) sunset = np.array(sunset) result = [self.spa.transit_sunrise_sunset(t, 35.0, 0.0, 64.0) for t in times] for i in range(1): assert_almost_equal(sunrise[i]/1e3, result[i][1]/1e3, 3) assert_almost_equal(sunset[i]/1e3, result[i][2]/1e3, 3) # tests from USNO # Golden times = pd.DatetimeIndex([dt.datetime(2015, 1, 2), dt.datetime(2015, 4, 2), dt.datetime(2015, 8, 2), dt.datetime(2015, 12, 2),], ).tz_localize('UTC').view(np.int64)*1.0/10**9 sunrise = pd.DatetimeIndex([dt.datetime(2015, 1, 2, 7, 19), dt.datetime(2015, 4, 2, 5, 43), dt.datetime(2015, 8, 2, 5, 1), dt.datetime(2015, 12, 2, 7, 1),], ).tz_localize('MST').view(np.int64)*1.0/10**9 sunset = pd.DatetimeIndex([dt.datetime(2015, 1, 2, 16, 49), dt.datetime(2015, 4, 2, 18, 24), dt.datetime(2015, 8, 2, 19, 10), dt.datetime(2015, 12, 2, 16, 38),], ).tz_localize('MST').view(np.int64)*1.0/10**9 times = np.array(times) sunrise = np.array(sunrise) sunset = np.array(sunset) result = [self.spa.transit_sunrise_sunset(t, 39.0, -105.0, 64.0) for t in times] for i in range(4): assert_almost_equal(sunrise[i]/1e3, result[i][1]/1e3, 1) assert_almost_equal(sunset[i]/1e3, result[i][2]/1e3, 1) # Beijing times = pd.DatetimeIndex([dt.datetime(2015, 1, 2), dt.datetime(2015, 4, 2), dt.datetime(2015, 8, 2), dt.datetime(2015, 12, 2),], ).tz_localize('UTC').view(np.int64)*1.0/10**9 sunrise = pd.DatetimeIndex([dt.datetime(2015, 1, 2, 7, 36), dt.datetime(2015, 4, 2, 5, 58), dt.datetime(2015, 8, 2, 5, 13), dt.datetime(2015, 12, 2, 7, 17),], ).tz_localize('Asia/Shanghai' ).view(np.int64)*1.0/10**9 sunset = pd.DatetimeIndex([dt.datetime(2015, 1, 2, 17, 0), dt.datetime(2015, 4, 2, 18, 39), dt.datetime(2015, 8, 2, 19, 28), dt.datetime(2015, 12, 2, 16, 50),], ).tz_localize('Asia/Shanghai' ).view(np.int64)*1.0/10**9 times = np.array(times) sunrise = np.array(sunrise) sunset = np.array(sunset) result = [self.spa.transit_sunrise_sunset(t, 39.917, 116.383, 64.0) for t in times] for i in range(4): assert_almost_equal(sunrise[i]/1e3, result[i][1]/1e3, 1) assert_almost_equal(sunset[i]/1e3, result[i][2]/1e3, 1) def test_earthsun_distance(self): times = (pd.date_range('2003-10-17 12:30:30', periods=1, freq='D') .tz_localize('MST')) unixtimes = times.tz_convert('UTC').view(np.int64)*1.0/10**9 unixtimes = float(np.array(unixtimes)[0]) result = self.spa.earthsun_distance(unixtimes, 64.0) assert_almost_equal(R, result, 6) def test_calculate_deltat(self): result_mix_year = [self.spa.calculate_deltat(t, month) for t in mix_year_array] assert_almost_equal(mix_year_actual, result_mix_year) result_mix_month = self.spa.calculate_deltat(year, mix_month_array) assert_almost_equal(mix_month_actual, result_mix_month) result_array = [self.spa.calculate_deltat(t, m) for t, m in zip(year_array, month_array)] assert_almost_equal(dt_actual_array, result_array, 3) result_scalar = self.spa.calculate_deltat(year,month) assert_almost_equal(dt_actual, result_scalar) class NumpySpaTest(unittest.TestCase, SpaBase): """Import spa without compiling to numba then run tests""" @classmethod def setUpClass(self): from fluids.optional import spa spa = reload(spa) self.spa = spa @classmethod def tearDownClass(self): pass def test_julian_day(self): assert_almost_equal(JD, self.spa.julian_day(unixtimes), 6) @pytest.mark.skipif(numba_version_int < 17, reason='Numba not installed or version not >= 0.17.0') class NumbaSpaTest(unittest.TestCase, SpaBase): """Import spa, compiling to numba, and run tests""" @classmethod def setUpClass(self): if numba_version_int >= 17: from fluids.optional import spa spa = reload(spa) self.spa = spa @classmethod def tearDownClass(self): pass def test_julian_day(self): assert_almost_equal(JD, self.spa.julian_day(unixtimes), 6) def test_solar_position_singlethreaded(self): assert_almost_equal( np.array([theta, theta0, e, e0, Phi]), self.spa.solar_position( unixtimes, lat, lon, elev, pressure, temp, delta_t, atmos_refract)[:-1], 5) assert_almost_equal( np.array([v, alpha, delta]), self.spa.solar_position( unixtimes, lat, lon, elev, pressure, temp, delta_t, atmos_refract, sst=True)[:3], 5) try: import astropy except: astropy = None @pytest.mark.skipif(astropy is None, reason='Astropy is not installed') def test_deltat_astropy(): # Can't do a full range of tests because astropy doesn't have # answers before 1960, after 1999 in this version from astropy.time import Time from datetime import datetime def delta_t_astropy(dt): t = Time(dt, scale='utc') return -(dt - t.tt.value).total_seconds() # years = range(1, 3000, 100) + [3000] years = range(1960, 1999, 1) months = range(1, 13) for year in years: for month in months: delta_t_pvlib = spa.calculate_deltat(year, month) dt = datetime(year, month, 1) delta_t_external = delta_t_astropy(dt) assert_allclose(delta_t_pvlib, delta_t_external, atol=.5, rtol=.01) #suite = unittest.TestSuite() #suite.addTest(NumpySpaTest("testItIsHot")) #runner = unittest.TextTestRunner() #runner.run(suite) # #NumpySpaTest.test_calculate_deltat() if __name__ == '__main__': unittest.main() fluids-1.0.22/tests/particle_size_distribution/0000755000175000017500000000000014302004506021200 5ustar nileshnileshfluids-1.0.22/tests/particle_size_distribution/unsoda_distributions_20140206.csv0000644000175000017500000064071214302004506027160 0ustar nileshnileshcode particle_size particle_fraction 1010 2.0000000000000000e+00 2.9999999999999999e-02 1010 5.0000000000000000e+01 1.7000000000000001e-01 1010 1.0600000000000000e+02 2.7900000000000003e-01 1010 2.5000000000000000e+02 7.3499999999999999e-01 1010 5.0000000000000000e+02 9.2100000000000004e-01 1010 1.0000000000000000e+03 9.9399999999999999e-01 1010 2.0000000000000000e+03 1.0020000000000000e+00 1011 2.0000000000000000e+00 2.9999999999999999e-02 1011 5.0000000000000000e+01 1.7499999999999999e-01 1011 1.0600000000000000e+02 2.9499999999999998e-01 1011 2.5000000000000000e+02 7.5700000000000001e-01 1011 5.0000000000000000e+02 9.2700000000000005e-01 1011 1.0000000000000000e+03 9.9500000000000000e-01 1011 2.0000000000000000e+03 1.0040000000000000e+00 1012 2.0000000000000000e+00 2.5000000000000001e-02 1012 5.0000000000000000e+01 1.7499999999999999e-01 1012 1.0600000000000000e+02 2.8499999999999998e-01 1012 2.5000000000000000e+02 7.3399999999999999e-01 1012 5.0000000000000000e+02 9.0500000000000003e-01 1012 1.0000000000000000e+03 9.8599999999999999e-01 1012 2.0000000000000000e+03 1.0020000000000000e+00 1013 2.0000000000000000e+00 2.0000000000000000e-02 1013 5.0000000000000000e+01 1.4999999999999999e-01 1013 1.0600000000000000e+02 2.8599999999999998e-01 1013 2.5000000000000000e+02 7.5800000000000001e-01 1013 5.0000000000000000e+02 9.2000000000000004e-01 1013 1.0000000000000000e+03 9.9099999999999999e-01 1013 2.0000000000000000e+03 1.0020000000000000e+00 1014 2.0000000000000000e+00 2.0000000000000000e-02 1014 5.0000000000000000e+01 1.3000000000000000e-01 1014 1.0600000000000000e+02 2.5600000000000001e-01 1014 2.5000000000000000e+02 7.4299999999999999e-01 1014 5.0000000000000000e+02 9.1600000000000004e-01 1014 1.0000000000000000e+03 9.8499999999999999e-01 1014 2.0000000000000000e+03 9.9700000000000000e-01 1015 2.0000000000000000e+00 5.9999999999999998e-02 1015 5.0000000000000000e+01 1.7999999999999999e-01 1015 1.0600000000000000e+02 3.0700000000000000e-01 1015 2.5000000000000000e+02 7.5000000000000000e-01 1015 5.0000000000000000e+02 9.1700000000000004e-01 1015 1.0000000000000000e+03 9.8299999999999998e-01 1015 2.0000000000000000e+03 9.8999999999999999e-01 1020 2.0000000000000000e+00 4.4999999999999998e-02 1020 5.0000000000000000e+01 1.0000000000000001e-01 1020 1.0000000000000000e+02 1.2100000000000000e-01 1020 2.5000000000000000e+02 1.7299999999999999e-01 1020 5.0000000000000000e+02 2.0000000000000001e-01 1020 1.0000000000000000e+03 8.0400000000000005e-01 1020 2.0000000000000000e+03 9.9700000000000000e-01 1021 2.0000000000000000e+00 5.9999999999999998e-02 1021 5.0000000000000000e+01 1.1000000000000000e-01 1021 1.0000000000000000e+02 1.4999999999999999e-01 1021 2.5000000000000000e+02 2.4700000000000000e-01 1021 5.0000000000000000e+02 2.8000000000000003e-01 1021 1.0000000000000000e+03 9.0800000000000003e-01 1021 2.0000000000000000e+03 1.0029999999999999e+00 1022 2.0000000000000000e+00 4.2999999999999997e-02 1022 5.0000000000000000e+01 1.0700000000000000e-01 1022 1.0000000000000000e+02 1.3300000000000001e-01 1022 2.5000000000000000e+02 2.0399999999999999e-01 1022 5.0000000000000000e+02 2.3699999999999999e-01 1022 1.0000000000000000e+03 8.6199999999999999e-01 1022 2.0000000000000000e+03 1.0029999999999999e+00 1023 2.0000000000000000e+00 2.0000000000000000e-02 1023 5.0000000000000000e+01 5.9999999999999998e-02 1023 1.0000000000000000e+02 8.0000000000000002e-02 1023 2.5000000000000000e+02 1.6300000000000001e-01 1023 5.0000000000000000e+02 2.1600000000000000e-01 1023 1.0000000000000000e+03 7.7100000000000002e-01 1023 2.0000000000000000e+03 1.0020000000000000e+00 1024 2.0000000000000000e+00 2.0000000000000000e-02 1024 5.0000000000000000e+01 5.0000000000000003e-02 1024 1.0000000000000000e+02 8.0000000000000002e-02 1024 2.5000000000000000e+02 2.1500000000000000e-01 1024 5.0000000000000000e+02 2.7700000000000002e-01 1024 1.0000000000000000e+03 8.1999999999999995e-01 1024 2.0000000000000000e+03 1.0060000000000000e+00 1030 2.0000000000000000e+00 7.2999999999999995e-02 1030 5.0000000000000000e+01 2.0999999999999999e-01 1030 1.0000000000000000e+02 3.0299999999999999e-01 1030 2.5000000000000000e+02 6.8500000000000005e-01 1030 5.0000000000000000e+02 9.1400000000000003e-01 1030 1.0000000000000000e+03 9.9299999999999999e-01 1030 2.0000000000000000e+03 1.0000000000000000e+00 1031 2.0000000000000000e+00 7.8000000000000000e-02 1031 5.0000000000000000e+01 2.0999999999999999e-01 1031 1.0000000000000000e+02 3.1900000000000001e-01 1031 2.5000000000000000e+02 6.9199999999999995e-01 1031 5.0000000000000000e+02 9.0700000000000003e-01 1031 1.0000000000000000e+03 9.4599999999999995e-01 1031 2.0000000000000000e+03 9.4999999999999996e-01 1032 2.0000000000000000e+00 7.8000000000000000e-02 1032 5.0000000000000000e+01 2.0000000000000001e-01 1032 1.0000000000000000e+02 3.0700000000000000e-01 1032 2.5000000000000000e+02 6.7900000000000005e-01 1032 5.0000000000000000e+02 8.9000000000000001e-01 1032 1.0000000000000000e+03 8.9600000000000002e-01 1032 2.0000000000000000e+03 9.1000000000000003e-01 1040 1041 2.0000000000000000e+00 2.0000000000000000e-02 1041 5.0000000000000000e+01 7.0000000000000007e-02 1041 1.2500000000000000e+02 2.3200000000000001e-01 1041 2.5000000000000000e+02 7.6000000000000001e-01 1041 5.0000000000000000e+02 9.2500000000000004e-01 1041 1.0000000000000000e+03 9.8799999999999999e-01 1041 2.0000000000000000e+03 9.9199999999999999e-01 1042 2.0000000000000000e+00 2.9999999999999999e-02 1042 5.0000000000000000e+01 4.0000000000000001e-02 1042 1.2500000000000000e+02 2.0000000000000001e-01 1042 2.5000000000000000e+02 7.5600000000000001e-01 1042 5.0000000000000000e+02 9.1200000000000003e-01 1042 1.0000000000000000e+03 9.6699999999999997e-01 1042 2.0000000000000000e+03 9.7199999999999998e-01 1043 2.0000000000000000e+00 2.9999999999999999e-02 1043 5.0000000000000000e+01 7.0000000000000007e-02 1043 1.2500000000000000e+02 2.2500000000000001e-01 1043 2.5000000000000000e+02 7.7200000000000002e-01 1043 5.0000000000000000e+02 9.5199999999999996e-01 1043 1.0000000000000000e+03 1.0169999999999999e+00 1043 2.0000000000000000e+03 1.0229999999999999e+00 1050 2.0000000000000000e+00 3.2000000000000001e-02 1050 5.0000000000000000e+01 7.8000000000000000e-02 1050 1.2500000000000000e+02 1.1700000000000001e-01 1050 2.5000000000000000e+02 2.1600000000000000e-01 1050 5.0000000000000000e+02 5.7199999999999995e-01 1050 1.0000000000000000e+03 9.6499999999999997e-01 1050 2.0000000000000000e+03 1.0000000000000000e+00 1051 2.0000000000000000e+00 8.2000000000000003e-02 1051 5.0000000000000000e+01 1.2900000000000000e-01 1051 1.2500000000000000e+02 1.4899999999999999e-01 1051 2.5000000000000000e+02 2.1800000000000000e-01 1051 5.0000000000000000e+02 5.1000000000000001e-01 1051 1.0000000000000000e+03 9.4999999999999996e-01 1051 2.0000000000000000e+03 1.0000000000000000e+00 1052 2.0000000000000000e+00 6.5000000000000002e-02 1052 5.0000000000000000e+01 9.0999999999999998e-02 1052 1.2500000000000000e+02 1.1300000000000000e-01 1052 2.5000000000000000e+02 1.7499999999999999e-01 1052 5.0000000000000000e+02 4.4900000000000001e-01 1052 1.0000000000000000e+03 9.1200000000000003e-01 1052 2.0000000000000000e+03 1.0009999999999999e+00 1053 2.0000000000000000e+00 3.6999999999999998e-02 1053 5.0000000000000000e+01 4.9000000000000002e-02 1053 1.2500000000000000e+02 5.8000000000000003e-02 1053 2.5000000000000000e+02 1.0500000000000000e-01 1053 5.0000000000000000e+02 3.6599999999999999e-01 1053 1.0000000000000000e+03 8.8600000000000001e-01 1053 2.0000000000000000e+03 1.0000000000000000e+00 1054 2.0000000000000000e+00 2.5000000000000001e-02 1054 5.0000000000000000e+01 2.8000000000000001e-02 1054 1.2500000000000000e+02 3.2000000000000001e-02 1054 2.5000000000000000e+02 6.5000000000000002e-02 1054 5.0000000000000000e+02 3.0199999999999999e-01 1054 1.0000000000000000e+03 8.5899999999999999e-01 1054 2.0000000000000000e+03 1.0000000000000000e+00 1060 2.0000000000000000e+00 2.0000000000000000e-02 1060 5.0000000000000000e+01 7.0000000000000007e-02 1060 1.2500000000000000e+02 1.1200000000000000e-01 1060 2.5000000000000000e+02 3.4000000000000002e-01 1060 5.0000000000000000e+02 7.2499999999999998e-01 1060 1.0000000000000000e+03 9.7199999999999998e-01 1060 2.0000000000000000e+03 1.0000000000000000e+00 1061 2.0000000000000000e+00 4.0000000000000001e-02 1061 5.0000000000000000e+01 8.9999999999999997e-02 1061 1.2500000000000000e+02 1.2800000000000000e-01 1061 2.5000000000000000e+02 3.4000000000000002e-01 1061 5.0000000000000000e+02 7.0599999999999996e-01 1061 1.0000000000000000e+03 9.6199999999999997e-01 1061 2.0000000000000000e+03 1.0000000000000000e+00 1062 2.0000000000000000e+00 7.0000000000000007e-02 1062 5.0000000000000000e+01 1.2000000000000000e-01 1062 1.2500000000000000e+02 1.4699999999999999e-01 1062 2.5000000000000000e+02 3.2700000000000001e-01 1062 5.0000000000000000e+02 6.7900000000000005e-01 1062 1.0000000000000000e+03 9.5099999999999996e-01 1062 2.0000000000000000e+03 1.0000000000000000e+00 1063 2.0000000000000000e+00 4.0000000000000001e-02 1063 5.0000000000000000e+01 7.0000000000000007e-02 1063 1.2500000000000000e+02 9.8000000000000004e-02 1063 2.5000000000000000e+02 3.0700000000000000e-01 1063 5.0000000000000000e+02 6.4700000000000002e-01 1063 1.0000000000000000e+03 9.1300000000000003e-01 1063 2.0000000000000000e+03 1.0000000000000000e+00 1070 2.0000000000000000e+00 2.1999999999999999e-02 1070 5.0000000000000000e+01 7.1999999999999995e-02 1070 1.2500000000000000e+02 1.4000000000000001e-01 1070 2.5000000000000000e+02 3.5999999999999999e-01 1070 5.0000000000000000e+02 5.9899999999999998e-01 1070 1.0000000000000000e+03 8.8200000000000001e-01 1070 2.0000000000000000e+03 1.0000000000000000e+00 1071 2.0000000000000000e+00 4.7000000000000000e-02 1071 5.0000000000000000e+01 8.2000000000000003e-02 1071 1.2500000000000000e+02 1.1899999999999999e-01 1071 2.5000000000000000e+02 2.9699999999999999e-01 1071 5.0000000000000000e+02 5.3000000000000003e-01 1071 1.0000000000000000e+03 8.3999999999999997e-01 1071 2.0000000000000000e+03 1.0000000000000000e+00 1072 2.0000000000000000e+00 5.2999999999999999e-02 1072 5.0000000000000000e+01 7.4999999999999997e-02 1072 1.2500000000000000e+02 1.0900000000000000e-01 1072 2.5000000000000000e+02 2.8599999999999998e-01 1072 5.0000000000000000e+02 4.8499999999999999e-01 1072 1.0000000000000000e+03 7.7300000000000002e-01 1072 2.0000000000000000e+03 1.0000000000000000e+00 1073 2.0000000000000000e+00 2.9999999999999999e-02 1073 5.0000000000000000e+01 3.5999999999999997e-02 1073 1.2500000000000000e+02 5.6000000000000001e-02 1073 2.5000000000000000e+02 1.8700000000000000e-01 1073 5.0000000000000000e+02 3.8000000000000000e-01 1073 1.0000000000000000e+03 7.0299999999999996e-01 1073 2.0000000000000000e+03 1.0000000000000000e+00 1074 2.0000000000000000e+00 2.5000000000000001e-02 1074 5.0000000000000000e+01 2.7000000000000000e-02 1074 1.2500000000000000e+02 4.9000000000000002e-02 1074 2.5000000000000000e+02 1.6000000000000000e-01 1074 5.0000000000000000e+02 3.7100000000000000e-01 1074 1.0000000000000000e+03 7.2299999999999998e-01 1074 2.0000000000000000e+03 1.0000000000000000e+00 1075 2.0000000000000000e+00 5.2999999999999999e-02 1075 5.0000000000000000e+01 5.8999999999999997e-02 1075 1.2500000000000000e+02 7.2999999999999995e-02 1075 2.5000000000000000e+02 1.8600000000000000e-01 1075 5.0000000000000000e+02 4.2099999999999999e-01 1075 1.0000000000000000e+03 8.4399999999999997e-01 1075 2.0000000000000000e+03 1.0000000000000000e+00 1080 2.0000000000000000e+00 7.0000000000000007e-02 1080 5.0000000000000000e+01 2.7000000000000002e-01 1080 2.0000000000000000e+03 1.0000000000000000e+00 1081 2.0000000000000000e+00 7.0000000000000007e-02 1081 5.0000000000000000e+01 2.7000000000000002e-01 1081 2.0000000000000000e+03 1.0000000000000000e+00 1082 2.0000000000000000e+00 7.0000000000000007e-02 1082 5.0000000000000000e+01 2.7000000000000002e-01 1082 2.0000000000000000e+03 1.0000000000000000e+00 1083 2.0000000000000000e+00 7.0000000000000007e-02 1083 5.0000000000000000e+01 2.7000000000000002e-01 1083 2.0000000000000000e+03 1.0000000000000000e+00 1084 2.0000000000000000e+00 7.0000000000000007e-02 1084 5.0000000000000000e+01 2.7000000000000002e-01 1084 2.0000000000000000e+03 1.0000000000000000e+00 1085 2.0000000000000000e+00 7.0000000000000007e-02 1085 5.0000000000000000e+01 2.7000000000000002e-01 1085 2.0000000000000000e+03 1.0000000000000000e+00 1086 2.0000000000000000e+00 7.0000000000000007e-02 1086 5.0000000000000000e+01 2.7000000000000002e-01 1086 2.0000000000000000e+03 1.0000000000000000e+00 1087 2.0000000000000000e+00 7.0000000000000007e-02 1087 5.0000000000000000e+01 2.7000000000000002e-01 1087 2.0000000000000000e+03 1.0000000000000000e+00 1090 2.0000000000000000e+00 5.0000000000000003e-02 1090 5.0000000000000000e+01 2.1500000000000000e-01 1090 1.2500000000000000e+02 3.4899999999999998e-01 1090 2.5000000000000000e+02 5.7299999999999995e-01 1090 5.0000000000000000e+02 8.1399999999999995e-01 1090 1.0000000000000000e+03 9.7099999999999997e-01 1090 2.0000000000000000e+03 1.0000000000000000e+00 1091 2.0000000000000000e+00 1.6000000000000000e-01 1091 5.0000000000000000e+01 3.3000000000000002e-01 1091 1.2500000000000000e+02 4.0500000000000003e-01 1091 2.5000000000000000e+02 5.6399999999999995e-01 1091 5.0000000000000000e+02 7.8200000000000003e-01 1091 1.0000000000000000e+03 9.7699999999999998e-01 1091 2.0000000000000000e+03 1.0000000000000000e+00 1092 2.0000000000000000e+00 2.8000000000000003e-01 1092 5.0000000000000000e+01 4.2499999999999999e-01 1092 1.2500000000000000e+02 4.8599999999999999e-01 1092 2.5000000000000000e+02 6.2000000000000000e-01 1092 5.0000000000000000e+02 7.8900000000000003e-01 1092 1.0000000000000000e+03 9.5399999999999996e-01 1092 2.0000000000000000e+03 1.0000000000000000e+00 1100 2.0000000000000000e+00 5.2999999999999999e-02 1100 5.0000000000000000e+01 1.1200000000000000e-01 1100 1.2500000000000000e+02 1.6900000000000001e-01 1100 2.5000000000000000e+02 3.9700000000000002e-01 1100 5.0000000000000000e+02 7.5000000000000000e-01 1100 1.0000000000000000e+03 9.8499999999999999e-01 1100 2.0000000000000000e+03 1.0009999999999999e+00 1101 2.0000000000000000e+00 1.1400000000000000e-01 1101 5.0000000000000000e+01 1.9700000000000001e-01 1101 1.2500000000000000e+02 2.4900000000000000e-01 1101 2.5000000000000000e+02 4.7699999999999998e-01 1101 5.0000000000000000e+02 7.9500000000000004e-01 1101 1.0000000000000000e+03 9.8699999999999999e-01 1101 2.0000000000000000e+03 9.9900000000000000e-01 1102 2.0000000000000000e+00 2.2300000000000000e-01 1102 5.0000000000000000e+01 3.0299999999999999e-01 1102 1.2500000000000000e+02 3.4999999999999998e-01 1102 2.5000000000000000e+02 5.5600000000000005e-01 1102 5.0000000000000000e+02 8.1899999999999995e-01 1102 1.0000000000000000e+03 9.9099999999999999e-01 1102 2.0000000000000000e+03 1.0000000000000000e+00 1103 2.0000000000000000e+00 2.9099999999999998e-01 1103 5.0000000000000000e+01 3.4799999999999998e-01 1103 1.2500000000000000e+02 3.8300000000000001e-01 1103 2.5000000000000000e+02 5.6599999999999995e-01 1103 5.0000000000000000e+02 8.3499999999999996e-01 1103 1.0000000000000000e+03 9.8899999999999999e-01 1103 2.0000000000000000e+03 9.9900000000000000e-01 1104 2.0000000000000000e+00 2.9699999999999999e-01 1104 5.0000000000000000e+01 3.1900000000000001e-01 1104 1.2500000000000000e+02 3.4699999999999998e-01 1104 2.5000000000000000e+02 5.1600000000000001e-01 1104 5.0000000000000000e+02 8.2399999999999995e-01 1104 1.0000000000000000e+03 9.9500000000000000e-01 1104 2.0000000000000000e+03 1.0000000000000000e+00 1110 2.0000000000000000e+00 1.0999999999999999e-02 1110 5.0000000000000000e+01 1.1600000000000001e-01 1110 1.2500000000000000e+02 1.9000000000000000e-01 1110 2.5000000000000000e+02 5.7399999999999995e-01 1110 5.0000000000000000e+02 8.7800000000000000e-01 1110 1.0000000000000000e+03 9.8999999999999999e-01 1110 2.0000000000000000e+03 1.0009999999999999e+00 1111 2.0000000000000000e+00 2.1000000000000001e-02 1111 5.0000000000000000e+01 1.6300000000000001e-01 1111 1.2500000000000000e+02 2.3100000000000001e-01 1111 2.5000000000000000e+02 5.9699999999999998e-01 1111 5.0000000000000000e+02 8.8100000000000001e-01 1111 1.0000000000000000e+03 9.8599999999999999e-01 1111 2.0000000000000000e+03 9.9800000000000000e-01 1112 2.0000000000000000e+00 1.7899999999999999e-01 1112 5.0000000000000000e+01 3.3200000000000002e-01 1112 1.2500000000000000e+02 3.9000000000000001e-01 1112 2.5000000000000000e+02 6.9199999999999995e-01 1112 5.0000000000000000e+02 9.0700000000000003e-01 1112 1.0000000000000000e+03 9.8799999999999999e-01 1112 2.0000000000000000e+03 1.0000000000000000e+00 1113 2.0000000000000000e+00 2.7400000000000002e-01 1113 5.0000000000000000e+01 3.6799999999999999e-01 1113 1.2500000000000000e+02 4.2699999999999999e-01 1113 2.5000000000000000e+02 6.8700000000000006e-01 1113 5.0000000000000000e+02 8.8900000000000001e-01 1113 1.0000000000000000e+03 9.7599999999999998e-01 1113 2.0000000000000000e+03 1.0009999999999999e+00 1114 2.0000000000000000e+00 2.6800000000000002e-01 1114 5.0000000000000000e+01 3.7800000000000000e-01 1114 1.2500000000000000e+02 4.3600000000000000e-01 1114 2.5000000000000000e+02 6.9199999999999995e-01 1114 5.0000000000000000e+02 8.9300000000000002e-01 1114 1.0000000000000000e+03 9.7399999999999998e-01 1114 2.0000000000000000e+03 1.0000000000000000e+00 1115 2.0000000000000000e+00 3.1500000000000000e-01 1115 5.0000000000000000e+01 4.4700000000000001e-01 1115 1.2500000000000000e+02 5.1000000000000001e-01 1115 2.5000000000000000e+02 7.4800000000000000e-01 1115 5.0000000000000000e+02 9.1700000000000004e-01 1115 1.0000000000000000e+03 9.8599999999999999e-01 1115 2.0000000000000000e+03 1.0000000000000000e+00 1116 2.0000000000000000e+00 2.8199999999999997e-01 1116 5.0000000000000000e+01 4.0100000000000002e-01 1116 1.2500000000000000e+02 4.9399999999999999e-01 1116 2.5000000000000000e+02 7.3799999999999999e-01 1116 5.0000000000000000e+02 8.9800000000000002e-01 1116 1.0000000000000000e+03 9.8299999999999998e-01 1116 2.0000000000000000e+03 1.0000000000000000e+00 1117 2.0000000000000000e+00 2.4299999999999999e-01 1117 5.0000000000000000e+01 3.3800000000000002e-01 1117 1.2500000000000000e+02 4.1999999999999998e-01 1117 2.5000000000000000e+02 6.6100000000000003e-01 1117 5.0000000000000000e+02 8.3999999999999997e-01 1117 1.0000000000000000e+03 9.5799999999999996e-01 1117 2.0000000000000000e+03 1.0069999999999999e+00 1120 2.0000000000000000e+00 8.5999999999999993e-02 1120 5.0000000000000000e+01 3.8600000000000001e-01 1120 1.0600000000000000e+02 5.0800000000000001e-01 1120 2.5000000000000000e+02 8.1899999999999995e-01 1120 5.0000000000000000e+02 9.8599999999999999e-01 1120 1.0000000000000000e+03 9.9900000000000000e-01 1120 2.0000000000000000e+03 1.0000000000000000e+00 1121 2.0000000000000000e+00 1.8099999999999999e-01 1121 5.0000000000000000e+01 4.5000000000000001e-01 1121 1.0600000000000000e+02 5.7699999999999996e-01 1121 2.5000000000000000e+02 8.5499999999999998e-01 1121 5.0000000000000000e+02 9.8599999999999999e-01 1121 1.0000000000000000e+03 9.9700000000000000e-01 1121 2.0000000000000000e+03 1.0000000000000000e+00 1122 2.0000000000000000e+00 2.6900000000000002e-01 1122 5.0000000000000000e+01 5.3500000000000003e-01 1122 1.0600000000000000e+02 6.3800000000000001e-01 1122 2.5000000000000000e+02 8.7600000000000000e-01 1122 5.0000000000000000e+02 9.8599999999999999e-01 1122 1.0000000000000000e+03 9.9700000000000000e-01 1122 2.0000000000000000e+03 9.9900000000000000e-01 1123 2.0000000000000000e+00 3.1800000000000000e-01 1123 5.0000000000000000e+01 6.5400000000000003e-01 1123 1.0600000000000000e+02 7.2799999999999998e-01 1123 2.5000000000000000e+02 8.9100000000000001e-01 1123 5.0000000000000000e+02 9.8699999999999999e-01 1123 1.0000000000000000e+03 9.9800000000000000e-01 1123 2.0000000000000000e+03 9.9900000000000000e-01 1130 2.0000000000000000e+00 6.7000000000000004e-02 1130 5.0000000000000000e+01 2.8899999999999998e-01 1130 1.2500000000000000e+02 3.9400000000000002e-01 1130 2.5000000000000000e+02 6.6400000000000003e-01 1130 5.0000000000000000e+02 8.7400000000000000e-01 1130 1.0000000000000000e+03 9.8499999999999999e-01 1130 2.0000000000000000e+03 9.9900000000000000e-01 1131 2.0000000000000000e+00 7.4999999999999997e-02 1131 5.0000000000000000e+01 2.9199999999999998e-01 1131 1.2500000000000000e+02 4.6899999999999997e-01 1131 2.5000000000000000e+02 6.4200000000000002e-01 1131 5.0000000000000000e+02 8.8100000000000001e-01 1131 1.0000000000000000e+03 9.7999999999999998e-01 1131 2.0000000000000000e+03 1.0000000000000000e+00 1132 2.0000000000000000e+00 2.1500000000000000e-01 1132 5.0000000000000000e+01 4.2199999999999999e-01 1132 1.2500000000000000e+02 5.1900000000000002e-01 1132 2.5000000000000000e+02 7.1499999999999997e-01 1132 5.0000000000000000e+02 8.8600000000000001e-01 1132 1.0000000000000000e+03 9.8199999999999998e-01 1132 2.0000000000000000e+03 1.0000000000000000e+00 1133 2.0000000000000000e+00 2.8599999999999998e-01 1133 5.0000000000000000e+01 4.3900000000000000e-01 1133 1.2500000000000000e+02 5.2000000000000002e-01 1133 2.5000000000000000e+02 7.2199999999999998e-01 1133 5.0000000000000000e+02 8.8200000000000001e-01 1133 1.0000000000000000e+03 9.7799999999999998e-01 1133 2.0000000000000000e+03 1.0000000000000000e+00 1134 2.0000000000000000e+00 4.0500000000000003e-01 1134 5.0000000000000000e+01 5.1100000000000001e-01 1134 1.2500000000000000e+02 5.9299999999999997e-01 1134 2.5000000000000000e+02 7.5400000000000000e-01 1134 5.0000000000000000e+02 8.9900000000000002e-01 1134 1.0000000000000000e+03 9.7899999999999998e-01 1134 2.0000000000000000e+03 9.9900000000000000e-01 1135 2.0000000000000000e+00 4.0999999999999998e-01 1135 5.0000000000000000e+01 5.0000000000000000e-01 1135 1.2500000000000000e+02 5.6699999999999995e-01 1135 2.5000000000000000e+02 7.4500000000000000e-01 1135 5.0000000000000000e+02 8.7800000000000000e-01 1135 1.0000000000000000e+03 9.5999999999999996e-01 1135 2.0000000000000000e+03 9.9800000000000000e-01 1140 2.0000000000000000e+00 2.0000000000000000e-02 1140 5.0000000000000000e+01 8.0000000000000002e-02 1140 1.2500000000000000e+02 1.8600000000000000e-01 1140 2.5000000000000000e+02 5.7999999999999996e-01 1140 5.0000000000000000e+02 8.5799999999999998e-01 1140 1.0000000000000000e+03 9.7999999999999998e-01 1140 2.0000000000000000e+03 1.0069999999999999e+00 1141 2.0000000000000000e+00 2.0000000000000000e-02 1141 5.0000000000000000e+01 1.0000000000000001e-01 1141 1.2500000000000000e+02 2.0899999999999999e-01 1141 2.5000000000000000e+02 5.9999999999999998e-01 1141 5.0000000000000000e+02 8.6399999999999999e-01 1141 1.0000000000000000e+03 9.7899999999999998e-01 1141 2.0000000000000000e+03 1.0000000000000000e+00 1142 2.0000000000000000e+00 2.9999999999999999e-02 1142 5.0000000000000000e+01 1.3000000000000000e-01 1142 1.2500000000000000e+02 2.4700000000000000e-01 1142 2.5000000000000000e+02 6.1499999999999999e-01 1142 5.0000000000000000e+02 8.6399999999999999e-01 1142 1.0000000000000000e+03 9.7699999999999998e-01 1142 2.0000000000000000e+03 9.9900000000000000e-01 1143 2.0000000000000000e+00 1.0000000000000001e-01 1143 5.0000000000000000e+01 1.9000000000000000e-01 1143 1.2500000000000000e+02 2.9699999999999999e-01 1143 2.5000000000000000e+02 5.9999999999999998e-01 1143 5.0000000000000000e+02 8.4999999999999998e-01 1143 1.0000000000000000e+03 9.6799999999999997e-01 1143 2.0000000000000000e+03 1.0029999999999999e+00 1150 2.0000000000000000e+00 1.0199999999999999e-01 1150 5.0000000000000000e+01 1.9900000000000001e-01 1150 1.2500000000000000e+02 4.2499999999999999e-01 1150 2.5000000000000000e+02 8.2699999999999996e-01 1150 5.0000000000000000e+02 9.6699999999999997e-01 1150 1.0000000000000000e+03 9.9700000000000000e-01 1150 2.0000000000000000e+03 1.0000000000000000e+00 1151 2.0000000000000000e+00 6.8000000000000005e-02 1151 5.0000000000000000e+01 1.5900000000000000e-01 1151 1.2500000000000000e+02 3.9100000000000001e-01 1151 2.5000000000000000e+02 8.8100000000000001e-01 1151 5.0000000000000000e+02 9.7699999999999998e-01 1151 1.0000000000000000e+03 9.9900000000000000e-01 1151 2.0000000000000000e+03 1.0020000000000000e+00 1152 2.0000000000000000e+00 2.4700000000000000e-01 1152 5.0000000000000000e+01 3.2000000000000001e-01 1152 1.2500000000000000e+02 4.7899999999999998e-01 1152 2.5000000000000000e+02 8.5599999999999998e-01 1152 5.0000000000000000e+02 9.6399999999999997e-01 1152 1.0000000000000000e+03 9.9399999999999999e-01 1152 2.0000000000000000e+03 1.0000000000000000e+00 1160 2.0000000000000000e+00 8.0000000000000002e-02 1160 5.0000000000000000e+01 2.0999999999999999e-01 1160 1.0500000000000000e+02 2.6600000000000001e-01 1160 2.5000000000000000e+02 4.2399999999999999e-01 1160 5.0000000000000000e+02 6.7900000000000005e-01 1160 1.0000000000000000e+03 9.1500000000000004e-01 1160 2.0000000000000000e+03 1.0009999999999999e+00 1161 2.0000000000000000e+00 1.7999999999999999e-01 1161 5.0000000000000000e+01 3.5999999999999999e-01 1161 1.0500000000000000e+02 4.1199999999999998e-01 1161 2.5000000000000000e+02 5.4200000000000004e-01 1161 5.0000000000000000e+02 7.3099999999999998e-01 1161 1.0000000000000000e+03 9.0800000000000003e-01 1161 2.0000000000000000e+03 9.9099999999999999e-01 1162 2.0000000000000000e+00 4.8999999999999999e-01 1162 5.0000000000000000e+01 6.2000000000000000e-01 1162 1.0500000000000000e+02 6.5400000000000003e-01 1162 2.5000000000000000e+02 7.1399999999999997e-01 1162 5.0000000000000000e+02 8.1999999999999995e-01 1162 1.0000000000000000e+03 9.3600000000000005e-01 1162 2.0000000000000000e+03 9.9199999999999999e-01 1163 2.0000000000000000e+00 4.6999999999999997e-01 1163 5.0000000000000000e+01 5.8999999999999997e-01 1163 1.0500000000000000e+02 6.3400000000000001e-01 1163 2.5000000000000000e+02 7.0799999999999996e-01 1163 5.0000000000000000e+02 8.0800000000000005e-01 1163 1.0000000000000000e+03 9.2800000000000005e-01 1163 2.0000000000000000e+03 9.9600000000000000e-01 1164 2.0000000000000000e+00 3.2000000000000001e-01 1164 5.0000000000000000e+01 5.0000000000000000e-01 1164 1.0500000000000000e+02 5.6699999999999995e-01 1164 2.5000000000000000e+02 6.5500000000000003e-01 1164 5.0000000000000000e+02 7.6300000000000001e-01 1164 1.0000000000000000e+03 9.1300000000000003e-01 1164 2.0000000000000000e+03 9.9700000000000000e-01 1165 2.0000000000000000e+00 2.5000000000000000e-01 1165 5.0000000000000000e+01 4.4000000000000000e-01 1165 1.0500000000000000e+02 5.0800000000000001e-01 1165 2.5000000000000000e+02 5.9699999999999998e-01 1165 5.0000000000000000e+02 7.1199999999999997e-01 1165 1.0000000000000000e+03 8.8200000000000001e-01 1165 2.0000000000000000e+03 9.9099999999999999e-01 1166 2.0000000000000000e+00 2.0000000000000001e-01 1166 5.0000000000000000e+01 3.9000000000000001e-01 1166 1.0500000000000000e+02 4.6300000000000002e-01 1166 2.5000000000000000e+02 5.7499999999999996e-01 1166 5.0000000000000000e+02 7.2099999999999997e-01 1166 1.0000000000000000e+03 9.0000000000000002e-01 1166 2.0000000000000000e+03 9.7999999999999998e-01 1170 2.0000000000000000e+00 6.9000000000000006e-02 1170 5.0000000000000000e+01 2.6900000000000002e-01 1170 2.0000000000000000e+03 1.0000000000000000e+00 1171 2.0000000000000000e+00 2.1199999999999999e-01 1171 5.0000000000000000e+01 3.9200000000000002e-01 1171 2.0000000000000000e+03 1.0000000000000000e+00 1172 2.0000000000000000e+00 3.8700000000000001e-01 1172 5.0000000000000000e+01 5.8299999999999996e-01 1172 2.0000000000000000e+03 1.0000000000000000e+00 1173 2.0000000000000000e+00 3.9000000000000001e-01 1173 5.0000000000000000e+01 6.2000000000000000e-01 1173 2.0000000000000000e+03 9.9900000000000000e-01 1174 2.0000000000000000e+00 3.5899999999999999e-01 1174 5.0000000000000000e+01 4.6999999999999997e-01 1174 2.0000000000000000e+03 1.0000000000000000e+00 1180 2.0000000000000000e+00 3.8000000000000000e-01 1180 5.0000000000000000e+01 5.9999999999999998e-01 1180 2.0000000000000000e+03 1.0000000000000000e+00 1181 2.0000000000000000e+00 4.7999999999999998e-01 1181 5.0000000000000000e+01 6.9999999999999996e-01 1181 2.0000000000000000e+03 1.0000000000000000e+00 1182 2.0000000000000000e+00 5.4000000000000004e-01 1182 5.0000000000000000e+01 6.7000000000000004e-01 1182 2.0000000000000000e+03 1.0000000000000000e+00 1183 2.0000000000000000e+00 3.2000000000000001e-01 1183 5.0000000000000000e+01 5.0000000000000000e-01 1183 2.0000000000000000e+03 1.0000000000000000e+00 1184 2.0000000000000000e+00 3.3000000000000002e-01 1184 5.0000000000000000e+01 5.3000000000000003e-01 1184 2.0000000000000000e+03 1.0000000000000000e+00 1190 2.0000000000000000e+00 2.2000000000000000e-01 1190 5.0000000000000000e+01 6.8000000000000005e-01 1190 1.0000000000000000e+02 8.7900000000000000e-01 1190 2.5000000000000000e+02 9.9299999999999999e-01 1190 5.0000000000000000e+02 9.9600000000000000e-01 1190 1.0000000000000000e+03 9.9800000000000000e-01 1190 2.0000000000000000e+03 9.9900000000000000e-01 1191 2.0000000000000000e+00 3.5699999999999998e-01 1191 5.0000000000000000e+01 7.6000000000000001e-01 1191 1.0000000000000000e+02 9.0400000000000003e-01 1191 2.5000000000000000e+02 9.8599999999999999e-01 1191 5.0000000000000000e+02 9.8999999999999999e-01 1191 1.0000000000000000e+03 9.9500000000000000e-01 1191 2.0000000000000000e+03 9.9800000000000000e-01 1192 2.0000000000000000e+00 3.9500000000000002e-01 1192 5.0000000000000000e+01 7.5500000000000000e-01 1192 1.0000000000000000e+02 8.8700000000000001e-01 1192 2.5000000000000000e+02 9.9600000000000000e-01 1192 5.0000000000000000e+02 9.9700000000000000e-01 1192 1.0000000000000000e+03 9.9800000000000000e-01 1192 2.0000000000000000e+03 1.0000000000000000e+00 1193 2.0000000000000000e+00 3.4000000000000002e-01 1193 5.0000000000000000e+01 6.5700000000000003e-01 1193 1.0000000000000000e+02 8.2399999999999995e-01 1193 2.5000000000000000e+02 9.9099999999999999e-01 1193 5.0000000000000000e+02 9.9399999999999999e-01 1193 1.0000000000000000e+03 9.9600000000000000e-01 1193 2.0000000000000000e+03 1.0000000000000000e+00 1194 2.0000000000000000e+00 3.5699999999999998e-01 1194 5.0000000000000000e+01 6.4000000000000001e-01 1194 1.0000000000000000e+02 8.1599999999999995e-01 1194 2.5000000000000000e+02 9.9199999999999999e-01 1194 5.0000000000000000e+02 9.9399999999999999e-01 1194 1.0000000000000000e+03 9.9600000000000000e-01 1194 2.0000000000000000e+03 9.9800000000000000e-01 1200 2.0000000000000000e+00 1.4499999999999999e-01 1200 5.0000000000000000e+01 3.9300000000000002e-01 1200 1.2500000000000000e+02 5.9199999999999997e-01 1200 2.5000000000000000e+02 8.5399999999999998e-01 1200 5.0000000000000000e+02 9.8999999999999999e-01 1200 1.0000000000000000e+03 9.9700000000000000e-01 1200 2.0000000000000000e+03 9.9800000000000000e-01 1201 2.0000000000000000e+00 2.3799999999999999e-01 1201 5.0000000000000000e+01 4.7299999999999998e-01 1201 1.2500000000000000e+02 6.1399999999999999e-01 1201 2.5000000000000000e+02 8.5599999999999998e-01 1201 5.0000000000000000e+02 9.9099999999999999e-01 1201 1.0000000000000000e+03 9.9700000000000000e-01 1201 2.0000000000000000e+03 9.9800000000000000e-01 1202 2.0000000000000000e+00 1.7999999999999999e-01 1202 5.0000000000000000e+01 3.5299999999999998e-01 1202 1.2500000000000000e+02 4.9900000000000000e-01 1202 2.5000000000000000e+02 8.1699999999999995e-01 1202 5.0000000000000000e+02 9.8699999999999999e-01 1202 1.0000000000000000e+03 9.9800000000000000e-01 1202 2.0000000000000000e+03 9.9800000000000000e-01 1203 2.0000000000000000e+00 8.0000000000000002e-02 1203 5.0000000000000000e+01 1.9700000000000001e-01 1203 1.2500000000000000e+02 3.6499999999999999e-01 1203 2.5000000000000000e+02 7.5800000000000001e-01 1203 5.0000000000000000e+02 9.8399999999999999e-01 1203 1.0000000000000000e+03 9.9500000000000000e-01 1203 2.0000000000000000e+03 9.9500000000000000e-01 1204 2.0000000000000000e+00 1.3000000000000000e-01 1204 5.0000000000000000e+01 2.2300000000000000e-01 1204 1.2500000000000000e+02 3.8100000000000001e-01 1204 2.5000000000000000e+02 7.5900000000000001e-01 1204 5.0000000000000000e+02 9.8599999999999999e-01 1204 1.0000000000000000e+03 9.9900000000000000e-01 1204 2.0000000000000000e+03 9.9900000000000000e-01 1210 2.0000000000000000e+00 1.2700000000000000e-01 1210 5.0000000000000000e+01 4.3300000000000000e-01 1210 1.2500000000000000e+02 8.0100000000000005e-01 1210 2.5000000000000000e+02 9.4999999999999996e-01 1210 5.0000000000000000e+02 9.9199999999999999e-01 1210 1.0000000000000000e+03 9.9500000000000000e-01 1210 2.0000000000000000e+03 9.9500000000000000e-01 1211 2.0000000000000000e+00 1.9500000000000001e-01 1211 5.0000000000000000e+01 5.0300000000000000e-01 1211 1.2500000000000000e+02 8.4099999999999997e-01 1211 2.5000000000000000e+02 9.6799999999999997e-01 1211 5.0000000000000000e+02 9.9700000000000000e-01 1211 1.0000000000000000e+03 9.9900000000000000e-01 1211 2.0000000000000000e+03 9.9900000000000000e-01 1212 2.0000000000000000e+00 2.1199999999999999e-01 1212 5.0000000000000000e+01 5.1800000000000002e-01 1212 1.2500000000000000e+02 8.4099999999999997e-01 1212 2.5000000000000000e+02 9.6299999999999997e-01 1212 5.0000000000000000e+02 9.9299999999999999e-01 1212 1.0000000000000000e+03 9.9700000000000000e-01 1212 2.0000000000000000e+03 9.9800000000000000e-01 1213 2.0000000000000000e+00 3.3700000000000002e-01 1213 5.0000000000000000e+01 6.7700000000000005e-01 1213 1.2500000000000000e+02 8.8800000000000001e-01 1213 2.5000000000000000e+02 9.6699999999999997e-01 1213 5.0000000000000000e+02 9.9099999999999999e-01 1213 1.0000000000000000e+03 9.9500000000000000e-01 1213 2.0000000000000000e+03 1.0000000000000000e+00 1220 1221 1222 1223 1224 1225 1230 1231 1232 1233 1234 1235 1236 1237 1240 1.0000000000000000e+00 1.2000000000000000e-02 1240 4.0000000000000000e+00 1.2999999999999999e-02 1240 5.0000000000000000e+00 1.7000000000000001e-02 1240 7.0000000000000000e+00 1.7000000000000001e-02 1240 9.0000000000000000e+00 2.4000000000000000e-02 1240 1.6000000000000000e+01 2.9000000000000001e-02 1240 3.0000000000000000e+01 3.5000000000000003e-02 1240 5.1000000000000000e+01 3.6999999999999998e-02 1240 5.3000000000000000e+01 3.6999999999999998e-02 1240 7.5000000000000000e+01 4.2000000000000003e-02 1240 1.1000000000000000e+02 5.2999999999999999e-02 1240 2.5000000000000000e+02 1.0500000000000000e-01 1240 5.0000000000000000e+02 3.7700000000000000e-01 1240 1.0000000000000000e+03 8.6799999999999999e-01 1240 2.0000000000000000e+03 9.7199999999999998e-01 1241 1.0000000000000000e+00 1.2999999999999999e-02 1241 4.0000000000000000e+00 1.2999999999999999e-02 1241 5.0000000000000000e+00 1.7000000000000001e-02 1241 7.0000000000000000e+00 1.7999999999999999e-02 1241 9.0000000000000000e+00 2.3000000000000000e-02 1241 1.6000000000000000e+01 3.1000000000000000e-02 1241 3.0000000000000000e+01 3.5999999999999997e-02 1241 5.1000000000000000e+01 3.7999999999999999e-02 1241 5.3000000000000000e+01 3.9000000000000000e-02 1241 7.5000000000000000e+01 4.3999999999999997e-02 1241 1.1000000000000000e+02 5.5000000000000000e-02 1241 2.5000000000000000e+02 1.0299999999999999e-01 1241 5.0000000000000000e+02 3.7300000000000000e-01 1241 1.0000000000000000e+03 8.6399999999999999e-01 1241 2.0000000000000000e+03 9.7499999999999998e-01 1260 1.0000000000000000e+00 1.2000000000000000e-01 1260 4.0000000000000000e+00 1.5900000000000000e-01 1260 5.0000000000000000e+00 1.6800000000000001e-01 1260 6.0000000000000000e+00 1.9000000000000000e-01 1260 8.0000000000000000e+00 2.2600000000000001e-01 1260 1.5000000000000000e+01 3.0199999999999999e-01 1260 2.7000000000000000e+01 4.0000000000000002e-01 1260 4.4000000000000000e+01 5.5500000000000005e-01 1260 5.3000000000000000e+01 5.8599999999999997e-01 1260 7.5000000000000000e+01 6.9599999999999995e-01 1260 1.1000000000000000e+02 8.2999999999999996e-01 1260 2.5000000000000000e+02 9.4599999999999995e-01 1260 5.0000000000000000e+02 9.7399999999999998e-01 1260 1.0000000000000000e+03 9.9500000000000000e-01 1260 2.0000000000000000e+03 9.9900000000000000e-01 1261 1.0000000000000000e+00 1.1100000000000000e-01 1261 4.0000000000000000e+00 1.5300000000000000e-01 1261 5.0000000000000000e+00 1.6400000000000001e-01 1261 6.0000000000000000e+00 1.8700000000000000e-01 1261 8.0000000000000000e+00 2.3400000000000001e-01 1261 1.5000000000000000e+01 3.1500000000000000e-01 1261 2.7000000000000000e+01 4.2799999999999999e-01 1261 4.4000000000000000e+01 6.0299999999999998e-01 1261 5.3000000000000000e+01 6.3300000000000001e-01 1261 7.5000000000000000e+01 7.7400000000000002e-01 1261 1.1000000000000000e+02 9.0500000000000003e-01 1261 2.5000000000000000e+02 9.7399999999999998e-01 1261 5.0000000000000000e+02 9.8799999999999999e-01 1261 1.0000000000000000e+03 9.9900000000000000e-01 1261 2.0000000000000000e+03 9.9900000000000000e-01 1270 1280 2.0000000000000000e+00 1.3600000000000001e-01 1280 6.0000000000000000e+00 1.8099999999999999e-01 1280 2.0000000000000000e+01 3.3400000000000002e-01 1280 6.3000000000000000e+01 9.3500000000000005e-01 1280 2.0000000000000000e+02 9.8699999999999999e-01 1280 6.3000000000000000e+02 9.9900000000000000e-01 1280 2.0000000000000000e+03 1.0000000000000000e+00 1281 2.0000000000000000e+00 1.9300000000000000e-01 1281 6.0000000000000000e+00 2.6800000000000002e-01 1281 2.0000000000000000e+01 4.6500000000000002e-01 1281 6.3000000000000000e+01 9.7599999999999998e-01 1281 2.0000000000000000e+02 9.9299999999999999e-01 1281 6.3000000000000000e+02 9.9900000000000000e-01 1281 2.0000000000000000e+03 1.0000000000000000e+00 1282 2.0000000000000000e+00 2.4700000000000000e-01 1282 6.0000000000000000e+00 3.3300000000000002e-01 1282 2.0000000000000000e+01 4.3600000000000000e-01 1282 6.3000000000000000e+01 9.7699999999999998e-01 1282 2.0000000000000000e+02 9.9600000000000000e-01 1282 6.3000000000000000e+02 1.0000000000000000e+00 1282 2.0000000000000000e+03 1.0000000000000000e+00 1290 2.0000000000000000e+00 4.2999999999999997e-02 1290 6.3000000000000000e+01 1.1200000000000000e-01 1290 2.0000000000000000e+03 1.0000000000000000e+00 1300 2.0000000000000000e+00 3.1400000000000000e-01 1300 5.0000000000000000e+01 6.1199999999999999e-01 1300 2.0000000000000000e+03 1.0000000000000000e+00 1301 2.0000000000000000e+00 3.1400000000000000e-01 1301 5.0000000000000000e+01 6.1199999999999999e-01 1301 2.0000000000000000e+03 1.0000000000000000e+00 1310 2.0000000000000000e+00 2.0000000000000000e-02 1310 5.0000000000000000e+01 4.3999999999999997e-02 1310 2.0000000000000000e+03 1.0000000000000000e+00 1320 2.0000000000000000e+00 5.4500000000000004e-01 1320 2.0000000000000000e+01 8.5999999999999999e-01 1320 6.3000000000000000e+01 9.5399999999999996e-01 1320 2.0000000000000000e+02 9.8499999999999999e-01 1320 6.3000000000000000e+02 9.9600000000000000e-01 1320 2.0000000000000000e+03 9.9900000000000000e-01 1330 2.0000000000000000e+00 9.1999999999999998e-02 1330 6.3000000000000000e+01 9.6399999999999997e-01 1330 2.0000000000000000e+03 1.0000000000000000e+00 1331 2.0000000000000000e+00 2.3000000000000001e-01 1331 6.3000000000000000e+01 9.7999999999999998e-01 1331 2.0000000000000000e+03 1.0000000000000000e+00 1340 2.0000000000000000e+00 1.6200000000000001e-01 1340 6.0000000000000000e+00 2.0599999999999999e-01 1340 2.0000000000000000e+01 3.5999999999999999e-01 1340 6.0000000000000000e+01 8.2999999999999996e-01 1340 2.0000000000000000e+02 9.2700000000000005e-01 1340 6.0000000000000000e+02 9.9500000000000000e-01 1340 2.0000000000000000e+03 1.0000000000000000e+00 1341 2.0000000000000000e+00 1.5600000000000000e-01 1341 6.0000000000000000e+00 2.0100000000000001e-01 1341 2.0000000000000000e+01 3.7500000000000000e-01 1341 6.0000000000000000e+01 8.8400000000000001e-01 1341 2.0000000000000000e+02 9.4799999999999995e-01 1341 6.0000000000000000e+02 9.9800000000000000e-01 1341 2.0000000000000000e+03 1.0000000000000000e+00 1342 2.0000000000000000e+00 1.6300000000000001e-01 1342 6.0000000000000000e+00 2.0200000000000001e-01 1342 2.0000000000000000e+01 4.0300000000000002e-01 1342 6.0000000000000000e+01 9.0000000000000002e-01 1342 2.0000000000000000e+02 9.5499999999999996e-01 1342 6.0000000000000000e+02 9.9700000000000000e-01 1342 2.0000000000000000e+03 1.0000000000000000e+00 1350 2.0000000000000000e+00 1.7000000000000001e-01 1350 6.0000000000000000e+00 2.1500000000000000e-01 1350 2.0000000000000000e+01 3.8000000000000000e-01 1350 6.0000000000000000e+01 8.1299999999999994e-01 1350 2.0000000000000000e+02 9.2200000000000004e-01 1350 6.0000000000000000e+02 9.8599999999999999e-01 1350 2.0000000000000000e+03 1.0000000000000000e+00 1351 2.0000000000000000e+00 1.7000000000000001e-01 1351 6.0000000000000000e+00 2.1299999999999999e-01 1351 2.0000000000000000e+01 3.7500000000000000e-01 1351 6.0000000000000000e+01 8.4499999999999997e-01 1351 2.0000000000000000e+02 9.2900000000000005e-01 1351 6.0000000000000000e+02 9.8999999999999999e-01 1351 2.0000000000000000e+03 1.0000000000000000e+00 1352 2.0000000000000000e+00 1.7399999999999999e-01 1352 6.0000000000000000e+00 2.2000000000000000e-01 1352 2.0000000000000000e+01 3.9400000000000002e-01 1352 6.0000000000000000e+01 8.5699999999999998e-01 1352 2.0000000000000000e+02 9.2500000000000004e-01 1352 6.0000000000000000e+02 9.9500000000000000e-01 1352 2.0000000000000000e+03 1.0000000000000000e+00 1360 2.0000000000000000e+00 4.3500000000000000e-01 1360 6.0000000000000000e+00 5.0900000000000001e-01 1360 2.0000000000000000e+01 6.7800000000000005e-01 1360 6.3000000000000000e+01 8.7300000000000000e-01 1360 2.0000000000000000e+02 9.7399999999999998e-01 1360 6.3000000000000000e+02 9.9500000000000000e-01 1360 2.0000000000000000e+03 1.0000000000000000e+00 1361 2.0000000000000000e+00 4.0300000000000002e-01 1361 6.0000000000000000e+00 5.1600000000000001e-01 1361 2.0000000000000000e+01 6.4000000000000001e-01 1361 6.3000000000000000e+01 8.7600000000000000e-01 1361 2.0000000000000000e+02 9.8799999999999999e-01 1361 6.3000000000000000e+02 9.9900000000000000e-01 1361 2.0000000000000000e+03 1.0000000000000000e+00 1362 2.0000000000000000e+00 3.2200000000000001e-01 1362 6.0000000000000000e+00 4.3800000000000000e-01 1362 2.0000000000000000e+01 5.8199999999999996e-01 1362 6.3000000000000000e+01 8.4999999999999998e-01 1362 2.0000000000000000e+02 9.8599999999999999e-01 1362 6.3000000000000000e+02 9.9900000000000000e-01 1362 2.0000000000000000e+03 1.0000000000000000e+00 1370 2.0000000000000000e+00 2.5900000000000001e-01 1370 6.0000000000000000e+00 3.7600000000000000e-01 1370 2.0000000000000000e+01 4.6500000000000002e-01 1370 6.3000000000000000e+01 5.7599999999999996e-01 1370 2.0000000000000000e+02 8.0400000000000005e-01 1370 6.3000000000000000e+02 9.7399999999999998e-01 1370 2.0000000000000000e+03 1.0000000000000000e+00 1371 2.0000000000000000e+00 3.3900000000000002e-01 1371 6.0000000000000000e+00 4.2199999999999999e-01 1371 2.0000000000000000e+01 5.0400000000000000e-01 1371 6.3000000000000000e+01 8.8200000000000001e-01 1371 2.0000000000000000e+02 9.3100000000000005e-01 1371 6.3000000000000000e+02 9.9099999999999999e-01 1371 2.0000000000000000e+03 1.0000000000000000e+00 1372 2.0000000000000000e+00 3.5099999999999998e-01 1372 6.0000000000000000e+00 4.5000000000000001e-01 1372 2.0000000000000000e+01 5.5300000000000005e-01 1372 6.3000000000000000e+01 9.0200000000000002e-01 1372 2.0000000000000000e+02 9.4699999999999995e-01 1372 6.3000000000000000e+02 9.9600000000000000e-01 1372 2.0000000000000000e+03 1.0000000000000000e+00 1380 2.0000000000000000e+00 7.8000000000000000e-02 1380 6.0000000000000000e+00 1.1799999999999999e-01 1380 2.0000000000000000e+01 2.0599999999999999e-01 1380 6.3000000000000000e+01 5.7699999999999996e-01 1380 2.0000000000000000e+02 7.7400000000000002e-01 1380 6.3000000000000000e+02 9.8699999999999999e-01 1380 2.0000000000000000e+03 1.0000000000000000e+00 1381 2.0000000000000000e+00 1.1200000000000000e-01 1381 6.0000000000000000e+00 1.5500000000000000e-01 1381 2.0000000000000000e+01 2.3699999999999999e-01 1381 6.3000000000000000e+01 5.4200000000000004e-01 1381 2.0000000000000000e+02 7.3999999999999999e-01 1381 6.3000000000000000e+02 9.7499999999999998e-01 1381 2.0000000000000000e+03 1.0000000000000000e+00 1382 2.0000000000000000e+00 2.6800000000000002e-01 1382 6.0000000000000000e+00 3.1600000000000000e-01 1382 2.0000000000000000e+01 4.0000000000000002e-01 1382 6.3000000000000000e+01 5.0900000000000001e-01 1382 2.0000000000000000e+02 7.8500000000000003e-01 1382 6.3000000000000000e+02 9.7799999999999998e-01 1382 2.0000000000000000e+03 1.0000000000000000e+00 1383 2.0000000000000000e+00 4.0699999999999997e-01 1383 6.0000000000000000e+00 6.2200000000000000e-01 1383 2.0000000000000000e+01 8.1899999999999995e-01 1383 6.3000000000000000e+01 9.6099999999999997e-01 1383 2.0000000000000000e+02 9.9399999999999999e-01 1383 6.3000000000000000e+02 9.9900000000000000e-01 1383 2.0000000000000000e+03 1.0000000000000000e+00 1390 2.0000000000000000e+00 6.6000000000000003e-02 1390 6.3000000000000000e+01 4.2399999999999999e-01 1390 2.0000000000000000e+03 1.0000000000000000e+00 1391 2.0000000000000000e+00 6.6000000000000003e-02 1391 6.3000000000000000e+01 4.2399999999999999e-01 1391 2.0000000000000000e+03 1.0000000000000000e+00 1392 2.0000000000000000e+00 6.6000000000000003e-02 1392 6.3000000000000000e+01 4.2399999999999999e-01 1392 2.0000000000000000e+03 1.0000000000000000e+00 1400 2.0000000000000000e+00 5.8099999999999996e-01 1400 6.0000000000000000e+00 7.3299999999999998e-01 1400 2.0000000000000000e+01 8.5799999999999998e-01 1400 6.3000000000000000e+01 9.8099999999999998e-01 1400 2.0000000000000000e+02 9.9900000000000000e-01 1400 6.3000000000000000e+02 1.0000000000000000e+00 1400 2.0000000000000000e+03 1.0000000000000000e+00 1410 2.5000000000000000e+02 0.0000000000000000e+00 1410 5.0000000000000000e+02 1.0000000000000000e+00 1420 2.0000000000000000e+00 3.2000000000000001e-01 1420 5.0000000000000000e+01 8.0000000000000004e-01 1420 2.0000000000000000e+03 1.0000000000000000e+00 1430 2.0000000000000000e+00 3.7999999999999999e-02 1430 6.0000000000000000e+00 3.9000000000000000e-02 1430 2.0000000000000000e+01 8.4000000000000005e-02 1430 6.3000000000000000e+01 3.8800000000000001e-01 1430 2.0000000000000000e+02 8.2899999999999996e-01 1430 6.3000000000000000e+02 9.7099999999999997e-01 1430 2.0000000000000000e+03 9.9700000000000000e-01 1440 2.0000000000000000e+00 1.8600000000000000e-01 1440 6.0000000000000000e+00 2.2800000000000001e-01 1440 2.0000000000000000e+01 2.9899999999999999e-01 1440 6.3000000000000000e+01 4.3600000000000000e-01 1440 2.0000000000000000e+02 7.8600000000000003e-01 1440 6.3000000000000000e+02 9.3799999999999994e-01 1440 2.0000000000000000e+03 1.0000000000000000e+00 1450 2.0000000000000000e+00 1.4699999999999999e-01 1450 6.0000000000000000e+00 2.0599999999999999e-01 1450 2.0000000000000000e+01 2.4800000000000000e-01 1450 6.3000000000000000e+01 4.0899999999999997e-01 1450 2.0000000000000000e+02 8.2899999999999996e-01 1450 6.3000000000000000e+02 9.7099999999999997e-01 1450 2.0000000000000000e+03 9.9700000000000000e-01 1460 2.0000000000000000e+00 1.2000000000000000e-02 1460 6.0000000000000000e+00 1.4000000000000000e-02 1460 2.0000000000000000e+01 2.0000000000000000e-02 1460 6.3000000000000000e+01 2.1999999999999999e-02 1460 1.0000000000000000e+02 2.5999999999999999e-02 1460 2.0000000000000000e+02 5.8999999999999997e-02 1460 6.3000000000000000e+02 7.0699999999999996e-01 1460 2.0000000000000000e+03 1.0000000000000000e+00 1461 2.0000000000000000e+00 3.0000000000000001e-03 1461 6.0000000000000000e+00 6.0000000000000001e-03 1461 2.0000000000000000e+01 8.0000000000000002e-03 1461 6.3000000000000000e+01 1.0000000000000000e-02 1461 1.0000000000000000e+02 1.4000000000000000e-02 1461 2.0000000000000000e+02 5.0000000000000003e-02 1461 6.3000000000000000e+02 7.0699999999999996e-01 1461 2.0000000000000000e+03 1.0000000000000000e+00 1462 2.0000000000000000e+00 1.6000000000000000e-02 1462 6.0000000000000000e+00 2.1000000000000001e-02 1462 2.0000000000000000e+01 2.9000000000000001e-02 1462 6.3000000000000000e+01 3.5999999999999997e-02 1462 1.0000000000000000e+02 4.4999999999999998e-02 1462 2.0000000000000000e+02 2.0499999999999999e-01 1462 6.3000000000000000e+02 9.8499999999999999e-01 1462 2.0000000000000000e+03 1.0000000000000000e+00 1463 2.0000000000000000e+00 1.0999999999999999e-02 1463 6.0000000000000000e+00 1.0999999999999999e-02 1463 2.0000000000000000e+01 2.0000000000000000e-02 1463 6.3000000000000000e+01 3.1000000000000000e-02 1463 1.0000000000000000e+02 6.2000000000000000e-02 1463 2.0000000000000000e+02 1.7100000000000001e-01 1463 6.3000000000000000e+02 9.9900000000000000e-01 1463 2.0000000000000000e+03 1.0000000000000000e+00 1464 2.0000000000000000e+00 2.5999999999999999e-02 1464 6.0000000000000000e+00 2.5999999999999999e-02 1464 2.0000000000000000e+01 6.0999999999999999e-02 1464 6.3000000000000000e+01 7.1999999999999995e-02 1464 1.0000000000000000e+02 9.5000000000000001e-02 1464 2.0000000000000000e+02 4.8799999999999999e-01 1464 6.3000000000000000e+02 9.9700000000000000e-01 1464 2.0000000000000000e+03 1.0000000000000000e+00 1465 2.0000000000000000e+00 3.2000000000000001e-02 1465 6.0000000000000000e+00 4.2000000000000003e-02 1465 2.0000000000000000e+01 7.3999999999999996e-02 1465 6.3000000000000000e+01 2.0999999999999999e-01 1465 1.0000000000000000e+02 4.7399999999999998e-01 1465 2.0000000000000000e+02 8.7200000000000000e-01 1465 6.3000000000000000e+02 9.8599999999999999e-01 1465 2.0000000000000000e+03 1.0000000000000000e+00 1466 2.0000000000000000e+00 1.4000000000000000e-02 1466 6.0000000000000000e+00 1.4000000000000000e-02 1466 2.0000000000000000e+01 1.7000000000000001e-02 1466 6.3000000000000000e+01 1.0900000000000000e-01 1466 1.0000000000000000e+02 5.0900000000000001e-01 1466 2.0000000000000000e+02 9.7299999999999998e-01 1466 6.3000000000000000e+02 1.0000000000000000e+00 1466 2.0000000000000000e+03 1.0000000000000000e+00 1467 2.0000000000000000e+00 5.0000000000000003e-02 1467 6.0000000000000000e+00 6.5000000000000002e-02 1467 2.0000000000000000e+01 8.8999999999999996e-02 1467 6.3000000000000000e+01 1.2200000000000000e-01 1467 1.0000000000000000e+02 1.2700000000000000e-01 1467 2.0000000000000000e+02 2.8000000000000003e-01 1467 6.3000000000000000e+02 8.2999999999999996e-01 1467 2.0000000000000000e+03 1.0000000000000000e+00 1480 1481 1482 1490 2.0000000000000000e+00 1.5800000000000000e-01 1490 6.0000000000000000e+00 2.3300000000000001e-01 1490 2.0000000000000000e+01 4.3099999999999999e-01 1490 6.3000000000000000e+01 9.5599999999999996e-01 1490 2.0000000000000000e+02 9.9700000000000000e-01 1490 6.3000000000000000e+02 1.0000000000000000e+00 1490 2.0000000000000000e+03 1.0000000000000000e+00 2000 2.0000000000000000e+00 2.1900000000000000e-01 2000 6.0000000000000000e+00 2.6300000000000001e-01 2000 2.0000000000000000e+01 3.9900000000000002e-01 2000 6.0000000000000000e+01 8.2499999999999996e-01 2000 2.0000000000000000e+02 9.3799999999999994e-01 2000 6.0000000000000000e+02 9.9800000000000000e-01 2000 2.0000000000000000e+03 1.0000000000000000e+00 2001 2.0000000000000000e+00 2.3499999999999999e-01 2001 6.0000000000000000e+00 2.7200000000000002e-01 2001 2.0000000000000000e+01 4.7399999999999998e-01 2001 6.0000000000000000e+01 9.2600000000000005e-01 2001 2.0000000000000000e+02 9.7799999999999998e-01 2001 6.0000000000000000e+02 9.9900000000000000e-01 2001 2.0000000000000000e+03 1.0000000000000000e+00 2002 2.0000000000000000e+00 2.4900000000000000e-01 2002 6.0000000000000000e+00 2.8000000000000003e-01 2002 2.0000000000000000e+01 5.0000000000000000e-01 2002 6.0000000000000000e+01 9.5299999999999996e-01 2002 2.0000000000000000e+02 9.8799999999999999e-01 2002 6.0000000000000000e+02 9.9900000000000000e-01 2002 2.0000000000000000e+03 1.0000000000000000e+00 2010 2.0000000000000000e+00 2.5300000000000000e-01 2010 6.0000000000000000e+00 2.9599999999999999e-01 2010 2.0000000000000000e+01 4.4200000000000000e-01 2010 6.0000000000000000e+01 8.2599999999999996e-01 2010 2.0000000000000000e+02 9.4199999999999995e-01 2010 6.0000000000000000e+02 9.9700000000000000e-01 2010 2.0000000000000000e+03 1.0000000000000000e+00 2011 2.0000000000000000e+00 2.5600000000000001e-01 2011 6.0000000000000000e+00 2.8399999999999997e-01 2011 2.0000000000000000e+01 4.4800000000000001e-01 2011 6.0000000000000000e+01 8.5399999999999998e-01 2011 2.0000000000000000e+02 9.7099999999999997e-01 2011 6.0000000000000000e+02 9.9900000000000000e-01 2011 2.0000000000000000e+03 1.0000000000000000e+00 2012 2.0000000000000000e+00 2.5400000000000000e-01 2012 6.0000000000000000e+00 2.8399999999999997e-01 2012 2.0000000000000000e+01 3.7000000000000000e-01 2012 6.0000000000000000e+01 8.7000000000000000e-01 2012 2.0000000000000000e+02 9.8599999999999999e-01 2012 6.0000000000000000e+02 9.9900000000000000e-01 2012 2.0000000000000000e+03 1.0000000000000000e+00 2020 2.0000000000000000e+00 6.2000000000000000e-01 2020 5.0000000000000000e+01 9.5599999999999996e-01 2020 2.0000000000000000e+03 1.0000000000000000e+00 2021 2.0000000000000000e+00 6.2000000000000000e-01 2021 5.0000000000000000e+01 9.5599999999999996e-01 2021 2.0000000000000000e+03 1.0000000000000000e+00 2022 2.0000000000000000e+00 6.2000000000000000e-01 2022 5.0000000000000000e+01 9.5599999999999996e-01 2022 2.0000000000000000e+03 1.0000000000000000e+00 2030 2031 2032 2040 2041 2050 2051 2060 2061 2070 2071 2080 2081 2090 2091 2092 2100 0.0000000000000000e+00 2.5000000000000001e-02 2100 2.0000000000000000e+00 4.1000000000000002e-02 2100 2.0000000000000000e+01 5.0000000000000003e-02 2100 5.0000000000000000e+01 7.5999999999999998e-02 2100 1.0000000000000000e+02 2.5000000000000000e-01 2100 2.5000000000000000e+02 6.9299999999999995e-01 2100 5.0000000000000000e+02 9.5099999999999996e-01 2100 1.0000000000000000e+03 1.0000000000000000e+00 2100 2.0000000000000000e+03 1.0000000000000000e+00 2101 0.0000000000000000e+00 4.2999999999999997e-02 2101 2.0000000000000000e+00 7.0000000000000007e-02 2101 2.0000000000000000e+01 8.4000000000000005e-02 2101 5.0000000000000000e+01 1.2600000000000000e-01 2101 1.0000000000000000e+02 2.8100000000000003e-01 2101 2.5000000000000000e+02 6.7500000000000004e-01 2101 5.0000000000000000e+02 9.3799999999999994e-01 2101 1.0000000000000000e+03 9.9800000000000000e-01 2101 2.0000000000000000e+03 1.0000000000000000e+00 2102 0.0000000000000000e+00 5.3999999999999999e-02 2102 2.0000000000000000e+00 1.0500000000000000e-01 2102 2.0000000000000000e+01 1.0600000000000000e-01 2102 5.0000000000000000e+01 1.4799999999999999e-01 2102 1.0000000000000000e+02 2.8299999999999997e-01 2102 2.5000000000000000e+02 6.7300000000000004e-01 2102 5.0000000000000000e+02 9.3999999999999995e-01 2102 1.0000000000000000e+03 9.9900000000000000e-01 2102 2.0000000000000000e+03 1.0000000000000000e+00 2103 0.0000000000000000e+00 5.7000000000000002e-02 2103 2.0000000000000000e+00 1.0100000000000001e-01 2103 2.0000000000000000e+01 1.0800000000000000e-01 2103 5.0000000000000000e+01 1.6000000000000000e-01 2103 1.0000000000000000e+02 2.9599999999999999e-01 2103 2.5000000000000000e+02 6.8000000000000005e-01 2103 5.0000000000000000e+02 9.4099999999999995e-01 2103 1.0000000000000000e+03 9.9900000000000000e-01 2103 2.0000000000000000e+03 1.0000000000000000e+00 2104 0.0000000000000000e+00 4.3999999999999997e-02 2104 2.0000000000000000e+00 8.5999999999999993e-02 2104 2.0000000000000000e+01 1.0100000000000001e-01 2104 5.0000000000000000e+01 1.2500000000000000e-01 2104 1.0000000000000000e+02 2.7200000000000002e-01 2104 2.5000000000000000e+02 6.8899999999999995e-01 2104 5.0000000000000000e+02 9.4799999999999995e-01 2104 1.0000000000000000e+03 9.9900000000000000e-01 2104 2.0000000000000000e+03 1.0000000000000000e+00 2105 0.0000000000000000e+00 4.2000000000000003e-02 2105 2.0000000000000000e+00 8.3000000000000004e-02 2105 2.0000000000000000e+01 9.6000000000000002e-02 2105 5.0000000000000000e+01 1.2800000000000000e-01 2105 1.0000000000000000e+02 2.7400000000000002e-01 2105 2.5000000000000000e+02 7.1099999999999997e-01 2105 5.0000000000000000e+02 9.5299999999999996e-01 2105 1.0000000000000000e+03 9.9900000000000000e-01 2105 2.0000000000000000e+03 1.0000000000000000e+00 2110 2.0000000000000000e+00 4.0000000000000001e-02 2110 5.0000000000000000e+01 2.2000000000000000e-01 2110 1.2500000000000000e+02 3.6699999999999999e-01 2110 2.5000000000000000e+02 6.5900000000000003e-01 2110 5.0000000000000000e+02 9.0100000000000002e-01 2110 1.0000000000000000e+03 9.8099999999999998e-01 2110 2.0000000000000000e+03 9.9399999999999999e-01 2111 2.0000000000000000e+00 7.0000000000000007e-02 2111 5.0000000000000000e+01 2.7000000000000002e-01 2111 1.2500000000000000e+02 4.2299999999999999e-01 2111 2.5000000000000000e+02 6.6300000000000003e-01 2111 5.0000000000000000e+02 8.9400000000000002e-01 2111 1.0000000000000000e+03 9.8899999999999999e-01 2111 2.0000000000000000e+03 9.9900000000000000e-01 2120 2.0000000000000000e+00 2.9999999999999999e-02 2120 5.0000000000000000e+01 8.9999999999999997e-02 2120 2.0000000000000000e+03 1.0000000000000000e+00 2121 2.0000000000000000e+00 2.9999999999999999e-02 2121 5.0000000000000000e+01 8.0000000000000002e-02 2121 2.0000000000000000e+03 1.0000000000000000e+00 2122 2.0000000000000000e+00 7.0000000000000007e-02 2122 5.0000000000000000e+01 1.3000000000000000e-01 2122 2.0000000000000000e+03 1.0000000000000000e+00 2123 2.0000000000000000e+00 7.0000000000000007e-02 2123 5.0000000000000000e+01 1.2000000000000000e-01 2123 2.0000000000000000e+03 1.0000000000000000e+00 2124 2.0000000000000000e+00 5.0000000000000003e-02 2124 5.0000000000000000e+01 1.0000000000000001e-01 2124 2.0000000000000000e+03 1.0000000000000000e+00 2125 2.0000000000000000e+00 5.0000000000000003e-02 2125 5.0000000000000000e+01 8.0000000000000002e-02 2125 2.0000000000000000e+03 1.0000000000000000e+00 2126 2.0000000000000000e+00 2.9999999999999999e-02 2126 5.0000000000000000e+01 5.0000000000000003e-02 2126 2.0000000000000000e+03 9.8999999999999999e-01 2130 2.0000000000000000e+00 8.0000000000000002e-02 2130 5.0000000000000000e+01 2.8999999999999998e-01 2130 2.0000000000000000e+03 1.0000000000000000e+00 2131 2.0000000000000000e+00 1.3000000000000000e-01 2131 5.0000000000000000e+01 2.8999999999999998e-01 2131 2.0000000000000000e+03 1.0000000000000000e+00 2132 2.0000000000000000e+00 1.4000000000000001e-01 2132 5.0000000000000000e+01 3.2000000000000001e-01 2132 2.0000000000000000e+03 1.0000000000000000e+00 2140 2141 2150 2151 2160 2.0000000000000000e+00 2.5800000000000001e-01 2160 2.0000000000000000e+01 7.0899999999999996e-01 2160 2.0000000000000000e+02 9.7299999999999998e-01 2160 2.0000000000000000e+03 1.0000000000000000e+00 2161 2.0000000000000000e+00 1.5600000000000000e-01 2161 2.0000000000000000e+01 7.6300000000000001e-01 2161 2.0000000000000000e+02 9.8699999999999999e-01 2161 2.0000000000000000e+03 1.0000000000000000e+00 2170 2.0000000000000000e+00 2.2000000000000000e-01 2170 2.0000000000000000e+01 7.3999999999999999e-01 2170 2.0000000000000000e+03 1.0000000000000000e+00 2171 2.0000000000000000e+00 3.5999999999999999e-01 2171 2.0000000000000000e+01 7.5000000000000000e-01 2171 2.0000000000000000e+03 1.0000000000000000e+00 2180 2.0000000000000000e+00 4.0999999999999998e-01 2180 2.0000000000000000e+01 8.4999999999999998e-01 2180 2.0000000000000000e+03 1.0000000000000000e+00 2181 2.0000000000000000e+00 4.8999999999999999e-01 2181 2.0000000000000000e+01 8.8000000000000000e-01 2181 2.0000000000000000e+03 1.0000000000000000e+00 2190 2.0000000000000000e+00 2.9999999999999999e-02 2190 5.0000000000000000e+01 8.0000000000000002e-02 2190 2.0000000000000000e+03 1.0000000000000000e+00 2191 2.0000000000000000e+00 2.9999999999999999e-02 2191 5.0000000000000000e+01 8.0000000000000002e-02 2191 2.0000000000000000e+03 1.0000000000000000e+00 2192 2.0000000000000000e+00 2.9999999999999999e-02 2192 5.0000000000000000e+01 8.0000000000000002e-02 2192 2.0000000000000000e+03 1.0000000000000000e+00 2193 2.0000000000000000e+00 2.9999999999999999e-02 2193 5.0000000000000000e+01 8.0000000000000002e-02 2193 2.0000000000000000e+03 1.0000000000000000e+00 2194 2.0000000000000000e+00 2.9999999999999999e-02 2194 5.0000000000000000e+01 8.0000000000000002e-02 2194 2.0000000000000000e+03 1.0000000000000000e+00 2195 2.0000000000000000e+00 2.9999999999999999e-02 2195 5.0000000000000000e+01 8.0000000000000002e-02 2195 2.0000000000000000e+03 1.0000000000000000e+00 2196 2.0000000000000000e+00 2.9999999999999999e-02 2196 5.0000000000000000e+01 8.0000000000000002e-02 2196 2.0000000000000000e+03 1.0000000000000000e+00 2197 2.0000000000000000e+00 2.9999999999999999e-02 2197 5.0000000000000000e+01 8.0000000000000002e-02 2197 2.0000000000000000e+03 1.0000000000000000e+00 2198 2.0000000000000000e+00 2.9999999999999999e-02 2198 5.0000000000000000e+01 8.0000000000000002e-02 2198 2.0000000000000000e+03 1.0000000000000000e+00 2200 2.0000000000000000e+00 2.0000000000000000e-02 2200 5.0000000000000000e+01 2.8000000000000001e-02 2200 1.0000000000000000e+02 5.3999999999999999e-02 2200 2.5000000000000000e+02 1.9400000000000001e-01 2200 5.0000000000000000e+02 5.6399999999999995e-01 2200 1.0000000000000000e+03 9.6699999999999997e-01 2200 2.0000000000000000e+03 1.0000000000000000e+00 2201 2.0000000000000000e+00 2.0000000000000000e-02 2201 5.0000000000000000e+01 2.8000000000000001e-02 2201 1.0000000000000000e+02 5.3999999999999999e-02 2201 2.5000000000000000e+02 1.9400000000000001e-01 2201 5.0000000000000000e+02 5.6399999999999995e-01 2201 1.0000000000000000e+03 9.6699999999999997e-01 2201 2.0000000000000000e+03 1.0000000000000000e+00 2202 2.0000000000000000e+00 2.0000000000000000e-02 2202 5.0000000000000000e+01 2.8000000000000001e-02 2202 1.0000000000000000e+02 5.3999999999999999e-02 2202 2.5000000000000000e+02 1.9400000000000001e-01 2202 5.0000000000000000e+02 5.6399999999999995e-01 2202 1.0000000000000000e+03 9.6699999999999997e-01 2202 2.0000000000000000e+03 1.0000000000000000e+00 2203 2.0000000000000000e+00 2.0000000000000000e-02 2203 5.0000000000000000e+01 2.8000000000000001e-02 2203 1.0000000000000000e+02 5.3999999999999999e-02 2203 2.5000000000000000e+02 1.9400000000000001e-01 2203 5.0000000000000000e+02 5.6399999999999995e-01 2203 1.0000000000000000e+03 9.6699999999999997e-01 2203 2.0000000000000000e+03 1.0000000000000000e+00 2210 2.0000000000000000e+00 3.7999999999999999e-02 2210 5.0000000000000000e+00 4.3999999999999997e-02 2210 2.0000000000000000e+01 5.2999999999999999e-02 2210 5.3000000000000000e+01 7.4999999999999997e-02 2210 1.0600000000000000e+02 1.6700000000000001e-01 2210 1.8000000000000000e+02 3.2000000000000001e-01 2210 2.5000000000000000e+02 4.8999999999999999e-01 2210 5.0000000000000000e+02 8.5999999999999999e-01 2210 1.0000000000000000e+03 9.7999999999999998e-01 2211 2.0000000000000000e+00 3.7999999999999999e-02 2211 5.0000000000000000e+00 4.3999999999999997e-02 2211 2.0000000000000000e+01 5.2999999999999999e-02 2211 5.3000000000000000e+01 7.4999999999999997e-02 2211 1.0600000000000000e+02 1.6700000000000001e-01 2211 1.8000000000000000e+02 3.2000000000000001e-01 2211 2.5000000000000000e+02 4.8999999999999999e-01 2211 5.0000000000000000e+02 8.5999999999999999e-01 2211 1.0000000000000000e+03 9.7999999999999998e-01 2212 2.0000000000000000e+00 3.7999999999999999e-02 2212 5.0000000000000000e+00 4.3999999999999997e-02 2212 2.0000000000000000e+01 5.2999999999999999e-02 2212 5.3000000000000000e+01 7.4999999999999997e-02 2212 1.0600000000000000e+02 1.6700000000000001e-01 2212 1.8000000000000000e+02 3.2000000000000001e-01 2212 2.5000000000000000e+02 4.8999999999999999e-01 2212 5.0000000000000000e+02 8.5999999999999999e-01 2212 1.0000000000000000e+03 9.7999999999999998e-01 2213 2.0000000000000000e+00 3.7999999999999999e-02 2213 5.0000000000000000e+00 4.3999999999999997e-02 2213 2.0000000000000000e+01 5.2999999999999999e-02 2213 5.3000000000000000e+01 7.4999999999999997e-02 2213 1.0600000000000000e+02 1.6700000000000001e-01 2213 1.8000000000000000e+02 3.2000000000000001e-01 2213 2.5000000000000000e+02 4.8999999999999999e-01 2213 5.0000000000000000e+02 8.5999999999999999e-01 2213 1.0000000000000000e+03 9.7999999999999998e-01 2214 2.0000000000000000e+00 3.7999999999999999e-02 2214 5.0000000000000000e+00 4.3999999999999997e-02 2214 2.0000000000000000e+01 5.2999999999999999e-02 2214 5.3000000000000000e+01 7.4999999999999997e-02 2214 1.0600000000000000e+02 1.6700000000000001e-01 2214 1.8000000000000000e+02 3.2000000000000001e-01 2214 2.5000000000000000e+02 4.8999999999999999e-01 2214 5.0000000000000000e+02 8.5999999999999999e-01 2214 1.0000000000000000e+03 9.7999999999999998e-01 2215 2.0000000000000000e+00 3.7999999999999999e-02 2215 5.0000000000000000e+00 4.3999999999999997e-02 2215 2.0000000000000000e+01 5.2999999999999999e-02 2215 5.3000000000000000e+01 7.4999999999999997e-02 2215 1.0600000000000000e+02 1.6700000000000001e-01 2215 1.8000000000000000e+02 3.2000000000000001e-01 2215 2.5000000000000000e+02 4.8999999999999999e-01 2215 5.0000000000000000e+02 8.5999999999999999e-01 2215 1.0000000000000000e+03 9.7999999999999998e-01 2216 2.0000000000000000e+00 3.7999999999999999e-02 2216 5.0000000000000000e+00 4.3999999999999997e-02 2216 2.0000000000000000e+01 5.2999999999999999e-02 2216 5.3000000000000000e+01 7.4999999999999997e-02 2216 1.0600000000000000e+02 1.6700000000000001e-01 2216 1.8000000000000000e+02 3.2000000000000001e-01 2216 2.5000000000000000e+02 4.8999999999999999e-01 2216 5.0000000000000000e+02 8.5999999999999999e-01 2216 1.0000000000000000e+03 9.7999999999999998e-01 2217 2.0000000000000000e+00 3.7999999999999999e-02 2217 5.0000000000000000e+00 4.3999999999999997e-02 2217 2.0000000000000000e+01 5.2999999999999999e-02 2217 5.3000000000000000e+01 7.4999999999999997e-02 2217 1.0600000000000000e+02 1.6700000000000001e-01 2217 1.8000000000000000e+02 3.2000000000000001e-01 2217 2.5000000000000000e+02 4.8999999999999999e-01 2217 5.0000000000000000e+02 8.5999999999999999e-01 2217 1.0000000000000000e+03 9.7999999999999998e-01 2220 5.3000000000000000e+01 1.6700000000000001e-01 2220 6.1000000000000000e+01 2.3999999999999999e-01 2220 7.5000000000000000e+01 3.3500000000000002e-01 2220 1.0600000000000000e+02 4.1199999999999998e-01 2220 1.2400000000000000e+02 4.6700000000000003e-01 2220 1.4700000000000000e+02 5.2000000000000002e-01 2220 1.7500000000000000e+02 5.8699999999999997e-01 2220 2.4600000000000000e+02 6.7000000000000004e-01 2220 4.2500000000000000e+02 7.2799999999999998e-01 2220 5.0000000000000000e+02 7.7400000000000002e-01 2220 7.0100000000000000e+02 8.1399999999999995e-01 2220 8.4100000000000000e+02 8.4299999999999997e-01 2220 9.9100000000000000e+02 8.9300000000000002e-01 2220 2.0000000000000000e+03 9.3100000000000005e-01 2220 2.3600000000000000e+03 9.5799999999999996e-01 2220 3.3500000000000000e+03 1.0000000000000000e+00 2221 5.3000000000000000e+01 9.5000000000000001e-02 2221 6.1000000000000000e+01 1.4199999999999999e-01 2221 7.5000000000000000e+01 2.0799999999999999e-01 2221 1.0600000000000000e+02 2.6500000000000001e-01 2221 1.2400000000000000e+02 3.0900000000000000e-01 2221 1.4700000000000000e+02 3.5299999999999998e-01 2221 1.7500000000000000e+02 4.1399999999999998e-01 2221 2.4600000000000000e+02 4.9399999999999999e-01 2221 4.2500000000000000e+02 5.5900000000000005e-01 2221 5.0000000000000000e+02 6.1599999999999999e-01 2221 7.0100000000000000e+02 6.7000000000000004e-01 2221 8.4100000000000000e+02 7.0999999999999996e-01 2221 9.9100000000000000e+02 7.8700000000000003e-01 2221 2.0000000000000000e+03 8.5299999999999998e-01 2221 2.3600000000000000e+03 9.0600000000000003e-01 2221 3.3500000000000000e+03 1.0000000000000000e+00 2230 2231 2232 2240 5.0000000000000000e+00 1.4999999999999999e-01 2240 5.0000000000000000e+01 6.8000000000000005e-01 2240 1.0000000000000000e+03 1.0000000000000000e+00 2241 5.0000000000000000e+00 1.4999999999999999e-01 2241 5.0000000000000000e+01 6.8000000000000005e-01 2241 1.0000000000000000e+03 1.0000000000000000e+00 2242 5.0000000000000000e+00 1.4999999999999999e-01 2242 5.0000000000000000e+01 6.8000000000000005e-01 2242 1.0000000000000000e+03 1.0000000000000000e+00 2243 5.0000000000000000e+00 1.4999999999999999e-01 2243 5.0000000000000000e+01 6.8000000000000005e-01 2243 1.0000000000000000e+03 1.0000000000000000e+00 2250 5.0000000000000000e+00 4.0000000000000001e-02 2250 5.0000000000000000e+01 1.0000000000000001e-01 2250 1.0000000000000000e+03 1.0000000000000000e+00 2251 5.0000000000000000e+00 4.0000000000000001e-02 2251 5.0000000000000000e+01 1.0000000000000001e-01 2251 1.0000000000000000e+03 1.0000000000000000e+00 2252 5.0000000000000000e+00 4.0000000000000001e-02 2252 5.0000000000000000e+01 1.0000000000000001e-01 2252 1.0000000000000000e+03 1.0000000000000000e+00 2253 5.0000000000000000e+00 4.0000000000000001e-02 2253 5.0000000000000000e+01 1.0000000000000001e-01 2253 1.0000000000000000e+03 1.0000000000000000e+00 2260 5.0000000000000000e+00 1.3000000000000000e-01 2260 5.0000000000000000e+01 2.7000000000000002e-01 2260 2.0000000000000000e+03 1.0000000000000000e+00 2261 5.0000000000000000e+00 1.3000000000000000e-01 2261 5.0000000000000000e+01 2.7000000000000002e-01 2261 2.0000000000000000e+03 1.0000000000000000e+00 2262 5.0000000000000000e+00 1.3000000000000000e-01 2262 5.0000000000000000e+01 2.7000000000000002e-01 2262 2.0000000000000000e+03 1.0000000000000000e+00 2270 5.0000000000000000e+00 2.9999999999999999e-01 2270 5.0000000000000000e+01 5.6000000000000005e-01 2270 1.0000000000000000e+03 1.0000000000000000e+00 2271 5.0000000000000000e+00 2.9999999999999999e-01 2271 5.0000000000000000e+01 5.6000000000000005e-01 2271 1.0000000000000000e+03 1.0000000000000000e+00 2272 5.0000000000000000e+00 2.9999999999999999e-01 2272 5.0000000000000000e+01 5.6000000000000005e-01 2272 1.0000000000000000e+03 1.0000000000000000e+00 2273 5.0000000000000000e+00 2.9999999999999999e-01 2273 5.0000000000000000e+01 5.6000000000000005e-01 2273 1.0000000000000000e+03 1.0000000000000000e+00 2280 5.0000000000000000e+00 2.0999999999999999e-01 2280 5.0000000000000000e+01 4.5000000000000001e-01 2280 1.0000000000000000e+03 1.0000000000000000e+00 2281 5.0000000000000000e+00 2.0999999999999999e-01 2281 5.0000000000000000e+01 4.5000000000000001e-01 2281 1.0000000000000000e+03 1.0000000000000000e+00 2282 5.0000000000000000e+00 2.0999999999999999e-01 2282 5.0000000000000000e+01 4.5000000000000001e-01 2282 1.0000000000000000e+03 1.0000000000000000e+00 2283 5.0000000000000000e+00 2.0999999999999999e-01 2283 5.0000000000000000e+01 4.5000000000000001e-01 2283 1.0000000000000000e+03 1.0000000000000000e+00 2290 5.0000000000000000e+00 1.6000000000000000e-01 2290 5.0000000000000000e+01 2.0000000000000001e-01 2290 2.0000000000000000e+03 1.0000000000000000e+00 2291 5.0000000000000000e+00 1.6000000000000000e-01 2291 5.0000000000000000e+01 2.0000000000000001e-01 2291 2.0000000000000000e+03 1.0000000000000000e+00 2292 5.0000000000000000e+00 1.6000000000000000e-01 2292 5.0000000000000000e+01 2.0000000000000001e-01 2292 2.0000000000000000e+03 1.0000000000000000e+00 2293 5.0000000000000000e+00 1.6000000000000000e-01 2293 5.0000000000000000e+01 2.0000000000000001e-01 2293 2.0000000000000000e+03 1.0000000000000000e+00 2300 5.0000000000000000e+00 1.6000000000000000e-01 2300 5.0000000000000000e+01 3.5999999999999999e-01 2300 2.0000000000000000e+03 1.0000000000000000e+00 2301 5.0000000000000000e+00 1.6000000000000000e-01 2301 5.0000000000000000e+01 3.5999999999999999e-01 2301 2.0000000000000000e+03 1.0000000000000000e+00 2302 5.0000000000000000e+00 1.6000000000000000e-01 2302 5.0000000000000000e+01 3.4000000000000002e-01 2302 2.0000000000000000e+03 1.0000000000000000e+00 2303 5.0000000000000000e+00 1.6000000000000000e-01 2303 5.0000000000000000e+01 3.4000000000000002e-01 2303 2.0000000000000000e+03 1.0000000000000000e+00 2304 5.0000000000000000e+00 1.7999999999999999e-01 2304 5.0000000000000000e+01 3.5999999999999999e-01 2304 2.0000000000000000e+03 1.0000000000000000e+00 2305 5.0000000000000000e+00 1.7999999999999999e-01 2305 5.0000000000000000e+01 3.5999999999999999e-01 2305 2.0000000000000000e+03 1.0000000000000000e+00 2306 5.0000000000000000e+00 1.6000000000000000e-01 2306 5.0000000000000000e+01 3.4000000000000002e-01 2306 2.0000000000000000e+03 1.0000000000000000e+00 2307 5.0000000000000000e+00 1.6000000000000000e-01 2307 5.0000000000000000e+01 3.4000000000000002e-01 2307 2.0000000000000000e+03 1.0000000000000000e+00 2310 4.5000000000000000e+01 0.0000000000000000e+00 2310 8.5000000000000000e+01 2.0000000000000000e-02 2310 1.2500000000000000e+02 7.0000000000000007e-02 2310 2.5000000000000000e+02 3.8000000000000000e-01 2310 5.0000000000000000e+02 9.0000000000000002e-01 2310 1.0000000000000000e+03 1.0000000000000000e+00 2320 2.0000000000000000e+00 1.4999999999999999e-01 2320 6.0000000000000000e+00 2.0999999999999999e-01 2320 2.0000000000000000e+01 4.0999999999999998e-01 2320 6.3000000000000000e+01 6.7000000000000004e-01 2320 2.0000000000000000e+02 8.0000000000000004e-01 2320 6.3000000000000000e+02 9.4999999999999996e-01 2320 2.0000000000000000e+03 1.0000000000000000e+00 2321 2.0000000000000000e+00 2.0000000000000001e-01 2321 6.0000000000000000e+00 2.5000000000000000e-01 2321 2.0000000000000000e+01 3.9000000000000001e-01 2321 6.3000000000000000e+01 6.3000000000000000e-01 2321 2.0000000000000000e+02 8.2999999999999996e-01 2321 6.3000000000000000e+02 9.4999999999999996e-01 2321 2.0000000000000000e+03 1.0000000000000000e+00 2330 2331 2332 2333 2334 6.3000000000000000e+01 2.0000000000000000e-02 2334 2.0000000000000000e+02 1.9000000000000000e-01 2334 6.3000000000000000e+02 9.2000000000000004e-01 2334 2.0000000000000000e+03 1.0000000000000000e+00 2340 2.0000000000000000e+00 4.8999999999999999e-01 2340 6.0000000000000000e+00 5.6000000000000005e-01 2340 2.0000000000000000e+01 6.4000000000000001e-01 2340 6.3000000000000000e+01 6.5000000000000002e-01 2340 2.0000000000000000e+02 7.9000000000000004e-01 2340 6.3000000000000000e+02 9.7999999999999998e-01 2340 2.0000000000000000e+03 1.0000000000000000e+00 2341 2.0000000000000000e+00 2.9999999999999999e-01 2341 6.0000000000000000e+00 3.8000000000000000e-01 2341 2.0000000000000000e+01 4.6000000000000002e-01 2341 6.3000000000000000e+01 5.3000000000000003e-01 2341 2.0000000000000000e+02 7.0999999999999996e-01 2341 6.3000000000000000e+02 9.8999999999999999e-01 2341 2.0000000000000000e+03 1.0000000000000000e+00 2342 2.0000000000000000e+00 0.0000000000000000e+00 2342 6.0000000000000000e+00 0.0000000000000000e+00 2342 2.0000000000000000e+01 1.0000000000000000e-02 2342 6.3000000000000000e+01 2.9999999999999999e-02 2342 2.0000000000000000e+02 3.3000000000000002e-01 2342 6.3000000000000000e+02 9.4999999999999996e-01 2342 2.0000000000000000e+03 1.0000000000000000e+00 2350 2.0000000000000000e+00 4.5000000000000001e-01 2350 6.0000000000000000e+00 4.7999999999999998e-01 2350 2.0000000000000000e+01 6.6000000000000003e-01 2350 6.3000000000000000e+01 9.3000000000000005e-01 2350 2.0000000000000000e+02 9.6999999999999997e-01 2350 6.3000000000000000e+02 9.8999999999999999e-01 2350 2.0000000000000000e+03 1.0000000000000000e+00 2351 2.0000000000000000e+00 1.6000000000000000e-01 2351 6.0000000000000000e+00 3.4000000000000002e-01 2351 2.0000000000000000e+01 4.6999999999999997e-01 2351 6.3000000000000000e+01 8.0000000000000004e-01 2351 2.0000000000000000e+02 9.7999999999999998e-01 2351 6.3000000000000000e+02 9.8999999999999999e-01 2351 2.0000000000000000e+03 1.0000000000000000e+00 2360 2.0000000000000000e+00 4.5000000000000001e-01 2360 6.0000000000000000e+00 5.5000000000000004e-01 2360 2.0000000000000000e+01 6.8000000000000005e-01 2360 6.3000000000000000e+01 8.2999999999999996e-01 2360 2.0000000000000000e+02 9.2000000000000004e-01 2360 6.3000000000000000e+02 1.0000000000000000e+00 2361 2.0000000000000000e+00 5.6999999999999995e-01 2361 6.0000000000000000e+00 7.2999999999999998e-01 2361 2.0000000000000000e+01 8.7000000000000000e-01 2361 6.3000000000000000e+01 9.7999999999999998e-01 2361 2.0000000000000000e+02 1.0000000000000000e+00 2362 2.0000000000000000e+00 6.3000000000000000e-01 2362 6.0000000000000000e+00 7.9000000000000004e-01 2362 2.0000000000000000e+01 9.2000000000000004e-01 2362 6.3000000000000000e+01 9.5999999999999996e-01 2362 2.0000000000000000e+02 9.8999999999999999e-01 2362 6.3000000000000000e+02 1.0000000000000000e+00 2370 2.0000000000000000e+00 2.3000000000000001e-01 2370 5.0000000000000000e+01 4.1999999999999998e-01 2370 2.0000000000000000e+03 1.0000000000000000e+00 2371 2.0000000000000000e+00 2.3999999999999999e-01 2371 5.0000000000000000e+01 4.4000000000000000e-01 2371 2.0000000000000000e+03 1.0000000000000000e+00 2372 2.0000000000000000e+00 2.6000000000000001e-01 2372 5.0000000000000000e+01 3.8000000000000000e-01 2372 2.0000000000000000e+03 1.0000000000000000e+00 2373 2.0000000000000000e+00 1.4000000000000001e-01 2373 5.0000000000000000e+01 1.6000000000000000e-01 2373 2.0000000000000000e+03 1.0000000000000000e+00 2374 2.0000000000000000e+00 1.9000000000000000e-01 2374 5.0000000000000000e+01 2.5000000000000000e-01 2374 2.0000000000000000e+03 1.0000000000000000e+00 2380 2.0000000000000000e+00 8.0000000000000002e-02 2380 5.0000000000000000e+01 2.5000000000000000e-01 2380 2.0000000000000000e+03 1.0000000000000000e+00 2381 2.0000000000000000e+00 1.0000000000000001e-01 2381 5.0000000000000000e+01 3.1000000000000000e-01 2381 2.0000000000000000e+03 1.0000000000000000e+00 2382 2.0000000000000000e+00 1.4000000000000001e-01 2382 5.0000000000000000e+01 4.4000000000000000e-01 2382 2.0000000000000000e+03 1.0000000000000000e+00 2383 2.0000000000000000e+00 7.0000000000000007e-02 2383 5.0000000000000000e+01 2.3000000000000001e-01 2383 2.0000000000000000e+03 1.0000000000000000e+00 2384 2.0000000000000000e+00 1.0000000000000000e-02 2384 5.0000000000000000e+01 7.0000000000000007e-02 2384 2.0000000000000000e+03 1.0000000000000000e+00 2385 2.0000000000000000e+00 1.0000000000000000e-02 2385 5.0000000000000000e+01 7.0000000000000007e-02 2385 2.0000000000000000e+03 1.0000000000000000e+00 2390 2.0000000000000000e+00 3.1000000000000000e-01 2390 5.0000000000000000e+01 5.7999999999999996e-01 2390 2.0000000000000000e+03 1.0000000000000000e+00 2391 2.0000000000000000e+00 3.3000000000000002e-01 2391 5.0000000000000000e+01 6.6000000000000003e-01 2391 2.0000000000000000e+03 1.0000000000000000e+00 2392 2.0000000000000000e+00 3.4999999999999998e-01 2392 5.0000000000000000e+01 8.0000000000000004e-01 2392 2.0000000000000000e+03 1.0000000000000000e+00 2393 2.0000000000000000e+00 2.8000000000000003e-01 2393 5.0000000000000000e+01 5.6000000000000005e-01 2393 2.0000000000000000e+03 1.0000000000000000e+00 2394 2.0000000000000000e+00 2.3000000000000001e-01 2394 5.0000000000000000e+01 3.5999999999999999e-01 2394 2.0000000000000000e+03 1.0000000000000000e+00 2395 2.0000000000000000e+00 2.8000000000000003e-01 2395 5.0000000000000000e+01 5.2000000000000002e-01 2395 2.0000000000000000e+03 1.0000000000000000e+00 2400 2.0000000000000000e+00 1.6000000000000000e-01 2400 5.0000000000000000e+01 5.4000000000000004e-01 2400 2.0000000000000000e+03 1.0000000000000000e+00 2401 2.0000000000000000e+00 1.7000000000000001e-01 2401 5.0000000000000000e+01 5.6999999999999995e-01 2401 2.0000000000000000e+03 1.0000000000000000e+00 2402 2.0000000000000000e+00 2.5000000000000000e-01 2402 5.0000000000000000e+01 7.0999999999999996e-01 2402 2.0000000000000000e+03 1.0000000000000000e+00 2403 2.0000000000000000e+00 1.1000000000000000e-01 2403 5.0000000000000000e+01 4.2999999999999999e-01 2403 2.0000000000000000e+03 1.0000000000000000e+00 2404 2.0000000000000000e+00 5.0000000000000003e-02 2404 5.0000000000000000e+01 5.9999999999999998e-01 2404 2.0000000000000000e+03 1.0000000000000000e+00 2405 2.0000000000000000e+00 5.0000000000000003e-02 2405 5.0000000000000000e+01 5.9999999999999998e-01 2405 2.0000000000000000e+03 1.0000000000000000e+00 2410 2.0000000000000000e+00 1.7999999999999999e-01 2410 5.0000000000000000e+01 4.4000000000000000e-01 2410 2.0000000000000000e+03 1.0000000000000000e+00 2411 2.0000000000000000e+00 2.0999999999999999e-01 2411 5.0000000000000000e+01 4.6000000000000002e-01 2411 2.0000000000000000e+03 1.0000000000000000e+00 2412 2.0000000000000000e+00 2.8000000000000003e-01 2412 5.0000000000000000e+01 5.3000000000000003e-01 2412 2.0000000000000000e+03 1.0000000000000000e+00 2413 2.0000000000000000e+00 7.0000000000000007e-02 2413 5.0000000000000000e+01 2.3999999999999999e-01 2413 2.0000000000000000e+03 1.0000000000000000e+00 2414 2.0000000000000000e+00 4.0000000000000001e-02 2414 5.0000000000000000e+01 3.4000000000000002e-01 2414 2.0000000000000000e+03 1.0000000000000000e+00 2415 2.0000000000000000e+00 4.0000000000000001e-02 2415 5.0000000000000000e+01 3.4000000000000002e-01 2415 2.0000000000000000e+03 1.0000000000000000e+00 2420 2.0000000000000000e+00 8.0000000000000002e-02 2420 5.0000000000000000e+01 1.9000000000000000e-01 2420 2.0000000000000000e+03 1.0000000000000000e+00 2421 2.0000000000000000e+00 8.0000000000000002e-02 2421 5.0000000000000000e+01 2.0000000000000001e-01 2421 2.0000000000000000e+03 1.0000000000000000e+00 2422 2.0000000000000000e+00 5.9999999999999998e-02 2422 5.0000000000000000e+01 1.3000000000000000e-01 2422 2.0000000000000000e+03 1.0000000000000000e+00 2423 2.0000000000000000e+00 5.9999999999999998e-02 2423 5.0000000000000000e+01 1.1000000000000000e-01 2423 2.0000000000000000e+03 1.0000000000000000e+00 2424 2.0000000000000000e+00 2.9999999999999999e-02 2424 5.0000000000000000e+01 7.0000000000000007e-02 2424 2.0000000000000000e+03 1.0000000000000000e+00 2425 2.0000000000000000e+00 2.9999999999999999e-02 2425 5.0000000000000000e+01 7.0000000000000007e-02 2425 2.0000000000000000e+03 1.0000000000000000e+00 2430 2.0000000000000000e+00 3.1000000000000000e-01 2430 5.0000000000000000e+01 6.8000000000000005e-01 2430 2.0000000000000000e+03 1.0000000000000000e+00 2431 2.0000000000000000e+00 3.4000000000000002e-01 2431 5.0000000000000000e+01 7.7000000000000002e-01 2431 2.0000000000000000e+03 1.0000000000000000e+00 2432 2.0000000000000000e+00 4.1999999999999998e-01 2432 5.0000000000000000e+01 7.9000000000000004e-01 2432 2.0000000000000000e+03 1.0000000000000000e+00 2433 2.0000000000000000e+00 3.4000000000000002e-01 2433 5.0000000000000000e+01 6.8999999999999995e-01 2433 2.0000000000000000e+03 1.0000000000000000e+00 2434 2.0000000000000000e+00 2.3999999999999999e-01 2434 5.0000000000000000e+01 4.6999999999999997e-01 2434 2.0000000000000000e+03 1.0000000000000000e+00 2435 2.0000000000000000e+00 2.3999999999999999e-01 2435 5.0000000000000000e+01 4.2999999999999999e-01 2435 2.0000000000000000e+03 1.0000000000000000e+00 2440 2.0000000000000000e+00 8.9999999999999997e-02 2440 5.0000000000000000e+01 2.6000000000000001e-01 2440 2.0000000000000000e+03 1.0000000000000000e+00 2441 2.0000000000000000e+00 1.4999999999999999e-01 2441 5.0000000000000000e+01 2.9999999999999999e-01 2441 2.0000000000000000e+03 1.0000000000000000e+00 2442 2.0000000000000000e+00 1.3000000000000000e-01 2442 5.0000000000000000e+01 1.7999999999999999e-01 2442 2.0000000000000000e+03 1.0000000000000000e+00 2443 2.0000000000000000e+00 1.1000000000000000e-01 2443 5.0000000000000000e+01 1.4000000000000001e-01 2443 2.0000000000000000e+03 1.0000000000000000e+00 2444 2.0000000000000000e+00 1.1000000000000000e-01 2444 5.0000000000000000e+01 1.2000000000000000e-01 2444 2.0000000000000000e+03 1.0000000000000000e+00 2445 2.0000000000000000e+00 1.1000000000000000e-01 2445 5.0000000000000000e+01 1.2000000000000000e-01 2445 2.0000000000000000e+03 1.0000000000000000e+00 2450 2.0000000000000000e+00 1.6000000000000000e-01 2450 5.0000000000000000e+01 5.5000000000000004e-01 2450 2.0000000000000000e+03 1.0000000000000000e+00 2451 2.0000000000000000e+00 1.9000000000000000e-01 2451 5.0000000000000000e+01 4.0000000000000002e-01 2451 2.0000000000000000e+03 1.0000000000000000e+00 2452 2.0000000000000000e+00 2.3999999999999999e-01 2452 5.0000000000000000e+01 4.6999999999999997e-01 2452 2.0000000000000000e+03 1.0000000000000000e+00 2453 2.0000000000000000e+00 2.2000000000000000e-01 2453 5.0000000000000000e+01 4.8999999999999999e-01 2453 2.0000000000000000e+03 1.0000000000000000e+00 2454 2.0000000000000000e+00 1.7000000000000001e-01 2454 5.0000000000000000e+01 4.1999999999999998e-01 2454 2.0000000000000000e+03 1.0000000000000000e+00 2455 2.0000000000000000e+00 1.7000000000000001e-01 2455 5.0000000000000000e+01 4.1999999999999998e-01 2455 2.0000000000000000e+03 1.0000000000000000e+00 2460 2.0000000000000000e+00 3.8000000000000000e-01 2460 5.0000000000000000e+01 9.6999999999999997e-01 2460 2.0000000000000000e+03 1.0000000000000000e+00 2461 2.0000000000000000e+00 3.8000000000000000e-01 2461 5.0000000000000000e+01 9.6999999999999997e-01 2461 2.0000000000000000e+03 1.0000000000000000e+00 2462 2.0000000000000000e+00 3.8000000000000000e-01 2462 5.0000000000000000e+01 9.6999999999999997e-01 2462 2.0000000000000000e+03 1.0000000000000000e+00 2463 2.0000000000000000e+00 2.9999999999999999e-01 2463 2.0000000000000000e+01 7.0999999999999996e-01 2463 6.0000000000000000e+01 8.3499999999999996e-01 2463 2.0000000000000000e+02 9.0000000000000002e-01 2463 6.0000000000000000e+02 9.5999999999999996e-01 2463 2.0000000000000000e+03 1.0000000000000000e+00 2464 2.0000000000000000e+00 2.2500000000000001e-01 2464 2.0000000000000000e+01 6.9999999999999996e-01 2464 6.0000000000000000e+01 8.4499999999999997e-01 2464 2.0000000000000000e+02 8.8000000000000000e-01 2464 6.0000000000000000e+02 9.2500000000000004e-01 2464 2.0000000000000000e+03 1.0000000000000000e+00 2470 2.0000000000000000e+00 3.8000000000000000e-01 2470 5.0000000000000000e+01 9.6999999999999997e-01 2470 2.0000000000000000e+03 1.0000000000000000e+00 2471 2.0000000000000000e+00 3.8000000000000000e-01 2471 5.0000000000000000e+01 9.6999999999999997e-01 2471 2.0000000000000000e+03 1.0000000000000000e+00 2472 2.0000000000000000e+00 3.8000000000000000e-01 2472 5.0000000000000000e+01 9.6999999999999997e-01 2472 2.0000000000000000e+03 1.0000000000000000e+00 2480 2.0000000000000000e+00 8.0000000000000002e-02 2480 5.0000000000000000e+01 2.0000000000000001e-01 2480 2.0000000000000000e+03 1.0000000000000000e+00 2481 2.0000000000000000e+00 5.9999999999999998e-02 2481 5.0000000000000000e+01 1.2000000000000000e-01 2481 2.0000000000000000e+03 1.0000000000000000e+00 2482 2.0000000000000000e+00 5.0000000000000003e-02 2482 5.0000000000000000e+01 1.2000000000000000e-01 2482 2.0000000000000000e+03 1.0000000000000000e+00 2483 2.0000000000000000e+00 5.0000000000000003e-02 2483 5.0000000000000000e+01 5.9999999999999998e-02 2483 2.0000000000000000e+03 1.0000000000000000e+00 2491 1.0000000000000000e+00 1.9000000000000000e-01 2491 3.0000000000000000e+00 2.9999999999999999e-01 2491 5.0000000000000000e+00 3.7000000000000000e-01 2491 8.0000000000000000e+00 4.7999999999999998e-01 2491 1.4000000000000000e+01 5.9999999999999998e-01 2491 2.4000000000000000e+01 7.5000000000000000e-01 2491 5.0000000000000000e+01 8.9000000000000001e-01 2491 1.0000000000000000e+02 9.6999999999999997e-01 2491 2.5000000000000000e+02 9.8999999999999999e-01 2491 5.0000000000000000e+02 1.0000000000000000e+00 2491 1.0000000000000000e+03 1.0000000000000000e+00 2492 1.0000000000000000e+00 1.9000000000000000e-01 2492 3.0000000000000000e+00 2.9999999999999999e-01 2492 5.0000000000000000e+00 3.7000000000000000e-01 2492 8.0000000000000000e+00 4.7999999999999998e-01 2492 1.4000000000000000e+01 5.9999999999999998e-01 2492 2.4000000000000000e+01 7.5000000000000000e-01 2492 5.0000000000000000e+01 8.9000000000000001e-01 2492 1.0000000000000000e+02 9.6999999999999997e-01 2492 2.5000000000000000e+02 9.8999999999999999e-01 2492 5.0000000000000000e+02 1.0000000000000000e+00 2492 1.0000000000000000e+03 1.0000000000000000e+00 2493 1.0000000000000000e+00 2.3000000000000001e-01 2493 3.0000000000000000e+00 3.3000000000000002e-01 2493 5.0000000000000000e+00 4.0000000000000002e-01 2493 9.0000000000000000e+00 5.1000000000000001e-01 2493 1.5000000000000000e+01 6.5000000000000002e-01 2493 2.6000000000000000e+01 7.8000000000000003e-01 2493 5.0000000000000000e+01 9.1000000000000003e-01 2493 1.0000000000000000e+02 9.6999999999999997e-01 2493 2.5000000000000000e+02 9.8999999999999999e-01 2493 5.0000000000000000e+02 9.8999999999999999e-01 2493 1.0000000000000000e+03 1.0000000000000000e+00 2530 1.0000000000000000e+00 2.0000000000000001e-01 2530 5.0000000000000000e+00 2.8000000000000003e-01 2530 1.0000000000000000e+01 3.2000000000000001e-01 2530 2.0000000000000000e+01 4.0999999999999998e-01 2530 5.0000000000000000e+01 5.5000000000000004e-01 2530 1.0000000000000000e+02 6.8999999999999995e-01 2530 5.0000000000000000e+02 9.7999999999999998e-01 2530 1.0000000000000000e+03 9.8999999999999999e-01 2530 2.0000000000000000e+03 1.0000000000000000e+00 2531 1.0000000000000000e+00 1.4000000000000001e-01 2531 5.0000000000000000e+00 2.0999999999999999e-01 2531 1.0000000000000000e+01 2.9999999999999999e-01 2531 2.0000000000000000e+01 4.0999999999999998e-01 2531 5.0000000000000000e+01 5.8999999999999997e-01 2531 1.0000000000000000e+02 7.1999999999999997e-01 2531 5.0000000000000000e+02 9.6999999999999997e-01 2531 1.0000000000000000e+03 9.8999999999999999e-01 2531 2.0000000000000000e+03 1.0000000000000000e+00 2532 1.0000000000000000e+00 1.1000000000000000e-01 2532 5.0000000000000000e+00 2.0000000000000001e-01 2532 1.0000000000000000e+01 2.3999999999999999e-01 2532 2.0000000000000000e+01 3.1000000000000000e-01 2532 5.0000000000000000e+01 4.0000000000000002e-01 2532 1.0000000000000000e+02 5.6000000000000005e-01 2532 5.0000000000000000e+02 8.9000000000000001e-01 2532 1.0000000000000000e+03 9.5999999999999996e-01 2532 2.0000000000000000e+03 1.0000000000000000e+00 2540 2.0000000000000000e+00 1.7000000000000001e-01 2540 2.0000000000000000e+01 3.2900000000000001e-01 2540 2.0000000000000000e+03 1.0000000000000000e+00 2541 2.0000000000000000e+00 1.4499999999999999e-01 2541 2.0000000000000000e+01 3.5999999999999999e-01 2541 2.0000000000000000e+03 1.0000000000000000e+00 2542 2.0000000000000000e+00 1.7000000000000001e-01 2542 2.0000000000000000e+01 3.9500000000000002e-01 2542 2.0000000000000000e+03 1.0000000000000000e+00 2550 2.0000000000000000e+00 1.1200000000000000e-01 2550 2.0000000000000000e+01 2.5900000000000001e-01 2550 2.0000000000000000e+03 1.0000000000000000e+00 2551 2.0000000000000000e+00 1.2900000000000000e-01 2551 2.0000000000000000e+01 3.0099999999999999e-01 2551 2.0000000000000000e+03 1.0000000000000000e+00 2552 2.0000000000000000e+00 1.7100000000000001e-01 2552 2.0000000000000000e+01 4.6700000000000003e-01 2552 2.0000000000000000e+03 1.0000000000000000e+00 2560 2.0000000000000000e+00 9.4000000000000000e-02 2560 5.0000000000000000e+01 2.8399999999999997e-01 2560 2.0000000000000000e+03 1.0000000000000000e+00 2561 2.0000000000000000e+00 0.0000000000000000e+00 2561 5.0000000000000000e+01 1.2900000000000000e-01 2561 2.0000000000000000e+03 1.0000000000000000e+00 2562 2.0000000000000000e+00 0.0000000000000000e+00 2562 5.0000000000000000e+01 1.0999999999999999e-02 2562 2.0000000000000000e+03 1.0000000000000000e+00 2570 2.0000000000000000e+00 9.0999999999999998e-02 2570 5.0000000000000000e+01 1.8700000000000000e-01 2570 2.0000000000000000e+03 1.0000000000000000e+00 2571 2.0000000000000000e+00 7.5999999999999998e-02 2571 5.0000000000000000e+01 1.7699999999999999e-01 2571 2.0000000000000000e+03 1.0000000000000000e+00 2572 2.0000000000000000e+00 4.2000000000000003e-02 2572 5.0000000000000000e+01 1.0800000000000000e-01 2572 2.0000000000000000e+03 1.0000000000000000e+00 2573 2.0000000000000000e+00 5.2999999999999999e-02 2573 5.0000000000000000e+01 1.2500000000000000e-01 2573 2.0000000000000000e+03 1.0000000000000000e+00 2574 2.0000000000000000e+00 5.0000000000000001e-03 2574 5.0000000000000000e+01 6.5000000000000002e-02 2574 2.0000000000000000e+03 1.0000000000000000e+00 2580 2.0000000000000000e+00 1.8300000000000000e-01 2580 5.0000000000000000e+01 6.6400000000000003e-01 2580 2.0000000000000000e+03 1.0000000000000000e+00 2581 2.0000000000000000e+00 1.2300000000000000e-01 2581 5.0000000000000000e+01 6.2800000000000000e-01 2581 2.0000000000000000e+03 1.0000000000000000e+00 2582 2.0000000000000000e+00 1.7999999999999999e-01 2582 5.0000000000000000e+01 8.1000000000000005e-01 2582 2.0000000000000000e+03 1.0000000000000000e+00 2583 2.0000000000000000e+00 8.0000000000000002e-02 2583 5.0000000000000000e+01 3.1700000000000000e-01 2583 2.0000000000000000e+03 1.0000000000000000e+00 2584 2.0000000000000000e+00 3.0000000000000001e-03 2584 5.0000000000000000e+01 7.2999999999999995e-02 2584 2.0000000000000000e+03 1.0000000000000000e+00 2590 2.0000000000000000e+00 1.8700000000000000e-01 2590 5.0000000000000000e+01 5.1300000000000001e-01 2590 2.0000000000000000e+03 1.0000000000000000e+00 2591 2.0000000000000000e+00 2.1800000000000000e-01 2591 5.0000000000000000e+01 5.0900000000000001e-01 2591 2.0000000000000000e+03 1.0000000000000000e+00 2592 2.0000000000000000e+00 2.4800000000000000e-01 2592 5.0000000000000000e+01 9.5699999999999996e-01 2592 2.0000000000000000e+03 1.0000000000000000e+00 2593 2.0000000000000000e+00 3.5299999999999998e-01 2593 5.0000000000000000e+01 9.4599999999999995e-01 2593 2.0000000000000000e+03 1.0000000000000000e+00 2600 2601 2.0000000000000000e+00 2.6200000000000001e-01 2601 5.0000000000000000e+01 6.7300000000000004e-01 2601 2.0000000000000000e+03 1.0000000000000000e+00 2602 2.0000000000000000e+00 2.4299999999999999e-01 2602 5.0000000000000000e+01 6.6100000000000003e-01 2602 2.0000000000000000e+03 1.0000000000000000e+00 2603 2.0000000000000000e+00 1.6500000000000001e-01 2603 5.0000000000000000e+01 5.4900000000000004e-01 2603 2.0000000000000000e+03 1.0000000000000000e+00 2604 2.0000000000000000e+00 1.6100000000000000e-01 2604 5.0000000000000000e+01 5.4500000000000004e-01 2604 2.0000000000000000e+03 1.0000000000000000e+00 2605 2.0000000000000000e+00 1.2800000000000000e-01 2605 5.0000000000000000e+01 5.3200000000000003e-01 2605 2.0000000000000000e+03 1.0000000000000000e+00 2610 2.0000000000000000e+00 2.7400000000000002e-01 2610 5.0000000000000000e+01 7.6200000000000001e-01 2610 2.0000000000000000e+03 1.0000000000000000e+00 2611 2.0000000000000000e+00 2.4500000000000000e-01 2611 5.0000000000000000e+01 7.2499999999999998e-01 2611 2.0000000000000000e+03 1.0000000000000000e+00 2612 2.0000000000000000e+00 2.1500000000000000e-01 2612 5.0000000000000000e+01 7.2299999999999998e-01 2612 2.0000000000000000e+03 1.0000000000000000e+00 2613 2.0000000000000000e+00 2.0499999999999999e-01 2613 5.0000000000000000e+01 7.2799999999999998e-01 2613 2.0000000000000000e+03 1.0000000000000000e+00 2614 2.0000000000000000e+00 2.2800000000000001e-01 2614 5.0000000000000000e+01 7.2299999999999998e-01 2614 2.0000000000000000e+03 1.0000000000000000e+00 2620 2.0000000000000000e+00 4.7799999999999998e-01 2620 5.0000000000000000e+01 8.3399999999999996e-01 2620 2.0000000000000000e+03 1.0000000000000000e+00 2621 2.0000000000000000e+00 4.9500000000000000e-01 2621 5.0000000000000000e+01 8.2299999999999995e-01 2621 2.0000000000000000e+03 1.0000000000000000e+00 2622 2.0000000000000000e+00 4.6899999999999997e-01 2622 5.0000000000000000e+01 7.6800000000000002e-01 2622 2.0000000000000000e+03 1.0000000000000000e+00 2630 2.0000000000000000e+00 2.5800000000000001e-01 2630 5.0000000000000000e+01 4.5000000000000001e-01 2630 2.0000000000000000e+03 1.0000000000000000e+00 2631 2.0000000000000000e+00 2.4299999999999999e-01 2631 5.0000000000000000e+01 4.0999999999999998e-01 2631 2.0000000000000000e+03 1.0000000000000000e+00 2640 2.0000000000000000e+00 4.5999999999999999e-02 2640 5.0000000000000000e+01 1.4199999999999999e-01 2640 2.0000000000000000e+03 1.0000000000000000e+00 2641 2.0000000000000000e+00 9.0999999999999998e-02 2641 5.0000000000000000e+01 1.6200000000000001e-01 2641 2.0000000000000000e+03 1.0000000000000000e+00 2642 2.0000000000000000e+00 1.2900000000000000e-01 2642 5.0000000000000000e+01 2.4099999999999999e-01 2642 2.0000000000000000e+03 1.0000000000000000e+00 2650 2.0000000000000000e+00 1.4199999999999999e-01 2650 5.0000000000000000e+01 6.4000000000000001e-01 2650 2.0000000000000000e+03 1.0000000000000000e+00 2651 2.0000000000000000e+00 1.4499999999999999e-01 2651 5.0000000000000000e+01 6.2000000000000000e-01 2651 2.0000000000000000e+03 1.0000000000000000e+00 2652 2.0000000000000000e+00 2.2000000000000000e-01 2652 5.0000000000000000e+01 6.8999999999999995e-01 2652 2.0000000000000000e+03 1.0000000000000000e+00 2653 2.0000000000000000e+00 6.5000000000000002e-02 2653 5.0000000000000000e+01 1.9000000000000000e-01 2653 2.0000000000000000e+03 1.0000000000000000e+00 2660 2.0000000000000000e+00 5.7899999999999996e-01 2660 5.0000000000000000e+01 8.4799999999999998e-01 2660 2.0000000000000000e+03 1.0000000000000000e+00 2661 2.0000000000000000e+00 3.9200000000000002e-01 2661 5.0000000000000000e+01 7.4299999999999999e-01 2661 2.0000000000000000e+03 1.0000000000000000e+00 2670 2.0000000000000000e+00 2.0999999999999999e-01 2670 5.0000000000000000e+01 7.9300000000000004e-01 2670 2.0000000000000000e+03 1.0000000000000000e+00 2671 2.0000000000000000e+00 1.7299999999999999e-01 2671 5.0000000000000000e+01 8.1299999999999994e-01 2671 2.0000000000000000e+03 1.0000000000000000e+00 2672 2.0000000000000000e+00 1.1000000000000000e-01 2672 5.0000000000000000e+01 8.4999999999999998e-01 2672 2.0000000000000000e+03 1.0000000000000000e+00 2680 2.0000000000000000e+00 1.7599999999999999e-01 2680 5.0000000000000000e+01 4.9199999999999999e-01 2680 2.0000000000000000e+03 1.0000000000000000e+00 2681 2.0000000000000000e+00 4.0300000000000002e-01 2681 5.0000000000000000e+01 6.9299999999999995e-01 2681 2.0000000000000000e+03 1.0000000000000000e+00 2682 2.0000000000000000e+00 3.8400000000000001e-01 2682 5.0000000000000000e+01 5.8299999999999996e-01 2682 2.0000000000000000e+03 1.0000000000000000e+00 2683 2.0000000000000000e+00 3.5499999999999998e-01 2683 5.0000000000000000e+01 5.7799999999999996e-01 2683 2.0000000000000000e+03 1.0000000000000000e+00 2690 2.0000000000000000e+00 6.3300000000000001e-01 2690 5.0000000000000000e+01 9.1300000000000003e-01 2690 2.0000000000000000e+03 1.0000000000000000e+00 2691 2.0000000000000000e+00 4.3600000000000000e-01 2691 5.0000000000000000e+01 7.4800000000000000e-01 2691 2.0000000000000000e+03 1.0000000000000000e+00 2700 2.0000000000000000e+00 3.2300000000000001e-01 2700 5.0000000000000000e+01 7.9300000000000004e-01 2700 2.0000000000000000e+03 1.0000000000000000e+00 2701 2.0000000000000000e+00 3.1200000000000000e-01 2701 5.0000000000000000e+01 7.8700000000000003e-01 2701 2.0000000000000000e+03 1.0000000000000000e+00 2710 2.0000000000000000e+00 1.6500000000000001e-01 2710 5.0000000000000000e+01 8.2499999999999996e-01 2710 2.0000000000000000e+03 1.0000000000000000e+00 2711 2.0000000000000000e+00 1.8200000000000000e-01 2711 5.0000000000000000e+01 8.4999999999999998e-01 2711 2.0000000000000000e+03 1.0000000000000000e+00 2712 2.0000000000000000e+00 2.4099999999999999e-01 2712 5.0000000000000000e+01 8.6099999999999999e-01 2712 2.0000000000000000e+03 1.0000000000000000e+00 2713 2.0000000000000000e+00 2.2000000000000000e-01 2713 5.0000000000000000e+01 8.7500000000000000e-01 2713 2.0000000000000000e+03 1.0000000000000000e+00 2720 2.0000000000000000e+00 1.4999999999999999e-01 2720 5.0000000000000000e+01 8.0200000000000005e-01 2720 2.0000000000000000e+03 1.0000000000000000e+00 2721 2.0000000000000000e+00 1.5800000000000000e-01 2721 5.0000000000000000e+01 7.5800000000000001e-01 2721 2.0000000000000000e+03 1.0000000000000000e+00 2722 2.0000000000000000e+00 1.7499999999999999e-01 2722 5.0000000000000000e+01 7.2199999999999998e-01 2722 2.0000000000000000e+03 1.0000000000000000e+00 2723 2.0000000000000000e+00 1.5200000000000000e-01 2723 5.0000000000000000e+01 7.1699999999999997e-01 2723 2.0000000000000000e+03 1.0000000000000000e+00 2730 2.0000000000000000e+00 1.4999999999999999e-01 2730 5.0000000000000000e+01 7.3999999999999999e-01 2730 2.0000000000000000e+03 1.0000000000000000e+00 2731 2.0000000000000000e+00 1.7000000000000001e-01 2731 5.0000000000000000e+01 7.5200000000000000e-01 2731 2.0000000000000000e+03 1.0000000000000000e+00 2732 2.0000000000000000e+00 1.7499999999999999e-01 2732 5.0000000000000000e+01 7.4299999999999999e-01 2732 2.0000000000000000e+03 1.0000000000000000e+00 2740 2.0000000000000000e+00 2.9699999999999999e-01 2740 5.0000000000000000e+01 6.9299999999999995e-01 2740 2.0000000000000000e+03 1.0000000000000000e+00 2741 2.0000000000000000e+00 2.3000000000000001e-01 2741 5.0000000000000000e+01 6.8700000000000006e-01 2741 2.0000000000000000e+03 1.0000000000000000e+00 2742 2.0000000000000000e+00 2.4600000000000000e-01 2742 5.0000000000000000e+01 6.2600000000000000e-01 2742 2.0000000000000000e+03 1.0000000000000000e+00 2743 2.0000000000000000e+00 3.1000000000000000e-01 2743 5.0000000000000000e+01 7.3299999999999998e-01 2743 2.0000000000000000e+03 1.0000000000000000e+00 2750 2.0000000000000000e+00 1.8500000000000000e-01 2750 5.0000000000000000e+01 4.8299999999999998e-01 2750 2.0000000000000000e+03 1.0000000000000000e+00 2751 2.0000000000000000e+00 1.8600000000000000e-01 2751 5.0000000000000000e+01 4.4600000000000001e-01 2751 2.0000000000000000e+03 1.0000000000000000e+00 2752 2.0000000000000000e+00 1.9000000000000000e-01 2752 5.0000000000000000e+01 5.0000000000000000e-01 2752 2.0000000000000000e+03 1.0000000000000000e+00 2753 2.0000000000000000e+00 1.7299999999999999e-01 2753 5.0000000000000000e+01 4.5600000000000002e-01 2753 2.0000000000000000e+03 1.0000000000000000e+00 2760 2.0000000000000000e+00 5.6000000000000001e-02 2760 5.0000000000000000e+01 6.0599999999999998e-01 2760 2.0000000000000000e+03 1.0000000000000000e+00 2761 2.0000000000000000e+00 5.0999999999999997e-02 2761 5.0000000000000000e+01 5.9299999999999997e-01 2761 2.0000000000000000e+03 1.0000000000000000e+00 2762 2.0000000000000000e+00 5.0000000000000003e-02 2762 5.0000000000000000e+01 3.5899999999999999e-01 2762 2.0000000000000000e+03 1.0000000000000000e+00 2763 2.0000000000000000e+00 2.8000000000000001e-02 2763 5.0000000000000000e+01 2.3100000000000001e-01 2763 2.0000000000000000e+03 1.0000000000000000e+00 2764 2.0000000000000000e+00 3.5999999999999997e-02 2764 5.0000000000000000e+01 3.1100000000000000e-01 2764 2.0000000000000000e+03 1.0000000000000000e+00 2765 2.0000000000000000e+00 2.8000000000000001e-02 2765 5.0000000000000000e+01 4.0000000000000002e-01 2765 2.0000000000000000e+03 1.0000000000000000e+00 3000 1.0000000000000000e+00 1.0100000000000001e-01 3000 5.0000000000000000e+00 1.5200000000000000e-01 3000 1.0000000000000000e+01 2.2300000000000000e-01 3000 5.0000000000000000e+01 3.2100000000000001e-01 3000 1.0000000000000000e+02 8.8000000000000000e-01 3000 2.5000000000000000e+02 9.9399999999999999e-01 3000 5.0000000000000000e+02 9.9500000000000000e-01 3000 1.0000000000000000e+03 9.9900000000000000e-01 3010 1.0000000000000000e+00 3.7999999999999999e-02 3010 5.0000000000000000e+00 1.1500000000000000e-01 3010 1.0000000000000000e+01 2.2600000000000001e-01 3010 5.0000000000000000e+01 4.9900000000000000e-01 3010 2.5000000000000000e+02 7.5800000000000001e-01 3010 1.0000000000000000e+03 1.0000000000000000e+00 3020 1.0000000000000000e+00 1.0000000000000000e-03 3020 5.0000000000000000e+00 1.4000000000000000e-02 3020 1.0000000000000000e+01 6.6000000000000003e-02 3020 5.0000000000000000e+01 1.3800000000000001e-01 3020 1.0000000000000000e+02 9.1400000000000003e-01 3020 2.5000000000000000e+02 9.6699999999999997e-01 3020 5.0000000000000000e+02 9.7799999999999998e-01 3020 1.0000000000000000e+03 9.9600000000000000e-01 3030 1.0000000000000000e+00 4.1899999999999998e-01 3030 5.0000000000000000e+00 7.3499999999999999e-01 3030 1.0000000000000000e+01 8.7600000000000000e-01 3030 5.0000000000000000e+01 9.7799999999999998e-01 3030 2.5000000000000000e+02 9.8699999999999999e-01 3030 1.0000000000000000e+03 1.0000000000000000e+00 3031 1.0000000000000000e+00 3.3200000000000002e-01 3031 5.0000000000000000e+00 4.2099999999999999e-01 3031 1.0000000000000000e+01 5.8999999999999997e-01 3031 5.0000000000000000e+01 7.8700000000000003e-01 3031 2.5000000000000000e+02 9.0100000000000002e-01 3031 1.0000000000000000e+03 9.2000000000000004e-01 3032 1.0000000000000000e+00 3.4599999999999997e-01 3032 5.0000000000000000e+00 3.8900000000000001e-01 3032 1.0000000000000000e+01 4.3400000000000000e-01 3032 5.0000000000000000e+01 6.5300000000000002e-01 3032 2.5000000000000000e+02 7.7300000000000002e-01 3032 1.0000000000000000e+03 7.8300000000000003e-01 3033 1.0000000000000000e+00 3.3800000000000002e-01 3033 5.0000000000000000e+00 5.0100000000000000e-01 3033 1.0000000000000000e+01 5.0100000000000000e-01 3033 5.0000000000000000e+01 7.1999999999999997e-01 3033 2.5000000000000000e+02 7.3199999999999998e-01 3033 1.0000000000000000e+03 8.6499999999999999e-01 3050 2.0000000000000000e+00 2.9000000000000001e-02 3050 4.0000000000000000e+00 3.9000000000000000e-02 3050 1.0000000000000000e+01 8.5999999999999993e-02 3050 1.5000000000000000e+01 1.1500000000000000e-01 3050 2.5000000000000000e+01 1.6800000000000001e-01 3050 3.9000000000000000e+01 2.2100000000000000e-01 3050 5.5000000000000000e+01 2.7400000000000002e-01 3050 7.4000000000000000e+01 2.7900000000000003e-01 3050 1.0500000000000000e+02 3.5599999999999998e-01 3050 2.5000000000000000e+02 5.9599999999999997e-01 3050 4.2000000000000000e+02 7.3999999999999999e-01 3050 8.4000000000000000e+02 8.4099999999999997e-01 3050 2.0000000000000000e+03 9.2800000000000005e-01 3050 4.7600000000000000e+03 9.6599999999999997e-01 3050 9.5200000000000000e+03 9.8999999999999999e-01 3050 1.9100000000000000e+04 1.0000000000000000e+00 3060 7.4000000000000000e+01 8.5999999999999993e-02 3060 1.0500000000000000e+02 1.0199999999999999e-01 3060 2.5000000000000000e+02 2.8100000000000003e-01 3060 4.2000000000000000e+02 8.3099999999999996e-01 3060 8.4000000000000000e+02 9.9900000000000000e-01 3060 2.0000000000000000e+03 1.0000000000000000e+00 3070 7.4000000000000000e+01 1.0000000000000000e-02 3070 1.0500000000000000e+02 6.2000000000000000e-02 3070 2.5000000000000000e+02 9.1600000000000004e-01 3070 4.2000000000000000e+02 9.9900000000000000e-01 3070 8.4000000000000000e+02 1.0000000000000000e+00 3070 2.0000000000000000e+03 1.0000000000000000e+00 3080 7.4000000000000000e+01 1.0000000000000000e-02 3080 1.0500000000000000e+02 6.2000000000000000e-02 3080 2.5000000000000000e+02 9.1600000000000004e-01 3080 4.2000000000000000e+02 9.9900000000000000e-01 3080 8.4000000000000000e+02 1.0000000000000000e+00 3080 2.0000000000000000e+03 1.0000000000000000e+00 3090 1.0000000000000000e+00 3.9700000000000002e-01 3090 5.0000000000000000e+00 5.2800000000000002e-01 3090 1.0000000000000000e+01 5.9699999999999998e-01 3090 5.0000000000000000e+01 9.7899999999999998e-01 3090 2.5000000000000000e+02 9.8199999999999998e-01 3090 1.0000000000000000e+03 9.9700000000000000e-01 3091 1.0000000000000000e+00 4.0899999999999997e-01 3091 5.0000000000000000e+00 5.3700000000000003e-01 3091 1.0000000000000000e+01 5.9999999999999998e-01 3091 5.0000000000000000e+01 9.7699999999999998e-01 3091 2.5000000000000000e+02 9.9600000000000000e-01 3091 1.0000000000000000e+03 1.0000000000000000e+00 3093 3100 1.0000000000000000e+00 3.0700000000000000e-01 3100 5.0000000000000000e+00 4.5000000000000001e-01 3100 1.0000000000000000e+01 5.4100000000000004e-01 3100 5.0000000000000000e+01 8.5699999999999998e-01 3100 2.5000000000000000e+02 9.8099999999999998e-01 3100 1.0000000000000000e+03 1.0000000000000000e+00 3101 1.0000000000000000e+00 3.4100000000000003e-01 3101 5.0000000000000000e+00 4.7199999999999998e-01 3101 1.0000000000000000e+01 5.8299999999999996e-01 3101 5.0000000000000000e+01 8.9700000000000002e-01 3101 2.5000000000000000e+02 9.8399999999999999e-01 3101 1.0000000000000000e+03 1.0000000000000000e+00 3102 1.0000000000000000e+00 3.4100000000000003e-01 3102 5.0000000000000000e+00 4.4200000000000000e-01 3102 1.0000000000000000e+01 5.4500000000000004e-01 3102 5.0000000000000000e+01 8.8700000000000001e-01 3102 2.5000000000000000e+02 9.7499999999999998e-01 3102 1.0000000000000000e+03 1.0000000000000000e+00 3103 1.0000000000000000e+00 3.3500000000000002e-01 3103 5.0000000000000000e+00 4.4100000000000000e-01 3103 1.0000000000000000e+01 6.0799999999999998e-01 3103 5.0000000000000000e+01 9.4299999999999995e-01 3103 2.5000000000000000e+02 9.8899999999999999e-01 3103 1.0000000000000000e+03 1.0000000000000000e+00 3110 1.0000000000000000e+00 3.0499999999999999e-01 3110 5.0000000000000000e+00 4.4900000000000001e-01 3110 1.0000000000000000e+01 5.4400000000000004e-01 3110 5.0000000000000000e+01 8.7600000000000000e-01 3110 2.5000000000000000e+02 9.8099999999999998e-01 3110 1.0000000000000000e+03 1.0000000000000000e+00 3111 1.0000000000000000e+00 3.4899999999999998e-01 3111 5.0000000000000000e+00 4.7699999999999998e-01 3111 1.0000000000000000e+01 5.8499999999999996e-01 3111 5.0000000000000000e+01 9.3700000000000006e-01 3111 2.5000000000000000e+02 9.8699999999999999e-01 3111 1.0000000000000000e+03 1.0000000000000000e+00 3112 1.0000000000000000e+00 3.3800000000000002e-01 3112 5.0000000000000000e+00 4.5700000000000002e-01 3112 1.0000000000000000e+01 5.6499999999999995e-01 3112 5.0000000000000000e+01 9.2700000000000005e-01 3112 2.5000000000000000e+02 9.8399999999999999e-01 3112 1.0000000000000000e+03 1.0000000000000000e+00 3113 1.0000000000000000e+00 3.3500000000000002e-01 3113 5.0000000000000000e+00 4.4100000000000000e-01 3113 1.0000000000000000e+01 6.0799999999999998e-01 3113 5.0000000000000000e+01 9.4299999999999995e-01 3113 2.5000000000000000e+02 9.8899999999999999e-01 3113 1.0000000000000000e+03 1.0000000000000000e+00 3120 2.0000000000000000e+00 4.3500000000000000e-01 3120 2.0000000000000000e+01 8.8000000000000000e-01 3120 2.0000000000000000e+03 9.7999999999999998e-01 3130 2.0000000000000000e+00 2.9999999999999999e-02 3130 2.0000000000000000e+01 6.7000000000000004e-02 3130 5.0000000000000000e+01 1.2900000000000000e-01 3130 1.0000000000000000e+02 2.2300000000000000e-01 3130 2.5000000000000000e+02 6.4100000000000001e-01 3130 5.0000000000000000e+02 9.7099999999999997e-01 3130 1.0000000000000000e+03 1.0000000000000000e+00 3130 2.0000000000000000e+03 1.0009999999999999e+00 3131 2.0000000000000000e+00 5.5000000000000000e-02 3131 2.0000000000000000e+01 1.0299999999999999e-01 3131 5.0000000000000000e+01 1.4799999999999999e-01 3131 1.0000000000000000e+02 2.5700000000000001e-01 3131 2.5000000000000000e+02 7.0199999999999996e-01 3131 5.0000000000000000e+02 9.7999999999999998e-01 3131 1.0000000000000000e+03 1.0000000000000000e+00 3131 2.0000000000000000e+03 1.0000000000000000e+00 3132 2.0000000000000000e+00 4.3999999999999997e-02 3132 2.0000000000000000e+01 6.7000000000000004e-02 3132 5.0000000000000000e+01 9.9000000000000005e-02 3132 1.0000000000000000e+02 1.9000000000000000e-01 3132 2.5000000000000000e+02 6.8000000000000005e-01 3132 5.0000000000000000e+02 9.7799999999999998e-01 3132 1.0000000000000000e+03 9.9900000000000000e-01 3132 2.0000000000000000e+03 1.0000000000000000e+00 3133 2.0000000000000000e+00 2.9000000000000001e-02 3133 2.0000000000000000e+01 5.9999999999999998e-02 3133 5.0000000000000000e+01 6.8000000000000005e-02 3133 1.0000000000000000e+02 1.5300000000000000e-01 3133 2.5000000000000000e+02 6.8999999999999995e-01 3133 5.0000000000000000e+02 9.7799999999999998e-01 3133 1.0000000000000000e+03 9.9900000000000000e-01 3133 2.0000000000000000e+03 1.0000000000000000e+00 3134 2.0000000000000000e+00 2.9000000000000001e-02 3134 2.0000000000000000e+01 4.7000000000000000e-02 3134 5.0000000000000000e+01 4.8000000000000001e-02 3134 1.0000000000000000e+02 6.9000000000000006e-02 3134 2.5000000000000000e+02 5.0000000000000000e-01 3134 5.0000000000000000e+02 9.8199999999999998e-01 3134 1.0000000000000000e+03 1.0000000000000000e+00 3134 2.0000000000000000e+03 1.0000000000000000e+00 3140 2.0000000000000000e+00 4.8000000000000001e-02 3140 2.0000000000000000e+01 8.1000000000000003e-02 3140 5.0000000000000000e+01 1.0800000000000000e-01 3140 1.0000000000000000e+02 1.9900000000000001e-01 3140 2.5000000000000000e+02 6.7000000000000004e-01 3140 5.0000000000000000e+02 9.7799999999999998e-01 3140 1.0000000000000000e+03 1.0000000000000000e+00 3140 2.0000000000000000e+03 1.0000000000000000e+00 3141 2.0000000000000000e+00 3.3000000000000002e-02 3141 2.0000000000000000e+01 6.6000000000000003e-02 3141 5.0000000000000000e+01 8.4000000000000005e-02 3141 1.0000000000000000e+02 1.6400000000000001e-01 3141 2.5000000000000000e+02 6.4200000000000002e-01 3141 5.0000000000000000e+02 9.7199999999999998e-01 3141 1.0000000000000000e+03 9.9900000000000000e-01 3141 2.0000000000000000e+03 1.0000000000000000e+00 3142 2.0000000000000000e+00 3.5000000000000003e-02 3142 2.0000000000000000e+01 3.7999999999999999e-02 3142 5.0000000000000000e+01 7.6999999999999999e-02 3142 1.0000000000000000e+02 1.6600000000000001e-01 3142 2.5000000000000000e+02 6.6400000000000003e-01 3142 5.0000000000000000e+02 9.7499999999999998e-01 3142 1.0000000000000000e+03 1.0000000000000000e+00 3142 2.0000000000000000e+03 1.0000000000000000e+00 3143 2.0000000000000000e+00 3.5999999999999997e-02 3143 2.0000000000000000e+01 4.9000000000000002e-02 3143 5.0000000000000000e+01 6.6000000000000003e-02 3143 1.0000000000000000e+02 1.4399999999999999e-01 3143 2.5000000000000000e+02 6.5900000000000003e-01 3143 5.0000000000000000e+02 9.8199999999999998e-01 3143 1.0000000000000000e+03 9.9900000000000000e-01 3143 2.0000000000000000e+03 9.9900000000000000e-01 3144 2.0000000000000000e+00 1.0999999999999999e-02 3144 2.0000000000000000e+01 3.7999999999999999e-02 3144 5.0000000000000000e+01 5.1999999999999998e-02 3144 1.0000000000000000e+02 1.1799999999999999e-01 3144 2.5000000000000000e+02 6.3000000000000000e-01 3144 5.0000000000000000e+02 9.8799999999999999e-01 3144 1.0000000000000000e+03 1.0020000000000000e+00 3144 2.0000000000000000e+03 1.0020000000000000e+00 3150 2.0000000000000000e+00 1.0400000000000000e-01 3150 2.0000000000000000e+01 1.1500000000000000e-01 3150 5.0000000000000000e+01 1.6200000000000001e-01 3150 1.0000000000000000e+02 2.7500000000000002e-01 3150 2.5000000000000000e+02 6.8899999999999995e-01 3150 5.0000000000000000e+02 9.7499999999999998e-01 3150 1.0000000000000000e+03 9.9900000000000000e-01 3150 2.0000000000000000e+03 1.0000000000000000e+00 3151 2.0000000000000000e+00 5.1999999999999998e-02 3151 2.0000000000000000e+01 9.2999999999999999e-02 3151 5.0000000000000000e+01 1.4299999999999999e-01 3151 1.0000000000000000e+02 2.4299999999999999e-01 3151 2.5000000000000000e+02 6.6600000000000004e-01 3151 5.0000000000000000e+02 9.7599999999999998e-01 3151 1.0000000000000000e+03 1.0020000000000000e+00 3151 2.0000000000000000e+03 1.0020000000000000e+00 3152 2.0000000000000000e+00 4.3999999999999997e-02 3152 2.0000000000000000e+01 1.0500000000000000e-01 3152 5.0000000000000000e+01 1.5500000000000000e-01 3152 1.0000000000000000e+02 2.7900000000000003e-01 3152 2.5000000000000000e+02 7.1299999999999997e-01 3152 5.0000000000000000e+02 9.7799999999999998e-01 3152 1.0000000000000000e+03 9.9900000000000000e-01 3152 2.0000000000000000e+03 1.0000000000000000e+00 3153 2.0000000000000000e+00 3.5999999999999997e-02 3153 2.0000000000000000e+01 8.3000000000000004e-02 3153 5.0000000000000000e+01 1.1400000000000000e-01 3153 1.0000000000000000e+02 2.0799999999999999e-01 3153 2.5000000000000000e+02 6.6200000000000003e-01 3153 5.0000000000000000e+02 9.7299999999999998e-01 3153 1.0000000000000000e+03 9.9800000000000000e-01 3153 2.0000000000000000e+03 9.9900000000000000e-01 3154 2.0000000000000000e+00 4.4999999999999998e-02 3154 2.0000000000000000e+01 6.5000000000000002e-02 3154 5.0000000000000000e+01 1.0900000000000000e-01 3154 1.0000000000000000e+02 1.9300000000000000e-01 3154 2.5000000000000000e+02 6.8999999999999995e-01 3154 5.0000000000000000e+02 9.8099999999999998e-01 3154 1.0000000000000000e+03 9.9900000000000000e-01 3154 2.0000000000000000e+03 1.0000000000000000e+00 3155 2.0000000000000000e+00 3.4000000000000002e-02 3155 2.0000000000000000e+01 6.0999999999999999e-02 3155 5.0000000000000000e+01 7.8000000000000000e-02 3155 1.0000000000000000e+02 1.5100000000000000e-01 3155 2.5000000000000000e+02 5.8399999999999996e-01 3155 5.0000000000000000e+02 9.6599999999999997e-01 3155 1.0000000000000000e+03 9.9800000000000000e-01 3155 2.0000000000000000e+03 9.9800000000000000e-01 3160 2.0000000000000000e+00 4.7000000000000000e-02 3160 2.0000000000000000e+01 1.0299999999999999e-01 3160 5.0000000000000000e+01 1.4799999999999999e-01 3160 1.0000000000000000e+02 3.4999999999999998e-01 3160 2.5000000000000000e+02 7.7300000000000002e-01 3160 5.0000000000000000e+02 9.5499999999999996e-01 3160 1.0000000000000000e+03 9.9900000000000000e-01 3160 2.0000000000000000e+03 1.0000000000000000e+00 3161 2.0000000000000000e+00 5.8000000000000003e-02 3161 2.0000000000000000e+01 1.1000000000000000e-01 3161 5.0000000000000000e+01 1.4699999999999999e-01 3161 1.0000000000000000e+02 3.6399999999999999e-01 3161 2.5000000000000000e+02 8.0200000000000005e-01 3161 5.0000000000000000e+02 9.5999999999999996e-01 3161 1.0000000000000000e+03 9.9900000000000000e-01 3161 2.0000000000000000e+03 9.9900000000000000e-01 3162 2.0000000000000000e+00 2.9999999999999999e-02 3162 2.0000000000000000e+01 8.2000000000000003e-02 3162 5.0000000000000000e+01 1.1899999999999999e-01 3162 1.0000000000000000e+02 3.5799999999999998e-01 3162 2.5000000000000000e+02 8.3199999999999996e-01 3162 5.0000000000000000e+02 9.6299999999999997e-01 3162 1.0000000000000000e+03 9.9900000000000000e-01 3162 2.0000000000000000e+03 1.0000000000000000e+00 3163 2.0000000000000000e+00 2.8000000000000001e-02 3163 2.0000000000000000e+01 8.9999999999999997e-02 3163 5.0000000000000000e+01 8.9999999999999997e-02 3163 1.0000000000000000e+02 3.5299999999999998e-01 3163 2.5000000000000000e+02 8.8000000000000000e-01 3163 5.0000000000000000e+02 9.7599999999999998e-01 3163 1.0000000000000000e+03 1.0000000000000000e+00 3163 2.0000000000000000e+03 1.0000000000000000e+00 3164 2.0000000000000000e+00 2.4000000000000000e-02 3164 2.0000000000000000e+01 5.0000000000000003e-02 3164 5.0000000000000000e+01 8.5999999999999993e-02 3164 1.0000000000000000e+02 3.3200000000000002e-01 3164 2.5000000000000000e+02 8.4999999999999998e-01 3164 5.0000000000000000e+02 9.6499999999999997e-01 3164 1.0000000000000000e+03 9.9900000000000000e-01 3164 2.0000000000000000e+03 9.9900000000000000e-01 3165 2.0000000000000000e+00 3.1000000000000000e-02 3165 2.0000000000000000e+01 7.4999999999999997e-02 3165 5.0000000000000000e+01 1.0400000000000000e-01 3165 1.0000000000000000e+02 2.8100000000000003e-01 3165 2.5000000000000000e+02 6.8400000000000005e-01 3165 5.0000000000000000e+02 8.9000000000000001e-01 3165 1.0000000000000000e+03 9.9900000000000000e-01 3165 2.0000000000000000e+03 9.9900000000000000e-01 3170 2.0000000000000000e+00 5.0000000000000003e-02 3170 2.0000000000000000e+01 1.1500000000000000e-01 3170 5.0000000000000000e+01 1.8400000000000000e-01 3170 1.0000000000000000e+02 3.6899999999999999e-01 3170 2.5000000000000000e+02 8.1699999999999995e-01 3170 5.0000000000000000e+02 9.6599999999999997e-01 3170 1.0000000000000000e+03 9.9900000000000000e-01 3170 2.0000000000000000e+03 1.0000000000000000e+00 3171 2.0000000000000000e+00 5.6000000000000001e-02 3171 2.0000000000000000e+01 1.0199999999999999e-01 3171 5.0000000000000000e+01 1.4999999999999999e-01 3171 1.0000000000000000e+02 3.5999999999999999e-01 3171 2.5000000000000000e+02 8.5899999999999999e-01 3171 5.0000000000000000e+02 9.7799999999999998e-01 3171 1.0000000000000000e+03 9.9900000000000000e-01 3171 2.0000000000000000e+03 1.0000000000000000e+00 3172 2.0000000000000000e+00 4.5999999999999999e-02 3172 2.0000000000000000e+01 6.4000000000000001e-02 3172 5.0000000000000000e+01 9.4000000000000000e-02 3172 1.0000000000000000e+02 3.1700000000000000e-01 3172 2.5000000000000000e+02 8.9700000000000002e-01 3172 5.0000000000000000e+02 9.8599999999999999e-01 3172 1.0000000000000000e+03 9.9700000000000000e-01 3172 2.0000000000000000e+03 9.9900000000000000e-01 3173 2.0000000000000000e+00 4.9000000000000002e-02 3173 2.0000000000000000e+01 6.4000000000000001e-02 3173 5.0000000000000000e+01 8.5000000000000006e-02 3173 1.0000000000000000e+02 2.8100000000000003e-01 3173 2.5000000000000000e+02 9.0000000000000002e-01 3173 5.0000000000000000e+02 9.8799999999999999e-01 3173 1.0000000000000000e+03 9.9900000000000000e-01 3173 2.0000000000000000e+03 1.0000000000000000e+00 3174 2.0000000000000000e+00 2.0000000000000000e-03 3174 2.0000000000000000e+01 3.7999999999999999e-02 3174 5.0000000000000000e+01 8.3000000000000004e-02 3174 1.0000000000000000e+02 2.0100000000000001e-01 3174 2.5000000000000000e+02 5.6200000000000006e-01 3174 5.0000000000000000e+02 9.3799999999999994e-01 3174 1.0000000000000000e+03 9.9500000000000000e-01 3174 2.0000000000000000e+03 9.9900000000000000e-01 3175 2.0000000000000000e+00 2.0000000000000000e-03 3175 2.0000000000000000e+01 6.0000000000000001e-03 3175 5.0000000000000000e+01 2.9999999999999999e-02 3175 1.0000000000000000e+02 4.0000000000000001e-02 3175 2.5000000000000000e+02 2.1400000000000000e-01 3175 5.0000000000000000e+02 9.5899999999999996e-01 3175 1.0000000000000000e+03 9.9800000000000000e-01 3175 2.0000000000000000e+03 9.9900000000000000e-01 3180 2.0000000000000000e+00 2.0000000000000001e-01 3180 2.0000000000000000e+01 3.0499999999999999e-01 3180 5.0000000000000000e+01 3.6399999999999999e-01 3180 1.0000000000000000e+02 5.0900000000000001e-01 3180 2.5000000000000000e+02 8.6599999999999999e-01 3180 5.0000000000000000e+02 9.8099999999999998e-01 3180 1.0000000000000000e+03 9.9900000000000000e-01 3180 2.0000000000000000e+03 9.9900000000000000e-01 3181 2.0000000000000000e+00 6.4000000000000001e-02 3181 2.0000000000000000e+01 8.2000000000000003e-02 3181 5.0000000000000000e+01 1.1000000000000000e-01 3181 1.0000000000000000e+02 3.1200000000000000e-01 3181 2.5000000000000000e+02 8.1399999999999995e-01 3181 5.0000000000000000e+02 9.6799999999999997e-01 3181 1.0000000000000000e+03 9.9700000000000000e-01 3181 2.0000000000000000e+03 9.9800000000000000e-01 3182 2.0000000000000000e+00 2.8000000000000001e-02 3182 2.0000000000000000e+01 5.0000000000000003e-02 3182 5.0000000000000000e+01 8.0000000000000002e-02 3182 1.0000000000000000e+02 1.0600000000000000e-01 3182 2.5000000000000000e+02 7.1299999999999997e-01 3182 5.0000000000000000e+02 9.9399999999999999e-01 3182 1.0000000000000000e+03 9.9800000000000000e-01 3182 2.0000000000000000e+03 9.9900000000000000e-01 3183 2.0000000000000000e+00 1.7000000000000001e-02 3183 2.0000000000000000e+01 4.2999999999999997e-02 3183 5.0000000000000000e+01 6.7000000000000004e-02 3183 1.0000000000000000e+02 9.7000000000000003e-02 3183 2.5000000000000000e+02 6.0999999999999999e-01 3183 5.0000000000000000e+02 9.8699999999999999e-01 3183 1.0000000000000000e+03 1.0000000000000000e+00 3183 2.0000000000000000e+03 1.0000000000000000e+00 3190 2.0000000000000000e+00 1.6500000000000001e-01 3190 2.0000000000000000e+01 3.5799999999999998e-01 3190 5.0000000000000000e+01 5.2100000000000002e-01 3190 1.0000000000000000e+02 6.6400000000000003e-01 3190 2.5000000000000000e+02 8.5099999999999998e-01 3190 5.0000000000000000e+02 9.6299999999999997e-01 3190 1.0000000000000000e+03 9.9900000000000000e-01 3190 2.0000000000000000e+03 1.0000000000000000e+00 3191 2.0000000000000000e+00 1.6200000000000001e-01 3191 2.0000000000000000e+01 3.5899999999999999e-01 3191 5.0000000000000000e+01 5.2300000000000002e-01 3191 1.0000000000000000e+02 6.6600000000000004e-01 3191 2.5000000000000000e+02 8.4799999999999998e-01 3191 5.0000000000000000e+02 9.6199999999999997e-01 3191 1.0000000000000000e+03 9.9800000000000000e-01 3191 2.0000000000000000e+03 9.9900000000000000e-01 3192 2.0000000000000000e+00 1.6300000000000001e-01 3192 2.0000000000000000e+01 3.7300000000000000e-01 3192 5.0000000000000000e+01 5.5800000000000005e-01 3192 1.0000000000000000e+02 6.8799999999999994e-01 3192 2.5000000000000000e+02 8.5999999999999999e-01 3192 5.0000000000000000e+02 9.6799999999999997e-01 3192 1.0000000000000000e+03 9.9700000000000000e-01 3192 2.0000000000000000e+03 1.0000000000000000e+00 3193 2.0000000000000000e+00 1.3700000000000001e-01 3193 2.0000000000000000e+01 4.1599999999999998e-01 3193 5.0000000000000000e+01 5.8599999999999997e-01 3193 1.0000000000000000e+02 7.1699999999999997e-01 3193 2.5000000000000000e+02 8.7300000000000000e-01 3193 5.0000000000000000e+02 9.6199999999999997e-01 3193 1.0000000000000000e+03 1.0000000000000000e+00 3193 2.0000000000000000e+03 1.0000000000000000e+00 3194 2.0000000000000000e+00 8.6999999999999994e-02 3194 2.0000000000000000e+01 3.5299999999999998e-01 3194 5.0000000000000000e+01 5.4300000000000004e-01 3194 1.0000000000000000e+02 6.9499999999999995e-01 3194 2.5000000000000000e+02 8.6599999999999999e-01 3194 5.0000000000000000e+02 9.5599999999999996e-01 3194 1.0000000000000000e+03 1.0000000000000000e+00 3194 2.0000000000000000e+03 1.0000000000000000e+00 3195 2.0000000000000000e+00 7.9000000000000001e-02 3195 2.0000000000000000e+01 3.2900000000000001e-01 3195 5.0000000000000000e+01 5.5100000000000005e-01 3195 1.0000000000000000e+02 6.8999999999999995e-01 3195 2.5000000000000000e+02 8.6299999999999999e-01 3195 5.0000000000000000e+02 9.5999999999999996e-01 3195 1.0000000000000000e+03 1.0000000000000000e+00 3195 2.0000000000000000e+03 1.0000000000000000e+00 3200 2.0000000000000000e+00 1.5300000000000000e-01 3200 2.0000000000000000e+01 2.3200000000000001e-01 3200 5.0000000000000000e+01 3.4799999999999998e-01 3200 1.0000000000000000e+02 6.3000000000000000e-01 3200 2.5000000000000000e+02 9.2800000000000005e-01 3200 5.0000000000000000e+02 9.8699999999999999e-01 3200 1.0000000000000000e+03 9.9700000000000000e-01 3200 2.0000000000000000e+03 9.9900000000000000e-01 3201 2.0000000000000000e+00 1.5100000000000000e-01 3201 2.0000000000000000e+01 2.0699999999999999e-01 3201 5.0000000000000000e+01 3.2100000000000001e-01 3201 1.0000000000000000e+02 6.2000000000000000e-01 3201 2.5000000000000000e+02 9.1900000000000004e-01 3201 5.0000000000000000e+02 9.8299999999999998e-01 3201 1.0000000000000000e+03 9.9700000000000000e-01 3201 2.0000000000000000e+03 9.9900000000000000e-01 3202 2.0000000000000000e+00 2.2700000000000001e-01 3202 2.0000000000000000e+01 2.8599999999999998e-01 3202 5.0000000000000000e+01 3.7500000000000000e-01 3202 1.0000000000000000e+02 6.7500000000000004e-01 3202 2.5000000000000000e+02 9.3899999999999995e-01 3202 5.0000000000000000e+02 9.8799999999999999e-01 3202 1.0000000000000000e+03 1.0000000000000000e+00 3202 2.0000000000000000e+03 1.0009999999999999e+00 3203 2.0000000000000000e+00 1.0500000000000000e-01 3203 2.0000000000000000e+01 1.3800000000000001e-01 3203 5.0000000000000000e+01 2.3699999999999999e-01 3203 1.0000000000000000e+02 5.6499999999999995e-01 3203 2.5000000000000000e+02 9.2100000000000004e-01 3203 5.0000000000000000e+02 9.8399999999999999e-01 3203 1.0000000000000000e+03 9.9900000000000000e-01 3203 2.0000000000000000e+03 1.0000000000000000e+00 3204 2.0000000000000000e+00 8.3000000000000004e-02 3204 2.0000000000000000e+01 1.6000000000000000e-01 3204 5.0000000000000000e+01 2.4600000000000000e-01 3204 1.0000000000000000e+02 4.1799999999999998e-01 3204 2.5000000000000000e+02 7.5100000000000000e-01 3204 5.0000000000000000e+02 9.4799999999999995e-01 3204 1.0000000000000000e+03 9.9299999999999999e-01 3204 2.0000000000000000e+03 1.0000000000000000e+00 3205 2.0000000000000000e+00 8.2000000000000003e-02 3205 2.0000000000000000e+01 1.2900000000000000e-01 3205 5.0000000000000000e+01 2.3699999999999999e-01 3205 1.0000000000000000e+02 3.5399999999999998e-01 3205 2.5000000000000000e+02 6.6000000000000003e-01 3205 5.0000000000000000e+02 9.2500000000000004e-01 3205 1.0000000000000000e+03 9.8399999999999999e-01 3205 2.0000000000000000e+03 1.0000000000000000e+00 3206 2.0000000000000000e+00 1.7000000000000001e-02 3206 2.0000000000000000e+01 3.9000000000000000e-02 3206 5.0000000000000000e+01 5.9999999999999998e-02 3206 1.0000000000000000e+02 6.7000000000000004e-02 3206 2.5000000000000000e+02 1.8600000000000000e-01 3206 5.0000000000000000e+02 7.0899999999999996e-01 3206 1.0000000000000000e+03 9.9700000000000000e-01 3206 2.0000000000000000e+03 1.0009999999999999e+00 3210 2.0000000000000000e+00 1.6300000000000001e-01 3210 2.0000000000000000e+01 4.0000000000000002e-01 3210 5.0000000000000000e+01 6.7000000000000004e-01 3210 1.0000000000000000e+02 8.7900000000000000e-01 3210 2.5000000000000000e+02 9.6699999999999997e-01 3210 5.0000000000000000e+02 9.9299999999999999e-01 3210 1.0000000000000000e+03 9.7999999999999998e-01 3210 2.0000000000000000e+03 9.9900000000000000e-01 3211 2.0000000000000000e+00 1.4599999999999999e-01 3211 2.0000000000000000e+01 3.3900000000000002e-01 3211 5.0000000000000000e+01 6.3600000000000001e-01 3211 1.0000000000000000e+02 8.9800000000000002e-01 3211 2.5000000000000000e+02 9.7799999999999998e-01 3211 5.0000000000000000e+02 9.9600000000000000e-01 3211 1.0000000000000000e+03 9.9900000000000000e-01 3211 2.0000000000000000e+03 9.9900000000000000e-01 3212 2.0000000000000000e+00 2.7600000000000002e-01 3212 2.0000000000000000e+01 6.9199999999999995e-01 3212 5.0000000000000000e+01 9.1600000000000004e-01 3212 1.0000000000000000e+02 9.7099999999999997e-01 3212 2.5000000000000000e+02 9.9199999999999999e-01 3212 5.0000000000000000e+02 9.9800000000000000e-01 3212 1.0000000000000000e+03 9.9900000000000000e-01 3212 2.0000000000000000e+03 1.0000000000000000e+00 3213 2.0000000000000000e+00 1.3600000000000001e-01 3213 2.0000000000000000e+01 5.9399999999999997e-01 3213 5.0000000000000000e+01 8.4199999999999997e-01 3213 1.0000000000000000e+02 9.3200000000000005e-01 3213 2.5000000000000000e+02 9.7799999999999998e-01 3213 5.0000000000000000e+02 9.9299999999999999e-01 3213 1.0000000000000000e+03 9.9600000000000000e-01 3213 2.0000000000000000e+03 9.9800000000000000e-01 3214 2.0000000000000000e+00 1.1300000000000000e-01 3214 2.0000000000000000e+01 7.0399999999999996e-01 3214 5.0000000000000000e+01 9.8299999999999998e-01 3214 1.0000000000000000e+02 9.8999999999999999e-01 3214 2.5000000000000000e+02 9.9299999999999999e-01 3214 5.0000000000000000e+02 9.9500000000000000e-01 3214 1.0000000000000000e+03 9.9700000000000000e-01 3214 2.0000000000000000e+03 9.9900000000000000e-01 3220 2.0000000000000000e+00 1.8400000000000000e-01 3220 2.0000000000000000e+01 4.3700000000000000e-01 3220 5.0000000000000000e+01 6.9099999999999995e-01 3220 1.0000000000000000e+02 8.0700000000000005e-01 3220 2.5000000000000000e+02 9.5799999999999996e-01 3220 5.0000000000000000e+02 9.8899999999999999e-01 3220 1.0000000000000000e+03 1.0000000000000000e+00 3220 2.0000000000000000e+03 1.0000000000000000e+00 3221 2.0000000000000000e+00 1.9800000000000001e-01 3221 2.0000000000000000e+01 4.6500000000000002e-01 3221 5.0000000000000000e+01 6.5900000000000003e-01 3221 1.0000000000000000e+02 7.6600000000000001e-01 3221 2.5000000000000000e+02 9.4799999999999995e-01 3221 5.0000000000000000e+02 9.8499999999999999e-01 3221 1.0000000000000000e+03 9.9900000000000000e-01 3221 2.0000000000000000e+03 1.0000000000000000e+00 3222 2.0000000000000000e+00 2.5500000000000000e-01 3222 2.0000000000000000e+01 6.6000000000000003e-01 3222 5.0000000000000000e+01 8.4599999999999997e-01 3222 1.0000000000000000e+02 9.1600000000000004e-01 3222 2.5000000000000000e+02 9.9099999999999999e-01 3222 5.0000000000000000e+02 9.9700000000000000e-01 3222 1.0000000000000000e+03 9.9900000000000000e-01 3222 2.0000000000000000e+03 9.9900000000000000e-01 3223 2.0000000000000000e+00 1.9100000000000000e-01 3223 2.0000000000000000e+01 7.2099999999999997e-01 3223 5.0000000000000000e+01 9.3000000000000005e-01 3223 1.0000000000000000e+02 9.5599999999999996e-01 3223 2.5000000000000000e+02 9.9099999999999999e-01 3223 5.0000000000000000e+02 9.9700000000000000e-01 3223 1.0000000000000000e+03 9.9900000000000000e-01 3223 2.0000000000000000e+03 1.0000000000000000e+00 3224 2.0000000000000000e+00 1.5200000000000000e-01 3224 2.0000000000000000e+01 7.5600000000000001e-01 3224 5.0000000000000000e+01 9.4199999999999995e-01 3224 1.0000000000000000e+02 9.5299999999999996e-01 3224 2.5000000000000000e+02 9.6399999999999997e-01 3224 5.0000000000000000e+02 9.7299999999999998e-01 3224 1.0000000000000000e+03 9.8799999999999999e-01 3224 2.0000000000000000e+03 9.9800000000000000e-01 3225 2.0000000000000000e+00 1.7000000000000001e-01 3225 2.0000000000000000e+01 8.0600000000000005e-01 3225 5.0000000000000000e+01 9.6199999999999997e-01 3225 1.0000000000000000e+02 9.7299999999999998e-01 3225 2.5000000000000000e+02 9.9600000000000000e-01 3225 5.0000000000000000e+02 9.9600000000000000e-01 3225 1.0000000000000000e+03 9.9900000000000000e-01 3225 2.0000000000000000e+03 1.0000000000000000e+00 3230 3231 3232 2.0000000000000000e+00 7.0000000000000001e-03 3232 4.0000000000000000e+00 7.0000000000000001e-03 3232 8.0000000000000000e+00 7.0000000000000001e-03 3232 1.6000000000000000e+01 8.0000000000000002e-03 3232 3.2000000000000000e+01 8.9999999999999993e-03 3232 6.3000000000000000e+01 1.2000000000000000e-02 3232 1.2500000000000000e+02 1.0400000000000000e-01 3232 2.5000000000000000e+02 5.8999999999999997e-01 3232 5.0000000000000000e+02 9.0900000000000003e-01 3232 1.0000000000000000e+03 9.8499999999999999e-01 3232 2.0000000000000000e+03 1.0000000000000000e+00 3240 2.0000000000000000e+00 2.4299999999999999e-01 3240 5.0000000000000000e+01 9.8599999999999999e-01 3240 1.0500000000000000e+02 9.8899999999999999e-01 3240 2.5000000000000000e+02 9.9299999999999999e-01 3240 5.0000000000000000e+02 9.9800000000000000e-01 3240 1.0000000000000000e+03 1.0000000000000000e+00 3240 2.0000000000000000e+03 1.0000000000000000e+00 3241 2.0000000000000000e+00 2.7100000000000002e-01 3241 5.0000000000000000e+01 1.0000000000000000e+00 3241 1.0500000000000000e+02 1.0009999999999999e+00 3241 2.5000000000000000e+02 1.0009999999999999e+00 3241 5.0000000000000000e+02 1.0009999999999999e+00 3241 1.0000000000000000e+03 1.0009999999999999e+00 3241 2.0000000000000000e+03 1.0009999999999999e+00 3242 2.0000000000000000e+00 2.0000000000000001e-01 3242 5.0000000000000000e+01 9.9299999999999999e-01 3242 1.0500000000000000e+02 9.9500000000000000e-01 3242 2.5000000000000000e+02 9.9800000000000000e-01 3242 5.0000000000000000e+02 1.0000000000000000e+00 3242 1.0000000000000000e+03 1.0000000000000000e+00 3242 2.0000000000000000e+03 1.0000000000000000e+00 3243 2.0000000000000000e+00 1.7299999999999999e-01 3243 5.0000000000000000e+01 9.7999999999999998e-01 3243 1.0500000000000000e+02 9.8399999999999999e-01 3243 2.5000000000000000e+02 9.9099999999999999e-01 3243 5.0000000000000000e+02 9.9900000000000000e-01 3243 1.0000000000000000e+03 1.0000000000000000e+00 3243 2.0000000000000000e+03 1.0000000000000000e+00 3250 2.0000000000000000e+00 1.8500000000000000e-01 3250 5.0000000000000000e+01 9.8999999999999999e-01 3250 1.0500000000000000e+02 9.9399999999999999e-01 3250 2.5000000000000000e+02 9.9600000000000000e-01 3250 5.0000000000000000e+02 9.9800000000000000e-01 3250 1.0000000000000000e+03 9.9900000000000000e-01 3250 2.0000000000000000e+03 9.9900000000000000e-01 3251 2.0000000000000000e+00 2.8999999999999998e-01 3251 5.0000000000000000e+01 9.9500000000000000e-01 3251 1.0500000000000000e+02 9.9700000000000000e-01 3251 2.5000000000000000e+02 9.9700000000000000e-01 3251 5.0000000000000000e+02 9.9700000000000000e-01 3251 1.0000000000000000e+03 9.9700000000000000e-01 3251 2.0000000000000000e+03 9.9700000000000000e-01 3252 2.0000000000000000e+00 2.2500000000000001e-01 3252 5.0000000000000000e+01 9.9500000000000000e-01 3252 1.0500000000000000e+02 9.9600000000000000e-01 3252 2.5000000000000000e+02 9.9600000000000000e-01 3252 5.0000000000000000e+02 9.9600000000000000e-01 3252 1.0000000000000000e+03 9.9600000000000000e-01 3252 2.0000000000000000e+03 9.9600000000000000e-01 3253 2.0000000000000000e+00 2.0499999999999999e-01 3253 5.0000000000000000e+01 1.0000000000000000e+00 3253 1.0500000000000000e+02 1.0009999999999999e+00 3253 2.5000000000000000e+02 1.0009999999999999e+00 3253 5.0000000000000000e+02 1.0009999999999999e+00 3253 1.0000000000000000e+03 1.0009999999999999e+00 3253 2.0000000000000000e+03 1.0009999999999999e+00 3260 2.0000000000000000e+00 8.9999999999999997e-02 3260 5.0000000000000000e+01 8.8000000000000000e-01 3260 1.0500000000000000e+02 8.9000000000000001e-01 3260 2.5000000000000000e+02 9.4999999999999996e-01 3260 5.0000000000000000e+02 9.8999999999999999e-01 3260 1.0000000000000000e+03 9.8999999999999999e-01 3260 2.0000000000000000e+03 1.0000000000000000e+00 3261 2.0000000000000000e+00 8.9999999999999997e-02 3261 5.0000000000000000e+01 7.8000000000000003e-01 3261 1.0500000000000000e+02 8.0000000000000004e-01 3261 2.5000000000000000e+02 9.1000000000000003e-01 3261 5.0000000000000000e+02 1.0000000000000000e+00 3261 1.0000000000000000e+03 1.0100000000000000e+00 3261 2.0000000000000000e+03 1.0100000000000000e+00 3262 2.0000000000000000e+00 1.0000000000000001e-01 3262 5.0000000000000000e+01 7.9000000000000004e-01 3262 1.0500000000000000e+02 8.1000000000000005e-01 3262 2.5000000000000000e+02 9.2000000000000004e-01 3262 5.0000000000000000e+02 9.8999999999999999e-01 3262 1.0000000000000000e+03 1.0000000000000000e+00 3262 2.0000000000000000e+03 1.0000000000000000e+00 3263 2.0000000000000000e+00 1.0000000000000001e-01 3263 5.0000000000000000e+01 7.3999999999999999e-01 3263 1.0500000000000000e+02 7.6000000000000001e-01 3263 2.5000000000000000e+02 8.9000000000000001e-01 3263 5.0000000000000000e+02 9.8999999999999999e-01 3263 1.0000000000000000e+03 1.0000000000000000e+00 3263 2.0000000000000000e+03 1.0000000000000000e+00 3264 2.0000000000000000e+00 1.3000000000000000e-01 3264 5.0000000000000000e+01 8.9000000000000001e-01 3264 1.0500000000000000e+02 9.1000000000000003e-01 3264 2.5000000000000000e+02 9.6999999999999997e-01 3264 5.0000000000000000e+02 1.0000000000000000e+00 3264 1.0000000000000000e+03 1.0100000000000000e+00 3264 2.0000000000000000e+03 1.0100000000000000e+00 3270 3271 3272 3273 3274 3281 2.0000000000000000e+00 4.8799999999999999e-01 3281 2.0000000000000000e+01 7.3899999999999999e-01 3281 2.0000000000000000e+02 1.0000000000000000e+00 3281 2.0000000000000000e+03 1.0080000000000000e+00 3282 2.0000000000000000e+00 5.4000000000000004e-01 3282 2.0000000000000000e+01 7.8600000000000003e-01 3282 2.0000000000000000e+02 1.0020000000000000e+00 3282 2.0000000000000000e+03 1.0080000000000000e+00 3283 2.0000000000000000e+00 3.2600000000000001e-01 3283 2.0000000000000000e+01 6.8000000000000005e-01 3283 2.0000000000000000e+02 1.0080000000000000e+00 3283 2.0000000000000000e+03 1.0109999999999999e+00 3290 2.0000000000000000e+00 1.0800000000000000e-01 3290 2.0000000000000000e+01 2.8100000000000003e-01 3290 6.3000000000000000e+01 4.7299999999999998e-01 3290 1.2500000000000000e+02 6.8000000000000005e-01 3290 2.0000000000000000e+02 8.3699999999999997e-01 3290 5.0000000000000000e+02 9.8799999999999999e-01 3290 2.0000000000000000e+03 1.0000000000000000e+00 3291 2.0000000000000000e+00 1.0700000000000000e-01 3291 2.0000000000000000e+01 2.7000000000000002e-01 3291 6.3000000000000000e+01 4.5200000000000001e-01 3291 1.2500000000000000e+02 6.4900000000000002e-01 3291 2.0000000000000000e+02 8.2099999999999995e-01 3291 5.0000000000000000e+02 9.8599999999999999e-01 3291 2.0000000000000000e+03 1.0000000000000000e+00 3292 2.0000000000000000e+00 2.3799999999999999e-01 3292 2.0000000000000000e+01 4.0100000000000002e-01 3292 6.3000000000000000e+01 5.2000000000000002e-01 3292 1.2500000000000000e+02 6.9399999999999995e-01 3292 2.0000000000000000e+02 8.3399999999999996e-01 3292 5.0000000000000000e+02 9.9199999999999999e-01 3292 2.0000000000000000e+03 1.0000000000000000e+00 3293 2.0000000000000000e+00 2.6900000000000002e-01 3293 2.0000000000000000e+01 3.7000000000000000e-01 3293 6.3000000000000000e+01 5.5500000000000005e-01 3293 1.2500000000000000e+02 7.7700000000000002e-01 3293 2.0000000000000000e+02 9.3200000000000005e-01 3293 5.0000000000000000e+02 9.9600000000000000e-01 3293 2.0000000000000000e+03 1.0000000000000000e+00 3300 2.0000000000000000e+00 1.0600000000000000e-01 3300 2.0000000000000000e+01 2.5600000000000001e-01 3300 6.3000000000000000e+01 4.6600000000000003e-01 3300 1.2500000000000000e+02 6.7300000000000004e-01 3300 2.0000000000000000e+02 8.3899999999999997e-01 3300 5.0000000000000000e+02 9.9199999999999999e-01 3300 2.0000000000000000e+03 1.0000000000000000e+00 3301 2.0000000000000000e+00 1.2100000000000000e-01 3301 2.0000000000000000e+01 2.6600000000000001e-01 3301 6.3000000000000000e+01 4.5200000000000001e-01 3301 1.2500000000000000e+02 6.5300000000000002e-01 3301 2.0000000000000000e+02 8.2299999999999995e-01 3301 5.0000000000000000e+02 9.8699999999999999e-01 3301 2.0000000000000000e+03 1.0000000000000000e+00 3302 2.0000000000000000e+00 2.0399999999999999e-01 3302 2.0000000000000000e+01 3.3100000000000002e-01 3302 6.3000000000000000e+01 4.8999999999999999e-01 3302 1.2500000000000000e+02 7.1499999999999997e-01 3302 2.0000000000000000e+02 8.8800000000000001e-01 3302 5.0000000000000000e+02 9.8799999999999999e-01 3302 2.0000000000000000e+03 1.0000000000000000e+00 3303 2.0000000000000000e+00 1.8600000000000000e-01 3303 2.0000000000000000e+01 3.3000000000000002e-01 3303 6.3000000000000000e+01 5.1400000000000001e-01 3303 1.2500000000000000e+02 7.4600000000000000e-01 3303 2.0000000000000000e+02 8.8400000000000001e-01 3303 5.0000000000000000e+02 9.8799999999999999e-01 3303 2.0000000000000000e+03 1.0000000000000000e+00 3310 2.0000000000000000e+00 1.1000000000000000e-01 3310 2.0000000000000000e+01 2.3599999999999999e-01 3310 6.3000000000000000e+01 4.0100000000000002e-01 3310 1.2500000000000000e+02 5.7799999999999996e-01 3310 2.0000000000000000e+02 7.6000000000000001e-01 3310 5.0000000000000000e+02 9.8799999999999999e-01 3310 2.0000000000000000e+03 1.0000000000000000e+00 3311 2.0000000000000000e+00 1.2100000000000000e-01 3311 2.0000000000000000e+01 2.3999999999999999e-01 3311 6.3000000000000000e+01 3.9800000000000002e-01 3311 1.2500000000000000e+02 5.7799999999999996e-01 3311 2.0000000000000000e+02 7.5400000000000000e-01 3311 5.0000000000000000e+02 9.8799999999999999e-01 3311 2.0000000000000000e+03 1.0000000000000000e+00 3312 2.0000000000000000e+00 2.4500000000000000e-01 3312 2.0000000000000000e+01 3.6099999999999999e-01 3312 6.3000000000000000e+01 5.0400000000000000e-01 3312 1.2500000000000000e+02 7.1599999999999997e-01 3312 2.0000000000000000e+02 8.8600000000000001e-01 3312 5.0000000000000000e+02 9.9199999999999999e-01 3312 2.0000000000000000e+03 1.0000000000000000e+00 3313 2.0000000000000000e+00 2.2700000000000001e-01 3313 2.0000000000000000e+01 3.5199999999999998e-01 3313 6.3000000000000000e+01 4.7599999999999998e-01 3313 1.2500000000000000e+02 6.5800000000000003e-01 3313 2.0000000000000000e+02 8.2599999999999996e-01 3313 5.0000000000000000e+02 9.9199999999999999e-01 3313 2.0000000000000000e+03 1.0000000000000000e+00 3320 2.0000000000000000e+00 7.9000000000000001e-02 3320 2.0000000000000000e+01 1.7999999999999999e-01 3320 6.3000000000000000e+01 3.3600000000000002e-01 3320 1.2500000000000000e+02 5.0800000000000001e-01 3320 2.0000000000000000e+02 6.5300000000000002e-01 3320 5.0000000000000000e+02 9.0300000000000002e-01 3320 2.0000000000000000e+03 1.0000000000000000e+00 3321 2.0000000000000000e+00 7.9000000000000001e-02 3321 2.0000000000000000e+01 1.8500000000000000e-01 3321 6.3000000000000000e+01 3.4499999999999997e-01 3321 1.2500000000000000e+02 5.1700000000000002e-01 3321 2.0000000000000000e+02 6.5700000000000003e-01 3321 5.0000000000000000e+02 9.1000000000000003e-01 3321 2.0000000000000000e+03 1.0000000000000000e+00 3322 2.0000000000000000e+00 1.3400000000000001e-01 3322 2.0000000000000000e+01 2.3000000000000001e-01 3322 6.3000000000000000e+01 3.6499999999999999e-01 3322 1.2500000000000000e+02 5.3000000000000003e-01 3322 2.0000000000000000e+02 6.6600000000000004e-01 3322 5.0000000000000000e+02 8.9800000000000002e-01 3322 2.0000000000000000e+03 1.0000000000000000e+00 3323 2.0000000000000000e+00 1.0299999999999999e-01 3323 2.0000000000000000e+01 2.0000000000000001e-01 3323 6.3000000000000000e+01 3.3400000000000002e-01 3323 1.2500000000000000e+02 5.0700000000000001e-01 3323 2.0000000000000000e+02 6.5300000000000002e-01 3323 5.0000000000000000e+02 9.0100000000000002e-01 3323 2.0000000000000000e+03 1.0000000000000000e+00 3330 2.0000000000000000e+00 4.2000000000000003e-02 3330 2.0000000000000000e+01 8.1000000000000003e-02 3330 6.3000000000000000e+01 1.1200000000000000e-01 3330 1.2500000000000000e+02 1.7299999999999999e-01 3330 2.0000000000000000e+02 2.8899999999999998e-01 3330 5.0000000000000000e+02 8.1299999999999994e-01 3330 2.0000000000000000e+03 1.0000000000000000e+00 3331 2.0000000000000000e+00 3.5000000000000003e-02 3331 2.0000000000000000e+01 5.3999999999999999e-02 3331 6.3000000000000000e+01 6.4000000000000001e-02 3331 1.2500000000000000e+02 1.0299999999999999e-01 3331 2.0000000000000000e+02 2.0200000000000001e-01 3331 5.0000000000000000e+02 8.9200000000000002e-01 3331 2.0000000000000000e+03 1.0000000000000000e+00 3332 2.0000000000000000e+00 2.5000000000000001e-02 3332 2.0000000000000000e+01 2.9999999999999999e-02 3332 6.3000000000000000e+01 4.0000000000000001e-02 3332 1.2500000000000000e+02 4.5999999999999999e-02 3332 2.0000000000000000e+02 8.7999999999999995e-02 3332 5.0000000000000000e+02 8.6799999999999999e-01 3332 2.0000000000000000e+03 1.0000000000000000e+00 3340 2.0000000000000000e+00 1.4999999999999999e-02 3340 1.6000000000000000e+01 2.5000000000000001e-02 3340 6.3000000000000000e+01 7.4999999999999997e-02 3340 1.2500000000000000e+02 9.5000000000000001e-02 3340 2.5000000000000000e+02 4.6700000000000003e-01 3340 5.0000000000000000e+02 8.3299999999999996e-01 3340 1.0000000000000000e+03 9.6499999999999997e-01 3340 2.0000000000000000e+03 1.0020000000000000e+00 3341 3350 3351 3360 2.0000000000000000e+00 1.5100000000000000e-01 3360 6.0000000000000000e+00 2.0200000000000001e-01 3360 2.0000000000000000e+01 3.6899999999999999e-01 3360 6.0000000000000000e+01 9.7399999999999998e-01 3360 2.0000000000000000e+02 9.9099999999999999e-01 3360 6.0000000000000000e+02 9.9900000000000000e-01 3360 2.0000000000000000e+03 1.0000000000000000e+00 3361 2.0000000000000000e+00 1.4399999999999999e-01 3361 6.0000000000000000e+00 1.9500000000000001e-01 3361 2.0000000000000000e+01 3.6499999999999999e-01 3361 6.0000000000000000e+01 9.7399999999999998e-01 3361 2.0000000000000000e+02 9.8999999999999999e-01 3361 6.0000000000000000e+02 9.9900000000000000e-01 3361 2.0000000000000000e+03 1.0000000000000000e+00 3370 3371 3380 2.0000000000000000e+00 1.2300000000000000e-01 3380 6.0000000000000000e+01 9.4499999999999995e-01 3380 2.0000000000000000e+02 1.0000000000000000e+00 3381 2.0000000000000000e+00 1.3900000000000001e-01 3381 6.0000000000000000e+01 8.4899999999999998e-01 3381 2.0000000000000000e+02 1.0000000000000000e+00 3390 2.0000000000000000e+00 1.4599999999999999e-01 3390 6.0000000000000000e+01 9.4499999999999995e-01 3390 2.0000000000000000e+02 1.0000000000000000e+00 3391 2.0000000000000000e+00 1.7299999999999999e-01 3391 6.0000000000000000e+01 9.4099999999999995e-01 3391 2.0000000000000000e+02 1.0000000000000000e+00 3392 2.0000000000000000e+00 2.3599999999999999e-01 3392 6.0000000000000000e+01 9.5799999999999996e-01 3392 2.0000000000000000e+02 1.0000000000000000e+00 3393 2.0000000000000000e+00 2.6000000000000001e-01 3393 6.0000000000000000e+01 9.5799999999999996e-01 3393 2.0000000000000000e+02 1.0000000000000000e+00 3395 2.0000000000000000e+00 1.8099999999999999e-01 3395 6.0000000000000000e+01 9.7199999999999998e-01 3395 2.0000000000000000e+02 1.0000000000000000e+00 4000 2.0000000000000000e+00 1.4999999999999999e-02 4000 1.0000000000000000e+01 2.8000000000000001e-02 4000 2.0000000000000000e+01 2.9999999999999999e-02 4000 5.0000000000000000e+01 7.8000000000000000e-02 4000 1.0000000000000000e+02 1.2800000000000000e-01 4000 2.0000000000000000e+02 7.3399999999999999e-01 4000 5.0000000000000000e+02 9.9099999999999999e-01 4000 1.0000000000000000e+03 9.9900000000000000e-01 4000 2.0000000000000000e+03 1.0000000000000000e+00 4001 2.0000000000000000e+00 1.2999999999999999e-02 4001 1.0000000000000000e+01 1.2999999999999999e-02 4001 2.0000000000000000e+01 1.4999999999999999e-02 4001 5.0000000000000000e+01 4.1000000000000002e-02 4001 1.0000000000000000e+02 1.2500000000000000e-01 4001 2.0000000000000000e+02 7.5900000000000001e-01 4001 5.0000000000000000e+02 9.9399999999999999e-01 4001 1.0000000000000000e+03 9.9900000000000000e-01 4001 2.0000000000000000e+03 1.0000000000000000e+00 4010 2.0000000000000000e+00 5.9999999999999998e-02 4010 1.0000000000000000e+01 8.3000000000000004e-02 4010 2.0000000000000000e+01 9.8000000000000004e-02 4010 5.0000000000000000e+01 2.4500000000000000e-01 4010 1.0000000000000000e+02 4.8799999999999999e-01 4010 2.0000000000000000e+02 8.7300000000000000e-01 4010 5.0000000000000000e+02 9.9600000000000000e-01 4010 1.0000000000000000e+03 9.9900000000000000e-01 4010 2.0000000000000000e+03 1.0000000000000000e+00 4011 2.0000000000000000e+00 6.5000000000000002e-02 4011 1.0000000000000000e+01 8.0000000000000002e-02 4011 2.0000000000000000e+01 1.0500000000000000e-01 4011 5.0000000000000000e+01 2.3799999999999999e-01 4011 1.0000000000000000e+02 4.2399999999999999e-01 4011 2.0000000000000000e+02 8.8500000000000001e-01 4011 5.0000000000000000e+02 9.9700000000000000e-01 4011 1.0000000000000000e+03 9.9900000000000000e-01 4011 2.0000000000000000e+03 1.0000000000000000e+00 4020 2.0000000000000000e+00 3.5000000000000003e-02 4020 1.0000000000000000e+01 4.4999999999999998e-02 4020 2.0000000000000000e+01 4.4999999999999998e-02 4020 5.0000000000000000e+01 1.4799999999999999e-01 4020 1.0000000000000000e+02 3.6599999999999999e-01 4020 2.0000000000000000e+02 8.1200000000000006e-01 4020 5.0000000000000000e+02 9.9099999999999999e-01 4020 1.0000000000000000e+03 9.9700000000000000e-01 4020 2.0000000000000000e+03 1.0000000000000000e+00 4021 2.0000000000000000e+00 2.5000000000000001e-02 4021 1.0000000000000000e+01 4.0000000000000001e-02 4021 2.0000000000000000e+01 4.0000000000000001e-02 4021 5.0000000000000000e+01 1.2600000000000000e-01 4021 1.0000000000000000e+02 3.4599999999999997e-01 4021 2.0000000000000000e+02 8.1899999999999995e-01 4021 5.0000000000000000e+02 9.9299999999999999e-01 4021 1.0000000000000000e+03 9.9900000000000000e-01 4021 2.0000000000000000e+03 1.0000000000000000e+00 4030 2.0000000000000000e+00 1.2500000000000000e-01 4030 1.0000000000000000e+01 2.0999999999999999e-01 4030 2.0000000000000000e+01 3.5999999999999999e-01 4030 5.0000000000000000e+01 8.1000000000000005e-01 4030 1.0000000000000000e+02 9.2200000000000004e-01 4030 2.0000000000000000e+02 9.5899999999999996e-01 4030 5.0000000000000000e+02 9.8899999999999999e-01 4030 1.0000000000000000e+03 9.9500000000000000e-01 4030 2.0000000000000000e+03 1.0000000000000000e+00 4031 2.0000000000000000e+00 1.1300000000000000e-01 4031 1.0000000000000000e+01 2.0999999999999999e-01 4031 2.0000000000000000e+01 3.5499999999999998e-01 4031 5.0000000000000000e+01 3.1700000000000000e-01 4031 1.0000000000000000e+02 9.2100000000000004e-01 4031 2.0000000000000000e+02 9.5299999999999996e-01 4031 5.0000000000000000e+02 9.9199999999999999e-01 4031 1.0000000000000000e+03 9.9700000000000000e-01 4031 2.0000000000000000e+03 1.0000000000000000e+00 4032 2.0000000000000000e+00 1.3000000000000000e-01 4032 1.0000000000000000e+01 2.3999999999999999e-01 4032 2.0000000000000000e+01 4.0000000000000002e-01 4032 5.0000000000000000e+01 8.1799999999999995e-01 4032 1.0000000000000000e+02 9.4699999999999995e-01 4032 2.0000000000000000e+02 9.6699999999999997e-01 4032 5.0000000000000000e+02 9.8399999999999999e-01 4032 1.0000000000000000e+03 9.9900000000000000e-01 4032 2.0000000000000000e+03 1.0000000000000000e+00 4033 2.0000000000000000e+00 2.3999999999999999e-01 4033 1.0000000000000000e+01 3.4499999999999997e-01 4033 2.0000000000000000e+01 5.0000000000000000e-01 4033 5.0000000000000000e+01 9.2000000000000004e-01 4033 1.0000000000000000e+02 9.6899999999999997e-01 4033 2.0000000000000000e+02 9.7799999999999998e-01 4033 5.0000000000000000e+02 9.8599999999999999e-01 4033 1.0000000000000000e+03 9.9700000000000000e-01 4033 2.0000000000000000e+03 1.0000000000000000e+00 4040 2.0000000000000000e+00 1.0000000000000001e-01 4040 1.0000000000000000e+01 1.7499999999999999e-01 4040 2.0000000000000000e+01 3.1000000000000000e-01 4040 5.0000000000000000e+01 7.5000000000000000e-01 4040 1.0000000000000000e+02 8.8700000000000001e-01 4040 2.0000000000000000e+02 9.7999999999999998e-01 4040 5.0000000000000000e+02 9.9700000000000000e-01 4040 1.0000000000000000e+03 9.8999999999999999e-01 4040 2.0000000000000000e+03 1.0000000000000000e+00 4041 2.0000000000000000e+00 1.1500000000000000e-01 4041 1.0000000000000000e+01 1.8300000000000000e-01 4041 2.0000000000000000e+01 3.1800000000000000e-01 4041 5.0000000000000000e+01 7.6200000000000001e-01 4041 1.0000000000000000e+02 9.0100000000000002e-01 4041 2.0000000000000000e+02 9.8499999999999999e-01 4041 5.0000000000000000e+02 9.9800000000000000e-01 4041 1.0000000000000000e+03 9.9900000000000000e-01 4041 2.0000000000000000e+03 1.0000000000000000e+00 4042 2.0000000000000000e+00 1.1500000000000000e-01 4042 1.0000000000000000e+01 2.1500000000000000e-01 4042 2.0000000000000000e+01 3.5799999999999998e-01 4042 5.0000000000000000e+01 7.7500000000000002e-01 4042 1.0000000000000000e+02 9.3500000000000005e-01 4042 2.0000000000000000e+02 9.8599999999999999e-01 4042 5.0000000000000000e+02 9.9600000000000000e-01 4042 1.0000000000000000e+03 9.9900000000000000e-01 4042 2.0000000000000000e+03 1.0000000000000000e+00 4043 2.0000000000000000e+00 1.7000000000000001e-01 4043 1.0000000000000000e+01 2.3999999999999999e-01 4043 2.0000000000000000e+01 3.7000000000000000e-01 4043 5.0000000000000000e+01 7.5600000000000001e-01 4043 1.0000000000000000e+02 9.6699999999999997e-01 4043 2.0000000000000000e+02 9.9299999999999999e-01 4043 5.0000000000000000e+02 9.9800000000000000e-01 4043 1.0000000000000000e+03 1.0000000000000000e+00 4043 2.0000000000000000e+03 1.0000000000000000e+00 4050 2.0000000000000000e+00 2.5000000000000001e-02 4050 1.0000000000000000e+01 4.4999999999999998e-02 4050 2.0000000000000000e+01 5.9999999999999998e-02 4050 5.0000000000000000e+01 1.6100000000000000e-01 4050 1.0000000000000000e+02 3.4300000000000003e-01 4050 2.0000000000000000e+02 7.6700000000000002e-01 4050 5.0000000000000000e+02 9.8899999999999999e-01 4050 1.0000000000000000e+03 9.9700000000000000e-01 4050 2.0000000000000000e+03 1.0000000000000000e+00 4051 2.0000000000000000e+00 2.8000000000000001e-02 4051 1.0000000000000000e+01 3.3000000000000002e-02 4051 2.0000000000000000e+01 3.5000000000000003e-02 4051 5.0000000000000000e+01 9.1999999999999998e-02 4051 1.0000000000000000e+02 2.5800000000000001e-01 4051 2.0000000000000000e+02 7.4199999999999999e-01 4051 5.0000000000000000e+02 9.9299999999999999e-01 4051 1.0000000000000000e+03 9.9900000000000000e-01 4051 2.0000000000000000e+03 1.0009999999999999e+00 4052 2.0000000000000000e+00 2.0000000000000000e-02 4052 1.0000000000000000e+01 2.5000000000000001e-02 4052 2.0000000000000000e+01 2.3000000000000000e-02 4052 5.0000000000000000e+01 1.0500000000000000e-01 4052 1.0000000000000000e+02 3.2000000000000001e-01 4052 2.0000000000000000e+02 7.7900000000000003e-01 4052 5.0000000000000000e+02 9.8799999999999999e-01 4052 1.0000000000000000e+03 9.9900000000000000e-01 4052 2.0000000000000000e+03 1.0000000000000000e+00 4060 2.0000000000000000e+00 3.3000000000000002e-02 4060 1.0000000000000000e+01 3.5000000000000003e-02 4060 2.0000000000000000e+01 4.0000000000000001e-02 4060 5.0000000000000000e+01 1.2100000000000000e-01 4060 1.0000000000000000e+02 2.9299999999999998e-01 4060 2.0000000000000000e+02 7.4900000000000000e-01 4060 5.0000000000000000e+02 9.9199999999999999e-01 4060 1.0000000000000000e+03 9.9900000000000000e-01 4060 2.0000000000000000e+03 1.0000000000000000e+00 4061 2.0000000000000000e+00 3.5000000000000003e-02 4061 1.0000000000000000e+01 3.5000000000000003e-02 4061 2.0000000000000000e+01 3.5000000000000003e-02 4061 5.0000000000000000e+01 4.4999999999999998e-02 4061 1.0000000000000000e+02 2.5500000000000000e-01 4061 2.0000000000000000e+02 8.1999999999999995e-01 4061 5.0000000000000000e+02 9.9700000000000000e-01 4061 1.0000000000000000e+03 1.0000000000000000e+00 4061 2.0000000000000000e+03 1.0000000000000000e+00 4062 2.0000000000000000e+00 5.5000000000000000e-02 4062 1.0000000000000000e+01 6.5000000000000002e-02 4062 2.0000000000000000e+01 8.0000000000000002e-02 4062 5.0000000000000000e+01 1.4499999999999999e-01 4062 1.0000000000000000e+02 4.7599999999999998e-01 4062 2.0000000000000000e+02 8.9400000000000002e-01 4062 5.0000000000000000e+02 9.9800000000000000e-01 4062 1.0000000000000000e+03 1.0000000000000000e+00 4062 2.0000000000000000e+03 1.0000000000000000e+00 4070 2.0000000000000000e+00 1.0500000000000000e-01 4070 1.0000000000000000e+01 1.6000000000000000e-01 4070 2.0000000000000000e+01 2.6000000000000001e-01 4070 5.0000000000000000e+01 6.5200000000000002e-01 4070 1.0000000000000000e+02 8.9200000000000002e-01 4070 2.0000000000000000e+02 9.7099999999999997e-01 4070 5.0000000000000000e+02 9.9500000000000000e-01 4070 1.0000000000000000e+03 9.9900000000000000e-01 4070 2.0000000000000000e+03 1.0000000000000000e+00 4071 2.0000000000000000e+00 9.8000000000000004e-02 4071 1.0000000000000000e+01 2.2500000000000001e-01 4071 2.0000000000000000e+01 3.4799999999999998e-01 4071 5.0000000000000000e+01 7.2499999999999998e-01 4071 1.0000000000000000e+02 9.4699999999999995e-01 4071 2.0000000000000000e+02 9.8799999999999999e-01 4071 5.0000000000000000e+02 9.9800000000000000e-01 4071 1.0000000000000000e+03 9.9900000000000000e-01 4071 2.0000000000000000e+03 1.0000000000000000e+00 4080 2.0000000000000000e+00 1.4999999999999999e-01 4080 1.0000000000000000e+01 2.5300000000000000e-01 4080 2.0000000000000000e+01 4.1299999999999998e-01 4080 5.0000000000000000e+01 8.6599999999999999e-01 4080 1.0000000000000000e+02 9.5899999999999996e-01 4080 2.0000000000000000e+02 9.6899999999999997e-01 4080 5.0000000000000000e+02 9.8599999999999999e-01 4080 1.0000000000000000e+03 9.9600000000000000e-01 4080 2.0000000000000000e+03 1.0000000000000000e+00 4081 2.0000000000000000e+00 1.7000000000000001e-01 4081 1.0000000000000000e+01 2.7000000000000002e-01 4081 2.0000000000000000e+01 4.2499999999999999e-01 4081 5.0000000000000000e+01 9.1700000000000004e-01 4081 1.0000000000000000e+02 9.8999999999999999e-01 4081 2.0000000000000000e+02 9.9399999999999999e-01 4081 5.0000000000000000e+02 9.9700000000000000e-01 4081 1.0000000000000000e+03 9.9900000000000000e-01 4081 2.0000000000000000e+03 1.0000000000000000e+00 4082 2.0000000000000000e+00 1.5500000000000000e-01 4082 1.0000000000000000e+01 2.7800000000000002e-01 4082 2.0000000000000000e+01 4.1999999999999998e-01 4082 5.0000000000000000e+01 9.2300000000000004e-01 4082 1.0000000000000000e+02 9.8799999999999999e-01 4082 2.0000000000000000e+02 9.9299999999999999e-01 4082 5.0000000000000000e+02 9.9700000000000000e-01 4082 1.0000000000000000e+03 9.9800000000000000e-01 4082 2.0000000000000000e+03 1.0000000000000000e+00 4090 2.0000000000000000e+00 1.1300000000000000e-01 4090 1.0000000000000000e+01 2.1299999999999999e-01 4090 2.0000000000000000e+01 3.7000000000000000e-01 4090 5.0000000000000000e+01 8.8000000000000000e-01 4090 1.0000000000000000e+02 9.8799999999999999e-01 4090 2.0000000000000000e+02 9.9299999999999999e-01 4090 5.0000000000000000e+02 9.9700000000000000e-01 4090 1.0000000000000000e+03 9.8999999999999999e-01 4090 2.0000000000000000e+03 1.0000000000000000e+00 4091 2.0000000000000000e+00 1.3300000000000001e-01 4091 1.0000000000000000e+01 2.6000000000000001e-01 4091 2.0000000000000000e+01 4.1999999999999998e-01 4091 5.0000000000000000e+01 9.1000000000000003e-01 4091 1.0000000000000000e+02 9.9299999999999999e-01 4091 2.0000000000000000e+02 9.9600000000000000e-01 4091 5.0000000000000000e+02 9.9800000000000000e-01 4091 1.0000000000000000e+03 9.9900000000000000e-01 4091 2.0000000000000000e+03 1.0000000000000000e+00 4092 2.0000000000000000e+00 1.6300000000000001e-01 4092 1.0000000000000000e+01 2.7000000000000002e-01 4092 2.0000000000000000e+01 4.3500000000000000e-01 4092 5.0000000000000000e+01 9.0300000000000002e-01 4092 1.0000000000000000e+02 9.8799999999999999e-01 4092 2.0000000000000000e+02 9.9500000000000000e-01 4092 5.0000000000000000e+02 9.9800000000000000e-01 4092 1.0000000000000000e+03 9.9900000000000000e-01 4092 2.0000000000000000e+03 1.0000000000000000e+00 4100 2.0000000000000000e+00 1.1000000000000000e-01 4100 1.0000000000000000e+01 2.1500000000000000e-01 4100 2.0000000000000000e+01 2.5500000000000000e-01 4100 5.0000000000000000e+01 4.6899999999999997e-01 4100 1.0000000000000000e+02 8.2999999999999996e-01 4100 2.0000000000000000e+02 9.7699999999999998e-01 4100 5.0000000000000000e+02 9.9800000000000000e-01 4100 1.0000000000000000e+03 9.9900000000000000e-01 4100 2.0000000000000000e+03 1.0000000000000000e+00 4101 2.0000000000000000e+00 1.6300000000000001e-01 4101 1.0000000000000000e+01 2.6300000000000001e-01 4101 2.0000000000000000e+01 3.1500000000000000e-01 4101 5.0000000000000000e+01 5.8399999999999996e-01 4101 1.0000000000000000e+02 9.4499999999999995e-01 4101 2.0000000000000000e+02 9.9099999999999999e-01 4101 5.0000000000000000e+02 9.8999999999999999e-01 4101 1.0000000000000000e+03 9.8999999999999999e-01 4101 2.0000000000000000e+03 1.0000000000000000e+00 4102 2.0000000000000000e+00 1.8300000000000000e-01 4102 1.0000000000000000e+01 2.7800000000000002e-01 4102 2.0000000000000000e+01 3.3300000000000002e-01 4102 5.0000000000000000e+01 5.9999999999999998e-01 4102 1.0000000000000000e+02 9.5699999999999996e-01 4102 2.0000000000000000e+02 9.9700000000000000e-01 4102 5.0000000000000000e+02 1.0000000000000000e+00 4102 1.0000000000000000e+03 1.0000000000000000e+00 4102 2.0000000000000000e+03 1.0000000000000000e+00 4110 2.0000000000000000e+00 1.1000000000000000e-01 4110 1.0000000000000000e+01 1.8300000000000000e-01 4110 2.0000000000000000e+01 2.3799999999999999e-01 4110 5.0000000000000000e+01 4.5400000000000001e-01 4110 1.0000000000000000e+02 8.5299999999999998e-01 4110 2.0000000000000000e+02 9.8299999999999998e-01 4110 5.0000000000000000e+02 9.9900000000000000e-01 4110 1.0000000000000000e+03 1.0000000000000000e+00 4110 2.0000000000000000e+03 1.0000000000000000e+00 4111 2.0000000000000000e+00 1.2000000000000000e-01 4111 1.0000000000000000e+01 2.2500000000000001e-01 4111 2.0000000000000000e+01 2.6000000000000001e-01 4111 5.0000000000000000e+01 4.7999999999999998e-01 4111 1.0000000000000000e+02 8.4999999999999998e-01 4111 2.0000000000000000e+02 9.7899999999999998e-01 4111 5.0000000000000000e+02 9.9800000000000000e-01 4111 1.0000000000000000e+03 1.0000000000000000e+00 4111 2.0000000000000000e+03 1.0000000000000000e+00 4112 2.0000000000000000e+00 1.5800000000000000e-01 4112 1.0000000000000000e+01 2.1299999999999999e-01 4112 2.0000000000000000e+01 2.4299999999999999e-01 4112 5.0000000000000000e+01 4.4600000000000001e-01 4112 1.0000000000000000e+02 9.4499999999999995e-01 4112 2.0000000000000000e+02 9.9800000000000000e-01 4112 5.0000000000000000e+02 1.0000000000000000e+00 4112 1.0000000000000000e+03 1.0000000000000000e+00 4112 2.0000000000000000e+03 1.0000000000000000e+00 4120 2.0000000000000000e+00 5.0800000000000001e-01 4120 1.0000000000000000e+01 6.6900000000000004e-01 4120 2.0000000000000000e+01 7.8800000000000003e-01 4120 5.0000000000000000e+01 8.5799999999999998e-01 4120 1.0000000000000000e+02 9.5999999999999996e-01 4120 2.0000000000000000e+02 9.9099999999999999e-01 4120 5.0000000000000000e+02 9.9500000000000000e-01 4120 1.0000000000000000e+03 9.9800000000000000e-01 4120 2.0000000000000000e+03 1.0000000000000000e+00 4121 2.0000000000000000e+00 5.3200000000000003e-01 4121 1.0000000000000000e+01 7.5600000000000001e-01 4121 2.0000000000000000e+01 8.7600000000000000e-01 4121 5.0000000000000000e+01 9.1400000000000003e-01 4121 1.0000000000000000e+02 9.4799999999999995e-01 4121 2.0000000000000000e+02 9.6699999999999997e-01 4121 5.0000000000000000e+02 9.7799999999999998e-01 4121 1.0000000000000000e+03 9.8599999999999999e-01 4121 2.0000000000000000e+03 1.0000000000000000e+00 4130 2.0000000000000000e+00 5.3999999999999999e-02 4130 1.0000000000000000e+01 7.2999999999999995e-02 4130 2.0000000000000000e+01 9.4000000000000000e-02 4130 5.0000000000000000e+01 1.8200000000000000e-01 4130 1.0000000000000000e+02 3.0099999999999999e-01 4130 2.0000000000000000e+02 6.2200000000000000e-01 4130 5.0000000000000000e+02 9.6799999999999997e-01 4130 1.0000000000000000e+03 9.8899999999999999e-01 4130 2.0000000000000000e+03 1.0000000000000000e+00 4131 2.0000000000000000e+00 4.2999999999999997e-02 4131 1.0000000000000000e+01 4.3999999999999997e-02 4131 2.0000000000000000e+01 4.8000000000000001e-02 4131 5.0000000000000000e+01 6.0999999999999999e-02 4131 1.0000000000000000e+02 2.1900000000000000e-01 4131 2.0000000000000000e+02 6.7200000000000004e-01 4131 5.0000000000000000e+02 9.7599999999999998e-01 4131 1.0000000000000000e+03 9.9500000000000000e-01 4131 2.0000000000000000e+03 1.0000000000000000e+00 4132 2.0000000000000000e+00 6.8000000000000005e-02 4132 1.0000000000000000e+01 7.0999999999999994e-02 4132 2.0000000000000000e+01 7.5999999999999998e-02 4132 5.0000000000000000e+01 1.0600000000000000e-01 4132 1.0000000000000000e+02 4.8299999999999998e-01 4132 2.0000000000000000e+02 8.6199999999999999e-01 4132 5.0000000000000000e+02 9.7099999999999997e-01 4132 1.0000000000000000e+03 9.9500000000000000e-01 4132 2.0000000000000000e+03 1.0000000000000000e+00 4140 2.0000000000000000e+00 3.5000000000000003e-02 4140 1.0000000000000000e+01 4.8000000000000001e-02 4140 2.0000000000000000e+01 5.9999999999999998e-02 4140 5.0000000000000000e+01 1.2400000000000000e-01 4140 1.0000000000000000e+02 2.4199999999999999e-01 4140 2.0000000000000000e+02 6.9999999999999996e-01 4140 5.0000000000000000e+02 9.8299999999999998e-01 4140 1.0000000000000000e+03 9.9800000000000000e-01 4140 2.0000000000000000e+03 1.0000000000000000e+00 4141 2.0000000000000000e+00 3.3000000000000002e-02 4141 1.0000000000000000e+01 4.2999999999999997e-02 4141 2.0000000000000000e+01 5.5000000000000000e-02 4141 5.0000000000000000e+01 8.2000000000000003e-02 4141 1.0000000000000000e+02 2.0499999999999999e-01 4141 2.0000000000000000e+02 7.2499999999999998e-01 4141 5.0000000000000000e+02 9.8499999999999999e-01 4141 1.0000000000000000e+03 9.9700000000000000e-01 4141 2.0000000000000000e+03 1.0000000000000000e+00 4142 2.0000000000000000e+00 1.7999999999999999e-02 4142 1.0000000000000000e+01 2.1999999999999999e-02 4142 2.0000000000000000e+01 3.3000000000000002e-02 4142 5.0000000000000000e+01 4.2000000000000003e-02 4142 1.0000000000000000e+02 1.9200000000000000e-01 4142 2.0000000000000000e+02 7.0899999999999996e-01 4142 5.0000000000000000e+02 9.5499999999999996e-01 4142 1.0000000000000000e+03 9.8999999999999999e-01 4142 2.0000000000000000e+03 1.0000000000000000e+00 4150 2.0000000000000000e+00 3.5000000000000003e-02 4150 1.0000000000000000e+01 4.8000000000000001e-02 4150 2.0000000000000000e+01 5.5000000000000000e-02 4150 5.0000000000000000e+01 1.2300000000000000e-01 4150 1.0000000000000000e+02 2.0200000000000001e-01 4150 2.0000000000000000e+02 4.8899999999999999e-01 4150 5.0000000000000000e+02 9.4799999999999995e-01 4150 1.0000000000000000e+03 9.8999999999999999e-01 4150 2.0000000000000000e+03 1.0000000000000000e+00 4151 2.0000000000000000e+00 3.5000000000000003e-02 4151 1.0000000000000000e+01 4.0000000000000001e-02 4151 2.0000000000000000e+01 4.8000000000000001e-02 4151 5.0000000000000000e+01 7.0000000000000007e-02 4151 1.0000000000000000e+02 1.9300000000000000e-01 4151 2.0000000000000000e+02 5.9199999999999997e-01 4151 5.0000000000000000e+02 9.2000000000000004e-01 4151 1.0000000000000000e+03 9.6999999999999997e-01 4151 2.0000000000000000e+03 1.0000000000000000e+00 4152 2.0000000000000000e+00 3.5000000000000003e-02 4152 1.0000000000000000e+01 3.5000000000000003e-02 4152 2.0000000000000000e+01 4.0000000000000001e-02 4152 5.0000000000000000e+01 6.3000000000000000e-02 4152 1.0000000000000000e+02 2.7700000000000002e-01 4152 2.0000000000000000e+02 7.3999999999999999e-01 4152 5.0000000000000000e+02 9.5399999999999996e-01 4152 1.0000000000000000e+03 9.8299999999999998e-01 4152 2.0000000000000000e+03 1.0000000000000000e+00 4160 2.0000000000000000e+00 1.1200000000000000e-01 4160 1.0000000000000000e+01 1.4899999999999999e-01 4160 2.0000000000000000e+01 1.9700000000000001e-01 4160 5.0000000000000000e+01 3.3700000000000002e-01 4160 1.0000000000000000e+02 5.6200000000000006e-01 4160 2.0000000000000000e+02 8.6899999999999999e-01 4160 5.0000000000000000e+02 9.8499999999999999e-01 4160 1.0000000000000000e+03 9.9399999999999999e-01 4160 2.0000000000000000e+03 1.0000000000000000e+00 4161 2.0000000000000000e+00 1.1700000000000001e-01 4161 1.0000000000000000e+01 1.4899999999999999e-01 4161 2.0000000000000000e+01 2.0000000000000001e-01 4161 5.0000000000000000e+01 3.5199999999999998e-01 4161 1.0000000000000000e+02 5.4700000000000004e-01 4161 2.0000000000000000e+02 8.7200000000000000e-01 4161 5.0000000000000000e+02 9.8599999999999999e-01 4161 1.0000000000000000e+03 9.9800000000000000e-01 4161 2.0000000000000000e+03 1.0000000000000000e+00 4162 2.0000000000000000e+00 1.9400000000000001e-01 4162 1.0000000000000000e+01 2.3400000000000001e-01 4162 2.0000000000000000e+01 2.7200000000000002e-01 4162 5.0000000000000000e+01 3.5099999999999998e-01 4162 1.0000000000000000e+02 5.2200000000000002e-01 4162 2.0000000000000000e+02 9.1200000000000003e-01 4162 5.0000000000000000e+02 9.9299999999999999e-01 4162 1.0000000000000000e+03 9.9700000000000000e-01 4162 2.0000000000000000e+03 1.0000000000000000e+00 4170 2.0000000000000000e+00 1.1000000000000000e-01 4170 1.0000000000000000e+01 1.4199999999999999e-01 4170 2.0000000000000000e+01 1.9200000000000000e-01 4170 5.0000000000000000e+01 3.2300000000000001e-01 4170 1.0000000000000000e+02 5.5200000000000005e-01 4170 2.0000000000000000e+02 8.7000000000000000e-01 4170 5.0000000000000000e+02 9.8799999999999999e-01 4170 1.0000000000000000e+03 9.9700000000000000e-01 4170 2.0000000000000000e+03 1.0000000000000000e+00 4171 2.0000000000000000e+00 1.1700000000000001e-01 4171 1.0000000000000000e+01 1.5800000000000000e-01 4171 2.0000000000000000e+01 2.0799999999999999e-01 4171 5.0000000000000000e+01 3.4899999999999998e-01 4171 1.0000000000000000e+02 5.6999999999999995e-01 4171 2.0000000000000000e+02 8.7300000000000000e-01 4171 5.0000000000000000e+02 9.8399999999999999e-01 4171 1.0000000000000000e+03 9.9700000000000000e-01 4171 2.0000000000000000e+03 1.0000000000000000e+00 4172 2.0000000000000000e+00 1.9400000000000001e-01 4172 1.0000000000000000e+01 2.3499999999999999e-01 4172 2.0000000000000000e+01 2.7200000000000002e-01 4172 5.0000000000000000e+01 3.5099999999999998e-01 4172 1.0000000000000000e+02 5.2200000000000002e-01 4172 2.0000000000000000e+02 9.1200000000000003e-01 4172 5.0000000000000000e+02 9.9299999999999999e-01 4172 1.0000000000000000e+03 9.9700000000000000e-01 4172 2.0000000000000000e+03 1.0000000000000000e+00 4180 2.0000000000000000e+00 1.1200000000000000e-01 4180 1.0000000000000000e+01 1.7299999999999999e-01 4180 2.0000000000000000e+01 2.8399999999999997e-01 4180 5.0000000000000000e+01 6.7900000000000005e-01 4180 1.0000000000000000e+02 8.6899999999999999e-01 4180 2.0000000000000000e+02 9.3300000000000005e-01 4180 5.0000000000000000e+02 9.8899999999999999e-01 4180 1.0000000000000000e+03 9.9800000000000000e-01 4180 2.0000000000000000e+03 1.0000000000000000e+00 4181 2.0000000000000000e+00 1.3900000000000001e-01 4181 1.0000000000000000e+01 2.0200000000000001e-01 4181 2.0000000000000000e+01 3.1100000000000000e-01 4181 5.0000000000000000e+01 7.2199999999999998e-01 4181 1.0000000000000000e+02 9.0800000000000003e-01 4181 2.0000000000000000e+02 9.5699999999999996e-01 4181 5.0000000000000000e+02 9.9500000000000000e-01 4181 1.0000000000000000e+03 9.9900000000000000e-01 4181 2.0000000000000000e+03 1.0000000000000000e+00 4182 2.0000000000000000e+00 1.3600000000000001e-01 4182 1.0000000000000000e+01 2.0399999999999999e-01 4182 2.0000000000000000e+01 3.2400000000000001e-01 4182 5.0000000000000000e+01 7.3499999999999999e-01 4182 1.0000000000000000e+02 9.2700000000000005e-01 4182 2.0000000000000000e+02 9.5999999999999996e-01 4182 5.0000000000000000e+02 9.8899999999999999e-01 4182 1.0000000000000000e+03 9.9800000000000000e-01 4182 2.0000000000000000e+03 1.0000000000000000e+00 4183 2.0000000000000000e+00 2.1199999999999999e-01 4183 1.0000000000000000e+01 2.5700000000000001e-01 4183 2.0000000000000000e+01 3.5699999999999998e-01 4183 5.0000000000000000e+01 7.1199999999999997e-01 4183 1.0000000000000000e+02 9.3300000000000005e-01 4183 2.0000000000000000e+02 9.7499999999999998e-01 4183 5.0000000000000000e+02 9.9900000000000000e-01 4183 1.0000000000000000e+03 1.0000000000000000e+00 4183 2.0000000000000000e+03 1.0000000000000000e+00 4190 2.0000000000000000e+00 4.2999999999999999e-01 4190 5.0000000000000000e+01 7.6000000000000001e-01 4190 2.5000000000000000e+02 1.0000000000000000e+00 4191 2.0000000000000000e+00 4.2999999999999999e-01 4191 5.0000000000000000e+01 7.6000000000000001e-01 4191 2.5000000000000000e+02 1.0000000000000000e+00 4192 2.0000000000000000e+00 4.2999999999999999e-01 4192 5.0000000000000000e+01 7.6000000000000001e-01 4192 2.5000000000000000e+02 1.0000000000000000e+00 4193 2.0000000000000000e+00 4.2999999999999999e-01 4193 5.0000000000000000e+01 7.6000000000000001e-01 4193 2.5000000000000000e+02 1.0000000000000000e+00 4194 2.0000000000000000e+00 4.2999999999999999e-01 4194 5.0000000000000000e+01 7.6000000000000001e-01 4194 2.5000000000000000e+02 1.0000000000000000e+00 4195 2.0000000000000000e+00 4.2999999999999999e-01 4195 5.0000000000000000e+01 7.6000000000000001e-01 4195 2.5000000000000000e+02 1.0000000000000000e+00 4200 2.0000000000000000e+00 4.2999999999999999e-01 4200 5.0000000000000000e+01 7.6000000000000001e-01 4200 2.5000000000000000e+02 1.0000000000000000e+00 4201 2.0000000000000000e+00 4.2999999999999999e-01 4201 5.0000000000000000e+01 7.6000000000000001e-01 4201 2.5000000000000000e+02 1.0000000000000000e+00 4202 2.0000000000000000e+00 4.2999999999999999e-01 4202 5.0000000000000000e+01 7.6000000000000001e-01 4202 2.5000000000000000e+02 1.0000000000000000e+00 4203 2.0000000000000000e+00 4.2999999999999999e-01 4203 5.0000000000000000e+01 7.6000000000000001e-01 4203 2.5000000000000000e+02 1.0000000000000000e+00 4204 2.0000000000000000e+00 4.2999999999999999e-01 4204 5.0000000000000000e+01 7.6000000000000001e-01 4204 2.5000000000000000e+02 1.0000000000000000e+00 4210 2.0000000000000000e+00 4.2999999999999999e-01 4210 5.0000000000000000e+01 7.6000000000000001e-01 4210 2.5000000000000000e+02 1.0000000000000000e+00 4211 2.0000000000000000e+00 4.2999999999999999e-01 4211 5.0000000000000000e+01 7.6000000000000001e-01 4211 2.5000000000000000e+02 1.0000000000000000e+00 4212 2.0000000000000000e+00 4.2999999999999999e-01 4212 5.0000000000000000e+01 7.6000000000000001e-01 4212 2.5000000000000000e+02 1.0000000000000000e+00 4213 2.0000000000000000e+00 4.2999999999999999e-01 4213 5.0000000000000000e+01 7.6000000000000001e-01 4213 2.5000000000000000e+02 1.0000000000000000e+00 4220 2.0000000000000000e+00 1.7999999999999999e-01 4220 5.0000000000000000e+01 3.4000000000000002e-01 4220 2.5000000000000000e+02 1.0000000000000000e+00 4221 2.0000000000000000e+00 1.7999999999999999e-01 4221 5.0000000000000000e+01 3.4000000000000002e-01 4221 2.5000000000000000e+02 1.0000000000000000e+00 4222 2.0000000000000000e+00 1.7999999999999999e-01 4222 5.0000000000000000e+01 3.4000000000000002e-01 4222 2.5000000000000000e+02 1.0000000000000000e+00 4223 2.0000000000000000e+00 1.7999999999999999e-01 4223 5.0000000000000000e+01 3.4000000000000002e-01 4223 2.5000000000000000e+02 1.0000000000000000e+00 4224 2.0000000000000000e+00 1.7999999999999999e-01 4224 5.0000000000000000e+01 3.4000000000000002e-01 4224 2.5000000000000000e+02 1.0000000000000000e+00 4230 2.0000000000000000e+00 1.7999999999999999e-01 4230 5.0000000000000000e+01 3.4000000000000002e-01 4230 2.5000000000000000e+02 1.0000000000000000e+00 4231 2.0000000000000000e+00 1.7999999999999999e-01 4231 5.0000000000000000e+01 3.4000000000000002e-01 4231 2.5000000000000000e+02 1.0000000000000000e+00 4232 2.0000000000000000e+00 1.7999999999999999e-01 4232 5.0000000000000000e+01 3.4000000000000002e-01 4232 2.5000000000000000e+02 1.0000000000000000e+00 4233 2.0000000000000000e+00 1.7999999999999999e-01 4233 5.0000000000000000e+01 3.4000000000000002e-01 4233 2.5000000000000000e+02 1.0000000000000000e+00 4234 2.0000000000000000e+00 1.7999999999999999e-01 4234 5.0000000000000000e+01 3.4000000000000002e-01 4234 2.5000000000000000e+02 1.0000000000000000e+00 4241 2.0000000000000000e+00 2.8000000000000001e-02 4241 1.6000000000000000e+01 3.9000000000000000e-02 4241 5.0000000000000000e+01 7.4999999999999997e-02 4241 7.5000000000000000e+01 1.1100000000000000e-01 4241 1.0500000000000000e+02 2.2600000000000001e-01 4241 1.5000000000000000e+02 4.4600000000000001e-01 4241 2.1000000000000000e+02 6.9899999999999995e-01 4241 2.0000000000000000e+03 1.0000000000000000e+00 4242 2.0000000000000000e+00 2.4000000000000000e-02 4242 1.6000000000000000e+01 2.9999999999999999e-02 4242 5.0000000000000000e+01 7.4999999999999997e-02 4242 7.5000000000000000e+01 1.3300000000000001e-01 4242 1.0500000000000000e+02 2.8000000000000003e-01 4242 1.5000000000000000e+02 5.8999999999999997e-01 4242 2.1000000000000000e+02 8.1499999999999995e-01 4242 2.0000000000000000e+03 1.0000000000000000e+00 4243 2.0000000000000000e+00 2.4000000000000000e-02 4243 1.6000000000000000e+01 2.8000000000000001e-02 4243 5.0000000000000000e+01 5.9999999999999998e-02 4243 7.5000000000000000e+01 1.1500000000000000e-01 4243 1.0500000000000000e+02 2.5700000000000001e-01 4243 1.5000000000000000e+02 4.6500000000000002e-01 4243 2.1000000000000000e+02 7.0199999999999996e-01 4243 2.0000000000000000e+03 1.0000000000000000e+00 4251 2.0000000000000000e+00 2.9000000000000001e-02 4251 1.6000000000000000e+01 6.6000000000000003e-02 4251 5.0000000000000000e+01 1.5700000000000000e-01 4251 7.5000000000000000e+01 2.2500000000000001e-01 4251 1.0500000000000000e+02 3.5899999999999999e-01 4251 1.5000000000000000e+02 5.6499999999999995e-01 4251 2.1000000000000000e+02 7.6300000000000001e-01 4251 2.0000000000000000e+03 1.0000000000000000e+00 4252 2.0000000000000000e+00 2.5999999999999999e-02 4252 1.6000000000000000e+01 4.0000000000000001e-02 4252 5.0000000000000000e+01 6.2000000000000000e-02 4252 7.5000000000000000e+01 1.1100000000000000e-01 4252 1.0500000000000000e+02 2.6000000000000001e-01 4252 1.5000000000000000e+02 5.8099999999999996e-01 4252 2.1000000000000000e+02 8.1699999999999995e-01 4252 2.0000000000000000e+03 1.0000000000000000e+00 4253 2.0000000000000000e+00 2.3000000000000000e-02 4253 1.6000000000000000e+01 3.4000000000000002e-02 4253 5.0000000000000000e+01 8.1000000000000003e-02 4253 7.5000000000000000e+01 1.6400000000000001e-01 4253 1.0500000000000000e+02 3.4200000000000003e-01 4253 1.5000000000000000e+02 5.7399999999999995e-01 4253 2.1000000000000000e+02 7.8700000000000003e-01 4253 2.0000000000000000e+03 1.0000000000000000e+00 4261 2.0000000000000000e+00 2.9000000000000001e-02 4261 1.6000000000000000e+01 4.8000000000000001e-02 4261 5.0000000000000000e+01 6.7000000000000004e-02 4261 7.5000000000000000e+01 8.3000000000000004e-02 4261 1.0500000000000000e+02 1.6500000000000001e-01 4261 1.5000000000000000e+02 3.9000000000000001e-01 4261 2.1000000000000000e+02 6.8600000000000005e-01 4261 2.0000000000000000e+03 1.0000000000000000e+00 4262 2.0000000000000000e+00 2.3000000000000000e-02 4262 1.6000000000000000e+01 2.9999999999999999e-02 4262 5.0000000000000000e+01 4.1000000000000002e-02 4262 7.5000000000000000e+01 7.0999999999999994e-02 4262 1.0500000000000000e+02 1.6400000000000001e-01 4262 1.5000000000000000e+02 4.3700000000000000e-01 4262 2.1000000000000000e+02 7.2299999999999998e-01 4262 2.0000000000000000e+03 1.0000000000000000e+00 4263 2.0000000000000000e+00 2.5999999999999999e-02 4263 1.6000000000000000e+01 2.9000000000000001e-02 4263 5.0000000000000000e+01 5.0000000000000003e-02 4263 7.5000000000000000e+01 9.0999999999999998e-02 4263 1.0500000000000000e+02 2.2900000000000001e-01 4263 1.5000000000000000e+02 4.8099999999999998e-01 4263 2.1000000000000000e+02 7.5300000000000000e-01 4263 2.0000000000000000e+03 1.0000000000000000e+00 4271 2.0000000000000000e+00 2.5999999999999999e-02 4271 1.6000000000000000e+01 3.4000000000000002e-02 4271 5.0000000000000000e+01 4.5999999999999999e-02 4271 7.5000000000000000e+01 6.8000000000000005e-02 4271 1.0500000000000000e+02 1.8900000000000000e-01 4271 1.5000000000000000e+02 4.6500000000000002e-01 4271 2.1000000000000000e+02 7.3999999999999999e-01 4271 2.0000000000000000e+03 1.0000000000000000e+00 4272 2.0000000000000000e+00 1.7999999999999999e-02 4272 1.6000000000000000e+01 2.8000000000000001e-02 4272 5.0000000000000000e+01 7.9000000000000001e-02 4272 7.5000000000000000e+01 1.3200000000000001e-01 4272 1.0500000000000000e+02 2.7100000000000002e-01 4272 1.5000000000000000e+02 5.1300000000000001e-01 4272 2.1000000000000000e+02 7.7800000000000002e-01 4272 2.0000000000000000e+03 1.0000000000000000e+00 4273 2.0000000000000000e+00 1.4999999999999999e-02 4273 1.6000000000000000e+01 2.7000000000000000e-02 4273 5.0000000000000000e+01 5.8999999999999997e-02 4273 7.5000000000000000e+01 1.3800000000000001e-01 4273 1.0500000000000000e+02 3.2300000000000001e-01 4273 1.5000000000000000e+02 6.0899999999999999e-01 4273 2.1000000000000000e+02 8.2399999999999995e-01 4273 2.0000000000000000e+03 1.0000000000000000e+00 4281 2.0000000000000000e+00 1.7999999999999999e-02 4281 1.6000000000000000e+01 3.9000000000000000e-02 4281 5.0000000000000000e+01 5.7000000000000002e-02 4281 7.5000000000000000e+01 8.0000000000000002e-02 4281 1.0500000000000000e+02 1.6900000000000001e-01 4281 1.5000000000000000e+02 4.2599999999999999e-01 4281 2.1000000000000000e+02 6.9099999999999995e-01 4281 2.0000000000000000e+03 1.0000000000000000e+00 4282 2.0000000000000000e+00 2.7000000000000000e-02 4282 1.6000000000000000e+01 3.5999999999999997e-02 4282 5.0000000000000000e+01 7.3999999999999996e-02 4282 7.5000000000000000e+01 1.3400000000000001e-01 4282 1.0500000000000000e+02 2.8799999999999998e-01 4282 1.5000000000000000e+02 5.6499999999999995e-01 4282 2.1000000000000000e+02 7.9800000000000004e-01 4282 2.0000000000000000e+03 1.0000000000000000e+00 4283 2.0000000000000000e+00 1.9200000000000000e-01 4283 1.6000000000000000e+01 2.9999999999999999e-01 4283 5.0000000000000000e+01 4.7499999999999998e-01 4283 7.5000000000000000e+01 4.9500000000000000e-01 4283 1.0500000000000000e+02 5.1900000000000002e-01 4283 1.5000000000000000e+02 5.6499999999999995e-01 4283 2.1000000000000000e+02 6.3300000000000001e-01 4283 2.0000000000000000e+03 1.0000000000000000e+00 4284 2.0000000000000000e+00 3.7400000000000000e-01 4284 1.6000000000000000e+01 5.7699999999999996e-01 4284 5.0000000000000000e+01 8.6899999999999999e-01 4284 7.5000000000000000e+01 8.8500000000000001e-01 4284 1.0500000000000000e+02 8.9200000000000002e-01 4284 1.5000000000000000e+02 9.0500000000000003e-01 4284 2.1000000000000000e+02 9.2300000000000004e-01 4284 2.0000000000000000e+03 1.0000000000000000e+00 4291 2.0000000000000000e+00 3.3900000000000002e-01 4291 1.6000000000000000e+01 3.9700000000000002e-01 4291 5.0000000000000000e+01 4.3800000000000000e-01 4291 7.5000000000000000e+01 4.6500000000000002e-01 4291 1.0500000000000000e+02 5.9099999999999997e-01 4291 1.5000000000000000e+02 8.4999999999999998e-01 4291 2.1000000000000000e+02 9.4199999999999995e-01 4291 2.0000000000000000e+03 1.0000000000000000e+00 4310 5.0000000000000000e+01 7.4999999999999997e-02 4310 6.3000000000000000e+01 9.5000000000000001e-02 4310 1.2500000000000000e+02 3.2000000000000001e-01 4310 1.5000000000000000e+02 4.2799999999999999e-01 4310 1.8000000000000000e+02 5.8199999999999996e-01 4310 2.5000000000000000e+02 7.9400000000000004e-01 4310 5.0000000000000000e+02 9.7099999999999997e-01 4310 1.0000000000000000e+03 9.9500000000000000e-01 4310 2.0000000000000000e+03 1.0000000000000000e+00 4311 5.0000000000000000e+01 3.1000000000000000e-02 4311 6.3000000000000000e+01 4.2999999999999997e-02 4311 1.2500000000000000e+02 2.6800000000000002e-01 4311 1.5000000000000000e+02 3.7000000000000000e-01 4311 1.8000000000000000e+02 5.4500000000000004e-01 4311 2.5000000000000000e+02 7.9800000000000004e-01 4311 5.0000000000000000e+02 9.8499999999999999e-01 4311 1.0000000000000000e+03 1.0000000000000000e+00 4340 5.0000000000000000e+01 5.1999999999999998e-02 4340 6.3000000000000000e+01 6.5000000000000002e-02 4340 1.2500000000000000e+02 3.3300000000000002e-01 4340 1.5000000000000000e+02 4.5300000000000001e-01 4340 1.8000000000000000e+02 6.1499999999999999e-01 4340 2.5000000000000000e+02 8.4699999999999998e-01 4340 5.0000000000000000e+02 9.9199999999999999e-01 4340 1.0000000000000000e+03 1.0000000000000000e+00 4341 5.0000000000000000e+01 3.7999999999999999e-02 4341 6.3000000000000000e+01 5.1999999999999998e-02 4341 1.2500000000000000e+02 3.0399999999999999e-01 4341 1.5000000000000000e+02 4.2099999999999999e-01 4341 1.8000000000000000e+02 6.6300000000000003e-01 4341 2.5000000000000000e+02 8.1599999999999995e-01 4341 5.0000000000000000e+02 9.8999999999999999e-01 4341 1.0000000000000000e+03 1.0000000000000000e+00 4390 4391 4410 4411 4412 4440 6.0000000000000000e+01 4.2999999999999997e-02 4440 1.0000000000000000e+02 5.0000000000000003e-02 4440 1.5000000000000000e+02 1.1000000000000000e-01 4440 2.0000000000000000e+02 2.3999999999999999e-01 4440 2.5000000000000000e+02 5.3000000000000003e-01 4440 3.0000000000000000e+02 7.7500000000000002e-01 4440 4.0000000000000000e+02 9.3999999999999995e-01 4440 5.0000000000000000e+02 9.7499999999999998e-01 4441 5.0000000000000000e+01 8.0000000000000002e-03 4441 7.5000000000000000e+01 2.0000000000000000e-02 4441 1.5000000000000000e+02 1.0000000000000001e-01 4441 1.7500000000000000e+02 2.0000000000000001e-01 4441 2.0000000000000000e+02 2.9999999999999999e-01 4441 2.5500000000000000e+02 6.9999999999999996e-01 4441 5.0000000000000000e+02 9.5999999999999996e-01 4441 1.0000000000000000e+03 9.7999999999999998e-01 4442 8.0000000000000000e+01 1.0999999999999999e-02 4442 1.6000000000000000e+02 1.2000000000000000e-01 4442 2.5000000000000000e+02 3.8000000000000000e-01 4442 3.0000000000000000e+02 5.4300000000000004e-01 4442 6.0000000000000000e+02 9.5599999999999996e-01 4442 1.0000000000000000e+03 9.8999999999999999e-01 4443 1.4400000000000000e+02 5.0000000000000001e-03 4443 2.1900000000000000e+02 1.2000000000000000e-01 4443 3.0000000000000000e+02 5.3600000000000003e-01 4443 4.9000000000000000e+02 9.4299999999999995e-01 4444 8.0000000000000000e+01 2.8000000000000001e-02 4444 1.6000000000000000e+02 1.3600000000000001e-01 4444 2.4000000000000000e+02 2.9299999999999998e-01 4444 3.1500000000000000e+02 5.0800000000000001e-01 4444 3.8000000000000000e+02 6.7800000000000005e-01 4444 4.4000000000000000e+02 7.9000000000000004e-01 4444 6.3000000000000000e+02 9.5099999999999996e-01 4445 9.4000000000000000e+01 5.9999999999999998e-02 4445 1.2000000000000000e+02 1.4999999999999999e-01 4445 2.0000000000000000e+02 3.7000000000000000e-01 4445 2.8000000000000000e+02 6.6000000000000003e-01 4445 5.0000000000000000e+02 9.8999999999999999e-01 4450 2.0000000000000000e+00 2.7000000000000002e-01 4450 2.0000000000000000e+01 7.3199999999999998e-01 4450 5.0000000000000000e+01 8.8800000000000001e-01 4450 1.0000000000000000e+02 9.4899999999999995e-01 4450 2.0000000000000000e+02 9.8299999999999998e-01 4460 2.0000000000000000e+00 2.5600000000000001e-01 4460 2.0000000000000000e+01 3.4300000000000003e-01 4460 5.0000000000000000e+01 3.9100000000000001e-01 4460 2.0000000000000000e+02 8.0800000000000005e-01 4460 2.0000000000000000e+03 1.0000000000000000e+00 4470 2.0000000000000000e+00 1.2000000000000000e-01 4470 5.0000000000000000e+00 2.3000000000000001e-01 4470 2.0000000000000000e+01 3.2000000000000001e-01 4470 5.0000000000000000e+01 3.5999999999999999e-01 4470 2.0000000000000000e+02 4.6999999999999997e-01 4470 1.0000000000000000e+03 1.0000000000000000e+00 4480 2.0000000000000000e+00 2.0000000000000000e-02 4480 5.0000000000000000e+01 7.5999999999999998e-02 4480 2.0000000000000000e+02 7.6600000000000001e-01 4480 2.0000000000000000e+03 1.0000000000000000e+00 4490 2.0000000000000000e+00 1.4999999999999999e-02 4490 2.0000000000000000e+01 2.5000000000000001e-02 4490 5.0000000000000000e+01 4.4999999999999998e-02 4490 2.0000000000000000e+02 7.7000000000000002e-01 4490 2.0000000000000000e+03 1.0000000000000000e+00 4500 2.0000000000000000e+00 1.0000000000000001e-01 4500 2.0000000000000000e+01 1.6500000000000001e-01 4500 5.0000000000000000e+01 2.3000000000000001e-01 4500 2.0000000000000000e+02 8.1000000000000005e-01 4500 2.0000000000000000e+03 1.0000000000000000e+00 4510 2.0000000000000000e+00 1.0700000000000000e-01 4510 4.0000000000000000e+00 1.2000000000000000e-01 4510 8.0000000000000000e+00 1.3800000000000001e-01 4510 1.6000000000000000e+01 1.8600000000000000e-01 4510 3.2000000000000000e+01 4.0100000000000002e-01 4510 6.3000000000000000e+01 8.3199999999999996e-01 4510 1.2500000000000000e+02 8.7400000000000000e-01 4510 2.5000000000000000e+02 9.3799999999999994e-01 4510 5.0000000000000000e+02 9.8699999999999999e-01 4510 1.0000000000000000e+03 9.9800000000000000e-01 4510 2.0000000000000000e+03 1.0000000000000000e+00 4511 2.0000000000000000e+00 1.0700000000000000e-01 4511 4.0000000000000000e+00 1.2000000000000000e-01 4511 8.0000000000000000e+00 1.3800000000000001e-01 4511 1.6000000000000000e+01 1.8600000000000000e-01 4511 3.2000000000000000e+01 4.0100000000000002e-01 4511 6.3000000000000000e+01 8.3199999999999996e-01 4511 1.2500000000000000e+02 8.7400000000000000e-01 4511 2.5000000000000000e+02 9.3799999999999994e-01 4511 5.0000000000000000e+02 9.8699999999999999e-01 4511 1.0000000000000000e+03 9.9800000000000000e-01 4511 2.0000000000000000e+03 1.0000000000000000e+00 4512 2.0000000000000000e+00 1.0700000000000000e-01 4512 4.0000000000000000e+00 1.2000000000000000e-01 4512 8.0000000000000000e+00 1.3800000000000001e-01 4512 1.6000000000000000e+01 1.8600000000000000e-01 4512 3.2000000000000000e+01 4.0100000000000002e-01 4512 6.3000000000000000e+01 8.3199999999999996e-01 4512 1.2500000000000000e+02 8.7400000000000000e-01 4512 2.5000000000000000e+02 9.3799999999999994e-01 4512 5.0000000000000000e+02 9.8699999999999999e-01 4512 1.0000000000000000e+03 9.9800000000000000e-01 4512 2.0000000000000000e+03 1.0000000000000000e+00 4514 2.0000000000000000e+00 1.0700000000000000e-01 4514 4.0000000000000000e+00 1.2000000000000000e-01 4514 8.0000000000000000e+00 1.3800000000000001e-01 4514 1.6000000000000000e+01 1.8600000000000000e-01 4514 3.2000000000000000e+01 4.0100000000000002e-01 4514 6.3000000000000000e+01 8.3199999999999996e-01 4514 1.2500000000000000e+02 8.7400000000000000e-01 4514 2.5000000000000000e+02 9.3799999999999994e-01 4514 5.0000000000000000e+02 9.8699999999999999e-01 4514 1.0000000000000000e+03 9.9800000000000000e-01 4514 2.0000000000000000e+03 1.0000000000000000e+00 4520 2.0000000000000000e+00 7.0000000000000001e-03 4520 4.0000000000000000e+00 7.0000000000000001e-03 4520 8.0000000000000000e+00 7.0000000000000001e-03 4520 1.6000000000000000e+01 8.0000000000000002e-03 4520 3.2000000000000000e+01 8.9999999999999993e-03 4520 6.3000000000000000e+01 1.2000000000000000e-02 4520 1.2500000000000000e+02 1.0400000000000000e-01 4520 2.5000000000000000e+02 5.8999999999999997e-01 4520 5.0000000000000000e+02 9.0900000000000003e-01 4520 1.0000000000000000e+03 9.8499999999999999e-01 4520 2.0000000000000000e+03 1.0000000000000000e+00 4521 2.0000000000000000e+00 7.0000000000000001e-03 4521 4.0000000000000000e+00 7.0000000000000001e-03 4521 8.0000000000000000e+00 7.0000000000000001e-03 4521 1.6000000000000000e+01 8.0000000000000002e-03 4521 3.2000000000000000e+01 8.9999999999999993e-03 4521 6.3000000000000000e+01 1.2000000000000000e-02 4521 1.2500000000000000e+02 1.0400000000000000e-01 4521 2.5000000000000000e+02 5.8999999999999997e-01 4521 5.0000000000000000e+02 9.0900000000000003e-01 4521 1.0000000000000000e+03 9.8499999999999999e-01 4521 2.0000000000000000e+03 1.0000000000000000e+00 4522 2.0000000000000000e+00 7.0000000000000001e-03 4522 4.0000000000000000e+00 7.0000000000000001e-03 4522 8.0000000000000000e+00 7.0000000000000001e-03 4522 1.6000000000000000e+01 8.0000000000000002e-03 4522 3.2000000000000000e+01 8.9999999999999993e-03 4522 6.3000000000000000e+01 1.2000000000000000e-02 4522 1.2500000000000000e+02 1.0400000000000000e-01 4522 2.5000000000000000e+02 5.8999999999999997e-01 4522 5.0000000000000000e+02 9.0900000000000003e-01 4522 1.0000000000000000e+03 9.8499999999999999e-01 4522 2.0000000000000000e+03 1.0000000000000000e+00 4523 2.0000000000000000e+00 7.0000000000000001e-03 4523 4.0000000000000000e+00 7.0000000000000001e-03 4523 8.0000000000000000e+00 7.0000000000000001e-03 4523 1.6000000000000000e+01 8.0000000000000002e-03 4523 3.2000000000000000e+01 8.9999999999999993e-03 4523 6.3000000000000000e+01 1.2000000000000000e-02 4523 1.2500000000000000e+02 1.0400000000000000e-01 4523 2.5000000000000000e+02 5.8999999999999997e-01 4523 5.0000000000000000e+02 9.0900000000000003e-01 4523 1.0000000000000000e+03 9.8499999999999999e-01 4523 2.0000000000000000e+03 1.0000000000000000e+00 4530 2.0000000000000000e+00 2.6800000000000002e-01 4530 4.0000000000000000e+00 3.2600000000000001e-01 4530 8.0000000000000000e+00 4.1099999999999998e-01 4530 1.6000000000000000e+01 5.4200000000000004e-01 4530 3.2000000000000000e+01 7.0899999999999996e-01 4530 6.3000000000000000e+01 7.9600000000000004e-01 4530 1.2500000000000000e+02 8.3199999999999996e-01 4530 2.5000000000000000e+02 8.7100000000000000e-01 4530 5.0000000000000000e+02 9.6899999999999997e-01 4530 1.0000000000000000e+03 9.9600000000000000e-01 4530 2.0000000000000000e+03 1.0000000000000000e+00 4531 2.0000000000000000e+00 2.6800000000000002e-01 4531 4.0000000000000000e+00 3.2600000000000001e-01 4531 8.0000000000000000e+00 4.1099999999999998e-01 4531 1.6000000000000000e+01 5.4200000000000004e-01 4531 3.2000000000000000e+01 7.0899999999999996e-01 4531 6.3000000000000000e+01 7.9600000000000004e-01 4531 1.2500000000000000e+02 8.3199999999999996e-01 4531 2.5000000000000000e+02 8.7100000000000000e-01 4531 5.0000000000000000e+02 9.6899999999999997e-01 4531 1.0000000000000000e+03 9.9600000000000000e-01 4531 2.0000000000000000e+03 1.0000000000000000e+00 4532 2.0000000000000000e+00 2.6800000000000002e-01 4532 4.0000000000000000e+00 3.2600000000000001e-01 4532 8.0000000000000000e+00 4.1099999999999998e-01 4532 1.6000000000000000e+01 5.4200000000000004e-01 4532 3.2000000000000000e+01 7.0899999999999996e-01 4532 6.3000000000000000e+01 7.9600000000000004e-01 4532 1.2500000000000000e+02 8.3199999999999996e-01 4532 2.5000000000000000e+02 8.7100000000000000e-01 4532 5.0000000000000000e+02 9.6899999999999997e-01 4532 1.0000000000000000e+03 9.9600000000000000e-01 4532 2.0000000000000000e+03 1.0000000000000000e+00 4533 2.0000000000000000e+00 2.6800000000000002e-01 4533 4.0000000000000000e+00 3.2600000000000001e-01 4533 8.0000000000000000e+00 4.1099999999999998e-01 4533 1.6000000000000000e+01 5.4200000000000004e-01 4533 3.2000000000000000e+01 7.0899999999999996e-01 4533 6.3000000000000000e+01 7.9600000000000004e-01 4533 1.2500000000000000e+02 8.3199999999999996e-01 4533 2.5000000000000000e+02 8.7100000000000000e-01 4533 5.0000000000000000e+02 9.6899999999999997e-01 4533 1.0000000000000000e+03 9.9600000000000000e-01 4533 2.0000000000000000e+03 1.0000000000000000e+00 4540 4.0000000000000000e+00 1.9600000000000001e-01 4540 8.0000000000000000e+00 2.1400000000000000e-01 4540 1.6000000000000000e+01 2.4199999999999999e-01 4540 3.2000000000000000e+01 3.0299999999999999e-01 4540 6.3000000000000000e+01 4.6700000000000003e-01 4540 1.2500000000000000e+02 9.3000000000000005e-01 4540 2.5000000000000000e+02 9.9800000000000000e-01 4540 5.0000000000000000e+02 1.0000000000000000e+00 4540 1.0000000000000000e+03 1.0000000000000000e+00 4540 2.0000000000000000e+03 1.0000000000000000e+00 4541 4.0000000000000000e+00 1.9600000000000001e-01 4541 8.0000000000000000e+00 2.1400000000000000e-01 4541 1.6000000000000000e+01 2.4199999999999999e-01 4541 3.2000000000000000e+01 3.0299999999999999e-01 4541 6.3000000000000000e+01 4.6700000000000003e-01 4541 1.2500000000000000e+02 9.3000000000000005e-01 4541 2.5000000000000000e+02 9.9800000000000000e-01 4541 5.0000000000000000e+02 1.0000000000000000e+00 4541 1.0000000000000000e+03 1.0000000000000000e+00 4541 2.0000000000000000e+03 1.0000000000000000e+00 4542 4.0000000000000000e+00 1.9600000000000001e-01 4542 8.0000000000000000e+00 2.1400000000000000e-01 4542 1.6000000000000000e+01 2.4199999999999999e-01 4542 3.2000000000000000e+01 3.0299999999999999e-01 4542 6.3000000000000000e+01 4.6700000000000003e-01 4542 1.2500000000000000e+02 9.3000000000000005e-01 4542 2.5000000000000000e+02 9.9800000000000000e-01 4542 5.0000000000000000e+02 1.0000000000000000e+00 4542 1.0000000000000000e+03 1.0000000000000000e+00 4542 2.0000000000000000e+03 1.0000000000000000e+00 4543 4.0000000000000000e+00 1.9600000000000001e-01 4543 8.0000000000000000e+00 2.1400000000000000e-01 4543 1.6000000000000000e+01 2.4199999999999999e-01 4543 3.2000000000000000e+01 3.0299999999999999e-01 4543 6.3000000000000000e+01 4.6700000000000003e-01 4543 1.2500000000000000e+02 9.3000000000000005e-01 4543 2.5000000000000000e+02 9.9800000000000000e-01 4543 5.0000000000000000e+02 1.0000000000000000e+00 4543 1.0000000000000000e+03 1.0000000000000000e+00 4543 2.0000000000000000e+03 1.0000000000000000e+00 4544 4.0000000000000000e+00 1.9600000000000001e-01 4544 8.0000000000000000e+00 2.1400000000000000e-01 4544 1.6000000000000000e+01 2.4199999999999999e-01 4544 3.2000000000000000e+01 3.0299999999999999e-01 4544 6.3000000000000000e+01 4.6700000000000003e-01 4544 1.2500000000000000e+02 9.3000000000000005e-01 4544 2.5000000000000000e+02 9.9800000000000000e-01 4544 5.0000000000000000e+02 1.0000000000000000e+00 4544 1.0000000000000000e+03 1.0000000000000000e+00 4544 2.0000000000000000e+03 1.0000000000000000e+00 4550 1.0000000000000000e+00 3.5399999999999998e-01 4550 5.0000000000000000e+00 4.6000000000000002e-01 4550 1.0000000000000000e+01 5.5800000000000005e-01 4550 5.0000000000000000e+01 8.8400000000000001e-01 4550 2.5000000000000000e+02 9.5999999999999996e-01 4550 1.0000000000000000e+03 1.0000000000000000e+00 4551 1.0000000000000000e+00 3.9800000000000002e-01 4551 5.0000000000000000e+00 4.9800000000000000e-01 4551 1.0000000000000000e+01 5.8499999999999996e-01 4551 5.0000000000000000e+01 9.1200000000000003e-01 4551 2.5000000000000000e+02 1.0000000000000000e+00 4551 1.0000000000000000e+03 1.0000000000000000e+00 4552 1.0000000000000000e+00 3.0700000000000000e-01 4552 5.0000000000000000e+00 3.8700000000000001e-01 4552 1.0000000000000000e+01 5.8399999999999996e-01 4552 5.0000000000000000e+01 8.9800000000000002e-01 4552 2.5000000000000000e+02 9.9900000000000000e-01 4552 1.0000000000000000e+03 1.0000000000000000e+00 4553 1.0000000000000000e+00 2.3799999999999999e-01 4553 5.0000000000000000e+00 2.8799999999999998e-01 4553 1.0000000000000000e+01 6.5000000000000002e-01 4553 5.0000000000000000e+01 8.3899999999999997e-01 4553 2.5000000000000000e+02 1.0000000000000000e+00 4553 1.0000000000000000e+03 1.0000000000000000e+00 4560 1.0000000000000000e+00 3.5399999999999998e-01 4560 5.0000000000000000e+00 4.6000000000000002e-01 4560 1.0000000000000000e+01 5.5800000000000005e-01 4560 5.0000000000000000e+01 8.8400000000000001e-01 4560 2.5000000000000000e+02 9.5999999999999996e-01 4560 1.0000000000000000e+03 1.0000000000000000e+00 4561 1.0000000000000000e+00 3.9800000000000002e-01 4561 5.0000000000000000e+00 4.9800000000000000e-01 4561 1.0000000000000000e+01 5.8499999999999996e-01 4561 5.0000000000000000e+01 9.1200000000000003e-01 4561 2.5000000000000000e+02 1.0000000000000000e+00 4561 1.0000000000000000e+03 1.0000000000000000e+00 4562 1.0000000000000000e+00 2.3799999999999999e-01 4562 5.0000000000000000e+00 2.8799999999999998e-01 4562 1.0000000000000000e+01 6.5000000000000002e-01 4562 5.0000000000000000e+01 8.3899999999999997e-01 4562 2.5000000000000000e+02 1.0000000000000000e+00 4562 1.0000000000000000e+03 1.0000000000000000e+00 4564 1.0000000000000000e+00 2.3200000000000001e-01 4564 5.0000000000000000e+00 3.1300000000000000e-01 4564 1.0000000000000000e+01 5.2900000000000003e-01 4564 5.0000000000000000e+01 8.4199999999999997e-01 4564 2.5000000000000000e+02 1.0000000000000000e+00 4564 1.0000000000000000e+03 1.0000000000000000e+00 4570 1.0000000000000000e+00 7.0999999999999994e-02 4570 5.0000000000000000e+00 1.9100000000000000e-01 4570 1.0000000000000000e+01 3.1600000000000000e-01 4570 5.0000000000000000e+01 8.3599999999999997e-01 4570 2.5000000000000000e+02 9.6599999999999997e-01 4570 1.0000000000000000e+03 1.0000000000000000e+00 4571 1.0000000000000000e+00 7.1999999999999995e-02 4571 5.0000000000000000e+00 1.6300000000000001e-01 4571 1.0000000000000000e+01 2.7200000000000002e-01 4571 5.0000000000000000e+01 8.1200000000000006e-01 4571 2.5000000000000000e+02 9.6299999999999997e-01 4571 1.0000000000000000e+03 9.9700000000000000e-01 4572 1.0000000000000000e+00 1.4499999999999999e-01 4572 5.0000000000000000e+00 2.3699999999999999e-01 4572 1.0000000000000000e+01 3.1500000000000000e-01 4572 5.0000000000000000e+01 8.6399999999999999e-01 4572 2.5000000000000000e+02 9.7299999999999998e-01 4572 1.0000000000000000e+03 1.0000000000000000e+00 4573 1.0000000000000000e+00 2.4399999999999999e-01 4573 5.0000000000000000e+00 3.3600000000000002e-01 4573 1.0000000000000000e+01 4.0500000000000003e-01 4573 5.0000000000000000e+01 8.1399999999999995e-01 4573 2.5000000000000000e+02 9.6199999999999997e-01 4573 1.0000000000000000e+03 1.0000000000000000e+00 4574 1.0000000000000000e+00 2.2200000000000000e-01 4574 5.0000000000000000e+00 3.0599999999999999e-01 4574 1.0000000000000000e+01 3.9500000000000002e-01 4574 5.0000000000000000e+01 8.2299999999999995e-01 4574 2.5000000000000000e+02 9.3799999999999994e-01 4574 1.0000000000000000e+03 1.0000000000000000e+00 4575 1.0000000000000000e+00 2.0499999999999999e-01 4575 5.0000000000000000e+00 2.7300000000000002e-01 4575 1.0000000000000000e+01 3.1800000000000000e-01 4575 5.0000000000000000e+01 5.4000000000000004e-01 4575 2.5000000000000000e+02 7.6800000000000002e-01 4575 1.0000000000000000e+03 1.0000000000000000e+00 4580 1.0000000000000000e+00 6.9000000000000006e-02 4580 5.0000000000000000e+00 1.0600000000000000e-01 4580 1.0000000000000000e+01 1.1100000000000000e-01 4580 5.0000000000000000e+01 1.7000000000000001e-01 4580 2.5000000000000000e+02 4.0200000000000002e-01 4580 5.0000000000000000e+02 9.2800000000000005e-01 4580 1.0000000000000000e+03 1.0000000000000000e+00 4581 1.0000000000000000e+00 6.7000000000000004e-02 4581 5.0000000000000000e+00 1.1400000000000000e-01 4581 1.0000000000000000e+01 1.2100000000000000e-01 4581 5.0000000000000000e+01 1.8600000000000000e-01 4581 2.5000000000000000e+02 4.0300000000000002e-01 4581 5.0000000000000000e+02 9.1800000000000004e-01 4581 1.0000000000000000e+03 1.0000000000000000e+00 4582 1.0000000000000000e+00 1.5300000000000000e-01 4582 5.0000000000000000e+00 1.9300000000000000e-01 4582 1.0000000000000000e+01 2.1800000000000000e-01 4582 5.0000000000000000e+01 3.4699999999999998e-01 4582 2.5000000000000000e+02 5.2800000000000002e-01 4582 5.0000000000000000e+02 9.1500000000000004e-01 4582 1.0000000000000000e+03 1.0000000000000000e+00 4583 1.0000000000000000e+00 4.2000000000000003e-02 4583 5.0000000000000000e+00 6.4000000000000001e-02 4583 1.0000000000000000e+01 6.5000000000000002e-02 4583 5.0000000000000000e+01 9.5000000000000001e-02 4583 2.5000000000000000e+02 2.6800000000000002e-01 4583 5.0000000000000000e+02 8.6799999999999999e-01 4583 1.0000000000000000e+03 1.0000000000000000e+00 4590 2.0000000000000000e+00 2.3999999999999999e-01 4590 6.0000000000000000e+01 6.4000000000000001e-01 4590 2.0000000000000000e+02 8.4999999999999998e-01 4590 6.0000000000000000e+02 9.6999999999999997e-01 4590 2.0000000000000000e+03 1.0000000000000000e+00 4591 2.0000000000000000e+00 2.3999999999999999e-01 4591 6.0000000000000000e+01 6.4000000000000001e-01 4591 2.0000000000000000e+02 8.4999999999999998e-01 4591 6.0000000000000000e+02 9.6999999999999997e-01 4591 2.0000000000000000e+03 1.0000000000000000e+00 4592 2.0000000000000000e+00 2.3999999999999999e-01 4592 6.0000000000000000e+01 6.4000000000000001e-01 4592 2.0000000000000000e+02 8.4999999999999998e-01 4592 6.0000000000000000e+02 9.6999999999999997e-01 4592 2.0000000000000000e+03 1.0000000000000000e+00 4600 2.0000000000000000e+00 2.3999999999999999e-01 4600 6.0000000000000000e+01 6.4000000000000001e-01 4600 2.0000000000000000e+02 8.4999999999999998e-01 4600 6.0000000000000000e+02 9.6999999999999997e-01 4600 2.0000000000000000e+03 1.0000000000000000e+00 4601 2.0000000000000000e+00 2.3999999999999999e-01 4601 6.0000000000000000e+01 6.3000000000000000e-01 4601 2.0000000000000000e+02 8.3999999999999997e-01 4601 6.0000000000000000e+02 9.5999999999999996e-01 4601 2.0000000000000000e+03 1.0000000000000000e+00 4602 2.0000000000000000e+00 2.3999999999999999e-01 4602 6.0000000000000000e+01 6.3000000000000000e-01 4602 2.0000000000000000e+02 8.3999999999999997e-01 4602 6.0000000000000000e+02 9.5999999999999996e-01 4602 2.0000000000000000e+03 1.0000000000000000e+00 4610 2.0000000000000000e+00 2.3999999999999999e-01 4610 6.0000000000000000e+01 6.4000000000000001e-01 4610 2.0000000000000000e+02 8.4999999999999998e-01 4610 6.0000000000000000e+02 9.6999999999999997e-01 4610 2.0000000000000000e+03 1.0000000000000000e+00 4611 2.0000000000000000e+00 2.3999999999999999e-01 4611 6.0000000000000000e+01 6.3000000000000000e-01 4611 2.0000000000000000e+02 8.3999999999999997e-01 4611 6.0000000000000000e+02 9.5999999999999996e-01 4611 2.0000000000000000e+03 1.0000000000000000e+00 4612 2.0000000000000000e+00 2.3999999999999999e-01 4612 6.0000000000000000e+01 6.3000000000000000e-01 4612 2.0000000000000000e+02 8.3999999999999997e-01 4612 6.0000000000000000e+02 9.5999999999999996e-01 4612 2.0000000000000000e+03 1.0000000000000000e+00 4620 2.0000000000000000e+00 2.3999999999999999e-01 4620 6.0000000000000000e+01 6.4000000000000001e-01 4620 2.0000000000000000e+02 8.4999999999999998e-01 4620 6.0000000000000000e+02 9.6999999999999997e-01 4620 2.0000000000000000e+03 1.0000000000000000e+00 4621 2.0000000000000000e+00 2.3999999999999999e-01 4621 6.0000000000000000e+01 6.3000000000000000e-01 4621 2.0000000000000000e+02 8.3999999999999997e-01 4621 6.0000000000000000e+02 9.5999999999999996e-01 4621 2.0000000000000000e+03 1.0000000000000000e+00 4622 2.0000000000000000e+00 2.3999999999999999e-01 4622 6.0000000000000000e+01 6.3000000000000000e-01 4622 2.0000000000000000e+02 8.3999999999999997e-01 4622 6.0000000000000000e+02 9.5999999999999996e-01 4622 2.0000000000000000e+03 1.0000000000000000e+00 4650 2.0000000000000000e+00 1.0000000000000000e-02 4650 6.0000000000000000e+00 2.0000000000000000e-02 4650 2.0000000000000000e+01 2.9999999999999999e-02 4650 6.0000000000000000e+01 8.0000000000000002e-02 4650 2.0000000000000000e+02 2.0999999999999999e-01 4650 6.0000000000000000e+02 8.9000000000000001e-01 4650 2.0000000000000000e+03 1.0000000000000000e+00 4651 2.0000000000000000e+00 1.0000000000000000e-02 4651 6.0000000000000000e+00 2.0000000000000000e-02 4651 2.0000000000000000e+01 2.9999999999999999e-02 4651 6.0000000000000000e+01 5.0000000000000003e-02 4651 2.0000000000000000e+02 2.3000000000000001e-01 4651 6.0000000000000000e+02 8.3999999999999997e-01 4651 2.0000000000000000e+03 1.0000000000000000e+00 4660 2.0000000000000000e+00 4.0000000000000001e-02 4660 6.0000000000000000e+00 5.0000000000000003e-02 4660 2.0000000000000000e+01 7.0000000000000007e-02 4660 6.0000000000000000e+01 8.9999999999999997e-02 4660 2.0000000000000000e+02 2.5000000000000000e-01 4660 6.0000000000000000e+02 9.2000000000000004e-01 4660 2.0000000000000000e+03 1.0000000000000000e+00 4661 2.0000000000000000e+00 2.9999999999999999e-02 4661 6.0000000000000000e+00 4.0000000000000001e-02 4661 2.0000000000000000e+01 5.0000000000000003e-02 4661 6.0000000000000000e+01 8.0000000000000002e-02 4661 2.0000000000000000e+02 2.0999999999999999e-01 4661 6.0000000000000000e+02 9.3000000000000005e-01 4661 2.0000000000000000e+03 1.0000000000000000e+00 4670 2.0000000000000000e+00 7.0000000000000007e-02 4670 6.0000000000000000e+00 1.3000000000000000e-01 4670 2.0000000000000000e+01 3.7000000000000000e-01 4670 6.0000000000000000e+01 9.6999999999999997e-01 4670 2.0000000000000000e+02 9.8999999999999999e-01 4670 6.0000000000000000e+02 1.0000000000000000e+00 4670 2.0000000000000000e+03 1.0000000000000000e+00 4671 2.0000000000000000e+00 8.9999999999999997e-02 4671 6.0000000000000000e+00 1.4000000000000001e-01 4671 2.0000000000000000e+01 3.4999999999999998e-01 4671 6.0000000000000000e+01 9.6999999999999997e-01 4671 2.0000000000000000e+02 1.0000000000000000e+00 4671 6.0000000000000000e+02 1.0000000000000000e+00 4671 2.0000000000000000e+03 1.0000000000000000e+00 4672 2.0000000000000000e+00 1.7999999999999999e-01 4672 6.0000000000000000e+00 2.3000000000000001e-01 4672 2.0000000000000000e+01 4.4000000000000000e-01 4672 6.0000000000000000e+01 9.3999999999999995e-01 4672 2.0000000000000000e+02 9.8999999999999999e-01 4672 6.0000000000000000e+02 1.0000000000000000e+00 4672 2.0000000000000000e+03 1.0000000000000000e+00 4673 2.0000000000000000e+00 1.4000000000000001e-01 4673 6.0000000000000000e+00 1.9000000000000000e-01 4673 2.0000000000000000e+01 4.0000000000000002e-01 4673 6.0000000000000000e+01 9.4999999999999996e-01 4673 2.0000000000000000e+02 9.6999999999999997e-01 4673 6.0000000000000000e+02 9.8999999999999999e-01 4673 2.0000000000000000e+03 1.0000000000000000e+00 4680 2.0000000000000000e+00 4.7299999999999998e-01 4680 6.0000000000000000e+00 5.6899999999999995e-01 4680 2.0000000000000000e+01 7.3599999999999999e-01 4680 6.0000000000000000e+01 8.9100000000000001e-01 4680 2.0000000000000000e+02 9.8399999999999999e-01 4680 6.0000000000000000e+02 9.9900000000000000e-01 4680 2.0000000000000000e+03 1.0000000000000000e+00 4681 2.0000000000000000e+00 5.4400000000000004e-01 4681 6.0000000000000000e+00 6.3700000000000001e-01 4681 2.0000000000000000e+01 8.0300000000000005e-01 4681 6.0000000000000000e+01 8.8800000000000001e-01 4681 2.0000000000000000e+02 9.7699999999999998e-01 4681 6.0000000000000000e+02 9.9900000000000000e-01 4681 2.0000000000000000e+03 1.0000000000000000e+00 4690 1.0000000000000000e+00 1.7399999999999999e-01 4690 2.0000000000000000e+00 2.3200000000000001e-01 4690 5.0000000000000000e+01 7.6200000000000001e-01 4690 1.0000000000000000e+02 9.2300000000000004e-01 4690 2.5000000000000000e+02 9.9500000000000000e-01 4690 5.0000000000000000e+02 9.9900000000000000e-01 4690 2.0000000000000000e+03 1.0000000000000000e+00 4700 1.0000000000000000e+00 2.6500000000000001e-01 4700 2.0000000000000000e+00 3.3100000000000002e-01 4700 5.0000000000000000e+01 8.8400000000000001e-01 4700 1.0000000000000000e+02 9.6499999999999997e-01 4700 2.5000000000000000e+02 9.9500000000000000e-01 4700 5.0000000000000000e+02 9.9800000000000000e-01 4700 2.0000000000000000e+03 1.0000000000000000e+00 4710 1.0000000000000000e+00 9.4000000000000000e-02 4710 2.0000000000000000e+00 1.2800000000000000e-01 4710 5.0000000000000000e+01 4.9199999999999999e-01 4710 1.0000000000000000e+02 8.0200000000000005e-01 4710 2.5000000000000000e+02 9.9099999999999999e-01 4710 5.0000000000000000e+02 9.9600000000000000e-01 4710 2.0000000000000000e+03 9.9900000000000000e-01 4720 1.0000000000000000e+00 4.0000000000000001e-02 4720 2.0000000000000000e+00 4.5999999999999999e-02 4720 5.0000000000000000e+01 9.0999999999999998e-02 4720 1.0000000000000000e+02 2.9499999999999998e-01 4720 2.5000000000000000e+02 7.4600000000000000e-01 4720 5.0000000000000000e+02 8.9900000000000002e-01 4720 2.0000000000000000e+03 9.9800000000000000e-01 4750 4760 4770 2.0000000000000000e+00 2.3999999999999999e-01 4770 2.0000000000000000e+01 5.0000000000000000e-01 4770 2.0000000000000000e+02 8.7000000000000000e-01 4770 2.0000000000000000e+03 9.7999999999999998e-01 4780 2.0000000000000000e+00 2.6000000000000001e-01 4780 2.0000000000000000e+01 5.1000000000000001e-01 4780 2.0000000000000000e+02 9.1000000000000003e-01 4780 2.0000000000000000e+03 9.7999999999999998e-01 4790 2.0000000000000000e+00 2.7000000000000002e-01 4790 2.0000000000000000e+01 3.2000000000000001e-01 4790 2.0000000000000000e+02 6.9999999999999996e-01 4790 2.0000000000000000e+03 9.8999999999999999e-01 4791 2.0000000000000000e+00 2.3000000000000001e-01 4791 2.0000000000000000e+01 2.7000000000000002e-01 4791 2.0000000000000000e+02 7.5000000000000000e-01 4791 2.0000000000000000e+03 9.7999999999999998e-01 4800 2.0000000000000000e+00 2.3999999999999999e-01 4800 2.0000000000000000e+01 5.0000000000000000e-01 4800 2.0000000000000000e+02 8.7000000000000000e-01 4800 2.0000000000000000e+03 9.7999999999999998e-01 4801 2.0000000000000000e+00 2.3999999999999999e-01 4801 2.0000000000000000e+01 5.0000000000000000e-01 4801 2.0000000000000000e+02 8.7000000000000000e-01 4801 2.0000000000000000e+03 9.7999999999999998e-01 4810 1.0000000000000000e+02 2.0000000000000000e-02 4810 2.5000000000000000e+02 1.3000000000000000e-01 4810 5.0000000000000000e+02 4.7999999999999998e-01 4810 1.0000000000000000e+03 9.8999999999999999e-01 4810 2.0000000000000000e+03 1.0000000000000000e+00 4870 4880 4881 4890 4910 4920 4921 4922 4923 4940 2.5000000000000000e+02 3.6199999999999999e-01 4940 5.0000000000000000e+02 6.2000000000000000e-01 4940 7.0000000000000000e+02 8.4199999999999997e-01 4940 1.4000000000000000e+03 1.0009999999999999e+00 4941 2.5000000000000000e+02 3.4799999999999998e-01 4941 5.0000000000000000e+02 5.9099999999999997e-01 4941 7.0000000000000000e+02 8.3799999999999997e-01 4941 1.4000000000000000e+03 1.0009999999999999e+00 4950 2.0000000000000000e+01 1.0000000000000001e-01 4950 1.5000000000000000e+02 5.0000000000000000e-01 4950 3.0000000000000000e+02 5.9999999999999998e-01 4950 2.0000000000000000e+03 1.0000000000000000e+00 4960 fluids-1.0.22/tests/test_mixing.py0000644000175000017500000000442314302004506016453 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids.mixing import * from fluids.numerics import assert_close, assert_close1d import pytest def test_mixing(): t1 = agitator_time_homogeneous(D=36*.0254, N=56/60., P=957., T=1.83, H=1.83, mu=0.018, rho=1020.0, homogeneity=.995) t2 = agitator_time_homogeneous(D=1, N=125/60., P=298., T=3, H=2.5, mu=.5, rho=980, homogeneity=.95) t3 = agitator_time_homogeneous(N=125/60., P=298., T=3, H=2.5, mu=.5, rho=980, homogeneity=.95) assert_close1d([t1, t2, t3], [15.143198226374668, 67.7575069865228, 51.70865552491966]) Kp = Kp_helical_ribbon_Rieger(D=1.9, h=1.9, nb=2, pitch=1.9, width=.19, T=2.0) assert_close(Kp, 357.39749163259256) t = time_helical_ribbon_Grenville(357.4, 4/60.) assert_close(t, 650.980654028894) CoV = size_tee(Q1=11.7, Q2=2.74, D=0.762, D2=None, n=1, pipe_diameters=5.0) assert_close(CoV, 0.2940930233038544) CoV = COV_motionless_mixer(Ki=.33, Q1=11.7, Q2=2.74, pipe_diameters=4.74/.762) assert_close(CoV, 0.0020900028665727685) K = K_motionless_mixer(K=150.0, L=.762*5, D=.762, fd=.01) assert_close(K, 7.5) fluids-1.0.22/tests/__init__.py0000644000175000017500000000225114302004506015655 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' fluids-1.0.22/tests/test_packed_bed.py0000644000175000017500000001204414302004506017217 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids.packed_bed import * from fluids.numerics import assert_close, assert_close1d import pytest def test_packed_bed(): dP = Ergun(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) assert_close(dP, 1338.8671874999995) dP = Kuo_Nydegger(dp=8E-1, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) assert_close(dP, 0.025651460973648624) dP = Jones_Krier(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) assert_close(dP, 1362.2719449873746) dP = Carman(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) assert_close(dP, 1614.721678121775) dP = Hicks(dp=0.01, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) assert_close(dP, 3.631703956680737) dP = Brauer(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) assert_close(dP, 1441.5479196020563) dP = KTA(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) assert_close(dP, 1440.409277034248) dP = Erdim_Akgiray_Demir(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) assert_close(dP, 1438.2826958844414) dP = Tallmadge(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) assert_close(dP, 1365.2739144209424) dP = Fahien_Schriver(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) assert_close(dP, 1470.6175541844711) dP = Idelchik(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) assert_close(dP, 1571.909125999067) dP1 = Harrison_Brunner_Hecker(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) dP2 = Harrison_Brunner_Hecker(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, Dt=1E-2) assert_close1d([dP1, dP2], [1104.6473821473724, 1255.1625662548427]) dP1 = Montillet_Akkari_Comiti(dp=0.0008, voidage=0.4, L=0.5, vs=0.00132629120, rho=1000., mu=1.00E-003) dP2 = Montillet_Akkari_Comiti(dp=0.08, voidage=0.4, L=0.5, vs=0.05, rho=1000., mu=1.00E-003) dP3 = Montillet_Akkari_Comiti(dp=0.08, voidage=0.3, L=0.5, vs=0.05, rho=1000., mu=1.00E-003, Dt=1.0) assert_close1d([dP1, dP2, dP3], [1148.1905244077548, 212.67409611116554, 540.501305905986]) dP1 = dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) dP2 = dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, Dt=0.01) dP3 = dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, Dt=0.01, Method='Ergun') dP4 = dP_packed_bed(dp=8E-4, voidage=0.4, sphericity=0.6, vs=1E-3, rho=1E3, mu=1E-3, Dt=0.01, Method='Ergun') dP5 = dP_packed_bed(8E-4, 0.4, 1E-3, 1E3, 1E-3) assert_close1d([dP1, dP2, dP3, dP4, dP5], [1438.2826958844414, 1255.1625662548427, 1338.8671874999995, 3696.2890624999986, 1438.2826958844414]) # REMOVE ONCE DEPRECATED methods_dP_val = ['Harrison, Brunner & Hecker', 'Carman', 'Guo, Sun, Zhang, Ding & Liu', 'Hicks', 'Montillet, Akkari & Comiti', 'Idelchik', 'Erdim, Akgiray & Demir', 'KTA', 'Kuo & Nydegger', 'Ergun', 'Brauer', 'Fahien & Schriver', 'Jones & Krier', 'Tallmadge'] methods_dP_val.sort() for m in methods_dP_val: dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, Dt=0.01, Method=m) all_methods = dP_packed_bed_methods(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, L=1, Dt=1e-2) assert 'Erdim, Akgiray & Demir' == dP_packed_bed_methods(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, L=1.0)[0] assert 'Harrison, Brunner & Hecker' == all_methods[0] all_methods.sort() assert all_methods == methods_dP_val with pytest.raises(Exception): dP_packed_bed(8E-4, 0.4, 1E-3, 1E3, 1E-3, Method='Fail') v = voidage_Benyahia_Oneil(1E-3, 1E-2, .8) assert_close(v, 0.41395363849210065) v = voidage_Benyahia_Oneil_spherical(.001, .05) assert_close(v, 0.3906653157443224) v = voidage_Benyahia_Oneil_cylindrical(.01, .1, .6) assert_close(v, 0.38812523109607894) def test_Guo_Sun(): dP = Guo_Sun(dp=14.2E-3, voidage=0.492, vs=0.6, rho=1E3, mu=1E-3, Dt=40.9E-3) assert_close(dP, 42019.529911473706) # Confirmed to be 42 kPa from a graph they providedfluids-1.0.22/tests/test_drag.py0000644000175000017500000001776414302004506016111 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from fluids.drag import drag_sphere, drag_sphere_methods, v_terminal, integrate_drag_sphere, time_v_terminal_Stokes, drag_sphere_correlations from fluids.drag import * from fluids.numerics import assert_close1d, assert_close import pytest close = assert_close1d def test_drag(): Cd = Stokes(0.1) assert_close(Cd, 240.0) # All examples from [1]_, in a table of calculated values, matches. Cds = [Barati(200.), Barati(0.002)] close(Cds, [0.7682237950389874, 12008.864343802072]) # All examples from [1]_, in a table of calculated values, matches. Cds = [Barati_high(i) for i in [200, 0.002, 1E6]] Cd_values = [0.7730544082789523, 12034.714777630921, 0.21254574397767056] close(Cds, Cd_values) Cds = [Rouse(i) for i in [200, 0.002]] Cd_values = [0.6721320343559642, 12067.422039324994] close(Cds, Cd_values) Cds = [Engelund_Hansen(i) for i in [200, 0.002]] Cd_values = [1.62, 12001.5] close(Cds, Cd_values) Cds = [Clift_Gauvin(i) for i in [200, 0.002]] Cd_values = [0.7905400398000133, 12027.153270425813] close(Cds, Cd_values) Cds = [Morsi_Alexander(i) for i in [0.002, 0.5, 5., 50., 500., 25E2, 7.5E3, 1E5]] Cd_values = [12000.0, 49.511199999999995, 6.899784, 1.500032, 0.549948, 0.408848, 0.4048818666666667, 0.50301667] close(Cds, Cd_values) Cds = [Graf(i) for i in [200, 0.002]] Cd_values = [0.8520984424785725, 12007.237509093471] close(Cds, Cd_values) Cds = [Flemmer_Banks(i) for i in [200, 0.002]] Cd_values = [0.7849169609270039, 12194.582998088363] close(Cds, Cd_values) Cds = [Khan_Richardson(i) for i in [200, 0.002]] Cd_values = [0.7747572379211097, 12335.279663284822] close(Cds, Cd_values) Cds = [Swamee_Ojha(i) for i in [200, 0.002]] Cd_values = [0.8490012397545713, 12006.510258198376] close(Cds, Cd_values) Cds = [Yen(i) for i in [200, 0.002]] Cd_values = [0.7822647002187014, 12080.906446259793] close(Cds, Cd_values) Cds = [Haider_Levenspiel(i) for i in [200, 0.002]] Cd_values = [0.7959551680251666, 12039.14121183969] close(Cds, Cd_values) Cds = [Cheng(i) for i in [200, 0.002]] Cd_values = [0.7939143028294227, 12002.787740305668] close(Cds, Cd_values) Cds = [Terfous(i) for i in [200]] Cd_values = [0.7814651149769638] close(Cds, Cd_values) Cds = [Mikhailov_Freire(i) for i in [200, 0.002]] Cd_values = [0.7514111388018659, 12132.189886046555] close(Cds, Cd_values) Cds = [Clift(i) for i in [0.002, 0.5, 50., 500., 2500., 40000, 75000., 340000, 5E5]] Cd_values = [12000.1875, 51.538273834491875, 1.5742657203722197, 0.5549240285782678, 0.40817983162668914, 0.4639066546786017, 0.49399935325210037, 0.4631617396760497, 0.5928043008238435] close(Cds, Cd_values) Cds = [Ceylan(i) for i in [200]] Cd_values = [0.7816735980280175] close(Cds, Cd_values) Cds = [Almedeij(i) for i in [200, 0.002]] Cd_values = [0.7114768646813396, 12000.000000391443] close(Cds, Cd_values) Cds = [Morrison(i) for i in [200, 0.002]] Cd_values = [0.767731559965325, 12000.134917101897] close(Cds, Cd_values) Cd = Song_Xu(1.72525554724508000000) assert_close(Cd, 17.1249219416881000000) Cd = Song_Xu(1.24798925062065, sphericity=0.64, S=0.55325984525397) assert_close(Cd, 36.00464629658840) for k in drag_sphere_correlations.keys(): drag_sphere(1e6, Method=k) def test_drag_sphere(): Cd = drag_sphere(200) assert_close(Cd, 0.7682237950389874) Cd = drag_sphere(1E6) assert_close(Cd, 0.21254574397767056) Cd = drag_sphere(1E6, Method='Barati_high') assert_close(Cd, 0.21254574397767056) Cd = drag_sphere(0.001) assert_close(Cd, 24000.0) Cd = drag_sphere(0.05) assert_close(Cd, 481.23769162684573) with pytest.raises(Exception): drag_sphere(200, Method='BADMETHOD') with pytest.raises(Exception): drag_sphere(1E7) methods = drag_sphere_methods(3E5, True) method_known = ['Barati_high', 'Ceylan', 'Morrison', 'Clift', 'Almedeij'] assert sorted(method_known) == sorted(methods) assert 20 == len(drag_sphere_methods(200)) assert 21 == len(drag_sphere_methods(200000, check_ranges=False)) assert 5 == len(drag_sphere_methods(200000, check_ranges=True)) def test_v_terminal(): v_t = v_terminal(D=70E-6, rhop=2600., rho=1000., mu=1E-3) assert_close(v_t, 0.00414249724453) v_t = v_terminal(D=70E-9, rhop=2600., rho=1000., mu=1E-3) assert_close(v_t, 4.271340888888889e-09) # [2] has a good example v_t = v_terminal(D=70E-6, rhop=2.6E3, rho=1000., mu=1E-3) assert_close(v_t, 0.004142497244531304) # vs 0.00406 by [2], with the Oseen correlation not implemented here # It also has another example v_t = v_terminal(D=50E-6, rhop=2.8E3, rho=1000., mu=1E-3) assert_close(v_t, 0.0024195143465496655) # vs 0.002453 in [2] # Laminar example v_t = v_terminal(D=70E-6, rhop=2600., rho=1000., mu=1E-1) assert_close(v_t, 4.271340888888888e-05) v_t = v_terminal(D=70E-6, rhop=2600., rho=1000., mu=1E-3, Method='Rouse') assert_close(v_t, 0.003991779430745852) @pytest.mark.scipy def test_integrate_drag_sphere(): ans = integrate_drag_sphere(D=0.001, rhop=2200., rho=1.2, mu=1.78E-5, t=0.5, V=30.0, distance=True) assert_close1d(ans, (9.686465044063436, 7.829454643649386)) ans = integrate_drag_sphere(D=0.001, rhop=2200., rho=1.2, mu=1.78E-5, t=0.5, V=30.0) assert_close(ans, 9.686465044063436) # Check no error when V is zero ans = integrate_drag_sphere(D=0.001, rhop=1.20001, rho=1.2, mu=1.78E-5, t=0.5, V=0.0) assert_close(ans, 3.0607521920092645e-07) # Stokes law regime integration ans = integrate_drag_sphere(D=0.001, rhop=2200., rho=1.2, mu=1.78E-5, t=0.1, V=0, distance=True, Method='Stokes') assert_close1d(ans, [0.9730274844308592, 0.04876946395795378]) ans = integrate_drag_sphere(D=0.001, rhop=2200., rho=1.2, mu=1.78E-5, t=0.1, V=10, distance=True, Method='Stokes') assert_close1d(ans, [10.828446488771524, 1.041522867361668]) ans = integrate_drag_sphere(D=0.001, rhop=2200., rho=1.2, mu=1.78E-5, t=0.1, V=-10, distance=True, Method='Stokes') assert_close1d(ans, [-8.882391519909806, -0.9439839394457605]) # Stokes law regime - test case where particle is ensured to be laminar before and after the simulation for m in (None, 'Stokes'): ans = integrate_drag_sphere(D=0.000001, rhop=2200., rho=1.2, mu=1.78E-5, t=0.1, V=0, distance=True, Method=m) assert_close1d(ans, [6.729981897140177e-05, 6.729519788530099e-06], rtol=1e-11) def test_time_v_terminal_Stokes(): t = time_v_terminal_Stokes(D=1e-7, rhop=2200., rho=1.2, mu=1.78E-5, V0=1.0) assert_close(t, 3.188003113787154e-06) # Very slow - many iterations t = time_v_terminal_Stokes(D=1e-2, rhop=2200., rho=1.2, mu=1.78E-5, V0=1.0, tol=1e-30) assert_close(t, 24800.636391802)fluids-1.0.22/tests/test_piping.py0000644000175000017500000001653214302004506016452 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids.piping import nearest_pipe, gauge_from_t, t_from_gauge, erosional_velocity from fluids.numerics import assert_close, assert_close1d import pytest def test_piping(): P1 = nearest_pipe(Di=0.021) assert_close1d(P1, (1, 0.02664, 0.0334, 0.0033799999999999998)) P2 = nearest_pipe(Do=.273, schedule='5S') assert_close1d(P2, (10, 0.26630000000000004, 0.2731, 0.0034)) ans_str = nearest_pipe(Do=0.5, schedule='80') ans_int = nearest_pipe(Do=0.5, schedule=80) ans_float = nearest_pipe(Do=0.5, schedule=80.0) ans_expect = (20, 0.45562, 0.508, 0.02619) assert_close1d(ans_str, ans_expect) assert_close1d(ans_str, ans_int) assert_close1d(ans_str, ans_float) def test_gauge(): g1s = gauge_from_t(.5, False, 'BWG'), gauge_from_t(0.005588, True) assert_close1d(g1s, (0.2, 5)) g2s = gauge_from_t(0.5165, False, 'AWG'), gauge_from_t(0.00462026, True, 'AWG') assert_close1d(g2s, (0.2, 5)) g3s = gauge_from_t(.4305, False, 'SWG'), gauge_from_t(0.0052578, True, 'SWG') assert_close1d(g3s, (0.2, 5)) g4s = gauge_from_t(.005, False, 'MWG'), gauge_from_t(0.0003556, True, 'MWG') assert_close1d(g4s, (0.2, 5)) g5s = gauge_from_t(.432, False, 'BSWG'), gauge_from_t(0.0053848, True, 'BSWG') assert_close1d(g5s, (0.2, 5)) g6s = gauge_from_t(0.227, False, 'SSWG'), gauge_from_t(0.0051816, True, 'SSWG') assert_close1d(g6s, (1, 5)) with pytest.raises(Exception): gauge_from_t(.5, False, 'FAIL') # Not in schedule with pytest.raises(Exception): gauge_from_t(0.02) # Too large g1 = gauge_from_t(0.002) # not in index; gauge 14, 2 mm g2 = gauge_from_t(0.00185) # not in index, gauge 15, within tol (10% default) # Limits between them are 0.0018288 and 0.0021082 m. g3 = gauge_from_t(0.00002) assert_close1d([g1, g2, g3], [14, 15, 0.004]) t1s = t_from_gauge(.2, False, 'BWG'), t_from_gauge(5, True) assert_close1d(t1s, (0.5, 0.005588)) t2s = t_from_gauge(.2, False, 'AWG'), t_from_gauge(5, True, 'AWG') assert_close1d(t2s, (0.5165, 0.00462026)) t3s = t_from_gauge(.2, False, 'SWG'), t_from_gauge(5, True, 'SWG') assert_close1d(t3s, (0.4305, 0.0052578)) t4s = t_from_gauge(.2, False, 'MWG'), t_from_gauge(5, True, 'MWG') assert_close1d(t4s, (0.005, 0.0003556)) t5s = t_from_gauge(.2, False, 'BSWG'), t_from_gauge(5, True, 'BSWG') assert_close1d(t5s, (0.432, 0.0053848)) t6s = t_from_gauge(1, False, 'SSWG'), t_from_gauge(5, True, 'SSWG') assert_close1d(t6s, (0.227, 0.0051816)) with pytest.raises(Exception): t_from_gauge(17.5, schedule='FAIL') with pytest.raises(Exception): t_from_gauge(17.5, schedule='MWG') # Test schedule is implemented NPS, Di, Do, t = nearest_pipe(Do=.273, schedule='80D1527') assert NPS == 10 assert_close1d((Di, Do, t), (0.2429256, 0.27305, 0.015062200000000001)) # initially accidentally implemented this using the mm's given in the standard # however the IPS ones are authoritative. NPS, Di, Do, t = nearest_pipe(NPS=8, schedule='ABSD2680') assert NPS == 8 assert_close1d((0.19685, 0.239014, 0.021082), (Di, Do, t), rtol=1e-12) # initially accidentally implemented this using the mm's given in the standard # however the IPS ones are authoritative. NPS, Di, Do, t = nearest_pipe(NPS=27, schedule='PS115F679') assert NPS == 27 assert_close1d((0.6591046, 0.7100062, 0.025450800000000003), (Di, Do, t), rtol=1e-12) NPS, Di, Do, t = nearest_pipe(NPS=27, schedule='PS75F679') assert NPS == 27 assert_close1d((0.665607, 0.7100062, 0.0221996), (Di, Do, t), rtol=1e-12) NPS, Di, Do, t = nearest_pipe(NPS=27, schedule='PS46F679') assert NPS == 27 assert_close1d((0.6721602, 0.7100062, 0.018923), (Di, Do, t), rtol=1e-12) from fluids.piping import NPS120_D1785 assert_close(NPS120_D1785[0], 0.5) assert_close(NPS120_D1785[-1], 12) # initially accidentally implemented this using the mm's given in the standard # however the IPS ones are authoritative. NPS, Di, Do, t = nearest_pipe(NPS=6, schedule='PVCD2665') assert_close1d((0.154051, 0.168275, 0.007112), (Di, Do, t), rtol=1e-12) # initially accidentally implemented this using the mm's given in the standard # however the IPS ones are authoritative. NPS, Di, Do, t = nearest_pipe(NPS=6, schedule='80D1785') assert_close1d((0.1463294, 0.168275, 0.0109728), (Di, Do, t), rtol=1e-12) # initially accidentally implemented this using the mm's given in the standard # however the IPS ones are authoritative. NPS, Di, Do, t = nearest_pipe(NPS=6, schedule='DR21D2241') assert_close1d((0.15222219999999997, 0.168275, 0.008026400000000001), (Di, Do, t), rtol=1e-12) # initially accidentally implemented this using the mm's given in the standard # however the IPS ones are authoritative. NPS, Di, Do, t = nearest_pipe(NPS=1, schedule='DR21D2241CTS') assert_close1d((0.025527, 0.028575, 0.001524), (Di, Do, t), rtol=1e-12) # initially accidentally implemented this using the mm's given in the standard # however the IPS ones are authoritative. NPS, Di, Do, t = nearest_pipe(NPS=10, schedule='DR325D2241PIP') assert_close1d((0.2431288, 0.25908, 0.0079756), (Di, Do, t), rtol=1e-12) # Test schedule with DN NPS, Di, Do, t = nearest_pipe(NPS=100, schedule='S40F441SI') assert_close1d((0.10226, 0.1143, 0.006019999999999999), (Di, Do, t), rtol=1e-12) def test_piping_schedule_basics(): from fluids.piping import schedule_lookup for k, (NPSs, Dis, Dos, ts) in schedule_lookup.items(): assert len(NPSs) == len(Dis) assert len(Dis) == len(Dos) assert len(Dos) == len(ts) for i in range(len(NPSs)-1): assert NPSs[i+1] >= NPSs[i] for i in range(len(Dis)-1): assert Dis[i+1] >= Dis[i] for i in range(len(Dos)-1): assert Dos[i+1] >= Dos[i] for i in range(len(ts)-1): assert ts[i+1] >= ts[i] for i in range(len(NPSs)): err = abs((Dis[i] + ts[i]*2)/Dos[i] -1) assert err < 1e-14 def test_erosional_velocity(): v = erosional_velocity(1000, 100) assert_close(v, 3.857672800497152)fluids-1.0.22/tests/test_core.py0000644000175000017500000002233714302004506016114 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids.core import C2K, K2C, F2C, C2F, F2K, K2F, C2R, K2R, F2R, R2C, R2K, R2F from fluids.core import * from fluids.numerics import assert_close, assert_close1d import pytest def test_core_misc(): alpha = thermal_diffusivity(0.02, 1., 1000.) assert_close(alpha, 2e-05) c = c_ideal_gas(1.4, 303., 28.96) assert_close(c, 348.9820361755092, rtol=1e-05) def test_core_dimensionless(): Re = Reynolds(2.5, 0.25, 1.1613, 1.9E-5) assert_close(Re, 38200.65789473684) Re = Reynolds(2.5, 0.25, nu=1.636e-05) assert_close(Re, 38202.93398533008) with pytest.raises(Exception): Reynolds(2.5, 0.25, 1.1613) PeH = Peclet_heat(1.5, 2, 1000., 4000., 0.6) assert_close(PeH, 20000000.0) PeH = Peclet_heat(1.5, 2., alpha=1E-7) assert_close(PeH, 30000000.0) with pytest.raises(Exception): Peclet_heat(1.5, 2, 1000., 4000.) PeM = Peclet_mass(1.5, 2., 1E-9) assert_close(PeM, 3000000000) FH1 = Fourier_heat(1.5, 2., 1000., 4000., 0.6) FH2 = Fourier_heat(1.5, 2, alpha=1E-7) assert_close1d([FH1, FH2], [5.625e-08, 3.75e-08]) with pytest.raises(Exception): Fourier_heat(1.5, 2, 1000., 4000.) FHM = Fourier_mass(1.5, 2.0, 1E-9) assert_close(FHM, 3.7500000000000005e-10) GZh1 = Graetz_heat(1.5, 0.25, 5., 800., 2200., 0.6) GZh2 = Graetz_heat(1.5, 0.25, 5, alpha=1E-7) assert_close1d([GZh1, GZh2], [55000.0, 187500.0]) with pytest.raises(Exception): Graetz_heat(1.5, 0.25, 5, 800., 2200.) Sc1 = Schmidt(D=2E-6, mu=4.61E-6, rho=800.) Sc2 = Schmidt(D=1E-9, nu=6E-7) assert_close1d([Sc1, Sc2], [0.00288125, 600.]) with pytest.raises(Exception): Schmidt(D=2E-6, mu=4.61E-6) Le1 = Lewis(D=22.6E-6, alpha=19.1E-6) Le2 = Lewis(D=22.6E-6, rho=800., k=.2, Cp=2200.) assert_close1d([Le1, Le2], [0.8451327433628318, 0.00502815768302494]) with pytest.raises(Exception): Lewis(D=22.6E-6, rho=800., k=.2) We = Weber(0.18, 0.001, 900., 0.01) assert_close(We, 2.916) Ma = Mach(33., 330.) assert_close(Ma, 0.1) Kn = Knudsen(1e-10, .001) assert_close(Kn, 1e-07) Pr1 = Prandtl(Cp=1637., k=0.010, mu=4.61E-6) Pr2 = Prandtl(Cp=1637., k=0.010, nu=6.4E-7, rho=7.1) Pr3 = Prandtl(nu=6.3E-7, alpha=9E-7) assert_close1d([Pr1, Pr2, Pr3], [0.754657, 0.7438528, 0.7]) with pytest.raises(Exception): Prandtl(Cp=1637., k=0.010) Gr1 = Grashof(L=0.9144, beta=0.000933, T1=178.2, rho=1.1613, mu=1.9E-5) Gr2 = Grashof(L=0.9144, beta=0.000933, T1=378.2, T2=200., nu=1.636e-05) assert_close1d([Gr1, Gr2], [4656936556.178915, 4657491516.530312]) with pytest.raises(Exception): Grashof(L=0.9144, beta=0.000933, T1=178.2, rho=1.1613) Bo1 = Bond(1000., 1.2, .0589, 2.) assert_close(Bo1, 665187.2339558573) Ra1 = Rayleigh(1.2, 4.6E9) assert_close(Ra1, 5520000000) Fr1 = Froude(1.83, 2., 1.63) Fr2 = Froude(1.83, L=2., squared=True) assert_close1d([Fr1, Fr2], [1.0135432593877318, 0.17074638128208924]) St = Strouhal(8., 2., 4.) assert_close(St, 4.0) Nu1 = Nusselt(1000., 1.2, 300.) Nu2 = Nusselt(10000., .01, 4000.) assert_close1d([Nu1, Nu2], [4.0, 0.025]) Sh = Sherwood(1000., 1.2, 300.) assert_close(Sh, 4.0) Bi1 = Biot(1000., 1.2, 300.) Bi2 = Biot(10000., .01, 4000.) assert_close1d([Bi1, Bi2], [4.0, 0.025]) St1 = Stanton(5000., 5., 800., 2000.) assert_close(St1, 0.000625) Eu1 = Euler(1E5, 1000., 4.) assert_close(Eu1, 6.25) Ca1 = Cavitation(2E5, 1E4, 1000., 10.) assert_close(Ca1, 3.8) Ec1 = Eckert(10., 2000., 25.) assert_close(Ec1, 0.002) Ja1 = Jakob(4000., 2E6, 10.) assert_close(Ja1, 0.02) Po1 = Power_number(P=180., L=0.01, N=2.5, rho=800.) assert_close(Po1, 144000000) Cd1 = Drag(1000., 0.0001, 5., 2000.) assert_close(Cd1, 400) Ca1 = Capillary(1.2, 0.01, .1) assert_close(Ca1, 0.12) Ar1 = Archimedes(0.002, 0.2804, 2699.37, 4E-5) Ar2 = Archimedes(0.002, 2., 3000., 1E-3) assert_close1d([Ar1, Ar2], [37109.575890227665, 470.4053872]) Oh1 = Ohnesorge(1E-4, 1000., 1E-3, 1E-1) assert_close(Oh1, 0.01) Su = Suratman(1E-4, 1000., 1E-3, 1E-1) assert_close(Su, 10000.0) BeL1 = Bejan_L(1E4, 1., 1E-3, 1E-6) assert_close(BeL1, 10000000000000) Bep1 = Bejan_p(1E4, 1., 1E-3, 1E-6) assert_close(Bep1, 10000000000000) Bo = Boiling(300., 3000., 800000.) assert_close(Bo, 1.25e-05) e_D1 = relative_roughness(0.0254) e_D2 = relative_roughness(0.5, 1E-4) assert_close1d([e_D1, e_D2], [5.9842519685039374e-05, 0.0002]) Co = Confinement(0.001, 1077, 76.5, 4.27E-3) assert_close(Co, 0.6596978265315191) De = Dean(10000., 0.1, 0.4) assert_close(De, 5000.0) Stk = Stokes_number(V=0.9, Dp=1E-5, D=1E-3, rhop=1000., mu=1E-5) assert_close(Stk, 0.5) Hg = Hagen(Re=2610., fd=1.935235) assert_close(Hg, 6591507.17175) # Where fd was obtained from: def Hagen2(rho, D, mu): return rho*D**3/mu**2 correct = Hagen2(rho=992., mu=653E-6, D=6.568E-3)*10000 guess = Hagen(Re=2610., fd=1.935235) assert_close(correct, guess) Fr = Froude_densimetric(1.83, L=2., rho2=1.2, rho1=800., g=9.81) assert_close(Fr, 0.4134543386272418) Fr = Froude_densimetric(1.83, L=2., rho2=1.2, rho1=800, g=9.81, heavy=False) assert_close(Fr, 0.016013017679205096) Mo = Morton(1077.0, 76.5, 4.27E-3, 0.023) assert_close(Mo, 2.311183104430743e-07) def test_core_misc2(): mu1 = nu_mu_converter(998., nu=1.0E-6) nu1 = nu_mu_converter(998., mu=0.000998) assert_close1d([mu1, nu1], [0.000998, 1E-6]) with pytest.raises(Exception): nu_mu_converter(990) with pytest.raises(Exception): nu_mu_converter(990, 0.000998, 1E-6) g1 = gravity(55., 1E4) assert_close(g1, 9.784151976863571) K = K_from_f(fd=0.018, L=100., D=.3) assert_close(K, 6.0) K = K_from_L_equiv(240.) assert_close(K, 3.6) L_D = L_equiv_from_K(3.6) assert_close(L_D, 240.) L = L_from_K(K=6., fd=0.018, D=.3) assert_close(L, 100) dP = dP_from_K(K=10., rho=1000., V=3.) assert_close(dP, 45000) head = head_from_K(K=10., V=1.5) assert_close(head, 1.1471807396001694) head = head_from_P(P=98066.5, rho=1000.) assert_close(head, 10.0) P = P_from_head(head=5., rho=800.) assert_close(P, 39226.6) fd = f_from_K(K=0.6, L=100., D=.3) assert_close(fd, 0.0018, rtol=1e-13) #from fluids.core import C2K, K2C, F2C, C2F, F2K, K2F, C2R, K2R, F2R, R2C, R2K, R2F # The following are tests which were deprecated from scipy # but are still desired to be here # Taken from scipy/constants/constants.py as in commit # https://github.com/scipy/scipy/commit/4b7d325cd50e8828b06d628e69426a18283dc5b5 # Also from https://github.com/scipy/scipy/pull/5292 # by Gillu13 (Gilles Aouizerate) # Copyright individual contributors to SciPy def test_fahrenheit_to_celcius(): assert_close(F2C(32.), 0) assert_close1d([F2C(32)], [0]) def test_celcius_to_kelvin(): assert_close1d([C2K(0.)], [273.15]) def test_kelvin_to_celcius(): assert_close1d([K2C(0.)], [-273.15]) def test_fahrenheit_to_kelvin(): assert_close1d([F2K(32.), F2K(32)], [273.15, 273.15]) def test_kelvin_to_fahrenheit(): assert_close1d([K2F(273.15), K2F(273.15)], [32, 32]) def test_celcius_to_fahrenheit(): assert_close1d([C2F(0.)]*2, [32, 32]) def test_celcius_to_rankine(): assert_close1d([C2R(0.), C2R(0.)], [491.67, 491.67], rtol=0., atol=1e-13) def test_kelvin_to_rankine(): assert_close1d([K2R(273.15), K2R(273.15)], [491.67, 491.67], rtol=0., atol=1e-13) def test_fahrenheit_to_rankine(): assert_close1d([F2R(32.), F2R(32.)], [491.67, 491.67], rtol=0., atol=1e-13) def test_rankine_to_fahrenheit(): assert_close1d([R2F(491.67), R2F(491.67)], [32., 32.], rtol=0., atol=1e-13) def test_rankine_to_celcius(): assert_close1d([R2C(491.67), R2C(491.67)], [0., 0.], rtol=0., atol=1e-13) def test_rankine_to_kelvin(): assert_close1d([R2K(491.67), R2K(0.)], [273.15, 0.], rtol=0., atol=1e-13) fluids-1.0.22/tests/test_geometry.py0000644000175000017500000016630114302004506017017 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids import * from fluids.numerics import assert_close, assert_close1d, assert_close2d, isclose, linspace from math import * from fluids.constants import * import pytest def test_SA_partial_sphere(): SA1 = SA_partial_sphere(1., 0.7) assert_close(SA1, 2.199114857512855) SA2 = SA_partial_sphere(2, 1) # One spherical head's surface area: assert_close(SA2, 6.283185307179586) def test_V_partial_sphere(): V1 = V_partial_sphere(1., 0.7) assert_close(V1, 0.4105014400690663) assert 0.0 == V_partial_sphere(1., 0.0) def test_V_horiz_conical(): # Two examples from [1]_, and at midway, full, and empty. Vs_horiz_conical1 = [V_horiz_conical(D=108., L=156., a=42., h=i)/231. for i in (36, 84, 54, 108, 0)] Vs_horiz_conical1s = [2041.1923581273443, 6180.540773905826, 3648.490668241736, 7296.981336483472, 0.0] assert_close1d(Vs_horiz_conical1, Vs_horiz_conical1s) with pytest.raises(Exception): V_horiz_conical(D=108., L=156., a=42., h=109) # Head only custom example: V_head1 = V_horiz_conical(D=108., L=156., a=42., h=84., headonly=True)/231. V_head2 = V_horiz_conical(108., 156., 42., 84., headonly=True)/231. assert_close1d([V_head1, V_head2], [508.8239000645628]*2) assert V_horiz_conical(D=108., L=156., a=42., h=0, headonly=True) == 0.0 def test_V_horiz_ellipsoidal(): # Two examples from [1]_, and at midway, full, and empty. Vs_horiz_ellipsoidal = [V_horiz_ellipsoidal(D=108., L=156., a=42., h=i)/231. for i in (36, 84, 54, 108, 0)] Vs_horiz_ellipsoidals = [2380.9565415578145, 7103.445235921378, 4203.695769930696, 8407.391539861392, 0.0] assert_close1d(Vs_horiz_ellipsoidal, Vs_horiz_ellipsoidals) #Head only custom example: V_head1 = V_horiz_ellipsoidal(D=108., L=156., a=42., h=84., headonly=True)/231. V_head2 = V_horiz_ellipsoidal(108., 156., 42., 84., headonly=True)/231. assert_close1d([V_head1, V_head2], [970.2761310723387]*2) assert 0.0 == V_horiz_ellipsoidal(108., 156., 42., 0., headonly=True) def test_V_horiz_guppy(): # Two examples from [1]_, and at midway, full, and empty. V_calc = [V_horiz_guppy(D=108., L=156., a=42., h=i)/231. for i in (36, 84, 54, 108, 0)] Vs = [1931.7208029476762, 5954.110515329029, 3412.8543046053724, 7296.981336483472, 0.0] assert_close1d(V_calc, Vs) # Head only custom example: V_head1 = V_horiz_guppy(D=108., L=156., a=42., h=36, headonly=True)/231. V_head2 = V_horiz_guppy(108., 156., 42., 36, headonly=True)/231. assert_close1d([V_head1, V_head2], [63.266257496613804]*2) assert 0.0 == V_horiz_guppy(108., 156., 42., 0.0, headonly=True) def test_V_horiz_spherical(): # Two examples from [1]_, and at midway, full, and empty. V_calc = [V_horiz_spherical(D=108., L=156., a=42., h=i)/231. for i in (36, 84, 54, 108, 0)] Vs = [2303.9615116986183, 6935.163365275476, 4094.025626387197, 8188.051252774394, 0.0] assert_close1d(V_calc, Vs) assert 0.0 == V_horiz_spherical(D=108., L=156., a=42., h=0) # Test z = 0 zero division error base = V_horiz_spherical(D=108., L=156., a=54, h=36, headonly=True) perturbed = V_horiz_spherical(D=108., L=156., a=53.999999999, h=36, headonly=True) assert_close(base, perturbed, rtol=1e-10) # Test while z is very very slow perturbed = V_horiz_spherical(D=108., L=156., a=53.99999999, h=36, headonly=True) assert_close(base, perturbed, rtol=1e-7) # Test when the integration function is called, on its limits: # The integral can be done analytically, but there's a zero to the power of negative integer error # the expression is # -cmath.atan(cmath.sqrt((R ** 2 - x ** 2) / (-R ** 2 + r ** 2))) * x ** 3 / 3 + cmath.atan(cmath.sqrt((R ** 2 - x ** 2) / (-R ** 2 + r ** 2))) * r ** 2 * x + x * (R ** 2 - r ** 2) * cmath.sqrt(0.1e1 / (R ** 2 - r ** 2) * x ** 2 - R ** 2 / (R ** 2 - r ** 2)) / 6 + R ** 2 * cmath.log(x / (R ** 2 - r ** 2) * (0.1e1 / (R ** 2 - r ** 2)) ** (-0.1e1 / 0.2e1) + cmath.sqrt(0.1e1 / (R ** 2 - r ** 2) * x ** 2 - R ** 2 / (R ** 2 - r ** 2))) * (0.1e1 / (R ** 2 - r ** 2)) ** (-0.1e1 / 0.2e1) / 6 - 0.2e1 / 0.3e1 * r ** 2 * cmath.log(x / (R ** 2 - r ** 2) * (0.1e1 / (R ** 2 - r ** 2)) ** (-0.1e1 / 0.2e1) + cmath.sqrt(0.1e1 / (R ** 2 - r ** 2) * x ** 2 - R ** 2 / (R ** 2 - r ** 2))) * (0.1e1 / (R ** 2 - r ** 2)) ** (-0.1e1 / 0.2e1) - r ** 3 * cmath.atan((-2 + 2 / (R ** 2 - r ** 2) * r * (x - r)) * (0.1e1 / (R ** 2 - r ** 2) * (x - r) ** 2 + 2 / (R ** 2 - r ** 2) * r * (x - r) - 1) ** (-0.1e1 / 0.2e1) / 2) / 3 + r ** 3 * cmath.atan((-2 - 2 / (R ** 2 - r ** 2) * r * (x + r)) * (0.1e1 / (R ** 2 - r ** 2) * (x + r) ** 2 - 2 / (R ** 2 - r ** 2) * r * (x + r) - 1) ** (-0.1e1 / 0.2e1) / 2) / 3 Vs = [V_horiz_spherical(D=108., L=156., a=i, h=84.)/231. for i in (108*.009999999, 108*.01000001)] V_calc = [5201.54341872961, 5201.543461255985] assert_close1d(Vs, V_calc) # Head only custom example: V_head1 = V_horiz_spherical(D=108., L=156., a=42., h=84., headonly=True)/231. V_head2 = V_horiz_spherical(108., 156., 42., 84., headonly=True)/231. assert_close1d([V_head1, V_head2], [886.1351957493874]*2) def test_V_horiz_torispherical(): # Two examples from [1]_, and at midway, full, empty, and 1 inch; covering # all code cases. V_calc = [V_horiz_torispherical(D=108., L=156., f=1., k=0.06, h=i)/231. for i in [36, 84, 54, 108, 0, 1]] Vs = [2028.626670842139, 5939.897910157917, 3534.9973314622794, 7069.994662924554, 0.0, 9.580013820942611] assert_close1d(V_calc, Vs) # Head only custom example: V_head1 = V_horiz_torispherical(D=108., L=156., f=1., k=0.06, h=36, headonly=True)/231. V_head2 = V_horiz_torispherical(108., 156., 1., 0.06, 36, headonly=True)/231. assert_close1d([V_head1, V_head2], [111.71919144384525]*2) assert 0.0 == V_horiz_torispherical(108., 156., 1., 0.06, 0.0) def test_V_vertical_conical(): # Two examples from [1]_, and at empty and h=D. Vs_calc = [V_vertical_conical(132., 33., i)/231. for i in [24, 60, 0, 132]] Vs = [250.67461381371024, 2251.175535772343, 0.0, 6516.560761446257] assert_close1d(Vs_calc, Vs) assert 0.0 == V_vertical_conical(132., 33., 0.0) def test_V_vertical_ellipsoidal(): # Two examples from [1]_, and at empty and h=D. Vs_calc = [V_vertical_ellipsoidal(132., 33., i)/231. for i in [24, 60, 0, 132]] Vs = [783.3581681678445, 2902.831611916969, 0.0, 7168.216837590883] assert_close1d(Vs_calc, Vs) assert 0.0 == V_vertical_ellipsoidal(132., 33., 0.0) def test_V_vertical_spherical(): # Two examples from [1]_, and at empty and h=D. Vs_calc = [V_vertical_spherical(132., 33., i)/231. for i in [24, 60, 0, 132]] Vs = [583.6018352850442, 2658.4605833627343, 0.0, 6923.845809036648] assert_close1d(Vs_calc, Vs) assert 0.0 == V_vertical_spherical(132., 33., 0.0) def test_V_vertical_torispherical(): # Two examples from [1]_, and at empty, 1, 22, and h=D. Vs_calc = [V_vertical_torispherical(132., 1.0, 0.06, i)/231. for i in [24, 60, 0, 1, 22, 132]] Vs = [904.0688283793511, 3036.7614412163075, 0.0, 1.7906624793188568, 785.587561468186, 7302.146666890221] assert_close1d(Vs_calc, Vs) assert 0.0 == V_vertical_torispherical(132., 1.0, 0.06, 0.0) def test_V_vertical_conical_concave(): # Three examples from [1]_, and at empty and with h=D. Vs_calc = [V_vertical_conical_concave(113., -33.0, i)/231 for i in [15., 25., 50., 0, 113]] Vs = [251.15825565795188, 614.6068425492208, 1693.1654406426783, 0.0, 4428.278844757774] assert_close1d(Vs_calc, Vs) assert 0.0 == V_vertical_conical_concave(113., -33.0, 0.0) def test_V_vertical_ellipsoidal_concave(): # Three examples from [1]_, and at empty and with h=D. Vs_calc = [V_vertical_ellipsoidal_concave(113., -33.0, i)/231 for i in [15., 25., 50., 0, 113]] Vs = [44.84968851034856, 207.6374468071692, 1215.605957384487, 0.0, 3950.7193614995826] assert_close1d(Vs_calc, Vs) assert 0.0 == V_vertical_ellipsoidal_concave(113., -33, 0.0) def test_V_vertical_spherical_concave(): # Three examples from [1]_, and at empty and with h=D. Vs_calc = [V_vertical_spherical_concave(113., -33.0, i)/231 for i in [15., 25., 50., 0, 113]] Vs = [112.81405437348528, 341.7056403375114, 1372.9286894955042, 0.0, 4108.042093610599] assert_close1d(Vs_calc, Vs) assert 0.0 == V_vertical_spherical_concave(113., -33, 0.0) def test_V_vertical_torispherical_concave(): # Three examples from [1]_, and at empty and with h=D. Vs_calc = [V_vertical_torispherical_concave(D=113., f=0.71, k=0.081, h=i)/231 for i in [15., 25., 50., 0, 113]] Vs = [103.88569287163769, 388.72142877582087, 1468.762358198084, 0.0, 4203.87576231318] assert_close1d(Vs_calc, Vs) assert 0.0 == V_vertical_torispherical_concave(D=113., f=0.71, k=0.081, h=0.0) # Does not use 0 <= h < a2; and then does use it; should be the same base = V_vertical_torispherical_concave(D=113., f=0.71, k=0.16794375443150927, h=15) perturbed = V_vertical_torispherical_concave(D=113., f=0.71, k=0.16794375443151, h=15) assert_close(base, perturbed, rtol=1e-14) def test_geometry(): SA1 = SA_ellipsoidal_head(2, 1) SA2 = SA_ellipsoidal_head(2, 0.999) SAs = [6.283185307179586, 6.278996936093318] assert_close1d([SA1, SA2], SAs) SA = SA_ellipsoidal_head(2, 1.5) assert_close(SA, 8.459109081729984, rtol=1e-12) # Check code avoids zero division error assert_close(SA_ellipsoidal_head(2, 1e-8), pi) SA1 = SA_conical_head(2, 1) SAs = 4.442882938158366 assert_close(SA1, SAs) SA1 = SA_guppy_head(2, 1) assert_close(SA1, 6.654000019110157) SA1 = SA_torispheroidal(D=2.54, f=1.039370079, k=0.062362205) assert_close(SA1, 6.00394283477063, rtol=1e-12) SA1 = SA_tank(D=2, L=2)[0] SA2 = SA_tank(D=1., L=0, sideA='ellipsoidal', sideA_a=2, sideB='ellipsoidal', sideB_a=2)[0] SA3 = SA_tank(D=1., L=5, sideA='conical', sideA_a=2, sideB='conical', sideB_a=2)[0] SA4 = SA_tank(D=1., L=5, sideA='spherical', sideA_a=0.5, sideB='spherical', sideB_a=0.5)[0] SAs = [18.84955592153876, 10.124375616183064, 22.18452243965656, 18.84955592153876] assert_close1d([SA1, SA2, SA3, SA4], SAs) SA1, SA2, SA3, SA4 = SA_tank(D=2.54, L=5, sideA='torispherical', sideB='torispherical', sideA_f=1.039370079, sideA_k=0.062362205, sideB_f=1.039370079, sideB_k=0.062362205) SAs = [51.90611237013163, 6.00394283477063, 6.00394283477063, 39.89822670059037] assert_close1d([SA1, SA2, SA3, SA4], SAs) SA1 = SA_tank(D=1., L=5, sideA='guppy', sideA_a=0.5, sideB='guppy', sideB_a=0.5)[0] assert_close(SA1, 19.034963277504044) a1 = a_torispherical(D=96., f=0.9, k=0.2) a2 = a_torispherical(D=108., f=1., k=0.06) ais = [25.684268924767125, 18.288462280484797] assert_close1d([a1, a2], ais) # Horizontal configurations, compared with TankCalc - Ellipsoidal*2, # Ellipsoidal/None, spherical/conical, None/None. Final test is guppy/torispherical, # no checks available. Vs_calc = [V_from_h(h=h, D=10., L=25., horizontal=True, sideA='ellipsoidal', sideB='ellipsoidal', sideA_a=2, sideB_a=2) for h in [1, 2.5, 5, 7.5, 10]] Vs = [108.05249928250362, 416.5904542901302, 1086.4674593664702, 1756.34446444281, 2172.9349187329403] assert_close1d(Vs_calc, Vs) Vs_calc =[V_from_h(h=h, D=10., L=25., horizontal=True, sideA='ellipsoidal', sideA_a=2) for h in [1, 2.5, 5, 7.5, 10]] Vs = [105.12034613915314, 400.22799255268336, 1034.1075818066402, 1667.9871710605971, 2068.2151636132803] assert_close1d(Vs_calc, Vs) Vs_calc = [V_from_h(h=h, D=10., L=25., horizontal=True, sideA='spherical', sideB='conical', sideA_a=2, sideB_a=2) for h in [1, 2.5, 5, 7.5, 10]] Vs = [104.20408244287965, 400.47607362329063, 1049.291946298991, 1698.107818974691, 2098.583892597982] assert_close1d(Vs_calc, Vs) Vs_calc = [V_from_h(h=h, D=10., L=25., horizontal=True, sideB='spherical', sideA='conical', sideB_a=2, sideA_a=2) for h in [1, 2.5, 5, 7.5, 10]] assert_close1d(Vs_calc, Vs) Vs_calc = [V_from_h(h=h, D=1.5, L=5., horizontal=True) for h in [0, 0.75, 1.5]] Vs = [0.0, 4.417864669110647, 8.835729338221293] assert_close1d(Vs_calc, Vs) Vs_calc = [V_from_h(h=h, D=10., L=25., horizontal=True, sideA='guppy', sideB='torispherical', sideA_a=2, sideB_f=1., sideB_k=0.06) for h in [1, 2.5, 5, 7.5, 10]] Vs = [104.68706323659293, 399.0285611453449, 1037.3160340613756, 1683.391972469731, 2096.854290344973] assert_close1d(Vs_calc, Vs) Vs_calc = [V_from_h(h=h, D=10., L=25., horizontal=True, sideB='guppy', sideA='torispherical', sideB_a=2, sideA_f=1., sideA_k=0.06) for h in [1, 2.5, 5, 7.5, 10]] assert_close1d(Vs_calc, Vs) with pytest.raises(Exception): V_from_h(h=7, D=1.5, L=5) # bad head cases with pytest.raises(Exception): V_from_h(h=2.6, D=10., L=25., horizontal=True, sideA='BADHEAD', sideB='torispherical', sideA_a=2, sideB_f=1., sideB_k=0.06) with pytest.raises(Exception): V_from_h(h=2.6, D=10., L=25., horizontal=True, sideA='torispherical', sideB='BADHEAD', sideA_a=2, sideB_f=1., sideB_k=0.06) # Vertical configurations, compared with TankCalc - conical*2, spherical*2, # ellipsoidal*2. Torispherical*2 has no check. None*2 checks. Vs_calc = [V_from_h(h=h, D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.) for h in [0, 1, 2, 5., 7, 7.2, 8]] Vs = [0.0, 0.14726215563702155, 1.1780972450961726, 6.4795348480289485, 10.013826583317465, 10.301282311120932, 10.602875205865551] assert_close1d(Vs_calc, Vs) Vs_calc = [V_from_h(h=h, D=8., L=10., horizontal=False, sideA='spherical', sideB='spherical', sideA_a=3., sideB_a=4.) for h in [0, 1.5, 3, 8.5, 13., 15., 16.2, 17]] Vs = [0.0, 25.91813939211579, 89.5353906273091, 365.99554414321085, 592.190215201676, 684.3435997069765, 718.7251897078633, 726.2315017548405] assert_close1d(Vs_calc, Vs) Vs_calc = [V_from_h(h=h, D=8., L=10., horizontal=False, sideA='ellipsoidal', sideB='ellipsoidal', sideA_a=3., sideB_a=4.) for h in [0, 1.5, 3, 8.5, 13., 15., 16.2, 17]] Vs = [0.0, 31.41592653589793, 100.53096491487338, 376.99111843077515, 603.1857894892403, 695.3391739945409, 729.7207639954277, 737.2270760424049] assert_close1d(Vs_calc, Vs) Vs_calc = [V_from_h(h=h, D=8., L=10., horizontal=False, sideA='torispherical', sideB='torispherical', sideA_a=1.3547, sideB_a=1.3547, sideA_f=1., sideA_k=0.06, sideB_f=1., sideB_k=0.06) for h in [0, 1.3, 9.3, 10.1, 10.7094, 12]] Vs = [0.0, 38.723353379954276, 440.84578224136413, 481.0581682073135, 511.68995321687544, 573.323556832692] assert_close1d(Vs_calc, Vs) Vs_calc = [V_from_h(h=h, D=1.5, L=5., horizontal=False) for h in [0, 2.5, 5]] Vs = [0, 4.417864669110647, 8.835729338221293] assert_close1d(Vs_calc, Vs) with pytest.raises(Exception): V_from_h(h=7, D=1.5, L=5., horizontal=False) def test_TANK_cross_sectional_area(): T1 = TANK(L=120*inch, D=72*inch, horizontal=False, sideA='torispherical' ,sideB='same') assert_close(T1.A_cross_sectional(0.5*T1.h_max), 0.25*pi*T1.D**2) def test_from_two_specs(): # Takes about 1 ms T0 = TANK(horizontal=True, L=15, D=3) A_cross = T0.A_cross_sectional(1.5) T1 = TANK.from_two_specs(T0.V_total, A_cross, spec0_name='V', spec1_name='A_cross', h=1e-10, horizontal=False) assert_close(T1.V_total, T0.V_total) assert_close(T0.A_cross_sectional(1.5), T1.A_cross_sectional(1e-10)) def test_SA_partial(): # Checked with # https://www.aqua-calc.com/calculate/volume-in-a-horizontal-cylinder SA = SA_partial_cylindrical_body(L=120*inch, D=72*inch, h=24*inch) + 2*A_partial_circle(D=72*inch, h=24*inch) assert_close(SA/(foot**2), (8.250207631*2+73.85756504)) # partial area of one circle # Checked at https://www.aqua-calc.com/calculate/volume-in-a-horizontal-cylinder assert_close(A_partial_circle(D=72, h=24), 1188.02989891) assert_close(A_partial_circle(D=72, h=72), 0.25*pi*72**2) assert_close(A_partial_circle(D=72, h=0), 0) # hard checks assert A_partial_circle(D=72, h=72*(1+1e-15)) == A_partial_circle(D=72, h=72) assert 0 == A_partial_circle(D=72, h=1e-9) assert 0 == A_partial_circle(D=72, h=-1e-20) assert_close(SA_partial_cylindrical_body(L=200.0, D=96., h=22.0), 19168.852890279868, rtol=1e-12) assert_close(SA_partial_cylindrical_body(L=200.0, D=96., h=96), pi*96*200.0, rtol=1e-15) # Pi D L check for full assert 0 == SA_partial_cylindrical_body(L=200.0, D=96., h=0) assert 0 == SA_partial_cylindrical_body(L=200.0, D=96., h=-1e-14) SA_higher = SA_partial_cylindrical_body(L=200.0, D=1., h=1+1e-15) assert_close(SA_higher, pi*200.0, rtol=1e-15) def test_SA_partial_horiz_conical_head(): # Conical heads As_expect = [101.35826, 141.37167, 181.38508] hs = [24*inch, 36*inch, 48*inch] for h, A_expect in zip(hs, As_expect): SA = (2*SA_partial_horiz_conical_head(D=72*inch, a=48*inch, h=h) + SA_partial_cylindrical_body(D=72*inch, L=120*inch, h=h)) A_calc = SA/(foot**2) assert_close(A_calc, A_expect, rtol=4e-8) assert 0 == SA_partial_horiz_conical_head(D=72., a=48.0, h=0) assert 0 == SA_partial_horiz_conical_head(D=72., a=48.0, h=-1e-16) assert SA_partial_horiz_conical_head(D=72., a=48.0, h=72) == SA_partial_horiz_conical_head(D=72., a=48.0, h=72+1e-5) assert_close(SA_partial_horiz_conical_head(D=72., a=0, h=35), A_partial_circle(D=72, h=35), rtol=1e-12) # Integration tests T1 = TANK(L=120*inch, D=72*inch, horizontal=True, sideA='conical', sideA_a=48*inch, sideB='same') assert_close(T1.SA_from_h(24*inch)/foot**2, 101.35826, rtol=1e-7) assert_close(T1.SA_from_h(36*inch)/foot**2, 141.37167, rtol=1e-7) assert_close(T1.SA_from_h(48*inch)/foot**2, 181.38508, rtol=1e-7) assert T1.SA_from_h(0) == 0.0 assert_close(T1.SA_from_h(T1.h_max), T1.A, rtol=1e-14) def test_SA_partial_horiz_spherical_head(): L = 120*inch D = 72*inch a_values = [24*inch]*3 + [36*inch]*3 h_values = [24*inch, 36*inch, 48*inch]*2 SA_expect = [99.49977, 135.08848, 170.67720, 111.55668, 150.79645, 190.03622] SA_expect = [i*foot**2 for i in SA_expect] for i in range(6): SA = (2*SA_partial_horiz_spherical_head(D=D, a=a_values[i], h=h_values[i]) + SA_partial_cylindrical_body(D=D, L=L, h=h_values[i])) assert_close(SA, SA_expect[i], rtol=4e-8) # numerical integral, expect 1e-7 tol from the code SA_calc = SA_partial_horiz_spherical_head(D=72., a=48.0, h=24.0) assert_close(SA_calc, 2027.2672091672684, rtol=1e-7) assert 0 == SA_partial_horiz_spherical_head(D=72., a=48.0, h=1e-20) assert 0 == SA_partial_horiz_spherical_head(D=72., a=48.0, h=-1e-12) assert SA_partial_horiz_spherical_head(D=72., a=48.0, h=7200) == SA_partial_horiz_spherical_head(D=72., a=48.0, h=72) assert_close(SA_partial_horiz_spherical_head(D=72., a=36+1e-11, h=22), SA_partial_horiz_spherical_head(D=72., a=36, h=22), rtol=1e-8) # Integration tests T1 = TANK(L=120*inch, D=72*inch, horizontal=True, sideA='spherical', sideA_a=24*inch, sideB='same') assert_close(T1.SA_from_h(24*inch)/foot**2, 99.49977, rtol=1e-7) assert_close(T1.SA_from_h(36*inch)/foot**2, 135.08848, rtol=1e-7) assert_close(T1.SA_from_h(48*inch)/foot**2, 170.67720, rtol=1e-7) assert 0.0 == T1.SA_from_h(0) # Numerical integral here too assert_close(T1.SA_from_h(T1.h_max), T1.A, rtol=1e-7) T2 = TANK(L=120*inch, D=72*inch, horizontal=True, sideA='spherical', sideA_a=36*inch, sideB='same') assert_close(T2.SA_from_h(24*inch)/foot**2, 111.55668, rtol=1e-7) assert_close(T2.SA_from_h(36*inch)/foot**2, 150.79645, rtol=1e-7) assert_close(T2.SA_from_h(48*inch)/foot**2, 190.03622, rtol=1e-7) assert 0.0 == T2.SA_from_h(0) assert_close(T2.SA_from_h(T2.h_max), T2.A, rtol=2e-12) def test_SA_partial_horiz_guppy_head(): L = 120*inch D = 72*inch h_values = [24*inch, 36*inch, 48*inch] SA_expect = [94.24500, 129.98330, 167.06207] SA_expect = [i*foot**2 for i in SA_expect] for i in range(3): SA = (2*SA_partial_horiz_guppy_head(D=D, a=48*inch, h=h_values[i]) + SA_partial_cylindrical_body(D=D, L=L, h=h_values[i])) assert_close(SA, SA_expect[i], rtol=5e-8) assert 0 == SA_partial_horiz_guppy_head(D=72., a=48.0, h=1e-20) assert 0 == SA_partial_horiz_guppy_head(D=72., a=48.0, h=-1e-12) assert SA_partial_horiz_guppy_head(D=72., a=48.0, h=7200) == SA_partial_horiz_guppy_head(D=72., a=48.0, h=72) assert_close(SA_partial_horiz_guppy_head(D=72., a=48.0, h=24.0), 1467.8949780037, rtol=1e-8) assert pi*72*inch/2*72*inch == SA_partial_horiz_guppy_head(D=72*inch, a=36*inch, h=72*inch) # Area is NOT CONSISTENT! T1 = TANK(L=120*inch, D=72*inch, horizontal=True, sideA='guppy', sideA_a=48*inch, sideB='same') assert_close(T1.SA_from_h(24*inch)/foot**2, 94.24500, rtol=1e-7) assert_close(T1.SA_from_h(36*inch)/foot**2, 129.98330, rtol=1e-7) assert_close(T1.SA_from_h(48*inch)/foot**2, 167.06207, rtol=1e-7) assert 0.0 == T1.SA_from_h(0) # assert_close(T1.SA_from_h(T1.h_max), T1.A, rtol=1e-12) def test_SA_partial_horiz_ellipsoidal_head(): L = 120*inch D = 72*inch h_values = [24*inch, 36*inch, 48*inch]*3 SA_expect = [102.59905, 138.74815, 174.89725, 111.55668, 150.79645, 190.03622, 121.09692, 163.71486, 206.33279] SA_expect = [i*foot**2 for i in SA_expect] a_values = [24*inch]*3 + [36*inch]*3 + [48*inch]*3 for i in range(9): SA = (2*SA_partial_horiz_ellipsoidal_head(D=D, a=a_values[i], h=h_values[i]) + SA_partial_cylindrical_body(D=D, L=L, h=h_values[i])) assert_close(SA, SA_expect[i], rtol=5e-8) assert 0 == SA_partial_horiz_ellipsoidal_head(D=72., a=48.0, h=1e-20) assert 0 == SA_partial_horiz_ellipsoidal_head(D=72., a=48.0, h=-1e-12) assert SA_partial_horiz_ellipsoidal_head(D=72., a=48.0, h=7200) == SA_partial_horiz_ellipsoidal_head(D=72., a=48.0, h=72) assert_close(SA_partial_horiz_ellipsoidal_head(D=72., a=48.0, h=24.0), 3401.2336225352738, rtol=1e-11) # Integration tests T1 = TANK(L=120*inch, D=72*inch, horizontal=True, sideA='ellipsoidal', sideA_a=24*inch, sideB='same') assert_close(T1.SA_from_h(24*inch)/foot**2, 102.59905, rtol=1e-7) assert_close(T1.SA_from_h(36*inch)/foot**2, 138.74815, rtol=1e-7) assert_close(T1.SA_from_h(48*inch)/foot**2, 174.89725, rtol=1e-7) assert_close(T1.SA_from_h(T1.h_max), T1.A, rtol=1e-12) assert 0.0 == T1.SA_from_h(0) T2 = TANK(L=120*inch, D=72*inch, horizontal=True, sideA='ellipsoidal', sideA_a=36*inch, sideB='same') assert_close(T2.SA_from_h(24*inch)/foot**2, 111.55668, rtol=1e-7) assert_close(T2.SA_from_h(36*inch)/foot**2, 150.79645, rtol=1e-7) assert_close(T2.SA_from_h(48*inch)/foot**2, 190.03622, rtol=1e-7) assert 0.0 == T2.SA_from_h(0) assert_close(T2.SA_from_h(T2.h_max), T2.A, rtol=1e-12) T3 = TANK(L=120*inch, D=72*inch, horizontal=True, sideA='ellipsoidal', sideA_a=48*inch, sideB='same') assert_close(T3.SA_from_h(24*inch)/foot**2, 121.09692, rtol=1e-7) assert_close(T3.SA_from_h(36*inch)/foot**2, 163.71486, rtol=1e-7) assert_close(T3.SA_from_h(48*inch)/foot**2, 206.33279, rtol=1e-7) assert 0.0 == T3.SA_from_h(0) assert_close(T3.SA_from_h(T3.h_max), T3.A, rtol=1e-12) def test_SA_partial_horiz_torispherical_head(): # Nasty Python-2 only numerical issue in _SA_partial_horiz_torispherical_head_int_1 ; fixed # by ensuring numbers were complex assert_close(SA_partial_horiz_torispherical_head(D=1.8288, f=1.0, k=0.06, h=0.6095999999999999), 0.9491605631461236) # Python 2 issue with trig due to my own mistake assert_close(SA_partial_horiz_torispherical_head(D=1.8288, f=0.9, k=0.1, h=0.6095999999999999), 1.037030313486593, rtol=1e-6) L = 120*inch D = 72*inch h_values = [2.28*inch, 24*inch, 36*inch, 48*inch, 69.72*inch] h_values += [3*inch, 24*inch, 36*inch, 48*inch, 69*inch] SA_expect = [22.74924, 94.29092, 127.74876, 161.20660, 232.74828, 26.82339, 96.18257, 130.22802, 164.27347, 233.63265] SA_expect = [i*foot**2 for i in SA_expect] k_values = [.06]*5 + [.1]*5 f_values = [1.0]*5 + [.9]*5 for i in range(9): SA = (2*SA_partial_horiz_torispherical_head(D=D, f=f_values[i], k=k_values[i], h=h_values[i]) + SA_partial_cylindrical_body(D=D, L=L, h=h_values[i])) assert_close(SA, SA_expect[i], rtol=2e-7) # Precision points for the three regimes SA = SA_partial_horiz_torispherical_head(D=72., f=1, k=.06, h=2) assert_close(SA, 80.54614956735351, rtol=1e-7) # Only have 1e-7 tolerance here due to numerical itnegration SA = SA_partial_horiz_torispherical_head(D=72., f=1, k=.06, h=20) assert_close(SA, 1171.9138610357936, rtol=1e-7) SA = SA_partial_horiz_torispherical_head(D=72., f=1, k=.06, h=71) assert_close(SA, 4784.441787378645, rtol=1e-7) # Error handling # Was a bug computing this SA_partial_horiz_torispherical_head(D=72., f=1, k=.06, h=1e-20) assert 0 == SA_partial_horiz_torispherical_head(D=72., f=1, k=.06, h=0) assert 0 == SA_partial_horiz_torispherical_head(D=72., f=1, k=.06, h=-1e-12) assert SA_partial_horiz_torispherical_head(D=72., f=1, k=.06, h=7200) == SA_partial_horiz_torispherical_head(D=72., f=1, k=.06, h=72) # Check G returns a real number assert_close(SA_partial_horiz_torispherical_head(D=72., f=1, k=.06, h=1e-13), 3.859157404406146e-12, rtol=.1) # Torispherical tests T1 = TANK(L=120*inch, D=72*inch, horizontal=True, sideA='torispherical', sideA_f=1, sideA_k=.06, sideB='same') assert_close(T1.SA_from_h(2.28*inch)/foot**2, 22.74924, rtol=1e-7) assert_close(T1.SA_from_h(24*inch)/foot**2, 94.29092, rtol=1e-7) assert_close(T1.SA_from_h(36*inch)/foot**2, 127.74876, rtol=1e-7) assert_close(T1.SA_from_h(48*inch)/foot**2, 161.20660, rtol=1e-7) assert_close(T1.SA_from_h(69.72*inch)/foot**2, 232.74828, rtol=1e-7) assert 0.0 == T1.SA_from_h(0) assert_close(T1.SA_from_h(T1.h_max), T1.A, rtol=1e-12) T2 = TANK(L=120*inch, D=72*inch, horizontal=True, sideA='torispherical', sideA_f=.9, sideA_k=.1, sideB='same') assert_close(T2.SA_from_h(3*inch)/foot**2, 26.82339, rtol=2e-7) assert_close(T2.SA_from_h(24*inch)/foot**2, 96.18257, rtol=1e-7) assert_close(T2.SA_from_h(36*inch)/foot**2, 130.22802, rtol=1e-7) assert_close(T2.SA_from_h(48*inch)/foot**2, 164.27347, rtol=1e-7) assert_close(T2.SA_from_h(69*inch)/foot**2, 233.63265, rtol=1e-7) assert 0.0 == T2.SA_from_h(0) assert_close(T2.SA_from_h(T2.h_max), T2.A, rtol=1e-12) def test_SA_vert_flat_got_area(): T_actually_flat = TANK(L=120, D=72, horizontal=False) assert_close(T_actually_flat.SA_from_h(0), 4071.5040790523717, rtol=1e-15) assert_close(T_actually_flat.SA_from_h(T_actually_flat.h_max), 35286.36868512056, rtol=1e-15) T_actually_flat2 = TANK(L=1e-100, D=72, horizontal=False) assert_close(T_actually_flat2.SA_from_h(0), 4071.5040790523717, rtol=1e-15) assert_close(T_actually_flat2.SA_from_h(T_actually_flat2.h_max), 2*4071.5040790523717, rtol=1e-15) def test_SA_partial_vertical_conical_head(): SA = SA_partial_vertical_conical_head(D=72., a=48.0, h=24.0) assert_close(SA, 1696.4600329384882) # Integration tests T1 = TANK(L=120*inch, D=72*inch, horizontal=False, sideA='conical', sideA_a=36*inch, sideB='same') assert_close(T1.SA_from_h(36*inch)/foot**2, 39.98595) assert_close(T1.SA_from_h(0)/foot**2, 0) assert_close(T1.SA_from_h(-1e-14)/foot**2, 0) T2 = TANK(L=120*inch, D=72*inch, horizontal=False, sideA='conical', sideA_a=48*inch, sideB='same') assert_close(T2.SA_from_h(24*inch)/foot**2, 11.78097, rtol=3e-7) assert_close(T2.SA_from_h(36*inch)/foot**2, 26.50719, rtol=1e-7) assert_close(T2.SA_from_h(48*inch)/foot**2, 47.12389, rtol=1e-7) assert_close(T2.SA_from_h(60*inch)/foot**2, 65.97345, rtol=1e-7) assert_close(T2.SA_from_h(72*inch)/foot**2, 84.82300, rtol=1e-7) assert_close(T2.SA_from_h(0)/foot**2,0, rtol=1e-7) assert_close(T2.SA_from_h(-1e-14)/foot**2,0, rtol=1e-7) assert_close(T2.SA_from_h(T2.h_max), 26.26771571641428, rtol=1e-12) assert_close(T2.SA_from_h(T2.h_max*.95), 26.046081865057033, rtol=1e-12) T_flat = TANK(L=120*inch, D=72*inch, horizontal=False, sideA='conical', sideA_a=0, sideB='same') T_actually_flat = TANK(L=120*inch, D=72*inch, horizontal=False) for h in (0, T_flat.h_max*.1, T_flat.h_max*.4, T_flat.h_max*.9, T_flat.h_max): assert_close(T_flat.SA_from_h(h), T_actually_flat.SA_from_h(h), rtol=1e-11) def test_SA_partial_vertical_spherical_head(): SA = SA_partial_vertical_spherical_head(72, a=24, h=12) assert_close(SA, 2940.5307237600464) # Make sure we cover zeros, avoid the zero division assert_close(SA_partial_vertical_spherical_head(D=1, a=0.0, h=1e-100), 0.7853981633974483, rtol=1e-12) # Integration tests T1 = TANK(L=120*inch, D=72*inch, horizontal=False, sideA='spherical', sideA_a=24*inch, sideB='same') assert_close(T1.SA_from_h(12*inch)/foot**2, 20.42035, rtol=2e-7) assert_close(T1.SA_from_h(24*inch)/foot**2, 40.84070, rtol=2e-7) assert_close(T1.SA_from_h(48*inch)/foot**2, 78.53982, rtol=2e-7) T2 = TANK(L=120*inch, D=72*inch, horizontal=False, sideA='spherical', sideA_a=36*inch, sideB='same') assert_close(T2.SA_from_h(18*inch)/foot**2, 28.27433, rtol=2e-7) assert_close(T2.SA_from_h(36*inch)/foot**2, 56.54867, rtol=2e-7) assert_close(T2.SA_from_h(60*inch)/foot**2, 94.24778, rtol=2e-7) assert_close(T2.SA_from_h(T2.h_max), 28.01889676417523, rtol=1e-10) assert 0 == T2.SA_from_h(0) assert 0 == T2.SA_from_h(-1e-12) # T2.SA_from_h(1e-320) # works :) T_flat = TANK(L=120*inch, D=72*inch, horizontal=False, sideA='spherical', sideA_a=0, sideB='same') T_actually_flat = TANK(L=120*inch, D=72*inch, horizontal=False) for h in (0, T_flat.h_max*.1, T_flat.h_max*.4, T_flat.h_max*.9, T_flat.h_max): assert_close(T_flat.SA_from_h(h), T_actually_flat.SA_from_h(h), rtol=1e-15) def test_SA_partial_vertical_torispherical_head(): assert_close(SA_partial_vertical_torispherical_head(D=1.8288, f=1, k=.06, h=0.2127198169675985*(1-1e-12)), SA_partial_vertical_torispherical_head(D=1.8288, f=1, k=.06, h=0.2127198169675985*(1+1e-12)), rtol=1e-9) assert_close(SA_partial_vertical_torispherical_head(D=1.8288, f=1, k=.06, h=.2), 2.2981378579540053, rtol=1e-12) assert_close(SA_partial_vertical_torispherical_head(D=1.8288, f=1, k=.06, h=.3), 3.056637737809865, rtol=1e-12) assert 0 == SA_partial_vertical_torispherical_head(D=72*inch, f=1, k=.06, h=0) assert 0 == SA_partial_vertical_torispherical_head(D=72*inch, f=1, k=.06, h=-1e-16) # Integration tests T1 = TANK(L=120*inch, D=72*inch, horizontal=False, sideA='torispherical', sideA_f=1, sideA_k=.06, sideB='same') assert_close(T1.SA_from_h(2*inch)/foot**2, 6.28319, rtol=1e-6) assert_close(T1.SA_from_h(6*inch)/foot**2, 18.84956, rtol=2.5e-7) assert_close(T1.SA_from_h(12*inch)/foot**2, 33.19882, rtol=1e-7) assert_close(T1.SA_from_h(T1.sideA_a)/foot**2, 33.50098, rtol=1e-7) assert_close(T1.SA_from_h(36.19231*inch)/foot**2, 71.20010, rtol=1e-7) T2 = TANK(L=120*inch, D=72*inch, horizontal=False, sideA='torispherical', sideA_f=.9, sideA_k=.1, sideB='same') assert_close(T2.SA_from_h(6*inch)/foot**2, 16.96460, rtol=2e-7) assert_close(T2.SA_from_h(8*inch)/foot**2, 22.61947, rtol=2e-7) assert_close(T2.SA_from_h(12*inch)/foot**2, 31.28983, rtol=2e-7) assert_close(T2.SA_from_h(14.91694*inch)/foot**2, 35.98024, rtol=2e-7) assert_close(T2.SA_from_h(38.91694*inch)/foot**2, 73.67936, rtol=2e-7) assert_close(T2.SA_from_h(1), 6.911163458435757, rtol=1e-12) assert_close(T2.SA_from_h(T2.h_max), 24.197157590255674, rtol=1e-12) assert_close(T2.SA_from_h(T2.h_max*.9642342), 22.789489525238952, rtol=1e-12) assert T2.SA_from_h(0) == 0 assert T2.SA_from_h(-1e-12) == 0 # Cannot do flat tests with torispherical, it does not support it def test_SA_partial_vertical_ellipsoidal_head(): SA = SA_partial_vertical_ellipsoidal_head(D=72., a=48.0, h=24.0) assert_close(SA, 4675.237891376319, rtol=1e-12) # Integration tests T1 = TANK(L=120*inch, D=72*inch, horizontal=False, sideA='ellipsoidal', sideA_a=24*inch, sideB='same') assert_close(T1.SA_from_h(12*inch)/foot**2, 24.71061) assert_close(T1.SA_from_h(24*inch)/foot**2, 44.50037) assert_close(T1.SA_from_h(48*inch)/foot**2, 82.19948) T2 = TANK(L=120*inch, D=72*inch, horizontal=False, sideA='ellipsoidal', sideA_a=36*inch, sideB='same') assert_close(T2.SA_from_h(18*inch)/foot**2, 28.27433, rtol=1.5e-7) assert_close(T2.SA_from_h(36*inch)/foot**2, 56.54867, rtol=1e-7) assert_close(T2.SA_from_h(60*inch)/foot**2, 94.24778, rtol=1e-7) T3 = TANK(L=120*inch, D=72*inch, horizontal=False, sideA='ellipsoidal', sideA_a=48*inch, sideB='same') assert_close(T3.SA_from_h(24*inch)/foot**2, 32.46693, rtol=1e-7) assert_close(T3.SA_from_h(48*inch)/foot**2, 69.46708, rtol=1e-7) assert_close(T3.SA_from_h(72*inch)/foot**2, 107.16619, rtol=1e-7) assert_close(T3.SA_from_h(T3.h_max), 30.419215944509517, rtol=1e-12) assert T3.SA_from_h(0) == 0 assert T3.SA_from_h(-1e-13) == 0 # Flat test case T_flat = TANK(L=120*inch, D=72*inch, horizontal=False, sideA='ellipsoidal', sideA_a=0, sideB='same') T_actually_flat = TANK(L=120*inch, D=72*inch, horizontal=False) for h in (0, T_flat.h_max*.1, T_flat.h_max*.4, T_flat.h_max*.9, T_flat.h_max): assert_close(T_flat.SA_from_h(h), T_actually_flat.SA_from_h(h), rtol=1e-11) # Numerical issue - unsolved, when `a` approaches `R`. The switch is smooth if we zoom out but not if we are close low = SA_partial_vertical_ellipsoidal_head(72*inch, a=36.*inch*(1+1e-9), h=18*inch) high = SA_partial_vertical_ellipsoidal_head(72*inch, a=36.*inch*(1-1e-9), h=18*inch) assert_close(low, high, rtol=1e-8) # The issue has been identified to be occurring in the just-above 36 code with pytest.raises(Exception): low = SA_partial_vertical_ellipsoidal_head(72*inch, a=36.*inch*(1+1e-12), h=18*inch) high = SA_partial_vertical_ellipsoidal_head(72*inch, a=36.*inch*(1-1e-12), h=18*inch) assert_close(low, high, rtol=1e-8) assert_close(0.25*pi*72**2*inch**2, SA_partial_vertical_ellipsoidal_head(72*inch, a=0.0, h=1e-20)) def test_SA_from_h_basics(): # Bad side names with pytest.raises(ValueError): SA_from_h(h=7, D=1.5, L=5., horizontal=False, sideA='conical', sideB='NOTASIDE', sideA_a=2., sideB_a=1.) with pytest.raises(ValueError): SA_from_h(h=7, D=1.5, L=5., horizontal=False, sideB='conical', sideA='NOTASIDE', sideA_a=2., sideB_a=1.) # height above tank height with pytest.raises(ValueError): SA_from_h(h=70, D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.) # height above tank height with pytest.raises(ValueError): SA_from_h(h=15, D=1.5, L=5., horizontal=True, sideA=None, sideB=None) assert_close(SA_from_h(h=1.5, D=1.5, L=5., horizontal=True, sideA=None, sideB=None), 0.25*pi*1.5**2*2 + 1.5*5*pi, rtol=1e-13) def test_pitch_angle_solver(): ans = [{'angle': 30.0, 'pitch': 2., 'pitch_parallel': 1.7320508075688774, 'pitch_normal': 1.}, {'angle': 60.0, 'pitch': 2., 'pitch_parallel': 1., 'pitch_normal': 1.7320508075688774}, {'angle': 45.0, 'pitch': 2., 'pitch_parallel': 1.414213562373095, 'pitch_normal': 1.414213562373095}, {'angle': 90.0, 'pitch': 1., 'pitch_parallel': 0., 'pitch_normal': 1.}, {'angle': 0.0, 'pitch': 1., 'pitch_parallel': 1., 'pitch_normal': 0.}, ] for ans_set in ans: for k1, v1 in ans_set.items(): for k2, v2 in ans_set.items(): if k1 != k2 and v1 != 0 and v2 != 0: angle, pitch, pitch_parallel, pitch_normal = pitch_angle_solver(**{k1:v1, k2:v2}) assert_close(ans_set['angle'], angle, atol=1e-16) assert_close(ans_set['pitch'], pitch, atol=1e-16) assert_close(ans_set['pitch_parallel'], pitch_parallel, atol=1e-16) assert_close(ans_set['pitch_normal'], pitch_normal, atol=1e-16) with pytest.raises(Exception): pitch_angle_solver(30) def test_AirCooledExchanger(): # Full solution, exchanger in Serth AC = AirCooledExchanger(tube_rows=1, tube_passes=1, tubes_per_row=56, tube_length=10.9728, tube_diameter=1*inch, fin_thickness=0.013*inch, fin_density=10/inch, angle=30, pitch=2.5*inch, fin_height=0.625*inch, tube_thickness=0.00338) assert_close(AC.A_fin_per_tube, 18.041542744557212) # Minimal solution AC = AirCooledExchanger(tube_rows=1, tube_passes=1, tubes_per_row=56, tube_length=10.9728, tube_diameter=1*inch, fin_thickness=0.013*inch, fin_density=10/inch, angle=30, pitch=2.5*inch, fin_height=0.625*inch) with pytest.raises(Exception): AirCooledExchanger(tube_rows=1, tube_passes=1, tubes_per_row=56, tube_length=10.9728, tube_diameter=1*inch, fin_thickness=0.013*inch, fin_density=10/inch, angle=30, pitch=2.5*inch) # test AC with geometry whose minimum area is lower on the diagonal plane AC = AirCooledExchanger(tube_rows=1, tube_passes=1, tubes_per_row=56, tube_length=10.9728, tube_diameter=1*inch, fin_thickness=0.013*inch, fin_density=10/inch, angle=60, pitch=2.2*inch, fin_height=0.625*inch, tube_thickness=0.00338) assert_close(AC.A_diagonal_per_bundle, AC.A_min_per_bundle) def test_AirCooledExchangerFull(): AC = AirCooledExchanger(tube_rows=4, tube_passes=4, tubes_per_row=56, tube_length=10.9728, tube_diameter=1*inch, fin_thickness=0.013*inch, fin_density=10/inch, angle=30, pitch=2.5*inch, fin_height=0.625*inch, tube_thickness=0.00338, bundles_per_bay=2, parallel_bays=3) assert_close(AC.bare_length, 0.0022097999999999996) assert AC.tubes_per_bundle == 224 assert AC.tubes_per_bay == 224*2 assert AC.tubes == 224*2*3 assert_close(AC.pitch_diagonal, 0.057238126497990836) assert_close(AC.A_bare_tube_per_tube, 0.875590523880476) assert_close(AC.A_bare_tube_per_row, AC.A_bare_tube_per_tube*AC.tubes_per_row) assert_close(AC.A_bare_tube_per_bundle, AC.A_bare_tube_per_tube*AC.tubes_per_bundle) assert_close(AC.A_bare_tube_per_bay, AC.A_bare_tube_per_tube*AC.tubes_per_bay) assert_close(AC.A_bare_tube, AC.A_bare_tube_per_tube*AC.tubes) assert_close(AC.A_tube_showing_per_tube, 0.7617637557760141) assert_close(AC.A_tube_showing_per_row, AC.A_tube_showing_per_tube*AC.tubes_per_row) assert_close(AC.A_tube_showing_per_bundle, AC.A_tube_showing_per_tube*AC.tubes_per_bundle) assert_close(AC.A_tube_showing_per_bay, AC.A_tube_showing_per_tube*AC.tubes_per_bay) assert_close(AC.A_tube_showing, AC.A_tube_showing_per_tube*AC.tubes) assert_close(AC.A_per_fin, 0.0041762830427215765) assert_close(AC.A_fin_per_tube, 18.041542744557212) assert_close(AC.A_fin_per_row, AC.A_fin_per_tube*AC.tubes_per_row) assert_close(AC.A_fin_per_bundle, AC.A_fin_per_tube*AC.tubes_per_bundle) assert_close(AC.A_fin_per_bay, AC.A_fin_per_tube*AC.tubes_per_bay) assert_close(AC.A_fin, AC.A_fin_per_tube*AC.tubes) assert_close(AC.A_per_tube, 18.803306500333225) assert_close(AC.A_per_row, AC.A_per_tube*AC.tubes_per_row) assert_close(AC.A_per_bundle, AC.A_per_tube*AC.tubes_per_bundle) assert_close(AC.A_per_bay, AC.A_per_tube*AC.tubes_per_bay) assert_close(AC.A, AC.A_per_tube*AC.tubes) assert_close(AC.A_increase, 21.47500000000001) assert_close(AC.A_diagonal_per_bundle, 34.05507419296123) assert_close(AC.A_normal_per_bundle, 1.365674687999997) assert_close(AC.A_normal_per_bundle, AC.A_normal_per_bundle) assert_close(AC.A_min_per_bay, AC.A_min_per_bundle*AC.bundles_per_bay) assert_close(AC.A_min, AC.A_min_per_bay*AC.parallel_bays) assert_close(AC.A_face_per_bundle, 19.858025) assert_close(AC.A_face_per_bay, AC.A_face_per_bundle*AC.bundles_per_bay) assert_close(AC.A_face, AC.A_face_per_bay*AC.parallel_bays) assert_close(AC.flow_area_contraction_ratio, 0.06877192982456128) assert_close(AC.Di, 0.018639999999999997) assert_close(AC.A_tube_flow, 0.00027288627771317794) assert_close(AC.tube_volume_per_tube, 0.0029943265480911587) assert_close(AC.tube_volume_per_row, AC.tube_volume_per_tube*AC.tubes_per_row) assert_close(AC.tube_volume_per_bundle, AC.tube_volume_per_tube*AC.tubes_per_bundle) assert_close(AC.tube_volume, AC.tube_volume_per_tube*AC.tubes) assert AC.channels == 56 assert AC.pitch_str == 'triangular' assert AC.pitch_class == 'staggered' # test with corbels AC = AirCooledExchanger(tube_rows=4, tube_passes=4, tubes_per_row=56, tube_length=10.9728, tube_diameter=1*inch, fin_thickness=0.013*inch, fin_density=10/inch, angle=30, pitch=2.5*inch, fin_height=0.625*inch, tube_thickness=0.00338, bundles_per_bay=2, parallel_bays=3, corbels=True) assert_close(AC.A_face_per_bundle, 19.683831599999998) def test_geometry_tank(): V1 = TANK(D=1.2, L=4, horizontal=False).V_total assert_close(V1, 4.523893421169302) V2 = TANK(D=1.2, L=4, horizontal=False).V_from_h(.5) assert_close(V2, 0.5654866776461628) V3 = TANK(D=1.2, L=4, horizontal=False).h_from_V(.5) assert_close(V3, 0.44209706414415373) T1 = TANK(V=10, L_over_D=0.7, sideB='conical', sideB_a=0.5) # T1.set_table(dx=0.001) things_calc = T1.A, T1.A_sideA, T1.A_sideB, T1.A_lateral things = (24.94775907657148, 5.118555935958284, 5.497246519930003, 14.331956620683194) assert_close1d(things_calc, things) L1 = TANK(D=10., horizontal=True, sideA='conical', sideB='conical', V=500).L D1 = TANK(L=4.69953105701, horizontal=True, sideA='conical', sideB='conical', V=500).D L2 = TANK(L_over_D=0.469953105701, horizontal=True, sideA='conical', sideB='conical', V=500).L assert_close1d([L1, D1, L2], [4.699531057009146, 9.999999999999407, 4.69953105700979]) L1 = TANK(D=10., horizontal=False, sideA='conical', sideB='conical', V=500).L D1 = TANK(L=4.69953105701, horizontal=False, sideA='conical', sideB='conical', V=500).D L2 = TANK(L_over_D=0.469953105701, horizontal=False, sideA='conical', sideB='conical', V=500).L assert_close1d([L1, D1, L2], [4.699531057009146, 9.999999999999407, 4.69953105700979]) # Test L_over_D setting simple cases L1 = TANK(D=1.2, L_over_D=3.5, horizontal=False).L D1 = TANK(L=1.2, L_over_D=3.5, horizontal=False).D assert_close1d([L1, D1], [4.2, 0.342857142857]) # Test toripsherical a calculation V = TANK(L=1.2, L_over_D=3.5, sideA='torispherical', sideB='torispherical', sideA_f=1., sideA_k=0.06, sideB_f=1., sideB_k=0.06).V_total assert_close(V, 0.117318265914) # Test default a_ratio assert_close(0.25, TANK(V=10, L=10, sideA='conical', sideA_a_ratio=None).sideA_a_ratio) with pytest.raises(Exception): # Test overdefinition case TANK(V=10, L=10, D=10) with pytest.raises(Exception): # Test sides specified with V solving TANK(V=10, L=10, sideA='conical', sideB_a=0.5) # Couple points that needed some polishing base = TANK(D=10., horizontal=True, sideA_a_ratio=.25, sideB_f=1., sideB_k=0.06, sideA='conical', sideB='torispherical', V=500) forward = TANK(D=10.0, horizontal=True, sideA_a_ratio=.25, sideB_f=1., sideB_k=0.06, sideA='conical', sideB='torispherical', L=base.L) assert_close(base.V, forward.V_total, rtol=1e-11) base = TANK(D=10., horizontal=True, sideB_a_ratio=.25, sideA_f=1., sideA_k=0.06, sideB='conical', sideA='torispherical', V=500) forward = TANK(D=10.0, horizontal=True, sideB_a_ratio=.25, sideA_f=1., sideA_k=0.06, sideB='conical', sideA='torispherical', L=base.L) assert_close(base.V, forward.V_total, rtol=1e-11) # Same tank keyword T1 = TANK(V=10, L_over_D=0.7, sideB='conical', sideB_a=0.5, sideA='same') assert T1.sideB == T1.sideA assert T1.sideB_a == T1.sideA_a assert T1.sideB_f == T1.sideA_f assert T1.sideB_k == T1.sideB_k assert T1.sideB_a_ratio == T1.sideA_a_ratio T1 = TANK(D=10.0, horizontal=True, sideA_f=1., sideA_k=0.06, sideA='torispherical', L=3, sideB='same') assert T1.sideB == T1.sideA assert T1.sideB_a == T1.sideA_a assert T1.sideB_f == T1.sideA_f assert T1.sideB_k == T1.sideB_k assert T1.sideB_a_ratio == T1.sideA_a_ratio T1 = TANK(D=10.0, horizontal=True, sideB_f=1., sideB_k=0.06, sideB='torispherical', L=3, sideA='same') assert T1.sideB == T1.sideA assert T1.sideB_a == T1.sideA_a assert T1.sideB_f == T1.sideA_f assert T1.sideB_k == T1.sideB_k assert T1.sideB_a_ratio == T1.sideA_a_ratio # No spec at all T1 = TANK(D=10.0, horizontal=True, L=3, sideA='same') assert T1.sideB == T1.sideA assert T1.sideB_a == T1.sideA_a assert T1.sideB_f == T1.sideA_f assert T1.sideB_k == T1.sideB_k assert T1.sideB_a_ratio == T1.sideA_a_ratio assert T1.sideB_a == 0 with pytest.raises(Exception): T1 = TANK(D=10.0, horizontal=True, L=3, sideA='same', sideB='same') # Default k, f T1 = TANK(D=10.0, horizontal=True, L=3, sideA='torispherical', sideB='torispherical') assert T1.sideB == T1.sideA assert T1.sideB_a == T1.sideA_a assert T1.sideB_f == T1.sideA_f assert T1.sideB_k == T1.sideB_k assert T1.sideB_a_ratio == T1.sideA_a_ratio assert T1.sideB_k == 0.06 assert T1.sideB_f == 1.0 def test_TANK_issues(): # GH issue 31 Tk = TANK(L=3, D=5, horizontal=False, sideA='torispherical', sideA_f=1, sideA_k=0.1, sideB='torispherical', sideB_f=1, sideB_k=0.1) #DIN28011 assert_close(Tk.V_total, Tk.V_from_h(Tk.h_max*.9999999999), rtol=1e-12) # Issue where checking sideA_a was for truthiness and not not None kwargs = {'L': 2.0, 'horizontal': False, 'L_over_D': None, 'V': None, 'sideA': 'ellipsoidal', 'sideB': 'ellipsoidal', 'sideA_a': 0.0, 'sideB_a': 1e-06, 'sideA_a_ratio': None, 'sideB_a_ratio': None, 'sideA_f': None, 'sideA_k': None, 'sideB_f': None, 'sideB_k': None} assert_close(TANK(D=.5, **kwargs).V_total, 0.39269921259841806, rtol=1e-11) # case that failed once kwargs = {'D': 0.5, 'L': 2.0, 'horizontal': False, 'L_over_D': None, 'V': None, 'sideA': 'ellipsoidal', 'sideB': 'ellipsoidal', 'sideA_a': 0.0, 'sideB_a': 0.0, 'sideA_a_ratio': None, 'sideB_a_ratio': None, 'sideA_f': None, 'sideA_k': None, 'sideB_f': None, 'sideB_k': None} TANK(**kwargs) def assert_TANKs_equal(T1, T2): for k, v in T1.__dict__.items(): if isinstance(v, (float, int)): assert_close(v, T2.__dict__[k]) else: assert v == T2.__dict__[k] def test_add_thickness(): t = 1e-4 T1 = TANK(L=3, D=.6, sideA='ellipsoidal', sideA_a = .2, sideB='conical', sideB_a=0.5) T1 = T1.add_thickness(t) T2 = TANK(L=3+2*t, D=.6+2*t, sideA='ellipsoidal', sideA_a = .2+t, sideB='conical', sideB_a=0.5+t) assert_TANKs_equal(T1, T2) # Also add a test that there are no default values for `k` and `f` when the tank is not torispherical # and the `a` ratios are correctly calculated not default values for T in (T1, T2): assert T.sideA_f is None assert T.sideA_k is None assert T.sideB_f is None assert T.sideB_k is None assert_close(T.sideA_a_ratio, 0.3333888703765412) assert_close(T.sideB_a_ratio, 0.8332222592469177) t = .1 T1 = TANK(L=3, D=.6, sideA='spherical', sideA_a = .2, sideB='guppy', sideB_a=0.5) T1 = T1.add_thickness(t) T2 = TANK(L=3+2*t, D=.6+2*t, sideA='spherical', sideA_a = .2+t, sideB='guppy', sideB_a=0.5+t) assert_TANKs_equal(T1, T2) for T in (T1, T2): assert T.sideA_f is None assert T.sideA_k is None assert T.sideB_f is None assert T.sideB_k is None assert_close(T.sideA_a_ratio, 0.375) assert_close(T.sideB_a_ratio, .75) # Torispherical as well t = .15311351231 T1 = TANK(L=3, D=.6, sideA='torispherical', sideB='torispherical', sideA_f=0.9, sideA_k=0.17) T1 = T1.add_thickness(t) T2 = TANK(L=3+2*t, D=.6+2*t, sideA='torispherical', sideA_f=0.9, sideA_k=0.17, sideB='torispherical') assert_TANKs_equal(T1, T2) @pytest.mark.slow def test_geometry_tank_chebyshev(): # Test auto set Chebyshev table T = TANK(L=1.2, L_over_D=3.5) assert_close(T.h_from_V(T.V_total, 'chebyshev'), T.h_max) assert_close(T.h_from_V(.1, 'chebyshev'), 0.2901805880470152, rtol=1e-4) assert_close(T.h_from_V(.05, 'chebyshev'), 0.15830377515496144, rtol=1e-4) assert_close(T.h_from_V(.02, 'chebyshev'), 0.08101343184833742, rtol=1e-4) T = TANK(L=1.2, L_over_D=3.5) assert_close(T.V_from_h(T.h_max, 'chebyshev'), T.V_total) @pytest.mark.slow def test_geometry_tank_fuzz_h_from_V(): T = TANK(L=1.2, L_over_D=3.5, sideA='torispherical', sideB='torispherical', sideA_f=1., horizontal=True, sideA_k=0.06, sideB_f=1., sideB_k=0.06) T.set_chebyshev_approximators(deg_forward=100, deg_backwards=600) # test V_from_h - pretty easy to get right for h in linspace(0, T.h_max, 30): # It's the top and the bottom of the tank that works poorly V1 = T.V_from_h(h, 'full') V2 = T.V_from_h(h, 'chebyshev') assert_close(V1, V2, rtol=1E-7, atol=1E-7) with pytest.raises(Exception): T.V_from_h(1E-5, 'NOTAMETHOD') # reverse - the spline is also pretty easy, with a limited number of points # when the required precision is low T.set_table(n=150) for V in linspace(0, T.V_total, 30): h1 = T.h_from_V(V, 'brenth') h2 = T.h_from_V(V, 'spline') assert_close(h1, h2, rtol=1E-5, atol=1E-6) h3 = T.h_from_V(V, 'chebyshev') # Even with a 600-degree polynomial, there will be failures if N # is high enough, but the tolerance should just be lowered assert_close(h1, h3, rtol=1E-7, atol=1E-7) with pytest.raises(Exception): T.h_from_V(1E-5, 'NOTAMETHOD') def test_basic(): psi = sphericity(10., 2.) assert_close(psi, 0.767663317071005) a_r = aspect_ratio(.2, 2.) assert_close(a_r, 0.1) f_circ = circularity(1.5, .1) assert_close(f_circ, 1884.9555921538756) A = A_cylinder(0.01, .1) assert_close(A, 0.0032986722862692833) V = V_cylinder(0.01, .1) assert_close(V, 7.853981633974484e-06) A = A_hollow_cylinder(0.005, 0.01, 0.1) assert_close(A, 0.004830198704894308) V = V_hollow_cylinder(0.005, 0.01, 0.1) assert_close(V, 5.890486225480862e-06) A = A_multiple_hole_cylinder(0.01, 0.1, [(0.005, 1)]) assert_close(A, 0.004830198704894308) V = V_multiple_hole_cylinder(0.01, 0.1, [(0.005, 1)]) assert_close(V, 5.890486225480862e-06) def test_HelicalCoil(): for kwargs in [{'Do': 30, 'H': 20, 'pitch': 5, 'Dt':2}, {'Do': 30, 'N': 4, 'pitch': 5, 'Dt':2}, {'Do': 30, 'N': 4, 'H': 20, 'Dt':2}, {'Do_total': 32, 'N': 4, 'H': 20, 'Dt':2}, {'Do_total': 32, 'N': 4, 'H_total': 22, 'Dt':2}]: a = HelicalCoil(Di=1.8, **kwargs) assert_close(a.N, 4) assert_close(a.H, 20) assert_close(a.H_total, 22) assert_close(a.Do_total, 32) assert_close(a.pitch, 5) assert_close(a.tube_length, 377.5212621504738) assert_close(a.surface_area, 2372.0360474917497) # Other parameters assert_close(a.curvature, 0.06) assert_close(a.helix_angle, 0.053001960689651316) assert_close(a.tube_circumference, 94.24777960769379) assert_close(a.total_inlet_area, 3.141592653589793) assert_close(a.total_volume, 1186.0180237458749) # with Di specified assert_close(a.Di, 1.8) assert_close(a.inner_surface_area, 2134.832442742575) assert_close(a.inlet_area, 2.5446900494077327) assert_close(a.inner_volume, 960.6745992341587) assert_close(a.annulus_area, 0.5969026041820604) assert_close(a.annulus_volume, 225.3434245117162) # Fusion 360 agrees with the tube length. # It says the SA should be 2370.3726964956063057 # Hopefully its own calculation is flawed # Test successfully creating a helix with HelicalCoil(Di=1.8, Do=30, H=20, pitch=2, Dt=2) with pytest.raises(Exception): HelicalCoil(Di=1.8, Do=30, H=20, pitch=1.999, Dt=2) with pytest.raises(Exception): HelicalCoil(Di=1.8, Do=30, H=20, N=10.0001, Dt=2) # Test Dt < Do HelicalCoil(Do=10, H=30, N=2, Dt=10) with pytest.raises(Exception): HelicalCoil(Do=10, H=30, N=2, Dt=10.00000001) with pytest.raises(Exception): HelicalCoil(Do_total=20-1E-9, H=30, N=3., Dt=10.000) def test_PlateExchanger(): ex = PlateExchanger(amplitude=5E-4, wavelength=3.7E-3, length=1.2, width=.3, d_port=.05, plates=51) assert ex.plate_exchanger_identifier == 'L3.7A0.5B45-45' assert_close(ex.amplitude, 0.0005) assert_close(ex.a, 0.0005) assert_close(ex.b, 0.001) assert_close(ex.wavelength, 3.7E-3) assert_close(ex.pitch, 3.7E-3) assert ex.chevron_angle == 45 assert ex.chevron_angles == (45, 45) assert ex.inclination_angle == 45 assert_close(ex.plate_corrugation_aspect_ratio, 0.5405405405405406) assert_close(ex.gamma, 0.5405405405405406) assert_close(ex.plate_enlargement_factor, 1.1611862034509677) assert_close(ex.D_eq, 0.002) assert_close(ex.D_hydraulic, 0.0017223766473078426) assert_close(ex.length_port, 1.25) assert_close(ex.A_plate_surface, 0.41802703324234836) assert_close(ex.A_heat_transfer, 20.483324628875071) assert_close(ex.A_channel_flow, 0.0003) assert ex.channels == 50 assert ex.channels_per_fluid == 25 ex = PlateExchanger(amplitude=5E-4, wavelength=3.7E-3, length=1.2, width=.3, d_port=.05, plates=51, chevron_angles=(30, 60)) assert ex.chevron_angle == 45 assert ex.chevron_angles == (30, 60) ex = PlateExchanger(amplitude=5E-4, wavelength=3.7E-3) def plate_enlargement_factor_numerical(amplitude, wavelength): from scipy.integrate import quad lambda1 = wavelength b = amplitude gamma = 4*b/lambda1 def to_int(s): return (1 + (gamma*pi/2)**2*cos(2*pi/lambda1*s)**2)**0.5 main = quad(to_int, 0, lambda1)[0] return main/lambda1 def test_plate_enhancement_factor(): def plate_enlargement_factor_approx(amplitude, wavelength): # Approximate formula lambda1 = wavelength b = amplitude A = 2*pi*b/lambda1 return 1/6.*(1 + (1 + A**2)**0.5 + 4*(1 + 0.5*A**2)**0.5) # 1.218 in VDI example phi = plate_enlargement_factor_approx(amplitude=0.002, wavelength=0.0126) assert_close(phi, 1.217825410973735) assert_close(phi, 1.218, rtol=1E-3) phi = plate_enlargement_factor_numerical(amplitude=0.002, wavelength=0.0126) assert_close(phi, 1.2149896289702244) @pytest.mark.fuzz @pytest.mark.slow def test_plate_enhancement_factor_fuzz(): # Confirm it's correct to within 1E-7 for x in linspace(1E-5, 100, 3): for y in linspace(1E-5, 100, 3): a = plate_enlargement_factor(x, y) b = plate_enlargement_factor_numerical(x, y) assert_close(a, b, rtol=1E-7) def test_RectangularFinExchanger(): PFE = RectangularFinExchanger(0.03, 0.001, 0.012) assert_close(PFE.fin_height, 0.03) assert_close(PFE.fin_thickness, 0.001) assert_close(PFE.fin_spacing, 0.012) # calculated values assert_close(PFE.channel_height, 0.029) assert_close(PFE.blockage_ratio, 0.8861111111111111) assert_close(PFE.fin_count, 83.33333333333333) assert_close(PFE.Dh, 0.01595) assert_close(PFE.channel_width, 0.011) # with layers, plate thickness, width, and length (fully defined) PFE = RectangularFinExchanger(0.03, 0.001, 0.012, length=1.2, width=2.401, plate_thickness=.005, layers=40) assert_close(PFE.A_HX_layer, 19.2) assert_close(PFE.layer_fin_count, 200) assert_close(PFE.A_HX, 768.0) assert_close(PFE.height, 1.4+.005) assert_close(PFE.volume, 4.048085999999999) assert_close(PFE.A_specific_HX, 189.71928956054794) def test_RectangularOffsetStripFinExchanger(): ROSFE = RectangularOffsetStripFinExchanger(fin_length=.05, fin_height=.01, fin_thickness=.003, fin_spacing=.05) assert_close(ROSFE.fin_length, 0.05) assert_close(ROSFE.fin_height, 0.01) assert_close(ROSFE.fin_thickness, 0.003) assert_close(ROSFE.fin_spacing, 0.05) assert_close(ROSFE.blockage_ratio, 0.348) assert_close(ROSFE.blockage_ratio_Kim, 0.34199999999999997) assert_close(ROSFE.alpha, 5) assert_close(ROSFE.delta, 0.06) assert_close(ROSFE.gamma, 0.06) assert_close(ROSFE.A_channel, 0.000329) # assert_close(ROSFE.SA_fin, 0.005574) assert_close(ROSFE.Dh, 0.011804808037316112) assert_close(ROSFE.Dh_Kays_London, 0.012185185185185186) assert_close(ROSFE.Dh_Joshi_Webb, 0.011319367879456085) # With layers, plate thickness, width (fully defined) # ROSFE = RectangularOffsetStripFinExchanger(fin_length=.05, fin_height=.01, fin_thickness=.003, fin_spacing=.05, length=1.2, width=2.401, plate_thickness=.005, layers=40) # assert_close(ROSFE.A_HX_layer, 0.267552) def test_HyperbolicCoolingTower(): pass def test_circle_segment_h_from_A(): from fluids.geometry import circle_segment_area_inner assert_close(circle_segment_h_from_A(1.3, 4.5), 0.6128105860337293, rtol=1e-13) assert_close(circle_segment_h_from_A(D=20, A=137.113), 8.99999918630794, rtol=1e-13) # Point at low area assert_close(circle_segment_h_from_A(D=20, A=.006), 0.010042502885593678, rtol=1e-12) assert_close(circle_segment_h_from_A(D=20, A=1e-20), 4.443057211031748e-08, rtol=1e-12) # Special cases assert circle_segment_h_from_A(0.0, 4.5) == 0.0 assert_close(circle_segment_h_from_A(pi/4*4.5**2/2, 4.5), 2.25, rtol=1e-13) fluids-1.0.22/tests/test_compressible.py0000644000175000017500000003110214302004506017641 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from fluids.compressible import * from fluids.constants import * from fluids.core import F2K from fluids.numerics import assert_close, assert_close1d import pytest from math import log, pi def test_isothermal_work_compression(): assert_close(isothermal_work_compression(1E5, 1E6, 300.0), 5743.425357533477, rtol=1e-05) def test_isentropic_work_compression(): dH = isentropic_work_compression(P1=1E5, P2=1E6, T1=300.0, k=1.4, eta=1) assert_close(dH, 8125.161295388634, rtol=1e-05) dH = isentropic_work_compression(P1=1E5, P2=1E6, T1=300, k=1.4, eta=0.78) assert_close(dH, 10416.873455626454, rtol=1e-05) dH = isentropic_work_compression(P1=1E5, P2=1E6, T1=300, k=1.4, eta=0.78, Z=0.9) assert_close(dH, 9375.186110063809, rtol=1e-05) # Other solutions - P1, P2, and eta P1 = isentropic_work_compression(W=9375.186110063809, P2=1E6, T1=300., k=1.4, eta=0.78, Z=0.9) assert_close(P1, 1E5, rtol=1E-5) P2 = isentropic_work_compression(W=9375.186110063809, P1=1E5, T1=300., k=1.4, eta=0.78, Z=0.9) assert_close(P2, 1E6, rtol=1E-5) eta = isentropic_work_compression(W=9375.186110063809, P1=1E5, P2=1E6, T1=300, k=1.4, Z=0.9, eta=None) assert_close(eta, 0.78, rtol=1E-5) with pytest.raises(Exception): isentropic_work_compression(P1=1E5, P2=1E6, k=1.4, T1=None) def test_isentropic_T_rise_compression(): T2 = isentropic_T_rise_compression(286.8, 54050.0, 432400., 1.4) assert_close(T2, 519.5230938217768, rtol=1e-05) T2 = isentropic_T_rise_compression(286.8, 54050, 432400, 1.4, eta=0.78) assert_close(T2, 585.1629407971498, rtol=1e-05) # Test against the simpler formula for eta=1: # T2 = T2*(P2/P1)^((k-1)/k) T2_ideal = 286.8*((432400/54050)**((1.4-1)/1.4)) assert_close(T2_ideal, 519.5230938217768, rtol=1e-05) def test_isentropic_efficiency(): eta_s = isentropic_efficiency(1E5, 1E6, 1.4, eta_p=0.78) assert_close(eta_s, 0.7027614191263858) eta_p = isentropic_efficiency(1E5, 1E6, 1.4, eta_s=0.7027614191263858) assert_close(eta_p, 0.78) with pytest.raises(Exception): isentropic_efficiency(1E5, 1E6, 1.4) # Example 7.6 of the reference: eta_s = isentropic_efficiency(1E5, 3E5, 1.4, eta_p=0.75) assert_close(eta_s, 0.7095085923615653) eta_p = isentropic_efficiency(1E5, 3E5, 1.4, eta_s=eta_s) assert_close(eta_p, 0.75) def test_polytropic_exponent(): assert_close(polytropic_exponent(1.4, eta_p=0.78), 1.5780346820809246) assert_close(polytropic_exponent(1.4, n=1.5780346820809246), 0.78) with pytest.raises(Exception): polytropic_exponent(1.4) def test_compressible(): T = T_critical_flow(473., 1.289) assert_close(T, 413.2809086937528) P = P_critical_flow(1400000., 1.289) assert_close(P, 766812.9022792266) assert not is_critical_flow(670E3, 532E3, 1.11) assert is_critical_flow(670E3, 101E3, 1.11) SE = stagnation_energy(125.) assert_close(SE, 7812.5) PST = P_stagnation(54050., 255.7, 286.8, 1.4) assert_close(PST, 80772.80495900588) Tst = T_stagnation(286.8, 54050., 54050*8., 1.4) assert_close(Tst, 519.5230938217768) Tstid = T_stagnation_ideal(255.7, 250., 1005.) assert_close(Tstid, 286.79452736318405) def test_Panhandle_A(): # Example 7-18 Gas of Crane TP 410M D = 0.340 P1 = 90E5 P2 = 20E5 L = 160E3 SG=0.693 Tavg = 277.15 Q = 42.56082051195928 # Test all combinations of relevant missing inputs assert_close(Panhandle_A(D=D, P1=P1, P2=P2, L=L, SG=SG, Tavg=Tavg), Q) assert_close(Panhandle_A(D=D, Q=Q, P2=P2, L=L, SG=SG, Tavg=Tavg), P1) assert_close(Panhandle_A(D=D, Q=Q, P1=P1, L=L, SG=SG, Tavg=Tavg), P2) assert_close(Panhandle_A(D=D, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), L) assert_close(Panhandle_A(L=L, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), D) with pytest.raises(Exception): Panhandle_A(D=0.340, P1=90E5, L=160E3, SG=0.693, Tavg=277.15) # Sample problem from "Natural Gas Pipeline Flow Calculations" by "Harlan H. Bengtson" Q_panhandle = Panhandle_A(SG=0.65, Tavg=F2K(80), Ts=F2K(60), Ps=14.7*psi, L=500*foot, D=12*inch, P1=510*psi, P2=490*psi, Zavg=0.919, E=0.92) mmscfd = Q_panhandle*day/foot**3/1e6 assert_close(mmscfd, 401.3019451856126, rtol=1e-12) def test_Panhandle_B(): # Example 7-18 Gas of Crane TP 410M D = 0.340 P1 = 90E5 P2 = 20E5 L = 160E3 SG=0.693 Tavg = 277.15 Q = 42.35366178004172 # Test all combinations of relevant missing inputs assert_close(Panhandle_B(D=D, P1=P1, P2=P2, L=L, SG=SG, Tavg=Tavg), Q) assert_close(Panhandle_B(D=D, Q=Q, P2=P2, L=L, SG=SG, Tavg=Tavg), P1) assert_close(Panhandle_B(D=D, Q=Q, P1=P1, L=L, SG=SG, Tavg=Tavg), P2) assert_close(Panhandle_B(D=D, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), L) assert_close(Panhandle_B(L=L, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), D) with pytest.raises(Exception): Panhandle_B(D=0.340, P1=90E5, L=160E3, SG=0.693, Tavg=277.15) def test_Weymouth(): D = 0.340 P1 = 90E5 P2 = 20E5 L = 160E3 SG=0.693 Tavg = 277.15 Q = 32.07729055913029 assert_close(Weymouth(D=D, P1=P1, P2=P2, L=L, SG=SG, Tavg=Tavg), Q) assert_close(Weymouth(D=D, Q=Q, P2=P2, L=L, SG=SG, Tavg=Tavg), P1) assert_close(Weymouth(D=D, Q=Q, P1=P1, L=L, SG=SG, Tavg=Tavg), P2) assert_close(Weymouth(D=D, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), L) assert_close(Weymouth(L=L, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), D) with pytest.raises(Exception): Weymouth(D=0.340, P1=90E5, L=160E3, SG=0.693, Tavg=277.15) Q_Weymouth = Weymouth(SG=0.65, Tavg=F2K(80), Ts=F2K(60), Ps=14.7*psi, L=500*foot, D=12*inch, P1=510*psi, P2=490*psi, Zavg=0.919, E=0.92) mmscfd = Q_Weymouth*day/foot**3/1e6 assert_close(mmscfd, 272.5879686092862, rtol=1e-12) def test_Spitzglass_high(): D = 0.340 P1 = 90E5 P2 = 20E5 L = 160E3 SG=0.693 Tavg = 277.15 Q = 29.42670246281681 assert_close(Spitzglass_high(D=D, P1=P1, P2=P2, L=L, SG=SG, Tavg=Tavg), Q) assert_close(Spitzglass_high(D=D, Q=Q, P2=P2, L=L, SG=SG, Tavg=Tavg), P1) assert_close(Spitzglass_high(D=D, Q=Q, P1=P1, L=L, SG=SG, Tavg=Tavg), P2) assert_close(Spitzglass_high(D=D, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), L) assert_close(Spitzglass_high(L=L, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), D) with pytest.raises(Exception): Spitzglass_high(D=0.340, P1=90E5, L=160E3, SG=0.693, Tavg=277.15) def test_Spitzglass_low(): D = 0.154051 P1 = 6720.3199 P2 = 0.0 L = 54.864 SG = 0.6 Tavg = 288.7 Q = 0.9488775242530617 assert_close(Spitzglass_low(D=D, P1=P1, P2=P2, L=L, SG=SG, Tavg=Tavg), Q) assert_close(Spitzglass_low(D=D, Q=Q, P2=P2, L=L, SG=SG, Tavg=Tavg), P1) assert_close(Spitzglass_low(D=D, Q=Q, P1=P1, L=L, SG=SG, Tavg=Tavg), P2, atol=1E-10) assert_close(Spitzglass_low(D=D, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), L) assert_close(Spitzglass_low(L=L, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), D) with pytest.raises(Exception): Spitzglass_low(D=0.340, P1=90E5, L=160E3, SG=0.693, Tavg=277.15) def test_Oliphant(): D = 0.340 P1 = 90E5 P2 = 20E5 L = 160E3 SG=0.693 Tavg = 277.15 Q = 28.851535408143057 assert_close(Oliphant(D=D, P1=P1, P2=P2, L=L, SG=SG, Tavg=Tavg), Q) assert_close(Oliphant(D=D, Q=Q, P2=P2, L=L, SG=SG, Tavg=Tavg), P1) assert_close(Oliphant(D=D, Q=Q, P1=P1, L=L, SG=SG, Tavg=Tavg), P2) assert_close(Oliphant(D=D, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), L) assert_close(Oliphant(L=L, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), D) with pytest.raises(Exception): Oliphant(D=0.340, P1=90E5, L=160E3, SG=0.693, Tavg=277.15) def test_Fritzsche(): D = 0.340 P1 = 90E5 P2 = 20E5 L = 160E3 SG=0.693 Tavg = 277.15 Q = 39.421535157535565 assert_close(Fritzsche(D=D, P1=P1, P2=P2, L=L, SG=SG, Tavg=Tavg), Q) assert_close(Fritzsche(D=D, Q=Q, P2=P2, L=L, SG=SG, Tavg=Tavg), P1) assert_close(Fritzsche(D=D, Q=Q, P1=P1, L=L, SG=SG, Tavg=Tavg), P2) assert_close(Fritzsche(D=D, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), L) assert_close(Fritzsche(L=L, Q=Q, P1=P1, P2=P2, SG=SG, Tavg=Tavg), D) with pytest.raises(Exception): Fritzsche(D=0.340, P1=90E5, L=160E3, SG=0.693, Tavg=277.15) def test_Muller(): D = 0.340 mu = 1E-5 P1 = 90E5 P2 = 20E5 L = 160E3 SG=0.693 Tavg = 277.15 Q = 60.45796698148663 assert_close(Muller(D=D, P1=P1, P2=P2, L=L, SG=SG, mu=mu, Tavg=Tavg), Q) assert_close(Muller(D=D, Q=Q, P2=P2, L=L, SG=SG, mu=mu, Tavg=Tavg), P1) assert_close(Muller(D=D, Q=Q, P1=P1, L=L, SG=SG, mu=mu, Tavg=Tavg), P2) assert_close(Muller(D=D, Q=Q, P1=P1, P2=P2, SG=SG, mu=mu, Tavg=Tavg), L) assert_close(Muller(L=L, Q=Q, P1=P1, P2=P2, SG=SG, mu=mu, Tavg=Tavg), D) with pytest.raises(Exception): Muller(D=D, P2=P2, L=L, SG=SG, mu=mu, Tavg=Tavg) def test_IGT(): D = 0.340 mu = 1E-5 P1 = 90E5 P2 = 20E5 L = 160E3 SG=0.693 Tavg = 277.15 Q = 48.92351786788815 assert_close(IGT(D=D, P1=P1, P2=P2, L=L, SG=SG, mu=mu, Tavg=Tavg), Q) assert_close(IGT(D=D, Q=Q, P2=P2, L=L, SG=SG, mu=mu, Tavg=Tavg), P1) assert_close(IGT(D=D, Q=Q, P1=P1, L=L, SG=SG, mu=mu, Tavg=Tavg), P2) assert_close(IGT(D=D, Q=Q, P1=P1, P2=P2, SG=SG, mu=mu, Tavg=Tavg), L) assert_close(IGT(L=L, Q=Q, P1=P1, P2=P2, SG=SG, mu=mu, Tavg=Tavg), D) with pytest.raises(Exception): IGT(D=D, P2=P2, L=L, SG=SG, mu=mu, Tavg=Tavg) def test_isothermal_gas(): mcalc = isothermal_gas(11.3, 0.00185, P1=1E6, P2=9E5, L=1000., D=0.5) assert_close(mcalc, 145.484757264) assert_close(isothermal_gas(11.3, 0.00185, P1=1E6, P2=9E5, m=145.484757264, D=0.5), 1000) assert_close(isothermal_gas(11.3, 0.00185, P2=9E5, m=145.484757264, L=1000., D=0.5), 1E6) assert_close(isothermal_gas(11.3, 0.00185, P1=1E6, m=145.484757264, L=1000., D=0.5), 9E5) assert_close(isothermal_gas(11.3, 0.00185, P1=1E6, P2=9E5, m=145.484757264, L=1000.), 0.5) with pytest.raises(Exception): isothermal_gas(11.3, 0.00185, P1=1E6, P2=9E5, L=1000.) with pytest.raises(Exception): isothermal_gas(rho=11.3, fd=0.00185, P1=1E6, P2=1E5, L=1000., D=0.5) with pytest.raises(Exception): isothermal_gas(rho=11.3, fd=0.00185, P2=1E6, P1=9E5, L=1000., D=0.5) # Newton can't converge, need a bounded solver P1 = isothermal_gas(rho=11.3, fd=0.00185, m=390., P2=9E5, L=1000., D=0.5) assert_close(P1, 2298973.786533209) # Case where the desired flow is greater than the choked flow's rate with pytest.raises(Exception): isothermal_gas(rho=11.3, fd=0.00185, m=400, P2=9E5, L=1000., D=0.5) # test the case where the ideal gas assumption is baked in: rho = 10.75342009105268 # Chemical('nitrogen', P=(1E6+9E5)/2).rho m1 = isothermal_gas(rho=rho, fd=0.00185, P1=1E6, P2=9E5, L=1000., D=0.5) assert_close(m1, 141.92260633059334) # They are fairly similar fd = 0.00185 P1 = 1E6 P2 = 9E5 L = 1000 D = 0.5 T = 298.15 # from scipy.constants import R # from thermo import property_molar_to_mass, Chemical, pi, log R = 296.8029514446658 # property_molar_to_mass(R, Chemical('nitrogen').MW) m2 = (pi**2/16*D**4/(R*T*(fd*L/D + 2*log(P1/P2)))*(P1**2-P2**2))**0.5 assert_close(m2, 145.48786057477403) def test_P_isothermal_critical_flow(): P2_max = P_isothermal_critical_flow(P=1E6, fd=0.00185, L=1000., D=0.5) assert_close(P2_max, 389699.7317645518)fluids-1.0.22/tests/test_fittings.py0000644000175000017500000007435014302004506017015 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division import os import fluids.fittings from fluids.fittings import * from math import pi, log10, log, isnan, isinf try: from random import uniform except: pass from fluids.numerics import secant from fluids.constants import * from fluids.core import Engauge_2d_parser, Reynolds from fluids.friction import ft_Crane #from fluids.optional.pychebfun import * from fluids.numerics import assert_close, assert_close1d, assert_close2d import pytest def log_uniform(low, high): return 10**uniform(log10(low), log10(high)) def test_fittings(): K = entrance_beveled_orifice(Di=0.1, do=.07, l=0.003, angle=45.0) assert_close(K, 1.2987552913818574) ### Exits assert_close(exit_normal(), 1.0) K_helix = helix(Di=0.01, rs=0.1, pitch=.03, N=10, fd=.0185) assert_close(K_helix, 14.525134924495514) K_spiral = spiral(Di=0.01, rmax=.1, rmin=.02, pitch=.01, fd=0.0185) assert_close(K_spiral, 7.950918552775473) ### Contractions K_beveled = contraction_beveled(Di1=0.5, Di2=0.1, l=.7*.1, angle=120.0) assert_close(K_beveled, 0.40946469413070485) ### Expansions (diffusers) K = diffuser_curved(Di1=.25**0.5, Di2=1., l=2.) assert_close(K, 0.2299781250000002) K = diffuser_pipe_reducer(Di1=.5, Di2=.75, l=1.5, fd1=0.07) assert_close(K, 0.06873244301714816) K = diffuser_pipe_reducer(Di1=.5, Di2=.75, l=1.5, fd1=0.07, fd2=.08) assert_close(K, 0.06952256647393829) # Misc K1 = Darby3K(NPS=2., Re=10000., name='Valve, Angle valve, 45°, full line size, β = 1') K2 = Darby3K(NPS=12., Re=10000., name='Valve, Angle valve, 45°, full line size, β = 1') K3 = Darby3K(NPS=12., Re=10000., K1=950., Ki=0.25, Kd=4.) Ks = [1.1572523963562353, 0.819510280626355, 0.819510280626355] assert_close1d([K1, K2, K3], Ks) with pytest.raises(Exception): Darby3K(NPS=12., Re=10000) with pytest.raises(Exception): Darby3K(NPS=12., Re=10000, name='fail') tot = sum([Darby3K(NPS=2., Re=1000, name=i) for i in Darby.keys()]) assert_close(tot, 67.96442287975898) K1 = Hooper2K(Di=2., Re=10000., name='Valve, Globe, Standard') K2 = Hooper2K(Di=2., Re=10000., K1=900., Kinfty=4.) assert_close1d([K1, K2], [6.15, 6.09]) tot = sum([Hooper2K(Di=2., Re=10000., name=i) for i in Hooper.keys()]) assert_close(tot, 46.18) with pytest.raises(Exception): Hooper2K(Di=2, Re=10000) with pytest.raises(Exception): Hooper2K(Di=2., Re=10000, name='fail') K2 = change_K_basis(K1=32.68875692997804, D1=.01, D2=.02) assert_close(K2, 523.0201108796487) ### Entrances def test_entrance_distance_45_Miller(): from fluids.fittings import entrance_distance_45_Miller K = entrance_distance_45_Miller(Di=0.1, Di0=0.14) assert_close(K, 0.24407641818143339) def test_entrance_distance(): K1 = entrance_distance(0.1, t=0.0005) assert_close(K1, 1.0154100000000004) assert_close(entrance_distance(Di=0.1, t=0.05), 0.57) K = entrance_distance(Di=0.1, t=0.0005, method='Miller') assert_close(K, 1.0280427936730414) K = entrance_distance(Di=0.1, t=0.0005, method='Idelchik') assert_close(K, 0.9249999999999999) K = entrance_distance(Di=0.1, t=0.0005, l=.02, method='Idelchik') assert_close(K, 0.8475000000000001) K = entrance_distance(Di=0.1, t=0.0005, method='Harris') assert_close(K, 0.8705806231290558, 3e-3) K = entrance_distance(Di=0.1, method='Crane') assert_close(K, 0.78) with pytest.raises(Exception): entrance_distance(Di=0.1, t=0.01, method='BADMETHOD') def test_entrance_rounded(): K = entrance_rounded(Di=0.1, rc=0.0235) assert_close(K, 0.09839534618360923) assert_close(entrance_rounded(Di=0.1, rc=0.2), 0.03) K = entrance_rounded(Di=0.1, rc=0.0235, method='Miller') assert_close(K, 0.057734448458542094) K = entrance_rounded(Di=0.1, rc=0.0235, method='Swamee') assert_close(K, 0.06818838227156554) K = entrance_rounded(Di=0.1, rc=0.01, method='Crane') assert_close(K, .09) K = entrance_rounded(Di=0.1, rc=0.01, method='Harris') assert_close(K, 0.04864878230217168) # Limiting condition K = entrance_rounded(Di=0.1, rc=0.0235, method='Harris') assert_close(K, 0.0) K = entrance_rounded(Di=0.1, rc=0.01, method='Idelchik') assert_close(K, 0.11328005177738182) # Limiting condition K = entrance_rounded(Di=0.1, rc=0.0235, method='Idelchik') assert_close(K, 0.03) with pytest.raises(Exception): entrance_rounded(Di=0.1, rc=0.01, method='BADMETHOD') def test_entrance_beveled(): K = entrance_beveled(Di=0.1, l=0.003, angle=45.0) assert_close(K, 0.45086864221916984) K = entrance_beveled(Di=0.1, l=0.003, angle=45.0, method='Idelchik') assert_close(K, 0.3995000000000001) def test_entrance_sharp(): assert_close(entrance_sharp(), 0.57) with pytest.raises(Exception): entrance_sharp(method='BADMETHOD') for method in ['Swamee', 'Blevins', 'Idelchik', 'Crane']: assert_close(0.5, entrance_sharp(method=method)) entrance_sharp(method='Miller') # Don't bother checking a value for the Miller method def test_entrance_angled(): K_30_Idelchik = 0.9798076211353316 assert_close(entrance_angled(30.0), K_30_Idelchik) assert_close(entrance_angled(30.0, method='Idelchik'), K_30_Idelchik) with pytest.raises(Exception): entrance_angled(30, method='BADMETHOD') ### Bends def test_bend_rounded_Crane(): K = bend_rounded_Crane(Di=.4020, rc=.4*5, angle=30.0) assert_close(K, 0.09321910015613409) K_max = bend_rounded_Crane(Di=.400, rc=.4*25, angle=30) K_limit = bend_rounded_Crane(Di=.400, rc=.4*20, angle=30.0) assert_close(K_max, K_limit) # Test default assert_close(bend_rounded_Crane(Di=.4020, rc=.4020*5, angle=30, bend_diameters=5.0), bend_rounded_Crane(Di=.4020, rc=.4020*5, angle=30.0)) with pytest.raises(Exception): bend_rounded_Crane(Di=.4020, rc=.4*5, bend_diameters=8, angle=30) def test_bend_rounded_Miller(): # Miller examples - 9.12 D = .6 Re = Reynolds(V=4, D=D, nu=1.14E-6) kwargs = dict(Di=D, bend_diameters=2, angle=90, Re=Re, roughness=.02E-3) K = bend_rounded_Miller(L_unimpeded=30*D, **kwargs) assert_close(K, 0.1513266131915296, rtol=1e-4)# 0.150 in Miller- 1% difference due to fd K = bend_rounded_Miller(L_unimpeded=0*D, **kwargs) assert_close(K, 0.1414607344374372, rtol=1e-4) # 0.135 in Miller - Difference mainly from Co interpolation method, OK with that K = bend_rounded_Miller(L_unimpeded=2*D, **kwargs) assert_close(K, 0.09343184457353562, rtol=1e-4) # 0.093 in miller def test_bend_rounded(): ### Bends K_5_rc = [bend_rounded(Di=4.020, rc=4.0*5, angle=i, fd=0.0163) for i in [15.0, 30.0, 45, 60, 75, 90]] K_5_rc_values = [0.07038212630028828, 0.10680196344492195, 0.13858204974134541, 0.16977191374717754, 0.20114941557508642, 0.23248382866658507] assert_close1d(K_5_rc, K_5_rc_values) K_10_rc = [bend_rounded(Di=34.500, rc=36*10, angle=i, fd=0.0106) for i in [15, 30, 45, 60, 75, 90]] K_10_rc_values = [0.061075866683922314, 0.10162621862720357, 0.14158887563243763, 0.18225270014527103, 0.22309967045081655, 0.26343782210280947] assert_close1d(K_10_rc, K_10_rc_values) K = bend_rounded(Di=4.020, bend_diameters=5.0, angle=30.0, fd=0.0163) assert_close(K, 0.106920213333191) K = bend_rounded(Di=4.020, bend_diameters=5.0, angle=30, Re=1E5) assert_close(K, 0.11532121658742862) K = bend_rounded(Di=4.020, bend_diameters=5.0, angle=30, Re=1E5, method='Miller') assert_close(K, 0.10276501180879682) K = bend_rounded(Di=.5, bend_diameters=5.0, angle=30, Re=1E5, method='Crane') assert_close(K, 0.08959057097762159) K = bend_rounded(Di=.5, bend_diameters=5.0, angle=30, Re=1E5, method='Ito') assert_close(K, 0.10457946464978755) K = bend_rounded(Di=.5, bend_diameters=5.0, angle=30, Re=1E5, method='Swamee') assert_close(K, 0.055429466248839564) assert type(bend_rounded(Di=4.020, rc=4.0*5, angle=30, Re=1E5, method='Miller')) == float # Crane standard fittings Di = 4 v0 = bend_rounded(Di=4, angle=45, method='Crane standard')/ft_Crane(Di) assert_close(v0, 16.0) v0 = bend_rounded(Di=4, angle=90, method='Crane standard')/ft_Crane(Di) assert_close(v0, 30.0) v0 = bend_rounded(Di=4, angle=180, method='Crane standard')/ft_Crane(Di) assert_close(v0, 50.0) # extrapolation - check behavior is sane v0 = bend_rounded(Di=4, angle=360, method='Crane standard')/ft_Crane(Di) assert_close(v0, 90.0) v0 = bend_rounded(Di=4, angle=0, method='Crane standard')/ft_Crane(Di) assert_close(v0, 2.0) def test_bend_miter(): K_miters = [bend_miter(i) for i in [150.0, 120, 90, 75, 60, 45, 30, 15]] K_miter_values = [2.7128147734758103, 2.0264994448555864, 1.2020815280171306, 0.8332188430731828, 0.5299999999999998, 0.30419633092708653, 0.15308822558050816, 0.06051389308126326] assert_close1d(K_miters, K_miter_values) K = bend_miter(Di=.6, angle=45.0, Re=1e6, roughness=1e-5, L_unimpeded=20.0, method='Miller') assert_close(K, 0.2944060416245167) K = bend_miter(Di=.05, angle=45, Re=1e6, roughness=1e-5, method='Crane') assert_close(K, 0.28597953150073047) K = bend_miter(angle=45, Re=1e6, method='Rennels') assert_close(K, 0.30419633092708653) with pytest.raises(Exception): bend_miter(angle=45, Re=1e6, method='BADMETHOD') def test_bend_miter_Miller(): K = bend_miter_Miller(Di=.6, angle=45, Re=1e6, roughness=1e-5, L_unimpeded=20.0) assert_close(K, 0.2944060416245167) K_default_L_unimpeded = bend_miter_Miller(Di=.6, angle=45, Re=1e6, roughness=1e-5) assert_close(K, K_default_L_unimpeded) K_high_angle = bend_miter_Miller(Di=.6, angle=120.0, Re=1e6, roughness=1e-5, L_unimpeded=20.0) K_higher_angle = bend_miter_Miller(Di=.6, angle=150.0, Re=1e6, roughness=1e-5, L_unimpeded=20.0) assert_close(K_high_angle, K_higher_angle) assert type(bend_rounded_Miller(Di=.6, bend_diameters=2, angle=90, Re=2e6, roughness=2E-5, L_unimpeded=30*.6)) is float @pytest.mark.slow @pytest.mark.fuzz def test_bend_rounded_Miller_fuzz(): # Tested for quite a while without problems answers = [] for i in range(500): Di = log_uniform(1e-5, 100) rc = uniform(0, 100) angle = uniform(0, 180) Re = log_uniform(1e-5, 1E15) roughness = uniform(1e-10, Di*.95) L_unimpeded = log_uniform(1e-10, Di*1000) ans = bend_rounded_Miller(Di=Di, rc=rc, angle=angle, Re=Re, roughness=roughness, L_unimpeded=L_unimpeded) if isnan(ans) or isinf(ans): raise Exception answers.append(ans) assert min(answers) >= 0 assert max(answers) < 1E10 @pytest.mark.slow @pytest.mark.fuzz def test_bend_miter_Miller_fuzz(): # Tested for quite a while without problems answers = [] for i in range(10**3): Di = log_uniform(1e-5, 100) angle = uniform(0, 120) Re = log_uniform(1e-5, 1E15) roughness = uniform(1e-10, Di*.95) L_unimpeded = log_uniform(1e-10, Di*1000) ans = bend_miter_Miller(Di=Di, angle=angle, Re=Re, roughness=roughness, L_unimpeded=L_unimpeded) if isnan(ans) or isinf(ans): raise Exception answers.append(ans) assert min(answers) >= 0 assert max(answers) < 1E10 ### Diffusers def test_diffuser_sharp(): K_sharp = diffuser_sharp(Di1=.5, Di2=1.0) assert_close(K_sharp, 0.5625, rtol=1e-12) K = diffuser_sharp(Di1=.5, Di2=1.0, Re=1e5, method='Hooper') assert_close(K, 0.5705953978879232, rtol=1e-12) K = diffuser_sharp(Di1=.5, Di2=1.0, Re=1e3, method='Hooper') assert_close(K, 1.875, rtol=1e-12) K = diffuser_sharp(Di1=.5, Di2=1.0, Re=1e5, fd=1e-7, method='Hooper') assert_close(K, 0.562500045) with pytest.raises(Exception): diffuser_sharp(Di1=.5, Di2=1.0, method='Hooper') with pytest.raises(Exception): diffuser_sharp(Di1=.5, Di2=1.0, method='BADMETHOD') def test_diffuser_conical(): assert_close(diffuser_conical(Di1=1/3., Di2=1.0, angle=50.0, Re=1e7), 0.8017372988217512) K1 = diffuser_conical(Di1=.1**0.5, Di2=1, angle=10., fd=0.020) K2 = diffuser_conical(Di1=1/3., Di2=1, angle=50.0, fd=0.03) # 2 K3 = diffuser_conical(Di1=2/3., Di2=1, angle=40, fd=0.03) # 3 K4 = diffuser_conical(Di1=1/3., Di2=1, angle=120, fd=0.0185) # #4 K5 = diffuser_conical(Di1=2/3., Di2=1, angle=120, fd=0.0185) # Last K6 = diffuser_conical(Di1=.1**0.5, Di2=1, l=3.908, fd=0.020) Ks = [0.12301652230915454, 0.8081340270019336, 0.32533470783539786, 0.812308728765127, 0.3282650135070033, 0.12300865396254032] assert_close1d([K1, K2, K3, K4, K5, K6], Ks) with pytest.raises(Exception): diffuser_conical(Di1=.1, Di2=0.1, angle=1800., fd=0.020) with pytest.raises(Exception): diffuser_conical(Di1=.1, Di2=0.1, fd=0.020) K1 = diffuser_conical_staged(Di1=1., Di2=10., DEs=[2.0,3,4,5,6,7,8,9], ls=[1.0,1.0,1,1,1,1,1,1,1], fd=0.01) K2 = diffuser_conical(Di1=1., Di2=10.,l=9, fd=0.01) Ks = [1.7681854713484308, 0.973137914861591] assert_close1d([K1, K2], Ks) # Idelchilk Ks_Idelchik = [diffuser_conical(Di1=.1**0.5, Di2=1, l=l, method='Idelchik') for l in [.1, .5, 1, 2, 3, 4, 5, 20]] Ks_Idelchik_expect = [0.8617385829640242, 0.9283647028367953, 0.7082429168951839, 0.291016580744589, 0.18504484868875992, 0.147705693811332, 0.12911637682462676, 0.17] assert_close1d(Ks_Idelchik, Ks_Idelchik_expect, rtol=1e-2) K = diffuser_conical(Di1=1/3., Di2=1.0, angle=50.0, Re=1E6, method='Hooper') assert_close(K, 0.79748427282836) K = diffuser_conical(Di1=1/3., Di2=1.0, angle=15.0, Re=1E6, method='Hooper') assert_close(K, 0.2706407222679227) K = diffuser_conical(Di1=1/3., Di2=1.0, angle=15.0, Re=1E6, method='Hooper', fd=0.0) assert_close(K, 0.26814269611625413) K = diffuser_conical(Di1=1/3., Di2=1.0, angle=15.0, Re=100, method='Hooper') assert_close(K, 1.9753086419753085) with pytest.raises(Exception): diffuser_conical(Di1=1/3., Di2=1.0, angle=15.0, method='Hooper') with pytest.raises(Exception): diffuser_conical(Di1=1/3., Di2=1.0, angle=15.0, method='BADMETHOD') ### Contractions def test_contraction_sharp(): K_sharp = contraction_sharp(Di1=1.0, Di2=0.4) assert_close(K_sharp, 0.5301269161591805) K = contraction_sharp(Di1=1.0, Di2=0.4, Re=1e5, method='Hooper') assert_close(K, 0.5112534765075794) K = contraction_sharp(Di1=1, Di2=0.4, Re=1e3, method='Hooper') assert_close(K, 1.3251840000000001) K = contraction_sharp(Di1=1, Di2=0.4, Re=1e7, fd=1e-5, method='Hooper') assert_close(K, 0.5040040320000001) with pytest.raises(Exception): contraction_sharp(Di1=1, Di2=0.4, method='Hooper') with pytest.raises(Exception): K = contraction_sharp(Di1=1, Di2=0.4, Re=1e5, method='BADMETHOD') K = contraction_sharp(3.0, 2.0, method='Crane') assert_close(K, 0.2777777777777778) # From Crane 7-19 Water sample problem # Convert back to the larger 3 inch diameter K = change_K_basis(contraction_conical_Crane(3*inch, 2*inch, l=1e-10), 2.*inch, 3.*inch,) assert_close(K, 1.4062499999999991) K = change_K_basis(contraction_sharp(3*inch, 2*inch, method='Crane'), 2.*inch, 3.*inch,) assert_close(K, 1.4062499999999991) def test_contraction_conical_Crane(): K2 = contraction_conical_Crane(Di1=0.0779, Di2=0.0525, l=0) assert_close(K2, 0.2729017979998056) def test_contraction_round(): K_round = contraction_round(Di1=1.0, Di2=0.4, rc=0.04) assert_close(K_round, 0.1783332490866574) K = contraction_round(Di1=1.0, Di2=0.4, rc=0.04, method='Miller') assert_close(K, 0.085659530512986387) K = contraction_round(Di1=1.0, Di2=0.4, rc=0.04, method='Idelchik') assert_close(K, 0.1008) with pytest.raises(Exception): contraction_round(Di1=1.0, Di2=0.4, rc=0.04, method='BADMETHOD') def test_contraction_round_Miller(): K = contraction_round_Miller(Di1=1, Di2=0.4, rc=0.04) assert_close(K, 0.085659530512986387) def test_contraction_conical(): K_conical1 = contraction_conical(Di1=0.1, Di2=0.04, l=0.04, fd=0.0185) K_conical2 = contraction_conical(Di1=0.1, Di2=0.04, angle=73.74, fd=0.0185) assert_close1d([K_conical1, K_conical2], [0.15779041548350314, 0.15779101784158286]) with pytest.raises(Exception): contraction_conical(Di1=0.1, Di2=0.04, fd=0.0185) K = contraction_conical(Di1=0.1, Di2=.04, l=.004, Re=1E6, method='Rennels') assert_close(K, 0.47462419839494946) K = contraction_conical(Di1=0.1, Di2=.04, l=.004, Re=1E6, method='Idelchik') assert_close(K, 0.391723) K = contraction_conical(Di1=0.1, Di2=.04, l=.004, Re=1E6, method='Crane') assert_close(K, 0.41815380146594) K = contraction_conical(Di1=0.1, Di2=.04, l=.004, Re=1E6, method='Swamee') assert_close(K, 0.4479863925376303) K = contraction_conical(Di1=0.1, Di2=.04, l=.004, Re=1E6, method='Blevins') assert_close(K, 0.365) K = contraction_conical(Di1=0.1, Di2=0.04, l=0.04, Re=1E6, method='Miller') assert_close(K, 0.0918289683812792) # high l ratio rounding K = contraction_conical(Di1=0.1, Di2=0.06, l=0.04, Re=1E6, method='Miller') assert_close(K, 0.08651515699621345) # low a ratio rounding K = contraction_conical(Di1=0.1, Di2=0.099, l=0.04, Re=1E6, method='Miller') assert_close(K, 0.03065262382984957) # low l ratio K = contraction_conical(Di1=0.1, Di2=0.04, l=0.001, Re=1E6, method='Miller') assert_close(K, 0.5) # high l ratio rounding K = contraction_conical(Di1=0.1, Di2=0.05, l=1, Re=1E6, method='Miller') assert_close(K, 0.04497085709551787) with pytest.raises(Exception): contraction_conical(Di1=0.1, Di2=.04, l=.004, Re=1E6, method='BADMETHOD') K = contraction_conical(Di1=0.1, Di2=0.04, l=0.04, Re=1E6, method='Hooper') # Turb, high angle assert_close(K, 0.39403366995770217, rtol=1e-12) K = contraction_conical(Di1=0.1, Di2=0.04, l=.5, Re=1E6, method='Hooper') # low angle assert_close(K, 0.04874708101353686, rtol=1e-12) K = contraction_conical(Di1=0.1, Di2=0.04, l=.5, Re=10, method='Hooper') # laminar assert_close(K, 1.606041003307766) K = contraction_conical(Di1=0.1, Di2=0.04, l=.5, Re=1E6, fd=1e-6, method='Hooper') assert_close(K, 0.04829718188073081) with pytest.raises(Exception): # Need re to determine regime contraction_conical(Di1=0.1, Di2=0.04, l=.5, fd=1e-6, method='Hooper') with pytest.raises(Exception): contraction_conical(Di1=0.1, Di2=0.04, l=.5, method='Rennels') # l_ratio > 0.6 case K = contraction_conical(Di1=0.1, Di2=0.04, l=10, fd=1e-6, method='Blevins') assert_close(K, 0.2025) # Case A_ratio > 10 K = contraction_conical(Di1=0.1, Di2=0.01, l=10, fd=1e-6, method='Blevins') assert_close(K, 0.27) # Case with A_ratio < 1.2 K = contraction_conical(Di1=0.1, Di2=0.099999, l=100, fd=1e-6, method='Blevins') assert_close(K, 0.03) # case angle_rad > 20.0*deg2rad K = contraction_conical(Di1=1, Di2=0.01, l=.5, fd=1e-6, method='Idelchik') assert_close(K, 0.21089636998777261) # case angle_rad < 2.0*deg2rad K = contraction_conical(Di1=1, Di2=0.99, l=.5, fd=1e-6, method='Idelchik') assert_close(K, 0.09947364590616913) # case angle_fric = angle_rad*rad2deg K = contraction_conical(Di1=1, Di2=0.5, l=10, fd=1e-6, method='Idelchik') assert_close(K, 0.431024986913148) # Default method assert_close(contraction_conical(Di1=0.1, Di2=0.04, l=0.04, Re=1e6), contraction_conical(Di1=0.1, Di2=0.04, l=0.04, Re=1e6, method='Rennels')) ### Valves def test_valve_coefficients(): Cv = Kv_to_Cv(2) assert_close(Cv, 2.3121984567073133) Kv = Cv_to_Kv(2.312) assert_close(Kv, 1.9998283393826013) K = Kv_to_K(2.312, .015) assert_close(K, 15.15337460039990) Kv = K_to_Kv(15.15337460039990, .015) assert_close(Kv, 2.312) # Two way conversions K = Cv_to_K(2.712, .015) assert_close(K, 14.719595348352552) assert_close(K, Kv_to_K(Cv_to_Kv(2.712), 0.015)) Cv = K_to_Cv(14.719595348352552, .015) assert_close(Cv, 2.712) assert_close(Cv, Kv_to_Cv(K_to_Kv(14.719595348352552, 0.015))) # Code to generate the Kv Cv conversion factor # Round 1 trip; randomly assume Kv = 12, rho = 900; they can be anything # an tit still works dP = 1E5 rho = 900. Kv = 12. Q = Kv/3600. D = .01 V = Q/(pi/4*D**2) K = dP/(.5*rho*V*V) good_K = K def to_solve(x): from fluids.constants import gallon, minute, hour, psi conversion = gallon/minute*hour # from gpm to m^3/hr dP = 1*psi Cv = Kv*x*conversion Q = Cv/3600 D = .01 V = Q/(pi/4*D**2) K = dP/(.5*rho*V*V) return K - good_K ans = secant(to_solve, 1.2) assert_close(ans, 1.1560992283536566) def test_K_gate_valve_Crane(): K = K_gate_valve_Crane(D1=.01, D2=.02, angle=45, fd=.015) assert_close(K, 14.548553268047963) K = K_gate_valve_Crane(D1=.1, D2=.1, angle=0, fd=.015) assert_close(K, 0.12) # non-smooth transition test K = K_gate_valve_Crane(D1=.1, D2=.146, angle=45, fd=.015) assert_close(K, 2.5577948931946746) K = K_gate_valve_Crane(D1=.1, D2=.146, angle=45.01, fd=.015) assert_close(K, 2.5719286772143595) K = K_gate_valve_Crane(D1=.1, D2=.146, angle=13.115) assert_close(K, 1.1466029421844073, rtol=1e-4) def test_K_globe_valve_Crane(): K = K_globe_valve_Crane(.01, .02, fd=.015) assert_close(K, 87.1) assert_close(K_globe_valve_Crane(.01, .01, fd=.015), .015*340) K = K_globe_valve_Crane(.01, .02) assert_close(K, 135.9200548324305) def test_K_angle_valve_Crane(): K = K_angle_valve_Crane(.01, .02, fd=.016) assert_close(K, 19.58) K = K_angle_valve_Crane(.01, .02, fd=.016, style=1) assert_close(K, 43.9) K = K_angle_valve_Crane(.01, .01, fd=.016, style=1) assert_close(K, 2.4) with pytest.raises(Exception): K_angle_valve_Crane(.01, .02, fd=.016, style=-1) K = K_angle_valve_Crane(.01, .02) assert_close(K, 26.597361811128465) def test_K_swing_check_valve_Crane(): K = K_swing_check_valve_Crane(D=.1, fd=.016) assert_close(K, 1.6) K = K_swing_check_valve_Crane(D=.1, fd=.016, angled=False) assert_close(K, 0.8) K = K_swing_check_valve_Crane(D=.02) assert_close(K, 2.3974274785373257) def test_K_lift_check_valve_Crane(): K = K_lift_check_valve_Crane(.01, .02, fd=.016) assert_close(K, 21.58) K = K_lift_check_valve_Crane(.01, .01, fd=.016) assert_close(K, 0.88) K = K_lift_check_valve_Crane(.01, .01, fd=.016, angled=False) assert_close(K, 9.6) K = K_lift_check_valve_Crane(.01, .02, fd=.016, angled=False) assert_close(K, 161.1) K = K_lift_check_valve_Crane(.01, .02) assert_close(K, 28.597361811128465) def test_K_tilting_disk_check_valve_Crane(): K = K_tilting_disk_check_valve_Crane(.01, 5.0, fd=.016) assert_close(K, 0.64) K = K_tilting_disk_check_valve_Crane(.25, 5, fd=.016) assert_close(K, .48) K = K_tilting_disk_check_valve_Crane(.9, 5, fd=.016) assert_close(K, 0.32) K = K_tilting_disk_check_valve_Crane(.01, 15, fd=.016) assert_close(K, 1.92) K = K_tilting_disk_check_valve_Crane(.25, 15, fd=.016) assert_close(K, 1.44) K = K_tilting_disk_check_valve_Crane(.9, 15, fd=.016) assert_close(K, 0.96) K = K_tilting_disk_check_valve_Crane(.01, 5) assert_close(K, 1.1626516551826345) def test_K_globe_stop_check_valve_Crane(): K = K_globe_stop_check_valve_Crane(.1, .02, .0165) assert_close(K, 4.5225599999999995) K = K_globe_stop_check_valve_Crane(.1, .02, .0165, style=1) assert_close(K, 4.51992) K = K_globe_stop_check_valve_Crane(.1, .02, .0165, style=2) assert_close(K, 4.513452) with pytest.raises(Exception): K_globe_stop_check_valve_Crane(.1, .02, .0165, style=-1) K = K_globe_stop_check_valve_Crane(.1, .1, .0165) assert_close(K, 6.6) K = K_globe_stop_check_valve_Crane(.1, .02, style=1) assert_close(K, 4.5235076518969795) def test_K_angle_stop_check_valve_Crane(): K = K_angle_stop_check_valve_Crane(.1, .02, .0165) assert_close(K, 4.51728) K = K_angle_stop_check_valve_Crane(.1, .02, .0165, style=1) assert_close(K, 4.52124) K = K_angle_stop_check_valve_Crane(.1, .02, .0165, style=2) assert_close(K, 4.513452) with pytest.raises(Exception): K_angle_stop_check_valve_Crane(.1, .02, .0165, style=-1) K = K_angle_stop_check_valve_Crane(.1, .1, .0165) assert_close(K, 3.3) K = K_angle_stop_check_valve_Crane(.1, .02, style=1) assert_close(K, 4.525425593879809) def test_K_ball_valve_Crane(): K = K_ball_valve_Crane(.01, .02, 50., .025) assert_close(K, 14.100545785228675) K = K_ball_valve_Crane(.01, .02, 40, .025) assert_close(K, 12.48666472974707) K = K_ball_valve_Crane(.01, .01, 0, .025) assert_close(K, 0.07500000000000001) K = K_ball_valve_Crane(.01, .02, 50) assert_close(K, 14.051310974926592) def test_K_diaphragm_valve_Crane(): K = K_diaphragm_valve_Crane(fd=0.015, style=0) assert_close(2.235, K) K = K_diaphragm_valve_Crane(fd=0.015, style=1) assert_close(K, 0.585) with pytest.raises(Exception): K_diaphragm_valve_Crane(fd=0.015, style=-1) K = K_diaphragm_valve_Crane(D=.1, style=0) assert_close(K, 2.4269804835982565) def test_K_foot_valve_Crane(): K = K_foot_valve_Crane(fd=0.015, style=0) assert_close(K, 6.3) K = K_foot_valve_Crane(fd=0.015, style=1) assert_close(K, 1.125) with pytest.raises(Exception): K_foot_valve_Crane(fd=0.015, style=-1) K = K_foot_valve_Crane(D=0.2, style=0) assert_close(K, 5.912221498436275) def test_K_butterfly_valve_Crane(): K = K_butterfly_valve_Crane(.1, 0.0165) assert_close(K, 0.7425) K = K_butterfly_valve_Crane(.3, 0.0165, style=1) assert_close(K, 0.8580000000000001) K = K_butterfly_valve_Crane(.6, 0.0165, style=2) assert_close(K, 0.9075000000000001) with pytest.raises(Exception): K_butterfly_valve_Crane(.6, 0.0165, style=-1) K = K_butterfly_valve_Crane(D=.1, style=2) assert_close(K, 3.5508841974793284) def test_K_plug_valve_Crane(): K = K_plug_valve_Crane(.01, .02, 50.0, .025) assert_close(K, 20.100545785228675) K = K_plug_valve_Crane(.01, .02, 50, .025, style=1) assert_close(K, 24.900545785228676) K = K_plug_valve_Crane(.01, .02, 50, .025, style=2) assert_close(K, 48.90054578522867) K = K_plug_valve_Crane(.01, .01, 50, .025, style=2) assert_close(K, 2.25) with pytest.raises(Exception): K_plug_valve_Crane(.01, .01, 50, .025, style=-1) K = K_plug_valve_Crane(D1=.01, D2=.02, angle=50) assert_close(K, 19.80513692341617) def test_v_lift_valve_Crane(): v = v_lift_valve_Crane(rho=998.2, D1=0.0627, D2=0.0779, style='lift check straight') assert_close(v, 1.0252301935349286) v = v_lift_valve_Crane(rho=998.2, style='swing check angled') assert_close(v, 1.4243074011010037) ### Tees def test_K_branch_converging_Crane(): K = K_branch_converging_Crane(0.1023, 0.1023, 1135*liter/minute, 380*liter/minute, angle=90) assert_close(K, -0.04026, atol=.0001) K = K_branch_converging_Crane(0.1023, 0.05, 1135*liter/minute, 380*liter/minute, angle=90) assert_close(K, 0.9799379575823042) K = K_branch_converging_Crane(0.1023, 0.1023, 0.018917, 0.0133) assert_close(K, 0.2644824555594152) K = K_branch_converging_Crane(0.1023, 0.1023, 0.018917, 0.0133, angle=45) assert_close(K, 0.13231793346761025) def test_K_run_converging_Crane(): K = K_run_converging_Crane(0.1023, 0.1023, 0.018917, 0.00633) assert_close(K, 0.32575847854551254) K = K_run_converging_Crane(0.1023, 0.1023, 0.018917, 0.00633, angle=30.0) assert_close(K, 0.32920396892611553) K = K_run_converging_Crane(0.1023, 0.1023, 0.018917, 0.00633, angle=60) assert_close(K, 0.3757218131135227) def test_K_branch_diverging_Crane(): K = K_branch_diverging_Crane(0.146, 0.146, 1515*liter/minute, 950*liter/minute, angle=45.) assert_close(K, 0.4640, atol=0.0001) K = K_branch_diverging_Crane(0.146, 0.146, 0.02525, 0.01583, angle=90) assert_close(K, 1.0910792393446236) K = K_branch_diverging_Crane(0.146, 0.07, 0.02525, 0.01583, angle=45) assert_close(K, 1.1950718299625727) K = K_branch_diverging_Crane(0.146, 0.07, 0.01425, 0.02283, angle=45) assert_close(K, 3.7281052908078762) K = K_branch_diverging_Crane(0.146, 0.146, 0.02525, 0.01983, angle=90) assert_close(K, 1.1194688533508077) # New test cases post-errata K = K_branch_diverging_Crane(0.146, 0.146, 0.02525, 0.04183, angle=45) assert_close(K, 0.30418565498014477) K = K_branch_diverging_Crane(0.146, 0.116, 0.02525, 0.01983, angle=90) assert_close(K, 1.1456727552755597) def test_K_run_diverging_Crane(): K = K_run_diverging_Crane(0.146, 0.146, 1515*liter/minute, 950*liter/minute, angle=45.) assert_close(K, -0.06809, atol=.00001) K = K_run_diverging_Crane(0.146, 0.146, 0.01025, 0.01983, angle=45) assert_close(K, 0.041523953539921235) K = K_run_diverging_Crane(0.146, 0.08, 0.02525, 0.01583, angle=90) assert_close(K, 0.0593965132275684) fluids-1.0.22/tests/test_flow_meter.py0000644000175000017500000013644414302004506017334 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2018 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from fluids.flow_meter import flow_meter_discharge from fluids.flow_meter import * from fluids.constants import inch from math import log10, log, exp from fluids.numerics import secant, linspace, logspace, assert_close, isclose, assert_close1d, assert_close2d import pytest def test_flow_meter_discharge(): m = flow_meter_discharge(D=0.0739, Do=0.0222, P1=1E5, P2=9.9E4, rho=1.1646, C=0.5988, expansibility=0.9975) assert_close(m, 0.01120390943807026) def test_orifice_expansibility(): epsilon = orifice_expansibility(D=0.0739, Do=0.0222, P1=1E5, P2=9.9E4, k=1.4) assert_close(epsilon, 0.9974739057343425) # Tested against a value in the standard def test_orifice_expansibility_1989(): # No actual sample points epsilon = orifice_expansibility_1989(D=0.0739, Do=0.0222, P1=1E5, P2=9.9E4, k=1.4) assert_close(epsilon, 0.9970510687411718) def test_C_Reader_Harris_Gallagher(): C = C_Reader_Harris_Gallagher(D=0.07391, Do=0.0222, rho=1.1645909036, mu=0.0000185861753095, m=0.124431876, taps='corner' ) assert_close(C, 0.6000085121444034) C = C_Reader_Harris_Gallagher(D=0.07391, Do=0.0222, rho=1.1645909036, mu=0.0000185861753095, m=0.124431876, taps='D' ) assert_close(C, 0.5988219225153976) C = C_Reader_Harris_Gallagher(D=0.07391, Do=0.0222, rho=1.1645909036, mu=0.0000185861753095, m=0.124431876, taps='flange' ) assert_close(C, 0.5990042535666878) # #def test_Reader_Harris_Gallagher_discharge(): # m = Reader_Harris_Gallagher_discharge(D=0.07366, Do=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, taps='D') # assert_close(m, 7.702338035732167) with pytest.raises(Exception): C_Reader_Harris_Gallagher(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, taps='NOTALOCATION') # Test continuity at the low-diameter function kwargs = dict(Do=0.0222, rho=1.1645909036, mu=0.0000185861753095, m=0.124431876, taps='corner') C1 = C_Reader_Harris_Gallagher(D=0.07112, **kwargs) C2 = C_Reader_Harris_Gallagher(D=0.07112-1e-13, **kwargs) assert_close(C1, C2) def test_C_Miller_1996(): C_flange_ISO = C_Reader_Harris_Gallagher(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, taps='flange') C_corner_ISO = C_Reader_Harris_Gallagher(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, taps='corner') C_D_D2_ISO = C_Reader_Harris_Gallagher(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, taps=ORIFICE_D_AND_D_2_TAPS) C_flange = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_ORIFICE, taps=ORIFICE_FLANGE_TAPS) C_flange_2 = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype='orifice', taps=ORIFICE_FLANGE_TAPS) assert C_flange == C_flange_2 assert_close(C_flange, 0.599065557156788, rtol=1e-12) assert_close(C_flange, C_flange_ISO, rtol=2e-4) C_flange_small_ISO = C_Reader_Harris_Gallagher(D=0.04, Do=0.02, rho=1.165, mu=1.85E-5, m=0.2, taps='flange') C_flange_small = C_Miller_1996(D=0.04, Do=0.02, rho=1.165, mu=1.85E-5, m=0.2, subtype=MILLER_ORIFICE, taps=ORIFICE_FLANGE_TAPS) assert_close(C_flange_small, 0.6035249226284967, rtol=1e-12) assert_close(C_flange_small_ISO, C_flange_small, rtol=1e-2) C_corner = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_ORIFICE, taps=ORIFICE_CORNER_TAPS) assert_close(C_corner, 0.5991255880475622, rtol=1e-12) assert_close(C_corner, C_corner_ISO, rtol=2e-3) C_D_D2 = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_ORIFICE, taps=ORIFICE_D_AND_D_2_TAPS) assert_close(C_D_D2, 0.5836056345693277, rtol=1e-12) assert_close(C_D_D2, C_D_D2_ISO, rtol=3e-2) C_pipe = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_ORIFICE, taps=ORIFICE_PIPE_TAPS) assert_close(C_pipe, 0.6338716097225481, rtol=1e-12) C_flange_small = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_SEGMENTAL_ORIFICE, taps=ORIFICE_FLANGE_TAPS) C_flange_small2 = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype='segmental orifice', taps=ORIFICE_FLANGE_TAPS) assert C_flange_small == C_flange_small C_flange_large = C_Miller_1996(D=0.2, Do=0.08, rho=1.165, mu=1.85E-5, m=2, subtype=MILLER_SEGMENTAL_ORIFICE, taps=ORIFICE_FLANGE_TAPS) assert_close(C_flange_small, 0.6343546437000684, rtol=1e-12) assert_close(C_flange_large, 0.6301688962913937, rtol=1e-12) C_vc_small = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_SEGMENTAL_ORIFICE, taps=ORIFICE_VENA_CONTRACTA_TAPS) C_vc_large = C_Miller_1996(D=0.2, Do=0.08, rho=1.165, mu=1.85E-5, m=2, subtype=MILLER_SEGMENTAL_ORIFICE, taps=ORIFICE_VENA_CONTRACTA_TAPS) assert_close(C_vc_small, 0.6341386019820933, rtol=1e-12) assert_close(C_vc_large, 0.6301688962913937, rtol=1e-12) C_flange_opp_small = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_ECCENTRIC_ORIFICE, taps='flange', tap_position=TAPS_OPPOSITE) C_flange_opp_small2 = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype='eccentric orifice', taps='flange', tap_position=TAPS_OPPOSITE) assert_close(C_flange_opp_small, 0.6096299230744815, rtol=1e-12) C_flange_opp_large = C_Miller_1996(D=0.2, Do=0.08, rho=1.165, mu=1.85E-5, m=2, subtype=MILLER_ECCENTRIC_ORIFICE, taps='flange', tap_position=TAPS_OPPOSITE) assert_close(C_flange_opp_large, 0.6196903510975135, rtol=1e-12) C_flange_side_small = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_ECCENTRIC_ORIFICE, taps='flange', tap_position=TAPS_SIDE) C_flange_side_large = C_Miller_1996(D=0.2, Do=0.08, rho=1.165, mu=1.85E-5, m=2, subtype=MILLER_ECCENTRIC_ORIFICE, taps='flange', tap_position=TAPS_SIDE) assert_close(C_flange_side_small, 0.6086231594104639, rtol=1e-12) assert_close(C_flange_side_large, 0.6227796822413327, rtol=1e-12) C_vc_opp_small = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_ECCENTRIC_ORIFICE, taps=ORIFICE_VENA_CONTRACTA_TAPS, tap_position=TAPS_OPPOSITE) assert_close(C_vc_opp_small, 0.6108105171632562, rtol=1e-12) C_vc_opp_large = C_Miller_1996(D=0.2, Do=0.08, rho=1.165, mu=1.85E-5, m=2, subtype=MILLER_ECCENTRIC_ORIFICE, taps=ORIFICE_VENA_CONTRACTA_TAPS, tap_position=TAPS_OPPOSITE) assert_close(C_vc_opp_large, 0.6190713098741648, rtol=1e-12) C_vc_side_small = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_ECCENTRIC_ORIFICE, taps=ORIFICE_VENA_CONTRACTA_TAPS, tap_position=TAPS_SIDE) C_vc_side_large = C_Miller_1996(D=0.2, Do=0.08, rho=1.165, mu=1.85E-5, m=2, subtype=MILLER_ECCENTRIC_ORIFICE, taps=ORIFICE_VENA_CONTRACTA_TAPS, tap_position=TAPS_SIDE) assert_close(C_vc_side_small, 0.6089351556538237, rtol=1e-12) assert_close(C_vc_side_large, 0.6214809940486437, rtol=1e-12) # Error testing with pytest.raises(ValueError): C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_ORIFICE, taps='NOTATAP') with pytest.raises(ValueError): C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_ECCENTRIC_ORIFICE, taps='NOTATAP') with pytest.raises(ValueError): C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_ECCENTRIC_ORIFICE, taps=ORIFICE_FLANGE_TAPS, tap_position='NOTAPOSITION') with pytest.raises(ValueError): C_Miller_1996(D=0.2, Do=0.08, rho=1.165, mu=1.85E-5, m=2, subtype=MILLER_SEGMENTAL_ORIFICE, taps='BADTAP') with pytest.raises(ValueError): C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype='BADTYPE') # Conical C_high = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_CONICAL_ORIFICE) assert C_high == 0.73 C_low = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.0001, subtype=MILLER_CONICAL_ORIFICE) assert C_low == 0.734 C_low2 = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.0001, subtype='conical orifice') assert C_low2 == C_low # Quarter circle C_circ = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype=MILLER_QUARTER_CIRCLE_ORIFICE) assert_close(C_circ, 0.7750496225919683) C_circ2 = C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, subtype='quarter circle orifice') assert C_circ == C_circ2 def test_differential_pressure_meter_discharge(): # Orifice m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=ISO_5167_ORIFICE, taps='D') assert_close(m, 7.702338035732167) # Nozzle meters m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=LONG_RADIUS_NOZZLE) assert_close(m, 11.86828167015467) m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=ISA_1932_NOZZLE) assert_close(m, 11.370262314304702) m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=VENTURI_NOZZLE) assert_close(m, 11.471786198133566) # Venturi tubes m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=AS_CAST_VENTURI_TUBE) assert_close(m, 11.867774156238344) m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=MACHINED_CONVERGENT_VENTURI_TUBE) assert_close(m, 12.000442363269464) m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=ROUGH_WELDED_CONVERGENT_VENTURI_TUBE) assert_close(m, 11.879834902332082) # Cone meter m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=CONE_METER) assert_close(m, 9.997923896460703) # wedge meter m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=WEDGE_METER) assert_close(m, 8.941980099523539) with pytest.raises(ValueError): differential_pressure_meter_solver(D=.07366, m=7.702338, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D') def test_differential_pressure_meter_diameter(): # ISO 5167 orifice D2 = differential_pressure_meter_solver(D=0.07366, m=7.702338035732167, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=ISO_5167_ORIFICE, taps='D') assert_close(D2, 0.05) # Nozzle meters D2 = differential_pressure_meter_solver(D=0.07366, m= 11.86828167015467, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=LONG_RADIUS_NOZZLE) assert_close(D2, 0.05) D2 = differential_pressure_meter_solver(D=0.07366, m=11.370262314304702, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=ISA_1932_NOZZLE) assert_close(D2, 0.05) D2 = differential_pressure_meter_solver(D=0.07366, m=11.471786198133566, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=VENTURI_NOZZLE) assert_close(D2, 0.05) # Venturi tubes D2 = differential_pressure_meter_solver(D=0.07366, m=11.867774156238344, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=AS_CAST_VENTURI_TUBE) assert_close(D2, 0.05) D2 = differential_pressure_meter_solver(D=0.07366, m=12.000442363269464, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=MACHINED_CONVERGENT_VENTURI_TUBE) assert_close(D2, 0.05) D2 = differential_pressure_meter_solver(D=0.07366, m=11.879834902332082, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=ROUGH_WELDED_CONVERGENT_VENTURI_TUBE) assert_close(D2, 0.05) # Cone meter D2 = differential_pressure_meter_solver(D=0.07366, m=9.997923896460703, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=CONE_METER) assert_close(D2, 0.05) # wedge meter D2 = differential_pressure_meter_solver(D=0.07366, m=8.941980099523539, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=WEDGE_METER) assert_close(D2, 0.05) def test_differential_pressure_meter_P2(): P2 = differential_pressure_meter_solver(D=0.07366, m=7.702338035732167, P1=200000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=ISO_5167_ORIFICE, taps='D') assert_close(P2, 183000.0) # Nozzle meters P2 = differential_pressure_meter_solver(D=0.07366, m= 11.86828167015467, P1=200000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=LONG_RADIUS_NOZZLE) assert_close(P2, 183000.0) P2 = differential_pressure_meter_solver(D=0.07366, m=11.370262314304702, P1=200000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=ISA_1932_NOZZLE) assert_close(P2, 183000.0) P2 = differential_pressure_meter_solver(D=0.07366, m=11.471786198133566, P1=200000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=VENTURI_NOZZLE) assert_close(P2, 183000.0) # Venturi tubes P2 = differential_pressure_meter_solver(D=0.07366, m=11.867774156238344, P1=200000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=AS_CAST_VENTURI_TUBE) assert_close(P2, 183000.0) P2 = differential_pressure_meter_solver(D=0.07366, m=12.000442363269464, P1=200000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=MACHINED_CONVERGENT_VENTURI_TUBE) assert_close(P2, 183000.0) P2 = differential_pressure_meter_solver(D=0.07366, m=11.879834902332082, P1=200000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=ROUGH_WELDED_CONVERGENT_VENTURI_TUBE) assert_close(P2, 183000.0) # Cone meter P2 = differential_pressure_meter_solver(D=0.07366, m=9.997923896460703, P1=200000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=CONE_METER) assert_close(P2, 183000.0) # Wedge meter P2 = differential_pressure_meter_solver(D=0.07366, m=8.941980099523539, P1=200000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=WEDGE_METER) assert_close(P2, 183000.0) def test_differential_pressure_meter_P1(): P1 = differential_pressure_meter_solver(D=0.07366, m=7.702338035732167, P2=183000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=ISO_5167_ORIFICE, taps='D') assert_close(P1, 200000) # Nozzle meters P1 = differential_pressure_meter_solver(D=0.07366, m=11.86828167015467, P2=183000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=LONG_RADIUS_NOZZLE) assert_close(P1, 200000) P1 = differential_pressure_meter_solver(D=0.07366, m=11.370262314304702, P2=183000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=ISA_1932_NOZZLE) assert_close(P1, 200000) P1 = differential_pressure_meter_solver(D=0.07366, m=11.471786198133566, P2=183000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=VENTURI_NOZZLE) assert_close(P1, 200000) # Venturi tubes P1 = differential_pressure_meter_solver(D=0.07366, m=11.867774156238344, P2=183000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=AS_CAST_VENTURI_TUBE) assert_close(P1, 200000) P1 = differential_pressure_meter_solver(D=0.07366, m=12.000442363269464, P2=183000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=MACHINED_CONVERGENT_VENTURI_TUBE) assert_close(P1, 200000) P1 = differential_pressure_meter_solver(D=0.07366, m=11.879834902332082, P2=183000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=ROUGH_WELDED_CONVERGENT_VENTURI_TUBE) assert_close(P1, 200000) # Cone meter P1 = differential_pressure_meter_solver(D=0.07366, m=9.997923896460703, P2=183000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=CONE_METER) assert_close(P1, 200000) # Wedge meter P1 = differential_pressure_meter_solver(D=0.07366, m=8.941980099523539, P2=183000.0, D2=0.05, rho=999.1, mu=0.0011, k=1.33, meter_type=WEDGE_METER) assert_close(P1, 200000) def test_differential_pressure_meter_solver_limits(): # ISO 5167 orifice - How low can P out go? P_out = differential_pressure_meter_solver(D=0.07366, m=7.702338, P1=200000.0, D2=0.0345, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D') assert_close(P_out, 37914.15989971644) # same point D2_recalc = differential_pressure_meter_solver(D=0.07366, m=7.702338, P1=200000.0, P2=37914.15989971644, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D') assert_close(D2_recalc, 0.0345) P1_recalc = differential_pressure_meter_solver(D=0.07366, m=7.702338, P2=37914.15989971644, D2=0.0345, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D') assert_close(P1_recalc, 200000.0) m_recalc = differential_pressure_meter_solver(D=0.07366, P1=200000, P2=37914.15989971644, D2=0.0345, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D') assert_close(m_recalc, 7.702338) def test_differential_pressure_meter_solver_misc(): # Test for types m_expect = 7.918128618951788 m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=MILLER_ECCENTRIC_ORIFICE, taps=ORIFICE_FLANGE_TAPS, tap_position=TAPS_SIDE) assert_close(m, m_expect) P1 = differential_pressure_meter_solver(m=7.918128618951788, D=0.07366, D2=0.05, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=MILLER_ECCENTRIC_ORIFICE, taps=ORIFICE_FLANGE_TAPS, tap_position=TAPS_SIDE) assert_close(P1, 200000) P2 = differential_pressure_meter_solver(m=7.918128618951788, D=0.07366, D2=0.05, P1=200000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=MILLER_ECCENTRIC_ORIFICE, taps=ORIFICE_FLANGE_TAPS, tap_position=TAPS_SIDE) assert_close(P2, 183000) D2 = differential_pressure_meter_solver(m=7.918128618951788, D=0.07366, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=MILLER_ECCENTRIC_ORIFICE, taps=ORIFICE_FLANGE_TAPS, tap_position=TAPS_SIDE) assert_close(D2, 0.05) m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=1.2, mu=0.00011, k=1.33, meter_type='ISO 5167 orifice', taps='D') assert_close(m, 0.2695835697819371) m_expect = 7.9299168920313425 m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D', epsilon_specified=1) assert_close(m, m_expect) m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, meter_type='ISO 5167 orifice', taps='D', epsilon_specified=1) assert_close(m, m_expect) def test_unspecified_meter_C_specified(): for t in ('unspecified meter', 'ISO 5167 orifice'): m = differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=t, taps='D', C_specified=0.6) assert_close(m, 7.512945567976503) D2 = differential_pressure_meter_solver(D=0.07366, m=7.512945567976503, D2=None, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=t, taps='D', C_specified=0.6) assert_close(D2, 0.05) P1 = differential_pressure_meter_solver(D=0.07366, D2=0.05, m=7.512945567976503, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=t, taps='D', C_specified=0.6) assert_close(P1, 200000.0) P2 = differential_pressure_meter_solver(D=0.07366, D2=0.05, m=7.512945567976503, P1=200000.0, rho=999.1, mu=0.0011, k=1.33, meter_type=t, taps='D', C_specified=0.6) assert_close(P2, 183000.0) with pytest.raises(ValueError): differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type='unspecified meter', taps='D', C_specified=None) def test_C_eccentric_orifice_ISO_15377_1998(): C = C_eccentric_orifice_ISO_15377_1998(.2, .075) assert_close(C, 0.6351923828125) # Does not perfectly match - like error in ISO. D = 1.0 betas = [1e-2*i for i in range(46, 85, 1)] Cs_expect = [0.627, 0.627, 0.627, 0.627, 0.627, 0.627, 0.627, 0.627, 0.627, 0.628, 0.628, 0.628, 0.628, 0.629, 0.629, 0.629, 0.629, 0.629, 0.629, 0.629, 0.629, 0.629, 0.628, 0.628, 0.627, 0.626, 0.625, 0.624, 0.623, 0.621, 0.620, 0.618, 0.616, 0.613, 0.611, 0.608, 0.605, 0.601, 0.597] Cs_calc = [C_eccentric_orifice_ISO_15377_1998(D=D, Do=beta_i) for beta_i in betas] for Ci, Cj in zip(Cs_expect, Cs_calc): assert isclose(Ci, Cj, rel_tol=1.02e-3) def test_C_quarter_circle_orifice_ISO_15377_1998(): C = C_quarter_circle_orifice_ISO_15377_1998(.2, .075) assert_close(C, 0.7785148437500001, rtol=1e-12) betas = [0.245, 0.250, 0.260, 0.270, 0.280, 0.290, 0.300, 0.310, 0.320, 0.330, 0.340, 0.350, 0.360, 0.370, 0.380, 0.390, 0.400, 0.410, 0.420, 0.430, 0.440, 0.450, 0.460, 0.470, 0.480, 0.490, 0.500, 0.510, 0.520, 0.530, 0.540, 0.550, 0.560, 0.570, 0.580, 0.590, 0.600] Cs_expect = [0.772, 0.772, 0.772, 0.773, 0.773, 0.773, 0.774, 0.774, 0.775, 0.775, 0.776, 0.776, 0.777, 0.778, 0.779, 0.780, 0.781, 0.783, 0.784, 0.786, 0.787, 0.789, 0.791, 0.794, 0.796, 0.799, 0.802, 0.805, 0.808, 0.812, 0.816, 0.820, 0.824, 0.829, 0.834, 0.839, 0.844] for Do, C_expect in zip(betas, Cs_expect): C = C_quarter_circle_orifice_ISO_15377_1998(D=1, Do=Do) assert (round(C, 3) == C_expect) def test_K_to_discharge_coefficient(): C = K_to_discharge_coefficient(D=0.07366, Do=0.05, K=5.2314291729754) assert_close(C, 0.6151200000000001) def test_discharge_coefficient_to_K(): K = discharge_coefficient_to_K(D=0.07366, Do=0.05, C=0.61512) assert_close(K, 5.2314291729754) def test_dP_orifice(): dP = dP_orifice(D=0.07366, Do=0.05, P1=200000.0, P2=183000.0, C=0.61512) assert_close(dP, 9069.474705745388) def test_velocity_of_approach_factor(): factor = velocity_of_approach_factor(D=0.0739, Do=0.0222) assert_close(factor, 1.0040970074165514) def test_flow_coefficient(): factor = flow_coefficient(D=0.0739, Do=0.0222, C=0.6) assert_close(factor, 0.6024582044499308) def test_nozzle_expansibility(): epsilon = nozzle_expansibility(D=0.0739, Do=0.0222, P1=1E5, P2=9.9E4, k=1.4) assert_close(epsilon, 0.9945702344566746) assert_close(nozzle_expansibility(D=0.0739, Do=0.0222, P1=1E5, P2=1e5, k=1.4), 1, rtol=1e-14) assert_close(nozzle_expansibility(D=0.0739, Do=0.0222, P1=1E5, P2=9.9E4, k=1), 0.9924074233062772, rtol=1e-13) def test_C_long_radius_nozzle(): C = C_long_radius_nozzle(D=0.07391, Do=0.0422, rho=1.2, mu=1.8E-5, m=0.1) assert_close(C, 0.9805503704679863) def test_C_ISA_1932_nozzle(): C = C_ISA_1932_nozzle(D=0.07391, Do=0.0422, rho=1.2, mu=1.8E-5, m=0.1) assert_close(C, 0.9635849973250495) def test_C_venturi_nozzle(): C = C_venturi_nozzle(D=0.07391, Do=0.0422) assert_close(C, 0.9698996454169576) def test_diameter_ratio_cone_meter(): beta = diameter_ratio_cone_meter(D=0.2575, Dc=0.184) assert_close(beta, 0.6995709873957624) # Example in 1 matches exactly; beta = diameter_ratio_cone_meter(D=10.137*inch, Dc=7.244*inch) assert_close(beta, 0.6995232442563669) def test_diameter_ratio_wedge_meter(): beta = diameter_ratio_wedge_meter(D=6.065*inch, H=1.82*inch) assert_close(beta, 0.5024062047655528) beta = diameter_ratio_wedge_meter(D=7.981*inch, H=3.192*inch) assert_close(beta, 0.6111198863284705) beta = diameter_ratio_wedge_meter(D=7.981*inch, H=2.394*inch) assert_close(beta, 0.5022667856496335) def test_cone_meter_expansibility_Stewart(): eps = cone_meter_expansibility_Stewart(D=1, Dc=0.8930285549745876, P1=1E6, P2=1E6*.85, k=1.2) assert_close(eps, 0.91530745625) def test_wedge_meter_expansibility(): data = [[1.0000, 0.9871, 0.9741, 0.9610, 0.9478, 0.9345, 0.9007, 0.8662, 0.8308], [1.0000, 0.9863, 0.9726, 0.9588, 0.9449, 0.9310, 0.8957, 0.8599, 0.8234], [1.0000, 0.9848, 0.9696, 0.9544, 0.9393, 0.9241, 0.8860, 0.8479, 0.8094], [1.0000, 0.9820, 0.9643, 0.9467, 0.9292, 0.9119, 0.8692, 0.8272, 0.7857], [1.0000, 0.9771, 0.9547, 0.9329, 0.9117, 0.8909, 0.8408, 0.7930, 0.7472]] h_ds = [0.2, 0.3, 0.4, 0.5, 0.6] pressure_ratios = [1.0, 0.98, 0.96, 0.94, 0.92, 0.9, 0.85, 0.8, 0.75] calculated = [] for i, h_d in enumerate(h_ds): row = [] beta = diameter_ratio_wedge_meter(D=1, H=h_d) for j, p_ratio in enumerate(pressure_ratios): ans = nozzle_expansibility(D=1, Do=h_d, P1=1E5, P2=1E5*p_ratio, k=1.2, beta=beta) row.append(ans) calculated.append(row) assert_close2d(data, calculated, rtol=1e-4) def test_dP_wedge_meter(): dP = dP_wedge_meter(1, .7, 1E6, 9.5E5) assert_close(dP, 20344.849697483587) def test_dP_cone_meter(): dP = dP_cone_meter(1, .7, 1E6, 9.5E5) assert_close(dP, 25470.093437973323) def test_C_wedge_meter_Miller(): # Large bore D = 0.15239999999999998 C = C_wedge_meter_Miller(D=D, H=0.3*D) assert_close(C, 0.7267069372687651) # Tiny bore C = C_wedge_meter_Miller(D=.6*inch, H=0.3*.6*inch) assert_close(C, 0.8683022107124251) # Medium bore C = C_wedge_meter_Miller(D=1.3*inch, H=0.3*1.3*inch) assert_close(C, 1.15113726440674) def test_C_wedge_meter_ISO_5167_6_2017(): C = C_wedge_meter_ISO_5167_6_2017(D=0.1524, H=0.3*0.1524) assert_close(C, 0.724792059539853) def test_dP_venturi_tube(): dP = dP_venturi_tube(D=0.07366, Do=0.05, P1=200000.0, P2=183000.0) assert_close(dP, 1788.5717754177406) def test_C_Reader_Harris_Gallagher_wet_venturi_tube(): # Example 1 # Works don't change anything C = C_Reader_Harris_Gallagher_wet_venturi_tube(mg=5.31926, ml=5.31926/2, rhog=50.0, rhol=800., D=.1, Do=.06, H=1) assert_close(C, 0.9754210845876333) # From ISO 5167-4:2003, 5.6, # epsilon = 0.994236 # nozzle_expansibility, orifice_expansibility epsilon = nozzle_expansibility(D=.1, Do=.06, P1=60E5, P2=59.5E5, k=1.3) assert_close(epsilon, 0.994236, rtol=0, atol=.0000001) # Example 2 # Had to solve backwards to get ml, but C checks out perfectly C = C_Reader_Harris_Gallagher_wet_venturi_tube(ml=0.434947009566078, mg=6.3817, rhog=50.0, rhol=1000., D=.1, Do=.06, H=1.35) # Don't know what the ml is # 0,976 992 is C assert_close(C, 0.9769937323602329) def test_dP_Reader_Harris_Gallagher_wet_venturi_tube(): dP = dP_Reader_Harris_Gallagher_wet_venturi_tube(ml=5.31926/2, mg=5.31926, rhog=50.0, rhol=800., D=.1, Do=.06, H=1.0, P1=6E6, P2=6E6-5E4) assert_close(dP, 16957.43843129572) def test_differential_pressure_meter_dP(): for m in [AS_CAST_VENTURI_TUBE, MACHINED_CONVERGENT_VENTURI_TUBE, ROUGH_WELDED_CONVERGENT_VENTURI_TUBE, HOLLINGSHEAD_VENTURI_SMOOTH, HOLLINGSHEAD_VENTURI_SHARP]: dP = differential_pressure_meter_dP(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, meter_type=m) assert_close(dP, 1788.5717754177406) dP = differential_pressure_meter_dP(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, C=0.61512, meter_type=ISO_5167_ORIFICE) assert_close(dP, 9069.474705745388) dP = differential_pressure_meter_dP(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, C=0.61512, meter_type=LONG_RADIUS_NOZZLE) assert_close(dP, 9069.474705745388) dP = differential_pressure_meter_dP(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, C=0.61512, meter_type=ISA_1932_NOZZLE) assert_close(dP, 9069.474705745388) for m in (CONE_METER, HOLLINGSHEAD_CONE): dP = differential_pressure_meter_dP(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, meter_type=m) assert_close(dP, 8380.848307054845) for m in (WEDGE_METER, HOLLINGSHEAD_WEDGE): dP = differential_pressure_meter_dP(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, meter_type=m) assert_close(dP, 7112.927753356824) with pytest.raises(Exception): differential_pressure_meter_dP(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, meter_type=VENTURI_NOZZLE) with pytest.raises(ValueError): differential_pressure_meter_dP(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, meter_type='NOTAMETER') def test_differential_pressure_meter_beta(): beta = differential_pressure_meter_beta(D=0.2575, D2=0.184, meter_type=LONG_RADIUS_NOZZLE) assert_close(beta, 0.7145631067961165) beta = differential_pressure_meter_beta(D=0.2575, D2=0.184, meter_type=WEDGE_METER) assert_close(beta, 0.8743896375172885) beta = differential_pressure_meter_beta(D=0.2575, D2=0.184, meter_type=CONE_METER) assert_close(beta, 0.6995709873957624) with pytest.raises(ValueError): differential_pressure_meter_beta(D=0.07366, D2=0.05, meter_type='NOTAMETER') assert_close(differential_pressure_meter_beta(D=0.2575, D2=0.184, meter_type=HOLLINGSHEAD_CONE), differential_pressure_meter_beta(D=0.2575, D2=0.184, meter_type=CONE_METER)) assert_close(differential_pressure_meter_beta(D=0.2575, D2=0.184, meter_type=HOLLINGSHEAD_WEDGE), differential_pressure_meter_beta(D=0.2575, D2=0.184, meter_type=WEDGE_METER)) def test_cone_meter_expansibility_Stewart_full(): err = lambda Dc, beta : diameter_ratio_cone_meter(D=1, Dc=Dc) - beta solve_Dc = lambda beta : float(secant(err, .7, args=(beta,))) # Accidentally missed the beta ratio 0.75, oops vals = [[1.0000, 0.9887, 0.9774, 0.9661, 0.9548, 0.9435, 0.9153, 0.8871, 0.8588], [1.0000, 0.9885, 0.9769, 0.9654, 0.9538, 0.9423, 0.9134, 0.8846, 0.8557], [1.0000, 0.9881, 0.9762, 0.9644, 0.9525, 0.9406, 0.9109, 0.8812, 0.8515], [1.0000, 0.9877, 0.9754, 0.9630, 0.9507, 0.9384, 0.9076, 0.8768, 0.8460], [1.0000, 0.9871, 0.9742, 0.9613, 0.9485, 0.9356, 0.9033, 0.8711, 0.8389], [1.0000, 0.9864, 0.9728, 0.9592, 0.9456, 0.9320, 0.8980, 0.8640, 0.8300]] pressure_ratios = [1, 0.98, 0.96, 0.94, 0.92, 0.9, 0.85, 0.8, 0.75] betas = [.45, .5, .55, .6, .65, .7, .75] k = 1.2 for i, beta in enumerate(betas[:-1]): Dc = solve_Dc(beta) for j, pr in enumerate(pressure_ratios): eps = cone_meter_expansibility_Stewart(D=1, Dc=Dc, P1=1E5, P2=pr*1E5, k=1.2) eps = round(eps, 4) assert eps == vals[i][j] def test_C_ISA_1932_nozzle_full(): Cs = [[0.9616, 0.9692, 0.9750, 0.9773, 0.9789, 0.9813, 0.9820, 0.9821, 0.9822], [0.9604, 0.9682, 0.9741, 0.9764, 0.9781, 0.9805, 0.9812, 0.9813, 0.9814], [0.9592, 0.9672, 0.9731, 0.9755, 0.9773, 0.9797, 0.9804, 0.9805, 0.9806], [0.9579, 0.9661, 0.9722, 0.9746, 0.9763, 0.9788, 0.9795, 0.9797, 0.9797], [0.9567, 0.9650, 0.9711, 0.9736, 0.9754, 0.9779, 0.9786, 0.9787, 0.9788], [0.9554, 0.9638, 0.9700, 0.9726, 0.9743, 0.9769, 0.9776, 0.9777, 0.9778], [0.9542, 0.9626, 0.9689, 0.9715, 0.9733, 0.9758, 0.9766, 0.9767, 0.9768], [0.9529, 0.9614, 0.9678, 0.9703, 0.9721, 0.9747, 0.9754, 0.9756, 0.9757], [0.9516, 0.9602, 0.9665, 0.9691, 0.9709, 0.9735, 0.9743, 0.9744, 0.9745], [0.9503, 0.9589, 0.9653, 0.9678, 0.9696, 0.9722, 0.9730, 0.9731, 0.9732], [0.9490, 0.9576, 0.9639, 0.9665, 0.9683, 0.9709, 0.9717, 0.9718, 0.9719], [0.9477, 0.9562, 0.9626, 0.9651, 0.9669, 0.9695, 0.9702, 0.9704, 0.9705], [0.9464, 0.9548, 0.9611, 0.9637, 0.9655, 0.9680, 0.9688, 0.9689, 0.9690], [0.9451, 0.9534, 0.9596, 0.9621, 0.9639, 0.9664, 0.9672, 0.9673, 0.9674], [0.9438, 0.9520, 0.9581, 0.9606, 0.9623, 0.9648, 0.9655, 0.9656, 0.9657], [0.9424, 0.9505, 0.9565, 0.9589, 0.9606, 0.9630, 0.9638, 0.9639, 0.9640], [0.9411, 0.9490, 0.9548, 0.9572, 0.9588, 0.9612, 0.9619, 0.9620, 0.9621], [0.9398, 0.9474, 0.9531, 0.9554, 0.9570, 0.9593, 0.9600, 0.9601, 0.9602], [0.9385, 0.9458, 0.9513, 0.9535, 0.9550, 0.9573, 0.9579, 0.9580, 0.9581], [0.9371, 0.9442, 0.9494, 0.9515, 0.9530, 0.9551, 0.9558, 0.9559, 0.9560], [0.9358, 0.9425, 0.9475, 0.9495, 0.9509, 0.9529, 0.9535, 0.9536, 0.9537], [0.9345, 0.9408, 0.9455, 0.9473, 0.9487, 0.9506, 0.9511, 0.9512, 0.9513], [0.9332, 0.9390, 0.9434, 0.9451, 0.9464, 0.9481, 0.9487, 0.9487, 0.9488], [0.9319, 0.9372, 0.9412, 0.9428, 0.9440, 0.9456, 0.9460, 0.9461, 0.9462], [0.9306, 0.9354, 0.9390, 0.9404, 0.9414, 0.9429, 0.9433, 0.9434, 0.9435], [0.9293, 0.9335, 0.9367, 0.9379, 0.9388, 0.9401, 0.9405, 0.9405, 0.9406], [0.9280, 0.9316, 0.9343, 0.9353, 0.9361, 0.9372, 0.9375, 0.9375, 0.9376], [0.9268, 0.9296, 0.9318, 0.9326, 0.9332, 0.9341, 0.9344, 0.9344, 0.9344], [0.9255, 0.9276, 0.9292, 0.9298, 0.9303, 0.9309, 0.9311, 0.9311, 0.9312], [0.9243, 0.9256, 0.9265, 0.9269, 0.9272, 0.9276, 0.9277, 0.9277, 0.9278], [0.9231, 0.9235, 0.9238, 0.9239, 0.9240, 0.9241, 0.9242, 0.9242, 0.9242], [0.9219, 0.9213, 0.9209, 0.9208, 0.9207, 0.9205, 0.9205, 0.9205, 0.9205], [0.9207, 0.9192, 0.9180, 0.9176, 0.9172, 0.9168, 0.9166, 0.9166, 0.9166], [0.9195, 0.9169, 0.9150, 0.9142, 0.9136, 0.9128, 0.9126, 0.9126, 0.9125], [0.9184, 0.9147, 0.9118, 0.9107, 0.9099, 0.9088, 0.9084, 0.9084, 0.9083], [0.9173, 0.9123, 0.9086, 0.9071, 0.9060, 0.9045, 0.9041, 0.9040, 0.9040], [0.9162, 0.9100, 0.9053, 0.9034, 0.9020, 0.9001, 0.8996, 0.8995, 0.8994]] def C_ISA_1932_nozzle(D, Do, Re_D): beta = Do/D C = (0.9900 - 0.2262*beta**4.1 - (0.00175*beta**2 - 0.0033*beta**4.15)*(1E6/Re_D)**1.15) return C Rd_values = [2E4, 3E4, 5E4, 7E4, 1E5, 3E5, 1E6, 2E6, 1E7] betas = [i/100. for i in range(44, 81)] for i in range(len(betas)): Cs_expect = Cs[i] beta = betas[i] Cs_calc = [round(C_ISA_1932_nozzle(D=1, Do=beta, Re_D=i), 4) for i in Rd_values] assert_close1d(Cs_expect, Cs_calc, atol=1E-4) # There were three typos in there in the values for beta of 0.77 or 0.78. # values: 0.9215, 0.9412, 0.9803 def test_C_long_radius_nozzle_full(): Cs = [[0.9673, 0.9759, 0.9834, 0.9873, 0.9900, 0.9924, 0.9936, 0.9952, 0.9956], [0.9659, 0.9748, 0.9828, 0.9868, 0.9897, 0.9922, 0.9934, 0.9951, 0.9955], [0.9645, 0.9739, 0.9822, 0.9864, 0.9893, 0.9920, 0.9933, 0.9951, 0.9955], [0.9632, 0.9730, 0.9816, 0.9860, 0.9891, 0.9918, 0.9932, 0.9950, 0.9954], [0.9619, 0.9721, 0.9810, 0.9856, 0.9888, 0.9916, 0.9930, 0.9950, 0.9954], [0.9607, 0.9712, 0.9805, 0.9852, 0.9885, 0.9914, 0.9929, 0.9949, 0.9954], [0.9596, 0.9704, 0.9800, 0.9848, 0.9882, 0.9913, 0.9928, 0.9948, 0.9953], [0.9584, 0.9696, 0.9795, 0.9845, 0.9880, 0.9911, 0.9927, 0.9948, 0.9953], [0.9573, 0.9688, 0.9790, 0.9841, 0.9877, 0.9910, 0.9926, 0.9947, 0.9953], [0.9562, 0.9680, 0.9785, 0.9838, 0.9875, 0.9908, 0.9925, 0.9947, 0.9952], [0.9552, 0.9673, 0.9780, 0.9834, 0.9873, 0.9907, 0.9924, 0.9947, 0.9952], [0.9542, 0.9666, 0.9776, 0.9831, 0.9870, 0.9905, 0.9923, 0.9946, 0.9952], [0.9532, 0.9659, 0.9771, 0.9828, 0.9868, 0.9904, 0.9922, 0.9946, 0.9951], [0.9523, 0.9652, 0.9767, 0.9825, 0.9866, 0.9902, 0.9921, 0.9945, 0.9951], [0.9513, 0.9645, 0.9763, 0.9822, 0.9864, 0.9901, 0.9920, 0.9945, 0.9951], [0.9503, 0.9639, 0.9759, 0.9819, 0.9862, 0.9900, 0.9919, 0.9944, 0.9950], [0.9499, 0.9635, 0.9756, 0.9818, 0.9861, 0.9899, 0.9918, 0.9944, 0.9950], [0.9494, 0.9632, 0.9754, 0.9816, 0.9860, 0.9898, 0.9918, 0.9944, 0.9950], [0.9490, 0.9629, 0.9752, 0.9815, 0.9859, 0.9898, 0.9917, 0.9944, 0.9950], [0.9485, 0.9626, 0.9750, 0.9813, 0.9858, 0.9897, 0.9917, 0.9944, 0.9950], [0.9481, 0.9623, 0.9748, 0.9812, 0.9857, 0.9897, 0.9917, 0.9943, 0.9950], [0.9476, 0.9619, 0.9746, 0.9810, 0.9856, 0.9896, 0.9916, 0.9943, 0.9950], [0.9472, 0.9616, 0.9745, 0.9809, 0.9855, 0.9895, 0.9916, 0.9943, 0.9949], [0.9468, 0.9613, 0.9743, 0.9808, 0.9854, 0.9895, 0.9915, 0.9943, 0.9949], [0.9463, 0.9610, 0.9741, 0.9806, 0.9853, 0.9894, 0.9915, 0.9943, 0.9949], [0.9459, 0.9607, 0.9739, 0.9805, 0.9852, 0.9893, 0.9914, 0.9942, 0.9949], [0.9455, 0.9604, 0.9737, 0.9804, 0.9851, 0.9893, 0.9914, 0.9942, 0.9949], [0.9451, 0.9601, 0.9735, 0.9802, 0.9850, 0.9892, 0.9914, 0.9942, 0.9949], [0.9447, 0.9599, 0.9733, 0.9801, 0.9849, 0.9892, 0.9913, 0.9942, 0.9949], [0.9443, 0.9596, 0.9731, 0.9800, 0.9848, 0.9891, 0.9913, 0.9942, 0.9948], [0.9439, 0.9593, 0.9730, 0.9799, 0.9847, 0.9891, 0.9912, 0.9941, 0.9948], [0.9435, 0.9590, 0.9728, 0.9797, 0.9846, 0.9890, 0.9912, 0.9941, 0.9948], [0.9430, 0.9587, 0.9726, 0.9796, 0.9845, 0.9889, 0.9912, 0.9941, 0.9948], [0.9427, 0.9584, 0.9724, 0.9795, 0.9845, 0.9889, 0.9911, 0.9941, 0.9948], [0.9423, 0.9581, 0.9722, 0.9793, 0.9844, 0.9888, 0.9911, 0.9941, 0.9948], [0.9419, 0.9579, 0.9721, 0.9792, 0.9843, 0.9888, 0.9910, 0.9941, 0.9948], [0.9415, 0.9576, 0.9719, 0.9791, 0.9842, 0.9887, 0.9910, 0.9940, 0.9948], [0.9411, 0.9573, 0.9717, 0.9790, 0.9841, 0.9887, 0.9910, 0.9940, 0.9947], [0.9407, 0.9570, 0.9715, 0.9789, 0.9840, 0.9886, 0.9909, 0.9940, 0.9947], [0.9403, 0.9568, 0.9714, 0.9787, 0.9839, 0.9886, 0.9909, 0.9940, 0.9947], [0.9399, 0.9565, 0.9712, 0.9786, 0.9839, 0.9885, 0.9908, 0.9940, 0.9947], [0.9396, 0.9562, 0.9710, 0.9785, 0.9838, 0.9884, 0.9908, 0.9940, 0.9947], [0.9392, 0.9560, 0.9709, 0.9784, 0.9837, 0.9884, 0.9908, 0.9939, 0.9947], [0.9388, 0.9557, 0.9707, 0.9783, 0.9836, 0.9883, 0.9907, 0.9939, 0.9947], [0.9385, 0.9555, 0.9705, 0.9781, 0.9835, 0.9883, 0.9907, 0.9939, 0.9947], [0.9381, 0.9552, 0.9704, 0.9780, 0.9834, 0.9882, 0.9907, 0.9939, 0.9947]] Rd_values = [1E4, 2E4, 5E4, 1E5, 2E5, 5E5, 1E6, 5E6, 1E7] betas = [i/100. for i in list(range(20, 51, 2)) + list(range(51, 81))] def C_long_radius_nozzle(D, Do, Re_D): beta = Do/D return 0.9965 - 0.00653*beta**0.5*(1E6/Re_D)**0.5 for i in range(len(betas)): Cs_expect = Cs[i] beta = betas[i] Cs_calc = [round(C_long_radius_nozzle(D=1, Do=beta, Re_D=i), 4) for i in Rd_values] assert_close1d(Cs_expect, Cs_calc, atol=1E-4) # Errata: # 0.9834 to 0.9805 # 0.9828 to 9800 # 0.9822 to 0.9795 # 0.9816 to 0.979 # 0.981 to 0.9785 # 0.9805 to 0.9780 # 0.98 to 0.9776 # 0.9795 to 0.9771 # 0.979 to 0.9767 # 0.9785 to 0.9763 # 9.9607 to 0.9607 # 0.9875 to 0.9785 def test_C_venturi_nozzle_full(): # Many values do not match well, but the equation has been checked with both standards. betas = [0.32, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.40, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.50, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.60, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.70, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78] Cs = [0.9847, 0.9846, 0.9845, 0.9843, 0.9841, 0.9838, 0.9836, 0.9833, 0.9830, 0.9826, 0.9823, 0.9818, 0.9814, 0.9809, 0.9804, 0.9798, 0.9792, 0.9786, 0.9779, 0.9771, 0.9763, 0.9755, 0.9745, 0.9736, 0.9725, 0.9714, 0.9702, 0.9689, 0.9676, 0.9661, 0.9646, 0.9630, 0.9613, 0.9595, 0.9576, 0.9556, 0.9535, 0.9512, 0.9489, 0.9464, 0.9438, 0.9411, 0.9382, 0.9352, 0.9321, 0.9288, 0.9253, 0.9236] Cs_calc = [C_venturi_nozzle(D=1, Do=beta) for beta in betas] assert_close1d(Cs, Cs_calc, rtol=5E-3) def test_differential_pressure_meter_C_epsilon(): # Some random cases C, eps = differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=7.702338035732168, meter_type=ISO_15377_ECCENTRIC_ORIFICE) assert_close(C, 0.6284616939680627) assert_close(eps, 0.9711026966676307) C, eps = differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=7.702338035732168, meter_type=ISO_15377_QUARTER_CIRCLE_ORIFICE) assert_close(C, 0.899402420975695) assert_close(eps, 0.9711026966676307) C, eps = differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=7.702338035732168, meter_type=ISO_15377_CONICAL_ORIFICE) assert_close(C, 0.734) assert_close(eps, 0.9532330165749132) C, eps = differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=7.702338035732168, meter_type=MILLER_ORIFICE, taps='corner') assert_close(C, 0.6068011224659587) assert_close(eps, 0.9711026966676307) C, eps = differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=7.702338035732168, meter_type=MILLER_CONICAL_ORIFICE) assert_close(C, 0.73) assert_close(eps, 0.9532330165749132) # Test one case of the default translation C, eps = differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=7.702338035732168,taps='corner', meter_type=CONCENTRIC_ORIFICE) C_iso, eps_iso = differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=7.702338035732168,taps='corner', meter_type=CONCENTRIC_ORIFICE) assert C == C_iso assert eps == eps_iso with pytest.raises(ValueError): differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=7.702338035732168, meter_type='NOTAREAMETER') C, eps = differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=.01, meter_type=HOLLINGSHEAD_ORIFICE) assert_close(C, 0.7809066489631418) C, eps = differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=.01, meter_type=HOLLINGSHEAD_VENTURI_SMOOTH) assert_close(C, 0.7765555753764869) C, eps = differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=.01, meter_type=HOLLINGSHEAD_VENTURI_SHARP) assert_close(C, 0.7710760458207614) C, eps = differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=.01, meter_type=HOLLINGSHEAD_CONE) assert_close(C, 0.5796605776735264) C, eps = differential_pressure_meter_C_epsilon(D=0.07366, D2=0.025, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=.01, meter_type=HOLLINGSHEAD_WEDGE) assert_close(C, 0.7002380207294499) def test_issue_49(): kwargs = {'D': 0.36, 'rho': 39.6, 'mu': 1.32e-05, 'k': 1.3,'D2': 0.28,'P1': 5000000.0, 'P2': 4995000.0, 'meter_type': 'long radius nozzle'} massflow = differential_pressure_meter_solver(kwargs['D'], kwargs['rho'], kwargs['mu'], kwargs['k'], kwargs['D2'], kwargs['P1'], kwargs['P2'], meter_type=kwargs['meter_type']) assert_close(massflow, 48.36465032864742) @pytest.mark.fuzz @pytest.mark.slow def test_fuzz_K_to_discharge_coefficient(): ''' # Testing the different formulas from sympy import * C, beta, K = symbols('C, beta, K') expr = Eq(K, (sqrt(1 - beta**4*(1 - C*C))/(C*beta**2) - 1)**2) solns = solve(expr, C) [i.subs({'K': 5.2314291729754, 'beta': 0.05/0.07366}) for i in solns] [-sqrt(-beta**4/(-2*sqrt(K)*beta**4 + K*beta**4) + 1/(-2*sqrt(K)*beta**4 + K*beta**4)), sqrt(-beta**4/(-2*sqrt(K)*beta**4 + K*beta**4) + 1/(-2*sqrt(K)*beta**4 + K*beta**4)), -sqrt(-beta**4/(2*sqrt(K)*beta**4 + K*beta**4) + 1/(2*sqrt(K)*beta**4 + K*beta**4)), sqrt(-beta**4/(2*sqrt(K)*beta**4 + K*beta**4) + 1/(2*sqrt(K)*beta**4 + K*beta**4))] # Getting the formula from sympy import * C, beta, K = symbols('C, beta, K') expr = Eq(K, (sqrt(1 - beta**4*(1 - C*C))/(C*beta**2) - 1)**2) print(latex(solve(expr, C)[3])) ''' Ds = logspace(log10(1-1E-9), log10(1E-9), 8) for D_ratio in Ds: Ks = logspace(log10(1E-9), log10(50000), 8) Ks_recalc = [] for K in Ks: C = K_to_discharge_coefficient(D=1.0, Do=D_ratio, K=K) K_calc = discharge_coefficient_to_K(D=1.0, Do=D_ratio, C=C) Ks_recalc.append(K_calc) assert_close1d(Ks, Ks_recalc) @pytest.mark.scipy @pytest.mark.slow def test_orifice_std_Hollingshead_fit(): from scipy.interpolate import RectBivariateSpline, bisplev from fluids.flow_meter import orifice_std_Hollingshead_tck, orifice_std_logRes_Hollingshead, orifice_std_betas_Hollingshead, orifice_std_Hollingshead_Cs import numpy as np obj = RectBivariateSpline(orifice_std_betas_Hollingshead, orifice_std_logRes_Hollingshead, np.array(orifice_std_Hollingshead_Cs), s=0, kx=3, ky=3) assert_close(obj(.55, log(1e3))[0][0], bisplev(.55, log(1e3), orifice_std_Hollingshead_tck)) assert_close1d(obj.tck[0], orifice_std_Hollingshead_tck[0]) assert_close1d(obj.tck[1], orifice_std_Hollingshead_tck[1]) assert_close1d(obj.tck[2], orifice_std_Hollingshead_tck[2]) @pytest.mark.scipy @pytest.mark.slow def test_wedge_Hollingshead_fit(): from scipy.interpolate import RectBivariateSpline, bisplev import numpy as np from fluids.flow_meter import wedge_betas_Hollingshead, wedge_logRes_Hollingshead, wedge_Hollingshead_Cs, wedge_Hollingshead_tck obj = RectBivariateSpline(wedge_betas_Hollingshead, wedge_logRes_Hollingshead, np.array(wedge_Hollingshead_Cs), s=0, kx=1, ky=3) assert_close(obj(.55, log(1e4)), bisplev(.55, log(1e4), wedge_Hollingshead_tck)) assert_close1d(obj.tck[0], wedge_Hollingshead_tck[0]) assert_close1d(obj.tck[1], wedge_Hollingshead_tck[1]) assert_close1d(obj.tck[2], wedge_Hollingshead_tck[2]) @pytest.mark.scipy @pytest.mark.slow def test_cone_Hollingshead_fit(): from scipy.interpolate import RectBivariateSpline, bisplev import numpy as np from fluids.flow_meter import cone_logRes_Hollingshead, cone_betas_Hollingshead, cone_Hollingshead_Cs, cone_Hollingshead_tck obj = RectBivariateSpline(cone_betas_Hollingshead, cone_logRes_Hollingshead, np.array(cone_Hollingshead_Cs), s=0, kx=2, ky=3) assert_close(obj(.77, log(1e4)), bisplev(.77, log(1e4), cone_Hollingshead_tck)) assert_close1d(obj.tck[0], cone_Hollingshead_tck[0]) assert_close1d(obj.tck[1], cone_Hollingshead_tck[1]) assert_close1d(obj.tck[2], cone_Hollingshead_tck[2]) fluids-1.0.22/tests/test_jet_pump.py0000644000175000017500000003132414302004506017003 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2018 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from __future__ import division from fluids import * from fluids.constants import mmHg, atm from fluids.numerics import linspace, assert_close, assert_close1d import pytest def test_liquid_jet_pump_ancillary(): # This equation has been checked from theory 2018-05-08 - it is # confirmed to be correct more than the large one!!! rhop=998. rhos=1098. Ks=0.11 Kp=.04 solution_vars = {'P1': 426256.1597041593, 'P2': 133600, 'Qp': 0.01, 'Qs': 0.01, 'd_mixing': 0.045, 'd_nozzle': 0.022382858811037732} for key, value in solution_vars.items(): kwargs = dict(solution_vars) del kwargs[key] new_value = liquid_jet_pump_ancillary(rhop=rhop, rhos=rhos, Ks=Ks, Kp=Kp, **kwargs) assert_close(new_value, value) @pytest.mark.slow @pytest.mark.fuzz def test_liquid_jet_pump_ancillary_rhos_Ks_Ps(): for rhop in [998., 1050, 1150, 1250, 800]: for rhos in [1098., 1100, 1200, 1600, 4000, 100]: for Ks in [1E-9, 1E-3, 0.11, .5, 1, 5, 10, 100, 1000]: for Kp in [1E-9, 1E-3, 0.11, .5, 1, 5, 10, 100, 1000]: for P_mult in [0.1, 0.5, 1, 2, 10]: solution_vars = {'P1': 426256.1597041593, 'P2': 133600, 'Qp': 0.01, 'd_mixing': 0.045, 'd_nozzle': 0.022382858811037732} solution_vars['P1'] *= P_mult if solution_vars['P1'] < solution_vars['P2']: continue # Finish calculating good known values solution_vars['Qs'] = liquid_jet_pump_ancillary(rhop=rhop, rhos=rhos, Ks=Ks, Kp=Kp, **solution_vars) if solution_vars['Qs'].imag: # Do not keep testing if obtained an imaginary flow rate continue # Try each variable with the solver for key, value in solution_vars.items(): kwargs = dict(solution_vars) del kwargs[key] new_value = liquid_jet_pump_ancillary(rhop=rhop, rhos=rhos, Ks=Ks, Kp=Kp, **kwargs) assert_close(new_value, value) @pytest.mark.slow @pytest.mark.fuzz def test_liquid_jet_pump_ancillary_d_mixing(): rhop=998. rhos=1098. Ks=0.11 Kp=.04 for rhos in [1098., 1100, 1200, 1600, 4000, 100]: for Ks in [1E-9, 1E-3, 0.11, .5, 1, 5, 10, 100, 1000]: for D_mult in linspace(0.1, 10, 100): solution_vars = {'P1': 426256.1597041593, 'P2': 133600, 'Qp': 0.01, 'd_mixing': 0.045, 'd_nozzle': 0.022382858811037732} solution_vars['d_mixing'] *= D_mult if solution_vars['d_mixing'] < solution_vars['d_nozzle']*1.43: continue # Finish calculating good known values solution_vars['Qs'] = liquid_jet_pump_ancillary(rhop=rhop, rhos=rhos, Ks=Ks, Kp=Kp, **solution_vars) if solution_vars['Qs'].imag: # Do not keep testing if obtained an imaginary flow rate continue # Try each variable with the solver for key, value in solution_vars.items(): kwargs = dict(solution_vars) del kwargs[key] # print(solution_vars, key) new_value = liquid_jet_pump_ancillary(rhop=rhop, rhos=rhos, Ks=Ks, Kp=Kp, **kwargs) assert_close(new_value, value) def validate_liquid_jet_pump(rhop, rhos, Ks, Kp, Km, Kd, nozzle_retracted, solution_vars, d_diffuser=None, full=False): '''Helper function for testing `liquid_jet_pump`. Returns the number of solutions where the return values are the same as those given in `solution_vars`, and the number of cases where it is not. There is nothing wrong with getting a different answer; there are multiple solutions in the case of many variable sets. Raises an exception if a solution cannot be found. ''' if full: all_solution_vars = dict(solution_vars) solution_vars = dict(solution_vars) del solution_vars['M'] del solution_vars['N'] del solution_vars['R'] del solution_vars['alpha'] del solution_vars['d_diffuser'] del solution_vars['efficiency'] same, different = 0, 0 done = {} for i in solution_vars.keys(): for j in solution_vars.keys(): if i == j: continue elif frozenset([i, j]) in done: continue # Skip tests with alreardy tested variables; and where the two variables are the same kwargs = dict(solution_vars) del kwargs[i] del kwargs[j] # print('SOLVING FOR', i, j, kwargs) # ans = liquid_jet_pump(rhop=rhop, rhos=rhos, Ks=Ks, Kp=Kp, Km=Km, d_diffuser=d_diffuser, Kd=Kd, max_variations=10000, nozzle_retracted=nozzle_retracted, **kwargs) # print(i, j, ans[i], ans[j]) # print('SOLVED, STARTING NEXT') try: for key, value in solution_vars.items(): assert_close(value, abs(ans[key])) same += 1 # Since it matched, check the other parameters as well if full: for key, value in all_solution_vars.items(): assert_close(value, abs(ans[key])) except: for key, value in ans.items(): # Had some issues with under zero values assert value > 0 different += 1 done[frozenset([i, j])] = True return same, different @pytest.mark.slow def test_liquid_jet_pump_examples_round_robin(): # Example one and two variants solution_vars = {'P1': 426256.1597041593, 'P2': 133600, 'P5': 200000.0, 'Qp': 0.01, 'Qs': 0.01, 'd_mixing': 0.045, 'd_nozzle': 0.022382858811037732} validate_liquid_jet_pump(rhop=998., rhos=1098., Ks=0.11, Kp=0.04, Km=.186, Kd=0.12, nozzle_retracted=False, solution_vars=solution_vars) solution_vars = { 'P1': 468726.56966322445, 'P2': 133600, 'P5': 200000.0, 'Qp': 0.01, 'Qs': 0.001, 'd_mixing': 0.0665377148831667, 'd_nozzle': 0.022382858811037732} validate_liquid_jet_pump(rhop=998., rhos=1098., Ks=0.11, Kp=0.04, Km=.186, Kd=0.12, nozzle_retracted=False, solution_vars=solution_vars) solution_vars = { 'P1': 426256.1597041593, 'P2': 133600, 'P5': 200000.0, 'Qp': 0.1, 'Qs': 0.0201, 'd_mixing': 0.19926717348339726, 'd_nozzle': 0.07320212423451278} validate_liquid_jet_pump(rhop=998., rhos=1098., Ks=0.11, Kp=0.04, Km=.186, Kd=0.12, nozzle_retracted=False, solution_vars=solution_vars) # Example 2 solution_vars = {'P1': 550000.0, 'P2': 170000.0, 'P5': 192362.72123108635, 'Qp': 0.0005588580085548165, 'Qs': 0.0018975332068311196, 'd_mixing': 0.024, 'd_nozzle': 0.0048} validate_liquid_jet_pump(rhop=790.5, rhos=790.5, Km=.1, Kd=0.1, Ks=0.1, Kp=0.03, nozzle_retracted=False, solution_vars=solution_vars) #@pytest.mark.slow def test_liquid_jet_pump_examples_round_robin_Ex3(): # Not worth testing - requires further work # Example 3 rhop=765.0 rhos=765.0 Km=.15 Kd=0.12 Ks=0.38 Kp=0.05 nozzle_retracted=True d_diffuser=0.0318 # point 5 solution_vars = { 'P1': 1000000.0, 'P2': 47500.0, 'P5': 109500.0, 'Qp': 0.0005587193619566122, 'Qs': 0.001400084261324908, 'd_mixing': 0.017, 'd_nozzle': 0.0038} same, different = validate_liquid_jet_pump(nozzle_retracted=nozzle_retracted, d_diffuser=d_diffuser,rhop=rhop, rhos=rhos, Km=Km, Kd=Kd, Ks=Ks, Kp=Kp, solution_vars=solution_vars) assert same > 10 # Point 4 solution_vars = { 'P1': 800000.0, 'P2': 46020.0, 'P5': 95000.0, 'Qp': 0.0004971366273938245, 'Qs': 0.0012500084707104235, 'd_mixing': 0.017, 'd_nozzle': 0.0038} same, different = validate_liquid_jet_pump(nozzle_retracted=nozzle_retracted, d_diffuser=d_diffuser,rhop=rhop, rhos=rhos, Km=Km, Kd=Kd, Ks=Ks, Kp=Kp, solution_vars=solution_vars) assert same > 10 # Custom point with full validation expected = {'M': 2.633280822186772, 'N': 0.06818823529411765, 'P1': 500000.0, 'P2': 46020.0, 'P5': 75000.0, 'Qp': 0.0003864114714478578, 'Qs': 0.0010175299172366153, 'R': 0.05097107567130409, 'alpha': 0.28014905021125414, 'd_diffuser': 0.0318, 'd_mixing': 0.016831456429424897, 'd_nozzle': 0.0038, 'efficiency': 0.1795587722987592} same, different = validate_liquid_jet_pump(nozzle_retracted=nozzle_retracted, d_diffuser=d_diffuser,rhop=rhop, rhos=rhos, Km=Km, Kd=Kd, Ks=Ks, Kp=Kp, solution_vars=expected, full=True) assert same > 15 del test_liquid_jet_pump_examples_round_robin_Ex3 def test_vacuum_air_leakage_Seider(): flow = vacuum_air_leakage_Seider(10, 10000) assert_close(flow, 0.0018775547320870965) # Check that lower operating pressures have higher air leaks assert vacuum_air_leakage_Seider(10, 90000) > vacuum_air_leakage_Seider(10, 95000) assert vacuum_air_leakage_Seider(10, 9000) > vacuum_air_leakage_Seider(10, 9500) assert vacuum_air_leakage_Seider(10, 900) > vacuum_air_leakage_Seider(10, 950) def test_vacuum_air_leakage_Coker_Worthington(): from fluids.constants import inchHg pressures = (atm-700*mmHg, atm-100*mmHg, atm-50*mmHg, atm-4*mmHg, atm-2*mmHg, atm-.5*mmHg, atm-6*inchHg, 10000) for P in pressures: for b in (True, False): vacuum_air_leakage_Coker_Worthington(P, P_atm=101325.0, conservative=b) # Check that lower operating pressures have higher air leaks assert vacuum_air_leakage_Coker_Worthington(10000) > vacuum_air_leakage_Coker_Worthington(80000) flow = vacuum_air_leakage_Coker_Worthington(10000) assert_close(flow, 0.005039915222222222) def test_vacuum_air_leakage_HEI2633(): l = vacuum_air_leakage_HEI2633(10, 10000) assert_close(l, 0.001186252403781038, rtol=1e-4) pressures = (atm-700*mmHg, atm-100*mmHg, atm-50*mmHg, atm-4*mmHg, atm-2*mmHg, atm-.5*mmHg) for p in pressures: assert vacuum_air_leakage_HEI2633(.1, p) == vacuum_air_leakage_HEI2633(.2, p) values = [] for p in pressures: values.append(vacuum_air_leakage_HEI2633(6, p)) values_expect = [0.0008442279742808746, 0.0008442279742808746, 0.0006390170057983002, 0.00042906223685548387, 0.0002171483498876099, 0.0001093779195609018] assert_close1d(values, values_expect, rtol=1e-4) def test_vacuum_air_leakage_Ryans_Croll(): l = vacuum_air_leakage_Ryans_Croll(10, 10000) assert_close(l, 0.0004512759324612646) l = vacuum_air_leakage_Ryans_Croll(100, 99000) assert_close(l, 0.0011404637061758096) l = vacuum_air_leakage_Ryans_Croll(100, 99900, P_atm=1e5) assert_close(l, 0.00039961577892830735) assert vacuum_air_leakage_Ryans_Croll(10, 94000) > vacuum_air_leakage_Ryans_Croll(10, 95000) l = vacuum_air_leakage_Ryans_Croll(10, 70000) assert_close(0.0004512759324612646, l) l = vacuum_air_leakage_Ryans_Croll(100, 300) assert_close(l, 0.0017965618461104518) fluids-1.0.22/benchmarks/0000755000175000017500000000000014302004506014517 5ustar nileshnileshfluids-1.0.22/benchmarks/benchmarks.py0000644000175000017500000007755114302004506017225 0ustar nileshnilesh#from fluids import * from fluids.numerics import IS_PYPY from fluids.constants import * #IS_PYPY = True if not IS_PYPY: import fluids.numba import numba from datetime import datetime import numpy as np import pytz import inspect def also_numba(f): if not IS_PYPY: f.duplicate_with_numba = True return f from fluids.atmosphere import ATMOSPHERE_1976, ATMOSPHERE_NRLMSISE00, airmass, solar_position, earthsun_distance, sunrise_sunset, solar_irradiation if not IS_PYPY: ATMOSPHERE_1976_numba = fluids.numba.ATMOSPHERE_1976 airmass_numba = fluids.numba.atmosphere.airmass @numba.njit def numba_int_airmass(Z): return fluids.numba.atmosphere.ATMOSPHERE_1976(Z, 0).rho class BaseTimeSuite(object): def setup(self): if not IS_PYPY: for k in dir(self.__class__): if 'time' in k and 'numba' in k: c = getattr(self, k) c() class TimeAtmosphereSuite(BaseTimeSuite): def setup(self): if not IS_PYPY: self.time_ATMOSPHERE_1976_numba() self.date_test_es = datetime(2020, 6, 6, 10, 0, 0, 0) self.tz_dt = pytz.timezone('Australia/Perth').localize(datetime(2020, 6, 6, 7, 10, 57)) self.tz_dt2 = pytz.timezone('America/Edmonton').localize(datetime(2018, 4, 15, 13, 43, 5)) def time_ATMOSPHERE_1976(self): ATMOSPHERE_1976(5000.0) def time_ATMOSPHERE_1976_numba(self): ATMOSPHERE_1976_numba(5000.0) def time_ATMOSPHERE_1976_pressure_integral(self): ATMOSPHERE_1976.pressure_integral(288.6, 84100.0, 147.0) def time_ATMOSPHERE_NRLMSISE00(self): ATMOSPHERE_NRLMSISE00(1E3, 45, 45, 150) def time_airmass(self): airmass(lambda Z : ATMOSPHERE_1976(Z).rho, 90.0) def time_airmass_numba(self): airmass_numba(numba_int_airmass, 90.0) def time_earthsun_distance(self): earthsun_distance(self.date_test_es) def time_solar_position(self): solar_position(self.tz_dt, -31.95265, 115.85742) def time_sunrise_sunset(self): sunrise_sunset(self.tz_dt, 51.0486, -114.07) def time_solar_irradiation(self): solar_irradiation(Z=1100.0, latitude=51.0486, longitude=-114.07, linke_turbidity=3, moment=self.tz_dt2, surface_tilt=41.0, surface_azimuth=180.0) from fluids import isothermal_gas, isentropic_work_compression, isentropic_efficiency, P_isothermal_critical_flow if not IS_PYPY: isentropic_work_compression_numba = fluids.numba.isentropic_work_compression isentropic_efficiency_numba = fluids.numba.isentropic_efficiency P_isothermal_critical_flow_numba = fluids.numba.P_isothermal_critical_flow isothermal_gas_numba = fluids.numba.isothermal_gas class TimeCompressibleSuite(BaseTimeSuite): def setup(self): if not IS_PYPY: self.time_isentropic_work_compression_numba() self.time_isentropic_efficiency_numba() #self.time_P_isothermal_critical_flow_numba() self.time_compressible_D_numba() #self.time_compressible_P1_numba() #self.time_compressible_P2_numba() def time_compressible_D(self): isothermal_gas(rho=11.3, fd=0.00185, P1=1E6, P2=9E5, L=1000, m=145.48475726, D=None) def time_compressible_D_numba(self): isothermal_gas_numba(rho=11.3, fd=0.00185, P1=1E6, P2=9E5, L=1000, m=145.48475726, D=None) def time_compressible_P1(self): isothermal_gas(rho=11.3, fd=0.00185, P2=9E5, L=1000, m=145.48475726, D=0.5) #def time_compressible_P1_numba(self): #isothermal_gas_numba(rho=11.3, fd=0.00185, P2=9E5, L=1000, m=145.48475726, D=0.5) def time_compressible_P2(self): isothermal_gas(rho=11.3, fd=0.00185, P1=1E6, L=1000, m=145.48475726, D=0.5) #def time_compressible_P2_numba(self): #isothermal_gas_numba(rho=11.3, fd=0.00185, P1=1E6, L=1000, m=145.48475726, D=0.5) def time_isentropic_work_compression(self): isentropic_work_compression(P1=1E5, P2=1E6, T1=300.0, k=1.4, eta=0.78) def time_isentropic_work_compression_numba(self): isentropic_work_compression_numba(P1=1E5, P2=1E6, T1=300.0, k=1.4, eta=0.78) def time_isentropic_efficiency(self): isentropic_efficiency(1E5, 1E6, 1.4, eta_p=0.78) def time_isentropic_efficiency_numba(self): isentropic_efficiency_numba(1E5, 1E6, 1.4, eta_p=0.78) def time_P_isothermal_critical_flow(self): P_isothermal_critical_flow(P=1E6, fd=0.00185, L=1000., D=0.5) #def time_P_isothermal_critical_flow_numba(self): #P_isothermal_critical_flow_numba(P=1E6, fd=0.00185, L=1000., D=0.5) from fluids import control_valve_noise_g_2011, control_valve_noise_l_2015, size_control_valve_l, size_control_valve_g if not IS_PYPY: control_valve_noise_l_2015_numba = fluids.numba.control_valve_noise_l_2015 control_valve_noise_g_2011_numba = fluids.numba.control_valve_noise_g_2011 class TimeControlValveSuite(BaseTimeSuite): def time_size_control_valve_g(self): size_control_valve_g(T=433., MW=44.01, mu=1.4665E-4, gamma=1.30, Z=0.988, P1=680E3, P2=310E3, Q=38/36., D1=0.08, D2=0.1, d=0.05, FL=0.85, Fd=0.42, xT=0.60) def time_size_control_valve_l(self): size_control_valve_l(rho=965.4, Psat=70.1E3, Pc=22120E3, mu=3.1472E-4, P1=680E3, P2=220E3, Q=0.1, D1=0.15, D2=0.15, d=0.15, FL=0.9, Fd=0.46) def time_control_valve_noise_l_2015(self): control_valve_noise_l_2015(m=40, P1=1E6, P2=6.5E5, Psat=2.32E3, rho=997, c=1400, Kv=77.848, d=0.1, Di=0.1071, FL=0.92, Fd=0.42, t_pipe=0.0036, rho_pipe=7800.0, c_pipe=5000.0,rho_air=1.293, c_air=343.0, An=-4.6) def time_control_valve_noise_l_2015_numba(self): control_valve_noise_l_2015_numba(m=40, P1=1E6, P2=6.5E5, Psat=2.32E3, rho=997, c=1400, Kv=77.848, d=0.1, Di=0.1071, FL=0.92, Fd=0.42, t_pipe=0.0036, rho_pipe=7800.0, c_pipe=5000.0,rho_air=1.293, c_air=343.0, An=-4.6) def time_control_valve_noise_g_2011(self): control_valve_noise_g_2011(m=2.22, P1=1E6, P2=7.2E5, T1=450, rho=5.3, gamma=1.22, MW=19.8, Kv=77.85, d=0.1, Di=0.2031, FL=None, FLP=0.792, FP=0.98, Fd=0.296, t_pipe=0.008, rho_pipe=8000.0, c_pipe=5000.0, rho_air=1.293, c_air=343.0, An=-3.8, Stp=0.2) def time_control_valve_noise_g_2011_numba(self): control_valve_noise_g_2011_numba(m=2.22, P1=1E6, P2=7.2E5, T1=450, rho=5.3, gamma=1.22, MW=19.8, Kv=77.85, d=0.1, Di=0.2031, FL=None, FLP=0.792, FP=0.98, Fd=0.296, t_pipe=0.008, rho_pipe=8000.0, c_pipe=5000.0, rho_air=1.293, c_air=343.0, An=-3.8, Stp=0.2) from fluids import drag_sphere, v_terminal, integrate_drag_sphere if not IS_PYPY: drag_sphere_numba = fluids.numba.drag_sphere v_terminal_numba = fluids.numba.v_terminal #integrate_drag_sphere_numba = fluids.numba.integrate_drag_sphere class TimeDragSuite(BaseTimeSuite): def time_drag_sphere(self): drag_sphere(20000.0, 'Barati_high') def time_drag_sphere_numba(self): drag_sphere_numba(20000.0, 'Barati_high') def time_v_terminal(self): v_terminal(D=70E-6, rhop=2600., rho=1000., mu=1E-3) def time_v_terminal_numba(self): v_terminal_numba(D=70E-6, rhop=2600., rho=1000., mu=1E-3) def time_integrate_drag_sphere(self): integrate_drag_sphere(D=0.001, rhop=2200., rho=1.2, mu=1.78E-5, t=0.5, V=30, distance=True) from fluids import change_K_basis, entrance_distance, Darby3K, Hooper2K, K_angle_valve_Crane, v_lift_valve_Crane, K_branch_converging_Crane if not IS_PYPY: change_K_basis_numba = fluids.numba.change_K_basis entrance_distance_numba = fluids.numba.entrance_distance Darby3K_numba = fluids.numba.Darby3K Hooper2K_numba = fluids.numba.Hooper2K K_angle_valve_Crane_numba = fluids.numba.K_angle_valve_Crane v_lift_valve_Crane_numba = fluids.numba.v_lift_valve_Crane K_branch_converging_Crane_numba = fluids.numba.K_branch_converging_Crane class TimeFittingsSuite(BaseTimeSuite): #def setup(self): #pass #self.time_change_K_basis_numba() #self.time_entrance_distance_idelchik_numba() #self.time_entrance_distance_harris_numba() #self.time_Darby3K_numba() #self.time_Hooper2K_numba() def time_change_K_basis(self): change_K_basis(K1=32.68875692997804, D1=.01, D2=.02) def time_change_K_basis_numba(self): change_K_basis_numba(K1=32.68875692997804, D1=.01, D2=.02) def time_entrance_distance_idelchik(self): entrance_distance(Di=0.1, t=0.0005, l=.02, method='Idelchik') def time_entrance_distance_idelchik_numba(self): entrance_distance_numba(Di=0.1, t=0.0005, l=.02, method='Idelchik') def time_entrance_distance_harris(self): entrance_distance(Di=0.1, t=0.0005, l=.02, method='Harris') def time_entrance_distance_harris_numba(self): entrance_distance_numba(Di=0.1, t=0.0005, l=.02, method='Harris') def time_Darby3K(self): Darby3K(NPS=2., Re=10000., name='Valve, Angle valve, 45°, full line size, β = 1') def time_Darby3K_numba(self): Darby3K_numba(NPS=2., Re=10000., name='Valve, Angle valve, 45°, full line size, β = 1') def time_Hooper2K(self): Hooper2K(Di=2., Re=10000., name='Valve, Globe, Standard') def time_Hooper2K_numba(self): Hooper2K_numba(Di=2., Re=10000., name='Valve, Globe, Standard') def time_K_angle_valve_Crane(self): K_angle_valve_Crane(.01, .02) def time_K_angle_valve_Crane_numba(self): K_angle_valve_Crane_numba(.01, .02) def time_v_lift_valve_Crane(self): v_lift_valve_Crane(rho=998.2, D1=0.0627, D2=0.0779, style='lift check straight') def time_v_lift_valve_Crane_numba(self): v_lift_valve_Crane_numba(rho=998.2, D1=0.0627, D2=0.0779, style='lift check straight') def time_K_branch_converging_Crane(self): K_branch_converging_Crane(0.1023, 0.1023, 0.018917, 0.00633) def time_K_branch_converging_Crane_numba(self): K_branch_converging_Crane_numba(0.1023, 0.1023, 0.018917, 0.00633) from fluids import C_Reader_Harris_Gallagher, differential_pressure_meter_solver, dP_venturi_tube if not IS_PYPY: C_Reader_Harris_Gallagher_numba = fluids.numba.C_Reader_Harris_Gallagher differential_pressure_meter_solver_numba = fluids.numba.differential_pressure_meter_solver dP_venturi_tube_numba = fluids.numba.dP_venturi_tube class TimeFlowMeterSuite(BaseTimeSuite): def time_C_Reader_Harris_Gallagher(self): C_Reader_Harris_Gallagher(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, taps='flange') def time_C_Reader_Harris_Gallagher_numba(self): C_Reader_Harris_Gallagher_numba(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, taps='flange') def time_dP_venturi_tube(self): dP_venturi_tube(D=0.07366, Do=0.05, P1=200000.0, P2=183000.0) def time_dP_venturi_tube_numba(self): dP_venturi_tube_numba(D=0.07366, Do=0.05, P1=200000.0, P2=183000.0) def time_differential_pressure_meter_solver_m(self): differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D') def time_differential_pressure_meter_solver_numba_m(self): differential_pressure_meter_solver_numba(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D') def time_differential_pressure_meter_solver_P2(self): differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D') def time_differential_pressure_meter_solver_numba_P2(self): differential_pressure_meter_solver_numba(D=0.07366, D2=0.05, P1=200000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D') def time_differential_pressure_meter_solver_P1(self): differential_pressure_meter_solver(D=0.07366, D2=0.05, P2=183000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D') def time_differential_pressure_meter_solver_numba_P1(self): differential_pressure_meter_solver_numba(D=0.07366, D2=0.05, P2=183000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D') def time_differential_pressure_meter_solver_D2(self): differential_pressure_meter_solver(D=0.07366, P1=200000.0, P2=183000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D') def time_differential_pressure_meter_solver_numba_D2(self): differential_pressure_meter_solver_numba(D=0.07366, P1=200000.0, P2=183000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='ISO 5167 orifice', taps='D') def time_differential_pressure_meter_solver_m_Hollingshead(self): differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type='Hollingshead orifice', taps='D') def time_differential_pressure_meter_solver_numba_m_Hollingshead(self): differential_pressure_meter_solver_numba(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type='Hollingshead orifice', taps='D') def time_differential_pressure_meter_solver_P2_Hollingshead(self): differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='Hollingshead orifice', taps='D') def time_differential_pressure_meter_solver_numba_P2_Hollingshead(self): differential_pressure_meter_solver_numba(D=0.07366, D2=0.05, P1=200000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='Hollingshead orifice', taps='D') def time_differential_pressure_meter_solver_P1_Hollingshead(self): differential_pressure_meter_solver(D=0.07366, D2=0.05, P2=183000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='Hollingshead orifice', taps='D') def time_differential_pressure_meter_solver_numba_P1_Hollingshead(self): differential_pressure_meter_solver_numba(D=0.07366, D2=0.05, P2=183000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='Hollingshead orifice', taps='D') def time_differential_pressure_meter_solver_D2_Hollingshead(self): differential_pressure_meter_solver(D=0.07366, P1=200000.0, P2=183000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='Hollingshead orifice', taps='D') def time_differential_pressure_meter_solver_numba_D2_Hollingshead(self): differential_pressure_meter_solver_numba(D=0.07366, P1=200000.0, P2=183000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='Hollingshead orifice', taps='D') def time_differential_pressure_meter_solver_m_Miller_orifice(self): differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type='Miller orifice', taps='corner') def time_differential_pressure_meter_solver_numba_m_Miller_orifice(self): differential_pressure_meter_solver_numba(D=0.07366, D2=0.05, P1=200000.0, P2=183000.0, rho=999.1, mu=0.0011, k=1.33, meter_type='Miller orifice', taps='corner') def time_differential_pressure_meter_solver_P2_Miller_orifice(self): differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='Miller orifice', taps='corner') def time_differential_pressure_meter_solver_numba_P2_Miller_orifice(self): differential_pressure_meter_solver_numba(D=0.07366, D2=0.05, P1=200000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='Miller orifice', taps='corner') def time_differential_pressure_meter_solver_P1_Miller_orifice(self): differential_pressure_meter_solver(D=0.07366, D2=0.05, P2=183000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='Miller orifice', taps='corner') def time_differential_pressure_meter_solver_numba_P1_Miller_orifice(self): differential_pressure_meter_solver_numba(D=0.07366, D2=0.05, P2=183000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='Miller orifice', taps='corner') def time_differential_pressure_meter_solver_D2_Miller_orifice(self): differential_pressure_meter_solver(D=0.07366, P1=200000.0, P2=183000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='Miller orifice', taps='corner') def time_differential_pressure_meter_solver_numba_D2_Miller_orifice(self): differential_pressure_meter_solver_numba(D=0.07366, P1=200000.0, P2=183000.0, m=7.702338035732167, rho=999.1, mu=0.0011, k=1.33, meter_type='Miller orifice', taps='corner') from fluids import ft_Crane, friction_factor, friction_factor_curved, friction_plate_Kumar, roughness_Farshad if not IS_PYPY: ft_Crane_numba = fluids.numba.ft_Crane friction_factor_numba = fluids.numba.friction_factor friction_factor_curved_numba = fluids.numba.friction_factor_curved friction_plate_Kumar_numba = fluids.numba.friction_plate_Kumar roughness_Farshad_numba = fluids.numba.roughness_Farshad class TimeFrictionSuite(BaseTimeSuite): def time_ft_Crane(self): ft_Crane(.1) def time_ft_Crane_numba(self): ft_Crane_numba(.1) def time_friction_factor(self): friction_factor(Re=1E5, eD=1E-4) def time_friction_factor_numba(self): friction_factor_numba(Re=1E5, eD=1E-4) def time_friction_factor_S2(self): friction_factor(Re=2.9E5, eD=1E-5, Method='Serghides_2') def time_friction_factor_S2_numba(self): friction_factor_numba(Re=2.9E5, eD=1E-5, Method='Serghides_2') def time_friction_factor_curved(self): friction_factor_curved(Re=1E5, Di=0.02, Dc=0.5) def time_friction_factor_curved_numba(self): friction_factor_curved_numba(Re=1E5, Di=0.02, Dc=0.5) def time_friction_plate_Kumar(self): friction_plate_Kumar(Re=2000.0, chevron_angle=30.0) def time_friction_plate_Kumar_numba(self): friction_plate_Kumar_numba(Re=2000.0, chevron_angle=30.0) def time_roughness_Farshad(self): roughness_Farshad('Cr13, bare', 0.05) def time_roughness_Farshad_numba(self): roughness_Farshad_numba('Cr13, bare', 0.05) from fluids import V_horiz_conical, V_horiz_spherical, V_horiz_torispherical, V_vertical_torispherical_concave, SA_tank, V_tank, SA_partial_horiz_spherical_head, SA_partial_horiz_ellipsoidal_head, SA_partial_horiz_guppy_head, SA_partial_horiz_torispherical_head, V_from_h, SA_from_h if not IS_PYPY: V_horiz_conical_numba = fluids.numba.V_horiz_conical V_horiz_spherical_numba = fluids.numba.V_horiz_spherical V_horiz_torispherical_numba = fluids.numba.V_horiz_torispherical V_vertical_torispherical_concave_numba = fluids.numba.V_vertical_torispherical_concave SA_tank_numba = fluids.numba.SA_tank V_tank_numba = fluids.numba.V_tank SA_partial_horiz_spherical_head_numba = fluids.numba.SA_partial_horiz_spherical_head SA_partial_horiz_ellipsoidal_head_numba = fluids.numba.SA_partial_horiz_ellipsoidal_head SA_partial_horiz_guppy_head_numba = fluids.numba.SA_partial_horiz_guppy_head SA_partial_horiz_torispherical_head_numba = fluids.numba.SA_partial_horiz_torispherical_head V_from_h_numba = fluids.numba.V_from_h SA_from_h_numba = fluids.numba.SA_from_h class TimeGeometrySuite(BaseTimeSuite): def time_V_horiz_conical(self): V_horiz_conical(D=108., L=156., a=42., h=36) def time_V_horiz_conical_numba(self): V_horiz_conical_numba(D=108., L=156., a=42., h=36) def time_V_horiz_spherical(self): V_horiz_spherical(D=108., L=156., a=0.1, h=36.0) def time_V_horiz_spherical_numba(self): V_horiz_spherical_numba(D=108., L=156., a=0.1, h=36.0) def time_V_horiz_torispherical_1(self): V_horiz_torispherical(D=108., L=156., f=1., k=0.06, h=1.0) def time_V_horiz_torispherical_1_numba(self): V_horiz_torispherical_numba(D=108., L=156., f=1., k=0.06, h=1.0) def time_V_horiz_torispherical_2(self): V_horiz_torispherical(D=108., L=156., f=1., k=0.06, h=84.0) def time_V_horiz_torispherical_2_numba(self): V_horiz_torispherical_numba(D=108., L=156., f=1., k=0.06, h=84.0) def time_V_horiz_torispherical_3(self): V_horiz_torispherical(D=108., L=156., f=1., k=0.06, h=106.0) def time_V_horiz_torispherical_3_numba(self): V_horiz_torispherical_numba(D=108., L=156., f=1., k=0.06, h=106.0) def time_V_vertical_torispherical_concave(self): V_vertical_torispherical_concave(D=113., f=0.71, k=0.081, h=15.0) def time_V_vertical_torispherical_concave_numba(self): V_vertical_torispherical_concave_numba(D=113., f=0.71, k=0.081, h=15.0) def time_SA_tank_1(self): SA_tank(D=2.54, L=5, sideA='torispherical', sideB='torispherical', sideA_f=1.039370079, sideA_k=0.062362205, sideB_f=1.039370079, sideB_k=0.062362205) def time_SA_tank_1_numba(self): SA_tank_numba(D=2.54, L=5, sideA='torispherical', sideB='torispherical', sideA_f=1.039370079, sideA_k=0.062362205, sideB_f=1.039370079, sideB_k=0.062362205) def time_V_tank_1(self): V_tank(D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.) def time_V_tank_1_numba(self): V_tank_numba(D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.) def time_SA_partial_horiz_spherical_head(self): SA_partial_horiz_spherical_head(D=72., a=48.0, h=24.0) def time_SA_partial_horiz_spherical_head_numba(self): SA_partial_horiz_spherical_head_numba(D=72., a=48.0, h=24.0) def time_SA_partial_horiz_ellipsoidal_head(self): SA_partial_horiz_ellipsoidal_head(D=72., a=48.0, h=24.0) def time_SA_partial_horiz_ellipsoidal_head_numba(self): SA_partial_horiz_ellipsoidal_head_numba(D=72., a=48.0, h=24.0) def time_SA_partial_horiz_guppy_head(self): SA_partial_horiz_guppy_head(D=72., a=48.0, h=24.0) def time_SA_partial_horiz_guppy_head_numba(self): SA_partial_horiz_guppy_head_numba(D=72., a=48.0, h=24.0) def time_SA_partial_horiz_torispherical_head_1(self): SA_partial_horiz_torispherical_head(D=72., f=1, k=.06, h=1.0) def time_SA_partial_horiz_torispherical_head_1_numba(self): SA_partial_horiz_torispherical_head_numba(D=72., f=1, k=.06, h=1.0) def time_SA_partial_horiz_torispherical_head_2(self): SA_partial_horiz_torispherical_head(D=72., f=1, k=.06, h=20.0) def time_SA_partial_horiz_torispherical_head_2_numba(self): SA_partial_horiz_torispherical_head_numba(D=72., f=1, k=.06, h=20.0) def time_SA_partial_horiz_torispherical_head_3(self): SA_partial_horiz_torispherical_head(D=72., f=1, k=.06, h=66.0) def time_SA_partial_horiz_torispherical_head_3_numba(self): SA_partial_horiz_torispherical_head_numba(D=72., f=1, k=.06, h=66.0) def time_V_from_h(self): V_from_h(h=7, D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.) def time_V_from_h_numba(self): V_from_h_numba(h=7, D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.) def time_SA_from_h(self): SA_from_h(h=7, D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.) def time_SA_from_h_numba(self): SA_from_h_numba(h=7, D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.) # TODO test classes in geometry from fluids import Q_weir_V_Shen if not IS_PYPY: Q_weir_V_Shen_numba = fluids.numba.Q_weir_V_Shen class TimeOpenFlowSuite(BaseTimeSuite): def time_Q_weir_V_Shen(self): Q_weir_V_Shen(0.6, angle=45) def time_Q_weir_V_Shen_numba(self): Q_weir_V_Shen_numba(0.6, angle=45) from fluids import dP_packed_bed if not IS_PYPY: dP_packed_bed_numba = fluids.numba.dP_packed_bed class TimePackedBedSuite(BaseTimeSuite): def time_dP_packed_bed(self): dP_packed_bed(dp=0.05, voidage=0.492, vs=0.1, rho=1E3, mu=1E-3, Dt=0.015, Method='Guo, Sun, Zhang, Ding & Liu') def time_dP_packed_bed_numba(self): dP_packed_bed_numba(dp=0.05, voidage=0.492, vs=0.1, rho=1E3, mu=1E-3, Dt=0.015, Method='Guo, Sun, Zhang, Ding & Liu') from fluids import Stichlmair_wet, Stichlmair_flood if not IS_PYPY: Stichlmair_wet_numba = fluids.numba.Stichlmair_wet Stichlmair_flood_numba = fluids.numba.Stichlmair_flood class TimePackedTowerSuite(BaseTimeSuite): def time_Stichlmair_wet(self): Stichlmair_wet(Vg=0.4, Vl = 5E-3, rhog=5., rhol=1200., mug=5E-5, voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.) def time_Stichlmair_wet_numba(self): Stichlmair_wet_numba(Vg=0.4, Vl = 5E-3, rhog=5., rhol=1200., mug=5E-5, voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.) def time_Stichlmair_flood(self): Stichlmair_flood(Vl = 5E-3, rhog=5., rhol=1200., mug=5E-5, voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.) def time_Stichlmair_flood_numba(self): Stichlmair_flood_numba(Vl = 5E-3, rhog=5., rhol=1200., mug=5E-5, voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.) from fluids import ParticleSizeDistribution if not IS_PYPY: ParticleSizeDistribution_numba = fluids.numba.ParticleSizeDistribution class TimeParticleSizeDistributionSuite(BaseTimeSuite): # TODO optimize these; maybe add numba support in the future - or increase support for numpy inputs # def time_ParticleSizeDistribution_init(self): ds = 1E-6*np.array([240, 360, 450, 562.5, 703, 878, 1097, 1371, 1713, 2141, 2676, 3345, 4181, 5226, 6532]) numbers = [65, 119, 232, 410, 629, 849, 990, 981, 825, 579, 297, 111, 21, 1] psd = ParticleSizeDistribution(ds=ds, fractions=numbers, order=0) from fluids import nearest_pipe, gauge_from_t, t_from_gauge if not IS_PYPY: nearest_pipe_numba = fluids.numba.nearest_pipe class TimePipingSuite(BaseTimeSuite): def time_nearest_pipe(self): nearest_pipe(Di=0.021) def time_gauge_from_t(self): gauge_from_t(.5, SI=False, schedule='BWG') def time_t_from_gauge(self): t_from_gauge(.2, False, 'BWG') from fluids import VFD_efficiency, CSA_motor_efficiency if not IS_PYPY: VFD_efficiency_numba = fluids.numba.VFD_efficiency CSA_motor_efficiency_numba = fluids.numba.CSA_motor_efficiency class TimePumpSuite(BaseTimeSuite): def time_VFD_efficiency(self): VFD_efficiency(100*hp, load=0.2) def time_VFD_efficiency_numba(self): VFD_efficiency_numba(100*hp, load=0.2) def time_CSA_motor_efficiency(self): CSA_motor_efficiency(100*hp, closed=True, poles=6, high_efficiency=True) def time_CSA_motor_efficiency_numba(self): CSA_motor_efficiency_numba(100*hp, closed=True, poles=6, high_efficiency=True) from fluids import API520_A_g, API520_B, API520_SH if not IS_PYPY: API520_A_g_numba = fluids.numba.API520_A_g API520_B_numba = fluids.numba.API520_B API520_SH_numba = fluids.numba.API520_SH class TimeSafetyValveSuite(BaseTimeSuite): def time_API520_A_g(self): API520_A_g(m=24270/3600., T=348., Z=0.90, MW=51., k=1.11, P1=670E3, Kb=1, Kc=1) def time_API520_A_g_numba(self): API520_A_g_numba(m=24270/3600., T=348., Z=0.90, MW=51., k=1.11, P1=670E3, Kb=1, Kc=1) def time_API520_B(self): API520_B(1E6, 5E5) def time_API520_B_numba(self): API520_B_numba(1E6, 5E5) def time_API520_SH(self): API520_SH(593+273.15, 1066.325E3) def time_API520_SH_numba(self): API520_SH_numba(593+273.15, 1066.325E3) from fluids import K_separator_Watkins if not IS_PYPY: K_separator_Watkins_numba = fluids.numba.K_separator_Watkins class TimeSeparatorSuite(BaseTimeSuite): def time_K_separator_Watkins(self): K_separator_Watkins(0.88, 985.4, 1.3, horizontal=True) def time_K_separator_Watkins_numba(self): K_separator_Watkins_numba(0.88, 985.4, 1.3, horizontal=True) from fluids import liquid_gas_voidage, gas_liquid_viscosity if not IS_PYPY: liquid_gas_voidage_numba = fluids.numba.liquid_gas_voidage gas_liquid_viscosity_numba = fluids.numba.gas_liquid_viscosity class TimeTwoPhaseVoidageSuite(BaseTimeSuite): def time_liquid_gas_voidage(self): liquid_gas_voidage(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05) def time_liquid_gas_voidage_numba(self): liquid_gas_voidage_numba(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05) def time_gas_liquid_viscosity(self): gas_liquid_viscosity(x=0.4, mul=1E-3, mug=1E-5, rhol=850, rhog=1.2, Method='Duckler') def time_gas_liquid_viscosity_numba(self): gas_liquid_viscosity_numba(x=0.4, mul=1E-3, mug=1E-5, rhol=850, rhog=1.2, Method='Duckler') from fluids import two_phase_dP, Taitel_Dukler_regime, Mandhane_Gregory_Aziz_regime if not IS_PYPY: two_phase_dP_numba = fluids.numba.two_phase_dP Taitel_Dukler_regime_numba = fluids.numba.Taitel_Dukler_regime Mandhane_Gregory_Aziz_regime_numba = fluids.numba.Mandhane_Gregory_Aziz_regime class TimeTwoPhaseSuite(BaseTimeSuite): def time_two_phase_dP(self): two_phase_dP(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1.0) def time_two_phase_dP_numba(self): two_phase_dP_numba(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1.0) def time_Taitel_Dukler_regime(self): Taitel_Dukler_regime(m=0.6, x=0.112, rhol=915.12, rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, angle=0) def time_Taitel_Dukler_regime_numba(self): Taitel_Dukler_regime_numba(m=0.6, x=0.112, rhol=915.12, rhog=2.67, mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, angle=0) def time_Mandhane_Gregory_Aziz_regime(self): Mandhane_Gregory_Aziz_regime(m=0.6, x=0.112, rhol=915.12, rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.065, D=0.05) def time_Mandhane_Gregory_Aziz_regime_numba(self): Mandhane_Gregory_Aziz_regime_numba(m=0.6, x=0.112, rhol=915.12, rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.065, D=0.05) suites = [TimeAtmosphereSuite, TimeCompressibleSuite, TimeControlValveSuite, TimeDragSuite, TimeFittingsSuite, TimeFlowMeterSuite, TimeFrictionSuite, TimeGeometrySuite, TimeOpenFlowSuite, TimePackedBedSuite, TimePackedTowerSuite, TimeParticleSizeDistributionSuite, TimePipingSuite, TimePumpSuite, TimeSafetyValveSuite, TimeSeparatorSuite, TimeTwoPhaseVoidageSuite, TimeTwoPhaseSuite, ] for suite in suites: continue # asv requires inspect to work :( # Do I want to write a file that writes this benchmark file? glbs, lcls = {}, {} for k in dir(suite): if 'time' in k: f = getattr(suite, k) if hasattr(f, 'duplicate_with_numba'): source = inspect.getsource(f) source = '\n'.join([s[4:] for s in source.split('\n')[1:]]) orig_function = k.replace('time_', '') numba_function = orig_function + '_numba' new_function_name = k + '_numba' new_source = source.replace(orig_function, numba_function) exec(new_source, glbs, lcls) setattr(suite, new_function_name, lcls[new_function_name]) if IS_PYPY: for s in suites: for k in dir(s): if 'time' in k and 'numba' in k: delattr(s, k) fluids-1.0.22/requirements.txt0000644000175000017500000000003214302004506015661 0ustar nileshnileshnumpy>=1.5.0 scipy>=0.9.0 fluids-1.0.22/docs/0000755000175000017500000000000014302004506013332 5ustar nileshnileshfluids-1.0.22/docs/_templates/0000755000175000017500000000000014302004506015467 5ustar nileshnileshfluids-1.0.22/docs/_templates/layout.html0000644000175000017500000000031414302004506017670 0ustar nileshnilesh{% extends "!layout.html" %} {% block extrahead %} {% if not embedded %}{% endif %} {{ super() }} {% endblock %} fluids-1.0.22/docs/fluids.separator.rst0000644000175000017500000000031714302004506017352 0ustar nileshnileshLiquid-Vapor Separators (fluids.separator) ========================================== .. meta:: :description: Vapor-Liquid Separator design and rating in Python. .. automodule:: fluids.separator fluids-1.0.22/docs/fluids.core.rst0000644000175000017500000000044514302004506016304 0ustar nileshnileshDimensionless numbers (fluids.core) =================================== .. meta:: :description: Calculate Reynolds number, number Mach number for fluid mechanics; Prandtl number for forced convection, Rayleigh and Biot numbers for free convection, etc. .. automodule:: fluids.core fluids-1.0.22/docs/fluids.packed_tower.rst0000644000175000017500000000044114302004506020017 0ustar nileshnileshPacking & demister pressure drop (fluids.packed_tower) ====================================================== .. meta:: :description: Calculate the pressure drop across a packed tower or a demister pad. Also has functions for flooding. .. automodule:: fluids.packed_tower fluids-1.0.22/docs/Examples/0000755000175000017500000000000014302004506015110 5ustar nileshnileshfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/0000755000175000017500000000000014302004506021712 5ustar nileshnileshfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.15 Power Required for Pumping.ipynb0000644000175000017500000000537314302004506030344 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.15 Power Required for Pumping" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Water at 70 deg F is pumped through a sketched system at a rate of 100 gal/min.\n", "\n", "Find the total discharge head brake horsepower for a pump with an efficiency of 70%.\n" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:19.713395Z", "iopub.status.busy": "2022-08-22T01:18:19.712388Z", "iopub.status.idle": "2022-08-22T01:18:20.419253Z", "shell.execute_reply": "2022-08-22T01:18:20.418355Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "head = 420.3499305270172 foot\n", "power = 15.154490724520906 horsepower\n" ] } ], "source": [ "from fluids.units import *\n", "from math import pi\n", "L = (30+100+70+300)*u.foot\n", "dH = 400*u.foot\n", "efficiency = 0.7\n", "\n", "Q = 100*u.gallon/u.min\n", "mu = 0.95*u.cP\n", "rho = 62.298*u.lb/u.ft**3\n", "\n", "NPS, Di, Do, t = nearest_pipe(Do=3*u.inch, schedule='40')\n", "\n", "Di_reducer = nearest_pipe(Do=2.5*u.inch, schedule='40')[1]\n", "\n", "A = 0.25*pi*Di**2\n", "v = Q/A\n", "Re = rho*v*Di/mu\n", "fd = friction_factor(Re=Re, eD=0.0022*u.inch/Di)\n", "\n", "K_exit = exit_normal()\n", "K_gate = K_gate_valve_Crane(D1=Di, D2=Di, angle=0.0*u.degrees)\n", "K_elbow = bend_rounded(Di=Di, angle=90*u.degrees, Re=Re, method='Crane standard')\n", "K_lift_valve = K_lift_check_valve_Crane(D1=Di_reducer, D2=Di, angled=False)\n", "\n", "K_tot = K_exit + K_gate + 4*K_elbow + K_lift_valve\n", "K_tot += K_from_f(fd=fd, L=L, D=Di)\n", "\n", "dP = dP_from_K(K=K_tot, rho=rho, V=v) + rho*dH*1*u.gravity\n", "dP.to(u.psi), v.to(u.foot/u.s)\n", "\n", "head = head_from_P(dP, rho).to(u.foot)\n", "print('head = %s' %head)\n", "power = Q*dP/efficiency\n", "print('power = %s' %(power.to(u.hp)))" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "The values given in Crane are 421 feet of head and 15.2 hp." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.33 Pump Affinity Rules.ipynb0000644000175000017500000000404514302004506027061 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.33 Pump Affinity Rules" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Given: For the 6\" impeller trim on the curve below, the pump produces 126' of head and 400 gpm while running at 3500 rpm. The brake horsepower is 17.5 hp in that case.\n", "\n", "Find the flow rate, head, and power of this operating point if the speed is changed to 1700 rpm." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:00.232476Z", "iopub.status.busy": "2022-08-22T01:20:00.231902Z", "iopub.status.idle": "2022-08-22T01:20:00.928427Z", "shell.execute_reply": "2022-08-22T01:20:00.927526Z" } }, "outputs": [ { "data": { "text/plain": [ "(194.28571428571428 ,\n", " 29.725714285714286 ,\n", " 2.0053061224489794 )" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from fluids.units import *\n", "head1 = 126*u.foot\n", "Q1 = 400*u.gal/u.min\n", "rpm1 = 3500*u.rpm\n", "power1 = 17.5*u.hp\n", "\n", "rpm2 = 1700*u.rpm\n", "\n", "Q2 = rpm2/rpm1*Q1\n", "head2 = head1*(rpm2/rpm1)**2\n", "power2 = power1*(rpm2/rpm1)**3\n", "\n", "Q2, head2, power2" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The values match those given in Crane." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.5 Lift Check Valves.ipynb0000644000175000017500000000634514302004506026374 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.5 Lift Check Valves" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A lift check valve of type globe (with a wing-guided disc) is added to a 80 mm Schedule 40 horizontal pipe carrying water at a flow rate of 300 L/min.\n", "\n", "Calculate the check valve size, and pressure drop. The disc should be fully lifted at the specified flow." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:28.599411Z", "iopub.status.busy": "2022-08-22T01:20:28.598916Z", "iopub.status.idle": "2022-08-22T01:20:29.270384Z", "shell.execute_reply": "2022-08-22T01:20:29.269617Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Minimum velocity = 1.5825637790011153 meter / second\n", "Velocity in 80 mm valve = 1.0490717871198245 meter / second\n", "Minimum velocity = 1.0252301935349282 meter / second\n", "Velocity in 60 mm valve = 1.6193660919636594 meter / second\n", "Loss coefficient = 24.87967662305315 dimensionless\n", "Pressure drop = 13666.040906803597 pascal\n" ] } ], "source": [ "from fluids.units import *\n", "from math import *\n", "Q = 300*u.L/u.min\n", "D_80 = 77.9*u.mm\n", "\n", "rho = 998.2*u.kg/u.m**3\n", "# Try: schedule 40, 80 mm valve\n", "D_60 = 62.7*u.mm\n", "v_lift = v_lift_valve_Crane(rho=rho, D1=D_80, D2=D_80, style='lift check straight')\n", "print('Minimum velocity = %s' %v_lift)\n", "\n", "v = Q/(pi/4*D_80**2)\n", "print('Velocity in 80 mm valve = %s' %v.to_base_units())\n", "\n", "# v is lower than the lift velocity; try the 60 mm valve\n", "v_lift = v_lift_valve_Crane(rho=rho, D1=D_60, D2=D_80, style='lift check straight')\n", "print('Minimum velocity = %s' %v_lift)\n", "\n", "v = Q/(pi/4*D_60**2)\n", "print('Velocity in 60 mm valve = %s' %v.to_base_units())\n", "# The desired velocity is close enough\n", "\n", "fd = 0.017 # given, 80 mm pipe upstream\n", "K2 = K_lift_check_valve_Crane(D_60, D_80, fd=fd, angled=False)\n", "print('Loss coefficient = %s'%K2)\n", "v_pipe = Q/(pi/4*D_80**2)\n", "\n", "dP = 0.5*rho*v_pipe**2*K2\n", "print('Pressure drop = %s' %dP.to(u.Pa))" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "The values calculated in the example are K2 = 26.3 and pressure drop = 14450 Pa. Interestingly, the formula for minimum lift velocity used in their example does not use the ratio of diameters as the formula in their appendix shows. Otherwise the examples match.\n" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.4 Venturi Type Valves.ipynb0000644000175000017500000000523114302004506027026 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.4 Venturi Type Valves" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A 150 by 100 mm class 600 steel gate valve, conically tapered ports, length 550 mm, back of seat ring ~150 mm. The valve is connected to 146 mm schedule 80 pipe. The angle can be calculated to be 13 degrees. The valve is specified to be operating in turbulent conditions." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:24.154448Z", "iopub.status.busy": "2022-08-22T01:20:24.153316Z", "iopub.status.idle": "2022-08-22T01:20:24.843644Z", "shell.execute_reply": "2022-08-22T01:20:24.842865Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Darcy friction factor = 0.02015036859256496 dimensionless\n", "K2 = 1.3330449717924238 dimensionless\n", "Equivalent length L_D = 66.15486787096728 dimensionless\n", "Length for flow in complete turbulence = 9.658610709161223 meter\n" ] } ], "source": [ "from fluids.units import *\n", "D1 = 100*u.mm\n", "D2 = 146*u.mm\n", "angle = 13.115*u.degrees\n", "fd = friction_factor(Re=1E5, eD=.0018*u.inch/D1)\n", "\n", "K2 = K_gate_valve_Crane(D1, D2, angle, fd)\n", "L_D = L_equiv_from_K(K2, fd)\n", "L = (L_D*D2).to(u.m)\n", "\n", "print('Darcy friction factor = %s' %fd)\n", "print('K2 = %s' %K2)\n", "print('Equivalent length L_D = %s' %L_D)\n", "print('Length for flow in complete turbulence = %s' %L)" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "The values calculated in the problem use a friction factor of 0.015; this is the source of the discrepancies. Their procedure for loss in valves and fittings is based around the roughness of commercial steel pipe with a roughness of 0.0018 inches, but in their examples they simply look their friction factors up in a table which does not consider the diameter of the pipe.\n", "Their calculated values are K2 = 1.22, L/D=81.3, and L = 11.9." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } ././@LongLink0000644000000000000000000000016600000000000011606 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.12 Orifice Size for Given Pressure Drop and Velocity.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.12 Orifice Size for Given Pressure Drop a0000644000175000017500000001167114302004506031145 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.12 Orifice Size for Given Pressure Drop and Velocity" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A 12\" schedule 40 steel pipe is 60 feet long; it serves\n", "to connect water from a reservoir to the atmosphere.\n", "The water is 60 deg F and the elevation distance of the pipe\n", "is 12 feet.\n", "\n", "The pipe also contains a gate valve 10' from the entrance. The entrance into the reservoir is at a distance from the wall.\n", "\n", "Find the diameter of a standard orifice plate to make the flow velocity exactly 10 ft/s.\n" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:03.222609Z", "iopub.status.busy": "2022-08-22T01:18:03.222057Z", "iopub.status.idle": "2022-08-22T01:18:04.154376Z", "shell.execute_reply": "2022-08-22T01:18:04.153348Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Numerical solver progress:\n", "131456.15219585435 0.5 0.6039115256189872\n", "131207.12176475654 0.50015 0.6039153509057876\n", "45473.862634446166 0.5791807761904849 0.6054825449702658\n", "22370.32441146282 0.6210574900828658 0.6055902955169561\n", "7540.117114796503 0.6616052047236758 0.6047579998102253\n", "1943.8952815589291 0.6822208651128452 0.603821274023946\n", "240.43355375056126 0.689381890202793 0.6033941586008842\n", "9.046411468669248 0.6903926265655572 0.6033292369143312\n", "0.0442207298365247 0.6904321427501375 0.6033266747856294\n", "8.184524631360546e-06 0.6904323368622791 0.6033266621954346\n", "4.729372449219227e-11 0.6904323368982127 0.6033266621931039\n", "Size is:\n", "8.241152594519694 inch\n" ] } ], "source": [ "from fluids.units import *\n", "from fluids.constants import g\n", "from math import pi\n", "from scipy.optimize import newton\n", "g = g*u.m/u.s**2\n", "\n", "dH = 12*u.foot\n", "L = (60)*u.foot\n", "mu = 1.1*u.cP\n", "rho = 62.364*u.lb/u.ft**3\n", "\n", "NPS, Di, Do, t = nearest_pipe(Do=12*u.inch, schedule='40')\n", "\n", "v = 10*u.foot/u.s\n", "A = 0.25*pi*Di**2\n", "m = v*A*rho\n", "Re = rho*v*Di/mu\n", "\n", "# Approximately match their friction factor, roughness not specified\n", "fd = friction_factor(Re=Re, eD=0.0006*u.inch/Di)\n", "ft = ft_Crane(Di) # Not needed\n", "\n", "K_entrance = entrance_distance(Di=Di, method='Crane')\n", "K_exit = exit_normal()\n", "K_gate = K_gate_valve_Crane(D1=Di, D2=Di, angle=0.0*u.degrees)\n", "\n", "K_tot = K_entrance + K_exit + K_gate\n", "K_tot += K_from_f(fd=fd, L=L, D=Di)\n", "\n", "dP = dP_from_K(K=K_tot, rho=rho, V=v)\n", "k = 1.33\n", "\n", "dP_gravity = rho*g*dH\n", "\n", "dP_meter = dP_gravity - dP\n", "meter_type = 'ISO 5167 orifice'\n", "orifice_taps = 'corner'\n", "\n", "# P2 is assumed - does have an impact but it is minimal\n", "P2 = 1e6*u.Pa\n", "P1 = (P2 + dP_meter*2.5)\n", "print('Numerical solver progress:')\n", "def to_solve(beta):\n", " # Do not know orifice measured dP or C, only actual dP \n", " D2 = Di*beta\n", " \n", " # Solve for upstream pressure given actual flow rate and guessed diameter\n", " P1 = differential_pressure_meter_solver(Di, rho, mu, k, D2=D2, P2=P2, \n", " m=m, meter_type=meter_type, \n", " taps=orifice_taps)\n", " \n", " # Calculate `C`\n", " C, expansibility = differential_pressure_meter_C_epsilon(Di, D2, m, P1, P2, rho, mu, k, \n", " meter_type=meter_type, taps=orifice_taps)\n", " \n", " # Caclulate what the guessed orifice actual dP is\n", " calc_dP = dP_orifice(D=Di, Do=D2, P1=P1, P2=P2, C=C)\n", " err = (calc_dP - dP_meter).to_base_units()\n", " print(err.magnitude, beta, C.magnitude)\n", " return err.magnitude\n", "beta = newton(to_solve, .5, tol=1e-13)\n", "print('Size is:')\n", "print((Di*beta).to(u.inch))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The answer given in Crane is 7.94 inches, but only three iterations are performed there." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } ././@LongLink0000644000000000000000000000022700000000000011604 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.8 Laminar flow in Valves, Fittings, and Pipe - SAE oil through a pipe and globe valve.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.8 Laminar flow in Valves, Fittings, and P0000644000175000017500000000463014302004506031063 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.8 Laminar flow in Valves, Fittings, and Pipe - SAE oil through a pipe and globe valve" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "S.A.E. 30 Oil at 40 degrees Celsius and a flow rate of 600 barrels/hour flows in a 60 m long 200 mm schedule 40 pipe and passes through a 200 mm globe valve, full area seat.\n", "\n", "Calculate the pressure drop." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:43.474143Z", "iopub.status.busy": "2022-08-22T01:20:43.473770Z", "iopub.status.idle": "2022-08-22T01:20:44.212899Z", "shell.execute_reply": "2022-08-22T01:20:44.212341Z" } }, "outputs": [ { "data": { "text/html": [ "4575.571013232576 pascal" ], "text/latex": [ "$4575.571013232576\\ \\mathrm{pascal}$" ], "text/plain": [ "4575.571013232576 " ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from fluids.units import *\n", "from thermo import Stream\n", "from math import *\n", "Q = 600*u.barrel/u.hour\n", "L = 60*u.m\n", "NPS, D_pipe, Do_pipe, t = nearest_pipe(Di=200*u.mm)\n", "\n", "rho = 869.2*u.kg/u.m**3\n", "mu = 130*u.cP\n", "\n", "V = Q/(pi/4*D_pipe**2)\n", "Re = Reynolds(D=D_pipe, V=V, rho=rho, mu=mu)\n", "fd = friction_factor(Re=Re)\n", "ft = friction_factor(Re=1E6, eD=0.0018*u.inch/D_pipe)\n", "K = K_globe_valve_Crane(D1=D_pipe, D2=D_pipe, fd=ft)\n", "K += K_from_f(fd=fd, L=L, D=D_pipe)\n", "dP_from_K(K=K, V=V, rho=rho)" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "The example gives a pressure drop of 6382 Pa." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 0 } ././@LongLink0000644000000000000000000000014600000000000011604 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.13 Flow given in English Units - Oil.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.13 Flow given in English Units - Oil.ipyn0000644000175000017500000000676714302004506031051 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.13 Flow given in English Units - Oil" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Fuel oil at a specific gravity of 0.815 (kinematic viscosity of 2.7 centistokes) flows at 2 inch, schedule 40 steel pipe 100 foot long at a rate of 2 US gallons/second.\n", "\n", "Calculate the pressure drop in bars and psi." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:08.543573Z", "iopub.status.busy": "2022-08-22T01:18:08.543028Z", "iopub.status.idle": "2022-08-22T01:18:09.299434Z", "shell.execute_reply": "2022-08-22T01:18:09.298394Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Darcy friction factor = 0.02270215687134065 dimensionless\n", "Pressure drop = 65759.12280469094 pascal\n", "In imperial, pressure drop = 9.537554406715385 pound_force_per_square_inch\n" ] } ], "source": [ "from math import *\n", "from fluids.units import *\n", "from thermo import *\n", "\n", "SG = 0.815\n", "rho = SG*999.1*u.kg/u.m**3\n", "nu = 2.7*u.centistokes\n", "mu = nu_mu_converter(rho, nu=nu)\n", "Q = 2*u.gal/u.s\n", "L = 100*u.foot\n", "\n", "NPS, D_pipe, Do_pipe, t = nearest_pipe(Di=2*u.inch)\n", "v = Q/(pi/4*D_pipe**2)\n", "Re = Reynolds(rho=rho, mu=mu, D=D_pipe, V=v)\n", "fd = friction_factor(Re=Re, eD=0.0018*u.inch/D_pipe)\n", "print('Darcy friction factor = %s' %fd)\n", "K_friction = K_from_f(fd=fd, L=L, D=D_pipe)\n", "dP = dP_from_K(K=K_friction, rho=rho, V=v)\n", "print('Pressure drop = %s' %dP.to(u.Pa))\n", "print('In imperial, pressure drop = %s' %dP.to(u.psi))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The pressure drop calculated in the example is 66500 Pa (9.65 psi). The discrepancy is from their friction factor; they use 0.0230. The result is matched exactly if their friction factor is used." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:09.326736Z", "iopub.status.busy": "2022-08-22T01:18:09.325953Z", "iopub.status.idle": "2022-08-22T01:18:09.334016Z", "shell.execute_reply": "2022-08-22T01:18:09.333125Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Darcy friction factor = 0.023\n", "Pressure drop = 66621.85593551381 pascal\n", "In imperial, pressure drop = 9.662683268274836 pound_force_per_square_inch\n" ] } ], "source": [ "fd = 0.023\n", "print('Darcy friction factor = %s' %fd)\n", "K_friction = K_from_f(fd=fd, L=L, D=D_pipe)\n", "dP = dP_from_K(K=K_friction, rho=rho, V=v)\n", "print('Pressure drop = %s' %dP.to(u.Pa))\n", "print('In imperial, pressure drop = %s' %dP.to(u.psi))" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } ././@LongLink0000644000000000000000000000015500000000000011604 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.26 Pipe Partially Filled with Flowing Water.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.26 Pipe Partially Filled with Flowing Wat0000644000175000017500000000777614302004506031270 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.26 Pipe Partially Filled with Flowing Water" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Given a cast iron pipe is 2/3 filled with a steady, uniform flow of water at 60 deg F. \n", "The pipe has an inside diameter of 24\" and a slope of .75\"/foot\n", "\n", "Find the flow rate in gallons/minute." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": true, "execution": { "iopub.execute_input": "2022-08-22T01:19:25.601395Z", "iopub.status.busy": "2022-08-22T01:19:25.600676Z", "iopub.status.idle": "2022-08-22T01:19:26.289020Z", "shell.execute_reply": "2022-08-22T01:19:26.288222Z" } }, "outputs": [], "source": [ "from fluids.units import *\n", "from math import pi\n", "Di = 24*u.inch\n", "depth = 2/3*Di\n", "S = 0.75*u.inch/u.ft\n", "rho = 62.364*u.lb/u.ft**3\n", "mu = 1.1*u.cP\n", "eD = 0.00036 # roughness not given in problem, only relative roughness" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:26.294894Z", "iopub.status.busy": "2022-08-22T01:19:26.294183Z", "iopub.status.idle": "2022-08-22T01:19:26.311411Z", "shell.execute_reply": "2022-08-22T01:19:26.310633Z" } }, "outputs": [ { "data": { "text/plain": [ "(0.20670024467339204 ,\n", " 1.1647220208174018 ,\n", " 0.1774674480081778 ,\n", " 0.7098697920327112 )" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Use the TANK class to make the geometry easier\n", "tank = TANK(D=Di, L=1e-100*u.m, horizontal=True)\n", "A = tank.SA_from_h(depth)/2 # wetted surface area of a paper thin tank - divide by two as there is only one side\n", "\n", "tank = TANK(D=Di, L=1e100*u.m, horizontal=True)\n", "P = tank.SA_from_h(depth)/tank.L\n", "\n", "Rh = A/P\n", "Dh = 4*Rh\n", "A, P, Rh, Dh" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:26.334062Z", "iopub.status.busy": "2022-08-22T01:19:26.333126Z", "iopub.status.idle": "2022-08-22T01:19:26.351280Z", "shell.execute_reply": "2022-08-22T01:19:26.350468Z" } }, "outputs": [ { "data": { "text/html": [ "24410.948055443227 gallon/minute" ], "text/latex": [ "$24410.948055443227\\ \\frac{\\mathrm{gallon}}{\\mathrm{minute}}$" ], "text/plain": [ "24410.948055443227 " ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# 10 meter length basis assumed\n", "L = 10.0*u.m\n", "dH = L*S\n", "dP = dH*rho*u.gravity\n", "\n", "fd = .0155 # initial guess\n", "for i in range(5):\n", " K = K_from_f(fd=fd, L=L, D=Dh)\n", " v = (2*dP/(K*rho))**0.5\n", " Q = A*v\n", " # update friction factor\n", " Re = Reynolds(D=Dh, rho=rho, mu=mu, V=v)\n", " fd = friction_factor(Re=Re, eD=eD)\n", "Q.to(u.gal/u.min)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The solution given in Crane is 24500 gpm without iteration." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } ././@LongLink0000644000000000000000000000015400000000000011603 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.36 Hydraulic Resistance of a Diverging Wye.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.36 Hydraulic Resistance of a Diverging Wy0000644000175000017500000000635514302004506031276 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.36 Hydraulic Resistance of a Diverging Wye" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Given that 60 deg F water flows through a 6\" sched 80 45 degree wye with equal leg diameters, 250 gpm flows through the branch leg and 400 gpm flows through the straight leg.\n", "\n", "Find the loss coefficients for the straight leg, and the branch leg, as well as the loss coefficients for each flow path. " ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:14.432703Z", "iopub.status.busy": "2022-08-22T01:20:14.432242Z", "iopub.status.idle": "2022-08-22T01:20:15.187520Z", "shell.execute_reply": "2022-08-22T01:20:15.186278Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "The combined velocity is 7.996972275001512 foot / second\n", "The branch loss coefficient is 0.46461592374032235 dimensionless\n", "The run loss coefficient is -0.06827492034592626 dimensionless\n", "The branch head loss is 0.4617528263268458 foot\n", "The run head loss is -0.06785419058213756 foot\n" ] } ], "source": [ "from fluids.units import *\n", "from math import pi\n", "NPS, Di, Do, t = nearest_pipe(NPS=6, schedule='80')\n", "\n", "A = 0.25*pi*Di**2\n", "beta = 1 # same diameters\n", "\n", "rho = 998*u.kg/u.m**3\n", "\n", "Q_tot = (250+400)*u.gal/u.min\n", "Q_straight = 400*u.gal/u.min\n", "Q_branch = 250*u.gal/u.min\n", "\n", "v_combined = Q_tot/A\n", "print('The combined velocity is %s' %(v_combined.to(u.ft/u.s)))\n", "branch_flow_ratio = Q_branch/Q_tot\n", "\n", "v_main = Q_straight/A\n", "v_leg = Q_branch/A\n", "\n", "K_branch = K_branch_diverging_Crane(D_run=Di, D_branch=Di, Q_run=Q_straight, Q_branch=Q_branch, angle=45.0*u.degrees)\n", "print('The branch loss coefficient is %s' %(K_branch))\n", "K_run = K_run_diverging_Crane(D_run=Di, D_branch=Di, Q_run=Q_straight, Q_branch=Q_branch, angle=45.0*u.degrees)\n", "print('The run loss coefficient is %s' %(K_run))\n", "\n", "head_loss_branch = 0.5*rho*v_combined**2*K_branch/(1*u.gravity*rho)\n", "print('The branch head loss is %s' %(head_loss_branch.to(u.ft)))\n", "\n", "head_loss_run = 0.5*rho*v_combined**2*K_run/(1*u.gravity*rho)\n", "print('The run head loss is %s' %(head_loss_run.to(u.ft)))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The values presented in crane match very nearly exactly; this type of a problem does not require any iteration, unless the density of the fluid is variable." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.20 Steam at Sonic Velocity.ipynb0000644000175000017500000000663414302004506027606 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.20 Steam at Sonic Velocity" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Given: A header contains 170 psi saturated steam which feeds a pulp stock digester through 30 feet of 2\" schedule 40 pipe. It includes 1 standard 90 degree elbow, a fully open conventional plug type disc global valve. The initial pressure in the digester is atmospheric.\n", "\n", "Find the initial flow rate in pounds/hour." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:51.867905Z", "iopub.status.busy": "2022-08-22T01:18:51.867250Z", "iopub.status.idle": "2022-08-22T01:18:52.661019Z", "shell.execute_reply": "2022-08-22T01:18:52.659973Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "The mass flow rate is found to be 11626.328806003183 pound / hour\n" ] } ], "source": [ "from fluids.units import *\n", "from math import pi\n", "from CoolProp.CoolProp import PropsSI\n", "P1 = 170*u.psi\n", "P2_spec = P2 = 1*u.atm\n", "L = 30*u.foot\n", "NPS, D_pipe, Do_pipe, t = nearest_pipe(NPS=2, schedule=40)\n", "A = 0.25*pi*D_pipe**2\n", "\n", "fd = 0.019 # assumed, initial guess\n", "Re = 1e6 # also assumed\n", "mu = 1.8e-8*u.Pa*u.s\n", "\n", "rho = 5.988612037578836*u.kg/u.m**3 # Density at inlet from steam tables\n", "roughness = 0.0018*u.inch\n", "\n", "for i in range(5):\n", " K = K_from_f(fd=fd, L=L, D=D_pipe)\n", " K += entrance_sharp()\n", " K += exit_normal()\n", " K += K_globe_valve_Crane(D1=D_pipe, D2=D_pipe)\n", " K += bend_rounded(Di=D_pipe, angle=90*u.degrees, fd=fd, \n", " Re=Re, roughness=roughness, method='Crane')\n", " \n", " # lump the losses together for the `isothermal_gas` function\n", " fd_tot = f_from_K(L=L, D=D_pipe, K=K)\n", " \n", " P2_choke = P_isothermal_critical_flow(P=P1, fd=fd_tot, D=D_pipe, L=L)\n", " if P2_choke.to_base_units().magnitude > P2_spec.to_base_units().magnitude:\n", " P2 = P2_choke\n", " else:\n", " P2 = P2_spec\n", " \n", " m = isothermal_gas(rho=rho, fd=fd_tot, P1=P1, P2=P2, L=L, D=D_pipe)\n", " Q = m/rho\n", " v = Q/A\n", " # update friction factor\n", " Re = Reynolds(D=D_pipe, rho=rho, mu=mu, V=v)\n", " fd = friction_factor(Re=Re, eD=roughness/D_pipe)\n", "\n", "# choke pressure found to be 3 bar instead of 2.5 in Crane example\n", "print('The mass flow rate is found to be %s' %(m.to(u.lb/u.hour)))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The values given in Crane are 11770 and 11160 lb/hour for the Darcy and the Sonic Velocity and Continuity equations." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } ././@LongLink0000644000000000000000000000017200000000000011603 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.2 L, L over D and K from Kv for Conventional Type Valves.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.2 L, L over D and K from Kv for Conventio0000644000175000017500000000415114302004506030527 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "# 7.2 L, L over D and K from Kv for Conventional Type Valves" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A 150 mm class 125 Y-pattern globe valve with a Kv=500 flow coefficient is given.\n", "\n", "Calculate the resistance coefficient K, L/D equivalent, and the length for complete turbulence in the flow.\n", "\n", "Use schedule 40, 150 mm pipe as a reference." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:46.259300Z", "iopub.status.busy": "2022-08-22T01:19:46.258868Z", "iopub.status.idle": "2022-08-22T01:19:46.885721Z", "shell.execute_reply": "2022-08-22T01:19:46.885019Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Loss coefficient = 3.5996713983999995 dimensionless\n", "Equivalent length = 239.97809322666663 dimensionless\n", "Length for complete turbulence = 36.95662635690666 meter\n" ] } ], "source": [ "from fluids.units import *\n", "D = .154*u.m\n", "Kv = 500*u.m**3/u.hour\n", "\n", "K = Kv_to_K(Kv, D)\n", "L_D = L_equiv_from_K(K, fd=.015)\n", "L = D*L_D\n", "\n", "print('Loss coefficient = %s' %K)\n", "print('Equivalent length = %s' % L_D)\n", "print('Length for complete turbulence = %s' %L)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The results calculated in Crane TP 410M are 3.6, 240, and 37.0 respectively." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 0 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.21 Gases at Sonic Velocity.ipynb0000644000175000017500000000710414302004506027571 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.21 Gases at Sonic Velocity" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Coke oven gas has a specific gravity of 0.42, a header pressure of 125 psig, and is at 140 deg F. It flows through 20 feet of 3\" schedule 40 pipe and is discharged to the atmosphere.\n", "\n", "Find the flow rate in standard cubic feet per hour." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:59.434266Z", "iopub.status.busy": "2022-08-22T01:18:59.433611Z", "iopub.status.idle": "2022-08-22T01:19:00.307991Z", "shell.execute_reply": "2022-08-22T01:19:00.306149Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "1176795.8398551396 foot ** 3 / hour\n", "922482.9941880251 foot ** 3 / hour\n", "922210.5721001471 foot ** 3 / hour\n", "922210.2011294398 foot ** 3 / hour\n", "922210.2006241237 foot ** 3 / hour\n" ] } ], "source": [ "from fluids.units import *\n", "from math import pi\n", "SG = 0.42\n", "P1 = 125*u.psi + 1.0*u.atmosphere\n", "P2 = 1.0*u.atmosphere\n", "roughness = 0.0018*u.inch\n", "\n", "L = 20*u.foot\n", "mu = 1.8e-5 # good guess\n", "\n", "NPS, Di, Do, t = nearest_pipe(NPS=3, schedule='40')\n", "A = 0.25*pi*Di**2\n", "\n", "fd = 0.0175 # initial guess\n", "P_choke = P_isothermal_critical_flow(P=P1, fd=fd, L=L, D=Di)*(1+1e-10)\n", "P_rat_rho = (0.5*(P1 + P_choke)/(1.0*u.atmosphere)).to_base_units()\n", "\n", "for i in range(5):\n", " rho = 1.2*u.kg/u.m**3*SG*P_rat_rho\n", " m = isothermal_gas(rho, fd, P1=P1, P2=P_choke, L=L, D=Di)\n", " Q_actual = (m/rho).to(u.ft**3/u.hour)\n", " Q_std = Q_actual*P_rat_rho # convert to SI\n", " v = Q_actual/A\n", " Re = rho*v*Di/mu\n", " fd = friction_factor(Re=Re, eD=roughness/Di)\n", " K = exit_normal() + entrance_sharp(method='Crane')\n", " \n", " # Increase fd so it accounts for all the extra losses\n", " fd += K*Di/L\n", " P_choke = P_isothermal_critical_flow(P=P1, fd=fd, L=L, D=Di)*(1+1e-10)\n", " P_rat_rho = (0.5*(P1 + P_choke)/(1.0*u.atmosphere)).to_base_units()\n", " print(Q_std)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The result given in Crane is 1028000 ft^3/hour, which is 10% higher than this result.\n", "The crane result assumes isentropic flow whereas this is for isothermal flow. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "THe most accurate answer that can be obtained for this case would be quite a bit better than either solution here. A thermodynamic calculation of the direct conditions of choke:\n", " \n", " speed of sound of the fluid is the speed of the fluid\n", " energy is maintained\n", "However, without the composition of the gas there is no point in trying to obtain a better result." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.16 Air Lines.ipynb0000644000175000017500000001152714302004506025105 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.16 Air Lines" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Air at 65 psig and 115 deg F flows through 75 feet of 1\" schedule 40 pipe at a rate of 100 cubic feet/minute.\n", "\n", "Find the pressure drop in psi and the velocity in feet per minute at the inlet and the outlet." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": true, "execution": { "iopub.execute_input": "2022-08-22T01:18:24.891086Z", "iopub.status.busy": "2022-08-22T01:18:24.890455Z", "iopub.status.idle": "2022-08-22T01:18:25.568478Z", "shell.execute_reply": "2022-08-22T01:18:25.567184Z" } }, "outputs": [], "source": [ "from fluids.units import *\n", "from math import pi\n", "P1 = 65*u.psi + 1*u.standard_atmosphere" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:25.574358Z", "iopub.status.busy": "2022-08-22T01:18:25.573666Z", "iopub.status.idle": "2022-08-22T01:18:25.631532Z", "shell.execute_reply": "2022-08-22T01:18:25.630949Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Ratio of actual to standard flow: 0.20407676712438672\n" ] } ], "source": [ "# Take nitrogen-oxygen as air\n", "from thermo import PRMIX\n", "zs = [0.79, 0.21]\n", "Tcs = [126.2, 154.58]\n", "Pcs = [3394387.5, 5042945.25]\n", "omegas = [0.04, 0.021]\n", "\n", "eos_flowing = PRMIX(T=(115*u.degF).to(u.K).magnitude, P=P1.to(u.Pa).magnitude, zs=zs, Tcs=Tcs, Pcs=Pcs, omegas=omegas)\n", "eos_std = PRMIX(T=288.15, P=101325.0, zs=zs, Tcs=Tcs, Pcs=Pcs, omegas=omegas)\n", "V_ratio = eos_flowing.V_g/eos_std.V_g\n", "print('Ratio of actual to standard flow: %s' %(V_ratio))" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:25.659405Z", "iopub.status.busy": "2022-08-22T01:18:25.658802Z", "iopub.status.idle": "2022-08-22T01:18:25.743803Z", "shell.execute_reply": "2022-08-22T01:18:25.742408Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "pressure drop = 2.714842967501866 pound_force_per_square_inch\n", "upstream speed = 3401.458438219272 foot / minute\n" ] } ], "source": [ "NPS, Di, Do, t = nearest_pipe(NPS=1, schedule='40')\n", "Q = V_ratio*100*u.ft**3/u.min\n", "L = 75*u.ft\n", "\n", "MW = 28.958*u.g/u.mol\n", "Vm = eos_flowing.V_g*u.m**3/u.mol\n", "rho = (Vm)**-1*MW\n", "\n", "mu = 1.93e-5*u.Pa\n", "\n", "A = 0.25*pi*Di**2\n", "\n", "v0 = Q/A\n", "m = v0*A*rho\n", "\n", "Re = rho*v0*Di/mu\n", "fd = friction_factor(Re=Re, eD=0.0018*u.inch/Di)\n", "P2 = isothermal_gas(rho=rho, fd=fd, P1=P1, P2=None, L=L, D=Di, m=m)\n", "\n", "print('pressure drop = %s' %(P1-P2))\n", "print('upstream speed = %s' %(v0.to(u.ft/u.min)))" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:25.749095Z", "iopub.status.busy": "2022-08-22T01:18:25.748339Z", "iopub.status.idle": "2022-08-22T01:18:25.759002Z", "shell.execute_reply": "2022-08-22T01:18:25.757827Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "downstream speed = 3521.6227060753677 foot / minute\n" ] } ], "source": [ "eos_end = PRMIX(T=(115*u.degF).to(u.K).magnitude, P=P2.to(u.Pa).magnitude, zs=zs, Tcs=Tcs, Pcs=Pcs, omegas=omegas)\n", "Vm2 = eos_end.V_g*u.m**3/u.mol\n", "rho2 = (Vm2)**-1*MW\n", "print('downstream speed = %s' %((v0*rho/rho2).to(u.ft/u.min)))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The answers given in Crane are 2.61 psi; and 3367 and 3484 ft/min respectively. A tabular method is used there of limited accuracy.\n", "\n", "For compressible fluids, there is a benefit to breaking the problem up into sections and performing the calculation to each of them, preferably while including the JT effect and heat loss/gain." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } ././@LongLink0000644000000000000000000000021000000000000011574 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.7 Laminar flow in Valves, Fittings, and Pipe - System from Example 7.6.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.7 Laminar flow in Valves, Fittings, and P0000644000175000017500000001166514302004506031070 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.7 Laminar flow in Valves, Fittings, and Pipe - System from Example 7.6" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "SAE oil is discharged at 15 degrees Celsius from a tank with 7 m of head to atmosphere through:\n", "\n", "* 60 meters of 80 mm schedule 40 pipe\n", "* Six 80 mm standard 90 degree threaded elbows\n", "* One 80 mm flanged ball valve, with a 60 mm diameter seat, 16 degree conical inlet and 30 degree conical outlet.\n", "* The entrance is sharp-edged and flush with the tank\n", "\n", "This is the same problem as 7.6, except the properties of the fluid are sufficiently viscous to put it into the laminar regime although not by much." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:38.797193Z", "iopub.status.busy": "2022-08-22T01:20:38.796510Z", "iopub.status.idle": "2022-08-22T01:20:39.576311Z", "shell.execute_reply": "2022-08-22T01:20:39.575438Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Flow rate = 792.5474399133158 liter / minute, Reynolds number = 100000.0\n", "Flow rate = 494.99657487971655 liter / minute, Reynolds number = 2421.3002237645055 dimensionless\n", "Flow rate = 520.378830860645 liter / minute, Reynolds number = 1512.2568784652317 dimensionless\n", "Flow rate = 532.8826141070547 liter / minute, Reynolds number = 1589.8018416954353 dimensionless\n", "Flow rate = 538.9130067993693 liter / minute, Reynolds number = 1628.0019690919053 dimensionless\n", "Flow rate = 541.7921133079537 liter / minute, Reynolds number = 1646.4253346091618 dimensionless\n", "Flow rate = 543.1601058671454 liter / minute, Reynolds number = 1655.2212512728256 dimensionless\n", "Flow rate = 543.8086222080263 liter / minute, Reynolds number = 1659.4005855597939 dimensionless\n", "Flow rate = 544.1157293288044 liter / minute, Reynolds number = 1661.3818584555358 dimensionless\n", "Flow rate = 544.2610867599517 liter / minute, Reynolds number = 1662.3200969795807 dimensionless\n", "Flow rate = 544.3298695405146 liter / minute, Reynolds number = 1662.7641763656693 dimensionless\n", "Flow rate = 544.3624136657237 liter / minute, Reynolds number = 1662.9743136439959 dimensionless\n", "Flow rate = 544.3778108746269 liter / minute, Reynolds number = 1663.073738730347 dimensionless\n", "Flow rate = 544.3850953838348 liter / minute, Reynolds number = 1663.1207785206302 dimensionless\n", "Flow rate = 544.388541685874 liter / minute, Reynolds number = 1663.1430333193803 dimensionless\n", "Flow rate = 544.3901721223835 liter / minute, Reynolds number = 1663.1535620669079 dimensionless\n", "Flow rate = 544.3909434755569 liter / minute, Reynolds number = 1663.1585431899127 dimensionless\n", "Flow rate = 544.3913083992766 liter / minute, Reynolds number = 1663.1608997398391 dimensionless\n", "Flow rate = 544.3914810429436 liter / minute, Reynolds number = 1663.1620146130185 dimensionless\n", "Flow rate = 544.3915627198137 liter / minute, Reynolds number = 1663.162542054189 dimensionless\n" ] } ], "source": [ "from fluids.units import *\n", "from math import pi\n", "rho = 875.*u.kg/u.m**3\n", "mu = 78*u.cP\n", "\n", "H = 7*u.m\n", "L = 60*u.m\n", "NPS, D_pipe, Do_pipe, t = nearest_pipe(Do=80*u.mm)\n", "\n", "fd = 0.017\n", "Re = 1E5\n", "for i in range(20):\n", " K = K_from_f(fd=fd, L=L, D=D_pipe)\n", " K += entrance_sharp()\n", " K += exit_normal()\n", " K += 6*bend_rounded(D_pipe, angle=90*u.degrees, fd=fd, bend_diameters=0.65)\n", " ball_valve_angle = 0.5*(15+30)*u.degrees # use the average angle\n", " K += K_ball_valve_Crane(D1=D_pipe, D2=60*u.mm, angle=ball_valve_angle, fd=fd)\n", "\n", " v = (2*u.gravity*H/K)**0.5\n", " Q = v*pi/4*D_pipe**2\n", " print('Flow rate = %s, Reynolds number = %s' %(Q.to(u.L/u.min), Re))\n", " Re = Reynolds(D=D_pipe, rho=rho, mu=mu, V=v)\n", " fd = friction_factor(Re=Re, eD=0.0018*u.inch/D_pipe)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "No solution is actually presented in the example; but the result of their initial guess of a velocity of 1.5 m/s gives 511.2 L/min." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.1 Smooth Pipe (Plastic).ipynb0000644000175000017500000000427514302004506027103 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.1 Smooth Pipe (Plastic)" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "Water at 30 degrees Celsius flows through a 20 m length of 50 mm plastic (smooth wall) pipe, at a flow rate of 200 L/min.\n", "\n", "Calculate the Reynolds number and friction factor." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:45.684628Z", "iopub.status.busy": "2022-08-22T01:18:45.684104Z", "iopub.status.idle": "2022-08-22T01:18:47.261260Z", "shell.execute_reply": "2022-08-22T01:18:47.260580Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Reynolds number = 101004.75134699857 dimensionless\n", "Darcy friction factor = 0.01810866701300492 dimensionless\n" ] } ], "source": [ "from fluids.units import *\n", "from thermo.units import Stream\n", "from math import *\n", "\n", "Q = 0.2*u.m**3/u.min\n", "T = 30*u.degC\n", "P = 2*u.bar # assumed\n", "water = Stream('water', T=T, P=P, Q=Q)\n", "\n", "NPS, Di, Do, t = nearest_pipe(Di=0.05*u.m)\n", "v = Q/(pi/4*Di**2)\n", "Re = Reynolds(D=Di, rho=water.rho, mu=water.mu, V=v)\n", "print('Reynolds number = %s' %Re)\n", "fd = friction_factor(Re=Re, eD=_roughness['Glass']/Di)\n", "print('Darcy friction factor = %s' %fd)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The values presented in their solution are Re=100600; and fd=0.0179. The difference in values is due to the precision they used." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 0 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.29 Orifice Flow Rate Calculation.ipynb0000644000175000017500000001034014302004506030676 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.29 Orifice Flow Rate Calculation" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Given a differential pressure of 17 kPa is measured across taps located 1D upstream/0.5D downstream from the inlet face of a 50 mm ID orifice plate in an 80 mm schedule 80 steel pipe carrying water 15 deg C. \n", "Find the flow rate in gallons/minute." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:40.874481Z", "iopub.status.busy": "2022-08-22T01:19:40.873880Z", "iopub.status.idle": "2022-08-22T01:19:41.789499Z", "shell.execute_reply": "2022-08-22T01:19:41.788775Z" } }, "outputs": [ { "data": { "text/html": [ "0.07366 meter" ], "text/latex": [ "$0.07366\\ \\mathrm{meter}$" ], "text/plain": [ "0.07366 " ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from fluids.units import *\n", "from thermo.units import Chemical\n", "\n", "P1 = 2*u.bar # The full set of equations requires actual pressures not just the pressure difference, so an initial pressure of 2 bar is assumed.\n", "P2 = P1 - 17*u.kPa\n", "taps = 'D'\n", "meter_type = 'ISO 5167 orifice'\n", "Do = 50*u.mm\n", "\n", "NPS, D, _, t_pipe = nearest_pipe(Do=80*u.mm, schedule=80)\n", "\n", "D" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:41.819925Z", "iopub.status.busy": "2022-08-22T01:19:41.819370Z", "iopub.status.idle": "2022-08-22T01:19:42.288054Z", "shell.execute_reply": "2022-08-22T01:19:42.287393Z" } }, "outputs": [ { "data": { "text/plain": [ "(999.149354395164 ,\n", " 0.0011375132802133906 ,\n", " 1.3295293955513776 )" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "water = Chemical('water', T=15*u.degC, P=P1)\n", "rho = water.rho\n", "mu = water.mu\n", "k = water.isentropic_exponent\n", "rho, mu, k" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:42.291260Z", "iopub.status.busy": "2022-08-22T01:19:42.291074Z", "iopub.status.idle": "2022-08-22T01:19:42.299197Z", "shell.execute_reply": "2022-08-22T01:19:42.298177Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "7.704277411670789 kilogram / second\n", "462.65019605609893 liter / minute\n" ] } ], "source": [ "m = differential_pressure_meter_solver(D=D, D2=Do, P1=P1, P2=P2, rho=rho, mu=mu, k=k, meter_type=meter_type, taps=taps)\n", "print(m)\n", "Q = m/rho\n", "print(Q.to('L/min'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The answer given in TP410M is 478 gallons/minute; however the errata\n", "specifies this value is in units of liters/minute instead.\n", "\n", "This calculation matches their result well, given they did not include expansivity in their calculations and read a value of C from a graph.\n", "\n", "A calculator at flow of fluids, which also does not include expansivity, gives an answer of 476.777 L/min, along with 7.93916 kg/s (http://www.flowoffluids.com/calculators/flow-through-orifices.aspx)." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.14 Bernoulli's Theorem-Water.ipynb0000644000175000017500000001133714302004506030165 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.14 Bernoulli's Theorem-Water" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Water at 15 degrees Celsius is flowing through the piping system shown in Crane TP 410M's example at 1500 L/min.\n", "\n", "Calculate the velocity in both 4 and 5 inch sizes; and the pressure drop.\n", "\n", "Note: This problem suggests to handle the changing size elbow by adding on the result of a smooth expansion, which is also used here." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:13.662735Z", "iopub.status.busy": "2022-08-22T01:18:13.662142Z", "iopub.status.idle": "2022-08-22T01:18:15.282005Z", "shell.execute_reply": "2022-08-22T01:18:15.281133Z" } }, "outputs": [ { "data": { "text/html": [ "262809.7611610049 pascal" ], "text/latex": [ "$262809.7611610049\\ \\mathrm{pascal}$" ], "text/plain": [ "262809.7611610049 " ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from math import *\n", "from fluids.units import *\n", "from thermo.units import Chemical\n", "\n", "water = Chemical('water', P=2*u.bar, T=15*u.degC)\n", "rho = water.rho\n", "mu = water.mu\n", "\n", "Q = 1500*u.L/u.min\n", "r_d = 1.5\n", "_, D1, _, _ = nearest_pipe(Di=100*u.mm)\n", "_, D2, _, _ = nearest_pipe(Di=125*u.mm)\n", "L1 = 34*u.m\n", "L2 = (22+45)*u.m\n", "dH = 22*u.m\n", "beta = D1/D2\n", "\n", "V1 = Q/(pi/4*D1**2)\n", "V2 = Q/(pi/4*D2**2)\n", "Re1 = Reynolds(rho=rho, mu=mu, V=V1, D=D1)\n", "Re2 = Reynolds(rho=rho, mu=mu, V=V2, D=D2)\n", "fd1 = friction_factor(Re=Re1, eD=0.0018*u.inch/D1)\n", "fd2 = friction_factor(Re=Re2, eD=0.0018*u.inch/D2)\n", "fd = (fd1+fd2)/2\n", "\n", "dP = rho*u.gravity*dH\n", "\n", "K_D1 = bend_rounded(Di=D1, angle=90*u.degrees, fd=fd, bend_diameters=r_d)\n", "K_D1 += diffuser_conical(D1, D2, angle=30*u.degrees, fd=fd)\n", "K_D1 += K_from_f(fd=fd1, L=L1, D=D1)\n", "\n", "K_D2 = bend_rounded(Di=D2, angle=90*u.degrees, fd=fd, bend_diameters=r_d)\n", "K_D2 += K_from_f(fd=fd2, L=L2, D=D2)\n", "\n", "dP += dP_from_K(K=K_D1, rho=rho, V=V1)\n", "dP += dP_from_K(K=K_D2, rho=rho, V=V2)\n", "dP.to(u.Pa)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The result calculated in Crane's TP 410m is 26450 Pa. Their friction factor is 0.018. Again, it that value is used, the result calculated matches theirs - except this is off by an order of magnitude.\n", "\n", "In this edition, the gravitational term was forgotten. The prior 8th edition lists a value of 2.6 bar as the result for this problem. If their friction factor is used with this model, the following calculates a pressure drop of 2.62 bar." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:15.310921Z", "iopub.status.busy": "2022-08-22T01:18:15.310317Z", "iopub.status.idle": "2022-08-22T01:18:15.325744Z", "shell.execute_reply": "2022-08-22T01:18:15.324573Z" } }, "outputs": [ { "data": { "text/html": [ "262439.4308380222 pascal" ], "text/latex": [ "$262439.4308380222\\ \\mathrm{pascal}$" ], "text/plain": [ "262439.4308380222 " ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "fd = fd1 = fd2 = .018\n", "dP = rho*u.gravity*dH\n", "\n", "K_D1 = bend_rounded(Di=D1, angle=90*u.degrees, fd=fd, bend_diameters=r_d)\n", "K_D1 += contraction_round(D1, D2, r_d*D1)\n", "K_D1 += K_from_f(fd=fd1, L=L1, D=D1)\n", "\n", "K_D2 = bend_rounded(Di=D2, angle=90*u.degrees, fd=fd, bend_diameters=r_d)\n", "K_D2 += K_from_f(fd=fd2, L=L2, D=D2)\n", "\n", "dP += dP_from_K(K=K_D1, rho=rho, V=V1)\n", "dP += dP_from_K(K=K_D2, rho=rho, V=V2)\n", "dP.to(u.Pa)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } ././@LongLink0000644000000000000000000000015600000000000011605 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.9 Laminar Flow in Valves, Fittings, and Pipe.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.9 Laminar Flow in Valves, Fittings, and P0000644000175000017500000001463414302004506031031 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.9 Laminar Flow in Valves, Fittings, and Pipe" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "SAE 30 oil at 100 deg F flows through a 5\" schedule 40 pipe at 400 gal/min.\n", "\n", "There is a sketch in the Crane document of the system.\n", "\n", "Find the velocity in feet/second and the pressure drop." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:48.306868Z", "iopub.status.busy": "2022-08-22T01:20:48.306396Z", "iopub.status.idle": "2022-08-22T01:20:48.975802Z", "shell.execute_reply": "2022-08-22T01:20:48.975070Z" } }, "outputs": [ { "data": { "text/plain": [ "(26.063989664869815 ,\n", " 6.414177533606955 )" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from fluids.units import *\n", "from math import pi\n", "from fluids.constants import g\n", "g = g*u.m/u.s**2\n", "\n", "dH = 50*u.foot\n", "L = (175+50+75)*u.foot\n", "mu = 130*u.cP\n", "rho = (62.364*0.87)*u.lb/u.ft**3\n", "NPS, Di, Do, t = nearest_pipe(Do=5*u.inch, schedule='40')\n", "\n", "Q = 400*u.gallon/u.min\n", "A = 0.25*pi*Di**2\n", "\n", "v = Q/A\n", "Re = rho*v*Di/mu\n", "fd = friction_factor(Re=Re, eD=0.0018*u.inch/Di)\n", "ft = ft_Crane(Di)\n", "\n", "K_gate = K_gate_valve_Crane(D1=Di, D2=Di, fd=ft, angle=0.0*u.degrees)\n", "K_angle = K_angle_valve_Crane(D1=Di, D2=Di, fd=ft, style=1)\n", "K_elbow = bend_rounded(Di=Di, bend_diameters=1, angle=90*u.degrees, Re=Re, method='Crane')\n", "\n", "K_tot = K_elbow + K_gate + K_angle\n", "K_tot += K_from_f(fd=fd, L=L, D=Di)\n", "\n", "dP = dP_from_K(K=K_tot, rho=rho, V=v) + rho*g*dH\n", "dP.to(u.psi), v.to(u.foot/u.s)" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "## Intermediate calculations" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:49.006598Z", "iopub.status.busy": "2022-08-22T01:20:49.006170Z", "iopub.status.idle": "2022-08-22T01:20:49.013479Z", "shell.execute_reply": "2022-08-22T01:20:49.012478Z" } }, "outputs": [ { "data": { "text/plain": [ "(8.0 ,\n", " 150.0 ,\n", " 20.00000000000006 )" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "K_gate/ft, K_angle/ft, K_elbow/ft" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:49.018125Z", "iopub.status.busy": "2022-08-22T01:20:49.017841Z", "iopub.status.idle": "2022-08-22T01:20:49.023493Z", "shell.execute_reply": "2022-08-22T01:20:49.022652Z" } }, "outputs": [ { "data": { "text/html": [ "29.991124449003742 dimensionless" ], "text/latex": [ "$29.991124449003742\\ dimensionless$" ], "text/plain": [ "29.991124449003742 " ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "K_tot" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:49.027410Z", "iopub.status.busy": "2022-08-22T01:20:49.027056Z", "iopub.status.idle": "2022-08-22T01:20:49.033174Z", "shell.execute_reply": "2022-08-22T01:20:49.032192Z" } }, "outputs": [ { "data": { "text/html": [ "6.414177533606955 foot/second" ], "text/latex": [ "$6.414177533606955\\ \\frac{\\mathrm{foot}}{\\mathrm{second}}$" ], "text/plain": [ "6.414177533606955 " ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "v.to(u.ft/u.s)" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:49.037646Z", "iopub.status.busy": "2022-08-22T01:20:49.037220Z", "iopub.status.idle": "2022-08-22T01:20:49.042976Z", "shell.execute_reply": "2022-08-22T01:20:49.042234Z" } }, "outputs": [ { "data": { "text/plain": [ "(0.0381948926809522 ,\n", " 0.01543941031464228 )" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "fd, ft" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Proof system is laminar" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:49.047286Z", "iopub.status.busy": "2022-08-22T01:20:49.046947Z", "iopub.status.idle": "2022-08-22T01:20:49.053514Z", "shell.execute_reply": "2022-08-22T01:20:49.052570Z" } }, "outputs": [ { "data": { "text/html": [ "1675.616699190696 dimensionless" ], "text/latex": [ "$1675.616699190696\\ dimensionless$" ], "text/plain": [ "1675.616699190696 " ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "Re.to(u.dimensionless)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.17 Sizing of Pump for Oil Pipelines.ipynb0000644000175000017500000000534214302004506031254 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.17 Sizing of Pump for Oil Pipelines" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Crude oil (30 degree API) at 15.6 C with a viscosity of 75 Universal Saybolt seconds flows down a 12\" Schedule 30 steel pipe with a flow rate of 1900 barrels/hour.\n", "\n", "The pipeline is 50 miles long, and the net elevation change is an increase of 2000 feet above the initial pump. The pump has an efficiency of 67%.\n", "\n", "Calculate the brake horsepower of the pump." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:30.224055Z", "iopub.status.busy": "2022-08-22T01:18:30.223436Z", "iopub.status.idle": "2022-08-22T01:18:30.946039Z", "shell.execute_reply": "2022-08-22T01:18:30.945138Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "24364.090937022276 dimensionless\n", "0.02511025708497868 dimensionless\n", "head = 3413.763958141052 foot\n", "power = 1499.9449484211073 horsepower\n" ] } ], "source": [ "from fluids.units import *\n", "from math import pi\n", "L = 50*u.miles\n", "dH = 2000*u.foot\n", "efficiency = 0.67\n", "\n", "# Note in pint the default barrel is for US dry barrel\n", "Q = 1900*u.oil_barrel/u.hour\n", "mu = 12.5*u.cP\n", "rho = 54.64*u.lb/u.ft**3\n", "\n", "NPS, Di, Do, t = nearest_pipe(NPS=12, schedule='30')\n", "\n", "A = 0.25*pi*Di**2\n", "v = Q/A\n", "Re = rho*v*Di/mu\n", "print(Re.to_base_units())\n", "fd = friction_factor(Re=Re, eD=0.0022*u.inch/Di)\n", "print(fd)\n", "\n", "K_tot = K_from_f(fd=fd, L=L, D=Di)\n", "dP = dP_from_K(K=K_tot, rho=rho, V=v) + rho*dH*1*u.gravity\n", "dP.to(u.psi), v.to(u.foot/u.s)\n", "\n", "head = head_from_P(dP, rho).to(u.foot)\n", "print('head = %s' %head)\n", "power = Q*dP/efficiency\n", "print('power = %s' %(power.to(u.hp)))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The listed values are 3406.5 feet and 1496 hp, however a shortcut formula is used there." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } ././@LongLink0000644000000000000000000000015500000000000011604 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.27 Sizing Control Valves for Liquid Service.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.27 Sizing Control Valves for Liquid Servi0000644000175000017500000000574314302004506031341 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.27 Sizing Control Valves for Liquid Service" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Given 250 gpm of condensate from a pressurized condensate tank, is cooled from 225 deg F to 160 deg F in a heat exchanger, then pumped to a 50 psig heater.\n", "\n", "The inlet and outlet pipe of the control valve is schedule 40, with no valves or fittings near the control valve. \n", "The system is located in a facility near sea level.\n", "\n", "A single port globe style valve is to be added.\n", "\n", "Find an appropriate size valve for the level control.\n", "\n", "The valve options are 2\", 2.5\", 3\", or 4\"; with Cvs of 41, 73, 114, and 175 respectively." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:30.737504Z", "iopub.status.busy": "2022-08-22T01:19:30.736215Z", "iopub.status.idle": "2022-08-22T01:19:31.417719Z", "shell.execute_reply": "2022-08-22T01:19:31.417117Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Minimum size is 3.0 inch\n", "Calculated Cv is 80.00778994084568 gallon / minute\n" ] } ], "source": [ "from fluids.units import *\n", "\n", "rho = 60.998*u.lb/u.ft**3\n", "mu = 0.39*u.cP\n", "Psat = 4.75*u.psi\n", "Pc = 3198*u.psi\n", "\n", "Q = 250*u.gal/u.min\n", "P1 = 80.6*u.psi\n", "P2 = 70.8*u.psi\n", "\n", "NPS, D_pipe, Do_pipe, t = nearest_pipe(NPS=4, schedule=40)\n", "\n", "Cvs = [41*u.gal/u.min, 73*u.gal/u.min, 114*u.gal/u.min, 175*u.gal/u.min]\n", "D_valves = [2*u.inch, 2.5*u.inch, 3.0*u.inch, 4*u.inch]\n", "\n", "for d, Cv in zip(D_valves, Cvs):\n", " Kv = size_control_valve_l(rho=rho, Psat=Psat, Pc=Pc, mu=mu, P1=P1, P2=P2, Q=Q, D1=D_pipe, D2=D_pipe,\n", " d=d, FL=0.9, Fd=1, allow_choked=True, \n", " allow_laminar=True, full_output=False)\n", " Cv_calc = Kv_to_Cv(Kv)\n", " if Cv > Cv_calc:\n", " print('Minimum size is %s' %d)\n", " break\n", "print('Calculated Cv is %s' %(Cv_calc))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Crane reports a Cv of 79.94. No iteration is required in this problem,\n", "except in the control valve sizing function itself." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.18 Gas.ipynb0000644000175000017500000001561514302004506024055 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.18 Gas" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A natural gas pipeline (schedule 20 14\"\") is 100 miles long. Inlet pressure is 1300 psia, and outlet pressure is 300 psia.\n", "\n", "The average temperature is 40 deg F. The gas composition is 75% methane, 21% ethane, and 4 % propane.\n", "\n", "Find the flow rate in MMscfd.\n" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:35.269577Z", "iopub.status.busy": "2022-08-22T01:18:35.268489Z", "iopub.status.idle": "2022-08-22T01:18:35.982986Z", "shell.execute_reply": "2022-08-22T01:18:35.982266Z" } }, "outputs": [], "source": [ "from fluids.units import *\n", "from math import pi\n", "P1 = 1300*u.psi\n", "P2 = 300*u.psi\n", "T = 40*u.degF\n", "L = 100*u.miles\n", "\n", "mu = 1.1e-5*u.Pa # \n", "# mu = 1.915E-5*u.Pa # A more correct value, but hinders matching the problem\n", "NPS, Di, Do, t = nearest_pipe(NPS=14, schedule='20')\n", "A = 0.25*pi*Di**2" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:35.987274Z", "iopub.status.busy": "2022-08-22T01:18:35.986908Z", "iopub.status.idle": "2022-08-22T01:18:36.052388Z", "shell.execute_reply": "2022-08-22T01:18:36.051744Z" } }, "outputs": [], "source": [ "from thermo import *\n", "from thermo import PRMIX\n", "Tcs = [190.564, 305.32, 369.83]\n", "Pcs = [4599000.0, 4872000.0, 4248000.0]\n", "omegas = [0.008, 0.098, 0.152]\n", "MWs = [16.04246, 30.06904, 44.09562]\n", "zs = [0.75, 0.21, .04]\n", "MW = sum(zs[i]*MWs[i] for i in range(3))*u.g/u.mol" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:36.058121Z", "iopub.status.busy": "2022-08-22T01:18:36.057128Z", "iopub.status.idle": "2022-08-22T01:18:36.144300Z", "shell.execute_reply": "2022-08-22T01:18:36.143288Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "According to the full isothermal equation, the flowrate is 103.434 MMscfd\n" ] } ], "source": [ "eos_1 = PRMIX(T=T.to(u.K).magnitude, P=P1.to(u.Pa).magnitude, zs=zs, Tcs=Tcs, Pcs=Pcs, omegas=omegas)\n", "eos_2 = PRMIX(T=T.to(u.K).magnitude, P=P2.to(u.Pa).magnitude, zs=zs, Tcs=Tcs, Pcs=Pcs, omegas=omegas)\n", "eos_std = PRMIX(T=288.15, P=101325.0, zs=zs, Tcs=Tcs, Pcs=Pcs, omegas=omegas)\n", "\n", "Vm1 = eos_1.V_g*u.m**3/u.mol\n", "rho1 = (Vm1)**-1*MW\n", "\n", "Vm2 = eos_2.V_g*u.m**3/u.mol\n", "rho2 = (Vm2)**-1*MW\n", "\n", "Vm_std = eos_std.V_g*u.m**3/u.mol\n", "rho_std = (Vm_std)**-1*MW\n", "\n", "roughness = 0.0018*u.inch\n", "\n", "rho = 0.5*(rho1 + rho2)\n", "\n", "v = 10.0 # Initial guess for velocity\n", "Re = rho*v*Di/mu\n", "fd = friction_factor(Re=Re, eD=roughness/Di)\n", "\n", "for i in range(8):\n", " # Solve for velocity with sequential substitution\n", " m = isothermal_gas(rho, fd, P1=P1, P2=P2, L=L, D=Di)\n", " v = m/(A*rho)\n", " Re = rho*v*Di/mu\n", " fd = friction_factor(Re=Re, eD=roughness/Di)\n", "Q = v*A\n", "correction = rho_std/rho\n", "\n", "# pint does not support mmscfd\n", "mmscfd = Q.to(u.ft**3/u.day).magnitude/1e6/correction\n", "print('According to the full isothermal equation, the flowrate is %g MMscfd' %(mmscfd))\n", "# Q.to(u.m**3/u.s)" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:36.197024Z", "iopub.status.busy": "2022-08-22T01:18:36.196520Z", "iopub.status.idle": "2022-08-22T01:18:36.203338Z", "shell.execute_reply": "2022-08-22T01:18:36.201652Z" } }, "outputs": [], "source": [ "# Note Z_avg should be used in the Panhandle and Weymouth equations\n", "# However Crane omits them; they are not used here to match Crane.\n", "Z_avg = 0.5*(eos_1.Z_g + eos_2.Z_g)\n", "MW_air = 28.966*u.g/u.mol\n", "SG = MW/MW_air" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:36.208927Z", "iopub.status.busy": "2022-08-22T01:18:36.208117Z", "iopub.status.idle": "2022-08-22T01:18:36.217679Z", "shell.execute_reply": "2022-08-22T01:18:36.215540Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "According to the Weymouth equation, the flowrate is 105.047 MMscfd\n" ] } ], "source": [ "# Crane does not use the efficiency term on Weymouth\n", "Q_Weymouth = Weymouth(SG, Tavg=T, L=L, D=Di, P1=P1, P2=P2, Zavg=1, E=1)\n", "\n", "mmscfd = Q_Weymouth.to(u.ft**3/u.day).magnitude/1e6\n", "print('According to the Weymouth equation, the flowrate is %g MMscfd' %(mmscfd))" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:36.222990Z", "iopub.status.busy": "2022-08-22T01:18:36.222411Z", "iopub.status.idle": "2022-08-22T01:18:36.230643Z", "shell.execute_reply": "2022-08-22T01:18:36.229533Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "According to the Panhandle A equation, the flowrate is 128.143 MMscfd\n" ] } ], "source": [ "Q_panhandle = Panhandle_A(SG, Tavg=T, L=L, D=Di, P1=P1, P2=P2, Zavg=1, E=0.92)\n", "\n", "mmscfd = Q_panhandle.to(u.ft**3/u.day).magnitude/1e6\n", "print('According to the Panhandle A equation, the flowrate is %g MMscfd' %(mmscfd))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Besides the simplifications Crane makes, the methods are fair approximations. \n", "The values in Crane are 107.8, 105.1, and 128.2 mmscfd respectively. The isothermal calculation employed by Crane is a simplified one, explaining the difference - it does not account for expansion rigorously." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.10 Piping Systems - Steam.ipynb0000644000175000017500000001570414302004506027357 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.10 Piping Systems - Steam" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "40 bar steam, 450 degrees Celsius flows though a 120 m long horizontal 150mm schedule 80 pipe at a rate of\n", "40000 kg/hr. \n", "\n", "There are three 90 degree weld elbows with rc=1.5, \n", "1 fully open class 600 150mm x 100mm venturi class gate valve, one class 600 150 mm class y pattern globe valve with a seat diameter of 90% the inside pipe diameter (disc fully lifted).\n", "\n", "Calculate the pressure drop through the system." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:17:50.955800Z", "iopub.status.busy": "2022-08-22T01:17:50.955129Z", "iopub.status.idle": "2022-08-22T01:17:52.596604Z", "shell.execute_reply": "2022-08-22T01:17:52.595559Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Density = 11.98501086830739 kilogram / meter ** 3\n", "Viscosity = 2.6514891518131366e-05 pascal * second\n" ] } ], "source": [ "from math import *\n", "from fluids.units import *\n", "from thermo.units import Stream\n", "\n", "m = 40000*u.kg/u.hr\n", "T = 450*u.degC\n", "P = 40*u.bar\n", "\n", "steam = Stream('water', T=T, P=P, m=m)\n", "\n", "rho = steam.rho\n", "mu = steam.mu\n", "print('Density = %s' %rho)\n", "print('Viscosity = %s' %mu)" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:17:52.634409Z", "iopub.status.busy": "2022-08-22T01:17:52.633772Z", "iopub.status.idle": "2022-08-22T01:17:52.651526Z", "shell.execute_reply": "2022-08-22T01:17:52.650482Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Crane elbow term = 0.63; calculated = 0.6059161978705982 dimensionless\n", "Crane globe valve term = 1.44; calculated = 7.97131596757772 dimensionless\n", "Crane gate valve term = 1.22; calculated = 1.1715216415679248 dimensionless\n", "Crane friction term = 12.3; calculated = 12.522684773228956 dimensionless\n", "Darcy friction factor = 0.015273501195081586 dimensionless\n", "Pressure drop = 405252.2713149266 pascal\n" ] } ], "source": [ "L = 120*u.m\n", "NPS, D_pipe, Do_pipe, t = nearest_pipe(Do=150*u.mm, schedule='80')\n", "Q = m/rho\n", "v = Q/(pi/4*D_pipe**2)\n", "Re = Reynolds(rho=rho, mu=mu, D=D_pipe, V=v)\n", "fd = friction_factor(Re=Re, eD=0.0018*u.inch/D_pipe)\n", "K_elbow = bend_rounded(Di=D_pipe, angle=90*u.degrees, fd=fd, bend_diameters=1.5)\n", "K_friction = K_from_f(fd=fd, L=L, D=D_pipe)\n", "K_globe_valve = K_globe_valve_Crane(D1=0.9*D_pipe, D2=D_pipe, fd=fd)\n", "# Angle and inside diameter are taken from example 7.4,\n", "K_gate_valve = K_gate_valve_Crane(D1=100*u.mm, D2=D_pipe, angle=13.115*u.degrees, fd=fd)\n", "\n", "K_tot = K_gate_valve + K_globe_valve + 3*K_elbow + K_friction\n", "dP = dP_from_K(K=K_tot, rho=rho, V=v)\n", "\n", "print('Crane elbow term = 0.63; calculated = %s' % (3*K_elbow))\n", "print('Crane globe valve term = 1.44; calculated = %s' % (K_globe_valve))\n", "print('Crane gate valve term = 1.22; calculated = %s' % (K_gate_valve))\n", "print('Crane friction term = 12.3; calculated = %s' % (K_friction))\n", "print('Darcy friction factor = %s' %fd)\n", "print('Pressure drop = %s' %dP.to(u.Pa))" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "This compares terribly to the example, which calculates a pressure drop of 274800 Pa!\n", "\n", "Two errors are apparent - their example uses a different coefficient (55) in the globe valve pressure drop equation than that shown in their appendix (340); and they re-use their prior calculated gate valve, despite the friction factor being different in this example.\n", "This, plus their use of a constant 0.015 friction factor, explains the difference. \n", "\n", "The example below uses their calculated globe valve pressure drop and their friction factor. The result (268500 Pa) compares well with their calculation; the additional decimals and better physical properties explain the rest. " ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:17:52.657521Z", "iopub.status.busy": "2022-08-22T01:17:52.656769Z", "iopub.status.idle": "2022-08-22T01:17:52.674097Z", "shell.execute_reply": "2022-08-22T01:17:52.672923Z" }, "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Crane elbow term = 0.63; calculated = 0.5988647407128814 dimensionless\n", "Crane globe valve term = 1.44; calculated = 1.44\n", "Crane gate valve term = 1.22; calculated = 1.1614815235317342 dimensionless\n", "Crane friction term = 12.3; calculated = 12.29844219732167 dimensionless\n", "Darcy friction factor = 0.015\n", "Pressure drop = 282016.77247066115 pascal\n" ] } ], "source": [ "L = 120*u.m\n", "NPS, D_pipe, Do_pipe, t = nearest_pipe(Do=150*u.mm, schedule='80')\n", "Q = m/rho\n", "v = Q/(pi/4*D_pipe**2)\n", "Re = Reynolds(rho=rho, mu=mu, D=D_pipe, V=v)\n", "fd = 0.015\n", "K_elbow = bend_rounded(Di=D_pipe, angle=90*u.degrees, fd=fd, bend_diameters=1.5)\n", "K_friction = K_from_f(fd=fd, L=L, D=D_pipe)\n", "K_globe_valve = 1.44\n", "# Angle and inside diameter are taken from example 7.4,\n", "K_gate_valve = K_gate_valve_Crane(D1=100*u.mm, D2=D_pipe, angle=13.115*u.degrees, fd=fd)\n", "\n", "K_tot = K_gate_valve + K_globe_valve + 3*K_elbow + K_friction\n", "dP = dP_from_K(K=K_tot, rho=rho, V=v)\n", "\n", "print('Crane elbow term = 0.63; calculated = %s' % (3*K_elbow))\n", "print('Crane globe valve term = 1.44; calculated = %s' % (K_globe_valve))\n", "print('Crane gate valve term = 1.22; calculated = %s' % (K_gate_valve))\n", "print('Crane friction term = 12.3; calculated = %s' % (K_friction))\n", "print('Darcy friction factor = %s' %fd)\n", "print('Pressure drop = %s' %dP.to(u.Pa))" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 0 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.19 Water.ipynb0000644000175000017500000000760514302004506024426 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.19 Water" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Water at 60 deg F flows from a reservoir through a piping system according to a diagram in the book. The reservoir has a head of 11.5 feet.\n", "\n", "The system is:\n", "\n", " entrance\n", " \n", " 3\" miter bend\n", " \n", " standard gate valve open\n", " \n", " 10 feet of 3 inch pipe (sched 40)\n", " \n", " sudden contraction\n", " \n", " 20 feet of 2 inch pipe (sched 40)\n", " \n", " exit\n", "\n", "Find the flow rate in gallons/minute." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:18:40.649610Z", "iopub.status.busy": "2022-08-22T01:18:40.648892Z", "iopub.status.idle": "2022-08-22T01:18:41.359102Z", "shell.execute_reply": "2022-08-22T01:18:41.358117Z" } }, "outputs": [ { "data": { "text/html": [ "136.70828839615876 gallon/minute" ], "text/latex": [ "$136.70828839615876\\ \\frac{\\mathrm{gallon}}{\\mathrm{minute}}$" ], "text/plain": [ "136.70828839615876 " ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from fluids.units import *\n", "from math import pi\n", "L1 = 10*u.foot\n", "L2 = 20*u.foot\n", "\n", "dH = 11.5*u.foot\n", "\n", "mu = 1.1*u.cP\n", "rho = 62.364*u.lb/u.ft**3\n", "\n", "NPS1, Di1, Do1, t1 = nearest_pipe(NPS=3, schedule='40')\n", "NPS2, Di2, Do2, t2 = nearest_pipe(NPS=2, schedule='40')\n", "\n", "A1 = 0.25*pi*Di1**2\n", "A2 = 0.25*pi*Di2**2\n", "\n", "ft1 = ft_Crane(Di1)\n", "ft2 = ft_Crane(Di2)\n", "\n", "roughness = 0.0018*u.inch\n", "\n", "dP = rho*dH*1*u.gravity\n", "\n", "fd1 = fd2 = 0.018 # assumed; solve with sequential substitution\n", "# Take the 3\" diameter as the reference for K\n", "for i in range(10):\n", " K_entrance = entrance_sharp(method='Crane')\n", " K_exit = change_K_basis(exit_normal(), 2*u.inch, 3*u.inch)\n", " K_gate = K_gate_valve_Crane(D1=Di1, D2=Di1, angle=0.0*u.degrees)\n", " K_elbow = bend_miter(Di=Di1, angle=90*u.degrees, method='Crane')\n", " K_contraction = change_K_basis(contraction_conical_Crane(3*u.inch, 2*u.inch, l=0*u.m), 2*u.inch, 3*u.inch)\n", "\n", " K_tot = K_entrance + K_elbow + K_gate + K_exit + K_contraction\n", " K_f1 = K_from_f(fd=fd1, L=L1, D=Di1)\n", " K_f2 = change_K_basis(K_from_f(fd=fd2, L=L2, D=Di2), 2*u.inch, 3*u.inch) \n", " K_tot += K_f1 + K_f2\n", " \n", " K_tot_basis2 = change_K_basis(K_tot, 3*u.inch, 2*u.inch)\n", " \n", " v1 = (2*dP/(K_tot*rho))**0.5\n", " v2 = (2*dP/(K_tot_basis2*rho))**0.5\n", "\n", " Re1 = rho*v1*Di1/mu\n", " Re2 = rho*v2*Di2/mu\n", " fd1 = friction_factor(Re=Re1, eD=roughness/Di1)\n", " fd2 = friction_factor(Re=Re2, eD=roughness/Di2)\n", "\n", "Q = A1*v1\n", "Q.to(u.gal/u.min)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The solution given in Crane where they also perform iterations is 137 gal/min." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.34 Pump Power and Operating Cost.ipynb0000644000175000017500000000460514302004506030661 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.34 Pump Power and Operating Cost" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Given a pump provides 428 feet of head, pumps 700 gpm of 60 deg F water.\n", "The efficiencies of the pump, motor, and VSD are as follows: 70.7%, 95%, 96%.\n", "\n", "Find the brake horsepower, electrical horsepower, and the operating cost (on an 8000 hour/year basis) given a power cost of $0.12/kWhr." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:05.047233Z", "iopub.status.busy": "2022-08-22T01:20:05.046764Z", "iopub.status.idle": "2022-08-22T01:20:05.709670Z", "shell.execute_reply": "2022-08-22T01:20:05.709030Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "The brake power is 107.05591309130916 horsepower\n", "The power is 117.38586961766357 horsepower\n", "The cost is $84033.24278348622 dimensionless dollars/year\n" ] } ], "source": [ "from fluids.units import *\n", "rho = 62.364*u.lb/u.ft**3\n", "head = 428*u.foot\n", "Q = 700*u.gal/u.min\n", "pump_efficiency = 0.707\n", "total_efficiency = .707*.95*.96\n", "dP = head*rho*u.gravity\n", "\n", "# unfortunately pint does not support currency, so we keep it dimensionless\n", "rate = 0.12/(u.kW*u.hour)\n", "\n", "bhp = Q*dP/pump_efficiency\n", "print('The brake power is %s' %(bhp.to(u.hp)))\n", "power = Q*dP/total_efficiency\n", "print('The power is %s' %(power.to(u.hp)))\n", "cost = power*rate\n", "cost = (cost*8000*u.hour).to_base_units()\n", "print('The cost is $%s dollars/year' %(cost))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The value given in Crane is $83970." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.23 Flow Through Orifice Meters.ipynb0000644000175000017500000000765414302004506030434 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.23 Flow Through Orifice Meters" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A square edged orifice of 2\" diameter is installed in a 4\" schedule 40 pipe. A mercury manometer is connected between standard taps 1D upstream and 0.5D downstream.\n", "\n", "a) Find the theoretical calibration constant for the meter when 60 deg F water flows through the pipe in the fully turbulent region. \n", "\n", "b) Find the flow rate of 60 deg F water when the mercury deflection is 4.4\"" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:10.017200Z", "iopub.status.busy": "2022-08-22T01:19:10.016665Z", "iopub.status.idle": "2022-08-22T01:19:10.767440Z", "shell.execute_reply": "2022-08-22T01:19:10.766514Z" } }, "outputs": [], "source": [ "from fluids.units import *\n", "P1 = 2*u.bar # assumed\n", "T = 60*u.degF\n", "NPS, D_pipe, Do_pipe, t = nearest_pipe(NPS=4, schedule=40)\n", "mu = 1.1e-3*u.Pa*u.s # viscosity of water\n", "rho = 62.364*u.lb/u.ft**3 # density of water\n", "Do = 2*u.inch" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:10.773014Z", "iopub.status.busy": "2022-08-22T01:19:10.772327Z", "iopub.status.idle": "2022-08-22T01:19:10.794033Z", "shell.execute_reply": "2022-08-22T01:19:10.792966Z" } }, "outputs": [ { "data": { "text/html": [ "105.73900650508152 gallon/minute" ], "text/latex": [ "$105.73900650508152\\ \\frac{\\mathrm{gallon}}{\\mathrm{minute}}$" ], "text/plain": [ "105.73900650508152 " ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# b)\n", "dP = (4.4*u.inch_Hg - 4.4*u.inch_H2O_60F)\n", "P2 = P1 - dP\n", "m = differential_pressure_meter_solver(D=D_pipe, rho=rho, mu=mu, k=1e20, D2=Do, P1=P1, P2=P2, \n", " meter_type='ISO 5167 orifice', taps='D and D/2')\n", "Q = (m/rho).to(u.gal/u.min)\n", "Q" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:10.816112Z", "iopub.status.busy": "2022-08-22T01:19:10.815722Z", "iopub.status.idle": "2022-08-22T01:19:10.823909Z", "shell.execute_reply": "2022-08-22T01:19:10.822460Z" } }, "outputs": [ { "data": { "text/plain": [ "(0.6067029339232126 ,\n", " 0.6260667537160854 )" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# a)\n", "C, _ = differential_pressure_meter_C_epsilon(D=D_pipe, rho=rho, m=m, mu=mu, k=1e20, D2=Do, P1=P1, P2=P2,\n", " meter_type='ISO 5167 orifice', taps='D and D/2')\n", "C, flow_coefficient(D_pipe, Do, C)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Crane TP 410 reports a flow coefficient of 0.625 and a flow rate of 106 gal/min, indicating the problem benefited from the iteration little." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } ././@LongLink0000644000000000000000000000015500000000000011604 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.35 Hydraulic Resistance of a Converging Tee.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.35 Hydraulic Resistance of a Converging T0000644000175000017500000000623414302004506031260 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.35 Hydraulic Resistance of a Converging Tee" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A 4\" schedule 40 tee with equal leg diameters has 300 gpm of water at 60 deg F flowing into a straight leg, and 100 gpm converging in from the 90 degree branch leg.\n", "\n", "Find the loss coefficients for the straight leg and the branch leg, and the head loss across each flow path." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:09.501010Z", "iopub.status.busy": "2022-08-22T01:20:09.500454Z", "iopub.status.idle": "2022-08-22T01:20:10.222183Z", "shell.execute_reply": "2022-08-22T01:20:10.221288Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "The combined velocity is 10.081042597997012 foot / second\n", "The branch loss coefficient is -0.0421875 dimensionless\n", "The run loss coefficient is 0.325 dimensionless\n", "The branch head loss is -0.06662833817657396 foot\n", "The run head loss is 0.5132849755824956 foot\n" ] } ], "source": [ "from fluids.units import *\n", "from math import pi\n", "NPS, Di, Do, t = nearest_pipe(NPS=4, schedule='40')\n", "\n", "A = 0.25*pi*Di**2\n", "beta = 1 # same diameters\n", "\n", "rho = 998*u.kg/u.m**3\n", "\n", "Q_tot = 400*u.gal/u.min\n", "Q_main = 300*u.gal/u.min\n", "Q_leg = 100*u.gal/u.min\n", "\n", "v_combined = Q_tot/A\n", "print('The combined velocity is %s' %(v_combined.to(u.ft/u.s)))\n", "branch_flow_ratio = Q_leg/Q_tot\n", "\n", "v_main = Q_main/A\n", "v_leg = Q_leg/A\n", "\n", "K_branch = K_branch_converging_Crane(D_run=Di, D_branch=Di, Q_run=Q_main, Q_branch=Q_leg, angle=90.0*u.degrees)\n", "print('The branch loss coefficient is %s' %(K_branch))\n", "K_run = K_run_converging_Crane(D_run=Di, D_branch=Di, Q_run=Q_main, Q_branch=Q_leg, angle=90.0*u.degrees)\n", "print('The run loss coefficient is %s' %(K_run))\n", "\n", "head_loss_branch = 0.5*rho*v_combined**2*K_branch/(1*u.gravity*rho)\n", "print('The branch head loss is %s' %(head_loss_branch.to(u.ft)))\n", "\n", "head_loss_run = 0.5*rho*v_combined**2*K_run/(1*u.gravity*rho)\n", "print('The run head loss is %s' %(head_loss_run.to(u.ft)))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The values presented in crane match very nearly exactly; this type of a problem does not require any iteration, unless the density of the fluid is variable." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.32 NPSH Available Calculation.ipynb0000644000175000017500000000571214302004506030164 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.32 NPSH Available Calculation" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Given that a pump is located 30 feet above sea level, has a NPSHr of 20' at a flow rate of 400 gpm, and is fed by a tank of 60 deg F water with a surface pressure of 5 psig and a liquid level 25' below the suction of the pump.\n", "\n", "The head losses in the suction pipeline are 6'.\n", "\n", "Find the NPSH available and compare it to the NPSHr. A NPSHr margin ratio is required." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:55.702016Z", "iopub.status.busy": "2022-08-22T01:19:55.701428Z", "iopub.status.idle": "2022-08-22T01:19:56.392261Z", "shell.execute_reply": "2022-08-22T01:19:56.391455Z" } }, "outputs": [ { "data": { "text/html": [ "13.887316780096477 foot" ], "text/latex": [ "$13.887316780096477\\ \\mathrm{foot}$" ], "text/plain": [ "13.887316780096477 " ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from fluids.units import *\n", "rho = 62.364*u.lb/u.ft**3\n", "P_tank = 5*u.psi + 1*u.atm\n", "Psat = 0.256*u.psi\n", "H_tank = 5*u.foot\n", "H_pipe = 30*u.foot\n", "dH = H_pipe - H_tank\n", "\n", "head_loss = 6*u.foot\n", "\n", "NPSHa = ((P_tank-Psat)/rho/u.gravity) - dH - head_loss\n", "(NPSHa).to(u.foot)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The NPSHa is beneath the NPSHr. The requested pressure can be calculated as follows:" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:56.416147Z", "iopub.status.busy": "2022-08-22T01:19:56.415709Z", "iopub.status.idle": "2022-08-22T01:19:56.422712Z", "shell.execute_reply": "2022-08-22T01:19:56.421733Z" } }, "outputs": [ { "data": { "text/html": [ "26.0 foot" ], "text/latex": [ "$26.0\\ \\mathrm{foot}$" ], "text/plain": [ "26.0 " ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "20*u.foot*1.3" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.11 Flat heating Coils - Water.ipynb0000644000175000017500000000656714302004506030042 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "# 7.11 Flat heating Coils - Water" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Water at 80 degrees Celsius flows through a flat heating coil at a rate of 60 L/min. There are 7 180 degree bends in it. The coil is 8 m long, with 0.5 m of straight length on the inlet and exit. The r/D of the bends is 4. The pipe is schedule 40, 25 mm pipe." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:17:57.180998Z", "iopub.status.busy": "2022-08-22T01:17:57.180407Z", "iopub.status.idle": "2022-08-22T01:17:58.787805Z", "shell.execute_reply": "2022-08-22T01:17:58.786908Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Pressure drop = 18501.7753353607 pascal\n" ] } ], "source": [ "from math import *\n", "from fluids.units import *\n", "from thermo.units import Chemical\n", "\n", "water = Chemical('water', P=2*u.bar, T=80*u.degC) # P assumed\n", "rho = water.rho\n", "mu = water.mu\n", "\n", "Q = 60*u.L/u.min\n", "L = (1*8 + 0.5*2)*u.m\n", "\n", "NPS, D_pipe, Do_pipe, t = nearest_pipe(Di=25*u.mm)\n", "v = Q/(pi/4*D_pipe**2)\n", "Re = Reynolds(rho=rho, mu=mu, D=D_pipe, V=v)\n", "fd = friction_factor(Re=Re, eD=0.0018*u.inch/D_pipe)\n", "\n", "K_elbow = bend_rounded(Di=D_pipe, angle=180*u.degrees, fd=fd, bend_diameters=5)\n", "K_friction = K_from_f(fd=fd, L=L, D=D_pipe)\n", "\n", "K_tot = 7*K_elbow + K_friction\n", "dP = dP_from_K(K=K_tot, rho=rho, V=v)\n", "print('Pressure drop = %s' %dP.to(u.Pa))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The value presented in the solution is 19609 Pa. They chose a constant friction factor of 0.024 in this calculation. If this were used, the result compares much better. Their friction factor can be obtained at a roughness of 0.05 mm." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:17:58.817942Z", "iopub.status.busy": "2022-08-22T01:17:58.817348Z", "iopub.status.idle": "2022-08-22T01:17:58.826574Z", "shell.execute_reply": "2022-08-22T01:17:58.825198Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Pressure drop = 18539.73002741304 pascal\n" ] } ], "source": [ "fd = 0.024\n", "K_elbow = bend_rounded(Di=D_pipe, angle=180*u.degrees, fd=fd, bend_diameters=5)\n", "K_friction = K_from_f(fd=fd, L=L, D=D_pipe)\n", "\n", "K_tot = 7*K_elbow + K_friction\n", "dP = dP_from_K(K=K_tot, rho=rho, V=v)\n", "print('Pressure drop = %s' %dP.to(u.Pa))" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.30 Nozzle Sizing Calculations.ipynb0000644000175000017500000001251114302004506030434 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.30 Nozzle Sizing Calculations" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Objective: Size a long-radius venturi nozzle flow meter" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A system is designed with a flow rate of 225 gpm of water at 60 F flowing through 6\" schedule 40 pipe. A long-radius nozzle flow has been requested. A measured head loss of 4 feet is the design measurement, with 1D upstream and 1/2D downstream taps.\n", "\n", "Find the required diameter of the nozzle." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:50.932222Z", "iopub.status.busy": "2022-08-22T01:19:50.931516Z", "iopub.status.idle": "2022-08-22T01:19:51.573920Z", "shell.execute_reply": "2022-08-22T01:19:51.573184Z" } }, "outputs": [], "source": [ "from fluids.units import *\n", "from math import pi\n", "\n", "mu = 1.1*u.cP\n", "rho = 62.364*u.lb/u.ft**3\n", "\n", "NPS, Di, Do, t = nearest_pipe(NPS=6, schedule='40')\n", "A = 0.25*pi*Di*Di\n", "\n", "dP = 4*u.feet_H2O\n", "\n", "P1 = 10*u.bar # assumed, not very important\n", "P2 = P1 - dP\n", "k = 1.3 # not important\n", "\n", "Q = 225*u.gal/u.min\n", "m = Q*rho" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:51.577971Z", "iopub.status.busy": "2022-08-22T01:19:51.577467Z", "iopub.status.idle": "2022-08-22T01:19:51.587280Z", "shell.execute_reply": "2022-08-22T01:19:51.586326Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Nozzle diameter found to be 2.405956560384601 inch.\n" ] } ], "source": [ "Do = differential_pressure_meter_solver(D=Di, rho=rho, mu=mu, k=k, P1=P1, P2=P2, \n", " m=m, meter_type='long radius nozzle', \n", " taps='D')\n", "print('Nozzle diameter found to be %s.' %(Do.to(u.inch)))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The solution given in Crane is 2.40 inches after two iterations and has an error of 0.4 gpm, whereas the answer above has almost zero theoretical error." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.31 NPRD Calculations" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The Non-recoverable pressure drop (NRPD) is the permanent pressure drop associated with the flow through the measurement device.\n", "Find the NPRD for example 7.30." ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:51.609469Z", "iopub.status.busy": "2022-08-22T01:19:51.609123Z", "iopub.status.idle": "2022-08-22T01:19:51.622403Z", "shell.execute_reply": "2022-08-22T01:19:51.621798Z" } }, "outputs": [ { "data": { "text/html": [ "0.983900143257091 dimensionless" ], "text/latex": [ "$0.983900143257091\\ dimensionless$" ], "text/plain": [ "0.983900143257091 " ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "C, epsilon = differential_pressure_meter_C_epsilon(D=Di, D2=Do, m=m, P1=P1, P2=P2, rho=rho, mu=mu, k=k,\n", " meter_type='long radius nozzle')\n", "C" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:51.626068Z", "iopub.status.busy": "2022-08-22T01:19:51.625854Z", "iopub.status.idle": "2022-08-22T01:19:51.633655Z", "shell.execute_reply": "2022-08-22T01:19:51.632808Z" } }, "outputs": [ { "data": { "text/html": [ "1.2691031737597416 pound_force_per_square_inch" ], "text/latex": [ "$1.2691031737597416\\ \\mathrm{pound\\_force\\_per\\_square\\_inch}$" ], "text/plain": [ "1.2691031737597416 " ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "dP = differential_pressure_meter_dP(D=Di, D2=Do, P1=P1, P2=P2, C=C, \n", " meter_type='long radius nozzle')\n", "\n", "dP.to(u.psi)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The solution given in Crane is 1.272 psi." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.24 Laminar Flow.ipynb0000644000175000017500000001357514302004506025616 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.24 Laminar Flow" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Objective: Rate an orifice plate in laminar flow" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Problem statement: calculate the Reynolds number to determine the type of fluid\n", " \n", "Given: S.A.E. 10W oil flows through a 3\" schedule 40 pipe. It has a measured delta P of 0.4 psi. The orifice plate has a 2.15\" diameter bore, and is a standard sharp-edged orifice. Find the flow rate through the orifice in gallons/minute." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:15.194395Z", "iopub.status.busy": "2022-08-22T01:19:15.193815Z", "iopub.status.idle": "2022-08-22T01:19:15.874009Z", "shell.execute_reply": "2022-08-22T01:19:15.873122Z" } }, "outputs": [], "source": [ "from fluids.units import *\n", "from math import pi\n", "\n", "NPS, Di, Do, t = nearest_pipe(NPS=3, schedule='40')\n", "A = 0.25*pi*Di*Di\n", "D2 = 2.15*u.inch\n", "mu = 40*u.cP # given\n", "rho = 53.6*u.lb/u.ft**3\n", "\n", "# Assume an absolute pressure of 5 bar.\n", "dP = 0.4*u.psi\n", "P1 = 5*u.bar\n", "P2 = P1-dP\n", "k = 1.3 # assumed\n" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:15.878699Z", "iopub.status.busy": "2022-08-22T01:19:15.878258Z", "iopub.status.idle": "2022-08-22T01:19:15.896728Z", "shell.execute_reply": "2022-08-22T01:19:15.895727Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Flow rate is: 88.00974933637421 gallon / minute\n" ] }, { "data": { "text/html": [ "1947.5090707193106 dimensionless" ], "text/latex": [ "$1947.5090707193106\\ dimensionless$" ], "text/plain": [ "1947.5090707193106 " ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# First calculate the orifice with the standard formula\n", "m = differential_pressure_meter_solver(D=Di, rho=rho, mu=mu, k=k, D2=D2, P1=P1, P2=P2, \n", " m=None, meter_type='ISO 5167 orifice', \n", " taps='corner')\n", "Q = (m/rho).to_base_units()\n", "print('Flow rate is: %s'% Q.to(u.gal/u.min))\n", "v = Q/A\n", "Re = rho*v*Di/mu\n", "Re.to_base_units()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Because the flow rate is laminar, outside the range of the ISO formula, we turn to another set of data - a set of CFD results developed for laminar flow by Hollingshead." ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:15.921986Z", "iopub.status.busy": "2022-08-22T01:19:15.921028Z", "iopub.status.idle": "2022-08-22T01:19:16.051818Z", "shell.execute_reply": "2022-08-22T01:19:16.050451Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Flow rate is: 77.16025233085325 gallon / minute\n" ] }, { "data": { "text/html": [ "1707.4277843809423 dimensionless" ], "text/latex": [ "$1707.4277843809423\\ dimensionless$" ], "text/plain": [ "1707.4277843809423 " ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# First calculate the orifice with the standard formula\n", "m = differential_pressure_meter_solver(D=Di, rho=rho, mu=mu, k=k, D2=D2, P1=P1, P2=P2, \n", " m=None, meter_type='Hollingshead orifice')\n", "Q = (m/rho).to_base_units()\n", "print('Flow rate is: %s'% Q.to(u.gal/u.min))\n", "v = Q/A\n", "Re = rho*v*Di/mu\n", "Re.to_base_units()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The answer given in Crane is that a calibration for the meter must be provided. They assume a `C` of 0.75. The value of `C` according to Hollingshead is below." ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:16.058788Z", "iopub.status.busy": "2022-08-22T01:19:16.057308Z", "iopub.status.idle": "2022-08-22T01:19:16.070264Z", "shell.execute_reply": "2022-08-22T01:19:16.068973Z" } }, "outputs": [ { "data": { "text/html": [ "0.7156763185721802 dimensionless" ], "text/latex": [ "$0.7156763185721802\\ dimensionless$" ], "text/plain": [ "0.7156763185721802 " ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "differential_pressure_meter_C_epsilon(D=Di, D2=D2, m=m, P1=P1, P2=P2, rho=rho, mu=mu, k=k, \n", " meter_type='Hollingshead orifice')[0]" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.6 Reduced Port Ball Valve.ipynb0000644000175000017500000001133414302004506027423 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.6 Reduced Port Ball Valve" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Water is discharged at 15 degrees Celsius from a tank with 7 m of head to atmosphere through:\n", "\n", "* 60 meters of 80 mm schedule 40 pipe\n", "* Six 80 mm standard 90 degree threaded elbows\n", "* One 80 mm flanged ball valve, with a 60 mm diameter seat, 16 degree conical inlet and 30 degree conical outlet.\n", "* The entrance is sharp-edged and flush with the tank" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:33.275308Z", "iopub.status.busy": "2022-08-22T01:20:33.274803Z", "iopub.status.idle": "2022-08-22T01:20:34.692212Z", "shell.execute_reply": "2022-08-22T01:20:34.691311Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Velocity = 2.770041323755228 meter / second\n", "Flow rate = 792.5474399133158 liter / minute\n" ] } ], "source": [ "from thermo.units import Chemical\n", "from fluids.units import *\n", "from math import pi\n", "water = Chemical('water', T=15*u.degC)\n", "rho = water.rho\n", "mu = water.mu\n", "\n", "H = 7*u.m\n", "L = 60*u.m\n", "fd = 0.017 # assumed in their example\n", "NPS, D_pipe, Do_pipe, t = nearest_pipe(Do=80*u.mm)\n", "\n", "K = K_from_f(fd=fd, L=L, D=D_pipe)\n", "K += entrance_sharp()\n", "K += exit_normal()\n", "K += 6*bend_rounded(D_pipe, angle=90*u.degrees, fd=fd, bend_diameters=0.65)\n", "ball_valve_angle = 0.5*(15+30)*u.degrees # use the average angle\n", "K += K_ball_valve_Crane(D1=D_pipe, D2=60*u.mm, angle=ball_valve_angle, fd=fd)\n", "\n", "v = (2*u.gravity*H/K)**0.5\n", "print('Velocity = %s' %v.to_base_units())\n", "Q = v*pi/4*D_pipe**2\n", "print('Flow rate = %s' %Q.to(u.L/u.min))\n", "Re = Reynolds(D=D_pipe, rho=rho, mu=mu, V=v)\n", "fd = friction_factor(Re=Re, eD=0.0018*u.inch/D_pipe)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The radius of curvature of the elbows was not specified; 0.65 bend diameters matches their results most closely. They modified the ball valve equation to support both an inlet and an outlet angle; the average value is used here.\n", "\n", "Their calculated values are 2.74 m/s and flow rate of 781 L/min.\n", "\n", "The calculation can be performed more accurately by iterating; a naive approach is shown below. A very different flow rate is obtained when the roughness of the pipe is considered in the friction factor calculation." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:34.719257Z", "iopub.status.busy": "2022-08-22T01:20:34.718466Z", "iopub.status.idle": "2022-08-22T01:20:34.737229Z", "shell.execute_reply": "2022-08-22T01:20:34.736310Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Flow rate = 792.5474399133158 liter / minute\n", "Flow rate = 748.2664116002655 liter / minute\n", "Flow rate = 746.5628913428789 liter / minute\n", "Flow rate = 746.4941928055326 liter / minute\n", "Flow rate = 746.4914172120895 liter / minute\n", "Flow rate = 746.491305062719 liter / minute\n", "Flow rate = 746.4913005312487 liter / minute\n" ] } ], "source": [ "fd = 0.017\n", "for i in range(7):\n", " K = K_from_f(fd=fd, L=L, D=D_pipe)\n", " K += entrance_sharp()\n", " K += exit_normal()\n", " K += 6*bend_rounded(D_pipe, angle=90*u.degrees, fd=fd, bend_diameters=0.65)\n", " ball_valve_angle = 0.5*(15+30)*u.degrees # use the average angle\n", " K += K_ball_valve_Crane(D1=D_pipe, D2=60*u.mm, angle=ball_valve_angle, fd=fd)\n", "\n", " v = (2*u.gravity*H/K)**0.5\n", " Q = v*pi/4*D_pipe**2\n", " print('Flow rate = %s' %Q.to(u.L/u.min))\n", " Re = Reynolds(D=D_pipe, rho=rho, mu=mu, V=v)\n", " fd = friction_factor(Re=Re, eD=0.0018*u.inch/D_pipe)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } ././@LongLink0000644000000000000000000000015500000000000011604 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.22 Compressible Fluids at Subsonic Velocity.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.22 Compressible Fluids at Subsonic Veloci0000644000175000017500000001062314302004506031403 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.22 Compressible Fluids at Subsonic Velocity" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Given that air is at a pressure of 19.3 psig and a temperature of 100 deg F and is flowing out of a 1/2\" schedule 80 pipe into the atmosphere.\n", "Find the flow rate of air in standard cubic feet per hour." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:24:17.076730Z", "iopub.status.busy": "2022-08-22T01:24:17.076238Z", "iopub.status.idle": "2022-08-22T01:24:17.629300Z", "shell.execute_reply": "2022-08-22T01:24:17.628609Z" } }, "outputs": [], "source": [ "from fluids.units import *\n", "from math import pi\n", "dP = 19.3*u.psi\n", "P = dP + 1*u.atm\n", "P2 = 1*u.atm\n", "T = 100*u.degF\n", "L = 10*u.foot\n", "NPS, D_pipe, Do_pipe, t = nearest_pipe(NPS=0.5, schedule=80)\n", "A = 0.25*pi*D_pipe**2\n", "\n", "fd = 0.0275 # assumed, initial guess\n", "mu = 1.8e-8*u.Pa*u.s" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:24:17.634640Z", "iopub.status.busy": "2022-08-22T01:24:17.634109Z", "iopub.status.idle": "2022-08-22T01:24:17.691289Z", "shell.execute_reply": "2022-08-22T01:24:17.690124Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Ratio of actual to standard flow: 0.4663198131346627\n", "Air density: 2.6183038705121247 kilogram / meter ** 3\n" ] } ], "source": [ "# Take nitrogen-oxygen as air, and find the density and ratio\n", "from chemicals import Vm_to_rho\n", "from thermo import PRMIX\n", "zs = [0.79, 0.21]\n", "Tcs = [126.2, 154.58]\n", "Pcs = [3394387.5, 5042945.25]\n", "omegas = [0.04, 0.021]\n", "MWs = [28.0134, 31.9988]\n", "MW = sum(MWs[i]*zs[i] for i in range(2))\n", "\n", "eos_flowing = PRMIX(T=(T).to(u.K).magnitude, P=P.to(u.Pa).magnitude, zs=zs, Tcs=Tcs, Pcs=Pcs, omegas=omegas)\n", "eos_std = PRMIX(T=288.15, P=101325.0, zs=zs, Tcs=Tcs, Pcs=Pcs, omegas=omegas)\n", "V_ratio = eos_flowing.V_g/eos_std.V_g\n", "print('Ratio of actual to standard flow: %s' %(V_ratio))\n", "\n", "rho = Vm_to_rho(eos_flowing.V_g, MW)*u.kg/u.m**3\n", "print('Air density: %s' %(rho))" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:24:17.717093Z", "iopub.status.busy": "2022-08-22T01:24:17.716628Z", "iopub.status.idle": "2022-08-22T01:24:17.782653Z", "shell.execute_reply": "2022-08-22T01:24:17.781967Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Flow rate = 3773.572213074693 foot ** 3 / hour\n" ] } ], "source": [ "for i in range(5):\n", " # Problem says to consider 1 exit, and compressible friction\n", " K = K_from_f(fd=fd, L=L, D=D_pipe)\n", " K += exit_normal()\n", " # lump the two losses together for the `isothermal_gas` function\n", " fd_tot = f_from_K(L=L, D=D_pipe, K=K)\n", " m = isothermal_gas(rho=rho, fd=fd_tot, P1=P, P2=P2, L=L, D=D_pipe)\n", " Q = m/rho\n", " v = Q/A\n", " # update frictoin factor\n", " Re = Reynolds(D=D_pipe, rho=rho, mu=mu, V=v)\n", " fd = friction_factor(Re=Re, eD=0.0018*u.inch/D_pipe)\n", " Q_std = Q/V_ratio\n", "print('Flow rate = %s' %(Q_std.to(u.ft**3/u.hour)))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The solution given in Crane is 3762 scfh. The solution there uses a simpler formula and does not iterate to converge the friction factor." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } ././@LongLink0000644000000000000000000000016700000000000011607 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.3 L, L over D, K, and Kv for Conventional Type Valves.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.3 L, L over D, K, and Kv for Conventional0000644000175000017500000000455014302004506030432 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.3 L, L over D, K, and Kv for Conventional Type Valves" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "A 100 mm class 600 steel angle valve, has a full area seat.\n", "\n", "Calculate its resistance coefficient K, flow coefficient Kv, the equivalent length of it L/D, and the length for complete turbulent L." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:20:19.283224Z", "iopub.status.busy": "2022-08-22T01:20:19.282703Z", "iopub.status.idle": "2022-08-22T01:20:19.972195Z", "shell.execute_reply": "2022-08-22T01:20:19.971213Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Loss coefficient = 2.4729637821072443 dimensionless\n", "Valve flow coefficient = 240.31652930826877 meter ** 3 / hour\n", "Equivalent length = 149.8765928549845 dimensionless\n", "Length for complete turbulence = 14.568004825504492 meter\n" ] } ], "source": [ "from fluids.units import *\n", "NPS, Di, Do, t = nearest_pipe(Do=0.103*u.m, schedule='80')\n", "fd = 0.0165 # provided - note equivalent length is proportional to this value\n", "d = 0.0972*u.m # diameter of seat\n", "K = K_angle_valve_Crane(D1=d, D2=Di, fd=fd, style=1)\n", "Kv = K_to_Kv(K, d)\n", "L_D = L_equiv_from_K(K, fd)\n", "L = L_D*d\n", "\n", "print('Loss coefficient = %s' %K)\n", "print('Valve flow coefficient = %s' %Kv)\n", "print('Equivalent length = %s' % L_D)\n", "print('Length for complete turbulence = %s' %L)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The values given in the solution are K=2.475, Kv = 240.2, L/D=150, and L = 14.6." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } ././@LongLink0000644000000000000000000000021000000000000011574 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.25 Rectangular Duct - Application of Hydraulic Radius to Flow Problems.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.25 Rectangular Duct - Application of Hydr0000644000175000017500000001057114302004506031161 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.25 Rectangular Duct - Application of Hydraulic Radius to Flow Problems" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Given a rectangular concrete overflow aqueduct is 25 feet high and 16.5 feed wide. Its roughness is 0.01 feet. \n", "The height of the water in the reservoir is 200 feet, and the length of the aqueduct is 1000 feet.\n", "\n", "Find the discharge rate (ft^3/s)." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:20.547517Z", "iopub.status.busy": "2022-08-22T01:19:20.546922Z", "iopub.status.idle": "2022-08-22T01:19:21.200811Z", "shell.execute_reply": "2022-08-22T01:19:21.200103Z" } }, "outputs": [], "source": [ "from fluids.units import *\n", "from math import pi\n", "rho = 62.364*u.lb/u.ft**3\n", "mu = 1.1*u.cP\n", "\n", "W = 16.5*u.foot\n", "Hw = 25*u.foot\n", "A = W*Hw\n", "Pw = Hw*2 + W*2\n", "\n", "Rh = A/Pw\n", "Dh = 4.0*Rh\n", "\n", "eD = .01*u.foot/Dh\n", "H = 200*u.foot\n", "L = 1000*u.foot" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:21.205862Z", "iopub.status.busy": "2022-08-22T01:19:21.205472Z", "iopub.status.idle": "2022-08-22T01:19:21.222629Z", "shell.execute_reply": "2022-08-22T01:19:21.221473Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Flow rate = 30049.50805498884 foot ** 3 / second\n", "Flow rate = 30135.24506735869 foot ** 3 / second\n", "Flow rate = 30135.24898850496 foot ** 3 / second\n", "Flow rate = 30135.24898868379 foot ** 3 / second\n", "Flow rate = 30135.248988683794 foot ** 3 / second\n" ] } ], "source": [ "fd = 0.017 # assumed initial guess\n", "Re = 1E5\n", "for i in range(5):\n", " K = K_from_f(fd=fd, L=L, D=Dh)\n", " K += entrance_sharp()\n", " K += exit_normal()\n", "\n", " v = (2*u.gravity*H/K)**0.5\n", " Q = A*v\n", " print('Flow rate = %s' %(Q.to(u.ft**3/u.s)))\n", " Re = Reynolds(D=Dh, rho=rho, mu=mu, V=v)\n", " fd = friction_factor(Re=Re, eD=eD)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The solution given in Crane is 30600 ft^3/s, without iteration." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can also solve the problem using the manning formula, designed for open flow. Different values of the manning `n` coefficient give different results, but a likely value for concrete yields a surprisingly different answer than the hydraulic radius approach." ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:21.246490Z", "iopub.status.busy": "2022-08-22T01:19:21.246011Z", "iopub.status.idle": "2022-08-22T01:19:21.264991Z", "shell.execute_reply": "2022-08-22T01:19:21.264089Z" } }, "outputs": [ { "data": { "text/html": [ "61407.46714336768 foot3/second" ], "text/latex": [ "$61407.46714336768\\ \\frac{\\mathrm{foot}^{3}}{\\mathrm{second}}$" ], "text/plain": [ "61407.46714336768 " ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "S = H/L # slope, m/m\n", "# n = 0.0106*u.s/u.m**(1/3) # https://www.usbr.gov/tsc/techreferences/hydraulics_lab/pubs/HYD/HYD-585.pdf\n", "n = 0.013*u.s/u.m**(1/3)\n", "\n", "v = V_Manning(Rh=Rh, S=S, n=n)\n", "(v*A).to(u.ft**3/u.s)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } ././@LongLink0000644000000000000000000000017300000000000011604 Lustar rootrootfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.28 Checking for Choked Flow Conditions in a Control Valve.ipynbfluids-1.0.22/docs/Examples/Crane TP 410 Solved Problems/7.28 Checking for Choked Flow Conditions in0000644000175000017500000000465214302004506031234 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 7.28 Checking for Choked Flow Conditions in a Control Valve" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Given the data from example 7.27, with a FL of 0.9.\n", "Confirm that choke will not occur in the control valve." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "execution": { "iopub.execute_input": "2022-08-22T01:19:35.826922Z", "iopub.status.busy": "2022-08-22T01:19:35.826272Z", "iopub.status.idle": "2022-08-22T01:19:36.497933Z", "shell.execute_reply": "2022-08-22T01:19:36.496673Z" } }, "outputs": [ { "data": { "text/plain": [ "(18.966081253330014 ,\n", " 70.8 )" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from fluids.units import *\n", "Psat = 4.75*u.psi\n", "Pc = 3198*u.psi\n", "P1 = 80.6*u.psi\n", "P2 = 70.8*u.psi\n", "\n", "P2_choke = control_valve_choke_P_l(Psat=Psat, Pc=Pc, FL=0.9, P1=P1)\n", "\n", "ratio = (P2/P2_choke).to_base_units()\n", "assert ratio.magnitude > 1\n", "\n", "P2_choke.to(u.psi), P2" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can calculate the choke pressure directly thanks to the nice ISA equations.\n", "With `control_valve_choke_P_l`, we calculate the downstream pressure required for choke flow to form.\n", "So long as P2 is larger than the choke pressure, no choke will occur.\n", "\n", "Crane gives two solutions, one complicated and not necessary, and one that works on the same equation as `control_valve_choke_P_l`. Crane calculates `FLP` to use with that equation but only `FL` is supposed to be used, so they get a choke pressure of 20.8 psi instead of 19 psi here." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/fluids.flow_meter.rst0000644000175000017500000000061314302004506017514 0ustar nileshnileshOrifice plates, flow nozzles, Venturi tubes, cone and wedge meters (fluids.flow_meter) ====================================================================================== .. meta:: :description: Rigorous set of correlations and solvers for working with flow meters including Orifice plates, nozzles, venturi tubes, cone meters, and wedge meters. .. automodule:: fluids.flow_meter fluids-1.0.22/docs/conf.py0000644000175000017500000002574014302004506014641 0ustar nileshnilesh# -*- coding: utf-8 -*- # # Fluids documentation build configuration file, created by # sphinx-quickstart on Sat Jan 2 17:15:23 2016. # # This file is execfile()d with the current directory set to its # containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All configuration values have a default; values that are commented out # serve to show the default. import sys import os import subprocess #import sys #from mock import Mock as MagicMock # # #class Mock(MagicMock): # @classmethod # def __getattr__(cls, name): # return Mock() # #MOCK_MODULES = ['scipy', 'scipy.interpolate', 'scipy.constants', 'argparse', #'numpy', 'pandas'] #sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES) # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. #sys.path.insert(0, os.path.abspath('.')) # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. #needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. import fluids extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.coverage', #'sphinx.ext.mathjax', 'sphinx.ext.viewcode', 'sphinx.ext.autosummary', 'numpydoc', 'nbsphinx', 'matplotlib.sphinxext.plot_directive', 'sphinxcontrib.katex', 'sphinx_sitemap', 'sphinx.ext.intersphinx', ] html_baseurl = 'https://fluids.readthedocs.io/' sitemap_url_scheme = "{link}" sitemap_filename = 'sitemap2.xml' # readthedocs generates its own # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # The suffix of source filenames. source_suffix = '.rst' # The encoding of source files. #source_encoding = 'utf-8-sig' # The master toctree document. master_doc = 'index' # General information about the project. project = u'Fluids' import os import time import datetime build_date = datetime.datetime.utcfromtimestamp( int(os.environ.get('SOURCE_DATE_EPOCH', time.time())) ) copyright = u'2016 - %s, Caleb Bell ' % build_date.year # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. version = fluids.__version__ # The full version, including alpha/beta/rc tags. release = fluids.__version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. #language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: #today = '' # Else, today_fmt is used as the format for a strftime call. #today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = ['_build', '**.ipynb_checkpoints'] # The reST default role (used for this markup: `text`) to use for all # documents. #default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. #add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). #add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. #show_authors = False # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' # A list of ignored prefixes for module index sorting. #modindex_common_prefix = [] # If true, keep warnings as "system message" paragraphs in the built documents. #keep_warnings = False # -- Options for HTML output ---------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. html_theme = 'default' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. #html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". #html_title = None # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. #html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. #html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied # directly to the root of the documentation. html_extra_path = ['robots.txt'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. #html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. #html_use_smartypants = True # Custom sidebar templates, maps document names to template names. #html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. #html_additional_pages = {} # If false, no module index is generated. #html_domain_indices = True # If false, no index is generated. #html_use_index = True # If true, the index is split into individual pages for each letter. #html_split_index = False # If true, links to the reST sources are added to the pages. #html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. #html_show_sphinx = True # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. #html_show_copyright = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. #html_use_opensearch = '' # This is the file name suffix for HTML files (e.g. ".xhtml"). #html_file_suffix = None # Output file base name for HTML help builder. htmlhelp_basename = 'Fluids doc' # -- Options for LaTeX output --------------------------------------------- latex_elements = { # The paper size ('letterpaper' or 'a4paper'). #'papersize': 'letterpaper', # The font size ('10pt', '11pt' or '12pt'). #'pointsize': '10pt', # Additional stuff for the LaTeX preamble. #'preamble': '', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ ('index', 'Fluids.tex', u'Fluids Documentation', u'Caleb Bell', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of # the title page. #latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. #latex_use_parts = False # If true, show page references after internal links. #latex_show_pagerefs = False # If true, show URL addresses after external links. #latex_show_urls = False # Documents to append as an appendix to all manuals. #latex_appendices = [] # If false, no module index is generated. #latex_domain_indices = True # -- Options for manual page output --------------------------------------- # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ ('index', 'fluids', u'Fluids Documentation', [u'Caleb Bell'], 1) ] # If true, show URL addresses after external links. #man_show_urls = False # -- Options for Texinfo output ------------------------------------------- # Grouping the document tree into Texinfo files. List of tuples # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ ('index', 'Fluids', u'Fluids Documentation', u'Caleb Bell', 'Fluids', 'One line description of project.', 'Miscellaneous'), ] # Documents to append as an appendix to all manuals. #texinfo_appendices = [] # If false, no module index is generated. #texinfo_domain_indices = True # How to display URL addresses: 'footnote', 'no', or 'inline'. #texinfo_show_urls = 'footnote' # If true, do not generate a @detailmenu in the "Top" node's menu. #texinfo_no_detailmenu = False html_theme = "nature" numpydoc_show_class_members = True numpydoc_show_inherited_class_members = True numpydoc_class_members_toctree = False autosummary_generate = True add_function_parentheses = False autodoc_default_flags = ['undoc-members', 'show-inheritance'] katex_css_path = \ 'https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css' katex_js_path = \ 'https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.js' katex_autorender_path = \ 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.12.0/contrib/auto-render.min.js' intersphinx_mapping = {'python': ('https://docs.python.org/3', None), 'numpy': ('http://docs.scipy.org/doc/numpy', None), 'scipy': ('http://docs.scipy.org/doc/scipy/reference', None), 'matplotlib': ('http://matplotlib.sourceforge.net', None), 'chemicals': ('https://chemicals.readthedocs.io/', None)} def has_cmd(cmd): return subprocess.call("type " + cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0 '''The below approach is not working at this time. It can be fixed with enough development, but for now is not the highest priority. https://github.com/readthedocs/readthedocs.org/issues/7788 https://github.com/hagenw/sphinxcontrib-katex/issues/37 ''' #try: #if not has_cmd('katex'): #os.system('npm install katex') #os.environ['PATH'] = os.environ['PATH'] + ':./node_modules/.bin' #katex_prerender = True #except Exception as e: #print('Could not find katex with error %s' %(e,)) #katex_prerender = False nbsphinx_requirejs_path = '' # fixes katex not working from sphinx.ext.autodoc import between def setup(app): #app.add_javascript('copybutton.js') # Register a sphinx.ext.autodoc.between listener to ignore everything # between lines that contain the word IGNORE app.connect('autodoc-process-docstring', between('(^Chemical Engineering Design Library).*|(^SOFTWARE.$).*', exclude=True)) return app fluids-1.0.22/docs/fluids.particle_size_distribution.rst0000644000175000017500000000026314302004506023006 0ustar nileshnileshParticle Size Distributions (fluids.particle_size_distribution) =============================================================== .. automodule:: fluids.particle_size_distribution fluids-1.0.22/docs/developers.rst0000644000175000017500000003771714302004506016253 0ustar nileshnileshDeveloper's Guide and Roadmap ============================= The `fluids` project has grown to be: * Efficient * Functions do only the work required. * Caching various values, precomputing others. * Using various macros and automated expressions to run code with Numba at its optimal speed. * Not using Numpy/SciPy most of the time, allowing PyPy and Numba to speed code up. * Capable of vectorized computation * Wrapped with Numba's ufunc machinery. * Wrapped with numpy's np.vectorize. * Numba's nogil mechanism is set and used on all methods. * Comprehensive * Most correlations taught at the undergrad level are included. * Most ancillary calculations such as atmospheric properties and tank geometry are included. * Capable of handling units * Pint interface. * All docstrings/code in base SI units. There is no official road map, no full time developers, and no commercial support for this library - this is a hobby project developed primarily by Caleb Bell. Contributors are welcome! Fluid dynamics is really big field and one author can't do everything. Scope and Future Features ------------------------- The following is a list of things that have crossed the author's mind as that would be cool in `fluids` and might make it there at some point. The author has no immediate plans to do any of this. Work by the author happens when inspiration - and free time - happens. Please feel free to work on any of these items: * More pipe schedules. The author has been asked for EN 10255 in https://github.com/CalebBell/fluids/issues/16 and ASTM A269/A270 in an email. * More fitting types. * More tee/wye/junction correlations. * More models for compressible flow, such as: https://www.mathworks.com/help/aerotbx/gas-dynamics-1.html * Multiphase fitting pressure drop. Literature data is sparse. * Multiphase flow meter pressure drop. One correlation has been added but there are more available. * More multiphase flow maps. * Pump viscosity correction from Hydraulic Institute. * Tool to download historical weather data to calculate average historical temperatures and weather to use for design. This is partly complete in a non-exposed module `design_climate.py`. * Models for mixing efficiency. * Additional fluid-particle interaction correlations. Contributing ------------ `fluids` has a lot of infrastructure that makes it attractive to add code to the project. Adding new functionality is possible without compromising load speed, RAM usage or maintainability. If you have a fluids engineering correlation, please feel free to open a PR and we can make any changes needed. There is no template - just do your best. In an ideal world, new contributions would come with unit tests, docstrings, an addition to the tutorial if relevant. Running Tests ------------- From the root directory of the project you downloaded with `git clone https://github.com/CalebBell/fluids.git`, run the following command: python3 -m pytest . This will run all of the tests including the doctests. The test suite can take some time to run; tests are marked with various markers to allow a fast subset of tests to run. python3 -m pytest -m "not slow" . This should only take a few seconds, and show red output if a test is broken. To keep the main test suite fast, pytest allows a flag which shows how long each test takes. python3 -m pytest -m "not slow" --durations=100 If a test you added appears in this list, consider splitting it into a fast portion and a slow portion and decorating the slow portion with "@pytest.mark.slow". Docstrings ---------- The docstrings follow Pep8, most of the numpydoc standard, More information about numpydoc can be found `here `_ In addition to being documentation, the docstrings in `fluids` serve the following purposes: * Contain LaTeX math formulas for implemented formulas. This makes it easy for the reader and authors to follow code. This is especially important when the code can be optimized by hand significantly, and end up not looking like the math formulas. * Contain doctests for every public method. These examples often make debugging really easy since they can just be copy-pasted into Jupyter or an IDE/debugger. * Contain type information for each variable, which is automatically parsed by the unit handling framework around `pint`. * Contain the units of each argument, which is used by the unit handling framework around `pint`. * Contain docstrings for every argument - these are checked by the unit tests programmatically to avoid forgetting to add a description, which the author did often before the checker was added. Doctest ------- As anyone who has used doctest before knows, floating-point calculations have trivially different results across platforms. An example cause of this is that most compilers have different sin/cos implementations which are not identical. However, docstrings are checked bit-for-bit, so consistent output is important. Python is better than most languages at maintaining the same results between versions but it is still an issue. Thanks to a fairly new pytest feature, numbers in doctests can be checked against the number of digits given, not against the real result. It is suggested to put numbers in doctests with around 13 digits, instead of the full repr() string for a number. It is convenient to round the number instead of just removing decimals. Type Hints ---------- The python ecosystem is gradually adding support for type information, which may allow static analyzers to help find bugs in code even before it is ran. The author has not found these helpful in Python yet - the tools are too slow, missing features, and most libraries do not contain type information. However, type hints might still be useful for your program that uses `fluids`! For that reason `fluids` includes a set of type hints as stub files (.pyi extension). These are not generated by hand - they use the cool `MonkeyType `_ library. An included script `make_test_stubs` interfaces with this library, which runs the test suite and at the end generates the type hints including the types of every argument to every function seen in the test suite. This is another reason comprehensive test suite coverage is required. Monkeytype on the `fluids` test suite takes ~15 minutes to run, and generates a ~1 GB database file which is deleted at the end of the run. Some manipulation of the result by hand may be required in the future, or MonkeyType may be replaced by making the type hints by hand. It is planned to incorporate the type stubs into the main file at some point in the future when the tooling is better, and Python 2 support has been dropped completely. Supported Python Versions ------------------------- There is no plan to drop Python 2.7 support at present, but you are advised to use Python 3.5 or later. Both NumPy and SciPy have dropped support for Python 2.7 and eventually a backwards-incompatible change may be needed. Fluids targets Python 2.7 and up as well as PyPy2 and PyPy3. Additionally, fluids has been tested by the author to load in IronPython, Jython, and Micropython. Unfortunately there is no CI infrastructure for these other Python implementations. For IronPython, Jython, and Micropython there is no NumPy/SciPy which means there is no hope of passing the whole test suite on them either; indeed pytest won't load on any of them. If you have a need for a specific feature to work in an implementation, don't hesitate to reach out to the author to discuss it. It is intended for IronPython to support everything except functionality which has a hard dependency on NumPy or SciPy. IronPython is currently Python 2 only; with the Python 3 variant being most of the way there. This may lead to integration with other programs in the future as IronPython is often used as a scripting language. Micropython is designed to run on limited RAM, and fluids is too large for most microprocessors. You will likely have to copy/paste the specific parts of `fluids` you want to use for this application. Jython is not very popular, but please reach out of you are using `fluids` with it. Packaging --------- The most up to date fluids can be obtained on GitHub, and new releases are pushed to PyPi whenever a new release is made. Fluids is available on Conda thanks to Diego Volpatto and on Debian and thus Ubuntu thanks to Kurt Kremitzki. Conda updates more or less automatically but takes hours to build. Code Formatting --------------- Pep8 is loosely followed. Do your best to follow it if possible, otherwise don't worry about it. Please don't submit a PR for just style changes. Some arguments like `Method` or classes like TANK are unfortunately not pep8 for historical reasons. Documentation ------------- Sphinx is used with readthedocs. Readthedocs is configured to build whatever is on the release branch. From the root of the `fluids` project, the documentation can be built with the following command, which will output html files into a "_build" folder: sphinx-build -b html docs _build Sample Notebooks ---------------- The `nbval `_ pytest plugin can be used to check the results of running the notebooks against the stored notebooks. On UNIX/Mac OS/WSL, the notebook results can be regenerated with the following shell command, from the directory with the notebooks: .. code-block:: bash for i in *.ipynb ; do python3 -m nbconvert --to notebook --inplace --execute "$i" ; done Continuous Integration ---------------------- Github Actions, Travis and Appveyor are presently used. They test only code in the `release` branch. Some tests, like those that download data from the internet, are not ran by design on their platforms. The same goes for testing `numba` online - getting an up to date version of numba is challenging. Load Speed ---------- On CPython, `fluids` will load Numpy on load if it is available and `SciPy` when it is needed. Numpy loads in ~150 ms. Fluids alone loads in ~10 ms. It is intended for this to increase only slowly. RAM Usage --------- Loading fluids alone takes ~4 MB of RAM. About 2 MB of this is actually docstrings. About 200 KB of pipe schedules, 100 KB of pump information, and 200 KB of Sieve data is also included. Using fluids should not increase RAM except by the size of objects you initiate; the only things cached are very small. The -OO flag can be used in Python to cut RAM usage significantly, which will not load any docstrings. Adding new data and methods is well worth the price of increasing RAM, but it is intended to keep RAM consumption small via lazy-loading any large data sets. Examples of this can be found in atmosphere.py - spa.py and nrlmsie00.py are lazy-loaded. It is intended for RAM consumption of the library to increase only slowly. Notes on Pint Integration Implementation ---------------------------------------- Units in square brackets in the docstrings are parsed for all function inputs and outputs. They are parsed by Pint directly. In some cases, a function has a variable output unit, as in the case of solvers which can solve for different variables. In that case, the variable unit shouldn't put anything in square brackets. Instead, in `units.py`, the variable `variable_output_unit_funcs` needs to have an entry for the new function. The return unit will be based on which variables are not provided as inputs to the function. True represents a present variable, and False represents a variable left as None. The number of variables the dispatch happens on can be less than the number of function arguments, and should be specified after the units signature. Notes on PyPy ------------- PyPy is really awesome! It does have some drawbacks today: * The C-API which is used by NumPy, SciPy get 2-3 times slower in PyPy. This is originally why `fluids` started implementing its own numerical methods sometimes, although now it is for custom features and increased speed. There is a project to solve this issue: https://github.com/pyhandle/hpy * If running code only a few times, PyPy won't be able to accelerate it as it is a Just In Time Compiler. * Sometimes something gets speed up by PyPy some of the time, but not all of the time. * Uses more memory, typically 1.5x. * Not as good as Numba at generating vectorized, SIMD instructions for the CPU. PyPy also isn't as good at inlining small functions. The main pros of PyPy are: * Really, really fast. Some functions literally save 98% of their time by running in PyPy, although 85% is more typical. * Accelerates ALL of your code, not a little like numba. * For scalar functions PyPy is typically quite a bit faster than numba. * Doesn't need special handling, does everything CPython can do. * Doesn't need a special coding style! A few compromises in the library to make PyPy more performant were made: * Use the `sqrt` operator to compute powers as much as possible. `sqrt` and a few multiplies is much cheaper than a power operator. This is not really noticeable on CPython, but you can tell in PyPy. CPUs have special hardware to make this computation very cheap. Notes on Numba -------------- The main pros of Numba are: * Works with CPython. * Pretty good at generating SIMD instructions. * Fast. Gets all the benefits that LLVM gets. This means if you include a line of code that does nothing in your function, it probably won't run once compiled with numba. * When a complete set of code is wrapped by Numba, it can be multithreaded easily. The main cons of Numba are: * It doesn't come close to supporting all of Python. This really hurts on things like dictionary lookups or functions that return dictionaries. * It is not available on many platforms, used to require Anaconda. * Some code can be really, really slow to compile today. Compiling `fluids` with numba takes ~3 minutes today, after some optimizations. Caching of functions that take functions as arguments is not yet supported, nor are jitclasses. * Can be a pain to work with. Quite a few compromises in the library were made to add Numba compatibility and in cases to make Numba even more performant: * A series of `numba` pragmas were invented and are interpreted by a loader that recompiles the transformed source code of `fluids`. * Functions that accept functions as arguments or use scipy.special functions are not compatible with Numba's caching implementation at this time. To avoid having complaints about that, they are added to a list in numba.py. * Numba does not support raising exceptions with dynamically created messages. Where possible, this means using a constant message. * Sometimes the only way to do something is by changing the code directly. Append "# numba: delete" at the end of a line in a function to delete the line. Add a new commented out line, and append "# numba: uncomment" to it. Then put the name of that function in the variable `to_change` in numba.py, and the changes will be made when using the Numba interface. * 1D arrays should be initialized like [0.0]*4, [my_thing]*my_count; and they put the function in the same `to_change` variable. This will transform them into the right type of array for Numba. * Numba uses efficient cbrts while CPython and PyPy do not; any case of x\*\*(1/3) will turn into a cbrt. x\*\*(2/3) will not, but can be done by hand. It is hoped many of these trade offs can be removed/resolved by future features added to Numba. Things to Keep In Mind While Coding ----------------------------------- 1. Python is often ran with the -O or -OO flag. This reduces its memory use and increases performance a little. One of those optimizations is that any `assert` statements in python code are skipped. This means they should not be used to control a program's flow. This is normally the equivalent of using a Release build vs. a Debug build in C++. 2. Numpy arrays and functions should be used with care. They will make that portion of the code not run on some implementations, and will add a dependency on NumPy for that function. If it is a vectorization issue, consider letting Numba or PyPy accelerate it for you. If it about using some fancy functionality like a fourier transform, then NumPy is the right choice! fluids-1.0.22/docs/fluids.compressible.rst0000644000175000017500000000052614302004506020043 0ustar nileshnileshCompressible flow and compressor sizing (fluids.compressible) ============================================================= .. meta:: :description: Model a compressor, or compressible flow in a pipe with this Python module! Includes Panhandle A, Panhandle B, Weymouth, and Fritzsche equations. .. automodule:: fluids.compressible fluids-1.0.22/docs/fluids.rst0000644000175000017500000000103514302004506015351 0ustar nileshnilesh.. toctree:: fluids.atmosphere fluids.compressible fluids.control_valve fluids.core fluids.drag fluids.filters fluids.fittings fluids.flow_meter fluids.friction fluids.geometry fluids.jet_pump fluids.mixing fluids.numba fluids.open_flow fluids.packed_bed fluids.packed_tower fluids.particle_size_distribution fluids.piping fluids.pump fluids.safety_valve fluids.separator fluids.saltation fluids.two_phase fluids.two_phase_voidage fluids.units fluids.vectorized fluids-1.0.22/docs/plots/0000755000175000017500000000000014302004506014473 5ustar nileshnileshfluids-1.0.22/docs/plots/diffuser_conical_plot.py0000644000175000017500000000272714302004506021412 0ustar nileshnileshimport matplotlib.pyplot as plt import numpy as np from fluids.fittings import diffuser_conical_methods, diffuser_conical styles = ['--', '-.', '-', ':', '.', ',', 'o', 'v', '^', '<', '>', '1', '2', '3', '4'] D_ratios = np.linspace(1-1e-9, .01, 100) #D_ratios = np.linspace(1-1e9, .01, 100) angles = np.array([[2, 4, 8, 10], [15, 20, 25, 30], [45, 60, 90, 120], [135, 150, 165, 180]]) f, axarr = plt.subplots(4, 4) for angle, axes in zip(angles.ravel(), axarr.ravel()): for method, style in zip(diffuser_conical_methods, styles): if method == 'Swamee': continue Ks = [diffuser_conical(Di1=float(Di), Di2=1, Re=1E6, angle=float(angle), method=method) for Di in D_ratios] Ds2 = D_ratios**2 axes.plot(Ds2, Ks, label=method) # + ', angle = ' + str(angle) #axes.legend() axes.set_title(r'$%g^\circ$ Angle' %angle) #axes.set_xlabel('Area ratio') #axes.set_ylabel('K') for item in ([axes.title, axes.xaxis.label, axes.yaxis.label] + axes.get_xticklabels() + axes.get_yticklabels()): item.set_fontsize(6.5) ttl = axes.title.set_position([.5, .93]) plt.subplots_adjust(wspace=.35, hspace=.35) f.suptitle('Comparison of available methods for conical pipe diffusers\n Area ratio (x) vs. Loss coefficient (y)') plt.legend(loc='upper center', bbox_to_anchor=(1.65, 4.7)) plt.subplots_adjust(right=0.82) #plt.show() fluids-1.0.22/docs/plots/contraction_conical_plot.py0000644000175000017500000000260314302004506022117 0ustar nileshnileshimport matplotlib.pyplot as plt import numpy as np from fluids.fittings import contraction_conical_methods, contraction_conical styles = ['--', '-.', '-', ':', '.', ',', 'o', 'v', '^', '<', '>', '1', '2', '3', '4'] D_ratios = np.linspace(1-1e-9, .01, 100) angles = np.array([[2, 4, 8, 10], [15, 20, 25, 30], [45, 60, 90, 120], [135, 150, 165, 180]]) f, axarr = plt.subplots(4, 4) for angle, axes in zip(angles.ravel(), axarr.ravel()): for method, style in zip(contraction_conical_methods, styles): Ks = [contraction_conical(Di1=1, Di2=Di, Re=1E6, angle=angle, method=method) for Di in D_ratios] Ds2 = D_ratios**2 axes.plot(Ds2, Ks, label=method) # + ', angle = ' + str(angle) #axes.legend() axes.set_title(r'$%g^\circ$ Angle' %angle) #axes.set_xlabel('Area ratio') #axes.set_ylabel('K') for item in ([axes.title, axes.xaxis.label, axes.yaxis.label] + axes.get_xticklabels() + axes.get_yticklabels()): item.set_fontsize(6.5) ttl = axes.title.set_position([.5, .93]) plt.subplots_adjust(wspace=.35, hspace=.35) f.suptitle('Comparison of available methods for conical pipe contractions\n Area ratio (x) vs. Loss coefficient (y)') plt.legend(loc='upper center', bbox_to_anchor=(1.65, 4.7)) plt.subplots_adjust(right=0.82) #plt.show() fluids-1.0.22/docs/plots/entrance_distance_plot.py0000644000175000017500000000071114302004506021553 0ustar nileshnileshimport matplotlib.pyplot as plt import numpy as np from fluids.fittings import entrance_distance_methods from fluids.fittings import entrance_distance ts = np.linspace(0,0.3, 1000) for method in entrance_distance_methods: Ks = [entrance_distance(Di=1.0, t=t, method=method) for t in ts] plt.plot(ts, Ks, label=method) plt.legend() plt.title("Comparison of available methods for re-entrant entrances") plt.xlabel('t/Di') plt.ylabel('K') #plt.show() fluids-1.0.22/docs/plots/ft_Crane_plot.py0000644000175000017500000000235314302004506017627 0ustar nileshnileshimport matplotlib.pyplot as plt import numpy as np from math import log10 from scipy.interpolate import UnivariateSpline from fluids.friction import Crane_fts_Ds, Crane_fts, ft_Crane, roughness_Farshad, friction_factor roughness = .05E-3 plt.plot(Crane_fts_Ds, Crane_fts, 'o', label='Crane data') spline_obj = UnivariateSpline(Crane_fts_Ds, Crane_fts, k=3, s=5e-6) Ds_interp = np.linspace(Crane_fts_Ds[0], Crane_fts_Ds[-1], 500) plt.plot(Ds_interp, spline_obj(Ds_interp), label='Cubic spline') ft_crane_correlation = [.25/log10(roughness/(Di)/3.7)**2 for Di in Crane_fts_Ds] plt.plot(Crane_fts_Ds, ft_crane_correlation, label='Crane formula') plt.plot(Crane_fts_Ds, [round(i, 3) for i in ft_crane_correlation], '.', label='Crane formula (rounded)') eDs_Farshad = [roughness_Farshad(ID='Carbon steel, bare', D=D)/D for D in Crane_fts_Ds] fts_good = [friction_factor(Re=7.5E6*Di, eD=ed) for ed, Di in zip(eDs_Farshad, Crane_fts_Ds)] plt.plot(Crane_fts_Ds, fts_good, label='Colebrook') plt.plot(Crane_fts_Ds, [round(i, 3) for i in fts_good], 'x', label='Colebrook (rounded)') plt.legend() plt.title("Comparison of implementation options") plt.xlabel('Pipe actual diameter, [m]') plt.ylabel('Darcy friction factor, [-]') #plt.show() fluids-1.0.22/docs/plots/entrance_rounded_plot.py0000644000175000017500000000075214302004506021426 0ustar nileshnileshimport matplotlib import matplotlib.pyplot as plt import numpy as np from fluids.fittings import entrance_rounded_methods from fluids.fittings import entrance_rounded rcs = np.linspace(0,0.4, 1000) for method in entrance_rounded_methods: Ks = [entrance_rounded(Di=1.0, rc=rc, method=method) for rc in rcs] plt.plot(rcs, Ks, label=method) plt.legend() plt.title('Comparison of available methods for rounded flush entrances to pipes') plt.xlabel('rc/Di') plt.ylabel('K') #plt.show() fluids-1.0.22/docs/plots/bend_rounded_Crane_plot.py0000644000175000017500000000152214302004506021643 0ustar nileshnileshimport matplotlib.pyplot as plt import numpy as np from scipy.interpolate import UnivariateSpline from fluids.optional.pychebfun import chebfun from fluids.fittings import bend_rounded_Crane_ratios, bend_rounded_Crane_fds, bend_rounded_Crane_coeffs ratios = np.linspace(1, 20, 1000) bend_rounded_Crane_obj = UnivariateSpline(bend_rounded_Crane_ratios, bend_rounded_Crane_fds, s=0) fun = chebfun(f=bend_rounded_Crane_obj, domain=[1,20], N=10) plt.plot(bend_rounded_Crane_ratios, bend_rounded_Crane_fds, 'x', label='Crane data') plt.plot(ratios, bend_rounded_Crane_obj(ratios), label='Cubic spline') plt.plot(ratios, fun(ratios), label='Chebyshev approximation') plt.legend() plt.title("Interpolation of Crane ft multipliers for pipe bend losses") plt.xlabel('Bend radius/pipe diameter ratio') plt.ylabel('Friction factor multiplier') #plt.show() fluids-1.0.22/docs/plots/entrance_beveled_plot.py0000644000175000017500000000133614302004506021373 0ustar nileshnileshimport matplotlib.pyplot as plt import numpy as np from fluids.fittings import entrance_beveled_methods from fluids.fittings import entrance_beveled angles = np.linspace(0, 90, 200) # 90 or 180? Plotted in Rennels only to 90. styles = ['--', '-.', '-', ':', '.', ',', 'o', 'v', '^', '<', '>', '1', '2', '3', '4'] l_ratios = [0.025, 0.05, 0.1, 0.25, .5, .75, 1] for l, style in zip(l_ratios, styles): for method in entrance_beveled_methods: Ks = [entrance_beveled(Di=1.0, l=l, angle=angle, method=method) for angle in angles] plt.plot(angles, Ks, style, label=method + ', l/Di=%g' %l) plt.legend() plt.title("Comparison of available methods for beveled entrances") plt.xlabel('angle') plt.ylabel('K') #plt.show() fluids-1.0.22/docs/plots/bend_miter_plot.py0000644000175000017500000000237314302004506020220 0ustar nileshnileshimport matplotlib.pyplot as plt import numpy as np from fluids.fittings import bend_miter, bend_miter_methods styles = ['--', '-.', '-', ':', '.', ',', 'o', 'v', '^', '<', '>', '1', '2', '3', '4'] angles = np.linspace(0.0, 120.0, 100) Res = np.array([[1E4, 4E4, 8E4], [2E5, 5E5, 1E6], [5E6, 1E7, 1E8]]) f, axarr = plt.subplots(3, 3) for Re, axes in zip(Res.ravel(), axarr.ravel()): for method, style in zip(bend_miter_methods, styles): Di = 0.05 # Makes Crane go up or down Ks = [bend_miter(angle=angle, Di=Di, Re=Re, roughness=.05E-3, L_unimpeded=Di*20, method=method) for angle in angles] axes.plot(angles, Ks, label=method) # + ', angle = ' + str(angle) axes.set_title(r'Re = %g' %Re) for item in ([axes.title, axes.xaxis.label, axes.yaxis.label] + axes.get_xticklabels() + axes.get_yticklabels()): item.set_fontsize(6.5) ttl = axes.title.set_position([.5, .98]) plt.subplots_adjust(wspace=.35, hspace=.35) f.suptitle('Comparison of available methods for mitre bend losses\n Angle (x) vs. Loss coefficient (y)') plt.legend(loc='upper center', bbox_to_anchor=(1.5, 2.4)) plt.subplots_adjust(right=0.82, top=.85, bottom=.05) #plt.show() fluids-1.0.22/docs/plots/contraction_round_plot.py0000644000175000017500000000140014302004506021630 0ustar nileshnileshimport matplotlib.pyplot as plt import numpy as np from fluids.fittings import contraction_round, contraction_round_methods styles = ['--', '-.', '-', ':', '.', ',', 'o', 'v', '^', '<', '>', '1', '2', '3', '4'] D_ratios = np.linspace(1-1e-9, .01, 1000) radius_ratios = [.1, .06, .04, .02, 0] #np.linspace(0, 0.2, 3) for radius_ratio in radius_ratios: for method, style in zip(contraction_round_methods, styles): Ks = [contraction_round(Di1=1, Di2=Di, rc=Di*radius_ratio, method=method) for Di in D_ratios] Ds2 = D_ratios**2 plt.plot(Ds2, Ks, style, label=method + ', ratio = ' + str(radius_ratio)) plt.legend() plt.title("Comparison of available methods for rounded pipe contractions") plt.xlabel('Area ratio') plt.ylabel('K') #plt.show() fluids-1.0.22/docs/fluids.piping.rst0000644000175000017500000000042714302004506016642 0ustar nileshnileshPipe schedules (fluids.piping) ============================== .. meta:: :description: Implementation of pipe schedules 40, 80, 120 and more from B36.10M-2004, Stainless Steel Pipe B36-19M-2004, and many plastic pipe schedules in Python. .. automodule:: fluids.piping fluids-1.0.22/docs/fluids.mixing.rst0000644000175000017500000000024214302004506016642 0ustar nileshnileshMixing (fluids.mixing) ====================== .. meta:: :description: Various calculations for fluid mixing in Python. .. automodule:: fluids.mixing fluids-1.0.22/docs/robots.txt0000644000175000017500000000010314302004506015375 0ustar nileshnileshUser-agent: * Sitemap: https://fluids.readthedocs.io/sitemap2.xml fluids-1.0.22/docs/_static/0000755000175000017500000000000014302004506014760 5ustar nileshnileshfluids-1.0.22/docs/_static/copybutton.js0000644000175000017500000000532114302004506017525 0ustar nileshnilesh$(document).ready(function() { /* Add a [>>>] button on the top-right corner of code samples to hide * the >>> and ... prompts and the output and thus make the code * copyable. */ var div = $('.highlight-python .highlight,' + '.highlight-default .highlight,' + '.highlight-python3 .highlight') var pre = div.find('pre'); // get the styles from the current theme pre.parent().parent().css('position', 'relative'); var hide_text = 'Hide the prompts and output'; var show_text = 'Show the prompts and output'; var border_width = pre.css('border-top-width'); var border_style = pre.css('border-top-style'); var border_color = pre.css('border-top-color'); var button_styles = { 'cursor':'pointer', 'position': 'absolute', 'top': '0', 'right': '0', 'border-color': border_color, 'border-style': border_style, 'border-width': border_width, 'color': border_color, 'text-size': '75%', 'font-family': 'monospace', 'padding-left': '0.2em', 'padding-right': '0.2em', 'border-radius': '0 3px 0 0' } // create and add the button to all the code blocks that contain >>> div.each(function(index) { var jthis = $(this); if (jthis.find('.gp').length > 0) { var button = $('>>>'); button.css(button_styles) button.attr('title', hide_text); button.data('hidden', 'false'); jthis.prepend(button); } // tracebacks (.gt) contain bare text elements that need to be // wrapped in a span to work with .nextUntil() (see later) jthis.find('pre:has(.gt)').contents().filter(function() { return ((this.nodeType == 3) && (this.data.trim().length > 0)); }).wrap(''); }); // define the behavior of the button when it's clicked $('.copybutton').click(function(e){ e.preventDefault(); var button = $(this); if (button.data('hidden') === 'false') { // hide the code output button.parent().find('.go, .gp, .gt').hide(); button.next('pre').find('.gt').nextUntil('.gp, .go').css('visibility', 'hidden'); button.css('text-decoration', 'line-through'); button.attr('title', show_text); button.data('hidden', 'true'); } else { // show the code output button.parent().find('.go, .gp, .gt').show(); button.next('pre').find('.gt').nextUntil('.gp, .go').css('visibility', 'visible'); button.css('text-decoration', 'none'); button.attr('title', hide_text); button.data('hidden', 'false'); } }); }); fluids-1.0.22/docs/test_documentation.py0000644000175000017500000000336614302004506017624 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2021 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' import pytest import os ''' Tests that run aspects of the documentation should go in here. The only bit included right now are the plots, which should run without an error; no contents checking is performed. ''' plots_folder = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'docs', 'plots') plot_files = [i for i in os.listdir(plots_folder) if i.endswith('.py')] print(plot_files) @pytest.mark.parametrize("file", plot_files) def test_documentation_plots(file): import matplotlib matplotlib.use('Agg') exec(open(os.path.join(plots_folder, file)).read(), globals()) # fluids-1.0.22/docs/fluids.units.rst0000644000175000017500000000745314302004506016524 0ustar nileshnileshSupport for pint Quantities (fluids.units) ========================================== Basic module which wraps all fluids functions and classes to be compatible with the `pint `_ unit handling library. All other object - dicts, lists, etc - are not wrapped. >>> import fluids >>> fluids.units.friction_factor # doctest: +ELLIPSIS The fluids.units module also supports star imports; the same objects exported when importing from the main library will be imported from fluids.units. >>> from fluids.units import * It is also possible to use `fluids.units` without the star import: There is no global unit registry in pint, and each registry must be a singleton. However, there is a default registry which is suitable for use in multiple modules at once. This default registry should be imported in one of the following ways (it does not need to be called `u`; it can be imported from pint as `ureg` or any other name): >>> from pint import _DEFAULT_REGISTRY as u Note that if the star import convention is used, the default unit registry be imported as `u` for you. Unlike the normal convention, this registry is already initialized. To repeat it again, you CANNOT do the following in your project and work with fluids.units. >>> from pint import UnitRegistry >>> u = UnitRegistry() # doctest: +SKIP All dimensional arguments to functions in fluids.units must be provided as Quantity objects. >>> Reynolds(V=3.5*u.m/u.s, D=2*u.m, rho=997.1*u.kg/u.m**3, mu=1E-3*u.Pa*u.s) The result is always one or more Quantity objects, depending on the signature of the function called. For arguments whose documentation specify they are dimensionless, they can optionally be passed in without making them dimensionless numbers with pint. >>> speed_synchronous(50*u.Hz, poles=12*u.dimensionless) # doctest: +SKIP >>> speed_synchronous(50*u.Hz, poles=12) It is good practice to use dimensionless quantities as follows, but it is optional. >>> K_separator_Watkins(0.88*u.dimensionless, 985.4*u.kg/u.m**3, 1.3*u.kg/u.m**3, horizontal=True) Like all pint registries, the default unit system can be changed. However, all functions will still return the unit their documentation says they do. To convert to the new base units, use the method .to_base_units(). >>> u.default_system = 'imperial' >>> K_separator_Watkins(0.88*u.dimensionless, 985.4*u.kg/u.m**3, 1.3*u.kg/u.m**3, horizontal=True).to_base_units() >>> u.default_system = 'mks' The order of the arguments to a function is the same as it is in the regular library; it won't try to infer argument position from their units, an exception will be raised. >>> K_separator_Watkins(985.4*u.kg/u.m**3, 1.3*u.kg/u.m**3, 0.88*u.dimensionless, horizontal=True) # doctest: +SKIP Exception: Converting 0.88 dimensionless to units of kg/m^3 raised DimensionalityError: Cannot convert from 'dimensionless' (dimensionless) to 'kilogram / meter ** 3' ([mass] / [length] ** 3) Support for classes is provided by wrapping each class by a proxy class which reads the docstrings of each method and the main class to determine the inputs and outputs. Properties, attributes, inputs, and units are all included. >>> T1 = TANK(L=3*u.m, D=150*u.cm, horizontal=True) >>> T1.V_total, T1.h_max (, ) >>> T1.V_from_h(0.1*u.m) >>> atm = ATMOSPHERE_NRLMSISE00(Z=1E3*u.m, latitude=45*u.degrees, longitude=45*u.degrees, day=150*u.day) >>> atm.rho, atm.O2_density (, )fluids-1.0.22/docs/fluids.filters.rst0000644000175000017500000000044114302004506017020 0ustar nileshnileshFilter pressure drop (fluids.filters) ===================================== .. meta:: :description: Calculate the loss coefficient of a screen or grill in a pipe. These correlations are useful when designing a hydraulic network or simple system. .. automodule:: fluids.filters fluids-1.0.22/docs/Data/0000755000175000017500000000000014302004506014203 5ustar nileshnileshfluids-1.0.22/docs/Data/Friction.ipynb0000644000175000017500000004430314302004506017027 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Friction" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Experimental friction factors" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "[]" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import numpy as np\n", "from fluids.friction import friction_factor, oregon_Res, oregon_fd_smooth\n", "import matplotlib.pyplot as plt\n", "\n", "Res = np.logspace(np.log10(oregon_Res[0]), np.log10(oregon_Res[-1]), 500)\n", "fds_calc = [friction_factor(Re) for Re in Res]\n", "plt.loglog(oregon_Res, oregon_fd_smooth, 'x', label='Oregon Data')\n", "plt.loglog(Res, fds_calc, label='Colebrook')\n", "plt.xlabel('Reynolds number')\n", "plt.ylabel('Darcy friction factor')\n", "plt.title(\"Experimental friction factor data for smooth pipe\")\n", "plt.legend()\n", "plt.plot()" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false, "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[11.21, 20.22, 29.28, 43.19, 57.73, 64.58, 86.05, 113.3, 135.3, 157.5, 179.4, 206.4, 228.0, 270.9, 315.2, 358.9, 402.9, 450.2, 522.5, 583.1, 671.8, 789.8, 891.0, 1013.0, 1197.0, 1300.0, 1390.0, 1669.0, 1994.0, 2227.0, 2554.0, 2868.0, 2903.0, 2926.0, 2955.0, 2991.0, 2997.0, 3047.0, 3080.0, 3264.0, 3980.0, 4835.0, 5959.0, 8162.0, 10900.0, 13650.0, 18990.0, 29430.0, 40850.0, 59220.0, 84760.0, 120000.0, 176000.0, 237700.0, 298200.0, 467800.0, 587500.0, 824200.0, 1050000.0]\n", "[5.537, 3.492, 2.329, 1.523, 1.173, 0.9863, 0.7826, 0.5709, 0.4815, 0.4182, 0.3655, 0.3237, 0.2884, 0.2433, 0.2077, 0.1834, 0.1656, 0.1475, 0.1245, 0.1126, 0.09917, 0.08501, 0.07722, 0.06707, 0.0588, 0.05328, 0.04815, 0.04304, 0.03739, 0.03405, 0.03091, 0.02804, 0.03182, 0.03846, 0.03363, 0.04124, 0.035, 0.03875, 0.04285, 0.0426, 0.03995, 0.03797, 0.0361, 0.03364, 0.03088, 0.02903, 0.0267, 0.02386, 0.02086, 0.02, 0.01805, 0.01686, 0.01594, 0.01511, 0.01462, 0.01365, 0.01313, 0.01244, 0.01198]\n" ] } ], "source": [ "print(oregon_Res)\n", "print(oregon_fd_smooth)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Roughness data" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "{'Brass': 1.52e-06,\n", " 'Lead': 1.52e-06,\n", " 'Glass': 1.52e-06,\n", " 'Steel': 1.52e-06,\n", " 'Asphalted cast iron': 0.000122,\n", " 'Galvanized iron': 0.000152,\n", " 'Cast iron': 0.000259,\n", " 'Wood stave': 0.000183,\n", " 'Rough wood stave': 0.000914,\n", " 'Concrete': 0.000305,\n", " 'Rough concrete': 0.00305,\n", " 'Riveted steel': 0.000914,\n", " 'Rough riveted steel': 0.00914}" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from fluids.friction import _roughness\n", "# Material from Perry's handbook; roughness in meters.\n", "_roughness" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Really good table from Idelʹchik, I. E, and A. S Ginevskiĭ. Handbook of Hydraulic \n", "Resistance. Redding, CT: Begell House, 2007.**" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "{'Rough channels in rock, Blast-hewed, little jointing': (0.1, 0.14, None),\n", " 'Rough channels in rock, Blast-hewed, substantial jointing': (0.13,\n", " 0.5,\n", " None),\n", " 'Rough channels in rock, Roughly cut or very uneven surface': (0.5,\n", " 1.5,\n", " None),\n", " 'Unlined tunnels, Rocks, gneiss, diameter 3-13.5 m': (0.3, 0.7, None),\n", " 'Unlined tunnels, Rocks, granite, diameter 3-9 m': (0.2, 0.7, None),\n", " 'Unlined tunnels, Shale, diameter, diameter 9-12 m': (0.25, 0.65, None),\n", " 'Unlined tunnels, Shale, quartz, quartzile, diameter 7-10 m': (0.2,\n", " 0.6,\n", " None),\n", " 'Unlined tunnels, Shale, sedimentary, diameter 4-7 m': (None, None, 0.4),\n", " 'Unlined tunnels, Shale, nephrite bearing, diameter 3-8 m': (None, None, 0.2),\n", " 'Wood tubes, Boards, thoroughly dressed': (None, None, 0.00015),\n", " 'Wood tubes, Boards, well dressed': (None, None, 0.0003),\n", " 'Wood tubes, Boards, undressed but fitted': (None, None, 0.0007),\n", " 'Wood tubes, Boards, undressed': (None, None, 0.001),\n", " 'Wood tubes, Staved': (None, None, 0.0006),\n", " 'Plywood tubes, Birch plywood, transverse grain, good quality': (None,\n", " None,\n", " 0.00012),\n", " 'Plywood tubes, Birch plywood, longitudal grain, good quality': (3e-05,\n", " 5e-05,\n", " None),\n", " 'Glass tubes, Glass': (1.5e-06, 1e-05, None),\n", " 'Concrete water conduits, no finish, New and finished with plater; excellent manufacture (joints aligned, prime coated and smoothed)': (5e-05,\n", " 0.00015,\n", " None),\n", " 'Concrete water conduits, no finish, Used and corroded; with a wavy surface and wood framework': (0.001,\n", " 0.004,\n", " None),\n", " 'Concrete water conduits, no finish, Old, poor fitting and manufacture; with an overgrown surface and deposits of sand and gravel': (0.001,\n", " 0.004,\n", " None),\n", " 'Concrete water conduits, no finish, Very old; damaged surface, very overgrown': (0.005,\n", " None,\n", " None),\n", " 'Concrete water conduits, no finish, Water conduit, finished with smoothed plaster': (0.005,\n", " None,\n", " None),\n", " 'Concrete water conduits, no finish, New, very well manufactured, hand smoothed, prime-coated joints': (0.0001,\n", " 0.0002,\n", " None),\n", " 'Concrete water conduits, no finish, Hand-smoothed cement finish and smoothed joints': (0.00015,\n", " 0.00035,\n", " None),\n", " 'Concrete water conduits, no finish, Used, no deposits, moderately smooth, steel or wooden casing, joints prime coated but not smoothed': (0.0003,\n", " 0.0006,\n", " None),\n", " 'Concrete water conduits, no finish, Used, prefabricated monoliths, cement plaster (wood floated), rough joints': (0.0005,\n", " 0.001,\n", " None),\n", " 'Concrete water conduits, no finish, Conduits for water, sprayed surface of concrete': (0.0005,\n", " 0.001,\n", " None),\n", " 'Concrete water conduits, no finish, Smoothed air-placed, either sprayed concrete or concrete on more concrete': (0.006,\n", " 0.017,\n", " None),\n", " 'Concrete water conduits, no finish, Brushed air-placed, either sprayed concrete or concrete on more concrete': (None,\n", " None,\n", " 0.0023),\n", " 'Concrete water conduits, no finish, Non-smoothed air-placed, either sprayed concrete or concrete on more concrete': (0.003,\n", " 0.006,\n", " None),\n", " 'Reinforced concrete tubes, New': (0.00025, 0.00034, None),\n", " 'Reinforced concrete tubes, Nonprocessed': (0.0025, None, None),\n", " 'Asbestos cement tubes, New': (5e-05, 0.0001, None),\n", " 'Asbestos cement tubes, Average': (0.0006, None, None),\n", " 'Cement tubes, Smoothed': (0.0003, 0.0008, None),\n", " 'Cement tubes, Non processed': (0.001, 0.002, None),\n", " 'Cement tubes, Joints, non smoothed': (0.0019, 0.0064, None),\n", " 'Cement-mortar plaster channels, Plaster, cement, smoothed joints and protrusions, and a casing': (5e-05,\n", " 0.00022,\n", " None),\n", " 'Cement-mortar plaster channels, Steel trowled': (None, None, 0.0005),\n", " 'Other, Plaster over a screen': (0.01, 0.015, None),\n", " 'Other, Salt-glazed ceramic': (None, None, 0.0014),\n", " 'Other, Slag-concrete': (None, None, 0.0015),\n", " 'Other, Slag and alabaster-filling': (0.001, 0.0015, None),\n", " 'Seamless tubes made from brass, copper, lead, aluminum, Commercially smooth': (1.5e-06,\n", " 1e-05,\n", " None),\n", " 'Seamless steel tubes, New and unused': (2e-05, 0.0001, None),\n", " 'Seamless steel tubes, Cleaned, following years of use': (None, 4e-05, None),\n", " 'Seamless steel tubes, Bituminized': (None, 4e-05, None),\n", " 'Seamless steel tubes, Heating systems piping; either superheated steam pipes, or just water pipes of systems with deaerators and chemical treatment': (None,\n", " None,\n", " 0.0001),\n", " 'Seamless steel tubes, Following one year as a gas pipeline': (None,\n", " None,\n", " 0.00012),\n", " 'Seamless steel tubes, Following multiple year as a gas pipeline': (4e-05,\n", " 0.0002,\n", " None),\n", " 'Seamless steel tubes, Casings in gas wells, different conditions, several years of use': (6e-05,\n", " 0.00022,\n", " None),\n", " 'Seamless steel tubes, Heating systems, saturated steam ducts or water pipes (with minor water leakage < 0.5%, and balance water deaerated)': (None,\n", " None,\n", " 0.0002),\n", " 'Seamless steel tubes, Water heating system pipelines, any source': (None,\n", " None,\n", " 0.0002),\n", " 'Seamless steel tubes, Oil pipelines, intermediate operating conditions ': (None,\n", " None,\n", " 0.0002),\n", " 'Seamless steel tubes, Corroded, moderately ': (None, None, 0.0004),\n", " 'Seamless steel tubes, Scale, small depositions only ': (None, None, 0.0004),\n", " 'Seamless steel tubes, Condensate pipes in open systems or periodically operated steam pipelines': (None,\n", " None,\n", " 0.0005),\n", " 'Seamless steel tubes, Compressed air piping': (None, None, 0.0008),\n", " 'Seamless steel tubes, Following multiple years of operation, generally corroded or with small amounts of scale': (0.00015,\n", " 0.001,\n", " None),\n", " 'Seamless steel tubes, Water heating piping without deaeration but with chemical treatment of water; leakage up to 3%; or condensate piping operated periodically': (None,\n", " None,\n", " 0.001),\n", " 'Seamless steel tubes, Used water piping': (0.0012, 0.0015, None),\n", " 'Seamless steel tubes, Poor condition': (0.005, None, None),\n", " 'Welded steel tubes, Good condition': (4e-05, 0.0001, None),\n", " 'Welded steel tubes, New and covered with bitumen': (None, None, 5e-05),\n", " 'Welded steel tubes, Used and covered with partially dissolved bitumen; corroded': (None,\n", " None,\n", " 0.0001),\n", " 'Welded steel tubes, Used, suffering general corrosion': (None,\n", " None,\n", " 0.00015),\n", " 'Welded steel tubes, Surface looks like new, 10 mm lacquer inside, even joints': (0.0003,\n", " 0.0004,\n", " None),\n", " 'Welded steel tubes, Used Gas mains': (None, None, 0.0005),\n", " 'Welded steel tubes, Double or simple transverse riveted joints; with or without lacquer; without corrosion': (0.0006,\n", " 0.0007,\n", " None),\n", " 'Welded steel tubes, Lacquered inside but rusted': (0.00095, 0.001, None),\n", " 'Welded steel tubes, Gas mains, many years of use, with layered deposits': (None,\n", " None,\n", " 0.0011),\n", " 'Welded steel tubes, Non-corroded and with double transverse riveted joints': (0.0012,\n", " 0.0015,\n", " None),\n", " 'Welded steel tubes, Small deposits': (None, None, 0.0015),\n", " 'Welded steel tubes, Heavily corroded and with double transverse riveted joints': (None,\n", " None,\n", " 0.002),\n", " 'Welded steel tubes, Appreciable deposits': (0.002, 0.004, None),\n", " 'Welded steel tubes, Gas mains, many years of use, deposits of resin/naphthalene': (None,\n", " None,\n", " 0.0024),\n", " 'Welded steel tubes, Poor condition': (0.005, None, None),\n", " 'Riveted steel tubes, Riveted laterally and longitudinally with one line; lacquered on the inside': (0.0003,\n", " 0.0004,\n", " None),\n", " 'Riveted steel tubes, Riveted laterally and longitudinally with two lines; with or without lacquer on the inside and without corrosion': (0.0006,\n", " 0.0007,\n", " None),\n", " 'Riveted steel tubes, Riveted laterally with one line and longitudinally with two lines; thickly lacquered or torred on the inside': (0.0012,\n", " 0.0014,\n", " None),\n", " 'Riveted steel tubes, Riveted longitudinally with six lines, after extensive use': (None,\n", " None,\n", " 0.002),\n", " 'Riveted steel tubes, Riveted laterally with four line and longitudinally with six lines; overlapping joints inside': (None,\n", " None,\n", " 0.004),\n", " 'Riveted steel tubes, Extremely poor surface; overlapping and uneven joints': (0.005,\n", " None,\n", " None),\n", " 'Roofing steel sheets, Oiled': (0.00015, 0.0011, None),\n", " 'Roofing steel sheets, Not Oiled': (2e-05, 4e-05, None),\n", " 'Galzanized steel tubes, Bright galvanization; new': (7e-05, 0.0001, None),\n", " 'Galzanized steel tubes, Ordinary galvanization': (0.0001, 0.00015, None),\n", " 'Galzanized sheet steel, New': (None, None, 0.00015),\n", " 'Galzanized sheet steel, Used previously for water': (None, None, 0.00018),\n", " 'Steel tubes, Glass enamel coat': (1e-06, 1e-05, None),\n", " 'Steel tubes, New': (0.00025, 0.001, None),\n", " 'Cast-iron tubes, New, bituminized': (0.0001, 0.00015, None),\n", " 'Cast-iron tubes, Coated with asphalt': (0.00012, 0.0003, None),\n", " 'Cast-iron tubes, Used water pipelines': (None, None, 0.0014),\n", " 'Cast-iron tubes, Used and corroded': (0.001, 0.0015, None),\n", " 'Cast-iron tubes, Deposits visible': (0.001, 0.0015, None),\n", " 'Cast-iron tubes, Substantial deposits': (0.002, 0.004, None),\n", " 'Cast-iron tubes, Cleaned after extensive use': (0.0003, 0.0015, None),\n", " 'Cast-iron tubes, Severely corroded': (None, 0.003, None),\n", " 'Steel water conduits in generating stations, New, clean, seamless (without joints), well fitted': (1.5e-05,\n", " 4e-05,\n", " None),\n", " 'Steel water conduits in generating stations, New, clean, welded lengthwise and well fitted': (1.2e-05,\n", " 3e-05,\n", " None),\n", " 'Steel water conduits in generating stations, New, clean, welded lengthwise and well fitted, with transverse welded joints': (8e-05,\n", " 0.00017,\n", " None),\n", " 'Steel water conduits in generating stations, New, clean, coated, bituminized when manufactured': (1.4e-05,\n", " 1.8e-05,\n", " None),\n", " 'Steel water conduits in generating stations, New, clean, coated, bituminized when manufactured, with transverse welded joints': (0.0002,\n", " 0.0006,\n", " None),\n", " 'Steel water conduits in generating stations, New, clean, coated, galvanized': (0.0001,\n", " 0.0002,\n", " None),\n", " 'Steel water conduits in generating stations, New, clean, coated, roughly galvanized': (0.0004,\n", " 0.0007,\n", " None),\n", " 'Steel water conduits in generating stations, New, clean, coated, bituminized, curved': (0.0001,\n", " 0.0014,\n", " None),\n", " 'Steel water conduits in generating stations, Used, clean, slight corrosion': (0.0001,\n", " 0.0003,\n", " None),\n", " 'Steel water conduits in generating stations, Used, clean, moderate corrosion or slight deposits': (0.0003,\n", " 0.0007,\n", " None),\n", " 'Steel water conduits in generating stations, Used, clean, severe corrosion': (0.0008,\n", " 0.0015,\n", " None),\n", " 'Steel water conduits in generating stations, Used, clean, previously cleaned of either deposits or rust': (0.00015,\n", " 0.0002,\n", " None),\n", " 'Used steel water conduits in generating stations, Used, all welded, <2 years use, no deposits': (0.00012,\n", " 0.00024,\n", " None),\n", " 'Used steel water conduits in generating stations, Used, all welded, <20 years use, no deposits': (0.0006,\n", " 0.005,\n", " None),\n", " 'Used steel water conduits in generating stations, Used, iron-bacterial corrosion': (0.003,\n", " 0.004,\n", " None),\n", " 'Used steel water conduits in generating stations, Used, heavy corrosion, or with incrustation (deposit 1.5 - 9 mm deep)': (0.003,\n", " 0.005,\n", " None),\n", " 'Used steel water conduits in generating stations, Used, heavy corrosion, or with incrustation (deposit 3 - 25 mm deep)': (0.006,\n", " 0.0065,\n", " None),\n", " 'Used steel water conduits in generating stations, Used, inside coating, bituminized, < 2 years use': (0.0001,\n", " 0.00035,\n", " None)}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from fluids.friction import HHR_roughness\n", "HHR_roughness" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Data/Sieve Sizes for Particle Size Distributions.ipynb0000644000175000017500000032254114302004506025417 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Sieve Sizes for Particle Size Distributions" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false }, "outputs": [], "source": [ "from fluids.particle_size_distribution import ASTM_E11_sieves, ISO_3310_1_sieves, Sieve\n", "import pandas as pd\n", "pd.options.display.max_rows = 100000" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "## ASTM E11 - 17 - Standard Specification for Woven Wire Test Sieve Cloth and Test Sieves." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
designationold_designationopeningopening_inchY_variation_avgX_variation_maxmax_openingcalibration_samplescompliance_sdinspection_samplesinspection_sdcalibration_sdd_wired_wire_mind_wire_maxcompliance_samples
00.02No. 6350.0000208.000000e-070.0000020.0000150.035300.05.330100.04.5104.7502.000000e-082.000000e-082.000000e-081000.0
10.025No. 5000.0000251.000000e-060.0000030.0000160.041300.05.710100.04.8205.0603.000000e-082.000000e-083.000000e-081000.0
20.032No. 4500.0000321.200000e-060.0000030.0000180.050300.06.420100.05.4205.7103.000000e-082.000000e-083.000000e-081000.0
30.038No. 4000.0000381.500000e-060.0000030.0000200.058300.07.090100.05.9906.3103.000000e-082.000000e-083.000000e-081000.0
40.045No. 3250.0000451.700000e-060.0000030.0000220.067250.07.760100.06.5606.8403.000000e-083.000000e-084.000000e-081000.0
50.053No. 2700.0000532.100000e-060.0000030.0000240.077250.08.440100.07.1307.4404.000000e-083.000000e-084.000000e-081000.0
60.063No. 2300.0000632.500000e-060.0000040.0000260.089250.09.180100.07.7608.0905.000000e-084.000000e-085.000000e-081000.0
70.075No. 2000.0000752.900000e-060.0000040.0000290.104250.010.230100.08.6409.0205.000000e-084.000000e-086.000000e-081000.0
80.09No. 1700.0000903.500000e-060.0000050.0000320.122200.011.270100.09.5309.8006.000000e-085.000000e-087.000000e-081000.0
90.106No. 1400.0001064.100000e-060.0000050.0000350.141200.012.390100.010.47010.7707.000000e-086.000000e-088.000000e-081000.0
100.125No. 1200.0001254.900000e-060.0000060.0000380.163200.013.510100.011.41011.7409.000000e-088.000000e-081.000000e-071000.0
110.15No. 1000.0001505.900000e-060.0000070.0000430.193200.015.300100.012.93013.3001.000000e-079.000000e-081.200000e-071000.0
120.18No. 800.0001807.000000e-060.0000080.0000470.227200.016.850100.014.24014.6501.200000e-071.100000e-071.500000e-071000.0
130.212No. 700.0002128.300000e-060.0000090.0000520.264160.018.79080.015.59016.0801.400000e-071.200000e-071.700000e-07800.0
140.25No. 600.0002509.800000e-060.0000100.0000580.308160.021.02080.017.44017.9901.600000e-071.300000e-071.900000e-07800.0
150.3No. 500.0003001.170000e-050.0000120.0000650.365160.023.70080.019.66020.2902.000000e-071.700000e-072.300000e-07800.0
160.355No. 450.0003551.390000e-050.0000130.0000720.427160.026.45080.021.95022.6402.200000e-071.900000e-072.600000e-07800.0
170.425No. 400.0004251.650000e-050.0000160.0000810.506120.029.95060.024.20025.0802.800000e-072.400000e-073.200000e-07600.0
180.5No. 350.0005001.970000e-050.0000180.0000890.589120.033.23060.026.85027.8203.200000e-072.700000e-073.600000e-07600.0
190.6No. 300.0006002.340000e-050.0000210.0001010.701100.038.00050.030.14031.3204.000000e-073.400000e-074.600000e-07500.0
200.71No. 250.0007102.780000e-050.0000250.0001120.822100.042.63050.033.82035.1404.500000e-073.800000e-075.200000e-07500.0
210.85No. 200.0008503.310000e-050.0000290.0001270.97780.048.76040.037.73039.3605.000000e-074.300000e-075.800000e-07400.0
221No. 180.0010003.940000e-050.0000340.0001401.14080.00.05540.00.0420.0445.600000e-044.800000e-046.400000e-04400.0
231.18No. 160.0011804.690000e-050.0000400.0001601.34080.00.06340.00.0490.0516.300000e-045.400000e-047.200000e-04400.0
241.4No. 140.0014005.550000e-050.0000460.0001801.58080.00.07140.00.0550.0577.100000e-046.000000e-048.200000e-04400.0
251.7No. 120.0017006.610000e-050.0000560.0002001.90050.00.08125.00.0590.0628.000000e-046.800000e-049.200000e-04250.0
261004 in.0.1000004.000000e-030.0029400.003820103.820NaNNaNNaNNaNNaN6.300000e-035.400000e-037.200000e-0320.0
271064.24 in.0.1060004.240000e-030.0031200.003990109.990NaNNaNNaNNaNNaN6.300000e-035.400000e-037.200000e-0320.0
2811.27/16 in.0.0112004.380000e-040.0003460.00077011.97030.00.38215.00.2560.2742.500000e-032.100000e-032.900000e-03150.0
2912.51/2 in.0.0125005.000000e-040.0003850.00083013.33030.00.42115.00.2830.3022.500000e-032.100000e-032.900000e-03150.0
301255 in.0.1250005.000000e-030.0036600.004510129.510NaNNaNNaNNaNNaN8.000000e-036.800000e-039.200000e-0320.0
3113.20.530 in.0.0132005.300000e-040.0004060.00086014.06030.00.44115.00.2960.3162.800000e-032.400000e-033.200000e-03150.0
32165/8 in.0.0160006.250000e-040.0004900.00099016.99030.00.52715.00.3540.3783.150000e-032.700000e-033.600000e-03150.0
33193/4 in.0.0190007.500000e-040.0005790.00113020.13030.00.62215.00.4180.4463.150000e-032.700000e-033.500000e-03150.0
342No. 100.0020007.870000e-050.0000650.0002302.23050.00.09425.00.0680.0729.000000e-047.700000e-041.040000e-03250.0
352.36No. 80.0023609.370000e-050.0000760.0002502.61040.00.10420.00.0730.0771.000000e-038.500000e-041.150000e-03200.0
362.8No. 70.0028001.100000e-040.0000900.0002903.09040.00.12120.00.0850.0901.120000e-039.500000e-041.300000e-03200.0
3722.47/8 in.0.0224008.750000e-040.0006810.00127023.670NaN0.73415.00.493NaN3.550000e-033.000000e-034.100000e-03150.0
38251.00 in.0.0250001.000000e-030.0007580.00138026.380NaN0.82315.00.553NaN3.550000e-033.000000e-034.100000e-0320.0
3926.51.06 in.0.0265001.060000e-030.0008020.00144027.940NaN0.86915.00.584NaN3.550000e-033.000000e-034.100000e-0320.0
403.35No. 60.0033501.320000e-040.0001070.0003203.67040.00.13820.00.0970.1031.250000e-031.060000e-031.500000e-03200.0
4131.51 1/4 in.0.0315001.250000e-030.0009500.00163033.130NaN1.066NaNNaNNaN4.000000e-033.400000e-034.600000e-0320.0
4237.51 1/2 in.0.0375001.500000e-030.0011300.00185039.350NaN1.374NaNNaNNaN4.500000e-033.800000e-035.200000e-0320.0
434No. 50.0040001.570000e-040.0001270.0003704.37030.00.16115.00.1080.1151.400000e-031.200000e-031.700000e-03150.0
444.75No. 40.0047501.870000e-040.0001500.0004105.16030.00.18215.00.1230.1311.600000e-031.300000e-031.900000e-03150.0
45451 3/4 in.0.0450001.750000e-030.0013500.00212047.120NaNNaNNaNNaNNaN4.500000e-033.800000e-035.200000e-0320.0
465.6No. 3 1/20.0056002.230000e-040.0001760.0004706.07030.00.21115.00.1420.1511.600000e-031.300000e-031.900000e-03150.0
47502 in.0.0500002.000000e-030.0014900.00229052.290NaNNaNNaNNaNNaN5.000000e-034.300000e-035.800000e-0320.0
48532.12 in.0.0530002.120000e-030.0015800.00239055.390NaNNaNNaNNaNNaN5.000000e-034.300000e-035.800000e-0320.0
496.31/4 in.0.0063002.500000e-040.0001970.0005106.81030.00.23315.00.1570.1671.800000e-031.500000e-032.100000e-03150.0
506.70.265 in.0.0067002.650000e-040.0002100.0005307.23030.00.24515.00.1640.1751.800000e-031.500000e-032.100000e-03150.0
51632 1/2 in.0.0630002.500000e-030.0018700.00271065.710NaNNaNNaNNaNNaN5.600000e-034.800000e-036.400000e-0320.0
52753 in.0.0750003.000000e-030.0022200.00309078.090NaNNaNNaNNaNNaN6.300000e-035.400000e-037.200000e-0320.0
5385/16 in.0.0080003.120000e-040.0002490.0006008.60030.00.28415.00.1910.2042.000000e-031.700000e-032.300000e-03150.0
549.53/8 in.0.0095003.750000e-040.0002950.00068010.18030.00.33015.00.2220.2372.240000e-031.900000e-032.600000e-03150.0
55903 1/2 in.0.0900003.500000e-030.0026500.00353093.530NaNNaNNaNNaNNaN6.300000e-035.400000e-037.200000e-0320.0
\n", "
" ], "text/plain": [ " designation old_designation opening opening_inch Y_variation_avg \\\n", "0 0.02 No. 635 0.000020 8.000000e-07 0.000002 \n", "1 0.025 No. 500 0.000025 1.000000e-06 0.000003 \n", "2 0.032 No. 450 0.000032 1.200000e-06 0.000003 \n", "3 0.038 No. 400 0.000038 1.500000e-06 0.000003 \n", "4 0.045 No. 325 0.000045 1.700000e-06 0.000003 \n", "5 0.053 No. 270 0.000053 2.100000e-06 0.000003 \n", "6 0.063 No. 230 0.000063 2.500000e-06 0.000004 \n", "7 0.075 No. 200 0.000075 2.900000e-06 0.000004 \n", "8 0.09 No. 170 0.000090 3.500000e-06 0.000005 \n", "9 0.106 No. 140 0.000106 4.100000e-06 0.000005 \n", "10 0.125 No. 120 0.000125 4.900000e-06 0.000006 \n", "11 0.15 No. 100 0.000150 5.900000e-06 0.000007 \n", "12 0.18 No. 80 0.000180 7.000000e-06 0.000008 \n", "13 0.212 No. 70 0.000212 8.300000e-06 0.000009 \n", "14 0.25 No. 60 0.000250 9.800000e-06 0.000010 \n", "15 0.3 No. 50 0.000300 1.170000e-05 0.000012 \n", "16 0.355 No. 45 0.000355 1.390000e-05 0.000013 \n", "17 0.425 No. 40 0.000425 1.650000e-05 0.000016 \n", "18 0.5 No. 35 0.000500 1.970000e-05 0.000018 \n", "19 0.6 No. 30 0.000600 2.340000e-05 0.000021 \n", "20 0.71 No. 25 0.000710 2.780000e-05 0.000025 \n", "21 0.85 No. 20 0.000850 3.310000e-05 0.000029 \n", "22 1 No. 18 0.001000 3.940000e-05 0.000034 \n", "23 1.18 No. 16 0.001180 4.690000e-05 0.000040 \n", "24 1.4 No. 14 0.001400 5.550000e-05 0.000046 \n", "25 1.7 No. 12 0.001700 6.610000e-05 0.000056 \n", "26 100 4 in. 0.100000 4.000000e-03 0.002940 \n", "27 106 4.24 in. 0.106000 4.240000e-03 0.003120 \n", "28 11.2 7/16 in. 0.011200 4.380000e-04 0.000346 \n", "29 12.5 1/2 in. 0.012500 5.000000e-04 0.000385 \n", "30 125 5 in. 0.125000 5.000000e-03 0.003660 \n", "31 13.2 0.530 in. 0.013200 5.300000e-04 0.000406 \n", "32 16 5/8 in. 0.016000 6.250000e-04 0.000490 \n", "33 19 3/4 in. 0.019000 7.500000e-04 0.000579 \n", "34 2 No. 10 0.002000 7.870000e-05 0.000065 \n", "35 2.36 No. 8 0.002360 9.370000e-05 0.000076 \n", "36 2.8 No. 7 0.002800 1.100000e-04 0.000090 \n", "37 22.4 7/8 in. 0.022400 8.750000e-04 0.000681 \n", "38 25 1.00 in. 0.025000 1.000000e-03 0.000758 \n", "39 26.5 1.06 in. 0.026500 1.060000e-03 0.000802 \n", "40 3.35 No. 6 0.003350 1.320000e-04 0.000107 \n", "41 31.5 1 1/4 in. 0.031500 1.250000e-03 0.000950 \n", "42 37.5 1 1/2 in. 0.037500 1.500000e-03 0.001130 \n", "43 4 No. 5 0.004000 1.570000e-04 0.000127 \n", "44 4.75 No. 4 0.004750 1.870000e-04 0.000150 \n", "45 45 1 3/4 in. 0.045000 1.750000e-03 0.001350 \n", "46 5.6 No. 3 1/2 0.005600 2.230000e-04 0.000176 \n", "47 50 2 in. 0.050000 2.000000e-03 0.001490 \n", "48 53 2.12 in. 0.053000 2.120000e-03 0.001580 \n", "49 6.3 1/4 in. 0.006300 2.500000e-04 0.000197 \n", "50 6.7 0.265 in. 0.006700 2.650000e-04 0.000210 \n", "51 63 2 1/2 in. 0.063000 2.500000e-03 0.001870 \n", "52 75 3 in. 0.075000 3.000000e-03 0.002220 \n", "53 8 5/16 in. 0.008000 3.120000e-04 0.000249 \n", "54 9.5 3/8 in. 0.009500 3.750000e-04 0.000295 \n", "55 90 3 1/2 in. 0.090000 3.500000e-03 0.002650 \n", "\n", " X_variation_max max_opening calibration_samples compliance_sd \\\n", "0 0.000015 0.035 300.0 5.330 \n", "1 0.000016 0.041 300.0 5.710 \n", "2 0.000018 0.050 300.0 6.420 \n", "3 0.000020 0.058 300.0 7.090 \n", "4 0.000022 0.067 250.0 7.760 \n", "5 0.000024 0.077 250.0 8.440 \n", "6 0.000026 0.089 250.0 9.180 \n", "7 0.000029 0.104 250.0 10.230 \n", "8 0.000032 0.122 200.0 11.270 \n", "9 0.000035 0.141 200.0 12.390 \n", "10 0.000038 0.163 200.0 13.510 \n", "11 0.000043 0.193 200.0 15.300 \n", "12 0.000047 0.227 200.0 16.850 \n", "13 0.000052 0.264 160.0 18.790 \n", "14 0.000058 0.308 160.0 21.020 \n", "15 0.000065 0.365 160.0 23.700 \n", "16 0.000072 0.427 160.0 26.450 \n", "17 0.000081 0.506 120.0 29.950 \n", "18 0.000089 0.589 120.0 33.230 \n", "19 0.000101 0.701 100.0 38.000 \n", "20 0.000112 0.822 100.0 42.630 \n", "21 0.000127 0.977 80.0 48.760 \n", "22 0.000140 1.140 80.0 0.055 \n", "23 0.000160 1.340 80.0 0.063 \n", "24 0.000180 1.580 80.0 0.071 \n", "25 0.000200 1.900 50.0 0.081 \n", "26 0.003820 103.820 NaN NaN \n", "27 0.003990 109.990 NaN NaN \n", "28 0.000770 11.970 30.0 0.382 \n", "29 0.000830 13.330 30.0 0.421 \n", "30 0.004510 129.510 NaN NaN \n", "31 0.000860 14.060 30.0 0.441 \n", "32 0.000990 16.990 30.0 0.527 \n", "33 0.001130 20.130 30.0 0.622 \n", "34 0.000230 2.230 50.0 0.094 \n", "35 0.000250 2.610 40.0 0.104 \n", "36 0.000290 3.090 40.0 0.121 \n", "37 0.001270 23.670 NaN 0.734 \n", "38 0.001380 26.380 NaN 0.823 \n", "39 0.001440 27.940 NaN 0.869 \n", "40 0.000320 3.670 40.0 0.138 \n", "41 0.001630 33.130 NaN 1.066 \n", "42 0.001850 39.350 NaN 1.374 \n", "43 0.000370 4.370 30.0 0.161 \n", "44 0.000410 5.160 30.0 0.182 \n", "45 0.002120 47.120 NaN NaN \n", "46 0.000470 6.070 30.0 0.211 \n", "47 0.002290 52.290 NaN NaN \n", "48 0.002390 55.390 NaN NaN \n", "49 0.000510 6.810 30.0 0.233 \n", "50 0.000530 7.230 30.0 0.245 \n", "51 0.002710 65.710 NaN NaN \n", "52 0.003090 78.090 NaN NaN \n", "53 0.000600 8.600 30.0 0.284 \n", "54 0.000680 10.180 30.0 0.330 \n", "55 0.003530 93.530 NaN NaN \n", "\n", " inspection_samples inspection_sd calibration_sd d_wire \\\n", "0 100.0 4.510 4.750 2.000000e-08 \n", "1 100.0 4.820 5.060 3.000000e-08 \n", "2 100.0 5.420 5.710 3.000000e-08 \n", "3 100.0 5.990 6.310 3.000000e-08 \n", "4 100.0 6.560 6.840 3.000000e-08 \n", "5 100.0 7.130 7.440 4.000000e-08 \n", "6 100.0 7.760 8.090 5.000000e-08 \n", "7 100.0 8.640 9.020 5.000000e-08 \n", "8 100.0 9.530 9.800 6.000000e-08 \n", "9 100.0 10.470 10.770 7.000000e-08 \n", "10 100.0 11.410 11.740 9.000000e-08 \n", "11 100.0 12.930 13.300 1.000000e-07 \n", "12 100.0 14.240 14.650 1.200000e-07 \n", "13 80.0 15.590 16.080 1.400000e-07 \n", "14 80.0 17.440 17.990 1.600000e-07 \n", "15 80.0 19.660 20.290 2.000000e-07 \n", "16 80.0 21.950 22.640 2.200000e-07 \n", "17 60.0 24.200 25.080 2.800000e-07 \n", "18 60.0 26.850 27.820 3.200000e-07 \n", "19 50.0 30.140 31.320 4.000000e-07 \n", "20 50.0 33.820 35.140 4.500000e-07 \n", "21 40.0 37.730 39.360 5.000000e-07 \n", "22 40.0 0.042 0.044 5.600000e-04 \n", "23 40.0 0.049 0.051 6.300000e-04 \n", "24 40.0 0.055 0.057 7.100000e-04 \n", "25 25.0 0.059 0.062 8.000000e-04 \n", "26 NaN NaN NaN 6.300000e-03 \n", "27 NaN NaN NaN 6.300000e-03 \n", "28 15.0 0.256 0.274 2.500000e-03 \n", "29 15.0 0.283 0.302 2.500000e-03 \n", "30 NaN NaN NaN 8.000000e-03 \n", "31 15.0 0.296 0.316 2.800000e-03 \n", "32 15.0 0.354 0.378 3.150000e-03 \n", "33 15.0 0.418 0.446 3.150000e-03 \n", "34 25.0 0.068 0.072 9.000000e-04 \n", "35 20.0 0.073 0.077 1.000000e-03 \n", "36 20.0 0.085 0.090 1.120000e-03 \n", "37 15.0 0.493 NaN 3.550000e-03 \n", "38 15.0 0.553 NaN 3.550000e-03 \n", "39 15.0 0.584 NaN 3.550000e-03 \n", "40 20.0 0.097 0.103 1.250000e-03 \n", "41 NaN NaN NaN 4.000000e-03 \n", "42 NaN NaN NaN 4.500000e-03 \n", "43 15.0 0.108 0.115 1.400000e-03 \n", "44 15.0 0.123 0.131 1.600000e-03 \n", "45 NaN NaN NaN 4.500000e-03 \n", "46 15.0 0.142 0.151 1.600000e-03 \n", "47 NaN NaN NaN 5.000000e-03 \n", "48 NaN NaN NaN 5.000000e-03 \n", "49 15.0 0.157 0.167 1.800000e-03 \n", "50 15.0 0.164 0.175 1.800000e-03 \n", "51 NaN NaN NaN 5.600000e-03 \n", "52 NaN NaN NaN 6.300000e-03 \n", "53 15.0 0.191 0.204 2.000000e-03 \n", "54 15.0 0.222 0.237 2.240000e-03 \n", "55 NaN NaN NaN 6.300000e-03 \n", "\n", " d_wire_min d_wire_max compliance_samples \n", "0 2.000000e-08 2.000000e-08 1000.0 \n", "1 2.000000e-08 3.000000e-08 1000.0 \n", "2 2.000000e-08 3.000000e-08 1000.0 \n", "3 2.000000e-08 3.000000e-08 1000.0 \n", "4 3.000000e-08 4.000000e-08 1000.0 \n", "5 3.000000e-08 4.000000e-08 1000.0 \n", "6 4.000000e-08 5.000000e-08 1000.0 \n", "7 4.000000e-08 6.000000e-08 1000.0 \n", "8 5.000000e-08 7.000000e-08 1000.0 \n", "9 6.000000e-08 8.000000e-08 1000.0 \n", "10 8.000000e-08 1.000000e-07 1000.0 \n", "11 9.000000e-08 1.200000e-07 1000.0 \n", "12 1.100000e-07 1.500000e-07 1000.0 \n", "13 1.200000e-07 1.700000e-07 800.0 \n", "14 1.300000e-07 1.900000e-07 800.0 \n", "15 1.700000e-07 2.300000e-07 800.0 \n", "16 1.900000e-07 2.600000e-07 800.0 \n", "17 2.400000e-07 3.200000e-07 600.0 \n", "18 2.700000e-07 3.600000e-07 600.0 \n", "19 3.400000e-07 4.600000e-07 500.0 \n", "20 3.800000e-07 5.200000e-07 500.0 \n", "21 4.300000e-07 5.800000e-07 400.0 \n", "22 4.800000e-04 6.400000e-04 400.0 \n", "23 5.400000e-04 7.200000e-04 400.0 \n", "24 6.000000e-04 8.200000e-04 400.0 \n", "25 6.800000e-04 9.200000e-04 250.0 \n", "26 5.400000e-03 7.200000e-03 20.0 \n", "27 5.400000e-03 7.200000e-03 20.0 \n", "28 2.100000e-03 2.900000e-03 150.0 \n", "29 2.100000e-03 2.900000e-03 150.0 \n", "30 6.800000e-03 9.200000e-03 20.0 \n", "31 2.400000e-03 3.200000e-03 150.0 \n", "32 2.700000e-03 3.600000e-03 150.0 \n", "33 2.700000e-03 3.500000e-03 150.0 \n", "34 7.700000e-04 1.040000e-03 250.0 \n", "35 8.500000e-04 1.150000e-03 200.0 \n", "36 9.500000e-04 1.300000e-03 200.0 \n", "37 3.000000e-03 4.100000e-03 150.0 \n", "38 3.000000e-03 4.100000e-03 20.0 \n", "39 3.000000e-03 4.100000e-03 20.0 \n", "40 1.060000e-03 1.500000e-03 200.0 \n", "41 3.400000e-03 4.600000e-03 20.0 \n", "42 3.800000e-03 5.200000e-03 20.0 \n", "43 1.200000e-03 1.700000e-03 150.0 \n", "44 1.300000e-03 1.900000e-03 150.0 \n", "45 3.800000e-03 5.200000e-03 20.0 \n", "46 1.300000e-03 1.900000e-03 150.0 \n", "47 4.300000e-03 5.800000e-03 20.0 \n", "48 4.300000e-03 5.800000e-03 20.0 \n", "49 1.500000e-03 2.100000e-03 150.0 \n", "50 1.500000e-03 2.100000e-03 150.0 \n", "51 4.800000e-03 6.400000e-03 20.0 \n", "52 5.400000e-03 7.200000e-03 20.0 \n", "53 1.700000e-03 2.300000e-03 150.0 \n", "54 1.900000e-03 2.600000e-03 150.0 \n", "55 5.400000e-03 7.200000e-03 20.0 " ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# All units in SI, meters.\n", "dat = {}\n", "for name in Sieve.__slots__:\n", " vals = []\n", " for s in ASTM_E11_sieves.values():\n", " vals.append(getattr(s, name))\n", " dat[name] = vals\n", "pd.DataFrame(dat)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## ISO 3310-1:2016 - Test Sieves -- Technical Requirements and Testing -- Part 1: Test Sieves of Metal Wire Cloth.\n" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
designationopeningY_variation_avgX_variation_maxcompliance_sdd_wired_wire_mind_wire_max
00.020.0000200.0000020.0000130.0000050.0000200.0000230.000023
10.0250.0000250.0000020.0000150.0000050.0000250.0000290.000029
20.0320.0000320.0000020.0000170.0000060.0000280.0000330.000033
30.0360.0000360.0000030.0000180.0000060.0000300.0000350.000035
40.0380.0000380.0000030.0000180.0000060.0000300.0000350.000035
50.040.0000400.0000030.0000190.0000060.0000320.0000370.000037
60.0450.0000450.0000030.0000200.0000070.0000320.0000370.000037
70.050.0000500.0000030.0000210.0000070.0000360.0000410.000041
80.0530.0000530.0000030.0000210.0000080.0000360.0000410.000041
90.0560.0000560.0000030.0000220.0000080.0000400.0000460.000046
100.0630.0000630.0000030.0000240.0000080.0000450.0000520.000052
110.0710.0000710.0000040.0000250.0000090.0000500.0000430.000058
120.0750.0000750.0000040.0000260.0000090.0000500.0000430.000058
130.080.0000800.0000040.0000270.0000090.0000560.0000480.000064
140.090.0000900.0000040.0000290.0000100.0000630.0000540.000072
150.10.0001000.0000050.0000300.0000110.0000710.0000600.000082
160.1060.0001060.0000050.0000310.0000110.0000710.0000600.000082
170.1120.0001120.0000050.0000320.0000120.0000800.0000680.000092
180.1250.0001250.0000050.0000340.0000120.0000900.0000770.000104
190.140.0001400.0000060.0000370.0000130.0001000.0000850.000115
200.150.0001500.0000060.0000380.0000140.0001000.0000850.000115
210.160.0001600.0000060.0000400.0000140.0001120.0000950.000130
220.180.0001800.0000070.0000430.0000150.0001250.0001060.000150
230.20.0002000.0000070.0000450.0000160.0001400.0001200.000170
240.2120.0002120.0000080.0000470.0000170.0001400.0001200.000170
250.2240.0002240.0000080.0000490.0000170.0001600.0001300.000190
260.250.0002500.0000090.0000520.0000190.0001600.0001300.000190
270.280.0002800.0000100.0000560.0000200.0001800.0001500.000210
280.30.0003000.0000100.0000580.0000210.0002000.0001700.000230
290.3150.0003150.0000110.0000600.0000220.0002000.0001700.000230
300.3550.0003550.0000120.0000650.0000240.0002240.0001900.000260
310.40.0004000.0000130.0000700.0000260.0002500.0002100.000290
320.4250.0004250.0000140.0000730.0000270.0002800.0002400.000320
330.450.0004500.0000150.0000750.0000280.0002800.0002400.000320
340.50.0005000.0000160.0000800.0000300.0003150.0002700.000360
350.560.0005600.0000180.0000870.0000320.0003550.0003000.000410
360.60.0006000.0000190.0000910.0000340.0004000.0003400.000460
370.630.0006300.0000200.0000930.0000350.0004000.0003400.000460
380.710.0007100.0000220.0001010.0000380.0004500.0003800.000520
390.80.0008000.0000250.0001090.0000420.0004500.0003800.000520
400.850.0008500.0000260.0001140.0000440.0005000.0004300.000580
410.90.0009000.0000280.0001180.0000460.0005000.0004300.000580
4210.0010000.0000300.0001300.0000490.0005600.0004800.000640
431.120.0011200.0000300.0001400.0000530.0005600.0004800.000640
441.180.0011800.0000400.0001400.0000560.0006300.0005400.000720
451.250.0012500.0000400.0001500.0000580.0006300.0005400.000720
461.40.0014000.0000400.0001600.0000630.0007100.0006000.000820
471.60.0016000.0000500.0001700.0000700.0008000.0006800.000920
481.70.0017000.0000500.0001800.0000730.0008000.0006800.000920
491.80.0018000.0000500.0001900.0000760.0008000.0006800.000920
50100.0100000.0002800.0006400.0003070.0025000.0021000.002900
511000.1000000.0026500.003440NaN0.0063000.0054000.007200
521060.1060000.0028000.003590NaN0.0063000.0054000.007200
5311.20.0112000.0003100.0006900.0003390.0025000.0021000.002900
541120.1120000.0029600.003740NaN0.0080000.0068000.009200
5512.50.0125000.0003500.0007500.0003740.0025000.0021000.002900
561250.1250000.0033000.004060NaN0.0080000.0068000.009200
5713.20.0132000.0003700.0007800.0003920.0028000.0024000.003200
58140.0140000.0003900.0008100.0004130.0028000.0024000.003200
59160.0160000.0004400.0008900.0004670.0031500.0027000.003600
60180.0180000.0004900.0009700.0005200.0031500.0027000.003600
61190.0190000.0005200.0010100.0005480.0031500.0027000.003600
6220.0020000.0000600.0002000.0000830.0009000.0007700.001040
632.240.0022400.0000700.0002200.0000900.0009000.0007700.001040
642.360.0023600.0000700.0002300.0000940.0010000.0008500.001150
652.50.0025000.0000700.0002400.0000980.0010000.0008500.001150
662.80.0028000.0000800.0002600.0001080.0011200.0009500.001300
67200.0200000.0005500.0010500.0005750.0031500.0027000.003600
6822.40.0224000.0006100.0011400.0006410.0035500.0030000.004100
69250.0250000.0006800.0012400.0007130.0035500.0030000.004100
7026.50.0265000.0007200.0012900.0007570.0035500.0030000.004100
71280.0280000.0007600.0013500.0008010.0035500.0030000.004100
723.150.0031500.0000900.0002800.0001180.0012500.0010600.001500
733.350.0033500.0001000.0002900.0001240.0012500.0010600.001500
743.550.0035500.0001000.0003000.0001300.0012500.0010600.001500
7531.50.0315000.0008500.0014700.0009050.0040000.0034000.004600
7635.50.0355000.0009600.0016000.0010000.0040000.0034000.004600
7737.50.0375000.0010100.0016700.0010000.0045000.0038000.005200
7840.0040000.0001100.0003300.0001430.0014000.0012000.001700
794.50.0045000.0001300.0003600.0001570.0014000.0012000.001700
804.750.0047500.0001400.0003700.0001640.0016000.0013000.001900
81400.0400000.0010800.0017500.0010000.0045000.0038000.005200
82450.0450000.0012100.0019100.0010000.0045000.0038000.005200
8350.0050000.0001400.0003900.0001710.0016000.0013000.001900
845.60.0056000.0001600.0004200.0001880.0016000.0013000.001900
85500.0500000.0013400.002060NaN0.0050000.0043000.005800
86530.0530000.0014200.002150NaN0.0050000.0043000.005800
87560.0560000.0015000.002240NaN0.0050000.0043000.005800
886.30.0063000.0001800.0004600.0002070.0018000.0015000.002100
896.70.0067000.0001900.0004800.0002180.0018000.0015000.002100
90630.0630000.0016900.002440NaN0.0056000.0048000.006400
917.10.0071000.0002000.0005000.0002290.0018000.0015000.002100
92710.0710000.0018900.002670NaN0.0056000.0048000.006400
93750.0750000.0020000.002780NaN0.0063000.0054000.007200
9480.0080000.0002200.0005400.0002540.0020000.0017000.002300
95800.0800000.0021300.002910NaN0.0063000.0054000.007200
9690.0090000.0002500.0005900.0002810.0022400.0019000.002600
979.50.0095000.0002700.0006100.0002940.0022400.0019000.002600
98900.0900000.0023900.003180NaN0.0063000.0054000.007200
\n", "
" ], "text/plain": [ " designation opening Y_variation_avg X_variation_max compliance_sd \\\n", "0 0.02 0.000020 0.000002 0.000013 0.000005 \n", "1 0.025 0.000025 0.000002 0.000015 0.000005 \n", "2 0.032 0.000032 0.000002 0.000017 0.000006 \n", "3 0.036 0.000036 0.000003 0.000018 0.000006 \n", "4 0.038 0.000038 0.000003 0.000018 0.000006 \n", "5 0.04 0.000040 0.000003 0.000019 0.000006 \n", "6 0.045 0.000045 0.000003 0.000020 0.000007 \n", "7 0.05 0.000050 0.000003 0.000021 0.000007 \n", "8 0.053 0.000053 0.000003 0.000021 0.000008 \n", "9 0.056 0.000056 0.000003 0.000022 0.000008 \n", "10 0.063 0.000063 0.000003 0.000024 0.000008 \n", "11 0.071 0.000071 0.000004 0.000025 0.000009 \n", "12 0.075 0.000075 0.000004 0.000026 0.000009 \n", "13 0.08 0.000080 0.000004 0.000027 0.000009 \n", "14 0.09 0.000090 0.000004 0.000029 0.000010 \n", "15 0.1 0.000100 0.000005 0.000030 0.000011 \n", "16 0.106 0.000106 0.000005 0.000031 0.000011 \n", "17 0.112 0.000112 0.000005 0.000032 0.000012 \n", "18 0.125 0.000125 0.000005 0.000034 0.000012 \n", "19 0.14 0.000140 0.000006 0.000037 0.000013 \n", "20 0.15 0.000150 0.000006 0.000038 0.000014 \n", "21 0.16 0.000160 0.000006 0.000040 0.000014 \n", "22 0.18 0.000180 0.000007 0.000043 0.000015 \n", "23 0.2 0.000200 0.000007 0.000045 0.000016 \n", "24 0.212 0.000212 0.000008 0.000047 0.000017 \n", "25 0.224 0.000224 0.000008 0.000049 0.000017 \n", "26 0.25 0.000250 0.000009 0.000052 0.000019 \n", "27 0.28 0.000280 0.000010 0.000056 0.000020 \n", "28 0.3 0.000300 0.000010 0.000058 0.000021 \n", "29 0.315 0.000315 0.000011 0.000060 0.000022 \n", "30 0.355 0.000355 0.000012 0.000065 0.000024 \n", "31 0.4 0.000400 0.000013 0.000070 0.000026 \n", "32 0.425 0.000425 0.000014 0.000073 0.000027 \n", "33 0.45 0.000450 0.000015 0.000075 0.000028 \n", "34 0.5 0.000500 0.000016 0.000080 0.000030 \n", "35 0.56 0.000560 0.000018 0.000087 0.000032 \n", "36 0.6 0.000600 0.000019 0.000091 0.000034 \n", "37 0.63 0.000630 0.000020 0.000093 0.000035 \n", "38 0.71 0.000710 0.000022 0.000101 0.000038 \n", "39 0.8 0.000800 0.000025 0.000109 0.000042 \n", "40 0.85 0.000850 0.000026 0.000114 0.000044 \n", "41 0.9 0.000900 0.000028 0.000118 0.000046 \n", "42 1 0.001000 0.000030 0.000130 0.000049 \n", "43 1.12 0.001120 0.000030 0.000140 0.000053 \n", "44 1.18 0.001180 0.000040 0.000140 0.000056 \n", "45 1.25 0.001250 0.000040 0.000150 0.000058 \n", "46 1.4 0.001400 0.000040 0.000160 0.000063 \n", "47 1.6 0.001600 0.000050 0.000170 0.000070 \n", "48 1.7 0.001700 0.000050 0.000180 0.000073 \n", "49 1.8 0.001800 0.000050 0.000190 0.000076 \n", "50 10 0.010000 0.000280 0.000640 0.000307 \n", "51 100 0.100000 0.002650 0.003440 NaN \n", "52 106 0.106000 0.002800 0.003590 NaN \n", "53 11.2 0.011200 0.000310 0.000690 0.000339 \n", "54 112 0.112000 0.002960 0.003740 NaN \n", "55 12.5 0.012500 0.000350 0.000750 0.000374 \n", "56 125 0.125000 0.003300 0.004060 NaN \n", "57 13.2 0.013200 0.000370 0.000780 0.000392 \n", "58 14 0.014000 0.000390 0.000810 0.000413 \n", "59 16 0.016000 0.000440 0.000890 0.000467 \n", "60 18 0.018000 0.000490 0.000970 0.000520 \n", "61 19 0.019000 0.000520 0.001010 0.000548 \n", "62 2 0.002000 0.000060 0.000200 0.000083 \n", "63 2.24 0.002240 0.000070 0.000220 0.000090 \n", "64 2.36 0.002360 0.000070 0.000230 0.000094 \n", "65 2.5 0.002500 0.000070 0.000240 0.000098 \n", "66 2.8 0.002800 0.000080 0.000260 0.000108 \n", "67 20 0.020000 0.000550 0.001050 0.000575 \n", "68 22.4 0.022400 0.000610 0.001140 0.000641 \n", "69 25 0.025000 0.000680 0.001240 0.000713 \n", "70 26.5 0.026500 0.000720 0.001290 0.000757 \n", "71 28 0.028000 0.000760 0.001350 0.000801 \n", "72 3.15 0.003150 0.000090 0.000280 0.000118 \n", "73 3.35 0.003350 0.000100 0.000290 0.000124 \n", "74 3.55 0.003550 0.000100 0.000300 0.000130 \n", "75 31.5 0.031500 0.000850 0.001470 0.000905 \n", "76 35.5 0.035500 0.000960 0.001600 0.001000 \n", "77 37.5 0.037500 0.001010 0.001670 0.001000 \n", "78 4 0.004000 0.000110 0.000330 0.000143 \n", "79 4.5 0.004500 0.000130 0.000360 0.000157 \n", "80 4.75 0.004750 0.000140 0.000370 0.000164 \n", "81 40 0.040000 0.001080 0.001750 0.001000 \n", "82 45 0.045000 0.001210 0.001910 0.001000 \n", "83 5 0.005000 0.000140 0.000390 0.000171 \n", "84 5.6 0.005600 0.000160 0.000420 0.000188 \n", "85 50 0.050000 0.001340 0.002060 NaN \n", "86 53 0.053000 0.001420 0.002150 NaN \n", "87 56 0.056000 0.001500 0.002240 NaN \n", "88 6.3 0.006300 0.000180 0.000460 0.000207 \n", "89 6.7 0.006700 0.000190 0.000480 0.000218 \n", "90 63 0.063000 0.001690 0.002440 NaN \n", "91 7.1 0.007100 0.000200 0.000500 0.000229 \n", "92 71 0.071000 0.001890 0.002670 NaN \n", "93 75 0.075000 0.002000 0.002780 NaN \n", "94 8 0.008000 0.000220 0.000540 0.000254 \n", "95 80 0.080000 0.002130 0.002910 NaN \n", "96 9 0.009000 0.000250 0.000590 0.000281 \n", "97 9.5 0.009500 0.000270 0.000610 0.000294 \n", "98 90 0.090000 0.002390 0.003180 NaN \n", "\n", " d_wire d_wire_min d_wire_max \n", "0 0.000020 0.000023 0.000023 \n", "1 0.000025 0.000029 0.000029 \n", "2 0.000028 0.000033 0.000033 \n", "3 0.000030 0.000035 0.000035 \n", "4 0.000030 0.000035 0.000035 \n", "5 0.000032 0.000037 0.000037 \n", "6 0.000032 0.000037 0.000037 \n", "7 0.000036 0.000041 0.000041 \n", "8 0.000036 0.000041 0.000041 \n", "9 0.000040 0.000046 0.000046 \n", "10 0.000045 0.000052 0.000052 \n", "11 0.000050 0.000043 0.000058 \n", "12 0.000050 0.000043 0.000058 \n", "13 0.000056 0.000048 0.000064 \n", "14 0.000063 0.000054 0.000072 \n", "15 0.000071 0.000060 0.000082 \n", "16 0.000071 0.000060 0.000082 \n", "17 0.000080 0.000068 0.000092 \n", "18 0.000090 0.000077 0.000104 \n", "19 0.000100 0.000085 0.000115 \n", "20 0.000100 0.000085 0.000115 \n", "21 0.000112 0.000095 0.000130 \n", "22 0.000125 0.000106 0.000150 \n", "23 0.000140 0.000120 0.000170 \n", "24 0.000140 0.000120 0.000170 \n", "25 0.000160 0.000130 0.000190 \n", "26 0.000160 0.000130 0.000190 \n", "27 0.000180 0.000150 0.000210 \n", "28 0.000200 0.000170 0.000230 \n", "29 0.000200 0.000170 0.000230 \n", "30 0.000224 0.000190 0.000260 \n", "31 0.000250 0.000210 0.000290 \n", "32 0.000280 0.000240 0.000320 \n", "33 0.000280 0.000240 0.000320 \n", "34 0.000315 0.000270 0.000360 \n", "35 0.000355 0.000300 0.000410 \n", "36 0.000400 0.000340 0.000460 \n", "37 0.000400 0.000340 0.000460 \n", "38 0.000450 0.000380 0.000520 \n", "39 0.000450 0.000380 0.000520 \n", "40 0.000500 0.000430 0.000580 \n", "41 0.000500 0.000430 0.000580 \n", "42 0.000560 0.000480 0.000640 \n", "43 0.000560 0.000480 0.000640 \n", "44 0.000630 0.000540 0.000720 \n", "45 0.000630 0.000540 0.000720 \n", "46 0.000710 0.000600 0.000820 \n", "47 0.000800 0.000680 0.000920 \n", "48 0.000800 0.000680 0.000920 \n", "49 0.000800 0.000680 0.000920 \n", "50 0.002500 0.002100 0.002900 \n", "51 0.006300 0.005400 0.007200 \n", "52 0.006300 0.005400 0.007200 \n", "53 0.002500 0.002100 0.002900 \n", "54 0.008000 0.006800 0.009200 \n", "55 0.002500 0.002100 0.002900 \n", "56 0.008000 0.006800 0.009200 \n", "57 0.002800 0.002400 0.003200 \n", "58 0.002800 0.002400 0.003200 \n", "59 0.003150 0.002700 0.003600 \n", "60 0.003150 0.002700 0.003600 \n", "61 0.003150 0.002700 0.003600 \n", "62 0.000900 0.000770 0.001040 \n", "63 0.000900 0.000770 0.001040 \n", "64 0.001000 0.000850 0.001150 \n", "65 0.001000 0.000850 0.001150 \n", "66 0.001120 0.000950 0.001300 \n", "67 0.003150 0.002700 0.003600 \n", "68 0.003550 0.003000 0.004100 \n", "69 0.003550 0.003000 0.004100 \n", "70 0.003550 0.003000 0.004100 \n", "71 0.003550 0.003000 0.004100 \n", "72 0.001250 0.001060 0.001500 \n", "73 0.001250 0.001060 0.001500 \n", "74 0.001250 0.001060 0.001500 \n", "75 0.004000 0.003400 0.004600 \n", "76 0.004000 0.003400 0.004600 \n", "77 0.004500 0.003800 0.005200 \n", "78 0.001400 0.001200 0.001700 \n", "79 0.001400 0.001200 0.001700 \n", "80 0.001600 0.001300 0.001900 \n", "81 0.004500 0.003800 0.005200 \n", "82 0.004500 0.003800 0.005200 \n", "83 0.001600 0.001300 0.001900 \n", "84 0.001600 0.001300 0.001900 \n", "85 0.005000 0.004300 0.005800 \n", "86 0.005000 0.004300 0.005800 \n", "87 0.005000 0.004300 0.005800 \n", "88 0.001800 0.001500 0.002100 \n", "89 0.001800 0.001500 0.002100 \n", "90 0.005600 0.004800 0.006400 \n", "91 0.001800 0.001500 0.002100 \n", "92 0.005600 0.004800 0.006400 \n", "93 0.006300 0.005400 0.007200 \n", "94 0.002000 0.001700 0.002300 \n", "95 0.006300 0.005400 0.007200 \n", "96 0.002240 0.001900 0.002600 \n", "97 0.002240 0.001900 0.002600 \n", "98 0.006300 0.005400 0.007200 " ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# All units in SI, meters.\n", "dat = {}\n", "for name in Sieve.__slots__:\n", " vals = []\n", " for s in ISO_3310_1_sieves.values():\n", " vals.append(getattr(s, name))\n", " dat[name] = vals\n", "pd.DataFrame(dat).dropna(how='all', axis=1)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/Data/Pipe Schedules.ipynb0000644000175000017500000171524214302004506020057 0ustar nileshnilesh{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Pipe Schedules" ] }, { "cell_type": "code", "execution_count": 17, "metadata": { "collapsed": false }, "outputs": [], "source": [ "from IPython.display import display, Markdown\n", "import pandas as pd\n", "from fluids.piping import schedule_lookup\n", "dat = schedule_lookup['40']" ] }, { "cell_type": "code", "execution_count": 25, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/markdown": [ "## Schedule 40" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1256.8410.31.73
10.2509.2213.72.24
20.37512.4817.12.31
30.50015.7621.32.77
40.75020.9626.72.87
51.00026.6433.43.38
61.25035.0842.23.56
71.50040.9448.33.68
82.00052.4860.33.91
92.50062.6873.05.16
103.00077.9288.95.49
113.50090.12101.65.74
124.000102.26114.36.02
135.000128.20141.36.55
146.000154.08168.37.11
158.000202.74219.18.18
1610.000254.46273.09.27
1712.000303.18323.810.31
1814.000333.34355.611.13
1916.000381.00406.412.70
2018.000428.46457.014.27
2120.000477.82508.015.09
2224.000575.04610.017.48
2332.000778.04813.017.48
2434.000829.04864.017.48
2536.000875.90914.019.05
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 6.84 10.3 1.73\n", "1 0.250 9.22 13.7 2.24\n", "2 0.375 12.48 17.1 2.31\n", "3 0.500 15.76 21.3 2.77\n", "4 0.750 20.96 26.7 2.87\n", "5 1.000 26.64 33.4 3.38\n", "6 1.250 35.08 42.2 3.56\n", "7 1.500 40.94 48.3 3.68\n", "8 2.000 52.48 60.3 3.91\n", "9 2.500 62.68 73.0 5.16\n", "10 3.000 77.92 88.9 5.49\n", "11 3.500 90.12 101.6 5.74\n", "12 4.000 102.26 114.3 6.02\n", "13 5.000 128.20 141.3 6.55\n", "14 6.000 154.08 168.3 7.11\n", "15 8.000 202.74 219.1 8.18\n", "16 10.000 254.46 273.0 9.27\n", "17 12.000 303.18 323.8 10.31\n", "18 14.000 333.34 355.6 11.13\n", "19 16.000 381.00 406.4 12.70\n", "20 18.000 428.46 457.0 14.27\n", "21 20.000 477.82 508.0 15.09\n", "22 24.000 575.04 610.0 17.48\n", "23 32.000 778.04 813.0 17.48\n", "24 34.000 829.04 864.0 17.48\n", "25 36.000 875.90 914.0 19.05" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 5" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5018.0021.31.65
10.7523.4026.71.65
21.0030.1033.41.65
31.2538.9042.21.65
41.5045.0048.31.65
52.0057.0060.31.65
62.5068.7873.02.11
73.0084.6888.92.11
83.5097.38101.62.11
94.00110.08114.32.11
105.00135.76141.32.77
116.00162.76168.32.77
128.00213.56219.12.77
1310.00266.20273.03.40
1412.00315.88323.83.96
1514.00347.68355.63.96
1616.00398.02406.44.19
1718.00448.62457.04.19
1820.00498.44508.04.78
1922.00549.44559.04.78
2024.00598.92610.05.54
2130.00749.30762.06.35
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 18.00 21.3 1.65\n", "1 0.75 23.40 26.7 1.65\n", "2 1.00 30.10 33.4 1.65\n", "3 1.25 38.90 42.2 1.65\n", "4 1.50 45.00 48.3 1.65\n", "5 2.00 57.00 60.3 1.65\n", "6 2.50 68.78 73.0 2.11\n", "7 3.00 84.68 88.9 2.11\n", "8 3.50 97.38 101.6 2.11\n", "9 4.00 110.08 114.3 2.11\n", "10 5.00 135.76 141.3 2.77\n", "11 6.00 162.76 168.3 2.77\n", "12 8.00 213.56 219.1 2.77\n", "13 10.00 266.20 273.0 3.40\n", "14 12.00 315.88 323.8 3.96\n", "15 14.00 347.68 355.6 3.96\n", "16 16.00 398.02 406.4 4.19\n", "17 18.00 448.62 457.0 4.19\n", "18 20.00 498.44 508.0 4.78\n", "19 22.00 549.44 559.0 4.78\n", "20 24.00 598.92 610.0 5.54\n", "21 30.00 749.30 762.0 6.35" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 10" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1257.8210.31.24
10.25010.4013.71.65
20.37513.8017.11.65
30.50017.0821.32.11
40.75022.4826.72.11
51.00027.8633.42.77
61.25036.6642.22.77
71.50042.7648.32.77
82.00054.7660.32.77
92.50066.9073.03.05
103.00082.8088.93.05
113.50095.50101.63.05
124.000108.20114.33.05
135.000134.50141.33.40
146.000161.50168.33.40
158.000211.58219.13.76
1610.000264.62273.04.19
1712.000314.66323.84.57
1814.000342.90355.66.35
1916.000393.70406.46.35
2018.000444.30457.06.35
2120.000495.30508.06.35
2222.000546.30559.06.35
2324.000597.30610.06.35
2426.000644.16660.07.92
2528.000695.16711.07.92
2630.000746.16762.07.92
2732.000797.16813.07.92
2834.000848.16864.07.92
2936.000898.16914.07.92
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 7.82 10.3 1.24\n", "1 0.250 10.40 13.7 1.65\n", "2 0.375 13.80 17.1 1.65\n", "3 0.500 17.08 21.3 2.11\n", "4 0.750 22.48 26.7 2.11\n", "5 1.000 27.86 33.4 2.77\n", "6 1.250 36.66 42.2 2.77\n", "7 1.500 42.76 48.3 2.77\n", "8 2.000 54.76 60.3 2.77\n", "9 2.500 66.90 73.0 3.05\n", "10 3.000 82.80 88.9 3.05\n", "11 3.500 95.50 101.6 3.05\n", "12 4.000 108.20 114.3 3.05\n", "13 5.000 134.50 141.3 3.40\n", "14 6.000 161.50 168.3 3.40\n", "15 8.000 211.58 219.1 3.76\n", "16 10.000 264.62 273.0 4.19\n", "17 12.000 314.66 323.8 4.57\n", "18 14.000 342.90 355.6 6.35\n", "19 16.000 393.70 406.4 6.35\n", "20 18.000 444.30 457.0 6.35\n", "21 20.000 495.30 508.0 6.35\n", "22 22.000 546.30 559.0 6.35\n", "23 24.000 597.30 610.0 6.35\n", "24 26.000 644.16 660.0 7.92\n", "25 28.000 695.16 711.0 7.92\n", "26 30.000 746.16 762.0 7.92\n", "27 32.000 797.16 813.0 7.92\n", "28 34.000 848.16 864.0 7.92\n", "29 36.000 898.16 914.0 7.92" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 20" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
08206.40219.16.35
110260.30273.06.35
212311.10323.86.35
314339.76355.67.92
416390.56406.47.92
518441.16457.07.92
620488.94508.09.53
722539.94559.09.53
824590.94610.09.53
926634.60660.012.70
1028685.60711.012.70
1130736.60762.012.70
1232787.60813.012.70
1334838.60864.012.70
1436888.60914.012.70
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 8 206.40 219.1 6.35\n", "1 10 260.30 273.0 6.35\n", "2 12 311.10 323.8 6.35\n", "3 14 339.76 355.6 7.92\n", "4 16 390.56 406.4 7.92\n", "5 18 441.16 457.0 7.92\n", "6 20 488.94 508.0 9.53\n", "7 22 539.94 559.0 9.53\n", "8 24 590.94 610.0 9.53\n", "9 26 634.60 660.0 12.70\n", "10 28 685.60 711.0 12.70\n", "11 30 736.60 762.0 12.70\n", "12 32 787.60 813.0 12.70\n", "13 34 838.60 864.0 12.70\n", "14 36 888.60 914.0 12.70" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 30" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1257.4010.31.45
10.25010.0013.71.85
20.37513.4017.11.85
30.50016.4821.32.41
40.75021.8826.72.41
51.00027.6033.42.90
61.25036.2642.22.97
71.50041.9448.33.18
82.00053.9460.33.18
92.50063.4473.04.78
103.00079.3488.94.78
113.50092.04101.64.78
124.000104.74114.34.78
138.000205.02219.17.04
1410.000257.40273.07.80
1512.000307.04323.88.38
1614.000336.54355.69.53
1716.000387.34406.49.53
1818.000434.74457.011.13
1920.000482.60508.012.70
2022.000533.60559.012.70
2124.000581.46610.014.27
2228.000679.24711.015.88
2330.000730.24762.015.88
2432.000781.24813.015.88
2534.000832.24864.015.88
2636.000882.24914.015.88
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 7.40 10.3 1.45\n", "1 0.250 10.00 13.7 1.85\n", "2 0.375 13.40 17.1 1.85\n", "3 0.500 16.48 21.3 2.41\n", "4 0.750 21.88 26.7 2.41\n", "5 1.000 27.60 33.4 2.90\n", "6 1.250 36.26 42.2 2.97\n", "7 1.500 41.94 48.3 3.18\n", "8 2.000 53.94 60.3 3.18\n", "9 2.500 63.44 73.0 4.78\n", "10 3.000 79.34 88.9 4.78\n", "11 3.500 92.04 101.6 4.78\n", "12 4.000 104.74 114.3 4.78\n", "13 8.000 205.02 219.1 7.04\n", "14 10.000 257.40 273.0 7.80\n", "15 12.000 307.04 323.8 8.38\n", "16 14.000 336.54 355.6 9.53\n", "17 16.000 387.34 406.4 9.53\n", "18 18.000 434.74 457.0 11.13\n", "19 20.000 482.60 508.0 12.70\n", "20 22.000 533.60 559.0 12.70\n", "21 24.000 581.46 610.0 14.27\n", "22 28.000 679.24 711.0 15.88\n", "23 30.000 730.24 762.0 15.88\n", "24 32.000 781.24 813.0 15.88\n", "25 34.000 832.24 864.0 15.88\n", "26 36.000 882.24 914.0 15.88" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 60" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
08198.48219.110.31
110247.60273.012.70
212295.26323.814.27
314325.42355.615.09
416373.08406.416.66
518418.90457.019.05
620466.76508.020.62
722514.54559.022.23
824560.78610.024.61
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 8 198.48 219.1 10.31\n", "1 10 247.60 273.0 12.70\n", "2 12 295.26 323.8 14.27\n", "3 14 325.42 355.6 15.09\n", "4 16 373.08 406.4 16.66\n", "5 18 418.90 457.0 19.05\n", "6 20 466.76 508.0 20.62\n", "7 22 514.54 559.0 22.23\n", "8 24 560.78 610.0 24.61" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 80" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1255.4810.32.41
10.2507.6613.73.02
20.37510.7017.13.20
30.50013.8421.33.73
40.75018.8826.73.91
51.00024.3033.44.55
61.25032.5042.24.85
71.50038.1448.35.08
82.00049.2260.35.54
92.50058.9873.07.01
103.00073.6688.97.62
113.50085.44101.68.08
124.00097.18114.38.56
135.000122.24141.39.53
146.000146.36168.310.97
158.000193.70219.112.70
1610.000242.82273.015.09
1712.000288.84323.817.48
1814.000317.50355.619.05
1916.000363.52406.421.44
2018.000409.34457.023.83
2120.000455.62508.026.19
2222.000501.84559.028.58
2324.000548.08610.030.96
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 5.48 10.3 2.41\n", "1 0.250 7.66 13.7 3.02\n", "2 0.375 10.70 17.1 3.20\n", "3 0.500 13.84 21.3 3.73\n", "4 0.750 18.88 26.7 3.91\n", "5 1.000 24.30 33.4 4.55\n", "6 1.250 32.50 42.2 4.85\n", "7 1.500 38.14 48.3 5.08\n", "8 2.000 49.22 60.3 5.54\n", "9 2.500 58.98 73.0 7.01\n", "10 3.000 73.66 88.9 7.62\n", "11 3.500 85.44 101.6 8.08\n", "12 4.000 97.18 114.3 8.56\n", "13 5.000 122.24 141.3 9.53\n", "14 6.000 146.36 168.3 10.97\n", "15 8.000 193.70 219.1 12.70\n", "16 10.000 242.82 273.0 15.09\n", "17 12.000 288.84 323.8 17.48\n", "18 14.000 317.50 355.6 19.05\n", "19 16.000 363.52 406.4 21.44\n", "20 18.000 409.34 457.0 23.83\n", "21 20.000 455.62 508.0 26.19\n", "22 22.000 501.84 559.0 28.58\n", "23 24.000 548.08 610.0 30.96" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 100" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
08188.92219.115.09
110236.48273.018.26
212280.92323.821.44
314307.94355.623.83
416354.02406.426.19
518398.28457.029.36
620442.92508.032.54
722489.14559.034.93
824532.22610.038.89
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 8 188.92 219.1 15.09\n", "1 10 236.48 273.0 18.26\n", "2 12 280.92 323.8 21.44\n", "3 14 307.94 355.6 23.83\n", "4 16 354.02 406.4 26.19\n", "5 18 398.28 457.0 29.36\n", "6 20 442.92 508.0 32.54\n", "7 22 489.14 559.0 34.93\n", "8 24 532.22 610.0 38.89" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 120" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
0492.04114.311.13
15115.90141.312.70
26139.76168.314.27
38182.58219.118.26
410230.12273.021.44
512273.00323.825.40
614300.02355.627.79
716344.48406.430.96
818387.14457.034.93
920431.80508.038.10
1022476.44559.041.28
1124517.96610.046.02
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 4 92.04 114.3 11.13\n", "1 5 115.90 141.3 12.70\n", "2 6 139.76 168.3 14.27\n", "3 8 182.58 219.1 18.26\n", "4 10 230.12 273.0 21.44\n", "5 12 273.00 323.8 25.40\n", "6 14 300.02 355.6 27.79\n", "7 16 344.48 406.4 30.96\n", "8 18 387.14 457.0 34.93\n", "9 20 431.80 508.0 38.10\n", "10 22 476.44 559.0 41.28\n", "11 24 517.96 610.0 46.02" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 140" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
08177.86219.120.62
110222.20273.025.40
212266.64323.828.58
314292.10355.631.75
416333.34406.436.53
518377.66457.039.67
620419.10508.044.45
722463.74559.047.63
824505.26610.052.37
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 8 177.86 219.1 20.62\n", "1 10 222.20 273.0 25.40\n", "2 12 266.64 323.8 28.58\n", "3 14 292.10 355.6 31.75\n", "4 16 333.34 406.4 36.53\n", "5 18 377.66 457.0 39.67\n", "6 20 419.10 508.0 44.45\n", "7 22 463.74 559.0 47.63\n", "8 24 505.26 610.0 52.37" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 160" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5011.7421.34.78
10.7515.5826.75.56
21.0020.7033.46.35
31.2529.5042.26.35
41.5034.0248.37.14
52.0042.8260.38.74
62.5053.9473.09.53
73.0066.6488.911.13
84.0087.32114.313.49
95.00109.54141.315.88
106.00131.78168.318.26
118.00173.08219.123.01
1210.00215.84273.028.58
1312.00257.16323.833.32
1414.00284.18355.635.71
1516.00325.42406.440.49
1618.00366.52457.045.24
1720.00407.98508.050.01
1822.00451.04559.053.98
1924.00490.92610.059.54
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 11.74 21.3 4.78\n", "1 0.75 15.58 26.7 5.56\n", "2 1.00 20.70 33.4 6.35\n", "3 1.25 29.50 42.2 6.35\n", "4 1.50 34.02 48.3 7.14\n", "5 2.00 42.82 60.3 8.74\n", "6 2.50 53.94 73.0 9.53\n", "7 3.00 66.64 88.9 11.13\n", "8 4.00 87.32 114.3 13.49\n", "9 5.00 109.54 141.3 15.88\n", "10 6.00 131.78 168.3 18.26\n", "11 8.00 173.08 219.1 23.01\n", "12 10.00 215.84 273.0 28.58\n", "13 12.00 257.16 323.8 33.32\n", "14 14.00 284.18 355.6 35.71\n", "15 16.00 325.42 406.4 40.49\n", "16 18.00 366.52 457.0 45.24\n", "17 20.00 407.98 508.0 50.01\n", "18 22.00 451.04 559.0 53.98\n", "19 24.00 490.92 610.0 59.54" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule STD" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1256.8410.31.73
10.2509.2213.72.24
20.37512.4817.12.31
30.50015.7621.32.77
40.75020.9626.72.87
51.00026.6433.43.38
61.25035.0842.23.56
71.50040.9448.33.68
82.00052.4860.33.91
92.50062.6873.05.16
103.00077.9288.95.49
113.50090.12101.65.74
124.000102.26114.36.02
135.000128.20141.36.55
146.000154.08168.37.11
158.000202.74219.18.18
1610.000254.46273.09.27
1712.000304.74323.89.53
1814.000336.54355.69.53
1916.000387.34406.49.53
2018.000437.94457.09.53
2120.000488.94508.09.53
2222.000539.94559.09.53
2324.000590.94610.09.53
2426.000640.94660.09.53
2528.000691.94711.09.53
2630.000742.94762.09.53
2732.000793.94813.09.53
2834.000844.94864.09.53
2936.000894.94914.09.53
3038.000945.94965.09.53
3140.000996.941016.09.53
3242.0001047.941067.09.53
3344.0001098.941118.09.53
3446.0001148.941168.09.53
3548.0001199.941219.09.53
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 6.84 10.3 1.73\n", "1 0.250 9.22 13.7 2.24\n", "2 0.375 12.48 17.1 2.31\n", "3 0.500 15.76 21.3 2.77\n", "4 0.750 20.96 26.7 2.87\n", "5 1.000 26.64 33.4 3.38\n", "6 1.250 35.08 42.2 3.56\n", "7 1.500 40.94 48.3 3.68\n", "8 2.000 52.48 60.3 3.91\n", "9 2.500 62.68 73.0 5.16\n", "10 3.000 77.92 88.9 5.49\n", "11 3.500 90.12 101.6 5.74\n", "12 4.000 102.26 114.3 6.02\n", "13 5.000 128.20 141.3 6.55\n", "14 6.000 154.08 168.3 7.11\n", "15 8.000 202.74 219.1 8.18\n", "16 10.000 254.46 273.0 9.27\n", "17 12.000 304.74 323.8 9.53\n", "18 14.000 336.54 355.6 9.53\n", "19 16.000 387.34 406.4 9.53\n", "20 18.000 437.94 457.0 9.53\n", "21 20.000 488.94 508.0 9.53\n", "22 22.000 539.94 559.0 9.53\n", "23 24.000 590.94 610.0 9.53\n", "24 26.000 640.94 660.0 9.53\n", "25 28.000 691.94 711.0 9.53\n", "26 30.000 742.94 762.0 9.53\n", "27 32.000 793.94 813.0 9.53\n", "28 34.000 844.94 864.0 9.53\n", "29 36.000 894.94 914.0 9.53\n", "30 38.000 945.94 965.0 9.53\n", "31 40.000 996.94 1016.0 9.53\n", "32 42.000 1047.94 1067.0 9.53\n", "33 44.000 1098.94 1118.0 9.53\n", "34 46.000 1148.94 1168.0 9.53\n", "35 48.000 1199.94 1219.0 9.53" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule XS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1255.4810.32.41
10.2507.6613.73.02
20.37510.7017.13.20
30.50013.8421.33.73
40.75018.8826.73.91
51.00024.3033.44.55
61.25032.5042.24.85
71.50038.1448.35.08
82.00049.2260.35.54
92.50058.9873.07.01
103.00073.6688.97.62
113.50085.44101.68.08
124.00097.18114.38.56
135.000122.24141.39.53
146.000146.36168.310.97
158.000193.70219.112.70
1610.000247.60273.012.70
1712.000298.40323.812.70
1814.000330.20355.612.70
1916.000381.00406.412.70
2018.000431.60457.012.70
2120.000482.60508.012.70
2222.000533.60559.012.70
2324.000584.60610.012.70
2426.000634.60660.012.70
2528.000685.60711.012.70
2630.000736.60762.012.70
2732.000787.60813.012.70
2834.000838.60864.012.70
2936.000888.60914.012.70
3038.000939.60965.012.70
3140.000990.601016.012.70
3242.0001041.601067.012.70
3344.0001092.601118.012.70
3446.0001142.601168.012.70
3548.0001193.601219.012.70
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 5.48 10.3 2.41\n", "1 0.250 7.66 13.7 3.02\n", "2 0.375 10.70 17.1 3.20\n", "3 0.500 13.84 21.3 3.73\n", "4 0.750 18.88 26.7 3.91\n", "5 1.000 24.30 33.4 4.55\n", "6 1.250 32.50 42.2 4.85\n", "7 1.500 38.14 48.3 5.08\n", "8 2.000 49.22 60.3 5.54\n", "9 2.500 58.98 73.0 7.01\n", "10 3.000 73.66 88.9 7.62\n", "11 3.500 85.44 101.6 8.08\n", "12 4.000 97.18 114.3 8.56\n", "13 5.000 122.24 141.3 9.53\n", "14 6.000 146.36 168.3 10.97\n", "15 8.000 193.70 219.1 12.70\n", "16 10.000 247.60 273.0 12.70\n", "17 12.000 298.40 323.8 12.70\n", "18 14.000 330.20 355.6 12.70\n", "19 16.000 381.00 406.4 12.70\n", "20 18.000 431.60 457.0 12.70\n", "21 20.000 482.60 508.0 12.70\n", "22 22.000 533.60 559.0 12.70\n", "23 24.000 584.60 610.0 12.70\n", "24 26.000 634.60 660.0 12.70\n", "25 28.000 685.60 711.0 12.70\n", "26 30.000 736.60 762.0 12.70\n", "27 32.000 787.60 813.0 12.70\n", "28 34.000 838.60 864.0 12.70\n", "29 36.000 888.60 914.0 12.70\n", "30 38.000 939.60 965.0 12.70\n", "31 40.000 990.60 1016.0 12.70\n", "32 42.000 1041.60 1067.0 12.70\n", "33 44.000 1092.60 1118.0 12.70\n", "34 46.000 1142.60 1168.0 12.70\n", "35 48.000 1193.60 1219.0 12.70" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule XXS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.506.3621.37.47
10.7511.0626.77.82
21.0015.2233.49.09
31.2522.8042.29.70
41.5028.0048.310.15
52.0038.1660.311.07
62.5044.9673.014.02
73.0058.4288.915.24
84.0080.06114.317.12
95.00103.20141.319.05
106.00124.40168.321.95
118.00174.64219.122.23
1210.00222.20273.025.40
1312.00273.00323.825.40
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 6.36 21.3 7.47\n", "1 0.75 11.06 26.7 7.82\n", "2 1.00 15.22 33.4 9.09\n", "3 1.25 22.80 42.2 9.70\n", "4 1.50 28.00 48.3 10.15\n", "5 2.00 38.16 60.3 11.07\n", "6 2.50 44.96 73.0 14.02\n", "7 3.00 58.42 88.9 15.24\n", "8 4.00 80.06 114.3 17.12\n", "9 5.00 103.20 141.3 19.05\n", "10 6.00 124.40 168.3 21.95\n", "11 8.00 174.64 219.1 22.23\n", "12 10.00 222.20 273.0 25.40\n", "13 12.00 273.00 323.8 25.40" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 5S" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5018.0021.31.65
10.7523.4026.71.65
21.0030.1033.41.65
31.2538.9042.21.65
41.5045.0048.31.65
52.0057.0060.31.65
62.5068.7873.02.11
73.0084.6888.92.11
83.5097.38101.62.11
94.00110.08114.32.11
105.00135.76141.32.77
116.00162.76168.32.77
128.00213.56219.12.77
1310.00266.30273.13.40
1412.00315.98323.93.96
1514.00347.68355.63.96
1616.00398.02406.44.19
1718.00448.62457.04.19
1820.00498.44508.04.78
1922.00549.44559.04.78
2024.00598.92610.05.54
2130.00749.30762.06.35
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 18.00 21.3 1.65\n", "1 0.75 23.40 26.7 1.65\n", "2 1.00 30.10 33.4 1.65\n", "3 1.25 38.90 42.2 1.65\n", "4 1.50 45.00 48.3 1.65\n", "5 2.00 57.00 60.3 1.65\n", "6 2.50 68.78 73.0 2.11\n", "7 3.00 84.68 88.9 2.11\n", "8 3.50 97.38 101.6 2.11\n", "9 4.00 110.08 114.3 2.11\n", "10 5.00 135.76 141.3 2.77\n", "11 6.00 162.76 168.3 2.77\n", "12 8.00 213.56 219.1 2.77\n", "13 10.00 266.30 273.1 3.40\n", "14 12.00 315.98 323.9 3.96\n", "15 14.00 347.68 355.6 3.96\n", "16 16.00 398.02 406.4 4.19\n", "17 18.00 448.62 457.0 4.19\n", "18 20.00 498.44 508.0 4.78\n", "19 22.00 549.44 559.0 4.78\n", "20 24.00 598.92 610.0 5.54\n", "21 30.00 749.30 762.0 6.35" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 10S" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1257.8210.31.24
10.25010.4013.71.65
20.37513.8017.11.65
30.50017.0821.32.11
40.75022.4826.72.11
51.00027.8633.42.77
61.25036.6642.22.77
71.50042.7648.32.77
82.00054.7660.32.77
92.50066.9073.03.05
103.00082.8088.93.05
113.50095.50101.63.05
124.000108.20114.33.05
135.000134.50141.33.40
146.000161.50168.33.40
158.000211.58219.13.76
1610.000264.72273.14.19
1712.000314.76323.94.57
1814.000346.04355.64.78
1916.000396.84406.44.78
2018.000447.44457.04.78
2120.000496.92508.05.54
2222.000547.92559.05.54
2324.000597.30610.06.35
2430.000746.16762.07.92
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 7.82 10.3 1.24\n", "1 0.250 10.40 13.7 1.65\n", "2 0.375 13.80 17.1 1.65\n", "3 0.500 17.08 21.3 2.11\n", "4 0.750 22.48 26.7 2.11\n", "5 1.000 27.86 33.4 2.77\n", "6 1.250 36.66 42.2 2.77\n", "7 1.500 42.76 48.3 2.77\n", "8 2.000 54.76 60.3 2.77\n", "9 2.500 66.90 73.0 3.05\n", "10 3.000 82.80 88.9 3.05\n", "11 3.500 95.50 101.6 3.05\n", "12 4.000 108.20 114.3 3.05\n", "13 5.000 134.50 141.3 3.40\n", "14 6.000 161.50 168.3 3.40\n", "15 8.000 211.58 219.1 3.76\n", "16 10.000 264.72 273.1 4.19\n", "17 12.000 314.76 323.9 4.57\n", "18 14.000 346.04 355.6 4.78\n", "19 16.000 396.84 406.4 4.78\n", "20 18.000 447.44 457.0 4.78\n", "21 20.000 496.92 508.0 5.54\n", "22 22.000 547.92 559.0 5.54\n", "23 24.000 597.30 610.0 6.35\n", "24 30.000 746.16 762.0 7.92" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 40S" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1256.8410.31.73
10.2509.2213.72.24
20.37512.4817.12.31
30.50015.7621.32.77
40.75020.9626.72.87
51.00026.6433.43.38
61.25035.0842.23.56
71.50040.9448.33.68
82.00052.4860.33.91
92.50062.6873.05.16
103.00077.9288.95.49
113.50090.12101.65.74
124.000102.26114.36.02
135.000128.20141.36.55
146.000154.08168.37.11
158.000202.74219.18.18
1610.000254.56273.19.27
1712.000304.84323.99.53
1814.000336.54355.69.53
1916.000387.34406.49.53
2018.000437.94457.09.53
2120.000488.94508.09.53
2224.000590.94610.09.53
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 6.84 10.3 1.73\n", "1 0.250 9.22 13.7 2.24\n", "2 0.375 12.48 17.1 2.31\n", "3 0.500 15.76 21.3 2.77\n", "4 0.750 20.96 26.7 2.87\n", "5 1.000 26.64 33.4 3.38\n", "6 1.250 35.08 42.2 3.56\n", "7 1.500 40.94 48.3 3.68\n", "8 2.000 52.48 60.3 3.91\n", "9 2.500 62.68 73.0 5.16\n", "10 3.000 77.92 88.9 5.49\n", "11 3.500 90.12 101.6 5.74\n", "12 4.000 102.26 114.3 6.02\n", "13 5.000 128.20 141.3 6.55\n", "14 6.000 154.08 168.3 7.11\n", "15 8.000 202.74 219.1 8.18\n", "16 10.000 254.56 273.1 9.27\n", "17 12.000 304.84 323.9 9.53\n", "18 14.000 336.54 355.6 9.53\n", "19 16.000 387.34 406.4 9.53\n", "20 18.000 437.94 457.0 9.53\n", "21 20.000 488.94 508.0 9.53\n", "22 24.000 590.94 610.0 9.53" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 80S" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1255.4810.32.41
10.2507.6613.73.02
20.37510.7017.13.20
30.50013.8421.33.73
40.75018.8826.73.91
51.00024.3033.44.55
61.25032.5042.24.85
71.50038.1448.35.08
82.00049.2260.35.54
92.50058.9873.07.01
103.00073.6688.97.62
113.50085.44101.68.08
124.00097.18114.38.56
135.000122.24141.39.53
146.000146.36168.310.97
158.000193.70219.112.70
1610.000247.70273.112.70
1712.000298.50323.912.70
1814.000330.20355.612.70
1916.000381.00406.412.70
2018.000431.60457.012.70
2120.000482.60508.012.70
2224.000584.60610.012.70
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 5.48 10.3 2.41\n", "1 0.250 7.66 13.7 3.02\n", "2 0.375 10.70 17.1 3.20\n", "3 0.500 13.84 21.3 3.73\n", "4 0.750 18.88 26.7 3.91\n", "5 1.000 24.30 33.4 4.55\n", "6 1.250 32.50 42.2 4.85\n", "7 1.500 38.14 48.3 5.08\n", "8 2.000 49.22 60.3 5.54\n", "9 2.500 58.98 73.0 7.01\n", "10 3.000 73.66 88.9 7.62\n", "11 3.500 85.44 101.6 8.08\n", "12 4.000 97.18 114.3 8.56\n", "13 5.000 122.24 141.3 9.53\n", "14 6.000 146.36 168.3 10.97\n", "15 8.000 193.70 219.1 12.70\n", "16 10.000 247.70 273.1 12.70\n", "17 12.000 298.50 323.9 12.70\n", "18 14.000 330.20 355.6 12.70\n", "19 16.000 381.00 406.4 12.70\n", "20 18.000 431.60 457.0 12.70\n", "21 20.000 482.60 508.0 12.70\n", "22 24.000 584.60 610.0 12.70" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 40D1527" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1256.832610.28701.7272
10.2509.245613.71602.2352
20.37512.522217.14502.3114
30.50015.798821.33602.7686
40.75020.929626.67002.8702
51.00026.644633.40103.3782
61.25033.528040.64003.5560
71.50040.894048.26003.6830
82.00052.501860.32503.9116
92.50062.712673.02505.1562
103.00077.927288.90005.4864
113.50090.1192101.60005.7404
124.000102.2604114.30006.0198
135.000128.1938141.30026.5532
146.000154.0510168.27507.1120
158.000202.7174219.07508.1788
1610.000254.5080273.05009.2710
1712.000303.2252323.850010.3124
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 6.8326 10.2870 1.7272\n", "1 0.250 9.2456 13.7160 2.2352\n", "2 0.375 12.5222 17.1450 2.3114\n", "3 0.500 15.7988 21.3360 2.7686\n", "4 0.750 20.9296 26.6700 2.8702\n", "5 1.000 26.6446 33.4010 3.3782\n", "6 1.250 33.5280 40.6400 3.5560\n", "7 1.500 40.8940 48.2600 3.6830\n", "8 2.000 52.5018 60.3250 3.9116\n", "9 2.500 62.7126 73.0250 5.1562\n", "10 3.000 77.9272 88.9000 5.4864\n", "11 3.500 90.1192 101.6000 5.7404\n", "12 4.000 102.2604 114.3000 6.0198\n", "13 5.000 128.1938 141.3002 6.5532\n", "14 6.000 154.0510 168.2750 7.1120\n", "15 8.000 202.7174 219.0750 8.1788\n", "16 10.000 254.5080 273.0500 9.2710\n", "17 12.000 303.2252 323.8500 10.3124" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 80D1527" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1255.461010.28702.4130
10.2507.670813.71603.0226
20.37510.744217.14503.2004
30.50013.868421.33603.7338
40.75018.846826.67003.9116
51.00024.307833.40104.5466
61.25030.937240.64004.8514
71.50038.100048.26005.0800
82.00049.250660.32505.5372
92.50059.004273.02507.0104
103.00073.660088.90007.6200
113.50085.4456101.60008.0772
124.00097.1804114.30008.5598
135.000122.2502141.30029.5250
146.000146.3294168.275010.9728
158.000193.6750219.075012.7000
1610.000242.9256273.050015.0622
1712.000288.9504323.850017.4498
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 5.4610 10.2870 2.4130\n", "1 0.250 7.6708 13.7160 3.0226\n", "2 0.375 10.7442 17.1450 3.2004\n", "3 0.500 13.8684 21.3360 3.7338\n", "4 0.750 18.8468 26.6700 3.9116\n", "5 1.000 24.3078 33.4010 4.5466\n", "6 1.250 30.9372 40.6400 4.8514\n", "7 1.500 38.1000 48.2600 5.0800\n", "8 2.000 49.2506 60.3250 5.5372\n", "9 2.500 59.0042 73.0250 7.0104\n", "10 3.000 73.6600 88.9000 7.6200\n", "11 3.500 85.4456 101.6000 8.0772\n", "12 4.000 97.1804 114.3000 8.5598\n", "13 5.000 122.2502 141.3002 9.5250\n", "14 6.000 146.3294 168.2750 10.9728\n", "15 8.000 193.6750 219.0750 12.7000\n", "16 10.000 242.9256 273.0500 15.0622\n", "17 12.000 288.9504 323.8500 17.4498" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule ABSD2680" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
08196.85239.01421.082
110247.65298.45025.400
212298.45357.37829.464
315374.65447.54836.449
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 8 196.85 239.014 21.082\n", "1 10 247.65 298.450 25.400\n", "2 12 298.45 357.378 29.464\n", "3 15 374.65 447.548 36.449" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule PVCD2680" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
08196.85239.01421.082
110247.65298.45025.400
212298.45357.37829.464
315374.65447.54836.449
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 8 196.85 239.014 21.082\n", "1 10 247.65 298.450 25.400\n", "2 12 298.45 357.378 29.464\n", "3 15 374.65 447.548 36.449" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR25C900" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
04112.14121.94.88
16161.28175.37.01
28211.52229.99.19
310259.34281.911.28
412308.48335.313.41
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 4 112.14 121.9 4.88\n", "1 6 161.28 175.3 7.01\n", "2 8 211.52 229.9 9.19\n", "3 10 259.34 281.9 11.28\n", "4 12 308.48 335.3 13.41" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR18C900" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
04108.34121.96.78
16155.84175.39.73
28204.34229.912.78
310250.56281.915.67
412298.06335.318.62
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 4 108.34 121.9 6.78\n", "1 6 155.84 175.3 9.73\n", "2 8 204.34 229.9 12.78\n", "3 10 250.56 281.9 15.67\n", "4 12 298.06 335.3 18.62" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR14C900" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
04104.48121.98.71
16150.26175.312.52
28197.08229.916.41
310241.62281.920.14
412287.40335.323.95
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 4 104.48 121.9 8.71\n", "1 6 150.26 175.3 12.52\n", "2 8 197.08 229.9 16.41\n", "3 10 241.62 281.9 20.14\n", "4 12 287.40 335.3 23.95" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule CIDR51C905" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
018475.90495.39.70
120527.06548.610.77
224629.60655.312.85
330780.94812.815.93
436934.64972.819.08
5421086.001130.322.15
6481239.701290.325.30
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 18 475.90 495.3 9.70\n", "1 20 527.06 548.6 10.77\n", "2 24 629.60 655.3 12.85\n", "3 30 780.94 812.8 15.93\n", "4 36 934.64 972.8 19.08\n", "5 42 1086.00 1130.3 22.15\n", "6 48 1239.70 1290.3 25.30" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule CIDR41C905" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
014369.66388.69.47
116420.46442.010.77
218471.12495.312.09
320521.82548.613.39
424623.34655.315.98
530773.18812.819.81
636925.36972.823.72
7421075.181130.327.56
8481227.361290.331.47
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 14 369.66 388.6 9.47\n", "1 16 420.46 442.0 10.77\n", "2 18 471.12 495.3 12.09\n", "3 20 521.82 548.6 13.39\n", "4 24 623.34 655.3 15.98\n", "5 30 773.18 812.8 19.81\n", "6 36 925.36 972.8 23.72\n", "7 42 1075.18 1130.3 27.56\n", "8 48 1227.36 1290.3 31.47" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule CIDR325C905" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
014364.68388.611.96
116414.82442.013.59
218464.82495.315.24
320514.82548.616.89
424614.96655.320.17
530762.76812.825.02
636912.96972.829.92
7421060.761130.334.77
8481210.901290.339.70
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 14 364.68 388.6 11.96\n", "1 16 414.82 442.0 13.59\n", "2 18 464.82 495.3 15.24\n", "3 20 514.82 548.6 16.89\n", "4 24 614.96 655.3 20.17\n", "5 30 762.76 812.8 25.02\n", "6 36 912.96 972.8 29.92\n", "7 42 1060.76 1130.3 34.77\n", "8 48 1210.90 1290.3 39.70" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule CIDR25C905" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
014357.52388.615.54
116406.64442.017.68
218455.68495.319.81
320504.70548.621.95
424602.88655.326.21
530747.78812.832.51
636894.98972.838.91
7421039.881130.345.21
8481187.081290.351.61
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 14 357.52 388.6 15.54\n", "1 16 406.64 442.0 17.68\n", "2 18 455.68 495.3 19.81\n", "3 20 504.70 548.6 21.95\n", "4 24 602.88 655.3 26.21\n", "5 30 747.78 812.8 32.51\n", "6 36 894.98 972.8 38.91\n", "7 42 1039.88 1130.3 45.21\n", "8 48 1187.08 1290.3 51.61" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule CIDR21C905" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
014351.58388.618.51
116399.90442.021.05
218448.10495.323.60
320496.32548.626.14
424592.86655.331.22
530735.38812.838.71
636880.14972.846.33
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 14 351.58 388.6 18.51\n", "1 16 399.90 442.0 21.05\n", "2 18 448.10 495.3 23.60\n", "3 20 496.32 548.6 26.14\n", "4 24 592.86 655.3 31.22\n", "5 30 735.38 812.8 38.71\n", "6 36 880.14 972.8 46.33" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule CIDR18C905" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
014345.42388.621.59
116392.88442.024.56
218440.28495.327.51
320487.64548.630.48
424582.50655.336.40
530722.48812.845.16
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 14 345.42 388.6 21.59\n", "1 16 392.88 442.0 24.56\n", "2 18 440.28 495.3 27.51\n", "3 20 487.64 548.6 30.48\n", "4 24 582.50 655.3 36.40\n", "5 30 722.48 812.8 45.16" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule CIDR14C905" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
014333.08388.627.76
116378.86442.031.57
218424.54495.335.38
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 14 333.08 388.6 27.76\n", "1 16 378.86 442.0 31.57\n", "2 18 424.54 495.3 35.38" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule IPSDR21" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
014321.76355.616.92
116367.70406.419.35
218413.66457.221.77
320459.64508.024.18
424551.54609.629.03
530689.46762.036.27
636827.32914.443.54
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 14 321.76 355.6 16.92\n", "1 16 367.70 406.4 19.35\n", "2 18 413.66 457.2 21.77\n", "3 20 459.64 508.0 24.18\n", "4 24 551.54 609.6 29.03\n", "5 30 689.46 762.0 36.27\n", "6 36 827.32 914.4 43.54" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule IPSDR26" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
014328.26355.613.67
116375.16406.415.62
218422.04457.217.58
320468.94508.019.53
424562.72609.623.44
530703.38762.029.31
636844.04914.435.18
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 14 328.26 355.6 13.67\n", "1 16 375.16 406.4 15.62\n", "2 18 422.04 457.2 17.58\n", "3 20 468.94 508.0 19.53\n", "4 24 562.72 609.6 23.44\n", "5 30 703.38 762.0 29.31\n", "6 36 844.04 914.4 35.18" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule IPSDR325" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
014333.76355.610.92
116381.40406.412.50
218429.06457.214.07
320476.76508.015.62
424572.10609.618.75
530715.12762.023.44
636858.12914.428.14
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 14 333.76 355.6 10.92\n", "1 16 381.40 406.4 12.50\n", "2 18 429.06 457.2 14.07\n", "3 20 476.76 508.0 15.62\n", "4 24 572.10 609.6 18.75\n", "5 30 715.12 762.0 23.44\n", "6 36 858.12 914.4 28.14" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule IPSDR41" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
014338.28355.68.66
116386.58406.49.91
218434.90457.211.15
320483.20508.012.40
424579.88609.614.86
530724.82762.018.59
636869.80914.422.30
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 14 338.28 355.6 8.66\n", "1 16 386.58 406.4 9.91\n", "2 18 434.90 457.2 11.15\n", "3 20 483.20 508.0 12.40\n", "4 24 579.88 609.6 14.86\n", "5 30 724.82 762.0 18.59\n", "6 36 869.80 914.4 22.30" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule PS115F679" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
018440.9186475.005417.0434
121519.8110559.993820.0914
224584.8350629.996222.5806
327659.1046710.006225.4508
430754.4816812.800029.1592
536903.0716972.820034.8742
6421049.22321130.300040.5384
7481197.76241290.320046.2788
8541357.17281462.024052.4256
9601452.62601564.894056.1340
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 18 440.9186 475.0054 17.0434\n", "1 21 519.8110 559.9938 20.0914\n", "2 24 584.8350 629.9962 22.5806\n", "3 27 659.1046 710.0062 25.4508\n", "4 30 754.4816 812.8000 29.1592\n", "5 36 903.0716 972.8200 34.8742\n", "6 42 1049.2232 1130.3000 40.5384\n", "7 48 1197.7624 1290.3200 46.2788\n", "8 54 1357.1728 1462.0240 52.4256\n", "9 60 1452.6260 1564.8940 56.1340" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule PS75F679" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
018445.3382475.005414.8336
121524.9926559.993817.5006
224590.6262629.996219.6850
327665.6070710.006222.1996
430762.0000812.800025.4000
536912.0124972.820030.4038
6421059.63721130.300035.3314
7481209.64961290.320040.3352
8541370.63481462.024045.6946
9601467.05321564.894048.9204
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 18 445.3382 475.0054 14.8336\n", "1 21 524.9926 559.9938 17.5006\n", "2 24 590.6262 629.9962 19.6850\n", "3 27 665.6070 710.0062 22.1996\n", "4 30 762.0000 812.8000 25.4000\n", "5 36 912.0124 972.8200 30.4038\n", "6 42 1059.6372 1130.3000 35.3314\n", "7 48 1209.6496 1290.3200 40.3352\n", "8 54 1370.6348 1462.0240 45.6946\n", "9 60 1467.0532 1564.8940 48.9204" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule PS46F679" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
018449.6562475.005412.6746
121530.1234559.993814.9352
224596.4174629.996216.7894
327672.1602710.006218.9230
430769.4676812.800021.6662
536920.9532972.820025.9334
6421070.00041130.300030.1498
7481221.48601290.320034.4170
8541384.04601462.024038.9890
9601481.42961564.894041.7322
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 18 449.6562 475.0054 12.6746\n", "1 21 530.1234 559.9938 14.9352\n", "2 24 596.4174 629.9962 16.7894\n", "3 27 672.1602 710.0062 18.9230\n", "4 30 769.4676 812.8000 21.6662\n", "5 36 920.9532 972.8200 25.9334\n", "6 42 1070.0004 1130.3000 30.1498\n", "7 48 1221.4860 1290.3200 34.4170\n", "8 54 1384.0460 1462.0240 38.9890\n", "9 60 1481.4296 1564.8940 41.7322" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule PVCD2665" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
01.2535.052042.1643.5560
11.5040.894048.2603.6830
22.0052.501860.3253.9116
33.0077.927288.9005.4864
44.00102.2604114.3006.0198
56.00154.0510168.2757.1120
68.00202.7174219.0758.1788
710.00254.5080273.0509.2710
812.00303.2252323.85010.3124
914.00333.7560355.60010.9220
1016.00381.0000406.40012.7000
1118.00428.6504457.20014.2748
1220.00477.8756508.00015.0622
1324.00574.7004609.60017.4498
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 1.25 35.0520 42.164 3.5560\n", "1 1.50 40.8940 48.260 3.6830\n", "2 2.00 52.5018 60.325 3.9116\n", "3 3.00 77.9272 88.900 5.4864\n", "4 4.00 102.2604 114.300 6.0198\n", "5 6.00 154.0510 168.275 7.1120\n", "6 8.00 202.7174 219.075 8.1788\n", "7 10.00 254.5080 273.050 9.2710\n", "8 12.00 303.2252 323.850 10.3124\n", "9 14.00 333.7560 355.600 10.9220\n", "10 16.00 381.0000 406.400 12.7000\n", "11 18.00 428.6504 457.200 14.2748\n", "12 20.00 477.8756 508.000 15.0622\n", "13 24.00 574.7004 609.600 17.4498" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 40D1785" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1256.832610.28701.7272
10.2509.245613.71602.2352
20.37512.522217.14502.3114
30.50015.798821.33602.7686
40.75020.929626.67002.8702
51.00026.644633.40103.3782
61.25035.052042.16403.5560
71.50040.894048.26003.6830
82.00052.501860.32503.9116
92.50062.712673.02505.1562
103.00077.927288.90005.4864
113.50090.1192101.60005.7404
124.000102.2604114.30006.0198
135.000128.1938141.30026.5532
146.000154.0510168.27507.1120
158.000202.7174219.07508.1788
1610.000254.5080273.05009.2710
1712.000303.2252323.850010.3124
1814.000333.4004355.600011.0998
1916.000381.0000406.400012.7000
2018.000428.6504457.200014.2748
2120.000477.8756508.000015.0622
2224.000574.7004609.600017.4498
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 6.8326 10.2870 1.7272\n", "1 0.250 9.2456 13.7160 2.2352\n", "2 0.375 12.5222 17.1450 2.3114\n", "3 0.500 15.7988 21.3360 2.7686\n", "4 0.750 20.9296 26.6700 2.8702\n", "5 1.000 26.6446 33.4010 3.3782\n", "6 1.250 35.0520 42.1640 3.5560\n", "7 1.500 40.8940 48.2600 3.6830\n", "8 2.000 52.5018 60.3250 3.9116\n", "9 2.500 62.7126 73.0250 5.1562\n", "10 3.000 77.9272 88.9000 5.4864\n", "11 3.500 90.1192 101.6000 5.7404\n", "12 4.000 102.2604 114.3000 6.0198\n", "13 5.000 128.1938 141.3002 6.5532\n", "14 6.000 154.0510 168.2750 7.1120\n", "15 8.000 202.7174 219.0750 8.1788\n", "16 10.000 254.5080 273.0500 9.2710\n", "17 12.000 303.2252 323.8500 10.3124\n", "18 14.000 333.4004 355.6000 11.0998\n", "19 16.000 381.0000 406.4000 12.7000\n", "20 18.000 428.6504 457.2000 14.2748\n", "21 20.000 477.8756 508.0000 15.0622\n", "22 24.000 574.7004 609.6000 17.4498" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 80D1785" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1255.461010.28702.4130
10.2507.670813.71603.0226
20.37510.744217.14503.2004
30.50013.868421.33603.7338
40.75018.846826.67003.9116
51.00024.307833.40104.5466
61.25032.461242.16404.8514
71.50038.100048.26005.0800
82.00049.250660.32505.5372
92.50059.004273.02507.0104
103.00073.660088.90007.6200
113.50085.4456101.60008.0772
124.00097.1804114.30008.5598
135.000122.2502141.30029.5250
146.000146.3294168.275010.9728
158.000193.6750219.075012.7000
1610.000242.9256273.050015.0622
1712.000288.9504323.850017.4498
1814.000317.5000355.600019.0500
1916.000363.5756406.400021.4122
2018.000409.6004457.200023.7998
2120.000455.6252508.000026.1874
2224.000547.7256609.600030.9372
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 5.4610 10.2870 2.4130\n", "1 0.250 7.6708 13.7160 3.0226\n", "2 0.375 10.7442 17.1450 3.2004\n", "3 0.500 13.8684 21.3360 3.7338\n", "4 0.750 18.8468 26.6700 3.9116\n", "5 1.000 24.3078 33.4010 4.5466\n", "6 1.250 32.4612 42.1640 4.8514\n", "7 1.500 38.1000 48.2600 5.0800\n", "8 2.000 49.2506 60.3250 5.5372\n", "9 2.500 59.0042 73.0250 7.0104\n", "10 3.000 73.6600 88.9000 7.6200\n", "11 3.500 85.4456 101.6000 8.0772\n", "12 4.000 97.1804 114.3000 8.5598\n", "13 5.000 122.2502 141.3002 9.5250\n", "14 6.000 146.3294 168.2750 10.9728\n", "15 8.000 193.6750 219.0750 12.7000\n", "16 10.000 242.9256 273.0500 15.0622\n", "17 12.000 288.9504 323.8500 17.4498\n", "18 14.000 317.5000 355.6000 19.0500\n", "19 16.000 363.5756 406.4000 21.4122\n", "20 18.000 409.6004 457.2000 23.7998\n", "21 20.000 455.6252 508.0000 26.1874\n", "22 24.000 547.7256 609.6000 30.9372" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule 120D1785" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5012.700021.33604.3180
10.7518.034026.67004.3180
21.0023.241033.40105.0800
31.2531.242042.16405.4610
41.5036.830048.26005.7150
52.0047.625060.32506.3500
62.5057.785073.02507.6200
73.0071.120088.90008.8900
83.5083.8200101.60008.8900
94.0092.1004114.300011.0998
105.00115.9002141.300212.7000
116.00139.7254168.275014.2748
128.00182.6006219.075018.2372
1310.00230.2256273.050021.4122
1412.00273.0500323.850025.4000
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 12.7000 21.3360 4.3180\n", "1 0.75 18.0340 26.6700 4.3180\n", "2 1.00 23.2410 33.4010 5.0800\n", "3 1.25 31.2420 42.1640 5.4610\n", "4 1.50 36.8300 48.2600 5.7150\n", "5 2.00 47.6250 60.3250 6.3500\n", "6 2.50 57.7850 73.0250 7.6200\n", "7 3.00 71.1200 88.9000 8.8900\n", "8 3.50 83.8200 101.6000 8.8900\n", "9 4.00 92.1004 114.3000 11.0998\n", "10 5.00 115.9002 141.3002 12.7000\n", "11 6.00 139.7254 168.2750 14.2748\n", "12 8.00 182.6006 219.0750 18.2372\n", "13 10.00 230.2256 273.0500 21.4122\n", "14 12.00 273.0500 323.8500 25.4000" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR135D2241" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.1257.239010.28701.5240
10.25010.668013.71601.5240
20.37514.097017.14501.5240
30.50018.186421.33601.5748
40.75022.707626.67001.9812
51.00028.473433.40102.4638
61.25035.915642.16403.1242
71.50041.097248.26003.5814
82.00051.384260.32504.4704
92.50062.204673.02505.4102
103.00075.742888.90006.5786
113.50086.5632101.60007.5184
124.00097.3836114.30008.4582
135.000120.3706141.300210.4648
146.000143.3322168.275012.4714
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.125 7.2390 10.2870 1.5240\n", "1 0.250 10.6680 13.7160 1.5240\n", "2 0.375 14.0970 17.1450 1.5240\n", "3 0.500 18.1864 21.3360 1.5748\n", "4 0.750 22.7076 26.6700 1.9812\n", "5 1.000 28.4734 33.4010 2.4638\n", "6 1.250 35.9156 42.1640 3.1242\n", "7 1.500 41.0972 48.2600 3.5814\n", "8 2.000 51.3842 60.3250 4.4704\n", "9 2.500 62.2046 73.0250 5.4102\n", "10 3.000 75.7428 88.9000 6.5786\n", "11 3.500 86.5632 101.6000 7.5184\n", "12 4.000 97.3836 114.3000 8.4582\n", "13 5.000 120.3706 141.3002 10.4648\n", "14 6.000 143.3322 168.2750 12.4714" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR17D2241" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.7523.520426.67001.5748
11.0029.489433.40101.9558
21.2537.185642.16402.4892
31.5042.570448.26002.8448
42.0053.213060.32503.5560
52.5064.439873.02504.2926
63.0078.435288.90005.2324
73.5089.6620101.60005.9690
84.00100.8380114.30006.7310
95.00124.6886141.30028.3058
106.00148.4630168.27509.9060
118.00193.2686219.075012.9032
1210.00240.9444273.050016.0528
1312.00285.7500323.850019.0500
1414.00313.7916355.600020.9042
1516.00358.5972406.400023.9014
1618.00403.4028457.200026.8986
1720.00448.2592508.000029.8704
1824.00537.8704609.600035.8648
1930.00672.3380762.000044.8310
2036.00806.8056914.400053.7972
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.75 23.5204 26.6700 1.5748\n", "1 1.00 29.4894 33.4010 1.9558\n", "2 1.25 37.1856 42.1640 2.4892\n", "3 1.50 42.5704 48.2600 2.8448\n", "4 2.00 53.2130 60.3250 3.5560\n", "5 2.50 64.4398 73.0250 4.2926\n", "6 3.00 78.4352 88.9000 5.2324\n", "7 3.50 89.6620 101.6000 5.9690\n", "8 4.00 100.8380 114.3000 6.7310\n", "9 5.00 124.6886 141.3002 8.3058\n", "10 6.00 148.4630 168.2750 9.9060\n", "11 8.00 193.2686 219.0750 12.9032\n", "12 10.00 240.9444 273.0500 16.0528\n", "13 12.00 285.7500 323.8500 19.0500\n", "14 14.00 313.7916 355.6000 20.9042\n", "15 16.00 358.5972 406.4000 23.9014\n", "16 18.00 403.4028 457.2000 26.8986\n", "17 20.00 448.2592 508.0000 29.8704\n", "18 24.00 537.8704 609.6000 35.8648\n", "19 30.00 672.3380 762.0000 44.8310\n", "20 36.00 806.8056 914.4000 53.7972" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR21D2241" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.7523.622026.67001.5240
11.0030.200633.40101.6002
21.2538.150842.16402.0066
31.5043.688048.26002.2860
42.0054.584660.32502.8702
52.5066.065473.02503.4798
63.0080.416488.90004.2418
73.5091.9480101.60004.8260
84.00103.4288114.30005.4356
95.00127.8382141.30026.7310
106.00152.2222168.27508.0264
118.00198.2470219.075010.4140
1210.00247.0912273.050012.9794
1312.00293.0652323.850015.3924
1414.00321.7672355.600016.9164
1516.00367.6904406.400019.3548
1618.00413.6644457.200021.7678
1720.00459.6384508.000024.1808
1824.00551.5356609.600029.0322
1930.00689.4576762.000036.2712
2036.00827.3288914.400043.5356
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.75 23.6220 26.6700 1.5240\n", "1 1.00 30.2006 33.4010 1.6002\n", "2 1.25 38.1508 42.1640 2.0066\n", "3 1.50 43.6880 48.2600 2.2860\n", "4 2.00 54.5846 60.3250 2.8702\n", "5 2.50 66.0654 73.0250 3.4798\n", "6 3.00 80.4164 88.9000 4.2418\n", "7 3.50 91.9480 101.6000 4.8260\n", "8 4.00 103.4288 114.3000 5.4356\n", "9 5.00 127.8382 141.3002 6.7310\n", "10 6.00 152.2222 168.2750 8.0264\n", "11 8.00 198.2470 219.0750 10.4140\n", "12 10.00 247.0912 273.0500 12.9794\n", "13 12.00 293.0652 323.8500 15.3924\n", "14 14.00 321.7672 355.6000 16.9164\n", "15 16.00 367.6904 406.4000 19.3548\n", "16 18.00 413.6644 457.2000 21.7678\n", "17 20.00 459.6384 508.0000 24.1808\n", "18 24.00 551.5356 609.6000 29.0322\n", "19 30.00 689.4576 762.0000 36.2712\n", "20 36.00 827.3288 914.4000 43.5356" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR26D2241" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
01.0030.353033.40101.5240
11.2538.912842.16401.6256
21.5044.551648.26001.8542
32.0055.702260.32502.3114
42.5067.437073.02502.7940
53.0082.042088.90003.4290
63.5093.7768101.60003.9116
74.00105.5116114.30004.3942
85.00130.4290141.30025.4356
96.00155.3210168.27506.4770
108.00202.2094219.07508.4328
1110.00252.0696273.050010.4902
1212.00298.9580323.850012.4460
1314.00328.2696355.600013.6652
1416.00375.1580406.400015.6210
1518.00422.0464457.200017.5768
1620.00468.9348508.000019.5326
1724.00562.7116609.600023.4442
1830.00703.3768762.000029.3116
1936.00844.0420914.400035.1790
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 1.00 30.3530 33.4010 1.5240\n", "1 1.25 38.9128 42.1640 1.6256\n", "2 1.50 44.5516 48.2600 1.8542\n", "3 2.00 55.7022 60.3250 2.3114\n", "4 2.50 67.4370 73.0250 2.7940\n", "5 3.00 82.0420 88.9000 3.4290\n", "6 3.50 93.7768 101.6000 3.9116\n", "7 4.00 105.5116 114.3000 4.3942\n", "8 5.00 130.4290 141.3002 5.4356\n", "9 6.00 155.3210 168.2750 6.4770\n", "10 8.00 202.2094 219.0750 8.4328\n", "11 10.00 252.0696 273.0500 10.4902\n", "12 12.00 298.9580 323.8500 12.4460\n", "13 14.00 328.2696 355.6000 13.6652\n", "14 16.00 375.1580 406.4000 15.6210\n", "15 18.00 422.0464 457.2000 17.5768\n", "16 20.00 468.9348 508.0000 19.5326\n", "17 24.00 562.7116 609.6000 23.4442\n", "18 30.00 703.3768 762.0000 29.3116\n", "19 36.00 844.0420 914.4000 35.1790" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR325D2241" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
01.2539.116042.16401.5240
11.5045.212048.26001.5240
22.0056.616660.32501.8542
32.5068.554673.02502.2352
43.0083.413688.90002.7432
53.5095.3516101.60003.1242
64.00107.2896114.30003.5052
75.00132.6134141.30024.3434
86.00157.9118168.27505.1816
98.00205.6130219.07506.7310
1010.00256.2352273.05008.4074
1112.00303.9364323.85009.9568
1214.00333.7560355.600010.9220
1316.00381.4064406.400012.4968
1418.00429.0568457.200014.0716
1520.00476.7580508.000015.6210
1624.00572.1096609.600018.7452
1730.00715.1116762.000023.4442
1836.00858.1136914.400028.1432
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 1.25 39.1160 42.1640 1.5240\n", "1 1.50 45.2120 48.2600 1.5240\n", "2 2.00 56.6166 60.3250 1.8542\n", "3 2.50 68.5546 73.0250 2.2352\n", "4 3.00 83.4136 88.9000 2.7432\n", "5 3.50 95.3516 101.6000 3.1242\n", "6 4.00 107.2896 114.3000 3.5052\n", "7 5.00 132.6134 141.3002 4.3434\n", "8 6.00 157.9118 168.2750 5.1816\n", "9 8.00 205.6130 219.0750 6.7310\n", "10 10.00 256.2352 273.0500 8.4074\n", "11 12.00 303.9364 323.8500 9.9568\n", "12 14.00 333.7560 355.6000 10.9220\n", "13 16.00 381.4064 406.4000 12.4968\n", "14 18.00 429.0568 457.2000 14.0716\n", "15 20.00 476.7580 508.0000 15.6210\n", "16 24.00 572.1096 609.6000 18.7452\n", "17 30.00 715.1116 762.0000 23.4442\n", "18 36.00 858.1136 914.4000 28.1432" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR41D2241" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
03.084.582088.90002.1590
13.596.6216101.60002.4892
24.0108.7120114.30002.7940
35.0134.3914141.30023.4544
46.0160.0454168.27504.1148
58.0208.4070219.07505.3340
610.0259.7404273.05006.6548
712.0308.0512323.85007.8994
814.0338.2772355.60008.6614
916.0386.5880406.40009.9060
1018.0434.8988457.200011.1506
1120.0483.2096508.000012.3952
1224.0579.8820609.600014.8590
1330.0724.8144762.000018.5928
1436.0869.7976914.400022.3012
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 3.0 84.5820 88.9000 2.1590\n", "1 3.5 96.6216 101.6000 2.4892\n", "2 4.0 108.7120 114.3000 2.7940\n", "3 5.0 134.3914 141.3002 3.4544\n", "4 6.0 160.0454 168.2750 4.1148\n", "5 8.0 208.4070 219.0750 5.3340\n", "6 10.0 259.7404 273.0500 6.6548\n", "7 12.0 308.0512 323.8500 7.8994\n", "8 14.0 338.2772 355.6000 8.6614\n", "9 16.0 386.5880 406.4000 9.9060\n", "10 18.0 434.8988 457.2000 11.1506\n", "11 20.0 483.2096 508.0000 12.3952\n", "12 24.0 579.8820 609.6000 14.8590\n", "13 30.0 724.8144 762.0000 18.5928\n", "14 36.0 869.7976 914.4000 22.3012" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR64D2241" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
04110.7440114.30001.7780
15136.8806141.30022.2098
26162.9918168.27502.6416
38212.2170219.07503.4290
410264.5156273.05004.2672
512313.7408323.85005.0546
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 4 110.7440 114.3000 1.7780\n", "1 5 136.8806 141.3002 2.2098\n", "2 6 162.9918 168.2750 2.6416\n", "3 8 212.2170 219.0750 3.4290\n", "4 10 264.5156 273.0500 4.2672\n", "5 12 313.7408 323.8500 5.0546" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR21D2241CTS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
01.0025.527028.5751.5240
11.2531.623034.9251.6510
21.5037.363441.2751.9558
32.0048.844253.9752.5654
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 1.00 25.5270 28.575 1.5240\n", "1 1.25 31.6230 34.925 1.6510\n", "2 1.50 37.3634 41.275 1.9558\n", "3 2.00 48.8442 53.975 2.5654" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR17D2241CTS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.7519.177022.2251.5240
11.0025.222228.5751.6764
21.2530.810234.9252.0574
31.5036.398241.2752.4384
42.0047.625053.9753.1750
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.75 19.1770 22.225 1.5240\n", "1 1.00 25.2222 28.575 1.6764\n", "2 1.25 30.8102 34.925 2.0574\n", "3 1.50 36.3982 41.275 2.4384\n", "4 2.00 47.6250 53.975 3.1750" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR135D2241CTS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5012.827015.8751.5240
10.7518.923022.2251.6510
21.0024.358628.5752.1082
31.2529.743434.9252.5908
41.5035.179041.2753.0480
52.0045.999453.9753.9878
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 12.8270 15.875 1.5240\n", "1 0.75 18.9230 22.225 1.6510\n", "2 1.00 24.3586 28.575 2.1082\n", "3 1.25 29.7434 34.925 2.5908\n", "4 1.50 35.1790 41.275 3.0480\n", "5 2.00 45.9994 53.975 3.9878" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR11D2241CTS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5012.827015.8751.5240
10.7518.161022.2252.0320
21.0023.393428.5752.5908
31.2528.575034.9253.1750
41.5033.756641.2753.7592
52.0044.170653.9754.9022
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 12.8270 15.875 1.5240\n", "1 0.75 18.1610 22.225 2.0320\n", "2 1.00 23.3934 28.575 2.5908\n", "3 1.25 28.5750 34.925 3.1750\n", "4 1.50 33.7566 41.275 3.7592\n", "5 2.00 44.1706 53.975 4.9022" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR21D2241PIP" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
015351.6376388.6218.4912
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 15 351.6376 388.62 18.4912" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR26D2241PIP" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
015358.7496388.620014.9352
118438.4802475.005418.2626
221516.9154559.993821.5392
324581.5330629.996224.2316
427655.3962710.006227.3050
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 15 358.7496 388.6200 14.9352\n", "1 18 438.4802 475.0054 18.2626\n", "2 21 516.9154 559.9938 21.5392\n", "3 24 581.5330 629.9962 24.2316\n", "4 27 655.3962 710.0062 27.3050" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR325D2241PIP" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
06146.3548155.95604.8006
18194.5132207.26406.3754
210243.1288259.08007.9756
312291.7444310.89609.5758
415364.6932388.620011.9634
518445.7954475.005414.6050
621525.5514559.993817.2212
724591.2358629.996219.3802
827666.3182710.006221.8440
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 6 146.3548 155.9560 4.8006\n", "1 8 194.5132 207.2640 6.3754\n", "2 10 243.1288 259.0800 7.9756\n", "3 12 291.7444 310.8960 9.5758\n", "4 15 364.6932 388.6200 11.9634\n", "5 18 445.7954 475.0054 14.6050\n", "6 21 525.5514 559.9938 17.2212\n", "7 24 591.2358 629.9962 19.3802\n", "8 27 666.3182 710.0062 21.8440" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR35D2241PIP" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
015366.4204388.620011.0998
118447.8782475.005413.5636
221527.9898559.993816.0020
324593.9790629.996218.0086
427669.4170710.006220.2946
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 15 366.4204 388.6200 11.0998\n", "1 18 447.8782 475.0054 13.5636\n", "2 21 527.9898 559.9938 16.0020\n", "3 24 593.9790 629.9962 18.0086\n", "4 27 669.4170 710.0062 20.2946" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR41D2241PIP" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
06148.3360155.95603.8100
18197.1548207.26405.0546
210246.4308259.08006.3246
312295.7068310.89607.5946
415369.6716388.62009.4742
518451.8406475.005411.5824
621532.6634559.993813.6652
724599.2622629.996215.3670
827675.3606710.006217.3228
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 6 148.3360 155.9560 3.8100\n", "1 8 197.1548 207.2640 5.0546\n", "2 10 246.4308 259.0800 6.3246\n", "3 12 295.7068 310.8960 7.5946\n", "4 15 369.6716 388.6200 9.4742\n", "5 18 451.8406 475.0054 11.5824\n", "6 21 532.6634 559.9938 13.6652\n", "7 24 599.2622 629.9962 15.3670\n", "8 27 675.3606 710.0062 17.3228" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR51D2241PIP" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
06149.8600155.95603.0480
18199.1360207.26404.0640
210248.9200259.08005.0800
312298.7040310.89606.0960
415373.3800388.62007.6200
518456.4126475.00549.2964
621538.0482559.993810.9728
724605.3074629.996212.3444
827682.1678710.006213.9192
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 6 149.8600 155.9560 3.0480\n", "1 8 199.1360 207.2640 4.0640\n", "2 10 248.9200 259.0800 5.0800\n", "3 12 298.7040 310.8960 6.0960\n", "4 15 373.3800 388.6200 7.6200\n", "5 18 456.4126 475.0054 9.2964\n", "6 21 538.0482 559.9938 10.9728\n", "7 24 605.3074 629.9962 12.3444\n", "8 27 682.1678 710.0062 13.9192" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR81D2241PIP" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
06152.0952155.9561.9304
18202.1332207.2642.5654
210252.6792259.0803.2004
312303.2252310.8963.8354
415379.0188388.6204.8006
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 6 152.0952 155.956 1.9304\n", "1 8 202.1332 207.264 2.5654\n", "2 10 252.6792 259.080 3.2004\n", "3 12 303.2252 310.896 3.8354\n", "4 15 379.0188 388.620 4.8006" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule S40F441IPS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.2509.245613.71602.2352
10.37512.522217.14502.3114
20.50015.798821.33602.7686
30.75020.929626.67002.8702
41.00026.644633.40103.3782
51.25035.052042.16403.5560
61.50040.894048.26003.6830
72.00052.501860.32503.9116
82.50062.712673.02505.1562
93.00077.927288.90005.4864
103.50090.1192101.60005.7404
114.000102.2604114.30006.0198
125.000128.1938141.30026.5532
136.000154.0510168.27507.1120
148.000202.7174219.07508.1788
1510.000254.5080273.05009.2710
1612.000303.2252323.850010.3124
1714.000333.4004355.600011.0998
1816.000381.0000406.400012.7000
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.250 9.2456 13.7160 2.2352\n", "1 0.375 12.5222 17.1450 2.3114\n", "2 0.500 15.7988 21.3360 2.7686\n", "3 0.750 20.9296 26.6700 2.8702\n", "4 1.000 26.6446 33.4010 3.3782\n", "5 1.250 35.0520 42.1640 3.5560\n", "6 1.500 40.8940 48.2600 3.6830\n", "7 2.000 52.5018 60.3250 3.9116\n", "8 2.500 62.7126 73.0250 5.1562\n", "9 3.000 77.9272 88.9000 5.4864\n", "10 3.500 90.1192 101.6000 5.7404\n", "11 4.000 102.2604 114.3000 6.0198\n", "12 5.000 128.1938 141.3002 6.5532\n", "13 6.000 154.0510 168.2750 7.1120\n", "14 8.000 202.7174 219.0750 8.1788\n", "15 10.000 254.5080 273.0500 9.2710\n", "16 12.000 303.2252 323.8500 10.3124\n", "17 14.000 333.4004 355.6000 11.0998\n", "18 16.000 381.0000 406.4000 12.7000" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule S80F441IPS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.2507.670813.71603.0226
10.37510.744217.14503.2004
20.50013.868421.33603.7338
30.75018.846826.67003.9116
41.00024.307833.40104.5466
51.25032.461242.16404.8514
61.50038.100048.26005.0800
72.00049.250660.32505.5372
82.50059.004273.02507.0104
93.00073.660088.90007.6200
103.50085.4456101.60008.0772
114.00097.1804114.30008.5598
125.000122.2502141.30029.5250
136.000146.3294168.275010.9728
148.000193.6750219.075012.7000
1510.000242.9256273.050015.0622
1612.000288.9504323.850017.4498
1714.000317.5000355.600019.0500
1816.000363.5756406.400021.4122
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.250 7.6708 13.7160 3.0226\n", "1 0.375 10.7442 17.1450 3.2004\n", "2 0.500 13.8684 21.3360 3.7338\n", "3 0.750 18.8468 26.6700 3.9116\n", "4 1.000 24.3078 33.4010 4.5466\n", "5 1.250 32.4612 42.1640 4.8514\n", "6 1.500 38.1000 48.2600 5.0800\n", "7 2.000 49.2506 60.3250 5.5372\n", "8 2.500 59.0042 73.0250 7.0104\n", "9 3.000 73.6600 88.9000 7.6200\n", "10 3.500 85.4456 101.6000 8.0772\n", "11 4.000 97.1804 114.3000 8.5598\n", "12 5.000 122.2502 141.3002 9.5250\n", "13 6.000 146.3294 168.2750 10.9728\n", "14 8.000 193.6750 219.0750 12.7000\n", "15 10.000 242.9256 273.0500 15.0622\n", "16 12.000 288.9504 323.8500 17.4498\n", "17 14.000 317.5000 355.6000 19.0500\n", "18 16.000 363.5756 406.4000 21.4122" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule S40F441SI" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
089.2213.72.24
11012.4817.12.31
21515.7621.32.77
32020.9626.72.87
42526.6433.43.38
53235.0842.23.56
64040.9448.33.68
75052.4860.33.91
86562.6873.05.16
98077.9288.95.49
109090.12101.65.74
11100102.26114.36.02
12125128.20141.36.55
13150154.08168.37.11
14200202.74219.18.18
15250254.56273.19.27
16300303.28323.910.31
17350333.40355.611.10
18400381.00406.412.70
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 8 9.22 13.7 2.24\n", "1 10 12.48 17.1 2.31\n", "2 15 15.76 21.3 2.77\n", "3 20 20.96 26.7 2.87\n", "4 25 26.64 33.4 3.38\n", "5 32 35.08 42.2 3.56\n", "6 40 40.94 48.3 3.68\n", "7 50 52.48 60.3 3.91\n", "8 65 62.68 73.0 5.16\n", "9 80 77.92 88.9 5.49\n", "10 90 90.12 101.6 5.74\n", "11 100 102.26 114.3 6.02\n", "12 125 128.20 141.3 6.55\n", "13 150 154.08 168.3 7.11\n", "14 200 202.74 219.1 8.18\n", "15 250 254.56 273.1 9.27\n", "16 300 303.28 323.9 10.31\n", "17 350 333.40 355.6 11.10\n", "18 400 381.00 406.4 12.70" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule S80F441SI" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
087.6613.73.02
11010.7017.13.20
21513.8421.33.73
32018.8826.73.91
42524.3033.44.55
53232.5042.24.85
64038.1448.35.08
75049.2260.35.54
86558.9873.07.01
98073.6688.97.62
109085.44101.68.08
1110097.18114.38.56
12125122.26141.39.52
13150146.36168.310.97
14200193.70219.112.70
15250242.98273.115.06
16300289.00323.917.45
17350317.50355.619.05
18400364.12406.421.14
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 8 7.66 13.7 3.02\n", "1 10 10.70 17.1 3.20\n", "2 15 13.84 21.3 3.73\n", "3 20 18.88 26.7 3.91\n", "4 25 24.30 33.4 4.55\n", "5 32 32.50 42.2 4.85\n", "6 40 38.14 48.3 5.08\n", "7 50 49.22 60.3 5.54\n", "8 65 58.98 73.0 7.01\n", "9 80 73.66 88.9 7.62\n", "10 90 85.44 101.6 8.08\n", "11 100 97.18 114.3 8.56\n", "12 125 122.26 141.3 9.52\n", "13 150 146.36 168.3 10.97\n", "14 200 193.70 219.1 12.70\n", "15 250 242.98 273.1 15.06\n", "16 300 289.00 323.9 17.45\n", "17 350 317.50 355.6 19.05\n", "18 400 364.12 406.4 21.14" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR325F2619SI" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
04107.28114.303.51
15132.60141.304.35
26157.92168.285.18
38205.62219.086.73
410256.23273.058.41
512303.93323.859.96
614333.70355.6010.95
716381.40406.4012.50
818429.06457.2014.07
920476.76508.0015.62
1022524.40558.8017.20
1124572.10609.6018.75
1226619.76660.4020.32
1328667.42711.2021.89
1430715.12762.0023.44
1532762.76812.8025.02
1634810.46863.6026.57
1736858.12914.4028.14
18421001.161066.8032.82
19481144.161219.2037.52
20541287.181371.6042.21
21631501.761600.2049.22
22651549.401651.0050.80
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 4 107.28 114.30 3.51\n", "1 5 132.60 141.30 4.35\n", "2 6 157.92 168.28 5.18\n", "3 8 205.62 219.08 6.73\n", "4 10 256.23 273.05 8.41\n", "5 12 303.93 323.85 9.96\n", "6 14 333.70 355.60 10.95\n", "7 16 381.40 406.40 12.50\n", "8 18 429.06 457.20 14.07\n", "9 20 476.76 508.00 15.62\n", "10 22 524.40 558.80 17.20\n", "11 24 572.10 609.60 18.75\n", "12 26 619.76 660.40 20.32\n", "13 28 667.42 711.20 21.89\n", "14 30 715.12 762.00 23.44\n", "15 32 762.76 812.80 25.02\n", "16 34 810.46 863.60 26.57\n", "17 36 858.12 914.40 28.14\n", "18 42 1001.16 1066.80 32.82\n", "19 48 1144.16 1219.20 37.52\n", "20 54 1287.18 1371.60 42.21\n", "21 63 1501.76 1600.20 49.22\n", "22 65 1549.40 1651.00 50.80" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR26F2619SI" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
04105.52114.304.39
15130.44141.305.43
26155.32168.286.48
38202.22219.088.43
410252.07273.0510.49
512298.95323.8512.45
614328.26355.6013.67
716375.16406.4015.62
818422.04457.2017.58
920467.56508.0020.22
1022515.82558.8021.49
1124562.72609.6023.44
1226609.60660.4025.40
1328656.48711.2027.36
1430703.38762.0029.31
1532750.26812.8031.27
1634797.16863.6033.22
1736844.04914.4035.18
1842984.761066.8041.02
19481125.421219.2046.89
20541266.081371.6052.76
21631477.101600.2061.55
22651524.001651.0063.50
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 4 105.52 114.30 4.39\n", "1 5 130.44 141.30 5.43\n", "2 6 155.32 168.28 6.48\n", "3 8 202.22 219.08 8.43\n", "4 10 252.07 273.05 10.49\n", "5 12 298.95 323.85 12.45\n", "6 14 328.26 355.60 13.67\n", "7 16 375.16 406.40 15.62\n", "8 18 422.04 457.20 17.58\n", "9 20 467.56 508.00 20.22\n", "10 22 515.82 558.80 21.49\n", "11 24 562.72 609.60 23.44\n", "12 26 609.60 660.40 25.40\n", "13 28 656.48 711.20 27.36\n", "14 30 703.38 762.00 29.31\n", "15 32 750.26 812.80 31.27\n", "16 34 797.16 863.60 33.22\n", "17 36 844.04 914.40 35.18\n", "18 42 984.76 1066.80 41.02\n", "19 48 1125.42 1219.20 46.89\n", "20 54 1266.08 1371.60 52.76\n", "21 63 1477.10 1600.20 61.55\n", "22 65 1524.00 1651.00 63.50" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR21F2619SI" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
02.566.0773.033.48
13.080.4288.904.24
24.0103.42114.305.44
35.0127.84141.306.73
46.0152.28168.288.00
58.0198.20219.0810.44
610.0247.05273.0513.00
712.0293.01323.8515.42
814.0321.72355.6016.94
916.0367.70406.4019.35
1018.0413.66457.2021.77
1120.0459.64508.0024.18
1222.0505.56558.8026.62
1324.0551.54609.6029.03
1426.0597.50660.4031.45
1528.0643.48711.2033.86
1630.0689.40762.0036.30
1732.0735.38812.8038.71
1834.0781.36863.6041.12
1936.0827.32914.4043.54
2042.0965.201066.8050.80
2148.01103.081219.2058.06
2254.01241.001371.6065.30
2363.01447.801600.2076.20
2465.01493.781651.0078.61
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 2.5 66.07 73.03 3.48\n", "1 3.0 80.42 88.90 4.24\n", "2 4.0 103.42 114.30 5.44\n", "3 5.0 127.84 141.30 6.73\n", "4 6.0 152.28 168.28 8.00\n", "5 8.0 198.20 219.08 10.44\n", "6 10.0 247.05 273.05 13.00\n", "7 12.0 293.01 323.85 15.42\n", "8 14.0 321.72 355.60 16.94\n", "9 16.0 367.70 406.40 19.35\n", "10 18.0 413.66 457.20 21.77\n", "11 20.0 459.64 508.00 24.18\n", "12 22.0 505.56 558.80 26.62\n", "13 24.0 551.54 609.60 29.03\n", "14 26.0 597.50 660.40 31.45\n", "15 28.0 643.48 711.20 33.86\n", "16 30.0 689.40 762.00 36.30\n", "17 32.0 735.38 812.80 38.71\n", "18 34.0 781.36 863.60 41.12\n", "19 36.0 827.32 914.40 43.54\n", "20 42.0 965.20 1066.80 50.80\n", "21 48.0 1103.08 1219.20 58.06\n", "22 54.0 1241.00 1371.60 65.30\n", "23 63.0 1447.80 1600.20 76.20\n", "24 65.0 1493.78 1651.00 78.61" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR17F2619SI" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
02.053.2160.333.56
12.564.4573.034.29
23.078.4488.905.23
34.0100.84114.306.73
45.0124.68141.308.31
56.0148.46168.289.91
68.0193.32219.0812.88
710.0240.95273.0516.05
812.0285.75323.8519.05
914.0313.74355.6020.93
1016.0358.60406.4023.90
1118.0403.40457.2026.90
1220.0448.26508.0029.87
1322.0493.06558.8032.87
1424.0537.88609.6035.86
1526.0582.72660.4038.84
1628.0627.54711.2041.83
1730.0672.34762.0044.83
1832.0717.20812.8047.80
1934.0762.00863.6050.80
2036.0806.80914.4053.80
2142.0941.281066.8062.76
2248.01075.741219.2071.73
2354.01210.261371.6080.67
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 2.0 53.21 60.33 3.56\n", "1 2.5 64.45 73.03 4.29\n", "2 3.0 78.44 88.90 5.23\n", "3 4.0 100.84 114.30 6.73\n", "4 5.0 124.68 141.30 8.31\n", "5 6.0 148.46 168.28 9.91\n", "6 8.0 193.32 219.08 12.88\n", "7 10.0 240.95 273.05 16.05\n", "8 12.0 285.75 323.85 19.05\n", "9 14.0 313.74 355.60 20.93\n", "10 16.0 358.60 406.40 23.90\n", "11 18.0 403.40 457.20 26.90\n", "12 20.0 448.26 508.00 29.87\n", "13 22.0 493.06 558.80 32.87\n", "14 24.0 537.88 609.60 35.86\n", "15 26.0 582.72 660.40 38.84\n", "16 28.0 627.54 711.20 41.83\n", "17 30.0 672.34 762.00 44.83\n", "18 32.0 717.20 812.80 47.80\n", "19 34.0 762.00 863.60 50.80\n", "20 36.0 806.80 914.40 53.80\n", "21 42.0 941.28 1066.80 62.76\n", "22 48.0 1075.74 1219.20 71.73\n", "23 54.0 1210.26 1371.60 80.67" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR135F2619SI" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5018.1821.341.58
10.7522.7126.671.98
21.0028.4833.402.46
31.2535.9242.163.12
41.5041.1048.263.58
52.0051.3960.334.47
62.5062.2173.035.41
73.0075.7488.906.58
84.0097.38114.308.46
95.00120.36141.3010.47
106.00143.34168.2812.47
118.00186.62219.0816.23
1210.00232.61273.0520.22
1312.00275.89323.8523.98
1414.00302.92355.6026.34
1516.00346.20406.4030.10
1618.00389.48457.2033.86
1720.00432.76508.0037.62
1822.00476.00558.8041.40
1924.00519.28609.6045.16
2026.00562.56660.4048.92
2128.00605.84711.2052.68
2230.00649.12762.0056.44
2332.00692.40812.8060.20
2434.00735.64863.6063.98
2536.00778.92914.4067.74
2642.00908.761066.8079.02
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 18.18 21.34 1.58\n", "1 0.75 22.71 26.67 1.98\n", "2 1.00 28.48 33.40 2.46\n", "3 1.25 35.92 42.16 3.12\n", "4 1.50 41.10 48.26 3.58\n", "5 2.00 51.39 60.33 4.47\n", "6 2.50 62.21 73.03 5.41\n", "7 3.00 75.74 88.90 6.58\n", "8 4.00 97.38 114.30 8.46\n", "9 5.00 120.36 141.30 10.47\n", "10 6.00 143.34 168.28 12.47\n", "11 8.00 186.62 219.08 16.23\n", "12 10.00 232.61 273.05 20.22\n", "13 12.00 275.89 323.85 23.98\n", "14 14.00 302.92 355.60 26.34\n", "15 16.00 346.20 406.40 30.10\n", "16 18.00 389.48 457.20 33.86\n", "17 20.00 432.76 508.00 37.62\n", "18 22.00 476.00 558.80 41.40\n", "19 24.00 519.28 609.60 45.16\n", "20 26.00 562.56 660.40 48.92\n", "21 28.00 605.84 711.20 52.68\n", "22 30.00 649.12 762.00 56.44\n", "23 32.00 692.40 812.80 60.20\n", "24 34.00 735.64 863.60 63.98\n", "25 36.00 778.92 914.40 67.74\n", "26 42.00 908.76 1066.80 79.02" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR11F2619SI" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5017.4821.341.93
10.7521.8526.672.41
21.0027.3033.403.05
31.2534.4842.163.84
41.5039.4848.264.39
52.0049.3560.335.49
62.5059.7773.036.63
73.0072.7488.908.08
84.0093.52114.3010.39
95.00115.60141.3012.85
106.00137.70168.2815.29
118.00179.26219.0819.91
1210.00223.41273.0524.82
1312.00264.97323.8529.44
1414.00290.94355.6032.33
1516.00332.48406.4036.96
1618.00374.10457.2041.55
1720.00415.64508.0046.18
1822.00457.20558.8050.80
1924.00498.76609.6055.42
2026.00540.30660.4060.05
2128.00586.74711.2062.23
2230.00623.46762.0069.27
2332.00665.02812.8073.89
2434.00706.58863.6078.51
2536.00748.14914.4083.13
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 17.48 21.34 1.93\n", "1 0.75 21.85 26.67 2.41\n", "2 1.00 27.30 33.40 3.05\n", "3 1.25 34.48 42.16 3.84\n", "4 1.50 39.48 48.26 4.39\n", "5 2.00 49.35 60.33 5.49\n", "6 2.50 59.77 73.03 6.63\n", "7 3.00 72.74 88.90 8.08\n", "8 4.00 93.52 114.30 10.39\n", "9 5.00 115.60 141.30 12.85\n", "10 6.00 137.70 168.28 15.29\n", "11 8.00 179.26 219.08 19.91\n", "12 10.00 223.41 273.05 24.82\n", "13 12.00 264.97 323.85 29.44\n", "14 14.00 290.94 355.60 32.33\n", "15 16.00 332.48 406.40 36.96\n", "16 18.00 374.10 457.20 41.55\n", "17 20.00 415.64 508.00 46.18\n", "18 22.00 457.20 558.80 50.80\n", "19 24.00 498.76 609.60 55.42\n", "20 26.00 540.30 660.40 60.05\n", "21 28.00 586.74 711.20 62.23\n", "22 30.00 623.46 762.00 69.27\n", "23 32.00 665.02 812.80 73.89\n", "24 34.00 706.58 863.60 78.51\n", "25 36.00 748.14 914.40 83.13" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR9F2619SI" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5016.6221.342.36
10.7520.7326.672.97
21.0025.9833.403.71
31.2532.8242.164.67
41.5037.5448.265.36
52.0046.9160.336.71
62.5056.8373.038.10
73.0069.1488.909.88
84.0088.90114.3012.70
95.00109.90141.3015.70
106.00130.90168.2818.69
118.00170.42219.0824.33
1210.00212.39273.0530.33
1312.00251.87323.8535.99
1414.00276.56355.6039.52
1516.00316.08406.4045.16
1618.00355.60457.2050.80
1720.00395.12508.0056.44
1822.00434.64558.8062.08
1924.00474.12609.6067.74
2026.00513.64660.4073.38
2128.00553.16711.2079.02
2230.00592.68762.0084.66
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 16.62 21.34 2.36\n", "1 0.75 20.73 26.67 2.97\n", "2 1.00 25.98 33.40 3.71\n", "3 1.25 32.82 42.16 4.67\n", "4 1.50 37.54 48.26 5.36\n", "5 2.00 46.91 60.33 6.71\n", "6 2.50 56.83 73.03 8.10\n", "7 3.00 69.14 88.90 9.88\n", "8 4.00 88.90 114.30 12.70\n", "9 5.00 109.90 141.30 15.70\n", "10 6.00 130.90 168.28 18.69\n", "11 8.00 170.42 219.08 24.33\n", "12 10.00 212.39 273.05 30.33\n", "13 12.00 251.87 323.85 35.99\n", "14 14.00 276.56 355.60 39.52\n", "15 16.00 316.08 406.40 45.16\n", "16 18.00 355.60 457.20 50.80\n", "17 20.00 395.12 508.00 56.44\n", "18 22.00 434.64 558.80 62.08\n", "19 24.00 474.12 609.60 67.74\n", "20 26.00 513.64 660.40 73.38\n", "21 28.00 553.16 711.20 79.02\n", "22 30.00 592.68 762.00 84.66" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR73F2619SI" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5015.5021.342.92
10.7519.3526.673.66
21.0024.2633.404.57
31.2530.6242.165.77
41.5035.0648.266.60
52.0043.8160.338.26
62.5053.0373.0310.00
73.0064.5688.9012.17
84.0083.00114.3015.65
95.00102.58141.3019.36
106.00122.16168.2823.06
118.00159.04219.0830.02
1210.00198.23273.0537.41
1312.00235.11323.8544.37
1414.00258.16355.6048.72
1516.00295.04406.4055.68
1618.00331.92457.2062.64
1720.00368.80508.0069.60
1822.00405.68558.8076.56
1924.00442.56609.6083.52
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 15.50 21.34 2.92\n", "1 0.75 19.35 26.67 3.66\n", "2 1.00 24.26 33.40 4.57\n", "3 1.25 30.62 42.16 5.77\n", "4 1.50 35.06 48.26 6.60\n", "5 2.00 43.81 60.33 8.26\n", "6 2.50 53.03 73.03 10.00\n", "7 3.00 64.56 88.90 12.17\n", "8 4.00 83.00 114.30 15.65\n", "9 5.00 102.58 141.30 19.36\n", "10 6.00 122.16 168.28 23.06\n", "11 8.00 159.04 219.08 30.02\n", "12 10.00 198.23 273.05 37.41\n", "13 12.00 235.11 323.85 44.37\n", "14 14.00 258.16 355.60 48.72\n", "15 16.00 295.04 406.40 55.68\n", "16 18.00 331.92 457.20 62.64\n", "17 20.00 368.80 508.00 69.60\n", "18 22.00 405.68 558.80 76.56\n", "19 24.00 442.56 609.60 83.52" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR7F2619SI" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5015.2421.343.05
10.7519.0526.673.81
21.0023.8433.404.78
31.2530.1242.166.02
41.5034.5048.266.88
52.0043.1160.338.61
62.5052.1773.0310.43
73.0063.5088.9012.70
84.0081.64114.3016.33
95.00100.92141.3020.19
106.00120.22168.2824.03
118.00156.50219.0831.29
1210.00195.03273.0539.01
1312.00231.35323.8546.25
1414.00254.00355.6050.80
1516.00290.28406.4058.06
1618.00326.60457.2065.30
1720.00362.86508.0072.57
1822.00399.14558.8079.83
1924.00435.40609.6087.10
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 15.24 21.34 3.05\n", "1 0.75 19.05 26.67 3.81\n", "2 1.00 23.84 33.40 4.78\n", "3 1.25 30.12 42.16 6.02\n", "4 1.50 34.50 48.26 6.88\n", "5 2.00 43.11 60.33 8.61\n", "6 2.50 52.17 73.03 10.43\n", "7 3.00 63.50 88.90 12.70\n", "8 4.00 81.64 114.30 16.33\n", "9 5.00 100.92 141.30 20.19\n", "10 6.00 120.22 168.28 24.03\n", "11 8.00 156.50 219.08 31.29\n", "12 10.00 195.03 273.05 39.01\n", "13 12.00 231.35 323.85 46.25\n", "14 14.00 254.00 355.60 50.80\n", "15 16.00 290.28 406.40 58.06\n", "16 18.00 326.60 457.20 65.30\n", "17 20.00 362.86 508.00 72.57\n", "18 22.00 399.14 558.80 79.83\n", "19 24.00 435.40 609.60 87.10" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR325F2619IPS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
04107.2896114.30003.5052
15132.6134141.30024.3434
26157.9118168.27505.1816
38205.6130219.07506.7310
410256.2352273.05008.4074
512303.9364323.85009.9568
614333.7052355.600010.9474
716381.4064406.400012.4968
818429.0568457.200014.0716
920476.7580508.000015.6210
1022524.4084558.800017.1958
1124572.1096609.600018.7452
1226619.7600660.400020.3200
1328667.4104711.200021.8948
1430715.1116762.000023.4442
1532762.7620812.800025.0190
1634810.4632863.600026.5684
1736858.1136914.400028.1432
18421001.16641066.800032.8168
19481144.16841219.200037.5158
20541287.17041371.600042.2148
21631501.74961600.200049.2252
22651549.40001651.000050.8000
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 4 107.2896 114.3000 3.5052\n", "1 5 132.6134 141.3002 4.3434\n", "2 6 157.9118 168.2750 5.1816\n", "3 8 205.6130 219.0750 6.7310\n", "4 10 256.2352 273.0500 8.4074\n", "5 12 303.9364 323.8500 9.9568\n", "6 14 333.7052 355.6000 10.9474\n", "7 16 381.4064 406.4000 12.4968\n", "8 18 429.0568 457.2000 14.0716\n", "9 20 476.7580 508.0000 15.6210\n", "10 22 524.4084 558.8000 17.1958\n", "11 24 572.1096 609.6000 18.7452\n", "12 26 619.7600 660.4000 20.3200\n", "13 28 667.4104 711.2000 21.8948\n", "14 30 715.1116 762.0000 23.4442\n", "15 32 762.7620 812.8000 25.0190\n", "16 34 810.4632 863.6000 26.5684\n", "17 36 858.1136 914.4000 28.1432\n", "18 42 1001.1664 1066.8000 32.8168\n", "19 48 1144.1684 1219.2000 37.5158\n", "20 54 1287.1704 1371.6000 42.2148\n", "21 63 1501.7496 1600.2000 49.2252\n", "22 65 1549.4000 1651.0000 50.8000" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR26F2619IPS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
04105.5116114.30004.3942
15130.4290141.30025.4356
26155.3210168.27506.4770
38202.2094219.07508.4328
410252.0696273.050010.4902
512298.9580323.850012.4460
614328.2696355.600013.6652
716375.1580406.400015.6210
818422.0464457.200017.5768
920468.9348508.000019.5326
1022515.8232558.800021.4884
1124562.7116609.600023.4442
1226609.6000660.400025.4000
1328656.4884711.200027.3558
1430703.3768762.000029.3116
1532750.2652812.800031.2674
1634797.1536863.600033.2232
1736844.0420914.400035.1790
1842984.75801066.800041.0210
19481125.42321219.200046.8884
20541266.08841371.600052.7558
21631477.11161600.200061.5442
22651524.00001651.000063.5000
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 4 105.5116 114.3000 4.3942\n", "1 5 130.4290 141.3002 5.4356\n", "2 6 155.3210 168.2750 6.4770\n", "3 8 202.2094 219.0750 8.4328\n", "4 10 252.0696 273.0500 10.4902\n", "5 12 298.9580 323.8500 12.4460\n", "6 14 328.2696 355.6000 13.6652\n", "7 16 375.1580 406.4000 15.6210\n", "8 18 422.0464 457.2000 17.5768\n", "9 20 468.9348 508.0000 19.5326\n", "10 22 515.8232 558.8000 21.4884\n", "11 24 562.7116 609.6000 23.4442\n", "12 26 609.6000 660.4000 25.4000\n", "13 28 656.4884 711.2000 27.3558\n", "14 30 703.3768 762.0000 29.3116\n", "15 32 750.2652 812.8000 31.2674\n", "16 34 797.1536 863.6000 33.2232\n", "17 36 844.0420 914.4000 35.1790\n", "18 42 984.7580 1066.8000 41.0210\n", "19 48 1125.4232 1219.2000 46.8884\n", "20 54 1266.0884 1371.6000 52.7558\n", "21 63 1477.1116 1600.2000 61.5442\n", "22 65 1524.0000 1651.0000 63.5000" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR21F2619IPS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
02.566.065473.02503.4798
13.080.416488.90004.2418
24.0103.4288114.30005.4356
35.0127.8382141.30026.7310
46.0152.2730168.27508.0010
58.0198.1962219.075010.4394
610.0247.0404273.050013.0048
712.0293.0144323.850015.4178
814.0321.7164355.600016.9418
916.0367.6904406.400019.3548
1018.0413.6644457.200021.7678
1120.0459.6384508.000024.1808
1222.0505.5616558.800026.6192
1324.0551.5356609.600029.0322
1426.0597.5096660.400031.4452
1528.0643.4836711.200033.8582
1630.0689.4068762.000036.2966
1732.0735.3808812.800038.7096
1834.0781.3548863.600041.1226
1936.0827.3288914.400043.5356
2042.0965.20001066.800050.8000
2148.01103.07121219.200058.0644
2254.01240.99321371.600065.3034
2363.01447.80001600.200076.2000
2465.01493.77401651.000078.6130
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 2.5 66.0654 73.0250 3.4798\n", "1 3.0 80.4164 88.9000 4.2418\n", "2 4.0 103.4288 114.3000 5.4356\n", "3 5.0 127.8382 141.3002 6.7310\n", "4 6.0 152.2730 168.2750 8.0010\n", "5 8.0 198.1962 219.0750 10.4394\n", "6 10.0 247.0404 273.0500 13.0048\n", "7 12.0 293.0144 323.8500 15.4178\n", "8 14.0 321.7164 355.6000 16.9418\n", "9 16.0 367.6904 406.4000 19.3548\n", "10 18.0 413.6644 457.2000 21.7678\n", "11 20.0 459.6384 508.0000 24.1808\n", "12 22.0 505.5616 558.8000 26.6192\n", "13 24.0 551.5356 609.6000 29.0322\n", "14 26.0 597.5096 660.4000 31.4452\n", "15 28.0 643.4836 711.2000 33.8582\n", "16 30.0 689.4068 762.0000 36.2966\n", "17 32.0 735.3808 812.8000 38.7096\n", "18 34.0 781.3548 863.6000 41.1226\n", "19 36.0 827.3288 914.4000 43.5356\n", "20 42.0 965.2000 1066.8000 50.8000\n", "21 48.0 1103.0712 1219.2000 58.0644\n", "22 54.0 1240.9932 1371.6000 65.3034\n", "23 63.0 1447.8000 1600.2000 76.2000\n", "24 65.0 1493.7740 1651.0000 78.6130" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR17F2619IPS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
02.053.213060.32503.5560
12.564.439873.02504.2926
23.078.435288.90005.2324
34.0100.8380114.30006.7310
45.0124.6886141.30028.3058
56.0148.4630168.27509.9060
68.0193.3194219.075012.8778
710.0240.9444273.050016.0528
812.0285.7500323.850019.0500
914.0313.7408355.600020.9296
1016.0358.5972406.400023.9014
1118.0403.4028457.200026.8986
1220.0448.2592508.000029.8704
1322.0493.0648558.800032.8676
1424.0537.8704609.600035.8648
1526.0582.7268660.400038.8366
1628.0627.5324711.200041.8338
1730.0672.3380762.000044.8310
1832.0717.1944812.800047.8028
1934.0762.0000863.600050.8000
2036.0806.8056914.400053.7972
2142.0941.27321066.800062.7634
2248.01075.74081219.200071.7296
2354.01210.25921371.600080.6704
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 2.0 53.2130 60.3250 3.5560\n", "1 2.5 64.4398 73.0250 4.2926\n", "2 3.0 78.4352 88.9000 5.2324\n", "3 4.0 100.8380 114.3000 6.7310\n", "4 5.0 124.6886 141.3002 8.3058\n", "5 6.0 148.4630 168.2750 9.9060\n", "6 8.0 193.3194 219.0750 12.8778\n", "7 10.0 240.9444 273.0500 16.0528\n", "8 12.0 285.7500 323.8500 19.0500\n", "9 14.0 313.7408 355.6000 20.9296\n", "10 16.0 358.5972 406.4000 23.9014\n", "11 18.0 403.4028 457.2000 26.8986\n", "12 20.0 448.2592 508.0000 29.8704\n", "13 22.0 493.0648 558.8000 32.8676\n", "14 24.0 537.8704 609.6000 35.8648\n", "15 26.0 582.7268 660.4000 38.8366\n", "16 28.0 627.5324 711.2000 41.8338\n", "17 30.0 672.3380 762.0000 44.8310\n", "18 32.0 717.1944 812.8000 47.8028\n", "19 34.0 762.0000 863.6000 50.8000\n", "20 36.0 806.8056 914.4000 53.7972\n", "21 42.0 941.2732 1066.8000 62.7634\n", "22 48.0 1075.7408 1219.2000 71.7296\n", "23 54.0 1210.2592 1371.6000 80.6704" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR135F2619IPS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5018.186421.33601.5748
10.7522.707626.67001.9812
21.0028.473433.40102.4638
31.2535.915642.16403.1242
41.5041.097248.26003.5814
52.0051.384260.32504.4704
62.5062.204673.02505.4102
73.0075.742888.90006.5786
84.0097.3836114.30008.4582
95.00120.3706141.300210.4648
106.00143.3322168.275012.4714
118.00186.6138219.075016.2306
1210.00232.6132273.050020.2184
1312.00275.8948323.850023.9776
1414.00302.9204355.600026.3398
1516.00346.2020406.400030.0990
1618.00389.4836457.200033.8582
1720.00432.7652508.000037.6174
1822.00475.9960558.800041.4020
1924.00519.2776609.600045.1612
2026.00562.5592660.400048.9204
2128.00605.8408711.200052.6796
2230.00649.1224762.000056.4388
2332.00692.4040812.800060.1980
2434.00735.6348863.600063.9826
2536.00778.9164914.400067.7418
2642.00908.76121066.800079.0194
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 18.1864 21.3360 1.5748\n", "1 0.75 22.7076 26.6700 1.9812\n", "2 1.00 28.4734 33.4010 2.4638\n", "3 1.25 35.9156 42.1640 3.1242\n", "4 1.50 41.0972 48.2600 3.5814\n", "5 2.00 51.3842 60.3250 4.4704\n", "6 2.50 62.2046 73.0250 5.4102\n", "7 3.00 75.7428 88.9000 6.5786\n", "8 4.00 97.3836 114.3000 8.4582\n", "9 5.00 120.3706 141.3002 10.4648\n", "10 6.00 143.3322 168.2750 12.4714\n", "11 8.00 186.6138 219.0750 16.2306\n", "12 10.00 232.6132 273.0500 20.2184\n", "13 12.00 275.8948 323.8500 23.9776\n", "14 14.00 302.9204 355.6000 26.3398\n", "15 16.00 346.2020 406.4000 30.0990\n", "16 18.00 389.4836 457.2000 33.8582\n", "17 20.00 432.7652 508.0000 37.6174\n", "18 22.00 475.9960 558.8000 41.4020\n", "19 24.00 519.2776 609.6000 45.1612\n", "20 26.00 562.5592 660.4000 48.9204\n", "21 28.00 605.8408 711.2000 52.6796\n", "22 30.00 649.1224 762.0000 56.4388\n", "23 32.00 692.4040 812.8000 60.1980\n", "24 34.00 735.6348 863.6000 63.9826\n", "25 36.00 778.9164 914.4000 67.7418\n", "26 42.00 908.7612 1066.8000 79.0194" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR11F2619IPS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5017.475221.33601.9304
10.7521.844026.67002.4130
21.0027.305033.40103.0480
31.2534.493242.16403.8354
41.5039.471648.26004.3942
52.0049.352260.32505.4864
62.5059.766273.02506.6294
73.0072.745688.90008.0772
84.0093.5228114.300010.3886
95.00115.5954141.300212.8524
106.00137.6934168.275015.2908
118.00179.2478219.075019.9136
1210.00223.4184273.050024.8158
1312.00264.9728323.850029.4386
1414.00290.9316355.600032.3342
1516.00332.4860406.400036.9570
1618.00374.0912457.200041.5544
1720.00415.6456508.000046.1772
1822.00457.2000558.800050.8000
1924.00498.7544609.600055.4228
2026.00540.3088660.400060.0456
2128.00581.9140711.200064.6430
2230.00623.4684762.000069.2658
2332.00665.0228812.800073.8886
2434.00706.5772863.600078.5114
2536.00748.1316914.400083.1342
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 17.4752 21.3360 1.9304\n", "1 0.75 21.8440 26.6700 2.4130\n", "2 1.00 27.3050 33.4010 3.0480\n", "3 1.25 34.4932 42.1640 3.8354\n", "4 1.50 39.4716 48.2600 4.3942\n", "5 2.00 49.3522 60.3250 5.4864\n", "6 2.50 59.7662 73.0250 6.6294\n", "7 3.00 72.7456 88.9000 8.0772\n", "8 4.00 93.5228 114.3000 10.3886\n", "9 5.00 115.5954 141.3002 12.8524\n", "10 6.00 137.6934 168.2750 15.2908\n", "11 8.00 179.2478 219.0750 19.9136\n", "12 10.00 223.4184 273.0500 24.8158\n", "13 12.00 264.9728 323.8500 29.4386\n", "14 14.00 290.9316 355.6000 32.3342\n", "15 16.00 332.4860 406.4000 36.9570\n", "16 18.00 374.0912 457.2000 41.5544\n", "17 20.00 415.6456 508.0000 46.1772\n", "18 22.00 457.2000 558.8000 50.8000\n", "19 24.00 498.7544 609.6000 55.4228\n", "20 26.00 540.3088 660.4000 60.0456\n", "21 28.00 581.9140 711.2000 64.6430\n", "22 30.00 623.4684 762.0000 69.2658\n", "23 32.00 665.0228 812.8000 73.8886\n", "24 34.00 706.5772 863.6000 78.5114\n", "25 36.00 748.1316 914.4000 83.1342" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR9F2619IPS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5016.611621.33602.3622
10.7520.726426.67002.9718
21.0025.984233.40103.7084
31.2532.816842.16404.6736
41.5037.541248.26005.3594
52.0046.913860.32506.7056
62.5056.819873.02508.1026
73.0069.138888.90009.8806
84.0088.9000114.300012.7000
95.00109.9058141.300215.6972
106.00130.8862168.275018.6944
118.00170.4086219.075024.3332
1210.00212.3948273.050030.3276
1312.00251.8664323.850035.9918
1414.00276.5552355.600039.5224
1516.00316.0776406.400045.1612
1618.00355.6000457.200050.8000
1720.00395.1224508.000056.4388
1822.00434.6448558.800062.0776
1924.00474.1164609.600067.7418
2026.00513.6388660.400073.3806
2128.00553.1612711.200079.0194
2230.00592.6836762.000084.6582
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 16.6116 21.3360 2.3622\n", "1 0.75 20.7264 26.6700 2.9718\n", "2 1.00 25.9842 33.4010 3.7084\n", "3 1.25 32.8168 42.1640 4.6736\n", "4 1.50 37.5412 48.2600 5.3594\n", "5 2.00 46.9138 60.3250 6.7056\n", "6 2.50 56.8198 73.0250 8.1026\n", "7 3.00 69.1388 88.9000 9.8806\n", "8 4.00 88.9000 114.3000 12.7000\n", "9 5.00 109.9058 141.3002 15.6972\n", "10 6.00 130.8862 168.2750 18.6944\n", "11 8.00 170.4086 219.0750 24.3332\n", "12 10.00 212.3948 273.0500 30.3276\n", "13 12.00 251.8664 323.8500 35.9918\n", "14 14.00 276.5552 355.6000 39.5224\n", "15 16.00 316.0776 406.4000 45.1612\n", "16 18.00 355.6000 457.2000 50.8000\n", "17 20.00 395.1224 508.0000 56.4388\n", "18 22.00 434.6448 558.8000 62.0776\n", "19 24.00 474.1164 609.6000 67.7418\n", "20 26.00 513.6388 660.4000 73.3806\n", "21 28.00 553.1612 711.2000 79.0194\n", "22 30.00 592.6836 762.0000 84.6582" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR73F2619IPS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5015.494021.33602.9210
10.7519.354826.67003.6576
21.0024.257033.40104.5720
31.2530.632442.16405.7658
41.5035.052048.26006.6040
52.0043.815060.32508.2550
62.5053.009873.025010.0076
73.0064.566888.900012.1666
84.0083.0072114.300015.6464
95.00102.5906141.300219.3548
106.00122.1486168.275023.0632
118.00159.0294219.075030.0228
1210.00198.2216273.050037.4142
1312.00235.1024323.850044.3738
1414.00258.1656355.600048.7172
1516.00295.0464406.400055.6768
1618.00331.9272457.200062.6364
1720.00368.8080508.000069.5960
1822.00405.6888558.800076.5556
1924.00442.5696609.600083.5152
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 15.4940 21.3360 2.9210\n", "1 0.75 19.3548 26.6700 3.6576\n", "2 1.00 24.2570 33.4010 4.5720\n", "3 1.25 30.6324 42.1640 5.7658\n", "4 1.50 35.0520 48.2600 6.6040\n", "5 2.00 43.8150 60.3250 8.2550\n", "6 2.50 53.0098 73.0250 10.0076\n", "7 3.00 64.5668 88.9000 12.1666\n", "8 4.00 83.0072 114.3000 15.6464\n", "9 5.00 102.5906 141.3002 19.3548\n", "10 6.00 122.1486 168.2750 23.0632\n", "11 8.00 159.0294 219.0750 30.0228\n", "12 10.00 198.2216 273.0500 37.4142\n", "13 12.00 235.1024 323.8500 44.3738\n", "14 14.00 258.1656 355.6000 48.7172\n", "15 16.00 295.0464 406.4000 55.6768\n", "16 18.00 331.9272 457.2000 62.6364\n", "17 20.00 368.8080 508.0000 69.5960\n", "18 22.00 405.6888 558.8000 76.5556\n", "19 24.00 442.5696 609.6000 83.5152" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Schedule DR7F2619IPS" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NPS, dimensionlessInner diameter, mmOuter diameter, mmThickness, mm
00.5015.240021.33603.0480
10.7519.050026.67003.8100
21.0023.850633.40104.7752
31.2530.124442.16406.0198
41.5034.493248.26006.8834
52.0043.103860.32508.6106
62.5052.146273.025010.4394
73.0063.500088.900012.7000
84.0081.6356114.300016.3322
95.00100.9142141.300220.1930
106.00120.2182168.275024.0284
118.00156.4894219.075031.2928
1210.00195.0212273.050039.0144
1312.00231.3432323.850046.2534
1414.00254.0000355.600050.8000
1516.00290.2712406.400058.0644
1618.00326.5932457.200065.3034
1720.00362.8644508.000072.5678
1822.00399.1356558.800079.8322
1924.00435.4068609.600087.0966
\n", "
" ], "text/plain": [ " NPS, dimensionless Inner diameter, mm Outer diameter, mm Thickness, mm\n", "0 0.50 15.2400 21.3360 3.0480\n", "1 0.75 19.0500 26.6700 3.8100\n", "2 1.00 23.8506 33.4010 4.7752\n", "3 1.25 30.1244 42.1640 6.0198\n", "4 1.50 34.4932 48.2600 6.8834\n", "5 2.00 43.1038 60.3250 8.6106\n", "6 2.50 52.1462 73.0250 10.4394\n", "7 3.00 63.5000 88.9000 12.7000\n", "8 4.00 81.6356 114.3000 16.3322\n", "9 5.00 100.9142 141.3002 20.1930\n", "10 6.00 120.2182 168.2750 24.0284\n", "11 8.00 156.4894 219.0750 31.2928\n", "12 10.00 195.0212 273.0500 39.0144\n", "13 12.00 231.3432 323.8500 46.2534\n", "14 14.00 254.0000 355.6000 50.8000\n", "15 16.00 290.2712 406.4000 58.0644\n", "16 18.00 326.5932 457.2000 65.3034\n", "17 20.00 362.8644 508.0000 72.5678\n", "18 22.00 399.1356 558.8000 79.8322\n", "19 24.00 435.4068 609.6000 87.0966" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "for name, values in schedule_lookup.items():\n", "\n", " display(Markdown(\"## Schedule %s\" %(name)))\n", " to_df = {'NPS, dimensionless': values[0],\n", " 'Inner diameter, mm': values[1], 'Outer diameter, mm': values[2], 'Thickness, mm': values[3]}\n", " display(pd.DataFrame(to_df))" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.5" } }, "nbformat": 4, "nbformat_minor": 1 } fluids-1.0.22/docs/modules.rst0000644000175000017500000000010514302004506015530 0ustar nileshnileshAPI Reference ============= .. toctree:: :maxdepth: 4 fluids fluids-1.0.22/docs/fluids.fittings.rst0000644000175000017500000000046414302004506017204 0ustar nileshnileshFittings pressure drop (fluids.fittings) ======================================== .. meta:: :description: Calculate loss coefficients for entrances, exits, bends, contractions, expansions, tees, valves, and all the fittings in the Hooper 2K and Darby 3K methods. .. automodule:: fluids.fittings fluids-1.0.22/docs/fittings/0000755000175000017500000000000014302004506015161 5ustar nileshnileshfluids-1.0.22/docs/fittings/flush_mounted_beveled_orifice_entrance.png0000644000175000017500000003523414302004506025617 0ustar nileshnilesh‰PNG  IHDR£Œ½wBsBIT|dˆ IDATxœíÝwxTUþÇñϤ„„„&ˆ¨H(‹°R¤KÁH± KYqW¤‰(î£ ?W”* «»¸Ø@‘²*Ez‘Î ‚ŠŠ,Òé÷÷OÆ )ÌäN_ϓǙ3wî|Gcîçžsî¹Ã0 n8þ¼*V¬èÒ£ÄÄD›*ø£ » €ÿp8v—„¸ððÂÜFøxán#|¼ð·>Þ@ø€Ûo |Àm„€7>à6ÂÀpáà „¸ððÂÜFøxán#|¼ð·>Þ@ø€Ûo |Àm„€7>à6ÂÀpáà „¸ððÂÜFøxáXŠðÐû0‹ð>f>àÂÀ,Âf>àÂÀ,Âf>àÂÀ,Âf>àÂÀ,Âf>àÂÀ,Âf>àÂÀ,Âf>àÂÀ,Âf>àÂÀ,ÂG1]¸pA·Þz«/^lw)–âÆr³8’S\\œúöí«‡zHO<ñ„ÒÒÒì.Éô|Ì"|˜0qâDõêÕKo¿ý¶Ú´i£ÿýïv—Tâ³&iþüùz衇ôÕW_©I“&Z·nÝeàÓ&…††êã?Ö#<¢óçÏ+!!AcÇŽUNNŽÝ¥•z>f>¼ 88X³fÍÒ!C”­qãÆ©wïÞJII±»4¯cÂ)À,Ž$^¬wÞyG“'O–ÃáТE‹Ô¼ysýðÃv—æUô|Ì"|xÙèÑ£õÉ'Ÿ(<<\ßÿ½î¼óN-[¶Ìî²¼†ð0‹ðQzõê¥Ï?ÿ\+VTJJŠ|ðAM:Õî²¼‚ð0‹ðQBZ¶l©íÛ·+>>^ÙÙÙ=z´úõë§+W®Ø]š)„€Y„T«V-mÞ¼YM›6•$ýç?ÿQÇŽõ믿Ú\Yñ>f>JØ 7Ü M›6©{÷î’¤;v¨iÓ¦Úµk—Í•á`áÑ‘‘úôÓOõÄOH’Nž<©öíÛë?ÿùÍ•yŽð0‹ða‘àà`½ùæ›z÷Ýwª+W®¨_¿~zúé§ýjA2ÂÀ,‡Å¬U«V)66V’ôÆo¨[·nºxñ¢Í•¹‡ð0‹ðaƒ»ï¾[»víR½zõ$I«W¯ö›É³6©U«–vîÜ©nݺI’~øáµjÕJ6l°¹²¢>f>lT®\9-Y²D£F’$]¸pA]»võéɳ6 Ö”)S4sæL•)SFYYY=z´† ¢ŒŒ »Ëˇð0‹ðá#üqmذA•+W–$͘1C;vÔéÓ§m®Ìá`áÇ´iÓFÛ·oWýúõ%I[·nUÓ¦MµgÏ›+û á`áÃÇÔ¬YSÛ¶mSBB‚$éøñãj×®–,YbseW>f>|Ptt´–-[月zéÒ%=øàƒ;v¬½…‰ð0ðá£r'¢Î›7Oááá2 CãÆÓc=fëDTÂÀ,‡ëׯŸ>ûì3çDÔY³féž{îÑùóçm©‡ð0‹ðáÚ´i£={öèÎ;ï”$}ñÅjÞ¼¹f•ªð¡¹sç***ÊÙ¶gÏ-[¶¬È÷½ýöÛ:|øp‘W—†¡‡~XÛ·ow¶µnÝZkÖ¬QµjÕÌ_ˆ˜˜­X±BÏ>û¬¤«ß§yóæ%¶$;á`V© ’©:¸´5$’““ãœÐ™{Ï•‚¼ûî»úì³ÏœÏË–-«ÿüç? 5YñõëÕW_Õœ9s®'N¨mÛ¶úôÓO½þY„€iF)4lØ0C’ó'!!¡ÐmwíÚåÜnÅŠnsùòe£Zµj.û=ztI•_¤={ö7ß|³!Ép8ÆK/½äÕýÿñtùžüðÃ?üðãÉOLLŒQêz>$),,ÌåùÙ³g ÝvåÊ•’®žñ·lÙ²ÀmÞ}÷]pà@¯-ÉNÏÀ¬R>‚‚\¿vQ—¨®Y³F’T¯^=ÅÅŸÍÌ™3]žwïÞ]•*U2YeñU­ZU7nÔc=&Iú÷¿ÿ­®]»êÂ… ¦÷Mø˜U*ÃGJJŠËó¨—/_vNÜlݺuÛìܹSpiûóŸÿì…*Í Óû￯iÓ¦)$$D7nTË–-uøðaSû%|Ì*•áãâÅ‹.Ï#"" Ün÷îÝÊÌÌ”Txøøàƒ\žW®\Y]ºt1_¤—<õÔSZ³f*T¨ C‡©E‹Ú²eK±÷Gø˜bwv¸6|DGG¸Ý¶mÛœ šï‘––¦>úÈ¥­oß¾ ñ­­:uÒ®]»Ô³gO}ûí·êܹ³æÌ™£^½zy¼¯kÃGLLŒ×j»ž¤¤$ÅÆÆÚZJ_ÿ½JNNVvv¶Ýe(%%åºë%åÊÉÉÉ÷7¸(W®\QZZšK[jjªs[FF†sqEÃ0ôã?êý÷ßWPP¾þúk5hÐÀíÏ‚u|ë(i‘kñË—/_àv¹á#::ZµjÕÊ÷ú’%K”””äÒöÈ#x©JïªY³¦¶oß®G}T‹/Öþð½öÚk9r¤Gû¹6|†áÍ2Ÿ’7äú"_¯ÏãÆ“t5äŒ?^ ,°¹"„a> Ãp.Ö¨Q£|“T%iÖ¬Y.Ïëׯ¯&Mšx±RŠÒÂ… õòË/Ëápè™gžÑ_þòî ð _•žž®·ß~Ûù|Ñ¢EÚ¿¿¡0¥2|\Û[QPø8xð ÎŸ?/Ijܸq¾×?® 6¸´ùj¯G^‡Cÿ÷ÿ§U«V©B… úÇ?þ¡>}úäëÖ,êýyÑóÀWÌ›7O§OŸv>7 CãÇ·±"†ð¡‚ç|lݺÕù¸ ÞŒY³f¹Œµ†……ùEøÈuÏ=÷h÷îÝjÔ¨‘,X .]º¸5[PØ-;;[S¦LÉ×¾xñbí۷φŠP”Rw$ÉÊÊÒ•+W\Ú®>®íùÈÈÈpéÚ“®öz”ä=\J­·Þª­[·jÀ€Ú¼y³:uê¤sçÎù†]ø¢>ú¨À¥r[„o)uá#$$DÁÁÁ.m ä†ððpçmësÍŸ?_¿þú«óy™2e4jÔ¨¨¶äEDDhöìÙú׿þ¥ýû÷_÷ †]øšœœMš4©Ð×—,Y¢¯¿þÚŠp=¥.|HWo.—×µ—ˆ9sÆ™ ëÔ©ãV2335a—íŸzꩯ†ñ'O>ù¤6nܨŠ+¹=|ÍÂ… õý÷ßú:½¾§T†o¼Ñåyî5â¹ò¹üîw¿symÆŒ:räˆóy||¼^|ñŨÒz­[·ÖÂ… ‹Ü†ž¾Ä0Œ"{=r-]ºT{÷îµ "¸£T†‡zÈåùÁƒ]žùå—ÎÇyÃÇéÓ§5fÌçó¨¨(-Z´HåÊ•+¡J}=|É’%KܺœÖ0Œ|½Ö°O© £GVÆ Ï·mÛæråÊgŸ}æ|\·n]IWqŸxâ 犇åË—×ÚµkKÝêyô|ðž wƒ J^© ‘‘‘úôÓOW§9rD³gÏ–$8qBß}÷sÛ5jH’¦L™¢Å‹K’š6mª;wªU«VWn?z>ø O‡RÜ¢AÉ+•Ë«KW—ß¼y³zôè¡hذa ב#G\Îæ÷ï߯ùóçkÚ´iªT©’^zé% ø‚âN"ÍœZ¯^½¨ î*µáC’n»í6íÞ½[&LÐÌ™3Õ¿ÿ|Û 4HQQQzñÅõì³Ï–ªù¹6|dffêÈ‘#ªY³¦M(Š{ùlîe¹sçÎ-ªà®R9ì’WÙ²e5yòd>}Z/½ôR¾×»wï®üQãÆ+õÁCÊõOff¦š7o®M›6ÙS€RÇ쥳…-Hë”úð‘+88X]ºtqiëÕ«—–,Y¢*UªØT•ïîСƒ•ø‡êÕ«kÓ¦MJHHpiÿòË/Õ²eK8pÀ¦Ê¢œœÓ½áááªT©’âãã9I²á#¼7‹#|¸'::ZË–-ÓÈ‘#]Úúé'µlÙR+W®ôúgry/P:iÿþý2 £ÐŸÜ… %)&&&ßëW®\Ñ™3gtèÐ!z>lDøÈ#wØ¥jÕªªS§ŽÍÕøàà`ýãÿÐÌ™3]Ö?INNV÷îÝ5vìX¯~^NNŽW÷°á#Ë—/KR¾«^àžÇ\k×®U\\œ³-÷’¸(--Í+ŸCÏø7ÂG¹ëxüéO²·?Ö¡CíØ±#_ÏÑœ9sÔ¡C—¡­âº¶çƒ%ßÀ¿>òHHHÐÀÕ®];»KñkñññÚ¾}»î¾ûn—ö;v¨Y³fúꫯLíŸðþð‘G÷îÝõÞ{ïÙ]F@ˆÕêÕ«5bÄ—öãÇ«M›6š3gN±÷}í° áü á%&$$Do¼ñ†Þxã ;ÛÓÒÒôè£ê…^(ÖäQz>À¿>PâFŒ¡U«V)&&ÆÙ–{kënݺ)))É£ý]>X…ü µa‰{î¹G»víRíÚµ]ÚW¯^­fÍšéûï¿w{_ »€#|À2ñññÚºu«Ú¶mëÒ~øðaµjÕJ«W¯vk?„ðo„XªbÅŠÚ°aƒž|òI—ö¤¤$Ýwß};vìu×ñ`Îø7Â,¢ýë_z÷Ýw]VDÍ]¬oß¾Îß BøÿFø€m¬Õ«W»¬ˆ*Iü±îºë.;v¬À÷1ìþð[uêÔI»víRýúõ]Ú÷ìÙ£&MšhãÆùÞsí2í„ð/„Øî¶ÛnÓ¶mÛÔ½{w—ösçΩK—.zçw\Ú¯ !!!%^#À{ð ÑÑÑZ²d‰^xá—žŒÌÌL 6LC‡UFF†¤üá#<<ÜÒZæ>à3‚‚‚4aÂ-_¾\±±±.¯½ûî»êر£N:•/|DDDXY&À$Â|Î}÷ݧ;wêöÛowiߺu«š5k¦­[·º´>À¿>à“âããµ{÷nýéOriÿå—_4vìX—6ÂøÂ|Vxx¸fÍš¥üã.ë´ÀXr™@ff¦–.]ª'N(--M‰‰‰JOO×åË—•œœ¬ììlç¶)))ÊÊÊryFF†RSSóí711Ñ+õ]¾|Yééé^ÙW®k¿—;BCCåÕ:"""¼rpVttt¾öråÊå»Ú$,,LeË–u>/S¦Œ"##U®\9………)::ZeË–Õ-·Ü¢„„—;ÞdäÈ‘jÕª•úöí«#GŽä{=ïg|Ÿ%á£OŸ>Z¼x±å×233½¨ry{ÞTµjU½ùæ›zà®»m³fÍ´wï^ 6LóçÏwyíÆo,©%À’ð1wî\mÙ²EЩS§tòäI>}Z'OžtöhäíÝÈÉÉÑÅ‹­(-à©|ùò^Ù×µ½QQQÎá²eË*,,L’kïJÞ^Ü2eÊ(..Îå§N:ªP¡‚GõDGGkÞ¼yêܹ³FŒ¡K—.I’êÖ­kú»¬ã0®w/;D“+33Óyà‘®Õ$''+99YÛ·oפI“äp8ô·¿ýMqqqŠŒŒTll¬‡bbb\ö{€Ì+÷€é©˜˜S«mæ=¸£hÇŽÓ3Ï<£ÿþ÷¿Ú¹s§n¸á»Kà’’’œ—êÇÄÄøtïoiæKC†……9ϲsU®\¹ÀmwïÞ-éêý?âãã5`À€¯Ö«Q£†-Zdw€bð‹žw¥§§ëæ›oÖéÓ§%I 4о}û¸÷”ô|ø‡€ºÔvÖ¬YÎà!Iß|óM7&ö ˜ð‘™™©©S§ækŸ4i’ Õ€ÂLøxï½÷tôèÑ|íŸþ¹¾üòKë  ˆð‘‘‘¡W^y¥Ð×éýÀwDø(¬×#×ÚµkµmÛ6ë …òûðq½^\“'O¶ p=~>Þ{ï=ýïÿ»îv+W®Ôž={,¨ůÃGZZšÛ=†ahüøñ%\¸¿o¿ý¶Ž?îööK—.u®€ ìá·á#55µÀu=®gâĉ%P p—߆éÓ§»¬fê®eË–Ñû€ü2|\ºtI¯½öZ±ß?aÂ/V<á—áãõ×_×Ù³g‹ýþåË—Óû€Mü.|$%%éŸÿü§éýpå öð»ðñ÷¿ÿÝ+·H^±b…víÚå…Š€'ü.|ÄÅÅéŽ;îPTT”©ýëÍ7ßôRUÀ]Ã0 »‹(®_ýUÇŽÓùóçuáÂ]¸pA ,Ж-[$IÝ»w×=÷Ü£¸¸8ÅÅÅ©B… Š‹‹SÅŠU¾|y›«x[RR’bcc%I111^é)‡÷…Ø]€U«VUÕªU]Ú~ùågøèܹ³ž|òI;J…ð»a—ë ù-OÜ×ÀïÜÑ944Ôù˜ð€ï ¸£3=ø¶€;:Óó€o ¸£3áßpGg†]ðmwt¦çßpGç¼=ÁÁÁ6V pპ|[À ø¶€;:3áßpGgz>ðm^;:§§§káÂ…úÃþ Ûo¿]sçÎõÖ®=BøÀ·yåè¼{÷n5mÚT?ü°>ùä}÷ÝwZ°`7ví1ÂÀ—øÊɹ/ñÊÑùÎ;ïÔ7ß|£åË—;ÛÊ•+ç]{Œ9pdž Ô¢E Õ«WO<òˆæÌ™£ääd»Ë`|éäÜ—xõè|âÄ çã[o½Õ›»v=pÇèÑ£µsçN&|  —.]RVVV‘ÛlذA:tÐ]wÝ¥µk×ZT€@å 'ç¾ÄkGçÝ»wëôéÓ’¤Ûo¿]7Üpƒ·v]l„$;;Ûím·lÙ¢®]»ªyóæZ¾|¹ Ã(ÁÊ"_99÷%^;:¯\¹Òù¸K—.ÞÚ­)ÜÛîzýõ×õÝwßiÔ¨QЉ‰É÷ú®]»Ô£G5nÜX .TNNŽ UðG¾xrn·ëo➥K—:wíÚÕ[»õX »|÷Ýw:uê”NŸ>­³gÏêÊ•+JJJ’tu!33S™™™ºté’$éâÅ‹ùŽÉÉÉEžñôO^OJJòÛ^‡Ã¡*::ZS¦LÑóÏ?¯3fèµ×^Ó©S§\¶ýúë¯õðë~ýú?~¼xà—ß9¸–/žœÛÎð‚Ç’ IFdd¤‘––æÝËæÍ›µlڴɶ:¼eáÂ…ÎïÃOÉü”+W®À÷©©©Æ«¯¾jTªT©Ð÷6iÒÄXµj•Å¿ “˜˜èüÿ3&&Æîr Ã0Œ† :kZ¿~½Ýåø¯t ,Z´Èù¸}ûö óÆnM „žuëÖÙ]BÀ+lx®lÙ²zöÙguäȽüò˪P¡B¾m¾úê+%$$è®»îÒ_|QÒ¥ð3?þø£öïß/IŠŒŒT›6ml®È7˜>:§¦¦ê­·Þr>·»K)І]¾ùæ»K(õ¢¢¢ôÿ÷:räˆÆ_àœ-[¶¨}ûöºçž{´k×.ªà‹|õäÜn×ó‘‘‘¡µk×jÕªU:tè ÃPll¬ªW¯® *hÕªU:vì˜s{;ç{\+ÂGîÜIЉ‰Qbb¢Õ”nÑÑÑ3fŒFŒ¡©S§jÚ´iºråŠË6Ÿ}ö™Ö¯_¯=zh„ jРMÕ°›¯œû’"ÃÇ‚ ôì³Ïê—_~ÑÃ?¬—_~Y 6ÔÉ“'5oÞ<½üòËJOOwn_³fMÅÇÇ—xÑE ´ž””»KÀ5bbb4yòd >\cƌч~è2×0 -]ºT+V¬ÐàÁƒ5a„‡lø7>9·]AAÒÓÓAƒ’ŒˆˆcþüùN™0a‚Ëä»aÆ•Üì7mÙ²ÅYÏ®]»ì.Ç´Ê•+ûÜä)¸Ú·oŸÑµk×B'¥ÆÅÅo¾ù¦‘••ew©@À³jÂé'Ÿ|bÔ¨QÃp8FïÞ½;v—/_6~üñGcܸqFXX˜Ëßš5k–X-þ(_×@VV–~øaÍœ9S¡¡¡Z¼x±úöí[`piÒ¤‰Ës_KuÐó‘÷FyðM 6ÔêÕ«µ~ýz5nÜ8ßë.\ÐðáÃÕ¸qcmÞ¼Ù† xKFF†¬Þ½{ëìÙ³š7ož>þøc5oÞ\ºí¶Ûôâ‹/ê…^pyC.®òŸzê)-[¶L’ôÆo(rו¤2eʨcÇŽ%P¢gmØ…ðá?:uê¤Ý»wkæÌ™ªX±b¾×÷ï߯:襗^òÛ5Q€Ò,NÎíært^¼x±Þ~ûmIRÏž=5tèÐ"ßœ÷æ\­[·VTTT ”X|°Â)áÿéñÇ×?ü x ßë999?~¼&OžlCuÌð÷“s_â IIIΰ¡ýë_×}sÞ5(|1ÕBÏ—eù§¬¬¬"ƒã/¿üba5Ì ´“s»9ÎS§NÕÙ³g%IÇ×M7ÝTä:¤ÿþ÷¿Îç¾>mØ%<<ÜîàŒŒ ½öÚkª]»¶,XïõððpM™2Å­pÀ7âɹÝB$éܹsš6mš¤«ì'Ÿ|òºo|å•Wœ«U«æ“ëBøˆˆˆ°»¸!;;[sæÌѸqãtôèÑ|¯;õêÕKS¦LQÍš5­/@±Êɹ/ ‘¤Ù³g;KêØ±£n¾ùæ"ßôóÏ?ëÃ?t>ïÒ¥‹ÏÜ\+##Ãù˜ð’–““£ hìØ±:xð`Û4kÖL¯¿þºZ·nmquÌ Ô“s»†¡3f8Ü™3yòdeff:ŸûRª#|À*Ë—/WãÆÕ§OŸƒGݺuµ`ÁíØ±ƒàø©@:9÷%!›6mÒ¡C‡œ Í›7/ò {÷îÕ¬Y³œÏƒ‚‚Ô©S§+ÐS>’’’®ûKêöĦ•+WέmƒƒƒíÖ¶AAA*_¾¼×k(S¦Œ"##ÝÚ6<<Üíàvï½÷ª]»vnm+Iëׯט1c´cÇŽ_¿ùæ›5vìX=òÈ#qÅPZÚɹ/ Y¾|¹KCQcY™™™züñÇ•••ål»ýöÛ}jéèÀ4¬GIDAT¼Ë½Â~O{>233=ºÿKî8fi–™™éVøX½zµ&Nœ¨mÛ¶øz•*Uô·¿ýMC† Q™2e¼]&‹Úɹ/ Ùºu«KCµjÕ ÝxôèÑ:|ø°Ê•+ç¼çˆ'gŒVäž”Œ¢.{5 CË–-Óĉ]&å£çž{NO?ý´Û=3|_ œû’Ç»4Ö­?þ|}ðÁZ¼x±î½÷^g{Û¶mÝþ°o¾ùF“&MÒ_|¡óçÏ«FêÑ£‡ž{î9U­Zµxßà> ¼…{ARSS]¾QRRR\þ')ÊÅ‹]nœV˜ììl%''¹Mzzº._¾\ä6E}äädegg_·O9r$_[NNŽ-Z¤I“&iß¾}¾/22RO=õ”ž{î9ÅÆÆzµ&ö ´“s_’w6IJLLTÙ²e]ÚV®\©Q£FéóÏ?×™3g\ZwÜq‡$éôéÓZ¸p¡†^àM:U/¿ü²^}õU½õÖ[ÊÎÎÖŒ34f̽ÿþûš7ožºuëfú ZøèÑ£‡zôèaw>)wx)oèÉÈÈPjjª$)--M))):wîœÎŸ?¯“'OjÏž=úòË/]†ç8 ììl+##C}ô‘¦Nªø¹‘‘‘:t¨ž{î9U©R¥„¿%»Xyr^êT­ZÕåÎ{~ø¡ËçfÏžmÔ®]Û8xð a†1qâDç¶ÁÁÁFvv¶ñý÷ßñññƾ}û ¼{ÝôéÓ IƤI“ò½öä“O’ŒcÆ ¦ï”—ûY’ŒS§N™ÞOÞ;çþ¬Y³Æxå•WŒo¼±Ð»ÓFEEýë_3gÎØý›wµ uùpüøñ|Û¬X±Â¨^½ºñõ×_ëÖ­sÙþðáÆaÆ©S§ŒéÓ§›ª%Шÿþ.ÿ²j×®mìܹӨ²e‹Ñ§O£qãÆÆ‰'œo2dˆs[‡Ãaüûßÿ6bcc1cÆø§N2¢££ IÆþýûó½þÓO?9÷W­Z5#55ÕÔzýõ×ûã ‚dffAAA…†ŒkÊ•+g<ÿüóÆÙ³gí.Àux3|Xqr^Z;Öe¼úСCjÞ¼¹Úµk§*UªhëÖ­.ã\qqqÎdžahРA1b„ÆW`ÏÊûï¿ïì¯[·n¾×kÖ¬©ZµjI’Nž<©ÿûßîÇ]6ìï QåÊ•¯»]ùòå5fÌ=zT“&M*ðNµ×µ—ÖNœ8Q»víÒÖ­[Õ·o_M›6M7nT:u$¹N^ÏÉÉÑìÙ³ÕªU+õéÓG 6´´v_T«V-íܹS½{÷VµjÕ¯!C†hß¾}úç?ÿ™ïÞ"ƒV·nÝÔ¢E =ñÄÚ»w¯ÆWèXØêÕ«%]½AZhhhÛÔ«WÏùxéÒ¥¦¾PÞ±| SÔ%s±±±z饗tôèQ?Þ%p(=Júä¼4 ‘¤øøx}üñÇn½á–[nÉwùQQ~úé'I*r݃J•*9罦º8òö|Â:(÷ß¾ {óÍ7käÈ‘8p Û Ÿ\¹'ç/¼ð‚¶lÙ¢ÈÈHuìØQ#FŒPýúõóm?xð`}óÍ7:wîœ7n¬¡C‡²´z! ¿ç·—äöDä.O[¼k#˜½Œ’a¸cÀ€úá‡ôÎ;ï¨E‹zôÑGÕ«W/…„”øÿüHIžœ—f%þ—ö–[nÑ… ”••¥³gϺôräÊ{éníÚµM}Ã.pGPP&Ož¬É“'Û] ”:%~tnÕª•óñ·ß~[à6iiiÎÇ={ö4õyô|àÛJüè]M›6UjjªÚ·o¯™3gj÷îÝúüóÏõÈ#(**JkÖ¬Q³fÍLá¸:‰{ÆŒ2dˆK;k ð–Ë—/¯Í›7kÒ¤IŠŠŠÒСCu×]wiüøñºóÎ;õí·ßªE‹^ù¬Üðáp8%dúôé…ÞáÕIIIv—à“‡î»ï>—¶ëݬ`Ùu…zþùçõüóÏ—èçäÞMàQrV¯^­5mÚÔîRd†Úµk§½{÷òß¼y{ÃÃÃ7‚;Ü_ëÜ?¶ˆJΡC‡tâÄ »Ë$?~\û÷ï×W_}åµ}®X±B;wöÚþì´gÏçã-Z¹ØX%àŽÐ¹·S'|ü¦Gúë_ÿªcÇŽye'Nœð™ðqðàAIÒÞ½{MïkåÊ•jÖ¬™ºwïîSÃJfìܹÓùøî»ï¶±øMÀ¡vÉoÛ¶mzõÕWuÛm·©oß¾…®·âެ¬,]¹rEçÏŸ÷b…Å÷믿J’~øá‡bïcÕªUjÞ¼¹ºuë¦Ý»w{«4Û†áò}|E@¡³³³Ë¸s_—ßäÞU8++K}ô‘6lXì³ûÜË6ó®§b§sçÎIúm­O¬_¿^-Z´Ð}÷ݧ]»vy»4ÛýðÃÎɸ111>1G¤ y'×v—ÝÒæÊ•+ÊÌÌti3 C+V¬P³fÍÔ£GÎösÃ]îð–Ýr{`Μ9ãö{Ö¬Y£–-[ªsçÎ.ÃæË/¿t>îС€ÏØðÁÚ«òÞëæZ†ahùòåjÖ¬™´}ûöëîÏWÇ;—Û®]»V­ZµÒ½÷Þ«;v”ti¶[»v­ó1C.|IÀ†æ|xfõêÕjÕª•:wî¬Í›7º]nøð•a—Üð‘;´TuëÖ©uëÖêÚµ«[+deeiÆ Î焾$ ŽÐ„óÖ¯_¯víÚ©M›6Þ:7t佱Ξ=+é·‰ÆymÙ²E;vT—.]´mÛ6«K³ÕŽ;œ½A5jÔ0}·hð¦€:B>\egg{õÏ­[·ªGjݺµV®\)Ã0$ý6¼‘íµ:ÍHLL”äÚó±~ýzµiÓFwÝu—6nÜhWi¶Z·nóq§Nl¬ò³l…So0 C :xð .^¼¨äääB‚gΜ¹î¤ÓY³féOúS TZ´¤¤$9rD'NœPbb¢ËOZZš._¾¬ôôtedd(55UÙÙÙ.×¼ß;33Ó%t¥¤¤xµWbÛ¶mêÖ­›êÖ­«‘#G:{|%|䃲víZMœ8Q[¶l1½ß¤¤$¯NZŽŠŠRhh¨¤«ó‘¢££­¨¨(U¨PA¿ûÝïÔ¯_?Ý~ûí^ù<æ{ðe#÷”ÖOôïß_óçÏ7½Ÿ:uêè»ï¾³tbêöíÛ5hÐ }÷Ýw–}fI©R¥J±.oõ¶[n¹Eÿûßÿì.Ã+jÕª¥Ã‡›ÞÏùóçU¹reåääÈápè×_U•*U¼P!àû’’’+éê%æ¹½£ð-~Õó!IC† ñJø;v¬åWÄ´lÙRß~û­’““]z>’’’œ=©©©ÎÞŒ¬¬,¥¤¤(''G/^tîÇÊž\õêÕÓÓO?­³gÏj̘1>Óó‘÷2â÷Þ{Oééézýõ×õÓO?ÙX•«2eÊ(22Òù<44TQQQЉ‰Qdd¤*T¨ úõë«oß¾^ù¼Ï>ûL999’®ÞÅ–àÀ×ø]øhÛ¶­4h o¾ù¦ØûhРz÷îíŪ<­;Äoò•­_~ùE·Þzk±÷Ѻuk=ÿüóº÷Þ{åp8´téRç¾}AÞðÑ®];ÕªUKC† Ñ¢E‹4~üøb÷2ùóC.|_ÎÊüË_þbêýãÇ/RƒƒƒS¬÷¶k×N6lЖ-[”àœÿP©R%I’¯ŒÖedd8ÇÅÅIºú½{÷î­ýû÷ëÃ?TÍš5í*Ïr†a¸L6%|ðE~yîß¿¿ªW¯^¬÷6iÒD={öôrE£uëÖZ¿~½6mÚ¤Ž;æ{=""†ª —7|”+WÎåµ   =òÈ#:xð Þ}÷]U«VÍêò,÷í·ßêäÉ“’®÷Üu×]6Wùùeø ÕO|X¯¼òŠ*T¨`e‰–ÊÛëѪU+—¹&à+ü2|HÒСCåÑ{rW¹,M }Íáp8ïí²jÕ*µlÙÒÔþì;ü“;»½(eË–ÕsÏ=§Ÿ~úIÏ?ÿ¼Ê–-[ÒåY.oøèܹ³•@áü6|ÄÆÆê±Çóè=&L(¡j|WDDD¾‡Ã¡nݺi×®]Zºt©Gw;õµð‘; ”;Åå˗פI“tôèQ=õÔS ñ»y׺råŠËÍä|•߆I9r¤Û—ËvêÔI:t(áŠ|Stt´$)$$D}ûöÕþýûµ|ùòbÝbÝ׆]r‡Š3”R©R%M›6Mß~û­|ðA¿ŽÛ¼y³sÑµØØX5nÜØæŠ `~>n½õV=ðÀnm[{=rµjÕJýë_uäÈÍŸ?ßÔ*š¾>n¸áIWè*®:uêhÑ¢EÚ¶m›Ú¶më­Ò,—÷ÛŽ;rgg>˯Ç$=óÌ3×Ýæ¾ûîsk>C Z¶l™¦Nª›nºÉô¾|­w Aƒ’¼3ÄТE }ñÅZ±b…×–9·RÞù\åÀ—ùý`w«V­Ô¢E íØ±£ÀׇÆoqU°Ê3Ï<£Ë—/«G^Ûç}÷ݧ„„¯íÏ §NrYP­E‹6VEóûž©èÞ|±ïÖ¨Q#-\¸°ÐËl‹Ë×zx®gëÖ­ÎÇááájÔ¨‘$éôéÓzóÍ7í* áãÁÔÍ7ßœ¯=((HãÆ³¡"ÀZÛ¶ms>ŽW™2e´e˵nÝš!>' ÂGHHˆžzê©|í}ûöUýúõm¨°VÞž‹/ê±ÇSûöíõç?ÿY 6´±2ÈÏaøÊM:LJNNÖM7ݤäädIWÉose%÷vÕþ|ãµ@“••¥ÈÈH—¥æCCC5aÂ5ÊÆÊëåþ’üû‘. z>¤«kY 8ÐùüÑG%x T q^í­?þñÚ³gÁ€ÏòÛ«]222”ššªK—.éܹs:sæŒs•Ë2eÊh̘16WØ ÃPbb¢¢¢¢¼>ÙÓ«W¯Vbb¢úõëg[ ¾`ÅŠJMMå^.ü‚eÃ.ééé:zô¨~þùg;wN‰‰‰JLLÔ… tåÊ]¼xQ999ùþ™’’¢¬¬,¥¦¦*##CiiiÎUá;¢££¬˜˜)&&FaaaŠŽŽVtt´*V¬¨jÕª©FªW¯ž~ÿûß› -ÉÉÉ>|¸æÎ«V­Z¹ÌyPz1ìâJ¼ç#%%EãÇ׆ tîÜ9¥¤¤())©¤?Ëkãîÿè+VÔ† Š5rÇŽêß¿¿Ž9"IÎüƒmN Ãp†ÜÖµÿLJJRÞòr{AreffêÒ¥K.ûug›k]ûž‚¤§§ëòåË×ûZn}^a²²²”’’R¬÷fgg;€§r{šÌ(¨ç#<<\åË—WùòåU¡BÝxãª^½ºêׯ¯ x|C·œœ½üòË7nœË¯àà`¥§§³œ8z>ü„ms>‡óÄÛ¡Ã7äþ]¾|yýüóÏ–Íù8þ¼ú÷ïïrÿ’\ÙÙÙ:wT©RâuÌ ˜«]`­ÜðhEðسgî¼ó΃G®S§N•xï |À§}øá‡jÓ¦~þùgg[XX˜^{í5—í˜GþƒðŸ”––¦AƒéÑGu¹º©jÕªÚ´i“{ì1—íSSS­.PL~»Î×±cÇÔ«W/íÞ½Û¥½Q£FZ²d‰jÔ¨‘¯§ƒðþƒžø”U«V©Q£Fù‚Gß¾}µuëVÕ¨Q£À÷¹s%À7>à ÃÐÔ©SÕ½{w]¸pÁÙ¬)S¦hþüùŠˆˆ(ôýô|€ÿ`ض+ì2Ú¸¸8}ôÑGÎû–…ðþƒðä.äå­½öíÛ§ûï¿_Gui¯_¿¾–,Y¢Zµj¹µÂø†]à‘Üu=ÂÂÂLïkÅŠjÛ¶m¾à‘ ­[·º<$¹ÜNàÛðH™2e\þY¹ó;zöìé²$¼ÃáШQ£´|ùr•/_Þ£}fff»€µvG‚‚‚®²eËëý©©©zôÑGµhÑ"—öÈÈH}ðÁêÕ«W±öKÏøÂ}º 䵚˜óþƒð¹.\¸ Þ½{kÆ .í+VÔ‚ Ô¾}{¯Ö”••åÕýJá^÷ý÷ß«[·n:räˆK{“&Mô駟ꦛnòúgÒóþƒ9ðª7ªuëÖù‚G¿~ýôå—_–Hð˜óþ„ð¯ùä“O” ÄÄDg›ÃáÐK/½¤¹sçyc8³²³³KlßïbØ^1mÚ4=óÌ32 ÃÙV®\9Í™3G={ö,ñÏ'|€ÿ ç¦ääähÈ!9r¤Kð¨S§ŽvïÞmIð@i““£† ÊápúëÜ>)))ßëª\¹²j×®­¡C‡ÚømJ7Š-;;[ÔŒ3\Ú»víª;v¨N:–Ö °éÅ_4µ´´4={V‡Ö 7Üà¥Êà)Š%;;[ýúõÓ|àl˽1ÜÊ•+ci=\j ”=ô6lhz?aaa6l˜*Bq>P,Æ Ó'Ÿ|â|¡yóæiÊ”) ²þ׊ž tp8¦{?$©ÿþªR¥Š*Bq>à±_|Q3gÎti[·núöíkSE„ 4yðÁõûßÿ¾ØïÖèÑ£½X}ïÅŠà)Â<’÷Š–¼BBì½j›ð”.÷ß¿î¸ãßD¯‡ |À+ì˜ç‘á(]Š;÷£W¯^ºýöÛK "x‚ð¯¶õó @ésÿý÷«iÓ¦noïp8ô·¿ý­+‚»ð »{>¸Ô(}‡žþy··¿ÿþû½r™.Ì#|À+èù`w…§A%‹ð¯p8¶~>á(ÜJéÙ³§GC4(Y„x=ìr½I¤f/Í…÷>`ZPP=l¤Q£Fúú€¥ÀR\íÓr'àz>€¥ÀR„`)°áXŠð,Eø–"|K>€¥ÀR„`)°áXŠð,Eø–"|K>€¥ÀR„`)°áXŠð,Eø–"|K>€¥ÀR„`)°áXŠð,Eø–"|K>€¥ÀR„`)°áXŠð,Eø–"|K>€¥ÀR„`)°áXŠð,Eø–"|K>€¥ÀR„`)°áXŠð,Eø–"|K>€¥ÀR„`)°áXŠð,Eø–"|K>€¥ÀR„`)°áXŠð,Eø–"|K>€¥ÀR„`)°áXŠð,Eø–"|K>€¥ÀR„`)°áXŠð,Eø–"|K>€¥ÀR„`)°áXŠð,Eø–"|K>€¥ÀR„`)°áXŠð,Eø–"|K>€¥ÀR„`)°áXŠð,õÿiÇMÄö=(IEND®B`‚fluids-1.0.22/docs/fittings/contraction_sharp.png0000644000175000017500000010411114302004506021405 0ustar nileshnilesh‰PNG  IHDRûrŒšBsBIT|dˆ IDATxœìÝy|SUÞð'M÷´MWZèB[¡ÐÒÒRv­€l:"ƒŠ8#£¸€¯Ž€;¸á2Ãè«£¢‚l®ˆ¢,Ž‚ Œ€ ÒB)‚m‘ºC“néšóþÁ›LÓfm³4½Ï÷óɇææÞsiÊMžœsÏ• !ˆˆˆ$¨®®³gÏÆÞ½{ñàƒbéÒ¥®.‰ˆˆÈád DD$Uo¼ñ,XËå(,,D\\œ‹«"""r,W@DDä*?þø£þç¶¶6ìØ±Ã…Õ9C IVII‰Áý£Gº¨"""ça$""ɪªª2¸_\\ì¢Jˆˆˆœ‡!ˆˆ$«ººÚà~ii©‹*!""r†@""’¬úúzƒû .ª„ˆˆÈy‰ˆH²ÚÚÚ î755¹¨"""ça$""Éê]T ‘ó0‘d±'ˆˆ¤ˆ!ˆˆ$‹!ˆˆ¤ˆ!ˆˆ$I!„Á2%"")`$É“ÉdÉd®.ƒˆ477;m_{ ¥¥­­­ß·V«e¯#Q|?&r†@ê’‰'êÖ“&Mru9dßPÉÝŒ9S§NÅš5kPYYéÐ} €ã.qñâElܸýë_Ñ·o_üÏÿüCöCÒ¤;ÞËd2xxx 111˜:u*^~ùeTUU¹ºÄ^‹ïµäŽd¢ãX" Ο?¸¸8ôë×PRR‚¢¢"DGG»¸²®Ñ¸Ýé¿‚µ5»ãs#i J¥ÈårŒ77Þx#fΜ‰¨¨(»î«¡¡ …¢Óò²²2DFFÚe¥¥¥øì³Ï°yófìÙ³Ç x¦¥¥áرcvÙ‘¥ˆ÷Þ{3gÎtRE¶ë©ïY–êê©u™Ãž@²ÙG}­V‹[n¹³gφV«ÅÇìê²Ècç<õdFÿs[[vïÞûî»ÑÑÑÈÊÊ‹/¾ˆ‚‚»ìËTO`ûºâܹsX³f ®»î:ÄÅÅá¾ûîÃîÝ»;í¯¬¬¬[û!2FwÜollÄ™3gðñÇ#++ µµµ¸é¦›°iÓ&W—Øëð½–Ü{Éfééé8vìŽ= !233‘žžŽììlW—Ö%îø ž;ÖLd «z¸ÇŽ‹n¸7Üpú÷ïߥ}©T*„„„tZ~âÄ ¤¤¤ØÔÖï¿ÿŽ-[¶`óæÍ8xð Uÿ7=<> .Ä… :­«Õjñæ›obذaðóóCpp0®½öZ|ùå—Ýj×[ÚÑ£§ÕjñöÛo#33>>> Üpà 2dÂÃÃáéé‰L˜0[¶l1ÚVÇv;žhìœ@!Þ~ûmŒ=À˜1cðî»ï}~º6ðüóÏcРAðññABB^}õU›~WDVD6xì±ÇñüóÏë—=÷Üs€X¼x±Ùm[[[ÅG}$®½öZ)¼¼¼DHHˆ¸êª«ÄêÕ«E}}}·ÖBˆ––±nÝ:1iÒ$&¼¼¼Ddd¤¸þúëÅ÷ßo´.ÂÜ…î¶™ŸŸ/î¾ûn-är¹P*•¿»éÓ§‹ÔÔT¦<33S<ñÄâÂ… &Û6v³å¹555‰Õ«W럗§§§“&Mk×®ÍÍÍŸÛ/¿ü"n¿ýv+¼½½Edd¤¸õÖ[Å™3gLþ>‰Ì1÷÷mÍ-33S,[¶Lœ:uÊâ¾ÊË˶±cÇ“ÛäææŠgŸ}V :´Ûµò-˜ìÉš¿©mÛ¶ âòË/7Xþ /˜üMJJ*•Ê`ý[n¹Åª¿i[Û5õºÚΤI“ŒÖgîÿä;ï¼c´-sÏÕXÝsçÎ5¹ÝÝwßÝé9êþøãNÛußÈjZ­VÄÅÅ ¢  @¿þøc¼ð hjjÂÞ½{qÅWèë35ÖßmÊd2ÜrË-¸ï¾ûôÃfÚ‹ÇÌ™3qÝu×!==AAA¨­­E^^žþy|ûí·øóŸÿŒ 6l×ÙA›››1zôhdggcÈ!xúé§1~üx„……áÂ… ؽ{7ž{î9œÜ`ýââbÄÅÅ!99yyy€©S§bçÎx饗ððÛܗ­íšzÝi§¢¢&kl¯ºº¡¡¡ðòòêt¬´uvЫ¯¾;vìÀ+¯¼‚xÀ`Ý—_~<ò®¾új|óÍ7Ú¨­­5ø»/((À€jóZ"³\>É Ýu×]€xýõ×;=¶|ùr@Ì›7¯Óco¿ý¶  ÔiȆNUU•¸öÚk»´¾B¼÷Þ{€˜1c†hkk3ºÍ믿.ˆÙ³g,‡‰oøìѦ¹ae–¨Õj}¯ZG¦j¶f½U«V "--MÔÕÕÝ®¶¶V 2DkÖ¬1Úæ?þhtÛ¯¾úJñññë³F^^ž˜ùD,\¸PL:U¤¥¥‰¨¨(áëë+™LÖikÛ7¶ÞUW]%ˆÍ›7›ÝV7œeÒ¤I6í[wž•———Åú¬Áê¼9êæíííòx“Îíµ×^³Ë1ÑÝ~ÌÑ}I7aÂý2OOO«êבËå€hll4»/[Û5õìÕŽNNNŽÅ`Ù‘¥ß­©ß‘F£é´®F£„§§§Õû°æµ%²ÿ¢È*[¶lÄÔ©SM®£ Mǹ‡‡‡ Fã1¶®/„V¿{{{lkêàêˆ6;Z·n ±éÍÍ–ö­§ëQ«¬¬4»­.ÌYûm¥Nss³]ß°T*•X¶l™¸é¦›Dzzºç‡wÞº|‹ˆˆóæÍ;vì_|ñ…Ñu²³³ÅO]o¾ù¦~™î=¡ººÚªýèÞ³~ÿýw³ëÙÚ®æß³ºÛŽÎ•W^)ˆ+®¸B|òÉ'âøñ㢬¬L455™ÜÎÒï¶ã㺞ÀÂÂÂNëêÎ}¶å½Õš×–ÈVž ²‚;vtšÙغúÓŸô÷U* 44Ôª}Ùº>pi,¿µ¬=/Êm¶÷É'Ÿà®»îŒ5 7ÝtÒÒÒЯ_?„‡‡#$$¤Ó9„ö ;-88Øìzºß¿­ç½µ?ДJ%–,YÒi¹F£AMMþ\·úúzýc­­­¨­­Õß7vþ^Ç×W­V[=eMMM×wëX5\}`WÏ]ìîö¶^æÁQQQ˜9s&n¼ñFŒ7r¹ðí·ß]?==éééøûßÿŽììl|úé§Ø´iòóóí^[bb¢ÍÛtõ\9{mïŠsáéiýG¹\®¿€%P*•Ë:^?²ãy†ëQ(úç¥T*áëëku­Îò¿ÿû¿øâ‹/…¿üå/úå£FÂ×_+Và‰'ž°ØNjj*öîÝ‹-[¶àÁ4¹ž­í:º#G޶mÛfô:¡ÆxxxèßG:þ­3|øpìܹ›6m£>jð˜î2Ïo$r:W§Pêùª««Îpiêæããcp.Ÿî±ŠŠ «ögëúí·éÊ,x0ñ ›#Úloøðá€xòÉ'mnÇšöM­§ûVÕRO«îÜ[{m©¨#k3–n111bÞ¼yâ‹/¾---F÷µcÇ£Ûš’››+–.]*’’’ìV'‘½tü›jll¿ÿþ»Ø´i“þ4 ¹\.¶mÛf°Ý×_-€K§Üÿý";;[ÔÔÔˆ††qâÄ ±bÅ 1|øpýú«W¯À¥™/ß~ûmýì _|ñ…7n\—Û5öìÙŽNbb¢ –/_.jjj„F£û÷ï7¸ìEGýúõÄ‚ DMMÅßý§Ÿ~*±råJýì «V­ÒϺeË«kæñ‚QdÑÚµkqã7Z\÷úë¯ĺuëôËtC/>ýôS«ögëúB1nÜ8@|ùå—Vo£cêàêˆ6ÛÓ„njòsíè–›š°ÆÜö&LÄÆÍnûñÇ bâĉVÕdë:DÆt'PÅÆÆŠ ˆ½{÷Zü¿!„ß}÷]—ƒ™.vwÈ(‘½Xú[S*• ÎóÏ?/d2™U«­­­úPiéoÚ–vÛ?‡îÔg®!„x饗Œnßþ<ÁŽ~øa³û4¶Ýœ9sLÖ:wîÜNû`$gã_Y¤»¥‰D„øïõƒÚŸt®›Ø#%%Åd¯Ú… ÄŒ3º´¾B¼ù書t}Ÿªª*“õ•——‹éÓ§,3upuD›í "??ßèã?ÿü³ÉvÌnk®Ž•+W Àüì«*•J 4H«V­²Ø¦5û%²†­!*11Q<òÈ#âàÁƒ&¯SjÊîÝ»íÌ~þùgñÈ#ˆ„„†@r™Ž[¾¾¾¢oß¾b„ âŸÿü§Ù÷1!„Ø¿¿¸õÖ[Eÿþý…ðññƒ÷ÝwŸØ³gÁºMMMâÿø‡HII>>>B©TŠ?þñâ믿îV»æþ_Ø«¶¶6ñÊ+¯ˆ___1`Àñð˪ª*“Ûéžï Aƒ„¯¯¯P*•bÔ¨Qf÷§ÕjÅš5kĈ#„¿¿¿ð÷÷#GŽëÖ­3z¬b$gã_™U\\,d2™ 4:ËUGõõõB¡P™L¦¿XxCCƒþÛò!C†ˆÍ›7‹ .F#Ž?.žyæýd0]Y_ˆKhÝÅÏcccÅŠ+ÄñãÇEMM¨®®û÷ï .Ô‡§öÌôíÝf{³fÍDVV–8x𠨯¯jµZüðÃâ–[n1øÖ³£Ñ£G bÖ¬YâÂ… &÷alûÆÆF‘––&ˆŠ 6ˆòòrÑÒÒ"ÊÊÊĆ ô¿ÿŒŒŒN³½2’#yxxX NIIIbÉ’%âÈ‘#ÝÚמ={ìÌŽ9"–,YbU¡‡‡G·öEDDÔUü”Ff½ð €¸õÖ[­ÞæÏþ³ ^|ñEý²üü|‘œœlöQhhh—×âÒå²²²,~ð²å7G´©SXXhršj™L&î¾ûn“í¼ûî»V}x5µüìÙ³bèСfŸSFF†>ÈÛúÜ©«üüüŒþ=&&&ê‡zÚ˾}ûìÛÓ MII1º…Ba·}Ù‚ŸÒÈ,]ÑöíÛ­ÞfÛ¶m¸t1òö4x뭷ĤI“DDD„ðôôÁÁÁb„ âÍ7ßì4ôÓÖõ…¸4Ìã³Ï>³fÍñññÂÏÏOx{{‹¸¸81kÖ,±uëVÑÜÜl°¥~ŽhS§¨¨HÌ™3G„‡‡ ¹\.úöí+n½õVqàÀ‹í¬X±B 8PxzzvšbMâ­·ÞW]u• žžž",,L\uÕUbÕªUzmyn ÔUº ™tÇgŸ}Öìµ:»ãÀ íåææŠgŸ}VL5ö味ȄDDD=ÀwÞ‰Ë.» 7Þx#’’’º¯Ÿþ£Gî´ÜÑo‹§N–-[PXXˆuëÖ9t_DDDÆ0‘$>|#GŽì´œo‹DDÔÛyX^…ˆˆ¨÷Ñ]4žˆˆHj‰ˆH’<<øHDDÒÄw@""’$ö‘T1‘$±'ˆˆ¤Šï€DD$I DD$U|$""IâpP""’*†@""’$ö‘Tñˆˆ$‰=DD$U DD$Iì $""©â; I{‰ˆHª‰ˆH’ØHDDRÅw@""’$†@""’*¾IC I’L&su DDD.ÁHDDDDD$! DD$Iì $""©b$"""""’†@""’$ö‘T1IC ‘„0‘$q8(IC ‘„0‘$±'ˆˆ¤Š!ˆˆˆˆˆHB‰ˆH’ØHDDRÅHDDDDD$! DD$Iì $""©b$"""""’†@""’$ö‘T1IC ‘„0‘$q8(IC ‘„0‘$±'ˆˆ¤Š!ˆˆˆˆˆHB‰ˆH’ØHDDRÅHDDDDD$! DD$Iì $""©b$"""""’†@"""""" a$""IâpP""’*†@"""""" a$""IbO IC ‘„0‘$±'ˆˆ¤Š!ˆˆˆˆˆHB‰ˆH’ØHDDRÅHDDDDD$! DDDDDDÂHDD’Äá DD$U DDDDDDÂHDD’Äž@""’*†@"""""" ñ,,,tu DDdƒÄÄDW—Ð+°'ˆˆ¤J@¸º""²žg35%;õ~B»‡R} ´tÓÉ>}ú ""¢S¯)‘/‘CDDD]Ñ«Ï ìªo¾ùÓ¦M³jÝ·Þz  Ð÷ u¼„µç×™›­´±±Ñiþ:Áíªö—ܰå1sáßÜcæê6õXûåíkjÿ`ØK©R© „ЯãŒ!ÈèÓ§>FDD 22R¿,66QQQˆ‰‰a`ì¥L8bÄ:tÈÉÕô.<'ˆˆ¤¨W_"¢«–.]jõºÍÍ͘šššÌn/—Ë1xð` >\ËÈÈ`0´3S!°ÿþøý÷ß[L/ÃHDDRÄøÿ¾úê+\{íµ]Þ~üøñøÏþc¿‚ˆ\¬­­ gΜAnn.Nž<‰'N //'OžìtÇötÁpÔ¨QÈÊÊÂW\Aƒ9±òÞÇTŒŽŽÆ¹sçœ\MïÂHDDRÄøÿ®¸â ìß¿¿[müôÓO=z´*"ê™táðĉá0//Ïd8ŒˆˆÀå—_ެ¬,deeaĈðôääÄÖ2###QVVæäjz†@""’"†@ÿùÏpÕUWu»»ï¾kÖ¬±CEDî§¥¥¹¹¹8|ø0:„Ç#77×è9‡J¥&LÀ”)S0yòdöZ`*†……¡ªªÊÉÕô. DD$E n¾ùf|úé§ÝngìØ±ÝîM$êM4 ~þùgìÝ»ûöíÃþýûQ[[Ûi½¸¸8L:3fÌÀäÉ“áããã‚j{.S!P©TB¥R9¹šÞ…!ˆˆ¤ˆ!ÀC=„£GB¥RA­VÆãQ÷ðODDRÄž@"";P(xüñÇgÏžÅ[o½å⊈ˆˆˆŒcO ü–˜ˆ¬ÕÔÔ„¤¤$!"" ìv»>>>hnn6úGÝÃc<I{‰ˆìÄÇÇO<ñ ²²R1ùîb(!"""{bO ü–˜ˆlÑÒÒ‚Áƒ£°°ÁÁÁ8sæ ‚ƒƒ»Õ&{‡Çx""’"öÙ‘——ž|òI€J¥²[o ‘½°'Ð~KLD¶jkkÃ!CpêÔ)(•Jœ9s!!!]n=ŽÃc<I{‰ˆìL.—ë{Õj5–/_Þ­öŒ"""¢®bO ü–˜ˆº¢­­ iii8yò$‚‚‚pæÌ„††v©-___455}ŒÇ£îá1žˆˆ¤ˆ=DD —ËñÌ3Ïjjjð¯ý«Ëm±'ˆˆˆì‰=ð[b"ê*!† †œœ °°6·£P(ÐÐÐ`rÔu<Æ‘±'ˆÈAd2ž~úi@]]^yå•.µãååeϲˆˆˆHâØh¿%&¢îB`ôèÑ8tè  ѧO›Úˆˆˆ@UU•Éö©ëxŒ'"")bO ‘Éd2<õÔS€úúú.èééiﲈˆˆHÂØh¿%&"{3f <Ø¥ÞÀ¸¸8}ŒÇ£îá1žˆˆ¤ˆ=DDN ›)´¾¾/½ô’MÛòœ@"""²'öZÀo‰‰È^&L˜€~øþþþ(,,Ddd¤UÛ <§N2úGÖQ«Õ¨««ët½ÅË.»¬Óº÷}}}€   ‡ÖHDDä, 0‘½:t£G†<ð€Õ³…¦¥¥!77×èc<Y6eÊìÚµ«ÛíÌœ9[¶l±CEDDD®Åá DDN2räHÌž=°jÕ*”––Zµ‡ƒvÏ/¿üb—vòòòìÒ‘«19ѲeËàëë F£¿† %œ´{âââìÒÎÀíÒ‘«19Q||<î¿ÿ~À»ï¾‹œœ‹Û°'°{Œ÷׃¶K;DDD®ÆHDäd?þ8ÂÂÂÐÖÖ†xÀâúì ìžääd»´“‘‘a—vˆˆˆ\!ˆÈÉ‚ƒƒ±lÙ2ÀîÝ»ñù矛]ß×××eõZ)))vi'==Ý.í¹¿^&"r»îº ï¿ÿ>öïßGyÓ¦Mƒ···ÑuÃÂÂL¶SXXè¨{ …BÑí6¼¼¼àååÅß7õ DD.àááÕ«W#33¿ýöÞ|óM<øàƒF× 7ÙŽ½Îw#óZZZ0hÐ W—ADDdJDä"©©©úà÷ì³ÏâìÙ³F×‹ŠŠrfYDDDÔË1¹ÐÓO?„„ÔÔÔàÎ;ï4zñ÷áÇ» 2"""ê­‰ˆ\Èßßï½÷är9¾ûî;,_¾¼Ó:W^y%&L˜€   THDDD½ C ‘‹7K–,<úè£Ø·oŸÁãþþþؽ{7T*ž}öYW”HDDD½ˆL{Dz2™¬Ó2þʈÈÞZ[[qå•Wâ§Ÿ~Bß¾}qàÀôïß¿Óz555P*•.¨ˆˆˆz öõžžžØ°a‚‚‚PZZŠ)S¦ ¼¼¼ÓzAAA6l˜ *$""¢Þ‚=°'ˆœiË–-¸é¦› „@FFvïÞàà`ƒuÚÚÚ““ƒììl”——£²²õõõhhh@SS“~ššý6uuuhiipéruuuÎ{R=DMM ªªªlÞ®oß¾ðóós@EDÒ£ÑhÐØØèê2,jmmEmm­«Ë ^F¡P\Øßß>>>.©…!І@"r¶eË–á‰'ždeeáÛo¿…¿¿¿‹«rÛ¶mÃôéÓmÞîĉHIIq@EDDÝW]]íêLjÿå¤5jkkÑÚÚjõú¶<÷Ž_ŽcªÞöûÑ}A ÑhPWW‡wÞyÇ`Ý>}úàŸÿü'† †°°0Â××·Ç}™ÈhC ¹Âm·Ý†>øð‡?üŸ}ö|}}]\•{;þ}¿þú+öïß#GŽ]ÿ¹çžÃ“O>Ù£ƒ C  Dä*.\À¤I“““àÒ¥$¶oߎÀÀ@Wæ¾®¹æ|ýõ×V¯¿páB¼öÚk¬ˆˆ¨w°æ|ÏÆÆFh4³ë455¡¡¡ÁêíëëëÑÜÜl°¬¦¦mmmjB@¥R™]V[[ µZ µZ •JÕåá¶©©©˜6mˆ¾}û"** áááP*•Ëå.¿ö¯§K÷NDD&………a×®]˜4iŽ;†={ö`êÔ©øúë¯;MCÖÉÌÌ´)>ÜÕ‘­´Z-Ôj5à ¯€Îçs577£¾¾^ߨ9a*•Êè—ûÆ‚E{Ûî¨}°0ÅÒùo–“5ç¸YsŽ]Çߣ1–~ÔYnn.rssÍ®ãéé‰ÀÀ@xyy! @?qLHHüüüލ¨(ôéÓ‰‰‰2díÒÃÈž@ ØHD®VYY‰‰'êßL222ðÕW_¡oß¾.®Ìýlݺ7ÜpƒÕësR"ë©T*\¼xuuuú•šš444 ¡¡*• Ðh4P©Tú`¡ bº×~fN]Ž5=HD½]pp0-Z„¥K—v»-†@ ‰¨'¨¨¨ÀĉqâÄ @||<¾ùæ 4ÈÅ•¹—3gÎ 11Ѫu Ôj5'…!Iª­­ÅùóçQQQ’’\¸p/^ÄÅ‹ ~n¿L«Õººl“¼½½¡P(ô÷ýüü &ÛêøxÇáz2™¬Ó ¥R ÿ^r; ^^^&÷áããcp^·®ÈÜ>̱õò÷gŽÏÑZ‡cšc¬×´ãö{"ÛmÿsûõÔj5´Z­AïqûÜö=Ǻýµ¯Å—Sòðð€R©„B¡€¿¿????( (•JøùùÁßßÁÁÁ@¿~ý‰èèhÄÇÇÛ­†@ ‰¨§¸xñ"f̘¡Ÿ¨$,, Û·oǘ1c\\™ûB <</^´¸îW\}ûö9¡*"çÑh48{ö,Š‹‹QRR‚óçÏ£¼¼%%%(++CYYJJJLž“Õ]J¥¾¾¾P(úТaÆ–é†ÈµŸf?882™Ì XéKû@Ä/r¨ÛÚŸï¸uëVÜu×]VoûÞ{ïaÔ¨Qèׯ”J¥£J´Ï $"r¡¡¡Ø±cn»í6|úé§ú‰c>úè#\ýõ®.Ï-Èd2 6 ß}÷Åuy> ¹›¶¶6”––êCžîÖþ~UUU·ö¡;O)<<}úôAhh(”J%”J%BBB¥R©ÿ·ýÏ!!!vz¦DÎåçç§ÿbíÚµ6m«Ñhœœìˆ²º…!ˆÈøúúâã?FLL ^yå444`æÌ™øûßÿŽÅ‹÷èé¨{ŠáÇ3’Ûª¨¨À™3gŒÞŠŠŠ,NðaLdd$¢¢¢ƒ¨¨(DEE!,,Löt/<<Ü`È$‘Ôlß¾´i›×_óæÍëÒ°ZGâpP 8”ˆzª7ß|<ð€~æ·[n¹o¿ý¶þÛJ2nãÆ¸å–[,®—››‹!C†8¡"¢ÿjnnÖ_‹ÌXÐ37#eG>>>ˆGLL úõë§¿EGG£oß¾úÐçíííÀgDÔ;!0bÄüòË/6oû駟⦛nr@U]ÇhC õd?üðfÍš…ŠŠ Àˆ#ðÙgŸ!&&ÆÅ•õ\§OŸ¶8¡'…!G«ªªÂÉ“'qêÔ)ýí×_Å™3g,Né¯ãåå…¸¸8ÄÇÇëo úûöíËÑDvòÅ_tùÔ‹ôôt=z´Gýd´€!ˆzºââbÜpà 8tè <<ëׯÇþðWÖ3iµZ„„„˜½¾'…!{hmmEAA>ì>}Zÿ³5“—f€LJJÂÀõ·ÄÄDÄÇÇ#::š_T9ÉèÑ£ñóÏ?wyû­[·âOú“+ê†@ ‰È466âÞ{ïÅ»ï¾ àÒ±ë±ÇÃóÏ?OOžþÝÑøñã±gÏ“/X°Ë—/wbEäîJJJ››‹cÇŽáøñãÈÍÍE^^ž~FAs¼¼¼€¤¤$ýMøbccP=™³k×.L™2¥[m¤¥¥!;;»ÇœÈODD½€¯¯/ÞyçŒ3‹-‚F£Á /¼€ü~ø!âââ\]b’™™i6rR2¥¶¶'NœÀñãÇõaïØ±c¸pá‚Åmƒ‚‚œœŒÔÔT <)))HJJB||<¿¬!êÁV®\Ùí6Ž?ŽÍ›7cÖ¬Yv¨¨ûØh{‰ÈÝäææâæ›oF^^€K×ÎzõÕW1wî\WÖs|øá‡˜3gŽÉÇ9) µ¶¶â·ß~ÃñãÇqìØ1äææâøñã8sæŒÅÏJ¥)))2dˆ>ô%''³WÈM=ôÐC8zô(T*•þÂó:………ÖOLL4ÚNrr2¶oßîmÅhC ¹£††,\¸ëÖ­Ó/»öÚk±víZôíÛ×…•õ yyy&Cž¿¿?jjjx®•„ÔÕÕáØ±cÈÎÎÖßrss¡ÑhÌn§T*‘ššŠ””}èKIIAtt´“*'"Ws׬Àh»¾°DDÀ¥ÙÌæÏŸ²²2—.8ÿÒK/aîܹ=j–2gkkkƒR©4:Ýþ˜1cpàÀTEÎPZZŠììläääàèÑ£ÈÎÎF~~>´Z­Ém<==‘””„´´4 :iiiHKKC||¼ó '¢É]³C îúÂé¨T*<öØcX³f~ÙðáñråJŒ5Ê…•¹ÖW\ýû÷wZ~ï½÷bÅŠ.¨ˆì­¤¤GŽ1¸•––šÝ&$$)))>|¸¾g/33þþþNªšˆÜ‰»fž…LDÔËcõêÕ¸ú꫱páBœ;wGŽÁå—_Ž{ï½Ï>û,BBB\]¦Óeff .¨†º£¡¡Ç7Îyüøq³V÷ññAjjª¾goèС:t("""œX9‘k°'ÐwM÷DDÆÔÖÖbéÒ¥xã7ô¤ ÁâÅ‹qÿý÷ÃÏÏÏÅ:ϻヒ;ÓòÇsvЬ´´Tþ^NN²³³qúôi´µµ™Ü&44Æ Czz:222‘‘äädÎÈIDÝæ®Y!Ðw}a‰ˆÌÉÉÉÁ‚ .“¥K—bîܹ’øpœ““Ó©×ÏËË µµµðññqQU¤ÓÒÒ‚_ý999·ŠŠ ³Û%&&êƒ^FFÒÓÓy‰"rwÍ ¸ë KDd]»vá@nn®~Y||<-Z„»ï¾»WŸÕÚÚŠÀÀ@ƒ‹ygddàèÑ£.¬JšÔj5Ž?޼¼<œ8qGŽÁ/¿übvvNÝd-íÏÝ;v,ÂÃÃX9I»f†@ Üõ…%"²VKK Ö¬YƒeË–¡¤¤D¿<22 ,À½÷Þ‹àà`Vè8£F¡C‡ô÷ç΋wÞyÇ…õnZ­ùùùúaœÇŽCNNŠ‹‹Ín¦ïÕ:t(222’’///'UNDdœ»f†@ Üõ…%"²Ucc#Þ~ûm¼øâ‹Ê fÏžùóçcäÈ‘.¬Ðþî¹ç¬^½Zÿõ×_Çý÷ßïŠzÚÚZ;vÌàü½ÜÜ\³“µÈår 0@îž.ôÅÄÄ8±r""ë¹kV`´À]_X"¢®jnnÆûï¿×^{ yyy 6 óçÏÇÍ7ßÜ+z×®]‹yóæéïïÝ»YYY.¬ÈýÔÔÔàäÉ“ÈÍÍů¿þŠÜÜ\œÀ¶mÛ V« —ÉdÈÌÌÄ´iÓ0eÊŒ5 ¾¾¾.ªÖ:™™™8zô(®¿þzüûßÿvu9N¡V«QXXˆ‚‚è>yò¤Áä@¦ÄÆÆ"%%©©©ú“““Ù‹JD’ã®Y!Ðw}a‰ˆ­©© »víÂÖ­[ñùçŸãÂ… ÖñññÁÈ‘#1nÜ8\yå•=z4BBB\P­iwÝuÞ~ûm<þøãøÇ?þáêrìB’’’N!O÷sUU•Å6är9ú÷ï"99Ù ô)•J'< "¢žÏ]³C îúÂ9S[[:„;v`ÇŽ8xð Z[[®›€ÌÌL 6 ™™™HMMEll¬“+þ¯•+Wâ¾ûîÇ~ˆ¿üå/.«Ã())ÁùóçqîÜ9””” ¸¸Xò ®hNß¾}‘””„¤¤$ 8DRR.»ì2øøø8ø™¹7wÍ ¸ë KDäJjµûöíÃþýû±oß>>| &×À Aƒ””„ääd 8qqqˆGTT<<<VëÏ?ÿŒÑ£GãèÑ£ÈÈÈpØ~ÌimmÅÅ‹Q]]‹/¢ªª •••(//Gee%*++QUU…’’”––¢²²Ò¦öCCC1`À}Økø8„“ˆ¨ëÜ5+0Zà®/,QOÒÒÒ‚ììl=zÙÙÙú …›»fœŽ——bbb‹ØØX„‡‡£OŸ>ˆŠŠBDD„þÖ¥ËV444@¡P ººº[—½hkkƒJ¥Buuµ>Ìé~n3¶¼¶¶¶Ëû€¨¨(ôïßýû÷G\\ú÷ïøøxÄÇÇ£ÿþ zDDâ®Y!Ðw}a‰ˆz:­V‹3gÎàÔ©Søõ×_qêÔ)œ>}ùùù(--E[[›Ímzxx 44ÔäM©TÂßßÁÁÁÉdhllÄ®]»ðÁ ::YYYˆˆˆè4›emm-êëëÑÐЀêêjÔ××£¾¾uuuP«Õ¨¯¯·zø¥-d2úô飽‘‘‘AOözúä;DD½•»f†@ Üõ…%"rg---8þ<ŠŠŠpöìY£¼¼(--EEE*++qá·:&Ëd2C©T"((È G³_¿~úÀׯ_?DDD OŸ>Ëå®.›ˆˆLp׬Àh»¾°DDRQWW‡ÚÚZýM7¼²¶¶Vÿ˜n™n²­VÛéòíïH¡PÀÛÛÀ¥Oýýý\êyÔÍ”éëë‹   A©T"88X_wã°L"¢ÞÅ]³C îú‘c¹kVpÜtkDDDDDDÔã0IC ‘„0IC ‘„0IC ‘„0IC ‘„0IC ‘„0Iˆ§«  ž«¾¾ÍÍÍOOOÚÜFss3êêê R©:= Ÿn×IDDD=_]]ZZZô÷½½½¡P(lnG«ÕB­Vëïk4( (•J»ÔI$ì ¤N~ýõW„‡‡# ¡¡¡ EPP<<<ŠÄÄDÌŸ?MMMfÛùðÀ°°0\vÙeú[RR>þøcx{{;é‘«œ:u aaa Ô® E@@d2üýý1oÞ<!L¶QTT„±cÇ"$$r¹Ü ;î¸2™Ì‰ÏˆÈýÉ„¹ÿqdô "…_Ù®]»0cÆ Ô××wzì‘GÁ /¼óß!ÔÕÕ!99çÎÓ/ ÅG}„«¯¾Úî5QÏdês…——Ö®]‹¿þõ¯ƒÜ·ß~‹?üáËî¹ç¼ñÆðôäà6r wÍ ì $£&OžŒ§žzªÓò””¼øâ‹ àòË/×ß Å÷ßÏHDD$1“'OÆâÅ‹;-ê©§pÛm·YÕ“ÑiÛ·Þz‹¨ ɤiÓ¦uZ6sæL«‡\hµZ|¸=Ë#"""7`pÒ¤IVO:×ÔÔ„•+Wn½õV,[¶ÌîõI C ™dlÈçèÑ£­Ú¶¦¦=öà_ÿú—Ñ^E"""’Fcp̘1Vo»bÅ cܸqX·n'‚!ê&†@2I.—ÜFXX˜UÛ>óÌ3(--Åüùó±páBG”GDDDn¤±±Ñà~FF†UÛ;wÏ<ó âãã±uëV^^ŠÈɤÖÖVƒûÑÑÑVm÷Ã?`ùòåÈÊÊÂo¼áˆÒˆˆˆÈÍtœ4!!Áªíþö·¿¡¥¥›7o¶úËh"2Ó)‘Ií/Ä 111VmsÛm·!""7n„———£Ê#"""7RVVfp?66Öâ6k×®Å矎uëÖqn";b$“:†@kzï¿ÿ~œ?;w爈ˆz¿òòrýÏ …Ââ¤0§OŸÆ<€»îº wÞy§£Ë#’†@2©¦¦Æà¾¥žÀO?ýëׯNj/¾ˆ &8°2"""r7¥¥¥úŸ•J¥Ùu[ZZpë­·"99™§–9C ™Ô±'ÐܰÂÂBÌ›7×]wyäG—FDDDn¦} 6»îÒ¥KQPP€Ã‡Ã×××Ñ¥IC ™¤R© î›ê ljjÂÍ7ߌˆˆ¬_¿žÓ6Q'íÏ 4׸gϼüòËØ¾}»Õ“Ç‘mɤªª*ƒû¦z}ôQäååáÀ‡w‘4Y«««1gÎ<þøã˜:uª³J#’†@2©¢¢Âྱ¸}ûv¼ñÆxçw0tèPg•FDDDn¦}45ôÞ{ïÅe—]†§žzÊYeIC ™TYY©ÿY©T"((Èàñ¢¢"ÜvÛm˜?>n¿ýv'WGDDDîB­VC£Ñèïë |çw°{÷n=zr¹Ü™åIC ™Ô~8hÇ^ÀææfÌš5 ‰‰‰xíµ×œ]¹‘ö—‡:‡Àß~û >ø þýï£oß¾Î,H’ɤöÃA;†ÀÅ‹ãÔ©Søå—_àãããìÒˆˆˆÈ´ŸBBBô?·¶¶bΜ9xôÑGy‰)"'ñpuÔsµï l?3è_|åË—ãý÷߷ˬ]›6mBvvv·Û!""¢ž©ã<í{Ÿzê)cñâÅ]j»¸¸óçÏG\\”J%ˆyóæ!//¯[5õf dRûsu=EEE˜;w.zè!LŸ>Ý.ûyðÁñÎ;ïØ¥-"""êyÚO ü·'pïÞ½øè£°~ýzxxØþ±´°°#FŒÀš5kP\\ŒššäççcíÚµHKKÃO>---˜={6RRR°lÙ2»ì§¢¢çÎCNNŽ]Ú#""¢ž§c …F£Á=÷܃ 6 ""¢Kí>öØcðôôÄòåËqêÔ)”––bëÖ­HKKƒV«Å²e˰jÕ*{<¢^…!Œ:wîœÁý””,Z´ùùùظq#<=ís:©nxÈ… ìÒõ<'†IHHÀ²eË0wî\deeu¹Ý3fàôéÓX°`’’’…?ýéOøñÇ‘’’xýõ×»U;QoÄHFµسgV­Z… 6 ::Únû©¯¯ÀHDDÔ›µŸgÀÓÓñññ ÃÃ?Ü­vÿò—¿@¡PtZ¨ zæÌ™n탨7b$£Š‹‹õ?{zzbñâÅxê©§0eʻ¡ ®DDDD½‹Z­Öÿœ˜˜///,Z´È¡û¼üò˾¾¾Ý‘;b$£Ú÷677cܸqxúé§í¾ݰÒÖÖV»·MDDD=CMMþ端¾Ú)ûÔ}Æ;v¬SöGäNɨö=ýúõÆ º4k—%ÞÞÞ‰ˆˆz³ö=3fÌpÊ>Oœ8ÿ×Þ‡7Uæo¿“tß[(-eéB¶PZöŠƒà E6a€‚È.ŠŒ(Ž¯ÊŽ3"ˆˆˆ:àÀp±ã  8,"ŠÈN[ hK[¶–¶é¾¤MòþÁ/gš6I›ä$Íý¹®^&'gùžœZrçyÎó`̘19‘-a$îÝ»àQHÛ½{7Zµje–ã8::`$""jÎ4!°_¿~xúé§-rÌýû÷# 'N´Èñˆl‰i†x¤fçþýû€õë× }êÍAÓ¨T*¡V«!‘HÌv,"""GYY±nÝ:‹ü[ŸŸŸÿûßøðÃyO ‘l $rrr0gμüòËf=ަ%`k Qs%•J±bÅ ôèÑÃ"Ç[±bºvíŠW^yÅ"Ç#²5l $f̘! ­lN‡ÀÚωˆˆ¨y1b,X`‘c]¸p›6mÂéÓ§Í2žQs Q«Õj±‹°fºº,ð-3ììl´oßÀ£‘Ã<==E®ˆˆˆˆL­¸¸^^^f?Naa!úô郥K—b„ f?‘­f~=B¢’ÉdÂc…B!b%DDDd.–€*• “&MÂ!C‰ô`$QUVV E¬„ˆˆˆlÙ’%KPSSƒÕ«W‹] ‘Õc$Q••• óòòD¬„ˆˆˆlÕÞ½{±ÿ~ìÚµK˜$žˆêgÕ!ðÓO?EDDüüü#v9dùùùÂãÜÜ\+!"""[têÔ),X°°H·S²NJ¥RìlŠÕ†Àëׯã7Þ@jj*är9Å.‰ÌàòåËÂãÄÄD+!"""[“ššŠ &`çÎhÙ²%²²²páÂ=z{÷îÅîÝ»ñÓO?iõ<¢æeñâÅ ƒƒæÏŸ/v96ÃjÛË«ªª´ž4H¤JÈ\”J%öìÙ#þøcܾ}[ìrˆˆˆÈÎÄÅÅaõêÕÈÌÌ»›÷ý÷ß SDÄÅÅÁÏÏOäŠl‹(!PsÁ<ˆ°°0ôéÓ/^=zùùù€6mÚp¨W2™Í›7ãØ±cX°`ÂÂÂзo_B"""²˜3gÎà­·ÞBhh(úöí‹U«V!##C첬ZuuµÎå{öì³ÑÈx û÷ïGdd¤pçðáÑ’’‚®]»bðàÁ8xð –.]*¬?dÈ:ó5–\.«Õjœ={ ,@hh(úôéƒU«V1‘Ùi>‡¼ýöÛ CïÞ½ñÑG!==]ìÒ¬Îõë×1dÈ <»wïFUU®^½Šýû÷ ë0O¢V«Õæ>Hee%Þ|óM|þùçX½z5æÏŸ¯õºZ­Æ!Cðã?j-ß·oþô§?™»¼é ¡xËÈ ýB¡wïÞ;v,j檈ˆˆÈ^òY¤gÏžHHHÀرcÑ¡C Te]RSS1oÞ<Ìš5 £Fðè³÷Ö­[ñòË/ÃÃÃ*• EEEM qçÎÑŽl5+˜=fggcĈHLLÄòåËñþûïë\ïØ±cxæ™g„玎ŽÈË˃———9ËÓËV/,ÕÕ˜?½zõBBB!5™±ŸEzôè±cÇbܸqÍ>*•J,]º+W®Ä¨Q£°cÇŽ:ï×Â… ±bÅ ­e/¿ü2¾úê+K–ªÅV³‚YC`FF „ŒŒ Ì™3ëׯ¯wÝÂÂBøúú Ï €'N˜«4ƒÙê…¥ºšú !5ES>‹ôéÓ&LÀ¸qãdªÄWYY‰Ñ£Gã‡~@ll,N:77·:ë]»v ]ºtÑZ¶wï^Œ=ÚR¥Öa«YÁl!0''}úôAVVŒC‡A&“Õ»~II‰V«ß‡~ˆ¿þõ¯æ(Í(¶za aoýÎMù ZïÞ½…@b²ýY’½}›)>‹H¥R<õÔS˜0aÆŒcóói«T*$$$`ß¾}ð÷÷ǹsç¬sݼ¼<øûû ÏœœððáCQ{ÚjV0KT*•ˆÇñãÇááá«W¯¢}ûö n“””„˜˜áùåË—µž‹ÅV/¬!8èŽiôîÝãÆÃرc‰ˆÈ¦ð³€msttD||<^xáŒ9žžžb—d´•+WâwÞ££#þûßÿbàÀõ®›’’‚¨¨(áùÓO?ãÇ[ ÊúÙjV0Ëè ûÛß„ ²lÙ2½xtO FPPºuëfŽÒˆLîܹsZÓNpþ"""²„êêj:t“'OF@@&OžŒ'NØD€³gÏbáÂ…Ýï×P5ÕöÜsÏ™«´fÏä-YYYˆˆˆ@EEZµj…ÌÌL¸¸¸èÝ.&&III€éÓ§cÓ¦Mz·Ù½{7:vìhÖ¹m5Ý‚ßþ™D"Á¸qãðÙgŸ¡eË–b—CDD¤? 4Oáááxÿý÷1uêT±K©Wqq1zôè´´4ÄÆÆâìÙ³pttlp›^x;wîž'&&êm8***‚···IjÖÅV³‚É[ß{ï=TTTæÌ™cPÜ¿¿ÃSýüùó ‹D–‚ àÌ™3رc Y”——þøÇ?â‰'ž»”-\¸iii€üãz`~~><(‹H¥RôïßÓ¦MCBBÜÝÝÍrSIOOGdd$ âããëÌ®Ëòå˱hÑ"áùŒ3ðõ×_×YïÖ­[ˆ‹‹C~~~פR)Ö¬Yƒ7Þx£i'P‹­fSîlË–-BŒŠŠÒG­…š<†__…@:/0Fó틽0e—?""jìí³€ØLÝý¶W¯^˜0aÆ6mÚ˜tßæôþûï ™aîܹz×ÏÏÏÇ'Ÿ|¢µ¬¾žƒ·nÝÂüùóN: #޾òÊ+¸{÷.Þ|óMÄÅÅ¡oß¾M?fÒxôèQáñÓO?­wýÕ«WcëÖ­ZËþð‡?t¬²²2 d9 ~DDD$¶ÈÈH¼ð ˜0a:vì(v9FKLLÄŽ;þþþ2dˆÞm/^Œ‚‚ṃƒžyæë>÷ÜsuâðáñmÛ6<ýôÓP*•øä“O°}ûö&œ…í3YT«Õ8}ú´ð\߈ [¶lÁ‚ 0cÆ lÞ¼*• ðä“Ot¼òòrî?$2‡ððpŒ3cÆŒað#"""Q´oß^~æÑ¾úê+¡»ä€ààÐpùý÷ß±qãF­eÝ»w‡QÇ0` „£GâܹsÆÝ ™,VVV¢¸¸XxîççWïºÀŒ30wî\Lœ8ÿüç?cÆŒáèhDDD$ŠŒ;Vs 9¿Ú:wîŒóçÏ.^¼¨s•J…¹sç"##¿ÿþ;rrr —Ë…×Û˜’’9rd£¶oNL:Oà°aÄǧNœ9sœœŒ}ûö¡wïÞøâ‹/°zõj¬^½Zø×\ À¸ ªi T*•61 +‰o̘1xá…°mÛ6äääàäÉ“xûí·‰ˆˆÈ¢BCCñöÛoãìÙ³ÈÈÈÀªU«Ð§OŸfh èòÝwßáСCZ¯çççcܸqÈÈÈÀÉ“'„ß~ûMx½mÛ¶hݺ5,X`Ôq•J%öíÛ‡€€L˜0¡i'Ñ ˜tžÀüü|üáÀõë×ë¼7Ö™¸2<<iiihÕªnÞ¼ ///ƒŽ•ššŠˆˆ€B¡Ð;ÁdcÙêÜDDDDd]Þyç$$$ gÏžb—"š[·n¡S§NÂçi™L†^x=zô@zz:víÚ…™3gbÙ²eÉd€×_ëÖ­ðèžI“&áôéÓØ³gÁÇݶm&Mš„Í›7cÚ´i&;[Í & PRR‚?þGŽAyy9¢¢¢0nÜ8<ÿüóJë6<þùÏÆýû÷±hÑ"tëÖÍà㤧§ -8åååpuu5Ù9Ôf«–ˆˆˆˆÈ½ýöÛXµjUå=zôÀúõë§µ|åÊ•xçw<úl>`À|÷Ýwðôô4èx%%%ˆŒŒD¿~ý°k×®¦Ÿ@-¶šL-%;;[˜†¢¸¸Øà_cÙê…%""""²V[·nÅÞ½{QVV†ˆˆŒ5 ƒ Ò¹nee%Ö­[‡ŒŒ :C‡ÕÙ¸TŸ—_~gΜÁ©S§ îuh([Í 6ïÝ»‡6mÚx4ÊP‹-Ìr[½°DDDDDönûöíxã7pæÌ„††š|ÿ¶šL:0Œ%UVV E¬„ˆˆˆˆˆ¬MZZ^ýuìÚµË,ЖÙl,++מo„ˆˆˆˆˆì›B¡À /¼€Õ«WkÍ1HØlÌÏÏçææŠX Y“¿üå/èß¿?¦L™"v)VÉfCàåË—…ǵ'œ'"""""ûµyófœ:u ~ø¡Ø¥X-± h ¥R©5/ÈñãÇñþûï‹X‰íüùó˜3g^~ùeäää ¬¬ EEE(..Faa!T*Ú´iƒ'Ÿ|Rç .öÂ&G=}ú4–/_ŽÂÂB¸»»£uëÖX¸p!:vìhòcÙêˆ?DDDDDö$//½zõBfffƒëI¥R\¸p±±±M>¦­f› –d«–ˆˆˆˆÈžÌš5 ÇŽ«³ÜÕÕîîîh×®"##1zôhtïÞÝ$Ç´Õ¬À¨‡­^X"""""2/[Í 6;0 !ˆˆˆˆˆÈŽ0Ù†@"""""";ÂHDDDDDdG‰ˆˆˆˆˆìC ‘a$"""""²# DDDDDDv„!ˆˆˆˆˆÈŽ0Ù†@"""""";ÂHDDDDDdG‰ˆˆˆˆˆìC ‘a$"""""²# DDDDDDv„!ˆˆˆˆˆÈŽ0Ù†@"""""";ÂHDDDDDdG‰ˆˆˆˆˆìC ‘a$"""""²# DDDDDDv„!ˆˆˆˆˆÈŽ0Ù†@"""""";ÂHDDDDDdG‰ˆˆˆˆˆìC ‘a$"""""²# DDDDDDv„!ˆˆˆˆˆÈŽ0Ù†@"""""";ÂHDDDDDdG‰ˆˆˆˆˆìC ‘a$"""""²# DDDDDDv„!ˆˆˆˆˆÈŽ0Ù†@"""""";ÂHDDDDDdG‰ˆˆˆˆˆìˆƒØ5UUUJJJP\\ŒÂÂB””” ºº•••¨¨¨€J¥BQQ ¤¤555FíßÍÍ ÎÎÎZËÜÝÝáääH$ðññ““ÜÝÝ…×|||àèèOOOÓœ(‘ 0‘ÕQ©T¸{÷.233qïÞ=äääàáÇxðàð877EEE())AUU•Ø%ëåââWWWxzzÂËË ~~~ðó󃯯¯ÎÇšŸV­ZÁÝÝ]ìò‰ˆ¨‘¨ÕjµØEX3‰DRgß2"¢¦S©THOOGrr2RRRžžŽÛ·oãöíÛÈÎΆB¡0ëñ===áàð¿ïBáææP*•(..®³MUUÊËËÍZ—.žžžhÛ¶-Z·n6mÚ ((AAAhÓ¦ Z·nvíÚ! @h™$""˰լÀ¨‡­^X""kRUU… .à÷ßGRR®\¹‚””ƒ•‹‹ „V­ZÁËËKëÇ××·Î2///x{{d2¼¼¼Ìrnš®§………BH,--…B¡¨³¬¬¬ ÂO~~¾Ös¥RÙ¤ZŒ°°0„††",,Løi×®d2™‰ÎšˆˆÛÍ zØê…%"Snn.~þùgœ>}§OŸÆÅ‹lÙóðð@DDBCCµ~Ú·oÖ­[ÃÇÇǂՋ§¨¨ùùùB8ÌÉÉÁÝ»wqÿþ}dggãÁƒÈÎÎFNNŽÑ÷5:::"88¸N8ìС:uêÄ.§DD`«Y!P[½°DD–¤T*qæÌüðÃ8|ø0.^¼•JUg=©TŠˆˆôîÝ]»vE×®]‰àà`ªþŸ¬¬,(•J„††ŠZ‡¡T*rrrpïÞ=Ü»wOŠ·oßFzz:ÒÓÓqïÞ=ƒ÷'‘Hо}{DDD ""‘‘‘èܹ3"##`Æ3!"²m¶šõ°Õ KDdn …?þø#vî܉ï¿ÿr¹¼Î:ÞÞÞèß¿?žzê)ôéÓ=zô°Ê‘2ׯ_¬¬,¬\¹RìRL¦²²B(|üqii©Aûñõõ­ ###¢uO%‘=²Õ¬À¨‡­^X""sP*•øé§Ÿ°cÇìÛ·¯NðsttÄSO=…!C†`àÀˆµ‰ûÐÆ‹/âæÍ›b—b1¹¹¹HOOÇÍ›7qýúu¤¦¦âúõë¸yó¦Aƒò8;;#**JhÑíÖ­ºv튶mÛZ z""ë`«Y!P[½°DD¦ôàÁ|ýõר¸q#îܹ£õš——žþyŒ1ƒc±jµAAAxðà’’’-vI¢ª©©ÁíÛ·‘’’¢¯_¿Žüü|½Ûûúú"::Z+víÚÕæ~/ˆˆ a«Y!P[½°DD¦ðË/¿àóÏ?Ǿ}û´Z‡\\\0tèP¼øâ‹6l\\\D¬²iRSSX»v-^ýu‘+²^yyyB ¼~ý:’““qõêUܽ{Wï¶!!!uZ ###Ù¥”ˆlš­f†@=lõÂ5–Z­Æ°bÅ œ;wN뵨¨(Ìž=S¦Li6#v~ùå—˜={6 !!»ví¹"Û#—Ë…@˜””„«W¯"99……… nçì쌮]»"66±±±ˆ‰‰ALLŒÙ¦ó "25[Í zØê…%"2–J¥Â¾}û°bÅ $&& Ëe2F×^{  ±Bó˜1c6mÚ Äýû÷E®¨ù¸sçN`˜’’‚ŠŠŠz·‘H$ ‚¡æ‡÷‘5²Õ¬À¨‡­^X""cú!!!â'‚uëÖÕ ´gÏž8þ¼H‘!îܹS'¦¥¥A¥RÕ»M‹-´ Ñt'utt´`åDÔÜØjV`ÔÃV/,ÑãÒÒÒ0{öl;vLXÖ£GüãÿÀSO=%beâ™:u*¶lÙ¢µÌÉÉ EEE6=í…=*--Err2qéÒ%$&&"99åååõn£4&&ݺuCtt4ºu놖-[Z°r"²e¶šõ°Õ KD¤¡T*±fÍ,^¼X•ÑÇÇÿûß1kÖ,H¥R‘+O—.]píÚµ:ËÿýwôíÛW„ŠÈ””J%nÞ¼© /_¾Œ4¸]`` £££¨¨(~1@DuØjV`ÔÃV/,deeaòäÉ8yò¤°løðáØ°aƒÝ¹_ZZ ooo]×­[‡¹sçŠPY‚\.ÇÕ«WqáÂ\¸p×®]CrrrƒƒÐÈd2#** ]ºtATTzöì‰ÈÈH»þ"…ÈÞÙjV`ÔÃV/,ÑÎ;ñÊ+¯v⫯¾ÂðáÃE®Ì:œòòò —ËQPP |ád>>>H$ðöö†T*…——d2<==áàà8::€Öc­¯4뀣££Öô. ½¦9^m...:[:}}}ë,suu…‹‹KcOŸlжmÛ0iÒ$ƒ×ÏÌÌDûöíÍXQã°ó7‘ P©T˜;w.6lØ ,[¾|9Þÿ}«²M.\0˺D¶ÂÅÅíÛ·7øƒiyy9 PPP ÃÚKKK…¹\ŽÒÒR””” ´´ÅÅÅ(**ªwh}M«¤\.7Ùù‰­¾–N7778;;k-“J¥:ç‡tww¯óåÞãÁW£vÈÕx<ìjè ½õÑtC899ÁÝÝÝ uÝ5×§¾ó6—ÂÂB­µZ-üžVTT ==ݨý >ýúõCdd$Zµj%´Œ;::Ö¹NµÏÕÜçÍHDdå ¦L™‚;wxô¡á³Ï>믾*re¶éüùó¯{ñâE3VBdÜÜÜàææ†¶mÛ6zåå娪ªBII jjjPVV…BŠŠ TVV¢²²P((++CMM JJJ R©PTT¤õA\ó!½¸¸J¥RاæšmuÕaNjµZg¨mNA— —œœŒäääFm+“Éàëë‹€€téÒóçÏGß¾}MRC ‘S(øÓŸþ$ -íàà€o¾ù'N¹2ÛeL¼rå  »Û5‘&HêêR)&]AQPYGC_Ðӄ݆<Þõ8MPnˆ& ëcȾ4ªªªP^^nкšpoˆúÞK]JKKQ]]mк†¾æjÔTMµ[S½½½áããooo",, ;w6é<ƒ¼'PÞHDb©©©Á¸qãðí·ßxÔ…kçÎxþùçE®Ì¶µk×wîÜ1xý .XÕ¿DDdZú‚wmš _ZZŠ'žxBg0~öÙgñßÿþפ5š[‰ˆ¬J¥Â´iÓ´àþýû/re¶íÁƒF@àQ—P†@"¢æË˜Ñjk·fOŸ>ëׯ×z]"‘`ÅŠ&«Í\¤b@DDuÍŸ?Û¶mð¨‹ÈîÝ»MÀ˜® ¼/ˆˆt™7o¤Rí85bÄ›˜Zˆ!ˆÈÊlÞ¼k×®ðè¦ð-[¶`øðá"WÕ<0‘©tèОK$,]ºT¼‚ŒÀHDdE~þùgÌž=ÀÿàøñãE®ªyÈÌÌÄŽ;ŒÞ.)) 555f¨ˆˆˆlÝŒ3„ÇãÆCll¬ˆÕŽ÷Y‰{÷îaìØ±¨®®†D"ÁW_}…_|Ñ$ûV*•(..®÷uK ›n¬úF­{¼ÖÚ7ôk¶©ªª‚\.‡\.Çýû÷‘’’‚«W¯6j¤¸ŠŠ ?~ááá?"MCóÚ+ÍÖÆ˜Ñ?õÑLbŒÚS‘ºüþýûÂó)S¦= X8:¨”ˆ,A¥RaðàÁ8zô(`åÊ•xûí·u®›ššŠƒâÒ¥KÈËËCNNŽðj"c†è&"""ûÁ¨C YªU«„Ð7eÊüë_ÿªwÝ–-["??ßR¥Q3èC ™Û¥K—…B^½zá×_…³³³ÎuïÞ½‹¶mÛZ¸B"""jN80 ‘ˆjjjðòË/C¡PÀÝÝÛ¶mÓKKKqþüy¼òÊ+"TIDDDÍ †!"ѧŸ~*LA°fÍtêÔ©Î:999Gii©¥Ë#""¢fˆÝAõ`wP"2—¬¬,téÒ¥¥¥xê©§pâÄ svìØ &ˆP!5GìJD$’9sæ ´´NNNظq£ÎW®\±peDDDÔœ±;(‘>ŒC‡,X€ˆˆˆz×}øðaƒû 3imÍ‘)æmrttD»víLP ‘¸‰ˆ,L©TbÁ‚€€€üõ¯mpý¼¼¼_OKK3YmÍU}­¬ÆpppÀõë×áèèh‚ŠˆˆˆÄÃî DDöå—_ ]<—/_OOÏ×/,,´DY¤GEE’““Å.ƒˆˆ¨É‰ˆ,¨¨¨‹/téÒ/½ô’Þmª««Í]è÷ß»""¢&c$"² ?üP¸Çïïÿ;d2™Þm›ÎÕÕÕ$û¹té’IöCDD$&†@"" yðàÖ­[èÓ§FŒaÐv555æ,Ë.´jÕÊ$ûIMM5É~ˆˆˆÄÄaˆˆ,äƒ>@YY`Ù²eoÇ–À¦[»v-Ö¬Yƒüü|TTTh½¦käÐÇG\•ÉdðóóÃĉÍZ'‘%p²x=8Y<™Bff&:wª*ôë×§N2xÛ¨¨(¤¤¤Ôû:ÿ&5 ÿΑ½awP"" X²d ªªª+V¬0j[v%"""Sb$"2³ëׯcëÖ­€âé§Ÿ6j{†@"""2%†@""3[¶l”J%€G-‚ÆR(&®ˆˆˆˆìC ‘ݼy»víÄÇÇcÀ€FïƒÃ‘)1™QíVÀ¥K—6j DDDdJ DDf’––†;v† †¸¸¸Fí‡÷‘)1™ÉŠ+PSS‰DÒèV@€!ˆˆˆL‹!ˆÈ ÒÓÓñïÿ0jÔ(ôìÙ³ÑûR©T¦*‹ˆˆˆˆ!ˆÈ>øàÔÔÔ@*•6©ˆˆˆÈÔ‰ˆL,33ShLHH@ttt“ö§V«MQ†@""“[¶l d2/^,v9DDDDZ‰ˆL(-- [·nLœ8‘‘‘"WDDDD¤!ˆÈ„>øàTWWC&“á½÷Þ3É>Ù”ˆˆˆL‰!ˆÈDj·NŸ>:u¹""""¢º‰ˆLD3"¨££#Þ}÷]±Ë!"""Ò‰!ˆÈj·Μ9¡¡¡&Û7»ƒ‘)1™ÀŠ+PSS“·J$“ˆìC Q%%% ­€¯½öÚ´icÒý³%ˆˆˆLI¢æ§‹éúžoÕ#GŽÀ××·nÝ‚ŸŸŸI÷ïàà¥RYïëü›Ô4ü;ODDö†-DDM°ÿ~9r°hÑ"“@""""ScK ü†˜ˆêS]]®]»âÆ CJJ œœœL~¶šÿΑ½aK Q#}öÙg¸qãà“O>1KHˆˆˆÈ´Ø¨¿!&"]rrr ¹\Ž#Fà»ï¾3Û±Øh^ü;ODDö†-DD0{ölÈår¸¹¹aíÚµf= ™C ‘‘¾ùæìß¿ðñÇ›tbx""""scwP=ØMˆˆj»rå âââPVV†øøx>|Øì“¹K¥ÒÿîðoRÓðï<Ù†@=øá€ˆ4är9âââpãÆ ´k×çÎC@@€ÙËh^ü;ODDö†ÝA‰ˆ P^^ŽçŸ7nÜ€‹‹ öîÝk‘0‘i1é¡P(0fÌüúë¯J¥øæ›oлwo‹ßÜÝM‰ˆˆÈ¾05@¥Raêԩ½Ÿþ9ÆoÑØHDDD¦ÄHDT•J…W_};vì¬Y³³gϹ*"""¢¦q»""k¤T*1kÖ,lÚ´ °lÙ2üå/¹*"""¢¦c$"zŒB¡À‹/¾ˆ½{÷,X€… Š\‘i0ÕR^^Ž1cÆàðáÀwß}|ðÈU™C Ñÿ¹ÿ>FމsçÎA"‘`åÊ•X°`Øe5ˆ#‡‘±‰ˆ$''cøðáÈÊÊ‚L&Æ 0sæL±Ë""""29ŽJDvïÀèׯ²²²àáá½{÷2Q³ÅHDvK©TbÉ’%5jJKKѦMœ8q#GŽ»4ƒ±;(‹ÝA‰È.ݹs/¾ø"~ùå@÷îÝñÝwß¡mÛ¶"WFDDDd^l $"»sðàAtïÞ]€'NÄ©S§‰ˆˆÈ.0‘Ý(,,ÄìÙ³ñüóÏ#//ÎÎÎøä“Oðïÿ®®®b—×(ìJDDDÆbwP"² À«¯¾Š»wƒ±sçNôíÛWäÊš†!ˆˆˆŒÅ–@"jÖÒÒÒ0zôh<ÿüóBœ0am>5[‰¨Y’ËåX¹r%Ö®]‹ÊÊJ@@@>ÿüsŒ=ZäꈈˆˆÄÃHDÍJee%6n܈åË—#?? •J1eʬ^½~~~"WhZìJDDDÆb$¢f¡¬¬ _ý5V­Z%tû€Aƒá£>B=D¬ŽˆˆˆÈz0‘M+,,ÄgŸ}†µk×"//OX‡%K–`ðàÁ"VGDDDd}‰È&?_|ñvìØ²²2ay¿~ý°páB<÷Üs"Vg9ìJDDDÆb$"›QVV†;wbÆ 8þ¼°ÜÙÙãÇÇܹsÑ»wo+$[$•J¡R©Ä.ƒˆˆÈb‰Èª)•JüôÓOزe þóŸÿ ¤¤Dx­uëÖ˜5k^{í5øûû‹X¥xØØt|‰ˆÈÞ0‘Õ©©©Á/¿ü‚;wbÏž=Â(Ÿ “ÉðÇ?þ¯¼ò FŽ ™L&b¥ÔH¥R(•J±Ë ""²†@"² ùùù8~ü88€ƒB.— ¯I¥R<ñÄHHHÀ¸qãкuk+µ.lÅ""""c1HOOoôúR©ÞÞÞðõõ5uYDÍZUUΜ9ƒŸ~ú ‡ÆÙ³gµîË’H$èÛ·/Æ„„´iÓFÄj©9“Éd¨®®» """‹‘¨ÕjµØEˆmÈ!8|øp“÷Ó¿œ>øÃàìì,RŶ‰ÝA›N*•Š]‘E±%ðÿŒ1lôö2™ ׯ_Gxx¸ «"²~*• ééé¸|ù2qþüyœ={:× AÿþýgŸ}®Øö4ô\]]Q^^nÁjšOOO”––j-ã?DDÔœ±%ðÿ,Y²‡jô?üãÇg¤fO.—ãêÕ«HJJBbb"’’’påÊ•: 5ÜÜÜЫW/ÄÅÅá‰'ž@\\-\uóÆ–À¦ã{HDDö†-µŒ5 û÷ï7z;©TФ¤$téÒÅ UY–R©Dff&RSS‘’’‚ÔÔT¤¦¦âÚµkxøða½ÛI¥R„‡‡£OŸ>BèëÖ­ø]SS5RÜÝÝë ádi-ã?DDÔœñÓY-‹-Âwß}gô?þ£Fb$›RUU…ŒŒ ¤§§#--Mø¯æ§ªªªÁí[´h˜˜DGG£k×®ˆ‰‰A—.]àææf¡3 GGG±K°yl $""{ÃXK=0dÈ|ÿý÷o#‘H°páB3VEd¼‚‚ܹsYYY¸sçîܹƒììldff"==wïÞÕšŽ¡>>>>Gdd$¢££ƒ®]»"((ÈgA†`KkÓq`""²7üô𘅠GØØX3VD¤­¢¢÷ïßGzz:îÝ»Wçñ­[·êtmkˆ‹‹ ÂÂÂÐ¥K„……iý„††²•Äʱ%°éø;NDDö†!ð1qqq8p Nœ8¡w]©TŠÅ‹›¿(jöÊÊÊŸŸüü|<|øPxœŸŸììlܽ{YYYÈÎÎFII‰QûvwwGpp0Úµk'ü„„„ <<;v„¿¿¿™ÎŠ,!°éØHDDö†!P‡9sæÇŽ‹èèhóDVA­V£°°À£Ö¸ÊÊJ”––¢ººEEE¨©©AQQª««QZZŠÊÊJTTTh­£T*QPP€‚‚­ ÷øüy†rqqA`` Ú¶m«ôÚ·oöíÛ£mÛ¶ðóó3åÛ@V†!°éØHDDö¦Y†Àòòra`‹ªª*a­šš¡Eó^ózaa!***PPP€[·né=†¡­€eeeP(Õ­ †Ð C( ”••´ní÷H•J¥·ÛaíàTŸ¢¢¢ïOÓ„¨úÔ÷¾=~Þšp¦ñø¹*•J Ï 9?sJ¥ð÷÷G«V­Ðºuk" AAAhÕª‚‚‚€ÀÀ@øúúZ¼>².¼'°éØHDDöÆ"Ÿ>|ˆ{÷î!;;999ÈÏχB¡@ii©’äryí¨’’ÔÔÔÏk‡}AÁÔT*G%½<<<àíí oooøøø E‹hÙ²%Z´hV­Z ÿ/‘¡ØØtl $""{cÖ¸zõj¬X±BoK‘µpssƒ‹‹ |||àââWWWá±››¼½½áââwwwxyyÁÝÝ]xµÃžæ¹L&û”¨™cl:†@""²7f sæÌAll¬0já½{÷PRR"tÁÓ´ìÕ×±v·ÎÆ*..†R©¬³üñ®bsww‡““S“÷#•Jáííݤ}xzzÕÅÌÃÃ袆®¯ annnpvv®w?µëvrr‚»»;]&5Û;88ÀÓÓàåå™LVçXD¶‚!°éØ”ˆˆìYC ««+ dÎC4Yíû¾är9jjjp÷î]dddàØ±cصk—VÔ-Z`ÇŽpuu…‹‹ ¼½½…š@Q[í0BDdj¼'°éØHDDöF¢V«ÕbaÍ>Œ¡C‡Bó6Mž<[¶l¹*"²' …”4š1Õ/$$™™™ZËøO#5gì£ÇsÏ=§5Œ—— D¬ˆˆèjw‘¦ÆaK Ù¡Qzzº˜u˜Ýã÷ÊåráqíûËÊÊPQQœœ>|h¢Jˆ¨¶Ö­[‹]‚ÍcK ÙþËGDdÃzõê%v 6-DDdoØHDdƒ¼¼¼Ð³gOôïß_ìRl[‰ˆÈÞð_>""³|ùrâøñãpuu»›Ç–@""²7 DD6æ7Þ`p1!¾—DDdo„î S¦LÁƒpÿþ}äææ"77—“åY ggg„‡‡cÔ¨Q&m—þ‡ÝA‰ˆÈÞHÔõ$½šš! –––¢²²RëõÚóì@ee%***´–6$ÕjµÑ£NÖÔÔ ¤¤Ä¨mªªªP^^nÔ6QTT•Jeöã˜Âã×ÏZ5æw„lWS§î0fîL]ꛓÓPõM;ñø4)µ§©½æ±··7<==…///“M­AuuëÖ ÉÉÉZËø%(5gõ ãàà€   Y²"""‹b¸&""{Ã>0DDdר”ˆˆì ÿå#""»ÆHDDö†ÿò‘]spà”¹DDd_‰ˆÈ®999‰]‘E1‘]ÓŒÔJ ‰D‚}ûöé]wïÞ½H$èÞ½»*3k×®aîܹˆŠŠ‚§§'\\\Ž©S§âÇ»<""ƒ0‘]clš©S§þõ¯é]wË–-€iÓ¦™³$³P«ÕXºt)¢££±~ýz¤¤¤ ´´UUUHKKÖ-[ðÜsÏ¡G¯M"‘Xí(·Ö\‘=c$""»ÆØ4“&M‚££#~øá<|ø°ÞõòòòðÃ?ÀÑÑ/¾ø¢+4?üK–,Z­ÆìÙ³qîÜ9”••¡¸¸.\À{ï½///\ºtIìR‰ˆôb$""»Æ{›ÆßßC† Auu5¶oß^ïzÛ·oGuu5†  VØt·o߯¢E‹[·nÅ_|^½zÁÍÍ žžžèÑ£V¬X[·naðàÁ"WKD¤C Ù5¶6¦{§¦»§.õu=~ü8FŒ–-[ÂÉÉ !!!xã7ŸŸ¯µž¦[ayy9–/_ŽÎ;ÃÙÙ¡¡¡øÇ?þ¡ó˜cÆŒA—.]вeK888À××ÄÞ½{:¿ 6 ¦¦ãÆÃĉë]Ïß߇ÖZ¦V«ñÏþ}ûö…‡‡<<<‡Í›7ë܇±çY»«¥fÛÇ»`hc“UÐIDATjž«T*üóŸÿD=àìì //¯F½O*• Ÿ}öºwïWWWøøø`ذa8tèQµ™êúQ#¨‰ˆˆìØÄ‰Õ´~È8 …BݲeK5õ•+W꼞’’¢ ö÷÷W+ aù‡~Xç½×ütêÔI]XX(¬«Y¡sýíÛ·×9n}û Þ´i“Áç׫W/5õ?þhä;£VOŸ>½ÞfΜYo͆žgCçøø:ƒ Ò¹Ž±ïÓ„ ôÓÚLu}ˆÈxl $""»Æ–À¦«}ŸŸ®Ö@Ͳ‰' ï÷É“'ñÿþßÿCÛ¶m±sçNäææ¢¼¼çÏŸÇ€pãÆ ¬\¹²Î¾JKK±uëV!// €µk×ÖYW­V ? …·nÝÂK/½Xµj•Áç—žžèÙ³§ÁÛÀž={°yófxxx`ãÆÈÉÉANN6lØwww|õÕWøöÛounkèyªÕjç[{¹ÆÅ‹±nÝ:Dd<‰Z×_ """;1{öl|ùå—ZËÒÒÒt®ëêê —z÷åääwww“Ög+._¾ŒîÝ»£M›6ÈÊÊ‚Túè{fµZdeeáòåˈ‰‰Œ=ß~û-Ο?_'\egg£}ûöˆŒŒÄµk×ü¯kaII <<<„uÓÒÒ??¿:]Hu‘Ëåðó󃣣# …Açæè舚šTWWÃÁÁÁ m`ðàÁøïÿ‹5kÖ`Þ¼yZ¯}üñÇX°`¬Õ…´1ç©Ù¦¾tš×sss ¾³¾÷)>>GŽÁªU«ðÖ[oéÝ¾Ú =.™C Ùµyóæá“O>±È±¤R)¼½½\ÇÛÛ[PµI$øøøèܦ¾ðéààOOOÈd2xyy ǯ½/___¸ºº¢]»vhß¾=ÂÂÂqfÄÆÆ"11?þø#âãã<ºçoРAˆÕ9300999 îÏÅÅêpssÓùZQQ¶mÛ†'N -- >D~~>ÊËËu®_???Èåräåå¡E‹m-Z´@AA222¢õZFFÂÂÂвeK­QUsž††Àú^7æ}j蜌=¶©®Ï𯳈ˆˆš¡ú‚•9¨T*Èåò×Ñ÷º¹…„„`ïÞ½šïnêÔ©˜?>¶lÙ"„Àú„1¤Õ®²²Rï:®®®:—'%%!>>^oÐ4Dpp0är9.^¼ˆgŸ}Öà튊Š< ¼kݺ5 °°Ð }ÕwžMeìû¤9'Mý–:.™ï $""»æëë+v VåöíÛ8vìX£¶ÕÌøí·ß¢¤¤åå娷oŸÎ¹5-¢r¹¼Îýb Ý×f¨¹sç"''O>ù$vî܉ääd€õë×7¹v].\¸8pàÆ‡®]»"  QóBΚ5 ‰»víjp ¹\ŽaÆ Ï5÷:îÞ½»ÎºšiŒlFM÷aM+1Œ}Ÿºví OãP_m¦¼>DdÈššõœ9s¬€ºOŸ>ZÛMž<¹Þu§OŸnйè{í­·Þjô{gìûTSS£~æ™g š'°¡ÚL}}ˆÈ8ü?ŒˆˆˆLê7Þ>Èÿå/ipÝß~ûM=iÒ$upp°ÚÙÙYíì쬎ˆˆP¿öÚkê“'O 뎔J¥zÍš5êððpµ‹‹‹:<<\ýÖ[o©óòòš2NŸ>­ž:uª:<<\íææ¦vuuU‡‡‡«_zé%õÑ£G묯R©Ô_~ù¥ºW¯^j777µ›››ºwïÞ꯿þZ­R© :}¯UUU©?øàuçÎÕ...jooo­0ÚÐ>ó>iŽ¥vvvV{{{«‡®þᇠ®Í\ׇˆ #™÷øÄ56fÍš5kÄ®ˆˆˆˆˆìÃüùóç‹]CSý¯¬ˆˆ³æöÕIEND®B`‚fluids-1.0.22/docs/fittings/contraction_round.png0000644000175000017500000005641114302004506021430 0ustar nileshnilesh‰PNG  IHDR5‹þ³¼ÀsBIT|dˆ IDATxœìÝwxUÿþñ{Iï’лˆ(R”¦”P:Hy;¢ <`Í(EÀ‚DEPQéE¥)]@jHHo¤ìï~Ùo6u“ìfw“÷ëºr‘3sfæ³1&¹wæœc0FƒÁ  ,UªTIö.£@AAAö.¡@ªT©’UÏéãã#www‹úZúµqss“¯¯¯Õ¯(K~fçúÞÞÞòððÈwŸ«««üüü̶å®7¿ïçüÎéÈßW8+ƒÁ`0jÀ><==åååejg¶ì@”3Pe‡Y///yzzÊÅÅEþþþ’¤àà`³† ªfÍšvyM”5B ”SzôÑG5mÚ4{—€Mj 3 Љ‰qèG=(-ƒÁ`°îƒù‡a45iÒ$EEEÙ»lŠ;5P„„„hãÆjÚ´©½KÀª¸SÄ•+Wôé§ŸÚ» l‚PÄ_ýeï° Wéús×åQjjªRRRòlOKKSrr²©cú<))I×®]S||¼¢¢¢téÒ%:tH?þø£âããÍÎóÒK/©}ûöfÛŠ³Þ†#Ëù5)©¬¬,ÅÅÅ•ú<éééJLL,õyrÿw/©””¥¦¦–ú<Ùßkeqý’þ·HHHPFFF±Ž¹víš’’’Š}­’|Ï•ôkXQYãÿG‘«½ °%OOOyzzZå\?ÿü³ºuëf¶­AƒêÒ¥‹UΠlddd(!!¡ØÇÅÅÅ)++«XÇôÆJaJ@•žž®ا$agP®C5F8p@o¿ývž}Ÿþ¹úôécZ€ãsuuUPPP±+É1ކP(¯ Æròì™ÑhTll¬$óÇ•r>ª“óQšØØXeff*..N JLLTRR’ââ⯤¤$9sF§OŸÎóØYN®®®ºí¶ÛT·n]U­ZUaaaò÷÷—§§§üýýÍGË^ <§œ«‚甽zxQüýýåââbÁW@EP©R¥)®Q£†Î;WÆ`[¦Å7Ëê‚qqq:wîœþý÷_EGG+))I±±±JNNVrr²ââ┘˜¨äädS(É~¤"ghÉ96¢$Ïü£ô\]]åççW¢c ƒK|mK_îëäwÝÜï¾*ç繯•;DúùùÉÕõÿnxúúúÊÍÍÍÔÎ=Æ*ûøì€ëææ&__ß"_ `©ÂBM`` UÆËàHÊ$Ô,]ºTï¾û®Ž9£@!²Vv0òðð···Ùݼ€€¹»»ËÏÏOÞÞÞòððP`` ÜÝÝåëëk QAAA¦ãýüüäî€îìU……«Lº€#1 ›©éÔ©“222tþüy]¼xQçÏŸWrr²é®Krr²ÒÒÒ”™™Yàc^ÖšýÊV<<<òÌ‚–-66¶ÐÙå,´œý5*LI1ñd¿ƒnëwÒ³ƒŽ¿¿¿üýýhjûùùÉÏÏOfû+W®¬àà`«råÊbÁ^çTNž6 r3¦F*z*Ù‚Fö´°Ùá!%%E±±±úûï¿5mÚ4‹®½k×.µm۶ĵÛZa¡1›%SÇÇÇ+33³Àý–ÌÜTØŒP…í+,Üe?¦Xœšs_+÷÷OîÀ™ßkË@*J¸Ìrr~^¹reÕ¨QC!!!ªZµªªU«&ooo{—\av§ÆËËË*ÓšàHÊ|L³Y²d‰zè!‹úvëÖM?þø£+‚³É¶rŽËZ9ƒSv¸Î9~,gÐÌå9ÃWö˜²ÄÄD]»vM±±±¦ëÄÇÇ›Ö\²7___U«VMaaa SµjÕªš5kªV­Zª]»¶j×®mµ)Ø+2—ƒµ§§g±§˜ÀÑj a4Õ²eKýù石cÇÝyç6¬ (™ìp§´´4Ól×®]SLLŒ)%$$(!!AqqqŠ5}älÛòñ¸ªU«šNíÚµU§NÕ©SGuëÖU£Fäååe³k—……ww÷"eÀÙj ±nÝ:õìÙ³XÇtêÔI7n´QE€ã(,ôDEEéâÅ‹º|ù²"##uáÂEFF–úiƒÁ Úµk«Q£FjÔ¨‘n¼ñFÝxãjÔ¨‘j×®mÑŒxAa¡ÆÍÍM×®]+㊰-BM!î¸ãíÚµ«ØÇmÙ²E;v´AE€s‹‰‰Ñ¥K—©óçÏëÊ•+ºté’.^¼¨K—.éŸþÑ™3gJ~<<<Ô¤I5oÞ\-Z´PóæÍÕ¬Y³ ¹0na¡ÆÕÕµÀ±g8+BM6mÚ¤Î;—èØÎ;kÆ V®¨²²²tþüyýóÏ?:uêTž/^¼hñ¹ ƒêׯ¯-Z¨E‹jÕª•ÚµkWî×ruu-p2Öõ”;„šÜu×]Úºuk‰ÿå—_Ô®];+V@º>6èŸþÑÑ£GuðàAÑÅ‹µlÙ2EDD˜ ²ß·oŸFŒ¡úõëëÍ7ßTRR’+¾ÎÅÅ¥Ðý¬SS>DGGkùòåºpႽK‡@¨€"øøøhðàÁúá‡tâÄ Mž<Ùl}›sçÎiâĉjذ¡æÎ«´´4»ÕZÔÌf„ÇsñâE=ýôÓjÙ²¥e0L]»vÍÓÿ£>Rýúõ5dÈ :Ô€ã!Ô@1Ô«WOÓ¦MÓÙ³gµlÙ25oÞÜ´ïÒ¥Kzê©§Ô¨Q#-^¼Xééée^¡Æù|öÙgš7ožþøãÅÅÅ™í2dˆYû¥—^ÒèÑ£M³öíÝ»·ÌêGF¨€pww×àÁƒµoß>ýðÃêØ±£ißÙ³gõðëI“&Z¾|y™Ž¿+êñ³ÂÖ°}Lœ8Q×®]ÓŸþi¶ÝÓÓSýúõ“$eeeé‰'žÐ«¯¾jÖÇÕÕµÌêGF¨€R0 ŠˆˆÐ–-[´cÇ…‡‡›ö8qBC† ÑÝw߭Ç—I=Ü©qNƒAÇŽ3ÛÖ³gO(++K#GŽÔüùóÕ A³>Ç/Ë2ÀajÀJî¼óNmß¾]ß~û­š4ibÚ¾uëVµhÑB&LÈw5k*êûòjÒÒÒãô3Ræ\2@’,£Ñ¨GyD+V¬ÐòåËuâÄ Í˜1C­ZµÒäÉ“5kÖ,;U Ž…)‹)X*33S‹-ÒsÏ=g¶ÞM5ôöÛokÀ€6¹n½zõtúôé÷_HHH¡û³g_s?üðƒzöì©ÄÄDIå/Ф¤¤hçÎfÛ^xá ;UΉPvf04kÖ,MŸ>Ý´-::Zݺu+t!Íüu§Æ™BÍš5kÔ¯_?¥¤¤H’êÔ©£ 6¨víÚv®ÌzvìØ¡ÔÔTS»nݺêÙ³§+çD¨1iÒ$½ýöÛ¦ö… Ô½{w]¹rÅâs5hþìÙ³%®¯,}þùçêׯŸéþzõêiÛ¶mªW¯ž+³®7šµŸ|òIÓš:ËjÀŒ7N/¿ü²©}ìØ1ÝsÏ=/šyà 7º?**J—/_.U¶¶xñb=øàƒÊÈÈt=ÐlÞ¼¹\ݡɖóÑ3???ýç?ÿ±c5à¼5à`¦L™¢§Ÿ~ÚÔÞ»w¯F%£ÑXä±U«V•¯¯o¡}Zä”Ü€üjÀ½ýöÛ2dˆ©½råJÍ™3§Èã ƒ6lXhG 5¯¿þºÆg ouëÖ-·F’NŸ>mºW³fM½øâ‹v®œ¡Á`Ð’%KÔºukÓ¶ÿýïÚ½{w‘ÇÞtÓM…îÿõ×_K]Ÿµ=÷Üszá…Líòh$É××W•+WV³fÍôã?ÊÏÏÏÞ%€Ó"Ô€ƒòòòÒêÕ«MƒÿÓÓÓ5`ÀEEEz\Û¶m Ý¿qãFÓã]öf45nÜ8M›6Í´­víÚÚ¸q£êÖ­k¿ÂÊ@hh¨¢¢¢ô矪I“&ö.œ¡XµjÕ´råJ¹»»K’þý÷_1¢Ðñ5íÚµ+ôœQQQ:pà€Uë,‰ÌÌL=ôÐCš={¶i[:u´uëVÕ¯_ߎ•œ ¡\ëÖ­Íîd¬[·N}ôQý›7o.//¯BϹ~ýz«ÕW>|¸>øàÓ¶:uêhóæÍåþ Àú5àÆ§{î¹ÇÔž0a‚.^¼˜o_777Ýyç…žoÙ²eV­¯8ÒÒÒÔ¿-_¾Ü´-;Д·uheƒPNÀ`0èã?VÕªU%I1113fLýûöí[èùøà%&&–ªž%K–˜îÐìܹSwÞy§þùçŸ<ý®\¹¢N:iûöí¦mÙ†I¥E¨'3wî\K’.]ºd¶¾KN#FŒ(ô<±±±Zºti©jùôÓOÍÚGU‡tôèQÓ¶sçΩC‡Ú·oŸi[­Zµ4«!Ô€“ Ó›o¾ij/Z´H‡ÎÓoèС (ô\sçÎUfff‰êØ»w¯þþûï<ÛÏ;§Ž;êÀ:~ü¸ÂÃÃuäÈÓ~ ÀÚ5à„Fީ֭[Kº>=òøñãóôñññ)ònͱcÇJ<ÚçŸ^à¾Ë—/ëî»ïV‡tæÌÓöì@Ó Aƒ]€üjÀ  Íž=[ƒA’ôÓO?iíÚµyú=öØcENðÊ+¯(##£X×ÏÌÌÔ_|QhŸ«W¯êÒ¥K¦vÍš5 4› Ô€“j×®ljO˜0Aéééf}7n¬ûï¿¿Ðóœ8qBï¿ÿ~±®½qãÆ×ÉÉO54›!Ô€›>}º¼½½%IGŽÑüùóóôyá…Lwt òÒK/)**Êâë÷‘µÔÔT¥¤¤ë,E¨'V«V-Mœ8ÑÔ~å•Wò¬së­·ªOŸ>…žçêÕ«zöÙg-ºfJJŠV­ZU¬:£££ÕµkW³YѰB 8¹ÿýïªU«–¤ëáäå—_ÎÓçå—_.rlÍ| ï¿ÿ¾Èë}ÿý÷Š/v—/_V—.]têÔ©b @a5àä¼½½5cÆ S{áÂ…:xð YŸfÍšiäÈ‘…žÇh4jôèÑfƒûóSÒÙÒ¤ëÓ=wíÚUW®\)ñ9ÈPåÀ AƒÔ¾}{I×g&{úé§óôyã7äïï_èy®\¹¢Q£FÉh4æ»?66V?üðC©j=uê”î¿ÿ~¥¥¥•ê<d#Ô@9`0ôÖ[o™1Û´i“Ö¬YcÖ',,LÏ?ÿ|‘çZ¿~}³¡­\¹Ò*adûöíš4iR©Ï€D¨€r£U«V>|¸©=aÂ]»vÍ¬ÏøñãuÛm·y®qãÆiçÎy¶/]º´ô…JjÔ¨‘ªW¯n•s@¨€rä7Þ¯¯¯$騱cz÷ÝwÍö»ººêƒ>››[¡çIMMUŸ>}täÈÓ¶?þøCÛ·o/qm 4Ð3Ï<£={öèèÑ£úßÿþWâs¡Ê‘êÕ«›MÍüꫯ*22Ò¬O³fÍôúë¯y®¨¨(uìØQ{÷î•$Í™3§Øõ´lÙR¯¼òŠ8 'NèÍ7ßT«V­Š} c04yL™2ES§N5µùÒpD©©©jÖ¬™Ž;&I:t¨>ûì3³>F£Q={ö´hп›››úõë§Õ«W9žÆÍÍMíÛ·×}÷ݧûî»OuêÔ)ù ÀƒÁ@¨)B g±iÓ&uéÒÅôsjÍš5êÕ«—YŸ+W®è¶ÛnÓ¿ÿþ[ªk)""B½{÷VDD„Ku>ŠÃ`0xü Ê¡N:™Mðè£*..άOHHˆ¾ûî;ùøøûü 4иqã´iÓ&EFFjÙ²e4h`„(§Þ|óMU®\Y’tþüy=öØcyú4oÞ\Ÿ~ú©i*è¢xyyéçŸÖ‰'ôöÛoëî»ï–«««Uë ¸5PN…„„è½÷Þ3µ—/_®?ü0O¿¾}ûêwÞ±èœ)))9r¤~ûí7«Õ @ij 4hú÷ïoj?ùä“:tèPž~cÇŽÕ+¯¼bÑ9ÏŸ?¯Ž;êóÏ?·Z”¡ʹùóç«F’¤äädõîÝ[W®\ÉÓïÅ_´x혔” 6L#GŽTBB‚Uë ¸5PÎU©REkÖ¬1MðÏ?ÿ¨oß¾ùNÏÝâs/]ºTM›6-Õ¢œ”¡*€-Z˜M°sçN 4HéééyúNš4I³fÍ’Á`°èÜgΜQ§N4fÌEEEYµn,A¨€ ¢oß¾zýõ×MíÕ«WkðàÁÊÈÈÈÓw„ Z±b…¼¼¼,:wFF†æÍ›§n¸A3fÌPjjªÕê („¨@&Ož¬ &˜Ú+W®Ô Aƒò !ýû÷׆ bñùccc5yòdÝrË-úüóÏó LX¡*˜Y³f™›Y¹r¥î¾ûî|»ãŽ;´oß>ÝqÇźÆÉ“'5lØ05lØPsæÌQrrr©ë  „¨€&Mš¤7ß|Ó4nf÷îÝêСƒŽ=š§oÍš5µyóf;¶Ø×9s挞~úiÕ©SG¯¼òŠ.]ºTêÚÈPÔ3Ï<£… ÊÕÕU’ô÷ß«uëÖúöÛoóôuwwל9s´fÍU­ZµØ×ŠŠŠÒË/¿¬Zµj©wïÞZ½zu¾“P„¨À~øaýôÓO¦q3ñññêÛ·¯ÆŸï8›^½zéСC8p`‰®—‘‘¡5kÖ¨oß¾ªQ£†Æ¯­[·*%%¥T¯P±ŒF£ÑÞE8‹)S¦hêÔ©¦6_:åÅÙ³guÿý÷ë÷ß7mkÚ´©>ÿüs5mÚ4ßcÖ­[§±cÇêäÉ“¥¾¾»»»š7o®êÕ««F UÕªU¤   ¹¸¸Èßß_îîîòññ‘———<==åëë+77·R_༠ƒPS „åYjjª{ì1}üñǦmzã7ôôÓO›Ö¸É}ÌÌ™35kÖ,%&&–aµæ\]]åççg¶-((Ȭ;yzz9eµ···<<<ŠU‹›››|}}‹uŒÁ`P```±Ž‘$???Óブòðð··w±¯eKù~ÙKvxv$þþþrqq±w%âãã#www{—Qb¹–8Gü^¶BM1jTŸ}ö™ž|òIÅÆÆš¶µjÕJ .TË–-ó=æòåËzõÕWµhÑ"ÆÊ¬ÂÒ»ñ111Çy[à† ¦C‡©{÷î¦m¿ýö›Z·n­§žzJñññyŽ Ó{ï½§#GŽèÑG•§§gY– (‡Sä‡ÄD€|Ô¨QC?üðƒ.\hz”*33SsçÎUãÆµxñâ|Ö¬_¿¾,X Ó§OëÙgŸ-Ö”¡/ƒÁ GyDPŸ>}LÛ/^¼¨‡~X·Ür‹¾úê«|Å Óo¼¡sçÎé‹/¾PçÎjÌ |á7  PõêÕÓªU«ôÓO?©I“&¦íGÕ€ÔªU+­^½ZYYYyŽuww×ÀµaÃýûᅳ3gŽî¼óNÀªø­°H×®]µÿ~Íž=Ûl¦®½{÷ªoß¾jܸ±,X äää|¯^½ºÆŽ«;vèòåËZ¾|¹F­zõê•ÕK”SÌ~V Ì~×EEEé­·ÞÒ¼yó”`¶¯J•*=z´FŽ©›nºÉ¢óEFFê·ß~Ó¾}ûtúôi]¸pAÿþû¯.]º¤¤¤¤|àÿcJçâ Ô€¹èèh½óÎ;z÷Ýwó­M›61b„ Tªµ233¯„„%%%)99YqqqÊÊÊ’Ñh4M?‘‘a Y×®]SRR’éÉÉÉJKK3;oVV–âââò\/))I×®]+²®´´´ïLY"{Öž’ÈïõØBA_#äý`7„šâ Ô@þbbb4{ölÍŸ?_QQQyö»ººª}ûöêÕ«—z÷î­† Ú¡JeÁ^A8ûÍ’*ê‚‚Þ„(èMÜ¡7==Ý´HqJJŠétBB‚i6Éìkddd(..N111Š5ý[”°°0uêÔIU«VU•*Uª*UªÈ×××lÍ///ÓÔûE-È[’…Ë‹o¡ —––¦•+WjáÂ…Ú¾}{ýn¼ñFµoß^wÜq‡Úµk§o¼Qƒ¡ +ç£èèh:uJëÖ­Óœ9sÌö?üðÚ8q¢êׯ_¡&d!Ô¡,wøða-\¸PŸþy‘YëÖ[oU£FÔ¨Q#ÝxãªV­š$ów³ùûûËÅÅÅÔ®T©’¬ÿ"”;Ž“”ššª””‹ûÇÇÇ+33Ó¢¾9ïØä>6磵’ùŸôôt­X±B‡Ê÷¼žžžáz IDATjÔ¨‘êׯ¯+((HÁÁÁ TPPéLöÏX???¹¹¹™Mã,5ÅD¨€âKOO×–-[´jÕ*}÷Ýw:þ|™]ÛZMäQö¬å[qÿ€¶&{ŽÊ9ö—ýóÊÛÛ[ ›››üýýåíím’‚‚‚T¹reÕ®][uëÖUµjÕÊüÎ;¡¦˜5P:F£Q{öìÑ÷߯ýû÷ëðáÃ:}út¾kÜœO`` Æ¯_|±Ì®i0 ®ev5@…g0Ô¦MµiÓÆ´-##CW¯^ULLŒÙ¿ÉÉÉfïÞÆÆÆÊh4*11Qéééù¾£Ý§¨m¥™u,›5gËžÉ ÊZöDÙ¡eO(àçç'WWWÓ~ƒÁ`z4Íßß_f!!!v»S#I„€]¹ºº*44T¡¡¡ö.°»œ3aÁzJ;ýºTò7CrÎzVÜÿÝs¿Ñ‘}í„„½þúë]÷þûïW»víª…„„(((H...ò÷÷/wÄj„ŸŸŸ½K€{ÿý÷-îÛ¯_? 2ĆÕ8–Š3×ऌF£,X`qÿ7ß|³B=ÖJ¨ÜÚµkµÿ~‹ûÿñÇúä“OlX‘c!ÔnúôéÅ>fòäÉŠ·A5އP8°M›6içÎÅ>îòåË% CΈP8°×^{­ÄǾóÎ;:s挫qL„ÀAíÞ½[›7o.ññ©©©eº¦½jõÊ+¯”úŸþ¹öíÛg…j¡p@ûöíÓ?üPêódeeiÞ¼yV¨Èqj4þ|«ëàÁƒV;—#rµwòJMMUÆ §øøx¥¥¥ëxwww«qãÆzá…lT¥c Ôè³Ï>+t¿Á`0}n4m]ŽCãñ3NPÀ©j85B §F¨àÔ5œ¡€S#Ôpj„NPÀ©j85B §F¨àÔ5œ¡€S#Ôpj„NPÀ©j85B §F¨àÔ5œ¡€S#Ôpj„NPÀ©j85B §F¨àÔ5œ¡8”]»v©ÿþºå–[T¥JùùùÉ`0ÈÛÛ[Õ«W×Í7߬öíÛk̘1Ú´iS¡çZ¶l™n½õVË`0äùhß¾½"##Ëè•°W{Ç÷é§Ÿjýúõ:vì˜Î;§ÔÔTÅÆÆÊÃÃCþþþò÷÷W•*UÔ¸qcõïß_={öÌ÷¨çž{Ϊµp„KîPSµjU‹î´¤¦¦êñÇ—$¹¹¹é«¯¾RóæÍmR# üÈïNMÓ¦M‹ùäU­Zµ¬Jà 5°X~Ójäé7cÆ ýüóϪU«––.]*ƒÁPV%Ê‘óçÏçÙV¥J³vJJІªääd½üòËêÒ¥KY•Àj`±Ücjò{ôlÛ¶mz饗äêêªåË—çù倥, 5?þ¸öï߯Ž;êùçŸ/«Ò8B ,VÔ´š‘‘‘€sËo¢€Ï>ûL|ðBCCµlÙ²£7nœêÔ©£_~ùEo¼ñ†nºé&…„„¨ÿþÚµk—Ù“+V¬(ÕkP65°Hdd¤233Ͷ]¾|Y={öT||¼UÆÑôíÛWñññêÕ«—i[LLL©Î p^¹CMtt´yäÓ8šêÕ«—è¼C† Ñï¿ÿ®Ûo¿=Ͼ°°0½þúë¦öÙ³gKt e‹P‹ä~ôL’FŽ©³gÏZm$¹»»kÔ¨Q¦6ƒ4 bJKKSTT”Ù¶¬¬,%''ëÙgŸU·nÝJ|î§žzJþþþîïØ±£ésòœ¡É/ÔH²Ê8šÜrΪF¨€ŠéÂ… 2y¶wèСDãhŠ#çä;w¶éµX¡)(Ô”vM~r¾+F¨€Š)¿ñ4!!!Z¶l™\]]mzíìIj ƒ|ðA›^ €uj`‘‹/æÙf«õhr>@¨€Š)w¨ÉGS£F ›_{ñâÅ’¤ûï¿_-[¶´ùõ”¡É}§ÆšãhrË9“MJJŠÕÏp|.\0kOš4IÝ»w·ùuׯ_¯mÛ¶ÉÇÇG3f̰ùõX¡Éj<==õÕW_YuMN9+àN TL±±±¦Ï;wî¬W^yÅæ×LLLÔØ±c%Iï¾û®êׯoók°B ,’3Ô,Z´H­Zµ²Ùµr†šÌÌLeeeÙìZÇ”””$IªW¯žV¬Xaóq4’ôä“Oêøñã>|¸ÙLœ¡É5ãÆÓðáÃmz­J•Ì¿-322lz=€ãINN–V¯^­Ê•+Ûüz ,ÐǬŽ;šÆÔp„X$..N]ºtÑÌ™3m~­ôôt³6¡*ž›nºI«W¯Ö­·ÞjókýôÓO;v¬š4i¢U«VÉÃÃÃæ×`]¶¿—‹raòäÉzðÁËäöîP“™™iókË“O>Y&×9|ø°  °°0ýðà *“ë°.B ,2nܸ2»VîP“s4¬åòåËêÕ«—’’’´~ýz³ÅŸ8?ƒÃINN6kÇÄÄØ©@y•’’¢Þ½{ëôéÓ=zt¾ I'&&j÷îÝ:räˆ*PܩÉŒŒ4k_½zÕN•Ê«Q£FiÏž=’¤´´4={V‰‰‰:räˆ~ùåíܹS¿ÿþ»222ôè£jÁ‚v®@a5p8W®\)´ @i|üñÇZ±b…©½téR-]º´Àþ]»v-‹²”‚Ã>~–žž®­[·ê­·ÞÒСCÕºukM›6ÍÞe¡ >|ج}ðàA;U(þúë/ÝqÇjРjÖ¬©   ÓD8 R5Ô¸qcEDDj`rêÔ)Í;W}úôQÍš5åææ¦÷ßßÞeAx§&33SÏ?ÿ¼–,Y¢èèh³};w¶SU(K›7o6kïܹÓN•Ê£²XžåÏž={Ô¶m[F³í[·nÕ#[³fzõêeÇ*Í¿7*òߥƒÁPæ¡&11QóæÍÓìÙ³uéÒ¥œÅ¨uëÖòööÖæÍ›MÛ»wï®õë×—e‰"Ô”?¥ýE‘SåÊ•5`À iLqþ@4Š-Ö5Jòú­!++KÛ¶mÓ¶mÛ4vìXuîÜYTß¾}Tæõ8Н¾úJO>ù¤._¾¬¾}ûjݺujÒ¤‰:¤ˆˆ?Þ¬‡ìh‹±ŒÌ;×X©R%£$£———qåÊ•yúôéÓÇ(ÉìãÀeUb‘^~ùe³ÚÊ›Ü_{>¬óqóÍ7gÍše¼xñ¢½ÿ€Erÿ¾ã£ü¸»»ï½÷^ã_|aLII±÷·`™IJJ2þ÷¿ÿ5} >ýôÓ<}æÏŸŸçëõÖ[oÙ¡Ú¼rÖT‘Ie4QÀÔ©S5vìXeeeÉ××Wk×®U¿~ýòô»á†ÌÚ5kÖÔ-·ÜR%6søðaMœ8QµjÕRïÞ½µmÛ6{—€™k×®iÍš54hªU«¦Ç{L‡¶wY6«.]ºhÉ’%òððÐÊ•+5lذ<ýnºé¦<Û˜$ÀñØ<Ô,Y²DS¦L1µ?úè#Ý}÷Ýùö½pá‚Y;""‚G¢Pn ¹¸¸ð= ph :uê”ÙòåMTT”:wî¬]»vI’,XPà ÿ˜˜³víÚµÕ¤I›×ˆâ±é˜š_~ùE?þ¸©ýÄOè(°ÿž={ÌÚ=zô°Ym@YiÚ´©FŽ©aÆ1 à°š6mªáÇkÈ!ªQ£†½Ë±™´´4Ý{ï½Ú·oŸ$iøðá5jTý³ƒO¶îݻ۴>”ŒÍBMJJŠFešÏ»fÍšš9sfýÿùç³iòÜÜÜÔ¹sg[•ØTݺu5xð` fU;V»wï–$U©REï¾ûn¡ý·lÙbÖæÑ3Çd³P3uêT;vÌÔ~õÕWåíí]`ÿeË–™µÃÃÃåïïoѵþùçmÙ²EáááyÆåÀrÆ 8 5 1Mé|Çwð˜§Õ¥KuéÒÅÞeàÿ³öï“o¼Ñd*ÚØååË—kÑ¢E¦öóÏ?¯€€€ûGEEé?þ0µ-yÓýøñãš6mšÖ¬Y£J•*éД)SRú€Ù$Ôüûᅳ3gŽ©Ý¸qc=øàƒö7úä“O̶ÝsÏ=E^gíÚµš:uª~ûí7IÒ˜1cŠLÛ€5ùúúªOŸ>2dˆºví*W×2%‹Üpà êß¿¿ Pa—HJJÒĉMíêÕ«› “ÈÏ’%KÌî&¶mÛ¶Ð4oÞ<=óÌ3JKK3m›?¾¾úê+Í›7Oýû÷/Å+@alòØŒ3”ššjj=Z•*<'Á®]»ÌîêHE§9uê”î½÷^³» Ùëß¶äã㣞={êPÏž= ½ €½Ü|óÍêÛ·¯úõë§-ZØ»»›5k–Ùz3C† ‘»»{ý333µ`Á³m…=zöþûïk̘1ùî»r动ÈÈH=ñÄŬ–°z¨IHH0»ëâêêªáÇzÌ×_mÖ®]»¶n¾ùæB©_¿¾F¥?üд-22²£"sqq±hQ6õêÕK<ð€zôèA”™J•*Y4ŽÈ`0¨uëÖ¦ Ã#ùÿ'55UsçÎ5Û6tèÐBYµj•Ξ=k¶­ PóË/¿hìØ±òööÖ¸qã4hÐ U®\Y7nÔäÉ“uþüyF=ù䓪\¹² Tº„<¬j¾ÿþ{%$$˜ÚíÛ·WÕªU =fÓ¦MfmK=“¤÷Þ{Ok×®ÕåË—%©Øô€àà`]¹r%ß}¾¾¾êÕ«—ú÷ï¯{î¹G^^^e\RPP¢££óÝçêꪻîºK}ûöÕ}÷ÝW®g-+üÑljæêÕ««yóæöOOO× /¼`¶-,,¬À;^ãÆSݺuµjÕ*³éž‡ ¦ððpÝvÛmºzõªŒF£&MšD¨±«‡šüѬ]Ô`ªÄÄDø@çÎS›6môÐCYí5ÁœÕCÍ AƒòÌ(‘˜˜¨yóæéÀŠˆˆÐO?ý¤ÀÀ@I×§ÇËéµ×^S»ví´iÓ¦Çãä–ýe4ÍV}4h Ç{ÌlÛ‰'´téR:uJ>ø vîÜ©ZµjIÊûFù²eËäïï¯-[¶˜ }(Ê¥K—ôâ‹/ÊÍÍM .,t1z”ŽMÆÔ|ýõת]»¶Ùv777͘1CëÖ­3{®ñöÛo7}îíí­Y³fiýúõòóó³øš9gO#Ô ·éÓ§«U«VfÛ<<<´`Á-]ºÔlaí.]º˜>7 züñǵ{÷î"×^ÌÉh4ê‘GÑÕ«W5sæÌB×ÅAéÙ䡾zõêiÏž=šƒÁ €€U«VM7Þx£FŒa§WQ65€òòòÒ‰'­´´´b¯K—.騱crww·A…ŽƒP8 'žx"Ï™’0 züñÇ­P‘ã"Ô¨E‹Šˆˆ(õyî¹çµhÑ 9.B à ^zé¥RŸãÙgŸµB%ŽP8¨¶mÛêî»ï.ññ:uRxx¸+rL„À½ð v9Ö™jVÒ»-íÚµ+Õ]gB¨\IÆÅXc<޳ Ô®GjÙ²¥Åýo»í6«Ìœæ,5€(ÎZ3O<ñ„ +q<®ö. ¢ÊÈÈPBB‚½Ë(•¸¸8eeeÙ»Œb‰•Ñh,öq%}­E—œœ¬´´4S;--MÉÉɦvff¦âãã•””dñ5O:¥/¿üRÁÁÁ R@@€¼½½ååå%WWWùùùûu82B Àîþþûo}ûí·úöÛoµgϧû Ík¯½fQ¿   I’ŸŸŸ\]]ååå%OOO³à“½ÏÝÝ]>>>¦ãäï﯀€($$DuêÔQÕªUe0ló @¨”¹ÌÌLíÚµËdŽ?nï’ BЉ‰1û×BBB4bÄÍœ9³Ì ¡P&ŒF£vîÜ©åË—ë믿Vdd¤½K€ ÇÓÓS^^^’þïŒ$y{{ËÃÃ#OŸ€€UªTÉì.ŸŸŸüýýMÿúûû+((HÕªUS­Zµäïï_毋P°©ýû÷kÙ²eúâ‹/töìY³}Õ«W×°aÃl§ê,÷ÿÚ»÷ ¨Îû àÏ.»Ëeo€\‘¨b¢Æ˜d¼µ¦1£vÓX#hµh¨IˆQB±Zp¢V­†™b¥/㥢Q©µíD“šXIÍLPÉD#U`0ˆÜ¯»ì.ðû#?NYXvØ]v—ç3ÃÈ9ç=ïùz?ϾïyO÷ÿð™\.‡L&ê2,ê~3åÌ\å×s ºß¼º²ÎÎNÔ××Ûõ=Ÿ{±†N§ëõŒV«…F£1Ú×ÒÒN½^ææfh4hµZ466Â`0 ¾¾õõõ(//ÇÇÍ^s„ X´h¢¢¢øúú SÄ\áß±pþMˆˆÈåhµZœùäUHDäÚd2&L˜€={ö ??Ÿ|ò `îܹHIIqøú΂¡†ˆˆ­  ï¿ÿ>.\¸ƒÁ`tlÊ”)ˆÇÊ•+…ùØDD4xÛ·oBMjjê° 4C  Baa!vìØÜÜ\£w>ˆÅb,^¼ øñ÷|LOÍÍÍÐëõ}7·ÂXÏ:Ím·´´ µµÂñ´´4œ9sðòò‚J¥‚T*ž£ñññX,†Z­îum‘H___«÷ÿ[ ÚY0ÔQ¿aÇŽ8þ¼Q˜ñòòÂk¯½†wÞy?þ¸Å~¾ýö[äææš½‰pý¹1JŽx`ÚVlulo}QcO]/P´K7×ýÑõ:¹¶K—. u C¢ëï&C Y­¼¼›7oÆéÓ§^éããƒuëÖaÓ¦M 5ÛGqq1rrrpæÌ|õÕWö.™ˆˆ††""²H«Õbß¾}ؽ{·Ñò¤2™ o¼ñ’““Üçùeee8}ú4rrrpóæMG”LDDÃC ™õ·¿ý ¸wïž°O$áç?ÿ9víÚÕç43N‡>úÇ7¹€‘­0Ô‘I¥¥¥X·n._¾l´Μ9HOOÇ´iÓLž×ÜÜŒC‡á÷¿ÿ½Å—ÄÙC éììDVV6mÚdôPó¨Q£––†˜˜“ˆ666"==éé騩©qdÉDD4Ì1Ô‘ ¬¬ qqq¸r劰O"‘ !!Û¶mƒB¡èuŽÁ`ÀŸþô'lß¾UUUŽ,—ˆˆC ý¿ãÇcýúõF£3Ó¦Mßÿüg<ýôÓ&Ϲté6mÚ„Û·o;ªL""¢^jˆˆ†9N‡wÞyöÉd2ìØ±IIIHzÿWQ^^Ž·ß~¹¹¹«S©TB­VÃÛÛ*• ‰J¥R© …2™ r¹@ï—Â) H¥RaÛËË ÞÞÞ¶‡‡T*•Ñ9jµb±XØöññ§§§Å:{^ËZ¦j¬ÖBDäjjˆˆ†±òòr,[¶ 7nÜöEEEáĉ&hooGFF¶nÝŠ¦¦¦A__¡P 22FXX‚ƒƒ1jÔ(øúúB¥RÁÏϯWÀ ""ꎡ†ˆh˜úôÓOñꫯ=}ûöbtùïÿ‹Õ«WãóÏ?ð5Ç—^z ?ùÉO0mÚ4Œ3Æä¢DDDýÁPCD4 ]¸p111hkkðÃÔªÌÌLüâ¿0Ù>++ ‰‰‰hnnî÷µd2V®\‰×_Ï=÷Ü ê&""2…¡†ˆh˜9zô(âââÐÞÞ3f rss1eÊ”^mëêê‹‹/öû:R©kÖ¬AJJ ÂÃÃ]7Q_jˆˆ†‘à׿þ5:;;“'OÆG}„ÐÐÐ^m °téRÜ»w¯_×H$X½z5¶nÝŠ±cÇÚ¤n"""søÔ%Ñ0‘‘‘ÄÄD!Ð<ÿüó¸víšÉ@sìØ1Ìœ9³ßfñâÅ(,,Dvv6 9 Gjˆˆ†óçÏcÆ ÂvTTþþ÷¿÷Zú¸³³)))صkW¿úüñÇ‘••…yóæÙ¤^""¢þ`¨!"rswîÜAll,:::!!!øç?ÿ £v:¯½öNœ8außb±ëׯǮ]»àããcÓº‰ˆˆ¬ÅPCDäÆ bbb„wÊH¥Rœ9s¦×ƒûZ­K–,ÁåË—­î;88§N /¼`Óš‰ˆˆú‹¡†ˆÈ8p·nݶ÷ìكٳgµÑëõX¶lY¿ÍìÙ³‘““còy"""GãBDDnêþýûؾ}»°½dÉ$$$µéèèÀÊ•+qéÒ%«û}óÍ7ñ¯ý‹†ˆˆœC ‘›Ú°aZ[[AAAÈÌÌ„H$2j³uëVœ={ÖªþD"¶mÛ†ƒB*•Ú¼^""¢âô3""7tòäIaôE$áðáÃ6jsîÜ9ìÞ½Ûªþd2Ž=Š˜˜›×JDD4X 5DDn¦¦¦‰‰‰ÂöÚµkñÓŸþÔ¨ÍÝ»w±fÍá5æÈd2|øá‡X¼x±Ík%""²†""7³eËûì3‹}ÅÄÄ`ëÖ­6¯‘ˆˆÈ^jˆˆÜÀîÝ»QZZ P«Õ½¦˜544`Ë–-û™üðCa;==žžžFmvìØÖÖV³ýÌŸ?Ÿ ‘Ëb¨!"rQíííØ¸q£°½páB,Z´È¨MYYŽ;f¶¹\ެ¬,£•Òˆˆˆ\ C ‘‹:xð R©èÕ&-- :Îl?IIIxì±ÇìR#‘#0Ô¹ ªª*lÛ¶MØ^¿~=&NœhÔ¦²²ÙÙÙfû ŦM›ìR#‘£0Ô¹ äädÔÕÕ‚‚‚ðî»ïöjsèÐ!hµZ³ý¼÷Þ{\팈ˆ\C ‘‹ÉÏÏÇáÇ…íÔÔTøúúµ1 ß73nÜ8¬ZµÊ.59C ‘ 1 xã7ÐÑј:uªÉUË.\¸€˜í+11v©“ˆˆÈ‘jˆˆ\ÈîÝ»ñå—_ Û|ðÉ`räȳýøûû#66ÖÖå †""QTT„;w Û+V¬À~ô£^íªªªpåʳ}­[·ŽÏÒ‘Û`¨!"rƒkÖ¬–gV«ÕØ·oŸÉ¶9990 fû[±b…Ík$""* 5DD. 55ùùùÂöÞ½{b²í… Ìö‰'Ÿ|Ò¦õ %†""'wíÚ5¼ÿþûÂö¼yóg²mKK òòòÌö·|ùr›ÖGDD4ÔjˆˆœXEE¢££¡×ëü0íìÈ‘#‰D&Û_½zmmmfû\°`Íë$""J 5DDNJ§Óá•W^AEE…°/##=öXŸçX¥ñööÆ´iÓlV#‘3`¨!"rR6lÀ7„í+V`åÊ•fÏ)**2{|ÆŒÉd6©ˆˆÈY0Ô9¡ŒŒ dff ÛO<ñ„Ñv_¾þúk³ÇgΜ9èÚˆˆˆœ C ‘“9yò$6lØ l+ œ={ …Âìy (++3Ûæ©§ž²IDDD΄¡†ˆÈ‰\¼x±±±èèèˆÅb?~‘‘‘Ï-))Agg§Ù6ãÇ·IDDD΄¡†ˆÈI\½zË—/7zqæþýûñòË/[u~÷ú1àúˆˆˆœC ‘øÇ?þÅ‹C«Õ û~ûÛßbãÆV÷ñèÑ#³Çƒ‚‚àëë;à‰ˆˆœC ÑËÎÎÆ’%KÐÒÒ‰DHMM5zá¦5>|höøØ±c\#‘3c¨!"B;vì@\\œ0åÌÃÇBJJJ¿ûª¬¬4{<00p@59;ÉP@D4i4ÄÇÇãèÑ£Â>???œ>}/½ôÒ€ú¬©©1{< `@ý9;†""»sç–/_ŽÂÂBaß„ ð׿þ“&Mp¿]Ó×ú4ྉˆˆœ§Ÿ9бcÇ0}út£@ƒ/¿ürP°jFŒ1¨þ‰ˆˆœC ‘Ô××ã—¿ü%bcc…ð!—Ë‘S§NA©Tú 5DD4\qú‘åää !!Áhu²©S§âÔ©SV½TÓZ–BB¡°Ùµˆˆˆœ GjˆˆìäþýûX´h¢££…@#‘H°yóf|ñÅ6 4ÐÜÜlö¸M¯GDDä,8RCDdc|ðRSSÑÚÚ*쌌ıcÇ0cÆ »]×ooo»\—ˆˆh¨q¤†ˆÈF:::pöìYDEE!99Y4R©›7oÆÍ›7íh@§Ó™=Α""rW©!"²?þIIIF«šÀܹsqèÐ!›O53¥½½Ýìq†""rW©!"„Ë—/cîܹ˜?¾Q =z4N:…O?ýÔ!øa¤ÈN?#""wÅ‘"¢~Òét8wîöîÝ‹[·n“ËåøÍo~ƒ¤¤$‡ŒX©‘J¥ª„ˆˆÈ±jˆˆ¬tïÞ=deeáÈ‘#¨¬¬4:æé鉸¸8$''#44tHê³j<<<T ‘c1Ô™QUU…³gÏâôéÓ¸~ý::;;Ž{zz"66)))=zôUù†""®jL¨¯¯GMM jjjP[[+ü˜——7Ô¥‘”””àÒ¥K¸xñ"®^½ ƒÁЫMHHâãã±nÝ: A•½Y 5b1£$""÷ÄPÓͯ~õ+9rÄâA‘Hdöø‹/¾ˆ+W®Ø¢4"²£ºº:\¿~×®]ÃåË—ñÕW_™l§R©°dÉDGGcþüùN÷Œ Gjˆˆh¸uöœK1Œ}þùç˜5k–MúòððÀÍ›7ñÔSOÙ¤?"²ªª*ܸqyyyøøãqëÖ­>Wóòò‹/¾ˆeË–aéÒ¥Ëå®Öz‰Äl°©®®Æˆ#X‘ý‰D"Gjº™9s&ž{î9|ñŃîkíÚµ 4DN@£Ñà믿FAAòóóñïÿß~ûm¯gcº;v,.\ˆ… â…^p™÷»X=æô3""rW©é!''ÑÑуêC©Tâ»ï¾ÃÈ‘#mTYãáÇ(,,DAA PXXˆï¾ûΪ—RΚ5 ,À¢E‹0iÒ$Ul[–Fj R©X‘ýq¤Æ„¥K—"<<eeeîcË–- 4Dv¢×ëQZZŠââbãîÝ»¸}û6 {-³Ü—#F`Ö¬Y˜3gfÍš…gžyÆéž±ŽÔ‘»âH iiiؼyó€Î=z4îܹÃ7w ‚^¯GII‰ZîÞ½+„˜ÒÒRèõz«û’J¥xâ‰'ðôÓOãÙgŸÅìÙ³eqª–+²4RÓÒÒâ2S鈈ˆ¬%‰D 5&ÔÔÔ ,, Z­¶ßçfggcíÚµv¨ŠÈ}ÔÕÕáÞ½{øþûïQQQÑëû²²2“Ë(["•JéÓ§} —<<<ú\ð´Z-<==X‘ý1Ô˜±jÕ*œ8q¢_çDFF¢¨¨ˆË¦Ò°ÔÖÖ†ªª*[[[QWW‡¶¶6Gý´!‹€ÀÀ@"$$#GŽÄèÑ£ŠQ£F!,, !!!|¶ÃÁ¸ò¹³ajºnþºÔ××C¯×£©© Z­µµµ¨©©±ºÏââbdgg ï€P«Õ‹Å‰Dðõõ5{®‡‡‡MßÑóæx ºß„D÷rsšššz=ÞÞÞnr” µµÕä z]]]¯}]¿=544ôú$»çŸ‡.ÝÃG—¾~m»B‡»Q«Õðóó3ú1b‚‚‚ˆ€€„„„!&007ÏCÈÜßYN;#""wæ°égÍÍͨ©©Á£GP]]ææfᦱ¡¡ƒÁèÓf ÷§Ý:---Âv÷O¹ãÖžm­½É&r*• J¥RøR«Õ}îë\üüüàïïÏ€âbÄbqŸÁÆÓÓÓ-ƒ7‘ݧŸµ¶¶"99¹¹¹(--µç¥ˆ\†\.‡L&ƒ——¼½½!‘H T*Fõ|}}!“É P(„ö~~~ÉdËåP*•ÉdP«ÕB?*• ÞÞÞP(Giøát?""rg©éèè¦tÕÔÔ ¶¶---ÐétÂ4¤®Ñ–îÓŸzN;ê9eÉÔT©žS’:;;Q__o´ÏÔÔ'²ž5SëzÈT;©T …BaUÛ®›þ.ÞÞÞðòò¶•J¥Ñ’¿¾¾¾Â³Pb±jµºÏëv…‡.]a£‹J¥¦ø˜ *]S‰ìÅÜHMHH¾ÿþ{WDDDd]( ëbg[ѨkŠ[KK ÚÚÚP__Fƒ¦¦&”••¡¸¸Ÿ|ò nݺeòü€€L™2ãÇGxx8”J% ”J¥p3kꦼç t—î7Ù]zÞˆõ—ÏP—@DDd7ÃþNY"‘ϘóÇ?þñññFûÒÒÒ°qãF£O뉈†Š¹÷î#˜DDDî†ï©é‡ÈÈHܾ}0fÌÜ¿ˆ+""Gék•¼îúZ¹¯;SSaM±fž  ¼úê«}¶}þùçñŸÿüÇâu‰ˆˆ\ͰxOMÏUкô¼±èz¶øß”4Fƒªª*|GŽÁáÇqõêUðGˆˆ¨dòðð@BBœœœ4Ú. x"-IKKÃñãÇqìØ1=zÇGZZš¾Ó""""ª[·.D¯°# x" ¹}û6Ž9‚£GâèÑ£¸rå —#""" 2óçÏ×X{,à‰TôâÅ ìÛ·±±±ˆ‹‹ÃíÛ·õ’Ι››C*•Êß_§X"‘ L™2jµ)–••ŒŒŒ”¾®4(S¦ $‰¾ÓЊ¢¸~^^^‘¼Û–’’Rä¦ì½zõ ¹¹¹:ï÷Î;ò? 777è<G™ÏHQÞ“D"‘`ïÞ½hݺµfÚcO$Nvv6Ž=Џ¸8ÄÆÆâÌ™3Ån„ÝÒÒåË—‡ƒƒÊ•+'''ØÙÙ¡L™2ò_ï6§x÷ë¿›_ØØØð:"*Öâââ Q‘‘‘ ÕcF¤ ŠŠûÿ¾–››+_žùÝ—‡ììl¤¦¦"-- )))HIIÁ“'OpçÎ\¿~Ož<•ƒ³³3.]º[[[µß x"®\¹‚ØØXÄÆÆâàÁƒEn¤ï8::ÂÕÕ...¨X±¢ü÷...¨P¡`ff¦ïT‰ˆôªiÓ¦8räˆü¸zõê¸té'H%2™ 111èÕ«^¼x!ÿí·ßbÖ¬Yj÷Ëžè?²³³±oß>lݺ;vìÀãÇõ’œ±±1*Uªxxx J•*ðôôD•*Uàîî.zKi"¢Ò*66Ÿ|òI¡óýõzö쩇Œ¨¤8þ<š4i‚7oÞ(Œ355Å7P±bEµúcO¥Þ›7oM›6aÛ¶mHMMÕk>ÆÆÆ¨X±"ªW¯Ž5jÈÿ[£F ˜ššê57"¢â¬yóæHHH(t¾jÕªHLL,0eHY .Ä!Cã¡V_,à©Tzöì¶mÛ†­[·">>™™™zÉÃÖÖuêÔA:uP·n]Ô©Sžžž|“ˆHÃbbbôÑ××­[‡^½zé0#*id2üýý?ø%ñ¿ŒŒŒpùòexyy©Ü x*5îܹƒ¨¨(DEEáÈ‘#:ÕÒÒõë×G£FP¯^=Ô©SGk[,QAMš4ÁÑ£G?úzµjÕpùòeŽÂ“ZŽ;†Æ Æ}ýõ×X°`Êý°€§íùóçØ°aÖ®]‹ãÇë´o///4lØ 6D£FP³fMþÃ@D¤{÷îE›6mãÖ®]‹Ï>ûLQIÖ¹sgDGG+Œ±¶¶Æ£G`ii©R,à©ÄÉÊÊBLL Ö¬Yƒèèhdggë¤_www¢I“&hÙ²%\\\tÒ/)Ö¬Y3>|X0ÎÓÓ‰‰‰œÆHj9zô(š4i"·lÙ2|ñÅ*õÁžJ™L†„„¬Y³›7oFJJŠÖû¬Zµ*888h½O""RΞ={жm[ÑñkÖ¬AïÞ½µ˜•~~~8yò¤Â˜:uêàìÙ³*µÏžŠµk×®aíÚµX»v-îÝ»§Õ¾lllвeK!((nnnZ툈Ô÷þºïB¼½½qùòe® OjY·n¨/‚/^D­Zµ”nŸ÷ˆ¨Øyóæ Ö¯_¥K— ~»U—:t耠  4lØ·U‰ˆŠ‘ƒ*U¼ÀÕ«W±eËtëÖMKYQikkk¤¥¥)Œ‹ŽŽV©€ç<7oÞDDD"""œœ¬•> ѰaCtèÐ]ºtAÕªUµÒi_ëÖ­§ôuÿûßÿpöìYH$-dE¥EXXV®\©0Æ××§NRºmðT¤åææbûöíX¼x1âââ «¹¹9‚ƒƒÑ¹sgÃÖÖVã}‘nÔxû¦¦¦hÛ¶-zôè:ÀÂÂBã}‘þˆYÊO‘¦M› nÈC¤H^^œœœðüùs…q‹-ÂàÁƒ•j›<)Ä¢E‹°uëVäääh´m´iÓ=zô@ÇŽaee¥Ñö‰ˆ¨h¸té|||Ô¾k{ðàA4oÞ\CYQiÔ¿üùçŸ cºuë†M›6)Õ.±&½ËËËÃÆQ¯^=`ãÆ-Þýüü°`Á$%%!::Ÿ}ö‹w"¢lÆŒ™r9}út dC¥YÇŽcTÙh’#ð¤7ÙÙÙX¿~=¦OŸŽk×®i´mgggtíÚ €FÛ&"¢¢+)) nnnÙÄO"‘àÊ•+ðööÖ@fT¥¦¦ÂÞÞyyy ãîß¿Š+Šn—#ð¤siii˜1c*Uª„~ýúi¬x—J¥øôÓO‹û÷ïcîܹ,Þ‰ˆJ™%K–hln™L†E‹i¤-*lllDÕ"ʎ³€'yòä ÆŒWWWŒ3Ož<ÑH»^^^øí·ßðàÁ¬_¿Ü€ƒˆ¨”Rv.±˜ö8YÔ!æ9ŠcÇŽ)Õ&w¥!­»yó&~ûí7üùçŸÈÌÌÔH›R©]»vÅ—_~‰æÍ›s­^""¬X±7nDbb"’““‘ššŠüüü1wîÜ‘å•+W.ôoˆ­­-Ê”)ooo„„„ðßRK“&M0gÎ…1çÎSªMÎ'­¹{÷.&OžŒµk× Îý«B… ÄJ*ËÉÉÁªU«0eÊ<~üXíö0xð` 6 vvvȈˆˆHÿcž>}*º=ð¤4™L†õë×ã‡~À­[·ÔnÏÃãFBß¾}ajjª ‰ˆˆˆŠ1ü³gÏD·Çž”rêÔ)Œ1GU»-///Œ7½zõ‚‘?ŠDDDT2‰)à“““E·Çª‰DIJJÂäÉ“±bÅ µ—„¬^½:F͈ˆˆJ1ü»•‘Ä`õD effbΜ9øùçŸñêÕ+µÚªY³&&L˜€îÝ»s§T"""*5Ê–-+“‘‘!º=ðôQ[¶lÁ¨Q£”ZÖèCÜÝÝ1eÊôêÕ‹…;•:†††‚1,àI-·nÝÂ!C°gϵÚ)_¾<&L˜€/¾ø‚ë·Q©%‘Hc²³³E·Çžärrr°hÑ"Œ?^­µÜ­¬¬ŽñãÇÃÊÊJƒ?b x11ï°€'À¡C‡0xð`$&&ªÜ†¹¹9†ŠÑ£GÃÖÖVƒÙ_bŠse¦³€/åž>}Š‘#GbíÚµÉd*µa``€~ýúaÚ´i(_¾¼†3$"""*ÞÄç'A2™ «V­ÂÈ‘#ñòåK•ÛiÖ¬~ÿýwÔ«WOƒÙ•2™ )))011………¾Ó!-Sœ‹yÐõ. R Ý»wmÚ´AXX˜ÊÅ»››6n܈C‡±x'""éܹs˜>}:Ú´iƒJ•*ÁÔÔvvv°¶¶ÆðáÃõi‰˜5Þ•ùÇøRD&“aÉ’%=z´Êkº[ZZbܸqøæ›o`jjªá ‰ˆˆJ®eË–aĈ\.0??=ÒCV¤ )))‚1–––¢Ûã|)qëÖ-´lÙááá*ï‰ýû÷Ç70vìXïDDDJúòË/‘œœŒ 6ÀÁÁ¡Ðë­ZµÒCV¤ bf<(3Ͼ„ËÏÏÇœ9sP»vm8p@¥6jÖ¬‰C‡aÕªU|H•ˆˆH fffèÑ£Ú¶m[èµvíÚé!#Ò1#ðÊ,½Í)4%ØÝ»wÑ·o_$$$¨t½……&Nœˆo¾ù†1iÐû#²µk׆«««ž²!mSÀÛÙÙ‰n| µiÓ&|õÕW*?¤Ú¾}{ÌŸ?nnnšMŒˆˆˆpþüùÇ}/ÙÄÔcšVõ1œBS¼xñŸ~ú)zôè¡Rñîêꊨ¨(lß¾Å;‘Ü¿÷ïß/p.88XOÙ.ˆ©ÉÊ–-+º=ð%H||<|||°qãF¥¯544Ä·ß~‹ÄÄDtêÔI Ù€BS[íììШQ#=eCºððáCÁ˜råʉnShJ€¬¬,Œ7¿ÿþ»J»©z{{cåÊ•hذ¡²#""¢ÿÚ»woã6mÚ(µ‰?÷îÝSøºœœœD·Ç¾˜»{÷.>ýôSœŒÿýW~lhhˆO>ùD‘¶=yò™™™ c*W®¬T›œ_ edd૯¾B¯^½”.ÞŒŒ0nÜ8œ9s†Å;‘½|ù£G.p®Q£F°··×SF¤ BÓgÀÝÝ]©69_Ì\¿~=zôÀÅ‹•¾¶zõêX½z5êÕ«§…̈ˆˆèòåËøí·ß°oß>Áþýû‘žžŽ—/_ââÅ‹ðòò*t]ÅŠQ»vm=dLºtùòeÁÎ/a’’’ТE ,^¼XékÛ·o‹/òö‘–S:ˆ)à}}}•n—|qñâEtèÐAp«Ý÷Õ¬Y›6mâ¨;‘<}ú&L(pîcóÞßY¾|y¡s\`¢t8wîœ`Œ*#ðœBSìܹM›6UºxïׯNœ8Á∈HG¦L™‚””ù±««+zôèñÑøÔÔT¬ZµªÀ9ww÷.+I%KNNŽ?®0ÆÔÔÕ«WWºmðz6gÎtêÔ ¯^½}™™"""ðÇÀÜÜ\‹ÙÑ;iiiX½zusaaaòå"?döìÙxñâEs}/Ξ=+¸Âg'>†Shô$77C† ÁÒ¥K•º®råÊØºu+|||´”}Hddd¡‚¬S§Nþü9~ÿý÷BçÛ´i£ñܨè9tè`Œ*Ógðz‘ššŠnݺ!..N©ëZ´h7¢lÙ²ZÊŒˆˆˆ>&>>¾Àq¥J•¨Í˜1£ÐvCCC4mÚT+ùQѢ͞ShtìñãÇð÷÷Wºx:t(bbbX¼éÉû+vèÐᣱ—/_Ƽyó ¯U«lll4ž-ùùù8räˆ`œŸŸŸJís^‡®]»†¶mÛâîÝ»¢¯‘J¥X´h  ½ÄˆˆˆHГ'O ×­[÷ƒq™™™èß¿ÿ÷siÖ¬™Vr£¢åâÅ‹xùò¥Â•`XÀëÌñãÇѾ}{$''‹¾¦|ùòøûï¿Ñ¨Q#-fFDDDB233‘——Wàœ½½}¡¸üü|„……áÌ™3l§I“&Þn•‘‘ÁÅ(J¨={öÆ´hÑBéXßáرcZµj¥TñÞ Aœ:uŠÅ;Q •JaeeUàÜéÓ§ §¦¦¢{÷îøë¯¿àì쌯¿þºP;ÕªUÃÕ«Wáëë‹I“&i5gÒŸ­[· Æ´hÑBåö9¯e+W®ÄW_}…ÜÜ\Ñ×tëÖ kÖ¬©©©3#"""±$ ¼½½qòäIù¹_ý666ðññÁ™3g0þ|û쳎ÊSÉ)øÜ£½½½Ú›yIdÊLЦÊÉÉA¿~ý)úš5j`×®]puuÕbfDDDô_xóæ ==K9’ÆøøøàâÅ‹ c¾øâ ,[¶L­~8¯YYYèÑ£¶mÛ&úšÆcÇŽ°µµÕbfDDDD¤ 'Nœ,Þ gÏžj÷Å9ðjÊÊÊB—.]”*ÞÛ´iƒØØXïDDDD%Äœ9scÊ—/æÍ›«Ý x5dgg£Gؽ{·èkºt邨¨(Þ®#"""*!îÝ»‡Í›7 Æõë׆††j÷Ç^EÙÙÙèÞ½»R#ïƒÆæÍ›!•Jµ˜éÒ/¿ü"øðª¾øâ ôÇ^999øôÓO•*ÞGE‹qw"""¢äÆX±b…`\`` ÜÝÝ5Ò'bURNNBCC%*^"‘`öìÙ1b„–3#""""]›0arrrㆠ¢±>¹Œ¤rssÑ«W/lÚ´IT¼–.]Šj93"""‹ËH’¦:t*§kÖ¬‰‹/B"‘h¤_ÎçI&“᫯¾]¼K$,X°€Å;Q ”’’‚¾}û ï0vìXï§Ðˆ6bĬ\¹RT¬V¬Xþýûk7)""""Ò¹ÜÜ\ 0÷îÝŒõòòB=4Ú?GàE˜4iæÍ›'*ÖÐÐ+W®dñNDDDT½~ý;wÆÖ­[EÅÏš5 FFš3g/`Þ¼y˜:uª¨XCCCüñÇèׯŸ–³"""""]Û»w/êׯ;wŠŠoݺ5Úµk§ñ ##™™™ÞÓ‡H¥R˜››ËÿKÚQR>[%å}üQGzz:þúë/,^¼çÎSúú1cÆÀÛÛ»À9M}¶¸Œä9rÈÌÌŒ•H$Xºt©ÆvÖ"* RRRðèÑ#Ü¿)))xõê²²²ðæÍ¼yóYYYÈÎÎFzzºZý”)S‰¶¶¶H$(S¦ `oo²eË¢lÙ²ptt„†Þ™r®_¿Žo¿ý/^ÄÇ?gmm CCC˜šš¢lÙ²(W® ¼OOOÔ®]eË–Õá;x«¤¼X»v-–/_Ž[·náÅ‹ ’155…­­-ÜÝÝÑ»wo 4H ™*¶páB¬Zµ >Dff&RSS ¼þß"ÊÌÌ ¦¦¦(S¦ ¤R)lmmå7åË—‡··7jÔ¨¿âúÙzÉË÷ñ!üQýg$??6lÀ?ÿüƒ³gÏ">>¯_¿V)ÿjÕªáüùó¸{÷®v>[2*àúõë2{{{Q¿fÍš¥ï”‰4âþýû²®]»ÊlllDþuñ«L™2²Ž;Êž,--áää899¡råÊ_áB¬âúÙzÞØØ¸X¾áψê?#¡¡¡Ø°aƒFò5j~ýõW­ýŒ°€ÿÞ¼yƒ–-[âĉ¢âGŒßÿ]ËYéÎܹs1iÒ¤B·)·S]ÞýÝÎÎ666°µµ………ÌÍÍåEø»ãwʹ¹9,,,ä±&&&zxgDDq'Vzß›7oP¾|y¤¥¥i¤=CCC:t7ÖH{ïc //ݺuCTT”¨ø°°0,_¾\£;j‰‘Ë—/ãöíÛ°µµE@@ 5Ö~nn.=z„¼¼<ÿ$ÆÀ€ VQÉÁžÞ·víZôéÓG£mzzzâüùóZù|±€0lØ0ÌŸ?_Tì§Ÿ~ŠuëÖi´h"ú˜¤¤$ÄÆÆbÿþý8wî‘““#}Μ9>|¸3$"*~XÀÓû6l(z†2¾ùæÌž=[ãí–ú~Þ¼y¢  –-[b÷îÝœ@Z“‘‘C‡!66111¸téÒGcÝÜܰmÛ6ÔªUK‡,àé¿>ŒfÍši¥m###œ={VãÿV—ê>66ÁÁÁ|˜à}µjÕBBBlllt•&/^¼ÀöíÛ±eËÄÄÄ._Z©R% 4LJ™™™Ž²$"*9XÀÓ…„„`ëÖ­‚q‰ݺuC‹-pþüy¬X±B>åTìß¿_£S¯KmãÆ 4lØ/_¾ŒuqqÁ±cÇô²Æ.•\À²e˰eËdee)Œ-[¶,Ú·oÐÐP´nÝšsÒ‰ˆÔÀžÞ¹yó&ªU«&Xˆ›ššbãÆèСƒü\||<:tè j­ý­[·¢sçÎjçûN©,àSRRаaC\¿~]0ÖÆÆ œ¦@sðàAŒ3ÇÿhŒ|||ЪU+tèÐMš4ásDDžÞ2d.\¨0F"¨aÏ IDAT‘`óæÍ )ôÚºuëлwoÁ~êׯ“'Oªœg¡œJ[Ÿ——‡víÚaïÞ½‚±&&&ؽ{7Z¶l©ƒÌ¨4ˆ‰‰Appð¿éW«V -[¶DË–-{{{=dHDTò±€'HMM…‹‹‹àn«_ý5,XðÑ×»wïŽÍ›7 ö‹ÀÀ@¥óüýìü G#GŽU¼K$¬\¹’Å;i”££#Ú·oôôt¸¹¹¡F¨Y³&jÕª¥× ‹ˆˆˆJ›U«V ïNNN˜>}ºÂ˜ŸþQQQ‚ÏTΘ1Cc|©_µj  *vÚ´i7nœ–3""""]ã<åççÃËË 7oÞT·bÅ QµãÀ±bÅ …1‰7nÜ€‡‡‡R¹~H©yîÂ… øúë¯EÅvïÞcÇŽÕrFDDDD¤»ví,Þ]]]Eoî4qâDH¥R…12™ «V­£"¥¢€ñâºté"ê)á `õêÕÜe•ˆˆˆ¨„R4§ýQ£FÁØØXT{®®® Œûã?D-_.¤ÄðùùùèÛ·/îܹ#ëì쌭[·ÂÔÔT™‘®=zô±±± cÌÌÌD¾¿#fªÍãÇû£Äð?ýôvîÜ)gjjŠ-[¶ B… :ÈŠˆˆˆˆôáï¿ÿF~~¾Â˜.]º(½ygóæÍQ­Z5Qý««Dð111˜2eŠ`Ü»g4h ƒ¬¨¸ÈÊÊBTTúöí‹¶mÛâÔ©SúN‰ˆˆˆÔ$fÉǾ}ûªÔ¶˜ë¢££ÕžFSb øû÷ïã³Ï>ü†cÇŽEÏž=u>ÄÈ‘#áèèˆ.]º`Íš5سg¨;9DDDTt%%%áÈ‘# cœU^î±oß¾‚/>þ *µÿN‰,àsssŠçÏŸ ƶoß?þø£²¢¢îòåËèß¿?ªT©‚Y³f!55ÀÛ;4ááá?~¼ž3$"""ulÙ²Epp·OŸ>*ï~îììŒF ÆmݺU¥öß)‘ü¤I“pìØ1Á¸Ê•+cõêÕ00(‘ $Ò¡C‡Ð¾}{Ô®]þù'²³³å¯¹»»#>> .ý$:M›6mŒéܹ³Z}´oß^0&&&F­>JÜFNûöíCëÖ­¿]I¥R9rõêÕÓQfTÔœ8qcÇŽÅþýû ½fmmo¿ý#GŽ„………²#""máFN¥SZZìííÎ?···Ç¿ÿþ«ò<ðöŽ~­ZµãîÝ»WWW•ú(QCÏÏž=CŸ>}DÍ{Ÿ3g‹÷RêÆ A£F 簾¦øöÛoqëÖ-Lš4‰Å;Q qèÐ!Á‡G?ù䵊w¨Y³&ÜÜÜãâââTî£Äð2™ Ÿþ9?~,Û»wo 4HYQQòúõkŒ3µjÕÂÖ­[ñß›OFFF Ã70kÖ,”-[V™‘¦íÛ·O0&((H#}‰™FÃÀܹsE­R£F ,Y²DQQ²gÏT«V 3fÌ(0ÇÝÌÌ ááá¸qã"""P±bE=fIDDDÚ¯ðu‰D¢±¾mÛ¶‚1T¹ý1þܹshÔ¨²²²ÆYZZâÔ©S¢Ù§’!;;ß|ó /^\`ÄÝÆÆááá>|8õ˜!éçÀ—>Ïž=ƒ££#•½uêÔÁÙ³g5Ò_jj*ìíí‘——§0îîÝ»¨T©’Òí©šXQ‘••…>}úï°téRï¥Ìˆ#°xñbùq½zõЧO|þùç°¶¶ÖcfDDD¤+ûöíSX¼owRÕÔ¬Y.\PwìØ±ÒYÀÿðøråŠ`\Ÿ>}ЫW/dDE‰““‚‚‚àëë‹^½z¡zõêúN‰ˆˆˆtìСC‚1 4ÐhŸM›6,à?ŽÐÐP¥Û.ÖShŽ9ÁÛ•+WÆùóç9âJDDDœBS ùùùáäÉ“ cþùçxxxh¬ÏÈÈHÁÁã àĉJ·]l øôôtÔ©SÿüóÂ8ìÛ·þþþ:ÊŒˆˆˆŠ2ð¥KNN¬­­‘™™ùÑ;;;<þ‰Dcý>|øPpq ©TŠ×¯_ÃÈH¹I1ÅvšQ£F ïÀÛ)6,Þ‰ˆˆˆJ§Ë—/+,Þ ~ýú-ÞÀÅÅE°€ÏÊÊÂ7”n»Xðqqq¢–‚¬_¿>ƯƒŒˆˆˆˆ¨(:}ú´`ŒŸŸŸVú®[·®`ŒÐ<ù)v|jj*>ÿüsÁ'‰­­­±~ýzë(3""""*jÄ, éëë«•¾k×®-sñâE¥Û-vü˜1cððáCÁ¸yóæÁÝÝ]QQ%f¾V­ZZé»fÍš‚1%¾€?tè–.]*Œ~ýúé #""""*ªòóó——J¥ZÛ‰]Ìüõëוn·ØðYYY4h¨©3bæÇQÉöàÁddd(Œñôô„¡¡¡Vú÷ôô„™™™Â˜»wï";;[©v‹M?uêT\½zU0nÖ¬YZûEDDDDŇ˜^ªV­ªµþ Q­Z5…1yyy¸sçŽRí‹þâÅ‹˜9s¦`\«V­¦ƒŒHÛvïÞN:Á××GŽÑw:DDDT 黀Ä̓Wv)IåV׃¼¼< 8999 ã,--±|ùr¯áIº•œœŒ"**J~îÔ©ShÒ¤‰³"""¢â¨(ðbvw³·Ñù~þüù8uê”`ÜôéÓQ¹redDÚrøða„††âÑ£GòsÎÎÎèß¿¿þ’"""¢bKLa¬í¾R¥J‚1CDDD¤+Ei ±±±`Lff¦èöô^ÀOŸ>ÏŸ?ŒûùçŸE½y*Z~ÿýw<|øð÷÷‡¹¹¹¾S"""¢R@LA¬«x1KŸ+3…F¯«Ð<~üóçÏŒóóóCHHˆ2"MËÈÈÀìÙ³ ;;;´k×Ë—/ÇÓ§Oõ•`ÙÙÙ‚1ºÚý]L/“ÉD·§×~Ú´i¢¾müôÓOÜ´©˜jÑ¢…ü÷YYYصk¾üòK”/_¾¾¾˜??gΜÁ”)Sàåå…ºuëâÇDbb¢²$""¢’FÌ´]eU‡˜^™Áj½ðS¦LukCÌ®Ttá“O>Œ;wî&Nœˆ5j F˜>>:ȈtES¼··78€ *h¤="""*™œc>|¨ƒL€””Á˜";?}útQ£ï&LÐQF$VNNލoS¥JÔ¨QC­¼½½±oß>899©Õ•|bût5ÿâÅ Á˜råʉnOgü­[·°~ýzÁ¸.]º fÍš:ȈÄzòä |}}áàà€;wªÜŽ:£ð,Þ‰ˆˆHîîî‚1º¿{÷®`Œ˜;喝4ˆ f̘!jå޾-ÏŸ?GëÖ­qùòeÀ¿ÿþ«r[]ºtÁôéÓ•¾ŽÅ;)+++ /^¼øàŽïÿ]áÎ;…V+133ƒ¹¹ù7"¤âÃÝÝ&&& ÷zöì^¾| [[[­æ"´‚žD"Qjz°D¦ƒ¥<>|ˆ*UªnÜÔ±cGDGGk;);;8v쀷ÿC»wïžR·xþK&“ÁÍÍ ÷ïß}ƒƒ.\¸À∈D™:u*Ö¬YƒÛ·o NÛb``???9r„ 'SÕ«WÇÕ«WÆìÛ·-Z´ÐZééé°²²R¸zž½½=ž?.ºML¡™9s¦¨]WøádCb :T^¼ÀðáÃU.Þ·ß.CBB”ºæéӧزe‹Ê}Qé²oß>ܼySíâòóóѬY3ïÅXõêÕcΟ?¯Õnܸ!¸ôuåÊ••jSëü³gϰ|ùrÁ¸àà`®û^„,]ºË–-“×®]“&MR»Ý®]»*}ÍСC±iÓ&µû&"¢’ïóÏ?×X[ÆÆÆ:t¨ÆÚ#Ý«W¯ž`Œ¶ x1P*ûü§Ö ø%K–|pþÙû8ú^t=zÆ “›››#22¦¦¦j·Ý¸qcQÓa¤R©ü÷ùùùèÓ§öíÛ§vÿDDT²…††ŠZÿ[ŒO?ý...i‹ôCLîÜ9­æpæÌÁ˜"UÀgeeaÑ¢E‚qhذ¡6S!‘?~Œnݺ˜ò4wî\Q· Ä000@çÎ?úº½½=¶lÙ‚„„”-[V~>++ ]ºtÁÙ³g5’•LR©ƒV»Œ3F‘>Õ«WOp Ô•+WÔZ¤Cˆ˜He—ÚÖjÿ×_áÉ“'‚q£GÖf$R~~>zö쉤¤$ù¹bàÀíçcÓh\]]qøðatéÒõë×GBBB‘´´4ãæÍ›͇ˆˆJ–¡C‡*µ)·„„„¨½ 韽½½à d~~>öîÝ«•þ_¼x!8EÇÀÀõë×Wª]­ðsçÎŒñõõE`` 6Ó ‘fΜ‰C‡Éýüü°`Á÷P`tx»TäáÇQ­Z5ù¹jÕª!!!nnnòsÿþû/‚‚‚D}1$"¢ÒÉÎ΃ Rùz.k]²ÆìÙ³G+}ïß¿_ðjØÛÛ+Õ®Ö ø¸¸8\¸pA0îûï¿×V ¤„‹/xHÕÑÑ›7o.0]SŒŒŒÐ¡Cùqݺu‘€Š+ŠussClll‘øÛ·o#88iiiψˆJ†o¿ý¶ÐúîbuêÔ >>>ΈôÅßß_0&&&yyyï;>>^0F•%,µVÀÿþûï‚1žžžJ/+Hš—••…Þ½{#++ ÀÛ§î7nܨÕwÞý½ûùù!>>^á7O8p @îÜ9tîÜ™™™ZË‘ˆˆŠ/'''„……)}D"áÂ%L«V­`d¤xïÒäädìß¿_£ýfggcóæÍ‚q­[·Vºm­ðW¯^ÅîÝ»ãFŽ CCCm¤@J˜0a.]º$?ž6mš7o®Õ>[·nvíÚ!66eÊ”Œ¯R¥ öïß_ ˆß¿?BCCwø%"¢ÒiÔ¨Q011Qêšàà`Ô­[WK‘>ØÙÙ¡qãÆ‚qK–,Ñh¿QQQxöì™Â{{{´jÕJé¶µRÀ/Z´HpÁúòåË£_¿~Úèž”pøðaÌž=[~ܶm[Œ9RëýJ¥Rlß¾]©‡ŒÞñÿ½3°°0ÁÏ•>®®®èÓ§R×pô½djß¾½`̶mÛ ,ä¡®ˆˆÁ˜îÝ»ÃØØXé¶5^À§§§cÍš5‚qÇ×Êüj///C† ‘?\áììŒ?ÿüSg;ΩÒO•*UòåËËÏ­^½#FŒÐdjDDTBŒ=ZôÝþ   øùùi9#Ò‡®]» Ö999X±b…Fú»s玨ùï¡¡¡*µ¯ñþ¯¿þBjjªÂ |õÕWšîš”´jÕ*ùƒÆFFFX·nÊ•+§ç¬„U­Zñññ6ê˜7o&Ož¬¿¤ˆˆ¨HòôôDÏž=EÅrô½ärwwG£FãæÏŸ/XÇŠñË/¿®>ãéé‰fÍš©Ô¾Æ x1ó‡úöí+jÞ3i×ÿ®fΜ)ê)í¢ÂÛÛqqq–£œ2e æÍ›§Ç¬ˆˆ¨(úá‡Gá[µj…&Mšè(#Ò‡Ï>ûL0æéÓ§øùçŸÕêçŸþÁªU«ãÂÃÃa` Z).‘ipòðÉ“'o=I$\¹rÞÞÞšê–Täè舧OŸ¢_¿~øã?ôŽJΟ?V­ZáÅ‹Þ~¾"""0`À=gFDDEIß¾}Nñ=pà@±È"奦¦ÂÅů_¿V'•J‘˜˜www•ú BLLŒÂ <|øPåmŽÀ‹}oݺ5‹÷"bذa˜2eŠÆæ{éÃÿþ÷?ìÝ»Wþ “ÉðÅ_`ݺuzÎŒˆˆŠE£ðÍ›7gñ^ ØØØ ÿþ‚qYYY>|¸J düù矂Å;„……©5Ec#ð/_¾„³³3222ÆíرíÚµÓD—Dr'NœÀ'Ÿ|"ßÜÉÈÈ‘‘‘èÖ­›ž3#"¢¢¢_¿~X½zu¡óqqq*-åGÅÏÍ›7áíí-j ê¹sçbذa¢ÛNLLDƒ žž®0ÎÜÜ·nÝ‚“““è¶ß§±øÕ«W ïžžžhÛ¶­¦º$’óóóî]»`ii ÈÍÍE¯^½°mÛ6=gFDDEÅ„  mèÓ¸qc賂‡‡(*väÈ‘¢FÓàÉ“'èСƒ`ñC† Q«x4XÀ‹™C=hÐ •'ë iÒ¤ ¶oßssso—ƒêÑ£öìÙ£ç̈ˆ¨(ðôô,ô ã˜1cô” éˤI“DíC“““ƒnݺaß¾} ã?~Œ   ܾ}[°MGGG|æ4RM_¸pçÏŸWcdd„^½zi¢;¢ @tt4LMM¼Ç"øÃGDD¥ÃGá«V­Êi½¥““¦N**öÕ«WÆüùó?8'þàÁƒhÔ¨.^¼(ª½9sæÀÖÖV©|?D#üŸþ)¤öí"1±uëVùFaèØ±#<¨ç̈ˆHß<<<лwoÀˆ#83 ”2dêÔ©#*6++ Æ CíÚµñ믿"::Ë–-C»víТE Ü¿_T;ÁÁÁ*oÜô>µbÍÉÉ‹‹ ž>}ª0nÆ èÑ£‡:])eûöíèÖ­²³³¼]²iÇŽÐob¤¶ŒŒ dffêüZ"Ò MŒ@ªãÖ­[ðóóCûöíáää©T sssXZZØÖ¾L™2…vï455…™™Y¡6­¬¬ ͯW•‰‰ ,,,4Òðá÷AoÀÐÕìWWWœ>}Zcfª]Àoß¾;vTS¦L$%%ɧ5éÊ–-[ŠœœoŸüÞ¾};Z¶l©çÌŠ¦'OžàÁƒxôè^¼xôôt¤§§#%%¯_¿.püî¯_¿–ÿùæååÉWzÿµ÷±&"¢ÒÀÔÔ ðõõÕX›jU3}& €Å;éEHHÖ®]‹^½z!//oÞ¼A‡°mÛ¶R½ê@vv6Nž<‰'Nàĉ8wîÛÔÔ[·nE›6môœ™æ¼yó›7oÆŠ+ ÒVÐDDD¤šŽ;bÙ²epttÔZ*ð?FÅŠ‘ŸŸ¯0.::Zð!W"]š7o†.?655Åßÿàà`=f¥¾3gÎ ""‘‘‘HMMÕw:DDD¥JõêÕ1kÖ, ª¼øé¦M›‹wàíÅDEɰaÃ0cÆ ùqff&BBB°sçN=f¥š—/_bÁ‚¨S§|}}±dÉïDDDfccƒJ•*! ëׯ‡‰‰‰üµÆ#** —.]ÒÙ}•Gà›4i‚£G*Œ±±±AJJŠJ‰iÛÔ©S1iÒ$ù±T*ÕÚÃ&švåÊÌš5 ‘‘‘z[ŠÑÄÄ666…¶£¾sçNi;•+WæúÃD###QÛ×SAš\_þ}ÖÖÖ044ÔJÛª®=occóÁ͵”=ÿ±þ…οûœ¾[ïߢ@±þNBBΟ?¶mÛêe±• øû÷ïÃÍÍMpnm»ví°cÇ•“#奤¤ÀÜÜüƒ6*lìØ±øå—_äÇï–{êÔ©“³ú¸`æÌ™Ø½{·Næ¶ÂËË uëÖ…<<*Q1¤t¿mÛ6ÁCCC„‡‡«”)ïÉ“'˜6mšü844TÙOˆˆˆ@VV"##¼º2pà@¤¤¤àÛo¿ÕI÷îÝÀ°oß>´gff†Ö­[£cÇŽèС÷c ""*´RÀwìØ•*UR)!RÞ?ü€W¯^\\\ФI=gT<bõêÕÈÊÊ–-[¼ ÿî»ïðòåKüøãZë;77Ë–-ÃØ±cÕÞ¹ØÐÐèÓ§ºtéÂ;aDDD%ŒR|jjªàΫ0dÈ•"å$&&bÕªUòã¾}û~p9%ÇÈÈ‘‘‘…Ö…ÿé§Ÿ’’‚¹sçjôÏ÷éÓ§ˆŒŒÄ¼yópûömµÚ²¶¶Fxx8† ggg eHDDDERüîÝ»‘““£0¦Fœƒ­CS§NE^^€·^rê’úLLL°yóftìØ±±±òó ,@jj*V®\©Öš¼éééˆR4 IDATŽŽÆºuëƒÜÜ\µòuppÀðáÃñõ×_ÃÆÆF­¶ˆˆˆ¨èSª 3}fÀ€Ü´EG®\¹‚M›6É»wïΑW 155ETT‚ƒƒ ÜuZ³f RSS±aØšš*Õæýû÷ñË/¿`õêÕHOOW;GWWWŒ9aaaœ&CDDTŠˆ^F2'' wV•H$¸}û6ÜÜÜ4•)Š 6ÈOž<‰úõëë1£’çÕ«W ±cÇ œoÑ¢¢££E­â’ŸŸY³faòäÉ–WT• ÆaÆA*•ªÝž¦qI"""í=™÷СC ‹w¨[·.‹w¹uë6oÞ,?nܸ1‹w-°²²ÂîÝ»Q¯^½ç÷ïßÀÀ@$''+¼þÕ«WèС¾ÿþ{µ‹w###„‡‡ãŸþÁ¨Q£ŠdñNDDDÚ'º€ßµk—`L×®]ÕJ†Ä›={¶|î;|óÍ7zÌF}2™Lð ¢¾ØØØ`ïÞ½¨]»vó'Ož„¿¿??~üÁëÒÒÒ(êgGH»vípñâE,\¸åÊ•S»="""*¾Dð111‚1,àuãÙ³gVžñööFHHˆ3RÞÙ³gñý÷ßÃÏÏeÊ”lmmaee…©S§ˆÍÈÈÀ?þˆ*UªÀÅÅŸþ9ž?®Ó|ííí ooïç¯\¹???œ;w®Àùüü|ôìÙ'OžT«ßêÕ«#66;vì(Ô7•N¢b}üø1®\¹¢0ÆËË U«VÕHR¤ØÊ•+‘‘‘!??~|±Z:2""Çÿà”’×¯_ãúõëòã K—.8sæŒüÜü###,_¾\'ù¾ãàà€¸¸8øûûØ!õáÇhÖ¬Ö¬Yƒ.]º.\¨ÖÈ»T*Ÿqã0f̘˜˜¨;•¢ª¾ØØX=ëúÉ'Ÿh$!R,??¿@áZµjÕb·óêÀ‘œœŒØØXŒ1¢Ðë={ö$%%!  @ñþŽ¡¡¡Öóü * >>¾Ð³éééèÖ­¦NŠ””Lžš7oŽóçÏcâĉ,Þ‰ˆˆ¨Ñ¼Ö­[« ‹‹‹Ã­[·äÇãÆÓ[1«SSSúâgoo   ¼|ùAAAÜÜÈÈÈH¯sþ]]]—çóóó1iÒ$¸¹¹áÅ‹J·kkk‹åË—ãÀ¨V­š¦Ò%""¢F°€—Éd‚¼±±14•))ÿ½‡‡>ûì3=f£¾÷§™têÔ 999hß¾=.]ºL˜0žžžò˜Q£FÁËËKשàî¸8899z-55Uéöºu놫W¯bàÀÜGˆˆˆœáÂ<}úTaL£FD­‡MêÉÉÉ)°™Ö¬Y³ÔÚ´(x¿€wssCHHŽ= ÄÇÇ£jÕª˜0a~ûí7Èd2Œ7NOÙäåå…¸¸8¨üP­µµ5æÏŸ¾}ûj8;"""*©«?1«ÏpúŒnœ>}Z>5£sçÎèØ±£ž3RÏõë× M‘™8q"ÀÄÄ›7o–?-•J1~üxç(¤Fˆ‰‰AÆ ‘­Ôµ 6Ddd$÷N """¥N¡Ù·oŸ`#­ZµÒH2¤˜±±1€·Sgt½‹6(Z¥å·ß~ƒŸŸŸ³Q]||¼ÒÅ{xx8<È∈ˆ”&‘)X^&//¶¶¶xõêÕG033CJJ WËБ;vÀÏϯDlæÓºukÄÅÅ:„Ý»w‹¹àÑÑÑ A~~¾¨x©TŠÅ‹ãóÏ?×rfúcaaQ`‰Ðôôt˜››ë1#""¢’EaæÌøúú*lÀßßÐt^T½~ýeË–EVVVóÖÖÖ¸|ù2*V¬¨§ÌÄ;{ö,š7oŽôôtQñåʕÖ-[дiS-g¦_,à‰ˆˆ´Káø„„ÁJz1BÚ±oß¾BÅ;ðv|q(Þ=z„Ž;Š.Þ  -gFDDD%Â9ð‡l€<©bÏž=…Îyxx`È!zÈF9 Á£GD_“——‡Aƒ!--M‹™QiðÑ^&“áðáà /644D£F4ž•|*àýõWH¥R=d#^~~>zõê…“'OŠŠÿï:ñÇGpp0^¿~­­ôˆˆˆ¨øhíÚ5<{öLáŵjÕ‚Æ“¢’íÆ¸sçNs¾¾¾èܹ³ž2oüøñˆŠŠÛ°aCܸq¡¡¡òsGŽA»víDO½!"""zßG x1óß›4i¢Ñd¨tøÐèûĉ‹üª3ëׯnj3DÅzxx`Û¶m°²²Âš5kеkWùk‡B‡ <èIDDD$ÖG ø£G ^\¿~}&C¥Ãû¼§§'Úµk§§lÄ9{ö, `Ñ&¹råÊaÏž=ò¥>ŒŒY`ã­ýû÷£S§NÈÈÈÐZÎDDDT2}´€?uê”àÅ 4Ðh2TòeddZvtèС00ÜSLo^¼xQ#æfffؾ};ªT©R༱±16n܈6mÚÈÏÅÅÅ¡K—.ÈÌÌÔxÎDDDTr}°jzõê®]»¦ðB+++xyyi%)*¹ºƒ¬T*ETTÚ¶m+?·wï^tîÜ™E<‰öÁþôéÓ‚;KúúúéQS*šbcc 2ÖÖÖzÊFØüùóE?´úý÷ߣW¯^ c¤R)6oÞ ù¹½{÷¢GÈÎÎV+W"""*>Xsú iË… ä¿÷ððÀøñãõ˜bçÏŸÇ÷ß/*688?ÿü³¨XsssìØ±7–ŸÛ¾};BCÿ¯½;Ž¢Ìþ?þÉ !Y@"K"B ¸at„Q@DaP‘M`—ÑQq`Ôù:ÈpQÙÙ”U„ "HEÙ7YȾtòûƒ=iÒÐÕ•®~¿ÎáXõôSU7€·on=Õ[•ŠøŽJ'ðÜÀŠÊèÙ³§Z¶l©GyDëÖ­S5Ì©Lyyyêׯ_™O‹½\Ó¦M5kÖ,¸|þ°°0}ùå—„.\¨Ç\………•Šø¿â2–Õ¸îºëœöü:tH 40,0ÀL/¿ü²ÆŽët^Íš5µeË5iÒ¤R×IKKSûöíµmÛ6ûX¯^½4sæÌ } ¨JBCCnøÍÊʪ²ÔðF¥*ð§Nrš¼×ªU‹ä–•’’¢wÞyÇ¥¹'N¬tò.IQQQZ¹r¥Z¶li›;w®ú÷ï/›ÍVéóë*•ÀoݺÕéA7Ýt“!Áf+((ÐÓO?íRòü裪OŸ>W}͘˜­ZµJ‰‰‰ö±™3gjàÀNo&¾§T¿cǧ%%% `¶ñãÇkçÎNç]{íµš4i’Û®[»vm}ýõ×jÖ¬™}ì“O>!‰¥”Jàúé'§•üu?ܯ¨¨ˆÕHLpèÐ!½ùæ›NçùùùiêÔ©Š‰‰qëõk×®­•+W:<jÚ´i00P 64< _ôË/¿(//ϾOÞ8¿ýö›,XàtÞO<¡k®¹Æ]½=zhÆŒ t1‰úè#ÇBû Æó—.V€9RîÄ (((È#AùšÝ»wÛ·ëÕ«§F™µM›6ÍáÃÒ•<ù䓈Æ}z÷î­>úHþþ?“é©§žÒ´iÓ< <Æó—¤'N8,aX–Æ{$ _T2§ún¬éÓ§;Ó¢E ÝvÛmˆÆ½úõë§)S¦Ø—z-**ÒÀ5cÆ Å@€ñü%9­¾K$ðF:qâ„}û¾ûî31kÛ¶m›Ãj?W2pà@DcŒêƒ>pHâ  ™3gzäú$ðÏ_’>ìt" ¼qNŸ>-Iª^½ººuëfr4ÖåJõ=88X}úôñ@4ÆýôSïM€ñü%¹ô8yú²×¹sgEFFš†%é³Ï>s:¯GŠõ@DÆzöÙgÖº·Ùl0`€æÎkèuIà0-4U@Ó¦M%IøÃÌ Ä¶lÙâЪt% ð@4žñüóÏkôèÑöýÂÂB=ñÄš?¾a×$Àx ¼Ù†®˜˜uíÚÕìP,kÑ¢ENçDFFê÷¿ÿ½¢ñœ¿þõ¯ÊËËÓ[o½%ébÿøãËßß_=zôpûõHà0žK-4±±± óH@¾(**JC‡5; Ks%ïÔ©“%—J=z´^xáû~AAz÷îíÒ{RQ$ðÏ_’Ž?^˜á×_uxÒí•Xù7 o¿ý¶FŽiß/((P¯^½´xñb·^‡ãùKRzzz¹“¬pS|תU«œÎ P§N<yƧ!C†Ø÷óóóõÈ#¸5‰'ÀxþEEEÊÊÊ*wRtt´‡ÂÜoõêÕNçÜ}÷Ý–ÿM“ŸŸŸ&Nœ¨gžyÆ>v)‰_²d‰[®A€ñü322œþO7""ÂCáîU\\¬¯¿þÚé¼.]ºx óùùùéƒ>P¿~ýìcùùùzôÑGõÕW_]õùIà0žÿ… œN ñ@(€ûíß¿_gÏžu:¯cÇŽˆ¦jð÷÷×G}¤Þ½{ÛÇrssõÐCiåÊ•WunxŒçŸ‘‘átR5< à~[¶lq:'22R‰‰‰ˆ¦êÐŒ3Ô³gOûXnn®ºwïîRËÑ•À`<ÿ¼¼<§“¨ÀÃ[}÷ÝwNç´iÓFþþþˆ¦j ÔìÙ³õàƒÚÇrrrÔ­[7­]»¶Rç$Àx.%ðTàá­~øá§s’““=IÕ¤yóæ9Ü­®]»V*‰/**rgx  þùùùN'Q‡·JMMu:§M›6ˆ¤ê ÖgŸ}¦öíÛÛDz³³õàƒê›o¾112PZh`Y'OžÔ¹sçÊãïï¯Ûo¿ÝCU]!!!úâ‹/Ô¶m[ûXVV–xàmܸÑåóØl6#Â%¸Tö@(€{íÞ½ÛéœæÍ›+22ÒÑT}5jÔÐÒ¥KZŠ233Õ¹sgmÚ´É¥søÿ\ªÀ“ÀÃ:tÈ霤¤$Dâ=ÂÂÂôå—_ê¶Ûn³edd¨cÇŽ.µÓÀ`<—øÀÀ@„¸×±cÇœÎiÒ¤‰"ñ.úꫯԺukûXVV–|ðAmÞ¼¹Üci¡ÀxTàaYGŽq:ç†nð@$Þ'**JkÖ¬qHâÏŸ?¯:hݺuW<Ž <Æó/((p:)((È¡îuæÌ§sH௬fÍšúòË/r•••¥®]»^±† <Æów¥bFotáÂ…r_÷÷÷WBB‚‡¢ñNµk×Ö×_­fÍšÙÇ233uÿý÷kÍš5¥æSÀxþ®TÌHàáœ%ðõë×ç!e.¨]»¶V­Z¥ÆÛÇ.­¿jÕ*‡¹$ðÞD³gÏÖ‡~hv–•••UîëÜÀ꺺uëjÍš5Š·egg«[·nZ±b…}Œã‘À›¤¸¸XÆ Ó³Ï>«ììl³Ã±$??¿r_§}¦bâããµvíZÕ«WÏ>–““£îÝ»kùòå’ÄÏ2@¼IŽ;¦sçÎ)''Ç¥¡âüýýË}½~ýúŠÄ:5j¤5kÖ(..Î>–››«=zhÉ’%ÊÌÌ41:|x“œ;wξ}òäI#±.g |ƒ <‰µ4iÒD«W¯VíÚµícyyyzøá‡5{öl#À7¸Tgx÷+ÙŸíìfKT޳š’ýܨ˜ÄÄD­^½Z±±±ö±üü|͘1ÃĨð EEEÎ'ñ$V·ËÉɱo“ÀÃY¾¨¨H¿þú«‡¢±žÐÐPMžÑ;CÇówÜŒ“ÀÏYÒ0lØ0åææêüùóÊÌÌTvv¶233•žž®ììleeeÑÞ\…ÌÌL“À€›ÑBcxã9KþïÿþÏ¥ß.eddØúK- ééé*..VAA}íó¬¬,åç竸¸Xééé’.¶G]ºß!##C………***Òùóç˼–³‰œœåææ^ñõòÎí)phkذ! \c³ÙtèСRãuëÖUµjÕ\>¿¿¿"##íûÁÁÁЉ‰QLLŒêׯ¯Ç{ÌéÍ䀊£…Æ$%øª-<<\áááf‡á5BCCnÒþé§ŸT£F #ÂåV¬X¡N:•õÕW5hÐ "TOb5 xãQõÊ6wîÜ2ÇçÍ›çáH•áôI¬~~~ ðP8¾£ä{êÊoAPqüê(-//O .,óµuëÖé·ß~ópD€ŠršÀRÉ4@ÉßjhƒŸ[ ´+VØïѸœÍfÓçŸîáˆå´…†§°£äûÊo8xÊìÙ³Ë}6¨úœVàI.Ao<*ð€£ììl-]º´Ü9ëÖ­Ó‰'< 2œ&ð´w£d ¼1HàG‹/¶/{z%EEEZ´h‘‡"T†Ó’KcÀŸ€£+­>s9Úh j£…Æ$%[hH4AøŸ .諯¾riîúõëuüøqƒ#T ¼IJVà+òäC¸ÎY_òi¡€Õ-\¸°Ü§ø–D TmôÀ›¤dÏS>AøWÛg.¡ª.zàMR²…&""ÂÄH¬ËYO‚_‘––¦5kÖTè˜ 6ðP'¨¢h¡1 xã‘ -\¸Pùùù:Æf³é‹/¾0("ÀÕ 7IÉ>66ÖÄH¬ËYû=ððóçϯÔq ,ps$wð/***=ð†(ÙBsà 7˜‰uQ*×>sÉÚµkuþüy7G¸ZþΪTàq©_¿~}EFFš5‘ÀÞTÑö™K *üŒCo’   `À 0@’4oÞ<=úè£sî¸ã5JM›6Õõ×_¯êÕ«›*ÀE$ð°,x ´k¯½Öa¿iÓ¦Z³fBBBLŠPQN[h臷"JÛ¿¿Ãþk¯½Fò^†e$aY$ð@i›7o¶oGFFꡇ21@ep+,‹uÞGÅÅÅZ¶l™}ÿþûï§ß¼ <øˆï¿ÿ^GµïwíÚÕÄh•E ,‹ <àhñâÅö퀀Ýwß}&F¨,äË¢p´dÉûöwÞ©˜˜£T-4°,*ðÀÿ¤¦¦jÇŽö}n^ïE ø€éÓ§Û·ýüüHàÀ‹Q‡eQ.***Ò¬Y³ìû·Ür‹âããMŒp5è7Ñþýû5dÈ9rÄìP,ÉY< >|Åš5kþyøá‡MŒpµi¡1G^^žÚ¶m«ãÇ«fÍš3fŒÙ!°¨’í3þþþzüñÇMŒpµœ¶ÐP7ƦM›tüøqIÒ¶mÛLŽÆš¨°RFF†.\hß¿çž{T¯^=#\-x“”LÚK>Xîã,g™Iø‚ùóç+++˾߯_?£¸ƒÓx’cìڵ˾}öìY#±.zàiÆŒö툈õèÑÃÄhîÀ*4&9vì˜};;;ÛÄH¬‹§ðu‡Öúõëíû}ûöUhh¨‰Ü ¼IN:eß.,,41Võé§Ÿªd‘æÉ'Ÿ41€»À›äÌ™3öí‚‚#ñ]´ÐÀêfΜißNNNVRR’‰ÑÜ…uàM’““cߦÀÝöìÙ£ÔÔTûþ!CLŒàN¬Bc’’ |qq±l6›‰ÑXvø²E‹Ù·ëÕ«§G}ÔÄhîD Iòòòöi£àNK–,±o1BAAA&Fp'§xxc\þ¾ò>p— .(%%EÒÅ¥#Ÿzê)“#¸ËHšäò÷588ؤH¬‹øª7ÚÛò†®ÈÈH“#¸-4&)™Àñ>p› 6H’ÂÂÂ4bÄ“£¸ ¼IJ>L…ÞTsP¡‡UíܹSÒÅê{­ZµLŽànN—˜!7FLLŒ}›öîtøða…‡‡ë¹çž3;€XÞ$ÑÑÑömxîd³Ùô׿þÕ¡P°§Ù9 ¼14h`ßŽŠŠ21ë¢E¾ª{÷î5j”Ùa èl-4ÆHLL´oשSÇÄHcñAÊóþþ÷¿›À@´Ð˜¤uëÖöí¦M›š à^$ì‹›XMÒ±cG{ß¾}{“£ŒCB€{9m¡¡oŒàà`}óÍ7Z»v­:wîlv8–DâhÞwŒÅ:ð& U×®]M}Úmnn®8`Úõa=—ÿ›BB€{± ûä“OôüóÏ›,Œ÷ ä&Vß6iÒ$íÚµKPÆ ÍÇ­HÍQTTä°Ïoñp/nbõa[·nÕŽ;d³Ù4yòd³ÃE]žÐùììl>|X¹¹¹:.77WGåÃ+X-4>ì“O>±oO:U999&Fø¶­[·jèСjÔ¨Ó—§ IDAT‘BCC¯°°0µhÑB“&MR^^^¹ÇÿãÿPÍš5U¿~}=òÈ#Š`nbõQš={¶}ÿìÙ³úâ‹/LŒVÁM¬“ššª®]»êÖ[oÕ¤I“n*·Ùlúé§Ÿ4tèPµk×N'Nœ(ócÆŒÑK/½dOòOž<鑨æ ï£V¯^­3gÎ8ŒM›6Íœ`LBbi ÞW×½÷Þ{ºù曵téÒRïÛµ×^«°°0û~JJŠ:wî\ª­æ¿ÿý¯^}õU‡±®]»4ÀtôÀû¨9sæ”[½zµŽ=jB4Æ ‘¬ø>”V\\¬Q£FiäÈ‘ yHHˆ^{í59sFÇŽSZZšæÌ™£¨¨(IÒöíÛõÒK/9œgذa÷Ô¨QCôÜð8§-4Tà­'77W‹-*5n³Ù4cÆ "‚•°;7zôhM˜0Áa,,,L«V­Òo¼¡˜˜IR`` zõê¥Ï>ûÌ>oòäÉö™9sæhË–-çyúé§kðW0xôå—_êÂ… e¾VòÆV 2è/ßW_}¥×_½ÔøÜ¹suçw–yLûöíÕ½{wI?€?^zå•WæÕ¬Y³ÔÀzè÷AeµÏ\²gÏmڴɃÑÀjHد,33Sƒ *õ=ñÄêܹs¹ÇöèÑþýïÿ[÷ß©§(¿øâ‹TßÀÐBãc233µtéÒrçXåfVɪïÃÿL˜0A‡v ÒØ±c›œœlßÎÈÈзß~ëðzƒ 4bÄ÷ ¨Òh¡ñ1K–,Qvvv¹s>ûì3Ö„G¥”•¬“À_”™™©qãÆ•ïÙ³§êÕ«çôøÈÈÈr_ë­·T½zõJÇð´Ðø˜òÚg.9þ¼.\èh`5$ëW¶`Á¥¥¥•wuŘ   +¾ÖªU+õéÓ§Ò±¼ rò!éééZ±b…Ks­ÒFó‘Ô_4sæÌRcaaaúÝï~çÒñG޹âko¿ý6Åð!Tà}È¢E‹œ>Žý’µk×êÔ©SGd,GÏã=/[NNŽ6lØPj¼]»vªV­šKçØ»wo™ã;vT‡®*>€w¡Þ‡|þùç.ϵÙlš?¾ÑÀŠè/ÛæÍ›K=AUºØúâªo¾ù¦ÌqWn€X «ÐøˆÌÌL­ZµªBǸÒ/_•‘8zïyÙvîÜYæxbb¢KÇ—ù¼}ûöjݺõUÅð>´Ð˜èã?Öĉ=r­eË–•Y,ϦM›Êí»­êøíQÕ@R/ýüóÏeŽ_ýõ.¿nݺ2ÿ.Ž9òªâx'ZhL’––¦gžyF#GŽÔéÓ§ ¿Þ‚ *|LQQ‘Ã#ܽ ‰£çñž—íØ±ceŽ×¬YÓ¥ãËzrë5×\£ûï¿ÿjÂx)ZhL²mÛ6åççËf³iÇŽ†^+''G_~ùe¥Ž;w®›£©:H6Ýø²ýöÛoeއ‡‡;=våÊ•eö¿wìØ±ÌŸ * À«P7É¡C‡ìÛgΜ1ôZ+W®Tfff¥ŽýþûïõË/¿¸9"XUYɺÍf3!’ªåüùóeއ„„”{\ff¦† RækM›6uØ/..Ö€Ô«W¯Ê ðôÀ›¤äãÔÏž=kèµ*²úLY¬\…‡{••¬“ÀK111eŽ;û`=tèÐ+~€ÎÈÈpØ?~¼¦M›¦ˆˆˆÊ ð<ÈÉ$%“ö+UçÜ¡  @K–,¹ªsxëj4´nx |Ù®´ÚLzzúyï½÷4}út‡1???Hºxcú¥ŸñÕ«Wë/ù‹$©{÷îîP…Q7IÉÊ[aa¡a×ùúë¯Ë||{EìܹS©©©nŠVF_¶Q£F©zõê¥Æ¿ýöÛ2çÏœ9SÏ=÷œÃXݺuµ|ùrõèÑCÒÅ¿—þóŸõñÇ«W¯^*,,TãÆÕµkW÷€*…x“deeÙ·Lp-Zä–óÌ›7Ï-絕õ³läToѬY3}úé§¥ "S§Nu¸é´°°PcÇŽUÿþýÞË'žxB;wîT§N4`Àûø¸qãôÇ?þQçΓ$½ñÆö =Àºh¡1IÉ ¼‘ ü²eËÜržÅ‹»å<°6*ðWÖ³gO}üñÇ ¶¥¤¤èŽ;îÐ'Ÿ|¢ &¨I“&zùå—íïY||¼-Z¤3f(**JÒÅÕg6lXêü=ö˜úôéã™/`**ð&ÉÉɱoU¡Ü±c‡ÃͲWã‡~ðº‡:Ñïy$ðåëׯŸ¾þúk%%%ÙǶnݪ?üá5j”8 IŠ‹‹Óßÿþw¥¦¦ª[·nçÐØ±cÆ:wî¬)S¦ÿª„@*ðæ(™Ô•h._¾Ümç*..ÖâÅ‹5tèP·ÖSTTTjŒÞQrr²¶nݪ•+WjÉ’%Ú³gÒÓÓU«V-5kÖL÷Þ{¯:v쨠  +ž£W¯^úí·ß4}útuëÖM/¾ø¢=øUÌäô_|nb5FÉDǨÿñ®_¿Þ­ç[½z5 <ÊEÞ5þþþêÔ©“:uêTés >\ÇwcToA IJVÝJàݽrLJJŠ[Ïë!ÀxN3Gxcx¢ÿÙgŸé£>ÒÎ;•™™é°ò$8p TûNÆ ¾çaaaЉ‰QíÚµ•œœ¬ââb¯ù™ Þó|5ÏÏÏw¸9#‘À›Ä üí·ß®Ûo¿ýН‡††*;;Ûaì§Ÿ~R5 ‰Öçk |vv¶Æ¯©S§ê×_5;€ 7IÉžGŸÃ*|ex›Í¦iÓ¦éoû›Ž;&???Ùl6Ö`x ¼IJ®0qi}gÀÛùB~Ù²eúË_þ¢]»vÙÇzöìIòðV¡1IXX˜};::ÚÄH¬ËY<=òîgåþ¿ÿý¯žþy­[·Îa¼K—.š>}º9A|’¿³ ;xc”¬º'$$˜ à>e%ë&Dâ>»wïVïÞ½uÛm·9$ï~~~1b„>ÿüs…„„˜ ÀçÀ›¤eË–’¤ØØX5jÔÈäh÷(+¿|õ#o±gÏõéÓG7Þx£æÎëð›ºuëjÅŠš0aB¹\ÀôÀ›däÈ‘JOOWRRï1,£¬j{ff¦ ‘TÞÞ½{5zôhÍž=»Ô’€€ }ú°D$ J¡–E‚îy¹¹¹¥Æ*šÀŸ?^+W®ÔÚµkµaÃ¥¦¦–ú^îÝ»W/½ô’¦L™R¡s=zT|ðþóŸÿèìÙ³eÎILLÔ /¼ ÇœTU=ðܦ²ø½{÷jÉ’%Z¾|¹6lØàÒÒ“ ,p)/,,Ô—_~©©S§jùòåW<÷í·ß®_|Q>ø ­ƒ€* <,‹ ¼ç••À§§§—9÷»ï¾Óܹsµxñbíß¿¿Â×:wîœ233ŠVÒÏ?ÿ¬?þXÓ§O×É“'ËœS­Z5=üðÃ6l˜Ú´iSá0xX ¼ç••ÀïÝ»×¾½k×.Í™3G³gÏÖ/¿ürÕ×;tèš7onßOKKÓ矮?þXß~ûíkРž~úi=ù䓺æšk®:<‰ <|?ÛîWVüÞ½{õꫯê‹/¾ÐÎ;Ýz½‰'ê±ÇÓÖ­[µlÙ2­_¿^………eÎ U=Ô¿ýþ÷¿§M൜VàùŸ¼xÏ+«_XX¨·ÞzËëMžðEN[hHrà­¨À{^YË7&$$” PÛ¶m5aÂsæŒyX˜³‡ ñáÔý‚‚‚J½¯AAA&E€5ù“ ›ãÈ‘#öí³gÏš‰ïâ&W÷óóóSpp°ÃX@@€IÑ`M¬Bc’’IûùóçMŒp¯Ë[fHàp/§ <zcdffÚ·m6›‰‘8²Ò÷ÛY…§Æ¸ügˆxÜ‹›XMR2/,,4%†²¾·Vú~Ó"cŽËx+}( * …Æ$YYYöm³*ð$ð0BÉ–???xÜŒ ¼IrrrìÛfUàËJ¬¬ôý¶Ò×âMJ&ðô¿à~$ð&)Yu7«RLFˆŠŠ*s¸7±š¤äåUil+}¿¹‰Õqqqen÷pZ‡1J&—fµX)Y¯ *ôƸîºëÊÜîè,÷õ$Ï(%+ðf-³G Œ0bÄíÞ½[6›MÏ?ÿ¼Ùá`9N3G+%tUIUHàËÂ÷W«U«VÚ²e‹Ùa`YN[h¨À£äM¬&Fò?VKÞK~H*‹Õ¾^àü%è$9Æ(yãjtt´)1\þ½å{ Põ9MàaŒððpû¶YKí]þ½'¨ú¨À›¤dÒž`J V¯Às+°"§ <zc´lÙR’«F™ƒÕx+rºŒ$I1FŽ©ôôt%%%™ö[½…† <°¢@*ðæ Õ»ï¾kj —/_ék ¼Õ¾^àœ.#I’c]ÁÁÁûVû^SVÄ*4>Ìê ¼3$øÀq«»¼…¦äÚôV@ °"Zh|ØåøjÕª™‰1¨°+¢ïÃ.¯¸[-°"ääÃ.¯À_¾ïí¨À+"÷a¾^çgx#V¡ñaVïw† =ðFÜÄêÃjÔ¨á°iR$Æ AVÄM¬>,&&¦Ü}oÇ2’ÀŠœVàIà­+::Úaß×xoä`v 0Éå ûå =ª*ð>ìò„½yóæ&Eb *ðÀŠX…ƇÅÅÅ9ì'%%™ \Å:ð>ìÖ[oµ/Ù¤IËUà¬(ß«íÛ·kÓ¦Mj×®å¾×´Ð+ dIßÖ´iS5mÚÔì0 Á2’ÀŠè7É?ü áÇk×®]f‡â³¨ÐoÄ“XM2{ölMœ8QwÞy§Îž=kv8–D‚¬ˆ›XMrøðaIÒùóçµ|ùr“£€·(7'y7ΩS§ìÛÛ¶m31ë****÷u~¾€7*7§?Þ8öí;v˜ ¼I¹=ðT(“ŸŸoß>q℉‘X=ðÀŠh¡1Iɾd; Px“”LàÓÒÒd³ÙLŒÞ‚“”Là‹‹‹•——gb4Öäì&Ö€€Eà>TàMRPPà°Ÿ››kR$Öåìç—›´€7ò/¯ Ioœ’ø²öqõÊ»‰ÕÏÏŸoà•ü¯ü"JÃ\ž<ò^»_y <í3À[•›ÀS¡4Npp°Ã~µjÕLŠÄºÊKàùÀ¼-4&!7x`ETàMR2 $7@y?¿Tà€·"7IɾvíÚ¼×(oI*ðÀ[q«I‚‚‚ìÛµk×61ßÄÏ6ðVTàMR²e¦Aƒ&Fâ›Hà€·â&V“DGGÛ·[·nmb$ÖÅM¬ÀŠ«b>;;[yyy’¤ÂÂBeddØã©Y³¦}^TT”)ñ¹Cɶ™Ûn»ÍÄH|xà­<–ÀéðáÃÚ³göîÝ«'Nèøñã:yò¤Nœ8¡ŒŒ ¥§§ëÂ… ²Ùl:wXX˜¢¢¢mÿott´jÕª¥k¯½Vñññª_¿¾êÕ«§ØØX·}MW£Y³f’¤[o½UíÛ·79k¢¬È°~ß¾}JIIQJJжlÙ¢ÔÔTåääTú|åÉÌÌTff¦Ž9âtnHHˆ4h &Mš¨Y³fjÚ´©Õ´iSEFF_Yžzê)%%%éÞ{ïu¸¡îÜ€•›ÀW$ÉÉÏÏ×ÚµkµtéR-[¶LtCxî—““£={öhÏž=Z²d‰ÃkuëÖU«V­të­·ÚÿU±Õý÷ßoȹáxà­¯ö&ÖmÛ¶iÚ´iš5k–Ξ=ëÎØ<îØ±c:v옖.]jkذ¡Ú´i£{î¹GíÛ·×u×]g^€¨*ðÀŠ*ÕBSTT¤/¾øBo¿ý¶¶lÙbTlUÂtàÀÍž=[’” öíÛ«C‡ºï¾ûjr„¨ *ðÀ[U(·Ùlš9s¦ÆŒ£={ö[•´ÿ~íß¿_“'OV5ôÀ¨W¯^êܹ³BBBÌ%PVäÒƒœ.%‰êß¿¿Ï&ï—ËÎÎÖ¼yóôðëvíÚêÛ·¯¾ûî;³Ã‚ Êû¹¨ÊÊMà‹‹‹5gεhÑBO<ñ„öîÝëÁмKff¦>ýôSÝ~ûíºãŽ;4wî\˜–O+¯_½zuFà>åÞÄzìØ1=öØc†¤øøxEEE)22R‘‘‘ŠˆˆPxx¸"""&IJKKs8.##Cyyy:sæŒýÏ©S§”žžnxÌåIIIQïÞ½uÝu×iìØ±êÕ«Oµ5Ay <íNÀ[•Ûïnµk×Ö-·Ü¢n¸A jܸ±ïÖ–†‚‚{2ÿË/¿hÿþýÚ·oŸý¿ÇwÛµÊsðàA=öØcúÏþ£iÓ¦©~ýú¹.œ£¼•¡ |\\œ:tè :è®»îòØŒAAAŠ‹‹S\\œ’’’J½ž••¥}ûöi×®]úïÿ«ï¿ÿ^Û·oWVV–!ñ¬]»V-[¶Ô¬Y³Xû݃¨À+r{§^½z©W¯^ºýöÛ«dëHhh¨’’’”””¤>}úHºx£njjª=¡¿”ÔºåšéééêÚµ«Þÿ} 2Ä-çDåQÞªÜøŠ¸ë®»4|øp=ôÐC rË9=) @-Z´P‹-4`ÀIÒ… ´~ýz­Y³F«V­RjjêU]Ãf³ièСÊÏÏ×È‘#Ý6ÊAXÑUWàÛ´i£·ÞzK÷Þ{¯›Bª:"""ÔµkWuíÚUÒÅ5à-Z¤E‹ióæÍ***ªÔyG¥˜˜õíÛ×áâ2¬B¬¨Üe$ËÓ¸qc-^¼X›7o¶dò^–„„ýùÏÖÆuðàA;V‰‰‰•:×SO=eù§ØVeTà€·ò¯h%ÒÏÏOƒ ÒöíÛí•i_T¿~}½øâ‹Úµk—¶lÙ¢~ýú©Zµj.Ÿ——§~ýú);;ÛÀ(}x`EJà«U«¦ hòäÉöµÙ!ÝvÛmúä“OtäȽù曊‰‰q鸽{÷êwÞ18:”… <ðVþ®&2—’÷‡zÈà¼W­ZµôꫯêÀ;v¬"##3~üx?ÞÑù*ðÀŠ\®À¿÷Þ{zà ÇÂÃÃõâ‹/ê矶/Sy%.\Ð_|á¡È|Ky |5< €û¸”À7mÚTO?ý´±–:uêèÓO?ÕÔ©SËíÿüóÏ=$)::Úì*Å¥šîÝ»WÉ2y‹?þñ7nÜ__½zµÎž=ëÁˆ|CyøØØXFà>.UàkÕªåP¬-!!ኯeeeéÍ7ßô`4põFc€ªÆ?**Ê餽{÷z ëºpá‚^~ùårçüë_ÿÒ”)S<‘õåææª°°ðНó¡x+ÿêÕ«;]-eþüùÊÈÈðPHÖ²oß>µmÛV[·n-w^qq± ¤!C†èÂ… ŠÎšrssÕ­[7ååå•ùz@@€êÖ­ëá¨ÜÃ_’j×®]gÏ:­ ÃÑ… ôÊ+¯())IÛ·owù¸ÿûßjÒ¤‰&NœÈCž*áRò¾råÊ+ΩW¯ž‚‚‚<€ûøKÒÝwßítâĉ5iÒ$Ãòv999š8q¢4f̘J%á§NÒðáïW^y…&eee9MÞ%©Q£FŠÀýü%iРA.M:t¨Þxã CòVÔ /¼ zõêiøðá:}úôUŸóÌ™33fŒn¸á%''ëßÿþ·Î;ç†h­çðáÃúÝï~ç4y—¤Ö­[{ "cøÿÿµöºté¢eË–¹tPÿþýõ¯ýKááá†WÕåææjùòåš>}º–.]*›Ífø5«U«¦.]º¨oß¾ºï¾ûx¢¨¤Y³féÙgŸuy)Îùóç«gÏžG` {¿k×.Ý|óÍW¼ñïr7Ö‡~¨víÚ_•“ŸŸ¯U«ViΜ9Z¼x±©7œ†‡‡«sçÎêÙ³§:wî¬ÐÐPÓb1Ãþýûõ§?ýIK–,qù˜êÕ«ëĉªY³¦‘ÇžÀKÒ?þñ½ôÒK:AïÞ½5fÌ5lØÐíÁUÇŽÓW_}¥+VhÕªUJOO7;¤RBBBÔ±cGuîÜY:uRƒ ÌÉ0§OŸÖ[o½¥É“'+??¿BÇöíÛWÓ§O7(2ã9$ðEEEêÙ³§-ZT¡“©OŸ>zî¹çtã7º=HO;sæŒRRRôÍ7ßhÅŠÚ±c‡[Ïïïï¯ââârŸzµÕ©S'uèÐAÉÉÉŠˆˆ0ìZž²oß>7NÓ§O¯ÔÍÁ±±±Ú±c‡âââ ˆÀ3xIÊÌÌT‡”’’R©Þyçêß¿¿ºwïîËÉÊÊÒÏ?ÿ¬-[¶(%%E)))Ú·oŸa×kÙ²¥&Ož¬:(++K’´|ùrýóŸÿÔÚµk ¹f@@€š7o®»îºKÉÉɺå–[” €€C®çNÔ‚ 4þ|mÙ²¥ÒzêÕ«§¥K—ꦛnrs„žU*—.®a~ÿý÷kÓ¦M•>q@@€’““uÏ=÷èž{îQRR’iUବ,>|XÇׯ¿þªŸþY©©©úùçŸuèÐ!C+á—„……éõ×_׈#¨°°0{Ÿ™™©ÐÐPmܸQo¼ñ†V¯^mx<Õ«WWbb¢š7o®æÍ›+>>^õë×Wƒ §ÀÀ@Ãc()##C§OŸÖþýûµ}ûvýøãÚ¾}»RSS¯úÜ=zôÐþóEGG»!Rs•™ÀK×3ÿÃþ Ï>ûÌmkРš5k¦o¼QÍš5Óu×]§èèhEEE)**Êéa/ÉÏÏWzzz©?gΜѩS§ìÉúÑ£GuìØ1?Þm_CEé©§žÒk¯½¦k®¹Æ>^VÉ·ß~«7ß|Ó¥%¨ZµjÙ¿/QQQªY³¦jÔ¨¡ûÊ7¡¡¡ v8¶  @™™™öýììlååå)??_YYY***ÒùóçUPP ³gÏÚÿT´—Ý?~¼þøÇ?ºýÜf¹b/IÅÅÅ7nœ^yå—W§¹ŠŠŠr¨Ô_J/¹”Vu8p †^æ ¾å%ð—lß¾]&LМ9s<òþ[É=÷Ü£>úHñññf‡àVå&ð—lß¾]O>ù¤¶nÝꉘ¼ÚwÜ¡~ýúéñÇ/·eÈÓßJYdIDAT•þ’“'OjÒ¤Iš2eŠN:åö˜­$**Jo¾ù¦†*???³Ãp;—xI²ÙlšüðC½óÎ;:zô¨QqUiáááºûî»uï½÷ª[·njÔ¨Q…ÏQ§N:uJ*,,¬ðñ999Z¼x±æÍ›§Õ«W›Úço¦àà`õêÕK¯¿þz¥¾ަ ü%ùùùš6mšÞÿ}íÚµËÝqU)!!!öu~ÿûßëÖ[o½êUZµ{÷nÅÆÆêôéÓWu®ÂÂB¥¤¤hÅŠZ±b…¶nݪ¢¢¢«:gUW§N=óÌ34hêÔ©cv8S龤üQ3gÎÔœ9stäÈwÄeªF©uëÖjݺµ’““Õ¦MU«VÍ­×xôÑG5oÞ<µmÛVëÖ­së¹Ïœ9£M›6iË–-Ú¼y³¾ÿþ{‡•a¼UDD„xàõìÙS]»vu©íÀjÜ’À_RTT¤ 6hñâÅúæ›oôÃ?Èf³¹ëônçïï¯ë¯¿Þž¬_úS³fMïýÝwßiذa3fŒÚ·ooèµl6›víÚ¥-[¶hçÎJMMUjjªNœ8aèu¯–¿¿¿uçwªK—.êСƒÛ?Hx·&ð—»pá‚6lØ õë×kãÆJMMõx¯¶¿¿¿êׯ¯„„]ýõJHH°o7nÜØ§´´4íÞ½[»víÒtäÈ:tȾŽ~AAÇb©^½ºš4i¢ë¯¿^Í›7W›6m”œœìò³|…¡ |YŽ?®Ý»wkÏž=JMMÕþýûuâÄ >}Z§OŸvé†Î°°0),,Lqqqª]»¶jÕªUj»N:jÔ¨‘O'é•e³ÙtòäI=zTiii:wîœÃŸ´´4åää8¬ËŸ••åð@¦ÀÀ@…‡‡Kº˜ ‡††*66V±±±Š‰‰Qll¬êÔ©£Æ«~ýú,ûà'ðÎäææ*''Çþ߈ˆ8$ƒ€¯ú|±†šqŽóšIEND®B`‚fluids-1.0.22/docs/fittings/sharp_edged_entrace_extended_mount.png0000644000175000017500000002571514302004506024751 0ustar nileshnilesh‰PNG  IHDR?¹a­UosBIT|dˆ IDATxœíÝ{xTõÇñOÈý:! Á"‚ÂB­&$ÂU)ÖËîºn}Ôê®­«}¨²[P¹$XÅbY\÷qÅn·ë–ÇGmŸ-Ý.T"K0TX­ CîWr›ý3ÍÛ\Ιs2çýzfÎ9sæK˜ßßïœ_„Ûív €-«¨¨¨×öÂÂÂ>·7ÌêB‰ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ð…ðeH„Ÿªª*«KaÂöáçØ±cúÙÏ~fu LØ>üüð‡?Tkk«Õe€0aëðóꫯjÇŽr»ÝV—„mÃÏéÓ§õðÃK’ZZZ,®„ [†ŸŽŽÝy瞉Î_|ñ…Å€pa»ðÓÑÑ¡ûî»OžmÛ·o×;ï¼£®®. +áÀVá§©©Iý×­mÛ¶ymohhÐ 7Ü ¸¸8eggëÉ'ŸÔ§Ÿ~jQ•`(‹²º€žõúë¯ëí·ßVnn®×DçË.»L/½ô’nºé&EFFZX%ÊlÕùé–““£iÓ¦ym[¿~½–-[FðA±eø‘¤ÌÌL¯ç³g϶¨Nl~Fåy­+¯¼ÒÂj@¸0$ü”••q/©©©žÇЉ‰1ü=€ó~öîÝkÄi¼DEýi.vrr²áçÎtøinnÖÑ£G¨Å á˜!èðS[[«ÚÚZ#jñÒ󪮔”ÃÏœ)èðÓØØ¨šš#jñÒ3ü$$$~~àL†„3:?ÑÑÑ}>FÐá§¡¡ð†Œ ÃOSS“¨ÅKÏKÛ ?À(† {µ¶¶Q‹—žá§¥¥Åðóg :ü´¶¶ª­­ÍkR#¤¥¥y›1¡8SÐá§££Cn·[.\0¢ŒŒ Ïã/¾øÂÐsç :ü´µµI’áC_=×ö:zô¨Îœ9cèù€3~ÚÛÛ%~®¼òJ¯»<¯[·Îkÿ¾}ûÔÜÜlè{€ðgXø1zØ+..NS¦Lñ<ÿùÏ®¿üË¿Ôk¯½¦ûî»O555ÜüøÍ¶Ã^’ôàƒz=ÿÕ¯~¥»ï¾[óæÍÓ·¿ýmÃß„¿¨Á˜YÃ^’ôðÃ+&&FÏ?ÿ¼Î;§¼¼<­^½Z3gÎ4ü½€3~º;?F{u{àôÀ˜rnà<¶ð `Âp[Ox0à(†u~Ìšð `$:?ÀQ?ÀQ˜ð …ÎpÃÂO÷ïvFøŽtøéìì”$utt] €Ù ?t~ÀPtøéêê’DøCÃ^ÀQèüGaÎpÃ:? {€¡€ÎpæüGáj/à(t~€£0ç8 W{G¡ó…9?ÀQ¸Ú 8 à(ÌùŽÂÕ^ÀQèüGaÎp®öŽBç8 s~€£pµp”(_jmmUuuµªªªT]]íùUUUå~žy楥¥)==]iii^ãââLýƒøbÀð³ÿ~-\¸PMMM>lÕªUýîKLLÔo¼¡œœÿ*0ЀÃ^ÙÙÙúÆ7¾aÈ͘1ƒà,7蜟uëÖòFëׯ7ä<Á4ü,X°@sçÎ êMfÏž­ u#øtµWaaaPo²aÆ ^`ŸÂÏüùó•ŸŸÐäææjþüù½Àh>ßç'Ðî]`'>‡Ÿ‚‚¿»?¹¹¹*((ð»(³øu‡ç’’¿Nîïñfó+üäååùÜý™;w®æÍ›HM¦ñ{m¯µk×útœQ÷0’ßágÁ‚ÊËËð˜ììlîël) UÝW¯^=àþ`ï `–€ÂÏ7ި믿¾Ï}³fÍÒ’%K‚* À,…IZ³fMŸÛ‹ŠŠpAf 8ü,[¶L3fÌðÚ6cÆ -[¶,è¢Ìpø‰ˆˆÐŠ+¼¶­X±‚®°µ€Ã$Ýyç=z´$iäÈ‘ºãŽ; ) À,Q¾X__¯ÎÎN577ëÂ… jnnÖéÓ§5aÂ={VãÆÓ‹/¾¨ŒŒ %$$(99Y’”œœ¬¨¨(EEEy¶õ%&&F‰‰‰Ö§øøx_Kè%Âív»ËË˵sçN}üñÇ:{ö¬¾üòKÕÕÕ©££C V×ÁÂV||¼âââ$y¯aÆÉår)::ZÉÉÉJMM•ËåRrr²’““5aÂåççËårù\Kcc£Nœ8¡¯¾úJ_~ù¥ššš<²³³Sõõõ’¤ÚÚZ¹Ýn544¨££C---jmmõ:O{{{ŸïÑÞÞ®ÆÆÆ~k¨««SWW—Ï5÷çÒš¾ku~>|¸Õ%ø%66V V—á—îÿÐZÅåriذ -ü–ššjꔎÄÄDÅÄÄøõš¤¤$EGGûõš@¾wþ|½û«)%%E‘‘‘½¶÷õ÷522R)))½¶ûÒ ñG”tñ¹«¯¾Z©©©jmmUCCƒ¼wttx>°»õüàîÖý>˜ÖÖVµ´´\x_ ¾ô :’­¤¤$¯cº¸»ÿ1JIIQ\\œ’’’”œœ¬ØØX¥¥¥)11ѯž-[¶håÊ•jkkóù5€477{ý} jjj¬.€Áúú¼ˆˆPjjªçó=..NéééŠUDD„233©ôôt;V“'OÖ•W^é9O„Û—¤‚€ttthĈª­­µº”~Yý¿8«ñççÏ?”þüvïÙíëHw¤/þüg{0FvTètö=ìg®{´d ýu~ºY1¥Å>?¥aèСC½‚Oaa¡ŠŠŠ¬)wµvøða«K— ü˜èÌ™3V—.Aø1QSS“Õ%€K~LÔÙÙiu à„yO` ‰ÒÓÓ­.\‚ðc¢«®ºÊêÀ%¸É¡‰ª««5zôhîî €….½Ç¥¥¥é»ßý®Õe€¢>ùä9rD_}õ•jjjT[[«ÎÎN¯…MÛÚÚÔÔÔÔ­§ÓÔÔÔoçÃß…SZج¿[tt[òîÛŒwß¾»ûy÷¹RSS«ŒŒ eddhêÔ©?~¼ÏõJÒ‹/¾¨•+WêÆoÔ±cÇüz-0^ÔÁƒUZZªÃ‡ëôéÓ:wîœ:::¬®«Ommmý©žìÒµFΟ?ïul÷¦555žÅѺ¹\.EEEÉåriøðár¹\jnnVcc£RRRü?’4qâDjÍš5:}ú´!««€Àô9ç§¶¶V jllTss³êêêÔÕÕ¥úúzuvvª±±Qíííž®ÎË/¿¬øøxÝsÏ=9r¤\.—¢££½BÈ¥+«_ÊåriذGáºW^ꪫ«UUU¥êêjÕÖÖª¾¾^’<_מ±††OíÞß“ÛíîsáÔ .ø´"÷@9õ¬5XÝ?sC•¿]M€y.óô„çsçÎ)++K)))úüóÏ [­€¡jñâÅzã7$IyyyZ¾|¹ÓçäZÞ¬UÏ[m=œ½ªûæÍ›ÕÒÒ¢––½òÊ+Lð8ZEE…'øHÒ| E‹yM±€µ‚ºÚ«¶¶V/¼ð‚çùæÍ›Å•ó'+,,ôzÞÐР­[·ZT úTøyþùç=óU$éøƒþë¿þ+袊***´{÷î^ÛŸ{î9îùf#‡Ÿææf=÷Üs½¶Óý8ÒºuëúÜ~æÌ½úê«!®ý 8ülݺU•••½¶:tH;wî ª(†šòòr•––ö»ÿ'?ù Í›èj¯öövMš4I§Nêsvv¶Þ~ûí ‹`¨X°`Þ|óÍyã7´páÂU„þÔùyùå—û >’´ÿþ>Ç<GåååƒIzöÙgCP ãwç§³³SS§NÕÑ£G’TVV¦ÿùŸÿ ¤&†Œ½{÷ú|¤‹wåß´i“Éa0~w~rrr´ÿ~ŸŽ]°`Ã_€°VPPà×ö£££õé§Ÿ´V$ŒáW秬¬Ìçà#I¥¥¥Ú·oŸßE0ìÙ³ÇïQŽöövýô§?5§ øÄ¯ÎÏÍ7߬ßýîw~½Á’%K¸ô–æÍ›ÐüÖ„„QT”V®\iÔéò"""¬.}hU÷¾DGGu*†´îÐCø±'ÃÂOT”aM$†4½ÑùŽBøÀ`t~ìa/ Fø±7:?Œðco„ Fø±7†½0áÇÞèü`0½~0áÇÞöÀ$„{¢ó€Á=öFøÀ` {ÙÃ^Œðcot~0áÇÞ?Œðco {`0½ÑùÀ`„{#ü`Â=1ì€ÁèüØ Fè±7£óco„ Fø±7æü`0½~0ذa?^ ?ötøéþ3ì€7Â=~"##%I±±±A@8!üØ“aá'...èbÌù±7:?Œðcot~0¡ÇÞ?ŒÎ½vµá€‹?öÆœ Fø±7†½0áÇÞ?˜„ðcO„ FçÇÞ˜ó€Á?öFçƒ~ìð€Á=öFøÀ`t~ì9?Œðcot~0áÇÞ ?Љ‰1¢ÂáÇž YÛ+66–o0_£ócoA‡ŸØØX†¼è¡{ÑoÂ=~”œœlD-„Â=~RSS¨€°À°—½~0¡ÇÞ?ŒÎ½~\.—µ?ötøIIIѨQ£Œ¨€°@ø±7Cîó“““cD-„Â=~$éÆo4â4„îóco†„ŸÄÄD#N@X!üØ“!áü s~ìð€Á?öFøÀ`C-ôüìg?Ó˜1c«iÓ¦©²²Òê’LEøüðûßÿ^ëÖ­Óþýû­.€ µÎφ ôÅ_¨­­M‡Vcc£Õ%™Šðø¨¾¾^wÞy§6lØ œœM›6M[¶lQMMÕ¥°™¡~uêÔ)Ïó¬¬,eeeYX‘ù?€Þ|óM¯ søða=òÈ#ºüòËõ·û·úãÿhauìd(…Ÿ¯¾úÊëù²eË,ª$t?€Ž;ÖçöÖÖVýë¿þ«¦M›¦[o½U!® €Ý ¥ðsúôi¯çK—.µ¨’Ð!ü>jjjpWW—¶oß®ÜÜ\]wÝuzùå—ÕÙÙ¢êØÑP?'Ožô|ØóØ C^’áv»ÝVc=þøãòõÛêÏ•Jµµµ>Ÿ×¬cëêêÔÕÕeé±Ý~ñ‹_èÞ{ïõÚVUU¥gžyFÏ?ÿ¼š››{½&--M+V¬ÐòåË•œœì×û:òòòT^^®Ù³g«¼¼Üêrúåv»5jÔ(UVV*""B§NÒØ±c­.Ët„Ÿ04lØ0ŸÃ÷Ö[o)77·Ï}•••zöÙgµe˵¶¶öÚŸžž®üàZ±bE¯n€¡oΜ9ž#Þzë-«Ëé×û￯™3gJ’fΜ©C‡Y\Qh0ìhܸqýî1b„ž~úi9rD÷ÝwŸ"##½öWUU©¸¸X“'OÖæÍ›ÕÒÒbv¹Bh¨\íµ}ûvÏão}ë[VZt~Â?ŸøøxŸ'·EEEù5Tãr¹<“þ“ ØØXŸŽí5Á¸?ÑÑÑJJJòéØaÆÉårùt¬$•””(**ʧc9¢'žxB¿ùÍoúÜùå—ë±ÇÓ÷¾÷=Ÿ¿ì+??_eeeš3gŽÊÊʬ.GÒÅÛu¼öÚkúÁ~ ””555iâĉ:wîœ$©¢¢B999W¾ýË!©°°PEEEV—IW_}µþó?ÿSåååZ¹re¯{}ñÅZ¾|¹~ò“Ÿè‰'žÐý÷߯˜˜‹ª,;t~~ùË_jëÖ­žð5iÒ$¥¥¥iܸqúÎw¾£>úÈ|FŒ¡ë¯¿Þ²ZCa/ „rssU^^®_ÿú׺ꪫzí?}ú´þîïþNS¦LÑ믿nA…Œ`eøikkÓw¿û]Ý}÷ÝzðÁ½ö=øàƒúó?ÿsýË¿ü‹×\¤›nº©×ð|8#ü¸ýöÛõÑGé…^ШQ£zí?qâ„î¸ãåçç;f"N¬ ?uuuZºt©þýßÿ]?þ¸¾óïô:æ™gžé5ÝÁ)—¸w#ü‰ŠŠÒƒ>¨O>ùDË—/ïsþPYY™¾ùÍoêG?ú‘ÚÛÛ-¨@ ¬?•••š3gŽJKKuûí·«¤¤¤Ïã222TPPày¥%K–„ªL[ üs¹\Ú²e‹Þ{ï½>/ïêêÒ¦M›tÛm·YP€¡ ©©IË–-Ó‡~¨Y³féå—_ð‚“ž÷òÉËËSjjj(Ê´ Â`3fÌÐÂ… ûÝüøñV ¡îüÜÿýzçw”žž®íÛ·+11qÀã+++=6ä%qµ` 555zàôë_ÿºÏýcÆŒÑ+¯¼âª*”áç¿ø…^{í5IÒ?þã?z‡æŽŽ½ýöÛžçN ?t~‹ýö·¿ÕŒ3ú >ñ¡ƒjÆŒ!® @ B~ª««µbÅ IÒ¬Y³t×]w úšßýîwžKÜÇŒ£iÓ¦™Z£~‹œ>}Z·Ýv›n¹å>}º×þ«¯¾Z»wïÖ믿Þçaì+T᧤¤Ä³Fã£>êÓûmݺÕóxÑ¢E¦Õfg„ ÄZZZTRR¢©S§öyÇç””mÚ´I|ð,X`A…‚ŠðS[[ë 2111>]qêÔ)ýþ÷¿÷mmm^ËSŒ1bÐ׸Ýn8pÀó|ñâŦÔ60çЩS§úÝ÷ÑGé¶ÛnSNNNŸÁç†nЛo¾©;w|€0fVú¿ÿû?µ¶¶zžv“šš}þù窫«ólsòœB:?ahÕªUr»Ý>Û}•€/jkk}>¯YÇ666ú¼ÌCKK‹×?ikkóŒûê³Ï>S^^ž×¶ãÇ«¨¨HÛ¶mSWWW¯×\}õÕzòÉ'uë­·ZºÚ3s™=ìuþüy¯çý{ðàAeddèĉžm‘‘‘ÊÎÎ6¥¶¡€ð†žzê)«KKÅÅÅ***ò<ÿý÷uï½÷Jº¸éÆõóŸÿ¼Ïp6qâD­[·NwÝu—£VNœÊìðséüËcÇŽõyÜ«¯¾ªqãÆiüøñª¨¨ðl¿öÚkýšÃnö´{÷n}øá‡ºçž{4yòd½øâ‹½‚ϸqã´uëV9rD÷ÜsÁp³ÃOVV–×Åeee^s2›ššô÷ÿ÷ŠŽŽÖìÙ³%Ék~gNNŽ)u „ÀG—þ#öÑGiúôéúÿøuttxí»ì²ËôÜsÏéÓO?Õ< èèèP– Àbf‡Ÿ¸¸8ÝrË-žçºù曵mÛ6mذA³fÍÒܹsuûí·{Žéyuê| ;wê…^pÈ,\1ìø(%%eÐc222´råJ=üðÃ>_Ž ü„âR÷'Ÿ|Rÿýßÿ­ÚÚZI¯.=pà€&Nœ¨×_]3gÎô:~„ žÇzä‘Gô«_ýÊçÛ„:?€Zbb̘1Ú´i“Ž?®ýèGÀáBqAÃøñãµwï^-\¸PÇ×u×]§Í›7ëã?î|$);;[999ÊÈÈÐO<¡C‡éšk®1½N;¢óøhêÔ©½¶M™2E+W®Ô]wÝ¥˜˜ ª`G¡ZÛkúôézã7|:6**ÊkÒ³“~͘1C+W®Tii©®½öZÝqÇZ²d‰Ïw±à<ÜÒž?€6nÜhu †€Pu~þË €Á?öFøÀ`„{#ü`Â=~0{#ü`0½~0áÇÞ?Œðco„ Fè±7£óco„ Fø±7Â#üØá“~ì‰ð€ÁèüØáƒ~ìð€Á?öFøÀ`„{#ü`0:?öFøÀ`„{#ü`0½~0áÇÞ?˜„ðcO„ FçÇÞ?Œðco„ Fè±7£óco„ Fø±7Â#üØáƒ~ìð€Á?öFøÀ$„{"ü`0:?öFøÀ`„{#ü`0:?öFøÀ`„{#ü`0½~0áÇÞ?Œðco„ Fø±7Â&!üØáƒzìð€Áö²7Â#üØáƒ~ìð€Á?öFøÀ`„{#ü`0½~0áÇÞ?ÀQ?ŒÎ½~0áÇÞ?Œðco„ Fø±7Â#üØáƒ~ìð€Á=öáv»ÝVÀP±{÷n-Z´(à×ÇÇÇkøðáJKKSVV–JJJ4}út+Ä`?ø)??_eeeAŸ'22RŸ|ò‰&Nœh@UðÃ^øiݺu†œç–[n!øX€ð€Ÿ,X ¹sç}žGyÄ€jà/Â(,, êõÙÙÙš3gŽAÕÀ„0þ|åççüú`ÃÇ„g´gÏÍŸ?ßï×}ãßлï¾Ë%ñ¡ó@€ êþ|,Dç€ øÛý™9s¦¿¿Þ¡¦¦¦ÆêÀ¶ UTT$‰ðÇŽÓ÷¾÷=9rD_~ù¥Õåàh„ŸX½zµöìÙcu@\ênº .hÇŽV—¾Fø1ÙÿøGSç±ÿ0ìe²£GöÚÖsÒ-:?&;þ¼Õ%€?& çK«Š?ÀQ?&‹‹‹³ºÐáÇd£G¶ºÐk{™ìý÷ß×Ì™3­.,«„„«Ë™ÄÄDÅÄĘvþÈÈH¥¤¤˜v~IJJJRtt´ÏÇGEE)999¨s>Üó8""B©©©žçÆ “Ëåò<ïù5HHHPll¬RSS£¤¤$϶žç”?¦ëììÔÈ‘#U]]mu)8RLLŒ.¿ür=öØcúþ÷¿Oø …-[¶hÕªUºpá‚Õ¥àXééé:þ<á'TššštòäIUVVêìÙ³jhhÛíVmm­$©®®N]]]jllT{{»ZZZÔÚÚª¶¶6555yk Õ»›››û YF¯jnö*ì0†Ê\.—† ³ïÚ˜˜%&&švþèèh%%%ù||÷P”¯RSSÑïþžCZqqqŠïóµ±±±JKKÓÍ7ßLø쬸¸¸×ÝÀ¹C8ǾQÀ„à(„à(„à(„à(„à(„à(„à(„Ÿرc‡Õ%€¯~Bà·¿ý­Õ%€¯~BàÃ?´ºð5ÂOœÜç{ ü˜¬³³Óëw`-ÂÉ?Ø áÇdÝÃ]„ìðc²îÐÜìðc2†½°ÂÉöÀ^?&cØ {!ü˜ŒÎöBø1s~°ÂÉ?Ø áÇd,o€½~LFç{!ü˜¬««Ká» ü˜¬;ü¸Ýn‹+áÇtÝ¡‡ð€=~LFøÀ^?!BøÀ?&£ó€½~LFèÀ^?&£ó€½~B¤û’wôÖÙÙ©)S¦(**JÉÉÉš?¾>luY€0Eø1ŸÁEFF*??_jllÔž={TQQauY€0Eø1áÇ7×^{­×ó¹sçZT Ü~LFèñ͹sçð<_¼x±…ÕÂáÇd„ŸÁíß¿_mmm’¤I“&i„ Wg„“z÷Ö[oyÓõ˜ð"Üä°=ÃÏ¢E‹,¬à„“zÖÚÚªòòrIRTT” ,®î?!ÂðWßöíÛ§ææfIRvv¶\.—ÅÂáÇdLxØ®]»<ò„áÇd^¿ÃÛÎ;=™ì ÂÉ=ý;sæŒgõö´´4}ó›ß´¸"€~BdØ0¾Ô—Úµk—g8pñâÅŠŒŒ´¸"€ð‰l2BOÿzÎ÷¹é¦›,¬à$|2‡Ã_Þ:;;µ{÷nIâ’%K,®à„“1á¹oPuuµ$iÖ¬Y5j”Åœ‚ð"„o=‡¼–.]ja%§!ü˜ŒÎOßz^âÎ|@(~LFøéíüùózï½÷$q‰; ô?&#üô¶k×.Ïšg7Þx#—¸BŠðc2BOo\â°á'D¸ßÏEn·Ûs‰{dd$ár|"›ŒÐãíÿ÷uöìYIÒœ9s”žžnqE§á“9DA•––zßzë­Vp*>‘MÆœoûöíó<þö·¿ma%§"ü˜Œ«½þ¤««Kååå’¤k®¹FYYYWp"ÂÉ?òñÇ{–´˜8q¢Îœ9£]»v©¤¤D•••Wp ÂÉ?òöÛo{oß¾]cÇŽÕC=¤‚‚1ÂÂÊNeuáŽÐó'³gÏÖ5×\£ªª*Íœ9SK—.Õý÷߯øøx«K8áÇdÝᇫ½.Îóùðí.àp|"›¬{飖phnnÖÖ­[uà 7¨ªªÊsÂ8›7oÖš5kÂÉ.öêžûÑ=ìÁ¼H AÝ?„ 0wx6YÏÎÏ /¼ Õ«W6ÄQ\\¬ââbCÎ{èA/½ô’}ôQ544X]„ÂÉzÎù¹ûî»ÕÖÖ¦§žzJçγ¸2ØYuuµÖ®]ku–ö2YÏÎORR’~øÃêèÑ£Ú°aƒÒÒÒ‚:waa¡Ün7¿lô«¨¨(蟙èèhÝyç:pà€.»ì² ÏðFø1Y_—º§¤¤hÍš5:qâ„Ö¯_¯áÇ[Ul$!!A>ú¨Ž?®W^yE×_½®¸â «Ë€°Cø1Ù@—º§¤¤híÚµ:uꔞ~úiBC%&&jùòå:vì˜~úÓŸjìØ±ž}üL€ñ?&‹‰‰‘tq(£?IIIZµj•Nœ8¡ââb¥¦¦†ªÿüs4‡a/0áÇdÁt~.5|øp­_¿^'NœÐš5k”œœô9a¬©S§êúë¯×+¯¼¢Ï>ûL<òˆ_Cž—bØ ŒGOÝdÝ¡'˜ÀK¥¥¥iÆ †Æ™>}º8`ØùöãÑù1Ytt´âããùC@èü€ñ?!ì2p.ÂðYYYV—¾Fø éÓ§[]øá'¾õ­oY]øá'–.]ju àk„à(„à(„à(„à(„à(„à(„à(ÿ÷1ʾIEND®B`‚fluids-1.0.22/docs/fittings/flush_mounted_sharp_edged_entrance.png0000644000175000017500000001523014302004506024750 0ustar nileshnilesh‰PNG  IHDR›W™zsBIT|dˆOIDATxœíÝyP”‡ýÇñÏr.ÅЍ j4ŠÖ£ ‰ÆcRGi ãš&£­GÒ¦Në´Öv¦ÿ5Ó™N;Óv:Î4ÇÔª1Ú‰šDšZ+‘ƉcGZŒ&ñÅ€ìÂîþþ0îDÈÂã³ß÷ëŸÀîóÀ—¨¼÷9× …Br‰)S¦¨¡¡¡Åc[·nUVV–CÜ.Æép!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i® ¡Çãqz@”qUˆ4B0L#„Ó!À4B0LsU¹Ži® !‘F¦B€i„`š«BÈÉ2€HsUˆ4B0L#„Ó!À4B0LsU¹Ži® !‘檲Eˆ4W…€H#„Ó\Bv"LsUcb\5.À\UBˆ4W•…]£€HsUccce\Bv"¥²²R’ËBÈ®Q@¤¹*„l"ÍUe!„€HsUY! Ò\UBˆ4W•…“e‘æªr! Ò\Bv"%33S!窲ÄÇÇ;= ʸ*„‰‰‰Nˆ2® ¡×ëuz@”!„Ó\””§GDW…0==ÝéQ•oÃtóš"%Îé:ãhõØìÙ³˜àvk×®Uff¦»¶G¥Þ½{;= üâ¿ä²]£’´}ûv-\¸Ðé1QÂu!Œ×²eË”Í-×_š«Ž6÷Ö[o) éüùó*//Wyy¹jjjäóùTWW'ŸÏþ8ÈçóÉï÷‡×÷ûýáÏC¡‚Á |>Ÿ$) * µø~Í×½¹Î­ËÜŽÏçëÐrwú~NkllìÐÏnã ñÛÍU‚Á`Ä#yó@wkjjRSSS|¯Ž¾ù²‚Á êêêÚ]ænzQã÷ûÕØØ(¿ß×¼°ñù|jjjêÔ‹­;ý?¿USSS«?‡`0¨†††ðçjll ^SS£;wjúôéÊÉÉQjjª•˜˜¨ØØXõêÕ«Õ÷IIIiõ¾©^¯W š·¹ÔÔÔ.¯É9¢Q^^žŠ‹‹Ý»EhULLLÄï°Ã{€ÖÖ¬Y£wß}W×®]㼄(U\\,É…Ç 'lÙ²E’tèÐ!=zÔáiÐ!ÜbëÖ­ºpႤ»n×­[w×ìJFäB¸Å«¯¾Úâó½{÷êĉÎ ƒnG ™ââb>}ºÅcµµµZ»v-[…QŠ@3«V­ºíã~ø![…QŠÀÞÿ}}úé§·}®¦¦†c…QŠÀ^yå•vC÷ᇪ¬¬¬'BO „ iÏž=:yòd»Ë\½zUûÛߨ*Œ2„$ýùÏîPàvïÞÍVa”!„ÌÛ·o_‡ãvõêUmذ­Â(B˜·råÊN…í?ÿù[…Q„0íÀŽÚÕ«Wµ~ýz¶ £!`Zg·oÚ³gJKK»a"ô4BÀ¬ÿþ÷¿:~üx—ÖåXaô „ÌêêÖàMlFBÀ¤#GŽèرc_êk°U!“:zÝàìÞ½»Ë»Wqwð„x)À ²²2©©©©Íe ÕÐР‚‚y½Þ6—KOO×Â… åñxºcTt³8§'Œ1B#FŒhóù—^z)üñ’%K”••ÕcÁì˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F¦B€i„`!˜F»ÉÅ‹UQQ¡@ àô(€vÄ9=@4*))Ñïÿ{ù|> 8PS§NÕìÙ³•™™éôh€[Ânðú믫²²R’tåÊ=zTo¾ù¦f̘¡ùóç+++Ëá ¸ÝÉ“'U\\¬ÒÒRíß¿_^¯W‹/ÖüùóåñxœÏUØ5Ú Îœ9Ó걪ª*mܸQ‹-ÒË/¿¬šš&-î»ï>y<ýïÿ“ÏçÓµk×G»€vƒúúú6Ÿ«®®Öš5kôì³ÏêwÞQSSSN Z$$$høð᪭­•$¥¤¤hèСOåN„°Ü·üü| 6,üJ- é“O>ѯ~õ+ýô§?Uii©cp¹`0>!¯oß¾2dˆÃ¹Ç{À²eËtÏ=÷hË–-Ú°aƒ***$Ýæž={tìØ1åççkñâÅJOOwxZnQUUþøÞ{ïUß¾}œÆ½Ø"쉉‰Š‹‹ÓÓO?­×^{MóæÍSZZZøùk×®iãÆzî¹ç´yóævw­ÀMÇüÐC98‰»µÚ"¬¯¯×Å‹U]]­ëׯ«¶¶V òûý ƒòù| …Bòù| ƒòûýNÌî G½zõ Þ»wo­X±B?þ¸^|ñE8p ¼+õìÙ³úãÿ¨ââbýèG?Òøñ〠|üñÇ’¤äädåææ:<{Å>|X%%%ª¬¬TUU•êêêÚ\¸©©I¡P¨C_¸±±±CˆB¡‡4 uøä’@ Ðá‹Ù;:«¤NGðàÁŠmõø¨Q£ô§?ýIÿú׿´~ýz>}ZÒ¹<¨åË—+??_‹-bw€V._¾¬sçÎI’  ììl‡'r¯¸£Gêµ×^szލ“œœ¬ììlÍ™3§ÍeôÄOhÒ¤IZ½zµvìØ¾¬¢¦¦F›7oÖþýûµhÑ"MŸ>] =5>€»Ü{ï½>ŒòÕ¯~U‰‰‰Oä^qŸ}ö™Ó3t«øøxÅÅuíœ ØØØp|šøøx%$$())IIIIJNN–×ëUJJŠúöí«(99Y’Ô¿ÿ;~Ÿ~ýúé—¿ü¥òòò´jÕ*}ôÑG  …B:uê”~ó›ßè½÷ÞÓ’%K4räÈ.ý,¢Gcc£ÞyçIRLLŒ¦NêðDî÷ù矇?)((ÐÏ~ö3%%%98’MG¹¹¹ÊÉÉQaa¡Þxã •——K’´sçN•––ê[ßú– ZœlÀ–]»véÓO?•$edd(''Çá‰Ü-®¡¡ÁéÐL¯^½´`ÁMžøà]¾|Y’4dÈõë×ÏáiÝ-. :=ncÈ!zá…TRR¢õë׫´´4|†î| Ó§O+??_sçÎåd Š|òÉ'Ú½{wø~Å7ýíÙ³G±±± *++ Ÿà÷È#86k´à‚ú»X||¼òòò4vìXmÚ´IEEEºxñ¢¤÷3}õÕWuòäIÍ›7OãÆsxZ_F(Ò¿ÿýomÚ´I999êׯŸ¦M›¦AƒI’Ž9¢ââbÕÔÔèäÉ“’¤¤¤$Mœ8Ñɱ£BLL ×Ôßí233õãÿX¿þõ¯5iÒ¤ðI; z÷ÝwµråJíܹÓá)tUSS“Þxã ýáPÿþý5aÂ-X° AI3fŒÆŒ£'N„/ ëß¿¿ìÐÔÑ#ŽcLî£ÜÜ\ :T¯¿þº uåÊ…B!>|X+W®TBB‚¦L™âô¨:! é­·ÞÒªU«”––¦Y³fµ¹•7xðàð±AIÊÉÉᲉˆ!„îÒ§O-]ºT?ÿùÏ[\WX^^®ßþö·¾‰€»CQQ‘Ö¬Y£«W¯ª   Ý]ñññá“ç$ñÂ7BØ/êBG^¯W·îÖöz½¾Cç8qB«V­RuuµF¥ï|ç;í.ùòåðEôiiiúÚ×¾ÖcF½8~qºË¥K—´e˽ù曺yé‹ÇãÑÈ‘#õüóÏwùæzV]]^zé%9sF111úÉO~¢øøøv×i~¶è Aƒ8cþøc:uJÒ½@_ÿú×»yJ;Øv«¯¯×¶mÛ´iÓ&}öÙgá]"±±±7nœ&Nœ¨™3gjÀ€O  3JJJÂ×4¨C/dßÿýðEöéééÜV-‚⸎ðîtøða½òÊ+:xð ÃßÜ œ1c†~øá۾ŀ»—ßï×öíÛusoÜäÉ“ïx«ÄãÇëÈ‘#áu†λÑDPœ×ëuz4séÒ%­^½ZEEEºzõjøñØØX;VyyyÊËËÓ=÷Üãà”ºêÔ©SáfÇÄÄhÆŒí.ßÐР’’’ðMø%éá‡îÖ­‰k~ÖQaa¡ §{ÄÄÄtù¢S¯×~µÖüãæoÁtó¿ÉÉÉêׯŸØâm˜†~Çïã÷ûUTT¤uëօߤ÷¦ŒŒ M›6MsæÌawàr‡ ¿ÈíÓ§Ïo˜½sçNÕÕÕ©ººZÒビ&Mêö9-‰³p{ž`0¾ö¦³ºº^rr²î½÷^Í™3çŽ!óÌ3šJIIisÙÇëäÉ“ ª««“$}å+_Ñ!Cº}NKâF­ï}ï{ª¬¬TUUUøöí455uø‚íÆÆÆ- …ä÷û;ô5C¡ššš:´l èð]V::«¤ÏZWW§²²2mÞ¼¹Í‹d?ÿüs­]»VÛ·o¿3ýM}ûöÕܹsõÔSO)==½CßÀݯªª*üqBBB›¿§ÊËËURR¢üü|­^½:üø Aƒ87 ÂâÆŽ«±cdž¨¯¯×Å‹uéÒ%ÕÖÖª¶¶V òûý ƒòù| …Bòù|á·Âÿ+,, _ì~æÌq}>Ÿ¶mÛ¦õë×ëìÙ³-Öõz½š8q¢ž{î9ÞˆrÁ`Puuu­ŽùWWWëïÿ»&Ož¬Áƒ«ù¨ßÜ‹ uøða;¶Õ]¦Ð9­.ŸHJJRvv¶²³³˜'*4?Î …tùòeedd(hß¾}Z»v­>ú裯=†®E‹iÚ´iw¼ÃwÊÊÊ \YY©òòr 80üØùóçUXX¨Ñ£G롇Òµk×T[[~~àÀª©©ÑÖ­[4~üø?qaصk—ÒÓÓµcÇíÚµ«ÕnÐôôtÍ;WÏ<óŒz÷îíДzB~~¾Þ~ûmUWWkÍš5ÊÈÈ$ýóŸÿTii© ÂÌ755µøQ]]­ 6(&&FO=õ”?BÔ!„ÝàÖÝû÷ï×ñãÇ[ š G}TK—.Õ°aÃzrD?~¼fΜ©mÛ¶Iºñûáé§Ÿ–tcÜŠ+”——^>55µÅÞ£ššÝwß}š5k–ÒÒÒzvø(E»ABBB‹“ŽŠ‹‹[í½ÿþûõƒü@=ö¾c^xáeeeéí·ßVUU•4tèP-_¾¼Õ=Dããã5~üx|¸†® *]\a€ÛòòòRûöí5räHõéÓG>>>F—AXP(T¬XQ Ј#Ô¤I£Ë€“sHXvf&“I—/_ÎqŸääd¥¦¦š·̯SRRtíÚ5¥¤¤())I‰‰‰ºr劮^½ª¤¤$ÅÅÅéÀÚ·oŸ¤_üðÃjÙ²¥c~ ÀÍíÝ»W‘‘‘Z°`.^¼h—>[·n­°°0«D‰véî¥Ð…å‚ðË/¿XŒ\uéÒE7n4°"Àõ¥¦¦jíÚµŠŒŒÔÆ•‘‘asŸÅŠSÿþý®‡~˜Y10#,ÛYzzº:uê¤o¾ùÆ¢ý›o¾ÑÃ?lPU€{9s挢££¥#GŽØ¥Ï:uê(,,LÆ S•*UìÒ'\aÙÎÆŽ«O?ýÔª½wïÞZµj•îm÷îÝŠˆˆÐ¢E‹tåÊ›ûóôôT‡¢   -ZÔUÀÕ–íhÆŒzê©§²|ÏÛÛ['NœPåÊ• ¸* p¸zõªbbb4gÎÅÆÆÊmeË–Õ!C΢`… aÙNŽ=ªÆ[, v»·ß~[/¾øbVNGUTT”æÎ«3gÎØ¥ÏæÍ›+,,LƒVéÒ¥íÒ'œaÙN†®¹sçæ¸Ï#<¢íÛ·PE233µuëVEGGkùòåJNN¶¹Ï"EЍW¯^ Q÷îÝåååe‡JàlËvR®\9]¸p!Ç}J•*eñ*çÒ¥KZ°`"##µgÏ»ôY½zu >\ÇW­ZµìÒ'œaÙâããU¾|ù\í§J•*9¸"9±÷³›===Õ®];………©_¿~, à<.À|ûí·¹ÞwíÚµ¬@n4mÚTÓ¦MÓ™3g´téRuëÖͦéÔ7§{‡„„¨R¥J3fŒvíÚeÇŠPÐY¶ƒ¾}ûjåÊ•¹Ú·nݺ:xð ¼½½\€¼¸ùìæÈÈH=zÔ.}6jÔHááá:t¨Ê•+g—>P0Ë6:|ø°5j¤ÌÌÌ\3eÊ=ÿüó¬ €-ìýìf///µoß^#GŽTŸ>}äããc‡*àH„e :T ,ÈÓ1þþþÚµk—6lè ªØÃÕ«WµlÙ2EFFÚíÙÍ•*URhh¨ÂÂÂtÏ=÷Ø¡J8aÙ‡R“&M”‘‘‘çcëÖ­«]»v©dÉ’¨ €½=zT‘‘‘ŠŽŽ¶Û³›zè!…‡‡kÀ€*^¼¸]ú€}–mЭ[7mذ!ßÇ·k×N6lP‘"EìXGºõÙÍ111ºvíšÍ}úùù©gÏž9r¤:vì(;T [–óiÆ êÖ­›Íý„„„hîܹ\.èâÅ‹æg7ïÝ»×.}Ö­[Waaa UåÊ•íÒ'òްœO½zõ²Ûc ^~ùe½ñÆvé €1öìÙ£ÈÈH-\¸Ð.ÏnöòòR×®]®=zÈ×××U ·ËùôÖ[o)""B‰‰‰JLLÌõq T™2eT¦Lóë矞Q$À ¤¦¦jÍš5ŠŒŒÔ¦M›òµ¦ÁíÊ•+§!C†(<<\7¶C•¸²d5¥:>>^òôô4 "F8sæŒæÎ«¨¨(»=»¹eË– Ó AƒTªT)»ô k„eÈ*,ó× nö~vs‘"EÔ«W/…„„¨{÷îòòò²C•¸‰°ì„eÙIIIÑÚµk­/¿üÒ.Ó´«V­ª!C†häÈ‘ºë®»ìP%Ë@X§OŸÖ‚ 4{ölýþûï6÷çéé©|P¡¡¡2dˆŠ+f‡* '²–䕽§i—,YRÁÁÁ Q›6mìP!@áBXvÂ2€üºvíšÖ­[§ˆˆmÙ²Å.Ÿõë××°aæòåËÛ¡J÷GXvÂ2{8uê”.\¨ˆˆýñÇ6÷çëë«.]º(44T?þ¸¼½½íP%€{",;a€=effêûï¿×¼yó´páB]½zÕæ>+Uª¤   =ùä“jÔ¨‘ªp/„e ,p”¿ÿþ[«V­Ò¼yóì6M»yóæ9r¤¬âŋۡJ×GXvÂ2€‚pòäI-Z´H³fÍÒñãÇmî¯hÑ¢êÑ£‡FŽ©Ž;fùYPX–€°   Ý:M{Á‚JJJ²¹ÏºuëjРA WõêÕíP%€k!,;a€Qì=MÛÓÓS:tÐÈ‘#Õ»woùúúÚ©RçFXvÂ2gðÛo¿iÑ¢Eš;w®þüóO›û+]º´‚‚‚4fÌ5mÚÔöœaÙËœIff¦¶nݪèèh-_¾\ÉÉÉ6÷Ù¼ys…„„hèС*S¦Œªp.„e ,pV Z¼x±æÍ›§;vØÜ_Ñ¢EÕ¯_?…‡‡«]»v, ÜaÙË\ÁÍÕ´gÏž­ßÿÝæþªV­ª!C†hÔ¨QªU«–*0aÙË\‰ÉdRll¬¢£££Ë—/ÛÔŸ§§§:uꤰ°0õéÓG~~~vª à–€° ÀU¥¦¦jÓ¦Mš7ožV­Z¥ôôt›ú+Y²¤‚ƒƒ¢6mÚØ©JÇ#,;a€;8þ¼/^¬%K–hÇŽ6ŽÝ{ï½ ×!CX 8=²–¸›Ó§OkùòåZ¶l™¾ÿþ{›>Ó|}}Õ¥K…††êñÇ—···+°²–¸³‹/jãÆzñÅuòäI›úªZµª† ¦áÇ«N:vªÀv„e ,( ’““õŸÿüGS¦LQJJŠÍý5oÞ\#GŽÔàÁƒU¼xq;T„e ,(LΜ9£ˆˆÍž=[qqq6÷ (<<\>ø *È;²–Fׯ_×úõëµpáB­[·NÉÉÉ6÷Y¿~}………)$$D+V´C•¹CXvÂ2€ÂîêÕ«Z¾|¹ÆŒ£k×®ÙÜŸ···ºwï®ððpuïÞ]>>>v¨ {„e ,(ì¤-[¶Ø½ïÀÀ@õïß_cÇŽÕ½÷Þk÷þ$²C–fGUÏž=õÛo¿™Ûž~úiiãÆZ¶l™Ž9b—sµjÕJááá V@@€]úËAXPXmÛ¶MýúõÓ¥K—,Ú?üðC=ûì³æí={öhÉ’%Z´h‘ÍŸ’$õïß_aaajÛ¶m–ŸÃyAXvÂ2€ÂhöìÙ;v¬ÒÓÓ­ÞûüóÏnÕž™™©­[·***J+V¬°Ëý͵k×ÖðáÃ5lØ0U«VÍæþ@áäit×f2™ôÚk¯éÉ'ŸÌ2(K’——W–ížžžêÔ©“æÏŸ¯¿þúKsçÎU§Nl>vì˜^yåÕ¬YS;wVtt´]Væ… #ËÀÈ2€ÂâêÕ«%%ÅN•Ü™‡‡‡Úµk§èèh={VjÕª•M}:tH'NTµjÕôøãkíÚµ, €›#,îè‰'ž——W¾/Ȱ|«€€=ùä“Ú±c‡9ðV¬X1ßý¥§§kÕªUêÕ«—ªU«¦çŸ^¿þú«+΂iØÀ4lîhûöí ÓñãÇó|lpp°/^쀪òîúõëúâ‹/4gÎ}ñÅJOO·¹ÏÖ­[+,,LÁÁÁ*Q¢„ªF#,;a€»JJJÒøñãõùçŸçé¸Þ½{kÕªUª*ÿÎ;§ùóçkΜ9:tèÍý+VLýû÷Wxx¸~øá,ÿ=®°ì„eîìÚµk*V¬Xž>×}ôQmذÁUÙnçΊŒŒÔ’%K”˜˜hsuêÔQXX˜† ¦*UªØ¡BPË@XàÎâããU¾|ù<óÈ#hûöíªÈ¾’““µ|ùrEFFjÛ¶m6~{yy©K—. S¯^½T¤H;U ‰¾yòí·ßfÙîçç§#F¨E‹Vï¹Ò†þþþ ÑÖ­[uìØ1Mžþøc5mÚT-Z´ÐŒ3”`ÇŠ€½0 Û˜† À]%$$¨råÊV‚jÑ¢…víÚeõù·k×.M›6M¥J•ÒŒ3 ²T‡IHHÐÂ… ©Ý»wÛÜŸŸŸŸúôé£ððpuìØQžž| €3 ,;a€»úä“OôôÓO[µoÚ´I;w6 "cíß¿_sæÌÑ‚ tá›û«^½º†®áÇ«V­Zv¨äaÙËÜU³fÍ´gÏ‹¶V­ZiÇŽUäÒÒÒ´qãFÍ›7O+W®Ôõë×mêÏÓÓS>ø BCC5dÈ+VÌN•€Ü",;a€;úùçŸÕ¼ys«öõë׫{÷îTäœâââ4wî\EEEéÈ‘#6÷W²dI 4HaaaºÿþûíP!È Â²–¸£#FhΜ9mM›6ÕÏ?ÿœåç¤Ý»w+""B‹-Ò•+Wlî¯^½zæiÚ*T°C… ;„e ,p7ñññª^½ºÕÂ^111êׯŸAU¹Ž«W¯jÙ²eŠŒŒTll¬Íÿ&øøø¨G W×®]åíím§JÀM„e ,p7o¼ñ†&OžlÑV¿~}8p€Õ›óèäÉ“Z´h‘fΜ©?ÿüÓæþ*Uª¤   =ñÄjܸ±íI„e‡ ,p'éééªU«–Μ9cÑ>þ| 2Ä ª\_ff¦¶nݪèèh-_¾\ÉÉÉ6÷Ù¼ys9Rƒ R‰%ìP%…aÙËÜÉ‚ 4tèP‹¶Úµkë×_eú¯\ºtÉüìæŸþÙæþŠ/®   ………©M›6ÜS@>–€° À<ðÀÚµk—EÛÿû_3Æ ŠÜÛ¡C‡­ÈÈH?Þæþî¾ûn ²j=z´!÷ûÁ>6l¨©S§*..N_}õ•‚‚‚ ¹OWp3,3 Û˜† ÀUýúë¯jРÅg–ŸŸŸN:Åc…Ü̹sç4þ|Í™3G‡2ºœFÆ uàÀF–ÿoÚ´iV_î”ÝP… 4aÂ{öl1 ªw’””¤´´4£ËÈ·ääd¥¦¦Ú­¿ÔÔT%''Û­¿ôôt]½z5Wû^¾|9Ûkþ¿ÿþ;ÛÙ:W®\Ñõë׳|/§ÿ¾×®]SJJŠÕ~ ’¤´´4ýý÷ß:þ¼âã㕞žn>vÒ¤I7nœJ—.mÈó“ JNïRΡ¼zõê„eG ,p5›6mÒ£>jÑVºti>}ZþþþUìaÏž=jÖ¬™y»Q£FÚµk—Š-j`UξúôÓO­Ú† FPÀÅ-\¸P;v´h;pà€þñT‘ë`dÙYàJNŸ>­ZµjYM;xð 4h`PUÀV‹/Ö Aƒ²}ÿ›o¾ÑÃ?\€¹F– ‹ˆˆ° Ê­[·&(àâ>ùä“ߟ9sfUâšËPˆ¥§§köìÙVí,ê€ëÛ¿Žïoß¾½€*qM„e(ÄV­Z¥³gÏZ´•(QB 0¨"`—/_Ö•+WrÜçìÙ³Ù®Ä Â2jY-ì¬âÅ‹P °—ƒÞqŸÌÌLÅÅÅ@5®‰° …Ô‘#G´mÛ6«v¦`àúÖ­[—«ý6oÞìàJ\a ©9sæX­ÔߨQ#µjÕÊ Š€=\¿~]‹-ÊÕ¾“'OÖñãÇ\‘k",@!týúuEGG[µ3ª €ë[±b…Nœ8‘«}Ïœ9£Ç{LÉÉÉ®Êõ– Ú°aƒÕÂ^¾¾¾:t¨A{HOO×k¯½–§c>¬W_}Õ1¹0Â2BsæÌ±jëÑ£‡Ê–-k@5À^¦OŸ®Ã‡çù¸?þXGŽq@E®ËÃtû k°™‡‡‡UÍœÅùóçUµjU¥§§[´¯ZµJ½{÷6¨*`«“'Oªaƺzõj¾Žì±Çr½0XaÀÈ22óçÏ· ÊeÊ”Q·nÝ ªØÃ¸qãò”%iýúõúúë¯íX‘k#,@!“Õìàà`ùúúP °‡5kÖØeTxòäÉv¨Æ=– Ùµk—o£ ØÇ¬Ú4h`@%gµzõj-X°@ JJJRZZšù=???µmÛVo½õV¶ÇÿôÓO>>*^¼¸J”(¡Î;k̘19ö§gžyFñññJJJRBB‚$ÉÛÛ[<ð€>ýôS>L;úå—_¬Ú5jd@%gÕ»wo;vL&L°zo„ zùå—s<¾E‹š0a‚FmÑÞ¦MÍž=›k;¸ørw¸>--MŸ}ö™&Mš¤«W¯Z¼7tèPEGGgùsÞ.&&FAAAm£GÖ‡~(???»Ö v5ÒÁƒ-Ú>¬zõêTÀ9rD÷ÜsE[¯^½´zõê\÷Q¥JÅÅÅI’žxâ EDDäêÚÆp‡|b²¸Ó/ãÖ­[Õ±cGó¶———N:¥J•*åêøØØX=üðÃæíüãúàƒì^'PØ¥¥¥©xñâJOO7·)RDW¯^•·7“ˆÿïäÉ“ªQ£†EÛ?þ¨-Zäêø'Nè®»îRff¦úöí«¥K—ÊËËË¥ÂNÜ)Ÿ$øBŽî¿ÿ~‹í–-[æ:(KÒš5k̯ ¤©S§Ú­6ÿï?þ°Ê’T¯^=‚2ÀЧ§e¨V­Z®ƒ²$½òÊ+ÊÌÌTûöíµpáB‚2Üa9:wîœÅvÓ¦Ms}ìÅ‹5sæLIR»víÉôÀAŽ9bÕÆôk@Vn®#sSÛ¶ms}ì×_­ùóç«N:Љ‰Q‘"Eì]à4ËÈÑ_ýe±—•u_~ùe]¹rE5ÒÊ•+ù0(«°|÷Ýwwž¼Õ IDATP ÀÙݺ’µ”ûÇ ¦¥¥iìØ± К5kèˆò§Áü<äèö°\¿~ý\÷Ã?(""BeÊ”ÑêÕ«UªT)G”ಠËuêÔ1 €³»=,çöúî•W^ÑÑ£GµfÍš\¸2Â2rt{XÎÍ´Îk×®),,LžžžZ¼x±îºë.G•àˀܺ=,W¯^ýŽÇlݺUï¿ÿ¾Þ|óMuïÞÝQ¥N…°ŒÝzϲ——W®÷š4i’>¬©S§ªS§NŽ,Àÿ0 [ñññÛw Ë—.]Ò°aÃÔ­[7Mš4É‘¥N…{–‘£[G–Ë—/ÇÕ7oÞ¬éÓ§kèСzî¹ç]IW®\±š òåËTÀ™Ý–}}}U²dÉ÷9r¤¼¼¼Íb­(TYFŽn½¯X±bŽû&$$(,,LM›6UDD„£Kð?üñ‡Õ³™‚ ÈέaùNëÊ|þùçZ»v­¾ýö[ôB¡CXFŽò–Ÿzê)]¹rE_ýµŠ-êèÒüω'¬ÚjÔ¨a@%Wpë=Ë9*=zTÏ>û¬Þ{ï=ÝÿýQàTËÈÑ­÷,ç–,X … jÙ²eŒh,«°œ›ÅZ…Óùóçͯ³YNOO×!CÔ©S'=ýôÓUàTËÈ–ÉdÊUXþý÷ß5fÌ=ýôÓêß¿A•àþüóO«¶jÕª|!—pëÈrvaùµ×^ÓùóçµqãFîSF¡EXF¶.\¸ ÔÔTóv… ¬öIKKÓÀuÏ=÷è½÷Þ+Èòü#Ë€Ü2™Lwœ†½}ûvM:U_ýµJ—.]åN…°Œl>}Úb;«ËI“&騱cúùçŸU¤H‘‚* À-² ËŒ,²rùòe¥§§›·oY¾|ù²BCCõúë¯ëÁ,èò§BXF¶î–¿øâ M›6M111ªU«VA–àYMÃfd•ÛŸ±|{X=z´4h ‰'dY€Sâ9ËÈVNa9..NÇ×3Ï<£Çܦó¬X±B­ZµÒŒ3lê(Œ’““-¦ÓI’ÏW¯N·‡å[¯ïæÎ«ï¾ûNÑÑÑòôÌ_LHIIQDD„~øa¨hÑ¢jÔ¨‘Þyç‹ÛûWÀÈ2²uêÔ)‹í›ß}úH’jÔ¨áÐóöDXF–.^¼h^µxñbùøøØõ\eÊ”‘tcõDyCXäÅ­#»]ºt)°óV¨PA’Ô°aÃ;'`+Â2²tû¨²‡‡‡¢¢¢òm ŸŸŸ$F–üÈ*,—/_Þ€J®àÖ°€Û]ºtI¾¾¾Šˆˆpø}Ê7­\¹RÇ×êÕ« ä|€½0²Œ,%$$Hº±Ã’%KÌÖnöm2™týúu‡pG„e@neffêòåËš:uªš6mZ çüûï¿5aÂMžsæŒÞyçÍ›7ÏêÜ&LPhh¨fΜ™íTð'NhĈŠÕû￯§žzÊaµ †¿¿¿¾ýö[£Ë€‹»~ýºÅ¶³|¡â–Ó°%éèÑ£æ×Œ*pG9²üé§Ÿª~ýúš1c†ÒÒÒôÊ+¯è—_~ÑþýûõöÛo+ @ÑÑÑêÛ·¯233­Ž?}ú´zè!mÙ²E©©©ºÿþûR'p=§OŸ6¿öóóSëÖ­ ¬æÿ¹mXÞµk—ùu÷îÝ ¬®à“O>Ñ Aƒ´téR‹ç>ά ÂrFF†FŒ¡±cÇêÊ•+ ÐæÍ›õú믫Q£Fjܸ±^|ñEíܹS+VÔ† 4}út‹>233¤3gÎHº1µŠ° pV3fÌРAƒ´páB%&&]N¡°oß>óë6mÚÈÏÏÏÀjþŸ[†åS§NéÔ©S’¤R¥J9Í7p^Ó¦MÓâÅ‹¬råÊ)88X111g8µk×®YµÙ3,›L&…‡‡kΜ9æ¶yóæé¡‡²Ú·~ýúŠŽŽ–$½ùæ›JJJ2¿7kÖ,íܹSÒ5$^ýu»Õ€½}ôÑGZ¼x±† b^—cÖ¬Yú믿Œ.ÍmíÞ½ÛüÚ™f»eX¾õØÎ;ËÛÛmo͆ÄÅÅ™_'''kéÒ¥ Rùòå5pà@-_¾<Ë`)55ժ͞aùÝwß5`I8p zõê•íþ;wVÇŽuáÂEEEIº1úýꫯš÷ Î2là,n½.LKKÓÆ5zôhU©RE=ôÞ{ï=ýþûïVè^L&“ÅêׄeÛ°aƒù5S°‘Ùᤤ$-Y²Dýû÷Wùòå5hÐ ­\¹’à §UX¶×s–wíÚ¥W^yż ©S§Þñ¸›í›9s¦$éý÷ßW||¼¤A~Ê”)v©GÉî:/33Sßÿ½žþyÝ}÷Ýjܸ±&OžÌ£°ltèÐ!óµB5T¿~}ƒ+ún–/_¾¬/¿üRÒé~]»v5¸"¸“ÉtÇ}®^½ªÅ‹«oß¾ªP¡‚† ¢U«V)%%¥*¬eõ»g‘åÌÌL5Jæ¶Ñ£G«råÊw<öæ¨ñ£>øÀüÞ?ÿùOU¯^Ýæúp¤Ü\J7þ­{ã7Ô¼ysÕ¬YSÏ>û¬¶mÛfñï'îlÛ¶mæ×Î4ª,I¦Üþ68‘ëׯkÓ¦MŠÕéÓ§¨Zµj©Zµjúì³ÏÌ#ËÍ›7×O?ýTàõyxxXµ¹à_s¡’Õ³Ü*Y²¤úõë§¡C‡ªmÛ¶òôt»ï à¤êÕ«§ß~ûÍ¢íæ½÷¶X¼x± dÞöòòÒ±cÇT£F;›œœ¬bÅŠIº±šåÍ@_­Z5ýúë¯òhlaËu¡$•-[V½zõRŸ>}Ô¹sg§X¬ÊYòIRR’Š)bq›l×®]µqãFIÒêÕ«s¼å« ¹ÔU}FF†fÏž­ hûöíêÙ³§F­¸¸8=ûì³êׯS°Qà5gÎuèÐA5jÔÐ /¼ _~ùÅè²P8jö{ï½g±Ý£G\eIJOO7¿¾uä{Ê”)e@¡páÂÍ™3G½zõR¹rå¤ èòåËF—fˆ«W¯jêÔ©jÔ¨‘J”(!???õìÙS'NœÐ‰'´yófIR‘"EÔ¡Cƒ«µä2+_:uJ!!!Š‹‹ÓêÕ«-æ²·jÕJgÏžUll¬Å1Î6Œï,lý¶ Ù;}ú´þóŸÿè?ÿùš4i¢¡C‡jРAªZµªÑ¥Á e–mÙ°oß>«{¯úõë—ëãOœ8aÕöÐCiàÀ6Õ®†ë-H7‚bLLŒbbbäëë«víÚéñÇWïÞ½U©R%£Ës¸Í›7kÔ¨Q2dˆ6oÞ,???}ùå—7nœš5k¦råÊ™§­·iÓFÅ‹7¸bKžï¿ÿ¾Ž?nt9Ú»w¯î¿ÿ~?~\[¶l±ºéÛÓÓS£F²h+S¦ Ïñ„¡öï߯çŸ^5jÔУ>ªµk×*33Óè²àFnŽÉÖ)U«W¯¶ØöòòÊÓ?üðƒÅ¶§§§>úè#.…^ZZš6mÚ¤1cƨjÕªjݺµÞ{ï=>}ÚèÒâý÷ßWÿþý5mÚ4½þúëªX±¢J•*¥Aƒ)**J—.]²¸Ì:=_yåý÷¿ÿ5ºŽlíÝ»WíÚµÓ… ´dÉU«V-ËýêÕ«g±ýè£ÊËË« Jr”™™©M›6©W¯^ª[·®bbbŒ. n"«`lkXÞºu«Åv³fÍT¶lÙ\sÅ›BCCÕ¢E ›jÀÝdffjÇŽzþùç5bģ˱»þóŸzþùç5wî\õèÑÃêýž={* À¢Í)Ãr»víntYúóÏ?ÕµkW%&&êŸÿü§Zµj•í¾IIIÛܯ gäééÉ`°GÌT8pà€Åv£Fr}lbb¢EX.^¼¸Þ~ûm»Õ€;)]º´&Mš¤åË—]Š]Mš4Iï¿ÿ¾^zé%õîÝ;Ë}<<êè\ñôôT—.]ôôÓO«k×®„eؽG–SRRtñâE‹¶ÛgíädΜ9‹z1¢PÜ@^4mÚTãÆÓàÁƒÝnñË3fhÊ”)jР&Ožœí~&“I.\0owéÒ¥ ÊË3§]àëÍ7ßÔ®]»$I/½ôÒoöÞ´i“ùuË–-ó4mp„{ï½×¼ÀW•*UŒ.nÈÞaùö:’r½ vZZš>þøc‹¶¼, €;+[¶¬ú÷ﯵnÝÚèr⫯¾Òøñã%IÓ¦M“O¶ûþúë¯JLL4o–óàðáÚ2eФ¿Xaaa9îúôimٲż—ùî«W¯ÖgŸ}¦—_~9ÇiÞî„g>[³×âCÕªUÓ Aƒ4tèP5nÜØ.}Ù±÷ÿËòðð°è7·çøôÓOõçŸZ´e·Æ\o¹.{]–,YR}úôÑÀÕ©S'‹g »›øøx…††*##C]»vU§NrÜÿÖ5|¼¼¼î¸¿Qœò¿Ø«¯¾ª´´4IRXXا'Ìž=ۼ且ûû•?üðC=÷Üs’¤ÀÀÀB–a_%K–T¿~ý¢Gy„iÖ(0öYöññQ5,Bïõë×ïx\\\œ^{í5óv±bÅ”””¤ƒªfÍšù®Wãïﯞ={jàÀêÚµ«üüüŒ.©@Œ7Nýõ—$™óUN.\h~Ý¢E f»o||¼>üðCmÙ²Eqqq’nLe U¿~ýzíítaùèÑ£7¹6,Çý¯\¹¢éÓ§›·+T¨ fÍšåê\]»vÕo¼¡„„>|8£P*Q¢„zöì©   BõA÷×¶m[‹°|ûhñí2335räH]¾|YÒÏà 6˜?_»wïnñ ý²eËäˆÒ0„¿¿¿{ì1é±Çs»ûïä›o¾Ñ²eË$I 6¼ã(ñ?þ¨_ýÕ¼Óì½{÷ª}ûöæëŒ›NŸ>­uëÖ©[·nZ±b…îÅn,**ʼÂkíÚµÕ°aÃ÷ÿðÃuéÒ%óv§NrýíBýúõ5`ÀIÒùóçóY1ÜAn¦Û/^\ÔŠ+tîÜ9-X°@}úô!(Ã0YMç²uÚß“O>i±½fÍš÷ŸûÌ$ÉT¶lY[ʶpk=7ÿÀ¹Ýþ{tóO±bÅLÁÁÁ¦˜˜Srr²ÑeÊ—/oõ;cs¿´èsÞ¼yVûddd˜^zé%ó>=zô0]¸pÁüþçŸn’d*R¤ˆéý÷ß7uîÜÙ$Éks}8Rv×…þþþ¦   ÓÒ¥KMIIIF—™'ŽÊ'¿þú«ÉÃÃÃÜç?þxÇcZµjeÞ? À”–––í¾ãÆ3ÅÇÇgù^ïÞ½M’L~~~¦k×®åûgȉS,_¹rE4oçô¬-“ɤѣG«C‡í<òHžÎyÏ=÷HÊÝ}yp_·®Víïï¯hÙ²e:þ¼/^¬~ýú©hÑ¢VXËi•I[|öÙgj×®y;<<\ÿþ÷¿uìØ1={V111jݺµÞzë-•+WN3fÌК5kT¦Ló1ýû÷WÅŠ•ššª‰'ꫯ¾Rpp°zè!‡Ô €½Üz]X¬X1óuaaAÎÊÚµkͳÚJ”(qÇÛaÓÓÓµgÏóv‡r¼žùä“O²}ÊQhh¨¤¾°¹6müøñúî»ïÔ·o_uïÞëÂìØ±ÃüºråÊw¼ö·ß~Sjjªy»sçÎù>wÓ¦Mͯu[¤S…åÛÝ\Qív_|ñ…6lØ U«VY<ìú‘GÉóRï7¿© ,nãÆÓ¸qãŒ.È“¬¾‰µGX¾Ù÷+¯¼¢~ýúéÕW_Õ¦M›T¥JÝ{ï½ R=² ë·jÖ¬™~üñG»Ô@Aáº0÷n]÷)»`éFÖJIIѾ}û,Úó:+øV7¯CJ—.­:uê仟œ8UX®V­šŠ)bþ¶!&&F&L°Øgîܹúì³ÏôÅ_ÈÇÇÇb%µæÍ›K’uðàÁ\=ðûæ·„e®&«°|ó±{öÒ Aó —·*R¤ˆùõ©S§²Ü'11Q_~ù¥‚ƒƒµÿ~s{éÒ¥s¼íöNnN½ rØã£œêžeõéÓǼ½sçNý÷¿ÿÕñãǵ`Á=ðÀú裴zõjH’þøãóþIIIš9s¦ÂÃÃÕ¢E‹\óæÅæõë×yx<—’ÕÈîµk× ¨F·>¹èäÉ“úâ‹/,Þß»w¯&Nœ¨¾}ûÊÃÃCgΜ1¿×ªU+yzz*11Qßÿ}žÏ½jÕ*y{{ëÙgŸÍÿpN5²,I|ð¶oßnž‚}ëˆÁƒkÖ¬Y*^¼¸¹íÖÇF½þúëêСƒV¬XqÇé7yyy™__¿~Ýa 怽eµèa”¡C‡êã?6o‡……)22RÕ«WײeË´k×.-[¶ÌœÍ.^¼hÞ·|ùòZ°`V¯^­ùóççé¼ñññŠŒŒÔ¨Q£T¿~}ûü0Ypª‘eéÆá»víÒàÁƒU±bEU¨PA?þ¸¶nݪ XeéÆs•ýýýÕ¨Q#Íœ9S_}õ•J–,™ë󥤤˜_3€+)V¬˜Ua”–-[šŸy,ݸ‡ù±ÇS“&MtñâE­\¹Ò"¿Ý:m{îܹš={¶>ûì³\tÞôâ‹/ªtéÒzã7lÿ!ràt#ËÒ{—,X«}###™ïs–¸*Â20ZDD„j×®­E‹)--M<ð€ÆŸåm±ÝºuÓ¶mÛT±bE7NcÇŽµ˜é›ëÖ­STT”6oÞ¬Ò¥KÛëÇÈ’S†å‚tåÊóëôôt+€¼¹}¦DXËÛÛ[/½ô’^zé¥;î;jÔ(5*ßç:yò¤†®ÿûßj×®]¾ûÉ-§›†]ÐÎ;g~˜˜h`%7Œ,€Â"==]ƒ Rûöíõ¯ý«@ÎIX¾%,ßzÃ98»¬Âò­³eÜÅ‹/¾¨ÔÔTEEEÉÃã@ÎYè§a>|Øü:>>ÞÀJ o² ËÌîfþüùZ¶l™vîÜ™åõ£ú‘åÝ»w›_ÿòË/VySªT)«6Â2p'?þø£&L˜ µkתR¥JzîB–Ïž=«µkך·ccc ¬ò&00Ъ° ÜÅ_ý¥   EEE©I“&’¤ .è÷ß×îÝ»µsçN>|X9¡ž†½fÍ*%%EJHHБ#GT·n]£K€;",w•ššª¾}ûêâÅ‹š8q¢†® .(33ÓjßúõëëСCv¯¡P‡e[—.#–€»;v¬vìØ!IVA¸dÉ’òööVåÊ•U·n] :Ô!5x˜L&“Cz.IJZ¿fövèÐ!5lØÐ¢­H‘"JII1¨"àŒÈ'ùS¨ïYW–ÕÈrjj*°Â2¸¨¬Â²Äcðì° .Ê××7ËÇG–lGX–Õó ˶#,€ #,8a\aÀ1ËಠËçÎ3 ÷BX–UX>s挕¸Â2¸°¬Âò©S§ ¨À½–À…U¯^ݪ‘eÛ–À…Õ¬YÓª-..N_ €!,€ «\¹²üüü,ÚÒÓÓuþüyƒ*p„epaYNÅæ¾eÛ–ÀÅe5ûøñã_€!,€‹Ë*,ÿþûï_€!,€‹»ë®»¬Ú˶!,€‹»çž{¬Úþøã*p„epqõêÕ³jcdÀ6&“ÉdtîÆÃÃê¿fŽ’žž®bÅŠ)==ÝÜæáá¡+W®¨X±bVœù$Yçãã£Úµk[´™L&>|Ø Š\aÜ@VS±8`@%î° n€° `_„epMš4±j;x𠕸Â2¸ûî»Ïªí—_~1 ÷ÀjØÀjs ZFF†J–,©¤¤$‹ö‹/*00Рª€3 Ÿä#Ë༼¼Ô¸qc«öüÑ€j\aÜDVS±wíÚe@%®° n¢iÓ¦VmŒ,äaÜDË–-­Ú~øá*p},ðåÜ@À*]º´®\¹bÑþ矪FUŒF>ÉF–ÀMxyye9º¼sçNªpm„eºMT IDATp#­[·¶jÛ¶m[ÁàâËàF|ðA«¶¯¿þÚ€J\÷,;÷0ÊåË—U¦LeffZ´Ÿ>}ZUªT1¨*`$òIþ0² n¤T©RjÔ¨‘UûöíÛ ¨Àu–ÀÍtêÔɪ©ØyCX7Ó¹sg«¶¯¾úÊ€J\÷,;÷0Rrr²•ššjѾÿ~5nÜØ ª€QÈ'ùÃÈ2¸µjÕʪ}ݺuTàšËà†²šŠ½~ýz*pMLÃv¦90Ú¾}ûÔ´iS‹6///ýõ×_*[¶¬AU#Oò‡‘epC÷Þ{¯îºë.‹¶ŒŒ }ùå—UàZËà¦zõêeÕ¶fÍ*p=„epS½{÷¶jûâ‹/tõêUªp-„epSmÚ´Qùòå-Ú’““Yè Ë়½½Õ¿«ö¥K—P €ka5l`µ9ÎâÛo¿Õ#ÉF– ¨P¡‚ºvíjÕ>oÞ<ªp~„e($¬ڢ££uýúuªpn„e(${ì1•+W΢íܹsÚ´i“A{Y¼x±*W®,OOOyxxXüÉÊíûÜúçî»ï¶ºu«0",@!áëë«Áƒ[µÏž=Û€j€=ÕªUKgÏžµË½Èo¿ý¶|||ìP•kc/àzÎjß¾}jÚ´©E›···Nœ8¡Ê•+T°‡þýûkùòå6õѲeKýðÃÙŽH&Œ,@!rï½÷ê¾ûî³h»~ýºæÌ™cPEÀ^fÏž­5jØÔÇ»ï¾KPþÂ22Y-ô5{öleddP °—R¥JiñâÅ*Q¢D¾ŽïÞ½»:tè`çª\Ó°€iØœÙÅ‹U¹re¥¥¥Y´¯_¿^Ý»w7¨*`/;vìP·nÝ”˜˜˜ëc<==µgÏ5iÒÄ•¹F– )S¦ŒzõêeÕ>kÖ,ªööàƒꫯ¾RéÒ¥s}L¿~ýÊ·adÙYàì¾úê+uéÒÅ¢ÍÛÛ[ÇWÕªU ª ØÓ÷߯Gy䎷ZyxxhïÞ½„åÛ0² …P§Nt÷Ýÿ×Þ}GGUçÿ%¡…&"è¡*EÅB·BIBqéZ0!ظ–ÛžãY×#»+çx\Ïâ"’,¡¤++I€°Á¡ ‹€4ÒËä÷‡¿É7¡„¹“{gîóqÎfîÌ|x³q2óºïÏý|ºT9VZZÊ6Rø~ýú]s­’+;– | „e°!???ýá¸êx\\ÜU×2ïYíã~~~zóÍ7ë¨ïBX›ŠŽŽV```•cgÏžu{F`>ø`µ‡„„\µ­$~CX›jÙ²¥&MštÕñyóæ™P ð„–-[ªI“&×}|úôéuXw!,€=ûì³Wûꫯ´gϪžp½Å;ýýý5lذ:®Æ{–ÀÆúöí«>}ú\uüƒ>0¡à wÞyç5÷èÑ㦶—²Â2ØÜµºË+W®Ô… L¨í‘G¹ê˜ŸŸŸþö·¿™P÷ ,€ÍMš4骳ÊEEEŠ‹‹3©"`¤§žzêªc/¿ü²FŒaB5Þƒ° 6׸qcEGG_u|Á‚*--­û‚€aœN§üýý«,ò5nÜ8½ûî»&VåüÊËËËÍ.Â×øùù]uŒÿ›XÙ‘#Gtß}÷]õ»*99ùš+fPåååÊÊÊ2íï¿|ù²Û'‚óòòT\\ìÖ*,,¼îãùùù***ª¸Ÿ““£²²²Šû™™™· •——§ììlåææ*//OyyyÊÌÌTnn®Nœ8Qe,IzñÅõôÓO«W¯^ pëßâí®üo"33S÷Üs$²G–x£!C†(%%¥Ê±GyDß|óIÁLZ±b…µoß>³ËxÀ-·Ü¢ÐÐP9=ñÄn碢"åççW„û’’åææJ’rssURR¢²²2åääHú¿“•O¢ª  @’”••¥òòr+//¯âï¹ò„Evv¶œN§¤ß:éÙÙÙU®Aºñ‰ éÿ²aÙ˼Ñ'Ÿ|rÍkšvîÜ©   *B]+++ÓÖ­[•˜˜¨õë×_Õ‰ø®öíÛk̘1êÙ³§Ú¶m«úõ뫬¬L¿þúkÅÿ.^¼¨K—.éÒ¥KÊÏÏWVVVE¸u[_@Xö Â2oTVV¦®]»êøñãUŽ?õÔSZ½zµIU¡.œ:uJ+V¬Ð‚ tâÄ ³ËÀT„e",ðV³gÏÖ+¯¼RåX@@€>¬N:™T<¡°°P7nT\\œRSSùœàÿ#,{a€·º|ù²:tèpÕâ+3fÌМ9sLª FÚ»w¯ââ├œ¬Ë—/›]–CXö Â2oö§?ýIï½÷^•cÍš5ÓÉ“'Õ¢E “ª‚;Ξ=«?þXñññúñÇÍ.K#,{a€7;}ú´î¹ç•””T9þüC¯½öšIUáfë?ÿù–.]ªµkײg65DXö Â2o¡äää*ÇÚ·o¯ãÇ«~ýú&U…š8pà€–.]ª„„]¸pÁìrð:„e",ðv{öìQß¾}¯:žœœ¬I“&™PªséÒ¥Š=‘¿ýö[CÆlÙ²¥"""äp8Ô«W/CÆÀ›–=€° À 8PéééUŽuïÞ]ß~ûí5Ï¡n9N¥¥¥)))IkÖ¬Q~~¾Ûcúûû+$$D‘‘‘ WãÆ ¨ïDXöÂ2_°~ýz;öªã))) 5¡"HÒÑ£Gµ|ùr-Y²Ä°=‘ï¼óNEDDè™gžÑÝwßmȘx;²–ø‚òòruëÖM‡ªr|ذaÚ²e‹IUÙSAA6mÚdèžÈ5Ò¨Q£«ÐÐPf p²–øŠùóçëùçŸ¿êø¾}ûÔ³gO*²Oì‰Ü»woÅÆÆjòäÉjÖ¬™!cà‹Ë@Xà+òóóÕ±cG]¼x±Êñ§Ÿ~ZK—.5©*ßvæÌ-]ºTñññ:zô¨!c¶iÓFãÇ×ôéÓõÐC2&¾Ž°ì„e¾ä/ù‹fÍšUåXýúõõÓO?©C‡&Uå[Š‹‹µ~ýz%$$hëÖ­*++s{Ì hÔ¨Qr8>|¸ÜïòåËt¢¶BXöÂ2_rîÜ9Ýu×]***ªrüå—_Ö?ÿùO“ªò û÷ïW||¼–-[vU÷¾¶ºwï.‡Ã¡)S¦¨U«V†Œ)IqqqŠ5l<¬Ž°ì„e¾fúô銯r¬I“&úùçŸuÛm·™T•wÊÉÉѺuë´téR¥¤¤2f‹-4aÂEFFªÿþ†Œy¥çž{NóçÏ÷ÈØX‘¿Ù¬ï•W^¹êD`^^žâââLªÈ»”——+==]S§NU›6m4uêT·ƒr@@€†®>úHçÎÓÂ… =”%éçŸöØØXe ³ À9R›7o®r¬uëÖ:vìײ^Ç™3g”””¤„„Ãëêܹ³¢££5uêTµoßÞ1kâÐêìïÀl„e ,ðEÛ·o×àÁƒ¯:þÖ[oiæÌ™u_E•””hóæÍJHHÐgŸ}¦ÒÒR·ÇlÚ´©ÂÃÃåp8lʞȭZµ2ìºj¼aÙË|UŸ>}´wïÞ*Çš5k¦£GêŽ;î0©*k8zô¨/^¬%K–èüùó†ŒÙ¿9?ÞÔî}yy¹UXXhZ Ô5²–øªäädEDD\uü‰'žÐæÍ›MéxšÉµåS\\œRSS ù]oÅ=‘ (§Ói»Ÿ1À¾Ë@Xà«JKKÕ¹sçk.öôÞ{ïéÕW_­¸ït:µ}ûv-[¶Laaa× ÙÞêСCZ´h‘’’’ ™šÜ A=Z‡CÆ s{Od£egg«E‹*,,TÆ Í.€:AXöÂ2_6gνüòË×|l̘1zì±ÇtäÈmݺU§OŸ–$ >\Ÿ}öY]–i¸ÂÂB­^½Z‹-Rzzº!cvïÞ]111š2eŠ¥·àúõ×_uÇw(;;[Í›77»êaÙË|Y^^ž:vì¨K—.Õø5 ÐŽ;|X‰‰‰Š7¤‹\{"íÔ©SêСƒ.\¸ V­Z™]u¢žÙ¼K“&Môûßÿ^ï¼óN_SRRâÁŠŒWTT¤ 6v-²¿¿¿BBB©ððp5nÜØ Jë†ka¯ââb“+ î–7mòäÉ7–ËÊÊø Öc˜–÷ï߯9sæhùòån/NÕ£G9Ëï‰ì t–vDXT«^½zš7ožºu릗^z©V©Y³f¨ìÚœN§¶l٢ٳg»½íSË–-5eÊ9õìÙÓÀ*½Kii©$:Ë{!,jäÙgŸÕã?®ÈÈHíß¿ÿ¦^[a9//OIIIš;w®>\ëq4tèP9=Z 64°Jï亶›Î2ÀNË€ëÑ£‡öìÙ£wß}Wï¿ÿ¾.^¼X£×5oÞÜc59sFóæÍÓÂ… •™™Yëq\{"O:UíÚµ3°Bïçê,{Ë~ÙÁßìÞ¥aÆzóÍ7õË/¿è­·ÞªÑ`žË?þø£¢££u÷ÝwëwÞ©UPnÚ´©‡ÒÓÓuøðaýùÏ&(_ƒ+$–vBgP+ 4ÐÌ™3ÕµkWM:µ¢ûx-F…å²²2mÞ¼Yÿú׿´uëÖZ]ìÚ9&&FãǷ̶VVFXØaà–ˆˆ5oÞ\ááá×]ÊÝk–Ïž=«¤¤$-X°@'Nœ¨ÕmÚ´Ñøñã5}út=ôÐCnÕc7®!N§ÓäJ¨;„e€ÛFŽ©5kÖ(<<üš[4Õ¦³œŸŸ¯7jÅŠúôÓO«í\_OÆ 5zôh9 :Ô{"{‚«£\›ŸÞа 0Ĉ#´råJ…‡‡_ªj–/]º¤;vhÍš5Ú°aƒrsskUKÏž=åp8a»=‘=iØ;", 3fÌ-Z´H111U®'¾r¶ÓéÔO?ý¤ƒêðáÃ:|ø°öìÙ£ýû÷×zªïm·ÝV±'r=Üúw *VÃØa`¨èèh]ºtI¯½öZű¦M›ê믿֖-[ôÕW_é믿VNNŽÛ{"× :Ë;", ÷ꫯêÀJLL”$uîÜY¿þú«aãwéÒE‡CQQQlõTË;", WVV&‡ÃQ–ÊM›6Õøñ㣠  íï c0 `G„e€aöï߯·ÞzK[¶lQ~~¾Ûãùùù©ÿþЉ‰Qxx8{"›„Î2ÀŽË·iÖ¬YzçwTRRâöxíÚµÓÔ©S­.]ºP!ÜAXØaà–ÔÔT=ÿüó:|ø°[ã4lØPcÆŒQtt4{"[ Ó°vDXÜ´òòr¥¤¤hÖ¬YÚ±c‡[c¹öDž2eŠZ¶liP…0e€–5væÌ­\¹R .Ô‘#Gj={"{WH®íØx#Â2 ZgÏžÕ'Ÿ|¢U«Vé‹/¾¨u` аaÃäp84jÔ(öDö"LÃØap•³gÏjõêÕZ½zµvîÜéVG±k×®ŠŽŽfOd/Æ4l€–’~›b›––¦¸¸8­[·Î­U­5räHÅÆÆ*44”=‘½e€–ÀæNœ8¡ÄÄD%&&êÔ©Sµ‡=‘}—kfa`'„e°¡ââb­_¿^IIIúì³ÏÜ AmÛ¶Udd¤¦M›ÆžÈ>а °#Â2ØDii©ÒÒÒ´jÕ*}òÉ'ÊÈȨõX®=‘‡† žÈ>ް °#Â2ø0§Ó©/¿üR«V­ÒG}¤óçÏ»5^·nÝ¥˜˜µnÝÚ *auååå’Ë{!,€q:Úµk—V®\©Õ«Wë×_uk¼V­Z)""B111êÞ½»AU›ÐYØa|ÄîÝ»µråJ­ZµJ§OŸvk¬Ê{"=Z 40¨Jx#WgÙ-Äð6„eðb¥¥¥Z²d‰æÍ›§ï¿ÿÞíñºví*‡Ã¡¨¨(µmÛÖ€ á \!Ùš°Â2x¡Ó§Oë‹/¾ÐßÿþwùäíÞ½[ÙÙÙnççç§àààŠ=‘›4ibP¥ðEt–vDX ;pà€æÏŸ¯¥K—êòåËn×¾}{M:UÑÑÑêܹ³Â\!™° °Â2XŒÓéTZZšæÎ«Í›7»P6l¨!C†(**JãÆS½züêÇÍ¡³ °#¾1€EüòË/Zºt©>üðCoÚ´il˜¬¬¬LŸ}ö™/^¬Í›7«´´Ôí1Ù¾Œk–vDj3HóæÍ5hÐ mÙ²¥ÚçMž<¹Ž*p¥ãÇ+!!Aÿþ÷¿õË/¿¸=^£F4vìX9………qy|e€– tûí·Wûø]wÝ¥.]ºÔQ5$©°°Pk×®ÕâÅ‹µmÛ6C:c½{÷–ÃáPDD„n½õVª¬Î2ÀŽËŠUrròu÷_1cFWØ×?ü øøx-[¶Ln׺uëŠ=‘zè!*¼e€– ¤Ù³gë…^¸ê±¾}û^ó8ãääähåÊ•Š×îݻݯ^½z>|¸‡FŽ© P%à}è,숰l°çŸ^?þø£.\Xq¬Q£FJLLda/ÀCvíÚ¥øøx}üñÇÊËËs{¼ûî»O‡C‘‘‘jÓ¦Þ° °#қ̛7OTzzzÅýxÀäªßráÂ%%%)>>^t{¼æÍ›k„ r8êׯŸ¾ƒiØ;",{@ýúõõÁèá‡ÖôéÓ5}út³K|‚ÓéÔÖ­[µxñbmذAÅÅÅnççç§Êáp(<<\76¨RÀ·ÐYØ‘íÂrII‰rss«}Nii©._¾\q¿   ÊþÉÙÙÙr:ÊËËS^^žrss•™™YqÿÌ™3:pà€êׯ¯Þ½{kÿþýºÿþûà±|‹ë¿±ÉÌ̼ásÊËË•••uÃç•••)''ç†Ï»òýq=ÅÅÅ5š]TT¤üüü>/33SÉÉÉ:yòä Ÿ{#wÞy§¢££­{î¹Çíñ_çú}Dg`' Ë~~~žÖ+=ûì³’¤&Mš¨_¿~2dˆF­{ï½·Në(,,TAAAÅý+Ouªº@V]¨»|ù²JKK¯ùXnnîuW ÏÏÏWQQÑ5»òßQYuᬺ€çt:•}ÍǤšÒêþ=•åä䨬¬ì†Ïƒñب=:Ë;ò+÷À'a¹zþþþ3fŒÂÃÃuûí·«°°P—.]RFF†222TRRRÐnô§Ë•¡5//Ïí)ª€/èÓ§‡&OžÌžÈ@-õîÝ[ûöíÓÀµ}ûv³Ë NØn¶8N­]»Vk×®5»À'±'2`,×yu:Ë;!,ð þþþ Qll¬ÆŒÞȀ¸|`G„e^íÞ{ïÕ¤I“£:˜]à“è,숰 Àë4oÞ\cÆŒQTT”BCCY'ð0VÁØa€×èÝ»·bcc¡¦M›š]`¬† °#Â2Kk×®ž~úiMŸ>];w6»À–è,ìÈ#a™3Ïø:Ë;ò7»`mt–vDXÕb5l€–@µè,숰 ªÅ5Ë;",€j–vDXÕb6ÀŽË,éüùóêØ±£~þùg³Kl¾vDX`IŸþ¹Nž<©O?ýÔìRÛ£³ °#Â2K:tè$éàÁƒ&W€k–vDX`IçΫò'óÐYØa€%eddH’.]ºdr%¸f`G„e–”-I***2¹LÃØa€%¹B2a0Ó°vDX`I%%%’¤ÂÂB“+@XØa€%K",VÀ4l€–X’+,3 0e€–XeÀ:è,숰 À’\aÙõ'ó°uÀŽË,É’ùr˜iØ;",°$WXæK:`>¦a숰 À’JKK%ñå°Þ‡;",°¤²²2I|IÌæz/J¼öBX`i|9ÌÅ¥»",°$WHæ‹:`®Ê'¬8y°Â2Kb«À8a°+Â2K",ÖP9,ó~Ø a€¥ñå0e€]–XeÀè,슰 À’Xà °2À®Ë,/ꀹè,슰 À’*)§» ˜‡÷À®Ë,‰° Xe€]–Xa°Þ»",°¼²²2³Kl«ò‰+:Ë;!,°$:Ë€5”””TÜÆ±ÅEIDATö÷çkÀ>øÔ`I„eÀJKK+n–v§Ëc6`žÊï????+ n–XRåeÀYÅ5Ë;áS€%Uî,–½W¯^½ªÜ:t¨I• ¶è,슰 À’*)',{¯ììì*÷ÃÂÂLªµÅjØ»âS€%}ÍrJJŠú÷ïïö8¸9GŽ©¸ýàƒ2 »ŽLœ8Q3fÌбcÇ܋հvEX`IF­†ššªàà` 2D»ví2¢4Ü„o¾ù¦âö°aÃL¬Ä^¾ùæ½ÿþûêÚµ«ž|òIíÝ»·ÖcUž†Mg`'|ê°¤ÊåÊ_Ök*--M PXX˜vîÜidi¨¡3gÎèäÉ“÷¹^¹î¸¦¿;N­]»V}ûöÕÈ‘#«œ¼¨)®YØa€%Uî`ÖøuÛ¶mÓÀª/¾øÂ¥¡†*³ÀÀ@›X½äääT¹_^^®Í›7ë±ÇÓ°aÃnêa`W„e–t³ayÛ¶m4hBBB”žžîÉÒPC•§½+00ÐÄj쥺Eñ>ÿüs+$$DÛ¶m»áX·™† °>õXRMÃòÎ;ªíر£.JC ¥¦¦VÜæzeëÙ¶m›BBB¤7^÷yyyy· Ë;áS€%Ý(,§¤¤èñÇWpp°ÒÒÒê²4ÔÀÅ‹õÃ?TÜçzeëúòË/5zôhõìÙS«V­Ryyy•Çóóó+n3 `'õÌ.®¥ò_YYY’~›ZºnÝ:Íš5Kûöí«Õ¸|Ù¿¾+C’;RSS+¦·mÛV<ð€Ûcò³ó¬ï¾ûN&LPïÞ½õÆoh̘1ò÷÷',l‹° À’*w–<¨¹sçêý÷ß×ñãÇM¬ 5•’’Rq{èС„,/²wï^=ùä“êÔ©“^|ñE?¾â1~Ž;!,°¤Êaùí·ß6±Ô×+{¿cÇŽiÆŒUŽqÍ2ÀNøÔ`I|)÷^?ýô“þ÷¿ÿIúíçjrE¨­+÷)§³ °¾°¤ÊayÑ¢Eš;w®:uêdbE¨©Ê]åîÝ»«uëÖ&VƒÚpíS¾uëVU¯¼–¾ŽiØ,©ò—ò¾}ûª{÷îzá…´~ýzÍš5K{÷î­Õ¸F.b…k«|½²‘]e~v5WÛpHHˆfΜ©àààk>Þ AwÊÀ«ÐY`I•;Ë·ÜrKűqãÆé¿ÿý¯6mÚ¤G}Ô¬òpN§³ÊV^aaa&VƒšÓ!CÔ«W/?W¾è¼á¨Í™3G÷Þ{ïI¿\$''Ÿ4ÆívkÚ´iš={¶*++åp8TRR¢¨¨(— ”Hè{S¦LQll¬n¾ùfϲAƒy^»\.Ýpà Z¸p¡g™ÃáàÁÅ‚–±mè7ÜpÃIï ð¼¾ãŽ;ät:5kÖ,Oè :T‘‘‘~¯|Áذ¦Î¢¼¼Ü•ø^ee¥ £ˆˆˆ@—㑟Ÿ/—Ëåy?pà@IÒ’%KÔ±cGÝyç’¤6mÚè£>ÒÌ™3R'ø‚±XSXVVæÇJ|«¨¨H—]v™Þ~ûmϲ°°0ÅÅÅI’¢££Õ¤I9NÅÇÇK’âââ©ØØXEGG+&&FIIIjݺµN;í4%''«}ûö®í믿ö¼NJJRûöí•­ýû÷ëþûï÷¬KOOWzzz£÷DúÑáÇ5jÔ(mÚ´é¤å•••:|ø°gLCôë×Oï½÷ž'HâóÏ?÷¼îÚµ«\.—233uß}÷5x›`ª  À`<zàÀ 6LYYYÕ®ˆˆPLLŒ$é”SN‘ôÿÝ`\\œš6mªèèh%$$(66V­[·VRR’N?ýtõìÙS§žzj£küä“O<¯»uë¦;wêšk®a¢ €”làž={tÑEiÿþýJHHÐÒ¥KÕ·o_9OÈšÛí®€Ýºu3¢6°h±Ï?ÿ\_|±òòò”””¤wß}W½{÷tYUìØ±C¹¹¹ž÷çœsá ¤{DM‡Ý‚%ß}÷]þùÊËËS»víôÉ'Ÿ~’´fÍÏëØØX¥¥¥°°ž±ìç_{í5=Z………:ãŒ3´aÃuíÚ5ÐeyubŽ3ƨË3À Æ`0w€sçÎÕ„ TVV¦ääd}øá‡j×®] ËòêСCÚ¼y³çýĉX ø‡±ŒçÝn·¦NªÉ“'Ëår©oß¾úøãÕºuë@—V£uëÖ©¢¢B’Ô¡C <8À€õŒæu‰XZZª«¯¾Z+V¬$ 6L¯¿þº¢££\YíÖ®]ëy}ýõ×sÙ[06kê‹‹‹ýXIíòóó5vìX}ôÑG’¤ñãÇkÉ’%A1‹²²²RëÖ­“$%$$覛n pEàÆ­© ÉËËóc%5ûé§Ÿ4hÐ Oø]wÝuZ¶lYP„ŸtìÙ~Çÿ>ï¾ûn%$$¸"ðc°¦ðÄëÕ)++Kýû÷×Î;%IwÞy§.\Xãá[ÓŸýÙµkWÝ}÷Ý®ü'(0''Ç•Tï“O>Ñ Aƒôã?J’f̘¡¿ÿýïAwþÌétªC‡Z½z56`+Æ`MA²gÏ?VRÕêÕ«uÑEéðáÃr8zòÉ'5mÚ´€ÖÔP3gÎÔ¾}ûtæ™gºð+c°¦Ãˆ{öìñÙLÐyóæiÊ”)*((¨ÓøgžyFãÇWqq±ÂÂÂôâ‹/ê®»îòI-ÿ16k»þ?ÿùO£÷±wï^ÝqÇzüñÇÕ·o_}ÿý÷^ǺÝnM™2EwÜq‡\.—"##µbÅ ]{íµ®àÆàñ‡Áz³råÊFïcáÂ…r»Ý’Ž…á‰ZNT\\¬Ë/¿\?þ¸¤c)zë­·4nܸF× ‡ûx¦¤¤D;vÔÁƒ«]§ü±Q€2dÈI’Ž=‹oíÚµêׯŸ$é·ß~ÓØ±cµaÃIÇ®•{ûí·5`À€ïxÆv€QQQ5ž[+((ÐK/½Ô¨}ìÝ»·Ê²Ã‡kذaúôÓOµk×.sÎ9žðkÙ²¥>úè#ÂB€± $=zT:tðzÝ_«V­”­fÍšÕ{Û¬ñ111 W~~¾$©]»vzÿý÷uÆgÔ{_óÛJÇεÕÔ£;@éØÓÉï¼óN¯ë tÇwÔk›+W®¬SøIÒ¯¿þª—_~¹^Û˜ÏøP:r;w®ñ Ë–-Óe—]Vë¶ŠŠŠtæ™gê‡~¨óþ‡þùÏêÏþs?0›ñ tì0gm·›4i’²³³kÝÖã?^¯ð“Ž2½ñÆ•‘‘Q¯ÏÌ $UTT(%%E»víò:¦W¯^úì³ÏUíú#GލmÛ¶úý÷ßTCTT”>üðC¥¥¥5èósE(Iáááµ>maÇŽš2eŠ×õK—.mpøIÇ.Î;vl½;H€y‚&%iذaš4iRcž}öY-_¾¼Úuo¼ñF£køå—_ê=é`ž  @Izâ‰'Ô±cG¯ëÝn·®½öÚ*·8“Tí}>ëÃétªU«VµÞ§`¾ 9x¢Ï?ÿ\C† QII‰×1 Z·nçžž………Š‹‹S}¾n=4vìX 8P={öTRRRP=íà]P $-^¼X&L¨qLll¬–/_®áÇë£>ÒСCkÝnŸ>}4~üx7N]»võU¹ÃmJÒ½÷Þ«Ç{¬Æ1‡C—^z©²²²ª\ü¦ÓN;M½{÷Ö!C4~üxuèÐÁÊ’†êt¹\š8qb½îÔÒ²eKÍž=[ýû÷WÇŽa]c…º€Æp:Z¸p¡ÊË˵dÉ’:}fÀ€JOO·¸2€é‚nèÿ Ó+¯¼¢+®¸¢Nã3224eÊ•••Y\ÀdA€Ò±\¼x±î¹çž:üñÇ•’’¢ŒŒ ¹\.‹«˜(¨ÏVç…^ÐM7ݤòòò:ïÔ©“n»í6Ýpà ^o¡=!€’´~ýz]uÕUúå—_êü™–-[j„ JOOW÷îÝ-¬`‚ @éØsü&L˜ ÷߿ޟMKKÓÕW_­1cƨU«VT´ @éØeO<ñ„zè!×ûóN§Siii3fŒÆ§N:YP% B:Û·oŸnºé&½÷Þ{ÚNÇŽ5`À 8P#FŒÐé§Ÿî£ þf‹”ŽÝ${Ñ¢Eºï¾ûôóÏ?7z{‡CÝ»wWjjªRRRÔ»wo¥¤¤¨E‹>¨`5ÛàqEEEš;w®æÌ™£üü|Ÿo¿I“&jÞ¼¹¥øøx9N%$$¨]»vêß¿¿ÆWãs Ö³]wèÐ!ýíoÓsÏ=§£Gúu߉‰‰žŒ•$OPJRLLŒçmM›6õzyFtt´š4iâu? ^ƒ6<<ܳïêÔ´ßÿåt:}úˆ¨&Mš(::ÚgÛkÖ¬™"##}¶=ŠŒŒT³fÍ]’l€ÇåååéÙgŸÕSO=¥‚‚‚@—ðƒœœð¸_ýUsæÌÑ‚ TTTèr"«qèÐ!-\¸P ,Ðwß}èr kñå—_*##Cëׯ×Ö­[ë|{5€ÙÀz())Ñ–-[´cÇeggëÛo¿Uvv¶öï߯#GŽº<@=€>RRR¢ÜÜ\¬#Gލ  @¥¥¥:zô¨çqL‡–$•••yf£Òm€…@ù\.ýþûï’Ž…ìñÛ¹¨²²R’TYYYãìÕüü|yû'®)hOÜ_]r+ùãƒú~íßÌ×Ün·%×¼ËþOüÿÈŽûGõ@quý…k÷îÝ8p Ün·n½õVõîÝ[ñññJHHôÿ×Ó:ϲêÔv}²$ÅÅÅ),,¬~_Äá.`°°0rÊ)µŽ›7ožçhQbb¢&NœhuiG6·{÷nõèÑC.—K’Ô¢E ýðÃ!ÿpg  ÖÌ™3=á'I¹¹¹Z¼xq+ò:@°±]»v©gÏž' tìño{÷îUxxèž)£›1cF•ð“Ž=Gõµ×^ @EþC6•••¥^½zU€’Ô¹sgíٳLj›V ›òÖý—­•+Wú±"ÿ¢ª­û;®{÷îúïÿëy^i( ½o¨ÕC=TkøIÇ&ɬ^½Úù ØL]»¿ãRRR´uëV9‹+ó/:@°™éÓ§×9ü$iûöízûí·-¬(0èÀFvîÜ©”””z $õéÓG_~ùeHut€`#õíþŽÛ²e‹Þ{ï= * :@°‰íÛ·+55Õë#Òj3`ÀmܸÑÇU ØÄŒ3~’´iÓ&mÞ¼Ù‡6°mÛ6½ñÆÞÎܹs}PB÷.§ÆtŠ‹‹SBB‚ŠŠŠär¹BâÂxÎ$IIIIÊÍÍUNNŽZ´hèr,ü@€["¶Dl‰Ø°%`K À–@€-€["¶Dl‰Ø°%`K À–@€-€["¶Dl‰Ø°%`K À–@€-€["¶Dl‰Ø°%`K À–@€-€["¶Dl‰ØØH¥¥¥zâ‰'ôú믫¨¨(Ðåê(<лçž{N÷Üs$)!!AW_}µn¼ñFyæ™® @(ùé§Ÿ´eËmß¾]‰‰‰ºå–[]RУl¤ÿûßž×ùùùzæ™g”œœ¬óÎ;OëÖ­“Ûí`u‚™ÛíÖÓO?­®]»ªmÛ¶ºä’K4mÚ4mÛ¶-Ð¥…°‘¾ûî»*ËÜn·>üðC >\}úôÑòåËUYY€ê3‡Ã¡É“'kîܹ'-0`@€* -`#׸~Û¶mºüòËÕ­[7½øâ‹ª¨¨ðSeBEß¾}OzOúècMš4‘Ãᨲ<;;['NT·nÝôꫯÒ¨³ƒz^·lÙR;w`5¡ƒô!§Ó©o¾ùF‡ÒܹsÕ½{÷*c¾ýö[]sÍ5êÞ½»–,Y"—Ë€J“Ý»w{^_pÁÕþ’úsFDDÈápð§rss=™íÛ·W»ví” Ûo¿]YYYÊÌÌÔùçŸ_å/þ믿ÖUW]¥^½zéÍ7ßôç¿9€ ³iÓ&Ïë‹.º(€•„gTTT k]ºt©²lèСúàƒ´iÓ&9²Êú¬¬,]rÉ%JKKÓÇì2™7J:v”é‚ .p5¡Ã‘””äÎÉÉ©ó"""S븰°0ÅÅÅÕ^€Ã¡„„„:í;!!¡N­ll¬ÂÃk¿Ä1::ZMš4©u\Ó¦MU—_Î>ûl?¾Æ1›7oÖÌ™3µvíÚj×=Z³gÏ®öð)û),,Tbb¢ÊËËuöÙgë‹/¾°l_IIIÊÍÍUNNŽZ´haÙ~LÞ´iÓ“Øå‹JZZšÖ¬Y£Í›7ëPffæIëß|óM­Y³F7Þx£f̘¡ÄÄÄU ÀëׯWyy¹$úšóþ‘––¦õë×ëƒ>PZZÚIë***ôì³ÏªK—.š?>—N6¶fÍÏëaư’ÐãHMMuoݺճ€00Þzë-ýõ¯ÕŽ;ª¬ëÑ£‡þñ¨ÿþ¨ €ÕöîÝ«•+WjÛ¶mr»ÝJKKSzzº$©C‡*,,TBB‚rssëtz§¡ìv”УFÒÖ­[õÚk¯©S§N'­Û¹s§ ¤É“'ëèÑ£ª€¯íÚµK£GÖŸþô' ¨o¿ý¶ÊúK/½TóçÏ·ÅÉi Í™3G/½ô’$éù矯ñ2§={öx^ÓýYƒÐo¾ù¦RSSuå•WV ¿¶mÛjÕªUZ±bá©íÛ·ëÁ”$3F£Gö:6//O'ÎÎ'­A`™™™zà´yóæ*뢣£5uêTýå/Q³fÍP_¹å–[TVV&§Ó©™3gÖ8vÙ²ežC M›6Õ AƒüQ¢í€òÙgŸéÐúõ뫬s:ºúê«õÈ#¨uëÖ¨€/½ûZ;V={öô:ÖåriÁ‚ž÷C† ?§­Q%“’’jü÷õ®®÷5kÖIww8ѨQ£4kÖ,¥¤¤Ôº?Áaþüùž××]w]c—,Y¢¬¬,Ï{Z§Þ`yy¹>\§±yyy ©)h]xá…^pãÆš5k–Þ{ï½jןwÞyzä‘GªÜ @pËËËóÜü>))I^x¡×±¥¥¥š6mÚIË@ë„÷ïß_S§N­u`yy¹çŽ5©¬¬TAAA­ãÜn·òóóëTd~~~•˪säÈ‘:Ý7óèÑ£*++«u\qq±JJJêT£tì©ï'r»ÝÊÌÌÔ£>Zå¦×Ç¥¥¥é‘GÑyçWçý™™™žŸKýû÷¯ñèÔ‚ ôý÷ß{Þ·k×Ngžy¦Õ%ÚVxÿþý¹Çd#¿wž$}ÿý÷Ú¿¿âââôꫯjÁ‚'Me>Qß¾}5}út1Ÿåð³'¸¥¦¦zwðàAÍœ9SÍ›7×o¿ý&I5v‹hÜ•”/kòv“ÛíÖ¤I“tÍ5×híÚµž:t¨_j´+g  5Þ¯_¿~žç~€}{^ŸxoÏ=üðÃ’¤»ï¾[{÷îõ,|¸š5k¦7z~‘nÕª•g\ff¦žxâ Í™3G~¯Ûîº\_¯¾þúk]ýõJIIѤI“Ô£G@—À0‡ÖôéÓõÖ[o©¸¸X}úôÑ 7Ü K.¹ä¤qeeeºí¶Ûôõ×_ëÒK/Õ¤I“üú\»=žH²_r`K À–@€-€["¶Dl‰Ø°%`K À–@€-€["¶Dl‰Ø°%`K À–@€-€["¶Dl‰Ø°%`K À–@€-€["¶Dl‰Ø°%`K À–@€-€["¶D€ Œ;V‡£Æ?¹¹¹’¤¤¤¤“–7iÒDÍ›7W§N4jÔ(UVVøÛø60}út9Ž}¶¼¼\‡Ò¾}û¯°°0W Ø@ïÞ½5f̘FoçöÛo÷A5fp¸Ýnw ‹XoûöíJMMUCìÝfii©ŠŠŠê<Þåré÷߯uœÛíV~~~¶™ŸŸ_íå ÿ»¯ŠŠ 9rÄóþxír:¶éþ$Î6ؾ}û”‘‘¡¼¼¼@—REyy¹ ]FuýŸ>¼ýð´‚‚UVVú|»V|_+j-,,Tyy¹O· HRNN`}üøãÊÈÈÐÊ•+õé§ŸùP7`-8 U«VzbÀjkÕªUzá…´aÆz?8`>ðYYYZ´h‘.\¨ß~û-Ðå,dût¹\Z¶l™ž|òImÙ²%ÐåüĶèr¹ôÎ;ïèÁÔöíÛ]ÀÏl€.—K«V­ÒÌ™3•••å×}‡……)..NЉ‰QTT”š6mªfÍš)22R±±± W||¼Â”pÒçîDM›6UTTÔIËâââæyïp8ªlë¸ã54ô»4ÄÿÖß«éßÀ1¶ À¬¬,Mš4IŸ~ú©O¶×¼ysuèÐAmÛ¶U»víÔ¶m[5oÞ\Í›7Wbb¢ç¿:å”S|²O€oØ"KJJôðÃkΜ9 ¾¨6::Z й瞫³Ï>[=zôP«V­|\)À_B>333uã7ê›o¾©÷g›6mª‘#GêòË/׈#ªj¯ ÀÊÊJM›6M³gÏ®×Åë‡CC‡Uzzº.¹äÅÆÆZX% PB2óòòtå•Wêý÷߯ógÂÃÃuÕUWiêÔ©êÖ­›…ÕLrøå—_jüøñÚ¿?3jÔ(=ùä“êÒ¥‹…•LR¸jÕ*M˜0A%%%u¯… jüøñW0MÈàâÅ‹•žž®ŠŠŠ:ïÓ§–/_®Î;[\ÀD!ñDø^xA×\sMÂ/11Q÷ß¿>ýôSÂl,è;Àùóçë¶Ûn«u¦g—.]ôôÓOkذaÜ…ÜO„_¾|¹®¸âŠZÃoôèÑZ´hQƒoÝ=A€[·nÕÀUTTTã¸+®¸B¯¼òŠ"""üT etXRR¢¡C‡jóæÍ5Ž9r¤V¯^­ðð ?Í °@еF÷Ýw_­áׯ_?-_¾œðxTà† tî¹çÊåryÓºuk}þùçjÓ¦+›  À’’õèÑCß~û­×1Íš5Ó† Ô§O?VFAstΜ95†Ÿ$Í›7ðÔIPt€?ÿü³ºtéRã%W]u•-ZäǪÁ,(Ò\>ÇIDAT:ÀG}´ÆðëØ±£žþy?VvÆw€P§NTZZZíz‡Ã¡>ø@çwžŸ+3ã;ÀçŸÞkøIÒ¤I“?@½Ý–––ªmÛ¶ÊÍÍ­v}||¼²³³uê©§ú¹2@°3º|ã7¼†Ÿ$Ý{d AŒîGŽ©wÞy§Úu-Z´Ðwß}§èèh?WÆv€ÅÅÅÊÌÌôºþöÛo'ü fl~òÉ'*..®v]\\œn½õV?W%ÆàW_}åuÝÍ7߬„„?V5ÆàîÝ»«]¥Ûo¿ÝÏÕB±øÍ7ßT»|üøñjÕª•Ÿ«„cð×_­vybb¢Ÿ+„"c0''§ÚåN§±%‚ˆ‘iRTTäõæ×‡ÃÏÕB‘‘XPPàu]XX˜+„*#°¤¤Äë:|ÁÈ4©)é¾tHð#ÓÄÛ-Ð$àF¦  ÀjF¦ °š‘iB¬fdš€«™& ÀjF¦ °š‘iÂ…ð«€ååå^×Ñ|ÁÈ4©¬¬ôºŽø‚‘iB¬fdš€«™&5 “`¾tHð#Ó„XÍÈ4!V32M@€ÕŒL&Á¬tHð#Ó„XÍÈ4!V32M@€ÕŒL&Á¬tHð#Ó„XÍÈ4!V32M@€ÕŒL&Á¬tHð#ÓÄåry]G|ÁÈ4©¨¨ðºŽø‚‘iB°š‘iÂ$€ÕŒ @:@€ÕŒLf¬fdšÐ¬fdšÐ¬fdšÔÔ2 à A€t€_02M8 °š‘iB°š‘iB°š‘iÂ$€ÕŒ @:@€ÕŒLάfdšÐ¬fdšÐ¬fdšð8$€ÕŒ @:@€ÕŒLάfdšÐ¬fdšÐ¬fdšp'€ÕŒ @:@€ÕŒLάfdšÐ¬fdšÐ¬fdšp'€ÕŒ @:@€ÕŒL`5ãÒ¤¦ÃŸ‡C‡ÃÕB•qH÷ðã…K þ`\¢p4€?€t€0.Q8ðã…àÆ%  ÀþÎlÏ™vIEND®B`‚fluids-1.0.22/docs/fittings/bend_miter.png0000644000175000017500000006224214302004506020005 0ustar nileshnilesh‰PNG  IHDRÌ£º¨sBIT|dˆ IDATxœìÝwTT×ÚðgAŠ‚¨XÁ`¡Ø5¦Šh0v“¨±áµ›ª¹¦Ý›nŒš¨7%F{ì2ƒ½÷¨(Ø"2ßù`E™S†™9ÌÀó[‹µ®³ß³÷›kÙïì³Ï>*½^¯•›ÔÔTÄÅÅ!!!çÏŸGZZ²³³¡R©P·n]´lÙ4h7n\ÞéR¡b@D¤¼ÜÜ\,]ºË–-à çŸbµZ>}ú`æÌ™ðöö6iü}ûöáóÏ?ÇÉ“'‘ªU«ÂÉÉ ®®®xñű|ùr“ú'ëÇ€ˆHA999˜9s&¢¢¢]¦>\\\°dÉôëׯL×ÇÄÄ ""=2Ø>{öl¼óÎ;eê›l ""âçŸÆgŸ}†Û·o›ÜŸJ¥Â‚ 0räH£®»víZµj…¬¬,ƒí7Fbb"LΑ¬[•òN€ˆ¨¢;vì†гgÏ Æ´lÙ#GŽDXX5j„üü|ܾ}iiiغu+6lØ€+W®”ÄëõzŒ3^^^èÚµ«ì\Æ/8ùÀW_}ÅÉ¿’à ‘Í;“&MBAAÁöjÕªá‡~@dd$ìììû)((ÀôéÓ1uêTäçç—|Þ Aœ>}5kÖ”ÌeÇŽèÖ­›`{ûöíqäȨÕjɾÈö± "²€‚‚ 6 +W®ŒiÒ¤ 6oÞŒæÍ›Ëîw÷îÝèÖ­>|XòÙûï¿ï¿ÿ^ôºÂÂB´mÛçÎŒ‰EHHˆì\ȶ±Ì#"2³üü|ôíÛWtò÷ññABB‚Q“?`Ö¬YO|…ëׯ‹^7þ|ÑÉ¿gÏžœü+®™Q^^zõê…˜˜Á˜š5kâСChÚ´i™Æxüø1Zµj…ÄÄĒϾýö[|øá‡ã³²²àëë‹;wîlwppÀ™3gàããS¦|È6q€ˆÈŒÆŒ#:ù«T*üþûïežüÀÎÎüñŸýú믂ñ_|ñ…àä'Nää_ q€ˆÈL¢¢¢0aÂј·Þz ÿûßÿLëÞ½{¨]»öÏò_¼x±Ta‘””„Ö­[ >óïááäädÔ¨QÃäœÈ¶p€ˆÈ Ž9‚÷Þ{O4¦Q£FøöÛoÍ2^ñ‰}ÿdhåáßÿþ·àäü½:ÀÉ¿rb@Dd¢ÇcìØ±øë¯¿Dã¾ýö[¸¸¸˜mÜÎ;?ñë£G>ñk­V‹7 ^ߪU+Œ5Êlùma@Dd¢ ”š|ŸÖ¡C 8Ьã>½Üâĉ’ÿ]TT„I“&‰^ÿý÷ߣJžWY± "2AVV>ýôSɸO?ý*•ʬc7iÒä‰_'&&–¼ThéÒ¥8~ü¸àµF H ""DEE‰î°€-Z W¯^fÛËËë‰_çææâúõëxðàhQboo/ypU|\û!"*£‚‚Ì;W2nܸqfÿöü}ŒðÓ.\¸­V‹ŒŒ ÁëÆ???³çC¶…+DDe´|ùrÉøœœœ0xð`‹ŒïääTê³]»vaÆŒ‚׸»»ã?ÿùEò!ÛÂ"¢2š7oždLïÞ½áîîn‘ñK}öõ×_ ¾xøû±¿ZµjY$²-\ "*ƒ””9rD2nÀ€ËÁÐÛÅ&ÿæÍ›cìØ±ˇl "¢2X½zµdŒ‹‹ ºwïn±¤ÎxÚÌ™3aooo¡lÈÖ° "*ƒU«VIÆtéÒŽŽŽËAìÛþÓBCCñÊ+¯X,²=,ˆÈ(………˜9s&4 &Mš$zÌlE•™™‰cÇŽIÆ………Y4¹€Z­Æ?ü`Ñ\Èöp eܸqX¸p!@§ÓÁÇǧÒÝWÞ½{·¬¸   ‹æqïÞ=YqƒFëÖ­-š Ù®‘liiiX´hÑŸÅÆÆ–S6åg×®]’1...hÕª•Eó¸råŠdŒƒƒ¾øâ ‹æA¶‰ÉvôèQ=ñ™œI¨¢‘³СC‹Ÿ³êÔ)ɘ1cÆ qãÆ̓l "’-99¹Ôg™™™åIù¹{÷.Ξ=+צM‹ç¢ÕjEÛñÉ'ŸX<²M,ˆH¶[·n•úìþýûåIù9þ|©UCüýý-šGVVvìØ!‰ºuëZ4²],ˆH¶œœœRŸ–C&å'))IVœ¥ÏÚŽŽ}  J•*xÿý÷-šÙ6D$[vvv©Ï*Ûc€‰‰‰²â5jd±îß¿9sæˆÆ 0€÷þI "’-77·Ôg•màÂ… ²âêׯo±¾ûî;ܸqC4fܸqŸ*D$›¡£gåܯHîÞ½+S­Z5T¯^Ý"ã_¹rEòPOOOtêÔÉ"ãSÅÁƒ€ˆH6cÏž7—â÷gΜAzz:1yòd‹³+$//O2ÆÕÕÕbãüñÇ’9 0j5¿ß‘8D$›@aa!N:…}ûöaÿþýØ·oRSSKÅ999aÒ¤IÏçiùùù’1...{÷îÝX¾|¹d\@@€EÆ§Š…Éf‰ ''û÷ïÇþýû±wï^:tÈà^ƒ§mÞ¼¹\ 9·<œœœÌ>nAAF ½^/ëëëköñ©âa@D²™cÇÿµk× Óé€={öÈ~®þiçÏŸ79—²¨W¯ždŒ%žŒøüóÏe?`ÌÄüü|ÄÅÅ!""¢¬©‘b@DuãÆ ètº’¹“˜Cg(¡aÆ’1>4ë˜ ˜>}ºìø›7o¢fÍš²b¿ûî;lÛ¶@%Ä€ˆÌêæÍ›HHH(™ðÏ;g‘q PXXhñóöŸæåå%#ç†\wîÜÁ!CWIT*:wîŒäää’G·oß.ë$»wïâÇÄóÏ?o¶|Év° "“­]»:Z­çΓuŸÚòòò,ö¸9×ݹsÙÙÙpww7i¬GaÀ€‚/\²··ÇŠ+зo_ÄÅÅ!44ð¿ÿý'N”,޾øâ ܹsíÛ·7)O²M|N„ˆLÖ¿üôÓO8{ö¬b“?ܾ}[±±Š Zµj’qæXùxë­·_ø£R©°xñbôíÛð /”´]¾|ß|óhß›7oÆìٳݻw79W²=,ˆH6%'w9¦NŠÇ+:¦ƒƒBBB$ã}ú`íÚµ‚… U,ˆH6¡`øðáX¼x±èµz½çÎCBBvíÚ…]»váÚµk&åsõêÕ’£yõz=ÒÒÒpøðaìß¿À±cÇžøVíåå…ôôt“Æ’žžŽ?þüñG™Þm R© Ñh0jÔ(ôïßߤ:„   R¯ V©T:t(¢££.,¨âa@D² ï¾û.fÍšet.\ÀîÝ»±k×.ìÞ½[ô[ëÓT*þúë/щ²  ÇŽÃpàÀÔ«WsæÌ1:Oc\ºt ¿üò 6oތӧO‹ÆÚÙÙ¡S§NèÑ£úõë‡&Mš˜-ãÇcòäÉØ³g\\\Œwß};w6ÛdÛX‘l~~~HNN.õùÇ,yòœHHH() Ο?/xøPýúõ‘™™iò˜–tóæMœ>}IIIÈÉÉÁ½{÷P­Z5Ô¬YíÚµC»víž8¼‡HI|™ÌÉÉÉ,ý4l؃  Aƒü}¦þ‘#GpìØ1œHD&3× )‡™Œ÷±‰l "’MèL}®ÙD$›Ð[ã¸@d{X‘lBWˆl "’M耽½½Â™‘©X‘lB€)ÇÖQù`@D² Ýúœˆ¬ "’Mh€‘ía@D² Mô¼@d{X‘l\ ª8X‘lÜ@Tq° "Ù¸@Tq° "Ù„îõ³0Ÿ»wïbòäɨ]»6jÖ¬YòS»vmøøø 44'NÄêÕ«q÷î]ƒ}aûöí1büýýQ­Z5Ô®]]»vÅ‘#Gþ/"k¥ÒëõúòN‚ˆlC·nݰcÇŽRŸ§¤¤ qãÆåQÅuôèQ¼÷Þ{ؽ{·`Œ³³3ÆO?ýnnnþþ½xóÍ7±ÿ~ƒ×899!..;v´HÞd;X‘lغuk©ÏÓÓÓáååUUlz½«W¯Æ¿ÿýo¤¥¥ Æ5hГ'O†Z­Æ—_~‰¬¬,Ñ~½½½qüøqÔ¨QÃÜ)“ a@D²½úê«Ø¼ys©Ï322РAƒrȨrÈËËÃôéÓñÝwß!//Ï,}0«V­2K_d›¸€ˆdãQÀåÃÉÉ Ÿ}ö’““1dȳô¹zõjlܸÑ,}‘mb@D²ñ1Àòåé鉥K—bíÚµ¨^½ºÉý½÷Þ{ÈÏÏ7Cfd‹X‘l,¬Cß¾}1þ|“ûIIIÁŒ3ÌÙ"D$›Ð-•J¥p&äèèh–~¦M›&ºÁ*.D$›Ð7}ÊûñÇÍÒÏÇ1iÒ$³ôE¶…ÉÆëpöìYèt:³õ·víZƒç;PÅÆ€ˆdã €u8zô¨Ùû|ûí·QPP`ö~Éz± "Ù„VHYMš41ûïErr2fΜiÖ>ɺño3ÉÆëйsgüùçŸpuu5k¿S§N5û†Àëׯ#00ÉÉÉfí—LÇ€ˆdãëѳgOœ>}Æl}>|øï½÷žÙú»qãBCC±{÷ntëÖ ×¯_7[ßd:D$Ÿ÷·.5Bll,f̘a¶ÇÿüóOlÛ¶Íä~222ˆ³gÏ._¾Œ=z 77×ä¾Éjµ“'OÆÉ“'Ñ¥K³ôùÖ[oááÇe¾þÊ•+ *µìôèQ 0=25E2D$÷X/___hµZDGG—¼¸¬.]º„>ú¨Lצ§§#((/^4ؾ}ûv,\¸Ð”ôÈLX‘l\°n*• £GFbb" `R_?ýôŒº&==)))‚1o¼ñFeRnd,ˆH6î° õêÕêU«°víZÔ¯_¿L}aäÈ‘xðà¬ø””ŠNþÆ òeËøöH+Á€ˆdZàùÖ©oß¾8þ<Þ~ûí2ý]ºt ü±d\jj*BBBD!ŒŒŒÄ¢E‹XDZþ­%"Ù„¾¹éõz…3!¹ÜÜÜ0gÎÄÅÅÁ×××èë¥n$''£sçÎHMMŒ3f ,XÀBÑÊðwƒˆdã €í ™3g0mÚ4T­ZUöuEEExóÍ7qûöíRmIIIFFF†àõ£GFTTÿŒX!þŽ‘l| À¶ÙÛÛcÊ”)8sæ BBBd_wõêU :ô‰•9“ÿرc1þ|NþVŠ¿+D$ïßV Íš5CLL –,Y‚Úµk˺fÛ¶møþû‰Ðh4ÈÌÌŒÿý÷1oÞ<‡VŒÉÆ âP©T:t(Μ9ƒAƒɺæã?ÆÂ… ˆk×® ÆM™2¥¤X ëÅ€ˆd*¸Äk»êÖ­‹åË—C«ÕÂÏÏO4öÑ£G5jnݺ%3eÊL›6ÍÜi’ðo-ÉÆ€Š+((ÇÇgŸ}‡2õÁÉß¶° "Ù¸ °bsrrÂ矎#GŽ cÇŽF]ûÅ_pò·1,ˆH6®T­[·Æž={0}útYñÓ¦MÃÿû_ gEæÆ€ˆdcPy¨Õjœ9sF2î›o¾Á”)SȈÌ2‘lÜìWyüøãXºt©`»J¥Â¬Y³ðÎ;ï(˜™ "’+•Ão¿ý&:±«T*Ì™3o½õ–‚Y‘¹± "ÙXT|›6mBdd¤àûT*~üñGL˜0AáÌÈÜX‘l|kŇ×^{ ………ÛÕj5~þùgŒ9RáÌÈø·™ˆd《kïÞ½èÝ»7òóó ¶ÛÙÙaáÂ…>|¸²‰‘Ű "Ùx  bÚ¿?ºwïŽÜÜ\ƒívvvX´h†ªpfdI,ˆH6ÏñãÇû÷ïl·³³Ã¯¿þŠ7ß|SáÌÈÒX‘l,*–“'O"44ÙÙÙÛíìì°téRÙ/ "Û€ˆdcPqœ>}¡¡¡ÈÊÊ2Øîàà€+V OŸ> gFJa@D²±¨’’’еkWܾ}Û`»ƒƒV®\‰Þ½{+œ)‰ÉÆÀö]¸pÁÁÁ¸~ýºÁv¬^½={öT83R "’€mKKKCXX233 ¶W­ZkÖ¬A=ÎŒÊ "’€íJOOGPPÒÒÒ ¶;;;cÆ  U83*/,ˆH6¶éêÕ«Ðh4HMM5ØîììŒM›6!88XÙĨ\± "ÙXØžÌÌLh4¤¤¤l¯^½:¶lÙ‚€€…3£òÆ€ˆdãQÀ¶åúõë ÃÅ‹ ¶»ººbûöíèØ±£Â™‘5`@D²qÀv/û Mþnnnؾ};^zé%…3#kÁ€ˆdc`¤&ÿ5j`ÇŽxá…ÎŒ¬ ×óˆH6ÖïÊ•+¢“¿»»;vîÜÉÉŸ¸@Dò±°nÅ“ÿ¥K— ¶{xx 66mÚ´Q83²F\ "ÙXX¯ôôtÑÉ¿N:ˆ‹‹ãäO%¸@D²±°NÅ“¿Ð£~uëÖEll,Zµj¥pfdÍX‘l,¬Ôä_¯^=ÄÅÅ¡E‹ gFÖŽ·ˆH6Ö%-- AAA‚“¿——víÚÅÉŸ â ÉÆÀz¤¥¥A£ÑàòåËÛ5j„øøx4mÚTáÌÈV° "ÙXX‡K—.A£ÑàÊ•+Û½½½¡Õjáíí­lbdSx €ˆdcPþRSS*8ù?óÌ3ˆçäO’X‘l,Ê×… йsgÁ·úy{{C§Ó¡qãÆÊ&F6‰ÉÆ ü\¸pÛ}||°{÷n~ó'ÙX‘l,ÊGrr²èäïëë ­V OOO…3#[Æ€ˆdc ¼ÄÄD NþþþþÐéthذ¡Â™‘­c@D²©Õü'CIçÏŸGpp0®]»f°ÝÏÏqqq¨_¿¾Â™QEÀ¿ÍD$W”sâÄ  NþþþþÐjµhР™QEÁ€ˆdc ŒcÇŽ!44·oß6ØÞ¼yshµZ~ó'“° "ÙXXÞ‘#G†;wîloÛ¶-víÚ…zõê)œU4,ˆH6–µgÏ#++Ë`{»ví‹Úµk+œUD,ˆH6–“€îÝ»ãþýûÛÛ·oÏÉŸÌŠɦR© R©Ê; gûöíèÞ½;rss ¶?û쳈‰‰A­ZµÎŒ*2Dd®˜×Ö­[ѧOäåålïС'²Ddæ³iÓ&ôíÛùùùÛ‹'ÿš5k*œU,ˆÈ(,ÌcÕªUèׯ ¶¿üòˈ‡»»»Â™QeÁ€ˆŒÂÀtüñŒGlïÔ©¶oßWWW…3£Ê„…€i.\ˆ7ß|………Û;wîŒmÛ¶¡zõê gF• "2 €²‹ŽŽÆ˜1cPTTd°= €“?)†…@ÙDEEaܸq‚“`` ¶nÝŠjÕª)œUV,ˆÈ(,Œ7cÆ L˜0z½Þ`{—.]8ù“⪔wDd[ÌUáîÝ»¥>¿ÿ~©ûãùùù¥ž“/¾¾mÛ¶ððð0KN–ðå—_â³Ï>lÇŸþ '''³"2CððáCüöÛoÈÉÉ‘_PP€‡š:l™Ý»w?.—± ùTƒð×_•Ûø999‚߀”p÷î]ÁåW%”çŸ=ÀðÄj.M›6Ç’ïýýýo•oÆûä“O0uêTÁöîÝ»cݺupttT0+¢ÿ§/£¿þúK?oÞ<}ýúõõøÃþð§Ü~üüüôeýçÌ슊Šô“&MÍ9""BŸŸŸ_Þ©R%ftPTT¤_µj•ÞÇǧÜÿÒó‡?üáOñµEEEúñãÇ‹æúꫯrò§r§Òëå¯Éž?ãÆCBB‚ÜKˆˆãëë ­V‹ ”Ëø?ƨQ£°xñbÁ˜Þ½{cåÊ•pppP03¢ÒdK–,ÁøñãËõþ=‘___ÄÇÇ£aÃ†ŠŽ[XXˆ¡C‡â?þŒéÛ·/V¬X{{{3#2LÖc€ß}÷†ÎÉŸˆ¬^rr24 222ó¯¿þÂ믿.:ù÷ïߟ“?YÉ©]¬DDÖÈÇÇZ­Öâ+yyyèׯ¶mÛ&óúë¯cÙ²e¨R…O^“õ-æÏŸqãÆ•­c• 6„‡‡jÔ¨77·’gggÔ¨QÀßÏ¿ðÂÁÁ...GGGÉçb]]]e?“ìææµZÞ¹G5jÔ€J¥’kk*ò)ãé??/½ôöïß/ûzCÏôÿóÉÜÜ\>^^^fÉ/++ ݺuÃáÇcz÷îU«Vñž?Y-ƒkâ_|ñ…¬É¿uëÖ8qâfÏžÍÉŸ¨’***•+WÌÚ§N§üœœðé§ŸB«Õ¢I“&’ý¯˜#Ï›7o"88XtòïÙ³'V®\ÉÉŸ¬Z© 55³gÏ–¼°_¿~8pàüüü,’ÙcoH™?¾hûk¯½†Zµj¡Q£FÐjµhܸ±dŸ—.]‚F£1)×ÌÌLáäÉ“‚1X½z5Ÿó'«Wªøì³ÏPPP zÑ«¯¾Š?þøÎÎÎKŒˆl‡9¹»qãÖ¯_/3~üø’ÿ]\x{{KömJžžŽ.]ºàüùó‚1Ý»wÇÚµk9ù“Mx¢¸råŠès¬Ð®];Þ×"¢'dee™­¯E‹‰¾´ªC‡xá…žøì™gžV«Å3Ï<#ÙJJ ‚‚‚Œ*.]º„ÀÀ@Ñ[£]»vźuë̺‚È’ž(¢¢¢ðèÑ#Á`GGG,[¶Œo®"¢'dgg›¥Ÿ¢¢",X°@4æŸßþÿÉÛÛ[vpùòe!--M2öüùó  Åúõëùo#Ù”’@¯×ã÷ß þïÿ‹–-[Z<)"²-æ*vìØË—/ ¶»»»ã7Þloܸ1âããѨQ#ɱä§NBPP233c‚ƒƒ±a²d IDATÃ>öL6§¤Ø»w¯è’Xýúõ:€ˆ*˜¥©Í‘‘‘’{š4i‚]»vÉÚššŠÀÀ@ƒ;v !!!¸yó¦àõ;wƆ ¸ŠlRI°jÕ*ÑÀ>úˆȉȠ§Oö+‹«W¯bË–-‚í*• cÆŒ‘Õ×3Ï<ƒØØXY‡ÿ¤§§#88©©©%ŸíÝ»ÁÁÁ¸}û¶àuضmªU«&+'"k£þ~…åêÕ«ƒ\\\0|øp¥r""cŽ`Á‚%Ç Ùý5mÚTö €iii ÂåË—ððpܽ{W0¾S§Nزe '²ij8sæ ®_¿.4`ÀT¯^]±¤ˆÈ¶˜Zâ—_~Úü'¦ø@9/JKKC@@zôè!zK£cǎغu+ÿM$›§¤ÏÜ6l˜"É‘m2µØ´i“èY^^^èÑ£G™ú.~+`ƒ $c322Dÿ[^xálÛ¶­äfD¶L @ôM^®®®èÔ©“b ‘íÉÏÏ7éz©Í£G6é…:ÆB7nŒM›6ÁÍÍ­Ì}YÉ $$„‡þ‘(±óC¤¤¤¤ 66V°ÝÞÞ‘‘‘e¯¯o™‹€êÕ«cÆ |ç U(êììl\¸pA0 44TÁtˆÈ–ùÚèèh ¶÷íÛפoîÿäë닸¸8Ô«WOö5UªTÁš5kкuk³ä@d-ÔÉÉÉ0ðFàÏ?ÿ¼‚é‘-Û½/¦  ‹/)Ëæ?1þþþˆ—]Ô©SÍ›77kDÖ@-v V•*UЪU+Ó!"[TÖ`ݺu¸uë–`{«V­XÖ´¹¸¸È>¹¯ø €æ~å1QySÿóð‹§ùûûóxK"’TÖ@j󟹿ý¿ô,88XôÈá§¥¤¤ À¨kˆ¬Zìø____S!"[U–àܹsصk—`{õêÕñæ›oš’V)ééé Â¥K—Œ¾6-- ¡¡¡\   Ct@Î ZDDe)¢££EÛ‡jÖÃvŠ¿ù:÷_.®PE¢¾qã†`£¹vÞQÅfìS>Äo¿ý&3vìXSRz‚)ßüŸÆ•ª(Ôb§^± "9Œ]X¹r¥è+„̶9==Fô›¿——Ôjµ`ûÓRRR¸1lžúáÇ‚<뚈ä0¶Zþ7׿?9“ÿ˜1c’’‚“'OUt° ['Z888(˜ Ù*c €cÇŽáàÁƒ‚íõêÕCß¾}MÎIjò·³³Ã¬Y³0þü’Gž<ˆ#FȃEÙ2Ñ[U«VU0"²UÆsçÎm9r¤É_>¤&ÿªU«bíÚµx÷ÝwŸøÜÙÙ‹-¼yó`gg'k,d«DWX‘r7feeaÅŠ‚ívvv=z´I¹HMþÎÎÎØ´izõê%ØÇرc±víZÙç ° [¤V©T‚¦œïMD•‡Ü€_ýb_:zôèF•9©ÉßÕÕÛ·oGXX˜d_½zõBLL jÖ¬)kldkÔŽŽŽ‚¦¾â“ˆ*9€^¯·èæ?©çükÔ¨;v @vŸ:už={ðÌ3ÏÈŠç9dKÔÎÎ΂bûˆˆŠÉ)vìØäädÁö¦M›–ùí£RÏùשS x饗Œî»y󿨷oŸì'xNÙ µØ=.D$GQQ‘è[EéÍ£G6êYübRËþ 6DBBÚ´ictßÅ4hN'ûí¨¼@¶@´¸ÿ¾‚©‘-+**l»|ù2¶nÝ*ØîèèˆÈÈH£Ç¼råŠää¯ÕjáïïotßO«U«bcceßB`@ÖNtÀÍ›7L…ˆl™X0oÞ<Ñö víÚF'5ù׫W111ðññ1ª_1Å›ÃÃÃeÅsOY3ÑD$—Ð>€‚‚üú믢׎7Ψ±Š'¡{þõêÕC||<š7onT¿r8;;cãÆ²+JKKƒF£a@VGt Ø‹‚ˆˆþI¨X±bnݺ%x]Û¶mѱcGÙã\¹rEtÃ_Æ ±k×.‹LþŰråJ 8PV<7’5R»¸¸6r€ˆä*¢¢¢D¯3æ­Å“¿Ô=s.û ©R¥ –-[†ýë_²â¹'€¬ºV­Z‚üƒJDÿ$¶ÓßPÛ±cÇpèÐ!ÁkªW¯ŽAƒÉ[j·¿§§'t:"“1µZŸþï¿ÿ¾¬xî k¢öððlLOOÇ£GL‡ˆ¬™X`èäÐüQ´¿!C†ÀÕÕUrÜË—/£K—.‚ËþžžžÐjµhÖ¬™d_æ¦R©ðý÷ßcÊ”)²âÓÒÒÆ/XTîÔuêÔl,,,Dzzº‚é‘5+žÞåçÎÑsÿyËÿ©©© AjjªÁöòœüÿiÚ´iøì³ÏdÅ^ºt‰+TîÔuëÖ ¸xñ¢B©‘-{zÀ¢E‹Dïܹ3Z·n-Úç… D'Jk™ü‹}þù粋®PyS{{{‹° ¢brWŠŠŠ0þ|Ѿ¤¾ý'%%A£ÑàêÕ«Û­mò/öùçŸã«¯¾’{éÒ%h4T.ÔM›6 8uê”B©‘-ûç ÀÖ­[7뀇‡ú÷ï/Ø~þüyh4dddl·ÖɿاŸ~Šo¿ýVV,‹*/êºuë¢Zµj‚'OžT0"²fb+ÿ,æÌ™#ÚOdd$ªV­j°íܹsÐh4¸víšÁvkŸü‹}øá‡˜1c†¬XTÔ*• íÚµ 8}ú´ìw}QÅ&ç)€3gÎ ..N0N­VcôèÑÛNŸ> F#x™­LþÅ&OžŒY³fA¥RIƲ ¥©à¹çž xøð!’’’Kˆˆ¬—XP¼áoöìÙ¢qáááhÒ¤I©ÏOž<‰àà`ÁÈlmò/öî»ïbÞ¼y²‹>@JQ@‡Dƒ>¬H2Dd»òòòpëÖ-üþûï¢q†6ÿ?~!!!¸}û¶Ákluò/6fÌÌ;WVÀ§H)jèÔ©“hPBB‚"É‘uûfÿðáCDGG#//O0¦aƈˆˆxâ³£G"44wîÜ1xMñ ¶:ù7n¢££¡V«%cy;€” €Æã™gž Úµk—b ‘mÊÊÊ’<÷Ĉ°³³+ùõáÇЬ¬,ƒñõêÕCll,¤žV²£F‚ XU(ùSØ¥KÁ K—. >‹KD•‡Ø ÀÌ™3wîoþ‹ŒŒ,ùõ†œœƒñµk×FLL üüüÊž°ŠŒŒÄâÅ‹Ÿ(„„° K*)‚ƒƒEµZ­Å“!"ë&VìÛ·OôÚàà`4nÜÀß·»v튻wïŒuwwÇÎ;ѪU«²'kņŠ%K–° rUR¼òÊ+¢ׯ_¯HBDd½Ä )£FlÛ¶ Ý»wÇýû÷ ƹººbûöíhß¾}™Ç²ƒÆü{{{ÉX>@– Òÿãot§N«xgggܺu ÎÎΊ%GDÖåÁƒ¢‡ ©U«222°sçN¼öÚk‚ïpvvÆÖ­[EoIV4kÖ¬Á Aƒd½yõ™gžV«-YI!2Å;Qzöì)øðáCÄÄÄX}ú`õêÕ²Šî syâøøø¾ÐÝÝ7nÜuÏŠˆ*ž{÷îÁÍÍͬ}ÚÛÛcõêÕèÕ«—YûµE[¶lA¿~ýPPP Û´iShµZxyy)UD¥F[ÈÎÎ=㛈*69÷©agg‡%K–pòÿذaœœœ$c¹1LUªú‹¸víZ‹%CDÖÍœ€Z­Æ¢E‹0pà@³õY„‡‡Ë.¸'€LQê€^¯‡.]ºdð‚Zµjáúõë¨R¥Š" ‘õHOO=5T.•J…¨¨(ƒï ¿íÚµ ÈÍÍ•ŒåÓT¥VT*† "xÁ;wøn¢JÊ\+Ó§Oçä/!00Û¶mCõêÕ%cÓÒÒ Ñhx;€Œbð@êaƉžUÍCˆ*'sÓ§OÇäÉ“ÍMÅ×¹sglݺUvÀÛd ƒ³¼··7‚‚‚/Š·T>DdÅþúë/“®ÿòË/ñÁ˜)›Ê¡sçΈ‡»»»dlñÆÀÔÔTË'F6Oðkþˆ#/:wî233-’Y/SVÞÿ}üç?ÿ1c6•ÇsÏ=‡˜˜Ô¬YS26-- AAA,H’`Я_?ÑŠS§ÓY""²be-Þzë-|ÿý÷fΦréСvìØ!k% -- ¡¡¡¼@¢ '''L˜0AðB¾¨ò)K0xð`Ìž=ÛÙT>Ï=÷bcce­ðÄ@’"¼ÓÀÛo¿ ƒm{öì±HBDd½Œ-^yå,^¼XtS1çÙgŸe@f!ú·ÒÃß|ò‰Á¶¤¤$$%%Y$)"²Nyyy²c;uê„Õ«Wóèp hß¾=‹2™dY>yòd<ûì³¥>×ëõÜÐCTÉdeeÉŠkݺ56mÚÄׇ[PqP«V-ÉXdˆd`ooµk×üC¶zõj|ôÑGe~E(Ù–;wîHÆx{{ËÞ¬F¦a@¦ucÎÛÛ¿ÿþ;ìììJµM›6 ÁÁÁ8{ö¬Ù“#"ërãÆ Ñv777lÞ¼õë×W(#j×®‹*Ù;sš6m •Je°M§Ó¡M›6xýõסÓé¸"@TAIíûY´hZ¶l©P6TŒE•E©— 5j.\(«ÓfÍšaäÈ‘6l¿ UEEEðööœ84h€ŒŒ …³¢:yò$BCCqûömÉØ¦M›B«ÕÂËËKÌÈÉZHOOÇÒ¥KewzñâE|ôÑGhÔ¨úôéƒ;vpU€ÈÆýù矢ß###̆ iÛ¶-bccQ»vmÉX®¬€ & **ʤðÓO?¡M›6&õCDÊËÌÌD«V­m°½Y³f8uꔬwØ“åq%€ä\ÈÌÌÄ¢E‹Lh÷îÝxùå—±qãF“û""e}ôÑG‚“?L:•“¿iÛ¶-âââ¸@¢$WÞ{ï=Éc<ÝÜÜ0lØ0T©R‹-BNNŽ`¬½½=t:^~ùå²eLDŠJJJBË–-ñøñcƒí-[¶Ä©S§xÚŸ:uêBCCqëÖ-ÉX®T>¢À7ФI<|øP°ƒÖ­[cݺuhÖ¬€¿«ÉÀÀ@Ñ·zzzâìÙ³puu5!u"RÂ!C°lÙ2ÁößÿT0#2‹"Z²Ïš5Ktò÷ððÀÖ­[K&àï?@;wîܯ^½Š3f”!]"RRzz:V®\)ØÞ¤I¼öÚk fDÆjÓ¦ âââàáá!ËÛ•‹`p÷î]ÌŸ?_ôâß~û žžž¥>oÙ²%¦OŸ.zí¬Y³dU¤DT~fÍš%ú ·ÞzËàad]Z·nÍ"€J,æÏŸ»wï ^اO„‡‡ ¶=AAA‚í<À/¿ü"/K"R\vv¶èÙ®®®|ôφ´nÝñññ,¨„Á   sæÌ¼ÈÁÁAò¾J¥ÂÔ©SEc¢££QTT$#M"RÚ¼yó››+Ø>räHîã±1­ZµB||<êÔ©#Ë" â3X¬\¹×®]¼èõ×_⾿Ž;",,L°=55:N:K"RT~~>þ÷¿ÿ ¶ÛÙÙáí·ßV0#2—V­Z!..ŽE.¢££E/zï½÷d0eÊÑöuëÖÉ”±téRÑÿôîÝÞÞÞÊ%DfÅ• <xúôiÑÓú‘ {½^fÍš!%%Å`{Æ qåÊÁ ‘²ŠŠŠÐ¼ys$'' ÆìÙ³:uR0+²„³gÏ"887oÞ”Œå#‚O©€ ˆ^0bÄ£P©T¢…222pðàA£ú$"ËÙ²e‹èäÿüóÏsò¯ Z¶l‰øøxÔ­[W2–+ÏÀãDZjÕ*Á`'''ôíÛ×èA† "ú Ÿ·ˆ¬‡Ø`àïGÿ¨â`Py=Qèt:Ñû~½zõ*Ó®ßF¡C‡‚íkÖ¬1ºO"2¿³gÏ">>^°ÝÃà P0#RB‹- ëõí—.]B@@RSS-ŸYԀطèß¿™êÕ«—`ÛåË—qêÔ©2÷MDæ1{ölÑWw;ŽŽŽ fDJñóóƒV«Eƒ $cÓÒÒÄ"ÀÆ•z½›6m tpp}¤OŠXëׯ/sßDdº;wî`ùòå‚íööö3fŒ‚‘Òüüü‹zõêIƦ¥¥!44”·lXIpîÜ9Ñgÿ»tébÒ¡­ZµýCS澉ÈtÑÑÑÈËËlïׯ6l¨`FTš7oN'k%€·l[I'ؽ{w“R©TèÒ¥‹`ûÁƒqÿþ}“Æ ¢²yôèæÍ›'3aÂ…²¡òÆ•€Ê¡¤ÛøÁÁÁ&¦ÑhÛ=zdÔùDd>k×®ÅÕ«WÛÛ·oÎ;+˜•·æÍ›C«ÕÊ*øt€m*):$T³fM´nÝÚäÁDÛ÷îÝkòDd<>úG†øûûC«ÕÊ~:€E€mQ@ff¦èýÿÀÀ@¨Õ‚/”Íßß_tÁLƒˆŒsäÈÑ¿{µkׯÀ̈¬‰¿¿?÷TPj8~ü¸hÔ7wÙƒ©Õhß¾½`ûáÇQXXh–±ˆHžY³f‰¶ÿë_ÿ⣕œ¯¯/âããe­pO€íPÀ‰'Dƒ^xá³ øÜsÏ ¶=xð@ôR"2¯7nˆÄU¥JŒ7NÁŒÈZŸÀÛ‡.^¼(`gg‡víÚ™m@©¾Í6‰[°`þúë/Áö^½z¡Q£F fDÖ̘ÂXX?5ð÷o”T«VÍl6oÞ\´ýüùóf‹ˆ„J¾úûí·ßV(²~~~Ðét²Î„àžë¦ øª^xöÙgÍ: ¿¿¿è†B®)cãÆ¢þµiÓ fD¶ÂÇÇñññ² æžë¤ÎÏÏGff¦`@‹-Ì: ‹‹‹è’"Wˆ”1wî\Ñö‰'*” Ù"___Þ°qêëׯ‹¾üÃßßßìƒúøø¶%%%‰æCD¦;þ<´Z­`{Íš51xð`3"[T\ȽÀ"Àº¨oÞ¼)àççgöAÅVrssù„È¢¢¢D íÈÈH8;;+˜Ù*¶K}ãÆ ÁÆ*Uª iÓ¦fTjWqFF†ÙÇ$¢¿åææbéÒ¥‚ívvv?~¼‚‘­óñña`ƒÔׯ_lôôô„ƒƒƒÙ•*nݺeö1‰èoK—.Ž{÷Û_}õU4nÜXÁŒ¨"ðññN§ƒ§§§d,Ÿ°ꬬ,ÁFK½úSªßÛ·o[d\"‚ä[ÿ¸ùʪY³fÐjµ²Š>PþÔbß¼¼¼,2¨‡‡‡h;Wˆ,C§ÓáÌ™3‚í-Z´0Ë›?©òjÖ¬vïÞ oooÉX®”/ÑÀR+µk×mg@dQQQ¢í'N„J¥R(ª¨¼½½#{% ,,LôL ² Ñ nݺ”‘ò233±~ýzÁvWWW¼ùæ› fDY³fÍ Óéd­$_¼x†E€ÂD €5jXdPGGGÑGŒîܹc‘q‰*³… âÑ£G‚íC† AõêṎ*º¦M›B«ÕUð)0å¨sssÝÜÜ,6°X ör"2^aa!,X ÷þ‘%°°^êüü|ÁFK­€“““`[QQ‘ÅÆ%ªŒ6mÚ$º¼„–-[*˜U&M›6…N§“õfÉ .@£ÑˆQOæ!Z˜ó-€O[`@d^Rþñ಴&Mš@«Õ²°"¢€%w‹0Ä€È|.\¸€ØØXÁö  wïÞ fD••1E@rr2‚ƒƒYXh öÚ^S‰Mò|‘ùÌŸ?_ôïÔ¨Q£`oo¯`FT™5iÒ»wï–uÚdRR‚‚‚XXˆh`Ibÿ q€È<òòòð믿 ¶W©R£FR.!"ü}¼N§C“&M$cy;ÀrD €ÂÂB‹ ,VXrå¨2Y¹r%ÄŽûîÝ»·Åü"Ó¨Q#ÄÅÅÉ:1099!!!{w Ot¦½{÷®Å.((l«Y³¦ÅÆ%ªLæÏŸ/ÚÎÍTž¼½½¡Õje‰‰‰Ðh4,ÌH-¶/;;Ûbçää¶ÕªUËbãU'NœÀÁƒÛ›7oŽ   å"2ÀÛÛ ²^=Ÿ˜˜È=f¤®Zµª`£Ø$m ½^/ú:RD¦ûé§ŸDÛÇÏsÿÉ*4jÔZ­VV””„àà`\»vMÌ*6µ£££`£¥ª¬ˆî/pww·È¸D•ENNV¬X!Ø^­Z5 2DÁŒˆÄyyy!>>^öÓ¡¡¡¸q㆙U\¢@bb¢E•ªÜ¸@dš%K–àÁƒ‚탶èQßDeaÌÓçÎCpp0‹¨Åv'%%YdÐôôtÑv©·‘0½^èèhÑnþ#kU|;@n‚›7o*YÅ£öññl¼xñ¢E^Ì“––&Ú.–‰Óét8þ¼`{çÎѦM3"2NñJ€œ=gÏžePF¢@AA8`öASRRÛªT©Â€È<÷Ÿ*///ÙÏœ9ƒܺuKÌ*µ¯¯¯h@\\œÙ=vì˜`[Ó¦M!öd »víÖ¯_/Ø^·n]ôë×OÁŒˆÊÎËË :Íš5“Œe`<õK/½$:áÆÇÇ›}Ð#G޶µhÑÂìãU ,À£GÛG-ú"."kãéé‰Ý»w£yóæ’±§OŸF``  ’Iíââ‚_|Q0ààÁƒÈÍÍ5Û€—/_­Ðäü&Qi………X°``;Ïý'[U¯^=ìܹSÖíáÄÄD„‡‡s%@5„†† † &zÁ÷ßoÔñÀ ,=š(ë¼g"z’œoÿÜüG•A½zõ Õje&Ç"ào%›‹]¼x-Z´=N´FØ»w¯ä±½ èÞ½;òòòcìííqöìY¾ˆÈH999ðôô\]sttÄÕ«W¹é‰*•ëׯ#$$çΓŒíСbbbàîî®@fÖGýôÍš5øqãD/ÊÉÉAPP:$“€ž={ŠNþ0qâDNþDe°téRÑ[k}úôáäO•N½zõ/ë½2G­Ô+¥V ++ ~~~’'(9::bÆŒ˜0aÂËŒ³gÏÆ|€ÂÂBÑëëÖ­‹¤¤$¸¹¹•1}¢ÊI¯×£eË–8þ¼`̶mÛЭ[7³"²7nÜ@HHΞ=+ûÜsÏ!&&5jÔP 3ëa°€?ÿüSôp êÞ½;&Mš;;;Ìœ9Sò¼ÿb‹/ÆðáÃe'KDÓjµl¯_¿>ÒÓÓùd UjÆÏ?ÿDd‡ÂĉË; "«ááḸ8YEÀн{wÜ¿_ÌÊdNNNX½z5æÌ™#zR YŸþ³gÏ.ï4ˆ¬FqЦMÉØ}ûö!""¹¹¹ dV>D7röìY >GޱTNDd&vvvظq#^yå•òN…Èjܾ}aaa8qâ„dl—.]°e˸¸¸(™²d­üSË–-±ÿ~L›6«DVîñãÇ0`öíÛWÞ©YÚµkC«Õâù矗Œ->Ѷ"®½@DåïÁƒèÑ£t:¬øZµja×®]²NG#ª,rrr.zªm±ÐÐPlܸNNN d¦ D6êÁƒˆˆˆ@BB‚¬ø† bÏž=ðöö¶lbD6äîÝ»}«f±°°0lܸŽŽŽ dfyFß "ëàââ‚-[¶È~L7##aaa¸qㆅ3#²nnnرc^zé%ÉØ˜˜ôêÕ ùùù dfy,ˆl˜±EÀÅ‹Žœœ gFd;ÜÜܰ}ûvtìØQ2vçÎèÓ§ È̲XÙ8lܸQÖ?^pòäIôéÓGòMD•IqðòË/KÆnß¾¯¿þºÍ¶Å€¨puuELL eÅëtº µ”Id®®®Ø¹s'‚‚‚$c7lØ`óE ¢ ÂÅÅ[·n•]ÄÄÄà7Þ°éÀˆÌÍÅÅ›7o†F£‘ŒýóÏ?ñÆo °°PÌÌQbl°aà 4?¶pfD¶£¸{åv±uëÖaàÀ6Y° ª`\\\°iÓ&Y»š`Íš59r$ŠŠŠ,œ‘ípvvƦM›d½wÍš54hÍ,ˆ* WWWÙ6À’%KðöÛo[8+"ÛâììŒ7"44T2võêÕxóÍ7mj5Qel0wî\¼÷Þ{Ίȶ8;;cóæÍèÑ£‡dìÊ•+mj5QæêêŠíÛ·ãÅ_”?{öl|ùå—ΊȶT­Z«V­Bxx¸dì’%K0zôh›(XUpÅ'É->ûì3L:ÕÂYÙ'''lܸ={ö”Œýå—_0jÔ(«/XUÆŸ|ò ¦M›fᬈl‹ƒƒV¯^^½zIÆ.Z´cÆŒ5¿n‡Q%alðÑGaúôéΊȶ888`ÕªUèÝ»·dìÂ… ­º`@T‰[|øá‡øé§Ÿ,œ‘mqppÀÊ•+ѧOÉØ XíæZD•Œ1E€^¯ÇÛo¿¨¨(2#²ÅE@ß¾}%cçÌ™c•E ¢JÈØ"`âĉ˜?¾™Ù{{{¬Zµ ƒ ’Œ={6&Mš¤@Vò± ª¤Š‹€^xA2V¯×cüøñøùçŸÈŒÈvØÙÙaéÒ¥ø@¬äQé­uw)âîÝ»èÚµ+:$«V«ñ믿bÈ! dFd;?~ŒáÇcÙ²e’±|ðUl°å Q%çææ†;wÊZ (**ˆ#°|ùr2#²vvv²‹ã3fXÅ[\ "Æ­ØÙÙá·ß~ÃÀÈŒÈv<~ü#GŽÄ’%K$c¿úê+|úé§ de "*‘°°0=zT2ÖÞÞ+V¬µ š¨21¦˜6m¦L™¢@V¥ñ•pwwGll¬¬Û=Âo¼ 6(‘í°³³ÃâÅ‹1nÜ8ÉØ?ü3fÌP «Ò¸@D¥äää k×®8|ø°dlññ¨rÎH'ªLŠ¡•:GC¥Raîܹ² sb@Degg#44ÇŽ“Œ­Zµ*Ö¯_nݺ)‘í(**Âøñã-§V«ñË/¿`øðáÊ$Þ "îî‹ÃóÏ?/[PP€Þ½{cëÖ­ dFd;Ôj5æÍ›‡wÞyG4®¨¨ÿú׿}†+D$ʘÛNNNؼy3‚ƒƒÈŒÈvèõzLš4 ³fͳ³³ÃòåËñúë¯[<'®‘¨5j`çβVòòòðꫯB«Õ*‘íP©Tøá‡ðŸÿüG4îñãÇ2d6mÚdùœ¸@Dr³àì쌭[·¢K—. dFd[¾ûî;|øá‡¢1X¿~=ºwïn±k¶qYQ™S3lÎÀˆ*Š `ìØ±¢E€‡‡t:Z´ha–1Y‘Iîܹƒœç •+cvûgdd@£ÑàâÅ‹ dFd[T*•Á3ôz=ÆŽ‹mÛ¶=ñ9 "*w,ˆÌãÊ•+?/,,Ddd$²³³K>c@DVÁ˜"àêÕ«Ðh4¸té’™Ù///Á¶ëׯ㫯¾*ù5÷‘U¹qã4 Ο?/ëåå­V‹¦M›*‘õ»zõ*5j¡©½ZµjHKKCÍš5¹@DÖ¥nݺÐét²ž¸rå ‚‚‚¸@ôÿ<==ѵkWÁöÜÜ\,_¾o‘ªS§bccѼysÉØâÛ))) dFdýž~ ài«W¯À[DdÅŠ_ $çv@£F ÕjѤI2#²^EEEø¿öî4*Š+íø¿ÙÜQv…„fPBT$“Önp1&9†Åˆ9.LŽrŒÑ cÔ—ÍŒ1pEÉè(AZhÅŒJ\2¸L‚E—A” K¿|É2¡»ª¡)úÿû멪GŽ'Ïý·î}æ™gPTTÔàu+++}úÆ^¿~ …BçÿôˆÌ………ÂÂÂt^¯©©Á™3gØ‘ic@d¸àà`½×/_¾Ì€ˆLŸ«««è& ¸¸ …Bç iDæ@h·Ìââb6DÔ:¸ºº"''GÔ>ÅÅÅ2d’Ùêܹ³Þë?üð"j=œqôèQÇŸþÒõëב2K þ÷Kµµµlˆ¨uquuűcÇD|÷Ýw2d×Ù¹wïžÞë]»ve@D­³³3ÔjµA#ÅÅÅdFd„þ½{xx° ¢ÖÉÍÍ ÙÙÙ¢š€¢¢"( \¿~]‚̈ZÞW_}¥÷ú AƒØQëåææ&z: ¨¨/¿ü2§È,deeé¼Ö¥K° ¢Ö­~:ÀÇÇG0öúõë Õyd*Q[PZZŠ3gÎè¼®P(`iiÉ€ˆZ?777h4ÁoŸàÚµkP(l¨ÍÚºu+êêêt^ À³ˆ¨ ¹yó& ¾ùæÁXoooh4½ç§µ6555ðññÑ9Õeccƒ7nÀÉɉ#DÔv¸»»‹ (,,äHµ9ÉÉÉz×¹„‡‡ÃÉÉ Gˆ¨ 2äAOOOh4ôîÝ[‚̈šOUUž}öY½M­Z­þi €#DÔæ¸¸¸@­Vã™gžŒ-..Fhh(?¤VoÍš5z‹¿——”JåOÿÍ€ˆÚ$wwwäææÂ××W0öÚµkËåüDZ­ââb|ðÁzcâââ`añsÙçµi%%%P(øöÛoc{÷î FOOO 2#2ž1cÆàðáÃ:¯{yyáÊ•+°¶¶þéÏ8@Dmš‡‡4¨é€¢¢"Èårž"H­ÊgŸ}¦·øÀûï¿ÿ«âp€ˆÌ„!#½zõBNNGÈä¢ÿþ¨¨¨Ðãç燋/þæ„@Ž‘Y0d$à»ï¾ÃСCy”0™´êêjLš4Ioñ€>ú¨ÁãÙ‘Ùððð½0°þ(áÂÂB 2#2Ü‚ pêÔ)½1‘‘‘5jTƒ×8@DfÇ}zôèFooo 2#çÀxå•W ¯„;88àòåË?müó¿8@Df§~Ÿ1;Þ¸qJ¥’Ÿ’ɸtéÞ|óM½Åxº/€®âp€ˆÌ˜!gôìÙ^^^dFÔ°;wî ((H°!5j¾øâ Èd21lˆÈ¬Ý¾}!!!¸té’`,§¨%ýøã A^^žÞ8œ;wÝ»w×Ç)"2kõÓ>>>‚±7nÜ€B¡àÂ@’\mm-¢¢¢‹¿µµ5RSS‹?À€ˆnnn8~ü8üüücoܸ¡C‡ŠÚO€È´Z-f̘}ûö Æ®Zµ ƒõ\Ný¿[·nA©TâêÕ«‚±†ì+@ÔXZ­sçÎ…J¥Œ}ýõ×±gϽóþ¿Ä€ˆèÊÊÊ T*E­ pqqAvv¶¨}ˆ eHñ4h²³³aoo/úùlˆˆþGii) …¨‘wwwh4QŸ‰U[[‹iÓ¦!))I0Ö××'Nœ€ƒƒƒAï`@DÔ€²²2„„„   @0ÖÅÅYYY¢Ö ©¨¨@TTÒÒÒcÝÜÜ——רs+ØéPZZ ¥R‰+W®ƺ¹¹A£Ñˆúš€H—ÂÂB„‡‡‹j<»u놬¬,ôëׯQïâWDD:¸ºº"''}ûöŒ½uëär¹¨µD ùüóÏ1`ÀQÅßÉÉ ÙÙÙ.þGˆˆrv€««+4 ž{î9 2£¶ ¼¼±±±HMMïî¬¬&ÿã‘Ñ#¥¥¥2dˆ¨ßâˆ<ÑÅßÓÓ999Fi0Ù‰àää„£GŠú䯬¬ Æ µv€ÌSii)^}õUŒ7%%%¢î ÄÉ“'¶÷""‘\\\ ÑhD­ö¯ÿ”PÌ´™ššlܸ}ûöµ³_½ˆˆäææÂÝÝÝh¹° "2€³³34 žþyÁØÛ·ocèСø÷¿ÿ-AfdêŽ?ŽÀÀ@Ìš5 ååå¢î‘ÉdX²d vîÜ ;;;£æÃE€DD`ÈŽÎÎÎÈÎÎæ>fª¤¤qqqسg )¹HNNFXXX³äÅ"¢F0d$ ¬¬ …‚#f¦ºº*• ~~~ؽ{·AÅ_©TâÂ… ÍVü6DDV¿0PÌ×wîÜAhh(¿0555X»v->|Ølï8xð üüü0gÎüðâïk×®>üðC¨Õjxxx4[~"¢&©ÞÓÔOp$ åTTT`êÔ©˜7oñÕW_õù¹¹¹Ëå7nœÁGF4ùùùˆ‹‹ƒ…Eó—g6DDMT¿+›˜é€;wî@©TââÅ‹dFõ>|ˆ5kÖÀÇÇ[·nðtÛÝÁƒ#>>MzþÙ³g1räHÈåräææt¯½½=Ö¬Yƒ“'OŠj$…‹‰ˆŒäÎ; õ~÷îÝ¡V«Ñ¿ 23OuuuÈÉÉARRöîÝ‹ÊÊJ±˜={6fÍšeЩzxï½÷°ÿ~ƒæøë………aýúõðòò2øÞ¦b@DdDwïÞEHH¾þúkÁX¨Õj¼ð df>nß¾M›6!99ÅÅÅÝÛ±cG¼õÖ[˜4iuÆ]¸p«W¯FJJ êêê ÎÑÛÛ*• cÆŒ1ø^ca@Ddd†4]»vEff&^|ñE 2kÛ °víZìܹUUUM~ž¯¯/"""TVVB­VãÓO?ENNN£žÙ¥KÄÇÇcöìÙ°µµmrŽMÁ€ˆ¨ܽ{¡¡¡¢æú;wîŒ#GŽ`РAdÖö\¾|+V¬ÀÎ;õÛ¸¬­­1eÊ,[¶ NNN-6DDÍÆÐ& ##AAAdÖ6bÉ’%†—‚ bbb^½zµt:¿Â€ˆ¨ÒtêÔ ééé– ³Öëûï¿ÇòåË¡R©Œ2Ôßìììƒ?ÿùÏèÙ³gK§Ó 6DDÍìÞ½{6lΟ?/Û±cG>|¿ÿýï%Ȭu©««Cbb"-Z„²²²–N§Axûí·1}úttëÖ­¥ÓÑ‹ ‘îß¿áÇ‹Úx¦C‡øâ‹/ —Ë%Ȭu¸xñ"bccqêÔ©FÝoii‰   „……áÅ_DïÞ½áììŒ'OžàþýûX±bõl;;;Œ?QQQ1b¬¬¬õ©± "’Hyy9†޳gÏ Æ¶o߇ÂСC›?1öèÑ#$$$`ݺu¨©©1øþçž{o¿ý6"""àèè¨3îæÍ›¢·Þµ°°@ÿþý¡T*¡T*!—ËѾ}{ƒskilˆˆ$ôàÁŒ1§OŸŒµ··ÇÁƒ¡T*%ÈÌôäææ"&&×®]3øÞ1cÆàwÞAhh(d2™`|UU•àgy>>>xï½÷0zôhƒ6 2Ulˆˆ$öðáCŒ9_~ù¥`¬8€aÆI™i¨¬¬Ä»ï¾ •Jeðêþ#F`éÒ¥8p A÷•”” G:¯ûûûãĉèØ±£AÏ5e< €ˆHbõßý‹Yí_YY‰ððp9rD‚ÌZ^~~>°nÝ:ƒŠpp0rss‘‘‘apñžîì§ÏâÅ‹ÛTñصˆN:!33 …B0¶²²ãÆCZZ𙵠­V •J…àà`\½zUô}®®®øä“O››Û¤/'222ô^÷÷÷oô³M§ˆˆZPEEÆŽ‹cÇŽ ƶk×{÷îmÑýã›CYY&OžlÐ(‡ æÌ™ƒE‹5ù7s­V ooo5xÝÒÒ=B»víšôSÃ"¢Ô¡C>|!!!‚±UUU˜0aöïß/AfÒ8qâ *þýúõ×_~‰U«VeX>//Ogñž~IÐÖŠ?À€ˆ¨ÅÙÛÛ#--MTðäÉLœ8±M4*• J¥¥¥¥¢âmmm±råJœ={FËcûöíz¯¿ôÒKF{—)ᑉ¨¬¬Äøñã‘™™)kmm””¼úê«df\?ÆÔ©S‘’’"úž   $%%¡OŸ>FÍåÑ£GðððÀƒtÆdeeµÉO19@Dd"ê?ù9r¤`luu5"""ðùçŸK™ñܼyr¹\tñ·°°ÀÂ… ‘››kôâÛ¶mÓ[üÝÝÝÛìfLlˆˆLˆ­­-öïß/j¡_uu5"##±{÷n 2kºüü| 8ùùù¢âÝÝÝqôèQ,_¾¼Y¶×ÕjµØ°aƒÞ˜ØØXXX´ÍRÙ6ÿVDD­Xýjÿ°°0ÁØššDGGc×®]dÖx€\.Ç­[·DÅ;çÏŸõ™dcíÛ·—/_ÖyÝÎα±±Íöþ–Æ€ˆÈµk×ÿøÇ?0~üxÁØÚÚZ¼ù曂‹ÙZJrr2^{í5<~üX0Ö HKKC÷îÝ›-§ÚÚZ,^¼XoLttt³æÐÒ¸ˆÈ„ÕÏõïÝ»W0ÖÒÒ[¶lÁäÉ“%ÈLœ5kÖ ..bJMçα}ûvQ#MµmÛ6½?'+++\¹rÞÞÞÍžKKá‘ ³¶¶Æž={%[[[‹)S¦àã?– 3ak×®ÅüùóEäååIRü«««±téR½1QQQmºølˆˆLž¥¥%’““ñÆoÆjµZÌš5 ûÛß$ÈL·µk×bÞ¼y¢bGŒ3gÎÀÏϯ™³zê³Ï>Caa¡Îë–––X¸p¡$¹´$6DD­€••vìØ!j$@«Õâü#Ö­['Af¿µiÓ&ÌŸ?_TìŒ3pèÐ!têÔ©™³zª¼¼ zcbbbàãã#I>-‰ Q+aii‰­[·Ššã×jµøÓŸþ„eË–IÙÏŽ9‚Y³f ûËd2,Y²›6mj–OütY¸p!ÊÊÊt^ïСƒä?³–"ÝOˆˆšÌÒÒ‰‰‰°°°@RR’`üâÅ‹ñèÑ#¬\¹²Ùs»té&Nœˆšš½q¶¶¶HJJ5¥aLgΜÁæÍ›õÆ,\¸®®®eÔ²øQ+TWW‡éÓ§cË–-¢â.\ˆåË—7[>ßÿ=^xá½sëÀχ½üòËÍ–KCjjj0pà@œ;wNgŒ§§'._¾ ;;; 3k9œ "j…,,,°yófLŸ>]Tü|€¸¸¸fËçøƒÉظq£Þâ+W®4›âp€ˆ¨UÓjµ˜9s&þþ÷¿‹ŠŸ={6Ö¯_™Lf´„¾©€öíÛãðáÃËåF{¯XW®\A`` ÞˆŒ“'OõçbêØµrZ­ï¼óŽà¾öõbccññÇeû{÷î¡OŸ>¸ÿ¾Î™L†´´4Œ;¶Éï3TUU‚‚‚pþüy12™ §N Aƒ$̬åq €ˆ¨•“ÉdP©T¢¿»ß´i¦M›†ººº&¿{Á‚z‹?ÌŸ?¿EŠ?ÄÇÇë-þ0yòd³+þGˆˆÚ”E‹‰^ìäädXZZ6ê]ùùù0`€ÞOþŒcÇŽÁÚÚºQïhŠŒŒ Œ=Zo~ÎÎÎ(((@·nÝ$ÌÌ4p€ˆ¨ ùË_þ"ú;ö;v 22ÕÕÕz×û￯·¸ÚÚÚbÇŽ-Rüoݺ…˜˜ÁýT*•Y€ Q›³hÑ"¬^½ZTljj*&Nœˆ'OžôŽÓ§OãСCzcæÎ ///ƒžk •••׻ᄅ…aâĉeez8@DÔFmÚ´ 3gÎ5×?jÔ(ìÛ·¶¶¶¢žýÆo`Ïž=:¯;;;ã?ÿùd[üÖÓjµˆŠŠBJJŠÞ8GGG\¼x...efz8@DÔFÅÆÆâ“O>µÚ?==£FBEE…`ìÝ»w±ÿ~½1+V¬¼ø@BB‚`ñždÎÅ`@DÔ¦M:‰‰‰¢úåää <<\° زe ªªªt^÷õõu^±íÞ½[ð˜_àic4nÜ8 22mœ "2©©©ˆŽŽµàoÀ€HOOopqœV«…¾ýö[÷'''KÞ9rááázÀÉ“'ÍjÇ?]Ø™‰}ûö!""BÔ‚¿~ýú!33NNN¿úsµZáÇë¼ÏÝÝEEE’®üÏÌÌDxx8~üñG½qÎÎÎ8{ö,<<<$ÊÌ´q €ˆÈLL˜0AôB¿ .@.—ãÆ¿úóO?ýTï}QQQ’FƒW^yE°ø[[[#5ÙÍ¢€5IDAT5•Åÿ8@DdfÔj5ƯwoüzžžžP«ÕxöÙgqóæMxyyéA¸xñ"~÷»ß3]Ž?ŽÑ£GãÑ£Gzãd2#I^­GˆˆḬ̀aÑ‘Ž; Æ#((999Xµj•Þâïéé)Yñÿç?ÿ‰‘#G X¶l‹8@Dd¦òòò0zôh<|øP0ÖÆÆ2™Lï"»iÓ¦aóæÍÆL±AëׯǼyóDío+ú¤DsÃ""3 µZ®]» Æ>yòDp…ýK/½d¬ÔTWW‡9sæ`îܹ¢Šÿ¤I“°qãÆfÍ©5c@DdÆ €ììl8::6ùY~~~FȨa÷ïßGxx8T*•¨øÈÈH$%%5ú #sÀ)""BAABCCqûöíF?ãÁƒèܹ³³z*77‘‘‘())íÛ·³ø à¡oß¾ÈË˃··w£î·²²2úÖ¿Z­*• !!!¢‹ÿ”)S°mÛ6Ø wïÞÈÉÉAŸ>} ¾×ÎÎ2™Ìh¹`èС˜3gŽèãŠ/^ŒÄÄDXYY-¶ŒSDDô+wïÞŨQ£ŸŸ/úžú/šº PEE R©D~kkklذ3fÌhÒ»Í GˆˆèW‘!C†ˆ¾G«Õ¢¨¨¨ÑïÔjµØ½{7úôéƒ>úHtñwtt„Z­fño6DDô:uBzz:&L˜ úžôôtƒßSSSƒ]»vÁß߸yó¦è{pæÌƒú§ˆˆH'­V‹„„,]ºBåÂÉÉ _ýõojÈ7ß|ƒ­[·"99Ù ¢Œ«W¯6*nݺaË–-oÔýô36DD$ŠV«Ett4víÚ%úQÇ‹ñÚk¯aÆ pqq1ÊóÌ""íÁƒðõõmÒ†A†rwwÇÆ1~üxÉÞi¸ˆˆDëÒ¥ þú׿Jò.;;;,X°—.]bñolˆˆÈ ¯¿þ:æÏŸßlÏ·¶¶ÆäÉ“qõêU¬\¹Òè; ÒSÜ.‰ˆˆ öá‡B&“aõêÕF{¦Þzë-ÌŸ?½zõ2Ús©a\@DD¶sçNÌž=ÿýïýŒçŸS§NŤI“ààà`ÄìH6DDÔ$wîÜÁºu뜜,jq ……†±cÇ" @‚,é± ""£¨®®ÆéÓ§qöìY\¹råå娩©½½=ѳgO ;vlétÍÞÿ"Á‘ò‰=WIEND®B`‚fluids-1.0.22/docs/fittings/diffuser_conical.png0000644000175000017500000002675114302004506021201 0ustar nileshnilesh‰PNG  IHDRÌÄJQ°sBIT|dˆ IDATxœíÝyt[å>ðG–dËKlËv¼È¶dy!4q'dßpÈÖRH À“ÎÐR˜ÓN¦Óí´¥-K;=sÒ’Ж2ÃÐÓr 9%ûds8 KBˆˆ±XNìxßd[¶~ä§;’-ÙòÕ½zu¯ŸÏ9>¹ºÚ¾Šå{Ÿû¾ï}¯ÁëõzADDS‚ÇãAcc#êë륟††444H·ûûûE—I~Ìf3RRRd=×jµ]‡´´´°Þ/%%f³‹‰‰‰0›ÍHOOGFF222™™‰™3g¢¸¸† ""ýèëëC]]]аP__—Ë…ááaÑe’UTTÀ$º"" _ss³Æˆk×®‰.‘š6mL¦ðw퉉‰°X,ëRSSa4¥Ûƒéé逄„$%%Ájµ")) YYY(((€ÓéÄ’%K*ˆˆb…¯k"XXð­S²kÂb± ''™™™ÈÌÌ”š²}ÍÚ)))HOO—š½ÓÓÓ‘€äää€×½òñí€ÔtâÄ ,^¼P]]… ªú~4>vEÉÀÀQ[[ —Ë…¦¦&ÔÖÖJ? ðx<¿O||<233a³Ù——òßÜÜ\ÄÅÅ)ðÉÄÙ°aöîÝ+-ïÞ½[pESC‘B¢Ñ5‘••…ÂÂBé'''………ÈÎΖnggg+ðib_UUV­Z°îÈ‘#X¹r¥ Šˆ¡‚ˆ(Lííí- þ­ Ÿ|ò ººº"z}ÿ†ââbK- ÅÅÅ(++CjjªBŸFûÖ¯_}ûöY·gÏAC¢Ó5aµZBÂèÐàp8‚ŽM ±>üðCTTT Ø.ì½÷ÞCEE…€ªˆ5‰hJhii 芨««“N·T¢kÂb±Àn·Ãn·£°°v»‡Cê¦p8cFÙ“|¿ýíoƒ øýïçŸ>ÊÀPAD:0ú¬ ÿ° ÔYééép8°Ûí(**’–rrrú4Žªª*Y÷‘º*ˆ(æù&tòŸÌÉ?@¸\®ˆ»&òòò‚‚xp8ËcæÎ‹ššš1y™L&Ì›7OPUÄ1D$\KKKаà[iׄÙlF~~¾ŠŠŠƒÃá@BB‚BŸ†¢åÒ¥Kp8R7ˆÁ`À¥K—ŸŸ/¸²©‹¡‚ˆT§öY ÈÏÏ3ðÑ÷c·Û'5Ë iGII jkkeee¸pá‚àŠ¦6þ•QDFwMøZ”ìšÈÈÈÚ%áke˜>}ºBŸ†´fæÌ™R¨¸ñÆWC D4®ööö §XúÖ}öÙg!Gá‡Ëjµ=Ų¸¸¥¥¥!¯¦H”••%-3\ŠÇPA4…y<¸\.444à³Ï> hmð­SâZÓ§OGii)JKK¥ù|- v»ñññ |šŠü/íê2ß= D:ÖßßòÂT¾Ë`GÒ5‡ÜÜ\8NØívÃét¢¸¸ÿøÿˆúúzì߿˖-SðSýŸÌÌLi9##C`%0TišÚ]ñññ(((:ø1//N§3äU(ÛÚÚÐßß;î¸ÄÌ™3e×AJJJŠ´ÌÓ~Åc¨ ŠajŸ5a±X‚†…H§@KK €ëÙZ¿~=>Œ’’’ˆê%Í–Rž,C‘ ¾®‰`³?644 ±±Q‘ üçc=dzzºBŸ&ÐåË—ZHqË-·àÈ‘#°Ûíª¼'MM‰‰‰Ò2§A¡‚H%×®]÷Z¾#y¹Ìf3 ‚N-zB§Ë—/YW__õë×£ªªŠ£ôI1þA‚¡B<† "üÏš5}t___Dï‘’’2f>ß¿EEEÈËËC\\œBŸHYW¯^ ºþüùóØ´iŽ9ÂɨH ±…ÕDAøwM›>Z‰®‰ììì€Vÿ»Ý0ª]kš››CÞwâÄ ìܹ·ß~{+"½b¨ˆ- 4%]»v-èì¾Û‘vM˜L&Øl¶ ×™ðuUø÷ëÙlº~ëÖ­xøá‡9/)Æÿ»ê{GÑÃPAº3<< —Ë5&,øˆH»&¥°0úª–v»ùùùSºyéÒ¥°Ùlp¹\ësrr(HQþg'É9S‰”5u·z¤Y£»&F·6(Ñ5‘••4,ø~²³³ú4ú4gÎ466â“O>Á¿øEé"OÛ·oÇ–-[WGzâ?®(VÇM% sÆëšhhh·¿>¾® ÿ°0ºk"Ô„N49eeeøãÿˆÅ‹ÃëõbÏž=èèèPíTVšzØR[*(ª¢Ñ5‘””4¦eÁn·KSIÛl¶)Ý5m .ÄæÍ›±cÇ à7ÞÀW¾òÑe‘N°¥"¶pËJŠ@ccã˜Ù}?—.]ÂÐÐPDïaµZCNm³Ùàt:a0úD¤„o|ãرcàÕW_e¨ Åø ¶TˆÇPA“2ѵ&êêê022Ñ{ø_{ô´Ñeeeœß_ƒÖ®]‹ÒÒR|úé§Ø¿?š››9.…ÁîØ"…Š‘‘|úé§8wîZ[[ÑÚÚŠ¶¶6´··Ãëõ¢«« ÃÃÃèé鑎4=º»»ƒ¾poo/Ǭ÷z½èèè˜t¡ã½iGrrrÈ l67 :d0ðÀàG?ú<Þxã üÃ?üƒè²HØý[ Þÿ?Aÿœ9spæÌÑõÆåääŒcðŸ§Aë:Qd\. 122‚[n¹û÷ï]éÀ™3g0gÎi¹¼¼\pES›ÔRQ]]cÇŽ¡¶¶—/_Ƶk×ÐÓÓƒžž©…À¿•Ün7úûû¥ÛÃÃÓºjâÀÀ@ăòHœ5kÖà¾ûî hiàŒvŠÍfÃòåËQUU…#GŽð,RÇTÄ)T$&&bíÚµ"kÑ¥“'ObÑ¢Eðz½x÷Ýw±xñbÑ%)Â`0`õêÕxðÁE—Br÷Ýw£ªª CCCؽ{7î½÷^Ñ%‘Æ1TÄv@©ìÑG•.ýØc ®FY<Â&ëî»ï–6üo½õ–àjHüƒÇTˆÇß€Šªªª°wï^éöž={PUU%°"e1TÐdåææbÅŠ€]»vaxxXpE¤u ±…¿k™xâ‰'T¢þ“wß}7 µµï¼óŽàjHëØý[¸WPÉÑ£GqðàÁ1ëÿ÷ÿo¿ý¶€Š”Ç– ’ãÎ;ï”vì¡H±¥"¶ð7 ’çŸ^Ö}ZÂPAräååI–ÿö·¿ ®†´Ž-±…¡B%ÍÍÍA¯/a2™ÐÒÒ" "åñ¨€äÚ´ià£>B]]ØbHÓØR[øPÉþýûqõêÕ€«]&''£¹¹{öìX™rØRArmÞ¼YZfE‚-±…¡BEXµj•t{õêÕ°Z­+RCÉ5cÆ Üxãp†ÑdqšîØÂ߀ʜN§´\RR"°åñ˜"ák­8|ø0<àjH«ü['‚u9Stq¯ 2»Ý.- ¬Dyl© HÜ~ûí€ÎÎNœûì3Á•‰§Õý§ª¡âĉ8|ø0úúú`±Xpï½÷Ü_UU…ÖÖV,\¸=ôš¥ãßE ·0»?HIv»[*hrü·«zÚÆjuÿ©ê^áâÅ‹Òò<€œœév[[víÚ…¹sçâÍ7ß„ÅbQ³”˜ §/< ¿ÏCbùBÅ¥K—044$¸"±´ºÿT5T´´´HË«W¯¸ï±ÇôiÓðÖ[o!--MÍ2„ÒkŠô÷yH,‡ÃFSS“àjˆÄÒêþSÕP1<<,-IËgΜÁþçbûöíÈÏÏW³R»?HIÒòµk×VBZ¢×7­î?£*|gAx½^<òÈ#xê©§°råJ5ß>&èõ èïóXV«UúNù¥MEZÝF-Ttwwž}öYâŸþéŸÔ|똡篞?EŸÑhDjj*† "­î?£vŽã•+WPSSƒW_}ûöí‹ÖÛÆ½í„ÙýAJ³Z­èììd¨ °ém»Œ–öŸªîü¯ÊyéÒ%üË¿ü þøÇ?"11QÍ·)zþÂëù³‘V«ÇT“ÝÖÖÖbÏž=ؾ}»Ê•OÕP±qãÆI=~Ú´i17åh¤ØýA>¶TP$ô´MšÌþÓåráž{îÁ_ÿúWáWÃŽ©CÍŒŒ iô7:zô(ÒÒÒððË.E¢§?`Š ¾PÁšm±¸ ×<€o}ë[ãž]-1*²²²••%º E)ÕRQ[[‹®®®˜:Վݤ4ßQÖàà àJH+”:¸‰Åml¸æÌ™ƒ_|›6m¶mÛ„^Ol;É(7Ýt6lØ º E)õ…/))TVV*òzJ`K)ÍT=àJhª‰Åml¸ž~úiÑ%HbêP3++Kw“_ù‹d'üé§Ÿn¹å¥Ê‰C)Í÷ò¿îA(n·Ï>û,/^ŒiÓ¦ÁétâøƒtÿÓO?ÿþïÿV«TŠAzÛÆªÅív£¡¡CCCŠ¿vLµT¨íßÿýß±uëV¤¥¥á†nÀ 7Ü€²²2Ì;sçÎERR’âï鎷¡¡¿ÿýïñÌ3Ï ¸¸N§S¡Ê"ÇîRZ¸-õõõØ´iΟ?^x·Ýv¾ûÝïâ›ßü&¶lÙ‚—_~?üáQSS²I =ocÕrã7¢¾¾F£ùùù(..ÆìÙ³1wî\TTT`Ö¬YÒø¦IóNmmmÞ„„/€ ?F£Ñ[^^îýû¿ÿ{ï¶mÛ¼UUUÞžžžˆßwddDz‘‘‘°ŸwîÜ9ïæÍ›½qqqÒó|ðÁˆëQ ïD—A:óè£zxÓÓÓC>ÆãñxçÍ›çà}饗¤õ555^Þ¿üå/ÞøøxïÆ£P1‰¦×m¬ZÚÛÛCî}?f³Ù;gÎïý÷ßïýÍo~ã=}ú´wxx8¬×Ù–Š‘‘tvv†¼xxXšÓbppP:­¿¿n·===hmm…ËåÂùóç±wï^ Œûz}ô>úè#© Õd2¡¼¼Ë–-Ã’%K°téR”––*ø)Çòz½Øºu+NŸ>^x«V­Â·¿ým±×,ÇîRZ8-¯½ö>øàÌž=÷ß¿´¾  pß}÷€&GñSdÂÙ&ii+‡ÿþ¸~ŽŽtvvââÅ‹ø¯ÿú¯ _chh§OŸÆéÓ§ñòË/¸>õ÷’%K°lÙ2,]ºK–, :¸áÔ©SÞ3gÎàÊ•+èììDww·4 Uwww@þ;rèèè€×ë Z”Çã‘®¯'ÙÙÙX¶l6n܈[o½UÚÇ÷EõåãõzñÍo~gΜÁÁƒa2™ÐÚÚŠ¬¬, \¹rÙÙÙŠ|ŽH >|«V­] éÈã?Ž'žx‹ýýýAó¥/} ¯¿þ:žzê©€é‹/_¾ŒÂÂB@ii)Ο?Ï.º)BOÛØ;wâøñ㨫«CSSZ[[ÑÛÛ‹žži_<ÑAw4F¬^½wÝu¾úÕ¯J×™ŒF#ŒF#âââ`2™à»í›w<>>^ú F£&“I:ŠHHH€Ûíú†&“ ‰‰‰!7 ZÕÜÜŒ7ÞxÇǻヒ'Ÿ|RÚ3Ñ—Üß3Ï<ƒßüæ78qâ„tjïÔ 9sæÿ²Æ– RËxß­ãÇ.\°þäÉ“ÒòW¿úU C ÛXÿ}°Á`öÏþW-õÝg@³Zl6f̘¢¢¢€¿5“o¢Ö¸Ýn)°øZLF¯ëïïÇ¥K—PSSƒ×^{ ²Þ+11X¸p!-Z„… ¢¬¬lÒ¯ãõzCn,[[[ñ裢¢¢7Ýt“´þ•W^|á _óœ_|qqqxà&]‹*Hi###rVÀ‘‘¸\.×'Ëó÷ꫯJË+W®T©BŠ5á¸Mf[[[‹ï|ç;¨®®ÆÀÀ~ùË_tµ©iÆ M­ÐÛÛ+Íó288ˆÎÎNtvv¢­­ Ÿ|ò þüç?ãwÞ™ÔkšL&Ì›7OêöX¶lYȉ¶bvLÅD,‹ÔÜÎ,œßùÎwàp8&|\||‡ŠŠ TTT`þüù¸é¦›Â>;R³¡b²ìv;’““°X,Ì;óçÏ—~fÏž-;@n¨ð}mÞ¼ðñÇãÖ[oE__222°téÒ1Ï©©©ºcgK)m¢– X´hŽ;†ææf×gÿÝßý¬V+^|ñElÞ¼Û¶mC{{;žy晨ÔM±o2ÛØòòr”——Š‹‹±uëÖ謒ÄÄD<ôÐCxùå—át:Q\\Œ’’Üx㨨¨ÀìÙ³¥v9¦L¨€þçFMM –.]ŠeË–aÁ‚òÏÅ•a¼í;²jmmÅ[o½…_þò—ضm6oÞŒM›6=rkkkºcg¨ ¥MÔRÏ=÷îºë.äççþð‡? //ûöíCAA|ðA<ýôÓ¸óÎ;£R3‰m,}:èsŒF£×h4ªR÷Dx«««…¼7é×÷¾÷=/¯Íf] iÄðð°jÛX·Ûí5k–÷ĉªÔ®GSª¥Bo˜)Úh4⥗^³~ß¾}!Ÿc±XØRAºN÷‘r¶±?ÿùϱxñâ€4>þåFQ¸#\SAºâ;E.’>]šZ”Þ®ú?~/¿ü2>øàU^_¯*T¦Ö¸>»ÈPÁ³?Hi¾yoüG¯E[KK îºë.TVVŽ9u™ÆÇ½‚†ÝsÏ=¸çž{„½?[*Hi¾©ôÕ¸¸éŸqÃÃøÿþûÑÓÓƒC‡á»ßý®ðÙ+µ„-*S³¥âÁTíµÃÁ– Rš¯¥"%%Ep%¤þÛX%tŒF#vîÜñëLUÜ+¨LÍP![*Hil© Hèy{« *óÿ’ëí ÏPAJ㘠š,½mWµŽ¡"Šôöåg¨ ¥ù®ÝÃPArèm«E *Sº¿/–pL)­½½••%¸"’ƒ{…(Ò[ŠÖ[H"ñ|¡"33Sp%¤zÛ®jC…Êôü…gK)-DÚÆ½‚Êô*ØRAJFww7¶TiCEé-`0T’:;;¥¿† ’CoÛX-b¨PO)% Ëå’–§OŸ.°Ò=ocµˆ¡Be<ûƒ(<õõõ®¯òóóWCZ¤·m¬q¯ 2=§hþ“’.]ºÈËËCBB‚àjH‹ô¶Õ"† • ‰.A5l© %544œN§àJHK$b ÷ *––GFFV¢<¶T’|¡Âáp®„´ŠC<† •ù·Tx<•(¡‚”ôÑG`KMƒDla¨P™Ð[W»?H)555€™3g ®†ˆäâ^Aeþ¡‚-DÁ;wNºìùüùóWCZÂ–ŠØÂP¡2ÿÖ ½µT0TRNŸ> HIIAYY™àjˆH.† •ùÔd¨ îÃ?Ì›7Ýj$[-Äã_¯ÊØRA4±cÇŽnºé&Á•–1TˆÇP¡2=©à%)¡¿¿'Ož¬X±Bp5¤5zžµX‹¸WP™ž[**H ÕÕÕ„Á``¨ ˆ°¥B<îT¦çSJyT@J¨ªª̘1999‚«!­aˆ- *ã@M¢ñ9r°råJÁ•Ö1`ˆÇP¡²žži™c*ˆõööJ- )èˆÇ½‚ʺ»»¥åÁÁA•ÅžH“^UVV ®†´Ž-â1T¨¬³³SZnkkX‰òØRA‘Ú¹s'`Ö¬Y(((\ iƒDlá^AeÒrkk«ÀJ”ǦFŠÔîÝ»ëׯ\ é†x *»|ù²´ÜÜÜ,°å1TP$Î;‡ºº: $Ÿÿ`xÿeƒ¡Be/^”–ß{ï=•(݉7ß|`±X°jÕ*ÁÕVŒŒ]&1¸WPQkk«4²:„Ï>ûL`EÊbKEâ7Þp}ͤ¤$ÁÕV±¥"¶0T¨äŽ;î@^^úúú¤u(..†Á`À’%KV§ † ’Ëåráøñã€Ûn»Mp5¤el©ˆ- *o²«'Ÿ|2Š•¨ƒÝ$׎;¤Au  ÿÖ † ñ¸WPÉC=ò¾åË—ëb`CÉåëú˜?>œN§àjHËØR[¸WPɾð…3þìg?‹r5D±£££‡Ü~ûí‚«!­óz›µX‹*Tô‹_üb̺ÊÊJÝÌÈ– ’cÇŽR×àæÍ›WCZÇîØÂ½‚ŠV¬Xµk׬{üñÇÅ£Ô$9¶oßp:˜;w®àjHë*b C…Êyäiyýúõº9Ÿ‚ähooÇwß}·àjHüƒO)Ï$º¥tvvN˜R{zz&¼üx?ÜnwÈûÑÛÛ àúÅÂ<†‡‡ÑÕÕðüîîntuu¡¾¾^z®Îøða×Éñúë¯KÖ»óÎ;WCzÀP[¤PÑ×ׇ£GââÅ‹hllDKK zzzÐÛÛ+íDÛÛÛžÜÕÕðKìíí ëJœáìÜõHsSøÄÅÅaÛ¶m°Ûí(,,„ÝnGvv¶è²(Æùº>ìv;-Z$¸ÒvÄ)T,]º§OŸY iÈÈȾõ­o¬KLL„ÃáEEEÒíÂÂBÄÇÇ ª˜Dkii‘º>î¼óNv¡‘"ØR[¤PñÁ ¶¶gÏžE[[Z[[ÑÖÖ†®®.©Épp}}}€€fÿÑBµFŒ÷Ÿ¡¡!ôôôDò¹H€þþ~ÔÔÔ ¦¦&èýƒyyy㌌Œ(WMÑò—¿üE:åïK_ú’àjH/ØR[ ^^+vRÜn7úûûE—!Ìðð0šššP__úúz444üÛÔÔÑå‡SRRàp8B›Í“I7C¦”òòrœ={V«---0¢K"xï½÷°`Ái¹¢¢BpES·Î“d±X`±XD—!TVVfÏžô¾ÁÁA\»v MMM¨­­•~\.šššpþüùq[¡zzzpöìYœ={6äc¬V+Š‹‹Q\\Œ¼¼<Øl6évII ÒÓÓ#þŒ¤¬£GJ¿Ó5kÖ0PbØR[*HQñññ°Ùl°ÙlÒу?¯×‹+W®H­¾ÿ–ŽŽŽqߣ½½§N©S§‚ÞoµZQXó×” ”IDATX²Å#77—g¯DÙoû[iyôÜ-D‘à˜ŠØÂPAQåW‘——òlß©¸þAÃ?|LÔÅÒÞÞŽöööãããQPP0nðHLLTäóðþûïã•W^‘nß|óÍâŠ!Ýáµ?b CÅœÔÔTÌž={Ü.–K—.Ia£®®. |444Hƒ‰C=ß×-ÊôéÓ¥ ,xäææFü9õìÊ•+xúé§‘››‹gŸ}V:‚4(--\é‰ë[*Äc¨ ͉GII JJJ‚Þ¬‹etø˜¨‹¥¥¥---!»X, ìvû˜àá;uÖn·Oé±7ÕÕÕøÕ¯~ô>ÇÃÁ¶¤¶TÄþe“î„ÛŪ•£®®nÂ.·Û .àÂ… !“““2F‡ŽÜÜ\ÝÎÕªûhxx?øÁðÌ3ÏD¹"Ò+¶TÄžRJD¤],áHHHÆv ‡ÉÉÉ }¢èò?Í/˜ÆÆFØl¶(VDzµwï^lذAZ^·nàŠ¦6¶T1Q p}@¨ÿé²ÁN¡ÏÀÀ.^¼ˆ‹/†|ŒÅb 8evô)´v»=&»Æ;­÷Þ{ïe  ÅøÏ4Þu›(:bokD¤V« ,yDîßÅâ?I˜oÝ•+W&ìv»Ýã*5™L°Ùl-ùùù°ÛíÈÏÏG~~>rrr¢ÞÍ’––t}yy9žþù¨ÖBúæ$*Äc¨ RIjj*ÊËËQ^^ôþ`],þ§Ï†ÓÅâñx¤ç=z4ècâãã‘——‡‚‚H!Äf³!??………ÈË˃ÙlŽø3û¿çh‡»wï†ÕjUì}ˆ*b C‘ át±455 þácô•ƒƒ”æøÅ`0 77WjÝðÈÉÉÁôéÓ1}úô°>Ûè³krrr°oß>äçç‡õ|¢p1TĆ ¢æ;‹eñâÅAïÝÅ2:|„ÓÅ\? ·©© MMM8yòdÈÇ™L&dggcúôéÈËËCZZÒÒÒžžŽÔÔT˜L&twwãܹsÒs, víÚ…²²²ÉÿM€¡"¶0TiX8],—/_–†øðýLfCìñxàr¹àr¹ðᇆõœû￟y"Õtww]&1*ˆt,>>^:S$ÿ.–`á#œ.–ñüîw¿Ã+¯¼"Mæ›Ô÷ãp8——§Û9;H]mmmA—I † ¢)n¢.·Û —Ë5ætYßíúúú 'êììÄéӧǽKfffÀé²þ§ÐΘ1)))VÒŸÖÖVi™¡B<† ’¥«« ©©©¢Ë (°X,ã¶vøw±„š(l¢.–ÁÁAiLG¨©ÑóòòZ8|ó-gddDüYI{üƒÄµk×VBgÔ$™`·ÛE—AéDaáÐêDa§Ó‰ºº:@II >ýôS±Mq $ËÇŒ™3gŠ.ƒt¢»»{Âk±Dz±(“É$.[TT4fl/y¯= (**’®Óc0ÐÐЀ‚‚Á•M] $Ë©S§Æ½¶‘’‚u±Œž¥T‰Ó }—¼Ö½b·Û‘­À§!%ÜqÇxë­·044°Þl6ã¶ÛnÃk¯½&¨²©m$K¤Ó"šŒpÎb¹råJÐéÐ}Ëá â›è’÷‰‰‰A[8|ëòó󙔯7:P„ZGÑÖ ’¥ªª +W®]QØ”8‹%V«5è,ÅÅÅ(++ãg…ìܹ·ÞzkÐûvïÞ-]¹”¢‹¡‚d9tèn¾ùfÑe)fhh---!’^¸pA‘É•¬Vë˜A¤þáÃétrÎŽ0UVVâСCë–/_ò:8¤>† ’åÀX³fè2ˆ¢Ê×Åj¢0%æIHJJ ËáëZñu³Øl6F>ö9r«W¯Xwøða¬ZµJPEÄPA²ìÛ·ëÖ­]QL™¨‹¥¡¡'â÷ÝÚá[öÿwªÌRºnÝ:ìß¿°aÃìÞ½[pESj’,Jô=éÍD… {-–úúú°ÎbiooG{{;>þøãIJJBAAtÙ{ß¿6›MúÉÊÊ´iÓdÞXðÈ#H¡âá‡\ 1T, D“g6›át:át:C>F©.–¾¾>\¸p.\˜°¦ÌÌLdff"##Cú799IIIHOOGRR’’’––àúœ£ÃHZZâââ¤Û‹eÂy?Ün7úûûCÞßÓÓp6Ggg'ÐÓÓƒîîntuu|¾^x»ví´iÓžžƒÁ ýë[€¸¸¸q?ËhþŸÈèÿ‡P’““Ökj »?H–ÿùŸÿÁí·ß.º ¢)§§§õõõÒø¨¯¯‡ËåŠx¢0Ò¶øøx$''‡õX³Ù<æº:)))§Fû²„„)`&&&búôé(,,„ÓéÄ’%KØRAò°¥‚HŒ””Ìš5 ³fÍ zÿè.–`áC‰‰Â(v bpp0ìÇ777+ò¾ ,`¨ yx$D›Âéb¹zõjÐVަ¦&ÅÐ××§Èk‰æõzÑÑÑ!ºŒq¥¦¦Ž{VPbb",KÈûCuùZ&ŒF£4ÇŠÕjEbb"¬V+¬V+2331sæL1Tzô(~úÓŸâàÁƒë= °páB””” 77ÙÙÙHMMErr2, ÒÒÒ\?2JNNx¾ÙlÓ*lÝDä<‡þÏ›o¾ ³ÙŒuëÖ‰.E“¼^/:::&ý¼ŽŽx½Þ€u]]]X×ÝÝ Ç#=Çív£¯¯¸zõ*®^½Š‹/âĉÒãààÁƒ8xð 6n܈­[·bæÌ™Ò} $‡Á;úK4 ÕÕÕøéOн{÷Š.%&%''Oº9..N Zþ,Kб,iiiÒX‡””˜Íf$%%!!!AzNBB’’’`6›‘••…¬¬,Üpà (--°·ÛŒŒ ,Z´‡šðñ/^ÄùóçÑÚÚŠk×®appýýýp»Ý@__ÑÛÛ Çƒîîné¹íííc^Ï÷ØÑz{{eÍ¥ì=èúE¿þõ¯ã_ÿõ_‘ššŠ¿ýíoøâ¿(º,ÒvlÍÍÍxâ‰'(BHKK“Õ/j¬Åb³Îd2 žô-ûNùý¯ïñqqqa_iöÝwßE?6nÜÖãF#âââ`0¤÷UÏèS“ƒýÅÇÇ=…9)))¬zF³Z­/„ÇãÁóÏ?_ÿúרRAò°ûƒdËÎÎÆÎ;qìØ1üä'?Óõá“€eË–aÆŒp8°Z­HMMEjj*`2™0mÚ´€çøŽ¸}ŒFã˜.9­4y¾ßëêÕ«Ãz|QQŠŠŠT¬hjÝ¢âv»Ñßß°®³³###ÒmÿVöövttt ££8sæ Þ}÷]ôõõ}¿Ûn» ¿øÅ/P^^€5Ivb<ˆÇ{,`àWjj*Μ9»Ý.°2ŠÄÊ•+qêÔ)tttpG£q.\ÀŒ3Ö­X±ÿöoÿ†åË—¬çw°téÒh–G:ÀîRLee%Ž9‚`íÚµˆ‹‹Ãç?ÿy ëííÅñãDZxñb ¸á†¤‰ëV¯^ýû÷£ªªjL ®wM»?Hq•••¨¬¬Ä•+WØ/«qÇŽÃàà ç§Ð‘çž{ ,À¼yóÆ}\aaa”*"=a¨ ÕäææŠ."äOáp8WBJùÚ×¾ÖãFŸÞMvQHÕÕÕ€¡¡!Á•‘0TQHeeeHIIá¸" Ëÿø¦çz8òIEND®B`‚fluids-1.0.22/docs/fittings/curved_wall_diffuser.png0000644000175000017500000010545514302004506022077 0ustar nileshnilesh‰PNG  IHDR‰¯&#sBIT|dˆ IDATxœìÝytÔåÝÿÿ×,™ÉNØ·(›,‚Š`AQܨ¶VoµµT©-j‹µ•j‹õVl]ª"« ŠÈ"µÚÖ¥Z«E=õ‹‚â‚WÂ!‹!{fŸë÷‡¿™;; ™™O&y>Ι“™k>Ë{ âÌç5ïë²cŒÄ£ÂÂBõíÛ7&ÇÛ¼y³"—7B¡Âápôg8–Óél°ÃáÛíÖ¤I“bRÃ;ï¼£ŠŠ ÕÔÔDoÕÕÕªªªªs;tèÞÿ}¥¦¦Êï÷Ën·Ëf³) )++K>ŸOn·[¡PHÕÕÕêÚµ«***äp8dŒQ0T8ŽIí-e³Ùd³ÙŒcdŒ‘ÝnWíËL‘ç¤oÿÎ#ûFÆRRR …¢ÛÖ~=v»]YYYÊÊÊŠëkJ‘¿s|+X]B»ù7dž?¿¶áϯmõç·fÍxâ‰;¾KˆcŒþõ¯iÅŠ1;ægœ³c«É“'·zŸÆ.tû|>IReeet¬°°°ÑýÝn·rss‡UYY)·Û­ššõíÛWGŽQ0T(’×ëUff¦Œ1ª®®Ž†gápXƘ_ˆŠ„AM‰>Íí_›ßïorÛp8¬ÒÒR•––¶¨6pl‰@ÂìÛ·O×]wú÷ïou)IÏçói×®] Æ V<O"JIÆnu s‡Ãºå–[TXXHhЀ¸3ÆhÓ¦MzñÅ%ÑÙÐ0݈»p8¬Ûo¿=ºþ !Ú»ììlc”’’"ŸÏ'‡Ã¡¬¬,9r„ß_@‡AHâÊ£çŸ^›7oŽŽq‘½sKKK“ÝnWJJŠ€$) ÉëõZ\Ùÿ©¨¨hÑX"8Ùl6I’Íf“Íf“ßïovŸ¡C‡ªK—.  ƒ ~†Ãac¢?#·H[¼¹[dcL|ÿ 1g3üë ⨺ºZ“&MÒgŸ}s»Ýòù|V…dàv»ë„"‘0¢1\âJ¼Ï?ÿ\ápX¡PHápXáp8@ƒAc %)º¤è6‘û‘¿»H`ØÜ~ÍmÛ˜HmM9Úþõkh‹P(“ã´7‘¿‹Ž %¿M9ÚïZsjÿn·äùúç2Æ(è­·ÞRIIIt|Ò¤I4hìv»‡‡ìöoW ±Ùlr:ö´v¼­j×Kv»=.õv$—\r‰|>ßNþ”@ÜcôÌ3ÏÔ ˆ¤o/ºz<¥¦¦ZT’Y Çã‘ÇãQuuµŠŠŠTRR¢ŠŠ •——«ººZv»]n·[©©©r»Ýr¹\ÊÎÎVŸ>}Ô»woõìÙ³ÎÅRHf{÷îÕ˜1cêŒ 6LkÖ¬±¨"$ƒ-[¶ÐI⧪ªJ#FŒÐÁƒëŒ;N+''Ç¢ÊÐy½^}óÍ7*--UMMÒÒÒ”‘‘¡ÌÌLedd(===.ßh€x2Æèæ›oÖÒ¥K댻\.}ùå—2dˆE•¡½Û²e D >Œ1Z±bEƒ€(¢=­?ƒÎ!55U¹¹¹ÊÍ͵ºˆ™‚‚­^½ºÁ¸ßï×âÅ‹õÈ#Ð1‰&ñÕEEEz衇}ÎCH@c´xñbUVV6úüúõëµ{÷îW…dBHbΣ ¨¨¨¨Éç}>_‚« c9tèV®\Ùäó•••Z¸p¡XuM!$1·wï^=ñÄM>oŒQMMM+ c1Æèá‡Vyyy³Û­_¿^{öìIPUH6„D ¦Œ1ºûî»UQQÑä6999*++K`Ut,‡ÖªU«Žº]UU•.\˜€ŠŒ‰@Ìcôá‡jݺuÍn÷¿ÿû¿ÊÌÌLPUt,‘.¢#GŽ´hû5kÖhÿþýq® ɈÄL(Ò¼yó‡›ÜfèСš={¶l6[+ ã(..Öc=Öâí=-ZÇŠ¬‰@LcôüóÏkãÆMnc³Ùtçw*++Kv;—%h-cŒ–.]Úêi[×®]ËÚDh€wc &*++uÇw4ÛE4qâD]qÅ’$§Ó™¨Òè0 ´bÅŠVïW^^®Å‹Ë‡ª¬‰@›c´dÉíܹ³Émìv»î¹ç¹\.IŠþ-é"*--=¦ý׬Y£½{÷ƶ($5B"ÐfyyyzðÁ›ÝfÚ´iš2eJô1!­SXX¨U«VóþUUUZ¼xq +B²#$m …tóÍ7«ºººÉmRSSuß}÷Éf³Eljh9cŒ~øa•””´é8«V­ÒbT’!8fÆ=÷Üszíµ×šÝî†nИ1cêŒÐrEEEzôÑGÛ|Ç£‡z(¡# $ÇìÈ‘#š7ožÂáp“Ûôë×OóæÍ«ÓE$I)))ñ.€Á£eË–©¼¼<&Ç[·nkA!8FÆÝ~ûíG½ÈôÇ?þQ½{÷n0îv»ãTËáǵbÅŠ˜¯¼¼\‹-’1&fÇDr"$­fŒÑ† ŽºxöĉuÍ5×4ú!GgŒÑÒ¥KUZZÓã®Y³†n"€Ö+))Ñœ9s …šÜÆívkÙ²eMN+×ܾà[………zòÉ'c~ܪª*-Z´(æÇEr!$­ uã7j÷îÝÍn7wî\7®Éç½^o¬K C‰t•””ÄåøO>ù¤öíÛ—c#9Ø “€2ÆhÍš5š={¶Âáp“Û1Bï¾û®rrršÜ¦¸¸X={öŒG™tÆíܹS555Mn …ôƒü@¨3n·ÛõÒK/)77·Ùs 8P]»vI½H.[¶lÙé´ºŒ1úòË/uóÍ779N-_¾¼Ù€H’|>_¬K C±Ùl6lX³ÛƒA¹\®F÷9r¤N8á„x•‡€éæÀQcôÍ7ßèòË/WEEE³ÛÞrË-š2eÊQÉtsÖ"$Gå÷ûõóŸÿ\Û·oov»ñãÇëøC‹ŽI'€µ‰@³Âá°î¼óN½üòËÍn×¥K­^½ZYYY-:.DÖ"$M2ÆhñâÅzðÁ›ÝÎn·ëá‡ÖèÑ£[|lŸÏ'cL[KÀ1"$2Æhýúõºí¶ÛŽºí/~ñ Íœ9³Uǃ ÇZÚˆ4`ŒÑ_ÿúW]ýõG r.¸à-X°@6›­Uç…B„D"$uc´nÝ:Íš5ë¨ë 6LO=õ”ÒÒÒZ}:‰¬EH¢Âá°–/_®ë¯¿^Á`°Ùm{öì©çŸ^}úô9¦sÑI`-B" éÛΞÛo¿]¿þõ¯å÷û›Ý6;;[Ï?ÿ¼FݦóXÇiuÀZÆÕÔÔè—¿ü¥žzê©£nŸ™™©gžyF“'OnÓy ‰¬EH@'fŒQQQ‘®¹æmذá¨Û§¦¦jíÚµš1cF›ÏÍtsÖ"$ “2Æhûöíºì²Ë´mÛ¶£nŸ––¦õë×ëÒK/Éùé$°kÐ côÚk¯iòäÉ- ˆ²³³õÜsÏé²Ë.“Íf‹I ápø¨k ~‰èd‚Á î¿ÿ~]zé¥*))9êöݺuÓ?ÿùϘL1W›Íf“Çã‰é1ÐrL7@'aŒQEE…n¸áýío“1æ¨ûôë×O/½ô’N;í´¸ÔDH`B":cŒ>ûì3]}õÕúì³ÏZ´ÏÈ‘#õ /høðáq©‰N"k1Ý\8Öš5ktÖYgµ8 :÷ÜsõÖ[oÅ- Šðz½q=>šFH@eŒQii©fÏž­Ù³g«¢¢â¨ûØl6ýä'?ÑË/¿¬^½zŵ>:‰¬Åtst@Æ}øá‡ºúê«õõ×_·h—Ë¥»îºK¿ûÝïäp8â\á·‰¬CH@bŒ‘×ëÕ‚ ôÀ¨¦¦¦EûõèÑC«W¯ÖÅ_ç ÿDÖ"$ ƒ0ÆhÇŽºöÚkõî»ï¶x¿SN9Eëׯ×È‘#ãX]㉬ÚD$9cŒjjj´páBvÚi-ˆìv»fÏž­·ß~[£F’Íf‹s¥uÑI`-:‰HbÆ}þùçúÅ/~Ѫœ=ôÐCš5kVÂÖjŒ×ëµìÜ!I(Ò=´`Á=ôÐCª®®nñ¾§œrŠžzê)Kº‡j£“ÀZ„D$cŒÂá°Þ|óMÝtÓMÚ±cG‹÷u»Ýš3gŽî¾ûn¥§§Ç±Ê–#$°!I£={öèöÛo×sÏ=§`0Øâ}O8á­X±B\p¥ÝCõX‡€vÎ#Ç£GyD÷ÝwŸÊËË[¼¯Ýn×~ô#-^¼X={öŒc•­ÇtsÖ"$ 2Æ( êŸÿü§þð‡?(//¯UûwÜqzôÑGuÑEµ«î¡Ú‰¬c·ºÐ1Fï½÷ž¦OŸ®+¯¼²U‘ÃáЬY³ôÁèâ‹/n·‘Íf“×뵺 €N‹N"ÚcŒvìØ¡;ï¼S/¼ðB«Ö’¤¡C‡jÅŠ:çœsd··ÿï†z<cÚmБÐc´wï^=øàƒZ³f|>_«öÏÌÌÔM7ݤyóæ)+++NUÆ–Íf“ÏçS8–Ãá°º€N‡ c”ŸŸ¯eË–éñÇWyyy«qî¹çjñâÅ:餓’®#Çï÷X„ ctøða-Y²D+W®<¦pè„NÐý÷߯K.¹D)))q¨2¾jw ñ‰H cŒöï߯‡~X«V­:¦p¨K—.ºñÆõûßÿ>i¦–kŠÏçS(²º €N‰€0Æh÷îÝZ²d‰Ö¯_LáÃáÐ~ô#ÝqÇ:thÒM-WDÖ"$ ŽB¡>ùä-\¸P/½ô’<O«a·Û5eÊÝ{z0a‚ìv{*µ!€u‰ˆ1cŒü~¿Þ|óM-[¶Lo¾ùæ1!cÇŽÕ=÷Ü£3ft¨p(‚À:„DĈ1FUUUzæ™gôÈ#èóÏ??æcx≺ãŽ;t饗*555†U¶/„DÖ!$ Âá°öíÛ§'Ÿ|RO>ù¤ ŽùXƒÖï~÷;ýä'?QZZZ «ll6›B¡€Õ¥tJ„DcŒ|>Ÿ6mÚ¤Ç{L¯¼òŠ|>ß1oðàÁºå–[tõÕW+===†•¶DzNÚŽ€2ÆH’<¨§Ÿ~ZùË_ôÕW_EÇʼn'ž¨[o½UW\q…233cUjR!$°!GaŒ‘ÇãÑo¼¡uëÖiÆ ª©©9æãÙl6|òÉúío«Ë.»¬C¯9Ô„DÖ $ Æùý~mݺUÿûßõüCùùùm:¦ÓéÔäÉ“õ›ßüF3fÌÓÉÇr‰À*¼àÿgŒQ8Ö‡~¨_|Q/¿ü²¾þúë6M''I©©©ºì²ËôË_þR§Ÿ~ºGŒ*AHèÔ"C~ø¡^zé%ýë_ÿR^^žB¡P›Ý»wo]sÍ5ºá†4hÐ Ùl¶TÜñx½^«K蔉J¤+¨¨¨H7nÔk¯½¦×_½ÍSÉE8?^³gÏÖW\¡ÌÌ̘·#£“À„D€/2Ü_|¡×_]6lÐÖ­[UVV³sdeeéÒK/ÕÏþs~úéJII‰Ù±;:B"k:cŒB¡ ôÎ;ïè7ÞÐ[o½¥ƒ* Æìt ÅDÖ $´+‘.¡²²2mß¾]ï½÷žÞ{ï=mݺU{÷î>/š8q¢¾ÿýï뢋.Ò Aƒâz¾Î,²~!€5‰–Š„>EEEÚºu«6oÞ¬-[¶è‹/¾PqqqÜC!IÊÎÎÖ”)Sô½ï}O矾  0„DÖ $$T8–ÇãQ^^^´KhË–-Ú»w¯ü~Bjp¹\:þøãõÝï~WÓ¦MÓĉ•‘‘A0dB"kâ"Ò …”ŸŸ¯Ï?ÿ\›7oÖ| Ï>ûLÅÅÅ «Ån·+77WßùÎwtþùçëì³ÏÖ!CX_¨ $°! &"¡Puuµ¾øâ }üñÇÚ²e‹>úè#íß¿_ÕÕÕ ­§Gš8q¢¦L™¢sÎ9GC‡UfffBk@Ëx½^«K蔉ÇÄ£ššíÝ»Wï¿ÿ¾Þÿ}mݺUÛ¶m“ÇãIÈZB‡CݺuÓ„ tÎ9çhòäÉ3fŒÜn7SÈ%:‰¬AHhV$쩪ªÒ¡C‡ôùçŸëý÷ß×'Ÿ|¢/¾øBEEE ¯Éáp(77WãÆÓ9眣‰'jÔ¨QJMMMx-h;B"k¢"ßï×Î;õé§Ÿê“O>ÑǬ¯¿þZEEE ƒ ¯Ën·kذa?~¼Î8ã Mš4IƒVzzzÂkAìXƒ:)cŒ€*++µ}ûv}úé§ÑÛ¶mÛT]]­P(”ðºl6›2335zôhMš4Igœq†N?ýtõêÕK‡ƒéã: B"k@fŒ‘Íf“1FeeeÊÏÏ×¶mÛôå—_ê³Ï>ÓöíÛ•——'¿ßoYN§SýúõÓ)§œ¢I“&iâĉ:餓”““cYMH,B"k@bŒ‘ÇãÑž={”——§¯¾úJ_}õ•¾üòK:tH%%%–tÕ–‘‘¡Q£Fé´ÓNÓĉ5nÜ8 0@–Öëx½^«K蔉 É„B!ù|>UTThçÎÚ±c‡vìØ¡íÛ·kÇŽÚ·oŸü~¿åa$¥¦¦ªoß¾š0a‚&L˜íJOO—Ýn·º<´tXƒÚ!cŒªªªtäÈåççkÇŽÚ½{·vïÞ­¼¼<íß¿_‡–1ÆêR£œN§úöí«Q£Fi„ 7nœN>ùdwÜq¬#„fXƒ¬v°óÍ7ßèÀ:tèöìÙ£]»viïÞ½Úµk—Š‹‹UQQÑn§âêÑ£‡ÆŽ«qãÆéôÓO×É'Ÿ¬>}ú(--P-ù=  ƒr:¹LH¼û€3Æ( Éï÷«¦¦F‡ÖÞ½{µwï^íß¿_{÷îÕ¾}û´ÿ~•––* *[]v“RRRÔ¥K3F§všN9å|òÉ4hÜn7ÚÌ#¯×«ÌÌL«KèT‰ …jwUWW«¢¢B¥¥¥ÊÏÏ×Áƒ£·èðáÃ*,,TQQQ»X¨¥"k >\§žzªN=õT5J'œp‚\.—Õ塃2ÆÈçó$!€N¯vøcŒQii©Š‹‹£!Ï¡C‡”ŸŸ¯Ã‡+??_ùùù*++See¥jjjÚÕº@­‘••¥#FhäÈ‘:餓4vìX >\={ö”Ûí¶º}úhðàÁ6l˜† ¢AƒiÈ!0`€\.—œN'a: :‰¬á4ÆðÁè š ]@´'Ò•SUUU§£§¼¼\eeeª¨¨ˆÞ///WEE…ªªªêÜ@‚_Yòr8êÖ­›ºwï®ÜÜ\ 4HǼ¨ª_¿~êÓ§ÒÓÓ­.H(B"€Äs†Ãa9«ëPOS1F§NXSYY©ÊÊJ•——«²²RÑ[d¬öÏššù|>ùý~ùý~ù|>…B¡¿ÂŽÉétªW¯^êÛ·¯rssuÜqÇ)77W¹¹¹0`€ú÷ﯜœeee)%%Åêrvƒ ñœLçÄ^ýiÙ"Ó©ƒAy½ÞhSYY y xjwòD¶©ªªR8®s‹œñát:•’’"—Ë¥nݺ©_¿~êׯŸú÷⦅››«þýû«OŸ>r¹\r8²ÛíÌÜ´Ç㱺€N‡Vs:>Ÿ/:[íûµÃÈ-ÒÑ |"OUU•jjjTSS#Çý‡üJÑ—Ë¥ììlegg+''G}úô‰võêÕK½{÷VŸ>}Ô³gOõèÑCݺu“Ë岺l C"$H<§Õ­ÑÜ—œÂá°ªªªT]]­šššèýú!NíŸÝjjj¢S±ùý~ƒÁ¾R«ÔÔTuëÖM]»vUÏž=Õ«W¯èÏ=zD÷èÑCÙÙÙÊÈÈPzzºÜn7]?@‚ÕþoŽ ñè$@Bc‡ëL½¹ïñx¬­Sûqí°§þ4mµ·ñù|u¦_c¶äd·Ûåt:åp8ät:•––¦îÝ»«k×®êÕ«W4êÕ«Wôg¤Ë§GÊÌÌŒNõæp8~€$AHxt@RÓ:¡PH>Ÿ/z‹L¿æóù¢Nuuu©Ö"¡Nc:µ§]‹Üq:&›Í¦ÔÔT¥§§Go™™™êÚµkôÖ­[7åääÔyÜ­[7eee)++KÙÙÙJKK³ú¥HB"€Ä£“ ‰5÷^Îç󩺺:ØDî{<žáNíîúãUUUÑéÖjÿ …B |¥°RJJв²²Ô¥Kegg«K—.ÊÌÌT—.]ê>]»vUff¦rrr¢áOZZšÜn·RSSåv»åt:éìÐ(¯×ku DhVdêh‚Á`§YüÝ“°µPy.I Ǽodʲ£‰LkËz‚Á`‹º_ê×ØØŸoýsF~·ƒÁ`t:¶`0]c§öôjõ×Ú©=]›ßïNµ©•/u‘iÚjß"¡Ní[¤[§k×®Ñ(''':V;²Ùl nKt$DhÖºuëô‹_üÂê2:”””h×MjjjôV{úµH “íð©Ýé™Ö---M™™™JOOWJJŠÕ/ šEHxt¡Y.—Ëê’Fzzº222”™™Yç–‘‘ x233ëtèDÂÈxFF†\.Wô–’’"—ËEç€ ñ‰Ð,B"БØív9Îètl‡C)))ÑΛHh¹Eׯ?¹Yo§þ”l<pt„D‰Çtsh!h\.WtÚ5·Û-·Û­´´´h‡N$¨i*Ô‰þøc½úê«W@CL bÍÎtsèÌöï߯իW×»çž{,ª€Æ¥¤¤X]è`è$B§eŒÑâÅ‹UVVVgü£>ÒË/¿lQU4ŽÄ!:­C‡iÍš5 Æ1zðÁåóù,¨ €Æ9«K !:%cŒ–,Y¢ŠŠŠFŸÿðÃõÊ+¯$¸*šf·ó¶ Äk¡SÊÏÏ×Ê•+›|Þ£{ï½WÁ`0UÐ4B"k\m@§cŒÑ‚ TYYÙìvŸ|ò ÝD€vÁf³Éf³Y]è`‰Ðéìß¿_ëÖ­kѶ÷ÝwŸ@œ+ yt€x`º9t*Æ-^¼Xeee-Úþ£>ÒË/¿çªh!ˆ®8 S9xð V¯^Ýâí1zàäõzãXͳÛíL7bކ1FK—.=êZDõ}ôÑGzõÕWãTGG@âF~~¾V®\ÙêýŒ1º÷Þ{ ãPGG'ˆÖ$B§`ŒÑ¢E‹ZÝEññÇëßÿþwŒ« eX“ÄWÐ)8p@kÖ¬iÓ1þüç?ÓM°!ˆ®8 Ã‹t•––¶é8|ð^zé¥U@ËÙl6¦›1GH„/??_k×®móqŒ1Z°`|>_Û‹ ˆ@<¡C3Æè‘GQyyyLŽ÷ÁhÆ 19-EHâZAA}ôјÏ£»ï¾[¡P(fÇàh‰@<¡Ã2Æèá‡VeeeLûÑGéÍ7ߌé1hŽÝn'(1g7ÆX]EEEzòÉ'ãrìûï¿_áp8.Ç >"N« âå7ÞP×®]•žž®P(¤`0Ø`›²²2y<žã999JKK«3f³Ùät:åp8TRR¢¯¾úJ£GŽ[ýD€x $B‡5sæLÍœ9³ÙmfÍš¥uëÖ5_¼x±fÍš§ÊhB"¬IÐÎÙl6‚"s„DíTdíH"„DíP$ ’‰@|´s„D ‰Ú¡úDE Ö‰Ú9"„Dík€x#$hç‰@<ØkKíD Þè$hçl6Aˆ9B"€vÈí&" ñ@HÐ΀x $h‡X“Ä!@;ÇšD ‰Ú!:‰@¼´sv;oÙ@ìqÅ ¢“Ä!@;ÇšD 쵿¥ €öN"ot´S‘ ˆăÓêÐD@û÷ÑGéÃ?Tuuµ|>ŸB¡$) )Ën·ËápH’‡Ün·222tÞyçiذaóÀú÷¿ÿ­ŠŠ y½ÞèñŒ1r:¿½œëv»•™™©³Î:K'tR^)€ŽŠ cM" }ÊÈÈPYY™>üðC½ñƪªªjrÛhÚ´i?~¼ºwïÞäv)))ÊËËÓÓO?­‚‚‚F·|X7nÔ| p8Üè¶))):ûì³uæ™gjܸqM~Û*r!þwÞÑË/¿ ›êkúôéºöÚk•šš»ÔC'| ‚Î?ÿüVD’TXX¨;wJ’ÒÓÓõì³ÏjêÔ©m®j#$$%‡Ã¡‹/¾X_|±$饗^Òå—_Þ ØéÝ»·žþyMš4©EÚ/¸à]pÁzøá‡uÓM7ÕyîÔSOÕêÕ«5fÌ.Ú#äSSSÓ`lذa­>Ž1FË—/Wii©œN§üqMŸ>=%@v« ¦OŸ®ã?¾Áø]wÝ¥3Î8£ÕÙO?ýô:ûœþùzýõ×5vìX.Ø#!Œ1Ñ Èf³ñ{$o¾ù¦ÁØÀ[u cŒ¾üòK-Z´HÒ·ëýøÇ?ŽI}PD€Án·7Ú¾?mÚ´Vˣ͛7G/ÐOœ8QÏ?ÿ¼²³³Û\'ÐRtɧ¸¸¸Îc›Í¦ãŽ;®UÇðûýºþúëU]]­K/½TwÝuŸ Ľö’U8–×ë­3–žž®þýû·úXzôÑG%I#FŒ ‚%‰€äS¿“(33S999-Þߣ{ï½Wï¾û®ÆŽ«'žx¢Éuu ˜nÐ!•——×ëß¿¿ìöÖý¯Î£?ÿùÏÚµk—ºwï®gžyF}ûöe©@‹ɧ~'Qvv¶233[´¯1Fo¿ý¶zè!uéÒEk×®U·nÝâQ&D1Ý Cƒ B¢ÜÜÜV…DƽóÎ;Z²d‰‡Ö¬Y£±cÇÆºT EX“H>õC¢®]»*==½Eû–––jöìÙòz½Z¹r¥N>ùäx”u:„ŠŠ ùýþ:cÇw\‹/¬cTVV¦k¯½V~¿_÷ÝwŸ.ºè¢x” ´D@r …B*))©3Ö¯_¿½Ÿ…BúÕ¯~¥;wêW¿ú•®ºêªx• u0Ý C¨ÿm-I­ZÈ£[n¹E»víÒE]¤¹sçra–bÝH ¹”––6øòbK?—®[·NÏ<óŒ¾óïèÞ{ïmõÔép¬ø×Ð!´%$2Æèïÿ»Ö­[§¡C‡jÕªUr¹\±.h:‰€äòÍ7ß( ÕkÉçÒ/¾øBsçÎUNNŽÖ­[§¬¬¬x• 0Ý C(,,l0Ö’7ãÆ˜h;¿ÛíÖÓO?­^½zÅ£D Uê¯I }+))iuHTUU¥Ÿþô§ª¬¬ÔÓO?­aÆųDh€Ð!kHäóùôÓŸþT%%%Z¾|¹N;í´x”´Z8ŽÞ'$Ú¿Ö~.5ÆhÞ¼yúè£4gÎ]qÅñ,Åts€¡þ›ñ”””£vctÏ=÷èÝwßÕ•W^©Ÿÿüç\ŒG»QM"~7€ö­þçR»Ý®>}ú4¹ý /¼ Ç{LãÆÓŸÿügÖ!` þå$=cLƒ7ã]ºtQfff³ûlذA ,Љ'ž¨GyDN' ¶h?X“H.}y±Gn»{÷nÍ™3GYYYZ»v-ë° WÃBAAAÇ999͆D‡Òu×]'‡Ã¡uëÖ©{÷îñ.hB" ¹´4$ª©©Ñµ×^«¢¢"­^½Z£GNT‰Ð€³þT&$£úoÆ{ôè!—ËÕè¶¡PH×]w8 E‹iüøñ‰(hcLƒ)ç´_õ?—fee5øò¢1FóçÏׯuÍ5×è'?ùI"K€˜nÐ!Ô3Þ§OŸF»/Œ1Z²d‰^{í5]z饺ñÆéÒ@»D'\êÏpÑØçÒ_|Q‹/ÖÈ‘#µxñb9ŽD– 0Ý éy<UTTÔëÛ·oƒíŒ1zûí·5þ| |¸xà•””(Èï÷·ùø€DH$“Ç7 ƒúá¨ÒÒRýéOÒ”)SÚ|žââb½ñÆzõÕW5~üøŸÒÒÒ´bÅ wÞyѱW^yE>Ÿ¯ÍçÐ1’Z¤›§6—Ë¥œœýìg?ÓÁƒuóÍ7ë‚ .ˆÉ9«««µ|ùry½^ ><: …‰3„D@ò¨ÿ¹T’n»í6mß¾]3fÌÐo~󛘜çµ×^Óœ9sê|­ÏåréÆoŒ>.))QeeeLΠãq2- Ù5eggkþüùzóÍ7uæ™gjþüù1»Ðž™™©ùóçK’Þxã M:UÒ·õC¡PLÎÔ^“ˆhß ‰>¬ÜÜ\=þøãr¹\19Ï„ 4xðà£n7zôh¹Ýnù|>9Ž6¯ƒ ã¢“ôê·õgggëÙgŸÕ‚ Ô»wo­]»Vq9÷°aâ÷ ‰KtÉ£±éæRSSµfÍåææÆì<#FŒhQà”––Ý®oß¾ÊÊÊŠY :B"@R3ƨ¨¨¨ÎXQQ‘æÌ™£P(¤åË—·è[VÇ*###ú,B"Ä!›]’þð‡?ÔY(‘ü~¿€$鬳ΒÓé´¤íÿ:’ZUU•***ŒIÒ¯~õ+ýà?ˆëù‡RSSU]]-cL)€¶`º9 9ƒAÖûîw¿«yóæYö^>??_^¯WN§SW]u•%5Ht’Zyy¹jjjŒOœ8Q÷Ýw_ÜßÛív¾‘…¸ “H~¿¿Î ƒ ÒO<¡””Kê1ÆèÕW_•${0a‚%uH„D€¤ÖXHÔ£G­^½Z™™™q?¿Íf«Õ¾°´]i@rðx<*))‘ôí:D«V­Rß¾}-«§¸¸X«W¯–ËåÒ}÷Ý'»KÀšÆ¿€¤VPPPçbºÝn×Ê•+uâ‰'&äüv»½ÎšD„Dˆ:‰€äpøðáèçÒx@çž{®eµctçwª  @·Ýv›N=õTËj‰IíàÁƒußtÓMºä’KZCí ø„DˆÖ$’áC‡$I3gÎÔœ9s,{ÿnŒÑ† ôÄOè’K.Ñm·ÝÆg GEHHjùùùÑûgžy¦þô§?%üM0oº„D@r8|ø°&L˜ ¥K—Fgš°Â¾}ûtýõ×ëä“OÖªU«äv»-«@ò`¥m@R‹tõíÛWùË_”•••ÐóÛl6:‰„D@r8ï¼ó4cÆ uëÖͲ*++5sæLÙívýóŸÿT÷îÝ-«@r!$$-cŒ:$·Û­§žzJ´¼ VX“H °ôüÁ`P7Üpƒòòò´aÃwÜq–Ö ¹I"r±ÐëõêÀÚ³g8 þð‡ÊÌÌ´¸:ÀÆéÁÔyçgiÝÚ‚N"G‡uÇwèßÿþ·^~ùe;Öê’$B" 2ƨ¼¼\ï½÷ž>ùä}ñÅÚ¶m›vïÞ-Ç£@  ã?^W]u•Õ¥–±ÙlZ¾|¹ÆŒcé CˆB"Í1ÆháÂ…Z¶l™þñhòäÉV— í”ÍfÓÒ¥Kõ—¿üEG …Bu¶9ãŒ3”žžnQ…€õl6›N9å«Ë “qÁtsšbŒÑêÕ«u×]wé±ÇÓôéÓ›üÜù"ruuµú÷ïŸàJ´wv.fí×üùóµcÇíܹSO>ùdƒç§NjAUj£“ñR»“"Œ1zî¹çtÓM7iáÂ…š9sft¼þ-kãÆš|X[¶lÑ_ÿúWmÞ¼ÙâÊ:/:‰€vÎf³)--MçœsŽìv{ô¢ajj*mÄ@;yƒcŒiÐñ+¦›PŸ1F6lе×^«p8¬§žzJûÛßär¹”’’"§Ó)›Í&cŒª««µ{÷níÛ·OÇ×°aì.T(ÒgŸ}¦­[·êÓO?ÕW_}¥íÛ·ëÈ‘#òûýÑßå3Î8ÃêR;%B" IäååÕ¹`8|øp 8ЊHß¾Ññûý’¾½¨,®!€ÚŒ1Úºu«~ô£©ªªJ’ôÞ{ïµhß+¯¼R‡#žåMÊËËÓ¬Y³TQQ¡#GŽ4èjs¹\:묳,ªv« ptÆmܸ±ÎXssÍHœ`0(ÇÓà>ÐV¬I ¶@  Ûn»M6›MéééÑ®¡£IMMÕ•W^™€ Æ >\Ÿ~ú©òòòôÅ_hĈuž9r¤ `Qu “Ho¾ùfÇÓ§O·¨µF»‡Âá° -®DjKIIÑ+¯¼¢`0¨p8\gêóæØíveff&¢D Y‡C¹¹¹5j”¶mÛŸ:u*Ÿ{-DH$üü|}þùçÑÇÝ»w×é§ŸnaE"oÂ_xá…:㯾úªÎ;ï<ÚøÑf„Dj³Ùlr»Ýr»ÝV—³p8¬¼¼¼:c|ÞZL7$wß}W•••ÑÇçwž\.—…[8ÖóÏ?¯ï}ï{zà¢ðív»V­Z¥ /¼P+V¬`}"´ ÓÍ:š‚‚íܹ3ú¸G:í´Ó,¬tíœ1F6l¨3ÆzD€µl6›.¾øbMŸ>]áp8Úña³Ù¢·””9üoÇŽN"@G³eËUWWGŸ}öÙÊÈȰ°"põ hç|>ŸþßÿûÑÇiii:÷Üs­+-þq`ŒQUU•222d·Óè,Õ ‰ 33Æðå¹À£×_½ÎØŒ3ø»µWa€vnçÎÚ½{wôñ˜1cÔ¯_? +€ø˜;w®Î:ë,-^¼¸Î¿{Dð­`0¨ï~÷»Z±b…öíÛgu98F@@ÿýï£SSSuöÙg[X$É^{¾{íÏþóŸ:ëRL:•)¬tHûöíÓæÍ›5wî\9Rgžy¦–,Y¢}ûö) Y]^±&|«¼¼\¯¾úª~ùË_jøðá:ûì³µlÙ2íÝ»·S~^LVyyyÊËË‹>>|¸ d]AÄts€eŒ1òz½Ú´i“6lØ íÛ·+ êÄOÔUW]¥ñãÇK’^yå•è>v»]Ó¦M³ªdˆ+¯×½ïóù´yófmÞ¼Y·Þz«¾óïè?ø.¾øb <¸SLIG'|Ëï÷Gïû|>½ýöÛzûí·5wîÜ:Ÿ‡ Ò)>/&«ÿüç?uO›6M‡Ã¢jÁ1€ü~¿Ö®]«qãÆé /Ô† 4pà@ 2D¯½öšÎ:ë,ÍŸ?_ùùùzÿý÷£ûõìÙS'Ÿ|²…•@ü4µO0Ô¦M›ôÛßþVcÇŽÕÙgŸ­¥K—jÏž= ®0±‰à[@ ÑñP(¤Í›7ë–[nÑØ±cuÖYgiÑ¢EÚµkW‚+DKÔ‰l6›¦Nja5ˆ “H cŒ¶mÛ¦Ù³gëÝwßUnn®þñè{ßûžœN§l6›¼^¯n¸áÝ}÷ÝZ¿~½|>_tÿsÏ=Wéé龈Ÿ¦B¢Ú<6mÚ¤M›6éÖ[oÕ¸qãtùå—ë’K.ÑÀ;Ô7‰üìÝytT…ùÿñÏ™$3Y !$ì„°o6²J ¢µâWEE¡GAkÕŠZ«T«U´nE«¶*–*_­õÄ‚€l²¨ì‹ û–•ì™åþþà—ù2@BBf2“äý:gŽ3wî½ó B2÷~æy.Î(/$:[qq±w"ÅܹsÕ»woMœ8Q×_½’““ëÔñbm”‘‘¡5kÖxÇÇÇ+555ˆ¡ !PCLÓÔ¿þõ/Ý~ûíÊÎÎV¯^½´dɵnÝÚg=»Ý® héÒ¥úùçŸ}ž=zt V ¡ÍétjíÚµZ»v­æÎ«~ýúiâĉ3fLIÇ5‰àŒ³*ÃåriݺuZ·nzè!FÒPÙÿ›½{÷êóÏ?×úõëuêÔ)5nÜX#FŒÐ¤I“¥o¾ùFùùùÞí†*»Ý¬²qþ55À4M-Z´H7Ýt“²³³ÕµkW-]ºô¼€¨L||¼RRR|–Y­V1¢&Ê€Z§l$ÝìÙ³•’’¢¡C‡êÏþ³8ìÒ.DP}玤«/#Ìk‚išÚ¶m›¦L™¢=zèñÇWii©RRR”——§»ï¾[C† Ñž={´téRŸm¹îzè “0Ó4õ·¿ýMwÝu—œN§âããµxñb5oÞ¼Üm ÃPll¬Ï²¾}û*111Ðå@­WTT佈é¯ýkõíÛW“&MÒøñãÕ²eËZ3b€ü«¸¸Øg„ùW\á=^lÕªU­9^ %%%zúé§õì³ÏÊétêŽ;îÐO<¡„„†!Ó4õßÿþWãÇWjjªÏ%5l6×# !„D@™¦©åË—{"IúÓŸþ¤.]º\t»ÌÌLŸe£G¦¶2MSyyyåÎÞ5M³R×q©ÇSå¶îª0M3 û—jæ=ÔÄÿ‡@ •¿GEEE~]§ÓéIýÀ誫®Ò 7Ü k¯½VIII!¾ú߀šQöÙ¾ìÄyE÷QsœN§V¯^­Õ«WëÐÀ•––V+ŽƒÉ4M:uJS§NÕ¿ÿýoÙív-\¸PwÜq‡Ï¹KÃ04lØ0ÝqÇzñÅ}öÑ»wo5mÚ´¦KG9‰€:vì˜n»í6K:ôL™2å¢Ûé§Ÿ~ò>6 C#GŽ XM¦ij×®];v¬rssË]§6‡RÝxµ=H« ÿ*£´´T_ýµ¾þúkEEEiÀ€š8q¢ÆŽ[awg°ÐIÔNn·[k×®Õ¦M›täÈeee)??_ÅÅÅ*--Uii©JJJär¹¼_ õx!ÿ(((ÐW_}¥¯¾úJû¬ÒÓÓõ?ÿó?1b„’““Õ°aC9IòNHˆŠŠ’ÝnWDD„l6›,‹ à XRrrr‚]   @+V¬PÆ Õ±cÇz™¦©G}T_}õ•¤3“^zé%Ùíö‹n÷ã?ú,4hǸ!†³€Ÿ™¦©÷Þ{O{öìñ.ëÛ·¯zõêU©mßÿ}=zÔ»,::Z¬Ô¶}ô‘}ôQ8p@%%%ÞçÎá€Ú£aƺùæ›õ—¿ü%Ø¥u–Ýn×W\¡›nºIãÇW“&Mjl<§Çã‘aÞq;’|^ûøñãú׿þ¥={öhĈ>|¸RSSÁ‰0@­åñx”““£S§NiÿþýZ»v­þþ÷¿K:sL³yófåää(99Y­[·V«V­”””¤V­Z)..N‹…`@H3 C×\sO§$j·† jĈš4i’F¥èèèzõ;È4M¥§§ëOú“wÙm·Ý¦Þ½{WjûôôtŸÇU5çñxär¹dã׈ð3·Û­… ú,»ùæ›+õC¬°°Ðç®$õìÙ³R£âLÓTÿþýµfÍ­[·NãÆóžx ôÅý†aè¹çžSII‰N:U­}™¦)—Ëå§Ê.Ìår´ž÷P9µù=8p F:ív»z÷î­I“&iܸqjÓ¦MP>h–BeƒçþÙ8p@.—Kßÿ½Z´h¡ùóç{×ãƒ1 ¶²X,jÔ¨‘5j¤N:Éãñèw¿û$iÀ€Z¸p¡ ½¿ïl6›·›¨ì1„ºÙ³g+33S_~ù¥ TZZ*—Ë%—Ë%Ç#Ó4½çl<w;Ó4}—=¡c¼s׃5lØPƒ RZZš®½öÚ‹Ž ¯Ë 5kÖ,ïßÙèèhÍ;·RÇ¥Ðúõë½ív»®¾úê ·1MSGŽÑ¢E‹ôõ×_ëØ±c SÛ¶m5nÜ8Mœ8QqqqÕ{SðÁ§+ÀÏ~üñGŸ6J«ÕªñãÇ_t;Ó4õ׿þUÛ·o÷Y^ÙQs‹E­[·–$¥¦¦*..Î;ó3Ð'¥8111úë_ÿì2€€3MS К5k²«Õª~ýúiÒ¤I3fŒ’““k¬c¨² Ãð¹·ar:ÞÇV«5ePcìv»:wîì2 Ú"##õüóÏkÁ‚*))‘Óé”Ûí–ÛíöAeáϹ!Ñ…ýüóÏ6lX@_ÃáphøðáJKKÓÈ‘#•˜˜Xï¿ gš¦Þ|óMíØ±Ã»lòäÉÞsÛvÑ¢E*..ö.ëÙ³§š5kVá6Ÿ}ö™î¼óÎó¾0½uëV}öÙgzòÉ'õÊ+¯h̘1—ðŽp!„D€Ÿýç?ÿñ ezõêU©N S§Né©§ž:oyUZ0ËÄÄÄøÌ=û$#ÔáááêÑ£‡&Mš¤n¸A­[·®UAËÙ‚¡h¸8‹Å"‡ÃáíˆÄ¥;{L·?EEEiàÀÞI7®÷ÁÐÙNŸ>­^xÁgÙ´iÓ*µmnn®Þzë-Ÿe×^{m¹¾¦ijãÆºùæ›UPP øøx]vÙe2 C?üðƒ²²²$éNš8q¢>ùä‚"?!$üÈ4M}ûí·>Ë®ºêª‹žÜ3MS<òˆ‡¬V«÷_«V­Ô­[·*×a†Ïàõ‹BMxx¸RRR4qâDM˜0A;v¬µð ‰Àÿ¢¢¢Ô¿Mœ8Q×]wš7oì’BÖ§Ÿ~ªxwéÒE={ö¼èv¦iêoû›>ì³¼¢‰In·[=ôìv»ž}öYýêW¿òžßÌÊÊÒSO=¥_|Qn·[%%%º÷Þ{Õ¯_?ÅÇÇ_â»CB"ÀJKKõÓO?ù,KII©pÓ4õùçŸë³Ï>Ó¬Y³ôðÃ{Ÿ1bÄ%ëýìN¢úÖ‚  ~±X,êÓ§ÒÒÒtÝuש}ûöµªc¨2‰àÒ…‡‡û\c¨E‹g]„išzï½÷|–;ÖgLzy²³³õÌ3Ïø,KJJªðËðß}÷¶oß®ôôtõèÑÃç¹Fé¹çžSÆ õØcI:ÓQ´téRM:µ’ïå!$üÈår)//ÏgYbbb…Û8p@wß}·žþyýç?ÿñynÔ¨Q—ü øððpïý@^Ä‚!<<\—]v™~ñ‹_hâĉJNN®sÁÐÙ?»kk7Kdd¤®¼òJMš4IãÇW“&M†ªàôéÓZ±b…ϲÊ\;Ý4M=ýôÓ:zô¨ÏòaÆ)""¢ÜmÞ}÷]-X° Ü/Ü[,=ðÀZ¼x±¶lÙ"éL°DHT}„D€†qÞ/›ãÇ_p]Ó4•••¥É“'kìØ±š0a‚zè!ïóÑÑÑ8p wÝüü|9r¤Òr=;Õ'$P\ìÃzxx¸zõêå СC‡:ž0nΰÙ*w;::Z©©©>C¸46lPII‰÷qÙ5‚*Rv]¡·ÞzKIII>£êF]î1¼ÛíV‹-”––Váq¾ÃáÐðáý!QAAAUÞÊAHøQxx¸âããuèÐ!ï²/¿üR·Þz«Ï¸²€(--M6›MÏ=÷œöîÝë³]Ïž=Õ¤IIÒ‘#Gtã7êøC¥k9ûõ„Djƒ u•’›8q¢Æ§:Túà ¶#$€3*q®ÁƒkâĉŒ’ó£]»vù}úTz;”¯~|¨!†ahüøñzçw¼Ë\.—®»î:Ý{ï½jݺµ>ýôS}ñÅjÛ¶­¾üòKµlÙRÒùéüáÇõÎ;ï衇ÒàÁƒõøãWé&¿Ô&†aèšk®ÑСC5nÜ8uêÔ©N’« :‰àŒ˜˜%$$¨ÿþš0a‚FMI€;ÅãäÉ“òx<<>5MS¯¼òŠ>ùä-[¶Lÿüç?}ž5j”w;Ó4õÃ?¨{÷îUžbš¦222$7hР*m #$üläÈ‘êÞ½»¶nÝê]–™™©'žxÂû8%%EK–,Qrr²wY^^žÏ~>ùä}òÉ'?~¼Þxãr/ìV:‰Ô6÷ß°K)„Dp†ÃáÐÎ;Wï¿PXSÎíüÙ³göìÙ£N:ù,7MSo¾ù¦yäýãÿP‡”žžî}Þb±høðá’ÎLXúãÿ¨;vèÍ7ß¼¤º6lØ IJKKSBBÂ%í¾8ãøYdd¤Þ|óMÅÆÆž÷œÍfÓÔ©SµlÙ2Ÿ€HÒy?`ív»|ðA}øá‡Š‰‰©rgŸ\$$€Ú‡þO£FˆjP¯^½|iþüùr¹\’þïšë÷ÝwŸf̘¡ hôèÑr:Ú¼y³w»ˆˆ]~ùår¹\zä‘Gôꫯꩧžº¤ãÜíÛ·ëÛo¿Utt´æÎËß?¡“€+¯¼R+W®ÔóÏ?¯mÛ¶)22R½{÷ÖäɓէOŸ þ»ýöÛµ{÷níØ±C)))ºýöÛuÙe—]ò;‚!¨;øà ¨I]ºtQ‡´gÏï²÷ß_yyyš0a‚~úé'½õÖ[ÊÈÈÐ3Ï<£;ï¼S†aèèÑ£ÊÏÏ÷nãv»µ|ùr½ùæ›úöÛoõïÿ»Âë•Çãñè±ÇSaa¡,XpÞðq鉀éÞ½»Þ~ûíJ¯ß A½úê«~{}Çã½O`µD€`±Ùlš5k–f̘á³ü³Ï>ÓgŸ}&I ןÿügM›6ÍûåÆÂÂBŸó’¥¥¥ºîºëÔ¨Q#-^¼XW\qE•k1MSŸ}ö™–,Y¢±cÇžWª‡3@EHµ! ˜î¼óNMž<ù‚ÏuêÔIéééºë®»|ŽY›7o~Þ¥3úöí«U«ViÈ!U®Á4Míß¿_wÝu—zôè¡E‹UùÚí¨D@Å5‰ v#$Sxx¸-Z¤¾}ûêÿ÷UPP ¶mÛjôèѺþúë/xõØØX½þúëzíµ×Ô A]ýõúÅ/~!»Ý~I5äååéÖ[oUxx¸>úè#ÅÇÇW÷má„D@åt:½÷KJJ‚X àR‚Ín·kΜ9š3gN¥·IKKSZZZµ_Ûívëþûï×Ö­[õå—_ª]»vÕÞ'ÎGHÔQÞûEEEA¬P]„D€úÄãñèÉ'ŸÔâÅ‹µxñbõíÛ7Ø%ÕY6ÆPuÓéTNNŽ÷qFFF«\г?£•]€ºÎ4M½ñÆúÃþ ·ß~[×\sM°KªÓøZ*P9rDÙÙÙÞÇ»wïb5€KÁ¸9@}cš¦/^¬9sæè¹çžÓäÉ“/º>ª‡3@aš¦òóóµlÙ2Íœ9S………ÞçÞ}÷]½õÖ[Ú½{·\.W«T! >1MSÿþ÷¿uÛm·éñÇ×ôéÓˬaš¦Ž;¦{ï½— ¨š¸&PG†¡íÛ·ëûï¿×•W^©=zÈãñÈb±(,,LZ½zµš5k¦˜˜˜`— ¨B"@]fš¦V­Z¥›nºIÝ»wW§N”žž®ððpÙl6Y­V†!·Û­¬¬,}÷Ýwzûí·5lØ0F´W!P‡ôíÛ—‹¸@A' >0MS?þø£ÒÒÒ”››«uëÖiüøñ•ÚöbãèpqœqA„D€úàèÑ£ºþúëuòäÉ*m—””¤!C†¦¨z„N"€DH¨JJJ4oÞ<åææª¸¸XN§³R×UïÑ£‡G TX·„ ³C"æ+ꪶmÛjÚ´iÁ.£Þâk©!ŽN"œqAŒ›f9ûB!4Î8„ ®I Ä€@ $AŒ›Æ€ĸ9h„D!ˆ!@ˆcÜÎ8„ :‰@ „ B"h„D!èìˆqs 8ã‚è$FHâ‰@ „ ÆÍ€@ãŒ@bÜ4B"€DH ÄœIŒ›Á€D'4B"€DH Ä1ngBD ЉB!4B"€tvHĸ9œqqt€@ $At€@ãŒ@òx<Þût€@ $Agw€@ $A„D ЉB!4B"€DH ‚…o¦„:‰@ ÑI‚è$FH‚è$FH‚è$FH‚è$FH‚‰@ „ ÆÍ€@#$AÇ{ŸN"„D!ˆN"h„D!ˆk€@³pÒ ôÐIN"€D'4B"€DH 1n!@¢“!@¢“!@¢“!@¢“!@òx<Þût€@°pÒ ô0nD!ˆqs ЉBD ЉBD ÐlÁ.”Õ«Wë›o¾‘Óé”Ëå’Ûí–ÛíöYgãÆÜöã?ÖÎ;}–Ùl6Y­VY­V9Mž]†aøe”‡!ê¼hèС~Ù×ôéÓÕ¤I¿ì €Šx<ž`—ê8B"ÔyV«UsçΕÕj­Ö~tÏ=÷ø©**F'4 c³P\}õÕÕî&š1c†ýT£“D¨¬V«zè¡K¾6Q\\œî½÷^?W@ù‰@ ¡Þ2dˆ|IÛÞsÏ=jÔ¨‘Ÿ+ |„D ЉPoX,=ú裪êˆÅ„„͘1£ÊÛP„D ЉP¯ 8°ÊÝDÓ¦MS³fÍTFHõŠÍfÓ¼yódµZ+µ~||¼f̘àª8ŸišÁ.Ôq„D¨w† ¦!C†TjÝ3f¨iÓ¦-€  “!ê²n"‹¥â¿þ±±±t‚†!ê¥Êt͘1Cñññ5Sç $FH„zÉ0 ýö·¿•a|>!!AÓ§O/÷y!ê­jðàÁ|nÚ´ijÖ¬Y WÀÿq»ÝÁ.Ôq:%P_Ùl6=üðòZ­>Ëtß}÷©*Îp¹\Á.Ôqt¡^»úê«Ï»6ÑôéÓ•˜˜œ‚øÿ‰@ ¡^³Z­š7ož,–3ÿbcc5cÆŒ W¨ï<×$GH„zoذaÞn¢3f(>>>¸ê=§Ó)§Óì2@g v]û÷ï×§Ÿ~ì2jD³fÍdµZåv»õâ‹/»@=WXX¨ŒŒ ïc§Ó)Çãí|5MS\WT!ʵcÇÍž=;ØeÔ¨ßÿþ÷Á.€óÜ}÷Ýš;w®bbbÔ A5hÐ@ÑÑÑŠŽŽVTT”¢¢¢£èèhÅÄÄ(**J 4PTT”‡¢££é½EDDHò ›ž¨‰BÜ©S§têÔ©*og†,‹¬V«,‹÷á ™bbb¼ÁÒ¹÷Ëž?{ÝsïÛl6Ÿ}—½&¡ Ž2MSn·[n·Ûgy~~¾233«½Ã0éífŠŠŠò>v8  ÊB¦s»ž"##¦ððpï-,,Laaaå¾6¨B"\Ó4UPP ‚‚‚jïËb±(,,L>A‘Ýn÷ŽÕ«¨ëéìª,°r8>á•ÍvþG_Â&@}FH€ óx<*))QIIIµ÷e†Ïˆ½²ûQQQçË»Ðx½²k?]hYtt´ÂÂÂ|Fì=j€ÚÄÆÁ,êÓ4år¹Î[ž——ç—ý—]Ó©,t:7|ªÌ-::ú¼®©òÆëñy(tUPÖñTë:†á¯wvXäp8¼]L 6ô¹ö²²[dd¤·ª,°²X,ç½BH„r¥¤¤è½÷Þ vBLyßЇÿ¸\.™¦ð×1MSN§3à¯#In·[§Æ÷çïõ<Ün÷%¯wîë”÷¸ìß™Ëå’Ûí–ËåRQQ‘NŸ>­üü|>}ZyyyÊÏÏ—Ëåònãñx¼7„6Ó4UZZªÒÒÒju8Y­Vï8=«Õ*›Í¦¨¨¨ó‚¦ØØØrƒ¦²[ÙòsÇéY­V‚&¨£‰P®-Zèæ›ov ¦iª¸¸X………*((ðþ7//Ï'HÊÏÏ÷޿в‚‚•””¨´´ÔÛ%SvŸÀ)´¹ÝîóÉÜÜ\=zô’÷i·Û½ASÙõšâââÔ°aCŸ[Y𫸸85hÐ@‡Ã{³Û튈ˆðÙ7a€sÕÄcP>B"€ZÊ0 ï ùøøøKÞOYçRYgKYHTZZê ”.4•Ý/,,ôÞ TTTäý/'k‡ââb_Ò8½ððpÙívÙív9EEE)66Ö{‹‹‹óÞ5jä Ÿbbb¼ÝLqqq²Ùþï0…` ‡ ž+»>NXX˜¢¢¢ªµ¯²±we£óÊnN§ó‚ÁRY'SÙò uBD•––z÷{ö˜=B¨à+ OŸ>]¥í,‹l6›¬V«Â¼ÝKñññŠ÷KñññJHHPãÆÕ¨Q#ïóÑÑÑÞÑ{eã÷GH¿1 Ã{¢þ\qqq~y §Ó©¢¢¢ v-åååù„MçÞÎ ªÎ³Wö5ËãñxÿÜË®¿uäÈ‘Jo¦¸¸8o·RYx” „„5iÒD JLLT\\œ¢¢¢­¨¨(o DÇ€úˆµJY×Sƒ ªµÓ4åt:}‚¢ÒÒR{ƒ¤³»™.ÔáT¶ìÜëBåçç6Õ §Ó©“'OêäÉ“]×jµ***Ê{½¥Æ+11Q jÖ¬™š6mªfÍšy—5nÜX±±±’’Ô=„D¨— ÃPxx¸ÂÃëµÓ4}Æë•Ý/**R~~¾NŸ>í*•…HeËË‚§œœ>}ÚçVXXxÞè>Çã§?úÉív{ÿ|;¦Ý»w_p½²1Œ6›MÑÑÑÞð¨ìÖ²eKµlÙR-Z´P‹-Ô AÙl6Ùl6ÆÝ¨5‰€j0 C6Ûù«cbb”˜˜X­}»\.xƒ¥²û:}ú´rss½ÝLe·²e999ÊËËSaa¡JJJT\\ì©çr¹ªUW}`š¦÷K………:yò¤~üñÇr׊ŠR“&MÔ¤I5oÞ\-[¶TëÖ­Õ²eKµjÕJM›6U\\œ4h@ˆ d!Êf³©¼„>H IDATaÆjذá%m_tœ}Í¥’’*//O¹¹¹>áRYWSvv¶rss½·s;¡LÓôó;­ý ´oß>íÛ·ï‚ÏGDD(66V5RË–-•””¤V­Z©uëÖjÓ¦Z·n­æÍ›+""‚±vjŒ n2 CŠˆˆ¸¤íÏ¥çv»åv»år¹túôiåää(77WÙÙÙÞ);;Ûç–““ãs+))ñÉWŸFç•””èĉ:qâ„vìØáó\Ùh;»Ý®fÍš©mÛ¶jÕª•Úµk§víÚ)99YÉÉÉŠŒŒTXXHü†N"TÞ(½ØØXµnݺJû2MSÅÅÅç]wéìP)33S™™™ÊÊÊRVV–233½#ó UTTT'Gå=ÚîôéÓÚµk×yëX,%&&*))IÉÉÉêØ±£:tè :¨yóæŠ—Ãá  µ‰ÁEH à ÃÃáÃáP“&M*µMYxRTT¤¢¢"*77× eff*;;[:yò¤OÀ”““£ììì:Ó­äñxtüøq?~\ëÖ­óy.22RñññjÓ¦:uê¤:¨sçÎj×®Ú´i£ÈÈHÂ#DH $=./66ö¢ë›¦é3"Ïét*33S:qâ„7L:qâ„N:å½âÄ >}ZN§SN§Sn·»Þÿ”uZ:tH+W®ô.·Z­ W›6mÔ¥KuíÚUÝ»wW×®]•””¤ÈÈÈ vЍ?8"P'†!Ã0¼×쉈ˆPtt´’’’*ÜÎ4MùJÇŽÓñãÇ}þ{òäIšxKÕâv»UTT¤;vhÇŽúç?ÿé}.::ZíÛ·W—.]Ô½{w¥¤¤¨S§NjÖ¬G@=BH ^3 C‘‘‘ŠŒŒT«V­Ê]Ïív+//OyyyÊÊÊÒ±cÇtäÈ:tÈûߣGêøñãÊÌÌ éQwùùùúþûïõý÷ß{—………©I“&êСƒzôè¡=z¨{÷îêØ±£¢¢¢Ž€:ˆ*Ájµ*66V±±±jÕª•RRR|ž7MSG.—K¥¥¥:zô¨>¬ýû÷ëàÁƒ:xð 8 ƒ*##CÅÅÅr:2M3HïÈ—ÓéÔáÇuøða-[¶L’d±Xd·ÛÕ¶m[õíÛW½zõR=ÔµkWÅÄÄ0®¨åøD~`†¬V«¬V«"""Ô©S'uêÔé‚ëêèÑ£:zô¨öï߯}ûöy¤ƒ*++K¹¹¹AïFòx<*,,ÔÖ­[µuëV½ýöÛ’$‡Ã¡Î;+%%E½zõRŸ>}Ô®];%$$ÐqÔ"„DPÃ"##Õ¾}{µoß^ƒ òy®´´T999:uê”8 }ûöiß¾}Ú½{·<¨ŸþYyyyAªüŒ¢¢"mÞ¼Y›7oÖ¢E‹$IqqqêØ±£z÷î­>}ú¨gÏžêܹ³ìv{PkP>B"!áááJLLTbb¢ºuëæ]^6ή´´T'NœÐÞ½{µgÏíÚµK{÷îÕÎ;uüøqËív×xÝÙÙÙZ·nÖ­['ę́º˜˜]~ùåêׯŸúöí«>}ú¨iÓ¦Šˆˆ ã’2ãê+Ì ô•³s8jÓ¦Ú´i£áÇ{Ÿ7MS999Ú¿¿74Ú¶m›vîÜ©£G*33³FOÈ{<åææjåÊ•Z¹r¥÷=$''«W¯^ºòÊ+•ššªöíÛ3¦:‰ 0 CqqqŠ‹‹S¯^½¼ËËšcÇŽiÇŽÚ¹s§¶lÙ¢íÛ·k÷îÝ*))©±MÓôŽÏ[¼x±$©aÆjß¾½®¼òJõïß_ýúõS»ví€@Hu˜Åbñ†G]»v•t&¬q»Ý***ÒÞ½{õý÷ßëÇÔ?ü mÛ¶)''G¥¥¥5R_nn®6nܨ7jáÂ…²ÙljÚ´©·ÓhÀ€êÒ¥‹¢££e±Xj¤& ¾ $€zÆ0 Ùl6ÅÄĨgÏžêÙ³§÷9—Ë¥ýû÷kÛ¶mÚ¸q£6mÚ¤;vèèÑ£5Òuär¹tøða>|XŸ|ò‰¤3ÝF={öTjjªRSS•’’¢æÍ›ÕDHð²ÙlêСƒ:tè  &H’JJJtâÄ mß¾]?üðƒ6lØ M›6iÿþý5r£ÜÜ\-_¾\Ë—/—$EFFª]»vJMMÕàÁƒ5`ÀµjÕŠu@*¡Ö­[«uëÖ5j”LÓ”ËåRFF†6mÚ¤ï¾ûNë×¯×æÍ›•™™)§ÓÐz µeËmÙ²EùË_¦¤¤$ 8Pƒ ÒÀÕºuk…‡‡ $T‰a S³fÍ4fÌ3F’TZZª½{÷jË–-Z·nÖ®]«={ö(### õ8NíÝ»W{÷îÕ¢E‹d†Ú·o¯ÔÔT >\ýû÷WRR’l6€³ñ àáááêÚµ«ºvíªÉ“'Ë4Måäähß¾}Z¿~½Ö­[§ï¾ûN»ví’ÛíX¦ijÏž=Ú³gÞyçEDD(99YC† ѰaÃ4hÐ %&&ìõQy51®å#$„aŠ‹‹SïÞ½Õ»woÝsÏ=r¹\ÊÌÌÔ† ´fÍ­_¿^7nTNNŽ<O@ê())ÑÎ;µsçN½öÚk²ÛíêÓ§FŽ©Q£F©[·n²Û팦@½CH¨16›MMš4ñSWTT¤;vhãÆZ½zµÖ¯_¯ýû÷«¨¨( 5kÕªUZµj•~ûÛߪU«V4h&L˜ ªI“&F¨‰Aåp8Ô«W/õêÕKwÞy§JKKuìØ1mܸQk×®ÕÚµkµiÓ&äõ:¤÷ß_ï¿ÿ¾bccÕ¯_?M˜0A×^{­Z¶lI`€:ËÆ‡]@( WRR’’’’tà 7Èãñ¨°°P›6mÒêÕ«µbÅ ­_¿^999~¿¶QNN޾üòK}ùå—ŠˆˆÐ•W^©É“'kܸqjÞ¼¹¬V«__&K°  "‹EÑÑÑ4hæÍ›§/¾øB‡Öºuëôâ‹/ê¿ø…’““ýà”””hÅŠº÷Þ{Õ¾}{ >\¯¿þºŽ=*Ó4ýúZ@00nPëØívõîÝ[½{÷Ö}÷ݧÂÂBíß¿_«V­Ò²eËôí·ßêðáÃ~{½ÒÒR-_¾\Ë—/Wll¬FŒ¡_ýêW1b„"""üö:@M"$Ôz‘‘‘êÖ­›ºuë¦iÓ¦ÉétjÏž=JOOWzzºV¯^­ììl¿tåääèã?ÖâŋռysÝrË-ºí¶ÛÔ®];ÆÑ VaÜ N1 CáááêÖ­›fÍš¥¥K—êСCúæ›oô»ßýN Pdddµ_Ç4M9rDÏ<óŒºu릑#Gêƒ>P^^žÞx„D€:/22RW]u•}ôQ}óÍ7Ú¹s§Þÿ}MžúH~¬¨B"þ¿°°0]qÅúýï¯7jÍš5ºÿþûÕ²eËKÞ§ÇãÑêÕ«uã7ªwïÞzùå—•ŸŸïǪ€KCHÀØívõíÛWÏ?ÿ¼~úé'}ýõ×úå/©F]ÒþLÓÔ®]»4sæL%''ë‰'žÐ±cÇü\5PyÃ0‚]!Ë0 …‡‡ëꫯÖßþö7íÚµK¯¾úªúöí+«ÕzIûÌÈÈÐc=¦®]»êÐdš¦Ÿ+*F'UиqcÝ}÷ÝZµj•V¯^­;î¸C111—´¯œœ-X°@=zôЬY³tèÐ!?W ”€K¦¾}ûêõ×_×ÁƒõÒK/©[·nº”‰999úóŸÿ¬N:iƌڷoE8B"ªÁ0 ÅÆÆjæÌ™Ú¼y³>ýôS5JaaaUÞWQQ‘^y奤¤èÁÔ‘#GP1p!~¦qãÆéóÏ?×wß}§Ûn»M‘‘‘UÞO~~¾,X Ë/¿\<òˆrrrPmðÑ-\„Dø™ÅbQJJŠÞzë-íÞ½[=ô7n\åýdeeé©§žR—.]ôÒK/)???Õ ¾"$ @ ÃP‹-ôôÓOkûöíúÃþ ¤¤¤*ïçøñãš5k–úöí«%K–Èét ZÔ7„DÔ€„„=øàƒÚ²e‹^ýuµoß¾Êûرc‡ÒÒÒ4räH­[·.U >!$ ÅÄÄèŽ;îЖ-[ôÎ;ï¨K—.2 £ÒÛ{<-[¶L Ð]wÝ¥#GŽpm\B"j˜a²ÛíúÕ¯~¥7ê­·ÞR—.]ª´·Û­×_]½{÷Ö+¯¼¢âââU €ºŠ€ r8ºí¶Û´aýñÆJNN®Òö'NœÐÌ™35xð`}ûí·t Ò,Uii©Ûo¿][¶lÑ /¼ ¦M›Viûõë×kèСš>}º233T%ê:‰†a(**J÷ß¿¶lÙ¢‡~X 6¬ôöN§S¯½öšz÷î­?þXn·;€Õ ¶#$ 5nÜXO>ù¤6mÚ¤_þò—²Z­•ÞöÀš2eЦL™¢'N°Êêa4@p¢ ÃPÛ¶mõî»ïê›o¾Ñ€TÙ±ñn·[ü±zôè¡?ü®"œ‡€g†  eË–é7ÞPË–-+½íñãÇuÓM7iêÔ©:yòd«@mCH@-¦Ûo¿]6lÐŒ3*=‚Îãñè½÷ÞS¿~ýôÕW_1æ ’‰¨uš4i¢—^zI+V¬PïÞ½+½Ýþýû5fÌ=üðÃ*** `…¨ ‰¨… ÃPjjªV®\© (&&¦RÛ¹\.=óÌ3>|¸vîÜà*ʉ¨Å‡æÌ™£5kÖhÈ!•ÞnõêÕ4h–,Y¸â.‚±wÁEH@-g†ºuë¦ôôt-\¸P 6¬Ôv§NÒĉ5gθJ„‹aÁ®øÕjÕÝwß­U«V骫®ªÔ6¦iê…^ÐøñãuäÈ‘W€PB'uˆaêÞ½»¾üòK=þøã²Z­•Ú.==]C† ѦM›\!B!uPdd¤}ôQ}óÍ7êØ±c¥¶Ù»w¯¬>ø@'À ؉¨£ ÃЀ´jÕ*¥¥¥Uj›üü|Ýzë­zæ™gäv»\!‚‰€:.!!A|ð,X »Ý~Ñõ].—yäÝwß}*))©  „DÔaaaúõ¯­ÿþ÷¿JNN¾èú¦ijáÂ…š8q¢rrrj BÔ4B"ê‘þýûkåÊ•6lX¥ÖÿüóÏ5aÂeddø½Ó4ý¾OTžÅ0Œ`×jP‹-´téRÍž=[•9/ðÍ7ßhäÈ‘:vìX T€šB'õÃáÐÿøG½öÚkr8]Ó¦M>|¸8PÕ &PO†¡;ï¼SK–,QÓ¦M/ºþöíÛ5fÌ:tÈ/¯Ï¸9€àbÜõ˜a9r¤¾þúkuèÐá¢ëoÛ¶M£GÖ‘#Gj :D!¦´´4Ø%ê¡®]»jåÊ•0`ÀE×ݶm›®»î::uªZ¯I'@p„˜¬¬¬`—¨§š4i¢¥K—jܸq]wÓ¦Mš4i’òóók 2!@ˆÉÎΖÛív€z*..NÿøÇ?4eÊ”‹®»|ùrÝu×]r:5Pük„˜¢¢"» @=©wÞyG·ÞzëE×ýàƒ4þ|y<ž*¿ãæ‚‹N"€CHaaazíµ×4uêÔ‹®ûôÓOëã?|Qð+B"€CHv»] .Ôu×]Wázn·[wß}·¶mÛV¥ýÓI\„D!¦´´T§OŸvH’‡Þÿ}¥¦¦V¸^NNŽn¾ùf~‡Ô"6®Iz233ƒ]^ÑÑÑúè£4tèPíÙ³§Üõ~øá=üðÃz饗d±\ü{©tP1Ó4õÎ;ïè§Ÿ~*wÇ£¬¬¬ .þùçWákÜrË-êØ±cµkEíd v8_FFF°KÀG‹-ôÁhذav ½öÚk6l˜®¿þú¬€º©¬ÉãÉ'Ÿ¬ò¶¦iê•W^©p–-[jÞ¼y—TêÆÍ„ B"@(êÓ§^}õÕ »„Ün·¦OŸ®ãÇ×`eÔ]“&MRçβï|PQQQÙ7j ãæBãæ¡jÊ”)š1cF…ë?~\÷ß¿Ünw…ë1n€‹‹ŒŒÔ<à÷ý&''ëÖ[oõû~Q»ÐI‚è$„*Ã04þ|õìÙ³Âõ/^¬ýë_AøÁ”)SÔ©S'¿îsöìÙjР_÷‰Ú‡N"€DHe 4Ð_ÿúWÅÄÄ”»ŽÛíÖœ9s*üF€@å8ýæ7¿ñÛþÚ·o¯©S§úm¨½è$A™™™œ8„´””=þøã®sðàAýîw¿«™‚¨ãüym¢Ù³gWøeÔ„D!(++K'ØeP¡3fhÀ€®óúë¯kÆ |Ž/DPyš;wnµ÷Ó²eK®E/ÆÍ„ ììl¹\®`—@…ÂÃÃõ—¿üEÑÑÑå®ãt:5gΕ””Ô`eÔM“'OV×®]«µyóæ)**ÊO¡¶£“ åääÈív» .ªk×®š5kV…ë¬ZµJÿøÇ?j¨"ê.‡Ã¡_ÿú×—¼}rr²n¹å?V„ÚŽN"€”››K' V0 C>ø :vìXî:¦iêÑGUvvöyË@ÕL™2E:uº¤mgÏž­ ø¹"Ôft„ §Ó©œœœ`—@¥4hÐ@/½ô’,–òO3û¬Ï2B"ªÎápè7¿ùM•·kß¾½¦Nêÿ‚P«ÑI¢233ƒ]•6bÄ¥¥¥U¸ÎË/¿¬ƒz{<ž@—@4iÒ$uîܹJÛÌž=[111ªµD!ŠP›X,ÍŸ?¿Â“Oùùùš?¾·ƒˆN".MÄÿkï^c¤ªïÿæ²»\…`Mh ´˜zI£BMZ­°,—6ÚXˆ ‰±O4V‰•¶ö¢mÒøÀ„>mkM 5¦RÚ È¥ÜéM µAJ!¶Æ „‹dwgÎÿAÿìoWf眙}½ž°çÌÙ3o\7gø¾Ï÷{ššâ›ßüæÇ>~øðáñàƒö`"j•™Dõî»ï¦.Ë7Þ<òÈ%Y²dIüùÏŽ%\ûï¿?>ûÙÏ~¬cŸzê©èß¿'¢™IQfP‹žxâ‰1bÄE_?wî\|ÿûߎŽËÍÀUèׯ_<þøãyܧ?ýéxઈZd&@F=z4ípÙ† Ï>ûì%Y½zu¬Y³ÆL"¸JsæÌ‰›nºé’Ç<ñÄqÍ5×T)µFIQJ"jÕœ9s¢¹¹ù¢¯'I‹-Š÷ß¿Š© þôíÛ7žzê©‹¾~ýõ×Çüù󫘈Z“Ïç­8E–› V‹Åxæ™gâRcÿûßã…^¨b*¨O³gÏŽn¸á‚¯=öØcfqIfd”™DÔ²–––hmm½ä1»víªR¨_MMM±hÑ¢í6lX,X° …DÔÓˆ2JI@-+‹ñƒü šššÒŽu-—ËÅý÷ßÿ¡g-\¸0ú÷ïŸR*j…’ £,7@­knnޝ|å+iÇ€º×¿ÿxì±Ç:·‡_ûÚ×Ò DÍPdÔñãÇ£T*¥®X.—‹gžy&úôé“v¨{óæÍ‹‘#GFDÄ£>ƒ J9µ@IQqòäÉ´cÀU9rd<üðÃiÇ€º7`À€xüñÇcèС±`Á‚ÈåriG¢ÓÀ…•J¥8qâD 2$í(pÅr¹\,\¸0–.]zÉçí?~<¶nÝZÅdV*•¢\.§#³’$‰ŽŽŽ´c\‘öööŠž¯Òÿ-.öÿÞ¥Þ§££#’$éÜÎçó1jÔ¨X¹re444D.—‹b±Øùçåóù( Ú±ã?J¡Pˆ|¾òsS*~N"öíÛw?eªâ|Iµnذañè£Æw¿ûÝ‹³sçÎøÂ¾PÅTP¿Ö¬Y“vjÀÀ¯±Ü@F•Ëå8~üxÚ1àªår¹xä‘GbĈiG  %@†;v,íPƒާŸ~:ít¡$ȰK=»jÍüùócôèÑiÇàÿSd˜’€zÒØØÏ?ÿ|466¦€Pdšåæ¨7_üâãÉ'ŸŒ\.—v€^¯˜v.ÎL"êM.—‹ï}ï{1bĈøÙÏ~ÿùÏâÔ©SqæÌ™´£ô:J"€ SPŠÅb<ôÐCñÐCEDÄáÇãàÁƒÑÖÖíííQ*•¢T*E¹\ŽR©I’DGGGçŸѹÝÕ…ö?ÏGíû öööõw9Ÿñã8ÿ÷JÃå䬴®?·,ø¸?[¨w'Nœx_Ia–› 76lX 6,í½ÊÎ;Ïx&@†8qÂÝ®@PdØ™3g<£èJ"€ ;sæLœ={6í@RdØÙ³g•D@PdX[[[œ>}:í@Rd܉'ÒŽÔ!%@Æ?~<í@RdÜ©S§ÒŽÔ!%@ƽ÷Þ{iGê’ ãÌ$ ž•ËåH’$í½’’ ãÌ$ ^=z4¾üå/Ç‚ ¢­­-í8½Ž’ ãΜ9“vè«W¯Ž+VÄ/ùË8pà@Úqz%@Æ)‰¨Wÿýï#""I’8yòdÊiz%@Æ)‰¨W§OŸŽˆÿ•DçÎK9 @ï£$ȸ³gϦzDGGÇ¿ :”DçÎjêU©Têüº­­-Å$½“’ ã”DÔ«®³‡ÚÛÛSLÐ;)‰2®­­-’$I;Tœ™DéRd\{{»’€ºÔµ$êú5Õ¡$È8ƒfÔ«®7A¸! ú”DW*• œP÷ÊårÚz%@Æ4 7pC@õ)‰2&—ËuÛ.—ËΨK]¯onЍ>%:7DTŸ’H™DÕ§$RÑuö™DÕ§$ȸ|>ÿ¡ç@½1“ úŠiàÒ …BÚ ®%II’D[[[9r$þùÏƾ}û¢X,ÆÃ?œv<è5Ì$¨>%@Æ 3‰ ÂÎ;;v숿þõ¯±gÏžxë­·âÀqìØ±Îc¾ño¤˜z%@õ)‰2NI•wøðáX¼xq¼óÎ;qèС8tèÐ‡Ž™4iR É wñL"€ty&@Æ‹îëJ»þúëcùòå±mÛ¶Ø¿|ýë_ïöú€âóŸÿ|Jé ÷P ¤KIqÅbÑL"è!ù|>šššbèСÝö3& ”R*è=”DéRd\CCCÚ îmÛ¶­ÛvkkkJI wQ¤KI‘©²Î ´IDATq}ûö­èù’$‰sçÎ]ð,Ð;v,Þxãnû¦M›–RÈ–$IâàÁƒÑÞÞÞ#ç/—ËÝÞ €êRd\%K¢³gÏÆK/½cÇŽ_üâ;/Ô²]»vűcÇ:·?õ©OÅM7Ý”b"È–E‹Åĉãµ×^ë±²€t(‰2®OŸ>WõýI’D[[[¼üòË1~üø˜;wnìÞ½»Bé ¶%Iëׯï¶ïÎ;ïŒÆÆÆ”A6mݺ5f̘“'OŽ5kÖTlÖÙCéRdÜ•Î$:¿¬Ü¯~õ«¸ýöÛcöìÙñ·¿ý­Âé ¶•J¥X·n]·}Ó¦M‹\.—R"È®r¹›6mŠéÓ§Ç„ *2³¨kI¤0¨>%@Æ|ppº_¿~—}ŽóËÊ3&æÍ›ÿøÇ?*êÊ;ï¼Ó­<0`@L˜0!ÅD}år9vìØÓ§OI“&]UY¤H—’ ã ð±Ž;¿¬ÜÒ¥Kc̘11wîÜØ³gO§ƒÚ¶~ýú(•JÛ·Þzk ><ÅDP[¶lÙ3f̈‰'Æ«¯¾årù²¾_I.%@Æ 8ð’¯'Iï¿ÿ~¼ôÒK1zôèxàâÍ7߬R:¨]I’Äš5kºíkmm|Þ?“àr”ËåÎgÝyç—5³Èrséò¯€Œ»ÔL¢³gÏÆÒ¥K£¹¹9æÎ{÷î5ÈS{{{lܸ±s;ŸÏÇäÉ“SLµ-I’ضmÛe-Cw¹3¨,%@Æ}p&Q’$qîܹxñÅ£¹¹ÙÌ!¸B»wïŽ#GŽtn_wÝuÑÜÜœb"¨ç—¡»ûî»cÅŠ-ƒ:::ªœ €®ŠiàÒ ÿ·¬Ü+¯¼?úÑbß¾}WuÞÝ»wÇ’%K*zÔ'?ùÉhii©è9“$‰uëÖu¸ž8qb466Väü‡Ž 6Tä\¶·ß~ûо¯\.ǶmÛâž{cÇÆ·¿ýí˜2eJ444tÓõ™`TŸ’ 㮹æš8}út¼ôÒKñüóÏÇ[o½U‘ó.[¶,–-[V‘sAOjiié‘’èõ×_ï¶oêÔ©;ÿîÝ»cþüù;Ô²$IbçÎ1sæÌ?~|,Z´(Z[[£±±±ÛL"Ë¥TŸ’ ã^~ùåxðÁã_ÿúWÚQ n9r$ÞxãÎíb±“&MJ1ôÛ·oY³fÅèÑ£ãÉ'ŸŒ÷Þ{/íH½š’ ã~ò“Ÿ¤êÎÎ;ãäɓۣFŠ¡C‡¦˜z$Ib×®]1gΜÈåriÇèÕòiàâúôéÍÍÍÑ ‚’$‰Õ«WwÛ7yòä( )%‚Þ§¡¡!f̘'NìÜçZP}J"€ ëß¿üîw¿‹W_}5&L˜v¨ ííí±aÆnûZ[[SJ½K.—‹™3gÆþð‡X¾|yÜpà iGèÕ,7q 1uêÔhii‰uëÖųÏ>;wîŒr¹|Uç5jTÜzë­J =ç–[n©èù8û÷ïïÜ:thÜ~ûí}aÆżyó*zNHË–-[âßÿþ÷U£X,ÆäÉ“ã;ßùNŒ7.òy÷¬d’ F‹Å˜:ujLž<9Ö®]Ï=÷\lÞ¼ùŠË¢ûî»/ž~úé §„lK’$Ö¬YÓmß„ bРA}ŸQ£FÅ’%K*zNHC’$1{öì+.‰Îßèð­o}+ÆŽkI9€Œqë@) 1mÚ´X»vm¬Zµ*ÆŸv$¨)k×®í¶=eÊ””’@ýÊårñ¥/})6nÜË—/qãÆ}dA¤@¨>%@Æ|ÜA²ówgoÚ´)V­ZwÜq‡å{à#œ>}:¶oßÞ¹ÝØØ“&MJ1Ô—b±Ó§OmÛ¶Åïÿû˜0aB …´cpF2ærï¤>? ·eË–X±bEÜu×]îÆ†‹Ø¹sgœ:uªsûæ›oŽ‘#G¦˜êCcccÜsÏ=±uëÖX¹r¥j„Ols¥O¡PˆéÓ§Ç믿+W®Œ &ôÈû@­J’$Ö­[I’tîkmmõ»áR¿#ù|>fÍš›6mŠßüæ7ž;Pc”Dsµƒk 1}úôؼyslذ!îºë® .õS,¯ê} Ö”J¥X·n]·}S§NM) ÔŽ ]CãÞ{ï¿üå/ñÛßþ6Ægæ@ ò  c*uv>Ÿ»ï¾;Ö¯_«V­Š‰'vÀSÑÛ:t(öîÝÛ¹=hРhnnN1Ô†®×‹¦¦¦¸÷Þ{cË–-ñÊ+¯Äç>÷¹Š]·Ì@¨>%@ÆTz¬P(Ä”)SbõêÕñÚk¯EKKKär¹hll¬èû@ÖmÛ¶-Ξ=Û¹=f̘8p`Љ 6466F±XŒ¯~õ«±}ûöøõ¯cÆŒQêÔ·dLO º544Dkkk´´´ÄŸþô§ .õ*I’X»vm·}S¦L1È !—ËÅ}÷Ý .Œo¼Ñï @Qô2ù|>Æ—v ¨ªöööؼysçv¡Pˆ‰'vn'Ibð.³»ê—åæ2ƃ¿¡ò<o¿ývçöðáÃãæ›oŽˆÿD{÷îŸÿüç)¥H‡ î­_¿¾ÛöwÜ}ûö$IbÏž=ÑÚÚC† I)ÑsË­pqJ"€Œ1H••$Ilܸ±Û¾1cÆD’$±k×®˜9sf´¶¶Æ¬Y³RJ%@Æ(‰ ²’$‰?þñÝö½ùæ›ñãÿ8ZZZâ¶Ûn‹Å‹G¡PH)!ô^]¯y–[¨¾bÚè®ë€Y.—SÁUz÷ÝwãèÑ£Ýö½ð ‘ËåbΜ9ñÓŸþ4úöí›R:à<×;€ês›@Æ$ƒÊºöÚkã¶Ûnë¶oðàÁñÜsÏÅ‹/¾¨ ‚™I.3‰2FI•U,cåÊ•±xñâØ¿Œ5*æÎ#FŒðû)S¤KI1­¡ò®»îºøá˜v à\ÿªÏm:óÁg@½2“ ]>dÌ‹!Eõªk1¤$¨>ŸÀ2¦P(¤ª¢ë5ÏMÕ§$Șbñÿ™Ëå šP·º–DfTŸO`ÓÐÐÐùu¡P0h@ÝR¤Ë'0€Œé:“(ŸÏ4 nu-‰ºÞ$@uqȘ†††Î%æ”DÔ³®ÅPcccŠIz'#ÓÐÐÐ9PV(ºÍ,€zÒ§OŸÎ¯›ššRLÐ;)‰2¦©©©s làÀn/‰r¹\ôë×/å4½’ cŸùÌg""¢¥¥¥sé9¨7 ˆˆÿ•D×^{mÊizŸb[[[)ít·lٲرcG̘1#ÚÚÚÒŽ=â–[n‰O|âùÑ£G'ÇO\óª§T*•ÿ/9Öì¼ÇIEND®B`‚fluids-1.0.22/docs/fittings/contraction_beveled.png0000644000175000017500000005134214302004506021705 0ustar nileshnilesh‰PNG  IHDRBɨ¶‰FsBIT|dˆ IDATxœìÝyœÍuÿÿñçì˜ÅŒÂØeM‘=&„™ˆÉr‰¾%T¨¤\—Ò&~)[%‰È–B‘­"ë …‹’}ÆÎì̾þþè6çrÌŒ9gÎ:s÷Û­Ûu>Ÿó~>¯3×uõ9Ïó~Þ·ƒænÞ¼Y’”žž®””•|çTš>Krr²222]†ÅJË'ÙÙÙº~ýº£Ë°Šøøx›Ÿ#22Rµk×¶ùypVž›7oÖk¯½æè:ÀnÜ£££]ØA\PZZš£KÀ¡Ücbb]ÀÎ.]ºäèp(F„ÀMŸ>]W®\qt8 A\ÐÆU½zuU¨PAûöíst9ØA\X||¼.\èè2°;Ϥ¤$G×P¢8p@<ð€rssõÒK/©Q£F ‡‡‡Q»‚öIRùòååîînQ >>>*W®œEÇ0WÙ²eU¦L»žÓÑÜÜÜèè2€b VTTTï;vÌÎÕàxžŽ. ¤›2eŠrss%IÑÑÑúè£\˜çâÅ‹Ž.»³l(ÂÅž)pEn¹7“‡É<¨ûî»O·þù|||tæÌÕ¨QÃA•@~·»G¨lÙ²JII±sE8#BÅôÖ[oå A’”žž®™3g: "(ž´´´ÿ}@iƈP1:tH-[¶,ô‹ƒ¿¿¿¢¢¢dçÊ `·’þ¹OÈÕV‚¸6F„Š¡°Ñ <7nÜÐ'Ÿ|bÇŠÀ2,˜p5!3:tHßÿ}‘ífΜɜ{%FFF†£KÀ®Bfzï½÷LšK­/¾øÂ€årrr]vE2ÃñãÇõÝwß™Ü~úôéüÊ 8!‚>øà³~5½pá‚/^lÊÀ:¸‚‰.\¸ ¥K—šÝïý÷ßWVV– *ëaQ€«!™¨¸ÓÜΜ9£+VØ "°‚ÀÕ„L« »ÿ{ï½Ç´N p5!|üñÇJNN.vÿcÇŽiÍš5V¬¬‹k®† T„´´4Í›7Ïâã¼÷Þ{V¨lÂPzzº¾ùæ=õÔSjÛ¶­†ª3gÎ8º,@)åéèœÝŠ+mñqþøãmß¾]:u²BU`]Žœ—””¤Y³fiÆŒŠ5숈ÐÎ;uêÔ)¹»ó»Àº¸²aÙ²eV;ÖÌ™3­v,°&G¡ÜÜ\}ùå—ªW¯žÞxã £”'::šû—6ÁˆP† ¦””?~\±±±f_=<< òåËëÆÊÈÈ···ª€â±÷Ô¸¿þúK#FŒPDDÄmÛ½ùæ›òðð°SUWâ–ËOmŬ¨¨(£}‘‘‘ª]»¶ƒ*€‚ôï«›ýý÷ßjذ¡ÍëÈÍÍÕ¬Y³4qâD¥¦¦ÚÎÃÃCS¦LÑ믿n󚮉!€]¦ŸÅÆÆê‰'žÐ¦M›nÛîþûï׬Y³Ô¦M›×p]Ü#°¹ýû÷«eË–· AU«VÕ‚ ´wï^BÀæàÈYЫV­ÒСCo;.<<\Ÿ}ö™*T¨`ÇÊ®Œ!pE-?m‹ ”››«·ÞzK (4UªTIk×®Õ7ß|CØA`rÊÈÈÐæÍ›•žž~Ûv™™™6l˜Þ|óÍBݦMýñÇzôÑGÍ®K„À¸¹¹Yå8óæÍS=Ô²eK;v¬À6III ÕW_}UèqF­íÛ·«fÍšV© s„À„LÊÎÎÖ‡~(éŸçuìØQ‡6jsõêUuîÜY›7o.ð~~~Z¶l™fÏžÍ3ÕE˜äûï¿7zQLLŒºwﮓ'OJ’Nž<©¶mÛê÷ß/°Æ µoß> 4È.õp;!pÖ˜÷é§ŸæÛwõêU…„„è»ï¾S»vítæÌ™ûvíÚUjܸ±Åu` !@‘¢¢¢´uëÖß;wîœú÷ï¯èèèß1b„6nܨ   [–€YB€"ïZ¸p¡rrrÌ:¦‡‡‡¦NªùóçËËËË’ò°:¨ .À’©q¹¹¹Z²d‰Y}òE -öy°%F„ÀX²jÜÖ­[ ½÷§0¯½ö!àÔB€ÛZ¸p¡Ù}¦L™¢íÛ·Û ¬ƒ . ¸Sãµfͳûedd¨_¿~:}út±Î €­„ÀxzÞþ–Цƭ\¹R)))Å:gll¬úöí«äääbõÀ–BàÊ”)S¬~Ë—/·è¼GŽÑ3Ï÷òåËõÅ_X|¬‰ V–““£¡C‡ÊÇÇÇÑ¥'­ZµÊìg¤bÅŠúûï¿->ÖÄs„ÀÊæÌ™£ªU«ª\¹r†}'NœÐ´iÓtøða¹»»«ZµjjÕª•BBBôÀÈÃÃæ5„ òÍ7ßû|õêÕÓ£>ª°°0µoßÞæŸs„ÀŠÎ;§I“&iÏž=†}Ÿ|ò‰ÆŽ«ŒŒ £¶?üðƒþóŸÿ¨aÆš:uªúôéc³ºÌЉ‰Ñ¾}ûL>¾›››î¿ÿ~Cø¹÷Þ{‹U'öB+?~¼zè!C˜2eŠ&Ož|Û>ÇWß¾}5zôhÍš5«ØK]ߎ¹#B[¶lQvvv‘ÇìÒ¥‹BCCª5jXR"vE+ùõ×_õÝwßéÀ’¤Ù³gBPpp°zöì©Zµj)%%EÛ¶mÓ®]»ŒFbæÌ™£€€½ûî»V¯­J•*fµß²eKû«W¯®^½z©wïÞzøá‡¦ÿP’„À ²³³õÒK/),,L-[¶Ô?þ¨±cǪjÕªzÿý÷5tèP¹»ÿo}š·ÞzK?ÿü³žzê)]¼xѰúôé2dˆ6lhÕú5jtÛ÷OŸ>­-Z¶ÿûßÿ^·hÑB½{÷Vhh¨Zµje“+ìÍ-·°§è¡HÁÁÁŠŠŠ2Ú©Úµk;¨"Ž2oÞ<9Rüñ‡Ô¬Y3Õ®][7nTÍš5 íwôèQuèÐA †}#GŽÔ'Ÿ|bÕúâããõÀèÔ©S¾ïã㣥K—ª_¿~’¤áÇ«U«VêÝ»÷më ¤"Y€ @’t×]w©cÇŽúöÛo5`À;wN6lPPPP‘ý?ùä5ʰ}÷ÝwëØ±c6©5;;[óæÍ3:_Íž=[#G޴ɹp&ÜtÊ”)ºzõªæÎËó¥#BJ¤¸¸8ýç?ÿQ5ôÐC饗^ÒäÉ“5lØ0ÕªUKo¿ýv‘£*þù§:vì(???}ñÅŪãßÿþ·<<<,EiÞ¼¹áµMB$uêÔɤÅæÍ›§ððp¥¥¥Ù¤  DÉÍÍÕܹsÕ A½ýöÛŠ‰‰Ñ˜1ctæÌ]¿~];wîT·nÝôŸÿüGƒ.4 íÛ·O­[·ÖÎ;•œœ¬ûï¿ßìZ8 U«ViÔ¨Q/(P¦LÃëfÍšÙ,uïÞ]“&M2©íš5kÔ½{w£…(-BJŒ¤¤$…††jôèÑŠ‹‹“›››æÏŸ¯Y³f©N:ò÷÷WûöíµvíZ7N+W®Ô¿ÿýï|Ç9þ¼BCC•œœ,IêÖ­›š5kfv='NT@@€&Nœhñg»råŠáõ<`ññnç­·Þ*p±„‚ìØ±C:uÒ¥K—lZöFP"¤¥¥©W¯^úñÇ û^~ùe >¼Àö|ð7n¬iÓ¦éàÁƒ†ý¹¹¹1b„¢££%Iîîîš6mšÙõüôÓOúùçŸõòË/«bÅŠf÷¿ÕáÇ ¯ dññnÇÍÍMsæÌÑ„ LjÿßÿþWíÚµÓñãÇmZöDP"Œ5J;vì0lשSGo½õV¡í===5fÌeeeVs“¤ hË–-†í¡C‡š=”››«‰'ªjÕªz饗Ìê[´´4mÚ´I’Ô´iSµmÛÖâcšbêÔ©F›Û‰ŒŒTûöíµÿ~W€}„8½üQ_~ù¥Ñ¾?þXeË–½m¿GyD’ôÃ?(55UW®\Ñ«¯¾jx¿|ùòzÿý÷Í®gÕªUúý÷ß5iÒ$ùùù™ÝÿVk×®Õõë×%I¯¼òŠÅÇ3Ço¼¡?þؤbbbÔ¥KCh $#pjYYYùF]:uꤰ°°"ûÖ®][~~~ÊÊÊÒ_ý¥gžyFñññ†÷§L™¢ªU«šUOff¦&Mš¤ºuëêÿþïÿÌê[œœ½ûî»’¤‡zHÿú׿,>¦¹^|ñEÍŸ?ߤ¥²“““¦¯¿þÚ•`;\eÊ”1»Ž/¾øBׯ_×”)SÌî{³„„õìÙS úþûïU³fM‹ŽgAAAúé§ŸjRûãÇ«]»v:räˆ+À2!NéÆJMM5ÚW§N“ûGDD诿þ2ÚgδºÒŒ3ôöÛokÔ¨Q&÷‹×Ò¥K‹}^[zá…´téRy{{Ù6;;[Ï>û¬Å÷W`m!NëÖ{zΞ=[dŸ &O@@€¾ûî;ýôÓO’¤¯¾úJ999†¶[¶lѬY³T¶lÙ|ÇÉ úÿïÿûá©+W®ÔË/¿¬±cÇjÒ¤I&õ‰ŒŒÔĉ¬>ø X絇êÇ4yջɓ'ëùçŸ/pÊ#Žàéè 0}ûöÕÚµk Û?ÿüóm¨:wî\}ôÑG’þypêÆÕ¦MIRÕªUµoß>;VãÇׯ¿þªÑ£Gë³Ï>+ðX‹-R‹-Ô¥K—bÕþ믿jèСª\¹²jÖ¬©E‹)((Hòóó3´‹×Å‹uøðaíÙ³Gû÷ï7Œf 0 Xç¶—mÛ¶M={öÔµk׊lÿé§ŸêÚµkZºt©|||ìP!…sË-hþL¬¨¨(£}‘‘‘ª]»¶ƒ*J—ÔÔT5nÜØð\___8p@wß}·Q»œœM›6M¯¿þºrssÕ A}ûí·jÚ´©¡M«V­ôûï¿õkÚ´©þøã|Ï&ÊÍÍÕ}÷ݧo¿ýVuëÖ5»î#GލcÇŽJHH0»o>}ºDüûäôéÓzä‘GtòäI“ÚwîÜYk×®Uùòåm\…cj§U¶lY-Z´ÈðìŸääduèÐAŸ|ò‰¢¢¢¥Õ«W«M›6š8q¢|}}õæ›oêàÁƒF!H’úôéc´íéé©/¿ü²À´nÚ´I¡¡¡Å A‰‰‰êÝ»·E!H’ T"B$Õ«WO»wïVëÖ­Mjÿ믿ªS§Nº|ù²+ pŒY€!À>"""4räH>|¸À÷ƒ‚‚4dȽöÚk…>ë'%%E!!!Šˆˆ$Í™3§ÐÅ ž{î9}ôÑGÞ;T”ÈÈH=ÿüó:wîœbbb”‘‘¡„„„o$•+WN^^^ªZµªjÖ¬©¶mÛjüøñÅzø«#¥¤¤hàÀZ·nIíëÔ©£Í›7«Aƒ6® €üB öµk×.-Y²D;vìPjjªZ´h¡~ýú©ÿþ&…†ôôt}ÿý÷ªP¡‚BBB l§ãÇëÁ´vù.!;;[£FÒ¼yóLj_¹remذA­Zµ²qe#Y€ ›9s¦ÆŽ[èHØÍ|}}µjÕ*=òÈ#v¨ €pÀê^|ñE-\¸P^^^E¶MNNVŸ>}´lÙ2;TÀ?B›:t¨¶mÛ¦*UªÙ6##CO<ñ„¦OŸn‡Ê`jœE˜E;sæŒBCCõ×_9º$ýó!€MÕ­[W{÷îUïÞ½] !€ÍùûûkíÚµš0a‚£K@’äéèÀ•]»vM?üðƒŽ9¢k×®)&&F©©©JKKSff¦’’’”““£ÄÄÄû§¥¥)55ÕìózyyÉÏϯÀ÷|}}åíí­2eʨlÙ²òôô”¿¿¿üüüT£F 5hÐ@Ý»wW£FÌ:§‡‡‡¦Nª&MšhäÈ‘ºqã†Ùu`-Ü#dî`©V­Zé÷ßwtfóôôTBB‚|}}‹ÕÿÔ©S8p`‰ü쀒/22’!p¤9sæhöìÙ:qâ„.^¼háIKKsXMAAA†×y£AåË—W¹r夆 êÑG-v’¤úõëkÏž=zçwôí·ßªW¯^úðÃMzîÖÀˆàW¯^U—.] «°5hÐ@Ç×½÷Þ«ÀÀ@ùùùÉßß_rss3ô»uÛÙLŸ>]_~ù¥¢¢¢Š5ÝSEFF„,A`o×®]S—.]ôçŸö8p@÷ÝwŸ«²¾„„]ºtI×®]Sjjª’’’”žž®””èÙÍ#gÉÉÉÊÈÈ0:F||¼Ñv^ÿÂäææ*!!Á¢º‹{ÏÖÍ®_¿®ììl‹Ža IIIÊÌÌttlÄ××WåÊ•“¿¿¿Ù}oܸ¡¬¬¬"ÛåÝûê ˜%Htt´ºvíj‚$•Ê/§ TãÆ] àÔ•““ãè2Š¥ 0Š«¨:Ì‘••eÖb.EýxQÔG …N ¾Ý47‡›?^ŸÌÌLÅÅÅ)>>^—.]2ª¡mÛ¶5j”š5k¦;î¸CE~N{ËÈÈPrr²ImÍý!ëÆª^½:AJ‚˜˜uíÚUGÍ÷Þ¥K—PgP¾|yG—Pl7ßÛ¹|ù²jÖ¬i´ïÙgŸÕàÁƒT‘i¼½½åíímrû *˜}ž#N.>>^=zôБ#G |ÿâÅ‹v®PR¼úê«ùF¬þøãUã\'«:t¨Ð6!@AæÍ›§¯¿þ:ßþ_~ùÅÕ8F„ÀIÅÅÅ‚$éôéÓvªPR$&&êµ×^+ð½?ÿüS×®]³sE· N(..N?üp‘!Húçá¤Üìûï¿/tÜÜ\­^½ÚÎ9‚8™øøxuëÖÍä9ÜŒnµÿþÛ¾¿hÑ"ûâÄBàDÔ­[7ýþûï&÷¹qㆮ\¹bê%Íž={nûþ¾}ûŠlSÚ„ÀIä… ˜Ý—éq€>> Õ¼yótþüy­\¹R:u2û8 еA…€’àõ×_/v’¤””9ÒŠ9?‚8 =þøãÚ¶m›&OžlvÿË—/Û *€³;tè>ùä‹óË/¿híÚµV¨¨d €“qssShh¨ÙýbbblP ÀÙ}ñÅV[ì`æÌ™V9NI@'ô×_¸¿I“&Z¾|¹V®\©1cƨzõê†÷nܸa¯òN¤}ûöºûî»U©R%¹»ÿë}ùòå]ê!K°‹%°•¡C‡æ{„¿¿¿Nž<©ªU«öåäähÇŽZ¿~½Æ§5jØ»T€+èûªÄwVIòttc¹¹¹úé§Ÿòíê©§ŒB$¹»»«sçÎêܹ³ª t`j8™#GޏðAxx¸ª t"€“Ù¼ys¾}ÕªUSÛ¶mP ¥AœLAÓâúöí+T@éD'’ššª;wæÛßµkWT@éE'²ÿ~¥¥¥ísssS‡T¥AœÈ®]»òíkÔ¨‘ªT©â€j(½BàDvïÞo_§NP ¥AœDNNŽ"""òí'`}!pÇWBBB¾ý>ø ª t#€“øóÏ?óí TÍš5P ¥AœDAA¨iÓ¦rsss@5”n!pÿýw¾}÷Þ{¯* ô#€“¸råJ¾}M›6u@%”~!pׯ_Ï·ïž{îq@%”~!p‰‰‰ùö5jÔÈ•Pú„ÀIU®\Y+Vtt”J!peÊ”1Ún×®ƒ* ô#€“¸ãŽ;Œ¶ì J(ý<]àC‡ÕéÓ§U½zu 0@ýû÷wtI”Z!pƒf;aj—CàrB\A€Ë!p9!.‡ À儸‚—CàrB\AÀqqqj×®ªU«¦ *ÈÝÝ]eË–U… T§N­]»Ö¤ãœ:uJíÚµSÅŠU¡BU¨PAUªTѲeËlü ×D‚Ÿ\Y… ôðÃëêÕ«ŠWnn®ÒÒÒ¯ûî»O¡¡¡&çâŋڳgââ⯄„ýûßÿÖàÁƒmü ×D‚Ÿ\]xxx¾}š={¶<<ù„`\®¬FùöuèÐAÕœ2àh IDAT«W7ùû÷ï7¼7nœFm•ÚŒ «àpeýègꌈ<_}õ•$©W¯^š6mšUêP8‚¬‚ À•¥¦¦æÛתU+“û¯]»V¿ýö›î¹ç-[¶ÌäÙŠ «àpe)))FÛnnnjÚ´©I}ãââ4zôhhÍš5 °E‰náéèP:p¸²[¯ƒµk×V`` I}Ÿþy]ºtI«V­Rƒ lQ€„`\®,11ÑhÛÔëÙÒ¥KµråJ;Výúõ³Ei ÁÔ8XÅ­€»îºË¤~_ý5@‰m´\dŸ‹/j̘1jÓ¦¦Nj£Ê† «ˆ‰‰1Ú®]»v‘}Ο?¯1cƨmÛ¶\%š¹×Áœœ :TžžžZµj•¼½½mY€05Vqë/a¦\† &///­\¹R^^^¶,›2÷:8mÚ4mÛ¶M›7oÖwÞiËÒ‚ «àpe·ŽÕªU«Ð¶{öìÑ¿ÿýoMžBbæÌ™Ú´i“vìØ¡J•*Ù³< Á*¸\ÙÍ×Á‚~ üí·ß4aÂM:U­[·¶gi ÁOò° .Wv»ë`tt´ú÷ï¯nݺ饗^²wi Áˆ¬‚ ÀU¥§§ëƆíªU«^geeiàÀÊÉÉÑ¢E‹äææV¬s\¸pA_ýµöíÛ§óçÏ«råÊjÒ¤‰üqµjÕÊâϸ"‚,f ÀÍNŸ>­AƒÉÓÓS{öì±øxXâÖ•S+W®lx=qâDíØ±C[·nUÅŠ‹uü h̘1JMM5Ú¿iÓ&MŸ>]C† Ñ‚ äéÉ×:ÀLƒÅL¹,[¶¬Ø€[Mœ8Q¿ýö›Îž=k•ã`‰[¯ƒ’¤o¾ùF~ø¡&Ož¬:ëØ‡Ò„ ôöÛoëÔ©SŠ‹‹ÓÁƒ5nÜ8CðY¼x±¦M›fÙ‡\?ÀbE]¦L™Rì @A¶mÛ&IJHH°Ú1(®[¯ƒ~~~:pà€ž~úiuéÒE¯¿þz±}àÀíÛ·OõêÕ3ì RóæÍÕ¥K………)''G .´è<€+bD³åàVׯ_7œ/--M999V;6ÅqëuðàÁƒêÝ»·üüü,~\Ĉ#ŒBÐÍzõê¥þýûK’Μ9£”””bŸpE!XÌ–€[%&&mgeeYíØÇ­×Á7*::Z‹/VõêÕmzîÁƒ^{yyÙô\@iÃÔ8X¬  €»»»6nÜhõ @vv¶Ñvff¦¼½½­zÌqëuP’^}õUuëÖÍæç¾ë®»$IÕªU#fbD³çàÖq8Ú­×Á:èí·ß¶Ë¹¯_¿.IêÞ½»]Δ&!XÌž£íÌÌL›œSÝ|¬^½ºV®\i·¥¬wîÜ)I ·Ëù€Ò„ ‹EGG^W­ZU+V¬°Ù€!€³É»zzzjÅŠ6¿/(Onn®/^¬–-[ªGv9'Pšp,+韛4W­Z¥5jØì\·!F„Ž–wüàƒÔ±cG»wÅŠ:räˆ6lØ`•–®†!X,oJÀÔ©S­ú¼ ‚Üz#(#BG‹×€4vìX»3..NãÆÓСCõÈ#Øí¼@iB‚Åìy`jÀÙŒ;V‹/¶Û¨LNNކ.Íž=Û.çJ#¦ÆÁbcÇŽÕÈ‘#ír¸uDèÖå´°·_|Ñ®ç{óÍ7¡;wÊßßß®çJ‚,fÏ €‡‡‡ÜÝÝ•““#‰!€kYµj•æÎ«­[·ªAƒŽ.(ј‡ÇÝýÿ³ÍÈÈp`%ØÏÁƒ5zôh­[·NÍš5st9@‰GB‰’™™i4 ïÀj° .(<<\‹-RÛ¶m]P*”¨©q™™™ºxñ¢öíÛ§k×®i̘1Ž. v–’’b´ç J°ØØXuëÖMO>ù$+ÄVäôA(99Yï¿ÿ¾-Z¤Ë—/î ¹÷Þ{ B.(!!Áhû懹PÚ¤¤¤(,,LÇŽÓåË—uìØ1yyy)11Q)))ŠULLŒrssÕ¦M5iÒÄÑ%%†Ó!___½óÎ;ª_¿¾† fØ_«V-VG9|ø°Ñö‘#GT ¶•••¥AƒiÏž=’¤yóæiÞ¼y¶õòòÒèÑ£5cÆ {–ØLFF†®^½ª   ùùùÙäN„ò 4HO?ý´rss%Iõë×wpEp„7mç](mFŽ©~øA P@@€|}}¨J•*©ZµjªW¯ž7n¬:¨|ùòŽ.°ÈŠ+´`Á:tH111’¤»ï¾[ÇŽ³ÉùJLJKK3„ Ijß¾½«#œ?^¿ýö›êÖ­«””©|ùò:pà€Zµjåèò°š¬¬,}ðÁš3gŽ|||]`TåÊ•bØgËÁ„®]»f´Mr=5kÖÔ]6çéé© *8º Àîn]Þ–ßùKÌòÙG5¼nРªW¯îÀjXÛ•+WŒ¶;uêd³s•˜ ´wï^ÃkFƒ€Òçĉ†×¾¾¾ºï¾ûlv®„""" ¯»víêÀJà*f̘¡ºuëjàÀúâ‹/tõêUG—€Sz÷ÝwuÏ=÷häÈ‘úñÇ•––æè’PBíÛ·ÏðºsçÎòòò²Ù¹JÄ=Bééé†{CÜÝÝõðÃ;¸"¸‚íÛ·ëìÙ³:{ö¬V®\)wwwµnÝZ>ú¨  àà`G—€Sسgþúë/ýõ×_úì³Ïäëë«îÝ»«oß¾ eE;˜l÷î݆×Ý»w·é¹JĈÐÎ;•šš*IjÞ¼¹ªT©âàŠà n£š““£ˆˆ½öÚkª[·®Úµk§9sæ0Rpy·.j•œœ¬Õ«WëÉ'ŸTÕªU¦Å‹ç{0:p³›?$‚$ãgÇØúäÉ[¿¾ ¹¹¹Ú³gÆŒ£;î¸CÝ»w×¢E‹”˜˜hÇ pqqq…¾—žž®uëÖièСªV­šBCCõÕW_ŠÏöíÛ•žž.IªS§Žîºë.›žÏ)¦Æeggë—_~ÑÎ;uõêUU¬XQ½zõR»ví”””¤¯¾úÊж[·n¬®$;;Ûäv[¶lÑ–-[4räHõìÙSƒV¯^½T¦LW €ã™zÍLOO×úõëµ~ýzy{{+$$DáááêÓ§m\%œÝ?ü`xÝ£G›ŸÏ¡#BÙÙÙš7ož‚ƒƒ5|øp•+WNÔ]wÝ¥¾}ûª~ýújß¾½bcc%IþþþjÛ¶­#Kn+--M«W¯VÿþýU­Z5=ÿüóúý÷ß]N'##C6lаaÃT­Z5õíÛW«V­2Ü×’““c„ì1 Ìa#BgÏžÕO<¡={öèÙgŸÕŒ3T®\9Ãûnnn6l˜QŸ‡zHÞÞÞö.(–ÄÄD}úé§úôÓOÕ¬Y3 >\ÿú׿x@·HOO×ÚµkµvíZ¨oß¾4hBBBäáááèò`%ÿýïµtéR9rDêСƒFŒ¡ *hÍš5:þ¼$ÉËËK]ºt±y=ŠˆˆÐ< ˆˆMŸ>]Ÿ}ö™Q’¤>}úäëÇ´8û –›››Kþeµ¿ãáÇõ /èŽ;îÐàÁƒõË/¿(''ÇjÇ€’Ê•¯3¥ék^3¯_¿®¯¾úJ=zôÐwÜ¡^xAÊÍ͵Ú9`_gΜѣ>ª-Z(**J'NÔ´iÓ¯ºuëjذaú¿ÿû?Cû¶mÛÊßßßæuÙ=íÞ½[!!!Љ‰Ño¼¡—_~¹Àvùþ,›’.--MË—/WHHˆêׯ¯wß}WÑÑÑŽ. §tõêUÍž=[mÛ¶UýúõõÖ[o)22ÒÑeÁ «W¯VóæÍµk×.mݺU+V¬P‡Ô¨Q#½ÿþûêÝ»·-Zd´à†=î’섎;¦Þ½{+%%E=zôД)S m›››«ŒŒ ÃvíÚµm¾r`OgÏžÕ¤I“T»vm=÷Üs:uꔣKÀi9sFo¾ù¦êÕ«§®]»jýúõŒ9¹™3gªÿþòõõÕîݻթS§|mžzê©|ûìµJ´Ý‚Ð7ôØc)!!Aúâ‹/äææVhûK—.–Ï“ B镚šªo¿ýVü±²²²]NÏÍÍääfÏž­—^zI^^^úöÛou÷ÝwØ®qãÆFÛU«VUóæÍíQ¢ýKxå•Wô÷ßK’Ư;î¸ã¶íwíÚe´MBiS¾|yõéÓG PHHˆ¼¼¼]N«N:2dˆžzê);ºÜÆúõë5vìXIÒ| víÚÚöÖï?!!!·,±&»¡Ý»wëóÏ?—ôÏØy˜ÛY¾|¹áµ»»»ºvíjÒ¹¢££µeË5mÚTMš4)^Á0påy¸ÁÁÁV½ùS’üüüª¨Gòññ±êñ(MªT©¢Ç\ƒ Òƒ>h·/È(¾sçÎiÈ!ÊÎÎVË–-5f̘۶¿råŠÑ¶=?ì„&Nœh¾8p`‘«@DFFjýúõ†í–-[ªbÅŠEžçèÑ£jݺµRRRôÀhß¾}–XAÙ²eÕ³gO 0@½zõÊ·B"¸2WþÁ­4±æ‡þþþFËg{z:ìi/0Snn®† ¢øøxIÒܹs‹\þüÀ†×nnn¥+íÚµK;wî4l>¼È>‹-2zB±©{ï½Wýû÷×âÅ‹uúôió‹¬ÄÛÛ[Ý»w×€f—% (©|||Ô£G  rtI8-®›¥KFF†Þxã ÃöK/½TdŸË—/kݺu†í¢¾ó/X°@cÆŒQjjªÑþM›6iúôé2dˆ,X`ò(¢MƒPNNŽÑ‡+hɼ[¥§§ ‘ùúúªmÛ¶&Ÿ³E‹’þš»qãAÅfÊÿ‰|||Ô­[7õïß_aaa ´Ce8—¢¦?åñööÖÃ?¬þýûëÑG%ü”"K—.Õ¹sç$IAAAêÝ»w‘}.\¨ÌÌLÃv·nÝ m{èÐ!M˜0Ao¿ý¶úôé£ *(**JK–,ѬY³”••¥Å‹«aÆzýõ×MªÙ¦AèèÑ£Š5lßnň<§OŸ6ZB¸cÇŽf…™š5k^ß<½0Waÿ»+[¶¬zôè¡þýû«wïÞ °se8— *èÌ™3¾çã㣇~XáááühXŠÍŸ?ßðúá‡6)¯X±ÂðÚÇÇG;v,´í´oß>Õ«Wϰ/((HÍ›7W—.]¦œœ-\¸Ð9‚Э÷éÜ\ø­²³³¡˜˜£ý;w6ëœ*T‡‡‡²³³•““cV_àfeÊ”1¼öõõU¯^½Ô¯_?õêÕK¾¾¾¬ çR¥J£m___uïÞ]}úôQXX˜Ê—/ï Ê`QQQÚ»w¯aÛ”Õž/_¾¬£G¶Û·oÛ¥FŒQè{½zõRÿþýõÍ7ßèÌ™3JII1iq*›¡¼#òVPZZš ¤'žx"_x2eéf RLL AiÚ´©î¾ûnõë×O<ò7nPˆ|PgÏžU§NÔ»wouíÚÕèE”n;vì0zÀmQÏyÊÉÉÑ/¿übÔÇÒÕâ¬o¾ùFRþgƦAèÖ•²’’’òµ¹zõªÂÃÃåçç§~ýúiÔ¨Q†÷|||tß}÷Iúçö÷ßç{úlAòSã`‰… :ºJ„I“&iÒ¤IŽ.rèÐ!£íÛ­ü–™™©/¿üR—.]2ÚÿÐCYTÃ]wÝ%IªV­šÉAÈÝ¢3¡iÓ¦FÛß}÷Ñö®]»Ô²eK8qÂðÀÕÄÄD£þeÊ”QLLŒÞ}÷]“Ÿ"ìíí-‰ ØÚÍkH…/ž‘ššªAƒ©sçÎ:{ö¬a™2eÔ¼ys‹j¸~ýº$©{÷î&÷±éˆPÆ u×]wéĉ’¤O>ùDnnnºë®»ôÓO?iݺuª\¹²¶nݪ;ï¼S’tãÆ CÿŠ+jÅŠš7ož–-[fòƒ(ónr¿yÑÖwëwô .¨Q£FFûbccõØc)44T 6Ô•+W ïµlÙÒ0Q\yÏ- 7¹MG„$é£>2,Cœ­Y³fiôèÑúþûïÕ½{wýöÛoFÓÝn^FqÓ¦MúôÓOµbÅ U¯^ÝäsæÍ7¼y9>Ö×°aC£íÕ«Wmïß¿_­[·V`` Æ/IJII1¼Ÿ7”žž®­[·š}þœœ-Z´H-Z´P=LîgóªöìÙSÛ¶mÓ¬Y³tøða•+WNÍ›7×!C œ سgOýðêX±¢^|ñE=÷Üs&?)OFF†$F„[ ×Ë/¿løîýùçŸËÏÏOõêÕÓ¯¿þªU«V顇ÒÒ¥Kåææ&Éø{zjjª–,Y¢¥K—jùòåfŸåÊ•úóÏ?µaÃÃñMá–{ór ¥D­ZµtþüyíÝ»W­[·¶Ùy‚ƒƒe´/22Rµk×¶Ù9Sô}U²þwÖ©S§jâĉùö»»»ë¹çžÓŒ3ŒžÑ¦uëÖ¶ï½÷^mذÁè™ ¦ˆ‹‹Ó=÷Ü£îÝ»kÑ¢EfõµùÔ8GÈj‹ŽŽvp%@é7aÂÍŸ?_5’‡‡‡ªW¯®!C†(""BsçÎÍ÷ ú*((HµjÕÒ”)SôÛo¿™‚rrr4|øpùûûköìÙf×ló©qö–••ex~ÑÕ«W\ Pú¹¹¹iĈ·}ðéͬÁƒ[tÎÉ“'k÷îÝÚ¹sg¾Çö˜¢Ô¡ØØXÃT###[ «[µj•>ùämݺ5ßb ¦*uSãÎ;gx·Œ€ÒáàÁƒ=z´Ö­[§fÍšû8¥.ÝüdÛ½{÷êôéÓ¬€µœ;wNýúõÓ’%KÔ¶m[‹ŽUê‚Ю]» ¯ÓÓÓ5|øpž'”p±±±êÑ£‡†ªnݺY|¼RuPll¬.]º¤F)::ZÙÙÙ:yò¤Ö¯_¯¾}û:º<Å’’¢°°0;vL—/_Ö±cÇäåå¥ÄÄD¥¤¤(66V111ÊÍÍU›6mÔ¤I“"Y*Ÿ#d/)PJÕªUKƒ.vÿzõê)<<ÜŠ9?‚P ¼öÚkÅÑ™0a‚<=]k5‚P 4lØP=zô0»_åÊ•õÄOØ "çFJ‰ñãÇ›ÝgÔ¨Q*[¶¬ ªqn! ”èÒ¥‹Z´harû2eÊhäÈ‘6¬Èy„€Rdøðá&·íÓ§ªT©bÃjœA(Eúõëg“¶¥ A(EªU«¦àà`“Ú¶nÝÚ¶Å81‚PÊ<òÈ#E¶¹÷Þ{U³fM;TãœB@)óúë¯+ à¶m¦Nj§jœA(eî¼óN}ùå—…>`uܸqêÕ«—«r.! êׯŸÞ}÷Ý|û{ôè¡iÓ¦9 "çBJ©×^{Mƒ 2l7jÔHß|ó<<<X•s ¥Ø¬Y³äíí-Iš>}ºüýý\‘sðtt°¬¬,ݸqÃÑe˜,==])))V9–5?{nn®,j—““£ÄÄÄßËÎÎÖõë× |ïvŸ#%%Eééé’¤„„åææ*##CÉÉÉ’¤¤¤$ÅÄÄèêÕ«ÊÈÈôϽA_}õ•jÖ¬)___ùùù)00P~~~òóóS¹råäãã£råÊÎãïï/OÏbƒ»»»Ê—/Û¿ÃÍí™óWp)éééº|ù².^¼¨ÔÔTÅÇǾ$dff*))ÉèËRRR’233Žo´×ïv•““Sìºo÷EÆTiiiJMMµèö’œœløb ä8qâ„Nœ8áè2*22Rµk×&ì/77WŸþ¹Ö¯_¯÷Þ{OMš4ÑÓO?­õë×+::ÚÑå\A`Wqqq4h¶lÙ"IÚ±c‡&Mš¤åË—+--ÍÁÕ\A`7gΜQ¯^½ô÷ßö]¿~]¯¾úª«¸"VØÅÞ½{õàƒ… … °¹o¿ýV]ºtѵk×] ’B›9s¦ PbVC¸îØDff¦ž}öY-\¸ÐÑ¥A`uÉÉÉzüñǵaÓÚ7iÒD›6mR5l\ÿ ¬*..N¡¡¡Ú³gIízè!­]»V6® €ÿá!€ÕDFFªmÛ¶&‡ ¾}ûjÆ „ €Ý„VqôèQuèÐAÇ7©ýóÏ?¯o¿ýVeÊ”±qeäGXì×_Uûöíuá“ÚO˜0AsçΕ»;—!€cpÀ"kÖ¬ÑàÁƒ•––Vd[Í™3GÏ=÷œ* pü(¶9sæ¨ÿþ&… -_¾œp !€Ùrssõæ›oj̘1ÊÉÉ)²½ŸŸŸÖ­[§ððp;T@ј0Kvv¶FŽ©ùóç›Ô¾ZµjÚ°aƒZ´haãÊ0A`²””=þøãúñÇMj_·n]mÞ¼Yõë×·qe˜‡ 0Ill¬z÷î­½{÷šÔþ¾ûîÓ† T¥JW€ù¸GP¤ÈÈHµoßÞäÔµkWm۶ͬtýúõâ–€ÙB€Û:|ø°Ú¶m«¿ÿþÛ¤ö І äïïoÖy/^\œò(‚ PÛ¶mS§Ntùòe“Ú5JË–-“···Ùç:tèÙ}(.‚ @«W¯VÏž=•˜˜hRû &hΜ9rw/Þ¥%22RÙÙÙÅê €¹B€|>þøc…‡‡›ô T}þùçš:uªE猋‹ã>!€Ý„yJ;v¬IJõññÑòåËõÌ3ÏX|îääd¥¦¦Z|LÁòÙIRVV–ž}öY}ùå—&µ Ô÷߯Ž;Zåüééé&@` !€’’’ôøãkãÆ&µ¯V³-(óIDAT­š6nܨæÍ›[­†´´4‚ÀnBàâ®^½ª^½zé÷ß7©}ݺuµyófÕ¯_ߪu0"°'îvæÌuèÐÁätß}÷)""Âê!H"ì‹ .êÀzðÁuòäI“ÚwéÒE[·nU•*UlROFF‹%ì† .èçŸV—.]tíÚ5“Ú?öØcúñÇ`“z²²²”͈ÀnBàb–,Y¢ž={êÆ&µ=z´V­Z¥2eÊØ¬¦¼DØ A\ÈÌ™35tèPeffÙÖÍÍM“'OÖìÙ³åînÛËEzzº$‚À~X5\Ä”)S4yòd“Úzzzê³Ï>ÓðáÃm\Õ?B{#€‹HJJ2©]Ù²eµ|ùr=úè£6®èB{cj¸ˆçŸ^žž·ÿý+((H›7o¶k’þ„L™²€5„ÀE+<<¼Ð÷kÔ¨¡íÛ·«C‡v¬êyA(++Ëîç¸&¦Æ€‹ÈÈÈPÆ |¯aÆڼy³j×®mçªþ‘7DØ AJ¹ØØXµiÓF§N*ðýx@?þø£*UªdçÊþ';;Ûè?°5¦Æ@)·víÚBC$-[¶Ì¡!Hú_bD`/!(åþþûïÛ¾_Ô ö@ØAJ¹k×®9º„"å ¦Æì… ¥\jjª£K(÷ì ¥\I BLØ Aèÿ·wo±QUmÇŸvÚ2¥ö0-hD"¨ h¡EI@Œ)båNSÐFõFä¬é‰rã…Ḩ"$œ£Û  Æ"BK)=ÐvJéwaf3•B§é^»³þ¿¤™µ§»»ïÀÌûÖÚà†C  ‚À-!Hp·oß6]B¿˜pAÜpè15à6‚$¸ÎÎNÓ%ô‹ pAÜp˜nÆöÙ·„ÆÑ¸  ®§§Çt ý"ÜF€7œ‚Sãn!Œã>B·„ÆÝ½{WAà‚$¸pÈð²pÓø‰  n8„‹ðÚ áÚ‰ 0Ž pAÜpè…§Æ„n!Œ  ‚À-!HpÃ!\„kÝ+@b @‚KJJ2]B¿èÜFî„n!õã½÷ÞÓSO=¥ÜÜ\ù|>%%%9_uuu÷ {ù5~üx…B!¯¼ p[Šé¼nܸqº|ùr\®µqãF¥¥¥ÅåZ/ÉÉæÿOŒ©q·™÷ó¸·ß~[YYY1_gܸqZ»vm*€Äî±YÀ-¡~dffê7Þˆù:[¶l¡À“¼°™B8…o¬ ÀP#Eáƒ>ˆ)ÄLœ8Qeeeq¬âÇ Aˆí³n#EaìØ±1MkÛ´i“RSSãXÄ—‚k„n!EiÆ JIøÞO>ù¤^ýõ!¨âà Aˆ5B·„¢4a­Y³fÀ?÷á‡Ò ài^Bt„n# ÀÆ´Íì£>ªòòò!¬÷¸ 4Ï>û¬–-[õùï¾û®ÒÓÓ‡°"ˆ!€B´iÓ¦¨>4dddhýúõ.TÃ!€ÛBTXX¨Å‹÷{Þk¯½¦œœ*€Ø dÊïPa³€ÛÌ¿û C[¶lé·+ôꫯºT áN7T¸… 4EEEZ´hÑ¿?räHÍ™3ÇÅŠ`ð¼°FˆŽÀm¡AÚ¼yó¿·aÃ9ÒÅj`ðÒÒÒL—Àf ׄé¹çžÓ+¯¼rßó .ÔG}d "¿ßoº6K¸Ž ƒ­[·ö:?~¼*++=±ð¢áóù<ÕbjÀ-|bÁóÏ?¯ 8Ç;vìШQ£ Vã…nt/±YÀ-¡mÙ²ÅïÚµK¿þú«:;; VÑóJbÀm)µµµúöÛoõá½µµU]]]þ¹[·n èÍ. ©­­-ªsÛÚÚ …¢:·©©)ªiÝÝÝjnn¾ïùŽŽµ··;LJÒ¡C‡äóù û¼Prr²²³³£ª/###ª)+>ŸOYYYq½f_ü~¿ÒÓÓõ³•““ãÊNV#FŒpmc‹ììlãÓ&ÝúsEZZš222L—ѯÌÌL¥¤¤˜.ã¡¢ù·Á­¿ÓýaÀm)GÕÇlºŽ„ÒÝÝ­Ë—/›.úå• DGà¶äëׯ›®`ÈO•””®A,TYY©P(dºŒ>Ù„>ìŒ‹ŠŠ”››k°°A,ô÷ß«¾¾ÞtŽÈðcc:räˆ3f}¸ƒ jllTcc£é2úd[jnnÖÏ?ÿì„À!°Ì;wÔÒÒâ© dóf ÇŽSWW—$)++KÅÅņ+;„À2êééñTŠd[Šœ·`Á¥¦¦¬ìAË„—‚Í¡£G:c¶Í÷„À2­­­’¤––Õôͦ téÒ%ÕÕÕ9Ç!pA,ÓÞÞÞëÑ líEvƒž~úiƒAsÅ€eB`™pêìì4\É=¡×ÜCËtttôzôƒP(Ò©S§œã’’ƒÕ€}B`/N‹dK:s挳^ËçóéÅ_4[X† –¡#ä ÇŽsÆEEE «û„À2^ìÙ„Xf„À2^ìE²!ݸqC555Î1ëƒÀ}!° AȼãÇ;¯3##CsæÌ1\؇ –éêê’$ݹsÇp%÷D†‚Pä´¸ùóç+--Í`5`'‚X¦»»[Ò½@äIIIÎØ† TUUåŒ_zé%ƒ•€½B`™p'ˆŽW¯^U]]sB.\pÆ@@_}õ•V®\©·ÞzK#GŽ4XØ%Åtwy±#dSjjjrƇVKK‹öï߯ÇÜ`U`:B`/¡H^­+^Þÿ}=öØc*((Ð矮“'O‚À:B`/¡ÈŽ—¦ì …òòr•——›.¬GG,@áµB^㥀H\!°Œ;BÉÉ÷ÞŽ¼T q„À2áͼÔ"ÜFË„ƒ—vgKJJrƉ¾Fà !°Œƒ!€ÛBàQŸ}ö™V­Z¥Ó§OÇõºáÚ¼„èÜ@ªªªÒ7ß|£y󿩏¸Xûöí‹Kx _#rËjÓ"§ÆÅ£#töìY•––êÊ•+1_ ˜BàQÿüó3>{ö¬Ö¬Y£iÓ¦iÏž=1mtàÅ ¯©qçÏŸ×êÕ«5{ölð¼ÚÚZ­^½Z³fÍÒwß}ç©×^RLÀ^ ºvíšêëëÕÑÑ¡––IRss³º»»ÕÙÙ©Û·oK’nÞ¼)Ijkk{`Ç ½½]ü}áë>È­[·úí¨„B!µµµ=ôœh¯ùúâåÒ¥KZ·nvìØ¡mÛ¶iùòå½B†äÍ5B‘¡¾‚Й3gôÉ'ŸèÈ‘#n–H`!®jhhÐúõëuüøñ>7@|\¸pA+V¬Paa¡¶oß®ÒÒRç{^\#ô ŽPUU•***tâÄ eA€«ªªª´oß>ÓeX£¦¦FK–,Qqq±¾üòKM:ÕéyiZYdGèÆÚ½{·>ýôS;w.¦ëƒÁ+3#++K>Ÿ¯ßóÒÒÒ”‘‘ágff*%åß·vŸÏ§¬¬,çù@ Ðë+77W“&MR~~¾RSS‡æ…€‡„¸ª¤¤D«W¯¦#ä¢Y³fióæÍš2eŠ$ov„"ƒÐÞ½{µwï^ƒÕ˜×ÜÜìÚï;v¬NŸ>­qãÆ¹ö;À B\•——§¯¿þZ’T__¯ëׯëÚµkº}û¶ÚÛÛÕÓÓ£¦¦&I÷Öuww; [ZZúÜ^ùîÝ»ºuëÖoë‡Âkæa듺ºººØ?¬©©iÈ;23gÎÔ¶mÛ´xñâûÖ y×ëKdW¯^ÕöíÛµk×.Ó¥€«BŒ=z´F­©S§š.Å“‚Á êêêüs………Ú¶m›JKKû á©SáG/ˆìÁ]3fÌPYY™é2ÀuÞyĤ°°P[·nÕ’%KÚañbЬwóæÍ ƒÚ¹s§ÎŸ?o°*÷E»6è¿€¤evv¶$)==]~¿_iiiÊÉÉQNN޲³³•““£1cÆhÒ¤Iš4i’³ŽlãwAÀ hëÖ­ZºtiTS̼„";BÓ¦MÓªU«T^^®ãÇ«¢¢B'OžÔuÿúë/Ö¾úÄ\¦f̘¡ÿý类®Ö²eË¢^gãÅ ÙÉËËsÆ%%%:qâ„N:¥ ˜(  B0Ìäççk÷îݪ®®îó†©ý  /m™œ––æŒý~ÿ}ߟ7ožŽ=ªšš­ZµŠÍ1#À01}út}óÍ7:þ¼Ö®];è Âh0kQ†Êˆ#úÿWAAöíÛ§_~ùå›A ‚xÜÔ©SЊ+bþðïÅŽPdøIOOï÷ü¢¢"8p@µµµtˆƒBÊÏÏ×þýûP¼:8áÐ9Í´Èépëý×ôéÓÑâÅ‹‡¢4@‚"€GçœïiŒŒŒŒÀ¨ÑhœÐz™4ºIí€Î#"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰HbÝF£Ý3ÐaìD‘ÄD$1 @LD‘ÄD$±îvÐ.###í¡cÙ‰ &"ˆ‰Hb"€˜ˆ &"ˆ‰HbÝî@ÊN$1 @LD‘ÄD$1 @LD‘ÄD$1 @LD‘ÄD$1 @LD‘ÄD$1 @LD‘ÄD$1 @LD‘ÄD$1 @¬»Ýð_6l¨_þò—õ®w½«–.]Z3fÌh÷H£jŒŒŒŒ´{€7³áááZ¶lY­^½úÈcÓ¦M«•+WÖ—¾ô¥šúÑžÔ뾑·³Ns_ûÚ×êÚk¯mùüW^y¥®»îº ½H8Cìܹ³þò—¿Ô«¯¾Z;wî¬={öÔk¯½VUUCCC5<<\ûöí«ýû÷×Áƒëßÿþ÷‘u¯;tèPíÞ½û¨k7›ÍÚ»wïQïÝ»÷¸~Ee´çáØüñºêª«ê‡?üa Ö¾}ûZ^;þüz衇ê=ïyÏIID@‡®[n¹¥~úÓŸ¶{&ÈŽ;êmo{[UUýéOª›nº©ž}öÙ–×Ož<¹¾ñoÔÊ•+«««ë¤Ì$" Ã=òÈ#uà 7´{ &ȬY³jûöíÿóX³Ù¬/ùËu×]wU’rW^ye=øàƒ5gΜžËg" Ãýö·¿m÷L Ë/¿ü¨Çz{{ëŽ;î¨ 6Ôyç×òµ6nÜX_|q­[·î„ç‘Ðá^|ñÅvÀúÈG>2ê±k®¹¦ž}öÙºþúë[¾ÞÐÐPÝ|ó͵téÒ#Ÿ‹=":ÜÐÐP»G`‚LŸ>½>þñyÎŒ3jýúõuß}÷U___Ë×^»vm-X° ž~úéãšMD@‡‘g®U«VÕ´iÓZ:÷Ö[o­gžy¦Z¾þÖ­[ëýï­Zµª>Íæ‹5ÐáæÎ[Û¶mk÷§…ÞÞÞš2eÊ ]£§§§úûû[~¼»»»¦NzÔãýýýÕÓÓSUUÓ¦M;ò­è·¼å-Gn.>}úôªªš4iRsÎ9Õ××W}}}5}úôš={vþùñü¬¯ýëõío»†‡‡[^wõÕW׺uëjæÌ™-/" Ã͘1£^}õÕQ{©sÚ¸qc-Y²$úÆÌ™3kݺuuõÕW{®·³ Ã8p Ý#pºòÊ+kË–-µdÉ’–×üóŸÿ¬|àuûí·»‹i':\ÿ˜?m神_üâµ|ùòÿùu¢ñ,^¼¸Ö­[W³fÍ:æq;‘ÐáD"ã¹ñÆë™gž©+®¸¢å5=öX-\¸°ž|òÉc‘ÐáÒoÕòæ4gΜzâ‰'ê{ßû^Mž<¹¥5ÿøÇ?jñâÅõƒüà¨cÞ΀wÖYgU³Ùõ¸—zþßÓO?]7ß|sýõ¯myͲeËêî»ï> v"ÞdjóæÍuë­·¶¼æÞ{ï­~ðƒõ¯ý«ªìD@ÇëííóÚ^êËúõëkÙ²eGâp<óçϯÇ{LD@§ëéé©C‡zÜK=ãÙ¾}{}úÓŸ® 6´tþg?ûYog@§›4ÉË9'æïxGÝÿýõö·¿½¥ó_~ùe ®»»»Ý#Ðá6nÜXµcÇŽ–Î?ï¼óD$tº×“ŽÇÝwß]×\sM½òÊ+-?uêÔºí¶ÛÊ] Ã‰HŽÇ®]»jùòåõóŸÿ¼å53gάßüæ7µ`Á ND’úãÿXŸøÄ'꥗^jyÍÀÀ@=üðÃ5wîܪrŸHèx===í1<<\ßüæ7ëŠ+®h9 F}á _¨ßÿþ÷G²ªìD@§;ûì³Û=àå—_®O}êSõøã·¼æœsΩիW× 7ÜpÔ1;‘ÐáúúúÚ=§¹Ÿýìgõîw¿; ÈÚ´iÓ1²JD@Ç›2eJ»Gà4µk×®ºå–[ꓟüd½öÚk-­i4µbÅŠzòÉ'kÞ¼y£žçílèp"’cùÃþPK–,©_|±å5çž{n­]»¶>üá{®ˆ€×ßß?æñF£qŠ&yó˜:uê1oòÞÛÛ{TÔŸuÖYG}nuÊ”)ÕÛÛ{äZ¯ÿ™6mZÍž=»æÍ›W—\rIË¿ óFÍf³¾ò•¯ÔwÞY‡nyÝõ×__÷Ýw_͘1£¥óE$t¸V_ô9yvïÞ=áÏÑÓÓS+V¬¨ï~÷»-¯yþùç릛nª-[¶´¼fÊ”)u×]wÕ²eË¢ù|&:ÜñìVqú;xð`ÝqÇõ /Œ{îáÇëûßÿ~½÷½ïò /¬§žz*È* ODžÙ~øá1¿ôÒKµxñâúüç?_Íf³¥k¾þå™M›6ÕE]t\sy;:Üœ9sÚ=è‰'ž8æã###õ£ý¨kïÞ½-_oæÌ™õÀÔ‡>ô¡šKD@‡[´hQ»G`ýýï?ê±mÛ¶Õg>ó™úÝï~]ëÚk¯­Õ«WŸ”ÝëÆÈÈÈÈ _h«G}´~õ«_Õ–-[jûöíµcÇŽ–ßÚäôÖÝÝ]¨F£QÍf³î¼óÎúÖ·¾U{öìiùgŸ}v}ç;ß©Ï}îs'íÛú"ÎPCCC544Tû÷ï¯]»vÕÞ½{«ÙlV³ÙüŸ·?÷ïß_ûöí;ò÷×Ï{Ýž={êÀGþ¾{÷î:tèИϽoß¾Ú¿ÿ¸3îܹsÜsZ½Ö‰®®¡¡¡hMÕÿ‡‡‡ãu‰-[¶Ôßþö·¬­[·Fk-ZTk×®­ .¸à¤Î$"N±ÿ÷·¾õ­'ý9&Ož\_ýêWkppð˜÷´|¸¾øÅ/Ö¯ýëš>}z]wÝuµtéÒzç;ßÙîÑF%"ˆy;€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ5ªj¤ÝC´ÃȈ :^v"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ûDŒÂ}$Gg'€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆu»ÿp¦j4íáŒe'€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆ‰Hb"€˜ˆ &"ˆu·{€‰222ÒîÎXÿ#]gü›2¬IIEND®B`‚fluids-1.0.22/docs/fittings/flush_mounted_beveled_entrance.png0000644000175000017500000003435014302004506024115 0ustar nileshnilesh‰PNG  IHDRß­Wê~’sBIT|dˆ IDATxœíÝyxTåÝÿñÏd#’ a ‚¨l"Tˆ(‚X±jA‹€ˆµ.”U° ZiEVT‹ Жŧ %aSPÙ!,ŠPd!A²Îï~™'C¶9™É93“÷ëºz]sÎÜsæ‹Z>ó=Ë}Ûìv»]pIBB‚î¸ã§}qqqÚ´i“E|Q€ÕPÙ¾nâÄÀ(“¾n¢óEø`2“¾nâ´3À(“¾n¢óEø`2“¾nâ´3À(“¾n¢óåák·ÛõÕW_iíÚµ„!Àëù|ønܸQ­ZµR·nÝÔ»wo}òÉ'¦~?a0ÊgÃ×n·kæÌ™ºçž{ôã?:ö§§§[Xe ²º€ò=z´æÌ™ã´¯~ýúúãÿhjt¾£|²ó3fL‘àˆˆÐgŸ}¦ÈÈH‹ªÀ5>¾3gÎÔ¬Y³œöU¯^]ëׯ׭·ÞjQU¸Î§N;¯_¿^ãÇwÚW³fM}õÕWºé¦›,©‰ÓΣ|&|;¦þýû+//ϱ¯Fúúë¯Õ¢E +ÀŸ8휟Ÿ¯!C†(55Õ±/((HË—/'x>Ç'Â÷ÕW_Õ7ß|Sdß]wÝeQEÿ‡ÓΣ¼>|>¬I“&9íëÓ§†nQEÎ_€Q^¾cÆŒQVV–c;&&Fo¾ù¦…à¯ß 6hõêÕNû-Z¤Úµk[TîóÚðÍËËÓèÑ£öuïÞ]>ø EÓΣ¼6|ßxã §9›ƒ‚‚ŠL®€/òÊðMMMÕ”)Sœö :Ô²‰4JCç 0Ê+Ã÷…^йsçÛÁÁÁzþùç-¬ϱd†«7ÞxC)))4hêÖ­ëôÞgŸ}¦yóæ9í4h6lhf‰.£óe³[×^{­.\¸    uíÚUÝ»wW:u´uëV½þúëNSHéàÁƒjܸ±Ùe‘ ;î¸Ãi_«V­´{÷n‹*ø"Ó;ßß~ûM.\$åææjýúõZ¿~}‰ã»wïîÁ €§˜~Í÷üùó†ÆÇÅÅUP%žÁig€Q¦‡oA×ëª3gÎTP%XÃôðÍÉÉ14~Ñ¢EúÛßþ¦ôôô ªÈ=t¾£Lßüü|Cãsrr¯ºuëêÁÔ’%KtñâÅ ª®t6›Í’ïø¯ß™™™Z¹r¥† ¢ºu벸ÀgùLø¢víÚy cŠë|9í 0Êôð-ü oyÄÆÆjóæÍ–„/ž`zøºÓ)Þu×]Ú¾}»š7oîÁŠ\Ç5_€'xåÜÎÅyòÉ'µnÝ:ÅÄÄX] n±dng#ÂÃõxñbõïßßêR¸æ ð¯ߦM›jåÊ•ºùæ›­.)÷içÔÔT]ºtÉ“µ8éÕ«—¾ûî;¯ ^:_€'”+|/_¾¬&Mš(""BmÛ¶Õ¼yó ÏÙ\›Í¦øøx­ZµJÕªUóÈ1=…®žP®ðµÙljذ¡òóóµk×.1B×]wþú׿êĉå.&<<\+V¬Ð‹/¾¨€ß¸ŒÎ`T¹®J•*Ú¹s§>ÿüsµoß^Ò•¥_{í5]ýõ2dˆŽ9bè˜Mš4Ñ–-[ôàƒ–§$SÐù<¡Üí¥ÍfSß¾}õí·ßjݺuŽEæsrr´dɵhÑBC† ÑÑ£GË<Ö=÷Ü£o¿ýÖ«®ïºŠÎ`”GÎíÞsÏ=úæ›o”˜˜¨Þ½{Ëf³)77WK–,Q³fÍÔ¯_?>|¸ØÏ0@kÖ¬QõêÕ=QJ…¢óx‚G/¬vêÔI«W¯Öwß}§?üá P~~¾V¬X¡–-[ê‰'žÐñãÇ㇠¢¥K—*88Ø“eTÂà rWS»ví´råJýðÃ0`€•““£·ß~[ƒ rŒ‹u{®g«qÚ`T…ÞRܲeK}ðÁ:xð žxâ …„„8½?yòdÝvÛmZ¿~}E–á1t¾O0åyž&Mšè­·ÞÒÉ“'5nÜ8U­ZÕñÞ®]»Ô£GuîÜY f”€¥L}˜¶V­Zš1c†’’’4nÜ8EDD8ÞÛ¼y³ºté¢?üáÚ½{·™e¹Œ®ž`ÉL!|âÄ M:Õq§³Ýn×矮¶mÛªoß¾Ú¹s§å•ÈW&þx7KÓ$::ZS¦Lщ'4gÎÕ­[WÒ•^µj•n½õVuïÞ]Û·o·²L_¹+àݼ¢• ׈#tìØ1½÷Þ{jÒ¤‰ã½ 6¨cÇŽêܹ³6nÜha•Ň/§FyEø Ñ Aƒ´ÿ~½÷Þ{ºá†ïmÞ¼Y]»vUçÎõÕW_YR/À¼*| kРAÚ»w¯–-[æ4íäæÍ›Õ­[7uíÚU_ýµéu]Î`”W†oÀÀ@=òÈ#Ú³gV­Z¥Ž;:ÞÛ¸q£îºë.uéÒÅ´Nøêç”(¯ß6›M}úôÑÖ­[•à˜?Z’6mÚ¤nݺéöÛo×êÕ«+´å´3À|"| ëܹ³V¯^­ï¿ÿ^T`` $iëÖ­ºï¾ûÔ¶m[­X±¢BB˜ÓÎOð¹ð-кuk½ÿþû:xð ž|òIG0îÞ½[ýúõS›6m<Ât¾O¨ðÍÊÊR~~~Eºˆ&Mšè7ÞСC‡ôÌ3Ï(44T’´gÏõë×OíÚµÓgŸ}摦óxB‰á;kÖ,µlÙR¿ûÝïôÈ#èµ×^Szzz™ÌÈÈP³fÍô¯ýË¥V­Z¥ûï¿_uêÔQpp°ªT©¢ ¸þ'øÿ5j¤ èøñã7nœ"##%]™;úPëÖ­õÉ'Ÿ¸õ£ Àqš€r³—bΜ9ö€€»$»${³fÍìÉÉÉ¥}ÄþÎ;ïØ%ÙçÏŸ_ê¸Ë—/Ûzè!DZ%ÙëÔ©cOLL,õs®JII±OŸ>Ý^£F §ïh×®ý«¯¾*÷q¯¹æ§ãÅÆÆz¤^@åQêiç#FèÞ{ïul:tHÿøÇ?J ó/¾øB’tíµ×–:nÀ€úä“OÛuêÔѦM›Ô©S§R?çªjÕªiâĉ:~ü¸æÌ™£úõëK’vîÜ©»ï¾[½{÷ÖÞ½{ 7**Ê#õ*¯2¯ù¶mÛÖi{ݺu%ŽÍËËÓ† $IõêÕ+qÜ›o¾©O?ýÔ±m³ÙôñÇ«iÓ¦elTXX˜FŒ¡£GêwÞQË–-%Ik×®U«V­ôä“OêôéÓ./::Úã5*—2Ã÷ê‰%Ž9RâØ={ö(55U’æÕ.^¼¨‰':í{üñÇWf±î Ñ!Côã?jíÚµêÚµ«òòòôÖ[oéúë¯×Ë/¿¬ÜÜÜ2suøÚ¹á `P™á{õ2z—.]Rvvv±c·lÙ"éÊ]Á%u¾óçÏWrr²c;((Hñññ.ì.›Í¦ž={ꫯ¾ÒÎ;õÈ#(++K&LP§NôóÏ?—úù† :m§¥¥i×®]Y2ÀÏ”¾iiiNÛ6›­Ä;~7oÞ,IjÑ¢…ªT©RäýÜÜ\½þúëNûxàÅÆÆº\°'µmÛVË–-ÓÉ“'õÒK/éâÅ‹?~|©ŸiÖ¬™ÓvJJŠÚµk§¾}ûêû￯Èr~¢Ìð=þ¼ÓvXXX™áÛ¦M›bßÿâ‹/Št–ýû÷w©ÐŠT§NM˜0AûöíÓ?ÿùÏRÇÞyçEöÙ ­?|ß}÷içÎT)À”¾çÎsÚ.énߟþÙ¬%…ï‡~è´]µjU§»©}A\\œn»í¶bß³ÛíZ½zµÚ·o¯>}úè»ï¾3¹:€/0ÜùL^qµ‚®W*>|/]º¤Õ«W;íëÚµ«ªV­êR¡Þ"00Pÿþ÷¿KíØív»Ö¬Y£Ûn»M½{÷Ö·ß~kb…oWfø^¸pÁi»¤Î· |m6›Z·n]äýU«V)33Ói_Ïž=].Ô›DGGë£>Ò—_~éxt©$k×®U‡Ô«W/m߾ݤ Þ¬ÌðMIIqÚŽˆˆ(v\ÁÎMš4)¶;^¶l™ó¨OŸ>.êºuë¦Ý»wkñâÅ%>ZUà‹/¾PÇŽõûßÿ^Û¶m3©B€72|·sÁÂ…eddè‡~¤b»Þ³gÏêßÿþ·Ó¾®]»–X¾ ((HC‡ÕáÇõÊ+¯”9³×¿ÿýoýîw¿S=´iÓ&“ªxë¾Û·owLPѪU«"ï/^¼X999Nû† bô«½Zhh¨ž{î9=zTñññ +uüúõëÕ¥KÅÅÅé‹/¾`²¨D O²QÜó»§œ¥¢oqÏöÆÆÆêü£¡B}ETT”^|ñE9rDÆ +öŸWa‰‰‰êÕ«—Úµk§+V˜¶#À:e†oõêÕ¶m6[‘1_ýµãõÕá»lÙ²"Ïö>ÿüó~¿0}íÚµ5þ|GwÆ °]»v©_¿~ºñƵdÉ’"g þ£Ìð½úºlá©!¥+Üé|íµ×:ÏËËÓßþö7§ñíÛ·×ã?^î‚}Mýúõ5þ|8qBãÆÓ5×\SêøƒjÈ!jÚ´©æÎ«K—.™T)À,†W5JJJrÚÞ´i“²²²$ízßyçú¨6lØàÒêKïUføöìÙÓi1üü|ÇZ¼¹¹¹Z±b…ã½F9^3FgÏž•tå&­åË—«oß¾žªÛçÕ©SG³gÏVRR’FUæL_ÙÙÙúç?ÿ©îÝ»+::Z/¿ü²I•<­Ìð ÔÂ… äØ7}út>}Zk×®u¬$5hÐ@’´|ùr½ýöÛ’¤æÍ›+!!A<ð€§k÷ µk×Ö¬Y³”””¤Ñ£G»4ÝfFF†fÍš¥={ö˜P!ÀÓlv0ýøã5tèPÇ‘«¥§§;Ƭ\¹Ryyy8p ÂÂÂ4vìX—®oâÿœ={V¯¼òŠ-ZTd:ÎâÔ©SG>ø žzê©JJ|…Ëá+I‡ÒôéÓõÑG{Ý1$$DQQQ5j”ž}öÙa@ÙΞ=«™3gjáÂ….…°ÍfS=4zôhuïÞÝ„ åe(| ;vLñññNKhüøñš0aB™³;ÁuÉÉÉŽÎÈÈpé3íÛ·×”)SÔ«W¯ ®På _éÊ3¼ÑÑѺxñ¢$iæÌ™3fŒG‹Ãÿ9wîœfÍš¥… ™o»$„0x§r‡¯tåÙÕääd5jÔHG-2%sÛm·iÊ”)>»„#ø›r§åùóç³]Ý{ッI"##5nÜ88qBï½÷žÓc`%ùöÛoÕ«W/µnÝZ+V¬`°X¹s×®]Ž×Å-#ˆŠ¢AƒiïÞ½úç?ÿ©[n¹¥ÌÏìÙ³GýúõSÇŽµnÝ:ª§Üá»sçNÇë6mÚx¤¤?ýéOÚ½{·Ö¬Y£Î;—ù™o¿ýV÷Þ{¯î¼óNǼÜó”;|wìØ!I v©ëBŲÙlêÕ«—” Þ½{»Uaß|ó:wî¬îÝ»ëûï¿7©R@¹Ã·à/ë¶mÛ–¹\ÌÕ¹sg­^½Z»víÒ#úH7Þx£ž|òÉ"k0<§\ýú믺ûM›6¹41¬wæÌÍž=[¯¿þºÓ´ Å ÕÓO?­çŸ^111&U•ƒ[ÏùÂ7¥¦¦jáÂ…š?~™Ï GDDhÔ¨Q3f Ó…€‡¾•Xvv¶þõ¯iöìÙÚºu«Õå@¥Wþ®àûBBBôÇ?þQ[¶lÑŽ;4pà@§¥#ƒÎNNœ8¡… ê½÷ÞÓÿû_«Ë¿Gø¢x¹¹¹Z¿~½vîÜ©Ÿ~úIË—/·º$ð „/\’››«sçÎ)99YçÎS^^ž.]º¤¬¬,åçç;VY*ØwµŒŒ åääÙŸ]âZÅ)))ÅîÏÌÌTvvv©õ®©¼J«ÍU®Ôj%OüGøðKv»]©©©V—Q.%ýXõYYYºté’áÏ•ôcº4%ý˜/|¬¼¼<§Ç&³³³µcÇ­ZµJÑÑÑ:v옢¢¢ ·¸»€ß±ÙlŠŽŽ¶ºŒrñÕº½ÅC=$éJHÏ;W“'O¶¸¢âÙ’““íû÷ïWRR’²²²”žž®¼¼<¥¤¤8~Uœžúí·ßtùòå–››«‹/–ù¥¿JÃÂÂâÉ?OAAAŠˆˆ0ôWÿ㊊*u)Å………9í Wpp°cÛf³©ZµjNcBCCuÍ5×8¶ƒƒƒ®ÀÀ@dz¶5Ôpõq ²9~ü¸š6mª¼¼àœ9s\ZÓ#RRRÜž(#,,Lµk×VóæÍuâÄ Uf\±§/_¾¬ÆëôéÓå:èŒ34nÜ8·‹Àˆ„„ÝqÇ’¤¸¸8mÚ´É⊊Wlçûú믗;x%iæÌ™^µ0Þ¤Høfggë•W^që Þp'ÞªHø~øá‡úõ×_Ý>ðœ9s”››ëöqð7EÂ×Sw+[}'ÞÊé§äädU©RE 6Tzzz¹nç SDD„ªU«fédx+§ð‰‰Qbbb‰ƒŸyæ-Z´È±Ý¹sg%$$T\uø!—–,põš½.. 1¾uëÖuÚ&|0ŽðÀd„/&s+|/_¾ìÑb¨ …o5T¥JÇ6SH`œ¡ðµÙlª]»¶c;33Óãàï …¯ä|ê9==Ý£ÅP¸¾™™™0¹¾’<²•‰áð­_¿¾Óö©S§}Ô¢E ­[·Îê’¼ŽÛÁ»?~\yyyNû¶lÙ¢-[¶èºë®ÓsÏ=§'žxBU«Vµ¨BþêØ±c4hö_ýwè|ýNFFF‰ïýüóÏ1b„bccõòË/+--ÍÄÊø»ØØX}óÍ76l˜ÓþÖ­[[T‘÷"|ýL~~~™cΞ=« &èºë®Óˆ#túôi*P¨eË–Ží ¨nݺVä_?¦Ã‡kÒ¤Iª^½ºÓ{/^Ô¼yótýõ×kÔ¨Qúå—_,ª€?9uê”ã5SðõsÍš5SÓ¦M5mÚ48qB³fÍR:uœÆdffjΜ9jÒ¤‰ž|òI=zÔ¢jøƒÝ»w;^wéÒÅÂJ¼—eá»fÍÙl6þçáÿÝqÇNÿœëÕ«çx®Q£FéÈ‘#š1cF‘N8;;[o½õ–n¸á 8e"–——§„„Çv÷îÝ-¬Æ{Y¾¡¡¡V}u¥Ò©S§"ûªV­ªqãÆ)))I'NTxx¸ÓûyyyúàƒÔ¢E =ñÄ:qâ„Yåðq»wïvÜÌÙ A5kÖÌ⊼áë§š7o®™3gjìØ±%Ž‰ŠŠÒôéÓ•””¤‘#Gùw’››«·ß~[Íš5Ó°aÃô믿VtÙ|ÜÆ¯ézKfÙs¾þ¾6›MÕªU+÷çCBB&I Tdd¤ÓqCCC¥ÈÈHEFF*::Zõë×× 7Ü fÍš9Æ»"&&F³gÏÖèÑ£5mÚ4-Y²D¹¹¹Ž÷³³³µ`Á½óÎ;zæ™g¯èèèrÿÙø¯µk×:^wëÖÍÂJ¼›Ín·Û­øâŸ~úI7ß|³$)..N›6m²¢ ãÀŠ×gŸ}¦âþó¸öÚk5eÊ=õÔS ¶ BÞ(%%EµjÕRNNŽtæÌÅÄĘZCBB‚ãÞoÎN;£ˆæÍ›ëÓO?ÕÖ­[uçwyÿüùó>|¸n¹å§_¹*·E‹9¦±mÕª•éÁëK8íŒuèÐA7nÔÿþïÿêùçŸ×ž={œÞ?pà€z÷î­ûï¿_o¼ñ†jÖ¬iQ¥Ì°}ûv-^¼X{öìQ^^žªU«¦š5kªV­ZJNNÖòåËc¹Þ[::_”é÷¿ÿ½¾ÿþ{-]ºT±±±EÞÿüóÏuÓM7iåÊ•T ¢¥¥¥©ÿþêØ±£öìÙ£áÇëÍ7ßÔ_ÿúWýôÓOš;w®–-[æt¯×{KGøÂ%zôÑGuàÀÍ;·Èé¤ääd=ôÐCzã7,ª@EØ¿¿n½õV-_¾\S¦LѶmÛô裪]»vºÿþûõŸÿüGQQQNŸ UçÎ-ªØ7¾0$$$ÄqÇs@€ó>v»]gÏžµ¨2ž¶k×.uéÒEGÕ«¯¾ª©S§ùÿ}LLL‘É}âââtÍ5טYªÏ±,|ƒ‚‚ÄŠ†¾$//Oï¿ÿ¾Z´h¡‘#G:-âP¥J½òÊ+š4i’…ð”ýû÷«k×®JNNÖ_ÿúW=ºÄ±×_½Ó6×{ËfiúU©RÅé¼S~~¾>ýôSMš4I,ò~Ë–-µtéRµiÓÆ‚êxZJJŠúöí«ÔÔTµlÙR3fÌ(uüùóç¶{ôèQ‘åùKVà´„wËÏÏ×òåËuóÍ7«_¿~E‚7,,LÓ§O×Î; ^À<ýôÓ:|ø°$iñâÅeþ]””äx]»vmÇ(™å/¼Ýnך5k4uêT}ÿý÷ÅŽéÝ»·^{í55lØÐäêT¤/¿üRü±$©oWk <“IDATß¾êØ±c©ãÓÒÒ´mÛ6Çv÷îÝe³Ù*´F`iørÓ•w±ÛíZ½zµ¦Nª]»v;¦]»vš;wn± 6ð}Ï=÷œãõĉË¿jÕ*ÇÄ×{]åá›Pæ/¥Âs—¥ð\È®02Oqdd¤]áòMe5ö±ÇSóæÍKc·ÛµjÕ*M›6­ÄN·I“&š>}ºú÷ï_änGþaãÆúá‡$]™éîÖ[o-ó3³gÏv¼¶Ùl„¯‹¼"|]‘­ììl—ÇŸ;w®<%ùØØØÃ×n·ëóÏ?×´iÓœ¿.¬víÚš4i’þüç?33àçÞ}÷]Çë‡~¸ÌñëÖ­s:KvóÍ7«víÚR›¿ñ™ðEùÜ4QX~~¾>ûì3M›6Íñ+÷jQQQ;v¬FŽéò¾Ën·ëË/¿tlß~ûí¥ŽÏÎÎ.òøÑ=÷ÜS!µù#KÃwðàÁ.Ï‚’žž®¼¼<—Ʀ¦¦»ÏÕìv»RSS]:f^^žÒÓÓ]›ŸŸïXLÚ“5HW0"11Ññ:''G}ô‘^yåýøãÅŽ¯Zµª† ¦ÿùŸÿѵ×^kè»ø®¤¤$9sƱ]Öåª3fèäÉ“Nû_×Y¾þóŸ­üz¿Tx9-IÚ±c‡¶lÙ¢ÄÄDÍ›7O§N*ös¡¡¡úË_þ¢çŸ^µjÕ2«\^¢ðß ª_¿~‰c·mÛ¦¥K—êÙgŸÕßÿþwIWîËaJI×1Å”ŸËËË+õÎä :TñññªW¯ž‰•ð&…Ϫåçç+;;»ØÇAO:¥jùòåZ´h‘c›6m˜»Án[õ3®>_¤Ç\ÔÂ… ^ ’«V­šÓöÞ½{‹ŒIKKÓ< —_~YmڴѾ}ûïñø¡1„¯Ÿ)ë«ÀÀ@=úè£Ú¿¿Þ~ûm5jÔÈœÂxµ«O3øá‡NÛ¿þú«ºuë¦?üáz衇$ÉiÖ»öíÛK’:¤£GVpµ¾ðõ3%]¯ ÖàÁƒµwï^-]ºTM›65¹2Þ¬I“&jРc{Þ¼yZ¼x±öíÛ§yóæ©M›6êÕ«—Æ/éÊM°…é¼té’&Mš¤%K–¨I“&¦×ïk¸æëgjÖ¬©˜˜%''Kº2…ç!C4nÜ8º\¥êׯŸfΜ)éÊ£D7ÅFGGëõ×_W¿~ýc¯~òâ‰'žÐˆ#ôꫯšW°#|ýŒÍfÓìÙ³õæ›oª[·n:t¨êÖ­kuY|À¤I“tèÐ!­Y³FùùùjР  çž{NÕ«Ww[»vmµnÝZ‡Òm·Ý¦ &0»•6»+Ä*ÌÌLåææ***ÊêR +ü¸e\\œ6mÚdqEÅ£ó8aV»ŠÇ W˜ŒðÀd„/&#|0á €É_LFø`2“¾˜ŒðÀd„/&#|0á €É_LFø`2“¾˜ŒðÀd„/&#|0á €É_LFø`2“¾˜ŒðÀd„/&#|0á €É_LFø`2“¾˜ŒðÀd„/&#|0á €É_LFø`2›Ýn·[]eIMMUll¬RSSË}ŒÈÈHÅÄĨN:zúé§õ§?ýɃºŽÎàªU«¦#F¸uŒôôt=zT‰‰‰ÊÊÊòPeÆÑù|FZZšbcc•’’âÖqjÖ¬©'N(44ÔC•Cç ðQQQ>|¸ÛÇyúé§- ^‰ÎàcÒÒÒÔ¨Q£r_û Ó±cÇãáÊ\Gç ð)QQQ9rd¹?ÿôÓO[¼/À¥¥¥©qãÆºpá‚¡Ï…††*))IuêÔ© Ê\Cç ð9QQQåºóùé§Ÿ¶-<<¼Ôk¿Ï>û¬W¯Dç ðjܸ±’““ö‡……éèÑ£ªU«–E•ÎàóJê~‡ æuÁ+ÑùüÄÕÝoxx¸Ž=ªš5kZ\YQt¾¿pu÷;räH¯ ^‰ÎàG ºßììl%%%©zõêV—T¬ « ÀSÂÃÃ5jÔ(eeeymðJt¾?“‘‘¡¼¼¿ÍÀ³âââ_üŸm۶饗^ÒÚµk ]¨@„/´e˽üòËZ³fÕ¥@¥@øVb‰‰‰úûßÿNè€ÉßJ(11QS§NÕW_}eu)P)¾•Hbb¢¦L™¢ÿüç?.¿ñÆ5nÜ8ýéORPÿ©€§ð7j%°aÃMš4IÛ¶msiüM7ݤ±cÇjÀ€ ¬àê ò!|ý؆ ¯o¿ýÖ¥ñ·Ür‹ÆŒ£G}TÌ< …ðõ3v»]k֬ѴiÓ´cÇ—>ÓºukM˜0A=ôl6[W |ýD~~¾Ö®]«©S§êûï¿wé3·ß~»Æ¯Þ½{º`"Â×Ç„î”)S´k×.—>Ó©S'7N}úô©àêÅ!|}T~~¾>ýôSMžÝ¥N7 @={öÔ /¼ ¶mÛšP!À(Â×K•'t|ðAM›6MÍ›77¡B@y¾^Æhèëá‡ÖĉÕ¬Y3*¸‹ðõFC7$$Dýû÷×”)SÔ¤I*x ák1£¡¦¡C‡êþçT¯^=*xák£¡®Ç\ãÇW:uL¨PQ_“åææêý÷ß×´iÓtâĉ2ÇGGGkøðá>|¸ªW¯nB…€ŠFøš¤`Áƒ‰'ê‡~(s|5ôì³ÏjäÈ‘ªV­š ÌBøš`Æ ?~¼vîÜYæØ˜˜=óÌ3=z´"##M¨`6·mÛ¶M&LÐÆË[«V-5JÇ×5×\cBu«¾`Ïž=Š×ÚµkË«ñãÇë±ÇSHHˆ Õ¬FøzÐ… ô /hÁ‚ÊËË+ulãÆ5nÜ8=þøã â_T&ü­ï¹¹¹Z¸p¡¦L™¢ÔÔÔRÇÞtÓMš0a‚úõë§ÀÀ@“*xÂ×M_ýµ†®ü±Ôq­ZµÒèÑ£5`ÀB*9·œ²²²4zôh-\¸°Ôq;wV||¼î½÷^“*x;·œ¦M›VjðvëÖMñññºóÎ;Í+ àßrøå—_ôÑGÙo³ÙÔ»woÅÇÇ«C‡Tð„¯A_~ù¥zôè!»ÝîØW°–n||¼Zµjeau_@ø´nÝ:§àÕ_|Áö—X]€¯IJJrÚ®_¿>Á 0„ð5èÔ©SNÛ…»`\Aø”’’â´m³Ù,ªà«_ƒ.^¼hu GøDøÜEøôÛo¿Y]ÀǾäçç+??ßê2>Žð5 ''Çê~€ð5 77×ê~€ð5€Îà „¯„/À_8í ðÂ×:_€'¾×ùV¶¹ÿûßÿZ]ø<Â×:_éƒ>¨t?8ÀÓ_Š ßʶ°ÂÉ“'•žžnuàÓ_òòòŠì«l]`JJŠÎ;guàÓ_˜ZRJOOWZZšÕe€O#| (®Ë­l§³²²tùòe«ËŸFøÂÂÜGøPÙ®ïçòåË„/¸‰ð5€ð¥óO |aá î#|  ó%|À__Â<ð…!„/¸ð5€Î—ðO |aHVV–²²²¬.|ákï•Å%Š›ãà:Â׀ʾv»]yyyÌq n"| ¨ìá[ºt¾àÂ.+]ÂÜCø@çKç ž@øPÙ×Î<ƒð…Ëè|À3_è|é|À_¸ŒÎ<ƒð…Ëè|À3_¸ŒðÏ |á2N;€g¾pYAè2½$¸‡ð…Ë8í žAøÂeœvÏ |á2:_ð Â.+è|¹æ î!|á2:^ð Â.+ßÊ>Í&¸‹ð…Ë B—ð÷¾pá žAøÂe„/xá €É_¸ŒÎ<ƒð…a„/¸‡ð…Ëè|À3_Fø€{_¸ŒÐÏ |á2N;€g¾0Œð÷¾p/xá Ã_pá —ºà„/ #„À=„/\Æ5_ð Â.#|À3_Fø€{_¸ŒÐÏ |aX~~¾Õ%€O#|á2®ù€g¾0Œð÷¾p/xá —¾à„/ #|À=„/\Fç ždu¾$..Žàá î¢ó…a„/¸‡ð…Ël6›$ÂÜEøÂe„/xá Ã_pá —Ñù€g¾pá žAøÂ0ÂÜCøtéÒ%«K°LAçË’‚àÂ×€ôôtM:Õê2,Ãigð Â×€hß¾}V—a9ÂÜCøpêÔ)%''[]†eè|À3_NŸ>­óçÏ[]†å_pákÀ™3gtá«˰ /xák@JJŠRSS•››ku)–"|À=„¯/^”ÝnWZZšÕ¥X‚Î<ƒð5àâÅ‹’¤Ë—/[\‰5_ð Â×€‚ðýí·ß,®ÄZ„/¸‡ð5€Î—Î<ð5 33SRåb’ðÏ | ÈÊÊ’Ty;ß„/¸‡ð5 ²‡//xák@vv¶$n¸"|À=„¯999’*oø²¤ xák@ÁiçÊ>ÃÀ=„¯§ :àʆk¾à„¯á[Y;_N;€g¾.ÊÍÍut|•5|®üçBç î!|]T8p+køJ"|À]„¯‹ ne½æKç žAøºÈÛ:ßíÛ·kÆŒºï¾ûtÓM7iíÚµþo^^^…ø³ « ð…ÇÊð=v온͛7;í7cÖ-Â<ƒÎ×EÞÒùÆÆÆê›o¾ÑC=ä´¿eË–þݧ½¡ó_Føº¨ðu^«;¿ÀÀ@µmÛÖ±©fÍšUø÷„¯Õ~ðu„¯‹ Ž7ÜpuúôiÇë6mÚ8‚±"œv¦ó÷¾.*¸Þ0ÉĶmÛ¯ãââLùNÂ<ïÃwàÀêܹ³Þyç·oH*ÜùZý¨ÍåË—µgÏÇöwÞiÊ÷~Ôȧž÷ï߯aÆ©AƒÚµk—ÛÇ_á·á›““£åË—kóæÍ:t¨4h ©S§êÂ… å:^ánÏêðݵk—cªËÐÐPÝ~ûí¦|oAç+¹×ý~ýõ×êÑ£‡Z¶l© èçŸÖÊ•+=Q"ø¿ ߤ¤$G@IRrr²^xá5lØPcÇŽÕ™3g ϛ·ð)çŽ;êšk®1å{ ‡¯ÑÎ×n·kíÚµêÔ©“îºë.­_¿ÞéŸãvÁg£¢¢¢ˆˆG—£˜˜GçkÆ<Úü›ËáÛ¾}{µoß¾"kñ¨„„ÝqÇåþ|PP¨‰'ªqãÆJHHp¼gUø~¾÷î»ï¶¤†*Uª(77W;wV\\œ&Ož¬·ß~[¯¼òŠ~ùå—r÷w¿û6mÚÄ)]•?ᯤÇ{LÐ;ï¼£ÆcEøîÝ»W§NrlwëÖÍô¤+á[½zuÙl6IRXX˜†®#GŽhÑ¢Ejذa¹ŽDð¨4ßÿ/((HƒÖôî»ïªI“&%޵âtoá®·Aƒ¦¬ß[œ*Uª(44´ØýO=õ”>¬Å‹û£pE¥ßàà`=öØcÚ¿¿–,YRjè(.|*Záç{­êz¥+![p·pq‚ƒƒ5tèP}úhûöíŽUŠSøY\ðw~¾±±±NÝTLLŒ¦NªãÇëÿø‡j×®mèx…eöiç§œo¹åÕ¬YÓÔï/¬¬ÓÎ%±ÙlêÙ³§õõ×_ëÞ{ïuÜ´%‰ÓÓ*¿½½488Xýû÷WRR’†ª‡~حЬZµªãµ•ákå)géJøÍòèÒ¥‹ºté¢hÁ‚ú׿þ¥|ÐC€÷óÛð•¤÷Þ{ÏcDz*|SRR´cÇǶ™ë÷Çá[ yóæš?¾%³…€•ü:|=ɪðMLLt,ê Ûo¿Ý´ï.NHHÏ〛üöš¯§ßÂÓV´­[·:^·lÙÒqcÒ?þ¨>úÈ´: „……©F¦/øÂ×EsýJWnæ2Káð-èz×®]«ûï¿_=zô0­ŽÕ«W·ô†/ð„¯‹l6›®¿þz…††š6{Snn®¾ûî;ÇvLLŒÆŽ«¾}ûêÕW_-ñqªŠ­-Z˜þ½àO¸xgÀ”)S´}ûv§SÐéÀÊÌÌtl¿øâ‹ŠˆˆÐ‡~¨ûï¿ß”®vÓM7©cÇŽ–|7ø —×ó…ù.]º¤:è§Ÿ~R­ZµÔ¯_?7NõêÕ³º4€_péÒ%Óºm@Åûƒ¦$ iOÔIEND®B`‚fluids-1.0.22/docs/fittings/entrance_mounted_at_an_angle.png0000644000175000017500000005551714302004506023546 0ustar nileshnilesh‰PNG  IHDR«º¶›iSsBIT|dˆ IDATxœìÝwXWÛ𛢈 {,ˆ¢b×(±·ÄØb$’ FK¢‚ Š]ˆ  K‚FcKTÔh¢‰ÝØ{‰K„Ø ¢HÛóýáË~!ì.»³»³÷ﺸË܇¸»73s挙B@¾ýö[Ìž=æææØ¶mZ´h¡ï–ˆˆHKÌõÝ€6dffbÊ”)¸wïîܹƒµk×ê»%""Ò"Y„UBBÒÒÒ”_;vLÝ‘¶É"¬nܸ‘ïë›7oê©""ÒY„Õ“'Oò}}ÿþ}äææê©""Ò6Y„ÕóçÏó}““ƒ””=uCDDÚ&˰€Çë¡""ÒÙ†ÕË—/õÐ éʈˆ ʈˆ ʈˆ ž,Â*33³Àc +""ùEXåääxŒaED$²+U3¬ˆˆäCaÅ=+""y“EX)Š1¬ˆˆäCa¥jÏŠkɇ,ŠÁDD$o²+U{VDD$²+U{VB=tBDDº Û°"""ù`X‘Á“EX©:gÅÀDDò!‹°âž‘¼1¬ˆˆÈàÉ6¬xˆH>dVª–["""ù`X‘Á“mXñ0 ‘|È"¬LDDò&‹°âž‘¼É6¬ÌÌÌôÐ éʈˆ ž,ЇüˆˆäMaÅ=+""y“mX‘|È6¬¸gED$²+ž³""’7†«B… ?~<Ækkk »#"2n +-*êù,N "z= +(Êù,àÕíH¢¢¢àîî.awDDƇa¥CE9ŸÅIDD…cXI (ç³8 ƒˆH=†•D^¾|‰yóæaöìÙxöì™Ú:'''LŸ>Æ ƒ¥¥¥„.†•Äîß¿©S§bÙ²eÏg5lØsæÌAß¾}%쎈È01¬ô$..ãÇǶmÛ4ÖuëÖ hÙ²¥D†•žíÙ³þþþ¸pá‚Úš¼IsæÌAíÚµ¥kŽˆÈ@0¬ €B¡Àš5k0aÂÜ¿_m|||0iÒ$µ÷Ú""’#†•IOOGdd$ÂÃÃñòåKµu+VÄäÉ“1jÔ(N "“À°2@IIIÆš5k éŸÇÕÕ3gÎäJD${ +vêÔ)øùùáðáÃëºwïŽÈÈH4oÞ\¢Îˆˆ¤Å°2E¹¨ØÜ܈ˆˆ@­Zµ$쎈H÷ÌõÝ®_¿~¸zõ*¢££Õ®n¡P(°aÃ4jÔAAAÒ%"26ܳ22©©©˜9s&/^Œœœµuy“0F ;$"Ò>†•‘Š‹‹ÃÔ©S±aÃu\ ƒˆä€aeäŠrQ1ôèÑ‘‘‘hÖ¬™DiÏY¹=zàܹsX¹r%ªT©¢¶nÏž=hÙ²%¼½½q÷î] ;$"*9îYÉÈóçÏ9sæ ##Cm½½=Fàà`”)SF‰ˆŠ‡a%CÉÉɘ5k~øá( µuÕªUôiÓðÅ_p4†•Œ>}~~~8tèÆºF!""½{÷–¨3"¢×ð2[·nŸqãpýúuu=zô@TTš6m*QgDDEà &àß;::ª­Û³gZ´hoooÜ»wO‰ˆ4ãž•‰yôèæÌ™ƒyóæ!++Km]Þ$ŒÉ“'£téÒvHDTÃÊDÅÇÇcÊ”)…^T\½zuL:•“0ˆH¯V&nïÞ½ð÷÷Çùóç5ÖµlÙ‘‘‘èÚµ«Dý?ž³2qÝ»wÇÙ³g±råJT­ZUmÝÙ³gÑ­[7ôìÙ/^”°C""îYÑ¿<þ .DHHÒÓÓÕÖYZZbèС˜9s&*W®,a‡DdªVTÀ?ÿüƒ™3gzQqéÒ¥áïïÀÀ@ØÙÙIØ!™†©uæÌøùùáàÁƒëjÔ¨)S¦àË/¿„¹9,‘ö1¬¨PE½¨¸U«VˆŠŠBçÎ%ꌈLÿ ¦Bå]TƒŠ+ª­;sæ ºt邞={âòåËvHDrǰ¢"±²²ÂðáÇ1cÆÀÊÊJmmÞJ>>>xøð¡„]‘\ñ0 KBB‚ƒƒ±qãFhz åM ‚­­­„‘œ0¬¨DŽ?=zTc]Íš5///˜™™IÔÉÊJL7"007oÞÔXÛ¦MDFF¢S§NuGDrÀ°"­ÉÈÈ@tt4––¦±ÖÃÃaaa¨W¯žDÝ‘1cX‘Ö¥¦¦bæÌ™X¼x1rrrÔÖYYYaÈ! A¥J•$숌 Êt¦¨+»—/_&LÀرcacc#QwDdLV¤sûöíC@@Î;§±®~ýú Á Aƒ$ꌈŒE¡×Y8pëÖ­Ó¸F‘&ݺuÃéÓ§ñã?¢zõêjë®]»OOOtïÞýõ—„‘¡ÓV±±±èÑ£>þøc¸¹¹aÕªU -*sss|þùç¸víÂÂÂààà ¶vß¾}hÕª<==qûöm »$"C¥ö0àÎ;ѧOäæææ{¼eË–ˆŠŠB—.]¤èdêîÝ»˜:u*~üñÇϱ³··G`` üýýQªT) ;$"C¢2¬nݺ…6mÚh\*§oß¾ˆŽŽ†³³³N$y»zõ*&L˜€mÛ¶i¬«^½:¦NŠ/¾øuGD†¢@XeggÃÝÝgΜQ>fmmÜÜÜÛØØÀ××ÁÁÁëfçÎ?~|¡w!nݺ5¢¢¢xQ1‘‰)pÎjÆŒù‚ªB… 8{ö,.\¸€þýûç«ÍÌÌÄœ9sP¿~},]ºTãá"MÞyçœ;wK–,A•*UÔÖ>};w†‡‡%ìˆôJüËÉ“'………… üøã?þ]":$Ú¶m›¯&ï£Y³fbß¾}‚¨$ž={&¦L™"J•*¥òy–÷amm-|}}ÅÇõÝ2é˜2¬rrrDË–-ó½|ôÑG*H¡Pˆ•+WŠªU«ª|ñðð·nÝ’ì— yJNNŸþ¹077×ZåÊ•âåË—ún™ˆtDVÑÑÑùÞÊ–-+îܹ£ñ‡ÓÒÒD`` °±±)ðbgg'f̘!^¼x¡ó_‚äíܹs¢{÷î €¨S§ŽX·nP(ún™ˆ´ BñèÑ#Q¾|ù|/üèèè"o$!!Aôïß_íÈ–-[tö éØºu«hذa¡¡Õ¶m[qøða}·KDZ!„?~|¾»““S±öˆvîÜ©öÍäwÞqqqZÿÈ´dgg‹Å‹ ''§BCËÃÃC$$$è»e"Ò¤¦¦ {{û|/òbo0++KÌ›7O”-[Vå ñ &ˆgÏžiñW SôôéS1qâDaggÇID&À¢|ùòÓ·oß®œXºtiüüóϰ³³+l"¡Jh×®† ‚””\¸pAù½ÜÜ\9r+W®DÕªUáææÆ»ÆR±ØØØ {÷îðòòBJJ .]º¤².77'NœÀ’%K`ii‰V­ZÁÒÒRân‰¨¤Ì7mÚ”ï>}ú \¹r%ÞpåÊ•±bÅ œÇWyÝLÅŠÅ’%KDnn®ÖÇ%Ó’••%¾ýö[Q¡BN ’ !Äï¿ÿ.Ê•+—ïEìèè(-Z$rrr´>è©S§Ô®‚Ѻukqüøq­I¦çñãÇ" @åu€à$ "£¢¼(øï¿ÿîîî^È-Z´ÇŽÓúÀy«`T®\¹À˜fffÂËËK'{wdznß¾-¼¼¼„™™™ÆÐrttaaa"##Cß-Ñä[033S KKË|/bsssñÕW_‰Gi½Ç‹1cÆÿ[E#::Zdggk}\2=ÇŽo½õW 2BPõà_ý%š7o^àE\¾|y£“ñÕ«WE=T¾y4hÐ@ìØ±Cëc’iúí·ß„³³s¡¡Õ¦MqàÀ}·KDBMX !DFF† Ê7ù"ï£S§NâÒ¥KZoF¡Pˆ5kÖ¨] ×ÓÓSܾ}[ëã’éÉÌÌQQQÎÕr‘aRVy.\¸ òЉ•••?~¼HOO×zSiiiÂßß_ePÚÛÛ‹ÐÐP®°MZ‘šš*ÆŽ+¬­­9 ƒÈ€VBüÿdUS«U«&V®\©“Cƒñññ¢W¯^*ß<œÅÖ­[µ>&™¦¿ÿþ›“0ˆ X‘Â*ÏÝ»wÅǬòEܽ{wqåÊ4+jÖ¬©rܾ}ûŠÄÄDŒK¦çСCâÍ7ßä$ "óZa•çÏ?ÿ 4PyhÐÇÇG<}úTÛ}ŠçÏŸ‹iÓ¦ [[[•‡h|||¸@.i…B¡±±±¢nݺœ„Ad ŠVBñâÅ 1mÚ4•\V­ZUg‡EŸ>}T¾qÔ¨QC¬\¹Rëc’iÊÌÌÑÑÑÂÑѱÐÐêÛ·/'aéP±Ã*O||¼èÖ­›ÊpçÎÅÅ‹µÑg¿ýö›Ú¿|»uë&._¾¬“qÉô¤¦¦ŠÀÀÀB'aXYY‰áÇ‹û÷ïë»e"Ù)qX ñê°É’%K Üm8ïìçç§“CƒbÆŒ*ïidcc#&Nœ¨“ÙŠdš®^½ªöŽØÿ„Á«DZ¤•°ÊóðáC1lØ0• ÕV­ZUüôÓO:94xóæMñþûï«|ã¨Y³¦Ø°aƒÖÇ$Óõ矊–-[r‘„´VyΜ9#Úµk§òÜ©S'qáÂ] +öîÝ+7n¬rÜ®]»êäBf2My“0j×®ÍIDÐIX !Dnn®X¹r¥¨T©R¯¥¥¥ðññOž<Ñú¸YYY"::Z888H:[‘LÓ‹/DXX˜([¶,'aéÎÂ*Ojjªðññ^¼UªTÑÙ¬Á;wÈS—³É4=|øPøøø¨\™“0ˆJNça•çôéÓjïaÕ±cGqþüyŒ{àÀÑ´iSµ³uuH’LS\\œ4hP‘&ap% ¢¢“,¬„øÿCƒ+V,ðâ577^^^:Y{-;;[ÄÄĨ\.*ï$ ’6íÝ»W´hÑ¢ÐЪY³&÷ò‰Š@Ò°Ê“whPÕ¬Á *ˆèèhÜÞ^Ó¸º<$I¦‰“0ˆ´G/a•çØ±cj§·oß^œ;wN'ã?~\´nÝZí!I]K¦éùóç"$$D”)S¦ÐÐòðð×®]ÓwËDG¯a%DÑ ¦¤¤h}ܼ•䜜Ԏ{÷î]­K¦+%%…“0ˆŠIïa•çÁƒbèС*gï999‰åË—ëä]jjªøúë¯UÎVtppááá\‰€´êÒ¥K¢wïÞEš„Á•0ˆ^1˜°ÊsôèQµ'¦ÝÝÝuvˆîìÙ³¢}ûö*Çuvv›6mÒɸdºvïÞ-š7o^hhq% " +!ô7k0º{guéÒ…ç³H«rssEll¬¨U«'ai`a•çþýûbÈ!* V®\Y¬X±B'm>}úTøùù ++«ãZXXˆaƉ{÷î½öïB¤ÎóçÏÅÌ™3EéÒ¥9 ƒHƒ«,š5k¦ò…«Ë;ß¼ySãÚoeË–Æ aaa¢Q£F*kÌÌÌÄæÍ›uÒÉOnn®X¶l™¨V­Z¡¡Õ¶m[qèÐ!}·L¤uFVB¼Zóoþüù*oÏ`ii)üüüDZZšNÆ>pà@‘Ö~ûw@ý{ÂFÅŠÅ;wtÒÉSzzº˜>}º°··ç$ 29FVyîÝ»'¼½½U¬V­šøùçŸu2nnn®X²d‰ÊU0þT?ÿü³X»vm¾Çß}÷]¶¡×vçÎñå—_r™Y„UžC‡©=¾ßµkWqùòeŒûäÉáïï/¬­­UŽ=kÖ,eíÀó}oÁ‚:é‰äïÂ… âwÞá$ 2 ² +!^ŒŽŽVyhÐÊÊJŒ?^<{öL'c'$$ˆ?þ8ߪîÇÏWsïÞ½|·*±³³qqq:é‡LÃŽ;D“&M8 ƒdMva•çîÝ»â³Ï>Syh°zõêbýúõ:û¯¿þ “&M999¾ÿÓO?åë§C‡:¹% ™Žœœ±téRQµjUN Y’mXå9xð ÚCƒ]ºt—.]ÒK_}ûöÍ×ËâÅ‹õÒÉËóçÏEXXX‘nGÒ·o_‘ ï–‰ŠDöa%Dá‡}||t6kP[·nå›Õåàà nß¾-i$_ÿüó>|x¡“0x;2&VyîÞ½+¼¼¼ÔÎ\¹r¥¤ý„‡‡çë¡wïÞ’ŽOòwåÊѧOŸ"M ún™H%“ «<û÷ïnnn*_´o¿ý¶d×§dgg¸°yíÚµ’ŒM¦å?þPûœç$ 2&VB¼ Ѝ¨(•ÇömmmÅŒ3$™ê{üøñ|³œœDjjªÎÇ%Ó“““#–,Y"ªT©ÂIdtL6¬òܹsGxyy©|ÁÖ«WOìܹSç=Œ5*߸_~ù¥ÎÇ$Ó•žžÎIdtL>¬òlß¾]8;;x±š™™ ///ž€~úô©ò6"ycò¯ZÒµäädñùçŸçÛ³WõÁ•0È0¬þ%##CL›6MØÚÚª<­³ë¡Ö¯_Ÿo¼Æ«½í‘6]¾|YôîÝ›“0È 1¬TˆÝ»wWù‚mß¾½Î–múïÒ9aaa:‡H•ßÿ]í8 ƒôa¥ÁO?ý¤òd´ S¹:EI$$$äÛ«+Uª”¸yó¦VÇ Ò$;;[|ÿý÷¢råÊœ„A…aUˆÔÔTáíí­òÅÚ®];qýúu­Ž7}úô|côéÓG«Û'*Š´´4,J•*Uhhñv$$†Uýþûïù&Aä}Lš4I«ãddd—|clܸQ«cURR’QQµhÑ{÷îÅÖ­[ѰaCµuOž<ÁøñãѰaC¬_¿B »$93|6IVVªT©‚Ç+óööÆÊ•+u2^rr2\]]ñüùs€……Nž<‰–-[êd<¢¢R(X³f qïÞ=µmÚ´Add$:uê$Qw$Wܳ*¢;vä *øúë¯u6^5àïï¯ü:77#GŽDnn®ÎÆ$* sssx{{#>>“&M‚ÚÚS§N¡sçÎøàƒ a—$7Ó§OŸ®ï&ŒApp0®^½šï1!ðàÁdggÃÒÒ¥J•ÒÚ˜m۶ŪU«––¸sç*Uª„7ß|Skc— ºwïooo<|ø—.]R{ØïêÕ«ˆ‰‰Ajj*Ú´i£Õ× ™,¢ àÚµk…ÖYYYÁÉÉ NNN¨R¥J¾Ï+Uª„J•*)?¯X±"lll4noþüù;v¬òë²eËâÊ•+¨V­Z‰'"m:sæ °ÿ~uŽŽŽƘ1c }þåaX‘··7V¯^­õí–)S&_xå…YÞççÏŸGDDD¾ŸñôôÄúõëµÞ ‘6üöÛo ,0!é¿êÔ©ƒÙ³gÃÓÓfffuGÆŠaUD¹¹¹8~ü8öìÙƒ+W® >>ñññxùò¥^ú9pàOZ“ÁÊÉÉÁ’%K0}út¤¤¤h¬mÛ¶-"##Ñ¡C‰º#cİ*…Bääd$%%!))IùùíÛ·ñàÁ¤¤¤àÞ½{:¹Fê›o¾Áĉµ¾]"mJKKÃìÙ³]èv˜={6\\\$ꎌ ÃJ/_¾T×ãÇñôéSåÿý‘––¦üï“'Oòm£T©R°··GýúõѹsgxyyÁÚÚZO¿Ñë¹}û6&Mš„ŸþYãµWÖÖÖøê«¯0eÊT¨PAÂÉÐ1¬ˆH2¯3 #((¾¾¾°µµ•¦92h +"’Üž={0nÜ8\ºtIc]Íš5///NÂ0q +"Ò‹ììlÄÄÄ`ÆŒxøð¡ÆZN †éUzz:"##^è$Œ=z`Þ¼ypss“¨;2 +"2ÉÉɘ5k~øá( µu–––:t(f̘*UªHØ!éʈ ÊéÓ§€h¬³··ÇèÑ£Œ2eÊHÔé ʈ Òž={0vìX\¾|Yc]¥J•ŒQ£FÁÒÒR¢îHj +"2XÙÙÙøñÇ1eÊOž<ÑXÛ£GDGG£qãÆug¼VDD:PÔIVVV2dfÍš''' ;4. +""ºví±eËuŽŽŽÊErmll$êÎx0¬ˆˆ$püøqøûûãèÑ£ëjÖ¬‰É“'sÆ0¬ˆˆ$ò:“05j„éÓ§cРAugØVDD{Io½õÂÃÃÑ¡C‰º3L +""=É›„1oÞ<·#€¾}ûbîܹpqq‘¨;ð""Ò³k×®aòäÉØ°aƒÆº¼™ƒÓ§OGÕªU%êÎ00¬ˆˆ Äþýû€3gÎh¬³··Ç¸qãàïïGGG‰ºÓ/†‘É›„ˆ›7oj¬-S¦ ¾þúkLœ8eË–•¨Cý`X ŒŒ DGG#,, iiikœœ0cÆ 6L¶ÓÝVDD,55Eš„áêêŠÈÈHôéÓG¢î¤Ã°""2qqq˜0a¶nÝZhmŸ>}… HЙ4VDDF䨱cð÷÷DZcÇ4ÖåÍ ÕxgccÁÛÚwww>|+W®D5ÔÖeggcÉ’%hذ!¾ûî;äææJØ¥öqÏŠˆÈH½xñ ,@hh(ž={¦±ÖÕÕQQQèÝ»·DÝiʈÈÈݹs3fÌÀ²eË ÝƒêÑ£æÏŸFIÔv0¬ˆˆdbÑ¢E=zt¡uÖÖÖðññApp°Ñ\T̰""2rÙÙÙ˜;w.¦L™‚ììì"ÿ\ùòå1aÂŒ;Öàï¡Å°""2b/^„——Ο?_ìmÔ«WaaaðððÐbgÚÅÙ€DDF(77áááhÓ¦M¾ ªR¥ Μ9…BëׯcÁ‚hÓ¦Æm%&&âƒ>@‡püøq]·^,ܳ""22ׯ_ÇàÁƒqäȑߛ3gÆ_àñ}ûö!$$þù§Æm›™™aРA˜={6êÖ­«µžKŠ{VDDFBï¿ÿÍ›7WTÀ«ë°TéÖ­öíۇÇ£W¯^LjE£F€Çk¥÷’bX»wï¢wïÞøê«¯žž®¶®B… ·Ó¾}{lß¾GUl™™‰¨¨(Ô«W¯Hëêš,Â*##'OžÄ/¿ü‚””}·CD¤U›7oFÓ¦M±cÇŽBkË”)S¤mº»»ãÈ‘#X¿~½ÆÃ}=‚ŸŸ5j„ØØXèë̑џ³züø1œœœ““àÕõ À„ ЪU+=wGDT|ééé;v,–-[VäŸyòäÉkßÛ*33 .Dhhh¡‡ýÚ´iƒððptíÚõµÆ()£«G©ÝííÙ³'ѽ{w‰»""*™sçÎaРA¸~ýúkýÜóçÏQªT©b™ššŠY³fañâÅ…^¯õî»ï",, M›6-ÖX¯K‡ÕÙ½{7zôè7ß|¿üò‹Þv_‰ˆ^Gll,:tèðÚA¼šÍW\*T@tt4._¾Œj¬Ý¾};Z´hÁƒãöíÛų¨dVyN:´lÙ²H÷‚!"Ò—ÈÈH|ôÑGxñâ…ÞzpqqÁ¦M›pðàA×h) ¬Zµ 4@@@=z¤³žd}P¶mÛbÖ¬YèÙ³§Žº""z}iii(W® E±·‘‘‘[[[­õ$„ÀÚµk1iÒ$üý÷ßkØÙÙi­ÀDö¬þëĉxûí·Ñ¹sg:tHßíðóÏ?£fÍšúnEÉÌÌ Ÿ|ò âââ¦qòÆ“'O„úõëcÙ²eʉoÚ`’a•çàÁƒèÔ©zõê…S§Né»""|øá‡ˆÇÌ™3ammýÚ?oaa¡ƒ®[[["!!_ý5,--ÕÖ&''ãË/¿DÆ ±zõj­ÜøQÖa5`ÀdeeáÎ;øî»ïPµjU•u;wîDÛ¶mñÞ{ïáÂ… wID”Ÿ¦L™‚¥K—¾öÏê*¬òTªT ‹-Âŋѿµ‰‰‰ðööF“&M°~ýúÞ„0r©©©€Ê-[¶¨2dˆ033Sû3æææâÃ?W¯^ÕÓoDDôJvv¶°µµUû~õß333É{üóÏ?E«V­ŠÔ_“&MÄ/¿ü" Åk#ë=«Æçûº|ùòX¾|9öìÙƒ ¨ü…Bõë×ÃÍÍ Ÿþ9nܸ!E«DD˜››¸äÆÜ\ýÛ¶®÷ªTéÒ¥ Nž<‰Õ«Wã7ÞÐX{ñâE 8­ZµÂo¿ýöZãÈ6¬ÌÌÌP½zu•ßëÖ­._¾ŒÕ«W£aÆ*krss±råJ¸ººbäÈ‘HNNÖe»DD\¾|™™™Ê¯Û¶m‹ÄÄD :Tå9#}„ð*@?ûì3ÄÅÅaöìÙ…® qîÜ9¼÷Þ{2dHÑÑþN¡´Ô¬P¡B‘~>77W¬]»V¸¹¹iÜ}µµµ¾¾¾âÞ½{:þˆˆ^ Ï÷>tèÐ!å÷„———°°°P~¿T©Rzìöÿ=xð@Œ5JXYYzh0 @¼|ù²ÐmÊ6¬êÖ­ûZÛQ(â·ß~íÚµÓø?¶T©RÂÇLJ¡ED:פIå{‡‡‡Êš7nˆáÇ áàà q‡šÅÇÇ‹AƒXNNN",,L<þ\í¶dVMš4)ö6wíÚ%š6mªñ®ƒƒƒ˜6mšxúô©"¢WŽ=ª|¿±²²×®]ÓXñâE1tèP‰º{=û÷ï­[·.4´*Uª$BCCÅãÇ lC¶aÕ®]»m7;;[Ì;W”.]ZãÿÜŠ+йsçi7–ˆ¨¨ú÷ï¯|Ÿ3fŒ¾Û)1…B!Ö¬Y#êÔ©Shh988ˆ   |;² «nݺieû‰‰‰… jÕª%~üñG‘““£•q‰Èt]¼xQy‰£££HIIÑwKZ“™™)/^,ªW¯^èûjíÚµÅÅ‹…2žºnoo¯•í8;;ãСCX¸p!Ê—/¯¶îï¿ÿÆ!CЬY3üúë¯Z›ˆLSXX˜rÊúĉQ±bE=w¤=ÖÖÖøê«¯€¨¨(TªTImí­[·ðî»ïâÅ‹òº®Í…---1jÔ(\»v _ý5¬¬¬ÔÖ^¾| @ûöíqðàA­õ@D¦áÆX¿~= V­ZðññÑsGºagg???\¿~³fÍ‚£££Êºäädœ?^¾a¥‹ë *T¨€E‹áÚµkj¯sÈsôèQtîÜ}úôáNDTdÊ`¿ùæ­þámˆÊ”)ƒÉ“'ãÆ.p2eÊ aÆ «â¨]»6–-[†¸¸8x{{kë?þ@‹-àåå…›7oê¬'"2~·o߯?þàÕíã?þøc=w$råÊ!$$ÉÉÉX±bˆæÍ›#&&ŽŽŽò½ŸÕàÁƒ±bÅ Iz¸yó&°lÙ2« [YYaÈ!˜1cªT©"IoDd<† ¢|ßÚ»w/ºuë¦ß† ÷¬´ N:ˆ‰‰Á… àéé©ö¶ÒÙÙÙX²d \\\0mÚ4¤¥¥IÖ#¶+W®`õêÕ€÷Þ{Aõ +-jÔ¨Ö¯_ . OŸ>jëÒÓÓ1sæLÔ­[áááxùò¥„]‘! Fnn.,--1{öl}·cpV:àææ†mÛ¶aûöíjÊ€ÔÔTÁÕÕ+W®,Ù½^ˆÈh8qByÉˈ#4¾o˜*Ù†•¦™zRéÕ«Ξ= µ‡W×h}þùçpssÆ  Ü€ˆämÒ¤IB L™2˜2eоÛ1H² +M÷|‘’­­-æÏŸ_~ùeÊ”ÑX{õêUxzz¢cÇŽ8tèD‘>íܹûöíð*´*W®¬çŽ “a¼£ë€!ìYýÛ€påÊŒ5 ®®®û;rä:uꄾ}ûò-"B`Ò¤I€7Þx¾¾¾zîÈpÉ6¬ôyÎJ5j`áÂ…¸zõ*îß¿ˆˆ”+WNmýï¿ÿÎk´ˆdlýúõ8{ö, 44vvvzîÈp1¬ô¤|ùò@BB¾þúkµý* ¬Y³®®®ðõõŃ$t!++Ky~ªU«Vøä“OôÜ‘a“mXÚa@uò–p:}ú4Ú´i£¶.++ ß~û-êÖ­‹   <}úTÂ.‰HÛ/^ŒÄÄD@xx¸Áœg7T²ý¿clÿðÍ›7ÇÑ£G1wî\«»?þááápqqÁüùó‘™™)a—D¤ Ož,a—Dô:&Mš„ÌÌL888`úôéúnÇh0¬Œ@íÚµ±bÅ \ºt ^^^ÏÇ9r;vDÏž=qþüy »$¢Âœûì3=wd|dVšV9—›wÞygΜAll,êÕ«§¶îÑ£G?~<§»Iìûï¿G||<`Μ9Fw¨!íÿ1S +àÕï;hÐ \¹r111¨R¥ŠÚÚäädŒ1Mš4Á† $ì’Èô<{ö ¡¡¡€¾}û¢GzîÈ81¬dÆÊÊ Ã‡Gbb"ÂÂÂààà ¶6ï–$îîî¼% ‘Ž„††âþýû¼¸„dV¦ÎÞÞ¸~ý:acc£¶öøñãèÔ©zö쉋/JØ%‘¼%''+/6l7n¬çŽŒ—lÃÊT÷¬þ«bÅŠ C||<†®ñXùž={мysx{{ãÎ;vI$O'NÄ‹/PºtiL›6Mßí5†•‰¨U«bbb ½FK¡P`õêÕpqqAPPžúè#ÄÇÇ#::eË–U[{óæM|öÙghÚ´)§»i››‹   @³fÍàíí­çŽäaE°¶¶†¯¯/®_¿ë*^¾|žžžèСŽ9"a—DÆaÉ’%¸|ù2 ""‚k ÿ/’R… 0þ|\¼x}ûöÕX›·º»§§'$êȰ¥§§cæÌ™€Þ½{£gÏžzîH>VT€««+¶nÝŠÍ›7£Zµjjë„ذa7nŒ1cÆàÁƒvIdxÂÂÂpïÞ=XXX <<\ßíÈŠlʇKnÀ€¸|ù2Þ{ï=uÙÙÙX¸p!œ1cÆ ¤§§KÔ!‘áHNNƼyóC‡…›››ž;’†iäèèˆ7bäÈ‘hÚ´)¬¬¬ÔÖ¦§§cúôé¨W¯/^Œììl ;%Ò¯)S¦(/ž1c†¾Û‘†ÊÒÒß}÷Ο?'Ož`åÊ•hÔ¨‘Úúû÷ïcÔ¨QhÔ¨bcc!„°["éýõ×_Xµj`üøñ¨Zµªž;’†½–R¥JÁÛÛ/^ÄÊ•+Q¹reµµ‰‰‰øðÃñæ›obß¾}vI$­ &@¡P Zµjð÷÷×w;²$Û°"Ý277‡··7âããáëë«ñf—§OŸF÷îÝñî»ïâüùóvI¤{Û·oÇîÝ»³fÍâÀ:"Û°âž•4Ê–-‹èèhœ9sîîîkóîhìéé‰ëׯKÔ!‘îäææb„ €¦M›bðàÁzîH¾dV$­fÍšáðáȉ‰)òtw???<|øPÂ.‰´kùòå¸té€WwÖt„JF¶aūƥgnnŽáÇãæÍ›ˆ‰‰“““ÚÚÌÌLÌ›7uêÔAPPž={&a§D%—žž®¼íG¯^½ðÎ;ïè¹#yã;:iµµ5†Žk×®aÚ´i×LOOGxx8\]]±dÉäääHØ)QñEFFâîÝ»°°°Àœ9sôÝŽìÉ6¬xÎJÿÊ–-‹éÓ§#)) aaaCëÎ;1bÜÜܰaÃNw'ƒvçÎDFF† ‚&Mšè¹#ù“mX‘á(S¦ ‘˜˜ˆ &hœ-OOO´o߇’°K¢¢›:u*ž?{{{­_œ––†7nàŸþAFF†V·mÌdVܳ2<+VDxx81räH«»;v :uBÿþý•+X‚‹/bÅŠ^Ý`QÓ„¢×µnÝ:”-[ÎÎΨQ£xˆñV$¹*Uªà»ï¾ÃåË—ááá¡ñßjëÖ­hÖ¬†Ф¤$ »$Rm„ ÈÍÍEÕªU ÕmôÑGøê«¯”_çääp­Íÿ‘mX‘á«_¿>6n܈£G¢S§Njërssñã?¢Aƒ ÄãÇ%ì’èÿíÚµ ;vì̘1¥K—Öú;vÌ÷5o3òŠlÊ{VÆ£]»v8pà¶nÝŠÆ«­ËÈÈÀœ9sàì쌈ˆ¼|ùRÂ.ÉÔåææbüøñ777 :T'ã\ãÚ{öìA‹-0bÄܽ{WÂ.IަL™‚gÏžÁÎÎNçwÞ»w¯òó~ýúét,c#Û°"yª]»6bbbpâÄ ôèÑCm]NN–,Y‚úõëcÚ´i\(—ŠåòåËX¾|9ÀÏÏo¼ñ†NÇÛ¹s§òó>}úèt,c#Û°âž•¼µnÝ»wïÆ®]»ÐªU+µuééé˜9s&êÕ«‡E‹!;;[Â.ÉØ"''NNN ÔéX'NœÀÉ“'...¨[·®NÇ36 +2j={öÄ©S§°nÝ:Ô«WOm݃0zôh4jÔ±±±\(— µwï^üþûï€éÓ§£L™2%Ú^rr2f̘Ž;¢N:hÕªš4i‚Þ½{ãÃ?D¯^½”µ¼Ýˆ ÂÈ¥¦¦ >~ùå}·FËÊÊóçÏ*TPùœø÷G›6mľ}ûôÝ2¨ÜÜ\Ñ¢E @¸ººŠìììboëåË—"00PX[[ +++1sæLñôéS!„÷îÝ:t(ðüܺu«¶~ÙmXmÞ¼Yß­‘ž<~üXøùù ‹BCëÝwßçÏŸ×wËd`V®\©|Žüúë¯ÅÞ΃DëÖ­áää$N:U æÂ… ùž“666"==½$íË’ì8::"** «W¯.´vûöíhÑ¢ŒÛ·oKкŒŒ Lž<Ð¥K—b_˜ûèÑ#tîܧOŸ†ƒƒþøã´nݺ@]“&Mò]’Ѿ}{·Ñ1U² +2m—.]Â7ß|£üÚÚÚZm­B¡ÀªU«Ð Aä[›Lϼyó””333åõU¯+''¸zõ*€WK5©›¤P(ò]ŠÁóUª1¬HV²³³ŽÖ­[ç»0xÇŽ˜;w.Ê—/¯ög_¾|‰¨¨(8;;#<<œ7¾3A<@xx8à“O>Q¹'TaaaØ¿¿r;ï½÷žÚÚ›7oæ{®1¬ÔÐ÷qÈ’RwÎjË–-ún$¶ÿ~ѸqãÏ…Š+Šœœ!Ä«çËØ±c…µµu¡ç³jÔ¨!–-[¦üY’¿¯¾úJ¶¶¶âÖ­[ÅÚF||¼òùåàà RRR4Öÿý÷Êç\ÕªU…B¡(Ö¸r'Û=+Á©É&ãÞ½{ðòòB×®]UÞUøÝwßU®\]¾|yÌ›7ñññðööÖ¸Frr2¾øâ 4kÖ Û¶mÓYÿdâââ°téR€¯¯/jÕªU¬í„††"++ 0räHT¬XQcýO?ý¤ü¼{÷î<߮޾Ӳ¤8Ðtegg‹ùó狲eËjÜCZ¿~½Úm\¼xQ¼÷Þ{…îe:uÇŽ“ð7$)õïß_¹'þäÉ“bmãÙ³g¢T©RÊY}wïÞÕXâÄ aff¦|Ž-_¾¼X㚆¥}ûö‰fÍš0æææâÑ£G…nïèÑ£¢K—.…nÏÌÌLxxxˆ¸¸8 ~K’ÊŸþ©ü7þöÛo‹½7æ»,¢0=zôÈ÷ü*î¡GS ÛÀ$OIIIðööF·nÝpþüùBë›6mŠråÊZçîîŽ?ÿü»wïÖ¸|“›6m‚››Ê• !„òÀÎÎÎ1bD±·uàÀåçš&UÀúõë±gÏå×õêÕ+ö¡GS Û°nffÆ=«B0¬È eeeaâĉ8wî\‰¶S»ví÷RºtiLŸ>‰‰‰5j¬¬¬ÔÖ^¿~ü1Þ|óÍ|7Ò#Ó’’‚Ù³g<==ѶmÛmïß+Ÿäää %%¥@Í„ pîÜ9ìÝ»IIIÊÇëÕ«§qžVd ¬­­ñÇ eË–ÅÞ†………ÚC1ÅQ¹re,\¸W®\§§§ÆëaNŸ>=z W¯^EšBÒ›9s&ž>} ›|KsWÞµ|y~ýõWåç™™™>|8~ûí7ìÝ»U«VÅÙ³g•ßwwwðêf'Nœ(q/r$Û°âaãçèèˆ;wûP^ÅŠaii©å®^ý¼~ýzœ8q¢ÐC7;wîDË–-áíí¿ÿþ[ë½Pñ\»v 111€Q£FiåF‡åʕ˷ׄE‹aþüùhÒ¤ Ο?Ç+ÿ€úïìøþûïK¼‡'[z8¯ꮳڴi“¾[#-¹sçŽpqq)Ò…»ÿþpqq‘¤¿íÛ·éš/áçç'>|(I_¤Þûï¿/ˆòåËé:¼¢Ru­ž­­­˜4i’ÈÌÌÌWëää”ïú=???‘››«µ^ä†aEFáï¿ÿµjÕz­°jݺµdýåææŠU«V©GGGG1{ölñâÅ Éú£ÿwðàAå¿Åܹsµºí„„1`ÀQ·n]áîî.¦L™"nß¾­²ÖÏÏO4mÚTxzzŠ#GŽhµ9bX‘ÑHHH¶¶¶E«nݺIÞãË—/Åܹs‹t·âêÕ«‹~ø åì˜UvîIDATJH¡Pˆ7ß|SuëÖ-°·C†‹ç¬ÈhìÙ³/_¾T~mee¥q!Ú²eËJÑV>6667n®_¿ŽI“&¡T©Rjkÿùç|ùå—hÚ´)~ûí7 »4]ëÖ­ÃÉ“'³gÏ.ÑÀ$-Ù†ÉË•+Wàïï¯üÚÎÎ[¶lÁÑ£GѨQ#•?£°ú÷Ø¡¡¡HLLĈ#4Nô¸rå Þ{ï=tìØÇŽ“°KÓ’™™‰I“&xµ²É Aƒôܽ†¼ÌÌL|òÉ'xñâ€WA°sçNôîÝmÛ¶ÅñãÇñþûïø¹¢¬ ¨kU«VÅ÷ßK—.ÁÃÃCãt÷Çã­·Þ‚‡‡âãã%ìÒ4,X°·nÝDDDðVF†aE/((Hy­’½½=þøãtìØQùý2eÊ`Ó¦M˜5kV¾Ã‚M›6•¼Wu4h€7âØ±cèܹ³ÆÚ_~ùnnn9r$ÊÕ’ÔÔT„††úõë‡:è¹#zmú>iVRê&XlܸQß­‘lݺUy¿kkk±cÇõ»wïnnn¢V­Zž'‘~ÿýwÑ´iÓB'aØÛÛ‹É“'‹§OŸê»e£æë뫼eÌ… ô݃lÃjÆ únJ(11Q8:: ÂÂÂBÄÆÆê»%­ÊÍÍ+W®,Òt÷J•*‰ùóçsöZ1$$$(o3ïåå¥ïv¨˜x ÒÓ§O1`À>æææX°`§Óo¼eË–áêÕ«ðòòÒ8ÝýÈ‘#hß¾=Þÿ}ÄÅÅIØ¥t&NœˆÌÌLÀ˜1cP¦L=wDÚ°"ImÙ²ݺuÃ`gg‡ØØXŒ=Zßm½zõêaÕªU¸té>úè#‡R·lÙ‚&Mš`øðá¸s玄]êÖñãDZaï<öññÑsG¤M +’„aaaøàƒðâÅ TªT ûö탇‡‡¾[“WWW¬]»çÏŸÇÀÕΨÌÉÉÁÒ¥Káââ‚àà`<}úTâN‹.oO©0ÊórÇG… tÙIL¶a%Läd²1xöì „‰'"77 4ÀñãÇÑ®];}·&[nnnØ´iΜ9ƒîÝ»«­{ñâ¾ùæÔ«WÑÑÑÈÊÊ’°Ë¢ñññA—.]°ÿ~µ5›6m‘#G¼ZsqìØ±uG’Ñó9³S7Ábݺuún„qqq¢aÆÊ—Î;‹ÔÔT}·eR …X²d‰r{MuêÔ?ýô“A]>ЩS'eâÆù¾Ÿ-êׯ¯¬yûí·õÔ)é’l÷¬Hÿ~ýõW¼ù書zõ*€W ‰îÚµKãêâ¤}fff6l®^½Š>úHcíÍ›7ñé§Ÿ¢uëÖÊõõ-))Iùù¦M›Ð¸qc„„„(÷—/_Žk×®)k>ýôSÉ{$ è;-KŠ{V†'''Gç»ibLLŒ¾Û¢ÿÙµk—hÞ¼y¡{YDÏž=Å™3gôÚ¯ƒƒƒÊÞ\]]Åü!ªW¯žïñääd½öKºÁ°"­JJJ;wVþ;T¬XQüùçŸún‹þC¡PˆØØXáââRh`™™™‰Aƒ‰ÄÄD½ôinn^¤` J—.-y$ Ùœ`!¹Í›7£Y³f8pà M›68wîºté¢ßƨ333 4—/_Æ¢E‹P¥Jµµâ å6jÔcÇŽÅÇ%ëóùóçP(E®ÏÎÎÆóçÏuØé‹lʤóâÅ Œ9T.s3fÌ:t5jÔÐsw¤‰••¾þúk$&&"44ŽŽŽjk³²²0þ|8;;#44T’…rŸ={öZõ™™™ ÑQ7¤O +*‘ . M›6ˆ‰‰”-[7nÄ·ß~ =wGEeooI“&áÆ˜8q"ìííÕÖ¦¥¥aòäÉpqqÁÒ¥K‘““£³¾^7¬ ,, ýúõË7邌ÊŠE¡P ::mÛ¶Å•+W­[·ÆÙ³gy¡¯+W®¾ùæ$&&b̘1°¶¶V[{çÎ >Mš4Á–-[tÒOq ¶mÛ777øûûë4LI:² +ž³Ò„„téÒãÆÃË—/aff>|uëþ_{÷Uý¿üY®¼”¢‚(()©T¤ƒ7” $MD©&Æ“Žf‰Ž‚¸ƒbš·D¨?ÂðBÐŒÐh"E$ñŽâ¤¼ ¬ìû÷G?·ïºî²È²g÷ð~Íìî~Îòœ3³çìçœ3@èxLzö쉔”TUU!""Bë5+++ñþûïcÔ¨QÊsõåeË ø÷û«ääd\¾|Y˜`D[VLÿ ’’’0tèPz÷îƒâ›o¾áÃ~"äììŒíÛ·£¼¼!!!ZoˆùìŽÆÁÁÁÊsëÚª-“%,--‘––WWW½daÂmYñ]fõ«ººX´h‘ò‹õ?ü§OŸF`` ÀéX{4h²²²púôi„††jûË/¿ÀÓÓÓ¦Mkó^®×|ž££#>Œyóæµéç3ã!Ú²âÀúÑÜÜŒÄÄD  …‚òóó)!!.^¼ØNi5«««£Í›7“¿¿¿Úa>Z°`8qÂà¹þWEEõìÙ“••åææ¾p\AAÙØØT*¥ššåóÔ¯_?åz­\¹ÒPÑ™]¿~"##ÉÜܼÅÒ  ’’¡#³6mY­Y³Fç÷Ëå4jÔ(å²'NlÇÄÿ¹}û6¥§§Ó„ ÈÊÊJ%¿­­-͘1ƒ²³³éÉ“'É£MUU•²¨Ðºuë´ŽOLLTûЯ\¾K—.TWW×Þ±YpöìYš2eJ‹…effF3gΤ˗/ ™½Ñ–•®ŸÚ ­X±BeYssóvû‚öÊ•+”œœLo¿ý¶Ú'Bkkkš:u*íÝ»×à“%´ijj"eNWWWßG=óàÁ’J¥äáá¡ü·£££ÎeÇXkŸŸ_‹¥%•J)66–îÝ»'tdÖ ¢-«¥K—¶¸lUU¼pù‚‚½ä“ËåTPP@Ë—/'’H$j³—BCCi÷îÝFû˳|ùr•Ì©©©:-7|øp@—.]Rîi W_}•=zÔΩYG¤P(èçŸ&ww÷K«[·n”””dG.XËD[VŸþ¹ÆeêëëiéÒ¥$•J5þGNNN~éLW¯^¥ôôt ¡.]º¨½wÏž=iÞ¼y”““C/ýs ¡ªªJeÐÆÆ†îß¿¯Ó²³fÍ"”””¤r1==½S³ŽN.—SZZõêÕ«ÅÒrqq¡}ûö|V-kÑ–ÕüùóÕÆ655‘L&£®]»¶ø8""Bç çΣôôtš5kõïß_í½$ ùøøÐ²eËèèÑ£ÔÜܬÏMЮ"##UÖeúôé:/¦Ü{|¶¼»»;ÉåòvLÌØÓø¡M¡P`ëÖ­pssƒL&ã¶3Q—UVVnÞ¼‰Ë—/C&“é|ë™'N´S2Óðü†¯_¿®uüºuë›› èÒ¥ Ξ=‹={ö€ˆÔîàºvíZþDÊŒš““¾ýö[œ;w}ô$É Çýý÷ßX¼x1¼¼¼pèÐ!§ì@„ßÑvšföíÛWmì³Û€Ìž=[åî¶Úù<‹‚‚•m1~üxc7mÚ¤r.[||<ÕÖÖš4i=z”òòò(44”œœœèÎ;†ZÆÚ¬¸¸˜ÆŽÛâߌɓ'SUU•ÐqEG´e5yòd­Ë=|øöìÙC&LÐz?œŽ~ã¶g×÷ÃÿOßÏËËSy½±±‘bbbTÎo‹Užü«P(¨sçÎjÛ5++KˆÕa¬ÍòòòÈ××WkaYYYѲeËøt =mY-Y²Dç÷¸yó&Éd2òööV{ŸÖÞÄQl)88X¹=ìììhÅŠ”™™I«W¯¦¾}û*_óõõ¥¢¢"µ÷ˆŽŽVÙ¦‘‘‘¬ cú£P((++«Å«»8~ÿýw¡ãŠ‚h˪57_ü_çΣ5kÖÐСC Íœ9SωMB¡ mÛ¶‘ƒƒÃ ·õ;ï¼CûöíÓx)¥ºº:òòò"Úâ½°3r¹œÒÓÓéµ×^ÓzAÅ‹ó­HÚHBD¤ÃW[F«¾¾ݺuS{^&“aáÂ…mzïêêj”••!$$¤Mï#·nÝBRR~ûí7téÒ£GFXXÞxã—•Ëå8þ¼Î'3fJ‘ššŠ„„‡üýýñ믿Šþ‚íE´e•––†ùóç ˆ1ÖQ=zôéé騰ajjjÔ^ÿî»ïðÉ'ŸÌô‰vêºT*:c¬ƒ±±±ALL ª««‘ššªv®âðáÃJfúD[V&¾ÃÈ3aÖÖÖˆŽŽFuu5²³³1}útŒ7ŽËª ,„Ð^ …Ðcœ¹¹9‚‚‚$t“'Ú=+.+Æ.+ÆcFËŠ1ƘÑmYñ ÆÑ–ïY1ƘxpY1Æ3z\VŒ1ÆŒ—cŒ1£ÇeÅcÌèqY1Æ3z\VŒ1ÆŒžhˊϳbŒ1ñmYñžcŒ‰‡hËŠ÷¬cL<¸¬cŒ=Ñ–dŒ1ñmYñžcŒ‰—cŒ1£'Ú²âÀŒ1&¢-+Þ³bŒ1ñà²bŒ1fôD[V|1ÆÄC´eÅ{VŒ1&¢-+Þ³bŒ1ñmYñžcŒ‰‡hËJ"‘1Ƙžˆ¶¬¬­­…ŽÀcLOD[V–––BG`Œ1¦'¢-++++¡#0ÆÓ.+ÆcFO´eeoo/tÆcz"Ú²rpp:cŒ1=mYuíÚUèŒ1ÆôD´eåää$tÆcz"ʲ²²²ÂÀ…ŽÁcLODYV<1ÆDD”e5gΡ#0ÆÓ# ¡´•™™ °³³Ã˜1c%p*Æcúô«LØ 1#êØIEND®B`‚fluids-1.0.22/docs/examples.rst0000644000175000017500000000745314302004506015713 0ustar nileshnileshSolved Fluids Mechanics Problems ================================ A collection of problems from Crane TP 410 have been solved using the fluids library. These are industrially relevant problems. Crane TP 410 is used extensively as a source in fluids, although often there are better correlations that are implemented and chosen as default methods. All problems include a description of the problems, but Crane TP 410 includes schematics that are not included here. A copy can be obtained from your local library or bought `here `_. These problems often make use of `thermo `_ and `pint `_ so make sure you have them installed! More details on the unit handling library can be found at :doc:`fluids.units `. .. toctree:: Examples/Crane TP 410 Solved Problems/7.1 Smooth Pipe (Plastic).ipynb Examples/Crane TP 410 Solved Problems/7.2 L, L over D and K from Kv for Conventional Type Valves.ipynb Examples/Crane TP 410 Solved Problems/7.3 L, L over D, K, and Kv for Conventional Type Valves.ipynb Examples/Crane TP 410 Solved Problems/7.4 Venturi Type Valves.ipynb Examples/Crane TP 410 Solved Problems/7.5 Lift Check Valves.ipynb Examples/Crane TP 410 Solved Problems/7.6 Reduced Port Ball Valve.ipynb Examples/Crane TP 410 Solved Problems/7.7 Laminar flow in Valves, Fittings, and Pipe - System from Example 7.6.ipynb Examples/Crane TP 410 Solved Problems/7.8 Laminar flow in Valves, Fittings, and Pipe - SAE oil through a pipe and globe valve.ipynb Examples/Crane TP 410 Solved Problems/7.9 Laminar Flow in Valves, Fittings, and Pipe.ipynb Examples/Crane TP 410 Solved Problems/7.10 Piping Systems - Steam.ipynb Examples/Crane TP 410 Solved Problems/7.11 Flat heating Coils - Water.ipynb Examples/Crane TP 410 Solved Problems/7.12 Orifice Size for Given Pressure Drop and Velocity.ipynb Examples/Crane TP 410 Solved Problems/7.13 Flow given in English Units - Oil.ipynb Examples/Crane TP 410 Solved Problems/7.14 Bernoulli's Theorem-Water.ipynb Examples/Crane TP 410 Solved Problems/7.15 Power Required for Pumping.ipynb Examples/Crane TP 410 Solved Problems/7.16 Air Lines.ipynb Examples/Crane TP 410 Solved Problems/7.17 Sizing of Pump for Oil Pipelines.ipynb Examples/Crane TP 410 Solved Problems/7.18 Gas.ipynb Examples/Crane TP 410 Solved Problems/7.19 Water.ipynb Examples/Crane TP 410 Solved Problems/7.20 Steam at Sonic Velocity.ipynb Examples/Crane TP 410 Solved Problems/7.21 Gases at Sonic Velocity.ipynb Examples/Crane TP 410 Solved Problems/7.22 Compressible Fluids at Subsonic Velocity.ipynb Examples/Crane TP 410 Solved Problems/7.23 Flow Through Orifice Meters.ipynb Examples/Crane TP 410 Solved Problems/7.24 Laminar Flow.ipynb Examples/Crane TP 410 Solved Problems/7.25 Rectangular Duct - Application of Hydraulic Radius to Flow Problems.ipynb Examples/Crane TP 410 Solved Problems/7.26 Pipe Partially Filled with Flowing Water.ipynb Examples/Crane TP 410 Solved Problems/7.27 Sizing Control Valves for Liquid Service.ipynb Examples/Crane TP 410 Solved Problems/7.28 Checking for Choked Flow Conditions in a Control Valve.ipynb Examples/Crane TP 410 Solved Problems/7.29 Orifice Flow Rate Calculation.ipynb Examples/Crane TP 410 Solved Problems/7.30 Nozzle Sizing Calculations.ipynb Examples/Crane TP 410 Solved Problems/7.32 NPSH Available Calculation.ipynb Examples/Crane TP 410 Solved Problems/7.33 Pump Affinity Rules.ipynb Examples/Crane TP 410 Solved Problems/7.34 Pump Power and Operating Cost.ipynb Examples/Crane TP 410 Solved Problems/7.35 Hydraulic Resistance of a Converging Tee.ipynb Examples/Crane TP 410 Solved Problems/7.36 Hydraulic Resistance of a Diverging Wye.ipynbfluids-1.0.22/docs/fluids.saltation.rst0000644000175000017500000000034414302004506017350 0ustar nileshnileshPneumatic conveying (fluids.saltation) ====================================== .. meta:: :description: Calculate the saltation velocity of entrained solid flows in a gas using Python. .. automodule:: fluids.saltation fluids-1.0.22/docs/tutorial.rst0000644000175000017500000017716514302004506015750 0ustar nileshnileshfluids tutorial =============== Importing --------- Fluids can be imported as a standalone library, or all of its functions and classes may be imported with star imports: >>> import fluids # Good practice >>> from fluids import * # Bad practice but convenient All functions are available from either the main fluids module or the submodule; i.e. both fluids.friction_factor and fluids.friction.friction_factor are valid ways of accessing a function. Design philosophy ----------------- Like all libraries, this was developed to scratch my own itches. Since its public release it has been found useful by many others, from students across the world to practicing engineers at some of the world's largest companies. The bulk of this library's API is considered stable; enhancements to functions and classes will still happen, and default methods when using a generic correlation interface may change to newer and more accurate correlations as they are published and reviewed. To the extent possible, correlations are implemented depending on the highest level parameters. The friction_factor correlation does not accept pipe diameter, velocity, viscosity, density, and roughness - it accepts Reynolds number and relative roughness. This makes the API cleaner and encourages modular design. All functions are designed to accept inputs in base SI units. However, any set of consistent units given to a function will return a consistent result; for instance, a function calculating volume doesn't care if given an input in inches or meters; the output units will be the cube of those given to it. The user is directed to unit conversion libraries such as `pint `_ to perform unit conversions if they prefer not to work in SI units. The tutorial for using it with fluids is at :doc:`fluids.units `. There are two ways to use numpy arrays with fluids. Easiest to use is a `vectorized` module, which wraps all of the fluids functions with np.vectorize. Instead of importing from fluids, the user can import from :doc:`fluids.vectorized `: >>> from fluids.vectorized import * # doctest: +SKIP >>> friction_factor(Re=[100, 1000, 10000], eD=0) # doctest: +SKIP array([0.64 , 0.064 , 0.03088295]) It is possible to switch back and forth between the namespaces with a subsequent import: >>> from fluids import * The second way is `Numba `_. This optional dependency provides the speed you expect from NumPy arrays - or better. In some cases, much better. The tutorial for using it is at :doc:`fluids.numba `, but in general use it the same way but with a different import. >>> from fluids.numba_vectorized import * # doctest: +SKIP Dimensionless numbers --------------------- More than 30 Dimensionless numbers are available in :py:mod:`fluids.core` : Calculation of :py:func:`~.Reynolds` and :py:func:`~.Prandtl` number for water flowing in a 0.01 m diameter pipe at 1.5 m/s: >>> fluids.core.Reynolds(D=0.01, rho=1000, V=1.5, mu=1E-3) 15000.0 >>> fluids.core.Prandtl(rho=1000, mu=1E-3, Cp=4200, k=0.6) 7.000000000000001 Where different parameters may be used with a dimensionless number, either a separate function is created for each or both sets of parameters are can be specified. For example, instead of specifying viscosity and density for the Reynolds number calculation, kinematic viscosity could have been used instead: >>> Reynolds(D=0.01, V=1.5, nu=1E-6) 15000.0 In the case of groups like the Fourier number, used in both heat and mass transfer, two separate functions are available, :py:func:`~.Fourier_heat` and :py:func:`~.Fourier_mass`. The heat transfer version supports specifying either the density, heat capacity, and thermal conductivity - or just the thermal diffusivity. There is no equivalent set of three parameters for the mass transfer version; it always requires mass diffusivity. >>> Fourier_heat(t=1.5, L=2, rho=1000., Cp=4000., k=0.6) 5.625e-08 >>> Fourier_heat(1.5, 2, alpha=1E-7) 3.75e-08 >>> Fourier_mass(t=1.5, L=2, D=1E-9) 3.7500000000000005e-10 Among the coded dimensionless numbers are :py:func:`~.Archimedes`, :py:func:`~.Bejan_L`, :py:func:`~.Bejan_p`, :py:func:`~.Biot`, :py:func:`~.Boiling`, :py:func:`~.Bond`, :py:func:`~.Capillary`, :py:func:`~.Cavitation`, :py:func:`~.Confinement`, :py:func:`~.Dean`, :py:func:`~.Drag`, :py:func:`~.Eckert`, :py:func:`~.Euler`, :py:func:`~.Fourier_heat`, :py:func:`~.Fourier_mass`, :py:func:`~.Froude_densimetric`, :py:func:`~.Froude`, :py:func:`~.Graetz_heat`, :py:func:`~.Grashof`, :py:func:`~.Hagen`, :py:func:`~.Jakob`, :py:func:`~.Knudsen`, :py:func:`~.Lewis`, :py:func:`~.Mach`, :py:func:`~.Nusselt`, :py:func:`~.Ohnesorge`, :py:func:`~.Peclet_heat`, :py:func:`~.Peclet_mass`, :py:func:`~.Power_number`, :py:func:`~.Prandtl`, :py:func:`~.Rayleigh`, :py:func:`~.Reynolds`, :py:func:`~.Schmidt`, :py:func:`~.Sherwood`, :py:func:`~.Stanton`, :py:func:`~.Stokes_number`, :py:func:`~.Strouhal`, :py:func:`~.Suratman`, :py:func:`~.Weber`, :py:func:`~.Morton`. Miscellaneous utilities ----------------------- More than just dimensionless groups are implemented in :py:mod:`fluids.core`. Converters between loss coefficient, L/D equivalent, length of pipe, and pressure drop are available. It is recommended to convert length/diameter equivalents and lengths of pipe at specified friction factors to loss coefficients using the :py:func:`~.K_from_L_equiv` and :py:func:`~.K_from_f` functions respectively. They can all be summed easily afterwards. >>> K_from_f(fd=0.018, L=100., D=.3) 6.0 >>> K_from_L_equiv(L_D=240, fd=0.02) 4.8 Either head loss or pressure drop can be calculated once the total loss coefficient K is known using :py:func:`~.head_from_K` or :py:func:`~.dP_from_K` respectively. Head loss does not require knowledge of the fluid's density, but pressure drop does. >>> head_from_K(K=(6+4.8), V=3) 4.955820795072732 >>> dP_from_K(K=(6+4.8), rho=1000, V=3) 48600.0 If a K value is known and desired to be converted to a L/D ratio or to an equivalent length of pipe, that calculation is available as well with :py:func:`~.L_from_K` or :py:func:`~.L_equiv_from_K` respectively: >>> L_from_K(K=6, fd=0.018, D=.3) 100.0 >>> L_equiv_from_K(3.6, fd=0.02) 180.0 Pressure and head are also convertible with the :py:func:`~.head_from_P` and :py:func:`~.P_from_head` functions: >>> head_from_P(P=98066.5, rho=1000) 10.000000000000002 >>> P_from_head(head=5., rho=800.) 39226.6 Also implemented in :py:mod:`fluids.core`. are the following: :py:func:`~.thermal_diffusivity`: >>> thermal_diffusivity(k=0.02, rho=1., Cp=1000.) 2e-05 Speed of sound in an ideal gas :py:func:`~.c_ideal_gas`: (requires temperature, isentropic exponent Cp/Cv): >>> c_ideal_gas(T=303, k=1.4, MW=28.96) 348.9820953185441 A converter between dynamic and kinematic viscosity :py:func:`~.nu_mu_converter`: >>> nu_mu_converter(rho=998., nu=1.0E-6) 0.000998 >>> nu_mu_converter(998., mu=0.000998) 1e-06 Calculation of :py:func:`~.gravity` on earth as a function of height and latitude (input in degrees and height in meters): >>> gravity(latitude=55, H=1E6) 6.729011976863571 Friction factors ---------------- Friction factor is easily calculable with :py:func:`~.friction_factor`. >>> epsilon = 1.5E-6 # m, clean steel >>> fluids.friction.friction_factor(Re=15000, eD=epsilon/0.01) 0.028087909385731864 The transition to laminar flow is implemented abruptly at Re=2040, one of the latest experimental results which is accurate to +/- 10. If the Reynolds number is in the laminar regime, the transition to a different correlation happens automatically and the well-known solution fd = 64/Re is given. >>> fluids.friction.friction_factor(Re=150) 0.4266666666666667 Friction factor in curved pipes in available as :py:func:`~.friction_factor_curved`. The curved friction factor is applicable for helices and coils, and to a lesser extent curved bends. >>> friction_factor_curved(Re=15000, Di=.01, Dc=2.5, roughness=1.5E-6) 0.029846229072776263 The critical Reynolds number for curved pipes is increased compared to straight pipe flow, and is a function of the curvature of the pipe. The preferred method to calculate the transition (used by default for the automatic regime transition) is the method of Schmidt (1967) :py:func:`~.helical_transition_Re_Schmidt`. >>> helical_transition_Re_Schmidt(Di=.01, Dc=2.5) 3948.7442097768603 Although roughness is a hard value to know without measuring it for a pipe, several hundred pipe conditions have had their roughness values measured in the literature, and they can be searched through using fuzzy matching and the functions :py:func:`~.nearest_material_roughness` and :py:func:`~.material_roughness`. >>> nearest_material_roughness('Used water piping', clean=False) 'Seamless steel tubes, Used water piping' >>> material_roughness('Seamless steel tubes, Used water piping') 0.0015 The material_roughness function can also be used directly, but in that case there is no feedback about the material which was found. >>> material_roughness('glass') 1e-05 As fuzzy string matching is a pretty terrible solution, it is encouraged to find the desired string in the `actual source code of fluids `_. There is one more way of obtaining the roughness of a clean pipe, developed by Farshad and Rieke (2006) :py:func:`~.roughness_Farshad`. It has been established that in commercial pipe, the larger the diameter, the larger the roughness. >>> roughness_Farshad('Carbon steel, bare', D=0.05) 3.529128126365038e-05 Only the following types of clean, new pipe have data available: * 'Plastic coated' * 'Carbon steel, honed bare' * 'Cr13, electropolished bare' * 'Cement lining' * 'Carbon steel, bare' * 'Fiberglass lining' * 'Cr13, bare' There is also a term called `Transmission factor`, used in many pipeline applications. It is effectively a variant on friction factor. They can be inter-converted with the :py:func:`~.transmission_factor` function. >>> transmission_factor(fd=0.0185) # calculate transmission factor 14.704292441876154 >>> transmission_factor(F=20) # calculate Darcy friction factor 0.01 Pipe schedules -------------- ASME/ANSI pipe tables from B36.10M-2004 and B36-19M-2004 are implemented in fluids.piping. Piping can be looked up based on nominal pipe size, outer diameter, or inner diameter with the :py:func:`~.nearest_pipe` function. >>> nearest_pipe(NPS=2) # returns NPS, inside diameter, outer diameter, wall thickness (2, 0.05248, 0.0603, 0.00391) When looking up by actual diameter, the nearest pipe as large or larger then requested is returned: >>> NPS, Di, Do, t = nearest_pipe(Di=0.5) >>> Di 0.57504 >>> nearest_pipe(Do=0.5) (20, 0.47781999999999997, 0.508, 0.01509) By default, the pipe schedule used for the lookup is schedule 40. Other schedules that are available are: '5', '10', '20', '30', '40', '60', '80', '100', '120', '140', '160', 'STD', 'XS', 'XXS', '5S', '10S', '40S', '80S'. >>> nearest_pipe(Do=0.5, schedule='40S') (20, 0.48894, 0.508, 0.009529999999999999) >>> nearest_pipe(Do=0.5, schedule='80') (20, 0.45562, 0.508, 0.02619) If a diameter which is larger than any pipe in the schedule is input, an exception is raised: >>> nearest_pipe(Do=1) Traceback (most recent call last): File "", line 1, in File "fluids/piping.py", line 276, in nearest_pipe raise ValueError('Pipe input is larger than max of selected schedule') ValueError: Pipe input is larger than max of selected schedule Wire gauges ----------- The construction of mechanical systems often uses the "gauge" systems, a variety of old imperial conversions between plate or wire thickness and a dimensionless number. Conversion from and to the gauge system is done by the :py:func:`~.gauge_from_t` and :py:func:`~.t_from_gauge` functions. Looking up the gauge from a wire of known diameter approximately 1.2 mm: >>> gauge_from_t(.0012) 18 The reverse conversion: >>> t_from_gauge(18) 0.001245 Other schedules are also supported: * Birmingham Wire Gauge (BWG) ranges from 0.2 (0.5 inch) to 36 (0.004 inch). * American Wire Gauge (AWG) ranges from 0.167 (0.58 inch) to 51 (0.00099 inch). These are used for electrical wires. * Steel Wire Gauge (SWG) ranges from 0.143 (0.49 inch) to 51 (0.0044 inch). Also called Washburn & Moen wire gauge, American Steel gauge, Wire Co. gauge, and Roebling wire gauge. * Music Wire Gauge (MWG) ranges from 0.167 (0.004 inch) to 46 (0.18 inch). Also called Piano Wire Gauge. * British Standard Wire Gage (BSWG) ranges from 0.143 (0.5 inch) to 51 (0.001 inch). Also called Imperial Wire Gage (IWG). * Stub's Steel Wire Gage (SSWG) ranges from 1 (0.227 inch) to 80 (0.013 inch) >>> t_from_gauge(18, schedule='AWG') 0.00102362 Tank geometry ------------- Sizing of vessels and storage tanks is implemented in an object-oriented way as :py:class:`~.TANK` in :py:mod:`fluids.geometry`. All results use the exact equations; all are documented in the many functions in :py:mod:`fluids.geometry`. >>> T1 = TANK(D=1.2, L=4, horizontal=False) >>> T1.V_total, T1.A # Total volume of the tank and its surface area (4.523893421169302, 17.34159144781566) By default, tanks are cylinders without heads. Tank heads can be specified to be conical, ellipsoidal, torispherical, guppy, or spherical. The heads can be specified independently. The diameter and length are not required; the total volume desired can be specified along with the length to diameter ratio. >>> T1 = TANK(V=10, L_over_D=0.7, sideB='conical', horizontal=False) >>> T1.L, T1.D (1.7731788548899077, 2.5331126498427254) Conical, ellipsoidal, guppy and spherical heads are all governed only by one parameter, `a`, the distance the head extends out from the main tank body. Torispherical heads are governed by two parameters `k` and `f`. If these parameters are not provided, the distance the head extends out will be 25% of the size of the tank's diameter. For torispherical heads, the distance is similar but more complicated. >>> TANK(D=10., V=500, horizontal=False, sideA='ellipsoidal', sideB='ellipsoidal', sideA_a=1, sideB_a=1) Each TANK has __repr__ implemented, to describe the tank when printed. Torispherical tanks default to the ratios specified as ASME F&D. Other standard ratios can also be used; the documentation for :py:class:`~.TANK` lists their values. Here we implement DIN 28011's ratios. >>> TANK(D=0.01, V=0.25, horizontal=False, sideA='torispherical', sideB='torispherical') >>> DIN = TANK(L=3, D=5, horizontal=False, sideA='torispherical', sideB='torispherical', sideA_f=1, sideA_k=0.1, sideB_f=1, sideB_k=0.1) >>> print(DIN) Partial volume lookups are also useful. This is useful when the height of fluid in the tank is known, but not the volume. The reverse calculation is also implemented, and useful when doing dynamic simulation and to calculate the new height after a specified volume of liquid is removed. >>> DIN.h_max 4.937742 >>> DIN.h_from_V(40) 2.376017 >>> DIN.V_from_h(4.1) 73.83841 >>> DIN.SA_from_h(2.1) 42.51740 Surface areas of the heads and the main body are available as well as the total surface area of the tank. >>> DIN.A_sideA, DIN.A_sideB, DIN.A_lateral, DIN.A (24.749677, 24.749677, 47.123889, 96.623244) Miscellaneous geometry ---------------------- In addition to sizing all sorts of tanks, helical coils are supported and so are a number of other simple calculations. Sphericity is implemented as :py:func:`~.sphericity`, requiring a calculated surface area and volume. For a cube of side length 3, the surface area is 6*a^2=54 and volume a^3=27. Its sphericity is then: >>> sphericity(A=54, V=27) 0.80599597 Aspect ratio of is implemented as :py:func:`~.aspect_ratio`; for example, a rectangle 0.2 m by 2 m: >>> aspect_ratio(.2, 2) 0.1 Circularity, a parameter used to characterize 2d images of particles, is implemented as :py:func:`~.circularity`. For a rectangle, one side length = 1, second side length = 100: >>> D1 = 1 >>> D2 = 100 >>> A = D1*D2 >>> P = 2*D1 + 2*D2 >>> circularity(A, P) 0.03079690 Atmospheric properties ---------------------- Various main classes are available to model the atmosphere, of varying accuracy. They are the US Standard Atmosphere 1976 (:py:class:`~.ATMOSPHERE_1976`), a basic but very quick model; the NRLMSISE 00 model, substantially more powerful and accurate and still the standard to this day (:py:class:`~.ATMOSPHERE_NRLMSISE00`); and two models for wind speed only, Horizontal Wind Model 1993 (:py:func:`~.hwm93`) and Horizontal Wind Model 2014 (:py:func:`~.hwm14`). The two horizontal wind models are actually fortran codes, and are not compiled automatically on installation. Solar models are :py:func:`~.earthsun_distance`, :py:func:`~.solar_position`, :py:func:`~.sunrise_sunset` and :py:func:`~.solar_irradiation`. :py:class:`~.ATMOSPHERE_1976` is the simplest model, and very suitable for basic engineering purposes. It supports atmospheric temperature, density, and pressure as a function of elevation. Optionally, a local temperature difference from earth's average can be specified to correct the model to local conditions but this is only a crude approximation. Conditions 5 km into the air: >>> atm = ATMOSPHERE_1976(Z=5000) >>> atm.T, atm.P, atm.rho (255.6755432218, 54048.2861457, 0.736428420779) The standard also specifies simplistic formulas for calculating the thermal conductivity, viscosity, speed of sound, and gravity at a given elevation: >>> atm.g, atm.mu, atm.k, atm.v_sonic (9.79124107698, 1.62824813536e-05, 0.0227319029514, 320.545519670) Those property routines are static methods, and can be used without instantiating an atmosphere object: >>> ATMOSPHERE_1976.gravity(Z=1E5) 9.5052387 >>> ATMOSPHERE_1976.sonic_velocity(T=300) 347.220809 >>> ATMOSPHERE_1976.viscosity(T=400) 2.285266e-05 >>> ATMOSPHERE_1976.thermal_conductivity(T=400) 0.03365714 :py:class:`~.ATMOSPHERE_NRLMSISE00` is the recommended model, and calculates atmospheric density, temperature, and pressure as a function of height, latitude/longitude, day of year, and seconds since start of day. The model can also take into account solar and geomagnetic disturbances which effect the atmosphere at very high elevations if more parameters are provided. It is valid up to 1000 km. This model is somewhat slow; it is a Python port of the Fortran version, created by Joshua Milas. It does not support gravity profiles or transport properties, but does calculate the composition of the atmosphere (He, O, N2, O2, Ar, H2, N2 as constituents). 1000 m elevation, 45 degrees latitude and longitude, 150th day of year, 0 seconds in: >>> atm = ATMOSPHERE_NRLMSISE00(Z=1E3, latitude=45, longitude=45, day=150) >>> atm.T, atm.P, atm.rho (285.544, 90394.44, 1.10190) The composition of the atmosphere is specified in terms of individual molecules/m^3: >>> atm.N2_density, atm.O2_density (1.7909954e+25, 4.8047035e+24) This model uses the ideal gas law to convert particle counts to mass density. Mole fractions of each species are available as well. >>> atm.components ['N2', 'O2', 'Ar', 'He', 'O', 'H', 'N'] >>> atm.zs [0.7811046, 0.2095469, 0.009343, 5.2417e-06, 0.0, 0.0, 0.0] The horizontal wind models have almost the same API, and calculate wind speed and direction as a function of elevation, latitude, longitude, day of year and time of day. hwm93 can also take as an argument local geomagnetic conditions and solar activity, but this effect was found to be so negligible it was removed from future versions of the model such as hwm14. Calculation of wind velocity, meridional (m/sec Northward) and zonal (m/sec Eastward) for 1000 m elevation, 45 degrees latitude and longitude, 150th day of year, 0 seconds in, with both models: >>> hwm93(Z=1000, latitude=45, longitude=45, day=150) # doctest: +SKIP (-0.0038965975400060415, 3.8324742317199707) >>> hwm14(Z=1000, latitude=45, longitude=45, day=150) # doctest: +SKIP (-0.9920163154602051, 0.4105832874774933) These wind velocities are only historical normals; conditions may vary year to year. The solar radiation model is based around the Sun Position Algorithm (SPA) developed by NREL; it can calculate the position of the sun in the sky at any time for any place on Earth, and can calculate how far away the sun is from Earth. The python implementation used is a slightly modified version of the Python implementation written by Tony Lorenzo and released under the BSD 3-clause license. The algorithm is published with the excellent `pvlib `_ library for solar energy modelling applications. The functions included are :py:func:`~.earthsun_distance`, :py:func:`~.sunrise_sunset`, :py:func:`~.solar_position` and :py:func:`~.solar_irradiation`. All take and/or receive datetime instances, which introduces the nightmare of time zones. All the functions have no internal way of knowing about what time zone the latitude/longitude inputs are in. They only calculate the position of earth, and they need to know what "real" time it is, so it can deal with leap seconds, etc. There are now two options for how to provide time inputs. The first is to provide the time in the UTC time zone, which has replaced Greenwich Mean Time (GMT) as the standard reference time. The inputs and outputs of this function will look strange, because unless you happen to be working somewhere with that time zone, you have to convert the time inputs to that time zone initially. So to find the solar position at 6 AM in Perth, Australia (offset -8 hours), we would manually convert the time zone. >>> from datetime import datetime, timedelta >>> solar_position(datetime(2020, 6, 6, 14, 30, 0) - timedelta(hours=8), -31.95265, 115.85742) [63.4080568623, 63.4400018158, 26.59194313766, 26.5599981841, 325.121376246, 75.7467475485] This painful, so timezone support has been added to the functions using the library `pytz`. >>> import pytz >>> when = pytz.timezone('Australia/Perth').localize(datetime(2020, 6, 6, 14, 30, 0)) >>> solar_position(when, -31.95265, 115.85742) [63.4080568623, 63.4400018158, 26.59194313766, 26.55999818417, 325.121376246, 75.7467475485] To determine the distance of earth and the sun, use the :py:func:`~.earthsun_distance` function which accepts a single datetime object and returns the distance in meters. This is still impacted by timezones. >>> earthsun_distance(pytz.timezone('America/Edmonton').localize(datetime(2003, 10, 17, 13, 30, 30))) 149080606927.6 To determine when the sun rises, sets, and is at solar noon, use the :py:func:`~.sunrise_sunset` function, which accepts a datetime instance, a latitude, and a longitude in degrees. >>> import pytz >>> sunrise, sunset, transit = sunrise_sunset(pytz.timezone('America/Edmonton').localize(datetime(2018, 4, 17)), 51.0486, -114.07) >>> sunrise datetime.datetime(2018, 4, 16, 6, 39, 1, 570479, tzinfo=) >>> sunset datetime.datetime(2018, 4, 16, 20, 32, 25, 778162, tzinfo=) >>> transit datetime.datetime(2018, 4, 16, 13, 36, 0, 386341, tzinfo=) To determine where in the sky the sun appears at any location and time, use the :py:func:`~.solar_position` function, which requires a datetime instance, a latitude, and a longitude. >>> apparent_zenith, _, _, _, azimuth, _ = solar_position(pytz.timezone('America/Edmonton').localize(datetime(2003, 10, 17, 13, 30, 30)), 51.0486, -114.07) >>> apparent_zenith, azimuth (60.3674252872, 182.513677566) The function returns several other properties which may be of interest. Its first return value, apparent_zenith, is the zenith which an observer on the ground would see the sun at after accounting for atmospheric refraction. To more accurately calculate the solar position, the temperature and pressure at ground level are required as well - as they impact the refraction as well; these arguments are accepted as well by :py:func:`~.solar_position` for more accuracy. When specifying pressure, be sure to use the real pressure of the site - not an adjusted to standard conditions one as reported by weather stations! >>> solar_position(pytz.timezone('America/Edmonton').localize(datetime(2003, 10, 17, 13, 30, 30)), 51.0486, -114.07, T=290, P=8.9E4)[0] 60.370155603 The primary application of sun position is for calculating the amount of sunlight received by an object, via the :py:func:`~.solar_irradiation` function. Unlike the previous functions, it requires an installation of `pvlib `_ to work. In addition to the arguments previously discussed, the surface_tilt and surface_azimuth of the object are required. The object is assumed to be a plane only - other objects need to be discretized into planes through finite-element calculations. The elevation is required, as well as the average albedo of the ground surrounding the object (not immediately; within several kilometers). The calculation is then straightforward: >>> solar_irradiation(Z=1100.0, latitude=51.0486, longitude=-114.07, linke_turbidity=3, ... moment=pytz.timezone('America/Edmonton').localize(datetime(2018, 4, 15, 13, 43, 5)), surface_tilt=41.0, ... surface_azimuth=180.0, albedo=0.25) (1065.762189628, 945.265656450, 120.4965331774, 95.3153534421, 25.18117973531) The first return value is the solar radiation which hits the object, in W/m^2. The next two are the components of the radiation that comes 1) directly from the sun and 2) diffusely, after being reflected from some other object. The final two return values break up the diffuse light into 3) a component reflected only in the sky and clouds and 4) a component caused by earth's albedo, bounding off the surface, then the sky, before hitting the object. Note that if not provided, the temperature and pressure of the ground are obtained via the :py:class:`~.ATMOSPHERE_NRLMSISE00` class, but this quadruples the time required for the calculation. Compressor sizing ----------------- Both isothermal and isentropic/polytropic compression models are implemented in :py:mod:`fluids.compressible`. Isothermal compression calculates the work required to compress a gas from one pressure to another at a specified temperature. This is the best possible case for compression; all actual compressors require more work to do the compression. By making the compression take a large number of stages and cooling the gas between stages, this can be approached reasonable closely. Integrally geared compressors are often used for this purpose The function :py:func:`~.isothermal_work_compression` provides this calculation. >>> isothermal_work_compression(P1=1E5, P2=1E6, T=300) 5743.4273042447 Work is calculated on a J/mol basis. If the second pressure is lower than the first, a negative work will result and you are modeling an expander instead of a compressor. Gas compressibility factor can also be specified. The lower the gas's compressibility factor, the less power required to compress it. >>> isothermal_work_compression(P1=1E6, P2=1E5, T=300) -5743.42730 >>> isothermal_work_compression(P1=1E5, P2=1E6, T=300, Z=0.95) 5456.2559390 There is only one function implemented to model both isentropic and polytropic compressors, as the only difference is that a polytropic exponent `n` is used instead of the gas's isentropic exponent Cp/Cv `k` and the type of efficiency is changed. The model requires initial temperature, inlet and outlet pressure, isentropic exponent or polytropic exponent, and optionally an efficiency. Compressing air from 1 bar to 10 bar, with inlet temperature of 300 K and efficiency of 78% with the :py:func:`~.isentropic_work_compression` function: >>> isentropic_work_compression(P1=1E5, P2=1E6, T1=300, k=1.4, eta=0.78) # work, J/mol 10416.87698 The model allows for the inlet or outlet pressure or efficiency to be calculated instead of the work: >>> isentropic_work_compression(T1=300, P1=1E5, P2=1E6, k=1.4, W=10416) # Calculate efficiency 0.78006567294 >>> isentropic_work_compression(T1=300, P1=1E5, k=1.4, W=10416, eta=0.78) # Calculate P2 999857.9648 >>> isentropic_work_compression(T1=300, P2=1E6, k=1.4, W=10416, eta=0.78) # Calculate P1 100014.20552 The approximate temperature rise can also be calculated with the function :py:func:`~.isentropic_T_rise_compression`. >>> T2 = isentropic_T_rise_compression(P1=1E5, P2=1E6, T1=300, k=1.4, eta=0.78) >>> T2, T2-300 # outlet temperature and temperature rise, K (657.960664955, 357.9606649550) It is more accurate to use an enthalpy-based model which incorporates departure functions. Polytropic exponents and efficiencies are convertible to isentropic exponents and efficiencies with :py:func:`~.isentropic_efficiency` and :py:func:`~.polytropic_exponent` . For the above example, with `k` = 1.4 and `eta_s` = 0.78: >>> eta_p = isentropic_efficiency(P1=1E5, P2=1E6, k=1.4, eta_s=0.78) # with eta_s specified, returns polytropic efficiency >>> n = polytropic_exponent(k=1.4, eta_p=eta_p) >>> eta_p, n (0.837678534, 1.51763186) With those results, we can prove the calculation worked by calculating the work required using these polytropic inputs: >>> isentropic_work_compression(P1=1E5, P2=1E6, T1=300, k=n, eta=eta_p) 10416.8769 The work is the same as calculated with the original inputs. Note that the conversion is specific to three inputs: Inlet pressure; outlet pressure; and isentropic exponent `k`. If any of those change, then the calculated polytropic exponent and efficiency will be different as well. To go in the reverse direction, we take the case of isentropic exponent k =Cp/Cv=1.4, eta_p=0.83 The power is calculated to be: We first need to calculate the polytropic exponent from the polytropic efficiency: >>> n = polytropic_exponent(k=1.4, eta_p=0.83) >>> print(n) 1.524934383 >>> isentropic_work_compression(P1=1E5, P2=1E6, T1=300, k=n, eta=0.83) 10556.4981 Converting polytropic efficiency to isentropic efficiency: >>> eta_s = isentropic_efficiency(P1=1E5, P2=1E6, k=1.4, eta_p=0.83) >>> print(eta_s) 0.769683649 Checking the calculated power is the same: >>> isentropic_work_compression(P1=1E5, P2=1E6, T1=300, k=1.4, eta=eta_s) 10556.4981 Gas pipeline sizing ------------------- The standard isothermal compressible gas flow is fully implemented as :py:func:`~.isothermal_gas`, and through a variety of numerical and analytical expressions, can solve for any of the following parameters: * Mass flow rate * Upstream pressure (numerical) * Downstream pressure (analytical or numerical if an overflow occurs) * Diameter of pipe (numerical) * Length of pipe Solve for the mass flow rate of gas (kg/s) flowing through a 1 km long 0.5 m inner diameter pipeline, initially at 10 bar with a density of 11.3 kg/m^3 going downstream to a pressure of 9 bar. >>> isothermal_gas(rho=11.3, fd=0.00185, P1=1E6, P2=9E5, L=1000, D=0.5) 145.4847 The same case, but sizing the pipe to take 100 kg/s of gas: >>> isothermal_gas(rho=11.3, fd=0.00185, P1=1E6, P2=9E5, L=1000, m=100) 0.4297170 The same case, but determining what the outlet pressure will be if 200 kg/s flow in the 0.5 m diameter pipe: >>> isothermal_gas(rho=11.3, fd=0.00185, P1=1E6, D=0.5, L=1000, m=200) 784701.068182 Determining pipe length from known diameter, pressure drop, and mass flow (possible but not necessarily useful): >>> isothermal_gas(rho=11.3, fd=0.00185, P1=1E6, P2=9E5, D=0.5, m=150) 937.325802775 Not all specified mass flow rates are possible. At a certain downstream pressure, choked flow will develop - that downstream pressure is that at which the mass flow rate reaches a maximum. An exception will be raised if such an input is specified: >>> isothermal_gas(rho=11.3, fd=0.00185, P1=1E6, L=1000, D=0.5, m=260) # doctest: +SKIP Traceback (most recent call last): File "", line 1, in File "fluids/compressible.py", line 886, in isothermal_gas 'kg/s at a downstream pressure of %f' %(P1, m_max, Pcf)) Exception: The desired mass flow rate cannot be achieved with the specified upstream pressure of 1000000.000000 Pa; the maximum flowrate is 257.216733 kg/s at a downstream pressure of 389699.731765 >>> isothermal_gas(rho=11.3, fd=0.00185, P1=1E6, P2=3E5, L=1000, D=0.5) # doctest: +SKIP Traceback (most recent call last): File "", line 1, in File "fluids/compressible.py", line 821, in isothermal_gas due to the formation of choked flow at P2=%f, specified outlet pressure was %f' % (Pcf, P2)) Exception: Given outlet pressure is not physically possible due to the formation of choked flow at P2=389699.731765, specified outlet pressure was 300000.000000 The downstream pressure at which choked flow occurs can be calculated directly as well: >>> P_isothermal_critical_flow(P=1E6, fd=0.00185, L=1000., D=0.5) 389699.731 A number of limitations exist with respect to the accuracy of this model: * Density dependence is that of an ideal gas. * If calculating the pressure drop, the average gas density cannot be known immediately; iteration must be used to correct this. * The friction factor depends on both the gas density and velocity, so it should be solved for iteratively as well. It changes throughout the pipe as the gas expands and velocity increases. * The model is not easily adapted to include elevation effects due to the acceleration term included in it. * As the gas expands, it will change temperature slightly, further altering the density and friction factor. We can explore how the gas density and friction factor effect the model using the `thermo library `_ for chemical properties. Compute the downstream pressure of 50 kg/s of natural gas flowing in a 0.5 m diameter pipeline for 1 km, roughness = 5E-5 m: >>> from thermo import * # doctest: +SKIP >>> from fluids import * # doctest: +SKIP >>> from math import pi >>> D = 0.5 # doctest: +SKIP >>> L = 1000 # doctest: +SKIP >>> epsilon = 5E-5 # doctest: +SKIP >>> S1 = Stream('natural gas', P=1E6, m=50) # doctest: +SKIP >>> V = S1.Q/(pi/4*D**2) # doctest: +SKIP >>> Re = S1.Reynolds(D=D, V=V) # doctest: +SKIP >>> fd = friction_factor(Re=Re, eD=epsilon/D) # doctest: +SKIP >>> P2 = isothermal_gas(rho=S1.rho, fd=fd, P1=S1.P, D=D, L=L, m=S1.m) # doctest: +SKIP >>> P2 # doctest: +SKIP 877420.071063 In the above example, the friction factor was calculated using the density and velocity of the gas when it enters the stream. However, the average values, at the middle pressure, and more representative. We can iterate to observe the effect of using the average values: >>> for i in range(10): # doctest: +SKIP ... S2 = Stream('natural gas', P=0.5*(P2+S1.P), m=50) # doctest: +SKIP ... V = S2.Q/(pi/4*D**2) # doctest: +SKIP ... Re = S2.Reynolds(D=D, V=V) # doctest: +SKIP ... fd = friction_factor(Re=Re, eD=epsilon/D) # doctest: +SKIP ... P2 = isothermal_gas(rho=S2.rho, fd=fd, P1=S1.P, D=D, L=L, m=S1.m) # doctest: +SKIP ... print('%g' %P2) # doctest: +SKIP 868535 867840 867786 867781 867781 867781 867781 867781 867781 867781 As can be seen, the system converges very quickly. The difference in calculated pressure drop is approximately 1%. Please note the values given here may change as properties are updated in the `thermo` library, they are here to demonstrate the technique only. Gas pipeline sizing: Empirical equations ---------------------------------------- In addition to the actual model, many common simplifications used in industry are implemented as well. These are equally capable of solving for any of the following inputs: * Mass flow rate * Upstream pressure * Downstream pressure * Diameter of pipe * Length of pipe None of these models include an acceleration term. In addition to reducing their accuracy, it allows all solutions for the above variables to be analytical. These models cannot predict the occurrence of choked flow, and model only turbulent, not laminar, flow. Most of these models do not depend on the gas's viscosity. Rather than using mass flow rate, they use specific gravity and volumetric flow rate. The volumetric flow rate is specified with respect to a reference temperature and pressure. The defaults are 288.7 K and 101325 Pa, dating to the old imperial standard of 60° F. The specific gravity is with respect to air at the reference conditions. As the ideal gas law is used in each of these models, in addition to pressure and specific gravity the average temperature in the pipeline is required. Average compressibility factor is an accepted input to all models and corrects the ideal gas law's ideality. The full list of approximate models is as follows: * :py:func:`~.Panhandle_A` * :py:func:`~.Panhandle_B` * :py:func:`~.Weymouth` * :py:func:`~.Oliphant` * :py:func:`~.Fritzsche` * :py:func:`~.Muller` * :py:func:`~.IGT` * :py:func:`~.Spitzglass_high` * :py:func:`~.Spitzglass_low` As an example, calculating flow for a pipe with diameter 0.34 m, upstream pressure 90 bar and downstream pressure 20 bar, 160 km long, 0.693 specific gravity and with an average temperature in the pipeline of 277.15 K: >>> Panhandle_A(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15) 42.5608 Each model also includes a pipeline efficiency term, ranging from 0 to 1. These are just empirical correction factors, Some of the models were developed with theory and a correction factor applied always; others are more empirical, and have a default correction factor. 0.92 is the default for the Panhandle A/B, Weymouth, and Oliphant models; the rest default to a correction of 1 i.e. no correction at all. The Muller and IGT models are the most accurate and recent approximations. They both depend on viscosity. >>> Muller(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, mu=1E-5, Tavg=277.15) 60.457966 >>> IGT(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, mu=1E-5, Tavg=277.15) 48.923517 These empirical models are included because they are mandated in many industrial applications regardless of their accuracy, and correction factors have already been determined. A great deal of effort was spent converting these models to base SI units and checking the coefficients used in each model with multiple sources. In many cases multiple sets of coefficients are available for a model; the most authoritative or common ones were used in those cases. Drag and terminal velocity -------------------------- A number of spherical particle drag correlations are implemented. In the simplest case, consider a spherical particle of diameter D=1 mm, density=3400 kg/m^3, travelling at 30 m/s in air with viscosity mu=1E-5 Pa*s and density 1.2 kg/m^3. We calculate the particle Reynolds number: >>> Re = Reynolds(V=30, rho=1.2, mu=1E-5, D=1E-3) >>> Re 3599.999999 The drag coefficient `Cd` can be calculated with no other parameters from :py:func:`~.drag_sphere`: >>> drag_sphere(Re) 0.391480468 The terminal velocity of the particle is easily calculated with the :py:func:`~.v_terminal` function. >>> v_terminal(D=1E-3, rhop=3400, rho=1.2, mu=1E-5) 8.9712239 Very often, we are not interested in just what the velocity of the particle will be at terminal conditions, but on the distance it will travel and the particle will never have time to reach terminal conditions. An integrating function is available to do that. Consider that same particle being shot directly down from a helicopter 100 m high. The integrating function, :py:func:`~.integrate_drag_sphere`, performs the integral with respect to time. At one second, we can see the (velocity, distance travelled): >>> integrate_drag_sphere(D=1E-3, rhop=3400., rho=1.2, mu=1E-5, t=1, V=30, distance=True) (10.56187, 15.6079) After integrating to 10 seconds, we can see the particle has travelled 97 meters and is almost on the ground. >>> integrate_drag_sphere(D=1E-3, rhop=3400., rho=1.2, mu=1E-5, t=10, V=30, distance=True) (8.971223, 97.132762) For this example simply using the terminal velocity would have given an accurate estimation of distance travelled: >>> 8.971223953182939*10 89.7122395318294 Many engineering applications such as direct contact condensers do operate far from terminal velocity however, and this function is useful there. Pressure drop through packed beds --------------------------------- Twelve different packed bed pressure drop correlations are available. A meta function which allows any of them to be selected and automatically selects the most accurate correlation for the given parameters. Pressure drop through a packed bed depends on the density, viscosity and velocity of the fluid, as well as the diameter of the particles, the amount of free space in the bed (voidage), and to a lesser amount the ratio of particle to tube diameter and the shape of the particles. Consider 0.8 mm pebbles with 40% empty space with water flowing through a 2 m column creeping flow at a superficial velocity of 1 mm/s. We can calculate the pressure drop in Pascals using the :py:func:`~.dP_packed_bed` function: >>> dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, L=2) 2876.565 The method can be specified manually as well, for example the commonly used Ergun equation: >>> dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, L=2, Method='Ergun') 2677.73437 Incorporation of the tube diameter will add wall effects to the model. >>> dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, L=2, Dt=0.01) 2510.325132 Models can be used directly as well. The length of the column is an optional input; if not provided, the result will be in terms of Pa/m. >>> KTA(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) # A correlation standardized for use in pebble reactors 1440.40927 If the column diameter was 0.5 m, the flow rate in m^3/s would be: >>> .001*(pi/4*0.5**2) # superficial_velocity*A_column 0.0001963495408 The holdup (total volume of the column holding fluid not particles) would be: >>> (pi/4*0.5**2)*(2)*0.4 # A_column*H_column*voidage 0.15707963267948 Not all particles are spherical. There have been correlations published for specific shapes, but what is often performed is simply an adjustment of particle diameter by its sphericity in the correlation, with the effective `dp` used as the product of the actual `dp` and the sphericity of the particle. The less spherical the particles, the higher the pressure drop. This is supported in all of the correlations. >>> dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, L=2, Dt=0.01, sphericity=0.9) 3050.419598116 While it is easy to measure the volume of particles added to a given column and determine the voidage experimentally, this does not help in the design process. Several authors have methodically filled columns with particles of different sizes and created correlations in terms of sphericity and particle to tube diameter ratios. Three such correlations are implemented in fluids, one generally using sphericity, one for spheres, and one for cylinders (:py:func:`~.voidage_Benyahia_Oneil`, :py:func:`~.voidage_Benyahia_Oneil_spherical` and :py:func:`~.voidage_Benyahia_Oneil_cylindrical` respectively). 1 mm spheres in a 5 cm diameter tube: >>> voidage_Benyahia_Oneil_spherical(Dp=.001, Dt=.05) 0.390665315 1 mm diameter cylinder 5 mm long in a 5 cm diameter tube: >>> V_cyl = V_cylinder(D=0.001, L=0.005) >>> D_sphere_eq = (6*V_cyl/pi)**(1/3.) >>> A_cyl = A_cylinder(D=0.001, L=0.005) >>> sph = sphericity(A=A_cyl, V=V_cyl) >>> voidage_Benyahia_Oneil_cylindrical(Dpe=D_sphere_eq, Dt=0.05, sphericity=sph) 0.37548952 Same calculation, but using the general correlation for all shapes: >>> voidage_Benyahia_Oneil(Dpe=D_sphere_eq, Dt=0.05, sphericity=sph) 0.44257695 Pressure drop through piping ---------------------------- It is straightforward to calculate the pressure drop of fluid flowing in a pipeline with any number of fittings using the fluids library's :py:mod:`fluids.fittings` submodule. 15 m of piping, with a sharp entrance and sharp exit, two 30 degree miter bends, one rounded bend 45 degrees, 1 sharp contraction to half the pipe diameter and 1 sharp expansion back to the normal pipe diameter (water, V=3 m/s, Di=0.05, roughness 0.01 mm): >>> Re = Reynolds(V=3, D=0.05, rho=1000, mu=1E-3) >>> fd = friction_factor(Re, eD=1E-5/0.05) >>> K = K_from_f(fd=fd, L=15, D=0.05) >>> K += entrance_sharp() >>> K += exit_normal() >>> K += 2*bend_miter(angle=30) >>> K += bend_rounded(Di=0.05, angle=45, fd=fd) >>> K += contraction_sharp(Di1=0.05, Di2=0.025) >>> K += diffuser_sharp(Di1=0.025, Di2=0.05) >>> dP_from_K(K, rho=1000, V=3) 37920.511 If the diameter of the piping varies, not all of the loss coefficients will be with respect to the same diameter. Each loss coefficient must be converted to one standard diameter before the total pressure drop can be calculated. The following example is solved with the optional `pint` unit compatibility module. 40 m piping, beveled entrance (10 mm length, 30 degrees, into 5 cm ID pipe) , then a 30 degree miter bend, a sharp contraction to half the pipe diameter (5 m long), a 30 degree miter bend, a rounded 45 degree bend, a sharp expansion to 4 cm ID pipe (15 more meters), and a sharp exit: >>> from fluids.units import * >>> from math import * >>> material = nearest_material_roughness('steel', clean=True) >>> epsilon = material_roughness(material) >>> Q = .01*u.m**3/u.s >>> rho = 1000*u.kg/u.m**3 >>> mu = 1E-4*u.Pa*u.s >>> D1 = 5*u.cm >>> D2 = 2.5*u.cm >>> D3 = 4*u.cm >>> L1 = 20*u.m >>> L2 = 5*u.m >>> L3 = 15*u.m >>> V1 = Q/(pi/4*D1**2) >>> Re = Reynolds(V=V1, D=D1, rho=rho, mu=mu) >>> fd = friction_factor(Re, eD=epsilon/D1) >>> K = K_from_f(fd=fd, L=L1, D=D1) >>> K += entrance_beveled(Di=D1, l=10*u.mm, angle=30*u.degrees) >>> K += bend_miter(angle=30*u.degrees) >>> K += contraction_sharp(Di1=D1, Di2=D2) >>> V2 = Q/(pi/4*D2**2) >>> Re2 = Reynolds(V=V2, D=D2, rho=rho, mu=mu) >>> fd2 = friction_factor(Re2, eD=epsilon/D2) >>> K += change_K_basis(K_from_f(fd=fd2, L=L2, D=D2), D1=D2, D2=D1) >>> K += change_K_basis(K1=bend_miter(angle=30*u.degrees), D1=D2, D2=D1) >>> K += change_K_basis(K1=bend_rounded(Di=D2, angle=45*u.degrees, fd=fd2), D1=D2, D2=D1) >>> V3 = Q/(pi/4*D3**2) >>> Re3 = Reynolds(V=V3, D=D3, rho=rho, mu=mu) >>> fd3 = friction_factor(Re3, eD=epsilon/D3) >>> K += change_K_basis(K_from_f(fd=fd3, L=L3, D=D3), D1=D3, D2=D1) >>> K += diffuser_sharp(Di1=D2, Di2=D3) >>> dP_from_K(K, rho=rho, V=V1) Control valve sizing: Introduction ---------------------------------- The now internationally-standardized methods (IEC 60534) for sizing liquid and gas valves have been implemented. Conversion factors among the different types of valve coefficients are implemented as well. There are two forms of loss coefficient used for vales, an imperial and a metric variable called "valve flow coefficient". Both can be converted to the standard dimensionless loss coefficient. If one knows the actual loss coefficient of a valve, the valve flow coefficient can be calculated in either metric or imperial forms as follows. The flow coefficients are specific to the diameter of the valve. Kv, Cv, and K values can be converted easily with the functions :py:func:`~.K_to_Kv`, :py:func:`~.K_to_Cv`, :py:func:`~.Cv_to_K`, :py:func:`~.Kv_to_K`, :py:func:`~.Cv_to_Kv`, and :py:func:`~.Kv_to_Cv`. >>> from fluids import * >>> K_to_Kv(K=16, D=0.016) 2.56 >>> K_to_Cv(K=16, D=0.016) 2.95961402 If Kv or Cv are known, they can be converted to each other with the proportionality constant 1.156, which is derived from a unit conversion only. This conversion does not require valve diameter. >>> Cv_to_Kv(12) 10.37973186 >>> Kv_to_Cv(10.37) 11.9887489 If a Cv or Kv is obtained from a valve datasheet, it can be converted into a standard loss coefficient as follows. >>> Kv_to_K(Kv=2.56, D=0.016) 16.00000000 >>> Cv_to_K(Cv=3, D=0.016) 15.57211586 For a valve with a specified Kv and pressure drop, the flow rate can be calculated easily for the case of non-choked non-compressible flow (neglecting other friction losses), as illustrated in the example below for a 5 cm valve with a pressure drop 370 kPa and density of 870 kg/m^3: >>> Kv = 72.5 >>> D = 0.05 >>> dP = 370E3 >>> K = Kv_to_K(D=D, Kv=Kv) >>> rho = 870 >>> V = (dP/(.5*rho*K))**0.5 # dP = K*0.5*rho*V^2 >>> A = pi/4*D**2 >>> Q = V*A >>> Q 0.04151682 Alternatively, the required Kv can be calculated from an assumed diameter and allowable pressure drop: >>> Q = .05 >>> D = 0.05 >>> dP = 370E3 >>> rho = 870 >>> A = pi/4*D**2 >>> V = Q/A >>> K = dP/(.5*rho*V**2) >>> K_to_Kv(D=D, K=K) 87.3139992 The approach documented above is not an adequate procedure for sizing valves however because choked flow, compressible flow, the effect of inlet and outlet reducers, the effect of viscosity and the effect of laminar/turbulent flow all have large influences on the performance of control valves. Historically, valve manufacturers had their own standards for sizing valves, but these have been standardized today into the IEC 60534 methods. Control valve sizing: Liquid flow --------------------------------- To rigorously size a control valve for liquid flow, the inlet pressure, allowable pressure drop, and desired flow rate must first be known. These need to be determined taking into account the entire pipe network and the various operating conditions it needs to support; sizing the valves can be performed afterward and only if no valve with the desired performance is available does the network need to be redesigned. To illustrate sizing a valve, we borrow an example from Emerson's Control Valve Handbook, 4th edition (2005). It involves a flow of 800 gpm of liquid propane. The inlet and outlet pipe size is 8 inches, but the size of the valve itself is unknown. The desired pressure drop is 25 psi. Converting this problem to SI units and using the thermo library to calculate the necessary properties of the fluid, we calculate the necessary Kv of the valve based on an assumed valve size of 3 inches: >>> from scipy.constants import * >>> from fluids.control_valve import size_control_valve_l # doctest: +SKIP >>> from thermo.chemical import Chemical # doctest: +SKIP >>> P1 = 300*psi + psi # to Pa # doctest: +SKIP >>> P2 = 275*psi + psi # to Pa # doctest: +SKIP >>> T = 273.15 + 21 # to K # doctest: +SKIP >>> propane = Chemical('propane', P=(P1+P2)/2, T=T) # doctest: +SKIP >>> rho = propane.rho # doctest: +SKIP >>> Psat = propane.Psat # doctest: +SKIP >>> Pc = propane.Pc # doctest: +SKIP >>> mu = propane.mu # doctest: +SKIP >>> Q = 800*gallon/minute # to m^3/s # doctest: +SKIP >>> D1 = D2 = 8*inch # to m # doctest: +SKIP >>> d = 3*inch # to m # doctest: +SKIP The standard specifies two more parameters specific to a valve: * FL, Liquid pressure recovery factor of a control valve without attached fittings * Fd, Valve style modifier Both of these are factors between 0 and 1. In the Emerson handbook, they are not considered in the sizing procedure and set to 1. These factors are also a function of the diameter of the valve and are normally tabulated next to the values of Cv or Kv for a valve. Now using :py:func:`~.size_control_valve_l` to solve for the flow coefficient: >>> Kv = size_control_valve_l(rho, Psat, Pc, mu, P1, P2, Q, D1, D2, d, FL=1, Fd=1) # doctest: +SKIP >>> Kv # doctest: +SKIP 109.3970 The handbook states the Cv of the valve is 121; we convert Kv to Cv: >>> Kv_to_Cv(Kv=Kv) # doctest: +SKIP 126.4738 The example in the book calculated Cv = 125.7, but doesn't actually use the full calculation method. Either way, the valve will not carry the desired flow rate; we need to try a larger valve size. The 4 inch size is tried next in the example, which has a known Cv of 203. >>> d = 4*inch # to m >>> Kv = size_control_valve_l(rho, Psat, Pc, mu, P1, P2, Q, D1, D2, d, FL=1, Fd=1) # doctest: +SKIP >>> Kv_to_Cv(Kv=Kv) # doctest: +SKIP 116.175503 The calculated Cv is well under the valve's maximum Cv; we can select it. This model requires a vapor pressure and a critical pressure of the fluid as inputs. There is no clarification in the standard about how to handle mixtures, which do not have these values. It is reasonable to calculate vapor pressure as the bubble pressure, and the mixture's critical pressure through a mole-weighted average. For actual values of Cv, Fl, Fd, and available diameters, an excellent resource is the `Fisher Catalog 12 `_. Control valve sizing: Gas flow ------------------------------ To rigorously size a control valve for gas flow, the inlet pressure, allowable pressure drop, and desired flow rate must first be known. These need to be determined taking into account the entire pipe network and the various operating conditions it needs to support; sizing the valves can be performed afterward and only if no valve with the desired performance is available does the network need to be redesigned. To illustrate sizing a valve, we borrow an example from Emerson's Control Valve Handbook, 4th edition (2005). It involves a flow of 6 million ft^3/hour of natural gas. The inlet and outlet pipe size is 8 inches, but the size of the valve itself is unknown. The desired pressure drop is 150 psi. Converting this problem to SI units and using the thermo library to calculate the necessary properties of the fluid, we calculate the necessary Kv of the valve based on an assumed valve size of 8 inches. >>> from scipy.constants import * >>> from fluids.control_valve import size_control_valve_g >>> from thermo.chemical import Chemical # doctest: +SKIP >>> P1 = 214.7*psi >>> P2 = 64.7*psi >>> T = 16 + 273.15 >>> natural_gas = Mixture('natural gas', T=T, P=(P1+P2)/2) # doctest: +SKIP >>> Z = natural_gas.Z # doctest: +SKIP >>> MW = natural_gas.MW # doctest: +SKIP >>> mu = natural_gas.mu # doctest: +SKIP >>> gamma = natural_gas.isentropic_exponent # doctest: +SKIP >>> Q = 6E6*foot**3/hour # doctest: +SKIP >>> D1 = D2 = d = 8*inch # 8-inch Fisher Design V250 # doctest: +SKIP The standard specifies three more parameters specific to a valve: * FL, Liquid pressure recovery factor of a control valve without attached fittings * Fd, Valve style modifier * xT, Pressure difference ratio factor of a valve without fittings at choked flow All three of these are factors between 0 and 1. In the Emerson handbook, FL and Fd are not considered in the sizing procedure and set to 1. xT is specified as 0.137 at full opening. These factors are also a function of the diameter of the valve and are normally tabulated next to the values of Cv or Kv for a valve. Now using :py:func:`~.size_control_valve_g` to solve for the flow coefficient: >>> Kv = size_control_valve_g(T, MW, mu, gamma, Z, P1, P2, Q, D1, D2, d, FL=1, Fd=1, xT=.137) # doctest: +SKIP >>> Kv_to_Cv(Kv) # doctest: +SKIP 1563.44772 The 8-inch valve is rated with Cv = 2190. The valve is adequate to provide the desired flow because the rated Cv is higher. The calculated value in their example is 1515, differing slightly due to the properties used. The example next goes on to determine the actual opening position the valve should be set at to provide the required flow. Their conclusion is approximately 75% open; we can do better using a numerical solver. The values of opening at different positions are obtained in this example from the valve's `datasheet `_. Loading the data and creating interpolation functions so FL, Fd, and xT are all smooth functions: >>> from scipy.interpolate import interp1d >>> from scipy.optimize import newton >>> openings = [.2, .3, .4, .5, .6, .7, .8, .9] >>> Fds = [0.59, 0.75, 0.85, 0.92, 0.96, 0.98, 0.99, 0.99] >>> Fls = [0.9, 0.9, 0.9, 0.85, 0.78, 0.68, 0.57, 0.45] >>> xTs = [0.92, 0.81, 0.85, 0.63, 0.58, 0.48, 0.29, 0.14] >>> Kvs = [24.1, 79.4, 153, 266, 413, 623, 1060, 1890] >>> Fd_interp = interp1d(openings, Fds, kind='cubic') >>> Fl_interp = interp1d(openings, Fls, kind='cubic') >>> xT_interp = interp1d(openings, xTs, kind='cubic') >>> Kv_interp = interp1d(openings, Kvs, kind='cubic') Creating and solving the objective function: >>> def to_solve(opening): ... Fd = float(Fd_interp(opening)) ... Fl = float(Fl_interp(opening)) ... xT = float(xT_interp(opening)) ... Kv_lookup = float(Kv_interp(opening)) ... Kv_calc = size_control_valve_g(T, MW, mu, gamma, Z, P1, P2, Q, D1, D2, d, FL=Fl, Fd=Fd, xT=xT) ... return Kv_calc - Kv_lookup >>> newton(to_solve, .8) # initial guess of 80% # doctest: +SKIP 0.75008147 We see the valve should indeed be set to almost exactly 75% open to provide the desired flow. Electric motor sizing --------------------- Motors are available in standard sizes, mostly as designated by the National Electrical Manufacturers Association (NEMA). To easily determine what the power of a motor will actually be once purchased, :py:func:`~.motor_round_size` implements rounding up of a motor power to the nearest size. NEMA standard motors are specified in terms of horsepower. >>> motor_round_size(1E5) # 100 kW motor; 11.8% larger than desired 111854.980 >>> from scipy.constants import hp >>> motor_round_size(1E5)/hp # convert to hp 150.0 Motors are designed to generate a certain amount of power, but they themselves are not 100% efficient at doing this and require more power due to efficiency losses. Many minimum values for motor efficiency are standardized. The Canadian standard for this is implemented in fluids as :py:func:`~.CSA_motor_efficiency`. >>> CSA_motor_efficiency(P=5*hp) 0.855 Most motors are not enclosed (the default assumption), but those that are closed are more efficient. >>> CSA_motor_efficiency(P=5*hp, closed=True) 0.875 The number of poles in a motor also affects its efficiency: >>> CSA_motor_efficiency(P=5*hp, poles=6) 0.875 There is also a schedule of higher efficiency values standardized as well, normally available at somewhat higher cost: >>> CSA_motor_efficiency(P=5*hp, closed=True, poles=6, high_efficiency=True) 0.895 A motor will spin at more or less its design frequency, depending on its type. However, if it does not meet sufficient resistance, it will not be using its design power. This is good and bad - less power is used, but as a motor drops under 50% of its design power, its efficiency becomes terrible. The function :py:func:`~.motor_efficiency_underloaded` has been written based on generic performance curves to estimate the underloaded efficiency of a motor. Just how bad efficiency drops off depends on the design power of a motor - higher power motors do better operating at low loads than small motors. >>> motor_efficiency_underloaded(P=1E3, load=.9) 1 >>> motor_efficiency_underloaded(P=1E3, load=.2) 0.66393475 This needs to be applied on top of the normal motor efficiency; for example, that 1 kW motor at 20% load would have a net efficiency of: >>> motor_efficiency_underloaded(P=1E3, load=.2)*CSA_motor_efficiency(P=1E3) 0.532940428 Many motors have Variable Frequency Drives (VFDs) which allow them to vary the speed of their rotation. The VFD is another source of inefficiency, but by allowing the pump or other piece of equipment to vary its speed, a system may be designed to be less energy intensive. For example, rather than running a pump at a certain high frequency and controlling the flow with a large control valve, the flow rate can be controlled with the VFD directly. The efficiency of a VFD depends on the maximum power it needs to be able to generate, and the power it is actually generating at an instant (load). A table of typical modern VFD efficiencies is implemented in fluids as :py:func:`~.VFD_efficiency`. >>> VFD_efficiency(1E5) # 100 kW 0.97 >>> VFD_efficiency(5E3, load=.2) # 5 kW, 20% load 0.8562 Particle Size Distributions --------------------------- Fluids has means for calculating, fitting, and manipulating particle size distributions through the :py:mod:`fluids.particle_size_distribution` module. In addition to discrete and continuous distributions, there are also means to create interpolating distributions from discrete distributions, and to use any of SciPy's statistical distributions or a custom distribution for calculations. The following example particle size distribution shows some calculations. Note there is one more diameter point than number point - this is how the input should be given when the analysis provides classes and each bin has a range of sizes representing it. Also supported is providing as many diameter values as fraction values. >>> ds = [240, 360, 450, 562.5, 703, 878, 1097, 1371, 1713, 2141, 2676, 3345, 4181, 5226, 6532] >>> numbers = [65, 119, 232, 410, 629, 849, 990, 981, 825, 579, 297, 111, 21, 1] >>> psd = ParticleSizeDistribution(ds=ds, fractions=numbers, order=0) >>> psd In the above example, the analysis available was the number of particles counted in each bin. This is equivalent to having normalized the numbers into fractions; they are normalized inside the :py:class:`~.ParticleSizeDistribution` class. If masses in each of the different bins had been known instead, then the same constructor would be given except with `order=3`, representing a mass or volume distribution (they are the same thing for distributions with the same density for all particles). If the data is available as a cumulative distribution, simple add the flag cdf=True and it will be interpreted correctly. The probability distribution and cumulative distribution can be plotted with :py:meth:`~.plot_pdf` and :py:meth:`~.plot_cdf` respectively. Important statistical parameters describing the distribution can be calculated with the methods :py:meth:`fluids.particle_size_distribution.ParticleSizeDistribution.mean_size` or :py:meth:`fluids.particle_size_distribution.ParticleSizeDistribution.mean_size_ISO`. The following example shows calculation of the size-weighted mean diameter; arithmetic mean diameter; Sauter mean diameter; and De Brouckere diameter. >>> psd.mean_size(2, 1) 1857.788 >>> psd.mean_size(1, 0) 1459.372 >>> psd.mean_size(3, 2) 2269.321 >>> psd.mean_size(4, 3) 2670.751 An interpolated distribution exists underneath the discrete data to allow useful properties to be calculated, such as the D10 or D90: >>> psd.dn(0.1), psd.dn(0.9) (1437.07139, 3911.47963) Or probability density functions: >>> psd.pdf(1000) 0.0001063238 >>> psd.cdf(5000) 0.98974007 Statistical distributions implemented are :py:class:`~.PSDLognormal`, :py:class:`~.PSDGatesGaudinSchuhman`, and :py:class:`~.PSDRosinRammler`. Discrete and continuous distributions share most methods. >>> psd = PSDLognormal(s=0.5, d_characteristic=5E-6) >>> psd.pdf(1e-6) # probability density function 4487.89 >>> psd.cdf(7e-6) # cumulative distribution function 0.749508 >>> psd.dn(0.1) # At what diameter is this fraction of particles smaller than? 2.634417e-06 >>> psd.mean_size(3, 2) 4.41248e-06 >>> ds = psd.ds_discrete(pts=1000) # Compare calculations with the discrete distribution >>> fractions = psd.fractions_discrete(ds) >>> ParticleSizeDistribution(ds=ds, fractions=fractions, order=3).mean_size(3, 2) 4.42574e-06 It is straightforward to calculate descriptions of the distribution using the available routines: Volume specific surface area: >>> psd.vssa 1359778.1 Span (D90 - D10): >>> psd.dn(.9) - psd.dn(0.1) 6.85534e-06 Relative span (D90 - D10)/D50: >>> (psd.dn(.9) - psd.dn(0.1))/psd.dn(0.5) 1.3710691 Percentile ratios, D75/D25 and D90/D10: >>> psd.dn(0.75)/psd.dn(0.25) 1.9630310 >>> psd.dn(0.9)/psd.dn(0.1) 3.602224 Required Resources ------------------ The fluids library is designed to be a low-overhead, lightweight repository of engineering knowledge and utilities that relate to fluid dynamics. It occupies ~4 MB of RAM on load and should load in a small fraction of a second. Fluids does load NumPy if it is present, which takes ~150 ms; fluids itself loads in approximately 20 ms. No other libraries will become required dependencies; anything else, including SciPy, is optional and loaded when needed. Fluids was originally tightly integrated with SciPy and NumPy; today they are optional components used for only a small amount of functionality which do not have pure-Python numerical methods implemented. Fluids targets Python 2.7 and up as well as PyPy2 and PyPy3. Additionally, fluids has been tested by the author to load in IronPython, Jython, and micropython. fluids-1.0.22/docs/fluids.friction.rst0000644000175000017500000000040514302004506017165 0ustar nileshnileshFriction factor and pipe roughness (fluids.friction) ==================================================== .. meta:: :description: Rigorous set of friction factor correlations including Colebrook, Blassius, and Moody. .. automodule:: fluids.friction fluids-1.0.22/docs/fluids.pump.rst0000644000175000017500000000030314302004506016326 0ustar nileshnileshPump and motor sizing (fluids.pump) =================================== .. meta:: :description: Size and rate pumps and motors and variable speed drives. .. automodule:: fluids.pump fluids-1.0.22/docs/data.rst0000644000175000017500000000026014302004506014773 0ustar nileshnileshData included in Fluids ======================= .. toctree:: Data/Friction.ipynb Data/Sieve Sizes for Particle Size Distributions.ipynb Data/Pipe Schedules.ipynb fluids-1.0.22/docs/fluids.two_phase.rst0000644000175000017500000000026514302004506017345 0ustar nileshnileshTwo phase flow (fluids.two_phase) ================================= .. meta:: :description: Calculate two-phase pressure drop in pipes. .. automodule:: fluids.two_phase fluids-1.0.22/docs/fluids.atmosphere.rst0000644000175000017500000000035614302004506017524 0ustar nileshnileshAtmospheric properties (fluids.atmosphere) ========================================== .. meta:: :description: Models of Earth's atmosphere and solar radiation/position calculations in Python. .. automodule:: fluids.atmosphere fluids-1.0.22/docs/fluids.two_phase_voidage.rst0000644000175000017500000000037514302004506021045 0ustar nileshnileshTwo-phase flow voidage (fluids.two_phase_voidage) ================================================= .. meta:: :description: Implementation of most two-phase voidage or holdup correlations in Python. .. automodule:: fluids.two_phase_voidage fluids-1.0.22/docs/fluids.numba.rst0000644000175000017500000001407114302004506016456 0ustar nileshnileshSupport for Numba (fluids.numba) ================================ Basic module which wraps most of fluids functions and classes to be compatible with the `Numba `_ dynamic Python compiler. Numba is only supported on Python 3, and may require the latest version of Numba. Numba is rapidly evolving, and hopefully in the future it will support more of the functionality of fluids. Using the numba-accelerated version of `fluids` is easy; simply call functions and classes from the fluids.numba namespace. >>> import fluids >>> import fluids.numba >>> fluids.numba.bend_rounded(Di=4.020, rc=4.0*5, angle=30, Re=1E5) 0.11519070808085 There is a delay while the code is compiled when using Numba; the speed is not quite free. It is easy to compare the speed of a function with and without Numba. >>> %timeit fluids.numba.Stichlmair_flood(Vl=5E-3, rhog=5., rhol=1200., mug=5E-5, voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.) # doctest: +SKIP 15.9 µs ± 266 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each) >>> %timeit fluids.Stichlmair_flood(Vl=5E-3, rhog=5., rhol=1200., mug=5E-5, voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.) # doctest: +SKIP 109 µs ± 2.01 µs per loop (mean ± std. dev. of 7 runs, 10000 loops each) Not everything is faster in the numba interface. For example, dictionary lookups have to be turned into slower jump lists: >>> %timeit fluids.numba.Darby3K(NPS=2., Re=10000., name='Valve, Angle valve, 45°, full line size, β = 1') # doctest: +SKIP 7.04 µs ± 62.8 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each) >>> %timeit fluids.Darby3K(NPS=2., Re=10000., name='Valve, Angle valve, 45°, full line size, β = 1') # doctest: +SKIP 435 ns ± 9.01 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) Functions which take strings as inputs are also known to normally get slower: >>> %timeit fluids.numba.geometry.V_from_h(h=7, D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.) # doctest: +SKIP 11.2 µs ± 457 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each) >>> %timeit fluids.geometry.V_from_h(h=7, D=1.5, L=5., horizontal=False, sideA='conical', sideB='conical', sideA_a=2., sideB_a=1.) # doctest: +SKIP 1.64 µs ± 25.6 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each) Nevertheless, using the function from the numba interface may be preferably, to allow an even larger program to be completely compiled in njit mode. Today, the list of things known not to work is as follows: - :py:func:`~.integrate_drag_sphere` (uses SciPys's odeint) - The geometry class TANK and HelicalCoil, PlateExchanger, RectangularFinExchanger, HyperbolicCoolingTower, AirCooledExchanger in :py:mod:`fluids.geometry`. - :py:func:`~.SA_partial_horiz_torispherical_head` has numerical issues with numba; they exist in CPython but are handled there with numba-incompatible code. - Everything in :py:mod:`fluids.particle_size_distribution` - Everything in :py:mod:`fluids.atmosphere` except :py:func:`fluids.atmosphere.ATMOSPHERE_1976` - Everything in :py:mod:`fluids.piping` (uses global lookups) - In :py:mod:`fluids.friction`, only :py:func:`~.nearest_material_roughness`, and :py:func:`~.material_roughness`, are unsupported as they use global lookups. - In :py:mod:`fluids.compressible`, :py:func:`~.isothermal_gas`, has experienced some regressions on the part of numba. Numpy Support (fluids.numba_vectorized) --------------------------------------- Numba also allows fluids to provide any of its supported functions as a numpy universal function. Numpy's wonderful broadcasting is implemented, so some arguments can be arrays and some can not. >>> import fluids.numba_vectorized >>> import numpy as np >>> fluids.numba_vectorized.Moody(np.linspace(1e3, 1e4, 5), 1e-4) array([0.06053664, 0.04271113, 0.03677223, 0.03343543, 0.03119781]) >>> fluids.numba_vectorized.Moody(np.linspace(1e3, 1e4, 5), np.linspace(1e-4, 1e-5, 5)) array([0.06053664, 0.0426931 , 0.03672111, 0.03333917, 0.03104575]) Unfortunately, keyword-arguments are not supported by Numba. >>> fluids.numba_vectorized.Moody(Re=np.linspace(1e3, 1e4, 5), eD=np.linspace(1e-4, 1e-5, 5)) # doctest: +SKIP ValueError: invalid number of arguments Also default arguments are not presently supported by Numba. >>> fluids.numba_vectorized.V_horiz_conical(108., 156., 42., np.linspace(0, 4, 4), False) array([ 0. , 3333.2359001 , 9441.84364485, 17370.09634651]) >>> fluids.numba_vectorized.V_horiz_conical(108., 156., 42., np.linspace(0, 4, 4)) # doctest: +SKIP ValueError: invalid number of arguments Yet another unfortunate limitation is that Numba's ufunc machinery will not wrap function calls with multiple return values. >>> fluids.numba_vectorized.Mandhane_Gregory_Aziz_regime(np.array([0.6]), np.array([0.112]), np.array([915.12]), np.array([2.67]), np.array([180E-6]), np.array([14E-6]), np.array([0.065]), np.array([0.05])) # doctest: +SKIP NotImplementedError: Tuple(unicode_type, float64, float64) cannot be represented as a Numpy dtype Despite these limitations is is here that Numba really shines! Arrays are Numba's strength. >>> Res = np.linspace(1e4, 1e7, 10000) >>> %timeit fluids.numba_vectorized.Clamond(Res, 1E-4, False) # doctest: +SKIP 797 µs ± 19 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each) About 80 nanoseconds per friction factor call! As compared to the `fluids.numba` interface (442 ns) and the normal interface (1440 ns): >>> %timeit fluids.numba.Clamond(1e4, 1E-4, False) # doctest: +SKIP 442 ns ± 7.36 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) >>> %timeit fluids.Clamond(1e4, 1E-4, False) # doctest: +SKIP 1.44 µs ± 40.5 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) Please note this interface is provided, but what works and what doesn't is mostly up to the numba project. This backend is not quite as polished as their normal engine. All of the regular Numba-compiled functions are built with the `nogil` flag, which means you can use Python's threading mechanism effectively to get the speed of parallel processing even without the numba_vectorized interface. fluids-1.0.22/docs/fluids.vectorized.rst0000644000175000017500000000411514302004506017530 0ustar nileshnileshSupport for NumPy arrays (fluids.vectorized) ============================================ Basic submodule that wraps all fluids functions with numpy's :obj:`vectorize `. All other object - dicts, classes, etc - are not wrapped. Where speed is a concern, the newer :obj:`fluids.numba` numpy interface may be used to obtain C/C++/Fortran-level performance on array calculations. >>> import numpy as np >>> import fluids >>> fluids.vectorized.Reynolds(V=2.5, D=np.array([0.25, 0.5, 0.75, 1.0]), rho=1.1613, mu=1.9E-5) array([ 38200.65789474, 76401.31578947, 114601.97368421, 152802.63157895]) Vectorization follows the numpy broadcast rules. >>> fluids.vectorized.Reynolds(V=np.array([1.5, 2.5, 3.5, 5.0]), D=np.array([0.25, 0.5, 0.75, 1.0]), rho=1.1613, mu=1.9E-5) array([ 22920.39473684, 76401.31578947, 160442.76315789, 305605.26315789]) Inputs do not need to be numpy arrays; they can be any iterable: >>> fluids.vectorized.friction_factor(Re=[100, 1000, 10000], eD=0) array([0.64 , 0.064 , 0.03088295]) If you just want to use numpy arrays as inputs to all fluids functions, you can use Python's import aliasing feature to replace fluids with the vectorized version. Note that there are no submodules in `fluids.vectorized`. >>> import fluids.vectorized as fluids .. warning:: This module does not replace the functions in the `fluids` module; it copies all the functions into the `fluids.vectorized` module and makes them vectorized there. For example by importing `fluids.vectorized`, `fluids.friction.friction_factor` won't become vectorized, but `fluids.vectorized.friction_factor` will become available and is vectorized. .. warning:: :obj:`np.vectorize ` does not use NumPy to accelerate any computations; it is a convenience wrapper. If you are working on a problem large enough for speed to be an issue and Numba is compatible with your version of Python, an interface to that library is available at :obj:`fluids.numba` which does accelerate NumPy array computations and is normally faster than using numpy directly. fluids-1.0.22/docs/fluids.control_valve.rst0000644000175000017500000000045714302004506020234 0ustar nileshnileshControl valve sizing and rating (fluids.control_valve) ====================================================== .. meta:: :description: Python module for rating and sizing Control Valves; includes Cv, Kv, Av, IEC 60534-8-4 (2015) and IEC 60534-8-3 (2011). .. automodule:: fluids.control_valve fluids-1.0.22/docs/fluids.safety_valve.rst0000644000175000017500000000034314302004506020041 0ustar nileshnileshSafety/relief valve sizing (fluids.safety_valve) ================================================ .. meta:: :description: Size relief valves using API 520, implemented in Python. .. automodule:: fluids.safety_valve fluids-1.0.22/docs/fluids.drag.rst0000644000175000017500000000057114302004506016271 0ustar nileshnileshDrag and terminal velocity (fluids.drag) ======================================== .. meta:: :description: Calculate terminal velocity and drag coefficient of a moving particle using Python. This module contains most Cd drag coefficient models published. A numerical integrator for the position of a sphere over time is included as well. .. automodule:: fluids.drag fluids-1.0.22/docs/fluids.geometry.rst0000644000175000017500000000036414302004506017207 0ustar nileshnileshTank and Heat Exchanger Design (fluids.geometry) ================================================ .. meta:: :description: Volume and surface area calculations for Tanks and heat exchangers in Python. .. automodule:: fluids.geometry fluids-1.0.22/docs/fluids.packed_bed.rst0000644000175000017500000000037114302004506017413 0ustar nileshnileshPacked bed pressure drop (fluids.packed_bed) ============================================ .. meta:: :description: Implementation of the Ergun packed bed pressure drop correlation among others in Python. .. automodule:: fluids.packed_bed fluids-1.0.22/docs/index.rst0000644000175000017500000000735314302004506015203 0ustar nileshnileshWelcome to Fluids's documentation! ================================== .. meta:: :google-site-verification: wcmDZ88ikLzq1to6urRDGA6R7oIhzya2sN5hOeV1zZw Fluids is open-source software for engineers and technicians working in the fields of chemical, mechanical, or civil engineering. It includes modules for piping, fittings, pumps, tanks, compressible flow, open-channel flow, atmospheric properties, solar properties, particle size distributions, two phase flow, friction factors, control valves, orifice plates and other flow meters, ejectors, relief valves, and more. Module Contents: .. toctree:: :maxdepth: 2 tutorial.rst modules.rst examples.rst data.rst developers.rst Installation ------------ .. image:: http://img.shields.io/pypi/v/fluids.svg?style=flat :target: https://pypi.python.org/pypi/fluids :alt: Version_status .. image:: https://github.com/CalebBell/fluids/workflows/Build/badge.svg :target: https://github.com/CalebBell/fluids/actions :alt: Build_status .. image:: http://img.shields.io/badge/license-MIT-blue.svg?style=flat :target: https://github.com/CalebBell/fluids/blob/master/LICENSE.txt :alt: license .. image:: https://img.shields.io/coveralls/CalebBell/fluids.svg? :target: https://coveralls.io/github/CalebBell/fluids :alt: Coverage .. image:: https://img.shields.io/pypi/pyversions/fluids.svg? :target: https://pypi.python.org/pypi/fluids :alt: Supported_versions .. image:: http://img.shields.io/appveyor/ci/calebbell/fluids.svg? :target: https://ci.appveyor.com/project/calebbell/fluids/branch/master :alt: Build_status .. image:: https://zenodo.org/badge/48924523.svg? :alt: Zendo :target: https://zenodo.org/badge/latestdoi/48924523 Get the latest version of fluids from https://pypi.python.org/pypi/fluids/ If you have an installation of Python with pip, simple install it with: $ pip install fluids Alternatively, if you are using `conda `_ as your package management, you can simply install fluids in your environment from `conda-forge `_ channel with: $ conda install -c conda-forge fluids To get the git version, run: $ git clone git://github.com/CalebBell/fluids.git Latest source code ------------------ The latest development version of fluids's sources can be obtained at https://github.com/CalebBell/fluids Bug reports ----------- To report bugs, please use the fluids's Bug Tracker at: https://github.com/CalebBell/fluids/issues If you have further questions about the usage of the library, feel free to contact the author at Caleb.Andrew.Bell@gmail.com. License information ------------------- Fluids is MIT licensed. See ``LICENSE.txt`` for full information on the terms & conditions for usage of this software, and a DISCLAIMER OF ALL WARRANTIES. Although not required by the fluids license, if it is convenient for you, please cite fluids if used in your work. Please also consider contributing any changes you make back, such that they may be incorporated into the main library and all of us will benefit from them. Compliance information ---------------------- The author testifies that this software is not subject to the US EAR. The country of origin of this software is Canada. The author also confirms confirm that this software is not developed by, contain components developed by, or receive substantial influence from entities prohibited by Section 889 of the 2019 NDAA. Citation -------- To cite fluids in publications use:: Caleb Bell (2016-2021). fluids: Fluid dynamics component of Chemical Engineering Design Library (ChEDL) https://github.com/CalebBell/fluids. Indices and tables ================== * :ref:`genindex` * :ref:`modindex` * :ref:`search` fluids-1.0.22/docs/fluids.jet_pump.rst0000644000175000017500000000040714302004506017175 0ustar nileshnileshJet Pump (ejector/eductor) Sizing and Rating (fluids.jet_pump) ============================================================== .. meta:: :description: Python solvers for modeling a jet pump, and ejector, or an eductor. .. automodule:: fluids.jet_pump fluids-1.0.22/docs/fluids.open_flow.rst0000644000175000017500000000041114302004506017335 0ustar nileshnileshHydrology, weirs and open flow (fluids.open_flow) ================================================= .. meta:: :description: Implementation of common hydrology calculations like the Manning and Chezy equations and weirs. .. automodule:: fluids.open_flow fluids-1.0.22/.gitignore0000644000175000017500000000140014302004506014365 0ustar nileshnilesh*.pyc .gitignore .pytype .pypirc dist MANIFEST .coverage htmlcov .cache __pycache__ *kate-swp .spyproject fluids.egg-info prof .mypy_cache monkeytype.sqlite3 .asv fluids.build node_modules package-lock.json # Compiled source # ################### *.com *.class *.dll *.exe *.o *.so *.pyo *.idea *$py.class # Packages # ############ # it's better to unpack these files and commit the raw source # git has its own built in compression methods *.7z *.dmg *.gz *.iso *.jar *.rar *.tar #*.zip # Logs and databases # ###################### *.log *.sql *.sqlite # OS generated files # ###################### .DS_Store .DS_Store? .ipynb_checkpoints ._* _* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db .pytest_cache/ word_whitelist.txt simple_geolocator_cache.sqlite3 fluids-1.0.22/MANIFEST.in0000644000175000017500000000100214302004506014131 0ustar nileshnileshinclude LICENSE.txt AUTHORS README.rst pytest.ini recursive-include tests * recursive-include docs * global-exclude __pycache__ global-exclude *.py[co] global-exclude *.coverage global-exclude *.so global-exclude *.ipynb_checkpoints global-exclude ipynb_checkpoints global-exclude *-checkpoint.ipynb global-exclude *checkpoint* global-exclude .*ipynb_checkpoints* prune "docs/Examples/Crane TP 410 Solved Problems/.ipynb_checkpoints/" prune docs/Data/.ipynb_checkpoints/ recursive-exclude docs *ipynb_checkpoints fluids-1.0.22/CONTRIBUTING.md0000644000175000017500000000010614302004506014630 0ustar nileshnileshPlease see https://fluids.readthedocs.io/developers.html#contributing fluids-1.0.22/dev/0000755000175000017500000000000014302004506013160 5ustar nileshnileshfluids-1.0.22/dev/prerelease.py0000644000175000017500000000170614302004506015665 0ustar nileshnileshimport sys import os import importlib.util if sys.version_info.major != 3 and sys.version_info.minor != 7: raise ValueError("""This prerelease script will only run on Python 3.7. Some parts of a library change the last few decimals numbers between releases, and other parts only have obsolete dependencies i.e. pint on Python 2. For that reason, while the pytest test suite runs everywhere, the notebooks and doctests only run on one platform.""") import fluids main_dir = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) test_dir = os.path.join(main_dir, 'tests') os.chdir(test_dir) mod_spec = importlib.util.spec_from_file_location("make_test_stubs", os.path.join(test_dir, "make_test_stubs.py")) make_test_stubs = importlib.util.module_from_spec(mod_spec) mod_spec.loader.exec_module(make_test_stubs) import pytest os.chdir(main_dir) pytest.main(["--doctest-glob='*.rst'", "--doctest-modules", "--nbval", "-n", "3", "--dist", "loadscope", "-v"]) fluids-1.0.22/mypy.ini0000644000175000017500000000072214302004506014102 0ustar nileshnilesh[mypy] [mypy-scipy.*] ignore_missing_imports = True [mypy-numba.*] ignore_missing_imports = True [mypy-mpmath.*] ignore_missing_imports = True [mypy-sympy.*] ignore_missing_imports = True [mypy-matplotlib.*] ignore_missing_imports = True [mypy-geopy.*] ignore_missing_imports = True [mypy-appdirs.*] ignore_missing_imports = True [mypy-pandas.*] ignore_missing_imports = True [mypy-pvlib.*] ignore_missing_imports = True [mypy-pint.*] ignore_missing_imports = True fluids-1.0.22/changelog.md0000644000175000017500000000657714302004506014672 0ustar nileshnilesh# Changelog ## [Unreleased] ## [0.1.84] - 2020-08-01 ### Added - Finished adding Crane TP 410 sample problems - Add basic type stubs generated by monkeytype - Remove deprecated AvailableMethods argument in some functions - Add prerelease.py script which checks the doctests, notebook output and runs monkeytype - Add ability to specify the TANK class using two secondary variables, such as surface area and volume - Add laminar flow data for flow meters by Hollingshead - Improvements to numba interface, and enable caching for it - Add several plastic pipe schedules - Improve a few numerical issues - '40D1527','80D1527', 'ABSD2680','PVCD2680', 'DR25C900','DR18C900','DR14C900', 'CIDR51C905','CIDR41C905','CIDR325C905','CIDR25C905','CIDR21C905','CIDR18C905','CIDR14C905', 'IPSDR21','IPSDR26','IPSDR325','IPSDR41', 'PS115F679','PS75F679','PS46F679', 'PVCD2665', '40D1785','80D1785','120D1785', 'DR135D2241','DR17D2241','DR21D2241','DR26D2241','DR325D2241','DR41D2241','DR64D2241', 'DR21D2241CTS','DR17D2241CTS','DR135D2241CTS','DR11D2241CTS', 'DR21D2241PIP','DR26D2241PIP','DR325D2241PIP','DR35D2241PIP','DR41D2241PIP','DR51D2241PIP','DR81D2241PIP', 'S40F441IPS','S80F441IPS','S40F441SI','S80F441SI' 'DR325F2619SI','DR26F2619SI','DR21F2619SI','DR17F2619SI','DR135F2619SI','DR11F2619SI','DR9F2619SI','DR73F2619SI','DR7F2619SI', 'DR325F2619IPS','DR26F2619IPS','DR21F2619IPS','DR17F2619IPS','DR135F2619IPS','DR11F2619IPS','DR9F2619IPS','DR73F2619IPS','DR7F2619IPS', ### Fixed - Fixed a bug where in the pint interface for units which were dimensionless, but had not had their dimensions cancelled out yet, the incorrect magnitude was passed to the underlying functions. ## [0.1.82] - 2020-06-14 ### Added - Expose C2K, K2C, F2C, C2F, F2K, K2F, C2R, K2R, F2R, R2C, R2K, R2F to public interface of fluids.core so they can be used with numba, fluids.vectorized - Speed up some unit tests - Add numba interface which offers speed boosts and allows interoperability with programs using numba - Added methods friction_factor_methods, friction_factor_curved_methods, dP_packed_bed_methods, drag_sphere_methods, two_phase_dP_methods, gas_liquid_viscosity_methods, liquid_gas_voidage_methods to easily find which correlations are applicable to the a given parameter range. ### Removed - The AvailableMethods argument in the functions which had it is now deprecated! Changing the return type of a function does not work with numba, and will limit the future ability of fluids to possibly provide typing information i.e. for MyPy. It is also considered bad practice by some, although it is quite popular and used in libraries like SciPy. ## [0.1.81] - 2020-06-06 ### Added - Updated solar_irradiation, solar_position, earthsun_distance, sunrise_sunset to take and return timezone information. ### Changed - Updated tutorial with new results; almost all are small changes. - Preliminary work on a numba interface. - Tentative adaptive `quad` function implementation to perform integration fast with PyPy - Misc try/excepts which allow the library to be loaded in micropython - Misc try/excepts which allow the library to be loaded in IronPython ### Removed - Nothing ### Fixed - solar_irradiation, and solar_position incorrectly were assuming the timezone of the computer the calculation was run on. This has been remedied; the documentation has been updated to show the timezone now can be in either UTC time zone or with a time zone information provided.fluids-1.0.22/appveyor.yml0000644000175000017500000000200514302004506014767 0ustar nileshnilesh# File after https://github.com/jowr/jopy/blob/master/appveyor.yml, copyright predominately Jorrit Wronski # Tell appveyor to not use msbuild build: false environment: matrix: # - PYTHON: 2.7 # - PYTHON: 3.3 # 3.3's quad or interpolate worked differently in some cases, not worth testing with # - PYTHON: 3.5 # pint dropped support so tests fail - PYTHON: 3.6 - PYTHON: 3.7 - PYTHON: 3.8 - PYTHON: 3.9 platform: - x86 - x64 init: - "ECHO %PYTHON%" - cmd: SET PATH=C:\Miniconda3\Scripts;C:\Miniconda\Scripts;%PATH% - cmd: conda update -yq conda - cmd: conda install -yq conda-env conda-build - cmd: conda create -yq -n condaenv python=%PYTHON% install: - cmd: activate condaenv - cmd: conda install -yq numpy scipy pip pytest pandas numba IPython sphinx - cmd: pip install pytest-cov coveralls sympy fuzzywuzzy pint pytz sphinx matplotlib test_script: - cmd: py.test --cov-report html --cov=fluids -m "not online and not thermo and not numba" branches: only: - release fluids-1.0.22/LICENSE.txt0000644000175000017500000000210214302004506014220 0ustar nileshnileshCopyright (C) 2016-2021, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. fluids-1.0.22/README.rst0000644000175000017500000001076314302004506014100 0ustar nileshnilesh====== fluids ====== .. image:: http://img.shields.io/pypi/v/fluids.svg?style=flat :target: https://pypi.python.org/pypi/fluids :alt: Version_status .. image:: http://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat :target: https://fluids.readthedocs.io/ :alt: Documentation .. image:: https://github.com/CalebBell/fluids/workflows/Build/badge.svg :target: https://github.com/CalebBell/fluids/actions :alt: Build_status .. image:: http://img.shields.io/badge/license-MIT-blue.svg?style=flat :target: https://github.com/CalebBell/fluids/blob/master/LICENSE.txt :alt: license .. image:: https://img.shields.io/coveralls/CalebBell/fluids.svg?release :target: https://coveralls.io/github/CalebBell/fluids :alt: Coverage .. image:: https://img.shields.io/pypi/pyversions/fluids.svg? :target: https://pypi.python.org/pypi/fluids :alt: Supported_versions .. image:: http://img.shields.io/appveyor/ci/calebbell/fluids.svg? :target: https://ci.appveyor.com/project/calebbell/fluids/branch/master :alt: Build_status .. image:: https://zenodo.org/badge/48924523.svg? :alt: Zendo :target: https://zenodo.org/badge/latestdoi/48924523 .. contents:: What is Fluids? --------------- Fluids is open-source software for engineers and technicians working in the fields of chemical, mechanical, or civil engineering. It includes modules for piping, fittings, pumps, tanks, compressible flow, open-channel flow, atmospheric properties, solar properties, particle size distributions, two phase flow, friction factors, control valves, orifice plates and other flow meters, ejectors, relief valves, and more. The fluids library is designed to be a low-overhead, lightweight repository of engineering knowledge and utilities that relate to fluid dynamics. Fluids was originally tightly integrated with SciPy and NumPy; today they are optional components used for only a small amount of functionality which do not have pure-Python numerical methods implemented. Fluids targets Python 2.7 and up as well as PyPy2 and PyPy3. Additionally, fluids has been tested by the author to load in IronPython, Jython, and micropython. While the routines in Fluids are normally quite fast and as efficiently coded as possible, depending on the application there can still be a need for further speed. PyPy provides a substantial speed boost of 6-12 times for most methods. Fluids also supports Numba, a powerful accelerator that works well with NumPy. The Numba interface to fluids also makes it easy to multithread execution as well, avoiding Python GIL issue. Fluids runs on all operating systems which support Python, is quick to install, and is free of charge. Fluids is designed to be easy to use while still providing powerful functionality. If you need to perform some fluid dynamics calculations, give fluids a try. Installation ------------ Get the latest version of fluids from https://pypi.python.org/pypi/fluids/ If you have an installation of Python with pip, simple install it with: $ pip install fluids Alternatively, if you are using `conda `_ as your package management, you can simply install fluids in your environment from `conda-forge `_ channel with: $ conda install -c conda-forge fluids To get the git version, run: $ git clone git://github.com/CalebBell/fluids.git Documentation ------------- fluids's documentation is available on the web: http://fluids.readthedocs.io/ Latest source code ------------------ The latest development version of fluids's sources can be obtained at https://github.com/CalebBell/fluids Bug reports ----------- To report bugs, please use the fluids's Bug Tracker at: https://github.com/CalebBell/fluids/issues If you have further questions about the usage of the library, feel free to contact the author at Caleb.Andrew.Bell@gmail.com. License information ------------------- Fluids is MIT licensed. See ``LICENSE.txt`` for full information on the terms & conditions for usage of this software, and a DISCLAIMER OF ALL WARRANTIES. Although not required by the fluids license, if it is convenient for you, please cite fluids if used in your work. Please also consider contributing any changes you make back, such that they may be incorporated into the main library and all of us will benefit from them. Citation -------- To cite fluids in publications use:: Caleb Bell (2016-2021). fluids: Fluid dynamics component of Chemical Engineering Design Library (ChEDL) https://github.com/CalebBell/fluids. fluids-1.0.22/conftest.py0000644000175000017500000000413414302004506014603 0ustar nileshnileshimport sys import platform is_pypy = 'PyPy' in sys.version def pytest_ignore_collect(path): path = str(path) if 'manual_runner' in path or 'make_test_stubs' in path or 'plot' in path or 'prerelease' in path: return True ver_tup = platform.python_version_tuple()[0:2] ver_tup = tuple(int(i) for i in ver_tup) if 'benchmarks' in path: return True if 'conf.py' in path: return True if ver_tup < (3, 7) or ver_tup >= (3, 11) or is_pypy: # numba does not yet run under pypy if 'numba' in path: return True if '.rst' in path: # skip .rst tests as different rendering from pint and no support for NUMBER flag return True if sys.version[0] == '2': if 'numba' in path or 'typing_utils' in path: return True #if 'rst' in path: # if platform.python_version_tuple()[0:2] != ('3', '7'): # return True if 'test' not in path: return True if 'ipynb' in path and 'bench' in path: return True #def pytest_addoption(parser, pluginmanager): # if sys.version[0] == '323523': # parser.addoption("--doctest-modules") # parser.addini(name="doctest_optionflags", help="", default="NORMALIZE_WHITESPACE NUMBER") #def pytest_configure(config): # print(config) #open('/home/caleb/testoutput', 'w').write(str(1)) #if sys.version[0] == '2': # args = [] # #print(args) def pytest_load_initial_conftests(args): a = 1 b = 2 def pytest_configure(config): if sys.version[0] == '3': import pytest if pytest.__version__.split('.')[0] >= '6': config.addinivalue_line("addopts", '--doctest-modules') config.option.doctestmodules = True config.addinivalue_line("doctest_optionflags", "NUMBER") # config.addinivalue_line("addopts", config.inicfg['addopts'].replace('//', '') + ' --doctest-modules') #config.inicfg['addopts'] = config.inicfg['addopts'] + ' --doctest-modules' # config.addinivalue_line("doctest_optionflags", "NORMALIZE_WHITESPACE") fluids-1.0.22/Makefile0000644000175000017500000000145514302004506014047 0ustar nileshnileshPYTHON_FILES:= $(wildcard fluids/*.py) COVERAGE:= coverage path_to_pymodule = $(subst /,.,$(basename $(1))) unittests: clean run html annotate RUN_SUFFIX:= runfile RUN_FILES:= $(addsuffix .$(RUN_SUFFIX),$(PYTHON_FILES)) run: $(RUN_FILES) %.$(RUN_SUFFIX): % $(COVERAGE) run -m -a --include="fluids/*" $(call path_to_pymodule,$<) @touch $@ HTML_DIR:= html_report html: $(HTML_DIR) run $(COVERAGE) html -d $< ANNOTATED_DIR:= code_coverage ANNOTATED_FILES:= $(foreach file,$(PYTHON_FILES),$(ANNOTATED_DIR)/$(file),cover) annotate: $(ANNOTATED_FILES) $(ANNOTATED_DIR)/%,cover: $(ANNOTATED_DIR) % $(COVERAGE) annotate -d $< $(word 2,$^) clean: $(COVERAGE) erase rm -rf $(HTML_DIR) rm -rf $(ANNOTATED_DIR) rm -rf $$(find . -name "*.$(RUN_SUFFIX)" -type f) $(ANNOTATED_DIR) $(HTML_DIR): mkdir -p $@ fluids-1.0.22/requirements_test.txt0000644000175000017500000000017714302004506016732 0ustar nileshnileshscipy pytest pytest-cov coveralls sympy; python_version>='3' fuzzywuzzy pint pytz numpy pandas IPython sphinx wheel matplotlib fluids-1.0.22/requirements_docs.txt0000644000175000017500000000015514302004506016677 0ustar nileshnileshnumpy scipy numpydoc pint nbsphinx ipython numba sphinxcontrib-katex sphinx-sitemap sphinx==4.3.0 matplotlib fluids-1.0.22/setup.py0000644000175000017500000000762014302004506014121 0ustar nileshnilesh# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016-2021, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''' from setuptools import setup classifiers = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'Intended Audience :: Manufacturing', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Operating System :: MacOS', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Operating System :: POSIX :: BSD', 'Operating System :: POSIX :: Linux', 'Operating System :: Unix', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Programming Language :: Python :: Implementation :: MicroPython', 'Programming Language :: Python :: Implementation :: IronPython', 'Programming Language :: Python :: Implementation :: Jython', 'Topic :: Education', 'Topic :: Scientific/Engineering :: Atmospheric Science', 'Topic :: Scientific/Engineering :: Chemistry', 'Topic :: Scientific/Engineering :: Physics', ] description = 'Fluid dynamics component of Chemical Engineering Design Library (ChEDL)' keywords = ('fluid dynamics atmosphere pipe fluids compressible fluid dynamics ' 'chemical engineering mechanical engineering valve open channel ' 'tank friction pressure drop two phase pump drag reynolds ' 'sedimentation engineering pipeline process simulation particle ' 'size distribution') setup( name='fluids', packages=['fluids'], license='MIT', version='1.0.22', download_url='https://github.com/CalebBell/fluids/tarball/1.0.22', description=description, long_description=open('README.rst').read(), install_requires=["numpy>=1.5.0", "scipy>=0.9.0"], extras_require={ 'Coverage documentation': ['wsgiref>=0.1.2', 'coverage>=4.0.3', 'pint'] }, author='Caleb Bell', author_email='Caleb.Andrew.Bell@gmail.com', platforms=['Windows', 'Linux', 'Mac OS', 'Unix'], url='https://github.com/CalebBell/fluids', keywords=keywords, classifiers=classifiers, package_data={ 'fluids': [ 'data/*', 'nrlmsise00/*', 'optional/*', 'numerics/*', 'constants/*' ] }, ) fluids-1.0.22/asv.conf.json0000644000175000017500000001537614302004506015026 0ustar nileshnilesh{ // The version of the config file format. Do not change, unless // you know what you are doing. "version": 1, // The name of the project being benchmarked "project": "fluids", // The project's homepage "project_url": "https://github.com/CalebBell/fluids/", // The URL or local path of the source code repository for the // project being benchmarked "repo": ".", // The Python project's subdirectory in your repo. If missing or // the empty string, the project is assumed to be located at the root // of the repository. // "repo_subdir": "", // Customizable commands for building, installing, and // uninstalling the project. See asv.conf.json documentation. // "install_command": ["in-dir={env_dir} python -mpip install {wheel_file}", "python -mpip install numba IPython"], // "uninstall_command": ["return-code=any python -mpip uninstall -y {project}"], // "build_command": [ // "python setup.py build", // "PIP_NO_BUILD_ISOLATION=false python -mpip wheel --no-deps --no-index -w {build_cache_dir} {build_dir}" // ], // List of branches to benchmark. If not provided, defaults to "master" // (for git) or "default" (for mercurial). // "branches": ["master"], // for git // "branches": ["default"], // for mercurial // The DVCS being used. If not set, it will be automatically // determined from "repo" by looking at the protocol in the URL // (if remote), or by looking for special directories, such as // ".git" (if local). // "dvcs": "git", // The tool to use to create environments. May be "conda", // "virtualenv" or other value depending on the plugins in use. // If missing or the empty string, the tool will be automatically // determined by looking for tools on the PATH environment // variable. "environment_type": "virtualenv", // timeout in seconds for installing any dependencies in environment // defaults to 10 min //"install_timeout": 600, // the base URL to show a commit for the project. // "show_commit_url": "http://github.com/owner/project/commit/", // The Pythons you'd like to test against. If not provided, defaults // to the current version of Python used to run `asv`. // "pythons": ["2.7", "3.6"], // The list of conda channel names to be searched for benchmark // dependency packages in the specified order // "conda_channels": ["conda-forge", "defaults"], // The matrix of dependencies to test. Each key is the name of a // package (in PyPI) and the values are version numbers. An empty // list or empty string indicates to just test against the default // (latest) version. null indicates that the package is to not be // installed. If the package to be tested is only available from // PyPi, and the 'environment_type' is conda, then you can preface // the package name by 'pip+', and the package will be installed via // pip (with all the conda available packages installed first, // followed by the pip installed packages). // // "matrix": { // "numpy": ["1.6", "1.7"], // "six": ["", null], // test with and without six installed // "pip+emcee": [""], // emcee is only available for install with pip. // }, // Combinations of libraries/python versions can be excluded/included // from the set to test. Each entry is a dictionary containing additional // key-value pairs to include/exclude. // // An exclude entry excludes entries where all values match. The // values are regexps that should match the whole string. // // An include entry adds an environment. Only the packages listed // are installed. The 'python' key is required. The exclude rules // do not apply to includes. // // In addition to package names, the following keys are available: // // - python // Python version, as in the *pythons* variable above. // - environment_type // Environment type, as above. // - sys_platform // Platform, as in sys.platform. Possible values for the common // cases: 'linux2', 'win32', 'cygwin', 'darwin'. // // "exclude": [ // {"python": "3.2", "sys_platform": "win32"}, // skip py3.2 on windows // {"environment_type": "conda", "six": null}, // don't run without six on conda // ], // // "include": [ // // additional env for python2.7 // {"python": "2.7", "numpy": "1.8"}, // // additional env if run on windows+conda // {"platform": "win32", "environment_type": "conda", "python": "2.7", "libpython": ""}, // ], // The directory (relative to the current directory) that benchmarks are // stored in. If not provided, defaults to "benchmarks" // "benchmark_dir": "benchmarks", // The directory (relative to the current directory) to cache the Python // environments in. If not provided, defaults to "env" "env_dir": ".asv/env", // The directory (relative to the current directory) that raw benchmark // results are stored in. If not provided, defaults to "results". "results_dir": ".asv/results", // The directory (relative to the current directory) that the html tree // should be written to. If not provided, defaults to "html". "html_dir": ".asv/html", // The number of characters to retain in the commit hashes. // "hash_length": 8, // `asv` will cache results of the recent builds in each // environment, making them faster to install next time. This is // the number of builds to keep, per environment. // "build_cache_size": 2, // The commits after which the regression search in `asv publish` // should start looking for regressions. Dictionary whose keys are // regexps matching to benchmark names, and values corresponding to // the commit (exclusive) after which to start looking for // regressions. The default is to start from the first commit // with results. If the commit is `null`, regression detection is // skipped for the matching benchmark. // // "regressions_first_commits": { // "some_benchmark": "352cdf", // Consider regressions only after this commit // "another_benchmark": null, // Skip regression detection altogether // }, // The thresholds for relative change in results, after which `asv // publish` starts reporting regressions. Dictionary of the same // form as in ``regressions_first_commits``, with values // indicating the thresholds. If multiple entries match, the // maximum is taken. If no entry matches, the default is 5%. // // "regressions_thresholds": { // "some_benchmark": 0.01, // Threshold of 1% // "another_benchmark": 0.5, // Threshold of 50% // }, } fluids-1.0.22/environment.yml0000644000175000017500000000015314302004506015470 0ustar nileshnileshname: fluids dependencies: - python - numpy - matplotlib - pandas - scipy - pip: - fluids fluids-1.0.22/AUTHORS0000644000175000017500000000011414302004506013446 0ustar nileshnileshCaleb Bell Joshua Milas fluids-1.0.22/pytest.ini0000644000175000017500000000124014302004506014430 0ustar nileshnilesh[pytest] addopts = --doctest-glob='*.rst' --ignore='setup.py' --ignore='manual_runner.py' --ignore='make_test_stubs.py' norecursedirs = .cache .git htmlcov notebooks dist doctest_optionflags= NORMALIZE_WHITESPACE markers = slow: slow tests thermo: relies on the thermo library, for integration testing online: needs internet mpmath: needs mpmath to check results against a higher-precision result fuzz: test not relevant to normal development, but can reveal bugs or provide certainty the results are correct numba : numba scipy : Needs scipy to work numpy : Needs numpy to work f2py : Needs f2py to work pytz : Needs pytz to work fluids-1.0.22/.coveragerc0000644000175000017500000000043114302004506014521 0ustar nileshnilesh# .coveragerc to control coverage.py [run] branch = True relative_files = True omit = # omit anything in a .local directory anywhere *nrlmsise_00.py *arrays.py *design_climate.py *pychebfun.py [report] exclude_lines = pragma: no cover def __repr__ fluids-1.0.22/fluids/0000755000175000017500000000000014302004506013670 5ustar nileshnileshfluids-1.0.22/fluids/particle_size_distribution.py0000644000175000017500000034675114302004506021716 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2019, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains particle distribution characterization, fitting, interpolating, and manipulation functions. It may be used with discrete particle size distributions, or with statistical ones with parameters specified. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Particle Size Distribution Base Class ------------------------------------- .. autoclass:: ParticleSizeDistributionContinuous :members: Discrete Particle Size Distributions ------------------------------------ .. autoclass:: ParticleSizeDistribution :members: .. autoclass:: PSDInterpolated :members: Statistical Particle Size Distributions --------------------------------------- .. autoclass:: PSDLognormal :members: .. autoclass:: PSDGatesGaudinSchuhman :members: .. autoclass:: PSDRosinRammler :members: .. autoclass:: PSDCustom :members: Helper functions: Lognormal Distribution ---------------------------------------- .. autofunction:: pdf_lognormal .. autofunction:: cdf_lognormal .. autofunction:: pdf_lognormal_basis_integral Helper functions: Gates Gaudin Schuhman Distribution ---------------------------------------------------- .. autofunction:: pdf_Gates_Gaudin_Schuhman .. autofunction:: cdf_Gates_Gaudin_Schuhman .. autofunction:: pdf_Gates_Gaudin_Schuhman_basis_integral Helper functions: Rosin Rammler Distribution -------------------------------------------- .. autofunction:: pdf_Rosin_Rammler .. autofunction:: cdf_Rosin_Rammler .. autofunction:: pdf_Rosin_Rammler_basis_integral Sieves ------ .. autoclass:: Sieve .. autodata:: ASTM_E11_sieves .. autodata:: ISO_3310_1_sieves .. autodata:: ISO_3310_1_R20 .. autodata:: ISO_3310_1_R20_3 .. autodata:: ISO_3310_1_R40_3 .. autodata:: ISO_3310_1_R10 Point Spacing ------------- .. autofunction:: psd_spacing """ from __future__ import division __all__ = ['ParticleSizeDistribution', 'ParticleSizeDistributionContinuous', 'PSDLognormal', 'PSDGatesGaudinSchuhman', 'PSDRosinRammler', 'PSDInterpolated', 'PSDCustom', 'psd_spacing', 'pdf_lognormal', 'cdf_lognormal', 'pdf_lognormal_basis_integral', 'pdf_Gates_Gaudin_Schuhman', 'cdf_Gates_Gaudin_Schuhman', 'pdf_Gates_Gaudin_Schuhman_basis_integral', 'pdf_Rosin_Rammler', 'cdf_Rosin_Rammler', 'pdf_Rosin_Rammler_basis_integral', 'ASTM_E11_sieves', 'ISO_3310_1_sieves', 'Sieve', 'ISO_3310_1_R20_3', 'ISO_3310_1_R20', 'ISO_3310_1_R10', 'ISO_3310_1_R40_3'] from math import log, exp, pi, log10, sqrt from fluids.numerics import (brenth, epsilon, gamma, erf, gammaincc, linspace, logspace, cumsum, diff, normalize, quad) ROOT_TWO_PI = sqrt(2.0*pi) NO_MATPLOTLIB_MSG = 'Optional dependency matplotlib is required for plotting' class Sieve(object): r'''Class for storing data on sieves. If a property is not available, it is set to None. Attributes ---------- designation : str The standard name of the sieve - its opening's length in units of millimeters old_designation : str The older, imperial-esque name of the sieve; in Numbers, or inches for large sieves opening : float The opening length of the sieve holes, [m] opening_inch : float The opening length of the sieve holes in the rounded inches as stated in common tables (not exactly equal to the `opening`), [inch] Y_variation_avg : float The allowable average variation in the Y direction of the sieve openings, [m] X_variation_max : float The allowable maximum variation in the X direction of the sieve openings, [m] max_opening : float The maximum allowable opening of the sieve, [m] calibration_samples : float The number of opening sample inspections required for `calibration`- type sieve openings (per 100 ft^2 of sieve material), [1/(ft^2)] compliance_sd : float The maximum standard deviation of `compliance`-type sieve openings, [-] inspection_samples : float The number of opening sample inspections required for `inspection`- type sieve openings (based on an 8-inch sieve), [-] inspection_sd : float The maximum standard deviation of `inspection`-type sieve openings, [-] calibration_samples : float The number of opening sample inspections required for `calibration`- type sieve openings (based on an 8-inch sieve), [-] calibration_sd : float The maximum standard deviation of `calibration`-type sieve openings, [-] d_wire : float Typical wire diameter of the specified sieve size, [m] d_wire_min : float Permissible minimum wire diameter of specified sieve size, [m] d_wire_max : float Permissible maximum wire diameter of specified sieve size, [m] ''' __slots__ = ('designation', 'old_designation', 'opening', 'opening_inch', 'Y_variation_avg', 'X_variation_max', 'max_opening', 'calibration_samples', 'compliance_sd', 'inspection_samples', 'inspection_sd', 'calibration_samples', 'calibration_sd', 'd_wire', 'd_wire_min', 'd_wire_max', 'compliance_samples') # def __repr__(self): # s = 'Sieve(%s)' # s2 = '' # for attr, value in self.__dict__.items(): # if value is not None: # if type(value) == float: # value = round(value, 8) # elif type(value) == str: # value = "'" + value + "'" # s2 += '%s=%s, '%(attr, value) # s2 = s2[0:-2] # return s %(s2) def __repr__(self): return '' %(self.designation, self.opening) def __init__(self, designation, old_designation=None, opening=None, opening_inch=None, Y_variation_avg=None, X_variation_max=None, max_opening=None, compliance_samples=None, compliance_sd=None, inspection_samples=None, inspection_sd=None, calibration_samples=None, calibration_sd=None, d_wire=None, d_wire_min=None, d_wire_max=None): self.designation = designation self.old_designation = old_designation self.opening_inch = opening_inch self.opening = opening self.Y_variation_avg = Y_variation_avg self.X_variation_max = X_variation_max self.max_opening = max_opening self.compliance_samples = compliance_samples self.compliance_sd = compliance_sd self.inspection_samples = inspection_samples self.inspection_sd = inspection_sd self.calibration_samples = calibration_samples self.calibration_sd = calibration_sd self.d_wire = d_wire self.d_wire_min = d_wire_min self.d_wire_max = d_wire_max ASTM_E11_sieves = {'0.02': Sieve(calibration_samples=300.0, d_wire_min=2e-08, d_wire=2e-08, inspection_sd=4.51, calibration_sd=4.75, old_designation='No. 635', opening=2e-05, compliance_samples=1000.0, opening_inch=8e-07, inspection_samples=100.0, designation='0.02', d_wire_max=2e-08, max_opening=0.035, X_variation_max=1.5e-05, Y_variation_avg=2.3e-06, compliance_sd=5.33), '0.025': Sieve(calibration_samples=300.0, d_wire_min=2e-08, d_wire=3e-08, inspection_sd=4.82, calibration_sd=5.06, old_designation='No. 500', opening=2.5e-05, compliance_samples=1000.0, opening_inch=1e-06, inspection_samples=100.0, designation='0.025', d_wire_max=3e-08, max_opening=0.041, X_variation_max=1.6e-05, Y_variation_avg=2.5e-06, compliance_sd=5.71), '0.032': Sieve(calibration_samples=300.0, d_wire_min=2e-08, d_wire=3e-08, inspection_sd=5.42, calibration_sd=5.71, old_designation='No. 450', opening=3.2e-05, compliance_samples=1000.0, opening_inch=1.2e-06, inspection_samples=100.0, designation='0.032', d_wire_max=3e-08, max_opening=0.05, X_variation_max=1.8e-05, Y_variation_avg=2.7e-06, compliance_sd=6.42), '0.038': Sieve(calibration_samples=300.0, d_wire_min=2e-08, d_wire=3e-08, inspection_sd=5.99, calibration_sd=6.31, old_designation='No. 400', opening=3.8e-05, compliance_samples=1000.0, opening_inch=1.5e-06, inspection_samples=100.0, designation='0.038', d_wire_max=3e-08, max_opening=0.058, X_variation_max=2e-05, Y_variation_avg=2.9e-06, compliance_sd=7.09), '0.045': Sieve(calibration_samples=250.0, d_wire_min=3e-08, d_wire=3e-08, inspection_sd=6.56, calibration_sd=6.84, old_designation='No. 325', opening=4.5e-05, compliance_samples=1000.0, opening_inch=1.7e-06, inspection_samples=100.0, designation='0.045', d_wire_max=4e-08, max_opening=0.067, X_variation_max=2.2e-05, Y_variation_avg=3.1e-06, compliance_sd=7.76), '0.053': Sieve(calibration_samples=250.0, d_wire_min=3e-08, d_wire=4e-08, inspection_sd=7.13, calibration_sd=7.44, old_designation='No. 270', opening=5.3e-05, compliance_samples=1000.0, opening_inch=2.1e-06, inspection_samples=100.0, designation='0.053', d_wire_max=4e-08, max_opening=0.077, X_variation_max=2.4e-05, Y_variation_avg=3.4e-06, compliance_sd=8.44), '0.063': Sieve(calibration_samples=250.0, d_wire_min=4e-08, d_wire=5e-08, inspection_sd=7.76, calibration_sd=8.09, old_designation='No. 230', opening=6.3e-05, compliance_samples=1000.0, opening_inch=2.5e-06, inspection_samples=100.0, designation='0.063', d_wire_max=5e-08, max_opening=0.089, X_variation_max=2.6e-05, Y_variation_avg=3.7e-06, compliance_sd=9.18), '0.075': Sieve(calibration_samples=250.0, d_wire_min=4e-08, d_wire=5e-08, inspection_sd=8.64, calibration_sd=9.02, old_designation='No. 200', opening=7.5e-05, compliance_samples=1000.0, opening_inch=2.9e-06, inspection_samples=100.0, designation='0.075', d_wire_max=6e-08, max_opening=0.104, X_variation_max=2.9e-05, Y_variation_avg=4.1e-06, compliance_sd=10.23), '0.09': Sieve(calibration_samples=200.0, d_wire_min=5e-08, d_wire=6e-08, inspection_sd=9.53, calibration_sd=9.8, old_designation='No. 170', opening=9e-05, compliance_samples=1000.0, opening_inch=3.5e-06, inspection_samples=100.0, designation='0.09', d_wire_max=7e-08, max_opening=0.122, X_variation_max=3.2e-05, Y_variation_avg=4.6e-06, compliance_sd=11.27), '0.106': Sieve(calibration_samples=200.0, d_wire_min=6e-08, d_wire=7e-08, inspection_sd=10.47, calibration_sd=10.77, old_designation='No. 140', opening=0.000106, compliance_samples=1000.0, opening_inch=4.1e-06, inspection_samples=100.0, designation='0.106', d_wire_max=8e-08, max_opening=0.141, X_variation_max=3.5e-05, Y_variation_avg=5.2e-06, compliance_sd=12.39), '0.125': Sieve(calibration_samples=200.0, d_wire_min=8e-08, d_wire=9e-08, inspection_sd=11.41, calibration_sd=11.74, old_designation='No. 120', opening=0.000125, compliance_samples=1000.0, opening_inch=4.9e-06, inspection_samples=100.0, designation='0.125', d_wire_max=1e-07, max_opening=0.163, X_variation_max=3.8e-05, Y_variation_avg=5.8e-06, compliance_sd=13.51), '0.15': Sieve(calibration_samples=200.0, d_wire_min=9e-08, d_wire=1e-07, inspection_sd=12.93, calibration_sd=13.3, old_designation='No. 100', opening=0.00015, compliance_samples=1000.0, opening_inch=5.9e-06, inspection_samples=100.0, designation='0.15', d_wire_max=1.2e-07, max_opening=0.193, X_variation_max=4.3e-05, Y_variation_avg=6.6e-06, compliance_sd=15.3), '0.18': Sieve(calibration_samples=200.0, d_wire_min=1.1e-07, d_wire=1.2e-07, inspection_sd=14.24, calibration_sd=14.65, old_designation='No. 80', opening=0.00018, compliance_samples=1000.0, opening_inch=7e-06, inspection_samples=100.0, designation='0.18', d_wire_max=1.5e-07, max_opening=0.227, X_variation_max=4.7e-05, Y_variation_avg=7.6e-06, compliance_sd=16.85), '0.212': Sieve(calibration_samples=160.0, d_wire_min=1.2e-07, d_wire=1.4e-07, inspection_sd=15.59, calibration_sd=16.08, old_designation='No. 70', opening=0.000212, compliance_samples=800.0, opening_inch=8.3e-06, inspection_samples=80.0, designation='0.212', d_wire_max=1.7e-07, max_opening=0.264, X_variation_max=5.2e-05, Y_variation_avg=8.7e-06, compliance_sd=18.79), '0.25': Sieve(calibration_samples=160.0, d_wire_min=1.3e-07, d_wire=1.6e-07, inspection_sd=17.44, calibration_sd=17.99, old_designation='No. 60', opening=0.00025, compliance_samples=800.0, opening_inch=9.8e-06, inspection_samples=80.0, designation='0.25', d_wire_max=1.9e-07, max_opening=0.308, X_variation_max=5.8e-05, Y_variation_avg=9.9e-06, compliance_sd=21.02), '0.3': Sieve(calibration_samples=160.0, d_wire_min=1.7e-07, d_wire=2e-07, inspection_sd=19.66, calibration_sd=20.29, old_designation='No. 50', opening=0.0003, compliance_samples=800.0, opening_inch=1.17e-05, inspection_samples=80.0, designation='0.3', d_wire_max=2.3e-07, max_opening=0.365, X_variation_max=6.5e-05, Y_variation_avg=1.15e-05, compliance_sd=23.7), '0.355': Sieve(calibration_samples=160.0, d_wire_min=1.9e-07, d_wire=2.2e-07, inspection_sd=21.95, calibration_sd=22.64, old_designation='No. 45', opening=0.000355, compliance_samples=800.0, opening_inch=1.39e-05, inspection_samples=80.0, designation='0.355', d_wire_max=2.6e-07, max_opening=0.427, X_variation_max=7.2e-05, Y_variation_avg=1.33e-05, compliance_sd=26.45), '0.425': Sieve(calibration_samples=120.0, d_wire_min=2.4e-07, d_wire=2.8e-07, inspection_sd=24.2, calibration_sd=25.08, old_designation='No. 40', opening=0.000425, compliance_samples=600.0, opening_inch=1.65e-05, inspection_samples=60.0, designation='0.425', d_wire_max=3.2e-07, max_opening=0.506, X_variation_max=8.1e-05, Y_variation_avg=1.55e-05, compliance_sd=29.95), '0.5': Sieve(calibration_samples=120.0, d_wire_min=2.7e-07, d_wire=3.2e-07, inspection_sd=26.85, calibration_sd=27.82, old_designation='No. 35', opening=0.0005, compliance_samples=600.0, opening_inch=1.97e-05, inspection_samples=60.0, designation='0.5', d_wire_max=3.6e-07, max_opening=0.589, X_variation_max=8.9e-05, Y_variation_avg=1.8e-05, compliance_sd=33.23), '0.6': Sieve(calibration_samples=100.0, d_wire_min=3.4e-07, d_wire=4e-07, inspection_sd=30.14, calibration_sd=31.32, old_designation='No. 30', opening=0.0006, compliance_samples=500.0, opening_inch=2.34e-05, inspection_samples=50.0, designation='0.6', d_wire_max=4.6e-07, max_opening=0.701, X_variation_max=0.000101, Y_variation_avg=2.12e-05, compliance_sd=38.0), '0.71': Sieve(calibration_samples=100.0, d_wire_min=3.8e-07, d_wire=4.5e-07, inspection_sd=33.82, calibration_sd=35.14, old_designation='No. 25', opening=0.00071, compliance_samples=500.0, opening_inch=2.78e-05, inspection_samples=50.0, designation='0.71', d_wire_max=5.2e-07, max_opening=0.822, X_variation_max=0.000112, Y_variation_avg=2.47e-05, compliance_sd=42.63), '0.85': Sieve(calibration_samples=80.0, d_wire_min=4.3e-07, d_wire=5e-07, inspection_sd=37.73, calibration_sd=39.36, old_designation='No. 20', opening=0.00085, compliance_samples=400.0, opening_inch=3.31e-05, inspection_samples=40.0, designation='0.85', d_wire_max=5.8e-07, max_opening=0.977, X_variation_max=0.000127, Y_variation_avg=2.91e-05, compliance_sd=48.76), '1': Sieve(calibration_samples=80.0, d_wire_min=0.00048, d_wire=0.00056, inspection_sd=0.042, calibration_sd=0.044, old_designation='No. 18', opening=0.001, compliance_samples=400.0, opening_inch=3.94e-05, inspection_samples=40.0, designation='1', d_wire_max=0.00064, max_opening=1.14, X_variation_max=0.00014, Y_variation_avg=3.4e-05, compliance_sd=0.055), '1.18': Sieve(calibration_samples=80.0, d_wire_min=0.00054, d_wire=0.00063, inspection_sd=0.049, calibration_sd=0.051, old_designation='No. 16', opening=0.00118, compliance_samples=400.0, opening_inch=4.69e-05, inspection_samples=40.0, designation='1.18', d_wire_max=0.00072, max_opening=1.34, X_variation_max=0.00016, Y_variation_avg=4e-05, compliance_sd=0.063), '1.4': Sieve(calibration_samples=80.0, d_wire_min=0.0006, d_wire=0.00071, inspection_sd=0.055, calibration_sd=0.057, old_designation='No. 14', opening=0.0014, compliance_samples=400.0, opening_inch=5.55e-05, inspection_samples=40.0, designation='1.4', d_wire_max=0.00082, max_opening=1.58, X_variation_max=0.00018, Y_variation_avg=4.6e-05, compliance_sd=0.071), '1.7': Sieve(calibration_samples=50.0, d_wire_min=0.00068, d_wire=0.0008, inspection_sd=0.059, calibration_sd=0.062, old_designation='No. 12', opening=0.0017, compliance_samples=250.0, opening_inch=6.61e-05, inspection_samples=25.0, designation='1.7', d_wire_max=0.00092, max_opening=1.9, X_variation_max=0.0002, Y_variation_avg=5.6e-05, compliance_sd=0.081), '100': Sieve(d_wire_min=0.0054, d_wire=0.0063, old_designation='4 in.', opening=0.1, compliance_samples=20.0, opening_inch=0.004, designation='100', d_wire_max=0.0072, max_opening=103.82, X_variation_max=0.00382, Y_variation_avg=0.00294), '106': Sieve(d_wire_min=0.0054, d_wire=0.0063, old_designation='4.24 in.', opening=0.106, compliance_samples=20.0, opening_inch=0.00424, designation='106', d_wire_max=0.0072, max_opening=109.99, X_variation_max=0.00399, Y_variation_avg=0.00312), '11.2': Sieve(calibration_samples=30.0, d_wire_min=0.0021, d_wire=0.0025, inspection_sd=0.256, calibration_sd=0.274, old_designation='7/16 in.', opening=0.0112, compliance_samples=150.0, opening_inch=0.000438, inspection_samples=15.0, designation='11.2', d_wire_max=0.0029, max_opening=11.97, X_variation_max=0.00077, Y_variation_avg=0.000346, compliance_sd=0.382), '12.5': Sieve(calibration_samples=30.0, d_wire_min=0.0021, d_wire=0.0025, inspection_sd=0.283, calibration_sd=0.302, old_designation='1/2 in.', opening=0.0125, compliance_samples=150.0, opening_inch=0.0005, inspection_samples=15.0, designation='12.5', d_wire_max=0.0029, max_opening=13.33, X_variation_max=0.00083, Y_variation_avg=0.000385, compliance_sd=0.421), '125': Sieve(d_wire_min=0.0068, d_wire=0.008, old_designation='5 in.', opening=0.125, compliance_samples=20.0, opening_inch=0.005, designation='125', d_wire_max=0.0092, max_opening=129.51, X_variation_max=0.00451, Y_variation_avg=0.00366), '13.2': Sieve(calibration_samples=30.0, d_wire_min=0.0024, d_wire=0.0028, inspection_sd=0.296, calibration_sd=0.316, old_designation='0.530 in.', opening=0.0132, compliance_samples=150.0, opening_inch=0.00053, inspection_samples=15.0, designation='13.2', d_wire_max=0.0032, max_opening=14.06, X_variation_max=0.00086, Y_variation_avg=0.000406, compliance_sd=0.441), '16': Sieve(calibration_samples=30.0, d_wire_min=0.0027, d_wire=0.00315, inspection_sd=0.354, calibration_sd=0.378, old_designation='5/8 in.', opening=0.016, compliance_samples=150.0, opening_inch=0.000625, inspection_samples=15.0, designation='16', d_wire_max=0.0036, max_opening=16.99, X_variation_max=0.00099, Y_variation_avg=0.00049, compliance_sd=0.527), '19': Sieve(calibration_samples=30.0, d_wire_min=0.0027, d_wire=0.00315, inspection_sd=0.418, calibration_sd=0.446, old_designation='3/4 in.', opening=0.019, compliance_samples=150.0, opening_inch=0.00075, inspection_samples=15.0, designation='19', d_wire_max=0.0035, max_opening=20.13, X_variation_max=0.00113, Y_variation_avg=0.000579, compliance_sd=0.622), '2': Sieve(calibration_samples=50.0, d_wire_min=0.00077, d_wire=0.0009, inspection_sd=0.068, calibration_sd=0.072, old_designation='No. 10', opening=0.002, compliance_samples=250.0, opening_inch=7.87e-05, inspection_samples=25.0, designation='2', d_wire_max=0.00104, max_opening=2.23, X_variation_max=0.00023, Y_variation_avg=6.5e-05, compliance_sd=0.094), '2.36': Sieve(calibration_samples=40.0, d_wire_min=0.00085, d_wire=0.001, inspection_sd=0.073, calibration_sd=0.077, old_designation='No. 8', opening=0.00236, compliance_samples=200.0, opening_inch=9.37e-05, inspection_samples=20.0, designation='2.36', d_wire_max=0.00115, max_opening=2.61, X_variation_max=0.00025, Y_variation_avg=7.6e-05, compliance_sd=0.104), '2.8': Sieve(calibration_samples=40.0, d_wire_min=0.00095, d_wire=0.00112, inspection_sd=0.085, calibration_sd=0.09, old_designation='No. 7', opening=0.0028, compliance_samples=200.0, opening_inch=0.00011, inspection_samples=20.0, designation='2.8', d_wire_max=0.0013, max_opening=3.09, X_variation_max=0.00029, Y_variation_avg=9e-05, compliance_sd=0.121), '22.4': Sieve(d_wire_min=0.003, d_wire=0.00355, inspection_sd=0.493, old_designation='7/8 in.', opening=0.0224, compliance_samples=150.0, opening_inch=0.000875, inspection_samples=15.0, designation='22.4', d_wire_max=0.0041, max_opening=23.67, X_variation_max=0.00127, Y_variation_avg=0.000681, compliance_sd=0.734), '25': Sieve(d_wire_min=0.003, d_wire=0.00355, inspection_sd=0.553, old_designation='1.00 in.', opening=0.025, compliance_samples=20.0, opening_inch=0.001, inspection_samples=15.0, designation='25', d_wire_max=0.0041, max_opening=26.38, X_variation_max=0.00138, Y_variation_avg=0.000758, compliance_sd=0.823), '26.5': Sieve(d_wire_min=0.003, d_wire=0.00355, inspection_sd=0.584, old_designation='1.06 in.', opening=0.0265, compliance_samples=20.0, opening_inch=0.00106, inspection_samples=15.0, designation='26.5', d_wire_max=0.0041, max_opening=27.94, X_variation_max=0.00144, Y_variation_avg=0.000802, compliance_sd=0.869), '3.35': Sieve(calibration_samples=40.0, d_wire_min=0.00106, d_wire=0.00125, inspection_sd=0.097, calibration_sd=0.103, old_designation='No. 6', opening=0.00335, compliance_samples=200.0, opening_inch=0.000132, inspection_samples=20.0, designation='3.35', d_wire_max=0.0015, max_opening=3.67, X_variation_max=0.00032, Y_variation_avg=0.000107, compliance_sd=0.138), '31.5': Sieve(d_wire_min=0.0034, d_wire=0.004, old_designation='1 1/4 in.', opening=0.0315, compliance_samples=20.0, opening_inch=0.00125, designation='31.5', d_wire_max=0.0046, max_opening=33.13, X_variation_max=0.00163, Y_variation_avg=0.00095, compliance_sd=1.066), '37.5': Sieve(d_wire_min=0.0038, d_wire=0.0045, old_designation='1 1/2 in.', opening=0.0375, compliance_samples=20.0, opening_inch=0.0015, designation='37.5', d_wire_max=0.0052, max_opening=39.35, X_variation_max=0.00185, Y_variation_avg=0.00113, compliance_sd=1.374), '4': Sieve(calibration_samples=30.0, d_wire_min=0.0012, d_wire=0.0014, inspection_sd=0.108, calibration_sd=0.115, old_designation='No. 5', opening=0.004, compliance_samples=150.0, opening_inch=0.000157, inspection_samples=15.0, designation='4', d_wire_max=0.0017, max_opening=4.37, X_variation_max=0.00037, Y_variation_avg=0.000127, compliance_sd=0.161), '4.75': Sieve(calibration_samples=30.0, d_wire_min=0.0013, d_wire=0.0016, inspection_sd=0.123, calibration_sd=0.131, old_designation='No. 4', opening=0.00475, compliance_samples=150.0, opening_inch=0.000187, inspection_samples=15.0, designation='4.75', d_wire_max=0.0019, max_opening=5.16, X_variation_max=0.00041, Y_variation_avg=0.00015, compliance_sd=0.182), '45': Sieve(d_wire_min=0.0038, d_wire=0.0045, old_designation='1 3/4 in.', opening=0.045, compliance_samples=20.0, opening_inch=0.00175, designation='45', d_wire_max=0.0052, max_opening=47.12, X_variation_max=0.00212, Y_variation_avg=0.00135), '5.6': Sieve(calibration_samples=30.0, d_wire_min=0.0013, d_wire=0.0016, inspection_sd=0.142, calibration_sd=0.151, old_designation='No. 3 1/2', opening=0.0056, compliance_samples=150.0, opening_inch=0.000223, inspection_samples=15.0, designation='5.6', d_wire_max=0.0019, max_opening=6.07, X_variation_max=0.00047, Y_variation_avg=0.000176, compliance_sd=0.211), '50': Sieve(d_wire_min=0.0043, d_wire=0.005, old_designation='2 in.', opening=0.05, compliance_samples=20.0, opening_inch=0.002, designation='50', d_wire_max=0.0058, max_opening=52.29, X_variation_max=0.00229, Y_variation_avg=0.00149), '53': Sieve(d_wire_min=0.0043, d_wire=0.005, old_designation='2.12 in.', opening=0.053, compliance_samples=20.0, opening_inch=0.00212, designation='53', d_wire_max=0.0058, max_opening=55.39, X_variation_max=0.00239, Y_variation_avg=0.00158), '6.3': Sieve(calibration_samples=30.0, d_wire_min=0.0015, d_wire=0.0018, inspection_sd=0.157, calibration_sd=0.167, old_designation='1/4 in.', opening=0.0063, compliance_samples=150.0, opening_inch=0.00025, inspection_samples=15.0, designation='6.3', d_wire_max=0.0021, max_opening=6.81, X_variation_max=0.00051, Y_variation_avg=0.000197, compliance_sd=0.233), '6.7': Sieve(calibration_samples=30.0, d_wire_min=0.0015, d_wire=0.0018, inspection_sd=0.164, calibration_sd=0.175, old_designation='0.265 in.', opening=0.0067, compliance_samples=150.0, opening_inch=0.000265, inspection_samples=15.0, designation='6.7', d_wire_max=0.0021, max_opening=7.23, X_variation_max=0.00053, Y_variation_avg=0.00021, compliance_sd=0.245), '63': Sieve(d_wire_min=0.0048, d_wire=0.0056, old_designation='2 1/2 in.', opening=0.063, compliance_samples=20.0, opening_inch=0.0025, designation='63', d_wire_max=0.0064, max_opening=65.71, X_variation_max=0.00271, Y_variation_avg=0.00187), '75': Sieve(d_wire_min=0.0054, d_wire=0.0063, old_designation='3 in.', opening=0.075, compliance_samples=20.0, opening_inch=0.003, designation='75', d_wire_max=0.0072, max_opening=78.09, X_variation_max=0.00309, Y_variation_avg=0.00222), '8': Sieve(calibration_samples=30.0, d_wire_min=0.0017, d_wire=0.002, inspection_sd=0.191, calibration_sd=0.204, old_designation='5/16 in.', opening=0.008, compliance_samples=150.0, opening_inch=0.000312, inspection_samples=15.0, designation='8', d_wire_max=0.0023, max_opening=8.6, X_variation_max=0.0006, Y_variation_avg=0.000249, compliance_sd=0.284), '9.5': Sieve(calibration_samples=30.0, d_wire_min=0.0019, d_wire=0.00224, inspection_sd=0.222, calibration_sd=0.237, old_designation='3/8 in.', opening=0.0095, compliance_samples=150.0, opening_inch=0.000375, inspection_samples=15.0, designation='9.5', d_wire_max=0.0026, max_opening=10.18, X_variation_max=0.00068, Y_variation_avg=0.000295, compliance_sd=0.33), '90': Sieve(d_wire_min=0.0054, d_wire=0.0063, old_designation='3 1/2 in.', opening=0.09, compliance_samples=20.0, opening_inch=0.0035, designation='90', d_wire_max=0.0072, max_opening=93.53, X_variation_max=0.00353, Y_variation_avg=0.00265) } '''Dictionary containing ASTM E-11 sieve series :py:func:`Sieve` objects, indexed by their size in mm as a string. References ---------- .. [1] ASTM E11 - 17 - Standard Specification for Woven Wire Test Sieve Cloth and Test Sieves. ''' ASTM_E11_sieve_designations = ['125', '106', '100', '90', '75', '63', '53', '50', '45', '37.5', '31.5', '26.5', '25', '22.4', '19', '16', '13.2', '12.5', '11.2', '9.5', '8', '6.7', '6.3', '5.6', '4.75', '4', '3.35', '2.8', '2.36', '2', '1.7', '1.4', '1.18', '1', '0.85', '0.71', '0.6', '0.5', '0.425', '0.355', '0.3', '0.25', '0.212', '0.18', '0.15', '0.125', '0.106', '0.09', '0.075', '0.063', '0.053', '0.045', '0.038', '0.032', '0.025', '0.02'] ASTM_E11_sieve_list = [ASTM_E11_sieves[i] for i in ASTM_E11_sieve_designations] ISO_3310_1_sieves = { '0.02': Sieve(designation='0.02', d_wire_max=2.3e-05, compliance_sd=4.7e-06, X_variation_max=1.3e-05, d_wire=2e-05, Y_variation_avg=2.1e-06, d_wire_min=2.3e-05, opening=2e-05), '0.025': Sieve(designation='0.025', d_wire_max=2.9e-05, compliance_sd=5.2e-06, X_variation_max=1.5e-05, d_wire=2.5e-05, Y_variation_avg=2.2e-06, d_wire_min=2.9e-05, opening=2.5e-05), '0.032': Sieve(designation='0.032', d_wire_max=3.3e-05, compliance_sd=5.9e-06, X_variation_max=1.7e-05, d_wire=2.8e-05, Y_variation_avg=2.4e-06, d_wire_min=3.3e-05, opening=3.2e-05), '0.036': Sieve(designation='0.036', d_wire_max=3.5e-05, compliance_sd=6.3e-06, X_variation_max=1.8e-05, d_wire=3e-05, Y_variation_avg=2.6e-06, d_wire_min=3.5e-05, opening=3.6e-05), '0.038': Sieve(designation='0.038', d_wire_max=3.5e-05, compliance_sd=6.4e-06, X_variation_max=1.8e-05, d_wire=3e-05, Y_variation_avg=2.6e-06, d_wire_min=3.5e-05, opening=3.8e-05), '0.04': Sieve(designation='0.04', d_wire_max=3.7e-05, compliance_sd=6.5e-06, X_variation_max=1.9e-05, d_wire=3.2e-05, Y_variation_avg=2.7e-06, d_wire_min=3.7e-05, opening=4e-05), '0.045': Sieve(designation='0.045', d_wire_max=3.7e-05, compliance_sd=6.9e-06, X_variation_max=2e-05, d_wire=3.2e-05, Y_variation_avg=2.8e-06, d_wire_min=3.7e-05, opening=4.5e-05), '0.05': Sieve(designation='0.05', d_wire_max=4.1e-05, compliance_sd=7.3e-06, X_variation_max=2.1e-05, d_wire=3.6e-05, Y_variation_avg=3e-06, d_wire_min=4.1e-05, opening=5e-05), '0.053': Sieve(designation='0.053', d_wire_max=4.1e-05, compliance_sd=7.6e-06, X_variation_max=2.1e-05, d_wire=3.6e-05, Y_variation_avg=3.1e-06, d_wire_min=4.1e-05, opening=5.3e-05), '0.056': Sieve(designation='0.056', d_wire_max=4.6e-05, compliance_sd=7.8e-06, X_variation_max=2.2e-05, d_wire=4e-05, Y_variation_avg=3.2e-06, d_wire_min=4.6e-05, opening=5.6e-05), '0.063': Sieve(designation='0.063', d_wire_max=5.2e-05, compliance_sd=8.3e-06, X_variation_max=2.4e-05, d_wire=4.5e-05, Y_variation_avg=3.4e-06, d_wire_min=5.2e-05, opening=6.3e-05), '0.071': Sieve(designation='0.071', d_wire_max=5.8e-05, compliance_sd=8.9e-06, X_variation_max=2.5e-05, d_wire=5e-05, Y_variation_avg=3.6e-06, d_wire_min=4.3e-05, opening=7.1e-05), '0.075': Sieve(designation='0.075', d_wire_max=5.8e-05, compliance_sd=9.1e-06, X_variation_max=2.6e-05, d_wire=5e-05, Y_variation_avg=3.7e-06, d_wire_min=4.3e-05, opening=7.5e-05), '0.08': Sieve(designation='0.08', d_wire_max=6.4e-05, compliance_sd=9.4e-06, X_variation_max=2.7e-05, d_wire=5.6e-05, Y_variation_avg=3.9e-06, d_wire_min=4.8e-05, opening=8e-05), '0.09': Sieve(designation='0.09', d_wire_max=7.2e-05, compliance_sd=1.01e-05, X_variation_max=2.9e-05, d_wire=6.3e-05, Y_variation_avg=4.2e-06, d_wire_min=5.4e-05, opening=9e-05), '0.1': Sieve(designation='0.1', d_wire_max=8.2e-05, compliance_sd=1.08e-05, X_variation_max=3e-05, d_wire=7.1e-05, Y_variation_avg=4.5e-06, d_wire_min=6e-05, opening=0.0001), '0.106': Sieve(designation='0.106', d_wire_max=8.2e-05, compliance_sd=1.11e-05, X_variation_max=3.1e-05, d_wire=7.1e-05, Y_variation_avg=4.7e-06, d_wire_min=6e-05, opening=0.000106), '0.112': Sieve(designation='0.112', d_wire_max=9.2e-05, compliance_sd=1.15e-05, X_variation_max=3.2e-05, d_wire=8e-05, Y_variation_avg=4.8e-06, d_wire_min=6.8e-05, opening=0.000112), '0.125': Sieve(designation='0.125', d_wire_max=0.000104, compliance_sd=1.22e-05, X_variation_max=3.4e-05, d_wire=9e-05, Y_variation_avg=5.2e-06, d_wire_min=7.7e-05, opening=0.000125), '0.14': Sieve(designation='0.14', d_wire_max=0.000115, compliance_sd=1.31e-05, X_variation_max=3.7e-05, d_wire=0.0001, Y_variation_avg=5.7e-06, d_wire_min=8.5e-05, opening=0.00014), '0.15': Sieve(designation='0.15', d_wire_max=0.000115, compliance_sd=1.37e-05, X_variation_max=3.8e-05, d_wire=0.0001, Y_variation_avg=6e-06, d_wire_min=8.5e-05, opening=0.00015), '0.16': Sieve(designation='0.16', d_wire_max=0.00013, compliance_sd=1.42e-05, X_variation_max=4e-05, d_wire=0.000112, Y_variation_avg=6.3e-06, d_wire_min=9.5e-05, opening=0.00016), '0.18': Sieve(designation='0.18', d_wire_max=0.00015, compliance_sd=1.53e-05, X_variation_max=4.3e-05, d_wire=0.000125, Y_variation_avg=6.8e-06, d_wire_min=0.000106, opening=0.00018), '0.2': Sieve(designation='0.2', d_wire_max=0.00017, compliance_sd=1.63e-05, X_variation_max=4.5e-05, d_wire=0.00014, Y_variation_avg=7.4e-06, d_wire_min=0.00012, opening=0.0002), '0.212': Sieve(designation='0.212', d_wire_max=0.00017, compliance_sd=1.69e-05, X_variation_max=4.7e-05, d_wire=0.00014, Y_variation_avg=7.8e-06, d_wire_min=0.00012, opening=0.000212), '0.224': Sieve(designation='0.224', d_wire_max=0.00019, compliance_sd=1.75e-05, X_variation_max=4.9e-05, d_wire=0.00016, Y_variation_avg=8.1e-06, d_wire_min=0.00013, opening=0.000224), '0.25': Sieve(designation='0.25', d_wire_max=0.00019, compliance_sd=1.88e-05, X_variation_max=5.2e-05, d_wire=0.00016, Y_variation_avg=8.9e-06, d_wire_min=0.00013, opening=0.00025), '0.28': Sieve(designation='0.28', d_wire_max=0.00021, compliance_sd=2.03e-05, X_variation_max=5.6e-05, d_wire=0.00018, Y_variation_avg=1e-05, d_wire_min=0.00015, opening=0.00028), '0.3': Sieve(designation='0.3', d_wire_max=0.00023, compliance_sd=2.12e-05, X_variation_max=5.8e-05, d_wire=0.0002, Y_variation_avg=1e-05, d_wire_min=0.00017, opening=0.0003), '0.315': Sieve(designation='0.315', d_wire_max=0.00023, compliance_sd=2.19e-05, X_variation_max=6e-05, d_wire=0.0002, Y_variation_avg=1.1e-05, d_wire_min=0.00017, opening=0.000315), '0.355': Sieve(designation='0.355', d_wire_max=0.00026, compliance_sd=2.37e-05, X_variation_max=6.5e-05, d_wire=0.000224, Y_variation_avg=1.2e-05, d_wire_min=0.00019, opening=0.000355), '0.4': Sieve(designation='0.4', d_wire_max=0.00029, compliance_sd=2.57e-05, X_variation_max=7e-05, d_wire=0.00025, Y_variation_avg=1.3e-05, d_wire_min=0.00021, opening=0.0004), '0.425': Sieve(designation='0.425', d_wire_max=0.00032, compliance_sd=2.68e-05, X_variation_max=7.3e-05, d_wire=0.00028, Y_variation_avg=1.4e-05, d_wire_min=0.00024, opening=0.000425), '0.45': Sieve(designation='0.45', d_wire_max=0.00032, compliance_sd=2.79e-05, X_variation_max=7.5e-05, d_wire=0.00028, Y_variation_avg=1.5e-05, d_wire_min=0.00024, opening=0.00045), '0.5': Sieve(designation='0.5', d_wire_max=0.00036, compliance_sd=3e-05, X_variation_max=8e-05, d_wire=0.000315, Y_variation_avg=1.6e-05, d_wire_min=0.00027, opening=0.0005), '0.56': Sieve(designation='0.56', d_wire_max=0.00041, compliance_sd=3.24e-05, X_variation_max=8.7e-05, d_wire=0.000355, Y_variation_avg=1.8e-05, d_wire_min=0.0003, opening=0.00056), '0.6': Sieve(designation='0.6', d_wire_max=0.00046, compliance_sd=3.4e-05, X_variation_max=9.1e-05, d_wire=0.0004, Y_variation_avg=1.9e-05, d_wire_min=0.00034, opening=0.0006), '0.63': Sieve(designation='0.63', d_wire_max=0.00046, compliance_sd=3.52e-05, X_variation_max=9.3e-05, d_wire=0.0004, Y_variation_avg=2e-05, d_wire_min=0.00034, opening=0.00063), '0.71': Sieve(designation='0.71', d_wire_max=0.00052, compliance_sd=3.84e-05, X_variation_max=0.000101, d_wire=0.00045, Y_variation_avg=2.2e-05, d_wire_min=0.00038, opening=0.00071), '0.8': Sieve(designation='0.8', d_wire_max=0.00052, compliance_sd=4.18e-05, X_variation_max=0.000109, d_wire=0.00045, Y_variation_avg=2.5e-05, d_wire_min=0.00038, opening=0.0008), '0.85': Sieve(designation='0.85', d_wire_max=0.00058, compliance_sd=4.36e-05, X_variation_max=0.000114, d_wire=0.0005, Y_variation_avg=2.6e-05, d_wire_min=0.00043, opening=0.00085), '0.9': Sieve(designation='0.9', d_wire_max=0.00058, compliance_sd=4.55e-05, X_variation_max=0.000118, d_wire=0.0005, Y_variation_avg=2.8e-05, d_wire_min=0.00043, opening=0.0009), '1': Sieve(designation='1', d_wire_max=0.00064, compliance_sd=4.9e-05, X_variation_max=0.00013, d_wire=0.00056, Y_variation_avg=3e-05, d_wire_min=0.00048, opening=0.001), '1.12': Sieve(designation='1.12', d_wire_max=0.00064, compliance_sd=5.3e-05, X_variation_max=0.00014, d_wire=0.00056, Y_variation_avg=3e-05, d_wire_min=0.00048, opening=0.00112), '1.18': Sieve(designation='1.18', d_wire_max=0.00072, compliance_sd=5.6e-05, X_variation_max=0.00014, d_wire=0.00063, Y_variation_avg=4e-05, d_wire_min=0.00054, opening=0.00118), '1.25': Sieve(designation='1.25', d_wire_max=0.00072, compliance_sd=5.8e-05, X_variation_max=0.00015, d_wire=0.00063, Y_variation_avg=4e-05, d_wire_min=0.00054, opening=0.00125), '1.4': Sieve(designation='1.4', d_wire_max=0.00082, compliance_sd=6.3e-05, X_variation_max=0.00016, d_wire=0.00071, Y_variation_avg=4e-05, d_wire_min=0.0006, opening=0.0014), '1.6': Sieve(designation='1.6', d_wire_max=0.00092, compliance_sd=7e-05, X_variation_max=0.00017, d_wire=0.0008, Y_variation_avg=5e-05, d_wire_min=0.00068, opening=0.0016), '1.7': Sieve(designation='1.7', d_wire_max=0.00092, compliance_sd=7.3e-05, X_variation_max=0.00018, d_wire=0.0008, Y_variation_avg=5e-05, d_wire_min=0.00068, opening=0.0017), '1.8': Sieve(designation='1.8', d_wire_max=0.00092, compliance_sd=7.6e-05, X_variation_max=0.00019, d_wire=0.0008, Y_variation_avg=5e-05, d_wire_min=0.00068, opening=0.0018), '10': Sieve(designation='10', d_wire_max=0.0029, compliance_sd=0.000307, X_variation_max=0.00064, d_wire=0.0025, Y_variation_avg=0.00028, d_wire_min=0.0021, opening=0.01), '100': Sieve(designation='100', d_wire_max=0.0072, X_variation_max=0.00344, d_wire=0.0063, Y_variation_avg=0.00265, d_wire_min=0.0054, opening=0.1), '106': Sieve(designation='106', d_wire_max=0.0072, X_variation_max=0.00359, d_wire=0.0063, Y_variation_avg=0.0028, d_wire_min=0.0054, opening=0.106), '11.2': Sieve(designation='11.2', d_wire_max=0.0029, compliance_sd=0.000339, X_variation_max=0.00069, d_wire=0.0025, Y_variation_avg=0.00031, d_wire_min=0.0021, opening=0.0112), '112': Sieve(designation='112', d_wire_max=0.0092, X_variation_max=0.00374, d_wire=0.008, Y_variation_avg=0.00296, d_wire_min=0.0068, opening=0.112), '12.5': Sieve(designation='12.5', d_wire_max=0.0029, compliance_sd=0.000374, X_variation_max=0.00075, d_wire=0.0025, Y_variation_avg=0.00035, d_wire_min=0.0021, opening=0.0125), '125': Sieve(designation='125', d_wire_max=0.0092, X_variation_max=0.00406, d_wire=0.008, Y_variation_avg=0.0033, d_wire_min=0.0068, opening=0.125), '13.2': Sieve(designation='13.2', d_wire_max=0.0032, compliance_sd=0.000392, X_variation_max=0.00078, d_wire=0.0028, Y_variation_avg=0.00037, d_wire_min=0.0024, opening=0.0132), '14': Sieve(designation='14', d_wire_max=0.0032, compliance_sd=0.000413, X_variation_max=0.00081, d_wire=0.0028, Y_variation_avg=0.00039, d_wire_min=0.0024, opening=0.014), '16': Sieve(designation='16', d_wire_max=0.0036, compliance_sd=0.000467, X_variation_max=0.00089, d_wire=0.00315, Y_variation_avg=0.00044, d_wire_min=0.0027, opening=0.016), '18': Sieve(designation='18', d_wire_max=0.0036, compliance_sd=0.00052, X_variation_max=0.00097, d_wire=0.00315, Y_variation_avg=0.00049, d_wire_min=0.0027, opening=0.018), '19': Sieve(designation='19', d_wire_max=0.0036, compliance_sd=0.000548, X_variation_max=0.00101, d_wire=0.00315, Y_variation_avg=0.00052, d_wire_min=0.0027, opening=0.019), '2': Sieve(designation='2', d_wire_max=0.00104, compliance_sd=8.3e-05, X_variation_max=0.0002, d_wire=0.0009, Y_variation_avg=6e-05, d_wire_min=0.00077, opening=0.002), '2.24': Sieve(designation='2.24', d_wire_max=0.00104, compliance_sd=9e-05, X_variation_max=0.00022, d_wire=0.0009, Y_variation_avg=7e-05, d_wire_min=0.00077, opening=0.00224), '2.36': Sieve(designation='2.36', d_wire_max=0.00115, compliance_sd=9.4e-05, X_variation_max=0.00023, d_wire=0.001, Y_variation_avg=7e-05, d_wire_min=0.00085, opening=0.00236), '2.5': Sieve(designation='2.5', d_wire_max=0.00115, compliance_sd=9.8e-05, X_variation_max=0.00024, d_wire=0.001, Y_variation_avg=7e-05, d_wire_min=0.00085, opening=0.0025), '2.8': Sieve(designation='2.8', d_wire_max=0.0013, compliance_sd=0.000108, X_variation_max=0.00026, d_wire=0.00112, Y_variation_avg=8e-05, d_wire_min=0.00095, opening=0.0028), '20': Sieve(designation='20', d_wire_max=0.0036, compliance_sd=0.000575, X_variation_max=0.00105, d_wire=0.00315, Y_variation_avg=0.00055, d_wire_min=0.0027, opening=0.02), '22.4': Sieve(designation='22.4', d_wire_max=0.0041, compliance_sd=0.000641, X_variation_max=0.00114, d_wire=0.00355, Y_variation_avg=0.00061, d_wire_min=0.003, opening=0.0224), '25': Sieve(designation='25', d_wire_max=0.0041, compliance_sd=0.000713, X_variation_max=0.00124, d_wire=0.00355, Y_variation_avg=0.00068, d_wire_min=0.003, opening=0.025), '26.5': Sieve(designation='26.5', d_wire_max=0.0041, compliance_sd=0.000757, X_variation_max=0.00129, d_wire=0.00355, Y_variation_avg=0.00072, d_wire_min=0.003, opening=0.0265), '28': Sieve(designation='28', d_wire_max=0.0041, compliance_sd=0.000801, X_variation_max=0.00135, d_wire=0.00355, Y_variation_avg=0.00076, d_wire_min=0.003, opening=0.028), '3.15': Sieve(designation='3.15', d_wire_max=0.0015, compliance_sd=0.000118, X_variation_max=0.00028, d_wire=0.00125, Y_variation_avg=9e-05, d_wire_min=0.00106, opening=0.00315), '3.35': Sieve(designation='3.35', d_wire_max=0.0015, compliance_sd=0.000124, X_variation_max=0.00029, d_wire=0.00125, Y_variation_avg=0.0001, d_wire_min=0.00106, opening=0.00335), '3.55': Sieve(designation='3.55', d_wire_max=0.0015, compliance_sd=0.00013, X_variation_max=0.0003, d_wire=0.00125, Y_variation_avg=0.0001, d_wire_min=0.00106, opening=0.00355), '31.5': Sieve(designation='31.5', d_wire_max=0.0046, compliance_sd=0.000905, X_variation_max=0.00147, d_wire=0.004, Y_variation_avg=0.00085, d_wire_min=0.0034, opening=0.0315), '35.5': Sieve(designation='35.5', d_wire_max=0.0046, compliance_sd=0.001, X_variation_max=0.0016, d_wire=0.004, Y_variation_avg=0.00096, d_wire_min=0.0034, opening=0.0355), '37.5': Sieve(designation='37.5', d_wire_max=0.0052, compliance_sd=0.001, X_variation_max=0.00167, d_wire=0.0045, Y_variation_avg=0.00101, d_wire_min=0.0038, opening=0.0375), '4': Sieve(designation='4', d_wire_max=0.0017, compliance_sd=0.000143, X_variation_max=0.00033, d_wire=0.0014, Y_variation_avg=0.00011, d_wire_min=0.0012, opening=0.004), '4.5': Sieve(designation='4.5', d_wire_max=0.0017, compliance_sd=0.000157, X_variation_max=0.00036, d_wire=0.0014, Y_variation_avg=0.00013, d_wire_min=0.0012, opening=0.0045), '4.75': Sieve(designation='4.75', d_wire_max=0.0019, compliance_sd=0.000164, X_variation_max=0.00037, d_wire=0.0016, Y_variation_avg=0.00014, d_wire_min=0.0013, opening=0.00475), '40': Sieve(designation='40', d_wire_max=0.0052, compliance_sd=0.001, X_variation_max=0.00175, d_wire=0.0045, Y_variation_avg=0.00108, d_wire_min=0.0038, opening=0.04), '45': Sieve(designation='45', d_wire_max=0.0052, compliance_sd=0.001, X_variation_max=0.00191, d_wire=0.0045, Y_variation_avg=0.00121, d_wire_min=0.0038, opening=0.045), '5': Sieve(designation='5', d_wire_max=0.0019, compliance_sd=0.000171, X_variation_max=0.00039, d_wire=0.0016, Y_variation_avg=0.00014, d_wire_min=0.0013, opening=0.005), '5.6': Sieve(designation='5.6', d_wire_max=0.0019, compliance_sd=0.000188, X_variation_max=0.00042, d_wire=0.0016, Y_variation_avg=0.00016, d_wire_min=0.0013, opening=0.0056), '50': Sieve(designation='50', d_wire_max=0.0058, X_variation_max=0.00206, d_wire=0.005, Y_variation_avg=0.00134, d_wire_min=0.0043, opening=0.05), '53': Sieve(designation='53', d_wire_max=0.0058, X_variation_max=0.00215, d_wire=0.005, Y_variation_avg=0.00142, d_wire_min=0.0043, opening=0.053), '56': Sieve(designation='56', d_wire_max=0.0058, X_variation_max=0.00224, d_wire=0.005, Y_variation_avg=0.0015, d_wire_min=0.0043, opening=0.056), '6.3': Sieve(designation='6.3', d_wire_max=0.0021, compliance_sd=0.000207, X_variation_max=0.00046, d_wire=0.0018, Y_variation_avg=0.00018, d_wire_min=0.0015, opening=0.0063), '6.7': Sieve(designation='6.7', d_wire_max=0.0021, compliance_sd=0.000218, X_variation_max=0.00048, d_wire=0.0018, Y_variation_avg=0.00019, d_wire_min=0.0015, opening=0.0067), '63': Sieve(designation='63', d_wire_max=0.0064, X_variation_max=0.00244, d_wire=0.0056, Y_variation_avg=0.00169, d_wire_min=0.0048, opening=0.063), '7.1': Sieve(designation='7.1', d_wire_max=0.0021, compliance_sd=0.000229, X_variation_max=0.0005, d_wire=0.0018, Y_variation_avg=0.0002, d_wire_min=0.0015, opening=0.0071), '71': Sieve(designation='71', d_wire_max=0.0064, X_variation_max=0.00267, d_wire=0.0056, Y_variation_avg=0.00189, d_wire_min=0.0048, opening=0.071), '75': Sieve(designation='75', d_wire_max=0.0072, X_variation_max=0.00278, d_wire=0.0063, Y_variation_avg=0.002, d_wire_min=0.0054, opening=0.075), '8': Sieve(designation='8', d_wire_max=0.0023, compliance_sd=0.000254, X_variation_max=0.00054, d_wire=0.002, Y_variation_avg=0.00022, d_wire_min=0.0017, opening=0.008), '80': Sieve(designation='80', d_wire_max=0.0072, X_variation_max=0.00291, d_wire=0.0063, Y_variation_avg=0.00213, d_wire_min=0.0054, opening=0.08), '9': Sieve(designation='9', d_wire_max=0.0026, compliance_sd=0.000281, X_variation_max=0.00059, d_wire=0.00224, Y_variation_avg=0.00025, d_wire_min=0.0019, opening=0.009), '9.5': Sieve(designation='9.5', d_wire_max=0.0026, compliance_sd=0.000294, X_variation_max=0.00061, d_wire=0.00224, Y_variation_avg=0.00027, d_wire_min=0.0019, opening=0.0095), '90': Sieve(designation='90', d_wire_max=0.0072, X_variation_max=0.00318, d_wire=0.0063, Y_variation_avg=0.00239, d_wire_min=0.0054, opening=0.09) } '''Dictionary containing all of the individual :py:func:`Sieve` objects, on the ISO 3310-1:2016 series, indexed by their size in mm as a string. References ---------- .. [1] ISO 3310-1:2016 - Test Sieves -- Technical Requirements and Testing -- Part 1: Test Sieves of Metal Wire Cloth. ''' ISO_3310_1_sieve_designations = ['125', '112', '106', '100', '90', '80', '75', '71', '63', '56', '53', '50', '45', '40', '37.5', '35.5', '31.5', '28', '26.5', '25', '22.4', '20', '19', '18', '16', '14', '13.2', '12.5', '11.2', '10', '9.5', '9', '8', '7.1', '6.7', '6.3', '5.6', '5', '4.75', '4.5', '4', '3.55', '3.35', '3.15', '2.8', '2.5', '2.36', '2.24', '2', '1.8', '1.7', '1.6', '1.4', '1.25', '1.18', '1.12', '1', '0.9', '0.85', '0.8', '0.71', '0.63', '0.6', '0.56', '0.5', '0.45', '0.425', '0.4', '0.355', '0.315', '0.3', '0.28', '0.25', '0.224', '0.212', '0.2', '0.18', '0.16', '0.15', '0.14', '0.125', '0.112', '0.106', '0.1', '0.09', '0.08', '0.075', '0.071', '0.063', '0.056', '0.053', '0.05', '0.045', '0.04', '0.038', '0.036', '0.032', '0.025', '0.02'] ISO_3310_1_sieve_list = [ISO_3310_1_sieves[i] for i in ISO_3310_1_sieve_designations] ISO_3310_1_R20_3 = [ISO_3310_1_sieves[i] for i in ('125', '90', '63', '45', '31.5', '22.4', '16', '11.2', '8', '5.6', '4', '2.8', '2', '1.4', '1', '0.71', '0.5', '0.355', '0.25', '0.18', '0.125', '0.09', '0.063', '0.045')] '''List containing all of the individual :py:func:`Sieve` objects, on the ISO 3310-1:2016 R20/3 series only, ordered from largest openings to smallest. References ---------- .. [1] ISO 3310-1:2016 - Test Sieves -- Technical Requirements and Testing -- Part 1: Test Sieves of Metal Wire Cloth. ''' ISO_3310_1_R20 = ['125', '112', '100', '90', '80', '71', '63', '56', '50', '45', '40', '35.5', '31.5', '28', '25', '22.4', '20', '18', '16', '14', '12.5', '11.2', '10', '9', '8', '7.1', '6.3', '5.6', '5', '4.5', '4', '3.55', '3.15', '2.8', '2.5', '2.24', '2', '1.8', '1.6', '1.4', '1.25', '1.12', '1', '0.9', '0.8', '0.71', '0.63', '0.56', '0.5', '0.45', '0.4', '0.355', '0.315', '0.28', '0.25', '0.224', '0.2', '0.18', '0.16', '0.14', '0.125', '0.112', '0.1', '0.09', '0.08', '0.071', '0.063', '0.056', '0.05', '0.045', '0.04', '0.036'] ISO_3310_1_R20 = [ISO_3310_1_sieves[i] for i in ISO_3310_1_R20] '''List containing all of the individual :py:func:`Sieve` objects, on the ISO 3310-1:2016 R20 series only, ordered from largest openings to smallest. References ---------- .. [1] ISO 3310-1:2016 - Test Sieves -- Technical Requirements and Testing -- Part 1: Test Sieves of Metal Wire Cloth. ''' ISO_3310_1_R40_3 = ['125', '106', '90', '75', '63', '53', '45', '37.5', '31.5', '26.5', '22.4', '19', '16', '13.2', '11.2', '9.5', '8', '6.7', '5.6', '4.75', '4', '3.35', '2.8', '2.36', '2', '1.7', '1.4', '1.18', '1', '0.85', '0.71', '0.6', '0.5', '0.425', '0.355', '0.3', '0.25', '0.212', '0.18', '0.15', '0.125', '0.106', '0.09', '0.075', '0.063', '0.053', '0.045', '0.038'] ISO_3310_1_R40_3 = [ISO_3310_1_sieves[i] for i in ISO_3310_1_R40_3] '''List containing all of the individual :py:func:`Sieve` objects, on the ISO 3310-1:2016 R40/3 series only, ordered from largest openings to smallest. References ---------- .. [1] ISO 3310-1:2016 - Test Sieves -- Technical Requirements and Testing -- Part 1: Test Sieves of Metal Wire Cloth. ''' ISO_3310_1_R10 = ['0.036', '0.032', '0.025', '0.02'] ISO_3310_1_R10 = [ISO_3310_1_sieves[i] for i in ISO_3310_1_R10] '''List containing all of the individual :py:func:`Sieve` objects, on the ISO 3310-1:2016 R10 series only, ordered from largest openings to smallest. References ---------- .. [1] ISO 3310-1:2016 - Test Sieves -- Technical Requirements and Testing -- Part 1: Test Sieves of Metal Wire Cloth. ''' sieve_spacing_options = {'ISO 3310-1': ISO_3310_1_sieve_list, 'ISO 3310-1 R20': ISO_3310_1_R20, 'ISO 3310-1 R20/3': ISO_3310_1_R20_3, 'ISO 3310-1 R40/3': ISO_3310_1_R40_3, 'ISO 3310-1 R10': ISO_3310_1_R10, 'ASTM E11': ASTM_E11_sieve_list,} def psd_spacing(d_min=None, d_max=None, pts=20, method='logarithmic'): r'''Create a particle spacing mesh in one of several ways for use in modeling discrete particle size distributions. The allowable meshes are 'linear', 'logarithmic', a geometric series specified by a Renard number such as 'R10', or the meshes available in one of several sieve standards. Parameters ---------- d_min : float, optional The minimum diameter at which the mesh starts, [m] d_max : float, optional The maximum diameter at which the mesh ends, [m] pts : int, optional The number of points to return for the mesh (note this is not respected by sieve meshes), [-] method : str, optional Either 'linear', 'logarithmic', a Renard number like 'R10' or 'R5' or 'R2.5', or one of the sieve standards 'ISO 3310-1 R40/3', 'ISO 3310-1 R20', 'ISO 3310-1 R20/3', 'ISO 3310-1', 'ISO 3310-1 R10', 'ASTM E11', [-] Returns ------- ds : list[float] The generated mesh diameters, [m] Notes ----- Note that when specifying a Renard series, only one of `d_min` or `d_max` can be respected! Provide only one of those numbers. Note that when specifying a sieve standard the number of points is not respected! Examples -------- >>> psd_spacing(d_min=5e-5, d_max=5e-4, method='ISO 3310-1 R20/3') [6.3e-05, 9e-05, 0.000125, 0.00018, 0.00025, 0.000355, 0.0005] References ---------- .. [1] ASTM E11 - 17 - Standard Specification for Woven Wire Test Sieve Cloth and Test Sieves. .. [2] ISO 3310-1:2016 - Test Sieves -- Technical Requirements and Testing -- Part 1: Test Sieves of Metal Wire Cloth. ''' if d_min is not None: d_min = float(d_min) if d_max is not None: d_max = float(d_max) if method == 'logarithmic': return logspace(log10(d_min), log10(d_max), pts) elif method == 'linear': return linspace(d_min, d_max, pts) elif method[0] in ('R', 'r'): ratio = 10**(1.0/float(method[1:])) if d_min is not None and d_max is not None: raise ValueError('For geometric (Renard) series, only ' 'one of `d_min` and `d_max` should be provided') if d_min is not None: ds = [d_min] for i in range(pts-1): ds.append(ds[-1]*ratio) return ds elif d_max is not None: ds = [d_max] for i in range(pts-1): ds.append(ds[-1]/ratio) return list(reversed(ds)) elif method in sieve_spacing_options: l = sieve_spacing_options[method] ds = [] for sieve in l: if d_min <= sieve.opening <= d_max: ds.append(sieve.opening) return list(reversed(ds)) else: raise ValueError('Method not recognized') def pdf_lognormal(d, d_characteristic, s): r'''Calculates the probability density function of a lognormal particle distribution given a particle diameter `d`, characteristic particle diameter `d_characteristic`, and distribution standard deviation `s`. .. math:: q(d) = \frac{1}{ds\sqrt{2\pi}} \exp\left[-0.5\left(\frac{ \ln(d/d_{characteristic})}{s}\right)^2\right] Parameters ---------- d : float Specified particle diameter, [m] d_characteristic : float Characteristic particle diameter; often D[3, 3] is used for this purpose but not always, [m] s : float Distribution standard deviation, [-] Returns ------- pdf : float Lognormal probability density function, [-] Notes ----- The characteristic diameter can be in terns of number density (denoted :math:`q_0(d)`), length density (:math:`q_1(d)`), surface area density (:math:`q_2(d)`), or volume density (:math:`q_3(d)`). Volume density is most often used. Interconversions among the distributions is possible but tricky. The standard distribution (i.e. the one used in Scipy) can perform the same computation with `d_characteristic` as the value of `scale`. >>> import scipy.stats >>> scipy.stats.lognorm.pdf(x=1E-4, s=1.1, scale=1E-5) 405.5420921156425 Scipy's calculation is over 300 times slower however, and this expression is numerically integrated so speed is required. Examples -------- >>> pdf_lognormal(d=1E-4, d_characteristic=1E-5, s=1.1) 405.5420921156425 References ---------- .. [1] ISO 9276-2:2014 - Representation of Results of Particle Size Analysis - Part 2: Calculation of Average Particle Sizes/Diameters and Moments from Particle Size Distributions. ''' try: log_term = log(d/d_characteristic)/s except ValueError: return 0.0 return 1./(d*s*ROOT_TWO_PI)*exp(-0.5*log_term*log_term) def cdf_lognormal(d, d_characteristic, s): r'''Calculates the cumulative distribution function of a lognormal particle distribution given a particle diameter `d`, characteristic particle diameter `d_characteristic`, and distribution standard deviation `s`. .. math:: Q(d) = 0.5\left(1 + \text{err}\left[\left(\frac{\ln(d/d_c)}{s\sqrt{2}} \right)\right]\right) Parameters ---------- d : float Specified particle diameter, [m] d_characteristic : float Characteristic particle diameter; often D[3, 3] is used for this purpose but not always, [m] s : float Distribution standard deviation, [-] Returns ------- cdf : float Lognormal cumulative density function, [-] Notes ----- The characteristic diameter can be in terns of number density (denoted :math:`q_0(d)`), length density (:math:`q_1(d)`), surface area density (:math:`q_2(d)`), or volume density (:math:`q_3(d)`). Volume density is most often used. Interconversions among the distributions is possible but tricky. The standard distribution (i.e. the one used in Scipy) can perform the same computation with `d_characteristic` as the value of `scale`. >>> import scipy.stats >>> scipy.stats.lognorm.cdf(x=1E-4, s=1.1, scale=1E-5) 0.9818369875798177 Scipy's calculation is over 100 times slower however. Examples -------- >>> cdf_lognormal(d=1E-4, d_characteristic=1E-5, s=1.1) 0.9818369875798 References ---------- .. [1] ISO 9276-2:2014 - Representation of Results of Particle Size Analysis - Part 2: Calculation of Average Particle Sizes/Diameters and Moments from Particle Size Distributions. ''' try: return 0.5*(1.0 + erf((log(d/d_characteristic))/(s*sqrt(2.0)))) except: # math error at cdf = 0 (x going as low as possible) return 0.0 def pdf_lognormal_basis_integral(d, d_characteristic, s, n): r'''Calculates the integral of the multiplication of d^n by the lognormal pdf, given a particle diameter `d`, characteristic particle diameter `d_characteristic`, distribution standard deviation `s`, and exponent `n`. .. math:: \int d^n\cdot q(d)\; dd = -\frac{1}{2} \exp\left(\frac{s^2 n^2}{2} \right)d^n \left(\frac{d}{d_{characteristic}}\right)^{-n} \text{erf}\left[\frac{s^2 n - \ln(d/d_{characteristic})} {\sqrt{2} s} \right] This is the crucial integral required for interconversion between different bases such as number density (denoted :math:`q_0(d)`), length density (:math:`q_1(d)`), surface area density (:math:`q_2(d)`), or volume density (:math:`q_3(d)`). Parameters ---------- d : float Specified particle diameter, [m] d_characteristic : float Characteristic particle diameter; often D[3, 3] is used for this purpose but not always, [m] s : float Distribution standard deviation, [-] n : int Exponent of the multiplied n Returns ------- pdf_basis_integral : float Integral of lognormal pdf multiplied by d^n, [-] Notes ----- This integral has been verified numerically. This integral is itself integrated, so it is crucial to obtain an analytical form for at least this integral. Note overflow or zero division issues may occur for very large values of `s`, larger than 10. No mathematical limit was able to be obtained with a CAS. Examples -------- >>> pdf_lognormal_basis_integral(d=1E-4, d_characteristic=1E-5, s=1.1, n=-2) 56228306549.26362 ''' try: s2 = s*s t0 = exp(s2*n*n*0.5) d_ratio = d/d_characteristic t1 = (d/(d_ratio))**n t2 = erf((s2*n - log(d_ratio))/(sqrt(2.)*s)) return -0.5*t0*t1*t2 except (OverflowError, ZeroDivisionError, ValueError): return pdf_lognormal_basis_integral(d=1E-80, d_characteristic=d_characteristic, s=s, n=n) def pdf_Gates_Gaudin_Schuhman(d, d_characteristic, m): r'''Calculates the probability density of a particle distribution following the Gates, Gaudin and Schuhman (GGS) model given a particle diameter `d`, characteristic (maximum) particle diameter `d_characteristic`, and exponent `m`. .. math:: q(d) = \frac{n}{d}\left(\frac{d}{d_{characteristic}}\right)^m \text{ if } d < d_{characteristic} \text{ else } 0 Parameters ---------- d : float Specified particle diameter, [m] d_characteristic : float Characteristic particle diameter; in this model, it is the largest particle size diameter in the distribution, [m] m : float Particle size distribution exponent, [-] Returns ------- pdf : float GGS probability density function, [-] Notes ----- The characteristic diameter can be in terns of number density (denoted :math:`q_0(d)`), length density (:math:`q_1(d)`), surface area density (:math:`q_2(d)`), or volume density (:math:`q_3(d)`). Volume density is most often used. Interconversions among the distributions is possible but tricky. Examples -------- >>> pdf_Gates_Gaudin_Schuhman(d=2E-4, d_characteristic=1E-3, m=2.3) 283.8355768512045 References ---------- .. [1] Schuhmann, R., 1940. Principles of Comminution, I-Size Distribution and Surface Calculations. American Institute of Mining, Metallurgical and Petroleum Engineers Technical Publication 1189. Mining Technology, volume 4, p. 1-11. .. [2] Bayat, Hossein, Mostafa Rastgo, Moharram Mansouri Zadeh, and Harry Vereecken. "Particle Size Distribution Models, Their Characteristics and Fitting Capability." Journal of Hydrology 529 (October 1, 2015): 872-89. ''' if d <= d_characteristic: return m/d*(d/d_characteristic)**m else: return 0.0 def cdf_Gates_Gaudin_Schuhman(d, d_characteristic, m): r'''Calculates the cumulative distribution function of a particle distribution following the Gates, Gaudin and Schuhman (GGS) model given a particle diameter `d`, characteristic (maximum) particle diameter `d_characteristic`, and exponent `m`. .. math:: Q(d) = \left(\frac{d}{d_{characteristic}}\right)^m \text{ if } d < d_{characteristic} \text{ else } 1 Parameters ---------- d : float Specified particle diameter, [m] d_characteristic : float Characteristic particle diameter; in this model, it is the largest particle size diameter in the distribution, [m] m : float Particle size distribution exponent, [-] Returns ------- cdf : float GGS cumulative density function, [-] Notes ----- The characteristic diameter can be in terns of number density (denoted :math:`q_0(d)`), length density (:math:`q_1(d)`), surface area density (:math:`q_2(d)`), or volume density (:math:`q_3(d)`). Volume density is most often used. Interconversions among the distributions is possible but tricky. Examples -------- >>> cdf_Gates_Gaudin_Schuhman(d=2E-4, d_characteristic=1E-3, m=2.3) 0.024681354508800397 References ---------- .. [1] Schuhmann, R., 1940. Principles of Comminution, I-Size Distribution and Surface Calculations. American Institute of Mining, Metallurgical and Petroleum Engineers Technical Publication 1189. Mining Technology, volume 4, p. 1-11. .. [2] Bayat, Hossein, Mostafa Rastgo, Moharram Mansouri Zadeh, and Harry Vereecken. "Particle Size Distribution Models, Their Characteristics and Fitting Capability." Journal of Hydrology 529 (October 1, 2015): 872-89. ''' if d <= d_characteristic: return (d/d_characteristic)**m else: return 1.0 def pdf_Gates_Gaudin_Schuhman_basis_integral(d, d_characteristic, m, n): r'''Calculates the integral of the multiplication of d^n by the Gates, Gaudin and Schuhman (GGS) model given a particle diameter `d`, characteristic (maximum) particle diameter `d_characteristic`, and exponent `m`. .. math:: \int d^n\cdot q(d)\; dd =\frac{m}{m+n} d^n \left(\frac{d} {d_{characteristic}}\right)^m Parameters ---------- d : float Specified particle diameter, [m] d_characteristic : float Characteristic particle diameter; in this model, it is the largest particle size diameter in the distribution, [m] m : float Particle size distribution exponent, [-] n : int Exponent of the multiplied n, [-] Returns ------- pdf_basis_integral : float Integral of Rosin Rammler pdf multiplied by d^n, [-] Notes ----- This integral does not have any numerical issues as `d` approaches 0. Examples -------- >>> pdf_Gates_Gaudin_Schuhman_basis_integral(d=2E-4, d_characteristic=1E-3, m=2.3, n=-3) -10136984887.543015 ''' return m/(m+n)*d**n*(d/d_characteristic)**m def pdf_Rosin_Rammler(d, k, m): r'''Calculates the probability density of a particle distribution following the Rosin-Rammler (RR) model given a particle diameter `d`, and the two parameters `k` and `m`. .. math:: q(d) = k m d^{(m-1)} \exp(- k d^{m}) Parameters ---------- d : float Specified particle diameter, [m] k : float Parameter in the model, [(1/m)^m] m : float Parameter in the model, [-] Returns ------- pdf : float RR probability density function, [-] Notes ----- Examples -------- >>> pdf_Rosin_Rammler(1E-3, 200, 2) 0.3999200079994667 References ---------- .. [1] Rosin, P. "The Laws Governing the Fineness of Powdered Coal." J. Inst. Fuel. 7 (1933): 29-36. .. [2] Bayat, Hossein, Mostafa Rastgo, Moharram Mansouri Zadeh, and Harry Vereecken. "Particle Size Distribution Models, Their Characteristics and Fitting Capability." Journal of Hydrology 529 (October 1, 2015): 872-89. ''' return d**(m - 1.0)*k*m*exp(-d**m*k) def cdf_Rosin_Rammler(d, k, m): r'''Calculates the cumulative distribution function of a particle distribution following the Rosin-Rammler (RR) model given a particle diameter `d`, and the two parameters `k` and `m`. .. math:: Q(d) = 1 - \exp\left(-k d^m\right) Parameters ---------- d : float Specified particle diameter, [m] k : float Parameter in the model, [(1/m)^m] m : float Parameter in the model, [-] Returns ------- cdf : float RR cumulative density function, [-] Notes ----- The characteristic diameter can be in terns of number density (denoted :math:`q_0(d)`), length density (:math:`q_1(d)`), surface area density (:math:`q_2(d)`), or volume density (:math:`q_3(d)`). Volume density is most often used. Interconversions among the distributions is possible but tricky. Examples -------- >>> cdf_Rosin_Rammler(5E-2, 200, 2) 0.3934693402873667 References ---------- .. [1] Rosin, P. "The Laws Governing the Fineness of Powdered Coal." J. Inst. Fuel. 7 (1933): 29-36. .. [2] Bayat, Hossein, Mostafa Rastgo, Moharram Mansouri Zadeh, and Harry Vereecken. "Particle Size Distribution Models, Their Characteristics and Fitting Capability." Journal of Hydrology 529 (October 1, 2015): 872-89. ''' return 1.0 - exp(-k*d**m) def pdf_Rosin_Rammler_basis_integral(d, k, m, n): r'''Calculates the integral of the multiplication of d^n by the Rosin Rammler (RR) pdf, given a particle diameter `d`, and the two parameters `k` and `m`. .. math:: \int d^n\cdot q(d)\; dd =-d^{m+n} k(d^mk)^{-\frac{m+n}{m}}\Gamma \left(\frac{m+n}{m}\right)\text{gammaincc}\left[\left(\frac{m+n}{m} \right), kd^m\right] Parameters ---------- d : float Specified particle diameter, [m] k : float Parameter in the model, [(1/m)^m] m : float Parameter in the model, [-] n : int Exponent of the multiplied n, [-] Returns ------- pdf_basis_integral : float Integral of Rosin Rammler pdf multiplied by d^n, [-] Notes ----- This integral was derived using a CAS, and verified numerically. The `gammaincc` function is that from scipy.special, and `gamma` from the same. For very high powers of `n` or `m` when the diameter is very low, exceptions may occur. Examples -------- >>> "{:g}".format(pdf_Rosin_Rammler_basis_integral(5E-2, 200, 2, 3)) '-0.000452399' ''' # Also not able to compute the limit for d approaching 0. try: a = (m + n)/m x = d**m*k t1 = float(gamma(a))*float(gammaincc(a, x)) return (-d**(m+n)*k*(d**m*k)**(-a))*t1 except (OverflowError, ZeroDivisionError) as e: if d == 1E-40: raise e return pdf_Rosin_Rammler_basis_integral(1E-40, k, m, n) names = {0: 'Number distribution', 1: 'Length distribution', 2: 'Area distribution', 3: 'Volume/Mass distribution'} def _label_distribution_n(n): # pragma: no cover if n in names: return names[n] else: return 'Order %s distribution' %str(n) _mean_size_docstring = r'''Calculates the mean particle size according to moment-ratio notation. This is the more common and often convenient definition. .. math:: \left[\bar D_{p,q} \right]^{(p-q)} = \frac{\sum_i n_i D_i^p } {\sum_i n_i D_i^q} \left[\bar D_{p,p} \right] = \exp\left[\frac{\sum_i n_i D_i^p\ln D_i }{\sum_i n_i D_i^p}\right] \text{, if p = q} Note that :math:`n_i` in the above equation is replaceable with the fraction of particles in that bin. Parameters ---------- p : int Power and/or subscript of D moment in the above equations, [-] q : int Power and/or subscript of D moment in the above equations, [-] Returns ------- d_pq : float Mean particle size according to the specified p and q, [m] Notes ----- The following is a list of common names for specific mean diameters. * **D[-3, 0]**: arithmetic harmonic mean volume diameter * **D[-2, 1]**: size-weighted harmonic mean volume diameter * **D[-1, 2]**: area-weighted harmonic mean volume diameter * **D[-2, 0]**: arithmetic harmonic mean area diameter * **D[-1, 1]**: size-weighted harmonic mean area diameter * **D[-1, 0]**: arithmetic harmonic mean diameter * **D[0, 0]**: arithmetic geometric mean diameter * **D[1, 1]**: size-weighted geometric mean diameter * **D[2, 2]**: area-weighted geometric mean diameter * **D[3, 3]**: volume-weighted geometric mean diameter * **D[1, 0]**: arithmetic mean diameter * **D[2, 1]**: size-weighted mean diameter * **D[3, 2]**: area-weighted mean diameter, **Sauter mean diameter** * **D[4, 3]**: volume-weighted mean diameter, **De Brouckere diameter** * **D[2, 0]**: arithmetic mean area diameter * **D[3, 1]**: size-weighted mean area diameter * **D[4, 2]**: area-weighted mean area diameter * **D[5, 3]**: volume-weighted mean area diameter * **D[3, 0]**: arithmetic mean volume diameter * **D[4, 1]**: size-weighted mean volume diameter * **D[5, 2]**: area-weighted mean volume diameter * **D[6, 3]**: volume-weighted mean volume diameter This notation was first introduced in [1]_. The sum of p and q is called the order of the mean size [3]_. .. math:: \bar D_{p,q} \equiv \bar D_{q, p} Examples -------- %s References ---------- .. [1] Mugele, R. A., and H. D. Evans. "Droplet Size Distribution in Sprays." Industrial & Engineering Chemistry 43, no. 6 (June 1951): 1317-24. https://doi.org/10.1021/ie50498a023. .. [2] ASTM E799 - 03(2015) - Standard Practice for Determining Data Criteria and Processing for Liquid Drop Size Analysis. .. [3] ISO 9276-2:2014 - Representation of Results of Particle Size Analysis - Part 2: Calculation of Average Particle Sizes/Diameters and Moments from Particle Size Distributions. ''' _mean_size_iso_docstring = r'''Calculates the mean particle size according to moment notation (ISO). This system is related to the moment-ratio notation as follows; see the `mean_size` method for the full formulas. .. math:: \bar x_{p-q, q} \equiv \bar x_{k+r, r} \equiv \bar D_{p,q} Parameters ---------- k : int Power and/or subscript of D moment in the above equations, [-] r : int Power and/or subscript of D moment in the above equations, [-] Returns ------- x_kr : float Mean particle size according to the specified k and r in the ISO series, [m] Notes ----- The following is a list of common names for specific mean diameters in the ISO naming convention. * **x[-3, 0]**: arithmetic harmonic mean volume diameter * **x[-3, 1]**: size-weighted harmonic mean volume diameter * **x[-3, 2]**: area-weighted harmonic mean volume diameter * **x[-2, 0]**: arithmetic harmonic mean area diameter * **x[-2, 1]**: size-weighted harmonic mean area diameter * **x[-1, 0]**: arithmetic harmonic mean diameter * **x[0, 0]**: arithmetic geometric mean diameter * **x[0, 1]**: size-weighted geometric mean diameter * **x[0, 2]**: area-weighted geometric mean diameter * **x[0, 3]**: volume-weighted geometric mean diameter * **x[1, 0]**: arithmetic mean diameter * **x[1, 1]**: size-weighted mean diameter * **x[1, 2]**: area-weighted mean diameter, **Sauter mean diameter** * **x[1, 3]**: volume-weighted mean diameter, **De Brouckere diameter** * **x[2, 0]**: arithmetic mean area diameter * **x[1, 1]**: size-weighted mean area diameter * **x[2, 2]**: area-weighted mean area diameter * **x[2, 3]**: volume-weighted mean area diameter * **x[3, 0]**: arithmetic mean volume diameter * **x[3, 1]**: size-weighted mean volume diameter * **x[3, 2]**: area-weighted mean volume diameter * **x[3, 3]**: volume-weighted mean volume diameter When working with continuous distributions, the ISO series must be used to perform the actual calculations. Examples -------- %s References ---------- .. [1] ISO 9276-2:2014 - Representation of Results of Particle Size Analysis - Part 2: Calculation of Average Particle Sizes/Diameters and Moments from Particle Size Distributions. ''' class ParticleSizeDistributionContinuous(object): r'''Base class representing a continuous particle size distribution specified by a mathematical/statistical function. This class holds the common methods only. Notes ----- Although the stated units of input are in meters, this class is actually independent of the units provided; all results will be consistent with the provided unit. Examples -------- Example problem from [1]_. >>> psd = PSDLognormal(s=0.5, d_characteristic=5E-6) References ---------- .. [1] ISO 9276-2:2014 - Representation of Results of Particle Size Analysis - Part 2: Calculation of Average Particle Sizes/Diameters and Moments from Particle Size Distributions. ''' def _pdf_basis_integral_definite(self, d_min, d_max, n): # Needed as an api for numerical integrals return (self._pdf_basis_integral(d=d_max, n=n) - self._pdf_basis_integral(d=d_min, n=n)) def pdf(self, d, n=None): r'''Computes the probability density function of a continuous particle size distribution at a specified particle diameter, an optionally in a specified basis. The evaluation function varies with the distribution chosen. The interconversion between distribution orders is performed using the following formula [1]_: .. math:: q_s(d) = \frac{x^{(s-r)} q_r(d) dd} { \int_0^\infty d^{(s-r)} q_r(d) dd} Parameters ---------- d : float Particle size diameter, [m] n : int, optional None (for the `order` specified when the distribution was created), 0 (number), 1 (length), 2 (area), 3 (volume/mass), or any integer, [-] Returns ------- pdf : float The probability density function at the specified diameter and order, [-] Notes ----- The pdf order conversions are typically available analytically after some work. They have been verified numerically. See the various functions with names ending with 'basis_integral' for the formulations. The distributions normally do not have analytical limits for diameters of 0 or infinity, but large values suffice to capture the area of the integral. Examples -------- >>> psd = PSDLognormal(s=0.5, d_characteristic=5E-6, order=3) >>> psd.pdf(1e-5) 30522.765209509154 >>> psd.pdf(1e-5, n=3) 30522.765209509154 >>> psd.pdf(1e-5, n=0) 1238.661379483343 References ---------- .. [1] Masuda, Hiroaki, Ko Higashitani, and Hideto Yoshida. Powder Technology: Fundamentals of Particles, Powder Beds, and Particle Generation. CRC Press, 2006. ''' ans = self._pdf(d=d) if n is not None and n != self.order: power = n - self.order numerator = d**power*ans denominator = self._pdf_basis_integral_definite(d_min=0.0, d_max=self.d_excessive, n=power) ans = numerator/denominator # Handle splines which might go below zero ans = max(ans, 0.0) if self.truncated: if d < self.d_min or d > self.d_max: return 0.0 ans = (ans)/(self._cdf_d_max - self._cdf_d_min) return ans def cdf(self, d, n=None): r'''Computes the cumulative distribution density function of a continuous particle size distribution at a specified particle diameter, an optionally in a specified basis. The evaluation function varies with the distribution chosen. .. math:: Q_n(d) = \int_0^d q_n(d) Parameters ---------- d : float Particle size diameter, [m] n : int, optional None (for the `order` specified when the distribution was created), 0 (number), 1 (length), 2 (area), 3 (volume/mass), or any integer, [-] Returns ------- cdf : float The cumulative distribution function at the specified diameter and order, [-] Notes ----- Analytical integrals can be found for most distributions even when order conversions are necessary. Examples -------- >>> psd = PSDLognormal(s=0.5, d_characteristic=5E-6, order=3) >>> [psd.cdf(5e-6, n) for n in range(4)] [0.933192798731, 0.8413447460685, 0.6914624612740, 0.5] ''' if n is not None and n != self.order: power = n - self.order # One of the pdf_basis_integral calls could be saved except for # support for numerical integrals numerator = self._pdf_basis_integral_definite(d_min=0.0, d_max=d, n=power) denominator = self._pdf_basis_integral_definite(d_min=0.0, d_max=self.d_excessive, n=power) ans = max(numerator/denominator, 0.0) # Handle splines which might go below zero else: ans = max(self._cdf(d=d), 0.0) if self.truncated: if d <= self.d_min: return 0.0 elif d >= self.d_max: return 1.0 ans = (ans - self._cdf_d_min)/(self._cdf_d_max - self._cdf_d_min) return ans def delta_cdf(self, d_min, d_max, n=None): r'''Computes the difference in cumulative distribution function between two particle size diameters. .. math:: \Delta Q_n = Q_n(d_{max}) - Q_n(d_{min}) Parameters ---------- d_min : float Lower particle size diameter, [m] d_max : float Upper particle size diameter, [m] n : int, optional None (for the `order` specified when the distribution was created), 0 (number), 1 (length), 2 (area), 3 (volume/mass), or any integer, [-] Returns ------- delta_cdf : float The difference in the cumulative distribution function for the two diameters specified, [-] Examples -------- >>> psd = PSDLognormal(s=0.5, d_characteristic=5E-6, order=3) >>> psd.delta_cdf(1e-6, 1e-5) 0.9165280099853876 ''' return self.cdf(d_max, n=n) - self.cdf(d_min, n=n) def dn(self, fraction, n=None): r'''Computes the diameter at which a specified `fraction` of the distribution falls under. Utilizes a bounded solver to search for the desired diameter. Parameters ---------- fraction : float Fraction of the distribution which should be under the calculated diameter, [-] n : int, optional None (for the `order` specified when the distribution was created), 0 (number), 1 (length), 2 (area), 3 (volume/mass), or any integer, [-] Returns ------- d : float Particle size diameter, [m] Examples -------- >>> psd = PSDLognormal(s=0.5, d_characteristic=5E-6, order=3) >>> psd.dn(.5) 5e-06 >>> psd.dn(1) 0.0002947436533523378 >>> psd.dn(0) 0.0 ''' if fraction == 1.0: # Avoid returning the maximum value of the search interval fraction = 1.0 - epsilon if fraction < 0: raise ValueError('Fraction must be more than 0') elif fraction == 0: # pragma: no cover if self.truncated: return self.d_min return 0.0 # Solve to float prevision limit - works well, but is there a real # point when with mpmath it would never happen? # dist.cdf(dist.dn(0)-1e-35) == 0 # dist.cdf(dist.dn(0)-1e-36) == input # dn(0) == 1.9663615597466143e-20 # def err(d): # cdf = self.cdf(d, n=n) # if cdf == 0: # cdf = -1 # return cdf # return brenth(err, self.d_minimum, self.d_excessive, maxiter=1000, xtol=1E-200) elif fraction > 1: raise ValueError('Fraction less than 1') # As the dn may be incredibly small, it is required for the absolute # tolerance to not be happy - it needs to continue iterating as long # as necessary to pin down the answer return brenth(lambda d:self.cdf(d, n=n) -fraction, self.d_minimum, self.d_excessive, maxiter=1000, xtol=1E-200) def ds_discrete(self, d_min=None, d_max=None, pts=20, limit=1e-9, method='logarithmic'): r'''Create a particle spacing mesh to perform calculations with, according to one of several ways. The allowable meshes are 'linear', 'logarithmic', a geometric series specified by a Renard number such as 'R10', or the meshes available in one of several sieve standards. Parameters ---------- d_min : float, optional The minimum diameter at which the mesh starts, [m] d_max : float, optional The maximum diameter at which the mesh ends, [m] pts : int, optional The number of points to return for the mesh (note this is not respected by sieve meshes), [-] limit : float If `d_min` or `d_max` is not specified, it will be calculated as the `dn` at which this limit or 1-limit exists (this is ignored for Renard numbers), [-] method : str, optional Either 'linear', 'logarithmic', a Renard number like 'R10' or 'R5' or'R2.5', or one of the sieve standards 'ISO 3310-1 R40/3', 'ISO 3310-1 R20', 'ISO 3310-1 R20/3', 'ISO 3310-1', 'ISO 3310-1 R10', 'ASTM E11', [-] Returns ------- ds : list[float] The generated mesh diameters, [m] Notes ----- Note that when specifying a Renard series, only one of `d_min` or `d_max` can be respected! Provide only one of those numbers. Note that when specifying a sieve standard the number of points is not respected! References ---------- .. [1] ASTM E11 - 17 - Standard Specification for Woven Wire Test Sieve Cloth and Test Sieves. .. [2] ISO 3310-1:2016 - Test Sieves -- Technical Requirements and Testing -- Part 1: Test Sieves of Metal Wire Cloth. ''' if method[0] not in ('R', 'r'): if d_min is None: d_min = self.dn(limit) if d_max is None: d_max = self.dn(1.0 - limit) return psd_spacing(d_min=d_min, d_max=d_max, pts=pts, method=method) def fractions_discrete(self, ds, n=None): r'''Computes the fractions of the cumulative distribution functions which lie between the specified specified particle diameters. The first diameter contains the cdf from 0 to it. Parameters ---------- ds : list[float] Particle size diameters, [m] n : int, optional None (for the `order` specified when the distribution was created), 0 (number), 1 (length), 2 (area), 3 (volume/mass), or any integer, [-] Returns ------- fractions : float The differences in the cumulative distribution functions at the specified diameters and order, [-] Examples -------- >>> psd = PSDLognormal(s=0.5, d_characteristic=5E-6, order=3) >>> psd.fractions_discrete([1e-6, 1e-5, 1e-4, 1e-3]) [0.00064347101291, 0.916528009985, 0.0828285179619, 1.039798e-09] ''' cdfs = [self.cdf(d, n=n) for d in ds] return [cdfs[0]] + diff(cdfs) def cdf_discrete(self, ds, n=None): r'''Computes the cumulative distribution functions for a list of specified particle diameters. Parameters ---------- ds : list[float] Particle size diameters, [m] n : int, optional None (for the `order` specified when the distribution was created), 0 (number), 1 (length), 2 (area), 3 (volume/mass), or any integer, [-] Returns ------- cdfs : float The cumulative distribution functions at the specified diameters and order, [-] Examples -------- >>> psd = PSDLognormal(s=0.5, d_characteristic=5E-6, order=3) >>> psd.cdf_discrete([1e-6, 1e-5, 1e-4, 1e-3]) [0.000643471012913, 0.917171480998, 0.999999998960, 1.0] ''' return [self.cdf(d, n=n) for d in ds] def mean_size(self, p, q): ''' >>> psd = PSDLognormal(s=0.5, d_characteristic=5E-6) >>> psd.mean_size(3, 2) 4.412484512922977e-06 Note that for the case where p == q, a different set of formulas are required - which do not have analytical results for many distributions. Therefore, a close numerical approximation is used instead, to perturb the values of p and q so they are 1E-9 away from each other. This leads only to slight errors, as in the example below where the correct answer is 5E-6. >>> psd.mean_size(3, 3) 4.9999999304923345e-06 ''' if p == q: p -= 1e-9 q += 1e-9 pow1 = q - self.order denominator = self._pdf_basis_integral_definite(d_min=self.d_minimum, d_max=self.d_excessive, n=pow1) root_power = p - q pow3 = p - self.order numerator = self._pdf_basis_integral_definite(d_min=self.d_minimum, d_max=self.d_excessive, n=pow3) return (numerator/denominator)**(1.0/(root_power)) def mean_size_ISO(self, k, r): ''' >>> psd = PSDLognormal(s=0.5, d_characteristic=5E-6) >>> psd.mean_size_ISO(1, 2) 4.412484512922977e-06 ''' p = k + r q = r return self.mean_size(p=p, q=q) @property def vssa(self): r'''The volume-specific surface area of a particle size distribution. .. math:: \text{VSSA} = \frac{6}{\bar x_{1,2}} Returns ------- VSSA : float The volume-specific surface area of the distribution, [m^2/m^3] Examples -------- >>> PSDLognormal(s=0.5, d_characteristic=5E-6).vssa 1359778.1436801916 References ---------- .. [1] ISO 9276-2:2014 - Representation of Results of Particle Size Analysis - Part 2: Calculation of Average Particle Sizes/Diameters and Moments from Particle Size Distributions. ''' return 6/self.mean_size(3, 2) def plot_pdf(self, n=(0, 1, 2, 3), d_min=None, d_max=None, pts=500, normalized=False, method='linear'): # pragma: no cover r'''Plot the probability density function of the particle size distribution. The plotted range can be specified using `d_min` and `d_max`, or estimated automatically. One or more order can be plotted, by providing an iterable of ints as the value of `n` or just one int. Parameters ---------- n : tuple(int) or int, optional None (for the `order` specified when the distribution was created), 0 (number), 1 (length), 2 (area), 3 (volume/mass), or any integer; as many as desired may be specified, [-] d_min : float, optional Lower particle size diameter, [m] d_max : float, optional Upper particle size diameter, [m] pts : int, optional The number of points for values to be calculated, [-] normalized : bool, optional Whether to display the actual probability density function, which may have a huge magnitude - or to divide each point by the sum of all the points. Doing this is a common practice, but the values at each point are dependent on the number of points being plotted, and the distribution of the points; [-] method : str, optional Either 'linear', 'logarithmic', a Renard number like 'R10' or 'R5' or'R2.5', or one of the sieve standards 'ISO 3310-1 R40/3', 'ISO 3310-1 R20', 'ISO 3310-1 R20/3', 'ISO 3310-1', 'ISO 3310-1 R10', 'ASTM E11', [-] ''' try: import matplotlib.pyplot as plt except: # pragma: no cover raise ValueError(NO_MATPLOTLIB_MSG) ds = self.ds_discrete(d_min=d_min, d_max=d_max, pts=pts, method=method) try: for ni in n: fractions = [self.pdf(d, n=ni) for d in ds] if normalized: fractions = normalize(fractions) plt.semilogx(ds, fractions, label=_label_distribution_n(ni)) except Exception: fractions = [self.pdf(d, n=n) for d in ds] if normalized: fractions = normalize(fractions) plt.semilogx(ds, fractions, label=_label_distribution_n(n)) plt.ylabel('Probability density function, [-]') plt.xlabel('Particle diameter, [m]') plt.title('Probability density function of %s distribution with ' 'parameters %s' %(self.name, self.parameters)) plt.legend() plt.show() return fractions def plot_cdf(self, n=(0, 1, 2, 3), d_min=None, d_max=None, pts=500, method='logarithmic'): # pragma: no cover r'''Plot the cumulative distribution function of the particle size distribution. The plotted range can be specified using `d_min` and `d_max`, or estimated automatically. One or more order can be plotted, by providing an iterable of ints as the value of `n` or just one int. Parameters ---------- n : tuple(int) or int, optional None (for the `order` specified when the distribution was created), 0 (number), 1 (length), 2 (area), 3 (volume/mass), or any integer; as many as desired may be specified, [-] d_min : float, optional Lower particle size diameter, [m] d_max : float, optional Upper particle size diameter, [m] pts : int, optional The number of points for values to be calculated, [-] method : str, optional Either 'linear', 'logarithmic', a Renard number like 'R10' or 'R5' or'R2.5', or one of the sieve standards 'ISO 3310-1 R40/3', 'ISO 3310-1 R20', 'ISO 3310-1 R20/3', 'ISO 3310-1', 'ISO 3310-1 R10', 'ASTM E11', [-] ''' try: import matplotlib.pyplot as plt except: # pragma: no cover raise ValueError(NO_MATPLOTLIB_MSG) ds = self.ds_discrete(d_min=d_min, d_max=d_max, pts=pts, method=method) try: for ni in n: cdfs = self.cdf_discrete(ds=ds, n=ni) plt.semilogx(ds, cdfs, label=_label_distribution_n(ni)) except: cdfs = self.cdf_discrete(ds=ds, n=n) plt.semilogx(ds, cdfs, label=_label_distribution_n(n)) if self.points: plt.plot(self.ds, self.fraction_cdf, '+', label='Volume/Mass points') if hasattr(self, 'area_fractions'): plt.plot(self.ds, cumsum(self.area_fractions), '+', label='Area points') if hasattr(self, 'length_fractions'): plt.plot(self.ds, cumsum(self.length_fractions), '+', label='Length points') if hasattr(self, 'number_fractions'): plt.plot(self.ds, cumsum(self.number_fractions), '+', label='Number points') plt.ylabel('Cumulative density function, [-]') plt.xlabel('Particle diameter, [m]') plt.title('Cumulative density function of %s distribution with ' 'parameters %s' %(self.name, self.parameters)) plt.legend() plt.show() class ParticleSizeDistribution(ParticleSizeDistributionContinuous): r'''Class representing a discrete particle size distribution specified by a series of diameter bins, and the quantity of particles in each bin. The quantities may be specified as either the fraction of particles in each bin, or as cumulative distributions. The input fractions can be specified to be in a mass basis (`order=3`), number basis (`order=0`), or the orders in between for length basis or area basis. If the fractions do not sum to 1, and `cdf` is False, then the fractions are normalized. This allows flow rates or counts of size bins to be given as well. Parameters ---------- ds : list[float] Diameter bins; length of the specified quantities, optionally +1 that length to specify a cutoff diameter for the smallest diameter bin, [m] fractions : list[float], optional The mass/mole/volume/length/area/count fractions or cumulative distributions or counts of each particle size in each diameter bin (the type is specified by `order`), [-] order : int, optional 0 for a number distribution as input; 1 for length distribution; 2 for area distribution; 3 for mass, mole, or volume distribution, [-] cdf : bool, optional If the distribution is given as increasing fractions with 1 as the last result, `cdf` must be set to True, [-] monotonic : bool, optional If True, for interpolated quanties, monotonic splines will be used instead of the standard splines, [-] Attributes ---------- fractions : list[float] The mass/mole/volume basis fractions of particles in each bin, [-] area_fractions : list[float] The area fractions of particles in each bin, [-] length_fractions : list[float] The length fractions of particles in each bin, [-] number_fractions : list[float] The number fractions of particles in each bin, [-] fraction_cdf : list[float] The cumulative mass/mole/volume basis fractions of particles in each bin, [-] area_cdf : list[float] The cumulative area fractions of particles in each bin, [-] length_cdf : list[float] The cumulative length fractions of particles in each bin, [-] number_cdf : list[float] The cumulative number fractions of particles in each bin, [-] size_classes : bool Whether or not the diameter bins were set as size classes (as length of fractions + 1), [-] N : int The number of provided points, [-] Notes ----- Although the stated units of input are in meters, this class is actually independent of the units provided; all results will be consistent with the provided unit. Examples -------- Example problem from [1]_, calculating several diameters and the cumulative distribution. >>> import numpy as np >>> ds = 1E-6*np.array([240, 360, 450, 562.5, 703, 878, 1097, 1371, 1713, 2141, 2676, 3345, 4181, 5226, 6532]) >>> numbers = [65, 119, 232, 410, 629, 849, 990, 981, 825, 579, 297, 111, 21, 1] >>> psd = ParticleSizeDistribution(ds=ds, fractions=numbers, order=0) >>> psd References ---------- .. [1] ASTM E799 - 03(2015) - Standard Practice for Determining Data Criteria and Processing for Liquid Drop Size Analysis. .. [2] ISO 9276-2:2014 - Representation of Results of Particle Size Analysis - Part 2: Calculation of Average Particle Sizes/Diameters and Moments from Particle Size Distributions. ''' def __repr__(self): txt = '' return txt %(self.N, self.mean_size(p=3, q=3)) size_classes = False _interpolated = None points = True truncated = False name = 'Discrete' def __init__(self, ds, fractions, cdf=False, order=3, monotonic=True): self.monotonic = monotonic self.ds = ds self.order = order if ds is not None and (len(ds) == len(fractions) + 1): self.size_classes = True else: self.size_classes = False if cdf: # Convert a cdf to fraction set if len(fractions)+1 == len(ds): fractions = [fractions[0]] + diff(fractions) else: fractions = diff(fractions) fractions.insert(0, 0.0) elif sum(fractions) != 1.0: # Normalize flow inputs tot_inv = 1.0/sum(fractions) fractions = [i*tot_inv if i != 0.0 else 0.0 for i in fractions] self.N = len(fractions) # This will always be in base-3 basis if self.order != 3: power = 3 - self.order d3s = [self.di_power(i, power=power)*fractions[i] for i in range(self.N)] tot_d3 = sum(d3s) self.fractions = [i/tot_d3 for i in d3s] else: self.fractions = fractions # Set the number fractions D3s = [self.di_power(i, power=3) for i in range(self.N)] numbers = [Vi/Vp for Vi, Vp in zip(self.fractions, D3s)] number_sum = sum(numbers) self.number_fractions = [i/number_sum for i in numbers] # Set the length fractions D3s = [self.di_power(i, power=2) for i in range(self.N)] numbers = [Vi/Vp for Vi, Vp in zip(self.fractions, D3s)] number_sum = sum(numbers) self.length_fractions = [i/number_sum for i in numbers] # Set the surface area fractions D3s = [self.di_power(i, power=1) for i in range(self.N)] numbers = [Vi/Vp for Vi, Vp in zip(self.fractions, D3s)] number_sum = sum(numbers) self.area_fractions = [i/number_sum for i in numbers] # Things for interoperability with the Continuous distribution self.d_excessive = self.ds[-1] self.d_minimum = 0.0 self.parameters = {} self.order = 3 self.fraction_cdf = self.volume_cdf = cumsum(self.fractions) self.area_cdf = cumsum(self.area_fractions) self.length_cdf = cumsum(self.length_fractions) self.number_cdf = cumsum(self.number_fractions) @property def interpolated(self): if not self._interpolated: self._interpolated = PSDInterpolated(ds=self.ds, fractions=self.fractions, order=3, monotonic=self.monotonic) return self._interpolated def _pdf(self, d): return self.interpolated._pdf(d) def _cdf(self, d): return self.interpolated._cdf(d) def _pdf_basis_integral(self, d, n): return self.interpolated._pdf_basis_integral(d, n) def _fit_obj_function(self, vals, distribution, n): err = 0.0 dist = distribution(*list(vals)) l = len(self.fractions) if self.size_classes else len(self.fractions) - 1 for i in range(l): delta_cdf = dist.delta_cdf(d_min=self.ds[i], d_max=self.ds[i+1]) err += abs(delta_cdf - self.fractions[i]) return err def fit(self, x0=None, distribution='lognormal', n=None, **kwargs): """Incomplete method to fit experimental values to a curve. It is very hard to get good initial guesses, which are really required for this. Differential evolution is promising. This API is likely to change in the future. """ dist = {'lognormal': PSDLognormal, 'GGS': PSDGatesGaudinSchuhman, 'RR': PSDRosinRammler}[distribution] if distribution == 'lognormal': if x0 is None: d_characteristic = sum([fi*di for fi, di in zip(self.fractions, self.Dis)]) s = 0.4 x0 = [d_characteristic, s] elif distribution == 'GGS': if x0 is None: d_characteristic = sum([fi*di for fi, di in zip(self.fractions, self.Dis)]) m = 1.5 x0 = [d_characteristic, m] elif distribution == 'RR': if x0 is None: x0 = [5E-6, 1e-2] from scipy.optimize import minimize return minimize(self._fit_obj_function, x0, args=(dist, n), **kwargs) @property def Dis(self): """Representative diameters of each bin.""" return [self.di_power(i, power=1) for i in range(self.N)] def di_power(self, i, power=1): r'''Method to calculate a power of a particle class/bin in a generic way so as to support when there are as many `ds` as `fractions`, or one more diameter spec than `fractions`. When each bin has a lower and upper bound, the formula is as follows [1]_. .. math:: D_i^r = \frac{D_{i, ub}^{(r+1)} - D_{i, lb}^{(r+1)}} {(D_{i, ub} - D_{i, lb})(r+1)} Where `ub` represents the upper bound, and `lb` represents the lower bound. Otherwise, the standard definition is used: .. math:: D_i^r = D_i^r Parameters ---------- i : int The index of the diameter for the calculation, [-] power : int The exponent, [-] Returns ------- di_power : float The representative bin diameter raised to `power`, [m^power] References ---------- .. [1] ASTM E799 - 03(2015) - Standard Practice for Determining Data Criteria and Processing for Liquid Drop Size Analysis. ''' if self.size_classes: rt = power + 1 return ((self.ds[i+1]**rt - self.ds[i]**rt)/((self.ds[i+1] - self.ds[i])*rt)) else: return self.ds[i]**power def mean_size(self, p, q): ''' >>> import numpy as np >>> ds = 1E-6*np.array([240, 360, 450, 562.5, 703, 878, 1097, 1371, 1713, 2141, 2676, 3345, 4181, 5226, 6532]) >>> numbers = [65, 119, 232, 410, 629, 849, 990, 981, 825, 579, 297, 111, 21, 1] >>> psd = ParticleSizeDistribution(ds=ds, fractions=numbers, order=0) >>> psd.mean_size(3, 2) 0.002269321031745045 ''' if p != q: # Note: D(p, q) = D(q, p); in ISO and proven experimentally numerator = sum(self.di_power(i=i, power=p)*self.number_fractions[i] for i in range(self.N)) denominator = sum(self.di_power(i=i, power=q)*self.number_fractions[i] for i in range(self.N)) return (numerator/denominator)**(1.0/(p-q)) else: numerator = sum(log(self.di_power(i=i, power=1))*self.di_power(i=i, power=p)*self.number_fractions[i] for i in range(self.N)) denominator = sum(self.di_power(i=i, power=q)*self.number_fractions[i] for i in range(self.N)) return exp(numerator/denominator) def mean_size_ISO(self, k, r): r''' >>> import numpy as np >>> ds = 1E-6*np.array([240, 360, 450, 562.5, 703, 878, 1097, 1371, 1713, 2141, 2676, 3345, 4181, 5226, 6532]) >>> numbers = [65, 119, 232, 410, 629, 849, 990, 981, 825, 579, 297, 111, 21, 1] >>> psd = ParticleSizeDistribution(ds=ds, fractions=numbers, order=0) >>> psd.mean_size_ISO(1, 2) 0.002269321031745045 ''' p = k + r q = r return self.mean_size(p=p, q=q) @property def vssa(self): r'''The volume-specific surface area of a particle size distribution. Note this uses the diameters provided by the method `Dis`. .. math:: \text{VSSA} = \sum_i \text{fraction}_i \frac{SA_i}{V_i} Returns ------- VSSA : float The volume-specific surface area of the distribution, [m^2/m^3] References ---------- .. [1] ISO 9276-2:2014 - Representation of Results of Particle Size Analysis - Part 2: Calculation of Average Particle Sizes/Diameters and Moments from Particle Size Distributions. ''' ds = self.Dis Vs = [pi/6*di**3 for di in ds] SAs = [pi*di**2 for di in ds] SASs = [SA/V for SA, V in zip(SAs, Vs)] VSSA = sum([fi*SASi for fi, SASi in zip(self.fractions, SASs)]) return VSSA try: # pragma: no cover # Python 2 ParticleSizeDistributionContinuous.mean_size.__func__.__doc__ = _mean_size_docstring %(ParticleSizeDistributionContinuous.mean_size.__func__.__doc__) ParticleSizeDistributionContinuous.mean_size_ISO.__func__.__doc__ = _mean_size_iso_docstring %(ParticleSizeDistributionContinuous.mean_size_ISO.__func__.__doc__) ParticleSizeDistribution.mean_size.__func__.__doc__ = _mean_size_docstring %(ParticleSizeDistribution.mean_size.__func__.__doc__) ParticleSizeDistribution.mean_size_ISO.__func__.__doc__ = _mean_size_iso_docstring %(ParticleSizeDistribution.mean_size_ISO.__func__.__doc__) except AttributeError: # pragma: no cover try: # Python 3 ParticleSizeDistributionContinuous.mean_size.__doc__ = _mean_size_docstring %(ParticleSizeDistributionContinuous.mean_size.__doc__) ParticleSizeDistributionContinuous.mean_size_ISO.__doc__ = _mean_size_iso_docstring %(ParticleSizeDistributionContinuous.mean_size_ISO.__doc__) ParticleSizeDistribution.mean_size.__doc__ = _mean_size_docstring %(ParticleSizeDistribution.mean_size.__doc__) ParticleSizeDistribution.mean_size_ISO.__doc__ = _mean_size_iso_docstring %(ParticleSizeDistribution.mean_size_ISO.__doc__) except: pass # micropython del _mean_size_iso_docstring del _mean_size_docstring class PSDLognormal(ParticleSizeDistributionContinuous): name = 'Lognormal' points = False truncated = False def __init__(self, d_characteristic, s, order=3, d_min=None, d_max=None): self.s = s self.d_characteristic = d_characteristic self.order = order self.parameters = {'s': s, 'd_characteristic': d_characteristic, 'd_min': d_min, 'd_max': d_max} self.d_min = d_min self.d_max = d_max # Pick an upper bound for the search algorithm of 15 orders of magnitude larger than # the characteristic diameter; should never be a problem, as diameters can only range # so much, physically. if self.d_max is not None: self.d_excessive = self.d_max else: self.d_excessive = 1E15*self.d_characteristic if self.d_min is not None: self.d_minimum = self.d_min else: self.d_minimum = 0.0 if self.d_min is not None or self.d_max is not None: self.truncated = True if self.d_max is None: self.d_max = self.d_excessive if self.d_min is None: self.d_min = 0.0 self._cdf_d_max = self._cdf(self.d_max) self._cdf_d_min = self._cdf(self.d_min) def _pdf(self, d): return pdf_lognormal(d, d_characteristic=self.d_characteristic, s=self.s) def _cdf(self, d): return cdf_lognormal(d, d_characteristic=self.d_characteristic, s=self.s) def _pdf_basis_integral(self, d, n): return pdf_lognormal_basis_integral(d, d_characteristic=self.d_characteristic, s=self.s, n=n) class PSDGatesGaudinSchuhman(ParticleSizeDistributionContinuous): name = 'Gates Gaudin Schuhman' points = False truncated = False def __init__(self, d_characteristic, m, order=3, d_min=None, d_max=None): self.m = m self.d_characteristic = d_characteristic self.order = order self.parameters = {'m': m, 'd_characteristic': d_characteristic, 'd_min': d_min, 'd_max': d_max} if self.d_max is not None: # PDF above this is zero self.d_excessive = self.d_max else: self.d_excessive = self.d_characteristic if self.d_min is not None: self.d_minimum = self.d_min else: self.d_minimum = 0.0 if self.d_min is not None or self.d_max is not None: self.truncated = True if self.d_max is None: self.d_max = self.d_excessive if self.d_min is None: self.d_min = 0.0 self._cdf_d_max = self._cdf(self.d_max) self._cdf_d_min = self._cdf(self.d_min) def _pdf(self, d): return pdf_Gates_Gaudin_Schuhman(d, d_characteristic=self.d_characteristic, m=self.m) def _cdf(self, d): return cdf_Gates_Gaudin_Schuhman(d, d_characteristic=self.d_characteristic, m=self.m) def _pdf_basis_integral(self, d, n): return pdf_Gates_Gaudin_Schuhman_basis_integral(d, d_characteristic=self.d_characteristic, m=self.m, n=n) class PSDRosinRammler(ParticleSizeDistributionContinuous): name = 'Rosin Rammler' points = False truncated = False def __init__(self, k, m, order=3, d_min=None, d_max=None): self.m = m self.k = k self.order = order self.parameters = {'m': m, 'k': k, 'd_min': d_min, 'd_max': d_max} if self.d_max is not None: self.d_excessive = self.d_max else: self.d_excessive = 1e15 if self.d_min is not None: self.d_minimum = self.d_min else: self.d_minimum = 0.0 if self.d_min is not None or self.d_max is not None: self.truncated = True if self.d_max is None: self.d_max = self.d_excessive if self.d_min is None: self.d_min = 0.0 self._cdf_d_max = self._cdf(self.d_max) self._cdf_d_min = self._cdf(self.d_min) def _pdf(self, d): return pdf_Rosin_Rammler(d, k=self.k, m=self.m) def _cdf(self, d): return cdf_Rosin_Rammler(d, k=self.k, m=self.m) def _pdf_basis_integral(self, d, n): return pdf_Rosin_Rammler_basis_integral(d, k=self.k, m=self.m, n=n) '''# These are all brutally slow! from scipy.stats import * from fluids import * distribution = lognorm(s=0.5, scale=5E-6) psd = PSDCustom(distribution) # psd.dn(0.5, n=2.0) # Doesn't work at all, but the main things do including plots ''' class PSDCustom(ParticleSizeDistributionContinuous): name = '' points = False truncated = False def __init__(self, distribution, order=3.0, d_excessive=1.0, name=None, d_min=None, d_max=None): if name: self.name = name else: try: self.name = distribution.dist.__class__.__name__ except: pass try: self.parameters = dict(distribution.kwds) self.parameters.update({'d_min': d_min, 'd_max': d_max}) except: self.parameters = {'d_min': d_min, 'd_max': d_max} self.distribution = distribution self.order = order self.d_max = d_max self.d_min = d_min if self.d_max is not None: self.d_excessive = self.d_max else: self.d_excessive = d_excessive if self.d_min is not None: self.d_minimum = self.d_min else: self.d_minimum = 0.0 if self.d_min is not None or self.d_max is not None: self.truncated = True if self.d_max is None: self.d_max = self.d_excessive if self.d_min is None: self.d_min = 0.0 self._cdf_d_max = self._cdf(self.d_max) self._cdf_d_min = self._cdf(self.d_min) def _pdf(self, d): return self.distribution.pdf(d) def _cdf(self, d): return self.distribution.cdf(d) def _pdf_basis_integral_definite(self, d_min, d_max, n): # Needed as an api for numerical integrals n = float(n) if d_min == 0: d_min = d_max*1E-12 if n == 0: to_int = lambda d : self._pdf(d) elif n == 1: to_int = lambda d : d*self._pdf(d) elif n == 2: to_int = lambda d : d*d*self._pdf(d) elif n == 3: to_int = lambda d : d*d*d*self._pdf(d) else: to_int = lambda d : d**n*self._pdf(d) # points = logspace(log10(max(d_max*1e-3, d_min)), log10(d_max*.999), 40) points = [d_max*1e-3] # d_min*.999 d_min return float(quad(to_int, d_min, d_max, points=points)[0]) # class PSDInterpolated(ParticleSizeDistributionContinuous): name = 'Interpolated' points = True truncated = False def __init__(self, ds, fractions, order=3, monotonic=True): self.order = order self.monotonic = monotonic self.parameters = {} ds = list(ds) fractions = list(fractions) if len(ds) == len(fractions)+1: # size classes, the last point will be zero fractions.insert(0, 0.0) self.d_minimum = min(ds) elif ds[0] != 0: ds = [0] + ds if len(ds) != len(fractions): fractions = [0] + fractions self.d_minimum = 0.0 self.ds = ds self.fractions = fractions self.d_excessive = max(ds) self.fraction_cdf = cumsum(fractions) if self.monotonic: from scipy.interpolate import PchipInterpolator globals()['PchipInterpolator'] = PchipInterpolator self.cdf_spline = PchipInterpolator(ds, self.fraction_cdf, extrapolate=True) self.pdf_spline = PchipInterpolator(ds, self.fraction_cdf, extrapolate=True).derivative(1) else: from scipy.interpolate import UnivariateSpline globals()['UnivariateSpline'] = UnivariateSpline self.cdf_spline = UnivariateSpline(ds, self.fraction_cdf, ext=3, s=0) self.pdf_spline = UnivariateSpline(ds, self.fraction_cdf, ext=3, s=0).derivative(1) # The pdf basis integral splines will be stored here self.basis_integrals = {} def _pdf(self, d): return max(0.0, float(self.pdf_spline(d))) def _cdf(self, d): if d > self.d_excessive: # Handle spline values past 1 that decrease to zero return 1.0 return max(0.0, float(self.cdf_spline(d))) def _pdf_basis_integral(self, d, n): # there are slight errors with this approach - but they are OK to # ignore. # DO NOT evaluate the first point as it leads to inf values; just set # it to zero from fluids.numerics import numpy as np if n not in self.basis_integrals: ds = np.array(self.ds[1:]) pdf_vals = self.pdf_spline(ds) basis_integral = ds**n*pdf_vals if self.monotonic: from scipy.interpolate import PchipInterpolator self.basis_integrals[n] = PchipInterpolator(ds, basis_integral, extrapolate=True).antiderivative(1) else: from scipy.interpolate import UnivariateSpline self.basis_integrals[n] = UnivariateSpline(ds, basis_integral, ext=3, s=0).antiderivative(n=1) return max(float(self.basis_integrals[n](d)), 0.0) fluids-1.0.22/fluids/saltation.py0000644000175000017500000004317014302004506016245 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains correlations for calculating the saltation velocity of entrained particles. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Correlations ------------ .. autofunction :: Rizk .. autofunction :: Matsumoto_1974 .. autofunction :: Matsumoto_1975 .. autofunction :: Matsumoto_1977 .. autofunction :: Schade .. autofunction :: Weber_saltation .. autofunction :: Geldart_Ling """ from __future__ import division from fluids.constants import g, pi from math import sqrt __all__ = ['Rizk', 'Matsumoto_1974', 'Matsumoto_1975', 'Matsumoto_1977', 'Schade', 'Weber_saltation', 'Geldart_Ling'] def Rizk(mp, dp, rhog, D): r'''Calculates saltation velocity of the gas for pneumatic conveying, according to [1]_ as described in [2]_ and many others. .. math:: \mu=\left(\frac{1}{10^{1440d_p+1.96}}\right)\left(Fr_s\right)^{1100d_p+2.5} .. math:: Fr_s = \frac{V_{salt}}{\sqrt{gD}} .. math:: \mu = \frac{m_p}{\frac{\pi}{4}D^2V \rho_f} Parameters ---------- mp : float Solid mass flow rate, [kg/s] dp : float Particle diameter, [m] rhog : float Gas density, [kg/m^3] D : float Diameter of pipe, [m] Returns ------- V : float Saltation velocity of gas, [m/s] Notes ----- Model is rearranged to be explicit in terms of saltation velocity internally. Examples -------- Example is from [3]_. >>> Rizk(mp=0.25, dp=100E-6, rhog=1.2, D=.078) 9.8833092829357 References ---------- .. [1] Rizk, F. "Pneumatic conveying at optimal operation conditions and a solution of Bath's equation." Proceedings of Pneumotransport 3, paper D4. BHRA Fluid Engineering, Cranfield, England (1973) .. [2] Klinzing, G. E., F. Rizk, R. Marcus, and L. S. Leung. Pneumatic Conveying of Solids: A Theoretical and Practical Approach. Springer, 2013. .. [3] Rhodes, Martin J. Introduction to Particle Technology. Wiley, 2013. ''' alpha = 1440.0*dp + 1.96 beta = 1100.0*dp + 2.5 term1 = 0.1**alpha Frs_sorta = 1.0/sqrt(g*D) expression1 = term1*Frs_sorta**beta expression2 = mp/rhog/(pi/4*D*D) return (expression2/expression1)**(1./(1. + beta)) def Matsumoto_1974(mp, rhop, dp, rhog, D, Vterminal=1): r'''Calculates saltation velocity of the gas for pneumatic conveying, according to [1]_. Also described in [2]_. .. math:: \mu = 0.448 \left(\frac{\rho_p}{\rho_f}\right)^{0.50}\left(\frac{Fr_p} {10}\right)^{-1.75}\left(\frac{Fr_s}{10}\right)^{3} .. math:: Fr_s = \frac{V_{salt}}{\sqrt{gD}} .. math:: Fr_p = \frac{V_{terminal}}{\sqrt{gd_p}} .. math:: \mu = \frac{m_p}{\frac{\pi}{4}D^2V \rho_f} Parameters ---------- mp : float Solid mass flow rate, [kg/s] rhop : float Particle density, [kg/m^3] dp : float Particle diameter, [m] rhog : float Gas density, [kg/m^3] D : float Diameter of pipe, [m] Vterminal : float Terminal velocity of particle settling in gas, [m/s] Returns ------- V : float Saltation velocity of gas, [m/s] Notes ----- Model is rearranged to be explicit in terms of saltation velocity internally. Result looks high, something may be wrong. For particles > 0.3 mm. Examples -------- >>> Matsumoto_1974(mp=1., rhop=1000., dp=1E-3, rhog=1.2, D=0.1, Vterminal=5.24) 19.583617317317895 References ---------- .. [1] Matsumoto, Shigeru, Michio Kara, Shozaburo Saito, and Siro Maeda. "Minimum Transport Velocity for Horizontal Pneumatic Conveying." Journal of Chemical Engineering of Japan 7, no. 6 (1974): 425-30. doi:10.1252/jcej.7.425. .. [2] Jones, Peter J., and L. S. Leung. "A Comparison of Correlations for Saltation Velocity in Horizontal Pneumatic Conveying." Industrial & Engineering Chemistry Process Design and Development 17, no. 4 (October 1, 1978): 571-75. doi:10.1021/i260068a031 ''' A = pi/4*D**2 Frp = Vterminal/sqrt(g*dp) Frs_sorta = 1./sqrt(g*D) expression1 = 0.448*sqrt(rhop/rhog)*(Frp/10.)**-1.75*(Frs_sorta/10.)**3 expression2 = mp/rhog/A return (expression2/expression1)**(1/4.) def Matsumoto_1975(mp, rhop, dp, rhog, D, Vterminal=1): r'''Calculates saltation velocity of the gas for pneumatic conveying, according to [1]_. Also described in [2]_. .. math:: \mu = 1.11 \left(\frac{\rho_p}{\rho_f}\right)^{0.55}\left(\frac{Fr_p} {10}\right)^{-2.3}\left(\frac{Fr_s}{10}\right)^{3} .. math:: Fr_s = \frac{V_{salt}}{\sqrt{gD}} .. math:: Fr_p = \frac{V_{terminal}}{\sqrt{gd_p}} .. math:: \mu = \frac{m_p}{\frac{\pi}{4}D^2V \rho_f} Parameters ---------- mp : float Solid mass flow rate, [kg/s] rhop : float Particle density, [kg/m^3] dp : float Particle diameter, [m] rhog : float Gas density, [kg/m^3] D : float Diameter of pipe, [m] Vterminal : float Terminal velocity of particle settling in gas, [m/s] Returns ------- V : float Saltation velocity of gas, [m/s] Notes ----- Model is rearranged to be explicit in terms of saltation velocity internally. Result looks high, something may be wrong. For particles > 0.3 mm. Examples -------- >>> Matsumoto_1975(mp=1., rhop=1000., dp=1E-3, rhog=1.2, D=0.1, Vterminal=5.24) 18.04523091703009 References ---------- .. [1] Matsumoto, Shigeru, Shundo Harada, Shozaburo Saito, and Siro Maeda. "Saltation Velocity for Horizontal Pneumatic Conveying." Journal of Chemical Engineering of Japan 8, no. 4 (1975): 331-33. doi:10.1252/jcej.8.331. .. [2] Jones, Peter J., and L. S. Leung. "A Comparison of Correlations for Saltation Velocity in Horizontal Pneumatic Conveying." Industrial & Engineering Chemistry Process Design and Development 17, no. 4 (October 1, 1978): 571-75. doi:10.1021/i260068a031 ''' A = pi/4*D**2 Frp = Vterminal/sqrt(g*dp) Frs_sorta = 1./sqrt(g*D) expression1 = 1.11*(rhop/rhog)**0.55*(Frp/10.)**-2.3*(Frs_sorta/10.)**3 expression2 = mp/rhog/A return (expression2/expression1)**(1/4.) def Matsumoto_1977(mp, rhop, dp, rhog, D, Vterminal=1): r'''Calculates saltation velocity of the gas for pneumatic conveying, according to [1]_ and reproduced in [2]_, [3]_, and [4]_. First equation is used if third equation yields d* higher than dp. Otherwise, use equation 2. .. math:: \mu = 5560\left(\frac{d_p}{D}\right)^{1.43}\left(\frac{Fr_s}{10}\right)^4 .. math:: \mu = 0.373 \left(\frac{\rho_p}{\rho_f}\right)^{1.06}\left(\frac{Fr_p} {10}\right)^{-3.7}\left(\frac{Fr_s}{10}\right)^{3.61} .. math:: \frac{d_p^*}{D} = 1.39\left(\frac{\rho_p}{\rho_f}\right)^{-0.74} .. math:: Fr_s = \frac{V_{salt}}{\sqrt{gD}} .. math:: Fr_p = \frac{V_{terminal}}{\sqrt{gd_p}} .. math:: \mu = \frac{m_p}{\frac{\pi}{4}D^2V \rho_f} Parameters ---------- mp : float Solid mass flow rate, [kg/s] rhop : float Particle density, [kg/m^3] dp : float Particle diameter, [m] rhog : float Gas density, [kg/m^3] D : float Diameter of pipe, [m] Vterminal : float Terminal velocity of particle settling in gas, [m/s] Returns ------- V : float Saltation velocity of gas, [m/s] Notes ----- Model is rearanged to be explicit in terms of saltation velocity internally.r Examples -------- Example is only a self-test. Course routine, terminal velocity input is from example in [2]. >>> Matsumoto_1977(mp=1., rhop=1000., dp=1E-3, rhog=1.2, D=0.1, Vterminal=5.24) 16.64284834446686 References ---------- .. [1] Matsumoto, Shigeru, Makoto Kikuta, and Siro Maeda. "Effect of Particle Size on the Minimum Transport Velocity for Horizontal Pneumatic Conveying of Solids." Journal of Chemical Engineering of Japan 10, no. 4 (1977): 273-79. doi:10.1252/jcej.10.273. .. [2] Klinzing, G. E., F. Rizk, R. Marcus, and L. S. Leung. Pneumatic Conveying of Solids: A Theoretical and Practical Approach. Springer, 2013. .. [3] Gomes, L. M., and A. L. Amarante Mesquita. "On the Prediction of Pickup and Saltation Velocities in Pneumatic Conveying." Brazilian Journal of Chemical Engineering 31, no. 1 (March 2014): 35-46. doi:10.1590/S0104-66322014000100005 .. [4] Rabinovich, Evgeny, and Haim Kalman. "Threshold Velocities of Particle-Fluid Flows in Horizontal Pipes and Ducts: Literature Review." Reviews in Chemical Engineering 27, no. 5-6 (January 1, 2011). doi:10.1515/REVCE.2011.011. ''' limit = 1.39*D*(rhop/rhog)**-0.74 A = pi/4*D**2 if limit < dp: # Coarse routine Frp = Vterminal/sqrt(g*dp) Frs_sorta = 1./sqrt(g*D) expression1 = 0.373*(rhop/rhog)**1.06*(Frp/10.)**-3.7*(Frs_sorta/10.)**3.61 expression2 = mp/rhog/A return (expression2/expression1)**(1/4.61) else: Frs_sorta = 1./sqrt(g*D) expression1 = 5560*(dp/D)**1.43*(Frs_sorta/10.)**4 expression2 = mp/rhog/A return (expression2/expression1)**(0.2) def Schade(mp, rhop, dp, rhog, D): r'''Calculates saltation velocity of the gas for pneumatic conveying, according to [1]_ as described in [2]_, [3]_, [4]_, and [5]_. .. math:: Fr_s = \mu^{0.11}\left(\frac{D}{d_p}\right)^{0.025}\left(\frac{\rho_p} {\rho_f}\right)^{0.34} .. math:: Fr_s = \frac{V_{salt}}{\sqrt{gD}} .. math:: \mu = \frac{m_p}{\frac{\pi}{4}D^2V \rho_f} Parameters ---------- mp : float Solid mass flow rate, [kg/s] rhop : float Particle density, [kg/m^3] dp : float Particle diameter, [m] rhog : float Gas density, [kg/m^3] D : float Diameter of pipe, [m] Returns ------- V : float Saltation velocity of gas, [m/s] Notes ----- Model is rearranged to be explicit in terms of saltation velocity internally. Examples -------- >>> Schade(mp=1., rhop=1000., dp=1E-3, rhog=1.2, D=0.1) 13.697415809497912 References ---------- .. [1] Schade, B., Zum Ubergang Sprung-Strahnen-forderung bei der Horizontalen Pneumatischen Feststoffordrung. Dissertation, University of Karlsruche (1987) .. [2] Rabinovich, Evgeny, and Haim Kalman. "Threshold Velocities of Particle-Fluid Flows in Horizontal Pipes and Ducts: Literature Review." Reviews in Chemical Engineering 27, no. 5-6 (January 1, 2011). doi:10.1515/REVCE.2011.011. .. [3] Setia, G., S. S. Mallick, R. Pan, and P. W. Wypych. "Modeling Minimum Transport Boundary for Fluidized Dense-Phase Pneumatic Conveying Systems." Powder Technology 277 (June 2015): 244-51. doi:10.1016/j.powtec.2015.02.050. .. [4] Bansal, A., S. S. Mallick, and P. W. Wypych. "Investigating Straight-Pipe Pneumatic Conveying Characteristics for Fluidized Dense-Phase Pneumatic Conveying." Particulate Science and Technology 31, no. 4 (July 4, 2013): 348-56. doi:10.1080/02726351.2012.732677. .. [5] Gomes, L. M., and A. L. Amarante Mesquita. "On the Prediction of Pickup and Saltation Velocities in Pneumatic Conveying." Brazilian Journal of Chemical Engineering 31, no. 1 (March 2014): 35-46. doi:10.1590/S0104-66322014000100005 ''' B = (D/dp)**0.025*(rhop/rhog)**0.34 A = sqrt(g*D) C = mp/(rhog*pi/4*D**2) return (C**0.11*B*A)**(1/1.11) def Weber_saltation(mp, rhop, dp, rhog, D, Vterminal=4): r'''Calculates saltation velocity of the gas for pneumatic conveying, according to [1]_ as described in [2]_, [3]_, [4]_, and [5]_. If Vterminal is under 3 m/s, use equation 1; otherwise, equation 2. .. math:: Fr_s = \left(7 + \frac{8}{3}V_{terminal}\right)\mu^{0.25} \left(\frac{d_p}{D}\right)^{0.1} .. math:: Fr_s = 15\mu^{0.25}\left(\frac{d_p}{D}\right)^{0.1} .. math:: Fr_s = \frac{V_{salt}}{\sqrt{gD}} .. math:: \mu = \frac{m_p}{\frac{\pi}{4}D^2V \rho_f} Parameters ---------- mp : float Solid mass flow rate, [kg/s] rhop : float Particle density, [kg/m^3] dp : float Particle diameter, [m] rhog : float Gas density, [kg/m^3] D : float Diameter of pipe, [m] Vterminal : float Terminal velocity of particle settling in gas, [m/s] Returns ------- V : float Saltation velocity of gas, [m/s] Notes ----- Model is rearranged to be explicit in terms of saltation velocity internally. Examples -------- Examples are only a self-test. >>> Weber_saltation(mp=1, rhop=1000., dp=1E-3, rhog=1.2, D=0.1, Vterminal=4) 15.227445436331474 References ---------- .. [1] Weber, M. 1981. Principles of hydraulic and pneumatic conveying in pipes. Bulk Solids Handling 1: 57-63. .. [2] Rabinovich, Evgeny, and Haim Kalman. "Threshold Velocities of Particle-Fluid Flows in Horizontal Pipes and Ducts: Literature Review." Reviews in Chemical Engineering 27, no. 5-6 (January 1, 2011). doi:10.1515/REVCE.2011.011. .. [3] Setia, G., S. S. Mallick, R. Pan, and P. W. Wypych. "Modeling Minimum Transport Boundary for Fluidized Dense-Phase Pneumatic Conveying Systems." Powder Technology 277 (June 2015): 244-51. doi:10.1016/j.powtec.2015.02.050. .. [4] Bansal, A., S. S. Mallick, and P. W. Wypych. "Investigating Straight-Pipe Pneumatic Conveying Characteristics for Fluidized Dense-Phase Pneumatic Conveying." Particulate Science and Technology 31, no. 4 (July 4, 2013): 348-56. doi:10.1080/02726351.2012.732677. .. [5] Gomes, L. M., and A. L. Amarante Mesquita. "On the Prediction of Pickup and Saltation Velocities in Pneumatic Conveying." Brazilian Journal of Chemical Engineering 31, no. 1 (March 2014): 35-46. doi:10.1590/S0104-66322014000100005 ''' if Vterminal <= 3: term1 = (7 + 8/3.*Vterminal)*(dp/D)**0.1 else: term1 = 15.*(dp/D)**0.1 term2 = 1./sqrt(g*D) term3 = mp/rhog/(pi/4*D**2) return (term1/term2*sqrt(sqrt(term3)))**(1/1.25) def Geldart_Ling(mp, rhog, D, mug): r'''Calculates saltation velocity of the gas for pneumatic conveying, according to [1]_ as described in [2]_ and [3]_. if Gs/D < 47000, use equation 1, otherwise use equation 2. .. math:: V_{salt} = 1.5G_s^{0.465}D^{-0.01} \mu^{0.055}\rho_f^{-0.42} .. math:: V_{salt} = 8.7G_s^{0.302}D^{0.153} \mu^{0.055}\rho_f^{-0.42} .. math:: Fr_s = 15\mu^{0.25}\left(\frac{d_p}{D}\right)^{0.1} .. math:: Fr_s = \frac{V_{salt}}{\sqrt{gD}} .. math:: \mu = \frac{m_p}{\frac{\pi}{4}D^2V \rho_f} .. math:: G_s = \frac{m_p}{A} Parameters ---------- mp : float Solid mass flow rate, [kg/s] rhog : float Gas density, [kg/m^3] D : float Diameter of pipe, [m] mug : float Gas viscosity, [Pa*s] Returns ------- V : float Saltation velocity of gas, [m/s] Notes ----- Model is rearranged to be explicit in terms of saltation velocity internally. Examples -------- >>> Geldart_Ling(1., 1.2, 0.1, 2E-5) 7.467495862402707 References ---------- .. [1] Weber, M. 1981. Principles of hydraulic and pneumatic conveying in pipes. Bulk Solids Handling 1: 57-63. .. [2] Rabinovich, Evgeny, and Haim Kalman. "Threshold Velocities of Particle-Fluid Flows in Horizontal Pipes and Ducts: Literature Review." Reviews in Chemical Engineering 27, no. 5-6 (January 1, 2011). doi:10.1515/REVCE.2011.011. .. [3] Gomes, L. M., and A. L. Amarante Mesquita. "On the Prediction of Pickup and Saltation Velocities in Pneumatic Conveying." Brazilian Journal of Chemical Engineering 31, no. 1 (March 2014): 35-46. doi:10.1590/S0104-66322014000100005 ''' Gs = mp/(0.25*pi*D*D) if Gs/D <= 47000.0: return 1.5*Gs**0.465*D**-0.01*mug**0.055*rhog**-0.42 else: return 8.7*Gs**0.302*D**0.153*mug**0.055*rhog**-0.42 fluids-1.0.22/fluids/units.py0000644000175000017500000006576414302004506015426 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2017, 2018, 2019, 2020, 2021, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from __future__ import division __all__ = ['wraps_numpydoc', 'u'] import types import re import inspect import sys from inspect import getsource, cleandoc import functools try: from collections.abc import Iterable except: from collections import Iterable from copy import copy import fluids import fluids.vectorized import numpy as np ndarray = np.ndarray try: import pint from pint import _DEFAULT_REGISTRY as u from pint import DimensionalityError except ImportError: # pragma: no cover raise ImportError('The unit handling in fluids requires the installation ' 'of the package pint, available on pypi or from ' 'https://github.com/hgrecco/pint') '''See fluids.units.rst for documentation for this module. ''' try: doc_stripped = sys.flags.optimize == 2 except: doc_stripped = False # is_critical_flow is broken def get_docstring(f): '''Returns the docstring of a function, working in -OO mode also. ''' try: if f.__doc__ is not None: return f.__doc__ except: # micropython return None if not doc_stripped: return None src = cleandoc(inspect.getsource(f)) single_pos = src.find("'''") double_pos = src.find('"""') if single_pos == -1: if double_pos == -1: # Neither return None # double, not single return cleandoc(src.split('"""')[1]) elif double_pos == -1 and single_pos != -1: # single, not double return cleandoc(src.split("'''")[1]) else: # single and double if single_pos < double_pos: return cleandoc(src.split("'''")[1]) return cleandoc(src.split('"""')[1]) def func_args(func): """Basic function which returns a tuple of arguments of a function or method.""" try: return tuple(inspect.getfullargspec(func).args) except: return tuple(inspect.getargspec(func).args) u.autoconvert_offset_to_baseunit = True expr = re.compile('Parameters *\n *-+\n +') expr2 = re.compile('Returns *\n *-+\n +') match_sections = re.compile('\n *[A-Za-z ]+ *\n *-+') match_section_names = re.compile('\n *[A-Za-z]+ *\n *-+') variable = re.compile('[a-zA-Z_0-9]* : ') match_units = re.compile(r'\[[a-zA-Z0-9().\/*^\- ]*\]') def make_dimensionless_units(unit_str): if unit_str == '-': unit_str = 'dimensionless' elif unit_str == 'various': unit_str = 'dimensionless' elif unit_str == 'base SI': unit_str = 'dimensionless' return unit_str parse_numpydoc_variables_units_cache = {} def parse_numpydoc_variables_units(func, replace=None): text = get_docstring(func) if text is None: text = '' if replace is not None: for k, v in replace: text = text.replace(k, v) h = hash(text) if h in parse_numpydoc_variables_units_cache: return parse_numpydoc_variables_units_cache[h] res = parse_numpydoc_variables_units_docstring(text) parse_numpydoc_variables_units_cache[h] = res return res def parse_numpydoc_variables_units_docstring(text): section_names = [i.replace('-', '').strip() for i in match_sections.findall(text)] section_text = match_sections.split(text) sections = {} for i, j in zip(section_names, section_text[1:]): sections[i] = j parsed = {} for section in ['Parameters', 'Returns', 'Attributes', 'Other Parameters']: if section not in sections: # Handle the case where the function has nothing in a section parsed[section] = {'units': [], 'vars': []} continue p = sections[section] parameter_vars = [i[:-2].strip() for i in variable.findall(p)] unit_strings = [i.strip() for i in variable.split(p)[1:]] units = [] for i in unit_strings: matches = match_units.findall(i) if len(matches) == 0: # If there is no unit listed, assume it's dimensionless (probably a string) matches = ['[]'] match = matches[-1] # Assume the last bracketed group listed is the unit group match = match.replace('[', '').replace(']', '') if len(match) == 1: match = make_dimensionless_units(match) match = make_dimensionless_units(match) if match == '': match = 'dimensionless' # if match == 'base SI': # match = 'dimensionless' # TODO - write special wrappers for these cases units.append(match) parsed[section] = {'units': units, 'vars': parameter_vars} return parsed def check_args_order(func): """Reads a numpydoc function and compares the Parameters and Other Parameters with the input arguments of the actual function signature. Raises an exception if not correctly defined. getargspec is used for Python 2.7 compatibility and is deprecated in Python 3. >>> check_args_order(fluids.core.Reynolds) """ try: argspec = inspect.getfullargspec(func) except: argspec = inspect.getargspec(func) parsed_data = parse_numpydoc_variables_units(func) # compare the parsed arguments with those actually defined parsed_units = copy(parsed_data['Parameters']['units']) parsed_parameters = copy(parsed_data['Parameters']['vars']) if 'Other Parameters' in parsed_data: parsed_parameters += parsed_data['Other Parameters']['vars'] parsed_units += parsed_data['Other Parameters']['units'] if argspec.args != parsed_parameters: # pragma: no cover raise ValueError('Function %s signature is not the same as the documentation' ' signature = %s; documentation = %s' %(func.__name__, argspec.args, parsed_parameters)) def match_parse_units(doc, i=-1): if doc is None: matches = ['[]'] else: matches = match_units.findall(doc) if len(matches) == 0: # If there is no unit listed, assume it's dimensionless (probably a string) matches = ['[]'] match = matches[i] # Assume the last bracketed group listed is the unit group match = match.replace('[', '').replace(']', '') if len(match) == 1: match = make_dimensionless_units(match) if match == '': match = 'dimensionless' if match == 'base SI': match = 'dimensionless' # TODO - write special wrappers for these cases return match def convert_input(val, unit, ureg, strict=True): if val is None: return val # Handle optional units which are given if unit != 'dimensionless': try: return val.to(unit).magnitude except AttributeError: if strict: raise TypeError('%s has no quantity' %(val)) else: return val except DimensionalityError as e: raise ValueError('Converting %s to units of %s raised DimensionalityError: %s'%(val, unit, str(e))) else: if type(val) == ureg.Quantity: return val.to_base_units().magnitude else: return val pint_expression_cache = {} def parse_expression_cached(unit, ureg): if unit in pint_expression_cache: return pint_expression_cache[unit] ans = ureg.parse_expression(unit) pint_expression_cache[unit] = ans return ans def convert_output(result, out_units, out_vars, ureg): # Attempt to handle multiple return values # Must be able to convert all values to a pint expression t = type(result) output_count = len(out_units) if t is str or t is bool or result is None: return result elif t is dict: for key, ans in result.items(): unit = out_units[out_vars.index(key)] result[key] = ans*parse_expression_cached(unit, ureg) return result elif (t is list or t is ndarray) and output_count == 1: return np.array(result)*parse_expression_cached(out_units[0], ureg) elif isinstance(result, Iterable): conveted_result = [] for ans, unit in zip(result, out_units): conveted_result.append(ans*parse_expression_cached(unit, ureg)) return conveted_result else: return result*parse_expression_cached(out_units[0], ureg) in_vars_cache = {} in_units_cache = {} out_vars_cache = {} out_units_cache = {} def wraps_numpydoc(ureg, strict=True): def decorator(func): assigned = (attr for attr in functools.WRAPPER_ASSIGNMENTS if hasattr(func, attr)) updated = (attr for attr in functools.WRAPPER_UPDATES if hasattr(func, attr)) parsed_info = parse_numpydoc_variables_units(func) in_vars = copy(parsed_info['Parameters']['vars']) in_units = copy(parsed_info['Parameters']['units']) if 'Other Parameters' in parsed_info: in_vars += parsed_info['Other Parameters']['vars'] in_units += parsed_info['Other Parameters']['units'] in_vars_to_dict = {} for i, j in zip(in_vars, in_units): in_vars_to_dict[i] = j out_units = parsed_info['Returns']['units'] out_vars = parsed_info['Returns']['vars'] # Handle the case of dict answers - require the first line's args to be # parsed as 'results' if out_vars and 'results' == out_vars[0]: out_units.pop(0) out_vars.pop(0) in_vars_cache[func] = in_vars in_units_cache[func] = in_units out_vars_cache[func] = out_vars out_units_cache[func] = out_units @functools.wraps(func, assigned=assigned, updated=updated) def wrapper(*values, **kw): # Convert input ordered variables to dimensionless form, after converting # them to the the units specified by their documentation conv_values = [] for val, unit in zip(values, in_units): conv_values.append(convert_input(val, unit, ureg, strict)) # For keyword arguments, lookup their unit; convert to that; # handle dimensionless arguments the same way kwargs = {} for name, val in kw.items(): unit = in_vars_to_dict[name] kwargs[name] = convert_input(val, unit, ureg, strict) if any([type(i.m) == np.ndarray for i in list(kw.values()) + list(values) if type(i) == u.Quantity]): result = getattr(fluids.vectorized, func.__name__)(*conv_values, **kwargs) else: result = func(*conv_values, **kwargs) if type(result) == np.ndarray: units = convert_output(result, out_units, out_vars, ureg)[0].units return result*units else: return convert_output(result, out_units, out_vars, ureg) return wrapper return decorator class UnitAwareClass(object): wrapped = None ureg = u strict = True property_units = {} # for properties and attributes only method_units = {} def __repr__(self): '''Called only on the class instance, not any instance - ever. https://stackoverflow.com/questions/10376604/overriding-special-methods-on-an-instance ''' return self.wrapped.__repr__() def __add__(self, other): new_obj = self.wrapped.__add__(other.wrapped) new_instance = copy(self) new_instance.wrapped = new_obj return new_instance def __sub__(self, other): new_obj = self.wrapped.__sub__(other.wrapped) new_instance = copy(self) new_instance.wrapped = new_obj return new_instance def __init__(self, *args, **kwargs): args_base, kwargs_base = self.input_units_to_dimensionless('__init__', *args, **kwargs) self.wrapped = self.wrapped(*args_base, **kwargs_base) @classmethod def wrap(self, wrapped): new = super(self, self).__new__(self) new.wrapped = wrapped return new def __getattr__(self, name): instance = True if name in self.class_methods or name in self.static_methods: instance = False try: value = getattr(self.wrapped, name) except Exception as e: raise AttributeError('Failed to get property %s with error %s' %(str(name), str(e))) if value is not None: if name in self.property_units: if type(value) == dict: d = {} unit = self.property_units[name] for key, val in value.items(): d[key] = val*unit return d try: return value*self.property_units[name] except: # Not everything is going to work. The most common case here # is returning a list, some of the values being None and so # it cannot be wrapped. return value else: if hasattr(value, '__call__'): # if not instance: # @functools.wraps(value) # # Special case where self needs to be passed in specifically # def call_func_with_inputs_to_SI(*args, **kwargs): # args_base, kwargs_base = self.input_units_to_dimensionless(self, name, *args, **kwargs) # result = value(*args_base, **kwargs_base) # if name == '__init__': # return result # _, _, _, out_vars, out_units = self.method_units[name] # if not out_units: # return # return convert_output(result, out_units, out_vars, self.ureg) # # else: @functools.wraps(value) def call_func_with_inputs_to_SI(*args, **kwargs): args_base, kwargs_base = self.input_units_to_dimensionless(name, *args, **kwargs) result = value(*args_base, **kwargs_base) if name == '__init__': return result elif type(result) is self.wrapped: # Creating a new class, wrap it return self.wrap(result) _, _, _, out_vars, out_units = self.method_units[name] if not out_units: return return convert_output(result, out_units, out_vars, self.ureg) return call_func_with_inputs_to_SI raise AttributeError('Error: Property does not yet have units attached') else: return value _another_getattr = classmethod(__getattr__) @classmethod def input_units_to_dimensionless(self, name, *values, **kw): in_vars, in_units, in_vars_to_dict, out_vars, out_units = self.method_units[name] conv_values = [] for val, unit in zip(values, in_units): conv_values.append(convert_input(val, unit, self.ureg, self.strict)) # For keyword arguments, lookup their unit; convert to that; # handle dimensionless arguments the same way kwargs = {} for name, val in kw.items(): unit = in_vars_to_dict[name] kwargs[name] = convert_input(val, unit, self.ureg, self.strict) return conv_values, kwargs def clean_parsed_info(parsed_info): in_vars = parsed_info['Parameters']['vars'] in_units = parsed_info['Parameters']['units'] if 'Other Parameters' in parsed_info: in_vars += parsed_info['Other Parameters']['vars'] in_units += parsed_info['Other Parameters']['units'] in_vars_to_dict = {} for i, j in zip(in_vars, in_units): in_vars_to_dict[i] = j out_units = parsed_info['Returns']['units'] out_vars = parsed_info['Returns']['vars'] # Handle the case of dict answers - require the first line's args to be # parsed as 'results' if out_vars and 'results' == out_vars[0]: out_units.pop(0) out_vars.pop(0) return in_vars, in_units, in_vars_to_dict, out_vars, out_units def wrap_numpydoc_obj(obj_to_wrap): callable_methods = {} property_unit_map = {} static_methods = set([]) class_methods = set([]) try: replace = [('`units`', obj_to_wrap.units)] except: replace = None other_bases = obj_to_wrap.__mro__[1:-1] for prop in dir(obj_to_wrap): attr = getattr(obj_to_wrap, prop) if isinstance(attr, types.FunctionType) or isinstance(attr, types.MethodType) or type(attr) == property: try: if isinstance(obj_to_wrap.__dict__[prop], staticmethod): static_methods.add(prop) if isinstance(obj_to_wrap.__dict__[prop], classmethod): class_methods.add(prop) except: pass if type(attr) is property: name = prop #name = attr.fget.__name__ else: name = prop # Do not use attr.__name__ here to allow aliases, use whatever it was assigned to found_doc = hasattr(attr, '__doc__') and attr.__doc__ is not None if not found_doc and other_bases: for base in other_bases: if hasattr(base, prop): base_prop = getattr(base, prop) found_doc = hasattr(base_prop, '__doc__') and base_prop.__doc__ is not None if found_doc: attr = base_prop break if found_doc: if type(attr) is property: try: docstring = attr.__doc__ if docstring is None: docstring = attr.fget.__doc__ # docstring = docstring.replace('`units`', obj_to_wrap.units) # Is it a full style string? if 'Returns' in docstring and '-------' in docstring: found_unit = parse_expression_cached(parse_numpydoc_variables_units_docstring(docstring)['Returns']['units'][0], u) else: found_unit = parse_expression_cached(match_parse_units(docstring, i=0), u) except Exception as e: if name[0] == '_': found_unit = u.dimensionless else: print('Failed on attribute %s' %name) raise e property_unit_map[name] = found_unit else: parsed = parse_numpydoc_variables_units(attr, replace) callable_methods[name] = clean_parsed_info(parsed) if 'Attributes' in parsed: property_unit_map.update(parsed['Attributes']) # We need to parse the __doc__ for the main docstring of each of the inherited # objects, but in reverse order so older properties get overwritten by newer # properties. Ignore the object type as well. for inherited in reversed(list(obj_to_wrap.__mro__[0:-1])): parsed = parse_numpydoc_variables_units(inherited, replace) callable_methods['__init__'] = clean_parsed_info(parsed) # if 'All parameters are also attributes' in get_docstring(inherited): # pass if 'Attributes' in parsed: property_unit_map.update({var:parse_expression_cached(make_dimensionless_units(unit), u) for var, unit in zip(parsed['Attributes']['vars'], parsed['Attributes']['units'])} ) if 'Parameters' in parsed: property_unit_map.update({var:parse_expression_cached(make_dimensionless_units(unit), u) for var, unit in zip(parsed['Parameters']['vars'], parsed['Parameters']['units'])} ) name = obj_to_wrap.__name__ classkwargs = {'wrapped': obj_to_wrap, 'property_units': property_unit_map, 'method_units': callable_methods, 'static_methods': static_methods, 'class_methods': class_methods} fun = type(name, (UnitAwareClass,), classkwargs ) for m in static_methods: #def a_static_method(*args, the_method=m, **kwargs): #return fun._another_getattr(the_method)(*args, **kwargs) setattr(fun, m, staticmethod(fun._another_getattr(m))) for m in class_methods: setattr(fun, m, classmethod(fun._another_getattr(m))) return fun def kwargs_to_args(args, kwargs, signature): '''Accepts an *args and **kwargs and a signature like ['rho', 'mu', 'nu'] which is an ordered list of all accepted arguments. Returns a list containing all the arguments, sorted, and left as None if not specified ''' argument_number = len(signature) arg_number = len(args) output = list(args) # Extend the list and initialize as None by default output.extend([None]*(argument_number - arg_number)) for i in range(arg_number, argument_number): if signature[i] in kwargs: output[i] = kwargs[signature[i]] return output __pint_wrapped_functions = {} for name in dir(fluids): if 'RectangularOffsetStripFinExchanger' in name: continue if 'ParticleSizeDistribution' in name: continue if name == '__getattr__' or name == '__test__': continue obj = getattr(fluids, name) if isinstance(obj, types.FunctionType): obj = wraps_numpydoc(u)(obj) elif type(obj) == type: obj = wrap_numpydoc_obj(obj) elif type(obj) is types.ModuleType: # Functions accessed with the namespace like friction.friction_factor # would call the original function - leads to user confusion if they are exposed continue elif isinstance(obj, str): continue if name == '__all__': continue __all__.append(name) __pint_wrapped_functions.update({name: obj}) globals().update(__pint_wrapped_functions) __all__.extend(['wraps_numpydoc', 'convert_output', 'convert_input', 'check_args_order', 'match_parse_units', 'parse_numpydoc_variables_units', 'wrap_numpydoc_obj', 'UnitAwareClass']) def A_multiple_hole_cylinder(Do, L, holes): Do = Do.to(u.m).magnitude L = L.to(u.m).magnitude holes = [(i.to(u.m).magnitude, N) for i, N in holes] A = fluids.geometry.A_multiple_hole_cylinder(Do, L, holes) return A*u.m**2 def V_multiple_hole_cylinder(Do, L, holes): Do = Do.to(u.m).magnitude L = L.to(u.m).magnitude holes = [(i.to(u.m).magnitude, N) for i, N in holes] A = fluids.geometry.V_multiple_hole_cylinder(Do, L, holes) return A*u.m**3 variable_output_unit_funcs = { # True: arg should be present; False: arg should be None 'nu_mu_converter': ({(True, False, True): [u.Pa*u.s], (True, True, False): [u.m**2/u.s], }, 3), 'differential_pressure_meter_solver': ({(True, True, True, True, False, True, True, True): [u.m], (True, True, True, True, True, False, True, True): [u.Pa], (True, True, True, True, True, True, False, True): [u.Pa], (True, True, True, True, True, True, True, False): [u.kg/u.s], }, 8), 'isothermal_gas': ({(True, True, False, True, True, True, True): [u.Pa], (True, True, True, False, True, True, True): [u.Pa], (True, True, True, True, False, True, True): [u.m], (True, True, True, True, True, False, True): [u.m], (True, True, True, True, True, True, False): [u.kg/u.s], }, 7) } simple_compressible_variable_output = ({(True, True, False, True, True, True, True): [u.m], (True, True, True, False, True, True, True): [u.m], (True, True, True, True, False, True, True): [u.Pa], (True, True, True, True, True, False, True): [u.Pa], (True, True, True, True, True, True, False): [u.m**3/u.s], }, 7) for f in ['Panhandle_A', 'Panhandle_B', 'Weymouth', 'Spitzglass_high', 'Spitzglass_low', 'Oliphant', 'Fritzsche']: variable_output_unit_funcs[f] = simple_compressible_variable_output IGT_Muller_variable_output = ({(True, True, True, False, True, True, True, True): [u.m], (True, True, True, True, False, True, True, True): [u.m], (True, True, True, True, True, False, True, True): [u.Pa], (True, True, True, True, True, True, False, True): [u.Pa], (True, True, True, True, True, True, True, False): [u.m**3/u.s], }, 8) for f in ['Muller', 'IGT']: variable_output_unit_funcs[f] = IGT_Muller_variable_output def variable_output_wrapper(func, wrapped_basic_func, output_signatures, input_length): name = func.__name__ intput_signature = in_vars_cache[func] def thing(*args, **kwargs): ans = wrapped_basic_func(*args, **kwargs) args_for_sig = kwargs_to_args(args, kwargs, intput_signature) args_for_sig = [i is not None for i in args_for_sig] if len(args_for_sig) > input_length: # Allow other arguments later to not matter args_for_sig = args_for_sig[:input_length] output_units = output_signatures[tuple(args_for_sig)] if type(ans) in (list, tuple): return [output_units[i]*ans[i] for i in range(len(ans))] return output_units[0]*ans return thing for name, val in variable_output_unit_funcs.items(): globals()[name] = variable_output_wrapper(getattr(fluids, name), __pint_wrapped_functions[name], val[0], val[1])fluids-1.0.22/fluids/flow_meter.pyi0000644000175000017500000001200414302004506016553 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( Optional, Tuple, Union, ) def C_ISA_1932_nozzle(D: float, Do: float, rho: float, mu: float, m: float) -> float: ... def C_Miller_1996( D: float, Do: float, rho: float, mu: float, m: float, subtype: str = ..., taps: Optional[str] = ..., tap_position: Optional[str] = ... ) -> float: ... def C_Reader_Harris_Gallagher(D: float, Do: float, rho: float, mu: float, m: float, taps: str = ...) -> float: ... def C_Reader_Harris_Gallagher_wet_venturi_tube( mg: float, ml: float, rhog: float, rhol: float, D: float, Do: float, H: float = ... ) -> float: ... def C_eccentric_orifice_ISO_15377_1998(D: float, Do: float) -> float: ... def C_long_radius_nozzle(D: float, Do: float, rho: float, mu: float, m: float) -> float: ... def C_quarter_circle_orifice_ISO_15377_1998(D: float, Do: float) -> float: ... def C_venturi_nozzle(D: float, Do: float) -> float: ... def C_wedge_meter_ISO_5167_6_2017(D: float, H: float) -> float: ... def C_wedge_meter_Miller(D: float, H: float) -> float: ... def K_to_discharge_coefficient(D: float, Do: float, K: float) -> float: ... def cone_meter_expansibility_Stewart(D: float, Dc: float, P1: float, P2: float, k: float) -> float: ... def dP_Reader_Harris_Gallagher_wet_venturi_tube( D: float, Do: float, P1: float, P2: float, ml: float, mg: float, rhol: float, rhog: float, H: float = ... ) -> float: ... def dP_cone_meter(D: float, Dc: float, P1: float, P2: float) -> float: ... def dP_orifice(D: float, Do: float, P1: float, P2: float, C: float) -> float: ... def dP_venturi_tube(D: float, Do: float, P1: float, P2: float) -> float: ... def dP_wedge_meter(D: float, H: float, P1: float, P2: float) -> float: ... def diameter_ratio_cone_meter(D: float, Dc: float) -> float: ... def diameter_ratio_wedge_meter(D: float, H: float) -> float: ... def differential_pressure_meter_C_epsilon( D: float, D2: float, m: float, P1: float, P2: float, rho: float, mu: float, k: float, meter_type: str, taps: Optional[str] = ..., tap_position: Optional[str] = ..., C_specified: Optional[float] = ..., epsilon_specified: Optional[int] = ... ) -> Union[Tuple[float, float], Tuple[float, int]]: ... def differential_pressure_meter_beta(D: float, D2: float, meter_type: str) -> float: ... def differential_pressure_meter_dP( D: float, D2: float, P1: float, P2: float, C: Optional[float] = ..., meter_type: str = ... ) -> float: ... def differential_pressure_meter_solver( D: float, rho: float, mu: float, k: Optional[float] = ..., D2: Optional[float] = ..., P1: Optional[float] = ..., P2: Optional[float] = ..., m: Optional[float] = ..., meter_type: str = ..., taps: Optional[str] = ..., tap_position: Optional[str] = ..., C_specified: Optional[float] = ..., epsilon_specified: Optional[int] = ... ) -> float: ... def discharge_coefficient_to_K(D: float, Do: float, C: float) -> float: ... def err_dp_meter_solver_D2( D2: float, D: float, m: float, P1: float, P2: float, rho: float, mu: float, k: float, meter_type: str, taps: Optional[str], tap_position: Optional[str], C_specified: Optional[float], epsilon_specified: None ) -> float: ... def err_dp_meter_solver_P1( P1: float, D: float, D2: float, m: float, P2: float, rho: float, mu: float, k: float, meter_type: str, taps: Optional[str], tap_position: Optional[str], C_specified: Optional[float], epsilon_specified: None ) -> float: ... def err_dp_meter_solver_P2( P2: float, D: float, D2: float, m: float, P1: float, rho: float, mu: float, k: float, meter_type: str, taps: Optional[str], tap_position: Optional[str], C_specified: Optional[float], epsilon_specified: None ) -> float: ... def err_dp_meter_solver_m( m_D: float, D: float, D2: float, P1: float, P2: float, rho: float, mu: float, k: float, meter_type: str, taps: Optional[str], tap_position: Optional[str], C_specified: Optional[float], epsilon_specified: Optional[int] ) -> float: ... def flow_coefficient(D: float, Do: float, C: float) -> float: ... def flow_meter_discharge( D: float, Do: float, P1: float, P2: float, rho: float, C: float, expansibility: float = ... ) -> float: ... def nozzle_expansibility( D: float, Do: float, P1: float, P2: float, k: float, beta: Optional[float] = ... ) -> float: ... def orifice_expansibility(D: float, Do: float, P1: float, P2: float, k: float) -> float: ... def orifice_expansibility_1989(D: float, Do: float, P1: float, P2: float, k: float) -> float: ... def velocity_of_approach_factor(D: float, Do: float) -> float: ... __all__: List[str]fluids-1.0.22/fluids/design_climate.py0000644000175000017500000011000514302004506017206 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from __future__ import division __all__ = ['get_clean_isd_history', 'IntegratedSurfaceDatabaseStation', 'get_closest_station', 'get_station_year_text', 'gsod_day_parser', 'StationDataGSOD', 'heating_degree_days', 'cooling_degree_days', 'stations', # 'geopy_geolocator', 'geopy_cache', 'SimpleGeolocatorCache', 'geocode'] try: # pragma: no cover from cStringIO import StringIO except: # pragma: no cover from io import BytesIO as StringIO from io import open import os import gzip import datetime from calendar import isleap from collections import namedtuple import numpy as np from fluids.core import F2K from fluids.constants import mile, knot, inch from scipy.spatial import cKDTree from scipy.stats import scoreatpercentile try: # pragma: no cover from urllib.request import urlopen from urllib.error import HTTPError except ImportError: # pragma: no cover from urllib2 import urlopen from urllib2 import HTTPError try: # pragma: no cover from appdirs import user_data_dir, user_config_dir data_dir = user_config_dir('fluids') except ImportError: # pragma: no cover data_dir = '' try: # pragma: no cover import geopy from geopy.location import Location # No point loading cPickle or sqlite for this reason import sqlite3 except ImportError: # pragma: no cover geopy = None Location = None try: # pragma: no cover # python 3 compat import cPickle as pickle except: # pragma: no cover import pickle # Geopy cache/lookup layer, also requires appdirs for caching, can work without geolocator = None geolocator_user_agent = 'fluids' geolocator_disk_cache_name = 'simple_geolocator_cache.sqlite3' geolocator_disk_cache_loc = os.path.join(data_dir, geolocator_disk_cache_name) simple_geopy_cache = None geopy_missing_msg = '''Geocoder module `geopy` is required for this functionality.''' def geopy_geolocator(): """Lazy loader for geocoder from geopy. This currently loads the `Nominatim` geocode and returns an instance of it, taking ~2 us. """ global geolocator if geolocator is None: try: from geopy.geocoders import Nominatim except ImportError: return None geolocator = Nominatim(user_agent=geolocator_user_agent) return geolocator return geolocator def geopy_cache(): """Lazy loader for the singleton `SimpleGeolocatorCache`. This creates a sqlite database if one does not exist and initializes a connection to it. """ global simple_geopy_cache if simple_geopy_cache is None: simple_geopy_cache = SimpleGeolocatorCache(geolocator_disk_cache_loc) return simple_geopy_cache return simple_geopy_cache class SimpleGeolocatorCache(object): """Very basic on-disk address -> (lat, lon) cache, using Python's sqlite database for on-disk persistence. Offers very reasonable performance compared to online lookups. """ def __init__(self, file_name): self.connection = conn = sqlite3.connect(file_name) cursor = self.connection.cursor() cursor.execute('CREATE TABLE IF NOT EXISTS geopy ( ' 'address STRING PRIMARY KEY, latitude real, longitude real )') self.connection.commit() def cached_address(self, address): cursor = self.connection.cursor() cursor.execute('SELECT latitude, longitude FROM geopy WHERE address=?', (address, )) res = cursor.fetchone() if res is None: return None return res def cache_address(self, address, latitude, longitude): cursor = self.connection.cursor() cursor.execute('INSERT INTO geopy(address, latitude, longitude) VALUES(?, ?, ?)', (address, latitude, longitude)) self.connection.commit() def geocode(address): """Query function to obtain a latitude and longitude from a location string such as `Houston, TX` or`Colombia`. This uses an online lookup, currently wrapping the `geopy` library, and providing an on-disk cache of queries. Parameters ---------- address : str Search string to retrieve the location, [-] Returns ------- latitude : float Latitude of address, [degrees] longitude : float Longitude of address, [degrees] Notes ----- If a query has been retrieved before, this function will take under 1 ms; it takes several seconds otherwise. Examples -------- >>> geocode('Fredericton, NB') # doctest: +SKIP (45.966425, -66.645813) """ loc_tuple = None try: cache = geopy_cache() loc_tuple = cache.cached_address(address) except: # Handle bugs in the cache, i.e. if there is no space on disk to create # the database, by ignoring them pass if loc_tuple is not None: return loc_tuple else: geocoder = geopy_geolocator() if geocoder is None: return geopy_missing_msg location = geocoder.geocode(address) try: cache.cache_address(address, location.latitude, location.longitude) except: pass return (location.latitude, location.longitude) folder = os.path.join(os.path.dirname(__file__), 'data') def heating_degree_days(T, T_base=291.4833333333333, truncate=True): r'''Calculates the heating degree days for a period of time. .. math:: \text{heating degree days} = max(T - T_{base}, 0) Parameters ---------- T : float Measured temperature; sometimes an average over a length of time is used, other times the average of the lowest and highest temperature in a period are used, [K] T_base : float, optional Reference temperature for the degree day calculation, defaults to 65 °F (18.33 °C, 291.483 K), the value most used in the US, [K] truncate : bool If truncate is True, no negative values will be returned; if negative, the value is truncated to 0, [-] Returns ------- heating_degree_days : float Degree above the base temperature multiplied by the length of time of the measurement, normally days [day*K] Notes ----- Some common base temperatures are 18 °C (Canada), 15.5 °C (EU), 17 °C (Denmark, Finland), 12 °C Switzerland. The base temperature should always be presented with the results. The time unit does not have to be days; it can be any time unit, and the calculation behaves the same. Examples -------- >>> heating_degree_days(303.8) 12.31666666666672 >>> heating_degree_days(273) 0.0 >>> heating_degree_days(322, T_base=300) 22 References ---------- .. [1] "Heating Degree Day." Wikipedia, January 24, 2018. https://en.wikipedia.org/w/index.php?title=Heating_degree_day&oldid=822187764. ''' dd = T - T_base if truncate and dd < 0.0: dd = 0.0 return dd def cooling_degree_days(T, T_base=283.15, truncate=True): r'''Calculates the cooling degree days for a period of time. .. math:: \text{cooling degree days} = max(T_{base} - T, 0) Parameters ---------- T : float Measured temperature; sometimes an average over a length of time is used, other times the average of the lowest and highest temperature in a period are used, [K] T_base : float, optional Reference temperature for the degree day calculation, defaults to 10 °C, 283.15 K, a common value, [K] truncate : bool If truncate is True, no negative values will be returned; if negative, the value is truncated to 0, [-] Returns ------- cooling_degree_days : float Degree below the base temperature multiplied by the length of time of the measurement, normally days [day*K] Notes ----- The base temperature should always be presented with the results. The time unit does not have to be days; it can be time unit, and the calculation behaves the same. Examples -------- >>> cooling_degree_days(250) 33.14999999999998 >>> cooling_degree_days(300) 0.0 >>> cooling_degree_days(250, T_base=300) 50 References ---------- .. [1] "Heating Degree Day." Wikipedia, January 24, 2018. https://en.wikipedia.org/w/index.php?title=Heating_degree_day&oldid=822187764. ''' dd = T_base - T if truncate and dd < 0.0: dd = 0.0 return dd def get_clean_isd_history(dest=os.path.join(folder, 'isd-history-cleaned.tsv'), url="ftp://ftp.ncdc.noaa.gov/pub/data/noaa/isd-history.csv"): # pragma: no cover """Basic method to update the isd-history file from the NOAA. This is useful as new weather stations are updated all the time. This function requires pandas to run. If fluids is installed for the superuser, this method must be called in an instance of Python running as the superuser (administrator). Retrieving the file from ftp typically takes several seconds. Pandas reads the file in ~30 ms and writes it in ~220 ms. Reading it with the code below takes ~220 ms but is necessary to prevent a pandas dependency. Parameters ---------- dest : str, optional The file to store the data retrieved; leave as the default argument for it to be accessible by fluids. url : str, optional The location of the data file; this can be anywhere that can be read by pandas, including a local file as would be useful in an offline situation. """ import pandas as pd df = pd.read_csv(url, dtype={'USAF': str, 'WBAN': str}) df.to_csv(dest, sep='\t', index=False, header=False) class IntegratedSurfaceDatabaseStation(object): """Class to hold data on a weather station in the Integrated Surface Database. License information for the database can be found at the following link: https://data.noaa.gov/dataset/global-surface-summary-of-the-day-gsod Note: Of the 28000 + stations in the database, approximately 3000 have WBAN identifiers; 26000 have unique names; 24000 have USAF identifiers; and there are only 25800 unique lat/lon pairs. To uniquely represent a weather station, a combination of identifiers must be used. (Name, USAF, WBAN) makes a good choice. Parameters ---------- USAF : str or None if unassigned Air Force station ID. May contain a letter in the first position. WBAN : str or None if unassigned NCDC WBAN number NAME : str Name of the station; ex. 'CENTRAL COLORADO REGIONAL AP' CTRY : str or None if unspecified FIPS country ID ST : str or None if not in the US State for US stations ICAO : str or None if not an airport ICAO airport code LAT : float Latitude with a precision of one thousandths of a decimal degree, [degrees] LON : float Longitude with a precision of one thousandths of a decimal degree, [degrees] ELEV : float Elevation of weather station, [m] BEGIN : float Beginning Period Of Record (YYYYMMDD). There may be reporting gaps within the P.O.R. END : Ending Period Of Record (YYYYMMDD). There may be reporting gaps within the P.O.R. """ __slots__ = ['USAF', 'WBAN', 'NAME', 'CTRY', 'ST', 'ICAO', 'LAT', 'LON', 'ELEV', 'BEGIN', 'END', 'raw_data', 'parsed_data'] def __repr__(self): s = ('' ) return s%(self.NAME, self.CTRY, self.USAF, self.WBAN, self.LAT, self.LON, str(self.BEGIN)[0:4], str(self.END)[0:4]) def __init__(self, USAF, WBAN, NAME, CTRY, ST, ICAO, LAT, LON, ELEV, BEGIN, END): try: self.USAF = int(USAF) except: self.USAF = USAF # Nones self.WBAN = WBAN self.NAME = NAME self.CTRY = CTRY self.ST = ST self.ICAO = ICAO self.LAT = LAT self.LON = LON self.ELEV = ELEV self.BEGIN = int(BEGIN) self.END = int(END) class StationDataGSOD(object): # Holds data, caches and retrieves data def __init__(self, station, data_dir_override=None): self.data_dir_override = data_dir_override self.station = station self.begin = datetime.datetime.strptime(str(self.station.BEGIN), '%Y%m%d') self.end = datetime.datetime.strptime(str(self.station.END), '%Y%m%d') self.year_range = range(self.begin.year, self.end.year + 1) # Would be nice to create these later, when using a download_data method self.raw_text = {} self.raw_data = {} self.parsed_data = {} self.load_empty_vectors() self.download_data() self.parse_data() def load_empty_vectors(self): for year in self.year_range: days_in_year = 366 if isleap(year) else 365 self.raw_data[year] = [None]*days_in_year self.parsed_data[year] = [None]*days_in_year self.raw_text[year] = None # days = [None]*days_in_year(y) def download_data(self): for year in self.year_range: if self.raw_text[year] is None: try: year_data = get_station_year_text(self.station.USAF, self.station.WBAN, year, data_dir_override=self.data_dir_override) self.raw_text[year] = year_data except: pass def parse_data(self): for year, data in self.raw_text.items(): if data is not None: days = self.parsed_data[year] for line in data.split('\n')[1:-1]: parsed = gsod_day_parser(line) doy = parsed.DATE.timetuple().tm_yday-1 days[doy] = parsed def coldest_month(self, older_year=None, newer_year=None, minimum_days=23): # Tested month_data = self.month_average_temperature(older_year=older_year, newer_year=newer_year, minimum_days=minimum_days) return month_data.index(min(month_data)) def warmest_month(self, older_year=None, newer_year=None, minimum_days=23): # Tested month_data = self.month_average_temperature(older_year=older_year, newer_year=newer_year, minimum_days=minimum_days) return month_data.index(max(month_data)) def month_average_temperature(self, older_year=None, newer_year=None, include_yearly=False, minimum_days=23): ''' >> station = get_closest_station(38.8572, -77.0369) >> station_data = StationDataGSOD(station) >> station_data.month_average_temperature(1990, 2000, include_yearly=False) [276.1599380905833, 277.5375516246206, 281.1881231671554, 286.7367003367004, 291.8689638318671, 296.79545454545456, 299.51868686868687, 298.2097914630174, 294.4116161616162, 288.25883023786247, 282.3188552188553, 277.8282339524275] ''' # Take years, make them inclusive; add minimum valid days. year_month_averages = {} year_month_counts = {} for year, data in self.parsed_data.items(): if not (older_year <= year <= newer_year): continue # Ignore out-of-range years easily year_month_averages[year] = [0.0]*12 year_month_counts[year] = [0]*12 for i, day in enumerate(data): if day is None: continue # Don't do these comparisons to make it fast if day.DATE.year < older_year or day.DATE.year > newer_year: continue # Ignore out-of-range days as possible T = day.TEMP if T is None: continue # Cache these lookups year_month_averages[year][day.DATE.month-1] += T year_month_counts[year][day.DATE.month-1] += 1 for month in range(12): count = year_month_counts[year][month] if count < minimum_days: ans = None else: ans = year_month_averages[year][month]/count year_month_averages[year][month] = ans # Compute the average of the month actual_averages = [0.0]*12 actual_averages_counts = [0]*12 for year, average in year_month_averages.items(): for month in range(12): if average is not None and average[month] is not None: count = actual_averages_counts[month] if count is None: count = 1 else: count += 1 actual_averages_counts[month] = count month_average_sum = actual_averages[month] if month_average_sum is None: month_average_sum = average[month] else: month_average_sum += average[month] actual_averages[month] = month_average_sum for month in range(12): actual_averages[month] = actual_averages[month]/actual_averages_counts[month] # Don't set anything as properties - too many variables used in calculating thems # Speed is not that important. if include_yearly: return actual_averages, year_month_averages else: return actual_averages # Copy and paste def month_average_windspeed(self, older_year=None, newer_year=None, include_yearly=False, minimum_days=23): # Take years, make them inclusive; add minimum valid days. year_month_averages = {} year_month_counts = {} for year, data in self.parsed_data.items(): if not (older_year <= year <= newer_year): continue # Ignore out-of-range years easily year_month_averages[year] = [0.0]*12 year_month_counts[year] = [0]*12 for i, day in enumerate(data): if day is None: continue # Don't do these comparisons to make it fast if day.DATE.year < older_year or day.DATE.year > newer_year: continue # Ignore out-of-range days as possible wind_speed = day.WDSP if wind_speed is None: continue # Cache these lookups year_month_averages[year][day.DATE.month-1] += wind_speed year_month_counts[year][day.DATE.month-1] += 1 for month in range(12): count = year_month_counts[year][month] if count < minimum_days: ans = None else: ans = year_month_averages[year][month]/count year_month_averages[year][month] = ans # Compute the average of the month actual_averages = [0.0]*12 actual_averages_counts = [0]*12 for year, average in year_month_averages.items(): for month in range(12): if average is not None and average[month] is not None: count = actual_averages_counts[month] if count is None: count = 1 else: count += 1 actual_averages_counts[month] = count month_average_sum = actual_averages[month] if month_average_sum is None: month_average_sum = average[month] else: month_average_sum += average[month] actual_averages[month] = month_average_sum for month in range(12): actual_averages[month] = actual_averages[month]/actual_averages_counts[month] # Don't set anything as properties - too many variables used in calculating thems # Speed is not that important. if include_yearly: return actual_averages, year_month_averages else: return actual_averages def percentile_extreme_condition(self, older_year=None, newer_year=None, include_yearly=False, minimum_days=23, attr='WDSP'): # Really need to normalize data with interpolation etc here. # Need to get the data, and process it and score interpolation regimes. # Or could just randomly drop data and try to fill it in. accepted_values = [] for year, data in self.parsed_data.items(): if not (older_year <= year <= newer_year): continue # Ignore out-of-range years easily stations = [] _latlongs = [] '''Read in the parsed data into 1) a list of latitudes and longitudes, temporary, which will get converted to a numpy array for use in KDTree 2) a list of IntegratedSurfaceDatabaseStation objects; the query will return the index of the nearest weather stations. ''' with open(os.path.join(folder, 'isd-history-cleaned.tsv'), encoding='utf-8') as f: for line in f: values = line.split('\t') for i in range(0, 11): # First two are not values v = values[i] if v == '': values[i] = None # '' case else: try: if i > 2: values[i] = float(v) if int(v) == 99999: values[i] = None except: continue lat, lon = values[6], values[7] if lat and lon: # Some stations have no lat-long; this isn't useful stations.append(IntegratedSurfaceDatabaseStation(*values)) _latlongs.append((lat, lon)) _latlongs = np.array(_latlongs) station_count = len(stations) kd_tree = cKDTree(_latlongs) # _latlongs must be unchanged as data is not copied def get_closest_station(latitude, longitude, minumum_recent_data=20140000, match_max=100): """Query function to find the nearest weather station to a particular set of coordinates. Optionally allows for a recent date by which the station is required to be still active at. Parameters ---------- latitude : float Latitude to search for nearby weather stations at, [degrees] longitude : float Longitude to search for nearby weather stations at, [degrees] minumum_recent_data : int, optional Date that the weather station is required to have more recent weather data than; format YYYYMMDD; set this to 0 to not restrict data by date. match_max : int, optional The maximum number of results in the KDTree to search for before applying the filtering criteria; an internal parameter which is increased automatically if the default value is insufficient [-] Returns ------- station : IntegratedSurfaceDatabaseStation Instance of IntegratedSurfaceDatabaseStation which was nearest to the requested coordinates and with sufficiently recent data available [-] Notes ----- Searching for 100 stations is a reasonable choice as it takes, ~70 microseconds vs 50 microsecond to find only 1 station. The search does get slower as more points are requested. Bad data is returned from a KDTree search if more points are requested than are available. Examples -------- >>> get_closest_station(51.02532675, -114.049868485806, 20150000) """ # Both station strings may be important # Searching for 100 stations is fine, 70 microseconds vs 50 microsecond for 1 # but there's little point for more points, it gets slower. # bad data is returned if k > station_count distances, indexes = kd_tree.query([latitude, longitude], k=min(match_max, station_count)) # for i in indexes: latlon = _latlongs[i] enddate = stations[i].END # Iterate for all indexes until one is found whose date is current if enddate > minumum_recent_data: return stations[i] if match_max < station_count: return get_closest_station(latitude, longitude, minumum_recent_data=minumum_recent_data, match_max=match_max*10) raise ValueError('Could not find a station with more recent data than ' 'specified near the specified coordinates.') # This should be aggressively cached def get_station_year_text(WMO, WBAN, year, data_dir_override=None): """Basic method to download data from the GSOD database, given a station identifier and year. Parameters ---------- WMO : int or None World Meteorological Organization (WMO) identifiers, [-] WBAN : int or None Weather Bureau Army Navy (WBAN) weather station identifier, [-] year : int Year data should be retrieved from, [year] data_dir_override : str, optional Directory to store the downloaded data (instead of the configuration directory), [-] Returns ------- data : str Downloaded data file """ if WMO is None: WMO = 999999 if WBAN is None: WBAN = 99999 station = str(int(WMO)) + '-' + str(WBAN) if data_dir_override is None: gsod_year_dir = os.path.join(data_dir, 'gsod', str(year)) else: gsod_year_dir = os.path.join(data_dir_override, str(year)) path = os.path.join(gsod_year_dir, station + '.op') if os.path.exists(path): with open(path, 'r') as f: data = f.read() if data and data != 'Exception': return data else: # Remove the bad file and try to redownload it try: os.remove(path) except: pass # raise ValueError(data) toget = ('ftp://ftp.ncdc.noaa.gov/pub/data/gsod/' + str(year) + '/' + station + '-' + str(year) +'.op.gz') try: data = urlopen(toget, timeout=5) except Exception as e: if not os.path.exists(gsod_year_dir): os.makedirs(gsod_year_dir) with open(path, 'w') as f: f.write('Exception') raise ValueError('Could not obtain desired data; check ' 'if the year has data published for the ' 'specified station and the station was specified ' 'in the correct form. The full error is %s' %(e)) data = data.read() data_thing = StringIO(data) f = gzip.GzipFile(fileobj=data_thing, mode="r") year_station_data = f.read() try: year_station_data = year_station_data.decode('utf-8') except: pass # Cache the data for future use if not os.path.exists(gsod_year_dir): os.makedirs(gsod_year_dir) open(path, 'w').write(year_station_data) return year_station_data gsod_fields = ['DATE', # 15-18 int year; 19-22 int month/day 'TEMP', # 25-30 Real Mean temperature for the day in degrees Fahrenheit to tenths. Missing = 9999.9 'TEMP_COUNT', # 32-33 Int. Number of observations used in calculating mean temperature 'DEWP', # 36-41 Real Mean dew point for the day in degrees Fahrenheit to tenths. Missing = 9999.9 'DEWP_COUNT', # 43-44 Int. Number of observations used in calculating mean dew point 'SLP', # 47-52 Real Mean sea level pressure for the day in millibars to tenths. Missing = 9999.9 'SLP_COUNT', # 54-55 Int. Number of observations used in calculating mean sea level pressure 'STP', # 58-63 Real Mean station pressure for the day in millibars to tenths. Missing = 9999.9 'STP_COUNT', # 65-66 Int. Number of observations used in calculating mean station pressure 'VISIB', # 69-73 Real Mean visibility for the day in miles to tenths. Missing = 999.9 'VISIB_COUNT', # 75-76 Int. Number of observations used in calculating mean visibility 'WDSP', # 79-83 Real Mean wind speed for the day in knots to tenths. Missing = 999.9 'WDSP_COUNT', # 85-86 Int. Number of observations used in calculating mean wind speed 'MXSPD', # 89-93 Real Maximum sustained wind speed reported for the day in knots to tenths. Missing = 999.9 'GUST', # 96-100 Real Maximum wind gust reported for the day in knots to tenths. Missing = 999.9 'MAX', # 103-108 Real Maximum temperature reported during the # day in Fahrenheit to tenths--time of max temp report varies by country and # region, so this will sometimes not be the max for the calendar day. # Missing = 9999.9; FLAG of '*' is present on 109-109! 'MIN', # 111-116 Real Minimum temperature reported during the day in Fahrenheit to tenths--time of min # temp report varies by country and region, so this will sometimes not be # the min for the calendar day. Missing = 9999.9 FLAG of '*' is present on 117-117! 'PRCP', # 119-123 Real Total precipitation (rain and/or melted snow) reported during the day in inches # and hundredths; will usually not end with the midnight observation--i.e., # may include latter part of previous day. .00 indicates no measurable # precipitation (includes a trace). # Missing = 99.99 'SNDP', # 126-130 Real Snow depth in inches to tenths--last report for the day if reported more than # once. Missing = 999.9 Note: Most stations do not report '0' on days with no snow on the # ground--therefore, '999.9' will often appear on these days. 'FRSHTT' # 133-138 Int. Indicators (1 = yes, 0 = no/not reported) for the occurrence during the day of: # Fog ('F' - 1st digit). # Rain or Drizzle ('R' - 2nd digit). # Snow or Ice Pellets ('S' - 3rd digit). # Hail ('H' - 4th digit). # Thunder ('T' - 5th digit). # Tornado or Funnel Cloud ('T' - 6th digit). ] # Use TEMP and DEWP and STP to calculate wet bulb temperatures # Values to be converted to floats always gsod_float_fields = ('TEMP', 'DEWP', 'SLP', 'STP', 'VISIB', 'WDSP', 'MXSPD', 'GUST', 'MAX', 'MIN', 'PRCP', 'SNDP') # Values to be converted to ints always gsod_int_fields = ('TEMP_COUNT', 'DEWP_COUNT', 'SLP_COUNT', 'STP_COUNT', 'VISIB_COUNT', 'WDSP_COUNT') # Values which signify flags gsod_flag_chars = '*ABCDEFGHI' # Values which should be converted to None, as normally there is no value gsod_bad_values = frozenset(['99.99', '999.9', '9999.9']) gsod_indicator_names = ['fog', 'rain', 'snow_ice', 'hail', 'thunder', 'tornado'] five_ninths = 5.0/9.0 gsod_day = namedtuple('gsod_day', gsod_fields + gsod_indicator_names) def gsod_day_parser(line, SI=True, to_datetime=True): """One line (one file) parser of data in the format of the GSOD database. Returns all parsed results as a namedtuple for reduced memory consumption. Will convert all data to base SI units unless the `SI` flag is set to False. As the values are rounded to one or two decimal places in the GSOD database in Imperial units, it may be useful to look at the values directly. The names columns of the columns in the GSOD database are retained and used as the attributes of the namedtuple results. The day, month, and year are normally converted to a datetime instance in resulting namedtuple; this behavior can be disabled by setting the `datetime` flag to False; it will be a string in the format YYYYMMDD if so. This may be useful because datetime conversion roughly doubles the speed of this function. Parameters ---------- line : str Line in format of GSOD documentation, [-] SI : bool Whether or not the results get converted to base SI units, [-] to_datetime : bool Whether or not the date gets converted to a datetime instance or stays as a string, [-] Returns ------- gsod_day_instance : gsod_day namedtuple with fields described in the source (all values in SI units, if `SI` is True, i.e. meters, m/s, Kelvin, Pascal; otherwise the original unit set is used), [-] """ # Ignore STN--- and WBAN, 8-12 characters fields = line.strip().split()[2:] # For the case the field is blank, set it to None; strip it either way for i in range(len(fields)): field = fields[i].rstrip() if not field: field = None fields[i] = field obj = dict(zip(gsod_fields, fields)) # Convert the date to a datetime object if specified if to_datetime and obj['DATE'] is not None: date = obj['DATE'] obj['DATE'] = datetime.datetime(int(date[0:4]), int(date[4:6]), int(date[6:])) #obj['DATE'] = datetime.datetime.strptime(obj['DATE'], '%Y%m%d') # Parse float values as floats for field in gsod_float_fields: value = obj[field].rstrip(gsod_flag_chars) if value in gsod_bad_values: value = None else: value = float(value) obj[field] = value if SI: # All temperatures are in deg F for field in ('TEMP', 'DEWP', 'MAX', 'MIN'): value = obj[field] if value is not None: # F2K inline for efficiency unfortunately obj[field] = (value + 459.67)*five_ninths # Convert visibility, wind speed, pressures # to si units of meters, Pascal, and meters/second. if obj['VISIB'] is not None: obj['VISIB'] = obj['VISIB']*mile if obj['PRCP'] is not None: obj['PRCP'] = obj['PRCP']*inch if obj['SNDP'] is not None: obj['SNDP'] = obj['SNDP']*inch if obj['WDSP'] is not None: obj['WDSP'] = obj['WDSP']*knot if obj['MXSPD'] is not None: obj['MXSPD'] = obj['MXSPD']*knot if obj['GUST'] is not None: obj['GUST'] = obj['GUST']*knot if obj['SLP'] is not None: obj['SLP'] = obj['SLP']*100.0 if obj['STP'] is not None: obj['STP'] = obj['STP']*100.0 # Parse int values as ints for field in gsod_int_fields: value = obj[field] if value is not None: obj[field] = int(value) indicator_values = [flag == '1' for flag in obj['FRSHTT']] obj.update(zip(gsod_indicator_names, indicator_values)) return gsod_day(**obj) fluids-1.0.22/fluids/particle_size_distribution.pyi0000644000175000017500000001100114302004506022040 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from numpy import ( float64, ndarray, ) from typing import ( List, Optional, Union, ) def cdf_Gates_Gaudin_Schuhman(d: float, d_characteristic: float, m: float) -> float: ... def cdf_Rosin_Rammler(d: float, k: float, m: float) -> float: ... def cdf_lognormal(d: float, d_characteristic: float, s: float) -> float: ... def pdf_Gates_Gaudin_Schuhman(d: float, d_characteristic: float, m: float) -> float: ... def pdf_Gates_Gaudin_Schuhman_basis_integral(d: float, d_characteristic: float, m: float, n: int) -> float: ... def pdf_Rosin_Rammler(d: float, k: float, m: float) -> float: ... def pdf_Rosin_Rammler_basis_integral(d: float, k: float, m: float, n: int) -> float: ... def pdf_lognormal(d: float, d_characteristic: float, s: float) -> float: ... def pdf_lognormal_basis_integral(d: float, d_characteristic: float, s: float, n: float) -> float: ... def psd_spacing( d_min: Optional[float] = ..., d_max: Optional[float] = ..., pts: int = ..., method: str = ... ) -> List[float]: ... class PSDInterpolated: def __init__( self, ds: Union[List[float], ndarray, List[float64]], fractions: Union[List[float], List[float64]], order: int = ..., monotonic: bool = ... ) -> None: ... def _cdf(self, d: Union[int, float64, float]) -> float: ... def _pdf(self, d: float) -> float: ... def _pdf_basis_integral(self, d: Union[float64, float], n: int) -> float: ... class PSDLognormal: def __init__( self, d_characteristic: float, s: float, order: int = ..., d_min: Optional[float] = ..., d_max: Optional[float] = ... ) -> None: ... def _cdf(self, d: float) -> float: ... def _pdf(self, d: float) -> float: ... def _pdf_basis_integral(self, d: float, n: float) -> float: ... class ParticleSizeDistribution: @property def Dis(self) -> Union[List[float], List[float64]]: ... def __init__( self, ds: Union[List[float], List[float], ndarray], fractions: Union[List[float], List[int]], cdf: bool = ..., order: int = ..., monotonic: bool = ... ) -> None: ... def _cdf(self, d: Union[int, float64, float]) -> float: ... def _pdf(self, d: float) -> float: ... def _pdf_basis_integral(self, d: Union[float64, float], n: int) -> float: ... def di_power(self, i: int, power: int = ...) -> Union[float64, float]: ... @property def interpolated(self) -> PSDInterpolated: ... def mean_size(self, p: int, q: int) -> Union[float64, float]: ... @property def vssa(self) -> float: ... class ParticleSizeDistributionContinuous: def _pdf_basis_integral_definite( self, d_min: Union[float64, float], d_max: Union[float64, float], n: float ) -> float: ... def cdf(self, d: Union[int, float64, float], n: Optional[int] = ...) -> float: ... def cdf_discrete(self, ds: Union[List[float], ndarray], n: None = ...) -> List[float]: ... def dn(self, fraction: Union[int, float64, float], n: None = ...) -> Union[float64, float]: ... def ds_discrete( self, d_min: Optional[float] = ..., d_max: Optional[float] = ..., pts: int = ..., limit: float = ..., method: str = ... ) -> List[float]: ... def fractions_discrete(self, ds: Union[List[float], ndarray], n: None = ...) -> List[float]: ... def mean_size(self, p: float, q: float) -> float: ... def mean_size_ISO(self, k: int, r: int) -> float: ... def pdf(self, d: float, n: Optional[int] = ...) -> float: ... @property def vssa(self) -> float: ... class Sieve: def __init__( self, designation: str, old_designation: Optional[str] = ..., opening: Optional[float] = ..., opening_inch: Optional[float] = ..., Y_variation_avg: Optional[float] = ..., X_variation_max: Optional[float] = ..., max_opening: Optional[float] = ..., compliance_samples: Optional[float] = ..., compliance_sd: Optional[float] = ..., inspection_samples: Optional[float] = ..., inspection_sd: Optional[float] = ..., calibration_samples: Optional[float] = ..., calibration_sd: Optional[float] = ..., d_wire: Optional[float] = ..., d_wire_min: Optional[float] = ..., d_wire_max: Optional[float] = ... ) -> None: ... __all__: List[str]fluids-1.0.22/fluids/two_phase.py0000644000175000017500000032410314302004506016236 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains functions for calculating two-phase pressure drop. It also contains correlations for flow regime. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Interfaces ---------- .. autofunction:: two_phase_dP .. autofunction:: two_phase_dP_methods .. autofunction:: two_phase_dP_acceleration .. autofunction:: two_phase_dP_gravitational .. autofunction:: two_phase_dP_dz_acceleration .. autofunction:: two_phase_dP_dz_gravitational Two Phase Pressure Drop Correlations ------------------------------------ .. autofunction:: Beggs_Brill .. autofunction:: Lockhart_Martinelli .. autofunction:: Friedel .. autofunction:: Chisholm .. autofunction:: Kim_Mudawar .. autofunction:: Baroczy_Chisholm .. autofunction:: Theissing .. autofunction:: Muller_Steinhagen_Heck .. autofunction:: Gronnerud .. autofunction:: Lombardi_Pedrocchi .. autofunction:: Jung_Radermacher .. autofunction:: Tran .. autofunction:: Chen_Friedel .. autofunction:: Zhang_Webb .. autofunction:: Xu_Fang .. autofunction:: Yu_France .. autofunction:: Wang_Chiang_Lu .. autofunction:: Hwang_Kim .. autofunction:: Zhang_Hibiki_Mishima .. autofunction:: Mishima_Hibiki .. autofunction:: Bankoff Two Phase Flow Regime Correlations ---------------------------------- .. autofunction:: Mandhane_Gregory_Aziz_regime .. autofunction:: Taitel_Dukler_regime """ from __future__ import division __all__ = ['two_phase_dP', 'two_phase_dP_methods', 'two_phase_dP_acceleration', 'two_phase_dP_dz_acceleration', 'two_phase_dP_gravitational', 'two_phase_dP_dz_gravitational', 'Beggs_Brill', 'Lockhart_Martinelli', 'Friedel', 'Chisholm', 'Kim_Mudawar', 'Baroczy_Chisholm', 'Theissing', 'Muller_Steinhagen_Heck', 'Gronnerud', 'Lombardi_Pedrocchi', 'Jung_Radermacher', 'Tran', 'Chen_Friedel', 'Zhang_Webb', 'Xu_Fang', 'Yu_France', 'Wang_Chiang_Lu', 'Hwang_Kim', 'Zhang_Hibiki_Mishima', 'Mishima_Hibiki', 'Bankoff', 'Mandhane_Gregory_Aziz_regime', 'Taitel_Dukler_regime'] from math import pi, log, exp, sin, cos, radians, log10, sqrt from fluids.constants import g, deg2rad from fluids.numerics import splev, implementation_optimize_tck from fluids.friction import friction_factor from fluids.core import Reynolds, Froude, Weber, Confinement, Bond, Suratman from fluids.two_phase_voidage import homogeneous, Lockhart_Martinelli_Xtt Beggs_Brill_dat = {'segregated': (0.98, 0.4846, 0.0868), 'intermittent': (0.845, 0.5351, 0.0173), 'distributed': (1.065, 0.5824, 0.0609)} def _Beggs_Brill_holdup(regime, lambda_L, Fr, angle, LV): if regime == 0: a, b, c = 0.98, 0.4846, 0.0868 elif regime == 2: a, b, c = 0.845, 0.5351, 0.0173 elif regime == 3: a, b, c = 1.065, 0.5824, 0.0609 HL0 = a*lambda_L**b*Fr**-c if HL0 < lambda_L: HL0 = lambda_L if angle > 0.0: # uphill # h used instead of g to avoid conflict with gravitational constant if regime == 0: d, e, f, h = 0.011, -3.768, 3.539, -1.614 elif regime == 2: d, e, f, h = 2.96, 0.305, -0.4473, 0.0978 elif regime == 3: # Dummy values for distributed - > psi = 1. d, e, f, h = 2.96, 0.305, -0.4473, 0.0978 elif angle <= 0: # downhill d, e, f, h = 4.70, -0.3692, 0.1244, -0.5056 C = (1.0 - lambda_L)*log(d*lambda_L**e*LV**f*Fr**h) if C < 0.0: C = 0.0 # Correction factor for inclination angle Psi = 1.0 + C*(sin(1.8*angle) - 1.0/3.0*sin(1.8*angle)**3) if (angle > 0 and regime == 3) or angle == 0: Psi = 1.0 Hl = HL0*Psi return Hl def Beggs_Brill(m, x, rhol, rhog, mul, mug, sigma, P, D, angle, roughness=0.0, L=1.0, g=g, acceleration=True): r'''Calculates the two-phase pressure drop according to the Beggs-Brill correlation ([1]_, [2]_, [3]_). Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Mass quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] sigma : float Surface tension, [N/m] P : float Pressure of fluid (used only if `acceleration=True`), [Pa] D : float Diameter of pipe, [m] angle : float The angle of the pipe with respect to the horizontal, [degrees] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] g : float, optional Acceleration due to gravity, [m/s^2] acceleration : bool Whether or not to include the original acceleration component, [-] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- The original acceleration formula is fairly primitive and normally neglected. The model was developed assuming smooth pipe, so leaving `roughness` to zero may be wise. Note this is a "mechanistic" pressure drop model - the gravitational pressure drop cannot be separated from the frictional pressure drop. Examples -------- >>> Beggs_Brill(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, ... sigma=0.0487, P=1E7, D=0.05, angle=0, roughness=0.0, L=1.0) 686.9724506803469 References ---------- .. [1] Beggs, D.H., and J.P. Brill. "A Study of Two-Phase Flow in Inclined Pipes." Journal of Petroleum Technology 25, no. 05 (May 1, 1973): 607-17. https://doi.org/10.2118/4007-PA. .. [2] Brill, James P., and Howard Dale Beggs. Two-Phase Flow in Pipes, 1994. .. [3] Shoham, Ovadia. Mechanistic Modeling of Gas-Liquid Two-Phase Flow in Pipes. Pap/Cdr edition. Richardson, TX: Society of Petroleum Engineers, 2006. ''' # 0 - segregated; 1 - transition; 2 - intermittent; 3 - distributed qg = x*m/rhog ql = (1.0 - x)*m/rhol A = 0.25*pi*D*D Vsg = qg/A Vsl = ql/A Vm = Vsg + Vsl Fr = Vm*Vm/(g*D) lambda_L = Vsl/Vm # no slip liquid holdup L1 = 316.0*lambda_L**0.302 L2 = 0.0009252*lambda_L**-2.4684 L3 = 0.1*lambda_L**-1.4516 L4 = 0.5*lambda_L**-6.738 if (lambda_L < 0.01 and Fr < L1) or (lambda_L >= 0.01 and Fr < L2): regime = 0 elif (lambda_L >= 0.01 and L2 <= Fr <= L3): regime = 1 elif (0.01 <= lambda_L < 0.4 and L3 < Fr <= L1) or (lambda_L >= 0.4 and L3 < Fr <= L4): regime = 2 elif (lambda_L < 0.4 and Fr >= L1) or (lambda_L >= 0.4 and Fr > L4): regime = 3 else: raise ValueError('Outside regime ranges') LV = Vsl*sqrt(sqrt(rhol/(g*sigma))) if angle is None: angle = 0.0 angle = deg2rad*angle if regime != 1: Hl = _Beggs_Brill_holdup(regime, lambda_L, Fr, angle, LV) else: A = (L3 - Fr)/(L3 - L2) Hl = (A*_Beggs_Brill_holdup(0, lambda_L, Fr, angle, LV) + (1.0 - A)*_Beggs_Brill_holdup(2, lambda_L, Fr, angle, LV)) rhos = rhol*Hl + rhog*(1.0 - Hl) mum = mul*lambda_L + mug*(1.0 - lambda_L) rhom = rhol*lambda_L + rhog*(1.0 - lambda_L) Rem = rhom*D/mum*Vm fn = friction_factor(Re=Rem, eD=roughness/D) x = lambda_L/(Hl*Hl) if 1.0 < x < 1.2: S = log(2.2*x - 1.2) else: logx = log(x) # from horner(-0.0523 + 3.182*log(x) - 0.8725*log(x)**2 + 0.01853*log(x)**4, x) S = logx/(logx*(logx*(0.01853*logx*logx - 0.8725) + 3.182) - 0.0523) if S > 7.0: S = 7.0 # Truncate S to avoid exp(S) overflowing ftp = fn*exp(S) dP_ele = g*sin(angle)*rhos*L dP_fric = ftp*L/D*0.5*rhom*Vm*Vm # rhos here is pretty clearly rhos according to Shoham if P is None: P = 101325.0 if not acceleration: dP = dP_ele + dP_fric else: Ek = Vsg*Vm*rhos/P # Confirmed this expression is dimensionless dP = (dP_ele + dP_fric)/(1.0 - Ek) return dP def Friedel(m, x, rhol, rhog, mul, mug, sigma, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Friedel correlation. .. math:: \Delta P_{friction} = \Delta P_{lo} \phi_{lo}^2 .. math:: \phi_{lo}^2 = E + \frac{3.24FH}{Fr^{0.0454} We^{0.035}} .. math:: H = \left(\frac{\rho_l}{\rho_g}\right)^{0.91}\left(\frac{\mu_g}{\mu_l} \right)^{0.19}\left(1 - \frac{\mu_g}{\mu_l}\right)^{0.7} .. math:: F = x^{0.78}(1 - x)^{0.224} .. math:: E = (1-x)^2 + x^2\left(\frac{\rho_l f_{d,go}}{\rho_g f_{d,lo}}\right) .. math:: Fr = \frac{G_{tp}^2}{gD\rho_H^2} .. math:: We = \frac{G_{tp}^2 D}{\sigma \rho_H} .. math:: \rho_H = \left(\frac{x}{\rho_g} + \frac{1-x}{\rho_l}\right)^{-1} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] sigma : float Surface tension, [N/m] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Applicable to vertical upflow and horizontal flow. Known to work poorly when mul/mug > 1000. Gives mean errors on the order of 40%. Tested on data with diameters as small as 4 mm. The power of 0.0454 is given as 0.045 in [2]_, [3]_, [4]_, and [5]_; [6]_ and [2]_ give 0.0454 and [2]_ also gives a similar correlation said to be presented in [1]_, so it is believed this 0.0454 was the original power. [6]_ also gives an expression for friction factor claimed to be presented in [1]_; it is not used here. Examples -------- Example 4 in [6]_: >>> Friedel(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, ... sigma=0.0487, D=0.05, roughness=0.0, L=1.0) 738.6500525002241 References ---------- .. [1] Friedel, L. "Improved Friction Pressure Drop Correlations for Horizontal and Vertical Two-Phase Pipe Flow." , in: Proceedings, European Two Phase Flow Group Meeting, Ispra, Italy, 1979: 485-481. .. [2] Whalley, P. B. Boiling, Condensation, and Gas-Liquid Flow. Oxford: Oxford University Press, 1987. .. [3] Triplett, K. A., S. M. Ghiaasiaan, S. I. Abdel-Khalik, A. LeMouel, and B. N. McCord. "Gas-liquid Two-Phase Flow in Microchannels: Part II: Void Fraction and Pressure Drop.†International Journal of Multiphase Flow 25, no. 3 (April 1999): 395-410. doi:10.1016/S0301-9322(98)00055-X. .. [4] Mekisso, Henock Mateos. "Comparison of Frictional Pressure Drop Correlations for Isothermal Two-Phase Horizontal Flow." Thesis, Oklahoma State University, 2013. https://shareok.org/handle/11244/11109. .. [5] Thome, John R. "Engineering Data Book III." Wolverine Tube Inc (2004). http://www.wlv.com/heat-transfer-databook/ .. [6] Ghiaasiaan, S. Mostafa. Two-Phase Flow, Boiling, and Condensation: In Conventional and Miniature Systems. Cambridge University Press, 2007. ''' # Liquid-only properties, for calculation of E, dP_lo v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) fd_lo = friction_factor(Re=Re_lo, eD=roughness/D) dP_lo = fd_lo*L/D*(0.5*rhol*v_lo**2) # Gas-only properties, for calculation of E v_go = m/rhog/(pi/4*D**2) Re_go = Reynolds(V=v_go, rho=rhog, mu=mug, D=D) fd_go = friction_factor(Re=Re_go, eD=roughness/D) F = x**0.78*(1-x)**0.224 H = (rhol/rhog)**0.91*(mug/mul)**0.19*(1 - mug/mul)**0.7 E = (1-x)**2 + x**2*(rhol*fd_go/(rhog*fd_lo)) # Homogeneous properties, for Froude/Weber numbers voidage_h = homogeneous(x, rhol, rhog) rho_h = rhol*(1-voidage_h) + rhog*voidage_h Q_h = m/rho_h v_h = Q_h/(pi/4*D**2) Fr = Froude(V=v_h, L=D, squared=True) # checked with (m/(pi/4*D**2))**2/g/D/rho_h**2 We = Weber(V=v_h, L=D, rho=rho_h, sigma=sigma) # checked with (m/(pi/4*D**2))**2*D/sigma/rho_h phi_lo2 = E + 3.24*F*H/(Fr**0.0454*We**0.035) return phi_lo2*dP_lo def Gronnerud(m, x, rhol, rhog, mul, mug, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Gronnerud correlation as presented in [2]_, [3]_, and [4]_. .. math:: \Delta P_{friction} = \Delta P_{gd} \phi_{lo}^2 .. math:: \phi_{gd} = 1 + \left(\frac{dP}{dL}\right)_{Fr}\left[ \frac{\frac{\rho_l}{\rho_g}}{\left(\frac{\mu_l}{\mu_g}\right)^{0.25}} -1\right] .. math:: \left(\frac{dP}{dL}\right)_{Fr} = f_{Fr}\left[x+4(x^{1.8}-x^{10} f_{Fr}^{0.5})\right] .. math:: f_{Fr} = Fr_l^{0.3} + 0.0055\left(\ln \frac{1}{Fr_l}\right)^2 .. math:: Fr_l = \frac{G_{tp}^2}{gD\rho_l^2} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Developed for evaporators. Applicable from 0 < x < 1. In the model, if `Fr_l` is more than 1, `f_Fr` is set to 1. Examples -------- >>> Gronnerud(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, ... D=0.05, roughness=0.0, L=1.0) 384.12541144474085 References ---------- .. [1] Gronnerud, R. "Investigation of Liquid Hold-Up, Flow Resistance and Heat Transfer in Circulation Type Evaporators. 4. Two-Phase Flow Resistance in Boiling Refrigerants." Proc. Freudenstadt Meet., IIR/C. R. Réun. Freudenstadt, IIF. 1972-1: 127-138. 1972. .. [2] ASHRAE Handbook: Fundamentals. American Society of Heating, Refrigerating and Air-Conditioning Engineers, Incorporated, 2013. .. [3] Mekisso, Henock Mateos. "Comparison of Frictional Pressure Drop Correlations for Isothermal Two-Phase Horizontal Flow." Thesis, Oklahoma State University, 2013. https://shareok.org/handle/11244/11109. .. [4] Thome, John R. "Engineering Data Book III." Wolverine Tube Inc (2004). http://www.wlv.com/heat-transfer-databook/ ''' G = m/(pi/4*D**2) V = G/rhol Frl = Froude(V=V, L=D, squared=True) if Frl >= 1: f_Fr = 1 else: f_Fr = Frl**0.3 + 0.0055*(log(1./Frl))**2 dP_dL_Fr = f_Fr*(x + 4*(x**1.8 - x**10*sqrt(f_Fr))) phi_gd = 1 + dP_dL_Fr*((rhol/rhog)/sqrt(sqrt(mul/mug)) - 1) # Liquid-only properties, for calculation of E, dP_lo v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) fd_lo = friction_factor(Re=Re_lo, eD=roughness/D) dP_lo = fd_lo*L/D*(0.5*rhol*v_lo**2) return phi_gd*dP_lo def Chisholm(m, x, rhol, rhog, mul, mug, D, roughness=0.0, L=1.0, rough_correction=False): r'''Calculates two-phase pressure drop with the Chisholm (1973) correlation from [1]_, also in [2]_ and [3]_. .. math:: \frac{\Delta P_{tp}}{\Delta P_{lo}} = \phi_{ch}^2 .. math:: \phi_{ch}^2 = 1 + (\Gamma^2 -1)\left\{B x^{(2-n)/2} (1-x)^{(2-n)/2} + x^{2-n} \right\} .. math:: \Gamma ^2 = \frac{\left(\frac{\Delta P}{L}\right)_{go}}{\left(\frac{ \Delta P}{L}\right)_{lo}} For Gamma < 9.5: .. math:: B = \frac{55}{G_{tp}^{0.5}} \text{ for } G_{tp} > 1900 .. math:: B = \frac{2400}{G_{tp}} \text{ for } 500 < G_{tp} < 1900 .. math:: B = 4.8 \text{ for } G_{tp} < 500 For 9.5 < Gamma < 28: .. math:: B = \frac{520}{\Gamma G_{tp}^{0.5}} \text{ for } G_{tp} < 600 .. math:: B = \frac{21}{\Gamma} \text{ for } G_{tp} > 600 For Gamma > 28: .. math:: B = \frac{15000}{\Gamma^2 G_{tp}^{0.5}} If `rough_correction` is True, the following correction to B is applied: .. math:: \frac{B_{rough}}{B_{smooth}} = \left[0.5\left\{1+ \left(\frac{\mu_g} {\mu_l}\right)^2 + 10^{-600\epsilon/D}\right\}\right]^{\frac{0.25-n} {0.25}} .. math:: n = \frac{\ln \frac{f_{d,lo}}{f_{d,go}}}{\ln \frac{Re_{go}}{Re_{lo}}} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] rough_correction : bool, optional Whether or not to use the roughness correction proposed in the 1968 version of the correlation Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Applicable for 0 < x < 1. n = 0.25, the exponent in the Blassius equation. Originally developed for smooth pipes, a roughness correction is included as well from the Chisholm's 1968 work [4]_. Neither [2]_ nor [3]_ have any mention of the correction however. Examples -------- >>> Chisholm(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, ... mug=14E-6, D=0.05, roughness=0.0, L=1.0) 1084.1489922923738 References ---------- .. [1] Chisholm, D. "Pressure Gradients due to Friction during the Flow of Evaporating Two-Phase Mixtures in Smooth Tubes and Channels." International Journal of Heat and Mass Transfer 16, no. 2 (February 1973): 347-58. doi:10.1016/0017-9310(73)90063-X. .. [2] Mekisso, Henock Mateos. "Comparison of Frictional Pressure Drop Correlations for Isothermal Two-Phase Horizontal Flow." Thesis, Oklahoma State University, 2013. https://shareok.org/handle/11244/11109. .. [3] Thome, John R. "Engineering Data Book III." Wolverine Tube Inc (2004). http://www.wlv.com/heat-transfer-databook/ .. [4] Chisholm, D. "Research Note: Influence of Pipe Surface Roughness on Friction Pressure Gradient during Two-Phase Flow." Journal of Mechanical Engineering Science 20, no. 6 (December 1, 1978): 353-354. doi:10.1243/JMES_JOUR_1978_020_061_02. ''' G_tp = m/(pi/4*D**2) n = 0.25 # Blasius friction factor exponent # Liquid-only properties, for calculation of dP_lo v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) fd_lo = friction_factor(Re=Re_lo, eD=roughness/D) dP_lo = fd_lo*L/D*(0.5*rhol*v_lo**2) # Gas-only properties, for calculation of dP_go v_go = m/rhog/(pi/4*D**2) Re_go = Reynolds(V=v_go, rho=rhog, mu=mug, D=D) fd_go = friction_factor(Re=Re_go, eD=roughness/D) dP_go = fd_go*L/D*(0.5*rhog*v_go**2) Gamma = sqrt(dP_go/dP_lo) if Gamma <= 9.5: if G_tp <= 500: B = 4.8 elif G_tp < 1900: B = 2400./G_tp else: B = 55.0/sqrt(G_tp) elif Gamma <= 28: if G_tp <= 600: B = 520./sqrt(G_tp)/Gamma else: B = 21./Gamma else: B = 15000./sqrt(G_tp)/Gamma**2 if rough_correction: n = log(fd_lo/fd_go)/log(Re_go/Re_lo) B_ratio = (0.5*(1 + (mug/mul)**2 + 10**(-600*roughness/D)))**((0.25-n)/0.25) B = B*B_ratio phi2_ch = 1 + (Gamma**2-1)*(B*x**((2-n)/2.)*(1-x)**((2-n)/2.) + x**(2-n)) return phi2_ch*dP_lo def Baroczy_Chisholm(m, x, rhol, rhog, mul, mug, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Baroczy (1966) model. It was presented in graphical form originally; Chisholm (1973) made the correlation non-graphical. The model is also shown in [3]_. .. math:: \frac{\Delta P_{tp}}{\Delta P_{lo}} = \phi_{ch}^2 .. math:: \phi_{ch}^2 = 1 + (\Gamma^2 -1)\left\{B x^{(2-n)/2} (1-x)^{(2-n)/2} + x^{2-n} \right\} .. math:: \Gamma ^2 = \frac{\left(\frac{\Delta P}{L}\right)_{go}}{\left(\frac{ \Delta P}{L}\right)_{lo}} For Gamma < 9.5: .. math:: B = \frac{55}{G_{tp}^{0.5}} For 9.5 < Gamma < 28: .. math:: B = \frac{520}{\Gamma G_{tp}^{0.5}} For Gamma > 28: .. math:: B = \frac{15000}{\Gamma^2 G_{tp}^{0.5}} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Applicable for 0 < x < 1. n = 0.25, the exponent in the Blassius equation. The `Chisholm_1973` function should be used in preference to this. Examples -------- >>> Baroczy_Chisholm(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, ... mug=14E-6, D=0.05, roughness=0.0, L=1.0) 1084.1489922923738 References ---------- .. [1] Baroczy, C. J. "A systematic correlation for two-phase pressure drop." In Chem. Eng. Progr., Symp. Ser., 62: No. 64, 232-49 (1966). .. [2] Chisholm, D. "Pressure Gradients due to Friction during the Flow of Evaporating Two-Phase Mixtures in Smooth Tubes and Channels." International Journal of Heat and Mass Transfer 16, no. 2 (February 1973): 347-58. doi:10.1016/0017-9310(73)90063-X. .. [3] Mekisso, Henock Mateos. "Comparison of Frictional Pressure Drop Correlations for Isothermal Two-Phase Horizontal Flow." Thesis, Oklahoma State University, 2013. https://shareok.org/handle/11244/11109. ''' G_tp = m/(pi/4*D**2) n = 0.25 # Blasius friction factor exponent # Liquid-only properties, for calculation of dP_lo v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) fd_lo = friction_factor(Re=Re_lo, eD=roughness/D) dP_lo = fd_lo*L/D*(0.5*rhol*v_lo**2) # Gas-only properties, for calculation of dP_go v_go = m/rhog/(pi/4*D**2) Re_go = Reynolds(V=v_go, rho=rhog, mu=mug, D=D) fd_go = friction_factor(Re=Re_go, eD=roughness/D) dP_go = fd_go*L/D*(0.5*rhog*v_go**2) Gamma = sqrt(dP_go/dP_lo) if Gamma <= 9.5: B = 55.0/sqrt(G_tp) elif Gamma <= 28: B = 520./sqrt(G_tp)/Gamma else: B = 15000./sqrt(G_tp)/Gamma**2 phi2_ch = 1 + (Gamma**2-1)*(B*x**((2-n)/2.)*(1-x)**((2-n)/2.) + x**(2-n)) return phi2_ch*dP_lo def Muller_Steinhagen_Heck(m, x, rhol, rhog, mul, mug, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Muller-Steinhagen and Heck (1986) correlation from [1]_, also in [2]_ and [3]_. .. math:: \Delta P_{tp} = G_{MSH}(1-x)^{1/3} + \Delta P_{go}x^3 .. math:: G_{MSH} = \Delta P_{lo} + 2\left[\Delta P_{go} - \Delta P_{lo}\right]x Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Applicable for 0 < x < 1. Developed to be easily integrated. The contribution of each term to the overall pressure drop can be understood in this model. Examples -------- >>> Muller_Steinhagen_Heck(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, ... mug=14E-6, D=0.05, roughness=0.0, L=1.0) 793.4465457435081 References ---------- .. [1] Müller-Steinhagen, H, and K Heck. "A Simple Friction Pressure Drop Correlation for Two-Phase Flow in Pipes." Chemical Engineering and Processing: Process Intensification 20, no. 6 (November 1, 1986): 297-308. doi:10.1016/0255-2701(86)80008-3. .. [2] Mekisso, Henock Mateos. "Comparison of Frictional Pressure Drop Correlations for Isothermal Two-Phase Horizontal Flow." Thesis, Oklahoma State University, 2013. https://shareok.org/handle/11244/11109. .. [3] Thome, John R. "Engineering Data Book III." Wolverine Tube Inc (2004). http://www.wlv.com/heat-transfer-databook/ ''' # Liquid-only properties, for calculation of dP_lo v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) fd_lo = friction_factor(Re=Re_lo, eD=roughness/D) dP_lo = fd_lo*L/D*(0.5*rhol*v_lo**2) # Gas-only properties, for calculation of dP_go v_go = m/rhog/(pi/4*D**2) Re_go = Reynolds(V=v_go, rho=rhog, mu=mug, D=D) fd_go = friction_factor(Re=Re_go, eD=roughness/D) dP_go = fd_go*L/D*(0.5*rhog*v_go**2) G_MSH = dP_lo + 2*(dP_go - dP_lo)*x return G_MSH*(1-x)**(1/3.) + dP_go*x**3 def Lombardi_Pedrocchi(m, x, rhol, rhog, sigma, D, L=1.0): r'''Calculates two-phase pressure drop with the Lombardi-Pedrocchi (1972) correlation from [1]_ as shown in [2]_ and [3]_. .. math:: \Delta P_{tp} = \frac{0.83 G_{tp}^{1.4} \sigma^{0.4} L}{D^{1.2} \rho_{h}^{0.866}} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] sigma : float Surface tension, [N/m] D : float Diameter of pipe, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- This is a purely empirical method. [3]_ presents a review of this and other correlations. It did not perform best, but there were also correlations worse than it. Examples -------- >>> Lombardi_Pedrocchi(m=0.6, x=0.1, rhol=915., rhog=2.67, sigma=0.045, ... D=0.05, L=1.0) 1567.328374498781 References ---------- .. [1] Lombardi, C., and E. Pedrocchi. "Pressure Drop Correlation in Two- Phase Flow." Energ. Nucl. (Milan) 19: No. 2, 91-99, January 1, 1972. .. [2] Mekisso, Henock Mateos. "Comparison of Frictional Pressure Drop Correlations for Isothermal Two-Phase Horizontal Flow." Thesis, Oklahoma State University, 2013. https://shareok.org/handle/11244/11109. .. [3] Turgut, OÄŸuz Emrah, Mustafa Turhan Çoban, and Mustafa Asker. "Comparison of Flow Boiling Pressure Drop Correlations for Smooth Macrotubes." Heat Transfer Engineering 37, no. 6 (April 12, 2016): 487-506. doi:10.1080/01457632.2015.1060733. ''' voidage_h = homogeneous(x, rhol, rhog) rho_h = rhol*(1-voidage_h) + rhog*voidage_h G_tp = m/(pi/4*D**2) return 0.83*G_tp**1.4*sigma**0.4*L/(D**1.2*rho_h**0.866) def Theissing(m, x, rhol, rhog, mul, mug, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Theissing (1980) correlation as shown in [2]_ and [3]_. .. math:: \Delta P_{{tp}} = \left[ {\Delta P_{{lo}}^{{1/{n\epsilon}}} \left({1 - x} \right)^{{1/\epsilon}} + \Delta P_{{go}}^{{1/ {(n\epsilon)}}} x^{{1/\epsilon}}} \right]^{n\epsilon} .. math:: \epsilon = 3 - 2\left({\frac{{2\sqrt {{{\rho_{{l}}}/ {\rho_{{g}}}}}}}{{1 + {{\rho_{{l}}}/{\rho_{{g}}}}}}} \right)^{{{0.7}/n}} .. math:: n = \frac{{n_1 + n_2 \left({{{\Delta P_{{g}}}/{\Delta P_{{l}}}}} \right)^{0.1}}}{{1 + \left({{{\Delta P_{{g}}} / {\Delta P_{{l}}}}} \right)^{0.1}}} .. math:: n_1 = \frac{{\ln \left({{{\Delta P_{{l}}}/ {\Delta P_{{lo}}}}} \right)}}{{\ln \left({1 - x} \right)}} .. math:: n_2 = \frac{\ln \left({\Delta P_{{g}} / \Delta P_{{go}}} \right)}{{\ln x}} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Applicable for 0 < x < 1. Notable, as it can be used for two-phase liquid- liquid flow as well as liquid-gas flow. Examples -------- >>> Theissing(m=0.6, x=.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, ... D=0.05, roughness=0.0, L=1.0) 497.6156370699538 References ---------- .. [1] Theissing, Peter. "Eine Allgemeingültige Methode Zur Berechnung Des Reibungsdruckverlustes Der Mehrphasenströmung (A Generally Valid Method for Calculating Frictional Pressure Drop on Multiphase Flow)." Chemie Ingenieur Technik 52, no. 4 (January 1, 1980): 344-345. doi:10.1002/cite.330520414. .. [2] Mekisso, Henock Mateos. "Comparison of Frictional Pressure Drop Correlations for Isothermal Two-Phase Horizontal Flow." Thesis, Oklahoma State University, 2013. https://shareok.org/handle/11244/11109. .. [3] Greco, A., and G. P. Vanoli. "Experimental Two-Phase Pressure Gradients during Evaporation of Pure and Mixed Refrigerants in a Smooth Horizontal Tube. Comparison with Correlations." Heat and Mass Transfer 42, no. 8 (April 6, 2006): 709-725. doi:10.1007/s00231-005-0020-7. ''' # Liquid-only flow v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) fd_lo = friction_factor(Re=Re_lo, eD=roughness/D) dP_lo = fd_lo*L/D*(0.5*rhol*v_lo**2) # Gas-only flow v_go = m/rhog/(pi/4*D**2) Re_go = Reynolds(V=v_go, rho=rhog, mu=mug, D=D) fd_go = friction_factor(Re=Re_go, eD=roughness/D) dP_go = fd_go*L/D*(0.5*rhog*v_go**2) # Handle x = 0, x=1: if x == 0: return dP_lo elif x == 1: return dP_go # Actual Liquid flow v_l = m*(1-x)/rhol/(pi/4*D**2) Re_l = Reynolds(V=v_l, rho=rhol, mu=mul, D=D) fd_l = friction_factor(Re=Re_l, eD=roughness/D) dP_l = fd_l*L/D*(0.5*rhol*v_l**2) # Actual gas flow v_g = m*x/rhog/(pi/4*D**2) Re_g = Reynolds(V=v_g, rho=rhog, mu=mug, D=D) fd_g = friction_factor(Re=Re_g, eD=roughness/D) dP_g = fd_g*L/D*(0.5*rhog*v_g**2) # The model n1 = log(dP_l/dP_lo)/log(1.-x) n2 = log(dP_g/dP_go)/log(x) n = (n1 + n2*(dP_g/dP_l)**0.1)/(1 + (dP_g/dP_l)**0.1) epsilon = 3 - 2*(2*sqrt(rhol/rhog)/(1.+rhol/rhog))**(0.7/n) dP = (dP_lo**(1./(n*epsilon))*(1-x)**(1./epsilon) + dP_go**(1./(n*epsilon))*x**(1./epsilon))**(n*epsilon) return dP def Jung_Radermacher(m, x, rhol, rhog, mul, mug, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Jung-Radermacher (1989) correlation, also shown in [2]_ and [3]_. .. math:: \frac{\Delta P_{tp}}{\Delta P_{lo}} = \phi_{tp}^2 .. math:: \phi_{tp}^2 = 12.82X_{tt}^{-1.47}(1-x)^{1.8} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Applicable for 0 < x < 1. Developed for the annular flow regime in turbulent-turbulent flow. Examples -------- >>> Jung_Radermacher(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, ... mug=14E-6, D=0.05, roughness=0.0, L=1.0) 552.0686123725568 References ---------- .. [1] Jung, D. S., and R. Radermacher. "Prediction of Pressure Drop during Horizontal Annular Flow Boiling of Pure and Mixed Refrigerants." International Journal of Heat and Mass Transfer 32, no. 12 (December 1, 1989): 2435-46. doi:10.1016/0017-9310(89)90203-2. .. [2] Kim, Sung-Min, and Issam Mudawar. "Universal Approach to Predicting Two-Phase Frictional Pressure Drop for Adiabatic and Condensing Mini/ Micro-Channel Flows." International Journal of Heat and Mass Transfer 55, no. 11–12 (May 2012): 3246-61. doi:10.1016/j.ijheatmasstransfer.2012.02.047. .. [3] Filip, Alina, Florin BăltăreÅ£u, and Radu-Mircea Damian. "Comparison of Two-Phase Pressure Drop Models for Condensing Flows in Horizontal Tubes." Mathematical Modelling in Civil Engineering 10, no. 4 (2015): 19-27. doi:10.2478/mmce-2014-0019. ''' v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) fd_lo = friction_factor(Re=Re_lo, eD=roughness/D) dP_lo = fd_lo*L/D*(0.5*rhol*v_lo**2) Xtt = Lockhart_Martinelli_Xtt(x, rhol, rhog, mul, mug) phi_tp2 = 12.82*Xtt**-1.47*(1.-x)**1.8 return phi_tp2*dP_lo def Tran(m, x, rhol, rhog, mul, mug, sigma, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Tran (2000) correlation, also shown in [2]_ and [3]_. .. math:: \Delta P = dP_{lo} \phi_{lo}^2 .. math:: \phi_{lo}^2 = 1 + (4.3\Gamma^2-1)[\text{Co} \cdot x^{0.875} (1-x)^{0.875}+x^{1.75}] .. math:: \Gamma ^2 = \frac{\left(\frac{\Delta P}{L}\right)_{go}}{\left(\frac {\Delta P}{L}\right)_{lo}} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] sigma : float Surface tension, [N/m] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Developed for boiling refrigerants in channels with hydraulic diameters of 2.4 mm to 2.92 mm. Examples -------- >>> Tran(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, ... sigma=0.0487, D=0.05, roughness=0.0, L=1.0) 423.2563312951232 References ---------- .. [1] Tran, T. N, M. -C Chyu, M. W Wambsganss, and D. M France. "Two-Phase Pressure Drop of Refrigerants during Flow Boiling in Small Channels: An Experimental Investigation and Correlation Development." International Journal of Multiphase Flow 26, no. 11 (November 1, 2000): 1739-54. doi:10.1016/S0301-9322(99)00119-6. .. [2] Kim, Sung-Min, and Issam Mudawar. "Universal Approach to Predicting Two-Phase Frictional Pressure Drop for Adiabatic and Condensing Mini/ Micro-Channel Flows." International Journal of Heat and Mass Transfer 55, no. 11–12 (May 2012): 3246-61. doi:10.1016/j.ijheatmasstransfer.2012.02.047. .. [3] Choi, Kwang-Il, A. S. Pamitran, Chun-Young Oh, and Jong-Taek Oh. "Two-Phase Pressure Drop of R-410A in Horizontal Smooth Minichannels." International Journal of Refrigeration 31, no. 1 (January 2008): 119-29. doi:10.1016/j.ijrefrig.2007.06.006. ''' # Liquid-only properties, for calculation of dP_lo v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) fd_lo = friction_factor(Re=Re_lo, eD=roughness/D) dP_lo = fd_lo*L/D*(0.5*rhol*v_lo**2) # Gas-only properties, for calculation of dP_go v_go = m/rhog/(pi/4*D**2) Re_go = Reynolds(V=v_go, rho=rhog, mu=mug, D=D) fd_go = friction_factor(Re=Re_go, eD=roughness/D) dP_go = fd_go*L/D*(0.5*rhog*v_go**2) Gamma2 = dP_go/dP_lo Co = Confinement(D=D, rhol=rhol, rhog=rhog, sigma=sigma) phi_lo2 = 1 + (4.3*Gamma2 -1)*(Co*x**0.875*(1-x)**0.875 + x**1.75) return dP_lo*phi_lo2 def Chen_Friedel(m, x, rhol, rhog, mul, mug, sigma, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Chen modification of the Friedel correlation, as given in [1]_ and also shown in [2]_ and [3]_. .. math:: \Delta P = \Delta P_{Friedel}\Omega For Bo < 2.5: .. math:: \Omega = \frac{0.0333Re_{lo}^{0.45}}{Re_g^{0.09}(1 + 0.4\exp(-Bo))} For Bo >= 2.5: .. math:: \Omega = \frac{We^{0.2}}{2.5 + 0.06Bo} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] sigma : float Surface tension, [N/m] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Applicable ONLY to mini/microchannels; yields drastically too low pressure drops for larger channels. For more details, see the `Friedel` correlation. It is not explicitly stated in [1]_ how to calculate the liquid mixture density for use in calculation of Weber number; the homogeneous model is assumed as it is used in the Friedel model. The bond number used here is 1/4 the normal value, i.e.: .. math:: Bo = \frac{g(\rho_l-\rho_g)D^2}{4\sigma} Examples -------- >>> Chen_Friedel(m=.0005, x=0.9, rhol=950., rhog=1.4, mul=1E-3, mug=1E-5, ... sigma=0.02, D=0.003, roughness=0.0, L=1.0) 6249.247540588871 References ---------- .. [1] Chen, Ing Youn, Kai-Shing Yang, Yu-Juei Chang, and Chi-Chung Wang. "Two-Phase Pressure Drop of Air–water and R-410A in Small Horizontal Tubes." International Journal of Multiphase Flow 27, no. 7 (July 2001): 1293-99. doi:10.1016/S0301-9322(01)00004-0. .. [2] Kim, Sung-Min, and Issam Mudawar. "Universal Approach to Predicting Two-Phase Frictional Pressure Drop for Adiabatic and Condensing Mini/ Micro-Channel Flows." International Journal of Heat and Mass Transfer 55, no. 11–12 (May 2012): 3246-61. doi:10.1016/j.ijheatmasstransfer.2012.02.047. .. [3] Choi, Kwang-Il, A. S. Pamitran, Chun-Young Oh, and Jong-Taek Oh. "Two-Phase Pressure Drop of R-410A in Horizontal Smooth Minichannels." International Journal of Refrigeration 31, no. 1 (January 2008): 119-29. doi:10.1016/j.ijrefrig.2007.06.006. ''' # Liquid-only properties, for calculation of E, dP_lo v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) fd_lo = friction_factor(Re=Re_lo, eD=roughness/D) dP_lo = fd_lo*L/D*(0.5*rhol*v_lo**2) # Gas-only properties, for calculation of E v_go = m/rhog/(pi/4*D**2) Re_go = Reynolds(V=v_go, rho=rhog, mu=mug, D=D) fd_go = friction_factor(Re=Re_go, eD=roughness/D) F = x**0.78*(1-x)**0.224 H = (rhol/rhog)**0.91*(mug/mul)**0.19*(1 - mug/mul)**0.7 E = (1-x)**2 + x**2*(rhol*fd_go/(rhog*fd_lo)) # Homogeneous properties, for Froude/Weber numbers rho_h = 1./(x/rhog + (1-x)/rhol) Q_h = m/rho_h v_h = Q_h/(pi/4*D**2) Fr = Froude(V=v_h, L=D, squared=True) # checked with (m/(pi/4*D**2))**2/g/D/rho_h**2 We = Weber(V=v_h, L=D, rho=rho_h, sigma=sigma) # checked with (m/(pi/4*D**2))**2*D/sigma/rho_h phi_lo2 = E + 3.24*F*H/(Fr**0.0454*We**0.035) dP = phi_lo2*dP_lo # Chen modification; Weber number is the same as above # Weber is same Bo = Bond(rhol=rhol, rhog=rhog, sigma=sigma, L=D)/4 # Custom definition if Bo < 2.5: # Actual gas flow, needed for this case only. v_g = m*x/rhog/(pi/4*D**2) Re_g = Reynolds(V=v_g, rho=rhog, mu=mug, D=D) Omega = 0.0333*Re_lo**0.45/(Re_g**0.09*(1 + 0.5*exp(-Bo))) else: Omega = We**0.2/(2.5 + 0.06*Bo) return dP*Omega def Zhang_Webb(m, x, rhol, mul, P, Pc, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Zhang-Webb (2001) correlation as shown in [1]_ and also given in [2]_. .. math:: \phi_{lo}^2 = (1-x)^2 + 2.87x^2\left(\frac{P}{P_c}\right)^{-1} + 1.68x^{0.8}(1-x)^{0.25}\left(\frac{P}{P_c}\right)^{-1.64} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] P : float Pressure of fluid, [Pa] Pc : float Critical pressure of fluid, [Pa] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Applicable for 0 < x < 1. Corresponding-states method developed with R-134A, R-22 and R-404A in tubes of hydraulic diameters of 2.13 mm, 6.25 mm, and 3.25 mm. For the author's 119 data points, the mean deviation was 11.5%. Recommended for reduced pressures larger than 0.2 and tubes of diameter 1-7 mm. Does not require known properties for the gas phase. Examples -------- >>> Zhang_Webb(m=0.6, x=0.1, rhol=915., mul=180E-6, P=2E5, Pc=4055000, ... D=0.05, roughness=0.0, L=1.0) 712.0999804205617 References ---------- .. [1] Zhang, Ming, and Ralph L. Webb. "Correlation of Two-Phase Friction for Refrigerants in Small-Diameter Tubes." Experimental Thermal and Fluid Science 25, no. 3-4 (October 2001): 131-39. doi:10.1016/S0894-1777(01)00066-8. .. [2] Choi, Kwang-Il, A. S. Pamitran, Chun-Young Oh, and Jong-Taek Oh. "Two-Phase Pressure Drop of R-410A in Horizontal Smooth Minichannels." International Journal of Refrigeration 31, no. 1 (January 2008): 119-29. doi:10.1016/j.ijrefrig.2007.06.006. ''' # Liquid-only properties, for calculation of dP_lo v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) fd_lo = friction_factor(Re=Re_lo, eD=roughness/D) dP_lo = fd_lo*L/D*(0.5*rhol*v_lo**2) Pr = 0.5 if (Pc is None or P is None) else P/Pc phi_lo2 = (1-x)**2 + 2.87*x**2/Pr + 1.68*x**0.8*sqrt(sqrt(1-x))*Pr**-1.64 return dP_lo*phi_lo2 def Bankoff(m, x, rhol, rhog, mul, mug, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Bankoff (1960) correlation, as shown in [2]_, [3]_, and [4]_. .. math:: \Delta P_{tp} = \phi_{l}^{7/4} \Delta P_{l} .. math:: \phi_l = \frac{1}{1-x}\left[1 - \gamma\left(1 - \frac{\rho_g}{\rho_l} \right)\right]^{3/7}\left[1 + x\left(\frac{\rho_l}{\rho_g} - 1\right) \right] .. math:: \gamma = \frac{0.71 + 2.35\left(\frac{\rho_g}{\rho_l}\right)} {1 + \frac{1-x}{x} \cdot \frac{\rho_g}{\rho_l}} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- This correlation is not actually shown in [1]_. Its origin is unknown. The author recommends against using this. Examples -------- >>> Bankoff(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, ... D=0.05, roughness=0.0, L=1.0) 4746.0594424533965 References ---------- .. [1] Bankoff, S. G. "A Variable Density Single-Fluid Model for Two-Phase Flow With Particular Reference to Steam-Water Flow." Journal of Heat Transfer 82, no. 4 (November 1, 1960): 265-72. doi:10.1115/1.3679930. .. [2] Thome, John R. "Engineering Data Book III." Wolverine Tube Inc (2004). http://www.wlv.com/heat-transfer-databook/ .. [3] Moreno Quibén, Jesús. "Experimental and Analytical Study of Two- Phase Pressure Drops during Evaporation in Horizontal Tubes," 2005. doi:10.5075/epfl-thesis-3337. .. [4] Mekisso, Henock Mateos. "Comparison of Frictional Pressure Drop Correlations for Isothermal Two-Phase Horizontal Flow." Thesis, Oklahoma State University, 2013. https://shareok.org/handle/11244/11109. ''' # Liquid-only properties, for calculation of dP_lo v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) fd_lo = friction_factor(Re=Re_lo, eD=roughness/D) dP_lo = fd_lo*L/D*(0.5*rhol*v_lo**2) gamma = (0.71 + 2.35*rhog/rhol)/(1. + (1.-x)/x*rhog/rhol) phi_Bf = 1./(1.-x)*(1 - gamma*(1 - rhog/rhol))**(3/7.)*(1. + x*(rhol/rhog -1.)) return dP_lo*phi_Bf**(7/4.) def Xu_Fang(m, x, rhol, rhog, mul, mug, sigma, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Xu and Fang (2013) correlation. Developed after a comprehensive review of available correlations, likely meaning it is quite accurate. .. math:: \Delta P = \Delta P_{lo} \phi_{lo}^2 .. math:: \phi_{lo}^2 = Y^2x^3 + (1-x^{2.59})^{0.632}[1 + 2x^{1.17}(Y^2-1) + 0.00775x^{-0.475} Fr_{tp}^{0.535} We_{tp}^{0.188}] .. math:: Y^2 = \frac{\Delta P_{go}}{\Delta P_{lo}} .. math:: Fr_{tp} = \frac{G_{tp}^2}{gD\rho_{tp}^2} .. math:: We_{tp} = \frac{G_{tp}^2 D}{\sigma \rho_{tp}} .. math:: \frac{1}{\rho_{tp}} = \frac{1-x}{\rho_l} + \frac{x}{\rho_g} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] sigma : float Surface tension, [N/m] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Examples -------- >>> Xu_Fang(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, ... sigma=0.0487, D=0.05, roughness=0.0, L=1.0) 604.0595632116267 References ---------- .. [1] Xu, Yu, and Xiande Fang. "A New Correlation of Two-Phase Frictional Pressure Drop for Condensing Flow in Pipes." Nuclear Engineering and Design 263 (October 2013): 87-96. doi:10.1016/j.nucengdes.2013.04.017. ''' A = pi/4*D*D # Liquid-only properties, for calculation of E, dP_lo v_lo = m/rhol/A Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) fd_lo = friction_factor(Re=Re_lo, eD=roughness/D) dP_lo = fd_lo*L/D*(0.5*rhol*v_lo**2) # Gas-only properties, for calculation of E v_go = m/rhog/A Re_go = Reynolds(V=v_go, rho=rhog, mu=mug, D=D) fd_go = friction_factor(Re=Re_go, eD=roughness/D) dP_go = fd_go*L/D*(0.5*rhog*v_go**2) # Homogeneous properties, for Froude/Weber numbers voidage_h = homogeneous(x, rhol, rhog) rho_h = rhol*(1-voidage_h) + rhog*voidage_h Q_h = m/rho_h v_h = Q_h/A Fr = Froude(V=v_h, L=D, squared=True) We = Weber(V=v_h, L=D, rho=rho_h, sigma=sigma) Y2 = dP_go/dP_lo phi_lo2 = Y2*x**3 + (1-x**2.59)**0.632*(1 + 2*x**1.17*(Y2-1) + 0.00775*x**-0.475*Fr**0.535*We**0.188) return phi_lo2*dP_lo def Yu_France(m, x, rhol, rhog, mul, mug, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Yu, France, Wambsganss, and Hull (2002) correlation given in [1]_ and reviewed in [2]_ and [3]_. .. math:: \Delta P = \Delta P_{l} \phi_{l}^2 .. math:: \phi_l^2 = X^{-1.9} .. math:: X = 18.65\left(\frac{\rho_g}{\rho_l}\right)^{0.5}\left(\frac{1-x}{x} \right)\frac{Re_{g}^{0.1}}{Re_l^{0.5}} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Examples -------- >>> Yu_France(m=0.6, x=.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, ... D=0.05, roughness=0.0, L=1.0) 1146.9833225539571 References ---------- .. [1] Yu, W., D. M. France, M. W. Wambsganss, and J. R. Hull. "Two-Phase Pressure Drop, Boiling Heat Transfer, and Critical Heat Flux to Water in a Small-Diameter Horizontal Tube." International Journal of Multiphase Flow 28, no. 6 (June 2002): 927-41. doi:10.1016/S0301-9322(02)00019-8. .. [2] Kim, Sung-Min, and Issam Mudawar. "Universal Approach to Predicting Two-Phase Frictional Pressure Drop for Adiabatic and Condensing Mini/ Micro-Channel Flows." International Journal of Heat and Mass Transfer 55, no. 11-12 (May 2012): 3246-61. doi:10.1016/j.ijheatmasstransfer.2012.02.047. .. [3] Xu, Yu, Xiande Fang, Xianghui Su, Zhanru Zhou, and Weiwei Chen. "Evaluation of Frictional Pressure Drop Correlations for Two-Phase Flow in Pipes." Nuclear Engineering and Design, SI : CFD4NRS-3, 253 (December 2012): 86-97. doi:10.1016/j.nucengdes.2012.08.007. ''' # Actual Liquid flow v_l = m*(1-x)/rhol/(pi/4*D**2) Re_l = Reynolds(V=v_l, rho=rhol, mu=mul, D=D) fd_l = friction_factor(Re=Re_l, eD=roughness/D) dP_l = fd_l*L/D*(0.5*rhol*v_l**2) # Actual gas flow v_g = m*x/rhog/(pi/4*D**2) Re_g = Reynolds(V=v_g, rho=rhog, mu=mug, D=D) X = 18.65*sqrt(rhog/rhol)*(1-x)/x*Re_g**0.1/sqrt(Re_l) phi_l2 = X**-1.9 return phi_l2*dP_l def Wang_Chiang_Lu(m, x, rhol, rhog, mul, mug, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Wang, Chiang, and Lu (1997) correlation given in [1]_ and reviewed in [2]_ and [3]_. .. math:: \Delta P = \Delta P_{g} \phi_g^2 .. math:: \phi_g^2 = 1 + 9.397X^{0.62} + 0.564X^{2.45} \text{ for } G >= 200 kg/m^2/s .. math:: \phi_g^2 = 1 + CX + X^2 \text{ for lower mass fluxes} .. math:: C = 0.000004566X^{0.128}Re_{lo}^{0.938}\left(\frac{\rho_l}{\rho_g} \right)^{-2.15}\left(\frac{\mu_l}{\mu_g}\right)^{5.1} .. math:: X^2 = \frac{\Delta P_l}{\Delta P_g} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Examples -------- >>> Wang_Chiang_Lu(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, ... mug=14E-6, D=0.05, roughness=0.0, L=1.0) 448.29981978639137 References ---------- .. [1] Wang, Chi-Chuan, Ching-Shan Chiang, and Ding-Chong Lu. "Visual Observation of Two-Phase Flow Pattern of R-22, R-134a, and R-407C in a 6.5-Mm Smooth Tube." Experimental Thermal and Fluid Science 15, no. 4 (November 1, 1997): 395-405. doi:10.1016/S0894-1777(97)00007-1. .. [2] Kim, Sung-Min, and Issam Mudawar. "Universal Approach to Predicting Two-Phase Frictional Pressure Drop for Adiabatic and Condensing Mini/ Micro-Channel Flows." International Journal of Heat and Mass Transfer 55, no. 11-12 (May 2012): 3246-61. doi:10.1016/j.ijheatmasstransfer.2012.02.047. .. [3] Xu, Yu, Xiande Fang, Xianghui Su, Zhanru Zhou, and Weiwei Chen. "Evaluation of Frictional Pressure Drop Correlations for Two-Phase Flow in Pipes." Nuclear Engineering and Design, SI : CFD4NRS-3, 253 (December 2012): 86-97. doi:10.1016/j.nucengdes.2012.08.007. ''' G_tp = m/(pi/4*D**2) # Actual Liquid flow v_l = m*(1-x)/rhol/(pi/4*D**2) Re_l = Reynolds(V=v_l, rho=rhol, mu=mul, D=D) fd_l = friction_factor(Re=Re_l, eD=roughness/D) dP_l = fd_l*L/D*(0.5*rhol*v_l**2) # Actual gas flow v_g = m*x/rhog/(pi/4*D**2) Re_g = Reynolds(V=v_g, rho=rhog, mu=mug, D=D) fd_g = friction_factor(Re=Re_g, eD=roughness/D) dP_g = fd_g*L/D*(0.5*rhog*v_g**2) X = sqrt(dP_l/dP_g) if G_tp >= 200: phi_g2 = 1 + 9.397*X**0.62 + 0.564*X**2.45 else: # Liquid-only flow; Re_lo is oddly needed v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) C = 0.000004566*X**0.128*Re_lo**0.938*(rhol/rhog)**-2.15*(mul/mug)**5.1 phi_g2 = 1 + C*X + X**2 return dP_g*phi_g2 def Hwang_Kim(m, x, rhol, rhog, mul, mug, sigma, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Hwang and Kim (2006) correlation as in [1]_, also presented in [2]_ and [3]_. .. math:: \Delta P = \Delta P_{l} \phi_{l}^2 .. math:: C = 0.227 Re_{lo}^{0.452} X^{-0.32} Co^{-0.82} .. math:: \phi_l^2 = 1 + \frac{C}{X} + \frac{1}{X^2} .. math:: X^2 = \frac{\Delta P_l}{\Delta P_g} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] sigma : float Surface tension, [N/m] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Developed with data for microtubes of diameter 0.244 mm and 0.792 mm only. Not likely to be suitable to larger diameters. Examples -------- >>> Hwang_Kim(m=0.0005, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, ... sigma=0.0487, D=0.003, roughness=0.0, L=1.0) 798.302774184557 References ---------- .. [1] Hwang, Yun Wook, and Min Soo Kim. "The Pressure Drop in Microtubes and the Correlation Development." International Journal of Heat and Mass Transfer 49, no. 11-12 (June 2006): 1804-12. doi:10.1016/j.ijheatmasstransfer.2005.10.040. .. [2] Kim, Sung-Min, and Issam Mudawar. "Universal Approach to Predicting Two-Phase Frictional Pressure Drop for Adiabatic and Condensing Mini/ Micro-Channel Flows." International Journal of Heat and Mass Transfer 55, no. 11-12 (May 2012): 3246-61. doi:10.1016/j.ijheatmasstransfer.2012.02.047. .. [3] Xu, Yu, Xiande Fang, Xianghui Su, Zhanru Zhou, and Weiwei Chen. "Evaluation of Frictional Pressure Drop Correlations for Two-Phase Flow in Pipes." Nuclear Engineering and Design, SI : CFD4NRS-3, 253 (December 2012): 86-97. doi:10.1016/j.nucengdes.2012.08.007. ''' # Liquid-only flow v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) # Actual Liquid flow v_l = m*(1-x)/rhol/(pi/4*D**2) Re_l = Reynolds(V=v_l, rho=rhol, mu=mul, D=D) fd_l = friction_factor(Re=Re_l, eD=roughness/D) dP_l = fd_l*L/D*(0.5*rhol*v_l**2) # Actual gas flow v_g = m*x/rhog/(pi/4*D**2) Re_g = Reynolds(V=v_g, rho=rhog, mu=mug, D=D) fd_g = friction_factor(Re=Re_g, eD=roughness/D) dP_g = fd_g*L/D*(0.5*rhog*v_g**2) # Actual model X = sqrt(dP_l/dP_g) Co = Confinement(D=D, rhol=rhol, rhog=rhog, sigma=sigma) C = 0.227*Re_lo**0.452*X**-0.320*Co**-0.820 phi_l2 = 1 + C/X + 1./X**2 return dP_l*phi_l2 def Zhang_Hibiki_Mishima(m, x, rhol, rhog, mul, mug, sigma, D, roughness=0.0, L=1.0, flowtype='adiabatic vapor'): r'''Calculates two-phase pressure drop with the Zhang, Hibiki, Mishima and (2010) correlation as in [1]_, also presented in [2]_ and [3]_. .. math:: \Delta P = \Delta P_{l} \phi_{l}^2 .. math:: \phi_l^2 = 1 + \frac{C}{X} + \frac{1}{X^2} .. math:: X^2 = \frac{\Delta P_l}{\Delta P_g} For adiabatic liquid-vapor two-phase flow: .. math:: C = 21[1 - \exp(-0.142/Co)] For adiabatic liquid-gas two-phase flow: .. math:: C = 21[1 - \exp(-0.674/Co)] For flow boiling: .. math:: C = 21[1 - \exp(-0.358/Co)] Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] sigma : float Surface tension, [N/m] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] flowtype : str One of 'adiabatic vapor', 'adiabatic gas', or 'flow boiling' Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Seems fairly reliable. Examples -------- >>> Zhang_Hibiki_Mishima(m=0.0005, x=0.1, rhol=915., rhog=2.67, mul=180E-6, ... mug=14E-6, sigma=0.0487, D=0.003, roughness=0.0, L=1.0) 444.9718476894804 References ---------- .. [1] Zhang, W., T. Hibiki, and K. Mishima. "Correlations of Two-Phase Frictional Pressure Drop and Void Fraction in Mini-Channel." International Journal of Heat and Mass Transfer 53, no. 1-3 (January 15, 2010): 453-65. doi:10.1016/j.ijheatmasstransfer.2009.09.011. .. [2] Kim, Sung-Min, and Issam Mudawar. "Universal Approach to Predicting Two-Phase Frictional Pressure Drop for Adiabatic and Condensing Mini/ Micro-Channel Flows." International Journal of Heat and Mass Transfer 55, no. 11-12 (May 2012): 3246-61. doi:10.1016/j.ijheatmasstransfer.2012.02.047. .. [3] Xu, Yu, Xiande Fang, Xianghui Su, Zhanru Zhou, and Weiwei Chen. "Evaluation of Frictional Pressure Drop Correlations for Two-Phase Flow in Pipes." Nuclear Engineering and Design, SI : CFD4NRS-3, 253 (December 2012): 86-97. doi:10.1016/j.nucengdes.2012.08.007. ''' # Actual Liquid flow v_l = m*(1-x)/rhol/(pi/4*D**2) Re_l = Reynolds(V=v_l, rho=rhol, mu=mul, D=D) fd_l = friction_factor(Re=Re_l, eD=roughness/D) dP_l = fd_l*L/D*(0.5*rhol*v_l**2) # Actual gas flow v_g = m*x/rhog/(pi/4*D**2) Re_g = Reynolds(V=v_g, rho=rhog, mu=mug, D=D) fd_g = friction_factor(Re=Re_g, eD=roughness/D) dP_g = fd_g*L/D*(0.5*rhog*v_g**2) # Actual model X = sqrt(dP_l/dP_g) Co = Confinement(D=D, rhol=rhol, rhog=rhog, sigma=sigma) if flowtype == 'adiabatic vapor': C = 21*(1 - exp(-0.142/Co)) elif flowtype == 'adiabatic gas': C = 21*(1 - exp(-0.674/Co)) elif flowtype == 'flow boiling': C = 21*(1 - exp(-0.358/Co)) else: raise ValueError("Only flow types 'adiabatic vapor', 'adiabatic gas, \ and 'flow boiling' are recognized.") phi_l2 = 1 + C/X + 1./X**2 return dP_l*phi_l2 def Mishima_Hibiki(m, x, rhol, rhog, mul, mug, sigma, D, roughness=0.0, L=1.0): r'''Calculates two-phase pressure drop with the Mishima and Hibiki (1996) correlation as in [1]_, also presented in [2]_ and [3]_. .. math:: \Delta P = \Delta P_{l} \phi_{l}^2 .. math:: C = 21[1 - \exp(-319D)] .. math:: \phi_l^2 = 1 + \frac{C}{X} + \frac{1}{X^2} .. math:: X^2 = \frac{\Delta P_l}{\Delta P_g} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] sigma : float Surface tension, [N/m] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Examples -------- >>> Mishima_Hibiki(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, ... mug=14E-6, sigma=0.0487, D=0.05, roughness=0.0, L=1.0) 732.4268200606265 References ---------- .. [1] Mishima, K., and T. Hibiki. "Some Characteristics of Air-Water Two- Phase Flow in Small Diameter Vertical Tubes." International Journal of Multiphase Flow 22, no. 4 (August 1, 1996): 703-12. doi:10.1016/0301-9322(96)00010-9. .. [2] Kim, Sung-Min, and Issam Mudawar. "Universal Approach to Predicting Two-Phase Frictional Pressure Drop for Adiabatic and Condensing Mini/ Micro-Channel Flows." International Journal of Heat and Mass Transfer 55, no. 11-12 (May 2012): 3246-61. doi:10.1016/j.ijheatmasstransfer.2012.02.047. .. [3] Xu, Yu, Xiande Fang, Xianghui Su, Zhanru Zhou, and Weiwei Chen. "Evaluation of Frictional Pressure Drop Correlations for Two-Phase Flow in Pipes." Nuclear Engineering and Design, SI : CFD4NRS-3, 253 (December 2012): 86-97. doi:10.1016/j.nucengdes.2012.08.007. ''' # Actual Liquid flow v_l = m*(1-x)/rhol/(pi/4*D**2) Re_l = Reynolds(V=v_l, rho=rhol, mu=mul, D=D) fd_l = friction_factor(Re=Re_l, eD=roughness/D) dP_l = fd_l*L/D*(0.5*rhol*v_l**2) # Actual gas flow v_g = m*x/rhog/(pi/4*D**2) Re_g = Reynolds(V=v_g, rho=rhog, mu=mug, D=D) fd_g = friction_factor(Re=Re_g, eD=roughness/D) dP_g = fd_g*L/D*(0.5*rhog*v_g**2) # Actual model X = sqrt(dP_l/dP_g) C = 21*(1 - exp(-0.319E3*D)) phi_l2 = 1 + C/X + 1./X**2 return dP_l*phi_l2 def friction_factor_Kim_Mudawar(Re): if Re < 2000: return 64./Re elif Re < 20000: return 0.316/sqrt(sqrt(Re)) else: return 0.184*Re**-0.2 def Kim_Mudawar(m, x, rhol, rhog, mul, mug, sigma, D, L=1.0): r'''Calculates two-phase pressure drop with the Kim and Mudawar (2012) correlation as in [1]_, also presented in [2]_. .. math:: \Delta P = \Delta P_{l} \phi_{l}^2 .. math:: \phi_l^2 = 1 + \frac{C}{X} + \frac{1}{X^2} .. math:: X^2 = \frac{\Delta P_l}{\Delta P_g} For turbulent liquid, turbulent gas: .. math:: C = 0.39Re_{lo}^{0.03} Su_{go}^{0.10}\left(\frac{\rho_l}{\rho_g} \right)^{0.35} For turbulent liquid, laminar gas: .. math:: C = 8.7\times 10^{-4} Re_{lo}^{0.17} Su_{go}^{0.50}\left(\frac{\rho_l} {\rho_g}\right)^{0.14} For laminar liquid, turbulent gas: .. math:: C = 0.0015 Re_{lo}^{0.59} Su_{go}^{0.19}\left(\frac{\rho_l}{\rho_g} \right)^{0.36} For laminar liquid, laminar gas: .. math:: C = 3.5\times 10^{-5} Re_{lo}^{0.44} Su_{go}^{0.50}\left(\frac{\rho_l} {\rho_g}\right)^{0.48} This model has its own friction factor calculations, to be consistent with its Reynolds number transition. As their model was regressed with these equations, more error is obtained when using any other friction factor calculation. The laminar equation 64/Re is used up to Re=2000, then the Blasius equation with a coefficient of 0.316, and above Re = 20000, .. math:: f_d = \frac{0.184}{Re^{0.2}} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] sigma : float Surface tension, [N/m] D : float Diameter of pipe, [m] L : float, optional Length of pipe, [m] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- The critical Reynolds number in this model is 2000, with a Reynolds number definition using actual liquid and gas flows. This model also requires liquid-only Reynolds number to be calculated. No attempt to incorporate roughness into the model was made in [1]_. The model was developed with hydraulic diameter from 0.0695 to 6.22 mm, mass velocities 4 to 8528 kg/m^2/s, flow qualities from 0 to 1, reduced pressures from 0.0052 to 0.91, superficial liquid Reynolds numbers up to 79202, superficial gas Reynolds numbers up to 253810, liquid-only Reynolds numbers up to 89798, 7115 data points from 36 sources and working fluids air, CO2, N2, water, ethanol, R12, R22, R134a, R236ea, R245fa, R404A, R407C, propane, methane, and ammonia. Examples -------- >>> Kim_Mudawar(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, ... sigma=0.0487, D=0.05, L=1.0) 840.4137796786074 References ---------- .. [1] Kim, Sung-Min, and Issam Mudawar. "Universal Approach to Predicting Two-Phase Frictional Pressure Drop for Adiabatic and Condensing Mini/ Micro-Channel Flows." International Journal of Heat and Mass Transfer 55, no. 11-12 (May 2012): 3246-61. doi:10.1016/j.ijheatmasstransfer.2012.02.047. .. [2] Kim, Sung-Min, and Issam Mudawar. "Review of Databases and Predictive Methods for Pressure Drop in Adiabatic, Condensing and Boiling Mini/Micro-Channel Flows." International Journal of Heat and Mass Transfer 77 (October 2014): 74-97. doi:10.1016/j.ijheatmasstransfer.2014.04.035. ''' # Actual Liquid flow v_l = m*(1-x)/rhol/(pi/4*D**2) Re_l = Reynolds(V=v_l, rho=rhol, mu=mul, D=D) fd_l = friction_factor_Kim_Mudawar(Re=Re_l) dP_l = fd_l*L/D*(0.5*rhol*v_l**2) # Actual gas flow v_g = m*x/rhog/(pi/4*D**2) Re_g = Reynolds(V=v_g, rho=rhog, mu=mug, D=D) fd_g = friction_factor_Kim_Mudawar(Re=Re_g) dP_g = fd_g*L/D*(0.5*rhog*v_g**2) # Liquid-only flow v_lo = m/rhol/(pi/4*D**2) Re_lo = Reynolds(V=v_lo, rho=rhol, mu=mul, D=D) Su = Suratman(L=D, rho=rhog, mu=mug, sigma=sigma) X = sqrt(dP_l/dP_g) Re_c = 2000 # Transition Reynolds number if Re_l < Re_c and Re_g < Re_c: C = 3.5E-5*Re_lo**0.44*sqrt(Su)*(rhol/rhog)**0.48 elif Re_l < Re_c and Re_g >= Re_c: C = 0.0015*Re_lo**0.59*Su**0.19*(rhol/rhog)**0.36 elif Re_l >= Re_c and Re_g < Re_c: C = 8.7E-4*Re_lo**0.17*sqrt(Su)*(rhol/rhog)**0.14 else: # Turbulent case C = 0.39*Re_lo**0.03*Su**0.10*(rhol/rhog)**0.35 phi_l2 = 1 + C/X + 1./X**2 return dP_l*phi_l2 def Lockhart_Martinelli(m, x, rhol, rhog, mul, mug, D, L=1.0, Re_c=2000.0): r'''Calculates two-phase pressure drop with the Lockhart and Martinelli (1949) correlation as presented in non-graphical form by Chisholm (1967). .. math:: \Delta P = \Delta P_{l} \phi_{l}^2 .. math:: \phi_l^2 = 1 + \frac{C}{X} + \frac{1}{X^2} .. math:: X^2 = \frac{\Delta P_l}{\Delta P_g} +---------+---------+--+ |Liquid |Gas |C | +=========+=========+==+ |Turbulent|Turbulent|20| +---------+---------+--+ |Laminar |Turbulent|12| +---------+---------+--+ |Turbulent|Laminar |10| +---------+---------+--+ |Laminar |Laminar |5 | +---------+---------+--+ This model has its own friction factor calculations, to be consistent with its Reynolds number transition and the procedure specified in the original work. The equation 64/Re is used up to Re_c, and above it the Blasius equation is used as follows: .. math:: f_d = \frac{0.184}{Re^{0.2}} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] D : float Diameter of pipe, [m] L : float, optional Length of pipe, [m] Re_c : float, optional Transition Reynolds number, used to decide which friction factor equation to use and which C value to use from the table above. Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Notes ----- Developed for horizontal flow. Very popular. Many implementations of this model assume turbulent-turbulent flow. The original model proposed that the transition Reynolds number was 1000 for laminar flow, and 2000 for turbulent flow; it proposed no model for Re_l < 1000 and Re_g between 1000 and 2000 and also Re_g < 1000 and Re_l between 1000 and 2000. No correction is available in this model for rough pipe. [3]_ examined the original data in [1]_ again, and fit more curves to the data, separating them into different flow regimes. There were 229 datum in the turbulent-turbulent regime, 9 in the turbulent-laminar regime, 339 in the laminar-turbulent regime, and 42 in the laminar-laminar regime. Errors from [3]_'s curves were 13.4%, 3.5%, 14.3%, and 12.0% for the above regimes, respectively. [2]_'s fits provide further error. Examples -------- >>> Lockhart_Martinelli(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, ... mug=14E-6, D=0.05, L=1.0) 716.4695654888484 References ---------- .. [1] Lockhart, R. W. & Martinelli, R. C. (1949), "Proposed correlation of data for isothermal two-phase, two-component flow in pipes", Chemical Engineering Progress 45 (1), 39-48. .. [2] Chisholm, D."A Theoretical Basis for the Lockhart-Martinelli Correlation for Two-Phase Flow." International Journal of Heat and Mass Transfer 10, no. 12 (December 1967): 1767-78. doi:10.1016/0017-9310(67)90047-6. .. [3] Cui, Xiaozhou, and John J. J. Chen."A Re-Examination of the Data of Lockhart-Martinelli." International Journal of Multiphase Flow 36, no. 10 (October 2010): 836-46. doi:10.1016/j.ijmultiphaseflow.2010.06.001. .. [4] Kim, Sung-Min, and Issam Mudawar. "Universal Approach to Predicting Two-Phase Frictional Pressure Drop for Adiabatic and Condensing Mini/ Micro-Channel Flows." International Journal of Heat and Mass Transfer 55, no. 11-12 (May 2012): 3246-61. doi:10.1016/j.ijheatmasstransfer.2012.02.047. ''' v_l = m*(1-x)/rhol/(pi/4*D**2) Re_l = Reynolds(V=v_l, rho=rhol, mu=mul, D=D) v_g = m*x/rhog/(pi/4*D**2) Re_g = Reynolds(V=v_g, rho=rhog, mu=mug, D=D) if Re_l < Re_c and Re_g < Re_c: C = 5.0 elif Re_l < Re_c and Re_g >= Re_c: # Liquid laminar, gas turbulent C = 12.0 elif Re_l >= Re_c and Re_g < Re_c: # Liquid turbulent, gas laminar C = 10.0 else: # Turbulent case C = 20.0 # Frictoin factor as in the original model fd_l = 64./Re_l if Re_l < Re_c else 0.184*Re_l**-0.2 dP_l = fd_l*L/D*(0.5*rhol*v_l**2) fd_g = 64./Re_g if Re_g < Re_c else 0.184*Re_g**-0.2 dP_g = fd_g*L/D*(0.5*rhog*v_g**2) X = sqrt(dP_l/dP_g) phi_l2 = 1 + C/X + 1./X**2 return dP_l*phi_l2 two_phase_correlations = { # 0 index, args are: m, x, rhol, mul, P, Pc, D, roughness=0.0, L=1 'Zhang_Webb': (Zhang_Webb, 0), # 1 index, args are: m, x, rhol, rhog, mul, mug, D, L=1 'Lockhart_Martinelli': (Lockhart_Martinelli, 1), # 2 index, args are: m, x, rhol, rhog, mul, mug, D, roughness=0.0, L=1 'Bankoff': (Bankoff, 2), 'Baroczy_Chisholm': (Baroczy_Chisholm, 2), 'Chisholm': (Chisholm, 2), 'Gronnerud': (Gronnerud, 2), 'Jung_Radermacher': (Jung_Radermacher, 2), 'Muller_Steinhagen_Heck': (Muller_Steinhagen_Heck, 2), 'Theissing': (Theissing, 2), 'Wang_Chiang_Lu': (Wang_Chiang_Lu, 2), 'Yu_France': (Yu_France, 2), # 3 index, args are: m, x, rhol, rhog, mul, mug, sigma, D, L=1 'Kim_Mudawar': (Kim_Mudawar, 3), # 4 index, args are: m, x, rhol, rhog, mul, mug, sigma, D, roughness=0.0, L=1 'Friedel': (Friedel, 4), 'Hwang_Kim': (Hwang_Kim, 4), 'Mishima_Hibiki': (Mishima_Hibiki, 4), 'Tran': (Tran, 4), 'Xu_Fang': (Xu_Fang, 4), 'Zhang_Hibiki_Mishima': (Zhang_Hibiki_Mishima, 4), 'Chen_Friedel': (Chen_Friedel, 4), # 5 index: args are m, x, rhol, rhog, sigma, D, L=1 'Lombardi_Pedrocchi': (Lombardi_Pedrocchi, 5), # Misc indexes: 'Chisholm rough': (Chisholm, 101), 'Zhang_Hibiki_Mishima adiabatic gas': (Zhang_Hibiki_Mishima, 102), 'Zhang_Hibiki_Mishima flow boiling': (Zhang_Hibiki_Mishima, 103), 'Beggs-Brill': (Beggs_Brill, 104) } _unknown_msg_two_phase = "Unknown method; available methods are %s" %(list(two_phase_correlations.keys())) def two_phase_dP_methods(m, x, rhol, D, L=1.0, rhog=None, mul=None, mug=None, sigma=None, P=None, Pc=None, roughness=0.0, angle=0, check_ranges=False): r'''This function returns a list of names of correlations for two-phase liquid-gas pressure drop for flow inside channels. 24 calculation methods are available, with varying input requirements. Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] D : float Diameter of pipe, [m] L : float, optional Length of pipe, [m] rhog : float, optional Gas density, [kg/m^3] mul : float, optional Viscosity of liquid, [Pa*s] mug : float, optional Viscosity of gas, [Pa*s] sigma : float, optional Surface tension, [N/m] P : float, optional Pressure of fluid, [Pa] Pc : float, optional Critical pressure of fluid, [Pa] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] angle : float, optional The angle of the pipe with respect to the horizontal, [degrees] check_ranges : bool, optional Added for Future use only Returns ------- methods : list List of methods which can be used to calculate two-phase pressure drop with the given inputs. Examples -------- >>> len(two_phase_dP_methods(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05, L=1.0, angle=30.0, roughness=1e-4, P=1e5, Pc=1e6)) 24 ''' usable_indices = [] if rhog is not None and sigma is not None: usable_indices.append(5) if rhog is not None and sigma is not None and mul is not None and mug is not None: usable_indices.extend([4, 3, 102, 103]) # Differs only in the addition of roughness if rhog is not None and mul is not None and mug is not None: usable_indices.extend([1,2, 101]) # Differs only in the addition of roughness if mul is not None and P is not None and Pc is not None: usable_indices.append(0) if (rhog is not None and mul is not None and mug is not None and sigma is not None and P is not None and angle is not None): usable_indices.append(104) return [key for key, value in two_phase_correlations.items() if value[1] in usable_indices] def two_phase_dP(m, x, rhol, D, L=1.0, rhog=None, mul=None, mug=None, sigma=None, P=None, Pc=None, roughness=0.0, angle=None, Method=None): r'''This function handles calculation of two-phase liquid-gas pressure drop for flow inside channels. 23 calculation methods are available, with varying input requirements. A correlation will be automatically selected if none is specified. The full list of correlation can be obtained with the `AvailableMethods` flag. If no correlation is selected, the following rules are used, with the earlier options attempted first: * If rhog, mul, mug, and sigma are specified, use the Kim_Mudawar model * If rhog, mul, and mug are specified, use the Chisholm model * If mul, P, and Pc are specified, use the Zhang_Webb model * If rhog and sigma are specified, use the Lombardi_Pedrocchi model Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] D : float Diameter of pipe, [m] L : float, optional Length of pipe, [m] rhog : float, optional Gas density, [kg/m^3] mul : float, optional Viscosity of liquid, [Pa*s] mug : float, optional Viscosity of gas, [Pa*s] sigma : float, optional Surface tension, [N/m] P : float, optional Pressure of fluid, [Pa] Pc : float, optional Critical pressure of fluid, [Pa] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] angle : float, optional The angle of the pipe with respect to the horizontal, [degrees] Returns ------- dP : float Pressure drop of the two-phase flow, [Pa] Other Parameters ---------------- Method : string, optional A string of the function name to use, as in the dictionary two_phase_correlations. Notes ----- These functions may be integrated over, with properties recalculated as the fluid's quality changes. This model considers only the frictional pressure drop, not that due to gravity or acceleration. Examples -------- >>> two_phase_dP(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, ... sigma=0.0487, D=0.05, L=1.0) 840.4137796786074 ''' if Method is None: if rhog is not None and mul is not None and mug is not None and sigma is not None: Method2 = 'Kim_Mudawar' # Kim_Mudawar preferred elif rhog is not None and mul is not None and mug is not None: Method2 = 'Chisholm' # Second choice, indexes 1 or 2 elif mul is not None and P is not None and Pc is not None: Method2 = 'Zhang_Webb' # Not a good choice elif rhog is not None and sigma is not None: Method2 = 'Lombardi_Pedrocchi' # Last try else: raise ValueError('All possible methods require more information \ than provided; provide more inputs!') else: Method2 = Method if Method2 == "Zhang_Webb": return Zhang_Webb(m=m, x=x, rhol=rhol, mul=mul, P=P, Pc=Pc, D=D, roughness=roughness, L=L) elif Method2 == "Lockhart_Martinelli": return Lockhart_Martinelli(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, D=D, L=L) elif Method2 == "Bankoff": return Bankoff(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, D=D, roughness=roughness, L=L) elif Method2 == "Baroczy_Chisholm": return Baroczy_Chisholm(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, D=D, roughness=roughness, L=L) elif Method2 == "Chisholm": return Chisholm(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, D=D, roughness=roughness, L=L) elif Method2 == "Gronnerud": return Gronnerud(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, D=D, roughness=roughness, L=L) elif Method2 == "Jung_Radermacher": return Jung_Radermacher(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, D=D, roughness=roughness, L=L) elif Method2 == "Muller_Steinhagen_Heck": return Muller_Steinhagen_Heck(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, D=D, roughness=roughness, L=L) elif Method2 == "Theissing": return Theissing(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, D=D, roughness=roughness, L=L) elif Method2 == "Wang_Chiang_Lu": return Wang_Chiang_Lu(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, D=D, roughness=roughness, L=L) elif Method2 == "Yu_France": return Yu_France(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, D=D, roughness=roughness, L=L) elif Method2 == "Kim_Mudawar": return Kim_Mudawar(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, sigma=sigma, D=D, L=L) elif Method2 == "Friedel": return Friedel(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, sigma=sigma, D=D, roughness=roughness, L=L) elif Method2 == "Hwang_Kim": return Hwang_Kim(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, sigma=sigma, D=D, roughness=roughness, L=L) elif Method2 == "Mishima_Hibiki": return Mishima_Hibiki(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, sigma=sigma, D=D, roughness=roughness, L=L) elif Method2 == "Tran": return Tran(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, sigma=sigma, D=D, roughness=roughness, L=L) elif Method2 == "Xu_Fang": return Xu_Fang(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, sigma=sigma, D=D, roughness=roughness, L=L) elif Method2 == "Zhang_Hibiki_Mishima": return Zhang_Hibiki_Mishima(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, sigma=sigma, D=D, roughness=roughness, L=L) elif Method2 == "Chen_Friedel": return Chen_Friedel(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, sigma=sigma, D=D, roughness=roughness, L=L) elif Method2 == "Lombardi_Pedrocchi": return Lombardi_Pedrocchi(m=m, x=x, rhol=rhol, rhog=rhog, sigma=sigma, D=D, L=L) elif Method2 == "Chisholm rough": return Chisholm(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, D=D, L=L, roughness=roughness, rough_correction=True) elif Method2 == "Zhang_Hibiki_Mishima adiabatic gas": return Zhang_Hibiki_Mishima(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, sigma=sigma, D=D, L=L, roughness=roughness, flowtype='adiabatic gas') elif Method2 == "Zhang_Hibiki_Mishima flow boiling": return Zhang_Hibiki_Mishima(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, sigma=sigma, D=D, L=L, roughness=roughness, flowtype='flow boiling') elif Method2 == "Beggs-Brill": return Beggs_Brill(m=m, x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, sigma=sigma, P=P, D=D, angle=angle, L=L, roughness=roughness, acceleration=False, g=g) else: raise ValueError(_unknown_msg_two_phase) def two_phase_dP_acceleration(m, D, xi, xo, alpha_i, alpha_o, rho_li, rho_gi, rho_lo=None, rho_go=None): r'''This function handles calculation of two-phase liquid-gas pressure drop due to acceleration for flow inside channels. This is a discrete calculation for a segment with a known difference in quality (and ideally known inlet and outlet pressures so density dependence can be included). .. math:: \Delta P_{acc} = G^2\left\{\left[\frac{(1-x_o)^2}{\rho_{l,o} (1-\alpha_o)} + \frac{x_o^2}{\rho_{g,o}\alpha_o} \right] - \left[\frac{(1-x_i)^2}{\rho_{l,i}(1-\alpha_i)} + \frac{x_i^2}{\rho_{g,i}\alpha_i} \right]\right\} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] D : float Diameter of pipe, [m] xi : float Quality of fluid at inlet, [-] xo : float Quality of fluid at outlet, [-] alpha_i : float Void fraction at inlet (area of gas / total area of channel), [-] alpha_o : float Void fraction at outlet (area of gas / total area of channel), [-] rho_li : float Liquid phase density at inlet, [kg/m^3] rho_gi : float Gas phase density at inlet, [kg/m^3] rho_lo : float, optional Liquid phase density at outlet, [kg/m^3] rho_go : float, optional Gas phase density at outlet, [kg/m^3] Returns ------- dP : float Acceleration component of pressure drop for two-phase flow, [Pa] Notes ----- The use of different gas and liquid phase densities at the inlet and outlet is optional; the outlet densities conditions will be assumed to be those of the inlet if they are not specified. There is a continuous variant of this method which can be integrated over, at the expense of a speed. The differential form of this is as follows ([1]_, [3]_): .. math:: - \left(\frac{d P}{dz}\right)_{acc} = G^2 \frac{d}{dz} \left[\frac{ (1-x)^2}{\rho_l(1-\alpha)} + \frac{x^2}{\rho_g\alpha}\right] Examples -------- >>> two_phase_dP_acceleration(m=1, D=0.1, xi=0.372, xo=0.557, rho_li=827.1, ... rho_gi=3.919, alpha_i=0.992, alpha_o=0.996) 706.8560377214725 References ---------- .. [1] Rohsenow, Warren and James Hartnett and Young Cho. Handbook of Heat Transfer, 3E. New York: McGraw-Hill, 1998. .. [2] Awad, M. M., and Y. S. Muzychka. "Effective Property Models for Homogeneous Two-Phase Flows." Experimental Thermal and Fluid Science 33, no. 1 (October 1, 2008): 106-13. doi:10.1016/j.expthermflusci.2008.07.006. .. [3] Kim, Sung-Min, and Issam Mudawar. "Review of Databases and Predictive Methods for Pressure Drop in Adiabatic, Condensing and Boiling Mini/Micro-Channel Flows." International Journal of Heat and Mass Transfer 77 (October 2014): 74-97. doi:10.1016/j.ijheatmasstransfer.2014.04.035. ''' G = 4*m/(pi*D*D) if rho_lo is None: rho_lo = rho_li if rho_go is None: rho_go = rho_gi in_term = (1.-xi)**2/(rho_li*(1.-alpha_i)) + xi*xi/(rho_gi*alpha_i) out_term = (1.-xo)**2/(rho_lo*(1.-alpha_o)) + xo*xo/(rho_go*alpha_o) return G*G*(out_term - in_term) def two_phase_dP_dz_acceleration(m, D, x, rhol, rhog, dv_dP_l, dv_dP_g, dx_dP, dP_dL, dA_dL): r'''This function handles calculation of two-phase liquid-gas pressure drop due to acceleration for flow inside channels. This is a continuous calculation, providing the differential in pressure per unit length and should be called as part of an integration routine ([1]_, [2]_, [3]_). .. math:: -\left(\frac{\partial P}{\partial L}\right)_{A} = G^2 \left(\left(\frac{1}{\rho_g} - \frac{1}{\rho_l}\right)\frac{\partial P} {\partial L}\frac{\partial x}{\partial P} + \frac{\partial P}{\partial L}\left[x \frac{\partial (1/\rho_g)} {\partial P} + (1-x) \frac{\partial (1/\rho_l)}{\partial P} \right] \right) - \frac{G^2}{\rho_{hom}}\frac{1}{A}\frac{\partial A} {\partial L} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] D : float Diameter of pipe, [m] x : float Quality of fluid [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] dv_dP_l : float Derivative of mass specific volume of the liquid phase with respect to pressure, [m^3/(kg*Pa)] dv_dP_g : float Derivative of mass specific volume of the gas phase with respect to pressure, [m^3/(kg*Pa)] dx_dP : float Derivative of mass quality of the two-phase fluid with respect to pressure (numerical derivatives may be convenient for this), [1/Pa] dP_dL : float Pressure drop per unit length of pipe, [Pa/m] dA_dL : float Change in area of pipe per unit length of pipe, [m^2/m] Returns ------- dP_dz : float Acceleration component of pressure drop for two-phase flow, [Pa/m] Notes ----- This calculation has the `homogeneous` model built in to it as its derivation is shown in [1]_. The discrete calculation is more flexible as different void fractions may be used. Examples -------- >>> two_phase_dP_dz_acceleration(m=1, D=0.1, x=0.372, rhol=827.1, ... rhog=3.919, dv_dP_l=-5e-12, dv_dP_g=-4e-7, dx_dP=-2e-7, dP_dL=120.0, ... dA_dL=0.0001) 20.137876617489034 References ---------- .. [1] Shoham, Ovadia. Mechanistic Modeling of Gas-Liquid Two-Phase Flow in Pipes. Pap/Cdr edition. Richardson, TX: Society of Petroleum Engineers, 2006. .. [2] Rohsenow, Warren and James Hartnett and Young Cho. Handbook of Heat Transfer, 3E. New York: McGraw-Hill, 1998. .. [3] Kim, Sung-Min, and Issam Mudawar. "Review of Databases and Predictive Methods for Pressure Drop in Adiabatic, Condensing and Boiling Mini/Micro-Channel Flows." International Journal of Heat and Mass Transfer 77 (October 2014): 74-97. doi:10.1016/j.ijheatmasstransfer.2014.04.035. ''' A = 0.25*pi*D*D G = m/A t1 = (1.0/rhog - 1.0/rhol)*dP_dL*dx_dP + dP_dL*(x*dv_dP_g + (1.0 - x)*dv_dP_l) voidage_h = homogeneous(x, rhol, rhog) rho_h = rhol*(1.0 - voidage_h) + rhog*voidage_h return -G*G*(t1 - dA_dL/(rho_h*A)) def two_phase_dP_gravitational(angle, z, alpha_i, rho_li, rho_gi, alpha_o=None, rho_lo=None, rho_go=None, g=g): r'''This function handles calculation of two-phase liquid-gas pressure drop due to gravitation for flow inside channels. This is a discrete calculation for a segment with a known difference in elevation (and ideally known inlet and outlet pressures so density dependence can be included). .. math:: - \Delta P_{grav} = g \sin \theta z \left\{\frac{ [\alpha_o\rho_{g,o} + (1-\alpha_o)\rho_{l,o}] + [\alpha_i\rho_{g,i} + (1-\alpha_i)\rho_{l,i}]} {2}\right\} Parameters ---------- angle : float The angle of the pipe with respect to the horizontal, [degrees] z : float The total length of the pipe, [m] alpha_i : float Void fraction at inlet (area of gas / total area of channel), [-] rho_li : float Liquid phase density at inlet, [kg/m^3] rho_gi : float Gas phase density at inlet, [kg/m^3] alpha_o : float, optional Void fraction at outlet (area of gas / total area of channel), [-] rho_lo : float, optional Liquid phase density at outlet, [kg/m^3] rho_go : float, optional Gas phase density at outlet, [kg/m^3] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- dP : float Gravitational component of pressure drop for two-phase flow, [Pa] Notes ----- The use of different gas and liquid phase densities and void fraction at the inlet and outlet is optional; the outlet densities and void fraction will be assumed to be those of the inlet if they are not specified. This does not add much accuracy. There is a continuous variant of this method which can be integrated over, at the expense of a speed. The differential form of this is as follows ([1]_, [2]_): .. math:: -\left(\frac{dP}{dz} \right)_{grav} = [\alpha\rho_g + (1-\alpha) \rho_l]g \sin \theta Examples -------- Example calculation, page 13-2 from [3]_: >>> two_phase_dP_gravitational(angle=90, z=2, alpha_i=0.9685, rho_li=1518., ... rho_gi=2.6) 987.237416829999 The same calculation, but using average inlet and outlet conditions: >>> two_phase_dP_gravitational(angle=90, z=2, alpha_i=0.9685, rho_li=1518., ... rho_gi=2.6, alpha_o=0.968, rho_lo=1517.9, rho_go=2.59) 994.5416058829999 References ---------- .. [1] Rohsenow, Warren and James Hartnett and Young Cho. Handbook of Heat Transfer, 3E. New York: McGraw-Hill, 1998. .. [2] Kim, Sung-Min, and Issam Mudawar. "Review of Databases and Predictive Methods for Pressure Drop in Adiabatic, Condensing and Boiling Mini/Micro-Channel Flows." International Journal of Heat and Mass Transfer 77 (October 2014): 74-97. doi:10.1016/j.ijheatmasstransfer.2014.04.035. .. [3] Thome, John R. "Engineering Data Book III." Wolverine Tube Inc (2004). http://www.wlv.com/heat-transfer-databook/ ''' if rho_lo is None: rho_lo = rho_li if rho_go is None: rho_go = rho_gi if alpha_o is None: alpha_o = alpha_i angle = radians(angle) in_term = alpha_i*rho_gi + (1. - alpha_i)*rho_li out_term = alpha_o*rho_go + (1. - alpha_o)*rho_lo return g*z*sin(angle)*(out_term + in_term)/2. def two_phase_dP_dz_gravitational(angle, alpha, rhol, rhog, g=g): r'''This function handles calculation of two-phase liquid-gas pressure drop due to gravitation for flow inside channels. This is a differential calculation for a segment with an infinitesimal difference in elevation for use in performing integration over a pipe as shown in [1]_ and [2]_. .. math:: -\left(\frac{dP}{dz} \right)_{grav} = [\alpha\rho_g + (1-\alpha) \rho_l]g \sin \theta Parameters ---------- angle : float The angle of the pipe with respect to the horizontal, [degrees] alpha : float Void fraction (area of gas / total area of channel), [-] rhol : float Liquid phase density, [kg/m^3] rhog : float Gas phase density, [kg/m^3] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- dP_dz : float Gravitational component of pressure drop for two-phase flow, [Pa/m] Notes ----- Examples -------- >>> two_phase_dP_dz_gravitational(angle=90, alpha=0.9685, rhol=1518, ... rhog=2.6) 493.6187084149995 References ---------- .. [1] Rohsenow, Warren and James Hartnett and Young Cho. Handbook of Heat Transfer, 3E. New York: McGraw-Hill, 1998. .. [2] Kim, Sung-Min, and Issam Mudawar. "Review of Databases and Predictive Methods for Pressure Drop in Adiabatic, Condensing and Boiling Mini/Micro-Channel Flows." International Journal of Heat and Mass Transfer 77 (October 2014): 74-97. doi:10.1016/j.ijheatmasstransfer.2014.04.035. ''' angle = radians(angle) return g*sin(angle)*(alpha*rhog + (1. - alpha)*rhol) Dukler_XA_tck = implementation_optimize_tck([[-2.4791105294648372, -2.4791105294648372, -2.4791105294648372, -2.4791105294648372, 0.14360803483759585, 1.7199938263676038, 1.7199938263676038, 1.7199938263676038, 1.7199938263676038], [0.21299880246561081, 0.16299733301915248, -0.042340970712679615, -1.9967836909384598, -2.9917366639619414, 0.0, 0.0, 0.0, 0.0], 3]) Dukler_XC_tck = implementation_optimize_tck([[-1.8323873272724698, -1.8323873272724698, -1.8323873272724698, -1.8323873272724698, -0.15428198203334137, 1.7031193462360779, 1.7031193462360779, 1.7031193462360779, 1.7031193462360779], [0.2827776229531682, 0.6207113329042158, 1.0609541626742232, 0.44917638072891825, 0.014664597632360495, 0.0, 0.0, 0.0, 0.0], 3]) Dukler_XD_tck = implementation_optimize_tck([[0.2532652936901574, 0.2532652936901574, 0.2532652936901574, 0.2532652936901574, 3.5567847823070253, 3.5567847823070253, 3.5567847823070253, 3.5567847823070253], [0.09054274779541564, -0.05102629221303253, -0.23907463153703945, -0.7757156285450911, 0.0, 0.0, 0.0, 0.0], 3]) XA_interp_obj = lambda x: 10**float(splev(log10(x), Dukler_XA_tck)) XC_interp_obj = lambda x: 10**float(splev(log10(x), Dukler_XC_tck)) XD_interp_obj = lambda x: 10**float(splev(log10(x), Dukler_XD_tck)) def Taitel_Dukler_regime(m, x, rhol, rhog, mul, mug, D, angle, roughness=0.0, g=g): r'''Classifies the regime of a two-phase flow according to Taitel and Dukler (1976) ([1]_, [2]_). The flow regimes in this method are 'annular', 'bubbly', 'intermittent', 'stratified wavy', and 'stratified smooth'. The four dimensionless parameters used are 'X', 'T', 'F', and 'K'. .. math:: X = \left[\frac{(dP/dL)_{l,s,f}}{(dP/dL)_{g,s,f}}\right]^{0.5} .. math:: T = \left[\frac{(dP/dL)_{l,s,f}}{(\rho_l-\rho_g)g\cos\theta}\right]^{0.5} .. math:: F = \sqrt{\frac{\rho_g}{(\rho_l-\rho_g)}} \frac{v_{g,s}}{\sqrt{D g \cos\theta}} .. math:: K = F\left[\frac{D v_{l,s}}{\nu_l} \right]^{0.5} = F \sqrt{Re_{l,s}} Note that 'l' refers to liquid, 'g' gas, 'f' friction-only, and 's' superficial (i.e. if only the mass flow of that phase were flowing in the pipe). Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Mass quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] D : float Diameter of pipe, [m] angle : float The angle of the pipe with respect to the horizontal, [degrees] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- regime : str One of 'annular', 'bubbly', 'intermittent', 'stratified wavy', 'stratified smooth', [-] X : float `X` dimensionless group used in the calculation, [-] T : float `T` dimensionless group used in the calculation, [-] F : float `F` dimensionless group used in the calculation, [-] K : float `K` dimensionless group used in the calculation, [-] Notes ----- The original friction factor used in this model is that of Blasius. Examples -------- >>> Taitel_Dukler_regime(m=0.6, x=0.112, rhol=915.12, rhog=2.67, ... mul=180E-6, mug=14E-6, D=0.05, roughness=0.0, angle=0)[0] 'annular' References ---------- .. [1] Taitel, Yemada, and A. E. Dukler. "A Model for Predicting Flow Regime Transitions in Horizontal and near Horizontal Gas-Liquid Flow." AIChE Journal 22, no. 1 (January 1, 1976): 47-55. doi:10.1002/aic.690220105. .. [2] Brill, James P., and Howard Dale Beggs. Two-Phase Flow in Pipes, 1994. .. [3] Shoham, Ovadia. Mechanistic Modeling of Gas-Liquid Two-Phase Flow in Pipes. Pap/Cdr edition. Richardson, TX: Society of Petroleum Engineers, 2006. ''' angle = radians(angle) A = 0.25*pi*D*D # Liquid-superficial properties, for calculation of dP_ls, dP_ls # Paper and Brill Beggs 1991 confirms not v_lo but v_sg v_ls = m*(1.0 - x)/(rhol*A) Re_ls = Reynolds(V=v_ls, rho=rhol, mu=mul, D=D) fd_ls = friction_factor(Re=Re_ls, eD=roughness/D) dP_ls = fd_ls/D*(0.5*rhol*v_ls*v_ls) # Gas-superficial properties, for calculation of dP_gs v_gs = m*x/(rhog*A) Re_gs = Reynolds(V=v_gs, rho=rhog, mu=mug, D=D) fd_gs = friction_factor(Re=Re_gs, eD=roughness/D) dP_gs = fd_gs/D*(0.5*rhog*v_gs*v_gs) X = sqrt(dP_ls/dP_gs) F = sqrt(rhog/(rhol-rhog))*v_gs/sqrt(D*g*cos(angle)) # Paper only uses kinematic viscosity nul = mul/rhol T = sqrt(dP_ls/((rhol-rhog)*g*cos(angle))) K = sqrt(rhog*v_gs*v_gs*v_ls/((rhol-rhog)*g*nul*cos(angle))) F_A_at_X = XA_interp_obj(X) X_B_transition = 1.7917 # Roughly if F >= F_A_at_X and X <= X_B_transition: regime = 'annular' elif F >= F_A_at_X: T_D_at_X = XD_interp_obj(X) if T >= T_D_at_X: regime = 'bubbly' else: regime = 'intermittent' else: K_C_at_X = XC_interp_obj(X) if K >= K_C_at_X: regime = 'stratified wavy' else: regime = 'stratified smooth' return regime, X, T, F, K def Mandhane_Gregory_Aziz_regime(m, x, rhol, rhog, mul, mug, sigma, D): r'''Classifies the regime of a two-phase flow according to Mandhane, Gregory, and Azis (1974) flow map. The flow regimes in this method are 'elongated bubble', 'stratified', 'annular mist', 'slug', 'dispersed bubble', and 'wave'. The parameters used are just the superficial liquid and gas velocity (i.e. if only the mass flow of that phase were flowing in the pipe). Parameters ---------- m : float Mass flow rate of fluid, [kg/s] x : float Mass quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] sigma : float Surface tension, [N/m] D : float Diameter of pipe, [m] Returns ------- regime : str One of 'elongated bubble', 'stratified', 'annular mist', 'slug', 'dispersed bubble', or 'wave', [-] v_gs : float The superficial gas velocity in the pipe (x axis coordinate), [ft/s] v_ls : float The superficial liquid velocity in the pipe (x axis coordinate), [ft/s] Notes ----- [1]_ contains a Fortran implementation of this model, which this has been validated against. This is a very fast flow map as all transitions were spelled out with clean transitions. Examples -------- >>> Mandhane_Gregory_Aziz_regime(m=0.6, x=0.112, rhol=915.12, rhog=2.67, ... mul=180E-6, mug=14E-6, sigma=0.065, D=0.05) ('slug', 0.9728397701853173, 42.05456634236875) References ---------- .. [1] Mandhane, J. M., G. A. Gregory, and K. Aziz. "A Flow Pattern Map for Gas-liquid Flow in Horizontal Pipes." International Journal of Multiphase Flow 1, no. 4 (October 30, 1974): 537-53. doi:10.1016/0301-9322(74)90006-8. ''' A = 0.25*pi*D*D Vsl = m*(1.0 - x)/(rhol*A) Vsg = m*x/(rhog*A) # Convert to imperial units Vsl, Vsg = Vsl/0.3048, Vsg/0.3048 # X1 = (rhog/0.0808)**0.333 * (rhol*72.4/62.4/sigma)**0.25 * (mug/0.018)**0.2 # Y1 = (rhol*72.4/62.4/sigma)**0.25 * (mul/1.)**0.2 X1 = (rhog/1.294292)**0.333 * sqrt(sqrt(rhol*0.0724/(999.552*sigma))) * (mug*1.8E5)**0.2 Y1 = sqrt(sqrt(rhol*0.0724/999.552/sigma)) * (mul*1E3)**0.2 if Vsl < 14.0*Y1: if Vsl <= 0.1: Y1345 = 14.0*(Vsl/0.1)**-0.368 elif Vsl <= 0.2: Y1345 = 14.0*(Vsl/0.1)**-0.415 elif Vsl <= 1.15: Y1345 = 10.5*(Vsl/0.2)**-0.816 elif Vsl <= 4.8: Y1345 = 2.5 else: Y1345 = 2.5*(Vsl/4.8)**0.248 if Vsl <= 0.1: Y456 = 70.0*(Vsl/0.01)**-0.0675 elif Vsl <= 0.3: Y456 = 60.0*(Vsl/0.1)**-0.415 elif Vsl <= 0.56: Y456 = 38.0*(Vsl/0.3)**0.0813 elif Vsl <= 1.0: Y456 = 40.0*(Vsl/0.56)**0.385 elif Vsl <= 2.5: Y456 = 50.0*(Vsl/1.)**0.756 else: Y456 = 100.0*(Vsl/2.5)**0.463 Y45 = 0.3*Y1 Y31 = 0.5/Y1 Y1345 = Y1345*X1 Y456 = Y456*X1 if Vsg <= Y1345 and Vsl >= Y31: regime = 'elongated bubble' elif Vsg <= Y1345 and Vsl <= Y31: regime = 'stratified' elif Vsg >= Y1345 and Vsg <= Y456 and Vsl > Y45: regime = 'slug' elif Vsg >= Y1345 and Vsg <= Y456 and Vsl <= Y45: regime = 'wave' else: regime = 'annular mist' elif Vsg <= (230.*(Vsl/14.)**0.206)*X1: regime = 'dispersed bubble' else: regime = 'annular mist' return regime, Vsl, Vsg Mandhane_Gregory_Aziz_regimes = {'elongated bubble': 1, 'stratified': 2, 'slug':3, 'wave': 4, 'annular mist': 5, 'dispersed bubble': 6} fluids-1.0.22/fluids/packed_bed.py0000644000175000017500000012600514302004506016307 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains correlations for calculating the pressure drop across a packed bed. Several correlations for void fraction are also included. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Packed Bed Correlation Interfaces --------------------------------- .. autofunction:: dP_packed_bed .. autofunction:: dP_packed_bed_methods Packed Bed Correlations ----------------------- .. autofunction:: Ergun .. autofunction:: Kuo_Nydegger .. autofunction:: Jones_Krier .. autofunction:: Carman .. autofunction:: Hicks .. autofunction:: Brauer .. autofunction:: KTA .. autofunction:: Erdim_Akgiray_Demir .. autofunction:: Fahien_Schriver .. autofunction:: Tallmadge .. autofunction:: Idelchik .. autofunction:: Harrison_Brunner_Hecker .. autofunction:: Montillet_Akkari_Comiti .. autofunction:: Guo_Sun Voidage Correlations -------------------- .. autofunction:: voidage_Benyahia_Oneil .. autofunction:: voidage_Benyahia_Oneil_spherical .. autofunction:: voidage_Benyahia_Oneil_cylindrical """ from __future__ import division from math import exp, pi, sqrt __all__ = ['dP_packed_bed', 'dP_packed_bed_methods', 'Ergun', 'Kuo_Nydegger', 'Jones_Krier', 'Carman', 'Hicks', 'Brauer', 'KTA', 'Erdim_Akgiray_Demir', 'Fahien_Schriver', 'Tallmadge', 'Idelchik', 'Harrison_Brunner_Hecker', 'Montillet_Akkari_Comiti', 'Guo_Sun', 'voidage_Benyahia_Oneil', 'voidage_Benyahia_Oneil_spherical', 'voidage_Benyahia_Oneil_cylindrical'] def Ergun(dp, voidage, vs, rho, mu, L=1.0): r'''Calculates pressure drop across a packed bed of spheres using a correlation developed in [1]_, as shown in [2]_ and [3]_. Eighteenth most accurate correlation overall in the review of [2]_. Most often presented in the following form: .. math:: \Delta P = \frac{150\mu (1-\epsilon)^2 v_s L}{\epsilon^3 d_p^2} + \frac{1.75 (1-\epsilon) \rho v_s^2 L}{\epsilon^3 d_p} It is also often presented with a term for sphericity, which is multiplied by particle diameter everywhere in the equation. However, this is highly empirical and better correlations for beds of differently-shaped particles exist. To use sphericity in this model, multiple the input particle diameter by the spericity separately. In the review of [2]_, it is expressed in terms of a parameter `fp`, shown below. This is a convenient means of expressing all forms of pressure drop in packed beds correlations in a way that allows for easy comparison. .. math:: f_p = \left(150 + 1.75\left(\frac{Re}{1-\epsilon}\right)\right) \frac{(1-\epsilon)^2}{\epsilon^3 Re} .. math:: f_p = \frac{\Delta P d_p}{\rho v_s^2 L} .. math:: Re = \frac{\rho v_s d_p}{\mu} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Returns ------- dP : float Pressure drop across the bed [Pa] Notes ----- The first term in this equation represents laminar loses, and the second, turbulent loses. Developed with data from spheres, sand, and pulverized coke. Fluids tested were carbon dioxide, nitrogen, methane, and hydrogen. Validity range shown in [3]_ is :math:`1 < Re_{Erg} < 2300`. Over predicts pressure drop for :math:`Re_{Erg} > 700`. Examples -------- >>> Ergun(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) 1338.8671874999995 References ---------- .. [1] Ergun, S. (1952) "Fluid flow through packed columns", Chem. Eng. Prog., 48, 89-94. .. [2] Erdim, Esra, Ömer Akgiray, and İbrahim Demir. "A Revisit of Pressure Drop-Flow Rate Correlations for Packed Beds of Spheres." Powder Technology 283 (October 2015): 488-504. doi:10.1016/j.powtec.2015.06.017. .. [3] Jones, D. P., and H. Krier. "Gas Flow Resistance Measurements Through Packed Beds at High Reynolds Numbers." Journal of Fluids Engineering 105, no. 2 (June 1, 1983): 168-172. doi:10.1115/1.3240959. ''' Re = dp*rho*vs/mu fp = (150 + 1.75*(Re/(1-voidage)))*(1-voidage)**2/(voidage**3*Re) return fp*rho*vs**2*L/dp def Kuo_Nydegger(dp, voidage, vs, rho, mu, L=1.0): r'''Calculates pressure drop across a packed bed of spheres using a correlation developed in [1]_, as shown in [2]_ and [3]. Thirty-eighth most accurate correlation overall in the review of [2]_. .. math:: f_p = \left(276.23 + 5.05\left(\frac{Re}{1-\epsilon}\right)^{0.87} \right)\frac{(1-\epsilon)^2}{\epsilon^3 Re} .. math:: f_p = \frac{\Delta P d_p}{\rho v_s^2 L} .. math:: Re = \frac{\rho v_s d_p}{\mu} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Returns ------- dP : float Pressure drop across the bed [Pa] Notes ----- Validity range shown in [2]_ as for a range of :math:`460 < Re < 14600`. :math:`0.3760 < \epsilon < 0.3901`. Developed with data from rough granular ball propellants beds, with air. Examples -------- >>> Kuo_Nydegger(dp=8E-1, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) 0.025651460973648624 References ---------- .. [1] Kuo, K. K. and Nydegger, C., "Flow Resistance Measurement and Correlation in Packed Beds of WC 870 Ball Propellants," Journal of Ballistics , Vol. 2, No. 1, pp. 1-26, 1978. .. [2] Erdim, Esra, Ömer Akgiray, and İbrahim Demir. "A Revisit of Pressure Drop-Flow Rate Correlations for Packed Beds of Spheres." Powder Technology 283 (October 2015): 488-504. doi:10.1016/j.powtec.2015.06.017. .. [3] Jones, D. P., and H. Krier. "Gas Flow Resistance Measurements Through Packed Beds at High Reynolds Numbers." Journal of Fluids Engineering 105, no. 2 (June 1, 1983): 168-172. doi:10.1115/1.3240959. ''' Re = dp*rho*vs/mu fp = (276.23 + 5.05*(Re/(1-voidage))**0.87)*(1-voidage)**2/(voidage**3*Re) return fp*rho*vs**2*L/dp def Tallmadge(dp, voidage, vs, rho, mu, L=1.0): r'''Calculates pressure drop across a packed bed of spheres using a correlation developed in [1]_, as shown in [2]_ and [3]. .. math:: f_p = \left(150 + 4.2\left(\frac{Re}{1-\epsilon}\right)^{5/6} \right) \frac{(1-\epsilon)^2}{\epsilon^3 Re} .. math:: f_p = \frac{\Delta P d_p}{\rho v_s^2 L} .. math:: Re = \frac{\rho v_s d_p}{\mu} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Returns ------- dP : float Pressure drop across the bed [Pa] Notes ----- The validity range shown in [2]_ is a range of :math:`0.1 < Re < 100000`. Examples -------- >>> Tallmadge(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) 1365.2739144209424 References ---------- .. [1] Tallmadge, J. A. "Packed Bed Pressure Drop-an Extension to Higher Reynolds Numbers." AIChE Journal 16, no. 6 (November 1, 1970): 1092-93. .. [2] Erdim, Esra, Ömer Akgiray, and İbrahim Demir. "A Revisit of Pressure Drop-Flow Rate Correlations for Packed Beds of Spheres." Powder Technology 283 (October 2015): 488-504. doi:10.1016/j.powtec.2015.06.017. .. [3] Montillet, A., E. Akkari, and J. Comiti. "About a Correlating Equation for Predicting Pressure Drops through Packed Beds of Spheres in a Large Range of Reynolds Numbers." Chemical Engineering and Processing: Process Intensification 46, no. 4 (April 2007): 329-33. doi:10.1016/j.cep.2006.07.002. ''' Re = dp*rho*vs/mu fp = (150.0 + 4.2*(Re/(1-voidage))**(5.0/6.0))*(1-voidage)**2/(voidage**3*Re) return fp*rho*vs**2*L/dp def Jones_Krier(dp, voidage, vs, rho, mu, L=1.0): r'''Calculates pressure drop across a packed bed of spheres using a correlation developed in [1]_, also shown in [2]_. Tenth most accurate correlation overall in the review of [2]_. .. math:: f_p = \left(150 + 3.89\left(\frac{Re}{1-\epsilon}\right)^{0.87}\right) \frac{(1-\epsilon)^2}{\epsilon^3 Re} .. math:: f_p = \frac{\Delta P d_p}{\rho v_s^2 L} .. math:: Re = \frac{\rho v_s d_p}{\mu} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Returns ------- dP : float Pressure drop across the bed [Pa] Notes ----- Validity range shown in [1]_ as for a range of :math:`733 < Re < 126,670`. :math:`0.3804 < \epsilon < 0.4304`. Developed from data of spherical glass beads. Examples -------- >>> Jones_Krier(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) 1362.2719449873746 References ---------- .. [1] Jones, D. P., and H. Krier. "Gas Flow Resistance Measurements Through Packed Beds at High Reynolds Numbers." Journal of Fluids Engineering 105, no. 2 (June 1, 1983): 168-172. doi:10.1115/1.3240959. .. [2] Erdim, Esra, Ömer Akgiray, and İbrahim Demir. "A Revisit of Pressure Drop-Flow Rate Correlations for Packed Beds of Spheres." Powder Technology 283 (October 2015): 488-504. doi:10.1016/j.powtec.2015.06.017. ''' Re = dp*rho*vs/mu fp = (150 + 3.89*(Re/(1-voidage))**0.87)*(1-voidage)**2/(voidage**3*Re) return fp*rho*vs**2*L/dp def Carman(dp, voidage, vs, rho, mu, L=1.0): r'''Calculates pressure drop across a packed bed of spheres using a correlation developed in [1]_, as shown in [2]_. Fifth most accurate correlation overall in the review of [2]_. Also shown in [3]_. .. math:: f_p = \left(180 + 2.871\left(\frac{Re}{1-\epsilon}\right)^{0.9}\right) \frac{(1-\epsilon)^2}{\epsilon^3 Re} .. math:: f_p = \frac{\Delta P d_p}{\rho v_s^2 L} .. math:: Re = \frac{\rho v_s d_p}{\mu} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Returns ------- dP : float Pressure drop across the bed [Pa] Notes ----- Valid in [1]_, [2]_, and [3]_ for a range of :math:`300 < Re_{Erg} < 60,000`. Examples -------- >>> Carman(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) 1614.721678121775 References ---------- .. [1] P.C. Carman, Fluid flow through granular beds, Transactions of the London Institute of Chemical Engineers 15 (1937) 150-166. .. [2] Erdim, Esra, Ömer Akgiray, and İbrahim Demir. "A Revisit of Pressure Drop-Flow Rate Correlations for Packed Beds of Spheres." Powder Technology 283 (October 2015): 488-504. doi:10.1016/j.powtec.2015.06.017. .. [3] Allen, K. G., T. W. von Backstrom, and D. G. Kroger. "Packed Bed Pressure Drop Dependence on Particle Shape, Size Distribution, Packing Arrangement and Roughness." Powder Technology 246 (September 2013): 590-600. doi:10.1016/j.powtec.2013.06.022. ''' Re = dp*rho*vs/mu fp = (180 + 2.871*(Re/(1-voidage))**0.9)*(1-voidage)**2/(voidage**3*Re) return fp*rho*vs**2*L/dp def Hicks(dp, voidage, vs, rho, mu, L=1.0): r'''Calculates pressure drop across a packed bed of spheres using a correlation developed in [1]_, as shown in [2]_. Twenty-third most accurate correlation overall in the review of [2]_. Also shown in [3]_. .. math:: f_p = 6.8 \frac{(1-\epsilon)^{1.2}}{Re^{0.2}\epsilon^3} .. math:: f_p = \frac{\Delta P d_p}{\rho v_s^2 L} .. math:: Re = \frac{\rho v_s d_p}{\mu} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Returns ------- dP : float Pressure drop across the bed [Pa] Notes ----- Valid in [1]_, [2]_, and [3]_ for a range of :math:`300 < Re_{Erg} < 60,000`. Examples -------- >>> Hicks(dp=0.01, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) 3.631703956680737 References ---------- .. [1] Hicks, R. E. "Pressure Drop in Packed Beds of Spheres." Industrial Engineering Chemistry Fundamentals 9, no. 3 (August 1, 1970): 500-502. doi:10.1021/i160035a032. .. [2] Erdim, Esra, Ömer Akgiray, and İbrahim Demir. "A Revisit of Pressure Drop-Flow Rate Correlations for Packed Beds of Spheres." Powder Technology 283 (October 2015): 488-504. doi:10.1016/j.powtec.2015.06.017. .. [3] Allen, K. G., T. W. von Backstrom, and D. G. Kroger. "Packed Bed Pressure Drop Dependence on Particle Shape, Size Distribution, Packing Arrangement and Roughness." Powder Technology 246 (September 2013): 590-600. doi:10.1016/j.powtec.2013.06.022. ''' Re = dp*rho*vs/mu fp = 6.8*(1-voidage)**1.2/Re**0.2/voidage**3 return fp*rho*vs**2*L/dp def Brauer(dp, voidage, vs, rho, mu, L=1.0): r'''Calculates pressure drop across a packed bed of spheres using a correlation developed in [1]_, as shown in [2]_. Seventh most accurate correlation overall in the review of [2]_. Also shown in [3]_. .. math:: f_p = \left(160 + 3\left(\frac{Re}{1-\epsilon}\right)^{0.9}\right) \frac{(1-\epsilon)^2}{\epsilon^3 Re} .. math:: f_p = \frac{\Delta P d_p}{\rho v_s^2 L} .. math:: Re = \frac{\rho v_s d_p}{\mu} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Returns ------- dP : float Pressure drop across the bed [Pa] Notes ----- The original article [1]_ has not been reviewed. In [2]_, is stated as for a range of :math:`2 < Re_{Erg} < 20,000`. In [3]_, is stated as for a range of :math:`0.01 < Re_{Erg} < 40,000`. Examples -------- >>> Brauer(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) 1441.5479196020563 References ---------- .. [1] H. Brauer, Grundlagen der Einphasen -und Mehrphasenstromungen, Sauerlander AG, Aarau, 1971. .. [2] Erdim, Esra, Ömer Akgiray, and İbrahim Demir. "A Revisit of Pressure Drop-Flow Rate Correlations for Packed Beds of Spheres." Powder Technology 283 (October 2015): 488-504. doi:10.1016/j.powtec.2015.06.017. .. [3] Allen, K. G., T. W. von Backstrom, and D. G. Kroger. "Packed Bed Pressure Drop Dependence on Particle Shape, Size Distribution, Packing Arrangement and Roughness." Powder Technology 246 (September 2013): 590-600. doi:10.1016/j.powtec.2013.06.022. ''' Re = dp*rho*vs/mu fp = (160 + 3.1*(Re/(1-voidage))**0.9)*(1-voidage)**2/(voidage**3*Re) return fp*rho*vs**2*L/dp def KTA(dp, voidage, vs, rho, mu, L=1.0): r'''Calculates pressure drop across a packed bed of spheres using a correlation developed in [1]_, as shown in [2]_. Third most accurate correlation overall in the review of [2]_. .. math:: f_p = \left(160 + 3\left(\frac{Re}{1-\epsilon}\right)^{0.9}\right) \frac{(1-\epsilon)^2}{\epsilon^3 Re} .. math:: f_p = \frac{\Delta P d_p}{\rho v_s^2 L} .. math:: Re= \frac{\rho v_s d_p}{\mu} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Returns ------- dP : float Pressure drop across the bed [Pa] Notes ----- Developed for gas flow through pebbles in nuclear reactors. In [2]_, stated as for a range of :math:`1 < RE_{Erg} <100,000`. In [1]_, a limit on porosity is stated as :math:`0.36 < \epsilon < 0.42`. Examples -------- >>> KTA(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) 1440.409277034248 References ---------- .. [1] KTA. KTA 3102.3 Reactor Core Design of High-Temperature Gas-Cooled Reactors Part 3: Loss of Pressure through Friction in Pebble Bed Cores. Germany, 1981. .. [2] Erdim, Esra, Ömer Akgiray, and İbrahim Demir. "A Revisit of Pressure Drop-Flow Rate Correlations for Packed Beds of Spheres." Powder Technology 283 (October 2015): 488-504. doi:10.1016/j.powtec.2015.06.017. ''' Re = dp*rho*vs/mu fp = (160 + 3*(Re/(1-voidage))**0.9)*(1-voidage)**2/(voidage**3*Re) return fp*rho*vs**2*L/dp def Erdim_Akgiray_Demir(dp, voidage, vs, rho, mu, L=1.0): r'''Calculates pressure drop across a packed bed of spheres using a correlation developed in [1]_, claiming to be the best model to date. .. math:: f_v = 160 + 2.81Re_{Erg}^{0.904} .. math:: f_v = \frac{\Delta P d_p^2}{\mu v_s L}\frac{\epsilon^3}{(1-\epsilon)^2} .. math:: Re_{Erg} = \frac{\rho v_s d_p}{\mu(1-\epsilon)} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Returns ------- dP : float Pressure drop across the bed [Pa] Notes ----- Developed with data in the range of: .. math:: 2 < Re_{Erg} <3582\\ 4 < d_t/d_p < 34.1\\ 0.377 < \epsilon <0.470 Examples -------- >>> Erdim_Akgiray_Demir(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) 1438.2826958844414 References ---------- .. [1] Erdim, Esra, Ömer Akgiray, and İbrahim Demir. "A Revisit of Pressure Drop-Flow Rate Correlations for Packed Beds of Spheres." Powder Technology 283 (October 2015): 488-504. doi:10.1016/j.powtec.2015.06.017. ''' Rem = dp*rho*vs/mu/(1-voidage) fv = 160 + 2.81*Rem**0.904 return fv*(mu*vs*L/dp**2)*(1-voidage)**2/voidage**3 def Fahien_Schriver(dp, voidage, vs, rho, mu, L=1.0): r'''Calculates pressure drop across a packed bed of spheres using a correlation developed in [1]_, as shown in [2]_. Second most accurate correlation overall in the review of [2]_. .. math:: f_p = \left(q\frac{f_{1L}}{Re_{Erg}} + (1-q)\left(f_2 + \frac{f_{1T}} {Re_{Erg}}\right)\right)\frac{1-\epsilon}{\epsilon^3} .. math:: q = \exp\left(-\frac{\epsilon^2(1-\epsilon)}{12.6}Re_{Erg}\right) .. math:: f_{1L}=\frac{136}{(1-\epsilon)^{0.38}} .. math:: f_{1T} = \frac{29}{(1-\epsilon)^{1.45}\epsilon^2} .. math:: f_2 = \frac{1.87\epsilon^{0.75}}{(1-\epsilon)^{0.26}} .. math:: f_p = \frac{\Delta P d_p}{\rho v_s^2 L} .. math:: Re_{Erg} = \frac{\rho v_s d_p}{\mu(1-\epsilon)} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Returns ------- dP : float Pressure drop across the bed [Pa] Notes ----- No range of validity available. Examples -------- >>> Fahien_Schriver(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) 1470.6175541844711 References ---------- .. [1] R.W. Fahien, C.B. Schriver, Paper presented at the 1961 Denver meeting of AIChE, in: R.W. Fahien, Fundamentals of Transport Phenomena, McGraw-Hill, New York, 1983. .. [2] Erdim, Esra, Ömer Akgiray, and İbrahim Demir. "A Revisit of Pressure Drop-Flow Rate Correlations for Packed Beds of Spheres." Powder Technology 283 (October 2015): 488-504. doi:10.1016/j.powtec.2015.06.017. ''' Rem = dp*rho*vs/mu/(1-voidage) q = exp(-voidage**2*(1-voidage)/12.6*Rem) f1L = 136/(1-voidage)**0.38 f1T = 29/((1-voidage)**1.45*voidage**2) f2 = 1.87*voidage**0.75/(1-voidage)**0.26 fp = (q*f1L/Rem + (1-q)*(f2 + f1T/Rem))*(1-voidage)/voidage**3 return fp*rho*vs**2*L/dp def Idelchik(dp, voidage, vs, rho, mu, L=1.0): r'''Calculates pressure drop across a packed bed of spheres as in [2]_, originally in [1]_. .. math:: \frac{\Delta P}{L\rho v_s^2} d_p = \frac{0.765}{\epsilon^{4.2}} \left(\frac{30}{Re_l} + \frac{3}{Re_l^{0.7}} + 0.3\right) .. math:: Re_l = (0.45/\epsilon^{0.5})Re_{Erg} .. math:: Re_{Erg} = \frac{\rho v_s D_p}{\mu(1-\epsilon)} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Returns ------- dP : float Pressure drop across the bed [Pa] Notes ----- :math:`0.001 < Re_{Erg} <1000` This equation is valid for void fractions between 0.3 and 0.8. Cited as by Bernshtein. Examples -------- >>> Idelchik(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) 1571.909125999067 References ---------- .. [1] Idelchik, I. E. Flow Resistance: A Design Guide for Engineers. Hemisphere Publishing Corporation, New York, 1989. .. [2] Allen, K. G., T. W. von Backstrom, and D. G. Kroger. "Packed Bed Pressure Drop Dependence on Particle Shape, Size Distribution, Packing Arrangement and Roughness." Powder Technology 246 (September 2013): 590-600. doi:10.1016/j.powtec.2013.06.022. ''' Re = rho*vs*dp/mu/(1-voidage) Re = (0.45/sqrt(voidage))*Re right = 0.765/voidage**4.2*(30./Re + 3./Re**0.7 + 0.3) left = dp/L/rho/vs**2 return right/left def Harrison_Brunner_Hecker(dp, voidage, vs, rho, mu, L=1, Dt=None): r'''Calculates pressure drop across a packed bed of spheres using a correlation developed in [1]_, also shown in [2]_. Fourth most accurate correlation overall in the review of [2]_. Applies a wall correction if diameter of tube is provided. .. math:: f_p = \left(119.8A + 4.63B\left(\frac{Re}{1-\epsilon}\right)^{5/6} \right)\frac{(1-\epsilon)^2}{\epsilon^3 Re} .. math:: A = \left(1 + \pi \frac{d_p}{6(1-\epsilon)D_t}\right)^2 .. math:: B = 1 - \frac{\pi^2 d_p}{24D_t}\left(1 - \frac{0.5d_p}{D_t}\right) .. math:: f_p = \frac{\Delta P d_p}{\rho v_s^2 L} .. math:: Re = \frac{\rho v_s d_p}{\mu} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Dt : float, optional Diameter of the tube, [m] Returns ------- dP : float Pressure drop across the bed [Pa] Notes ----- Uses data from other sources only. Correlation will underestimate pressure drop if tube diameter is not provided. Limits are specified in [1]_ as: .. math:: 0.72 < Re < 7700 \\ 8.3 < d_t/d_p < 50 \\ 0.33 < \epsilon < 0.88 Examples -------- >>> Harrison_Brunner_Hecker(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, Dt=1E-2) 1255.1625662548427 References ---------- .. [1] KTA. KTA 3102.3 Reactor Core Design of High-Temperature Gas-Cooled Reactors Part 3: Loss of Pressure through Friction in Pebble Bed Cores. Germany, 1981. .. [2] Erdim, Esra, Ömer Akgiray, and İbrahim Demir. "A Revisit of Pressure Drop-Flow Rate Correlations for Packed Beds of Spheres." Powder Technology 283 (October 2015): 488-504. doi:10.1016/j.powtec.2015.06.017. ''' Re = dp*rho*vs/mu if Dt is None: A, B = 1.0, 1.0 else: A = (1 + pi*dp/(6*(1-voidage)*Dt))**2 B = 1 - pi**2*dp/24/Dt*(1 - dp/(2*Dt)) fp = (119.8*A + 4.63*B*(Re/(1-voidage))**(5/6.))*(1-voidage)**2/(voidage**3*Re) return fp*rho*vs**2*L/dp def Montillet_Akkari_Comiti(dp, voidage, vs, rho, mu, L=1, Dt=None): r'''Calculates pressure drop across a packed bed of spheres as in [2]_, originally in [1]_. Wall effect adjustment is used if `Dt` is provided. .. math:: \frac{\Delta P}{L\rho V_s^2} D_p \frac{\epsilon^3}{(1-\epsilon)} = a\left(\frac{D_c}{D_p}\right)^{0.20} \left(\frac{1000}{Re_{p}} + \frac{60}{Re_{p}^{0.5}} + 12 \right) .. math:: Re_{p} = \frac{\rho v_s D_p}{\mu} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Dt : float, optional Diameter of the tube, [m] Returns ------- dP : float Pressure drop across bed [Pa] Notes ----- :math:`10 < REp <2500` if Dc/D > 50, set to 2.2. a = 0.061 for epsilon < 0.4, 0.050 for > 0.4. Examples -------- Custom example: >>> Montillet_Akkari_Comiti(dp=0.0008, voidage=0.4, L=0.5, vs=0.00132629120, rho=1000., mu=1.00E-003) 1148.1905244077548 References ---------- .. [1] Montillet, A., E. Akkari, and J. Comiti. "About a Correlating Equation for Predicting Pressure Drops through Packed Beds of Spheres in a Large Range of Reynolds Numbers." Chemical Engineering and Processing: Process Intensification 46, no. 4 (April 2007): 329-33. doi:10.1016/j.cep.2006.07.002. .. [2] Allen, K. G., T. W. von Backstrom, and D. G. Kroger. "Packed Bed Pressure Drop Dependence on Particle Shape, Size Distribution, Packing Arrangement and Roughness." Powder Technology 246 (September 2013): 590-600. doi:10.1016/j.powtec.2013.06.022. ''' Re = rho*vs*dp/mu if voidage < 0.4: a = 0.061 else: a = 0.05 if Dt is None or Dt/dp > 50: Dterm = 2.2 else: Dterm = (Dt/dp)**0.2 right = a*Dterm*(1000./Re + 60/sqrt(Re) + 12) left = dp/L/rho/vs**2*voidage**3/(1-voidage) return right/left def Guo_Sun(dp, voidage, vs, rho, mu, Dt, L=1.0): r'''Calculates pressure drop across a packed bed of spheres using a correlation developed in [1]_. This is valid for highly-packed particles at particle/tube diameter ratios between 2 and 3, where a ring packing structure occurs. If a packing ratio is so low, it is important to use this model because in some cases its predictions are as low as half those of other models! .. math:: f_v = 180 + \left(9.5374\frac{d_p}{D_t} - 2.8054\right)Re_{Erg}^{0.97} .. math:: f_v = \frac{\Delta P d_p^2}{\mu v_s L}\frac{\epsilon^3}{(1-\epsilon)^2} .. math:: Re_{Erg} = \frac{\rho v_s d_p}{\mu(1-\epsilon)} Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area)[m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] Dt : float Diameter of the tube, [m] L : float, optional Length the fluid flows in the packed bed [m] Returns ------- dP : float Pressure drop across the bed [Pa] Notes ----- Developed with data in the range of: .. math:: 100 < Re_{m} <33000\\ 2 < d_t/d_p < 3 1\\ 0.476 < \epsilon <0.492 Examples -------- >>> Guo_Sun(dp=14.2E-3, voidage=0.492, vs=0.6, rho=1E3, mu=1E-3, Dt=40.9E-3) 42019.529911473706 References ---------- .. [1] Guo, Zehua, Zhongning Sun, Nan Zhang, Ming Ding, and Jiaqing Liu. "Pressure Drop in Slender Packed Beds with Novel Packing Arrangement." Powder Technology 321 (November 2017): 286-92. doi:10.1016/j.powtec.2017.08.024. ''' # 2 < D/d < 3, particles in contact with the wall tend to form a highly ordered ring structure. Rem = dp*rho*vs/mu/(1-voidage) ratio = dp/Dt if Dt is not None else 3.5 # Never ran fv = 180 + (9.5374*ratio - 2.8054)*Rem**0.97 return fv*(mu*vs*L/dp**2)*(1-voidage)**2/voidage**3 # Format: Nice name : (formula, uses_dt) packed_beds_correlations = { 'Ergun': (Ergun, False), 'Tallmadge': (Tallmadge, False), 'Kuo & Nydegger': (Kuo_Nydegger, False), 'Jones & Krier': (Jones_Krier, False), 'Carman': (Carman, False), 'Hicks': (Hicks, False), 'Brauer': (Brauer, False), 'KTA': (KTA, False), 'Fahien & Schriver': (Fahien_Schriver, False), 'Idelchik': (Idelchik, False), 'Erdim, Akgiray & Demir': (Erdim_Akgiray_Demir, False), 'Harrison, Brunner & Hecker': (Harrison_Brunner_Hecker, True), 'Montillet, Akkari & Comiti': (Montillet_Akkari_Comiti, True), 'Guo, Sun, Zhang, Ding & Liu': (Guo_Sun, True) } def dP_packed_bed_methods(dp, voidage, vs, rho, mu, L=1.0, Dt=None, check_ranges=False): r'''This function handles determining which pressure drop in a packed bed correlation are suitable for the provided inputs. Preferred correlations are 'Erdim, Akgiray & Demir' when tube diameter is not provided, and 'Harrison, Brunner & Hecker' when tube diameter is provided. Examples -------- >>> dP_packed_bed_methods(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, L=1.0)[0] 'Erdim, Akgiray & Demir' >>> dP_packed_bed_methods(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, L=1, Dt=1e-2)[0] 'Harrison, Brunner & Hecker' Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area) [m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Dt : float, optional Diameter of the tube, [m] check_ranges : bool, optional Added for Future use only Returns ------- methods : list List of methods which can be used to calculate `dP` with the given inputs ''' methods = [] if (dp is not None and voidage is not None and vs is not None and rho is not None and mu is not None and L is not None): if Dt is not None: methods = ['Harrison, Brunner & Hecker', 'Montillet, Akkari & Comiti', 'Guo, Sun, Zhang, Ding & Liu'] methods.extend(['Erdim, Akgiray & Demir', 'Idelchik', 'Fahien & Schriver', 'KTA', 'Brauer', 'Hicks', 'Carman', 'Jones & Krier', 'Kuo & Nydegger', 'Tallmadge', 'Ergun']) return methods def dP_packed_bed(dp, voidage, vs, rho, mu, L=1, Dt=None, sphericity=None, Method=None): r'''This function handles choosing which pressure drop in a packed bed correlation is used. Automatically select which correlation to use if none is provided. Returns None if insufficient information is provided. Preferred correlations are 'Erdim, Akgiray & Demir' when tube diameter is not provided, and 'Harrison, Brunner & Hecker' when tube diameter is provided. If you are using a particles in a narrow tube between 2 and 3 particle diameters, expect higher than normal voidages (0.4-0.5) and used the method 'Guo, Sun, Zhang, Ding & Liu'. Examples -------- >>> dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3) 1438.2826958844414 >>> dP_packed_bed(dp=8E-4, voidage=0.4, vs=1E-3, rho=1E3, mu=1E-3, Dt=0.01) 1255.1625662548427 >>> dP_packed_bed(dp=0.05, voidage=0.492, vs=0.1, rho=1E3, mu=1E-3, Dt=0.015, Method='Guo, Sun, Zhang, Ding & Liu') 18782.499710673364 Parameters ---------- dp : float Particle diameter of spheres [m] voidage : float Void fraction of bed packing [-] vs : float Superficial velocity of the fluid (volumetric flow rate/cross-sectional area) [m/s] rho : float Density of the fluid [kg/m^3] mu : float Viscosity of the fluid, [Pa*s] L : float, optional Length the fluid flows in the packed bed [m] Dt : float, optional Diameter of the tube, [m] sphericity : float, optional Sphericity of the particles [-] Returns ------- dP : float Pressure drop across the bed [Pa] Other Parameters ---------------- Method : string, optional A string of the function name to use, as in the dictionary packed_beds_correlations ''' if Method is None: Method2 = 'Harrison, Brunner & Hecker' if Dt is not None else 'Erdim, Akgiray & Demir' else: Method2 = Method if dp is not None and sphericity is not None: dp = dp*sphericity if Method2 == "Ergun": return Ergun(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L) elif Method2 == "Tallmadge": return Tallmadge(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L) elif Method2 == "Kuo & Nydegger": return Kuo_Nydegger(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L) elif Method2 == "Jones & Krier": return Jones_Krier(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L) elif Method2 == "Carman": return Carman(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L) elif Method2 == "Hicks": return Hicks(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L) elif Method2 == "Brauer": return Brauer(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L) elif Method2 == "KTA": return KTA(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L) elif Method2 == "Erdim, Akgiray & Demir": return Erdim_Akgiray_Demir(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L) elif Method2 == "Fahien & Schriver": return Fahien_Schriver(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L) elif Method2 == "Idelchik": return Idelchik(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L) elif Method2 == "Harrison, Brunner & Hecker": return Harrison_Brunner_Hecker(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L, Dt=Dt) elif Method2 == "Montillet, Akkari & Comiti": return Montillet_Akkari_Comiti(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L, Dt=Dt) elif Method2 == "Guo, Sun, Zhang, Ding & Liu": return Guo_Sun(dp=dp, voidage=voidage, vs=vs, rho=rho, mu=mu, L=L, Dt=Dt) else: raise ValueError('Unrecognized method') #import matplotlib.pyplot as plt #import numpy as np # #voidage = 0.4 #rho = 1000. #mu = 1E-3 #vs = 0.1 #dp = 0.0001 #methods = dP_packed_bed(dp, voidage, vs, rho, mu, L=1, AvailableMethods=True) #dps = np.logspace(-4, -1, 100) # #for method in methods: # dPs = [dP_packed_bed(dp, voidage, vs, rho, mu, Method=method) for dp in dps] # plt.semilogx(dps, dPs, label=method) #plt.legend() #plt.show() ### Voidage correlations def voidage_Benyahia_Oneil(Dpe, Dt, sphericity): r'''Calculates voidage of a bed of arbitrarily shaped uniform particles packed into a bed or tube of diameter `Dt`, with equivalent sphere diameter `Dp`. Shown in [1]_, and cited by various authors. Correlations exist also for spheres, solid cylinders, hollow cylinders, and 4-hole cylinders. Based on a series of physical measurements. .. math:: \epsilon = 0.1504 + \frac{0.2024}{\phi} + \frac{1.0814} {\left(\frac{d_{t}}{d_{pe}}+0.1226\right)^2} Parameters ---------- Dpe : float Equivalent spherical particle diameter (diameter of a sphere with the same volume), [m] Dt : float Diameter of the tube, [m] sphericity : float Sphericity of particles in bed [] Returns ------- voidage : float Void fraction of bed packing [] Notes ----- Average error of 5.2%; valid 1.5 < dtube/dp < 50 and 0.42 < sphericity < 1 Examples -------- >>> voidage_Benyahia_Oneil(Dpe=1E-3, Dt=1E-2, sphericity=.8) 0.41395363849210065 References ---------- .. [1] Benyahia, F., and K. E. O’Neill. "Enhanced Voidage Correlations for Packed Beds of Various Particle Shapes and Sizes." Particulate Science and Technology 23, no. 2 (April 1, 2005): 169-77. doi:10.1080/02726350590922242. ''' return 0.1504 + 0.2024/sphericity + 1.0814/(Dt/Dpe + 0.1226)**2 def voidage_Benyahia_Oneil_spherical(Dp, Dt): r'''Calculates voidage of a bed of spheres packed into a bed or tube of diameter `Dt`, with sphere diameters `Dp`. Shown in [1]_, and cited by various authors. Correlations exist also for solid cylinders, hollow cylinders, and 4-hole cylinders. Based on a series of physical measurements. .. math:: \epsilon = 0.390+\frac{1.740}{\left(\frac{d_{cyl}}{d_p}+1.140\right)^2} Parameters ---------- Dp : float Spherical particle diameter, [m] Dt : float Diameter of the tube, [m] Returns ------- voidage : float Void fraction of bed packing [] Notes ----- Average error 1.5%, 1.5 < ratio < 50. Examples -------- >>> voidage_Benyahia_Oneil_spherical(Dp=.001, Dt=.05) 0.3906653157443224 References ---------- .. [1] Benyahia, F., and K. E. O’Neill. "Enhanced Voidage Correlations for Packed Beds of Various Particle Shapes and Sizes." Particulate Science and Technology 23, no. 2 (April 1, 2005): 169-77. doi:10.1080/02726350590922242. ''' return 0.390 + 1.740/(Dt/Dp + 1.140)**2 def voidage_Benyahia_Oneil_cylindrical(Dpe, Dt, sphericity): r'''Calculates voidage of a bed of cylindrical uniform particles packed into a bed or tube of diameter `Dt`, with equivalent sphere diameter `Dpe`. Shown in [1]_, and cited by various authors. Correlations exist also for spheres, solid cylinders, hollow cylinders, and 4-hole cylinders. Based on a series of physical measurements. .. math:: \epsilon = 0.373+\frac{1.703}{\left(\frac{d_{cyl}}{d_p}+0.611\right)^2} Parameters ---------- Dpe : float Equivalent spherical particle diameter (diameter of a sphere with the same volume), [m] Dt : float Diameter of the tube, [m] sphericity : float Sphericity of particles in bed [] Returns ------- voidage : float Void fraction of bed packing [] Notes ----- Average error 1.6%; 1.7 < ratio < 26.3. Examples -------- >>> voidage_Benyahia_Oneil_cylindrical(Dpe=.01, Dt=.1, sphericity=.6) 0.38812523109607894 References ---------- .. [1] Benyahia, F., and K. E. O’Neill. "Enhanced Voidage Correlations for Packed Beds of Various Particle Shapes and Sizes." Particulate Science and Technology 23, no. 2 (April 1, 2005): 169-77. doi:10.1080/02726350590922242. ''' return 0.373 + 1.703/(Dt/Dpe + 0.611)**2 fluids-1.0.22/fluids/atmosphere.pyi0000644000175000017500000000574214302004506016572 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from datetime import datetime from typing import ( Callable, List, Optional, Tuple, Union, ) def H_for_P_ATMOSPHERE_1976_err(H: float, P1: float) -> float: ... def _get_extra_radiation_shim( datetime_or_doy: int, solar_constant: float = ..., method: str = ..., epoch_year: int = ..., **kwargs ) -> float: ... def airmass( func: Callable, angle: float, H_max: float = ..., R_planet: float = ..., RI: float = ... ) -> float: ... def earthsun_distance(moment: datetime) -> float: ... def hwm14( Z: float, latitude: float = ..., longitude: float = ..., day: float = ..., seconds: float = ..., geomagnetic_disturbance_index: float = ... ) -> Tuple[float, float]: ... def hwm93( Z: float, latitude: float = ..., longitude: float = ..., day: float = ..., seconds: float = ..., f107: float = ..., f107_avg: float = ..., geomagnetic_disturbance_index: float = ... ) -> Tuple[float, float]: ... def solar_irradiation( latitude: float, longitude: float, Z: float, moment: datetime, surface_tilt: float, surface_azimuth: float, T: None = ..., P: None = ..., solar_constant: float = ..., atmos_refract: float = ..., albedo: float = ..., linke_turbidity: Optional[int] = ..., extraradiation_method: str = ..., airmass_model: str = ..., cache: None = ... ) -> Tuple[float, float, float, float, float]: ... def solar_position( moment: datetime, latitude: float, longitude: float, Z: float = ..., T: float = ..., P: float = ..., atmos_refract: float = ... ) -> List[float]: ... def sunrise_sunset( moment: datetime, latitude: float, longitude: float ) -> Tuple[datetime, datetime, datetime]: ... def to_int_airmass(Z: float, c1: float, c2: float, angle_term: float, R_planet_inv: float, func: Callable) -> float: ... def to_int_dP_ATMOSPHERE_1976(Z: float, dT: float) -> float: ... class ATMOSPHERE_1976: def __init__(self, Z: float, dT: float = ...) -> None: ... @staticmethod def _get_ind_from_H(H: float) -> int: ... @staticmethod def density(T: float, P: float) -> float: ... @staticmethod def gravity(Z: float) -> float: ... @staticmethod def pressure_integral(T1: float, P1: float, dH: float) -> float: ... @staticmethod def sonic_velocity(T: float) -> float: ... @staticmethod def thermal_conductivity(T: float) -> float: ... @staticmethod def viscosity(T: float) -> float: ... class ATMOSPHERE_NRLMSISE00: def __init__( self, Z: float, latitude: float = ..., longitude: float = ..., day: int = ..., seconds: float = ..., f107: float = ..., f107_avg: float = ..., geomagnetic_disturbance_indices: None = ... ) -> None: ... __all__: List[str]fluids-1.0.22/fluids/pump.py0000644000175000017500000020523714302004506015234 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains correlations for calculating the efficiency of a pump, motor, or VFD. It also contains some functions for modeling the performance of a pump, and has been adapted to contain electrical information relevant to chemical engineering design. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Pump Efficiency --------------- .. autofunction :: Corripio_pump_efficiency Motor Efficiency ---------------- .. autofunction :: CSA_motor_efficiency .. autofunction :: motor_efficiency_underloaded .. autofunction :: Corripio_motor_efficiency VFD Efficiency -------------- .. autofunction :: VFD_efficiency Pump Utilities -------------- .. autofunction :: specific_speed .. autofunction :: specific_diameter .. autofunction :: speed_synchronous Motor Utilities --------------- .. autofunction :: motor_round_size .. autodata :: nema_sizes .. autodata :: nema_sizes_hp Electrical Utilities -------------------- .. autofunction :: current_ideal .. autoclass :: CountryPower .. autodata :: electrical_plug_types .. autodata :: voltages_1_phase_residential .. autodata :: voltages_3_phase .. autodata :: residential_power_frequencies .. autodata :: industrial_power .. autodata :: residential_power """ from __future__ import division from math import log, sqrt from fluids.constants import hp from fluids.numerics import interp, tck_interp2d_linear, bisplev __all__ = ['VFD_efficiency', 'CSA_motor_efficiency', 'motor_efficiency_underloaded', 'Corripio_pump_efficiency', 'Corripio_motor_efficiency', 'specific_speed', 'specific_diameter', 'speed_synchronous', 'nema_sizes', 'nema_sizes_hp', 'motor_round_size', 'nema_min_P', 'nema_high_P', 'electrical_plug_types', 'voltages_1_phase_residential', 'voltages_3_phase', 'residential_power_frequencies', 'residential_power', 'industrial_power', 'current_ideal', 'CountryPower'] def Corripio_pump_efficiency(Q): r'''Estimates pump efficiency using the method in Corripio (1982) as shown in [1]_ and originally in [2]_. Estimation only .. math:: \eta_P = -0.316 + 0.24015\ln(Q) - 0.01199\ln(Q)^2 Parameters ---------- Q : float Volumetric flow rate, [m^3/s] Returns ------- efficiency : float Pump efficiency, [-] Notes ----- For Centrifugal pumps only. Range is 50 to 5000 GPM, but input variable is in metric. Values above this range and below this range will go negative, although small deviations are acceptable. Example 16.5 in [1]_. Examples -------- >>> Corripio_pump_efficiency(461./15850.323) 0.705888867095162 References ---------- .. [1] Seider, Warren D., J. D. Seader, and Daniel R. Lewin. Product and Process Design Principles: Synthesis, Analysis, and Evaluation. 2 edition. New York: Wiley, 2003. .. [2] Corripio, A.B., K.S. Chrien, and L.B. Evans, "Estimate Costs of Centrifugal Pumps and Electric Motors," Chem. Eng., 89, 115-118, February 22 (1982). ''' Q *= 15850.323 logQ = log(Q) return -0.316 + 0.24015*logQ - 0.01199*logQ*logQ def Corripio_motor_efficiency(P): r'''Estimates motor efficiency using the method in Corripio (1982) as shown in [1]_ and originally in [2]_. Estimation only. .. math:: \eta_M = 0.8 + 0.0319\ln(P_B) - 0.00182\ln(P_B)^2 Parameters ---------- P : float Power, [W] Returns ------- efficiency : float Motor efficiency, [-] Notes ----- Example 16.5 in [1]_. Examples -------- >>> Corripio_motor_efficiency(137*745.7) 0.9128920875679222 References ---------- .. [1] Seider, Warren D., J. D. Seader, and Daniel R. Lewin. Product and Process Design Principles: Synthesis, Analysis, and Evaluation. 2 edition. New York: Wiley, 2003. .. [2] Corripio, A.B., K.S. Chrien, and L.B. Evans, "Estimate Costs of Centrifugal Pumps and Electric Motors," Chem. Eng., 89, 115-118, February 22 (1982). ''' P = P/745.69987 logP = log(P) return 0.8 + 0.0319*logP - 0.00182*logP*logP VFD_efficiencies = [[0.31, 0.77, 0.86, 0.9, 0.91, 0.93, 0.94], [0.35, 0.8, 0.88, 0.91, 0.92, 0.94, 0.95], [0.41, 0.83, 0.9, 0.93, 0.94, 0.95, 0.96], [0.47, 0.86, 0.93, 0.94, 0.95, 0.96, 0.97], [0.5, 0.88, 0.93, 0.95, 0.95, 0.96, 0.97], [0.46, 0.86, 0.92, 0.95, 0.95, 0.96, 0.97], [0.51, 0.87, 0.92, 0.95, 0.95, 0.96, 0.97], [0.47, 0.86, 0.93, 0.95, 0.96, 0.97, 0.97], [0.55, 0.89, 0.94, 0.95, 0.96, 0.97, 0.97], [0.61, 0.91, 0.95, 0.96, 0.96, 0.97, 0.97], [0.61, 0.91, 0.95, 0.96, 0.96, 0.97, 0.97]] VFD_efficiency_loads = [0.016, 0.125, 0.25, 0.42, 0.5, 0.75, 1.0] VFD_efficiency_powers = [3.0, 5.0, 10.0, 20.0, 30.0, 50.0, 60.0, 75.0, 100.0, 200.0, 400.0] VFD_efficiency_tck = tck_interp2d_linear(VFD_efficiency_loads, VFD_efficiency_powers, VFD_efficiencies) def VFD_efficiency(P, load=1): r'''Returns the efficiency of a Variable Frequency Drive according to [1]_. These values are generic, and not standardized as minimum values. Older VFDs often have much worse performance. Parameters ---------- P : float Power, [W] load : float, optional Fraction of motor's rated electrical capacity being used Returns ------- efficiency : float VFD efficiency, [-] Notes ----- The use of a VFD does change the characteristics of a pump curve's efficiency, but this has yet to be quantified. The effect is small. This value should be multiplied by the product of the pump and motor efficiency to determine the overall efficiency. Efficiency table is in units of hp, so a conversion is performed internally. If load not specified, assumed 1 - where maximum efficiency occurs. Table extends down to 3 hp and up to 400 hp; values outside these limits are rounded to the nearest known value. Values between standardized sizes are interpolated linearly. Load values extend down to 0.016. The table used is for Pulse Width Modulation (PWM) VFDs. Examples -------- >>> VFD_efficiency(10*hp) 0.96 >>> VFD_efficiency(100*hp, load=0.2) 0.92 References ---------- .. [1] GoHz.com. Variable Frequency Drive Efficiency. http://www.variablefrequencydrive.org/vfd-efficiency ''' P = P/hp # convert to hp if P < 3.0: P = 3.0 elif P > 400.0: P = 400.0 if load < 0.016: load = 0.016 return round(float(bisplev(load, P, VFD_efficiency_tck)), 4) nema_sizes_hp = [0.25, 0.3333333333333333, 0.5, 0.75, 1.0, 1.5, 2.0, 3.0, 4.0, 5.0, 5.5, 7.5, 10.0, 15.0, 20.0, 25.0, 30.0, 40.0, 50.0, 60.0, 75.0, 100.0, 125.0, 150.0, 175.0, 200.0, 250.0, 300.0, 350.0, 400.0, 450.0, 500.0] '''list: all NEMA motor sizes in increasing order, in horsepower. ''' nema_sizes = [i*hp for i in nema_sizes_hp] '''list: all NEMA motor sizes in increasing order, in Watts. ''' def motor_round_size(P): r'''Rounds up the power for a motor to the nearest NEMA standard power. The returned power is always larger or equal to the input power. Parameters ---------- P : float Power, [W] Returns ------- P_actual : float Actual power, equal to or larger than input [W] Notes ----- An exception is raised if the power required is larger than any of the NEMA sizes. Larger motors are available, but are unstandardized. Examples -------- >>> motor_round_size(1E5) 111854.98073734052 References ---------- .. [1] Natural Resources Canada. Electric Motors (1 to 500 HP/0.746 to 375 kW). As modified 2015-12-17. https://www.nrcan.gc.ca/energy/regulations-codes-standards/products/6885 ''' for P_actual in nema_sizes: if P_actual >= P: return P_actual raise ValueError('Required power is larger than can be provided with one motor') nema_high_P = [1.0, 1.5, 2.0, 3.0, 4.0, 5.0, 5.5, 7.5, 10.0, 15.0, 20.0, 25.0, 30.0, 40.0, 50.0, 60.0, 75.0, 100.0, 125.0, 150.0, 175.0, 200.0] nema_high_full_open_2p = [0.77, 0.84, 0.855, 0.855, 0.865, 0.865, 0.865, 0.885, 0.895, 0.902, 0.91, 0.917, 0.917, 0.924, 0.93, 0.936, 0.936, 0.936, 0.941, 0.941, 0.95, 0.95] nema_high_full_open_4p = [0.855, 0.865, 0.865, 0.895, 0.895, 0.895, 0.895, 0.91, 0.917, 0.93, 0.93, 0.936, 0.941, 0.941, 0.945, 0.95, 0.95, 0.954, 0.954, 0.958, 0.958, 0.958] nema_high_full_open_6p = [0.825, 0.865, 0.875, 0.885, 0.895, 0.895, 0.895, 0.902, 0.917, 0.917, 0.924, 0.93, 0.936, 0.941, 0.941, 0.945, 0.945, 0.95, 0.95, 0.954, 0.954, 0.954] nema_high_full_closed_2p = [0.77, 0.84, 0.855, 0.865, 0.885, 0.885, 0.885, 0.895, 0.902, 0.91, 0.91, 0.917, 0.917, 0.924, 0.93, 0.936, 0.936, 0.941, 0.95, 0.95, 0.954, 0.954] nema_high_full_closed_4p = [0.855, 0.865, 0.865, 0.895, 0.895, 0.895, 0.895, 0.917, 0.917, 0.924, 0.93, 0.936, 0.936, 0.941, 0.945, 0.95, 0.954, 0.954, 0.954, 0.958, 0.962, 0.962] nema_high_full_closed_6p = [0.825, 0.875, 0.885, 0.895, 0.895, 0.895, 0.895, 0.91, 0.91, 0.917, 0.917, 0.93, 0.93, 0.941, 0.941, 0.945, 0.945, 0.95, 0.95, 0.958, 0.958, 0.958] nema_min_P = [1.0, 1.5, 2.0, 3.0, 4.0, 5.0, 5.5, 7.5, 10.0, 15.0, 20.0, 25.0, 30.0, 40.0, 50.0, 60.0, 75.0, 100.0, 125.0, 150.0, 175.0, 200.0, 250.0, 300.0, 350.0, 400.0, 450.0, 500.0] nema_min_full_open_2p = [0.755, 0.825, 0.84, 0.84, 0.84, 0.855, 0.855, 0.875, 0.885, 0.895, 0.902, 0.91, 0.91, 0.917, 0.924, 0.93, 0.93, 0.93, 0.936, 0.936, 0.945, 0.945, 0.945, 0.95, 0.95, 0.954, 0.958, 0.958] nema_min_full_open_4p = [0.825, 0.84, 0.84, 0.865, 0.865, 0.875, 0.875, 0.885, 0.895, 0.91, 0.91, 0.917, 0.924, 0.93, 0.93, 0.936, 0.941, 0.941, 0.945, 0.95, 0.95, 0.95, 0.954, 0.954, 0.954, 0.954, 0.958, 0.958] nema_min_full_open_6p = [0.8, 0.84, 0.855, 0.865, 0.865, 0.875, 0.875, 0.885, 0.902, 0.902, 0.91, 0.917, 0.924, 0.93, 0.93, 0.936, 0.936, 0.941, 0.941, 0.945, 0.945, 0.945, 0.954, 0.954, 0.954, 0.954, 0.954, 0.954] nema_min_full_open_8p = [0.74, 0.755, 0.855, 0.865, 0.865, 0.875, 0.875, 0.885, 0.895, 0.895, 0.902, 0.902, 0.91, 0.91, 0.917, 0.924, 0.936, 0.936, 0.936, 0.936, 0.936, 0.936, 0.945, 0.945, 0.945, 0.945, 0.945, 0.945] nema_min_full_closed_2p = [0.755, 0.825, 0.84, 0.855, 0.855, 0.875, 0.875, 0.885, 0.895, 0.902, 0.902, 0.91, 0.91, 0.917, 0.924, 0.93, 0.93, 0.936, 0.945, 0.945, 0.95, 0.95, 0.954, 0.954, 0.954, 0.954, 0.954, 0.954] nema_min_full_closed_4p = [0.825, 0.84, 0.84, 0.875, 0.875, 0.875, 0.875, 0.895, 0.895, 0.91, 0.91, 0.924, 0.924, 0.93, 0.93, 0.936, 0.941, 0.945, 0.945, 0.95, 0.95, 0.95, 0.95, 0.954, 0.954, 0.954, 0.954, 0.958] nema_min_full_closed_6p = [0.8, 0.855, 0.865, 0.875, 0.875, 0.875, 0.875, 0.895, 0.895, 0.902, 0.902, 0.917, 0.917, 0.93, 0.93, 0.936, 0.936, 0.941, 0.941, 0.95, 0.95, 0.95, 0.95, 0.95, 0.95, 0.95, 0.95, 0.95] nema_min_full_closed_8p = [0.74, 0.77, 0.825, 0.84, 0.84, 0.855, 0.855, 0.855, 0.885, 0.885, 0.895, 0.895, 0.91, 0.91, 0.917, 0.917, 0.93, 0.93, 0.936, 0.936, 0.941, 0.941, 0.945, 0.945, 0.945, 0.945, 0.945, 0.945] nema_min_full_open_2p_i = (nema_min_P, nema_min_full_open_2p) nema_min_full_open_4p_i = (nema_min_P, nema_min_full_open_4p) nema_min_full_open_6p_i = (nema_min_P, nema_min_full_open_6p) nema_min_full_open_8p_i = (nema_min_P, nema_min_full_open_8p) nema_min_full_closed_2p_i = (nema_min_P, nema_min_full_closed_2p) nema_min_full_closed_4p_i = (nema_min_P, nema_min_full_closed_4p) nema_min_full_closed_6p_i = (nema_min_P, nema_min_full_closed_6p) nema_min_full_closed_8p_i = (nema_min_P, nema_min_full_closed_8p) def CSA_motor_efficiency(P, closed=False, poles=2, high_efficiency=False): r'''Returns the efficiency of a NEMA motor according to [1]_. These values are standards, but are only for full-load operation. Parameters ---------- P : float Power, [W] closed : bool, optional Whether or not the motor is enclosed poles : int, optional The number of poles of the motor high_efficiency : bool, optional Whether or not to look up the high-efficiency value Returns ------- efficiency : float Guaranteed full-load motor efficiency, [-] Notes ----- Criteria for being required to meet the high-efficiency standard is: * Designed for continuous operation * Operates by three-phase induction * Is a squirrel-cage or cage design * Is NEMA type A, B, or C with T or U frame; or IEC design N or H * Is designed for single-speed operation * Has a nominal voltage of less than 600 V AC * Has a nominal frequency of 60 Hz or 50/60 Hz * Has 2, 4, or 6 pole construction * Is either open or closed Pretty much every motor is required to meet the low-standard efficiency table, however. Several low-efficiency standard high power values were added to allow for easy programming; values are the last listed efficiency in the table. Examples -------- >>> CSA_motor_efficiency(100*hp) 0.93 >>> CSA_motor_efficiency(100*hp, closed=True, poles=6, high_efficiency=True) 0.95 References ---------- .. [1] Natural Resources Canada. Electric Motors (1 to 500 HP/0.746 to 375 kW). As modified 2015-12-17. https://www.nrcan.gc.ca/energy/regulations-codes-standards/products/6885 ''' P = P/hp # This could be replaced by a dict and a jump list if high_efficiency: if closed: if poles == 2: efficiency = interp(P, nema_high_P, nema_high_full_closed_2p) elif poles == 4: efficiency = interp(P, nema_high_P, nema_high_full_closed_4p) elif poles == 6: efficiency = interp(P, nema_high_P, nema_high_full_closed_6p) else: if poles == 2: efficiency = interp(P, nema_high_P, nema_high_full_open_2p) elif poles == 4: efficiency = interp(P, nema_high_P, nema_high_full_open_4p) elif poles == 6: efficiency = interp(P, nema_high_P, nema_high_full_open_6p) else: if closed: if poles == 2: efficiency = interp(P, nema_min_P, nema_min_full_closed_2p) elif poles == 4: efficiency = interp(P, nema_min_P, nema_min_full_closed_4p) elif poles == 6: efficiency = interp(P, nema_min_P, nema_min_full_closed_6p) elif poles == 8: efficiency = interp(P, nema_min_P, nema_min_full_closed_8p) else: if poles == 2: efficiency = interp(P, nema_min_P, nema_min_full_open_2p) elif poles == 4: efficiency = interp(P, nema_min_P, nema_min_full_open_4p) elif poles == 6: efficiency = interp(P, nema_min_P, nema_min_full_open_6p) elif poles == 8: efficiency = interp(P, nema_min_P, nema_min_full_open_8p) return round(efficiency, 4) _to_1 = [0.015807118828266818, 4.3158627514876216, -8.5612097969025438, 8.2040355039147386, -3.0147603718043068] _to_5 = [0.015560190519232379, 4.5699731811493152, -7.6800154569463883, 5.4701698738380813, -1.3630071852989643] _to_10 = [0.059917274403963446, 6.356781885851186, -17.099192527703369, 20.707077651470666, -9.2215133149377841] _to_25 = [0.29536141765389839, 4.9918188632064329, -13.785081664656504, 16.908273659093812, -7.5816775136809609] _to_60 = [0.46934299949154384, 4.0298663805446004, -11.632822556859477, 14.616967043793032, -6.6284514347522245] _to_infty = [0.68235730304242914, 2.4402956771025748, -6.8306770996860182, 8.2108432911172713, -3.5629309804411577] _efficiency_lists = [_to_1, _to_5, _to_10, _to_25, _to_60, _to_infty] _efficiency_ones = [0.9218102, 0.64307597, 0.61724113, 0.61569791, 0.6172238, 0.40648294] def motor_efficiency_underloaded(P, load=0.5): r'''Returns the efficiency of a motor operating under its design power according to [1]_.These values are generic; manufacturers usually list 4 points on their product information, but full-scale data is hard to find and not regulated. Parameters ---------- P : float Power, [W] load : float, optional Fraction of motor's rated electrical capacity being used Returns ------- efficiency : float Motor efficiency, [-] Notes ----- If the efficiency returned by this function is unattractive, use a VFD. The curves used here are polynomial fits to [1]_'s graph, and curves were available for the following motor power ranges: 0-1 hp, 1.5-5 hp, 10 hp, 15-25 hp, 30-60 hp, 75-100 hp If above the upper limit of one range, the next value is returned. Examples -------- >>> motor_efficiency_underloaded(1*hp) 0.8705179600980149 >>> motor_efficiency_underloaded(10.1*hp, .1) 0.6728425932357025 References ---------- .. [1] Washington State Energy Office. Energy-Efficient Electric Motor Selection Handbook. 1993. ''' P = P/hp if P <= 1.0: i = 0 elif P <= 5.0: i = 1 elif P <= 10.0: i = 2 elif P <= 25.0: i = 3 elif P <= 60: i = 4 else: i = 5 if load > _efficiency_ones[i]: return 1 else: cs = _efficiency_lists[i] return cs[0] + cs[1]*load + cs[2]*load**2 + cs[3]*load**3 + cs[4]*load**4 def specific_speed(Q, H, n=3600.): r'''Returns the specific speed of a pump operating at a specified Q, H, and n. .. math:: n_S = \frac{n\sqrt{Q}}{H^{0.75}} Parameters ---------- Q : float Flow rate, [m^3/s] H : float Head generated by the pump, [m] n : float, optional Speed of pump [rpm] Returns ------- nS : float Specific Speed, [rpm*m^0.75/s^0.5] Notes ----- Defined at the BEP, with maximum fitting diameter impeller, at a given rotational speed. Examples -------- Example from [1]_. >>> specific_speed(0.0402, 100, 3550) 22.50823182748925 References ---------- .. [1] HI 1.3 Rotodynamic Centrifugal Pumps for Design and Applications ''' return n*sqrt(Q)/H**0.75 def specific_diameter(Q, H, D): r'''Returns the specific diameter of a pump operating at a specified Q, H, and D. .. math:: D_s = \frac{DH^{1/4}}{\sqrt{Q}} Parameters ---------- Q : float Flow rate, [m^3/s] H : float Head generated by the pump, [m] D : float Pump impeller diameter [m] Returns ------- Ds : float Specific diameter, [m^0.25/s^0.5] Notes ----- Used in certain pump sizing calculations. Examples -------- >>> specific_diameter(Q=0.1, H=10., D=0.1) 0.5623413251903492 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. ''' return D*sqrt(sqrt(H)/Q) def speed_synchronous(f, poles=2, phase=3): r'''Returns the synchronous speed of a synchronous motor according to [1]_. .. math:: N_s = \frac{120 f \cdot\text{phase}}{\text{poles}} Parameters ---------- f : float Line frequency, [Hz] poles : int, optional The number of poles of the motor phase : int, optional Line AC phase Returns ------- Ns : float Speed of synchronous motor, [rpm] Notes ----- Synchronous motors have no slip. Large synchronous motors are not self-starting. Examples -------- >>> speed_synchronous(50, poles=12) 1500.0 >>> speed_synchronous(60, phase=1) 3600.0 References ---------- .. [1] All About Circuits. Synchronous Motors. Chapter 13 - AC Motors http://www.allaboutcircuits.com/textbook/alternating-current/chpt-13/synchronous-motors/ ''' return 120.*f*phase/poles def current_ideal(P, V, phase=3, PF=1): r'''Returns the current drawn by a motor of power `P` operating at voltage `V`, with line AC of phase `phase` and power factor `PF` according to [1]_. Single-phase power: .. math:: I = \frac{P}{V \cdot \text{PF}} 3-phase power: .. math:: I = \frac{P}{V \cdot \text{PF} \sqrt{3}} Parameters ---------- P : float Power, [W] V : float Voltage, [V] phase : int, optional Line AC phase, either 1 or 3 PF : float, optional Power factor of motor Returns ------- I : float Power drawn by motor, [A] Notes ----- Does not include power used by the motor's fan, or startor, or internal losses. These are all significant. Examples -------- >>> current_ideal(V=120, P=1E4, PF=1, phase=1) 83.33333333333333 References ---------- .. [1] Electrical Construction, and Maintenance. "Calculating Single- and 3-Phase Parameters." April 1, 2008. http://ecmweb.com/basics/calculating-single-and-3-phase-parameters. ''' if phase not in [1, 3]: raise ValueError('Only 1 and 3 phase power supported') if phase == 3: return P/(V*sqrt(3)*PF) else: return P/(V*PF) class CountryPower(object): """Class to hold information on the residential or electrical data of a country. Data from Wikipedia, obtained in 2017. Parameters ---------- plugs : tuple(str) Tuple of residential plug letter codes in use in the country, [-] voltage : float or tuple(float) Voltage or voltages in common use of the country (residential data has one voltage; industrial data has multiple often), [V] freq : float The electrical frequency in use in the country, [Hz] country : str The name of the country, [-] """ __slots__ = ('plugs', 'voltage', 'freq', 'country') def __repr__(self): return ('CountryPower(country="%s", voltage=%s, freq=%d, plugs=%s)' %(self.plugs, self.voltage, self.freq, self.country)) def __init__(self, country, voltage, freq, plugs=None): self.plugs = plugs self.voltage = voltage self.freq = freq self.country = country residential_power = { "at": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Austria"), "bj": CountryPower(plugs=('C', 'E'), voltage=220, freq=50, country="Benin"), "gh": CountryPower(plugs=('D', 'G'), voltage=230, freq=50, country="Ghana"), "sc": CountryPower(plugs=('G',), voltage=240, freq=50, country="Seychelles"), "bg": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Bulgaria"), "me": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Montenegro"), "fo": CountryPower(plugs=('C', 'E', 'F', 'K'), voltage=230, freq=50, country="Faroe Islands"), "ne": CountryPower(plugs=('A', 'B', 'C', 'D', 'E', 'F'), voltage=220, freq=50, country="Niger"), "za": CountryPower(plugs=('C', 'F', 'M', 'N'), voltage=230, freq=50, country="South Africa"), "az": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Azerbaijan"), "so": CountryPower(plugs=('C',), voltage=220, freq=50, country="Somalia"), "sn": CountryPower(plugs=('C', 'D', 'E', 'K'), voltage=230, freq=50, country="Senegal"), "np": CountryPower(plugs=('C', 'D', 'M'), voltage=230, freq=50, country="Nepal"), "sl": CountryPower(plugs=('D', 'G'), voltage=230, freq=50, country="Sierra Leone"), "be": CountryPower(plugs=('C', 'E'), voltage=230, freq=50, country="Belgium"), "vg": CountryPower(plugs=('A', 'B'), voltage=110, freq=60, country="British Virgin Islands"), "bz": CountryPower(plugs=('A', 'B', 'G'), voltage=110, freq=60, country="Belize"), "tw": CountryPower(plugs=('A', 'B'), voltage=110, freq=60, country="Taiwan"), "bf": CountryPower(plugs=('C', 'E'), voltage=220, freq=50, country="Burkina Faso"), "ao": CountryPower(plugs=('C',), voltage=220, freq=50, country="Angola"), "gi": CountryPower(plugs=('C', 'G'), voltage=240, freq=50, country="Gibraltar"), "ee": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Estonia"), "bs": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="Bahamas"), "ir": CountryPower(plugs=('C', 'F'), voltage=220, freq=50, country="Iran"), "sv": CountryPower(plugs=('A', 'B'), voltage=115, freq=60, country="El Salvador"), "am": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Armenia"), "is": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Iceland"), "uy": CountryPower(plugs=('C', 'F', 'I', 'L'), voltage=230, freq=50, country="Uruguay"), "mc": CountryPower(plugs=('C', 'D', 'E', 'F'), voltage=230, freq=50, country="Monaco"), "jm": CountryPower(plugs=('A', 'B'), voltage=110, freq=50, country="Jamaica"), "im": CountryPower(plugs=('G',), voltage=240, freq=50, country="Isle of Man"), "dm": CountryPower(plugs=('D', 'G'), voltage=230, freq=50, country="Dominica"), "mu": CountryPower(plugs=('C', 'G'), voltage=230, freq=50, country="Mauritius"), "cz": CountryPower(plugs=('C', 'E'), voltage=230, freq=50, country="Czech Republic"), "kh": CountryPower(plugs=('A', 'C', 'G'), voltage=230, freq=50, country="Cambodia"), "cf": CountryPower(plugs=('C', 'E'), voltage=220, freq=50, country="Central African Republic"), "se": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Sweden"), "uz": CountryPower(plugs=('C', 'I'), voltage=220, freq=50, country="Uzbekistan"), "sk": CountryPower(plugs=('C', 'E'), voltage=230, freq=50, country="Slovakia"), "ky": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="Cayman Islands"), "tn": CountryPower(plugs=('C', 'E'), voltage=230, freq=50, country="Tunisia"), "do": CountryPower(plugs=('A', 'B'), voltage=110, freq=60, country="Dominican Republic"), "hu": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Hungary"), "af": CountryPower(plugs=('C', 'F'), voltage=220, freq=50, country="Afghanistan"), "et": CountryPower(plugs=('C', 'E', 'F', 'L'), voltage=220, freq=50, country="Ethiopia"), "tv": CountryPower(plugs=('I',), voltage=220, freq=50, country="Tuvalu"), "ad": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Andorra"), "hn": CountryPower(plugs=('A', 'B'), voltage=110, freq=60, country="Honduras"), "ls": CountryPower(plugs=('M',), voltage=220, freq=50, country="Lesotho"), "na": CountryPower(plugs=('D', 'M'), voltage=220, freq=50, country="Namibia"), "jo": CountryPower(plugs=('B', 'C', 'D', 'F', 'G', 'J'), voltage=230, freq=50, country="Jordan"), "pl": CountryPower(plugs=('C', 'E'), voltage=230, freq=50, country="Poland"), "bt": CountryPower(plugs=('C', 'D', 'F', 'G', 'M'), voltage=230, freq=50, country="Bhutan"), "fm": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="Micronesia"), "no": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Norway"), "fk": CountryPower(plugs=('G',), voltage=240, freq=50, country="Falkland Islands"), "je": CountryPower(plugs=('G',), voltage=230, freq=50, country="Jersey"), "ye": CountryPower(plugs=('A', 'D', 'G'), voltage=230, freq=50, country="Yemen"), "cm": CountryPower(plugs=('C', 'E'), voltage=220, freq=50, country="Cameroon"), "md": CountryPower(plugs=('C', 'F'), voltage=220, freq=50, country="Moldova"), "cn": CountryPower(plugs=('A', 'I', 'C'), voltage=220, freq=50, country="China"), "gm": CountryPower(plugs=('G',), voltage=230, freq=50, country="Gambia"), "sg": CountryPower(plugs=('C', 'G', 'M'), voltage=230, freq=50, country="Singapore"), "tj": CountryPower(plugs=('C', 'F', 'I'), voltage=220, freq=50, country="Tajikistan"), "gt": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="Guatemala"), "ma": CountryPower(plugs=('C', 'E'), voltage=220, freq=50, country="Morocco"), "mv": CountryPower(plugs=('D', 'G', 'J', 'K', 'L'), voltage=230, freq=50, country="Maldives"), "ga": CountryPower(plugs=('C',), voltage=220, freq=50, country="Gabon"), "bo": CountryPower(plugs=('A', 'C'), voltage=115, freq=50, country="Bolivia"), "ly": CountryPower(plugs=('C', 'D', 'F', 'L'), voltage=127, freq=50, country="Libya"), "rw": CountryPower(plugs=('C', 'J'), voltage=230, freq=50, country="Rwanda"), "cg": CountryPower(plugs=('C', 'E'), voltage=230, freq=50, country="Congo, Republic of the"), "kz": CountryPower(plugs=('C', 'F'), voltage=220, freq=50, country="Kazakhstan"), "jp": CountryPower(plugs=('A', 'B'), voltage=100, freq=50, country="Japan"), "co": CountryPower(plugs=('A', 'B'), voltage=110, freq=60, country="Colombia"), "sm": CountryPower(plugs=('C', 'F', 'L'), voltage=230, freq=50, country="San Marino"), "rs": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Serbia"), "gw": CountryPower(plugs=('C',), voltage=220, freq=50, country="Guinea-Bissau"), "kr": CountryPower(plugs=('C', 'F'), voltage=220, freq=60, country="South Korea"), "py": CountryPower(plugs=('C',), voltage=220, freq=50, country="Paraguay"), "lt": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Lithuania"), "tr": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Turkey"), "pa": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="Panama"), "ba": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Bosnia and Herzegovina"), "vn": CountryPower(plugs=('A', 'C', 'G'), voltage=220, freq=50, country="Vietnam"), "iq": CountryPower(plugs=('C', 'D', 'G'), voltage=230, freq=50, country="Iraq"), "pk": CountryPower(plugs=('C', 'D', 'G', 'M'), voltage=230, freq=50, country="Pakistan"), "li": CountryPower(plugs=('C', 'J'), voltage=230, freq=50, country="Liechtenstein"), "mz": CountryPower(plugs=('C', 'F', 'M'), voltage=220, freq=50, country="Mozambique"), "au": CountryPower(plugs=('I',), voltage=230, freq=50, country="Australia"), "ws": CountryPower(plugs=('I',), voltage=230, freq=50, country="Samoa"), "sr": CountryPower(plugs=('C', 'F'), voltage=127, freq=60, country="Suriname"), "mn": CountryPower(plugs=('C', 'E'), voltage=220, freq=50, country="Mongolia"), "bw": CountryPower(plugs=('D', 'G', 'M'), voltage=230, freq=50, country="Botswana"), "gb": CountryPower(plugs=('G',), voltage=230, freq=50, country="United Kingdom"), "pg": CountryPower(plugs=('I',), voltage=240, freq=50, country="Papua New Guinea"), "dj": CountryPower(plugs=('C', 'E'), voltage=220, freq=50, country="Djibouti"), "th": CountryPower(plugs=('A', 'B', 'C', 'F'), voltage=220, freq=50, country="Thailand"), "us": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="United States"), "gr": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Greece"), "kn": CountryPower(plugs=('A', 'B', 'D', 'G'), voltage=110, freq=60, country="St. Kitts and Nevis"), "ug": CountryPower(plugs=('G',), voltage=240, freq=50, country="Uganda"), "ie": CountryPower(plugs=('G',), voltage=230, freq=50, country="Ireland"), "tg": CountryPower(plugs=('C',), voltage=220, freq=50, country="Togo"), "td": CountryPower(plugs=('C', 'D', 'E', 'F'), voltage=220, freq=50, country="Chad"), "la": CountryPower(plugs=('C', 'E', 'F'), voltage=230, freq=50, country="Laos"), "sy": CountryPower(plugs=('C', 'E', 'L'), voltage=220, freq=50, country="Syria"), "bm": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="Bermuda"), "il": CountryPower(plugs=('C', 'H', 'M'), voltage=230, freq=50, country="Israel"), "nz": CountryPower(plugs=('I',), voltage=230, freq=50, country="New Zealand"), "mg": CountryPower(plugs=('C', 'D', 'E', 'J', 'K'), voltage=220, freq=50, country="Madagascar"), "ve": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="Venezuela"), "dk": CountryPower(plugs=('C', 'E', 'F', 'K'), voltage=230, freq=50, country="Denmark"), "lb": CountryPower(plugs=('A', 'B', 'C', 'D', 'G'), voltage=220, freq=50, country="Lebanon"), "kp": CountryPower(plugs=('A', 'C', 'F'), voltage=110, freq=60, country="North Korea"), "vu": CountryPower(plugs=('C', 'G', 'I'), voltage=220, freq=50, country="Vanuatu"), "cu": CountryPower(plugs=('A', 'B', 'C'), voltage=110, freq=60, country="Cuba"), "pt": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Portugal"), "kw": CountryPower(plugs=('C', 'G'), voltage=240, freq=50, country="Kuwait"), "cd": CountryPower(plugs=('C', 'D', 'E'), voltage=220, freq=50, country="Congo, Democratic Republic of the"), "nr": CountryPower(plugs=('I',), voltage=240, freq=50, country="Nauru"), "si": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Slovenia"), "bd": CountryPower(plugs=('C', 'D', 'G', 'K'), voltage=220, freq=50, country="Bangladesh"), "al": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Albania"), "ec": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="Ecuador"), "gy": CountryPower(plugs=('A', 'B', 'D', 'G'), voltage=110, freq=60, country="Guyana"), "bb": CountryPower(plugs=('A', 'B'), voltage=115, freq=50, country="Barbados"), "ke": CountryPower(plugs=('G',), voltage=240, freq=50, country="Kenya"), "mx": CountryPower(plugs=('A', 'B'), voltage=127, freq=60, country="Mexico"), "gq": CountryPower(plugs=('C', 'E'), voltage=220, freq=50, country="Equatorial Guinea"), "gn": CountryPower(plugs=('C', 'F', 'K'), voltage=220, freq=50, country="Guinea"), "bi": CountryPower(plugs=('C', 'E'), voltage=220, freq=50, country="Burundi"), "lv": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Latvia"), "fj": CountryPower(plugs=('I',), voltage=240, freq=50, country="Fiji"), "ci": CountryPower(plugs=('C', 'E'), voltage=230, freq=50, country="Côte d'Ivoire"), "ai": CountryPower(plugs=('A',), voltage=110, freq=60, country="Anguilla"), "gu": CountryPower(plugs=('A', 'B'), voltage=110, freq=60, country="Guam"), "lr": CountryPower(plugs=('A', 'B', 'C', 'E', 'F'), voltage=120, freq=60, country="Liberia"), "br": CountryPower(plugs=('C', 'N'), voltage=220, freq=60, country="Brazil"), "cv": CountryPower(plugs=('C', 'F'), voltage=220, freq=50, country="Cape Verde"), "cl": CountryPower(plugs=('L',), voltage=220, freq=50, country="Chile"), "in": CountryPower(plugs=('C', 'D', 'M'), voltage=230, freq=50, country="India"), "gg": CountryPower(plugs=('G',), voltage=230, freq=50, country="Guernsey"), "tt": CountryPower(plugs=('A', 'B'), voltage=115, freq=60, country="Trinidad & Tobago"), "de": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Germany"), "qa": CountryPower(plugs=('D', 'G'), voltage=240, freq=50, country="Qatar"), "ph": CountryPower(plugs=('A', 'B'), voltage=220, freq=60, country="Philippines"), "sd": CountryPower(plugs=('C', 'D'), voltage=230, freq=50, country="Sudan"), "mm": CountryPower(plugs=('C', 'D', 'F', 'G'), voltage=230, freq=50, country="Myanmar"), "gd": CountryPower(plugs=('G',), voltage=230, freq=50, country="Grenada"), "st": CountryPower(plugs=('C', 'F'), voltage=220, freq=50, country="São Tomé and Príncipe"), "sz": CountryPower(plugs=('M',), voltage=230, freq=50, country="Swaziland"), "ro": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Romania"), "xk": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Kosovo"), "cy": CountryPower(plugs=('G',), voltage=240, freq=50, country="Cyprus"), "dz": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Algeria"), "zm": CountryPower(plugs=('C', 'D', 'G'), voltage=230, freq=50, country="Zambia"), "by": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Belarus"), "hr": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Croatia"), "lu": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Luxembourg"), "fi": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Finland"), "zw": CountryPower(plugs=('D', 'G'), voltage=220, freq=50, country="Zimbabwe"), "km": CountryPower(plugs=('C', 'E'), voltage=220, freq=50, country="Comoros"), "tl": CountryPower(plugs=('C', 'E', 'F', 'I'), voltage=220, freq=50, country="Timor-Leste "), "tz": CountryPower(plugs=('D', 'G'), voltage=230, freq=50, country="Tanzania"), "ht": CountryPower(plugs=('A', 'B'), voltage=110, freq=60, country="Haiti"), "vc": CountryPower(plugs=('C', 'E', 'G', 'I', 'K'), voltage=230, freq=50, country="St. Vincent and the Grenadines"), "es": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Spain"), "my": CountryPower(plugs=('C', 'G', 'M'), voltage=230, freq=50, country="Malaysia"), "lc": CountryPower(plugs=('G',), voltage=240, freq=50, country="St. Lucia"), "tm": CountryPower(plugs=('B', 'C', 'F'), voltage=220, freq=50, country="Turkmenistan"), "pe": CountryPower(plugs=('A', 'B', 'C'), voltage=220, freq=60, country="Peru"), "ua": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Ukraine"), "eg": CountryPower(plugs=('C', 'F'), voltage=220, freq=50, country="Egypt"), "sb": CountryPower(plugs=('I', 'G'), voltage=220, freq=50, country="Solomon Islands"), "to": CountryPower(plugs=('I',), voltage=240, freq=50, country="Tonga"), "fr": CountryPower(plugs=('C', 'E'), voltage=230, freq=50, country="France"), "ng": CountryPower(plugs=('D', 'G'), voltage=240, freq=50, country="Nigeria"), "sh": CountryPower(plugs=('G',), voltage=240, freq=50, country="Saint Helena, Ascension and Tristan da Cunha"), "mw": CountryPower(plugs=('G',), voltage=230, freq=50, country="Malawi"), "ms": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="Montserrat"), "ae": CountryPower(plugs=('C', 'D', 'G'), voltage=220, freq=50, country="United Arab Emirates"), "nl": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Netherlands"), "id": CountryPower(plugs=('C', 'F', 'G'), voltage=230, freq=50, country="Indonesia"), "ru": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Russia"), "ar": CountryPower(plugs=('C', 'I'), voltage=220, freq=50, country="Argentina"), "bn": CountryPower(plugs=('G',), voltage=240, freq=50, country="Brunei"), "pw": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="Palau"), "kg": CountryPower(plugs=('C', 'F'), voltage=220, freq=50, country="Kyrgyzstan"), "bh": CountryPower(plugs=('G',), voltage=230, freq=50, country="Bahrain"), "ml": CountryPower(plugs=('C', 'E'), voltage=220, freq=50, country="Mali"), "it": CountryPower(plugs=('C', 'F', 'L'), voltage=230, freq=50, country="Italy"), "sa": CountryPower(plugs=('A', 'B', 'G'), voltage=220, freq=60, country="Saudi Arabia"), "ag": CountryPower(plugs=('A', 'B'), voltage=230, freq=60, country="Antigua and Barbuda"), "mr": CountryPower(plugs=('C',), voltage=220, freq=50, country="Mauritania"), "om": CountryPower(plugs=('C', 'G'), voltage=240, freq=50, country="Oman"), "lk": CountryPower(plugs=('D', 'G', 'M'), voltage=230, freq=50, country="Sri Lanka"), "er": CountryPower(plugs=('C', 'L'), voltage=230, freq=50, country="Eritrea"), "mk": CountryPower(plugs=('C', 'F'), voltage=230, freq=50, country="Macedonia"), "ni": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="Nicaragua"), "ch": CountryPower(plugs=('C', 'J'), voltage=230, freq=50, country="Switzerland"), "ca": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="Canada"), "cr": CountryPower(plugs=('A', 'B'), voltage=120, freq=60, country="Costa Rica") } '''Dictionary of country-code to CountryPower instances for residential use.''' CONST_380 = 380 CONST_400 = 400 CONST_415 = 415 CONST_440 = 440 CONST_480 = 480 TUP_190 = (190,) TUP_208 = (208,) TUP_240 = (240,) TUP_380 = (CONST_380,) TUP_400 = (CONST_400,) TUP_415 = (CONST_415,) industrial_power = { "at": CountryPower(voltage=TUP_400, freq=50, country='Austria'), "bj": CountryPower(voltage=TUP_380, freq=50, country='Benin'), "gh": CountryPower(voltage=TUP_400, freq=50, country='Ghana'), "sc": CountryPower(voltage=TUP_240, freq=50, country='Seychelles'), "bg": CountryPower(voltage=TUP_400, freq=50, country='Bulgaria'), "me": CountryPower(voltage=TUP_400, freq=50, country='Montenegro'), "fo": CountryPower(voltage=TUP_400, freq=50, country='Faeroe Islands'), "iq": CountryPower(voltage=TUP_400, freq=50, country='Iraq'), "ne": CountryPower(voltage=TUP_380, freq=50, country='Niger'), "za": CountryPower(voltage=TUP_400, freq=50, country='South Africa'), "az": CountryPower(voltage=TUP_380, freq=50, country='Azerbaijan'), "so": CountryPower(voltage=TUP_380, freq=50, country='Somalia'), "sn": CountryPower(voltage=TUP_400, freq=50, country='Senegal'), "np": CountryPower(voltage=TUP_400, freq=50, country='Nepal'), "sl": CountryPower(voltage=TUP_400, freq=50, country='Sierra Leone'), "be": CountryPower(voltage=TUP_400, freq=50, country='Belgium'), "vg": CountryPower(voltage=TUP_190, freq=60, country='British Virgin Islands'), "bz": CountryPower(voltage=(190, CONST_380), freq=60, country='Belize'), "tw": CountryPower(voltage=(220,), freq=60, country='Taiwan'), "bf": CountryPower(voltage=TUP_380, freq=50, country='Burkina Faso'), "ao": CountryPower(voltage=TUP_380, freq=50, country='Angola'), "ee": CountryPower(voltage=TUP_400, freq=50, country='Estonia'), "bs": CountryPower(voltage=TUP_208, freq=60, country='Bahamas'), "ir": CountryPower(voltage=TUP_400, freq=50, country='Iran'), "sv": CountryPower(voltage=(200,), freq=60, country='El Salvador'), "am": CountryPower(voltage=TUP_400, freq=50, country='Armenia'), "is": CountryPower(voltage=TUP_400, freq=50, country='Iceland'), "uy": CountryPower(voltage=TUP_380, freq=50, country='Uruguay'), "mc": CountryPower(voltage=TUP_400, freq=50, country='Monaco'), "jm": CountryPower(voltage=TUP_190, freq=50, country='Jamaica'), "im": CountryPower(voltage=TUP_415, freq=50, country='Isle of Man'), "dm": CountryPower(voltage=TUP_400, freq=50, country='Dominica'), "mu": CountryPower(voltage=TUP_400, freq=50, country='Mauritius'), "cz": CountryPower(voltage=TUP_400, freq=50, country='Czech Republic'), "kh": CountryPower(voltage=TUP_400, freq=50, country='Cambodia'), "cf": CountryPower(voltage=TUP_380, freq=50, country='Central African Republic'), "se": CountryPower(voltage=TUP_400, freq=50, country='Sweden'), "uz": CountryPower(voltage=TUP_380, freq=50, country='Uzbekistan'), "sk": CountryPower(voltage=TUP_400, freq=50, country='Slovakia'), "ky": CountryPower(voltage=TUP_240, freq=60, country='Cayman Islands'), "tn": CountryPower(voltage=TUP_400, freq=50, country='Tunisia'), "hu": CountryPower(voltage=TUP_400, freq=50, country='Hungary'), "af": CountryPower(voltage=TUP_380, freq=50, country='Afghanistan'), "tc": CountryPower(voltage=TUP_240, freq=60, country='Turks and Caicos Islands'), "et": CountryPower(voltage=TUP_380, freq=50, country='Ethiopia'), "sd": CountryPower(voltage=TUP_400, freq=50, country='Sudan'), "ad": CountryPower(voltage=TUP_400, freq=50, country='Andorra'), "hn": CountryPower(voltage=(208, 230, 240, 460, CONST_480), freq=60, country='Honduras'), "ls": CountryPower(voltage=TUP_380, freq=50, country='Lesotho'), "na": CountryPower(voltage=TUP_380, freq=50, country='Namibia'), "pl": CountryPower(voltage=TUP_400, freq=50, country='Poland'), "bt": CountryPower(voltage=TUP_400, freq=50, country='Bhutan'), "sa": CountryPower(voltage=TUP_400, freq=60, country='Saudi Arabia'), "no": CountryPower(voltage=(230, 400), freq=50, country='Norway'), "fk": CountryPower(voltage=TUP_415, freq=50, country='Falkland Islands'), "ye": CountryPower(voltage=TUP_400, freq=50, country='Yemen'), "gi": CountryPower(voltage=TUP_400, freq=50, country='Gibraltar'), "md": CountryPower(voltage=TUP_400, freq=50, country='Moldova'), "cn": CountryPower(voltage=TUP_380, freq=50, country='China'), "gm": CountryPower(voltage=TUP_400, freq=50, country='Gambia'), "sg": CountryPower(voltage=TUP_400, freq=50, country='Singapore'), "tj": CountryPower(voltage=TUP_380, freq=50, country='Tajikistan'), "gt": CountryPower(voltage=TUP_208, freq=60, country='Guatemala'), "ma": CountryPower(voltage=TUP_380, freq=50, country='Morocco'), "mv": CountryPower(voltage=TUP_400, freq=50, country='Maldives'), "ga": CountryPower(voltage=TUP_380, freq=50, country='Gabon'), "bo": CountryPower(voltage=TUP_400, freq=50, country='Bolivia'), "ly": CountryPower(voltage=TUP_400, freq=50, country='Libya'), "rw": CountryPower(voltage=TUP_400, freq=50, country='Rwanda'), "cg": CountryPower(voltage=TUP_400, freq=50, country="People's Republic of Congo"), "kz": CountryPower(voltage=TUP_380, freq=50, country='Kazakhstan'), "jp": CountryPower(voltage=(200,), freq=50, country='Japan'), "co": CountryPower(voltage=(220, 440), freq=60, country='Colombia'), "sm": CountryPower(voltage=TUP_400, freq=50, country='San Marino'), "rs": CountryPower(voltage=TUP_400, freq=50, country='Serbia'), "gw": CountryPower(voltage=TUP_380, freq=50, country='Guinea-Bissau'), "kr": CountryPower(voltage=TUP_380, freq=60, country='South Korea'), "py": CountryPower(voltage=TUP_380, freq=50, country='Paraguay'), "lt": CountryPower(voltage=TUP_400, freq=50, country='Lithuania'), "tr": CountryPower(voltage=TUP_400, freq=50, country='Turkey'), "ss": CountryPower(voltage=TUP_400, freq=50, country='South Sudan'), "ba": CountryPower(voltage=TUP_400, freq=50, country='Bosnia & Herzegovina'), "vn": CountryPower(voltage=TUP_380, freq=50, country='Vietnam'), "do": CountryPower(voltage=(120, 208, 277, 480), freq=60, country='Dominican Republic'), "pk": CountryPower(voltage=TUP_400, freq=50, country='Pakistan'), "li": CountryPower(voltage=TUP_400, freq=50, country='Liechtenstein'), "mz": CountryPower(voltage=TUP_380, freq=50, country='Mozambique'), "au": CountryPower(voltage=TUP_400, freq=50, country='Australia'), "ws": CountryPower(voltage=TUP_400, freq=50, country='Samoa'), "sr": CountryPower(voltage=(220, 400,), freq=60, country='Suriname'), "mn": CountryPower(voltage=TUP_400, freq=50, country='Mongolia'), "bw": CountryPower(voltage=TUP_400, freq=50, country='Botswana'), "gb": CountryPower(voltage=TUP_415, freq=50, country='United Kingdom'), "pg": CountryPower(voltage=TUP_415, freq=50, country='Papua New Guinea'), "dj": CountryPower(voltage=TUP_380, freq=50, country='Djibouti'), "th": CountryPower(voltage=TUP_400, freq=50, country='Thailand'), "us": CountryPower(voltage=(120, 208, 277, 480, 120, 240, 240, CONST_480), freq=60, country='United States of America'), "gr": CountryPower(voltage=TUP_400, freq=50, country='Greece'), "ug": CountryPower(voltage=TUP_415, freq=50, country='Uganda'), "ie": CountryPower(voltage=TUP_415, freq=50, country='Ireland'), "tg": CountryPower(voltage=TUP_380, freq=50, country='Togo'), "td": CountryPower(voltage=TUP_380, freq=50, country='Chad'), "la": CountryPower(voltage=TUP_400, freq=50, country='Laos'), "sy": CountryPower(voltage=TUP_380, freq=50, country='Syria'), "bm": CountryPower(voltage=TUP_208, freq=60, country='Bermuda'), "il": CountryPower(voltage=TUP_400, freq=50, country='Israel'), "nz": CountryPower(voltage=TUP_400, freq=50, country='New Zealand'), "mg": CountryPower(voltage=TUP_380, freq=50, country='Madagascar'), "ve": CountryPower(voltage=(120,), freq=60, country='Venezuela'), "dk": CountryPower(voltage=TUP_400, freq=50, country='Denmark'), "lb": CountryPower(voltage=TUP_400, freq=50, country='Lebanon'), "kp": CountryPower(voltage=TUP_380, freq=50, country='North Korea'), "vu": CountryPower(voltage=TUP_400, freq=50, country='Vanuatu'), "cu": CountryPower(voltage=(190, 440), freq=60, country='Cuba'), "kw": CountryPower(voltage=TUP_415, freq=50, country='Kuwait'), "cd": CountryPower(voltage=TUP_380, freq=50, country='Democratic Republic of Congo'), "nr": CountryPower(voltage=TUP_415, freq=50, country='Nauru'), "si": CountryPower(voltage=TUP_400, freq=50, country='Slovenia'), "mt": CountryPower(voltage=TUP_400, freq=50, country='Malta'), "bd": CountryPower(voltage=TUP_380, freq=50, country='Bangladesh'), "al": CountryPower(voltage=TUP_400, freq=50, country='Albania'), "ec": CountryPower(voltage=TUP_208, freq=60, country='Ecuador'), "gy": CountryPower(voltage=TUP_190, freq=60, country='Guyana'), "bb": CountryPower(voltage=(200,), freq=50, country='Barbados'), "ke": CountryPower(voltage=TUP_415, freq=50, country='Kenya'), "mx": CountryPower(voltage=(220, CONST_480), freq=60, country='Mexico'), "gn": CountryPower(voltage=TUP_380, freq=50, country='Guinea'), "bi": CountryPower(voltage=TUP_380, freq=50, country='Burundi'), "lv": CountryPower(voltage=TUP_400, freq=50, country='Latvia'), "fj": CountryPower(voltage=TUP_415, freq=50, country='Fiji'), "ci": CountryPower(voltage=TUP_380, freq=50, country='Côte d’Ivoire'), "ai": CountryPower(voltage=(120, 208, 127, 220, 240, 415), freq=60, country='Anguilla'), "gu": CountryPower(voltage=TUP_190, freq=60, country='Guam'), "lr": CountryPower(voltage=TUP_208, freq=60, country='Liberia'), "br": CountryPower(voltage=(220, 380), freq=60, country='Brazil'), "cv": CountryPower(voltage=TUP_400, freq=50, country='Cape Verde'), "cl": CountryPower(voltage=TUP_380, freq=50, country='Chile'), "in": CountryPower(voltage=TUP_400, freq=50, country='India'), "tt": CountryPower(voltage=(115, 230, 230, 400), freq=60, country='Trinidad & Tobago'), "de": CountryPower(voltage=TUP_400, freq=50, country='Germany'), "pa": CountryPower(voltage=TUP_240, freq=60, country='Panama'), "qa": CountryPower(voltage=TUP_415, freq=50, country='Qatar'), "ph": CountryPower(voltage=TUP_380, freq=60, country='Philippines'), "jo": CountryPower(voltage=TUP_400, freq=50, country='Jordan'), "mm": CountryPower(voltage=TUP_400, freq=50, country='Myanmar'), "gd": CountryPower(voltage=TUP_400, freq=50, country='Grenada'), "st": CountryPower(voltage=TUP_400, freq=50, country='São Tomé and Príncipe'), "sz": CountryPower(voltage=TUP_400, freq=50, country='Swaziland'), "ro": CountryPower(voltage=TUP_400, freq=50, country='Romania'), "xk": CountryPower(voltage=(230, 400), freq=50, country='Kosovo'), "cy": CountryPower(voltage=TUP_400, freq=50, country='Cyprus'), "dz": CountryPower(voltage=TUP_400, freq=50, country='Algeria'), "zm": CountryPower(voltage=TUP_400, freq=50, country='Zambia'), "by": CountryPower(voltage=TUP_380, freq=50, country='Belarus'), "hr": CountryPower(voltage=TUP_400, freq=50, country='Croatia'), "lu": CountryPower(voltage=TUP_400, freq=50, country='Luxembourg'), "fi": CountryPower(voltage=TUP_400, freq=50, country='Finland'), "zw": CountryPower(voltage=TUP_415, freq=50, country='Zimbabwe'), "km": CountryPower(voltage=TUP_380, freq=50, country='Comoros'), "tl": CountryPower(voltage=TUP_380, freq=50, country='East Timor'), "tz": CountryPower(voltage=TUP_415, freq=50, country='Tanzania'), "ht": CountryPower(voltage=TUP_190, freq=60, country='Haiti'), "vc": CountryPower(voltage=TUP_400, freq=50, country='Saint Vincent and the Grenadines'), "es": CountryPower(voltage=TUP_400, freq=50, country='Spain'), "my": CountryPower(voltage=TUP_415, freq=50, country='Malaysia'), "lc": CountryPower(voltage=TUP_400, freq=50, country='Saint Lucia'), "tm": CountryPower(voltage=TUP_380, freq=50, country='Turkmenistan'), "pe": CountryPower(voltage=(220,), freq=60, country='Peru'), "ua": CountryPower(voltage=TUP_400, freq=50, country='Ukraine'), "eg": CountryPower(voltage=TUP_380, freq=50, country='Egypt'), "to": CountryPower(voltage=TUP_415, freq=50, country='Tonga'), "fr": CountryPower(voltage=TUP_400, freq=50, country='France'), "ng": CountryPower(voltage=TUP_415, freq=50, country='Nigeria'), "mw": CountryPower(voltage=TUP_400, freq=50, country='Malawi'), "ms": CountryPower(voltage=TUP_400, freq=60, country='Montserrat'), "ae": CountryPower(voltage=TUP_400, freq=50, country='United Arab Emirates'), "nl": CountryPower(voltage=TUP_400, freq=50, country='Netherlands'), "id": CountryPower(voltage=TUP_400, freq=50, country='Indonesia'), "ru": CountryPower(voltage=TUP_380, freq=50, country='Russia'), "ar": CountryPower(voltage=TUP_380, freq=50, country='Argentina'), "bn": CountryPower(voltage=TUP_415, freq=50, country='Brunei'), "pw": CountryPower(voltage=TUP_208, freq=60, country='Palau'), "kg": CountryPower(voltage=TUP_380, freq=50, country='Kyrgyzstan'), "bh": CountryPower(voltage=TUP_400, freq=50, country='Bahrain'), "ml": CountryPower(voltage=TUP_380, freq=50, country='Mali'), "it": CountryPower(voltage=TUP_400, freq=50, country='Italy'), "cm": CountryPower(voltage=TUP_380, freq=50, country='Cameroon'), "ag": CountryPower(voltage=TUP_400, freq=60, country='Antigua and Barbuda'), "mr": CountryPower(voltage=(220,), freq=50, country='Mauritania'), "om": CountryPower(voltage=TUP_415, freq=50, country='Oman'), "lk": CountryPower(voltage=TUP_400, freq=50, country='Sri Lanka'), "er": CountryPower(voltage=TUP_400, freq=50, country='Eritrea'), "mk": CountryPower(voltage=TUP_400, freq=50, country='Macedonia, Republic of'), "ni": CountryPower(voltage=TUP_208, freq=60, country='Nicaragua'), "ch": CountryPower(voltage=TUP_400, freq=50, country='Switzerland'), "ca": CountryPower(voltage=(120, 208, 240, CONST_480, 347, 600), freq=60, country='Canada'), "cr": CountryPower(voltage=TUP_240, freq=60, country='Costa Rica') } '''Dictionary of country-code to CountryPower instances for industrial use.''' electrical_plug_types = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N'] '''List of all electrical plug types in use around the world.''' voltages_1_phase_residential = [100, 110, 115, 120, 127, 220, 230, 240] '''List of all AC 1-phase voltages used in residential settings around the world.''' voltages_3_phase = [120, 190, 200, 208, 220, 230, 240, 277, 380, 400, 415, 440, 480] '''List of all AC 3-phase voltages used in industrial settings around the world.''' residential_power_frequencies = [50, 60] '''List of all AC 1-phase frequencies used in residential settings around the world.''' # https://www.grainger.com/content/supplylink-v-belt-maintenance-key-to-electric-motor-efficiency # Source of values for v belt, notched, and synchronous # Technology assessment: energy-efficient belt transmissions # Source of cogged value, their range is 95-98 V_BELT = 'V' COGGED_V_BELT = 'cogged' NOTCHED_BELT = 'notched' SYNCHRONOUS_BELT = 'synchronous' belt_efficiencies = {V_BELT: 0.95, NOTCHED_BELT: 0.97, COGGED_V_BELT: 0.965, SYNCHRONOUS_BELT: 0.98} DEEP_GROOVE_BALL = "Deep groove ball" ANGULAR_CONTACT_BALL_SINGLE_ROW = "Angular contact ball Single row" ANGULAR_CONTACT_BALL_DOUBLE_ROW = "Angular contact ball Double row" FOUR_POINT_CONTACT_BALL = "Four point contact ball" SELF_ALIGNING_BALL = "Self aligning ball" CYLINDRICAL_ROLLER_WITH_CAGE = "Cylindrical roller with cage" CYLINDRICAL_ROLLER_FULL_COMPLEMENT = "Cylindrical roller full complement" NEEDLE_ROLLER = "Needle roller" TAPER_ROLLER = "Taper roller" SPHERICAL_ROLLER = "Spherical roller" THRUST_BALL = "Thrust ball" CYLINDRICAL_ROLLER_THRUST = "Cylindrical roller thrust" NEEDLE_ROLLER_THRUST = "Needle roller thrust" SPHERICAL_ROLLER_THRUST = "Spherical roller thrust" bearing_friction_factors = {DEEP_GROOVE_BALL: 0.0015, ANGULAR_CONTACT_BALL_SINGLE_ROW: 0.002, ANGULAR_CONTACT_BALL_DOUBLE_ROW: 0.0024, FOUR_POINT_CONTACT_BALL: 0.0024, SELF_ALIGNING_BALL: 0.001, CYLINDRICAL_ROLLER_WITH_CAGE: 0.0011, CYLINDRICAL_ROLLER_FULL_COMPLEMENT: 0.002, NEEDLE_ROLLER: 0.0025, TAPER_ROLLER: 0.0018, SPHERICAL_ROLLER: 0.0018, THRUST_BALL: 0.0013, CYLINDRICAL_ROLLER_THRUST: 0.005, NEEDLE_ROLLER_THRUST: 0.005, SPHERICAL_ROLLER_THRUST: 0.0018} # In m, diameter of fans fan_diameters = [0.125, 0.132, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.212, 0.224, 0.236, 0.25, 0.265, 0.28, 0.3, 0.315, 0.335, 0.355, 0.375, 0.4, 0.425, 0.45, 0.475, 0.5, 0.53, 0.56, 0.6, 0.63, 0.67, 0.71, 0.75, 0.8, 0.85, 0.9, 0.95, 1.0] FEG90 = [0.425, 0.448, 0.472, 0.501, 0.527, 0.552, 0.574, 0.594, 0.613, 0.633, 0.652, 0.669, 0.686, 0.703, 0.718, 0.735, 0.746, 0.759, 0.77, 0.779, 0.789, 0.797, 0.804, 0.81, 0.815, 0.819, 0.823, 0.827, 0.83, 0.833, 0.835, 0.837, 0.838, 0.84, 0.841, 0.841, 0.841] FEG85 = [0.401, 0.423, 0.446, 0.473, 0.498, 0.521, 0.542, 0.561, 0.579, 0.598, 0.616, 0.631, 0.648, 0.664, 0.678, 0.694, 0.704, 0.717, 0.727, 0.736, 0.745, 0.753, 0.759, 0.765, 0.769, 0.774, 0.777, 0.781, 0.784, 0.786, 0.788, 0.79, 0.791, 0.793, 0.793, 0.794, 0.794] FEG80 = [0.378, 0.399, 0.421, 0.447, 0.47, 0.492, 0.511, 0.53, 0.546, 0.565, 0.581, 0.596, 0.612, 0.627, 0.64, 0.655, 0.665, 0.676, 0.686, 0.695, 0.703, 0.711, 0.717, 0.722, 0.726, 0.73, 0.734, 0.738, 0.74, 0.742, 0.744, 0.746, 0.747, 0.748, 0.749, 0.75, 0.75] FEG75 = [0.357, 0.377, 0.398, 0.422, 0.444, 0.464, 0.483, 0.5, 0.516, 0.533, 0.549, 0.563, 0.578, 0.592, 0.604, 0.618, 0.628, 0.639, 0.648, 0.656, 0.664, 0.671, 0.677, 0.681, 0.685, 0.689, 0.693, 0.696, 0.698, 0.701, 0.703, 0.704, 0.705, 0.706, 0.707, 0.708, 0.708] FEG71 = [0.337, 0.356, 0.375, 0.398, 0.419, 0.438, 0.456, 0.472, 0.487, 0.503, 0.518, 0.531, 0.545, 0.559, 0.57, 0.584, 0.593, 0.603, 0.612, 0.619, 0.627, 0.633, 0.639, 0.643, 0.647, 0.651, 0.654, 0.657, 0.659, 0.661, 0.663, 0.665, 0.666, 0.667, 0.668, 0.668, 0.668] FEG67 = [0.318, 0.336, 0.354, 0.376, 0.395, 0.414, 0.43, 0.446, 0.46, 0.475, 0.489, 0.502, 0.515, 0.527, 0.538, 0.551, 0.559, 0.569, 0.577, 0.584, 0.592, 0.598, 0.603, 0.607, 0.611, 0.614, 0.617, 0.621, 0.622, 0.624, 0.626, 0.627, 0.629, 0.63, 0.63, 0.631, 0.631] FEG63 = [0.301, 0.317, 0.334, 0.355, 0.373, 0.39, 0.406, 0.421, 0.434, 0.448, 0.462, 0.473, 0.486, 0.498, 0.508, 0.52, 0.528, 0.537, 0.545, 0.552, 0.559, 0.565, 0.569, 0.573, 0.577, 0.58, 0.583, 0.586, 0.588, 0.59, 0.591, 0.592, 0.594, 0.594, 0.595, 0.595, 0.596] FEG60 = [0.284, 0.299, 0.316, 0.335, 0.352, 0.369, 0.383, 0.397, 0.41, 0.423, 0.436, 0.447, 0.459, 0.47, 0.48, 0.491, 0.499, 0.507, 0.515, 0.521, 0.528, 0.533, 0.538, 0.541, 0.545, 0.548, 0.55, 0.553, 0.555, 0.557, 0.558, 0.559, 0.56, 0.561, 0.562, 0.562, 0.562] FEG56 = [0.268, 0.282, 0.298, 0.316, 0.333, 0.348, 0.362, 0.375, 0.387, 0.4, 0.411, 0.422, 0.433, 0.444, 0.453, 0.464, 0.471, 0.479, 0.486, 0.492, 0.498, 0.503, 0.507, 0.511, 0.514, 0.517, 0.519, 0.522, 0.524, 0.525, 0.527, 0.528, 0.529, 0.53, 0.53, 0.531, 0.531] FEG53 = [0.253, 0.267, 0.281, 0.298, 0.314, 0.329, 0.342, 0.354, 0.365, 0.377, 0.388, 0.398, 0.409, 0.419, 0.428, 0.438, 0.444, 0.452, 0.459, 0.464, 0.47, 0.475, 0.479, 0.482, 0.485, 0.488, 0.49, 0.493, 0.494, 0.496, 0.497, 0.498, 0.499, 0.5, 0.501, 0.501, 0.501] FEG50 = [0.239, 0.252, 0.266, 0.282, 0.297, 0.31, 0.323, 0.334, 0.345, 0.356, 0.367, 0.376, 0.386, 0.395, 0.404, 0.413, 0.42, 0.427, 0.433, 0.438, 0.444, 0.448, 0.452, 0.455, 0.458, 0.461, 0.463, 0.465, 0.467, 0.468, 0.47, 0.47, 0.471, 0.472, 0.473, 0.473, 0.473] fan_bare_shaft_efficiencies = {'FEG90': FEG90, 'FEG85': FEG85, 'FEG80': FEG80, 'FEG75': FEG75, 'FEG71': FEG71, 'FEG67': FEG67, 'FEG63': FEG63, 'FEG60': FEG60, 'FEG56': FEG56, 'FEG53': FEG53, 'FEG50': FEG50} '''for key, values in fan_bare_shaft_efficiencies.items(): plt.plot(fan_diameters, values, label=key) plt.legend() plt.show()''' FMEG_axial_powers = [125.0, 300.0, 1000.0, 2500.0, 5000.0, 8000.0, 10000.0, 20000.0, 60000.0, 160000.0, 300000.0, 375000.0, 500000.0] FMEG27 = [0.15, 0.174, 0.207, 0.232, 0.251, 0.264, 0.27, 0.275, 0.283, 0.291, 0.296, 0.297, 0.3] FMEG31 = [0.19, 0.214, 0.247, 0.272, 0.291, 0.304, 0.31, 0.315, 0.323, 0.331, 0.336, 0.337, 0.34] FMEG35 = [0.23, 0.254, 0.287, 0.312, 0.331, 0.344, 0.35, 0.355, 0.363, 0.371, 0.376, 0.377, 0.38] FMEG39 = [0.27, 0.294, 0.327, 0.352, 0.371, 0.384, 0.39, 0.395, 0.403, 0.411, 0.416, 0.417, 0.42] FMEG42 = [0.3, 0.324, 0.357, 0.382, 0.401, 0.414, 0.42, 0.425, 0.433, 0.441, 0.446, 0.447, 0.45] FMEG46 = [0.34, 0.364, 0.397, 0.422, 0.441, 0.454, 0.46, 0.465, 0.473, 0.481, 0.486, 0.487, 0.49] FMEG50 = [0.38, 0.404, 0.437, 0.462, 0.481, 0.494, 0.5, 0.505, 0.513, 0.521, 0.526, 0.527, 0.53] FMEG53 = [0.41, 0.434, 0.467, 0.492, 0.511, 0.524, 0.53, 0.535, 0.543, 0.551, 0.556, 0.557, 0.56] FMEG55 = [0.43, 0.454, 0.487, 0.512, 0.531, 0.544, 0.55, 0.555, 0.563, 0.571, 0.576, 0.577, 0.58] FMEG58 = [0.46, 0.484, 0.517, 0.542, 0.561, 0.574, 0.58, 0.585, 0.593, 0.601, 0.606, 0.607, 0.61] FMEG60 = [0.48, 0.504, 0.537, 0.562, 0.581, 0.594, 0.6, 0.605, 0.613, 0.621, 0.626, 0.627, 0.63] FMEG62 = [0.5, 0.524, 0.557, 0.582, 0.601, 0.614, 0.62, 0.625, 0.633, 0.641, 0.646, 0.647, 0.65] FMEG64 = [0.52, 0.544, 0.577, 0.602, 0.621, 0.634, 0.64, 0.645, 0.653, 0.661, 0.666, 0.667, 0.67] FMEG66 = [0.54, 0.564, 0.597, 0.622, 0.641, 0.654, 0.66, 0.665, 0.673, 0.681, 0.686, 0.687, 0.69] fan_driven_axial_efficiencies = {'FMEG27': FMEG27, 'FMEG31': FMEG31, 'FMEG35': FMEG35, 'FMEG39': FMEG39, 'FMEG42': FMEG42, 'FMEG46': FMEG46, 'FMEG50': FMEG50, 'FMEG53': FMEG53, 'FMEG55': FMEG55, 'FMEG58': FMEG58, 'FMEG60': FMEG60, 'FMEG62': FMEG62, 'FMEG64': FMEG64, 'FMEG66': FMEG66} FMEG_centrifugal_backward_powers = FMEG_axial_powers FMEG35 = [0.15, 0.19, 0.245, 0.287, 0.318, 0.34, 0.35, 0.357, 0.369, 0.38, 0.387, 0.389, 0.392] FMEG39 = [0.19, 0.23, 0.285, 0.327, 0.358, 0.38, 0.39, 0.397, 0.409, 0.42, 0.427, 0.429, 0.432] FMEG42 = [0.22, 0.26, 0.315, 0.357, 0.388, 0.41, 0.42, 0.427, 0.439, 0.45, 0.457, 0.459, 0.462] FMEG46 = [0.26, 0.3, 0.355, 0.397, 0.428, 0.45, 0.46, 0.467, 0.479, 0.49, 0.497, 0.499, 0.502] FMEG50 = [0.3, 0.34, 0.395, 0.437, 0.468, 0.49, 0.5, 0.507, 0.519, 0.53, 0.537, 0.539, 0.542] FMEG53 = [0.33, 0.37, 0.425, 0.467, 0.498, 0.52, 0.53, 0.537, 0.549, 0.56, 0.567, 0.569, 0.572] FMEG55 = [0.35, 0.39, 0.445, 0.487, 0.518, 0.54, 0.55, 0.557, 0.569, 0.58, 0.587, 0.589, 0.592] FMEG58 = [0.38, 0.42, 0.475, 0.517, 0.548, 0.57, 0.58, 0.587, 0.599, 0.61, 0.617, 0.619, 0.622] FMEG60 = [0.4, 0.44, 0.495, 0.537, 0.568, 0.59, 0.6, 0.607, 0.619, 0.63, 0.637, 0.639, 0.642] FMEG62 = [0.42, 0.46, 0.515, 0.557, 0.588, 0.61, 0.62, 0.627, 0.639, 0.65, 0.657, 0.659, 0.662] FMEG64 = [0.44, 0.48, 0.535, 0.577, 0.608, 0.63, 0.64, 0.647, 0.659, 0.67, 0.677, 0.679, 0.682] FMEG66 = [0.46, 0.5, 0.555, 0.597, 0.628, 0.65, 0.66, 0.667, 0.679, 0.69, 0.697, 0.699, 0.702] FMEG68 = [0.48, 0.52, 0.575, 0.617, 0.648, 0.67, 0.68, 0.687, 0.699, 0.71, 0.717, 0.719, 0.722] FMEG70 = [0.5, 0.54, 0.595, 0.637, 0.668, 0.69, 0.7, 0.707, 0.719, 0.73, 0.737, 0.739, 0.742] FMEG72 = [0.52, 0.56, 0.615, 0.657, 0.688, 0.71, 0.72, 0.727, 0.739, 0.75, 0.757, 0.759, 0.762] FMEG74 = [0.54, 0.58, 0.635, 0.677, 0.708, 0.73, 0.74, 0.747, 0.759, 0.77, 0.777, 0.779, 0.782] FMEG76 = [0.56, 0.6, 0.655, 0.697, 0.728, 0.75, 0.76, 0.767, 0.779, 0.79, 0.797, 0.799, 0.802] fan_centrifugal_backward_efficiencies = {'FMEG35': FMEG35, 'FMEG39': FMEG39, 'FMEG42': FMEG42, 'FMEG46': FMEG46, 'FMEG50': FMEG50, 'FMEG53': FMEG53, 'FMEG55': FMEG55, 'FMEG58': FMEG58, 'FMEG60': FMEG60, 'FMEG62': FMEG62, 'FMEG64': FMEG64, 'FMEG66': FMEG66, 'FMEG68': FMEG68, 'FMEG70': FMEG70, 'FMEG72': FMEG72, 'FMEG74': FMEG74, 'FMEG76': FMEG76} FMEG_cross_flow_powers = [130.0, 300.0, 500.0, 800.0, 1000.0, 2000.0, 3000.0, 4000.0, 5000.0, 8000.0, 10000.0, 16000.0, 22000.0] FMEG08 = [0.03, 0.04, 0.046, 0.051, 0.054, 0.062, 0.067, 0.07, 0.072, 0.078, 0.08, 0.08, 0.08] FMEG11 = [0.06, 0.07, 0.076, 0.081, 0.084, 0.092, 0.097, 0.1, 0.102, 0.108, 0.11, 0.11, 0.11] FMEG14 = [0.09, 0.1, 0.106, 0.111, 0.114, 0.122, 0.127, 0.13, 0.132, 0.138, 0.14, 0.14, 0.14] FMEG19 = [0.14, 0.15, 0.156, 0.161, 0.164, 0.172, 0.177, 0.18, 0.182, 0.188, 0.19, 0.19, 0.19] FMEG23 = [0.18, 0.19, 0.196, 0.201, 0.204, 0.212, 0.217, 0.22, 0.222, 0.228, 0.23, 0.23, 0.23] FMEG28 = [0.23, 0.24, 0.246, 0.251, 0.254, 0.262, 0.267, 0.27, 0.272, 0.278, 0.28, 0.28, 0.28] FMEG32 = [0.27, 0.28, 0.286, 0.291, 0.294, 0.302, 0.307, 0.31, 0.312, 0.318, 0.32, 0.32, 0.32] fan_crossflow_efficiencies = {'FMEG08': FMEG08, 'FMEG11': FMEG11, 'FMEG14': FMEG14, 'FMEG19': FMEG19, 'FMEG23': FMEG23, 'FMEG28': FMEG28, 'FMEG32': FMEG32}fluids-1.0.22/fluids/geometry.py0000644000175000017500000057007514302004506016113 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2019, 2020 Caleb Bell. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains functionality for calculating parameters about different geometrical forms that come up in engineering practice. Implemented geometry objects are tanks, helical coils, cooling towers, air coolers, compact heat exchangers, and plate and frame heat exchangers. Additional functionality for typical catalyst/adsorbent pellet shapes is also included. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Main Interfaces --------------- .. autoclass :: TANK :members: :undoc-members: :show-inheritance: .. autofunction:: V_tank .. autofunction:: V_from_h .. autofunction:: SA_tank .. autofunction:: SA_from_h .. autoclass :: HelicalCoil :members: :undoc-members: :show-inheritance: .. autoclass :: PlateExchanger :members: :undoc-members: :show-inheritance: .. autoclass :: AirCooledExchanger :members: :undoc-members: :show-inheritance: .. autoclass :: HyperbolicCoolingTower :members: :undoc-members: :show-inheritance: .. autoclass :: RectangularFinExchanger :members: :undoc-members: :show-inheritance: .. autoclass :: RectangularOffsetStripFinExchanger :members: :undoc-members: :show-inheritance: Tank Volume Functions --------------------- .. autofunction:: V_partial_sphere .. autofunction:: V_horiz_conical .. autofunction:: V_horiz_ellipsoidal .. autofunction:: V_horiz_guppy .. autofunction:: V_horiz_spherical .. autofunction:: V_horiz_torispherical .. autofunction:: V_vertical_conical .. autofunction:: V_vertical_ellipsoidal .. autofunction:: V_vertical_spherical .. autofunction:: V_vertical_torispherical .. autofunction:: V_vertical_conical_concave .. autofunction:: V_vertical_ellipsoidal_concave .. autofunction:: V_vertical_spherical_concave .. autofunction:: V_vertical_torispherical_concave Tank Surface Area Functions --------------------------- .. autofunction:: SA_partial_sphere .. autofunction:: SA_ellipsoidal_head .. autofunction:: SA_conical_head .. autofunction:: SA_guppy_head .. autofunction:: SA_torispheroidal .. autofunction:: SA_partial_cylindrical_body .. autofunction:: SA_partial_horiz_conical_head .. autofunction:: SA_partial_horiz_spherical_head .. autofunction:: SA_partial_horiz_ellipsoidal_head .. autofunction:: SA_partial_horiz_guppy_head .. autofunction:: SA_partial_horiz_torispherical_head .. autofunction:: SA_partial_vertical_conical_head .. autofunction:: SA_partial_vertical_ellipsoidal_head .. autofunction:: SA_partial_vertical_spherical_head .. autofunction:: SA_partial_vertical_torispherical_head Miscellaneous Geometry Functions -------------------------------- .. autofunction:: pitch_angle_solver .. autofunction:: plate_enlargement_factor .. autofunction:: a_torispherical .. autofunction:: A_partial_circle .. autofunction:: circle_segment_h_from_A Pellet Properties ----------------- .. autofunction:: sphericity .. autofunction:: aspect_ratio .. autofunction:: circularity .. autofunction:: A_cylinder .. autofunction:: V_cylinder .. autofunction:: A_hollow_cylinder .. autofunction:: V_hollow_cylinder .. autofunction:: A_multiple_hole_cylinder .. autofunction:: V_multiple_hole_cylinder """ from __future__ import division from math import (pi, sin, cos, tan, asin, acos, atan, acosh, log, radians, degrees, sqrt) from cmath import sqrt as csqrt from fluids.constants import inch from fluids.core import PY3 from fluids.numerics import (cacos, catan, secant, brenth, newton, ellipe, ellipkinc, ellipeinc, horner, chebval, linspace, derivative, quad, translate_bound_func) __all__ = ['TANK', 'HelicalCoil', 'PlateExchanger', 'RectangularFinExchanger', 'RectangularOffsetStripFinExchanger', 'HyperbolicCoolingTower', 'AirCooledExchanger', 'SA_partial_sphere', 'V_partial_sphere', 'V_horiz_conical', 'V_horiz_ellipsoidal', 'V_horiz_guppy', 'V_horiz_spherical', 'V_horiz_torispherical', 'V_vertical_conical', 'V_vertical_ellipsoidal', 'V_vertical_spherical', 'V_vertical_torispherical', 'V_vertical_conical_concave', 'V_vertical_ellipsoidal_concave', 'V_vertical_spherical_concave', 'V_vertical_torispherical_concave', 'a_torispherical', 'SA_ellipsoidal_head', 'SA_conical_head', 'SA_guppy_head', 'SA_torispheroidal', 'SA_partial_cylindrical_body', 'A_partial_circle', 'SA_partial_horiz_conical_head', 'SA_partial_horiz_spherical_head', 'SA_partial_horiz_guppy_head', 'SA_partial_horiz_ellipsoidal_head', 'SA_partial_horiz_torispherical_head', 'SA_partial_vertical_conical_head', 'SA_partial_vertical_spherical_head', 'SA_partial_vertical_torispherical_head', 'SA_partial_vertical_ellipsoidal_head', 'V_from_h', 'V_tank', 'SA_from_h', 'SA_tank', 'sphericity', 'aspect_ratio', 'circularity', 'A_cylinder', 'V_cylinder', 'A_hollow_cylinder', 'V_hollow_cylinder', 'A_multiple_hole_cylinder', 'V_multiple_hole_cylinder', 'pitch_angle_solver', 'plate_enlargement_factor', 'circle_segment_h_from_A'] ### Spherical Vessels, partially filled def SA_partial_sphere(D, h): r'''Calculates surface area of a partial sphere according to [1]_. If h is half of D, the shape is half a sphere. No bottom is considered in this function. Valid inputs are positive values of D and h, with h always smaller or equal to D. .. math:: a = \sqrt{h(2r - h)} .. math:: A = \pi(a^2 + h^2) Parameters ---------- D : float Diameter of the sphere, [m] h : float Height, as measured from the cap to where the sphere is cut off [m] Returns ------- SA : float Surface area [m^2] Examples -------- >>> SA_partial_sphere(1., 0.7) 2.199114857512855 References ---------- .. [1] Weisstein, Eric W. "Spherical Cap." Text. Accessed December 22, 2015. http://mathworld.wolfram.com/SphericalCap.html.''' r = D*0.5 a = sqrt(h*(2.*r - h)) return pi*(a*a + h*h) def V_partial_sphere(D, h): r'''Calculates volume of a partial sphere according to [1]_. If h is half of D, the shape is half a sphere. No bottom is considered in this function. Valid inputs are positive values of D and h, with h always smaller or equal to D. .. math:: a = \sqrt{h(2r - h)} .. math:: V = 1/6 \pi h(3a^2 + h^2) Parameters ---------- D : float Diameter of the sphere, [m] h : float Height, as measured up to where the sphere is cut off, [m] Returns ------- V : float Volume [m^3] Examples -------- >>> V_partial_sphere(1., 0.7) 0.4105014400690663 References ---------- .. [1] Weisstein, Eric W. "Spherical Cap." Text. Accessed December 22, 2015. http://mathworld.wolfram.com/SphericalCap.html.''' if h <= 0.0: return 0.0 r = 0.5*D a = sqrt(h*(2.*r - h)) return 1/6.*pi*h*(3.*a*a + h*h) #def V_horizontal_bullet(D, L, H, b=None): # # As in GPSA # if not b: # b = 0.25*D # elliptical 2:1 heads # Ze = H/D # Zc = H/D # K1 = 2*b/D # alpha = 2*atan(H/sqrt(2*H*D/2 - H**2)) # fZc = (alpha - sin(alpha)*cos(alpha))/pi # fZe = -H**2/D**2*(-3 + 2*H/D) # V = 1/6.*pi*K1*D**3*fZe + 1/4.*pi*D**2*L*fZc # return V #print(V_horizontal_bullet(1., 5., .4999999999999, 0.000000000000000001)) #def V_vertical_bullet(D, L, H, b=None): # K1 = 2*b/D # Ze = (H1 + H2)/K1*D # is divided by D? # fZe = -((H1 + H2)) # # V = 1/6.*pi*K1*D**3*fZe + 1/4.*pi*D**2*L*fZc # return V ### Functions as developed by Dan Jones def V_horiz_conical(D, L, a, h, headonly=False): r'''Calculates volume of a tank with conical ends, according to [1]_. .. math:: V_f = A_fL + \frac{2aR^2}{3}K, \;\;0 \le h < R\\ .. math:: V_f = A_fL + \frac{2aR^2}{3}\pi/2,\;\; h = R\\ .. math:: V_f = A_fL + \frac{2aR^2}{3}(\pi-K), \;\; R< h \le 2R .. math:: K = \cos^{-1} M + M^3\cosh^{-1} \frac{1}{M} - 2M\sqrt{1 - M^2} .. math:: M = \left|\frac{R-h}{R}\right| .. math:: Af = R^2\cos^{-1}\frac{R-h}{R} - (R-h)\sqrt{2Rh - h^2} Parameters ---------- D : float Diameter of the main cylindrical section, [m] L : float Length of the main cylindrical section, [m] a : float Distance the cone head extends on one side, [m] h : float Height, as measured up to where the fluid ends, [m] headonly : bool, optional Function returns only the volume of a single head side if True Returns ------- V : float Volume [m^3] Examples -------- Matching example from [1]_, with inputs in inches and volume in gallons. >>> V_horiz_conical(D=108., L=156., a=42., h=36)/231 2041.1923581273443 References ---------- .. [1] Jones, D. "Calculating Tank Volume." Text. Accessed December 22, 2015. http://www.webcalc.com.br/blog/Tank_Volume.PDF''' if h <= 0.0: return 0.0 R = 0.5*D R_third = R/3.0 t0 = (R-h)/R if t0 < -1.0 or t0 > 1.0: raise ValueError("Unphysical height") Af = R*R*acos(t0) - (R-h)*sqrt(h*(R + R - h)) M = abs(t0) if h == R: Vf = a*R*R_third*pi else: K = acos(M) + M*M*M*acosh(1./M) - 2.*M*sqrt(1.-M*M) if 0. <= h < R: Vf = 2.*a*R*R_third*K else: # elif R < h <= 2.0*R: Vf = 2.*a*R*R_third*(pi - K) if headonly: Vf = 0.5*Vf else: Vf += Af*L return Vf def V_horiz_ellipsoidal(D, L, a, h, headonly=False): r'''Calculates volume of a tank with ellipsoidal ends, according to [1]_. .. math:: V_f = A_fL + \pi a h^2\left(1 - \frac{h}{3R}\right) .. math:: Af = R^2\cos^{-1}\frac{R-h}{R} - (R-h)\sqrt{2Rh - h^2} Parameters ---------- D : float Diameter of the main cylindrical section, [m] L : float Length of the main cylindrical section, [m] a : float Distance the ellipsoidal head extends on one side, [m] h : float Height, as measured up to where the fluid ends, [m] headonly : bool, optional Function returns only the volume of a single head side if True Returns ------- V : float Volume [m^3] Examples -------- Matching example from [1]_, with inputs in inches and volume in gallons. >>> V_horiz_ellipsoidal(D=108, L=156, a=42, h=36)/231. 2380.9565415578145 References ---------- .. [1] Jones, D. "Calculating Tank Volume." Text. Accessed December 22, 2015. http://www.webcalc.com.br/blog/Tank_Volume.PDF''' if h <= 0.0: return 0.0 R = 0.5*D Af = R*R*acos((R-h)/R) - (R-h)*sqrt(2*R*h - h*h) Vf = pi*a*h*h*(1 - h/(3.*R)) if headonly: Vf = 0.5*Vf else: Vf += Af*L return Vf def V_horiz_guppy(D, L, a, h, headonly=False): r'''Calculates volume of a tank with guppy heads, according to [1]_. .. math:: V_f = A_fL + \frac{2aR^2}{3}\cos^{-1}\left(1 - \frac{h}{R}\right) +\frac{2a}{9R}\sqrt{2Rh - h^2}(2h-3R)(h+R) .. math:: Af = R^2\cos^{-1}\frac{R-h}{R} - (R-h)\sqrt{2Rh - h^2} Parameters ---------- D : float Diameter of the main cylindrical section, [m] L : float Length of the main cylindrical section, [m] a : float Distance the guppy head extends on one side, [m] h : float Height, as measured up to where the fluid ends, [m] headonly : bool, optional Function returns only the volume of a single head side if True Returns ------- V : float Volume [m^3] Examples -------- Matching example from [1]_, with inputs in inches and volume in gallons. >>> V_horiz_guppy(D=108., L=156., a=42., h=36)/231. 1931.7208029476762 References ---------- .. [1] Jones, D. "Calculating Tank Volume." Text. Accessed December 22, 2015. http://www.webcalc.com.br/blog/Tank_Volume.PDF''' if h <= 0.0: return 0.0 R = 0.5*D x0 = sqrt(2.*R*h - h*h) Af = R*R*acos((R-h)/R) - (R-h)*x0 Vf = 2.*a*R*R/3.*acos(1. - h/R) + 2.*a/9./R*x0*(2.0*h - 3.0*R)*(h + R) if headonly: Vf = Vf*0.5 else: Vf += Af*L return Vf def _V_horiz_spherical_toint(x, r2, R2, den_inv): x2 = x*x return (r2 - x2)*atan(sqrt((R2 - x2)*den_inv)) def V_horiz_spherical(D, L, a, h, headonly=False): r'''Calculates volume of a tank with spherical heads, according to [1]_. .. math:: V_f = A_fL + \frac{\pi a}{6}(3R^2 + a^2),\;\; h = R, |a|\le R .. math:: V_f = A_fL + \frac{\pi a}{3}(3R^2 + a^2),\;\; h = D, |a|\le R .. math:: V_f = A_fL + \pi a h^2\left(1 - \frac{h}{3R}\right),\;\; h = 0, \text{ or } |a| = 0, R, -R .. math:: V_f = A_fL + \frac{a}{|a|}\left\{\frac{2r^3}{3}\left[\cos^{-1} \frac{R^2 - rw}{R(w-r)} + \cos^{-1}\frac{R^2 + rw}{R(w+r)} - \frac{z}{r}\left(2 + \left(\frac{R}{r}\right)^2\right) \cos^{-1}\frac{w}{R}\right] - 2\left(wr^2 - \frac{w^3}{3}\right) \tan^{-1}\frac{y}{z} + \frac{4wyz}{3}\right\} ,\;\; h \ne R, D; a \ne 0, R, -R, |a| \ge 0.01D .. math:: V_f = A_fL + \frac{a}{|a|}\left[2\int_w^R(r^2 - x^2)\tan^{-1} \sqrt{\frac{R^2-x^2}{r^2-R^2}}dx - A_f z\right] ,\;\; h \ne R, D; a \ne 0, R, -R, |a| < 0.01D .. math:: Af = R^2\cos^{-1}\frac{R-h}{R} - (R-h)\sqrt{2Rh - h^2} .. math:: r = \frac{a^2 + R^2}{2|a|} .. math:: w = R - h .. math:: y = \sqrt{2Rh-h^2} .. math:: z = \sqrt{r^2 - R^2} Parameters ---------- D : float Diameter of the main cylindrical section, [m] L : float Length of the main cylindrical section, [m] a : float Distance the spherical head extends on one side, [m] h : float Height, as measured up to where the fluid ends, [m] headonly : bool, optional Function returns only the volume of a single head side if True Returns ------- V : float Volume [m^3] Examples -------- Matching example from [1]_, with inputs in inches and volume in gallons. >>> V_horiz_spherical(D=108., L=156., a=42., h=36)/231. 2303.9615116986183 References ---------- .. [1] Jones, D. "Calculating Tank Volume." Text. Accessed December 22, 2015. http://www.webcalc.com.br/blog/Tank_Volume.PDF''' if h <= 0.0: return 0.0 R = D/2. r = (a*a + R*R)/2./abs(a) w = R - h y = sqrt(2*R*h - h**2) z = sqrt(r**2 - R**2) Af = R**2*acos((R-h)/R) - (R-h)*sqrt(2*R*h - h**2) if h == R and abs(a) <= R: Vf = pi*a/6*(3*R**2 + a**2) elif h == D and abs(a) <= R: Vf = pi*a/3*(3*R**2 + a**2) elif h == 0 or a == 0 or a == R or a == -R or z == 0.0: Vf = pi*a*h**2*(1 - h/3./R) elif abs(a) >= 0.01*D: Vf = a/abs(a)*( 2*r**3/3.*(acos((R**2 - r*w)/(R*(w-r))) + acos((R**2+r*w)/(R*(w+r))) - z/r*(2+(R/r)**2)*acos(w/R)) - 2*(w*r**2 - w**3/3)*atan(y/z) + 4*w*y*z/3) else: r2 = r*r R2 = R*R den_inv = 1.0/(r2 - R2) integrated = quad(_V_horiz_spherical_toint, w, R, args=(r2, R2, den_inv))[0] # , epsrel=1.49e-13, Vf = a/abs(a)*(2*integrated - Af*z) if headonly: Vf = Vf/2. else: Vf += Af*L return Vf def V_horiz_torispherical_toint_1(x, w, c10, c11): # No analytical integral available in MP n = c11 + sqrt(c10 - x*x) n2 = n*n t = sqrt(n2 - w*w) return n2*asin(t/n) - w*t def V_horiz_torispherical_toint_2(x, w, c10, c11, g, g2): # No analytical integral available in MP n = c11 + sqrt(c10 - x*x) n2 = n*n n_inv = 1.0/n ans = n2*(acos(w*n_inv) - acos(g*n_inv)) - w*sqrt(n2 - w*w) + g*sqrt(n2 - g2) return ans def V_horiz_torispherical_toint_3(x, r2, g2, z_inv): # There is an analytical integral in MP, but for all cases we seem to # get ZeroDivisionError: 0.0 cannot be raised to a negative power x2 = x*x return (r2 - x2)*atan(sqrt(g2 - x2)*z_inv) def V_horiz_torispherical(D, L, f, k, h, headonly=False): r'''Calculates volume of a tank with torispherical heads, according to [1]_. .. math:: V_f = A_fL + 2V_1, \;\; 0 \le h \le h_1\\ V_f = A_fL + 2(V_{1,max} + V_2 + V_3), \;\; h_1 < h < h_2\\ V_f = A_fL + 2[2V_{1,max} - V_1(h=D-h) + V_{2,max} + V_{3,max}] , \;\; h_2 \le h \le D .. math:: V_1 = \int_0^{\sqrt{2kDh - h^2}} \left[n^2\sin^{-1}\frac{\sqrt {n^2-w^2}}{n} - w\sqrt{n^2-w^2}\right]dx .. math:: V_2 = \int_0^{kD\cos\alpha}\left[n^2\left(\cos^{-1}\frac{w}{n} - \cos^{-1}\frac{g}{n}\right) - w\sqrt{n^2 - w^2} + g\sqrt{n^2 - g^2}\right]dx .. math:: V_3 = \int_w^g(r^2 - x^2)\tan^{-1}\frac{\sqrt{g^2 - x^2}}{z}dx - \frac{z}{2}\left(g^2\cos^{-1}\frac{w}{g} - w\sqrt{2g(h-h_1) - (h-h_1)^2}\right) .. math:: V_{1,max} = v_1(h=h_1) .. math:: v_{2,max} = v_2(h=h_2) .. math:: v_{3,max} = \frac{\pi a_1}{6}(3g^2 + a_1^2) .. math:: a_1 = fD(1-\cos\alpha) .. math:: \alpha = \sin^{-1}\frac{1-2k}{2(f-k)} .. math:: n = R - kD + \sqrt{k^2D^2-x^2} .. math:: g = r\sin\alpha .. math:: r = fD .. math:: h_2 = D - h_1 .. math:: w = R - h .. math:: z = \sqrt{r^2- g^2} Parameters ---------- D : float Diameter of the main cylindrical section, [m] L : float Length of the main cylindrical section, [m] f : float Dimensionless dish-radius parameter; also commonly given as the product of `f` and `D` (`fD`), which is called both dish radius and also crown radius and has units of length, [-] k : float Dimensionless knuckle-radius parameter; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] h : float Height, as measured up to where the fluid ends, [m] headonly : bool, optional Function returns only the volume of a single head side if True Returns ------- V : float Volume [m^3] Examples -------- Matching example from [1]_, with inputs in inches and volume in gallons. >>> V_horiz_torispherical(D=108., L=156., f=1., k=0.06, h=36)/231. 2028.62667 References ---------- .. [1] Jones, D. "Calculating Tank Volume." Text. Accessed December 22, 2015. http://www.webcalc.com.br/blog/Tank_Volume.PDF''' if h <= 0.0: return 0.0 if f is None or k is None: raise ValueError("Missing f or k") R = 0.5*D R2 = R*R hh = h*h Af = R2*acos((R-h)/R) - (R-h)*sqrt(2.0*R*h - hh) r = f*D alpha = asin((1.0 - 2.0*k)/(2.*(f - k))) cos_alpha = cos(alpha) sin_alpha = sin(alpha) a1 = r*(1.0 - cos_alpha) g = r*sin_alpha z = r*cos_alpha h1 = k*D*(1.0 - sin_alpha) h2 = D - h1 # Chebfun in Python failed on these functions c10 = k*k*D*D c11 = R - k*D g2 = g*g r2 = r*r if 0.0 <= h <= h1: w = R - h Vf = 2.0*quad(V_horiz_torispherical_toint_1, 0.0, sqrt(2.0*k*D*h - hh), (w, c10, c11))[0] elif h1 < h < h2: w = R - h wmax1 = R - h1 V1max = quad(V_horiz_torispherical_toint_1, 0.0, sqrt(2.0*k*D*h1 - h1*h1), (wmax1,c10, c11))[0] V2 = quad(V_horiz_torispherical_toint_2, 0.0, k*D*cos_alpha, (w, c10, c11, g, g2))[0] V3 = quad(V_horiz_torispherical_toint_3, w, g , (r2, g2, 1.0/z))[0] - 0.5*z*(g*g*acos(w/g) -w*sqrt(2.0*g*(h-h1) - (h-h1)*(h-h1))) Vf = 2.0*(V1max + V2 + V3) else: w = R - h wmax1 = R - h1 wmax2 = R - h2 wwerird = R - (D - h) V1max = quad(V_horiz_torispherical_toint_1, 0.0, sqrt(2.0*k*D*h1-h1*h1), (wmax1,c10, c11))[0] V1weird = quad(V_horiz_torispherical_toint_1, 0.0, sqrt(2.0*k*D*(D-h)-(D-h)*(D-h)), (wwerird,c10, c11))[0] V2max = quad(V_horiz_torispherical_toint_2, 0.0, k*D*cos_alpha, (wmax2, c10, c11, g, g2))[0] V3max = pi*a1/6.*(3.0*g*g + a1*a1) Vf = 2.0*(2.0*V1max - V1weird + V2max + V3max) if headonly: Vf = Vf/2. else: Vf += Af*L return Vf ### Begin vertical tanks def V_vertical_conical(D, a, h): r'''Calculates volume of a vertical tank with a convex conical bottom, according to [1]_. No provision for the top of the tank is made here. .. math:: V_f = \frac{\pi}{4}\left(\frac{Dh}{a}\right)^2\left(\frac{h}{3}\right),\; h < a .. math:: V_f = \frac{\pi D^2}{4}\left(h - \frac{2a}{3}\right),\; h\ge a Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Distance the cone head extends under the main cylinder, [m] h : float Height, as measured up to where the fluid ends, [m] Returns ------- V : float Volume [m^3] Examples -------- Matching example from [1]_, with inputs in inches and volume in gallons. >>> V_vertical_conical(132., 33., 24)/231. 250.67461381371024 References ---------- .. [1] Jones, D. "Calculating Tank Volume." Text. Accessed December 22, 2015. http://www.webcalc.com.br/blog/Tank_Volume.PDF''' if h <= 0.0: return 0.0 if h < a: Vf = pi/4*(D*h/a)**2*(h/3.) else: Vf = pi*D**2/4*(h - 2*a/3.) return Vf def V_vertical_ellipsoidal(D, a, h): r'''Calculates volume of a vertical tank with a convex ellipsoidal bottom, according to [1]_. No provision for the top of the tank is made here. .. math:: V_f = \frac{\pi}{4}\left(\frac{Dh}{a}\right)^2 \left(a - \frac{h}{3}\right),\; h < a .. math:: V_f = \frac{\pi D^2}{4}\left(h - \frac{a}{3}\right),\; h \ge a Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Distance the ellipsoid head extends under the main cylinder, [m] h : float Height, as measured up to where the fluid ends, [m] Returns ------- V : float Volume [m^3] Examples -------- Matching example from [1]_, with inputs in inches and volume in gallons. >>> V_vertical_ellipsoidal(132., 33., 24)/231. 783.3581681678445 References ---------- .. [1] Jones, D. "Calculating Tank Volume." Text. Accessed December 22, 2015. http://www.webcalc.com.br/blog/Tank_Volume.PDF''' if h <= 0.0: return 0.0 if h < a: Vf = pi/4*(D*h/a)**2*(a - h/3.) else: Vf = pi*D**2/4*(h - a/3.) return Vf def V_vertical_spherical(D, a, h): r'''Calculates volume of a vertical tank with a convex spherical bottom, according to [1]_. No provision for the top of the tank is made here. .. math:: V_f = \frac{\pi h^2}{4}\left(2a + \frac{D^2}{2a} - \frac{4h}{3}\right),\; h < a .. math:: V_f = \frac{\pi}{4}\left(\frac{2a^3}{3} - \frac{aD^2}{2} + hD^2\right),\; h\ge a Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Distance the spherical head extends under the main cylinder, [m] h : float Height, as measured up to where the fluid ends, [m] Returns ------- V : float Volume [m^3] Examples -------- Matching example from [1]_, with inputs in inches and volume in gallons. >>> V_vertical_spherical(132., 33., 24)/231. 583.6018352850442 References ---------- .. [1] Jones, D. "Calculating Tank Volume." Text. Accessed December 22, 2015. http://www.webcalc.com.br/blog/Tank_Volume.PDF''' if h <= 0.0: return 0.0 if h < a: Vf = pi*h**2/4*(2*a + D**2/2/a - 4*h/3) else: Vf = pi/4*(2*a**3/3 - a*D**2/2 + h*D**2) return Vf def V_vertical_torispherical(D, f, k, h): r'''Calculates volume of a vertical tank with a convex torispherical bottom, according to [1]_. No provision for the top of the tank is made here. .. math:: V_f = \frac{\pi h^2}{4}\left(2a_1 + \frac{D_1^2}{2a_1} - \frac{4h}{3}\right),\; 0 \le h \le a_1 .. math:: V_f = \frac{\pi}{4}\left(\frac{2a_1^3}{3} + \frac{a_1D_1^2}{2}\right) +\pi u\left[\left(\frac{D}{2}-kD\right)^2 +s\right] + \frac{\pi tu^2}{2} - \frac{\pi u^3}{3} + \pi D(1-2k)\left[ \frac{2u-t}{4}\sqrt{s+tu-u^2} + \frac{t\sqrt{s}}{4} + \frac{k^2D^2}{2}\left(\cos^{-1}\frac{t-2u}{2kD}-\alpha\right)\right] ,\; a_1 < h \le a_1 + a_2 .. math:: V_f = \frac{\pi}{4}\left(\frac{2a_1^3}{3} + \frac{a_1D_1^2}{2}\right) +\frac{\pi t}{2}\left[\left(\frac{D}{2}-kD\right)^2 +s\right] +\frac{\pi t^3}{12} + \pi D(1-2k)\left[\frac{t\sqrt{s}}{4} + \frac{k^2D^2}{2}\sin^{-1}(\cos\alpha)\right] + \frac{\pi D^2}{4}[h-(a_1+a_2)] ,\; a_1 + a_2 < h .. math:: \alpha = \sin^{-1}\frac{1-2k}{2(f-k)} .. math:: a_1 = fD(1-\cos\alpha) .. math:: a_2 = kD\cos\alpha .. math:: D_1 = 2fD\sin\alpha .. math:: s = (kD\sin\alpha)^2 .. math:: t = 2a_2 .. math:: u = h - fD(1-\cos\alpha) Parameters ---------- D : float Diameter of the main cylindrical section, [m] f : float Dimensionless dish-radius parameter; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] k : float Dimensionless knuckle-radius parameter; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] h : float Height, as measured up to where the fluid ends, [m] Returns ------- V : float Volume [m^3] Examples -------- Matching example from [1]_, with inputs in inches and volume in gallons. >>> V_vertical_torispherical(D=132., f=1.0, k=0.06, h=24)/231. 904.0688283793 References ---------- .. [1] Jones, D. "Calculating Tank Volume." Text. Accessed December 22, 2015. http://www.webcalc.com.br/blog/Tank_Volume.PDF''' if h <= 0.0: return 0.0 if f is None or k is None: raise ValueError("f and k are required") alpha = asin((1.0 - 2.0*k)/(2.0*(f-k))) sin_alpha = sin(alpha) cos_alpha = cos(alpha) a1 = f*D*(1.0 - cos_alpha) a2 = k*D*cos_alpha D1 = 2.0*f*D*sin_alpha x1 = k*D*sin_alpha s = x1*x1 t = a2 + a2 u = h - f*D*(1.0 - cos_alpha) h2 = h*h if 0.0 <= h <= a1: Vf = 0.25*pi*h2*(a1 + a1 + 0.5*D1*D1/a1 - (4.0/3.0)*h) elif a1 < h <= a1 + a2: x2 = (0.5*D - k*D) u2 = u*u Vf = (0.25*pi*a1*((2.0/3.0)*a1*a1 + 0.5*D1*D1) + pi*u*(x2*x2 + s) + pi*u2*(0.5*t - u/3.) + pi*D*(1.0 - 2.0*k)*(0.25*(2.0*u - t)*sqrt(s + t*u - u2) + 0.25*t*sqrt(s) + 0.5*k*k*D*D*(acos((t - 2.0*u)/(2.0*k*D)) - alpha))) else: Vf = pi/4*(2*a1**3/3. + a1*D1**2/2.) + pi*t/2.*((D/2 - k*D)**2 + s) + pi*t**3/12. + pi*D*(1 - 2*k)*(t*sqrt(s)/4 + k**2*D**2/2*asin(cos(alpha))) + pi*D**2/4*(h - (a1 + a2)) return Vf ### Begin vertical tanks with concave heads def V_vertical_conical_concave(D, a, h): r'''Calculates volume of a vertical tank with a concave conical bottom, according to [1]_. No provision for the top of the tank is made here. .. math:: V = \frac{\pi D^2}{12} \left(3h + a - \frac{(a+h)^3}{a^2}\right) ,\;\; 0 \le h < |a| .. math:: V = \frac{\pi D^2}{12} (3h + a ),\;\; h \ge |a| Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Negative distance the cone head extends inside the main cylinder, [m] h : float Height, as measured up to where the fluid ends, [m] Returns ------- V : float Volume [m^3] Examples -------- Matching example from [1]_, with inputs in inches and volume in gallons. >>> V_vertical_conical_concave(D=113., a=-33, h=15)/231 251.15825565795188 References ---------- .. [1] Jones, D. "Compute Fluid Volumes in Vertical Tanks." Chemical Processing. December 18, 2003. http://www.chemicalprocessing.com/articles/2003/193/ ''' if h <= 0.0: return 0.0 if h < abs(a): Vf = pi*D**2/12.*(3*h + a - (a+h)**3/a**2) else: Vf = pi*D**2/12.*(3*h + a) return Vf def V_vertical_ellipsoidal_concave(D, a, h): r'''Calculates volume of a vertical tank with a concave ellipsoidal bottom, according to [1]_. No provision for the top of the tank is made here. .. math:: V = \frac{\pi D^2}{12} \left(3h + 2a - \frac{(a+h)^2(2a-h)}{a^2}\right) ,\;\; 0 \le h < |a| .. math:: V = \frac{\pi D^2}{12} (3h + 2a ),\;\; h \ge |a| Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Negative distance the eppilsoid head extends inside the main cylinder, [m] h : float Height, as measured up to where the fluid ends, [m] Returns ------- V : float Volume [m^3] Examples -------- Matching example from [1]_, with inputs in inches and volume in gallons. >>> V_vertical_ellipsoidal_concave(D=113., a=-33, h=15)/231 44.84968851034856 References ---------- .. [1] Jones, D. "Compute Fluid Volumes in Vertical Tanks." Chemical Processing. December 18, 2003. http://www.chemicalprocessing.com/articles/2003/193/ ''' if h <= 0.0: return 0.0 if h < abs(a): Vf = pi*D**2/12.*(3*h + 2*a - (a+h)**2*(2*a-h)/a**2) else: Vf = pi*D**2/12.*(3*h + 2*a) return Vf def V_vertical_spherical_concave(D, a, h): r'''Calculates volume of a vertical tank with a concave spherical bottom, according to [1]_. No provision for the top of the tank is made here. .. math:: V = \frac{\pi}{12}\left[3D^2h + \frac{a}{2}(3D^2 + 4a^2) + (a+h)^3 \left(4 - \frac{3D^2 + 12a^2}{2a(a+h)}\right)\right],\;\; 0 \le h < |a| .. math:: V = \frac{\pi}{12}\left[3D^2h + \frac{a}{2}(3D^2 + 4a^2) \right] ,\;\; h \ge |a| Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Negative distance the spherical head extends inside the main cylinder, [m] h : float Height, as measured up to where the fluid ends, [m] Returns ------- V : float Volume [m^3] Examples -------- Matching example from [1]_, with inputs in inches and volume in gallons. >>> V_vertical_spherical_concave(D=113., a=-33, h=15)/231 112.81405437348528 References ---------- .. [1] Jones, D. "Compute Fluid Volumes in Vertical Tanks." Chemical Processing. December 18, 2003. http://www.chemicalprocessing.com/articles/2003/193/ ''' if h <= 0.0: return 0.0 if h < abs(a): Vf = pi/12*(3*D**2*h + a/2.*(3*D**2 + 4*a**2) + (a+h)**3*(4 - (3*D**2+12*a**2)/(2.*a*(a+h)))) else: Vf = pi/12*(3*D**2*h + a/2.*(3*D**2 + 4*a**2)) return Vf def V_vertical_torispherical_concave(D, f, k, h): r'''Calculates volume of a vertical tank with a concave torispherical bottom, according to [1]_. No provision for the top of the tank is made here. .. math:: V = \frac{\pi D^2 h}{4} - v_1(h=a_1+a_2) + v_1(h=a_1 + a_2 -h),\; 0 \le h < a_2 .. math:: V = \frac{\pi D^2 h}{4} - v_1(h=a_1+a_2) + v_2(h=a_1 + a_2 -h),\; a_2 \le h < a_1 + a_2 .. math:: V = \frac{\pi D^2 h}{4} - v_1(h=a_1+a_2) + 0,\; h \ge a_1 + a_2 .. math:: v_1 = \frac{\pi}{4}\left(\frac{2a_1^3}{3} + \frac{a_1D_1^2}{2}\right) +\pi u\left[\left(\frac{D}{2}-kD\right)^2 +s\right] + \frac{\pi tu^2}{2} - \frac{\pi u^3}{3} + \pi D(1-2k)\left[ \frac{2u-t}{4}\sqrt{s+tu-u^2} + \frac{t\sqrt{s}}{4} + \frac{k^2D^2}{2}\left(\cos^{-1}\frac{t-2u}{2kD}-\alpha\right)\right] .. math:: v_2 = \frac{\pi h^2}{4}\left(2a_1 + \frac{D_1^2}{2a_1} - \frac{4h}{3}\right) .. math:: \alpha = \sin^{-1}\frac{1-2k}{2(f-k)} .. math:: a_1 = fD(1-\cos\alpha) .. math:: a_2 = kD\cos\alpha .. math:: D_1 = 2fD\sin\alpha .. math:: s = (kD\sin\alpha)^2 .. math:: t = 2a_2 .. math:: u = h - fD(1-\cos\alpha) Parameters ---------- D : float Diameter of the main cylindrical section, [m] f : float Dimensionless dish-radius parameter; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] k : float Dimensionless knuckle-radius parameter; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] h : float Height, as measured up to where the fluid ends, [m] Returns ------- V : float Volume [m^3] Examples -------- Matching example from [1]_, with inputs in inches and volume in gallons. >>> V_vertical_torispherical_concave(D=113., f=0.71, k=0.081, h=15)/231 103.88569287163769 References ---------- .. [1] Jones, D. "Compute Fluid Volumes in Vertical Tanks." Chemical Processing. December 18, 2003. http://www.chemicalprocessing.com/articles/2003/193/ ''' if h <= 0.0: return 0.0 alpha = asin((1-2*k)/(2.*(f-k))) a1 = f*D*(1-cos(alpha)) a2 = k*D*cos(alpha) D1 = 2*f*D*sin(alpha) s = (k*D*sin(alpha))**2 t = 2*a2 def V1(h): u = h-f*D*(1-cos(alpha)) v1 = pi/4*(2*a1**3/3. + a1*D1**2/2.) + pi*u*((D/2.-k*D)**2 +s) v1 += pi*t*u**2/2. - pi*u**3/3. v1 += pi*D*(1-2*k)*((2*u-t)/4.*sqrt(s+t*u-u**2) + t*sqrt(s)/4. + k**2*D**2/2.*(acos((t-2*u)/(2*k*D)) -alpha)) return v1 def V2(h): v2 = pi*h**2/4.*(2*a1 + D1**2/(2.*a1) - 4*h/3.) return v2 if 0 <= h < a2: Vf = pi*D**2*h/4 - V1(a1+a2) + V1(a1+a2-h) elif a2 <= h < a1 + a2: Vf = pi*D**2*h/4 - V1(a1+a2) + V2(a1+a2-h) else: Vf = pi*D**2*h/4 - V1(a1+a2) return Vf ### Total surface area of heads, orientation-independent def SA_ellipsoidal_head(D, a): r'''Calculates the surface area of an ellipsoidal head according to [1]_ and [2]_. The formula below is for the full shape, the result of which is halved. The formula is for :math:`a < R`. In the equations, `a` is the same and `c` is `D`. .. math:: \text{SA} = 2\pi a^2 + \frac{\pi c^2}{e_1}\ln\left(\frac{1+e_1}{1-e_1} \right) .. math:: e_1 = \sqrt{1 - \frac{c^2}{a^2}} For the case of :math:`a \ge R` from [2]_, which is needed to make the tank head volume grow linearly with length: .. math:: \text{SA} = 2\pi R^2 + \frac{2\pi a^2 R}{\sqrt{a^2 - R^2}}\cos^{-1}\frac{R}{|a|} Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Distance the ellipsoidal head extends, [m] Returns ------- SA : float Surface area [m^2] Examples -------- Spherical case >>> SA_ellipsoidal_head(2, 1) 6.283185307179586 >>> SA_ellipsoidal_head(2, 1.5) 8.459109081729984 References ---------- .. [1] Weisstein, Eric W. "Spheroid." Text. Accessed March 14, 2016. http://mathworld.wolfram.com/Spheroid.html. .. [2] Jones, D. "Calculating Tank Wetted Area." Text. Chemical Processing. April 2017. https://www.chemicalprocessing.com/assets/Uploads/calculating-tank-wetted-area.pdf ''' if D == a*2.0: return 0.5*pi*D*D # necessary to avoid a division by zero when D == a R = 0.5*D if a < R: R, a = min((R, a)), max((R, a)) e1 = sqrt(1.0 - R*R/(a*a)) if e1 != 1.0: # try: log_term = log((1.0 + e1)/(1.0 - e1)) # except ZeroDivisionError: else: # Limit as a goes to zero relative to D; may only be ~6 orders of # magnitude smaller than D and will still occur log_term = 0.0 return (2.0*pi*a*a + pi*R*R/e1*log_term)*0.5 else: return pi*R*R + pi*a*a*R*1.0/sqrt(a*a - R*R)*acos(R/abs(a)) def SA_conical_head(D, a): r'''Calculates the surface area of a conical head according to [1]_. .. math:: SA = \frac{\pi D}{2} \sqrt{a^2 + \left(\frac{D}{2}\right)^2} Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Distance the conical head extends, [m] Returns ------- SA : float Surface area [m^2] Examples -------- >>> SA_conical_head(2, 1) 4.442882938158366 References ---------- .. [1] Weisstein, Eric W. "Cone." Text. Accessed March 14, 2016. http://mathworld.wolfram.com/Cone.html.''' return 0.5*pi*D*sqrt(a*a + 0.25*D*D) def SA_guppy_head(D, a): r'''Calculates the surface area of a guppy head according to [1]_. Some work was involved in combining formulas for the ellipse of the head, and the conic section on the sides. .. math:: SA = \frac{\pi D}{4}\sqrt{D^2 + a^2} + \frac{\pi D}{2}a Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Distance the conical head extends, [m] Returns ------- SA : float Surface area [m^2] Examples -------- >>> SA_guppy_head(2, 1) 6.654000019110157 References ---------- .. [1] Weisstein, Eric W. "Cone." Text. Accessed March 14, 2016. http://mathworld.wolfram.com/Cone.html.''' return 0.25*pi*D*sqrt(a*a + D*D) + 0.5*pi*D*a def SA_torispheroidal(D, f, k): r'''Calculates surface area of a torispherical head according to [1]_. Somewhat involved. Equations are adapted to be used for a full head. .. math:: SA = S_1 + S_2 .. math:: S_1 = 2\pi D^2 f_d \alpha .. math:: S_2 = 2\pi D^2 f_k\left(\alpha - \alpha_1 + (0.5 - f_k)\left(\sin^{-1} \left(\frac{\alpha-\alpha_2}{f_k}\right) - \sin^{-1}\left(\frac{ \alpha_1-\alpha_2}{f_k}\right)\right)\right) .. math:: \alpha_1 = f_d\left(1 - \sqrt{1 - \left(\frac{0.5 - f_k}{f_d-f_k} \right)^2}\right) .. math:: \alpha_2 = f_d - \sqrt{f_d^2 - 2f_d f_k + f_k - 0.25} .. math:: \alpha = \frac{a}{D_i} Parameters ---------- D : float Diameter of the main cylindrical section, [m] f : float Dimensionless dish-radius parameter; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] k : float Dimensionless knuckle-radius parameter; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] Returns ------- SA : float Surface area [m^2] Examples -------- Example from [1]_. >>> SA_torispheroidal(D=2.54, f=1.039370079, k=0.062362205) 6.00394283477063 References ---------- .. [1] Honeywell. "Calculate Surface Areas and Cross-sectional Areas in Vessels with Dished Heads". https://www.honeywellprocess.com/library/marketing/whitepapers/WP-VesselsWithDishedHeads-UniSimDesign.pdf Whitepaper. 2014. ''' D2 = D*D x1 = 2.0*pi*D2 k_inv = 1.0/k x2 = ((0.5 - k)/(f-k)) alpha_1 = f*(1.0 - sqrt(1.0 - x2*x2)) alpha_2 = f - sqrt(f*f - 2.0*f*k + k - 0.25) alpha = alpha_1 # Up to top of dome S1 = x1*f*alpha_1 alpha = alpha_2 # up to top of torus S2_sub = asin((alpha-alpha_2)*k_inv) - asin((alpha_1-alpha_2)*k_inv) S2 = x1*k*(alpha - alpha_1 + (0.5 - k) *S2_sub) return S1 + S2 def SA_tank(D, L, sideA=None, sideB=None, sideA_a=0, sideB_a=0, sideA_f=None, sideA_k=None, sideB_f=None, sideB_k=None): r'''Calculates the surface are of a cylindrical tank with optional heads. In the degenerate case of being provided with only `D` and `L`, provides the surface area of a cylinder. Parameters ---------- D : float Diameter of the cylindrical section of the tank, [m] L : float Length of the main cylindrical section of the tank, [m] sideA : string, optional The left (or bottom for vertical) head of the tank's type; one of [None, 'conical', 'ellipsoidal', 'torispherical', 'guppy', 'spherical']. sideB : string, optional The right (or top for vertical) head of the tank's type; one of [None, 'conical', 'ellipsoidal', 'torispherical', 'guppy', 'spherical']. sideA_a : float, optional The distance the head as specified by sideA extends down or to the left from the main cylindrical section, [m] sideB_a : float, optional The distance the head as specified by sideB extends up or to the right from the main cylindrical section, [m] sideA_f : float, optional Dish-radius parameter for side A; fD = dish radius [1/m] sideA_k : float, optional knuckle-radius parameter for side A; kD = knuckle radius [1/m] sideB_f : float, optional Dish-radius parameter for side B; fD = dish radius [1/m] sideB_k : float, optional knuckle-radius parameter for side B; kD = knuckle radius [1/m] Returns ------- SA : float Surface area of the tank [m^2] sideA_SA : float Surface area of only `sideA` [m^2] sideB_SA : float Surface area of only `sideB` [m^2] lateral_SA : float Surface area of cylindrical section of tank [m^2] Examples -------- Cylinder, Spheroid, Long Cones, and spheres. All checked. >>> SA_tank(D=2, L=2)[0] 18.84955592153876 >>> SA_tank(D=1., L=0, sideA='ellipsoidal', sideA_a=2, sideB='ellipsoidal', ... sideB_a=2)[0] 10.124375616183062 >>> SA_tank(D=1., L=5, sideA='conical', sideA_a=2, sideB='conical', ... sideB_a=2)[0] 22.18452243965656 >>> SA_tank(D=1., L=5, sideA='spherical', sideA_a=0.5, sideB='spherical', ... sideB_a=0.5)[0] 18.84955592153876 ''' # Side A if sideA == 'conical': sideA_SA = SA_conical_head(D=D, a=sideA_a) elif sideA == 'ellipsoidal': sideA_SA = SA_ellipsoidal_head(D=D, a=sideA_a) elif sideA == 'guppy': sideA_SA = SA_guppy_head(D=D, a=sideA_a) elif sideA == 'spherical': sideA_SA = pi*(sideA_a*sideA_a + 0.25*D*D) # (SA_partial_sphere(D=D, h=sideA_a) elif sideA == 'torispherical': if sideA_f is None: raise ValueError("Missing torispherical `f` parameter for sideA") if sideA_k is None: raise ValueError("Missing torispherical `k` parameter for sideA") sideA_SA = SA_torispheroidal(D=D, f=sideA_f, k=sideA_k) else: sideA_SA = pi/4*D**2 # Circle # Side B if sideB == 'conical': sideB_SA = SA_conical_head(D=D, a=sideB_a) elif sideB == 'ellipsoidal': sideB_SA = SA_ellipsoidal_head(D=D, a=sideB_a) elif sideB == 'guppy': sideB_SA = SA_guppy_head(D=D, a=sideB_a) elif sideB == 'spherical': sideB_SA = pi*(sideB_a*sideB_a + 0.25*D*D)#SA_partial_sphere(D=D, h=sideB_a) elif sideB == 'torispherical': if sideB_f is None: raise ValueError("Missing torispherical `f` parameter for sideB") if sideB_k is None: raise ValueError("Missing torispherical `k` parameter for sideB") sideB_SA = SA_torispheroidal(D=D, f=sideB_f, k=sideB_k) else: sideB_SA = pi/4*D**2 # Circle lateral_SA = pi*D*L SA = sideA_SA + sideB_SA + lateral_SA return SA, sideA_SA, sideB_SA, lateral_SA def V_tank(D, L, horizontal=True, sideA=None, sideB=None, sideA_a=0.0, sideB_a=0.0, sideA_f=None, sideA_k=None, sideB_f=None, sideB_k=None): r'''Calculates the total volume of a vertical or horizontal tank with different head types. Parameters ---------- D : float Diameter of the cylindrical section of the tank, [m] L : float Length of the main cylindrical section of the tank, [m] horizontal : bool, optional Whether or not the tank is a horizontal or vertical tank sideA : string, optional The left (or bottom for vertical) head of the tank's type; one of [None, 'conical', 'ellipsoidal', 'torispherical', 'guppy', 'spherical']. sideB : string, optional The right (or top for vertical) head of the tank's type; one of [None, 'conical', 'ellipsoidal', 'torispherical', 'guppy', 'spherical']. sideA_a : float, optional The distance the head as specified by sideA extends down or to the left from the main cylindrical section, [m] sideB_a : float, optional The distance the head as specified by sideB extends up or to the right from the main cylindrical section, [m] sideA_f : float, optional Dimensionless dish-radius parameter for side A; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] sideA_k : float, optional Dimensionless knuckle-radius parameter for side A; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] sideB_f : float, optional Dimensionless dish-radius parameter for side B; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] sideB_k : float, optional Dimensionless knuckle-radius parameter for side B; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] Returns ------- V : float Total volume [m^3] sideA_V : float Volume of only `sideA` [m^3] sideB_V : float Volume of only `sideB` [m^3] lateral_V : float Volume of cylindrical section of tank [m^3] Examples -------- >>> V_tank(D=1.5, L=5., horizontal=False, sideA='conical', ... sideB='conical', sideA_a=2., sideB_a=1.) (10.602875205865551, 1.1780972450961726, 0.5890486225480863, 8.835729338221293) ''' if sideA is not None and sideA not in ('conical', 'ellipsoidal', 'torispherical', 'spherical', 'guppy'): raise ValueError('Unspoorted head type for side A') if sideB is not None and sideB not in ('conical', 'ellipsoidal', 'torispherical', 'spherical', 'guppy'): raise ValueError('Unspoorted head type for side B') R = 0.5*D V = sideA_V = sideB_V = lateral_V = 0.0 if horizontal: # Conical case if sideA == 'conical' and sideB == 'conical' and sideA_a == sideB_a: sideB_V = sideA_V = V_horiz_conical(D, L, sideA_a, D, headonly=True) else: if sideA == 'conical': sideA_V = V_horiz_conical(D, L, sideA_a, D, headonly=True) if sideB == 'conical': sideB_V = V_horiz_conical(D, L, sideB_a, D, headonly=True) # Elliosoidal case if sideA == 'ellipsoidal' and sideB == 'ellipsoidal' and sideA_a == sideB_a: sideB_V = sideA_V = V_horiz_ellipsoidal(D, L, sideA_a, D, headonly=True) else: if sideA == 'ellipsoidal': sideA_V = V_horiz_ellipsoidal(D, L, sideA_a, D, headonly=True) if sideB == 'ellipsoidal': sideB_V = V_horiz_ellipsoidal(D, L, sideB_a, D, headonly=True) # Guppy case if sideA == 'guppy' and sideB == 'guppy' and sideA_a == sideB_a: sideB_V = sideA_V = V_horiz_guppy(D, L, sideA_a, D, headonly=True) else: if sideA == 'guppy': sideA_V = V_horiz_guppy(D, L, sideA_a, D, headonly=True) if sideB == 'guppy': sideB_V = V_horiz_guppy(D, L, sideB_a, D, headonly=True) # Spherical case if sideA == 'spherical' and sideB == 'spherical' and sideA_a == sideB_a: sideB_V = sideA_V = V_horiz_spherical(D, L, sideA_a, D, headonly=True) else: if sideA == 'spherical': sideA_V = V_horiz_spherical(D, L, sideA_a, D, headonly=True) if sideB == 'spherical': sideB_V = V_horiz_spherical(D, L, sideB_a, D, headonly=True) # Torispherical case if (sideA == 'torispherical' and sideB == 'torispherical' and (sideA_f == sideB_f) and (sideA_k == sideB_k)): sideB_V = sideA_V = V_horiz_torispherical(D, L, sideA_f, sideA_k, D, headonly=True) else: if sideA == 'torispherical': sideA_V = V_horiz_torispherical(D, L, sideA_f, sideA_k, D, headonly=True) if sideB == 'torispherical': sideB_V = V_horiz_torispherical(D, L, sideB_f, sideB_k, D, headonly=True) Af = R*R*acos((R-D)/R) - (R-D)*sqrt(2.0*R*D - D*D) lateral_V = L*Af else: # Bottom head if sideA == 'conical': sideA_V = V_vertical_conical(D, sideA_a, h=sideA_a) if sideA == 'ellipsoidal': sideA_V = V_vertical_ellipsoidal(D, sideA_a, h=sideA_a) if sideA == 'spherical': sideA_V = V_vertical_spherical(D, sideA_a, h=sideA_a) if sideA == 'torispherical': sideA_V = V_vertical_torispherical(D, sideA_f, sideA_k, h=sideA_a) # Cylindrical section lateral_V = pi/4*D**2*L # All middle if sideB == 'conical': sideB_V = V_vertical_conical(D, sideB_a, h=sideB_a) if sideB == 'ellipsoidal': sideB_V = V_vertical_ellipsoidal(D, sideB_a, h=sideB_a) if sideB == 'spherical': sideB_V = V_vertical_spherical(D, sideB_a, h=sideB_a) if sideB == 'torispherical': sideB_V = V_vertical_torispherical(D, sideB_f, sideB_k, h=sideB_a) return lateral_V + sideA_V + sideB_V, sideA_V, sideB_V, lateral_V def SA_partial_cylindrical_body(L, D, h): r'''Calculates the partial area of a cylinder's body in the context of a horizontal cylindrical vessel and liquid partially filling it. This computes the wetted surface area of the bottom of the cylinder. .. math:: \text{SA} = L D \cos^{-1}\left(\frac{D - 2h}{D}\right) Parameters ---------- L : float Length of the cylinder, [m] D : float Diameter of the cylinder, [m] h : float Height measured from bottom of cylinder to liquid level, [m] Returns ------- SA_partial : float Partial (wetted) surface area, [m^2] Notes ----- This method is undefined for :math:`h > D`. and :math:`h < 0`, but those cases are handled by returning the full surface area and the zero respectively. Examples -------- >>> SA_partial_cylindrical_body(L=200.0, D=96., h=22.0) 19168.852890279868 References ---------- .. [1] Weisstein, Eric W. "Circular Segment." Text. Wolfram Research, Inc. Accessed May 10, 2020. https://mathworld.wolfram.com/CircularSegment.html. ''' if h < 0.0: return 0.0 elif h > D: h = D C = D*acos((D - h - h)/D) return C*L def A_partial_circle(D, h): r'''Calculates the partial area of a circle, in the context of the circle being an end cap to a horizontal cylindrical vessel and liquid partially filling it. This computes the wetted surface area of one of the end caps. Multiply this by two to obtain the wetted area of two end caps. .. math:: \text{SA} = R^2\cos^{-1}\frac{(R - h)}{R} - (R - h)\sqrt{(2Rh - h^2)} Parameters ---------- D : float Diameter of the circle, [m] h : float Height measured from bottom of circle to liquid level, [m] Returns ------- SA_partial : float Partial (wetted) surface area, [m^2] Notes ----- This method is undefined for :math:`h > D` and :math:`h < 0`, but those cases are handled by returning the full surface area and the zero respectively. Examples -------- >>> A_partial_circle(D=96., h=22.0) 1251.2018147383194 References ---------- .. [1] Weisstein, Eric W. "Circular Segment." Text. Wolfram Research, Inc. Accessed May 10, 2020. https://mathworld.wolfram.com/CircularSegment.html. ''' if h > D: h = D # Catch the case of a computed `h` being trivially larger than `D` due to floating point elif h < 0.0: return 0.0 R = 0.5*D SA = R*R*acos((R - h)/R) - (R - h)*sqrt(2.0*R*h - h*h) if SA < 0.0: SA = 0.0 # Catch trig errors return SA def circle_segment_area_inner(h, R, A_expect): # 2 sqrt, 1 acos, 4 division x0 = R*R x1 = -h x2 = R + x1 x3 = sqrt(h*(2.0*R + x1)) x4 = x2*x2 A_err = x0*acos(x2/R) - x2*x3 - A_expect der = R/sqrt(1.0 - x4/x0) + x3 - x4/x3 return A_err, der def circle_segment_h_from_A(A, D): r'''Calculates the height of a chord of a circle given the area of that circle segment. This is a numerical problem, solving the following equation for `h`. .. math:: \text{A} = R^2\cos^{-1}\frac{(R - h)}{R} - (R - h)\sqrt{(2Rh - h^2)} Parameters ---------- A : float Circle section area, [m^2] D : float Diameter of the circle, [m] Returns ------- h : float Height measured from bottom of circle to the end of the circle section, [m] Notes ----- Examples -------- >>> circle_segment_h_from_A(A=1251.2018147383194, D=96.) 22.0 References ---------- .. [1] Weisstein, Eric W. "Circular Segment." Text. Wolfram Research, Inc. Accessed May 10, 2020. https://mathworld.wolfram.com/CircularSegment.html. ''' if A == 0.0: return 0.0 R = 0.5*D return newton(circle_segment_area_inner, x0=0.25*R, fprime=True, high=R, low=0.0, args=(R, A), xtol=1e-12, bisection=True) def SA_partial_horiz_conical_head(D, a, h): r'''Calculates the partial area of a conical tank head in the context of a horizontal vessel and liquid partially filling it. This computes the wetted surface area of one of the conical heads only. .. math:: \text{SA} = \frac{\sqrt{(a^2 + R^2)}}{R}\left[R^2\cos^{-1}\left(\frac{ (R-h)}{R}\right) - (R-h)\sqrt{(2Rh - h^2)}\right] Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Distance the cone head extends on one side, [m] h : float Height, as measured up to where the fluid ends, [m] Returns ------- SA_partial : float Partial (wetted) surface area of one conical tank head, [m^2] Notes ----- This method is undefined for :math:`h > D` and :math:`h < 0`, but those cases are handled by returning the full surface area and the zero respectively. Examples -------- >>> SA_partial_horiz_conical_head(D=72., a=48.0, h=24.0) 1980.0498315169873 References ---------- .. [1] Jones, D. "Calculating Tank Wetted Area." Text. Chemical Processing. April 2017. https://www.chemicalprocessing.com/assets/Uploads/calculating-tank-wetted-area.pdf ''' if h > D: h = D elif h < 0: return 0.0 R = 0.5*D R_inv = 1.0/R return sqrt(a*a + R*R)*R_inv*(R*R*acos((R-h)*R_inv) - (R-h)*sqrt(2.0*R*h - h*h)) def _SA_partial_horiz_spherical_head_to_int(x, R2, a4, c1, c2): x2 = x*x to_pow = (R2 - x2)/(c2 - a4*x2) if to_pow < 0.0: to_pow = 0.0 num = c1*sqrt(to_pow) try: return asin(num) except: # Tried to asin a number just slightly higher than 1 return 0.5*pi def SA_partial_horiz_spherical_head(D, a, h): r'''Calculates the partial area of a spherical tank head in the context of a horizontal vessel and liquid partially filling it. This computes the wetted surface area of one of the spherical heads only. .. math:: \text{SA} = \frac{a^2 + R^2}{|a|}\int_{R-h}^R \sin^{-1} \frac{2|a|\sqrt{R^2-x^2}} {\sqrt{(a^2+R^2)^2 - (2ax)^2}} dx For the special case of :math:`|a| = R` : .. math:: \text{SA} = \pi R h Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Distance the spherical head extends on one side, [m] h : float Height, as measured up to where the fluid ends, [m] Returns ------- SA_partial : float Partial (wetted) surface area of one spherical tank head, [m^2] Notes ----- This method is undefined for :math:`h > D` and :math:`h < 0`, but those cases are handled by returning the full surface area and the zero respectively. A symbolic attempt did not suggest any analytical integrals were available. Examples -------- >>> SA_partial_horiz_spherical_head(D=72., a=48.0, h=24.0) 2027.2672 References ---------- .. [1] Jones, D. "Calculating Tank Wetted Area." Text. Chemical Processing. April 2017. https://www.chemicalprocessing.com/assets/Uploads/calculating-tank-wetted-area.pdf ''' R = 0.5*D if a == R: return pi*R*h elif h < 0.0: return 0.0 elif h > D: h = D fact = (a*a + R*R)/abs(a) R2 = R*R a2 = a + a a4 = a2*a2 c1 = 2.0*abs(a) c2 = (a*a + R2)*(a*a + R2) SA = fact*quad(_SA_partial_horiz_spherical_head_to_int, R-h, R, args=(R2, a4, c1, c2))[0] return SA def _SA_partial_horiz_ellipsoidal_head_to_int_dbl(x, y, c1, R2, R4, h): y2 = y*y x2 = x*x num = c1*(x2 + y2) - R4 den = x2 + (y2 - R2) # Brackets help numerical truncation; zero div without it try: return sqrt(num/den) except: # Equation is undefined for y == R when x is zero; avoid it return _SA_partial_horiz_ellipsoidal_head_to_int_dbl(x, y*(1.0 - 1e-12), c1, R2, R4, h) def _SA_partial_horiz_ellipsoidal_head_limits(x, c1, R2, R4, h): return [0.0, sqrt(R2 - x*x)] def _SA_partial_horiz_ellipsoidal_head_limits2(c1, R2, R4, h): R = sqrt(R2) return [R-h, R] def _SA_partial_horiz_ellipsoidal_head_to_int(y, c1, R2, R4): y2 = y*y t0 = c1*y2 x6 = c1*(y2 - R2)/(t0 - R4) ans = sqrt(R4 - t0)*float(ellipe(x6)) return ans def SA_partial_horiz_ellipsoidal_head(D, a, h): r'''Calculates the partial area of a ellipsoidal tank head in the context of a horizontal vessel and liquid partially filling it. This computes the wetted surface area of one of the ellipsoidal heads only. .. math:: \text{SA} = \frac{2}{R} \int_{R-h}^R \int_0^{\sqrt{R^2 - x^2}} \sqrt{ \frac{(R^2 - a^2)x^2 + (R^2 - a^2)y^2 - R^4} {x^2 + y^2 - R^2}} dy dx After extensive manipulation, the first integral was solved analytically, extending the result of [1]_ with greater performance. .. math:: \text{SA} = \frac{2}{R} \int_{R-h}^R \frac{\left(\frac{R^{4} - R^{2} \left(R^{2} - a^{2}\right)}{R^{2} - y^{2}}\right)^{0.5} \left(R^{2} - y^{2}\right)^{0.5} E{\left(\frac{\left(- R^{2} + y^{2}\right) \left(R^{2} - a^{2}\right)}{- R^{4} + y^{2} \left(R^{2} - a^{2}\right)} \right)}} {\left(\frac{R^{4} - R^{2} \left(R^{2} - a^{2}\right)}{R^{4} - y^{2} \left(R^{2} - a^{2}\right)}\right)^{0.5}} Where :math:`E(x)` is the complete elliptic integral of the second kind, calculated with SciPy's link to the cephes library. Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Distance the ellipsoidal head extends on one side, [m] h : float Height, as measured up to where the fluid ends, [m] Returns ------- SA_partial : float Partial (wetted) surface area of one ellipsoidal tank head, [m^2] Notes ----- This method is undefined for :math:`h > D` and :math:`h < 0`, but those cases are handled by returning the full surface area and the zero respectively. The original numerical double integral is extremely nasty - there are places where f(x) -> infinity but that have a bounded area. quadpack's numerical integration handles this well, but adaptive inetgration which is not aware of singularities does not. Examples -------- >>> SA_partial_horiz_ellipsoidal_head(D=72., a=48.0, h=24.0) 3401.233622547 References ---------- .. [1] Jones, D. "Calculating Tank Wetted Area." Text. Chemical Processing. April 2017. https://www.chemicalprocessing.com/assets/Uploads/calculating-tank-wetted-area.pdf ''' R = 0.5*D if h < 0.0: return 0.0 elif h > D: h = D R2 = R*R R4 = R2*R2 a2 = a*a c1 = R2 - a2 # from fluids.numerics import dblquad # from scipy.integrate import dblquad, nquad ## quad_val = nquad(_SA_partial_horiz_ellipsoidal_head_to_int, ranges=[_SA_partial_horiz_ellipsoidal_head_limits, _SA_partial_horiz_ellipsoidal_head_limits2], ## args=(c1, R2, R4, h))[0] # quad_val = dblquad(_SA_partial_horiz_ellipsoidal_head_to_int, R-h, R, lambda x: 0.0, lambda x: (R2 - x*x)**0.5, # args=(c1, R2, R4, h))[0] quad_val = quad(_SA_partial_horiz_ellipsoidal_head_to_int, R-h, R, args=(c1, R2, R4))[0] SA = 2.0/R*quad_val return SA def _SA_partial_horiz_guppy_head_to_int(x, a, R): x0 = a*a x1 = R - x x2 = x1*x1 x3 = 1.0/x2 x4 = x0*x3 + 1.0 x5 = R*R x6 = x*x x7 = x5 - x6 x8 = sqrt(x7) x9 = x4*x8 x10 = x0 + 4.0*x5 x17 = sqrt(sqrt(x10)) x11 = x17*x17 x12 = 1.0/x11 x13 = a*x7 x14 = x12*x13*x3 + 1.0 x15 = a*x12 x16 = sqrt(a) x18 = 2*atan(x16*x8/(x1*x17)) x19 = 0.5 - 0.5*x15 x100 = (-2.0*R*x*x11 + x11*x5 + x11*x6 + x13) x20 = x1*x14*sqrt(x2*x5*(x0 + x2)/(x100*x100))/x5 return 0.08333333333333333*( (-4.0*x10**0.75*x16*x20*ellipeinc(x18, x19) + 4.0*x9 + 2.0*x17*x20*(a*x11 + x10)*ellipkinc(x18, x19)/x16 + 8.0*x15*x9/x14)*1.0/sqrt(x4)) def SA_partial_horiz_guppy_head(D, a, h): r'''Calculates the partial area of a guppy tank head in the context of a horizontal vessel and liquid partially filling it. This computes the wetted surface area of one of the guppy heads only. .. math:: \text{SA} = 2\int_{-R}^{h-R}\int_{0}^{\sqrt{R^2 - x^2}} \sqrt{1 + \left(\frac{a}{2R}\left(1 - \frac{y^2}{(R-x)^2} \right) \right)^2 + \left(\frac{ay}{R(R-x)} \right)^2 } dy dx After extensive manipulation, the first integral was solved analytically, extending the result of [1]_. Even with the special functions, this form has somewhat greater performance (and improved precision). .. math:: \text{SA} = 2 \int_{-R}^{h-R} \frac{\frac{2 a \left(4 + \frac{a^{2} \left(2 R^{2} - 2 R y\right)^{2}}{R^{2} \left(R - y\right)^{4}}\right) \sqrt{R^{2} - y^{2}}}{\sqrt{4 R^{2} + a^{2}} \left(\frac{a \left(R^{2} - y^{2}\right)}{\left(R - y\right)^{2} \sqrt{4 R^{2} + a^{2}}} + 1\right)} + \left(4 + \frac{a^{2} \left(2 R^{2} - 2 R y\right) ^{2}}{R^{2} \left(R - y\right)^{4}}\right) \sqrt{R^{2} - y^{2}} - \frac{2 \sqrt{a} \sqrt{\frac{4 R^{2} \left(R - y\right)^{4} + a^{2} \left(2 R^{2} - 2 R y\right)^{2}}{\left(R^{2} \sqrt{4 R^{2} + a^{2}} - 2 R y \sqrt{4 R^{2} + a^{2}} + a \left(R^{2} - y^{2}\right) + y^{2} \sqrt{4 R^{2} + a^{2}}\right)^{2}}} \left(R - y\right) \left(4 R^{2} + a^{2}\right)^{0.75} \left(\frac{a \left(R^{2} - y^{2}\right)}{\left(R - y\right)^{2} \sqrt{4 R^{2} + a^{2}}} + 1\right) \operatorname{ellipeinc}{\left(2 \operatorname{atan}{\left(\frac{\sqrt{a} \sqrt{R^{2} - y^{2}}} {\left(R - y\right) \left(4 R^{2} + a^{2}\right)^{0.25}} \right)}, - \frac{a}{2 \sqrt{4 R^{2} + a^{2}}} + 0.5 \right)}}{R^{2}} + \frac{1.0 \sqrt{\frac{4 R^{2} \left(R - y\right)^{4} + a^{2} \left(2 R^{2} - 2 R y\right)^{2}}{\left(R^{2} \sqrt{4 R^{2} + a^{2}} - 2 R y \sqrt{4 R^{2} + a^{2}} + a \left(R^{2} - y^{2}\right) + y^{2} \sqrt{4 R^{2} + a^{2}}\right)^{2}}} \left(R - y\right) \left(4 R^{2} + a^{2}\right)^{0.25} \left(\frac{a \left(R^{2} - y^{2}\right)}{\left(R - y\right)^{2} \sqrt{4 R^{2} + a^{2}}} + 1\right) \left(4 R^{2} + a^{2} + a \sqrt{4 R^{2} + a^{2}}\right) \operatorname{ellipkinc}{\left(2 \operatorname{atan}{\left(\frac{\sqrt{a} \sqrt{R^{2} - y^{2}}}{\left(R - y\right) \left(4 R^{2} + a^{2}\right)^{0.25}} \right)},- \frac{a}{2 \sqrt{4 R^{2} + a^{2}}} + 0.5 \right)}}{R^{2} \sqrt{a}}}{6 \sqrt{4 + \frac{a^{2} \left(2 R^{2} - 2 R y\right)^{2}}{R^{2} \left(R - y\right)^{4}}}} Where ellipeinc is the incomplete elliptic integral of the second kind, and ellipkinc is the incomplete elliptic integral of the first kind, both calculated with SciPy's link to the cephes library. Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Distance the guppy head extends on one side, [m] h : float Height, as measured up to where the fluid ends, [m] Returns ------- SA_partial : float Partial (wetted) surface area of one guppy tank head, [m^2] Notes ----- This method is undefined for :math:`h > D` and :math:`h < 0`, but those cases are handled by returning the full surface area and the zero respectively. The analytical integral was derived with Rubi. Examples -------- >>> SA_partial_horiz_guppy_head(D=72., a=48.0, h=24.0) 1467.8949 References ---------- .. [1] Jones, D. "Calculating Tank Wetted Area." Text. Chemical Processing. April 2017. https://www.chemicalprocessing.com/assets/Uploads/calculating-tank-wetted-area.pdf ''' R = 0.5*D if a == R: return pi*R*h elif h < 0.0: return 0.0 elif h > D: h = D if -R == h-R: return 0.0 # c1 = a/(2.0*R) # c2 = c1*c1 # a_R_ratio = a/R # a_R_ratio2 = a_R_ratio*a_R_ratio # from scipy.integrate import dblquad # def to_quad(y, x): # t1 = y/(R-x) # t1 *= t1 # t2 = (1.0 - t1) # return (1.0 + c2*t2*t2 + a_R_ratio2*t1)**0.5 # quad_val = dblquad(to_quad, -R, h-R, lambda x: 0.0, lambda x: (R*R - x*x)**0.5)[0] quad_val = quad(_SA_partial_horiz_guppy_head_to_int, -R, h-R, args=(a, R))[0] SA = 2.0*quad_val return SA def _SA_partial_horiz_torispherical_head_int_1(x, b, c): x0 = x*x x1 = b - x0 x2 = sqrt(x1) x3 = -b + x0 x4 = c*c try: x5 = 1.0/sqrt(x1 - x4) except: x5 = 1.0/csqrt(x1 - x4) x6 = x3 + x4 x7 = sqrt(b) try: x3_pow = x3**(-1.5) except: x3_pow = (x3+0j)**(-1.5) ans = (x*cacos(c/x2) + x3_pow*x5*(-c*x1*csqrt(-x6*x6)*catan(x*x2/(csqrt(x3)*csqrt(x6))) + x6*x7*csqrt(-x1*x1)*catan(c*x*x5/x7))/csqrt(-x6/x1)) return abs(ans.real) def _SA_partial_horiz_torispherical_head_int_2(y, t2, s, c1): # from mpmath import mp, mpf, atanh as catanh # mp.dps=30 # y, t2, s, c1 = mpf(y), mpf(t2), mpf(s), mpf(c1) y2 = y*y try: x10 = sqrt(t2 - y2) try: # Some tiny heights make the square root slightly under 0 x = (sqrt(c1 - y2 + (s+s)*x10)).real except: # Python 2 compat - don't take the square root of a negative number with no complex part x = (csqrt(c1 - y2 + (s+s)*x10 + 0.0j)).real except: x10 = csqrt(t2 - y2+0.0j) x = (csqrt(c1 - y2 + (s+s)*x10 + 0.0j)).real try: x0 = t2 - y2 x1 = s*x10.real t10 = x1 + x1 + s*s + x0 # x3, x4 present a very nasty numerical problem. # issue occurs when h == R, x3 is really equal to R**2 - 2*R*h + h**2 x3 = t10 - x*x x4 = sqrt(x3) # One solution is to use higher precision everywhere ans = x4*sqrt(t2*t10/(x0*x3))*catan(x/x4).real except: ans = 0.0 # ans = sqrt((t2* (s**2+t2-x**2+2.0*s* sqrt(t2-x**2)))/((t2-x**2)* (s**2+t2-x**2+2 *s* sqrt(t2-x**2)-y**2)))* sqrt(s**2+t2-x**2+2 *s* sqrt(t2-x**2)-y**2) *atan(y/sqrt(s**2+t2-x**2+2 *s* sqrt(t2-x**2)-y**2)) # print(float(y), float(t2), float(s), float(c1), float(ans.real)) # return float(ans.real) return ans.real def _SA_partial_horiz_torispherical_head_int_3(y, x, s, t2): x2 = x*x y2 = y*y x10 = sqrt(t2 - x2) num = (s + x10)*(s + x10)*x2 + (t2 - x2)*y2 den = (t2 - x2)*(s*s + t2 - x2 - y2 + 2.0*s*x10) f = sqrt(1.0 + num/den) return f def SA_partial_horiz_torispherical_head(D, f, k, h): r'''Calculates the partial area of a torispherical tank head in the context of a horizontal vessel and liquid partially filling it. This computes the wetted surface area of one of the torispherical heads only. The expressions used are quite complicated; see [1]_ for more details. Parameters ---------- D : float Diameter of the main cylindrical section, [m] f : float Dimensionless dish-radius parameter; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] k : float Dimensionless knuckle-radius parameter; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] h : float Height, as measured up to where the fluid ends, [m] Returns ------- SA_partial : float Partial (wetted) surface area of one torispherical tank head, [m^2] Notes ----- This method is undefined for :math:`h > D` and :math:`h < 0`, but those cases are handled by returning the full surface area and the zero respectively. One integral: .. math:: \int_{R-h}^{fD\sin \alpha} \cos^{-1} \frac{fD\cos \alpha}{\sqrt{f^2 D^2 - x^2}} dx Can be computed as follows, using WolframAlpha. .. math:: x \operatorname{acos}{\left(\frac{c}{\sqrt{b - x^{2}}} \right)} + \frac{\sqrt{b} \sqrt{- \left(b - x^{2}\right)^{2}} \left(- b + c^{2} + x^{2}\right) \operatorname{atan}{\left(\frac{c x}{\sqrt{b} \sqrt{b - c^{2} - x^{2}}} \right)} + c \sqrt{- \left(- b + c^{2} + x^{2}\right)^{2}} \left(- b + x^{2}\right) \operatorname{atan}{\left(\frac{x \sqrt{b - x^{2}}} {\sqrt{- b + x^{2}} \sqrt{- b + c^{2} + x^{2}}} \right)}}{\sqrt{ \frac{- b + c^{2} + x^{2}}{- b + x^{2}}} \left(- b + x^{2}\right)^{1.5} \sqrt{b - c^{2} - x^{2}}} With the following constants: .. math:: c = fD\cos \alpha .. math:: b = f^2 D^2 The other integral is a double integral. There is an analytical integral available for the first integral, which takes the form: .. math:: 2 \sqrt{\frac{R^{2} k^{2} \left(4 R^{2} k^{2} - y^{2} + \left(- 2 R k + R\right)^{2} + 2 \left(- 2 R k + R\right) \sqrt{4 R^{2} k^{2} - y^{2}} \right)}{\left(4 R^{2} k^{2} - y^{2}\right) \left(\left(R - h\right)^{2} - \left(- 4 R k + 2 R\right) \sqrt{4 R^{2} k^{2} - y^{2}} + 2 \left(- 2 R k + R\right) \sqrt{4 R^{2} k^{2} - y^{2}} \right)}} \sqrt{\left(R - h\right)^{2} - \left(- 4 R k + 2 R\right) \sqrt{4 R^{2} k^{2} - y^{2}} + 2 \left(- 2 R k + R\right) \sqrt{4 R^{2} k^{2} - y^{2}}} \operatorname{atan}{\left(\frac{ \sqrt{4 R^{2} k^{2} - y^{2} - \left(R - h\right)^{2} + \left(- 4 R k + 2 R\right) \sqrt{4 R^{2} k^{2} - y^{2}} + \left(- 2 R k + R\right) ^{2}}}{\sqrt{\left(R - h\right)^{2} - \left(- 4 R k + 2 R\right) \sqrt{4 R^{2} k^{2} - y^{2}} + 2 \left(- 2 R k + R\right) \sqrt{4 R^{2} k^{2} - y^{2}}}} \right)} Examples -------- >>> SA_partial_horiz_torispherical_head(D=72., f=1, k=.06, h=24.0) 1471.201832459 References ---------- .. [1] Jones, D. "Calculating Tank Wetted Area." Text. Chemical Processing. April 2017. https://www.chemicalprocessing.com/assets/Uploads/calculating-tank-wetted-area.pdf ''' if h <= 0.0: return 0.0 elif h > D: h = D R = D/2. r = f*D alpha = asin((1.0 - 2.0*k)/(2.*(f-k))) cos_alpha = cos(alpha) sin_alpha = sin(alpha) s = R - k*D t = k*D s2 = s*s t2 = t*t a1 = r*(1.0 - cos_alpha) a2 = k*D*cos_alpha c = f*D*cos_alpha b = f*f*D*D c1 = s2 + t2 - (R - h)**2 def G_lim(x): # numba: delete x2 = x*x # numba: delete try: # numba: delete G = sqrt(c1 - x2 + (s+s)*sqrt(t2 - x2)) # numba: delete except: # numba: delete # Python 2 compat - don't take the square root of a negative number with no complex part # numba: delete G = sqrt(c1 - x2 + (s+s)*sqrt(t2 - x2+0.0j) + 0.0j) # numba: delete return G.real # Some tiny heights make the square root slightly under 0 # numba: delete limit_1 = k*D*(1.0 - sin_alpha) if h < limit_1: SA = quad(_SA_partial_horiz_torispherical_head_int_2, 0.0, sqrt(2*k*D*h - h*h), args=(t2, s, c1))[0] return 2.0*SA elif limit_1 < h <= R: if (D*.499 < h < D*.501): # numba: delete from scipy.integrate import dblquad # numba: delete SA = 2.0*dblquad(_SA_partial_horiz_torispherical_head_int_3, 0.0, a2, lambda x: 0, G_lim, args=(s, t2))[0] # numba: delete else: # numba: delete # Numerical issues SA = 2.0*quad(_SA_partial_horiz_torispherical_head_int_2, 0.0, a2, args=(t2, s, c1))[0] # numba: delete # SA = 2.0*quad(_SA_partial_horiz_torispherical_head_int_2, 0.0, a2, args=(t2, s, c1))[0] # numba: uncomment try: high = _SA_partial_horiz_torispherical_head_int_1(f*D*sin_alpha, b, c) except: # Expression with the substitution is equally complicated high = _SA_partial_horiz_torispherical_head_int_1(f*D*sin_alpha*(1.0 + 1e-14), b, c) int_1_term1 = high - _SA_partial_horiz_torispherical_head_int_1(R-h, b, c) SA += 2.0*f*D*int_1_term1 else: SA = 2.0*pi*f*D*a1 + 2*pi*k*D*(a2 + (R - k*D)*asin(a2/(k*D))) SA -= SA_partial_horiz_torispherical_head(D, f, k, h=D-h) return SA def SA_partial_vertical_conical_head(D, a, h): r'''Calculates the partial area of a conical tank head in the context of a vertical vessel and liquid partially filling it. This computes the wetted surface area of one of the conical heads only, and is valid for `h` up to `a` only. .. math:: \text{SA} = \frac{\pi R h^2 \sqrt{a^2 + R^2}}{a^2} Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Distance the cone head extends beneath the vertical tank, [m] h : float Height, as measured up to where the fluid ends or the top of the conical head, whichever is less, [m] Returns ------- SA_partial : float Partial (wetted) surface area of one conical tank head extending beneath the vessel, [m^2] Notes ----- This method is undefined for :math:`h < 0`, but this is handled by returning zero. Examples -------- >>> SA_partial_vertical_conical_head(D=72., a=48.0, h=24.0) 1696.4600329384882 References ---------- .. [1] Jones, D. "Calculating Tank Wetted Area." Text. Chemical Processing. April 2017. https://www.chemicalprocessing.com/assets/Uploads/calculating-tank-wetted-area.pdf ''' if a == 0.0: return 0.25*pi*D*D elif h <= 0.0: return 0.0 R = 0.5*D SA = pi*R*h*h*sqrt(a*a + R*R)/(a*a) return SA def SA_partial_vertical_ellipsoidal_head(D, a, h): r'''Calculates the partial area of a ellipsoidal tank head in the context of a vertical vessel and liquid partially filling it. This computes the wetted surface area of one of the ellipsoidal heads only, and is valid for `h` up to `a` only. If :math:`a > R`: .. math:: \text{SA} = \pi R^2 - \frac{\pi (a - h)R\sqrt{a^4 - (a-h)^2(a^2-R^2)}}{a^2} + \frac{\pi a^2 R}{\sqrt{a^2 - R^2}}\left( \cos^{-1} \frac{R}{a} - \sin^{-1} \frac{(a-h)\sqrt{a^2-R^2}}{a^2} \right) Otherwise for :math:`0 < a < R`: .. math:: \text{SA} = \pi R^2 - \frac{\pi (a - h)R\sqrt{a^4 - (a-h)^2(a^2-R^2)}}{a^2} + \frac{\pi a^2 R}{\sqrt{a^2 - R^2}}\ln \left(\frac{a(\sqrt{R^2 - a^2} + R)} {(a-h)\sqrt{R^2 - a^2} + \sqrt{a^4 + (a-h)^2(R^2 - a^2)}} \right) Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Distance the ellipsoidal head extends beneath the vertical tank, [m] h : float Height, as measured up to where the fluid ends or the top of the ellipsoidal head, whichever is less, [m] Returns ------- SA_partial : float Partial (wetted) surface area of one ellipsoidal tank head extending beneath the vessel, [m^2] Notes ----- This method is undefined for :math:`h < 0`, but this is handled by returning zero. Examples -------- >>> SA_partial_vertical_ellipsoidal_head(D=72., a=48.0, h=24.0) 4675.23789137632 References ---------- .. [1] Jones, D. "Calculating Tank Wetted Area." Text. Chemical Processing. April 2017. https://www.chemicalprocessing.com/assets/Uploads/calculating-tank-wetted-area.pdf ''' if a == 0.0: return 0.25*pi*D*D elif h <= 0.0: return 0.0 # h should be less than a R = 0.5*D SA = pi*R*R a2 = a*a a_inv = 1.0/a R2 = R*R SA -= pi*(a - h)*R*sqrt(a2*a2 - (a-h)*(a-h)*(a2 - R2))*a_inv*a_inv if a > R: # This one has issues around a == R SA += pi*a2*R/sqrt(a2 - R2)*(acos(R*a_inv) - asin((a-h)*sqrt(a2 - R2)*a_inv*a_inv)) elif a == R: # Special case avoids zero division return pi*D*h else: x1 = sqrt(R2 - a2) num = a*(x1 + R) den = (a-h)*x1 + sqrt(a2*a2 + (a-h)*(a-h)*(R2 - a2)) SA += pi*a2*R/x1*log(num/den) return SA def SA_partial_vertical_spherical_head(D, a, h): r'''Calculates the partial area of a spherical tank head in the context of a vertical vessel and liquid partially filling it. This computes the wetted surface area of one of the conical heads only, and is valid for `h` up to `a` only. .. math:: \text{SA} = \pi h \left(\frac{a^2 + R^2}{a}\right) Parameters ---------- D : float Diameter of the main cylindrical section, [m] a : float Distance the spherical head extends beneath the vertical tank, [m] h : float Height, as measured up to where the fluid ends or the top of the spherical head, whichever is less, [m] Returns ------- SA_partial : float Partial (wetted) surface area of one spherical tank head extending beneath the vessel, [m^2] Notes ----- This method is undefined for :math:`h < 0`, but this is handled by returning zero. Examples -------- >>> SA_partial_vertical_spherical_head(72, a=24, h=12) 2940.5307237600464 References ---------- .. [1] Jones, D. "Calculating Tank Wetted Area." Text. Chemical Processing. April 2017. https://www.chemicalprocessing.com/assets/Uploads/calculating-tank-wetted-area.pdf ''' if a == 0.0: return 0.25*pi*D*D elif h <= 0.0: return 0.0 R = 0.5*D SA = pi*h*((a*a + R*R)/a) return SA def SA_partial_vertical_torispherical_head(D, f, k, h): r'''Calculates the partial area of a torispherical tank head in the context of a vertical vessel and liquid partially filling it. This computes the wetted surface area of one of the torispherical heads only. if :math:`a_1 <= h`: .. math:: \text{SA} = 2\pi f D h if :math:`a_1 \le h \le a`: .. math:: \text{SA} = 2\pi f D a_1 + 2\pi k D\left( h - a_1 + (R - kD) \left( \sin^{-1} \frac{a_2}{kD} - \sin^{-1} \frac{a-h}{kD} \right) \right) .. math:: \alpha = \sin^{-1}\frac{1-2k}{2(f-k)} .. math:: a_1 = fD(1-\cos\alpha) .. math:: a_2 = kD\cos\alpha Parameters ---------- D : float Diameter of the main cylindrical section, [m] f : float Dimensionless dish-radius parameter; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] k : float Dimensionless knuckle-radius parameter; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] h : float Height, as measured up to where the fluid ends or the top of the torispherical head, whichever is less, [m] Returns ------- SA_partial : float Partial (wetted) surface area of one torispherical tank head, [m^2] Notes ----- This method is undefined for :math:`h > D` and :math:`h < 0`, but those cases are handled by returning the full surface area and the zero respectively. Examples -------- This method is undefined for :math:`h < 0`, but this is handled by returning zero. References ---------- .. [1] Jones, D. "Calculating Tank Wetted Area." Text. Chemical Processing. April 2017. https://www.chemicalprocessing.com/assets/Uploads/calculating-tank-wetted-area.pdf ''' if h <= 0.0: return 0.0 R = 0.5*D alpha = asin((1.0 - 2.0*k)/(2.0*(f-k))) cos_alpha = cos(alpha) a1 = f*D*(1.0 - cos_alpha) a2 = k*D*cos_alpha a = a1 + a2 if h < a1: SA = 2.0*pi*f*D*h elif a1 <= h <= a: SA = 2.0*pi*f*D*a1 kD_inv = 1.0/(k*D) SA += 2.0*pi*k*D*(h - a1 + (R - k*D)*(asin(a2*kD_inv) - asin((a-h)*kD_inv))) return SA def a_torispherical(D, f, k): r'''Calculates depth of a torispherical head according to [1]_. .. math:: a = a_1 + a_2 .. math:: \alpha = \sin^{-1}\frac{1-2k}{2(f-k)} .. math:: a_1 = fD(1-\cos\alpha) .. math:: a_2 = kD\cos\alpha Parameters ---------- D : float Diameter of the main cylindrical section, [m] f : float Dimensionless dish-radius parameter; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] k : float Dimensionless knuckle-radius parameter; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] Returns ------- a : float Depth of head [m] Examples -------- Example from [1]_. >>> a_torispherical(D=96., f=0.9, k=0.2) 25.684268924767125 References ---------- .. [1] Jones, D. "Calculating Tank Volume." Text. Accessed December 22, 2015. http://www.webcalc.com.br/blog/Tank_Volume.PDF''' alpha = asin((1-2*k)/(2*(f-k))) a1 = f*D*(1 - cos(alpha)) a2 = k*D*cos(alpha) return a1 + a2 def V_from_h(h, D, L, horizontal=True, sideA=None, sideB=None, sideA_a=0, sideB_a=0, sideA_f=None, sideA_k=None, sideB_f=None, sideB_k=None): r'''Calculates partially full volume of a vertical or horizontal tank with different head types according to [1]_. Parameters ---------- h : float Height of the liquid in the tank, [m] D : float Diameter of the cylindrical section of the tank, [m] L : float Length of the main cylindrical section of the tank, [m] horizontal : bool, optional Whether or not the tank is a horizontal or vertical tank sideA : string, optional The left (or bottom for vertical) head of the tank's type; one of [None, 'conical', 'ellipsoidal', 'torispherical', 'guppy', 'spherical']. sideB : string, optional The right (or top for vertical) head of the tank's type; one of [None, 'conical', 'ellipsoidal', 'torispherical', 'guppy', 'spherical']. sideA_a : float, optional The distance the head as specified by sideA extends down or to the left from the main cylindrical section, [m] sideB_a : float, optional The distance the head as specified by sideB extends up or to the right from the main cylindrical section, [m] sideA_f : float, optional Dimensionless dish-radius parameter for side A; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] sideA_k : float, optional Dimensionless knuckle-radius parameter for side A; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] sideB_f : float, optional Dimensionless dish-radius parameter for side B; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] sideB_k : float, optional Dimensionless knuckle-radius parameter for side B; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] Returns ------- V : float Volume up to h [m^3] Examples -------- >>> V_from_h(h=7, D=1.5, L=5., horizontal=False, sideA='conical', ... sideB='conical', sideA_a=2., sideB_a=1.) 10.013826583317465 References ---------- .. [1] Jones, D. "Compute Fluid Volumes in Vertical Tanks." Chemical Processing. December 18, 2003. http://www.chemicalprocessing.com/articles/2003/193/ ''' if sideA is not None and sideA not in ('conical', 'ellipsoidal', 'torispherical', 'spherical', 'guppy'): raise ValueError('Unspoorted head type for side A') if sideB is not None and sideB not in ('conical', 'ellipsoidal', 'torispherical', 'spherical', 'guppy'): raise ValueError('Unspoorted head type for side B') R = 0.5*D V = 0.0 if horizontal: # Conical case if sideA == 'conical' and sideB == 'conical' and sideA_a == sideB_a: V += 2.0*V_horiz_conical(D, L, sideA_a, h, headonly=True) else: if sideA == 'conical': V += V_horiz_conical(D, L, sideA_a, h, headonly=True) if sideB == 'conical': V += V_horiz_conical(D, L, sideB_a, h, headonly=True) # Elliosoidal case if sideA == 'ellipsoidal' and sideB == 'ellipsoidal' and sideA_a == sideB_a: V += 2.0*V_horiz_ellipsoidal(D, L, sideA_a, h, headonly=True) else: if sideA == 'ellipsoidal': V += V_horiz_ellipsoidal(D, L, sideA_a, h, headonly=True) if sideB == 'ellipsoidal': V += V_horiz_ellipsoidal(D, L, sideB_a, h, headonly=True) # Guppy case if sideA == 'guppy' and sideB == 'guppy' and sideA_a == sideB_a: V += 2.0*V_horiz_guppy(D, L, sideA_a, h, headonly=True) else: if sideA == 'guppy': V += V_horiz_guppy(D, L, sideA_a, h, headonly=True) if sideB == 'guppy': V += V_horiz_guppy(D, L, sideB_a, h, headonly=True) # Spherical case if sideA == 'spherical' and sideB == 'spherical' and sideA_a == sideB_a: V += 2.0*V_horiz_spherical(D, L, sideA_a, h, headonly=True) else: if sideA == 'spherical': V += V_horiz_spherical(D, L, sideA_a, h, headonly=True) if sideB == 'spherical': V += V_horiz_spherical(D, L, sideB_a, h, headonly=True) # Torispherical case if (sideA == 'torispherical' and sideB == 'torispherical' and (sideA_f == sideB_f) and (sideA_k == sideB_k)): V += 2.0*V_horiz_torispherical(D, L, sideA_f, sideA_k, h, headonly=True) else: if sideA == 'torispherical': V += V_horiz_torispherical(D, L, sideA_f, sideA_k, h, headonly=True) if sideB == 'torispherical': V += V_horiz_torispherical(D, L, sideB_f, sideB_k, h, headonly=True) if h > D: # Must be before Af, which will raise a domain error raise ValueError('Input height is above top of tank') Af = R*R*acos((R-h)/R) - (R-h)*sqrt(2.0*R*h - h*h) V += L*Af else: # Bottom head if sideA in ('conical', 'ellipsoidal', 'torispherical', 'spherical'): if sideA == 'conical': V += V_vertical_conical(D, sideA_a, h=min(sideA_a, h)) if sideA == 'ellipsoidal': V += V_vertical_ellipsoidal(D, sideA_a, h=min(sideA_a, h)) if sideA == 'spherical': V += V_vertical_spherical(D, sideA_a, h=min(sideA_a, h)) if sideA == 'torispherical': V += V_vertical_torispherical(D, sideA_f, sideA_k, h=min(sideA_a, h)) # Cylindrical section if h >= sideA_a + L: V += pi/4*D**2*L # All middle elif h > sideA_a: V += pi/4*D**2*(h - sideA_a) # Partial middle # Top head if h > sideA_a + L: h2 = sideB_a - (h - sideA_a - L) if sideB == 'conical': V += V_vertical_conical(D, sideB_a, h=sideB_a) V -= V_vertical_conical(D, sideB_a, h=h2) if sideB == 'ellipsoidal': V += V_vertical_ellipsoidal(D, sideB_a, h=sideB_a) V -= V_vertical_ellipsoidal(D, sideB_a, h=h2) if sideB == 'spherical': V += V_vertical_spherical(D, sideB_a, h=sideB_a) V -= V_vertical_spherical(D, sideB_a, h=h2) if sideB == 'torispherical': V += V_vertical_torispherical(D, sideB_f, sideB_k, h=sideB_a) V -= max(0.0, V_vertical_torispherical(D, sideB_f, sideB_k, h=h2)) if h > L + sideA_a + sideB_a: raise ValueError('Input height is above top of tank') return V def SA_from_h(h, D, L, horizontal=True, sideA=None, sideB=None, sideA_a=0.0, sideB_a=0.0, sideA_f=None, sideA_k=None, sideB_f=None, sideB_k=None): r'''Calculates partially full wetted surface area of a vertical or horizontal tank with different head types according to [1]_. Parameters ---------- h : float Height of the liquid in the tank, [m] D : float Diameter of the cylindrical section of the tank, [m] L : float Length of the main cylindrical section of the tank, [m] horizontal : bool, optional Whether or not the tank is a horizontal or vertical tank sideA : string, optional The left (or bottom for vertical) head of the tank's type; one of [None, 'conical', 'ellipsoidal', 'torispherical', 'guppy', 'spherical']. sideB : string, optional The right (or top for vertical) head of the tank's type; one of [None, 'conical', 'ellipsoidal', 'torispherical', 'guppy', 'spherical']. sideA_a : float, optional The distance the head as specified by sideA extends down or to the left from the main cylindrical section, [m] sideB_a : float, optional The distance the head as specified by sideB extends up or to the right from the main cylindrical section, [m] sideA_f : float, optional Dimensionless dish-radius parameter for side A; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] sideA_k : float, optional Dimensionless knuckle-radius parameter for side A; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] sideB_f : float, optional Dimensionless dish-radius parameter for side B; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] sideB_k : float, optional Dimensionless knuckle-radius parameter for side B; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] Returns ------- SA : float Wetted wall surface area up to h [m^3] Examples -------- >>> SA_from_h(h=7, D=1.5, L=5., horizontal=False, sideA='conical', ... sideB='conical', sideA_a=2., sideB_a=1.) 28.59477853914843 References ---------- .. [1] Jones, D. "Calculating Tank Wetted Area." Text. Chemical Processing. April 2017. https://www.chemicalprocessing.com/assets/Uploads/calculating-tank-wetted-area.pdf http://www.chemicalprocessing.com/articles/2003/193/ ''' if sideA is not None and sideA not in ('conical', 'ellipsoidal', 'torispherical', 'spherical', 'guppy'): raise ValueError('Unspoorted head type for side A') if sideB is not None and sideB not in ('conical', 'ellipsoidal', 'torispherical', 'spherical', 'guppy'): raise ValueError('Unspoorted head type for side B') R = 0.5*D SA = 0.0 if horizontal: # Conical case if sideA == 'conical': SA += SA_partial_horiz_conical_head(D, sideA_a, h) if sideB == 'conical': SA += SA_partial_horiz_conical_head(D, sideB_a, h) # Elliosoidal case if sideA == 'ellipsoidal': SA += SA_partial_horiz_ellipsoidal_head(D, sideA_a, h) if sideB == 'ellipsoidal': SA += SA_partial_horiz_ellipsoidal_head(D, sideB_a, h) # Guppy case if sideA == 'guppy': SA += SA_partial_horiz_guppy_head(D, sideA_a, h) if sideB == 'guppy': SA += SA_partial_horiz_guppy_head(D, sideB_a, h) # Spherical case if sideA == 'spherical': SA += SA_partial_horiz_spherical_head(D, sideA_a, h) if sideB == 'spherical': SA += SA_partial_horiz_spherical_head(D, sideB_a, h) # Torispherical case if sideA == 'torispherical': if sideA_f is not None and sideA_k is not None: SA += SA_partial_horiz_torispherical_head(D, sideA_f, sideA_k, h) else: raise ValueError("Torispherical sideA but no `f` and `k` provided") if sideB == 'torispherical': if sideB_f is not None and sideB_k is not None: SA += SA_partial_horiz_torispherical_head(D, sideB_f, sideB_k, h) else: raise ValueError("Torispherical sideB but no `f` and `k` provided") # Flat case if sideA is None: SA += A_partial_circle(D, h) if sideB is None: SA += A_partial_circle(D, h) if h > D: # Must be before Af, which will raise a domain error raise ValueError('Input height is above top of tank') SA += L*D*acos((D - h - h)/D) else: # Bottom head if sideA in ('conical', 'ellipsoidal', 'torispherical', 'spherical'): if sideA == 'conical': SA += SA_partial_vertical_conical_head(D, sideA_a, h=min(sideA_a, h)) elif sideA == 'ellipsoidal': SA += SA_partial_vertical_ellipsoidal_head(D, sideA_a, h=min(sideA_a, h)) elif sideA == 'spherical': SA += SA_partial_vertical_spherical_head(D, sideA_a, h=min(sideA_a, h)) elif sideA == 'torispherical': if sideA_f is not None and sideA_k is not None: SA += SA_partial_vertical_torispherical_head(D, sideA_f, sideA_k, h=min(sideA_a, h)) else: raise ValueError("Torispherical sideA but no `f` and `k` provided") elif sideA is None: SA += 0.25*pi*D*D # Cylindrical section if h >= sideA_a + L: SA += pi*D*L # All middle elif h > sideA_a: SA += pi*D*(h - sideA_a) # Partial middle # Top head if h >= sideA_a + L: # greater or equals is needed! Flat head on top adds lots of area. h2 = sideB_a - (h - sideA_a - L) if sideB == 'conical': if sideB_a == 0.0: SA += 0.25*pi*D*D else: SA += SA_partial_vertical_conical_head(D, sideB_a, h=sideB_a) SA -= SA_partial_vertical_conical_head(D, sideB_a, h=h2) elif sideB == 'ellipsoidal': if sideB_a == 0.0: SA += 0.25*pi*D*D else: SA += SA_partial_vertical_ellipsoidal_head(D, sideB_a, h=sideB_a) SA -= SA_partial_vertical_ellipsoidal_head(D, sideB_a, h=h2) elif sideB == 'spherical': if sideB_a == 0.0: SA += 0.25*pi*D*D else: SA += SA_partial_vertical_spherical_head(D, sideB_a, h=sideB_a) SA -= SA_partial_vertical_spherical_head(D, sideB_a, h=h2) elif sideB == 'torispherical': if sideB_a == 0.0: SA += 0.25*pi*D*D else: if sideB_f is not None and sideB_k is not None: SA += SA_partial_vertical_torispherical_head(D, sideB_f, sideB_k, h=sideB_a) SA -= max(0.0, SA_partial_vertical_torispherical_head(D, sideB_f, sideB_k, h=h2)) else: raise ValueError("Torispherical sideB but no `f` and `k` provided") elif sideB is None and h == sideA_a + L: # End cap if flat SA += 0.25*pi*D*D if h > L + sideA_a + sideB_a: raise ValueError('Input height is above top of tank') return SA def tank_from_two_specs_err(guess, spec0, spec1, spec0_name, spec1_name, h, horizontal, sideA, sideB, sideA_a, sideB_a, sideA_f, sideA_k, sideB_f, sideB_k, sideA_a_ratio, sideB_a_ratio): D, L_over_D = float(guess[0]), float(guess[1]) obj = TANK(D=D, L_over_D=L_over_D, horizontal=horizontal, sideA=sideA, sideB=sideB, sideA_a=sideA_a, sideB_a=sideB_a, sideA_f=sideA_f, sideA_k=sideA_k, sideB_f=sideB_f, sideB_k=sideB_k, sideA_a_ratio=sideA_a_ratio, sideB_a_ratio=sideB_a_ratio) # ensure h is always under the top h = min(h, obj.h_max) if spec0_name == 'V': err0 = obj.V_total - spec0 elif spec0_name == 'SA': err0 = obj.A - spec0 elif spec0_name == 'V_partial': err0 = obj.V_from_h(h) - spec0 elif spec0_name == 'SA_partial': err0 = obj.SA_from_h(h) - spec0 elif spec0_name == 'A_cross': err0 = obj.A_cross_sectional(h) - spec0 if spec1_name == 'V': err1 = obj.V_total - spec1 elif spec1_name == 'SA': err1 = obj.A - spec1 elif spec1_name == 'V_partial': err1 = obj.V_from_h(h) - spec1 elif spec1_name == 'SA_partial': err1 = obj.SA_from_h(h) - spec1 elif spec1_name == 'A_cross': err1 = obj.A_cross_sectional(h) - spec1 # print(err0, err1, D, L_over_D, h) return [err0, err1] class TANK(object): """Class representing tank volumes and levels. All parameters are also attributes. Parameters ---------- D : float Diameter of the cylindrical section of the tank, [m] L : float Length of the main cylindrical section of the tank, [m] horizontal : bool, optional Whether or not the tank is a horizontal or vertical tank sideA : string, optional The left (or bottom for vertical) head of the tank's type; one of [None, 'conical', 'ellipsoidal', 'torispherical', 'guppy', 'spherical', 'same']. sideB : string, optional The right (or top for vertical) head of the tank's type; one of [None, 'conical', 'ellipsoidal', 'torispherical', 'guppy', 'spherical', 'same']. sideA_a : float, optional The distance the head as specified by sideA extends down or to the left from the main cylindrical section, [m] sideB_a : float, optional The distance the head as specified by sideB extends up or to the right from the main cylindrical section, [m] sideA_f : float, optional Dimensionless dish-radius parameter for side A; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] sideA_k : float, optional Dimensionless knuckle-radius parameter for side A; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] sideB_f : float, optional Dimensionless dish-radius parameter for side B; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] sideB_k : float, optional Dimensionless knuckle-radius parameter for side B; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] sideA_a_ratio : float, optional Ratio for `a` parameter; can be used instead of specifying an absolute value, [-] sideB_a_ratio : float, optional Ratio for `a` parameter; can be used instead of specifying an absolute value, [-] L_over_D : float, optional Ratio of length over diameter, used only when D and L are both unspecified but V is, [-] V : float, optional Volume of the tank; solved for if specified, using sideA_a_ratio/sideB_a_ratio, sideA, sideB, horizontal, and one of L_over_D, L, or D, [m^3] Attributes ---------- h_max : float Height of the tank, [m] V_total : float Total volume of the tank as calculated [m^3] sideA_V : float Volume of only `sideA` [m^3] sideB_V : float Volume of only `sideB` [m^3] lateral_V : float Volume of cylindrical section of tank [m^3] A : float Total surface area of the tank, [m^2] A_sideA : float Surface area of sideA, [m^2] A_sideB : float Surface area of sideB, [m^2] A_lateral : float Surface area of the lateral side, [m^2] A_sideA_extra : float Additional surface area of sideA beyond that of a flat disk, [m^2] A_sideB_extra : float Additional surface area of sideB beyond that of a flat disk, [m^2] table : bool Whether or not a table of heights-volumes has been generated heights : ndarray Array of heights between 0 and h_max, [m] volumes : ndarray Array of volumes calculated from the heights, [m^3] c_forward : ndarray Coefficients for the Chebyshev approximations in calculating V from h, [-] c_backward : ndarray Coefficients for the Chebyshev approximations in calculating h from V, [-] Notes ----- For torpsherical tank heads, the following `f` and `k` parameters are used in standards. The default is ASME F&D. +----------------------+-----+-------+ | | f | k | +======================+=====+=======+ | 2:1 semi-elliptical | 0.9 | 0.17 | +----------------------+-----+-------+ | ASME F&D | 1 | 0.06 | +----------------------+-----+-------+ | ASME 80/6 | 0.8 | 0.06 | +----------------------+-----+-------+ | ASME 80/10 F&D | 0.8 | 0.1 | +----------------------+-----+-------+ | DIN 28011 | 1 | 0.1 | +----------------------+-----+-------+ | DIN 28013 | 0.8 | 0.154 | +----------------------+-----+-------+ For the following cases, numerical integrals are used. V_horiz_spherical V_horiz_torispherical SA_partial_horiz_spherical_head SA_partial_horiz_ellipsoidal_head SA_partial_horiz_guppy_head SA_partial_horiz_torispherical_head Examples -------- Total volume of a tank: >>> TANK(D=1.2, L=4, horizontal=False).V_total 4.523893421169302 Volume of a tank at a given height: >>> TANK(D=1.2, L=4, horizontal=False).V_from_h(.5) 0.5654866776461628 Height of liquid for a given volume: >>> TANK(D=1.2, L=4, horizontal=False).h_from_V(.5) 0.442097064 Surface area of a tank with a conical head: >>> T1 = TANK(V=10, L_over_D=0.7, sideB='conical', sideB_a=0.5) >>> T1.A, T1.A_sideA, T1.A_sideB, T1.A_lateral (24.94775907, 5.118555, 5.497246, 14.331956) Solving for tank volumes, first horizontal, then vertical: >>> TANK(D=10., horizontal=True, sideA='conical', sideB='conical', V=500).L 4.699531 >>> TANK(L=4.69953105701, horizontal=True, sideA='conical', sideB='conical', V=500).D 9.9999999 >>> TANK(L_over_D=0.469953105701, horizontal=True, sideA='conical', sideB='conical', V=500).L 4.6995310 >>> TANK(D=10., horizontal=False, sideA='conical', sideB='conical', V=500).L 4.699531 >>> TANK(L=4.69953105701, horizontal=False, sideA='conical', sideB='conical', V=500).D 9.99999999 >>> TANK(L_over_D=0.469953105701, horizontal=False, sideA='conical', sideB='conical', V=500).L 4.699531057 """ table = False chebyshev = False __full_path__ = __module__ + '.TANK' def __repr__(self): # pragma: no cover orient = 'Horizontal' if self.horizontal else 'Vertical' if self.sideA is None and self.sideB is None: sides = 'no heads' elif self.sideA == self.sideB: if self.sideA_a == self.sideB_a: sides = self.sideA + (' heads, a=%f m' %(self.sideA_a)) else: sides = self.sideA + ' heads, sideA a=%f m, sideB a=%f m' % (self.sideA_a, self.sideB_a) else: if self.sideA: A = '%s head on sideA with a=%f m' % (self.sideA, self.sideA_a) else: A = 'no head on sideA' if self.sideB: B = ' and %s head on sideB with a=%f m' % (self.sideB, self.sideB_a) else: B = ' and no head on sideB' sides = A + B return '<%s tank, V=%f m^3, D=%f m, L=%f m, %s.>' %(orient, self.V_total, self.D, self.L, sides) def __init__(self, D=None, L=None, horizontal=True, sideA=None, sideB=None, sideA_a=None, sideB_a=None, sideA_f=None, sideA_k=None, sideB_f=None, sideB_k=None, sideA_a_ratio=None, sideB_a_ratio=None, L_over_D=None, V=None): self.D = D self.L = L self.L_over_D = L_over_D self.V = V self.horizontal = horizontal sideA_same, sideB_same = sideA == 'same', sideB == 'same' if sideA_same and not sideB_same: sideA, sideA_a, sideA_a_ratio, sideA_f, sideA_k = sideB, sideB_a, sideB_a_ratio, sideB_f, sideB_k elif sideB_same and not sideA_same: sideB, sideB_a, sideB_a_ratio, sideB_f, sideB_k = sideA, sideA_a, sideA_a_ratio, sideA_f, sideA_k elif sideA_same and sideB_same: raise ValueError("Cannot specify both sides as same") self.sideA = sideA if sideA is None and sideA_a is None: sideA_a = 0.0 self.sideA_a = sideA_a if sideA_a is None and sideA_a_ratio is None and (sideA is not None and sideA != 'torispherical'): sideA_a_ratio = 0.25 self.sideA_a_ratio = sideA_a_ratio if sideA_a is None and sideA == 'torispherical': if sideA_f is None: sideA_f = 1.0 if sideA_k is None: sideA_k = 0.06 self.sideA_f = sideA_f self.sideA_k = sideA_k self.sideB = sideB if sideB is None and sideB_a is None: sideB_a = 0.0 self.sideB_a = sideB_a if sideB_a is None and sideB_a_ratio is None and (sideB is not None and sideB != 'torispherical'): sideB_a_ratio = 0.25 self.sideB_a_ratio = sideB_a_ratio if sideB_a is None and sideB == 'torispherical': if sideB_f is None: sideB_f = 1.0 if sideB_k is None: sideB_k = 0.06 self.sideB_f = sideB_f self.sideB_k = sideB_k if self.horizontal: self.vertical = False self.orientation = 'horizontal' self.angle = 0 else: self.vertical = True self.orientation = 'vertical' self.angle = 90 # If V is specified and either L or D are known, solve for L, D, L_over_D if self.V: self._solve_tank_for_V() self.set_misc() def set_misc(self): """Set more parameters, after the tank is better defined than in the __init__ function. Notes ----- Two of D, L, and L_over_D must be known when this function runs. The other one is set from the other two first thing in this function. a_ratio parameters are used to calculate a values for the heads here, if applicable. Radius is calculated here. Maximum tank height is calculated here. V_total is calculated here. """ if self.D is not None and self.L is not None: # If L and D are known, get L_over_D self.L_over_D = self.L/self.D elif self.D is not None and self.L_over_D is not None: # Otherwise, if L_over_D and D are provided, get L self.L = self.D*self.L_over_D elif self.L is not None and self.L_over_D is not None: # Otherwise, if L_over_D and L are provided, get D self.D = self.L/self.L_over_D D = self.D # Calculate diameter self.R = self.D/2. # If a_ratio is provided for either heads, use it. if self.sideA is not None and D is not None: if self.sideA_a is None and self.sideA in ('conical', 'ellipsoidal', 'guppy', 'spherical'): self.sideA_a = D*self.sideA_a_ratio if self.sideB is not None and D is not None: if self.sideB_a is None and self.sideB in ('conical', 'ellipsoidal', 'guppy', 'spherical'): self.sideB_a = D*self.sideB_a_ratio # Calculate a for torispherical heads if self.sideA == 'torispherical' and self.sideA_f is not None and self.sideA_k is not None: self.sideA_a = a_torispherical(D, self.sideA_f, self.sideA_k) if self.sideB == 'torispherical' and self.sideB_f is not None and self.sideB_k is not None: self.sideB_a = a_torispherical(D, self.sideB_f, self.sideB_k) # Ensure the correct a_ratios are set, whether there is a default being used or not if self.sideA_a_ratio is None and self.sideA_a is not None: self.sideA_a_ratio = self.sideA_a/D elif self.sideA_a_ratio is not None and self.sideA_a is not None and self.sideA_a != D*self.sideA_a_ratio: self.sideA_a_ratio = self.sideA_a/D if self.sideB_a_ratio is None and self.sideB_a is not None: self.sideB_a_ratio = self.sideB_a/D elif self.sideB_a_ratio is not None and self.sideB_a is not None and self.sideB_a != D*self.sideB_a_ratio: self.sideB_a_ratio = self.sideB_a/D # Calculate maximum tank height, h_max if self.horizontal: self.h_max = D else: self.h_max = self.L if self.sideA_a: self.h_max += self.sideA_a if self.sideB_a: self.h_max += self.sideB_a # Set maximum height # self.V_total = self.V_from_h(self.h_max) self.V_total, self.V_sideA, self.V_sideB, self.V_lateral = V_tank( D=D, L=self.L, sideA=self.sideA, sideB=self.sideB, sideA_a=self.sideA_a, sideB_a=self.sideB_a, sideA_f=self.sideA_f, sideA_k=self.sideA_k, sideB_f=self.sideB_f, sideB_k=self.sideB_k, horizontal=self.horizontal) # Set surface areas self.A, self.A_sideA, self.A_sideB, self.A_lateral = SA_tank( D=D, L=self.L, sideA=self.sideA, sideB=self.sideB, sideA_a=self.sideA_a, sideB_a=self.sideB_a, sideA_f=self.sideA_f, sideA_k=self.sideA_k, sideB_f=self.sideB_f, sideB_k=self.sideB_k) A_circular_plate = 0.25*pi*D*D self.A_sideA_extra = self.A_sideA - A_circular_plate self.A_sideB_extra = self.A_sideB - A_circular_plate @staticmethod def from_two_specs(spec0, spec1, spec0_name='V', spec1_name='A_cross', h=None, horizontal=True, sideA=None, sideB=None, sideA_a=None, sideB_a=None, sideA_f=None, sideA_k=None, sideB_f=None, sideB_k=None, sideA_a_ratio=None, sideB_a_ratio=None): r'''Method to create a new tank instance according to two specifications which are not direct geometry parameters. The allowable options are 'V', 'SA', 'V_partial', 'SA_partial', and 'A_cross', the later three of which require `h` to be specified. Parameters ---------- spec0 : float Goal for `spec0_name`, [-] spec1 : float Goal for `spec1_name`, [-] spec0_name : str One of 'V', 'SA', 'V_partial', 'SA_partial', and 'A_cross' [-] spec1_name : str One of 'V', 'SA', 'V_partial', 'SA_partial', and 'A_cross' [-] h : float Height at which to calculate the specs, [m] horizontal : bool, optional Whether or not the tank is a horizontal or vertical tank sideA : string, optional The left (or bottom for vertical) head of the tank's type; one of [None, 'conical', 'ellipsoidal', 'torispherical', 'guppy', 'spherical', 'same']. sideB : string, optional The right (or top for vertical) head of the tank's type; one of [None, 'conical', 'ellipsoidal', 'torispherical', 'guppy', 'spherical', 'same']. sideA_a : float, optional The distance the head as specified by sideA extends down or to the left from the main cylindrical section, [m] sideB_a : float, optional The distance the head as specified by sideB extends up or to the right from the main cylindrical section, [m] sideA_f : float, optional Dimensionless dish-radius parameter for side A; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] sideA_k : float, optional Dimensionless knuckle-radius parameter for side A; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] sideB_f : float, optional Dimensionless dish-radius parameter for side B; also commonly given as the product of `f` and `D` (`fD`), which is called dish radius and has units of length, [-] sideB_k : float, optional Dimensionless knuckle-radius parameter for side B; also commonly given as the product of `k` and `D` (`kD`), which is called the knuckle radius and has units of length, [-] Returns ------- TANK : TANK Tank object at solved specifications, [-] Notes ----- Limited testing has been done on this method. The bounds are D between 0.1 mm and 10 km, with L_D ratios of 1e-4 to 1e4. ''' args = (spec0, spec1, spec0_name, spec1_name, h, horizontal, sideA, sideB, sideA_a, sideB_a, sideA_f, sideA_k, sideB_f, sideB_k, sideA_a_ratio, sideB_a_ratio) new_f, translate_into, translate_outof = translate_bound_func(tank_from_two_specs_err, bounds=[(1e-4, 1e4), (1e-4, 1e4)]) # Diameter and length/diameter as iteration variables guess = translate_into([1.0, 3.0]) from scipy.optimize import fsolve ans = fsolve(new_f, guess, args=args, xtol=1e-10, factor=.1) val0, val1 = translate_outof(ans) return TANK(D=float(val0), L_over_D=float(val1), horizontal=horizontal, sideA=sideA, sideB=sideB, sideA_a=sideA_a, sideB_a=sideB_a, sideA_f=sideA_f, sideA_k=sideA_k, sideB_f=sideB_f, sideB_k=sideB_k, sideA_a_ratio=sideA_a_ratio, sideB_a_ratio=sideB_a_ratio,) def add_thickness(self, thickness, sideA_thickness=None, sideB_thickness=None): r'''Method to create a new tank instance with the same parameters as itself, except with an added thickness to it. This is useful to obtain ex. the inside of a tank and the outside; their different in volumes is the volume of the shell, and could be used to determine weight. Parameters ---------- thickness : float Thickness to add to the tank diameter, [m] sideA_thickness : float, optional The thickness to add to the sideA head; if not specified, it will be `thickness`, [m] sideB_thickness : float, optional The thickness to add to the sideB head; if not specified, it will be `thickness`, [m] Returns ------- TANK : TANK Tank object, [-] Notes ----- Be careful not to specify a negative thickness larger than the heads' lengths, or the head will become concave! The same applies to adding a thickness to convex heads - they can become convex. ''' kwargs = dict(D=self.D, L=self.L, horizontal=self.horizontal, sideA=self.sideA, sideB=self.sideB, sideA_a=self.sideA_a, sideB_a=self.sideB_a, sideA_f=self.sideA_f, sideA_k=self.sideA_k, sideB_f=self.sideB_f, sideB_k=self.sideB_k) if sideA_thickness is None: sideA_thickness = thickness if sideB_thickness is None: sideB_thickness = thickness # Do not transfer a_ratios or volume or L_over_D kwargs['D'] += 2.0*thickness kwargs['L'] += sideA_thickness + sideB_thickness # For torispherical vessels, the heads are defined from the `f` and `k` # parameters which are already functions of diameter, and so will be # fixed automatically; if the `a` parameters are specified they would # not be corrected if self.sideA != 'torispherical': kwargs['sideA_a'] += sideA_thickness else: del kwargs['sideA_a'] if self.sideB != 'torispherical': kwargs['sideB_a'] += sideB_thickness else: del kwargs['sideB_a'] return TANK(**kwargs) def SA_from_h(self, h, method='full'): r'''Method to calculate the volume of liquid in a fully defined tank given a specified height `h`. `h` must be under the maximum height. Parameters ---------- h : float Height specified, [m] method : str, optional 'full' (calculated rigorously) ; nothing else is implemented Returns ------- SA : float Surface area of liquid in the tank up to the specified height, [m^2] Notes ----- ''' if method == 'full': return SA_from_h(h, self.D, self.L, self.horizontal, self.sideA, self.sideB, self.sideA_a, self.sideB_a, self.sideA_f, self.sideA_k, self.sideB_f, self.sideB_k) else: raise ValueError("Allowable methods are 'full' .") def V_from_h(self, h, method='full'): r'''Method to calculate the volume of liquid in a fully defined tank given a specified height `h`. `h` must be under the maximum height. If the method is 'chebyshev', and the coefficients have not yet been calculated, they are created by calling `set_chebyshev_approximators`. Parameters ---------- h : float Height specified, [m] method : str One of 'full' (calculated rigorously) or 'chebyshev' Returns ------- V : float Volume of liquid in the tank up to the specified height, [m^3] Notes ----- ''' if method == 'full': return V_from_h(h, self.D, self.L, self.horizontal, self.sideA, self.sideB, self.sideA_a, self.sideB_a, self.sideA_f, self.sideA_k, self.sideB_f, self.sideB_k) elif method == 'chebyshev': if not self.chebyshev: self.set_chebyshev_approximators() return self.V_from_h_cheb(h) else: raise ValueError("Allowable methods are 'full' or 'chebyshev'.") def h_from_V(self, V, method='spline'): r'''Method to calculate the height of liquid in a fully defined tank given a specified volume of liquid in it `V`. `V` must be under the maximum volume. If the method is 'spline', and the interpolation table is not yet defined, creates it by calling the method set_table. If the method is 'chebyshev', and the coefficients have not yet been calculated, they are created by calling `set_chebyshev_approximators`. Parameters ---------- V : float Volume of liquid in the tank up to the desired height, [m^3] method : str One of 'spline', 'chebyshev', or 'brenth' Returns ------- h : float Height of liquid at which the volume is as desired, [m] ''' if method == 'spline': try: if not self.table: self.set_table() return float(self.interp_h_from_V(V)) except: # Missing scipy return self.h_from_V(V, 'brenth') elif method == 'chebyshev': if not self.chebyshev: self.set_chebyshev_approximators() return self.h_from_V_cheb(V) elif method == 'brenth': to_solve = lambda h : self.V_from_h(h, method='full') - V return brenth(to_solve, self.h_max, 0) else: raise ValueError("Allowable methods are 'full' or 'chebyshev', " "or 'brenth'.") def A_cross_sectional(self, h, method='full'): r'''Method to calculate the cross-sectional liquid surface area from which gas can evolve in a fully defined tank given a specified height `h`. `h` must be under the maximum height. This is calculated by numeric differentiation for most cases. Parameters ---------- h : float Height specified, [m] method : str, optional 'full' (calculated rigorously) or 'chebyshev', [-] Returns ------- A_cross : float Surface area of liquid in the tank up to the specified height, [m^2] Notes ----- ''' # The derivative will give bad values in some cases, when right up against boundaries # Analytical formulations can be done, but will be lots of code return derivative(lambda h: self.V_from_h(h), h, dx=1e-7*h, order=3, n=1) def set_table(self, n=100, dx=None): r'''Method to set an interpolation table of liquids levels versus volumes in the tank, for a fully defined tank. Normally run by the h_from_V method, this may be run prior to its use with a custom specification. Either the number of points on the table, or the vertical distance between steps may be specified. Parameters ---------- n : float, optional Number of points in the interpolation table, [-] dx : float, optional Vertical distance between steps in the interpolation table, [m] ''' if dx: self.heights = linspace(0.0, self.h_max, int(self.h_max/dx)+1) else: self.heights = linspace(0.0, self.h_max, n) self.volumes = [self.V_from_h(h) for h in self.heights] from scipy.interpolate import UnivariateSpline self.interp_h_from_V = UnivariateSpline(self.volumes, self.heights, ext=3, s=0.0) self.table = True def set_chebyshev_approximators(self, deg_forward=50, deg_backwards=200): r'''Method to derive and set coefficients for chebyshev polynomial function approximation of the height-volume and volume-height relationship. A single set of chebyshev coefficients is used for the entire height- volume and volume-height relationships respectively. The forward relationship, `V_from_h`, requires far fewer coefficients in its fit than the reverse to obtain the same relative accuracy. Optionally, deg_forward or deg_backwards can be set to None to try to automatically fit the series to machine precision. Parameters ---------- deg_forward : int, optional The degree of the chebyshev polynomial to be created for the `V_from_h` curve, [-] deg_backwards : int, optional The degree of the chebyshev polynomial to be created for the `h_from_V` curve, [-] ''' from fluids.optional.pychebfun import Chebfun import numpy as np to_fit = lambda h: self.V_from_h(h, 'full') # These high-degree polynomials cannot safety be evaluated using Horner's methods # chebval is 2.5x as slow but 100% required; around 40 coefficients results are junk self.c_forward = Chebfun.from_function(np.vectorize(to_fit), [0.0, self.h_max], N=deg_forward).coefficients().tolist() self.V_from_h_cheb = lambda x : chebval((2.0*x-self.h_max)/(self.h_max), self.c_forward) to_fit = lambda h: self.h_from_V(h, 'brenth') self.c_backward = Chebfun.from_function(np.vectorize(to_fit), [0.0, self.V_total], N=deg_backwards).coefficients().tolist() self.h_from_V_cheb = lambda x : chebval((2.0*x-self.V_total)/(self.V_total), self.c_backward) self.chebyshev = True def _V_solver_error(self, Vtarget, D, L, horizontal, sideA, sideB, sideA_a, sideB_a, sideA_f, sideA_k, sideB_f, sideB_k, sideA_a_ratio, sideB_a_ratio): """Function which uses only the variables given, and the TANK class itself, to determine how far from the desired volume, Vtarget, the volume produced by the specified parameters in a new TANK instance is. Should only be used by _solve_tank_for_V method. """ a = TANK(D=float(D), L=float(L), horizontal=horizontal, sideA=sideA, sideB=sideB, sideA_a=sideA_a, sideB_a=sideB_a, sideA_f=sideA_f, sideA_k=sideA_k, sideB_f=sideB_f, sideB_k=sideB_k, sideA_a_ratio=sideA_a_ratio, sideB_a_ratio=sideB_a_ratio) error = (Vtarget - a.V_total) return error def _solve_tank_for_V(self): """Method which is called to solve for tank geometry when a certain volume is specified. Will be called by the __init__ method if V is set. Notes ----- Raises an error if L and either of sideA_a or sideB_a are specified; these can only be set once D is known. Raises an error if more than one of D, L, or L_over_D are specified. Raises an error if the head ratios are not provided. Calculates initial guesses assuming no heads are present, and then uses fsolve to determine the correct dimensions for the tank. Tested, but bugs and limitations are expected here. """ if self.L and (self.sideA_a or self.sideB_a): raise ValueError('Cannot specify head sizes when solving for V') if (self.D and self.L) or (self.D and self.L_over_D) or (self.L and self.L_over_D): raise ValueError('Only one of D, L, or L_over_D can be specified\ when solving for V') if ((self.sideA is not None and (self.sideA_a_ratio is None and self.sideA_a is None) and self.sideA != 'torispherical') or (self.sideB is not None and (self.sideB_a_ratio is None and self.sideB_a is None) and self.sideB != 'torispherical')): raise ValueError('When heads are specified, head parameter ratios are required') if self.D: # Iterate until L is appropriate solve_L = lambda L: self._V_solver_error(self.V, self.D, L, self.horizontal, self.sideA, self.sideB, self.sideA_a, self.sideB_a, self.sideA_f, self.sideA_k, self.sideB_f, self.sideB_k, self.sideA_a_ratio, self.sideB_a_ratio) Lguess = self.V/(pi/4*self.D**2) self.L = float(secant(solve_L, Lguess, xtol=1e-13)) elif self.L: # Iterate until D is appropriate solve_D = lambda D: self._V_solver_error(self.V, D, self.L, self.horizontal, self.sideA, self.sideB, self.sideA_a, self.sideB_a, self.sideA_f, self.sideA_k, self.sideB_f, self.sideB_k, self.sideA_a_ratio, self.sideB_a_ratio) Dguess = sqrt(4*self.V/pi/self.L) self.D = float(secant(solve_D, Dguess, xtol=1e-13)) else: # Use L_over_D until L and D are appropriate Lguess = (4*self.V*self.L_over_D**2/pi)**(1/3.) solve_L_D = lambda L: self._V_solver_error(self.V, L/self.L_over_D, L, self.horizontal, self.sideA, self.sideB, self.sideA_a, self.sideB_a, self.sideA_f, self.sideA_k, self.sideB_f, self.sideB_k, self.sideA_a_ratio, self.sideB_a_ratio) self.L = float(secant(solve_L_D, Lguess, xtol=1e-13)) self.D = self.L/self.L_over_D class HelicalCoil(object): r'''Class representing a helical coiled tube, as are found in many heated tanks and some small nuclear reactors. All parameters are also attributes. One set of the following parameters is required; inner tube diameter is optional. * Tube outer diameter, coil outer diameter, pitch, number of coil turns * Tube outer diameter, coil outer diameter, pitch, height * Tube outer diameter, coil outer diameter, number of coil turns, height Parameters ---------- Dt : float Outer diameter of the tube wound to make up the helical spiral, [m] Do : float Diameter of the spiral as measured from the center of the coil on one side to the center of the coil on the other side, [m] Do_total : float, optional Diameter of the spiral as measured from one edge of the tube to the other edge; equal to Do + Dt; either `Do` or `Do_total` may be specified and the other will be calculated [m] pitch : float, optional Height change from one coil to the next as measured from the middles of the tube, [m] H : float, optional Height of the spiral, as measured from the middle of the bottom of the tube to the middle of the top of the tube, [m] H_total : float, optional Height of the spiral as measured from one edge of the tube to the other edge; equal to `H_total` + `Dt`; either may be specified and the other will be calculated [m] N : float, optional Number of coil turns; may be specified along with `pitch` instead of specifying `H` or `H_total`, [-] Di : float, optional Inner diameter of the tube; if specified, inside and annulus properties will be calculated, [m] Attributes ---------- tube_circumference : float Circumference of the tube as measured though its center, not inner or outer edges; :math:`C = \pi D_o`, [m] tube_length : float Length of tube used to make the helical coil; :math:`L = \sqrt{(\pi D_o\cdot N)^2 + H^2}`, [m] surface_area : float Surface area of the outer surface of the helical coil; :math:`A_t = \pi D_t L`, [m^2] inner_surface_area : float Surface area of the inner surface of the helical coil; calculated if `Di` is supplied; :math:`A_{inside} = \pi D_i L`, [m^2] inlet_area : float Area of the inlet to the helical coil; calculated if `Di` is supplied; :math:`A_{inlet} = \frac{\pi}{4} D_i^2`, [m^2] inner_volume : float Volume of the tube as would be filled by a fluid, useful for weight calculations; calculated if `Di` is supplied; :math:`V_{inside} = A_i L`, [m^3] annulus_area : float Area of the annulus (wall of the pipe); calculated if `Di` is supplied; :math:`A_a = \frac{\pi}{4} (D_t^2 - D_i^2)`, [m^2] annulus_volume : float Volume of the annulus (wall of the pipe); calculated if `Di` is supplied, useful for weight calculations; :math:`V_a = A_a L`, [m^3] total_volume : float Total volume occupied by the pipe and the fluid inside it; :math:`V = D_t L`, [m^3] helix_angle : float Angle between the pitch and coil diameter; used in some calculations; :math:`\alpha = \arctan \left(\frac{p_t}{\pi D_o}\right)`, [radians] curvature : float Coil curvature, useful in some calculations; :math:`\delta = \frac{D_t}{D_o[1 + 4\pi^2 \tan^2(\alpha)]}`, [-] Notes ----- `Do` must be larger than `Dt`. Examples -------- >>> C1 = HelicalCoil(Do=30, H=20, pitch=5, Dt=2) >>> C1.N, C1.tube_length, C1.surface_area (4.0, 377.5212621504738, 2372.0360474917497) Same coil, with the inputs one would physically measure from the coil, and a specified inlet diameter: >>> C1 = HelicalCoil(Do_total=32, H_total=22, pitch=5, Dt=2, Di=1.8) >>> C1.N, C1.tube_length, C1.surface_area (4.0, 377.5212621504738, 2372.0360474917497) >>> C1.inner_surface_area, C1.inlet_area, C1.inner_volume, C1.total_volume, C1.annulus_volume (2134.832442742575, 2.5446900494077327, 960.6745992341587, 1186.0180237458749, 225.3434245117162) References ---------- .. [1] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. ''' def __repr__(self): # pragma : no cover s = ' self.Do: raise ValueError('Tube diameter is larger than helix outer diameter - not feasible.') self.tube_circumference = pi*self.Do self.tube_length = sqrt((self.tube_circumference*self.N)**2 + self.H**2) self.surface_area = self.tube_length*pi*self.Dt #print(pi*self.tube_length*self.Dt) == surface_area self.helix_angle = atan(self.pitch/(pi*self.Do)) self.curvature = self.Dt/self.Do/(1. + 4*pi**2*tan(self.helix_angle)**2) #print(self.N*pi*self.Do/cos(self.helix_angle)) # Confirms the length with another formula self.total_inlet_area = pi/4.*self.Dt**2 self.total_volume = self.total_inlet_area*self.tube_length if Di is not None: self.Di = Di self.inner_surface_area = self.tube_length*pi*self.Di self.inlet_area = pi/4.*self.Di**2 self.inner_volume = self.inlet_area*self.tube_length self.annulus_area = self.total_inlet_area - self.inlet_area self.annulus_volume = self.total_volume - self.inner_volume def plate_enlargement_factor(amplitude, wavelength): r'''Calculates the enhancement factor of the sinusoidal waves of the plate heat exchanger. This is the multiplier for the flat plate area to obtain the actual area available for heat transfer. Obtained from the following integral: .. math:: \phi = \frac{\text{Effective area}}{\text{Projected area}} = \frac{\int_0^\lambda\sqrt{1 + \left(\frac{\gamma\pi}{2}\right)^2 \cos^2\left(\frac{2\pi}{\lambda}x\right)}dx}{\lambda} .. math:: \gamma = \frac{4a}{\lambda} The solution to the integral is: .. math:: \phi = \frac{2E\left(\frac{-4a^2\pi^2}{\lambda^2}\right)}{\pi} where E is the complete elliptic integral of the second kind, calculated with SciPy. Parameters ---------- amplitude : float Half the height of the wave of the ridges, [m] wavelength : float Distance between the bottoms of two of the ridges (sometimes called pitch), [m] Returns ------- plate_enlargement_factor : float The extra surface area multiplier as compared to a flat plate caused the corrugations, [-] Notes ----- This is the exact analytical integral, obtained via Mathematica, Maple, and quite a bit of trial and error. It is confirmed via numerical integration. The expression normally given is an approximation as follows: .. math:: \phi = \frac{1}{6}\left(1+\sqrt{1+A^2} + 4\sqrt{1+A^2/2}\right) A = \frac{2\pi a}{\lambda} Most plate heat exchangers approximate a sinusoidal geometry only. Examples -------- >>> plate_enlargement_factor(amplitude=5E-4, wavelength=3.7E-3) 1.1611862034509677 ''' b = 2.*amplitude return 2.*float(ellipe(-b*b*pi*pi/(wavelength*wavelength)))/pi class PlateExchanger(object): r'''Class representing a plate heat exchanger with sinusoidal ridges. All parameters are also attributes. Parameters ---------- amplitude : float Half the height of the wave of the ridges, [m] wavelength : float Distance between the bottoms of two of the ridges (sometimes called pitch), [m] chevron_angle : float, optional Angle of the plate corrugations with respect to the vertical axis (the direction of flow if the plates were straight), between 0 and 90, [degrees] chevron_angles : tuple(2), optional Many plate exchangers use two alternating patterns; for those cases provide tuple of the two angles for that situation and the argument `chevron_angle` is ignored, [degrees] width : float, optional Width of the plates in the heat exchanger, between the gaskets, [m] length : float, optional Length of the heat exchanger as measured from one port to the other, excluding the diameter of the ports themselves (little useful heat transfer happens there), [m] thickness : float, optional Thickness of the metal making up the plates, [m] d_port : float, optional The diameter of the ports in the plates, [m] plates : int, optional The number of plates in the heat exchanger, including the two not used for heat transfer at the beginning and end [-] Attributes ---------- chevron_angles : tuple(2) The two specified angles (repeated value if only one specified), [degrees] chevron_angle : float The averaged angle of the chevrons, [degrees] inclination_angle : float 90 - `chevron_angle`, used in many publications instead of `chevron_angle`, [degrees] plate_corrugation_aspect_ratio : float The aspect ratio of the corrugations :math:`\gamma = \frac{4a}{\lambda}`, [-] plate_enlargement_factor : float The extra surface area multiplier as compared to a flat plate caused the corrugations, [-] D_eq : float Equivalent diameter of the channels, :math:`D_{eq} = 4a` [m] D_hydraulic : float Hydraulic diameter of the channels, :math:`D_{hyd} = \frac{4a}{\phi}` [m] length_port : float Port center to port center along the direction of flow, [m] A_plate_surface : float The surface area of one plate in the heat exchanger, including the extra due to corrugations (excluding the bit between the ports), :math:`A_p = L\cdot W\cdot \phi` [m^2] A_heat_transfer : float The total surface area available for heat transfer in the exchanger, the multiple of `A_plate_surface` by the number of plates after removing the two on the edges, [m^2] A_channel_flow : float The area for the fluid to flow in one channel, :math:`W\cdot b` [m^2] channels : int The number of plates minus one, [-] channels_per_fluid : int Half the number of total channels, [-] Notes ----- Only wavelength and amplitude are required as inputs to this function. Examples -------- >>> PlateExchanger(amplitude=5E-4, wavelength=3.7E-3, length=1.2, width=.3, ... d_port=.05, plates=51) References ---------- .. [1] Amalfi, Raffaele L., Farzad Vakili-Farahani, and John R. Thome. "Flow Boiling and Frictional Pressure Gradients in Plate Heat Exchangers. Part 1: Review and Experimental Database." International Journal of Refrigeration 61 (January 2016): 166-84. doi:10.1016/j.ijrefrig.2015.07.010. ''' def __repr__(self): # pragma : no cover s = '>> PFE = RectangularFinExchanger(0.03, 0.001, 0.012) >>> PFE.Dh 0.01595 References ---------- .. [1] Yang, Yujie, and Yanzhong Li. "General Prediction of the Thermal Hydraulic Performance for Plate-Fin Heat Exchanger with Offset Strip Fins." International Journal of Heat and Mass Transfer 78 (November 1, 2014): 860-70. doi:10.1016/j.ijheatmasstransfer.2014.07.060. .. [2] Sheik Ismail, L., R. Velraj, and C. Ranganayakulu. "Studies on Pumping Power in Terms of Pressure Drop and Heat Transfer Characteristics of Compact Plate-Fin Heat Exchangers-A Review." Renewable and Sustainable Energy Reviews 14, no. 1 (January 2010): 478-85. doi:10.1016/j.rser.2009.06.033. ''' def __init__(self, fin_height, fin_thickness, fin_spacing, length=None, width=None, layers=None, plate_thickness=None, flow='crossflow'): self.h = self.fin_height = fin_height # including 2x thickness self.t = self.fin_thickness = fin_thickness self.s = self.fin_spacing = fin_spacing self.L = self.length = length self.W = self.width = width self.layers = layers self.flow = flow self.plate_thickness = plate_thickness self.channel_height = self.fin_height - self.fin_thickness self.channel_width = self.fin_spacing - self.fin_thickness self.fin_count = 1./self.fin_spacing self.blockage_ratio = (self.s*self.h - self.s*self.t - (self.h-self.t)*self.t)/(self.s*self.h) self.A_channel = (self.s-self.t)*(self.h-self.t) self.P_channel = 2*(self.s-self.t) + 2*(self.h-self.t) self.Dh = 4*self.A_channel/self.P_channel self.set_overall_geometry() def set_overall_geometry(self): if self.plate_thickness: self.layer_thickness = self.plate_thickness + self.fin_height if self.length and self.width: self.layer_fin_count = round(self.fin_count*self.width, 0) if hasattr(self, 'SA_fin'): self.A_HX_layer = self.layer_fin_count*self.SA_fin*self.length else: self.A_HX_layer = self.P_channel*self.length*self.layer_fin_count if self.layers: self.A_HX = self.layers*self.A_HX_layer if self.plate_thickness: self.height = self.layer_thickness*self.layers + self.plate_thickness self.volume = (self.length*self.width*self.height) self.A_specific_HX = self.A_HX/self.volume class RectangularOffsetStripFinExchanger(RectangularFinExchanger): def __init__(self, fin_length, fin_height, fin_thickness, fin_spacing, length=None, width=None, layers=None, plate_thickness=None, flow='crossflow'): self.l = self.fin_length = fin_length self.h = self.fin_height = fin_height self.t = self.fin_thickness = fin_thickness self.s = self.fin_spacing = fin_spacing self.blockage_ratio = self.omega = 2*self.t/self.s*(1. - self.t/self.h) + self.t/self.h*(1 - 2*self.t/self.s) # Kim blockage ratio beta self.blockage_ratio_Kim = self.t/self.h + self.t/self.s - self.t**2/(self.h*self.s) # Definitions as in the paper with the most common correlation self.alpha = self.s/self.h # "General prediction" uses t/h here self.delta = self.t/self.l self.gamma = self.t/self.s # free flow area self.A_channel = (self.h - self.t)*(self.s - self.t) self.A = 2.*(self.l*(self.h-self.t) + self.l*(self.s-self.t) + self.t*(self.h-self.t)) + self.t*(self.s-2*self.t) self.Dh = 4.*self.l*self.A_channel/self.A # not the standard definition self.P_channel = 2*(self.s-self.t) + 2*(self.h-self.t) self.Dh_Kays_London = 4*self.A_channel/(2*(self.h -self.t)+ 2*(self.s -self.t)) # Does not consider the fronts of backs of the fins, only the 2d shape self.Dh_Joshi_Webb = 2*self.l*(self.h - self.t)*(self.s - 2*self.t)/(self.l*(self.h-self.t) + self.l*(self.s - self.t) + self.t*(self.h - self.t)) self.L = self.length = length self.W = self.width = width self.layers = layers self.flow = flow self.plate_thickness = plate_thickness self.fin_count = 1./self.fin_spacing self.set_overall_geometry() class HyperbolicCoolingTower(object): r'''Class representing the geometry of a hyperbolic cooling tower, as used in many industries especially the poewr industry. All parameters are also attributes. `H_inlet`, `D_outlet`, and `H_outlet` are always required. Additionally, one set of the following parameters is required; `H_support`, `D_support`, `n_support`, and `inlet_rounding` are all optional as well. * Inlet diameter * Inlet diameter and throat diameter * Inlet diameter and throat height * Inlet diameter, throat diameter, and throat height * Base diameter, throat diameter, and throat height If the inlet diameter is provided but the throat diameter and/or the throat height are missing, two heuristics are used to estimate them (to avoid these heuristics simply specify the values): * Assume the throat elevation is 2/3 the elevation of the tower. * Assume the throat diameter is 63% the diameter of the inlet. Parameters ---------- H_inlet : float Height of the inlet zone of the cooling tower (also called rain zone), [m] D_outlet : float The inside diameter of the cooling tower outlet (top of the tower; the elevation the concrete section ends), [m] H_outlet : float The height of the cooling tower outlet (top of the tower;the elevation the concrete section ends), [m] D_inlet : float, optional The inside diameter of the cooling tower inlet at the elevation the concrete section begins, [m] D_base : float, optional The diameter of the cooling tower at the very base of the tower (the bottom of the inlet zone, at the elevation of the ground), [m] D_throat : float, optional The diameter of the cooling tower at its minimum section, called its throat; where the two hyperbolas meet, [m] h_throat : float, optional The elevation of the cooling tower's throat (its minimum section; where the two hyperbolas meet), [m] inlet_rounding : float, optional Radius of an optional rounded protrusion from the lip of the cooling tower shell base, which curves upwards from the lip (used to reduce the dead zone area rather than having a flat lip), [m] H_support : float, optional The height of each support column, [m] D_support : float, optional The diameter of each support column, [m] n_support : int, optional The number of support columns of the cooling tower, [m] Attributes ---------- b_lower : float The `b` parameter in the hyperbolic equation for the lower section of the cooling tower, [m] b_upper : float The `b` parameter in the hyperbolic equation for the upper section of the cooling tower, [m] Notes ----- Note there are two hyperbolas in a hyperbolic cooling tower - one under the throat and one above it; they are not necessarily the same. A hyperbolic cooling tower is not the absolute optimal design, but is is close. The optimality is determined by the amount of material required to build it while maintaining its rigidity. For thermal design purposes, a hyperbolic model covers any minor variation quite well. Examples -------- >>> ct = HyperbolicCoolingTower(D_outlet=89.0, H_outlet=200, D_inlet=136.18, H_inlet=14.5) >>> ct >>> ct.diameter(5) 142.84514486126062 References ---------- .. [1] Chen, W. F., and E. M. Lui, eds. Handbook of Structural Engineering, Second Edition. Boca Raton, Fla: CRC Press, 2005. .. [2] Ansary, A. M. El, A. A. El Damatty, and A. O. Nassef. Optimum Shape and Design of Cooling Towers, 2011. ''' def __repr__(self): # pragma : no cover s = '''''' s = s%(self.D_inlet, self.D_outlet, self.H_inlet, self.H_outlet, self.D_throat, self.H_throat, self.D_base) return s def __init__(self, H_inlet, D_outlet, H_outlet, D_inlet=None, D_base=None, D_throat=None, H_throat=None, H_support=None, D_support=None, n_support=None, inlet_rounding=None): self.D_outlet = D_outlet self.H_inlet = H_inlet self.H_outlet = H_outlet if H_throat is None: H_throat = 2/3.0*H_outlet self.H_throat = H_throat if D_throat is None: if D_inlet is not None: D_throat = 0.63*D_inlet else: raise ValueError('Provide either `D_throat`, or `D_inlet` so it may be estimated.') self.D_throat = D_throat if D_inlet is None and D_base is None: raise ValueError('Need `D_inlet` or `D_base`') if D_base is not None: b = self.D_throat*self.H_throat/sqrt(D_base**2 - self.D_throat**2) D_inlet = 2*self.D_throat*sqrt((self.H_throat-H_inlet)**2 + b**2)/(2*b) elif D_inlet is not None: b = self.D_throat*(self.H_throat-H_inlet)/sqrt(D_inlet**2 - self.D_throat**2) D_base = 2*self.D_throat*sqrt(self.H_throat**2 + b**2)/(2*b) self.D_inlet = D_inlet self.D_base = D_base self.b_lower = b # Upper b parameter self.b_upper = self.D_throat*(self.H_outlet - self.H_throat)/sqrt((self.D_outlet)**2 - self.D_throat**2) # May or may not be specified self.H_support = H_support self.D_support = D_support self.n_support = n_support self.inlet_rounding = inlet_rounding def plot(self, pts=100): # pragma: no cover import matplotlib.pyplot as plt Zs = linspace(0, self.H_outlet, pts) Rs = [self.diameter(Z)*0.5 for Z in Zs] plt.plot(Zs, Rs) plt.plot(Zs, [-v for v in Rs]) plt.show() def diameter(self, H): r'''Calculates cooling tower diameter at a specified height, using the formulas for either hyperbola, depending on the height specified. .. math:: D = D_{throat}\frac{\sqrt{H^2 + b^2}}{b} The value of `H` and `b` used in the above equation is as follows: * `H_throat` - H and `b_lower` if under the throat * `H` - `H_throat` and `b_upper`, if above the throat Parameters ---------- H : float Height at which to calculate the cooling tower diameter, [m] Returns ------- D : float Diameter of the cooling tower at the specified height, [m] ''' # Compute the diameter at H if H <= self.H_throat: # Height relative to throat height H = self.H_throat - H b = self.b_lower else: H = H - self.H_throat b = self.b_upper R = self.D_throat*sqrt(H*H + b*b)/(2.0*b) return R*2.0 class AirCooledExchanger(object): r'''Class representing the geometry of an air cooled heat exchanger with one or more tube bays, fans, or bundles. All parameters are also attributes. The minimum information required to describe an air cooler is as follows: * `tube_rows` * `tube_passes` * `tubes_per_row` * `tube_length` * `tube_diameter` * `fin_thickness` Two of `angle`, `pitch`, `pitch_parallel`, and `pitch_normal` (`pitch_ratio` may take the place of `pitch`) Either `fin_diameter` or `fin_height`. Either `fin_density` or `fin_interval`. Parameters ---------- tube_rows : int Number of tube rows per bundle, [-] tube_passes : int Number of tube passes (times the fluid travels across one tube length), [-] tubes_per_row : float Number of tubes per row per bundle, [-] tube_length : float Total length of the tube bundle tubes, [m] tube_diameter : float Diameter of the bare tube, [m] fin_thickness : float Thickness of the fins, [m] angle : float, optional Angle of the tube layout, [degrees] pitch : float, optional Shortest distance between tube centers; defined in relation to the flow direction only, [m] pitch_parallel : float, optional Distance between tube center along a line parallel to the flow; has been called `longitudinal` pitch, `pp`, `s2`, `SL`, and `p2`, [m] pitch_normal : float, optional Distance between tube centers in a line 90° to the line of flow; has been called the `transverse` pitch, `pn`, `s1`, `ST`, and `p1`, [m] pitch_ratio : float, optional Ratio of the pitch to bare tube diameter, [-] fin_diameter : float, optional Outer diameter of each tube after including the fin on both sides, [m] fin_height : float, optional Height above bare tube of the tube fins, [m] fin_density : float, optional Number of fins per meter of tube, [1/m] fin_interval : float, optional Space between each fin, including the thickness of one fin at its base, [m] parallel_bays : int, optional Number of bays in the unit, [-] bundles_per_bay : int, optional Number of tube bundles per bay, [-] fans_per_bay : int, optional Number of fans per bay, [-] corbels : bool, optional Whether or not the air cooler has corbels, which increase the air velocity by adding half a tube to the sides for the case of non-rectangular tube layouts, [-] tube_thickness : float, optional Thickness of the bare metal tubes, [m] fan_diameter : float, optional Diameter of air cooler fan, [m] Attributes ---------- bare_length : float Length of bare tube between two fins :math:`\text{bare length} = \text{fin interval} - t_{fin}`, [m] tubes_per_bundle : float Total number of tubes per bundle :math:`N_{tubes/bundle} = N_{tubes/row} \cdot N_{rows}`, [-] tubes_per_bay : float Total number of tubes per bay :math:`N_{tubes/bay} = N_{tubes/bundle} \cdot N_{bundles/bay}`, [-] tubes : float Total number of tubes in all bundles in all bays combined :math:`N_{tubes} = N_{tubes/bay} \cdot N_{bays}`, [-] pitch_diagonal : float Distance between tube centers in a diagonal line between one normal tube and one parallel tube; :math:`s_D = \left[s_L^2 + \left(\frac{s_T}{2}\right)^2\right]^{0.5}`, [m] A_bare_tube_per_tube : float Area of the bare tube including the portion hidden by the fin per tube :math:`A_{bare,total/tube} = \pi D_{tube} L_{tube}`, [m^2] A_bare_tube_per_row : float Area of the bare tube including the portion hidden by the fin per tube row :math:`A_{bare,total/row} = \pi D_{tube} L_{tube} N_{tubes/row}`, [m^2] A_bare_tube_per_bundle : float Area of the bare tube including the portion hidden by the fin per bundle :math:`A_{bare,total/bundle} = \pi D_{tube} L_{tube} N_{tubes/bundle}`, [m^2] A_bare_tube_per_bay : float Area of the bare tube including the portion hidden by the fin per bay :math:`A_{bare,total/bay} = \pi D_{tube} L_{tube} N_{tubes/bay}`, [m^2] A_bare_tube : float Area of the bare tube including the portion hidden by the fin per in all bundles and bays combined :math:`A_{bare,total} = \pi D_{tube} L_{tube} N_{tubes}`, [m^2] A_tube_showing_per_tube : float Area of the bare tube which is exposed per tube :math:`A_{bare, showing/tube} = \pi D_{tube} L_{tube} \left(1 - \frac{t_{fin}} {\text{fin interval}} \right)`, [m^2] A_tube_showing_per_row : float Area of the bare tube which is exposed per tube row, [m^2] A_tube_showing_per_bundle : float Area of the bare tube which is exposed per bundle, [m^2] A_tube_showing_per_bay : float Area of the bare tube which is exposed per bay, [m^2] A_tube_showing : float Area of the bare tube which is exposed in all bundles and bays combined, [m^2] A_per_fin : float Surface area per fin :math:`A_{fin} = 2 \frac{\pi}{4} (D_{fin}^2 - D_{tube}^2) + \pi D_{fin} t_{fin}`, [m^2] A_fin_per_tube : float Surface area of all fins per tube :math:`A_{fin/tube} = N_{fins/m} L_{tube} A_{fin}`, [m^2] A_fin_per_row : float Surface area of all fins per row, [m^2] A_fin_per_bundle : float Surface area of all fins per bundle, [m^2] A_fin_per_bay : float Surface area of all fins per bay, [m^2] A_fin : float Surface area of all fins in all bundles and bays combined, [m^2] A_per_tube : float Surface area of combined finned and non-fined area exposed for heat transfer per tube :math:`A_{tube} = A_{bare, showing/tube} + A_{fin/tube}`, [m^2] A_per_row : float Surface area of combined finned and non-finned area exposed for heat transfer per tube row, [m^2] A_per_bundle : float Surface area of combined finned and non-finned area exposed for heat transfer per tube bundle, [m^2] A_per_bay : float Surface area of combined finned and non-finned area exposed for heat transfer per bay, [m^2] A : float Surface area of combined finned and non-finned area exposed for heat transfer in all bundles and bays combined, [m^2] A_increase : float Ratio of actual surface area to bare tube surface area :math:`A_{increase} = \frac{A_{tube}}{A_{bare, total/tube}}`, [-] A_tube_flow : float The area for the fluid to flow in one tube, :math:`\pi/4\cdot D_i^2`, [m^2] channels : int The number of tubes the fluid flows through at the inlet header, [-] tube_volume_per_tube : float Fluid volume per tube inside :math:`V_{tube, flow} = \frac{\pi}{4} D_{i}^2 L_{tube}`, [m^3] tube_volume_per_row : float Fluid volume of tubes per row, [m^3] tube_volume_per_bundle : float Fluid volume of tubes per bundle, [m^3] tube_volume_per_bay : float Fluid volume of tubes per bay, [m^3] tube_volume : float Fluid volume of tubes in all bundles and bays combined, [m^3] A_diagonal_per_bundle : float Air flow area along the diagonal plane per bundle :math:`A_d = 2 N_{tubes/row} L_{tube} (P_d - D_{tube} - 2 N_{fins/m} h_{fin} t_{fin}) + A_\text{extra,side}`, [m^2] A_normal_per_bundle : float Air flow area along the normal (transverse) plane; this is normally the minimum flow area, except for some staggered configurations :math:`A_t = N_{tubes/row} L_{tube} (P_t - D_{tube} - 2 N_{fins/m} h_{fin} t_{fin}) + A_\text{extra,side}`, [m^2] A_min_per_bundle : float Minimum air flow area per bundle; this is the characteristic area for velocity calculation in most finned tube convection correlations :math:`A_{min} = min(A_d, A_t)`, [m^2] A_min_per_bay : float Minimum air flow area per bay, [m^2] A_min : float Minimum air flow area, [m^2] A_face_per_bundle : float Face area per bundle :math:`A_{face} = P_{T} (1+N_{tubes/row}) L_{tube}`; if corbels are used, add 0.5 to tubes/row instead of 1, [m^2] A_face_per_bay : float Face area per bay, [m^2] A_face : float Total face area, [m^2] flow_area_contraction_ratio : float Ratio of `A_min` to `A_face`, [-] Notes ----- Examples -------- >>> AC = AirCooledExchanger(tube_rows=4, tube_passes=4, tubes_per_row=56, tube_length=10.9728, ... tube_diameter=1*inch, fin_thickness=0.013*inch, fin_density=10/inch, ... angle=30, pitch=2.5*inch, fin_height=0.625*inch, tube_thickness=0.00338, ... bundles_per_bay=2, parallel_bays=3, corbels=True) References ---------- .. [1] Schlunder, Ernst U, and International Center for Heat and Mass Transfer. Heat Exchanger Design Handbook. Washington: Hemisphere Pub. Corp., 1983. ''' def __repr__(self): s = '' t = '' for k, v in self.__dict__.items(): try: t += '%s=%g, ' %(k, v) except: t += '%s=%s, ' %(k, v) t = t[0:-2] return s%t def __init__(self, tube_rows, tube_passes, tubes_per_row, tube_length, tube_diameter, fin_thickness, angle=None, pitch=None, pitch_parallel=None, pitch_normal=None, pitch_ratio=None, fin_diameter=None, fin_height=None, fin_density=None, fin_interval=None, parallel_bays=1, bundles_per_bay=1, fans_per_bay=1, corbels=False, tube_thickness=None, fan_diameter=None): # TODO: fin types self.tube_rows = tube_rows self.tube_passes = tube_passes self.tubes_per_row = tubes_per_row self.tube_length = tube_length self.tube_diameter = tube_diameter self.fin_thickness = fin_thickness self.fan_diameter = fan_diameter if pitch_ratio is not None: if pitch is not None: pitch = self.tube_diameter*pitch_ratio else: raise ValueError('Specify only one of `pitch_ratio` or `pitch`') angle, pitch, pitch_parallel, pitch_normal = pitch_angle_solver( angle=angle, pitch=pitch, pitch_parallel=pitch_parallel, pitch_normal=pitch_normal) self.angle = angle self.pitch = pitch self.pitch_parallel = pitch_parallel self.pitch_normal = pitch_normal self.pitch_diagonal = sqrt(pitch_parallel**2 + (0.5*pitch_normal)**2) if fin_diameter is None and fin_height is None: raise ValueError('Specify only one of `fin_diameter` or `fin_height`') elif fin_diameter is not None: fin_height = 0.5*(fin_diameter - tube_diameter) elif fin_height is not None: fin_diameter = tube_diameter + 2.0*fin_height self.fin_height = fin_height self.fin_diameter = fin_diameter if fin_density is None and fin_interval is None: raise ValueError('Specify only one of `fin_density` or `fin_interval`') elif fin_density is not None: fin_interval = 1.0/fin_density elif fin_interval is not None: fin_density = 1.0/fin_interval self.fin_interval = fin_interval self.fin_density = fin_density self.parallel_bays = parallel_bays self.bundles_per_bay = bundles_per_bay self.fans_per_bay = fans_per_bay self.corbels = corbels self.tube_thickness = tube_thickness if self.fin_interval: self.bare_length = self.fin_interval - self.fin_thickness else: self.bare_length = None self.tubes_per_bundle = self.tubes_per_row*self.tube_rows self.tubes_per_bay = self.tubes_per_bundle*self.bundles_per_bay self.tubes = self.tubes_per_bay*self.parallel_bays self.A_bare_tube_per_tube = pi*self.tube_diameter*self.tube_length self.A_bare_tube_per_row = self.A_bare_tube_per_tube*self.tubes_per_row self.A_bare_tube_per_bundle = self.A_bare_tube_per_tube*self.tubes_per_bundle self.A_bare_tube_per_bay = self.A_bare_tube_per_tube*self.tubes_per_bay self.A_bare_tube = self.A_bare_tube_per_tube*self.tubes self.A_tube_showing_per_tube = pi*self.tube_diameter*self.tube_length*(1.0 - self.fin_thickness/self.fin_interval) self.A_tube_showing_per_row = self.A_tube_showing_per_tube*self.tubes_per_row self.A_tube_showing_per_bundle = self.A_tube_showing_per_tube*self.tubes_per_bundle self.A_tube_showing_per_bay = self.A_tube_showing_per_tube*self.tubes_per_bay self.A_tube_showing = self.A_tube_showing_per_tube*self.tubes self.A_per_fin = (2.0*pi/4.0*(self.fin_diameter**2 - self.tube_diameter**2) + pi*self.fin_diameter*self.fin_thickness) # pi*D*L(fin) self.A_fin_per_tube = self.fin_density*self.tube_length*self.A_per_fin self.A_fin_per_row = self.A_fin_per_tube*self.tubes_per_row self.A_fin_per_bundle = self.A_fin_per_tube*self.tubes_per_bundle self.A_fin_per_bay = self.A_fin_per_tube*self.tubes_per_bay self.A_fin = self.A_fin_per_tube*self.tubes self.A_per_tube = self.A_tube_showing_per_tube + self.A_fin_per_tube self.A_per_row = self.A_tube_showing_per_row + self.A_fin_per_row self.A_per_bundle = self.A_tube_showing_per_bundle + self.A_fin_per_bundle self.A_per_bay = self.A_tube_showing_per_bay + self.A_fin_per_bay self.A = self.A_tube_showing + self.A_fin self.A_increase = self.A/self.A_bare_tube # TODO A_extra could be calculated based on a fixed width and height of the bay A_extra = 0.0 self.A_diagonal_per_bundle = 2.0*self.tubes_per_row*self.tube_length*(self.pitch_diagonal - self.tube_diameter - 2.0*fin_density*self.fin_height*self.fin_thickness) + A_extra self.A_normal_per_bundle = self.tubes_per_row*self.tube_length*(self.pitch_normal - self.tube_diameter - 2.0*fin_density*self.fin_height*self.fin_thickness) + A_extra self.A_min_per_bundle = min(self.A_diagonal_per_bundle, self.A_normal_per_bundle) self.A_min_per_bay = self.A_min_per_bundle*self.bundles_per_bay self.A_min = self.A_min_per_bay*self.parallel_bays i = 0.5 if self.corbels else 1.0 self.A_face_per_bundle = self.pitch_normal*self.tube_length*(self.tubes_per_row + i) self.A_face_per_bay = self.A_face_per_bundle*self.bundles_per_bay self.A_face = self.A_face_per_bay*self.parallel_bays self.flow_area_contraction_ratio = self.A_min/self.A_face if self.tube_thickness is not None: self.Di = self.tube_diameter - self.tube_thickness*2.0 self.A_tube_flow = pi/4.0*self.Di*self.Di self.tube_volume_per_tube = self.A_tube_flow*self.tube_length self.tube_volume_per_row = self.tube_volume_per_tube*self.tubes_per_row self.tube_volume_per_bundle = self.tube_volume_per_tube*self.tubes_per_bundle self.tube_volume_per_bay = self.tube_volume_per_tube*self.tubes_per_bay self.tube_volume = self.tube_volume_per_tube*self.tubes else: self.Di = None self.A_tube_flow = None self.tube_volume_per_tube = None self.tube_volume_per_row = None self.tube_volume_per_bundle = None self.tube_volume_per_bay = None self.tube_volume = None # TODO: Support different numbers of tube rows per pass - maybe pass # a list of rows per pass to tube_passes? if self.tube_rows % self.tube_passes == 0: self.channels = self.tubes_per_bundle/self.tube_passes else: self.channels = self.tubes_per_row if self.angle == 30: self.pitch_str = 'triangular' self.pitch_class = 'staggered' elif self.angle == 60: self.pitch_str = 'rotated triangular' self.pitch_class = 'staggered' elif self.angle == 45: self.pitch_str = 'rotated square' self.pitch_class = 'in-line' elif self.angle == 90: self.pitch_str = 'square' self.pitch_class = 'in-line' else: self.pitch_str = 'custom' self.pitch_class = 'custom' def pitch_angle_solver(angle=None, pitch=None, pitch_parallel=None, pitch_normal=None): r'''Utility to take any two of `angle`, `pitch`, `pitch_parallel`, and `pitch_normal` and calculate the other two. This is useful for applications with tube banks, as in shell and tube heat exchangers or air coolers and allows for a wider range of user input. .. math:: \text{pitch normal} = \text{pitch} \cdot \sin(\text{angle}) .. math:: \text{pitch parallel} = \text{pitch} \cdot \cos(\text{angle}) Parameters ---------- angle : float, optional The angle of the tube layout, [degrees] pitch : float, optional The shortest distance between tube centers; defined in relation to the flow direction only, [m] pitch_parallel : float, optional The distance between tube center along a line parallel to the flow; has been called `longitudinal` pitch, `pp`, `s2`, `SL`, and `p2`, [m] pitch_normal : float, optional The distance between tube centers in a line 90° to the line of flow; has been called the `transverse` pitch, `pn`, `s1`, `ST`, and `p1`, [m] Returns ------- angle : float The angle of the tube layout, [degrees] pitch : float The shortest distance between tube centers; defined in relation to the flow direction only, [m] pitch_parallel : float The distance between tube center along a line parallel to the flow; has been called `longitudinal` pitch, `pp`, `s2`, `SL`, and `p2`, [m] pitch_normal : float The distance between tube centers in a line 90° to the line of flow; has been called the `transverse` pitch, `pn`, `s1`, `ST`, and `p1`, [m] Notes ----- For the 90 and 0 degree case, the normal or parallel pitches can be zero; given the angle and the zero value, obviously is it not possible to calculate the pitch and a math error will be raised. No exception will be raised if three or four inputs are provided; the other two will simply be calculated according to the list of if statements used. An exception will be raised if only one input is provided. Examples -------- >>> pitch_angle_solver(pitch=1, angle=30) (30, 1, 0.8660254037844387, 0.49999999999999994) References ---------- .. [1] Schlunder, Ernst U, and International Center for Heat and Mass Transfer. Heat Exchanger Design Handbook. Washington: Hemisphere Pub. Corp., 1983. ''' if angle is not None and pitch is not None: pitch_normal = pitch*sin(radians(angle)) pitch_parallel = pitch*cos(radians(angle)) elif angle is not None and pitch_normal is not None: pitch = pitch_normal/sin(radians(angle)) pitch_parallel = pitch*cos(radians(angle)) elif angle is not None and pitch_parallel is not None: pitch = pitch_parallel/cos(radians(angle)) pitch_normal = pitch*sin(radians(angle)) elif pitch_normal is not None and pitch is not None: angle = degrees(asin(pitch_normal/pitch)) pitch_parallel = pitch*cos(radians(angle)) elif pitch_parallel is not None and pitch is not None: angle = degrees(acos(pitch_parallel/pitch)) pitch_normal = pitch*sin(radians(angle)) elif pitch_parallel is not None and pitch_normal is not None: angle = degrees(asin(pitch_normal/sqrt(pitch_normal**2 + pitch_parallel**2))) pitch = sqrt(pitch_normal**2 + pitch_parallel**2) else: raise ValueError('Two of the arguments are required') return angle, pitch, pitch_parallel, pitch_normal def sphericity(A, V): r'''Returns the sphericity of a particle of surface area `A` and volume `V`. Sphericity is the ratio of the surface area of a sphere with the same volume as the particle (equivalent diameter) to the actual surface area of the particle. .. math:: \Psi = \frac{\text{A of sphere with } V_p } {{A}_p} = \frac{\pi^{\frac{1}{3}}(6V_p)^{\frac{2}{3}}}{A_p} Parameters ---------- A : float Surface area of particle, [m^2] V : float Volume of particle, [m^3] Returns ------- Psi : float Sphericity [-] Notes ----- All non-spherical particles have spericities less than 1 but greater than 0. Many common geometrical shapes have their results calculated exactly in [2]_. Examples -------- >>> sphericity(10., 2.) 0.767663317071005 For a cube of side length a=3, the surface area is 6*a^2=54 and volume a^3=27. Its sphericity is then: >>> sphericity(A=54, V=27) 0.8059959770082346 References ---------- .. [1] Rhodes, Martin J., ed. Introduction to Particle Technology. 2E. Chichester, England ; Hoboken, NJ: Wiley, 2008. .. [2] "Sphericity." Wikipedia, March 8, 2017. https://en.wikipedia.org/w/index.php?title=Sphericity&oldid=769183043 ''' return pi**(1/3.)*(6*V)**(2/3.)/A def aspect_ratio(Dmin, Dmax): r'''Returns the aspect ratio of a shape with minimum and maximum dimension, `Dmin` and `Dmax`. .. math:: A_R = \frac{D_{min}}{D_{max}} Parameters ---------- Dmin : float Minimum dimension, [m] Dmax : float Maximum dimension, [m] Returns ------- a_r : float Aspect ratio [-] Examples -------- >>> aspect_ratio(.2, 2) 0.1 ''' return Dmin/Dmax def circularity(A, P): r'''Returns the circularity of a shape with area `A` and perimeter `P`. .. math:: f_{circ} = \frac {4 \pi A} {P^2} Defined to be 1 for a circle. Used to characterize particles. Any non-circular shape must have a circularity less than one. Parameters ---------- A : float Area of the shape, [m^2] P : float Perimeter of the shape, [m] Returns ------- f_circ : float Circularity of the shape [-] Examples -------- Square, side length = 2 (all squares are the same): >>> circularity(A=(2*2), P=4*2) 0.7853981633974483 Rectangle, one side length = 1, second side length = 100 >>> D1 = 1 >>> D2 = 100 >>> A = D1*D2 >>> P = 2*D1 + 2*D2 >>> circularity(A, P) 0.030796908671598795 ''' return 4*pi*A/P**2 def A_cylinder(D, L): r'''Returns the surface area of a cylinder. .. math:: A = \pi D L + 2\cdot \frac{\pi D^2}{4} Parameters ---------- D : float Diameter of the cylinder, [m] L : float Length of the cylinder, [m] Returns ------- A : float Surface area [m^2] Examples -------- >>> A_cylinder(0.01, .1) 0.0032986722862692833 ''' cap = pi*D**2/4*2 side = pi*D*L return cap + side def V_cylinder(D, L): r'''Returns the volume of a cylinder. .. math:: V = \frac{\pi D^2}{4}L Parameters ---------- D : float Diameter of the cylinder, [m] L : float Length of the cylinder, [m] Returns ------- V : float Volume [m^3] Examples -------- >>> V_cylinder(0.01, .1) 7.853981633974484e-06 ''' return pi*D**2/4*L def A_hollow_cylinder(Di, Do, L): r'''Returns the surface area of a hollow cylinder. .. math:: A = \pi D_o L + \pi D_i L + 2\cdot \frac{\pi D_o^2}{4} - 2\cdot \frac{\pi D_i^2}{4} Parameters ---------- Di : float Diameter of the hollow in the cylinder, [m] Do : float Diameter of the exterior of the cylinder, [m] L : float Length of the cylinder, [m] Returns ------- A : float Surface area [m^2] Examples -------- >>> A_hollow_cylinder(0.005, 0.01, 0.1) 0.004830198704894308 ''' side_o = pi*Do*L side_i = pi*Di*L cap_circle = pi*Do**2/4*2 cap_removed = pi*Di**2/4*2 return side_o + side_i + cap_circle - cap_removed def V_hollow_cylinder(Di, Do, L): r'''Returns the volume of a hollow cylinder. .. math:: V = \frac{\pi D_o^2}{4}L - L\frac{\pi D_i^2}{4} Parameters ---------- Di : float Diameter of the hollow in the cylinder, [m] Do : float Diameter of the exterior of the cylinder, [m] L : float Length of the cylinder, [m] Returns ------- V : float Volume [m^3] Examples -------- >>> V_hollow_cylinder(0.005, 0.01, 0.1) 5.890486225480862e-06 ''' return pi*Do**2/4*L - pi*Di**2/4*L def A_multiple_hole_cylinder(Do, L, holes): r'''Returns the surface area of a cylinder with multiple holes. Calculation will naively return a negative value or other impossible result if the number of cylinders added is physically impossible. Holes may be of different shapes, but must be perpendicular to the axis of the cylinder. .. math:: A = \pi D_o L + 2\cdot \frac{\pi D_o^2}{4} + \sum_{i}^n \left( \pi D_i L - 2\cdot \frac{\pi D_i^2}{4}\right) Parameters ---------- Do : float Diameter of the exterior of the cylinder, [m] L : float Length of the cylinder, [m] holes : list List of tuples containing (diameter, count) pairs of descriptions for each of the holes sizes. Returns ------- A : float Surface area [m^2] Examples -------- >>> A_multiple_hole_cylinder(0.01, 0.1, [(0.005, 1)]) 0.004830198704894308 ''' side_o = pi*Do*L cap_circle = pi*Do**2/4*2 A = cap_circle + side_o for Di, n in holes: side_i = pi*Di*L cap_removed = pi*Di**2/4*2 A = A + side_i*n - cap_removed*n return A def V_multiple_hole_cylinder(Do, L, holes): r'''Returns the solid volume of a cylinder with multiple cylindrical holes. Calculation will naively return a negative value or other impossible result if the number of cylinders added is physically impossible. .. math:: V = \frac{\pi D_o^2}{4}L - L\frac{\pi D_i^2}{4} Parameters ---------- Do : float Diameter of the exterior of the cylinder, [m] L : float Length of the cylinder, [m] holes : list List of tuples containing (diameter, count) pairs of descriptions for each of the holes sizes. Returns ------- V : float Volume [m^3] Examples -------- >>> V_multiple_hole_cylinder(0.01, 0.1, [(0.005, 1)]) 5.890486225480862e-06 ''' V = pi*Do**2/4*L for Di, n in holes: V -= pi*Di*Di/4*L*n return V fluids-1.0.22/fluids/geometry.pyi0000644000175000017500000002612614302004506016255 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from numpy import float64 from typing import ( List, Optional, Tuple, Union, ) def A_cylinder(D: float, L: float) -> float: ... def A_hollow_cylinder(Di: float, Do: float, L: float) -> float: ... def A_multiple_hole_cylinder(Do: float, L: float, holes: List[Tuple[float, int]]) -> float: ... def A_partial_circle(D: float, h: float) -> float: ... def SA_conical_head(D: float, a: float) -> float: ... def SA_ellipsoidal_head(D: float, a: float) -> float: ... def SA_from_h( h: float, D: float, L: float, horizontal: bool = ..., sideA: Optional[str] = ..., sideB: Optional[str] = ..., sideA_a: float = ..., sideB_a: float = ..., sideA_f: Optional[float] = ..., sideA_k: Optional[float] = ..., sideB_f: Optional[float] = ..., sideB_k: Optional[float] = ... ) -> float: ... def SA_guppy_head(D: float, a: float) -> float: ... def SA_partial_cylindrical_body(L: float, D: float, h: float) -> float: ... def SA_partial_horiz_conical_head(D: float, a: float, h: float) -> float: ... def SA_partial_horiz_ellipsoidal_head(D: float, a: float, h: float) -> float: ... def SA_partial_horiz_guppy_head(D: float, a: float, h: float) -> float: ... def SA_partial_horiz_spherical_head(D: float, a: float, h: float) -> float: ... def SA_partial_horiz_torispherical_head(D: float, f: float, k: float, h: float) -> float: ... def SA_partial_sphere(D: float, h: float) -> float: ... def SA_partial_vertical_conical_head(D: float, a: float, h: float) -> float: ... def SA_partial_vertical_ellipsoidal_head(D: float, a: float, h: float) -> float: ... def SA_partial_vertical_spherical_head(D: float, a: float, h: float) -> float: ... def SA_partial_vertical_torispherical_head(D: float, f: float, k: float, h: float) -> float: ... def SA_tank( D: float, L: float, sideA: Optional[str] = ..., sideB: Optional[str] = ..., sideA_a: float = ..., sideB_a: float = ..., sideA_f: Optional[float] = ..., sideA_k: Optional[float] = ..., sideB_f: Optional[float] = ..., sideB_k: Optional[float] = ... ) -> Tuple[float, float, float, float]: ... def SA_torispheroidal(D: float, f: float, k: float) -> float: ... def V_cylinder(D: float, L: float) -> float: ... def V_from_h( h: float, D: float, L: float, horizontal: bool = ..., sideA: Optional[str] = ..., sideB: Optional[str] = ..., sideA_a: float = ..., sideB_a: float = ..., sideA_f: Optional[float] = ..., sideA_k: Optional[float] = ..., sideB_f: Optional[float] = ..., sideB_k: Optional[float] = ... ) -> float: ... def V_hollow_cylinder(Di: float, Do: float, L: float) -> float: ... def V_horiz_conical( D: float, L: float, a: float, h: float, headonly: bool = ... ) -> float: ... def V_horiz_ellipsoidal( D: float, L: float, a: float, h: float, headonly: bool = ... ) -> float: ... def V_horiz_guppy( D: float, L: float, a: float, h: float, headonly: bool = ... ) -> float: ... def V_horiz_spherical( D: float, L: float, a: float, h: float, headonly: bool = ... ) -> float: ... def V_horiz_torispherical( D: float, L: float, f: float, k: float, h: float, headonly: bool = ... ) -> float: ... def V_horiz_torispherical_toint_1(x: float, w: float, c10: float, c11: float) -> float: ... def V_horiz_torispherical_toint_2(x: float, w: float, c10: float, c11: float, g: float, g2: float) -> float: ... def V_horiz_torispherical_toint_3(x: float, r2: float, g2: float, z_inv: float) -> float: ... def V_multiple_hole_cylinder(Do: float, L: float, holes: List[Tuple[float, int]]) -> float: ... def V_partial_sphere(D: float, h: float) -> float: ... def V_tank( D: float, L: float, horizontal: bool = ..., sideA: Optional[str] = ..., sideB: Optional[str] = ..., sideA_a: float = ..., sideB_a: float = ..., sideA_f: Optional[float] = ..., sideA_k: Optional[float] = ..., sideB_f: Optional[float] = ..., sideB_k: Optional[float] = ... ) -> Tuple[float, float, float, float]: ... def V_vertical_conical(D: float, a: float, h: float) -> float: ... def V_vertical_conical_concave(D: float, a: float, h: float) -> float: ... def V_vertical_ellipsoidal(D: float, a: float, h: float) -> float: ... def V_vertical_ellipsoidal_concave(D: float, a: float, h: float) -> float: ... def V_vertical_spherical(D: float, a: float, h: float) -> float: ... def V_vertical_spherical_concave(D: float, a: float, h: float) -> float: ... def V_vertical_torispherical(D: float, f: float, k: float, h: float) -> float: ... def V_vertical_torispherical_concave(D: float, f: float, k: float, h: float) -> float: ... def _SA_partial_horiz_ellipsoidal_head_to_int(y: float, c1: float, R2: float, R4: float) -> float: ... def _SA_partial_horiz_guppy_head_to_int(x: float, a: float, R: float) -> float64: ... def _SA_partial_horiz_spherical_head_to_int(x: float, R2: float, a4: float, c1: float, c2: float) -> float: ... def _SA_partial_horiz_torispherical_head_int_1(x: float, b: float, c: float) -> float: ... def _SA_partial_horiz_torispherical_head_int_2(y: float, t2: float, s: float, c1: float) -> float: ... def _SA_partial_horiz_torispherical_head_int_3(y: float, x: float, s: float, t2: float) -> float: ... def _V_horiz_spherical_toint(x: float, r2: float, R2: float, den_inv: float) -> float: ... def a_torispherical(D: float, f: float, k: float) -> float: ... def aspect_ratio(Dmin: float, Dmax: float) -> float: ... def circle_segment_area_inner(h: float, R: float, A_expect: float) -> Tuple[float, float]: ... def circle_segment_h_from_A(A: float, D: float) -> float: ... def circularity(A: float, P: float) -> float: ... def pitch_angle_solver( angle: Optional[float] = ..., pitch: Optional[float] = ..., pitch_parallel: Optional[float] = ..., pitch_normal: Optional[float] = ... ) -> Union[Tuple[float, float, float, float], Tuple[int, float, float, float]]: ... def plate_enlargement_factor(amplitude: float, wavelength: float) -> float: ... def sphericity(A: float, V: float) -> float: ... def tank_from_two_specs_err( guess: List[float], spec0: float, spec1: float, spec0_name: str, spec1_name: str, h: float, horizontal: bool, sideA: None, sideB: None, sideA_a: None, sideB_a: None, sideA_f: None, sideA_k: None, sideB_f: None, sideB_k: None, sideA_a_ratio: None, sideB_a_ratio: None ) -> List[float]: ... class AirCooledExchanger: def __init__( self, tube_rows: int, tube_passes: int, tubes_per_row: int, tube_length: float, tube_diameter: float, fin_thickness: float, angle: Optional[int] = ..., pitch: Optional[float] = ..., pitch_parallel: None = ..., pitch_normal: None = ..., pitch_ratio: None = ..., fin_diameter: None = ..., fin_height: Optional[float] = ..., fin_density: Optional[float] = ..., fin_interval: None = ..., parallel_bays: int = ..., bundles_per_bay: int = ..., fans_per_bay: int = ..., corbels: bool = ..., tube_thickness: Optional[float] = ..., fan_diameter: None = ... ) -> None: ... class HelicalCoil: def __init__( self, Dt: float, Do: Optional[int] = ..., pitch: Optional[float] = ..., H: Optional[int] = ..., N: Optional[float] = ..., H_total: Optional[int] = ..., Do_total: Optional[float] = ..., Di: Optional[float] = ... ) -> None: ... class PlateExchanger: def __init__( self, amplitude: float, wavelength: float, chevron_angle: int = ..., chevron_angles: Optional[Tuple[int, int]] = ..., width: Optional[float] = ..., length: Optional[float] = ..., thickness: None = ..., d_port: Optional[float] = ..., plates: Optional[int] = ... ) -> None: ... @property def plate_exchanger_identifier(self) -> str: ... class RectangularFinExchanger: def __init__( self, fin_height: float, fin_thickness: float, fin_spacing: float, length: Optional[float] = ..., width: Optional[float] = ..., layers: Optional[int] = ..., plate_thickness: Optional[float] = ..., flow: str = ... ) -> None: ... def set_overall_geometry(self) -> None: ... class RectangularOffsetStripFinExchanger: def __init__( self, fin_length: float, fin_height: float, fin_thickness: float, fin_spacing: float, length: None = ..., width: None = ..., layers: None = ..., plate_thickness: None = ..., flow: str = ... ) -> None: ... class TANK: def A_cross_sectional(self, h: float, method: str = ...) -> float: ... def SA_from_h(self, h: float, method: str = ...) -> float: ... def V_from_h(self, h: float, method: str = ...) -> float: ... def _V_solver_error( self, Vtarget: int, D: float, L: float, horizontal: bool, sideA: Optional[str], sideB: Optional[str], sideA_a: Optional[float], sideB_a: Optional[float], sideA_f: Optional[float], sideA_k: Optional[float], sideB_f: Optional[float], sideB_k: Optional[float], sideA_a_ratio: Optional[float], sideB_a_ratio: Optional[float] ) -> float: ... def __init__( self, D: Optional[float] = ..., L: Optional[float] = ..., horizontal: bool = ..., sideA: Optional[str] = ..., sideB: Optional[str] = ..., sideA_a: Optional[float] = ..., sideB_a: Optional[float] = ..., sideA_f: Optional[float] = ..., sideA_k: Optional[float] = ..., sideB_f: Optional[float] = ..., sideB_k: Optional[float] = ..., sideA_a_ratio: Optional[float] = ..., sideB_a_ratio: Optional[float] = ..., L_over_D: Optional[float] = ..., V: Optional[int] = ... ) -> None: ... def _solve_tank_for_V(self) -> None: ... def add_thickness( self, thickness: float, sideA_thickness: None = ..., sideB_thickness: None = ... ) -> TANK: ... @staticmethod def from_two_specs( spec0: float, spec1: float, spec0_name: str = ..., spec1_name: str = ..., h: Optional[float] = ..., horizontal: bool = ..., sideA: None = ..., sideB: None = ..., sideA_a: None = ..., sideB_a: None = ..., sideA_f: None = ..., sideA_k: None = ..., sideB_f: None = ..., sideB_k: None = ..., sideA_a_ratio: None = ..., sideB_a_ratio: None = ... ) -> TANK: ... def h_from_V(self, V: float, method: str = ...) -> float: ... def set_misc(self) -> None: ... def set_table(self, n: int = ..., dx: None = ...) -> None: ... __all__: List[str]fluids-1.0.22/fluids/typing_utils.py0000644000175000017500000000456114302004506017002 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2020, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from __future__ import division from inspect import isclass import types try: import importlib.machinery import importlib.util except ImportError: # pragma: no cover raise ImportError('The typing functionality requires a more recent version of Python') __all__ = ['type_module', 'copy_types'] def copy_types(typed_obj, untyped_obj): if isinstance(typed_obj, property): return try: an = typed_obj.__annotations__ except: an = {} untyped_obj.__annotations__ = an if isclass(untyped_obj): for f_name in dir(typed_obj): if len(f_name) > 2 and '__' == f_name[:2]: continue typed_fun = getattr(typed_obj, f_name) untyped_fun = getattr(untyped_obj, f_name) copy_types(typed_fun, untyped_fun) def type_module(mod): loader = importlib.machinery.SourceFileLoader('dummy_module', mod.__file__ + 'i') mod_types = types.ModuleType(loader.name) loader.exec_module(mod_types) for f_name in mod.__all__: if hasattr(mod_types, f_name): untyped_fun = getattr(mod, f_name) typed_fun = getattr(mod_types, f_name) copy_types(typed_fun, untyped_fun) fluids-1.0.22/fluids/constants/0000755000175000017500000000000014302004506015704 5ustar nileshnileshfluids-1.0.22/fluids/constants/constants.py0000644000175000017500000001020214302004506020265 0ustar nileshnilesh# -*- coding: utf-8 -*- """Vendorized, partial version of scipy.constants which does not implement the full codata formulations. This was implemented to provide a consistent set of constants across scipy versions; and to prevent the tests from failing when new CODATA formulations come out. """ import math as _math # mathematical constants pi = _math.pi pi_inv = 1.0/pi golden = golden_ratio = 1.618033988749895 # SI prefixes yotta = 1e24 zetta = 1e21 exa = 1e18 peta = 1e15 tera = 1e12 giga = 1e9 mega = 1e6 kilo = 1e3 hecto = 1e2 deka = 1e1 deci = 1e-1 centi = 1e-2 milli = 1e-3 micro = 1e-6 nano = 1e-9 pico = 1e-12 femto = 1e-15 atto = 1e-18 zepto = 1e-21 # binary prefixes kibi = 2**10 mebi = 2**20 gibi = 2**30 tebi = 2**40 pebi = 2**50 exbi = 2**60 zebi = 2**70 yobi = 2**80 # physical constants c = speed_of_light = 299792458.0 mu_0 = 4e-7*pi epsilon_0 = 1.0 / (mu_0*c*c) h = Planck = 6.62607004e-34 hbar = h / (2.0 * pi) G = gravitational_constant = 6.67408e-11 g = 9.80665 g_sqrt = 3.1315571206669692#_math.sqrt(g) e = elementary_charge = 1.6021766208e-19 alpha = fine_structure = 0.0072973525664 N_A = Avogadro = 6.022140857e+23 k = Boltzmann = 1.38064852e-23 sigma = Stefan_Boltzmann = 5.670367e-08 Wien = 0.0028977729 Rydberg = 10973731.568508 k = 1.380649e-23 N_A = 6.02214076e23 R = gas_constant = N_A*k # 8.31446261815324 exactly now, N_A*k R_inv = 1.0/R R2 = R*R # mass in kg gram = 1e-3 metric_ton = 1e3 grain = 64.79891e-6 lb = pound = 7000 * grain # avoirdupois blob = slinch = pound * g / 0.0254 # lbf*s**2/in (added in 1.0.0) slug = blob / 12 # lbf*s**2/foot (added in 1.0.0) oz = ounce = pound / 16.0 stone = 14.0 * pound long_ton = 2240.0 * pound short_ton = 2000.0 * pound troy_ounce = 480.0 * grain # only for metals / gems troy_pound = 12.0 * troy_ounce carat = 200e-6 m_e = electron_mass = 9.10938356e-31 m_p = proton_mass = 1.672621898e-27 m_n = neutron_mass = 1.674927471e-27 m_u = u = atomic_mass = 1.66053904e-27 # angle in rad degree = pi / 180.0 arcmin = arcminute = degree / 60.0 arcsec = arcsecond = arcmin / 60.0 # time in second minute = 60.0 hour = 60.0 * minute hour_inv = 1.0/hour day = 24.0 * hour week = 7.0 * day year = 365.0 * day Julian_year = 365.25 * day # length in meter inch = 0.0254 inch_inv = 1.0/inch foot = 12 * inch foot_cubed = foot*foot*foot foot_cubed_inv = 1.0/foot_cubed yard = 3 * foot mile = 1760 * yard mil = 0.001*inch pt = point = inch / 72 # typography survey_foot = 1200.0 / 3937 survey_mile = 5280.0 * survey_foot nautical_mile = 1852.0 fermi = 1e-15 angstrom = 1e-10 micron = 1e-6 au = astronomical_unit = 149597870691.0 light_year = Julian_year * c parsec = au / arcsec # pressure in pascal atm = atmosphere = 101325.0 bar = 1e5 torr = mmHg = atm / 760 inchHg = mmHg*inch*1000 torr_inv = 1.0/torr psi = pound * g / (inch * inch) atm_inv = atmosphere_inv = 1.0/atm torr_inv = mmHg_inv = 1.0/torr psi_inv = 1.0/psi # area in meter**2 hectare = 1e4 acre = 43560 * foot*foot # volume in meter**3 litre = liter = 1e-3 gallon = gallon_US = 231.0 * inch*inch*inch # US # pint = gallon_US / 8 fluid_ounce = fluid_ounce_US = gallon_US / 128 bbl = barrel = 42.0 * gallon_US # for oil gallon_imp = 4.54609e-3 # UK fluid_ounce_imp = gallon_imp / 160.0 # speed in meter per second kmh = 1e3 / hour mph = mile / hour mach = speed_of_sound = 340.5 # approx value at 15 degrees in 1 atm. is this a common value? knot = nautical_mile / hour # temperature in kelvin zero_Celsius = 273.15 degree_Fahrenheit = 1.0/1.8 # only for differences # energy in joule eV = electron_volt = elementary_charge # * 1 Volt calorie = calorie_th = 4.184 calorie_IT = 4.1868 erg = 1e-7 Btu_th = pound * degree_Fahrenheit * calorie_th / gram Btu = Btu_IT = pound * degree_Fahrenheit * calorie_IT / gram ton_TNT = 1e9 * calorie_th # Wh = watt_hour # power in watt hp = horsepower = 550.0 * foot * pound * g # force in newton dyn = dyne = 1e-5 lbf = pound_force = pound * g kgf = kilogram_force = g # * 1 kg deg2rad = 0.017453292519943295769 # Multiple an angle in degrees by this to get radians rad2deg = 57.295779513082320877# Multiple an angle in radians by this to get degrees root_two = 1.4142135623730951 ln_10 = _math.log(10) ln_10_inv = 1.0/ln_10fluids-1.0.22/fluids/constants/__init__.py0000644000175000017500000000230314302004506020013 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2018, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from .constants import * fluids-1.0.22/fluids/packed_bed.pyi0000644000175000017500000000502714302004506016460 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( List, Optional, Union, ) def Brauer(dp: float, voidage: float, vs: float, rho: float, mu: float, L: float = ...) -> float: ... def Carman(dp: float, voidage: float, vs: float, rho: float, mu: float, L: float = ...) -> float: ... def Erdim_Akgiray_Demir( dp: float, voidage: float, vs: float, rho: float, mu: float, L: float = ... ) -> float: ... def Ergun(dp: float, voidage: float, vs: float, rho: float, mu: float, L: float = ...) -> float: ... def Fahien_Schriver(dp: float, voidage: float, vs: float, rho: float, mu: float, L: float = ...) -> float: ... def Guo_Sun(dp: float, voidage: float, vs: float, rho: float, mu: float, Dt: float, L: float = ...) -> float: ... def Harrison_Brunner_Hecker( dp: float, voidage: float, vs: float, rho: float, mu: float, L: int = ..., Dt: Optional[float] = ... ) -> float: ... def Hicks(dp: float, voidage: float, vs: float, rho: float, mu: float, L: float = ...) -> float: ... def Idelchik(dp: float, voidage: float, vs: float, rho: float, mu: float, L: float = ...) -> float: ... def Jones_Krier(dp: float, voidage: float, vs: float, rho: float, mu: float, L: float = ...) -> float: ... def KTA(dp: float, voidage: float, vs: float, rho: float, mu: float, L: float = ...) -> float: ... def Kuo_Nydegger(dp: float, voidage: float, vs: float, rho: float, mu: float, L: float = ...) -> float: ... def Montillet_Akkari_Comiti( dp: float, voidage: float, vs: float, rho: float, mu: float, L: float = ..., Dt: Optional[float] = ... ) -> float: ... def Tallmadge(dp: float, voidage: float, vs: float, rho: float, mu: float, L: float = ...) -> float: ... def dP_packed_bed( dp: float, voidage: float, vs: float, rho: float, mu: float, L: int = ..., Dt: Optional[float] = ..., sphericity: Optional[float] = ..., Method: Optional[str] = ... ) -> float: ... def dP_packed_bed_methods( dp: float, voidage: float, vs: float, rho: float, mu: float, L: float = ..., Dt: Optional[float] = ..., check_ranges: bool = ... ) -> List[str]: ... def voidage_Benyahia_Oneil(Dpe: float, Dt: float, sphericity: float) -> float: ... def voidage_Benyahia_Oneil_cylindrical(Dpe: float, Dt: float, sphericity: float) -> float: ... def voidage_Benyahia_Oneil_spherical(Dp: float, Dt: float) -> float: ... __all__: List[str]fluids-1.0.22/fluids/drag.py0000644000175000017500000014020114302004506015155 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2019, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains correlations for the drag coefficient `Cd` of a particle moving in a fluid. Numerical solvers for terminal velocity and an integrator for particle position over time are included also. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Interfaces to Drag Models ------------------------- .. autofunction:: drag_sphere .. autofunction:: v_terminal .. autofunction:: integrate_drag_sphere .. autofunction:: time_v_terminal_Stokes .. autofunction:: drag_sphere_methods Drag Correlations ----------------- .. autofunction:: Stokes .. autofunction:: Barati .. autofunction:: Barati_high .. autofunction:: Khan_Richardson .. autofunction:: Morsi_Alexander .. autofunction:: Rouse .. autofunction:: Engelund_Hansen .. autofunction:: Clift_Gauvin .. autofunction:: Graf .. autofunction:: Flemmer_Banks .. autofunction:: Swamee_Ojha .. autofunction:: Yen .. autofunction:: Haider_Levenspiel .. autofunction:: Cheng .. autofunction:: Terfous .. autofunction:: Mikhailov_Freire .. autofunction:: Clift .. autofunction:: Ceylan .. autofunction:: Almedeij .. autofunction:: Morrison .. autofunction:: Song_Xu """ from __future__ import division from math import sqrt, exp, log, log10, tanh from fluids.constants import g from fluids.numerics import secant from fluids.core import Reynolds __all__ = ['drag_sphere', 'drag_sphere_methods', 'v_terminal', 'integrate_drag_sphere', 'time_v_terminal_Stokes', 'Stokes', 'Barati', 'Barati_high', 'Rouse', 'Engelund_Hansen', 'Clift_Gauvin', 'Morsi_Alexander', 'Graf', 'Flemmer_Banks', 'Khan_Richardson', 'Swamee_Ojha', 'Yen', 'Haider_Levenspiel', 'Cheng', 'Terfous', 'Mikhailov_Freire', 'Clift', 'Ceylan', 'Almedeij', 'Morrison', 'Song_Xu'] def Stokes(Re): r'''Calculates drag coefficient of a smooth sphere using Stoke's law. .. math:: C_D = 24/Re Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 0.3 Examples -------- >>> Stokes(0.1) 240.0 References ---------- .. [1] Rhodes, Martin J. Introduction to Particle Technology. Wiley, 2013. ''' return 24./Re def Barati(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_. .. math:: C_D = 5.4856\times10^9\tanh(4.3774\times10^{-9}/Re) + 0.0709\tanh(700.6574/Re) + 0.3894\tanh(74.1539/Re) - 0.1198\tanh(7429.0843/Re) + 1.7174\tanh[9.9851/(Re+2.3384)] + 0.4744 Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 2E5 Examples -------- Matching example in [1]_, in a table of calculated values. >>> Barati(200.) 0.7682237950389874 References ---------- .. [1] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' Re_inv = 1.0/Re Cd = (5.4856E9*tanh(4.3774E-9*Re_inv) + 0.0709*tanh(700.6574*Re_inv) + 0.3894*tanh(74.1539*Re_inv) - 0.1198*tanh(7429.0843*Re_inv) + 1.7174*tanh(9.9851/(Re + 2.3384)) + 0.4744) return Cd def Barati_high(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_. .. math:: C_D = 8\times 10^{-6}\left[(Re/6530)^2 + \tanh(Re) - 8\ln(Re)/\ln(10)\right] - 0.4119\exp(-2.08\times10^{43}/[Re + Re^2]^4) -2.1344\exp(-\{[\ln(Re^2 + 10.7563)/\ln(10)]^2 + 9.9867\}/Re) +0.1357\exp(-[(Re/1620)^2 + 10370]/Re) - 8.5\times 10^{-3}\{2\ln[\tanh(\tanh(Re))]/\ln(10) - 2825.7162\}/Re + 2.4795 Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 1E6 This model is the wider-range model the authors developed. At sufficiently low diameters or Re values, drag is no longer a phenomena. Examples -------- Matching example in [1]_, in a table of calculated values. >>> Barati_high(200.) 0.7730544082789523 References ---------- .. [1] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' Re2 = Re*Re t0 = 1.0/Re t1 = Re*(1.0/6530.) t2 = Re*(1.0/1620) t3 = log10(Re2 + 10.7563) t4 = 1.0/(Re+Re2) t4 *= t4 t4 *= t4 tanhRe = tanh(Re) Cd = (8E-6*(t1*t1 + tanhRe - 8.0*log10(Re)) - 0.4119*exp(-2.08E43*t4) - 2.1344*exp(-t0*(t3*t3 + 9.9867)) + 0.1357*exp(-t0*(t2*t2 + 10370.)) - 8.5E-3*t0*(2.0*log10(tanh(tanhRe)) - 2825.7162) + 2.4795) return Cd def Rouse(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D = \frac{24}{Re} + \frac{3}{Re^{0.5}} + 0.34 Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 2E5 Examples -------- >>> Rouse(200.) 0.6721320343559642 References ---------- .. [1] H. Rouse, Fluid Mechanics for Hydraulic Engineers, Dover, New York, N.Y., 1938 .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' return 24./Re + 3/sqrt(Re) + 0.34 def Engelund_Hansen(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D = \frac{24}{Re} + 1.5 Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 2E5 Examples -------- >>> Engelund_Hansen(200.) 1.62 References ---------- .. [1] F. Engelund, E. Hansen, Monograph on Sediment Transport in Alluvial Streams, Monograpsh Denmark Technical University, Hydraulic Lab, Denmark, 1967. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' return 24./Re + 1.5 def Clift_Gauvin(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D = \frac{24}{Re}(1 + 0.152Re^{0.677}) + \frac{0.417} {1 + 5070Re^{-0.94}} Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 2E5 Examples -------- >>> Clift_Gauvin(200.) 0.7905400398000133 References ---------- .. [1] R. Clift, W.H. Gauvin, The motion of particles in turbulent gas streams, Proc. Chemeca, 70, 1970, pp. 14-28. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' return 24./Re*(1 + 0.152*Re**0.677) + 0.417/(1 + 5070*Re**-0.94) def Morsi_Alexander(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. If Re < 0.1: .. math:: C_D = \frac{24}{Re} If 0.1 < Re < 1: .. math:: C_D = \frac{22.73}{Re}+\frac{0.0903}{Re^2} + 3.69 If 1 < Re < 10: .. math:: C_D = \frac{29.1667}{Re}-\frac{3.8889}{Re^2} + 1.2220 If 10 < Re < 100: .. math:: C_D =\frac{46.5}{Re}-\frac{116.67}{Re^2} + 0.6167 If 100 < Re < 1000: .. math:: C_D = \frac{98.33}{Re}-\frac{2778}{Re^2} + 0.3644 If 1000 < Re < 5000: .. math:: C_D = \frac{148.62}{Re}-\frac{4.75\times10^4}{Re^2} + 0.3570 If 5000 < Re < 10000: .. math:: C_D = \frac{-490.5460}{Re}+\frac{57.87\times10^4}{Re^2} + 0.46 If 10000 < Re < 50000: .. math:: C_D = \frac{-1662.5}{Re}+\frac{5.4167\times10^6}{Re^2} + 0.5191 Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 2E5. Original was reviewed, and confirmed to contain the cited equations. Examples -------- >>> Morsi_Alexander(200) 0.7866 References ---------- .. [1] Morsi, S. A., and A. J. Alexander. "An Investigation of Particle Trajectories in Two-Phase Flow Systems." Journal of Fluid Mechanics 55, no. 02 (September 1972): 193-208. doi:10.1017/S0022112072001806. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' if Re < 0.1: return 24./Re elif Re < 1: return 22.73/Re + 0.0903/Re**2 + 3.69 elif Re < 10: return 29.1667/Re - 3.8889/Re**2 + 1.222 elif Re < 100: return 46.5/Re - 116.67/Re**2 + 0.6167 elif Re < 1000: return 98.33/Re - 2778./Re**2 + 0.3644 elif Re < 5000: return 148.62/Re - 4.75E4/Re**2 + 0.357 elif Re < 10000: return -490.546/Re + 57.87E4/Re**2 + 0.46 else: return -1662.5/Re + 5.4167E6/Re**2 + 0.5191 def Graf(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D = \frac{24}{Re} + \frac{7.3}{1+Re^{0.5}} + 0.25 Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 2E5 Examples -------- >>> Graf(200.) 0.8520984424785725 References ---------- .. [1] W.H. Graf, Hydraulics of Sediment Transport, Water Resources Publications, Littleton, Colorado, 1984. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' return 24./Re + 7.3/(1 + sqrt(Re)) + 0.25 def Flemmer_Banks(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D = \frac{24}{Re}10^E .. math:: E = 0.383Re^{0.356}-0.207Re^{0.396} - \frac{0.143}{1+(\log_{10} Re)^2} Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 2E5 Examples -------- >>> Flemmer_Banks(200.) 0.7849169609270039 References ---------- .. [1] Flemmer, R. L. C., and C. L. Banks. "On the Drag Coefficient of a Sphere." Powder Technology 48, no. 3 (November 1986): 217-21. doi:10.1016/0032-5910(86)80044-4. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' E = 0.383*Re**0.356 - 0.207*Re**0.396 - 0.143/(1 + (log10(Re))**2) return 24./Re*10**E def Khan_Richardson(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D = (2.49Re^{-0.328} + 0.34Re^{0.067})^{3.18} Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 2E5 Examples -------- >>> Khan_Richardson(200.) 0.7747572379211097 References ---------- .. [1] Khan, A. R., and J. F. Richardson. "The Resistance to Motion of a Solid Sphere in a Fluid." Chemical Engineering Communications 62, no. 1-6 (December 1, 1987): 135-50. doi:10.1080/00986448708912056. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' return (2.49*Re**-0.328 + 0.34*Re**0.067)**3.18 def Swamee_Ojha(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D = 0.5\left\{16\left[(\frac{24}{Re})^{1.6} + (\frac{130}{Re})^{0.72} \right]^{2.5}+ \left[\left(\frac{40000}{Re}\right)^2 + 1\right]^{-0.25} \right\}^{0.25} Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 1.5E5 Examples -------- >>> Swamee_Ojha(200.) 0.8490012397545713 References ---------- .. [1] Swamee, P. and Ojha, C. (1991). "Drag Coefficient and Fall Velocity of nonspherical particles." J. Hydraul. Eng., 117(5), 660-667. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' Cd = 0.5*sqrt(sqrt(16*((24./Re)**1.6 + (130./Re)**0.72)**2.5 + 1.0/sqrt(sqrt((40000./Re)**2 + 1)))) return Cd def Yen(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D = \frac{24}{Re}\left(1 + 0.15\sqrt{Re} + 0.017Re\right) - \frac{0.208}{1+10^4Re^{-0.5}} Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 2E5 Examples -------- >>> Yen(200.) 0.7822647002187014 References ---------- .. [1] B.C. Yen, Sediment Fall Velocity in Oscillating Flow, University of Virginia, Department of Civil Engineering, 1992. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' return 24./Re*(1 + 0.15*sqrt(Re) + 0.017*Re) - 0.208/(1 + 1E4*1.0/sqrt(Re)) def Haider_Levenspiel(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D=\frac{24}{Re}(1+0.1806Re^{0.6459})+\left(\frac{0.4251}{1 +\frac{6880.95}{Re}}\right) Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 2E5 An improved version of this correlation is in Brown and Lawler. Examples -------- >>> Haider_Levenspiel(200.) 0.7959551680251666 References ---------- .. [1] Haider, A., and O. Levenspiel. "Drag Coefficient and Terminal Velocity of Spherical and Nonspherical Particles." Powder Technology 58, no. 1 (May 1989): 63-70. doi:10.1016/0032-5910(89)80008-7. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' return 24./Re*(1 + 0.1806*Re**0.6459) + (0.4251/(1 + 6880.95/Re)) def Cheng(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D=\frac{24}{Re}(1+0.27Re)^{0.43}+0.47[1-\exp(-0.04Re^{0.38})] Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 2E5 Examples -------- >>> Cheng(200.) 0.7939143028294227 References ---------- .. [1] Cheng, Nian-Sheng. "Comparison of Formulas for Drag Coefficient and Settling Velocity of Spherical Particles." Powder Technology 189, no. 3 (February 13, 2009): 395-398. doi:10.1016/j.powtec.2008.07.006. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' return 24./Re*(1. + 0.27*Re)**0.43 + 0.47*(1. - exp(-0.04*Re**0.38)) def Terfous(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D = 2.689 + \frac{21.683}{Re} + \frac{0.131}{Re^2} - \frac{10.616}{Re^{0.1}} + \frac{12.216}{Re^{0.2}} Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is 0.1 < Re <= 5E4 Examples -------- >>> Terfous(200.) 0.7814651149769638 References ---------- .. [1] Terfous, A., A. Hazzab, and A. Ghenaim. "Predicting the Drag Coefficient and Settling Velocity of Spherical Particles." Powder Technology 239 (May 2013): 12-20. doi:10.1016/j.powtec.2013.01.052. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' return 2.689 + 21.683/Re + 0.131/Re**2 - 10.616/Re**0.1 + 12.216/Re**0.2 def Mikhailov_Freire(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D = \frac{3808[(1617933/2030) + (178861/1063)Re + (1219/1084)Re^2]} {681Re[(77531/422) + (13529/976)Re - (1/71154)Re^2]} Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 118300 Examples -------- >>> Mikhailov_Freire(200.) 0.7514111388018659 References ---------- .. [1] Mikhailov, M. D., and A. P. Silva Freire. "The Drag Coefficient of a Sphere: An Approximation Using Shanks Transform." Powder Technology 237 (March 2013): 432-35. doi:10.1016/j.powtec.2012.12.033. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' Cd = (3808.*((1617933./2030.) + (178861./1063.)*Re + (1219./1084.)*Re**2) /(681.*Re*((77531./422.) + (13529./976.)*Re - (1./71154.)*Re**2))) return Cd def Clift(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. If Re < 0.01: .. math:: C_D = \frac{24}{Re} + \frac{3}{16} If 0.01 < Re < 20: .. math:: C_D = \frac{24}{Re}(1 + 0.1315Re^{0.82 - 0.05\log_{10} Re}) If 20 < Re < 260: .. math:: C_D = \frac{24}{Re}(1 + 0.1935Re^{0.6305}) If 260 < Re < 1500: .. math:: C_D = 10^{[1.6435 - 1.1242\log_{10} Re + 0.1558[\log_{10} Re]^2} If 1500 < Re < 12000: .. math:: C_D = 10^{[-2.4571 + 2.5558\log_{10} Re - 0.9295[\log_{10} Re]^2 + 0.1049[\log_{10} Re]^3} If 12000 < Re < 44000: .. math:: C_D = 10^{[-1.9181 + 0.6370\log_{10} Re - 0.0636[\log_{10} Re]^2} If 44000 < Re < 338000: .. math:: C_D = 10^{[-4.3390 + 1.5809\log_{10} Re - 0.1546[\log_{10} Re]^2} If 338000 < Re < 400000: .. math:: C_D = 9.78 - 5.3\log_{10} Re If 400000 < Re < 1000000: .. math:: C_D = 0.19\log_{10} Re - 0.49 Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 1E6. Examples -------- >>> Clift(200) 0.7756342422322543 References ---------- .. [1] R. Clift, J.R. Grace, M.E. Weber, Bubbles, Drops, and Particles, Academic, New York, 1978. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' if Re < 0.01: return 24./Re + 3/16. elif Re < 20: return 24./Re*(1 + 0.1315*Re**(0.82 - 0.05*log10(Re))) elif Re < 260: return 24./Re*(1 + 0.1935*Re**(0.6305)) elif Re < 1500: return 10**(1.6435 - 1.1242*log10(Re) + 0.1558*(log10(Re))**2) elif Re < 12000: return 10**(-2.4571 + 2.5558*log10(Re) - 0.9295*(log10(Re))**2 + 0.1049*log10(Re)**3) elif Re < 44000: return 10**(-1.9181 + 0.6370*log10(Re) - 0.0636*(log10(Re))**2) elif Re < 338000: return 10**(-4.3390 + 1.5809*log10(Re) - 0.1546*(log10(Re))**2) elif Re < 400000: return 29.78 - 5.3*log10(Re) else: return 0.19*log10(Re) - 0.49 def Ceylan(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D = 1 - 0.5\exp(0.182) + 10.11Re^{-2/3}\exp(0.952Re^{-1/4}) - 0.03859Re^{-4/3}\exp(1.30Re^{-1/2}) + 0.037\times10^{-4}Re\exp(-0.125\times10^{-4}Re) -0.116\times10^{-10}Re^2\exp(-0.444\times10^{-5}Re) Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is 0.1 < Re <= 1E6 Original article reviewed. Examples -------- >>> Ceylan(200.) 0.7816735980280175 References ---------- .. [1] Ceylan, Kadim, AyÅŸe AltunbaÅŸ, and Gudret Kelbaliyev. "A New Model for Estimation of Drag Force in the Flow of Newtonian Fluids around Rigid or Deformable Particles." Powder Technology 119, no. 2-3 (September 24, 2001): 250-56. doi:10.1016/S0032-5910(01)00261-3. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' Cd = (1 - 0.5*exp(0.182) + 10.11*Re**(-2/3.)*exp(0.952/sqrt(sqrt(Re))) - 0.03859*Re**(-4/3.)*exp(1.30/sqrt(Re)) + 0.037E-4*Re*exp(-0.125E-4*Re) - 0.116E-10*Re**2*exp(-0.444E-5*Re)) return Cd def Almedeij(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D = \left[\frac{1}{(\phi_1 + \phi_2)^{-1} + (\phi_3)^{-1}} + \phi_4\right]^{0.1} .. math:: \phi_1 = (24Re^{-1})^{10} + (21Re^{-0.67})^{10} + (4Re^{-0.33})^{10} + 0.4^{10} .. math:: \phi_2 = \left[(0.148Re^{0.11})^{-10} + (0.5)^{-10}\right]^{-1} .. math:: \phi_3 = (1.57\times10^8Re^{-1.625})^{10} .. math:: \phi_4 = \left[(6\times10^{-17}Re^{2.63})^{-10} + (0.2)^{-10}\right]^{-1} Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 1E6. Original work has been reviewed. Examples -------- >>> Almedeij(200.) 0.7114768646813396 References ---------- .. [1] Almedeij, Jaber. "Drag Coefficient of Flow around a Sphere: Matching Asymptotically the Wide Trend." Powder Technology 186, no. 3 (September 10, 2008): 218-23. doi:10.1016/j.powtec.2007.12.006. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' phi4 = ((6E-17*Re**2.63)**-10 + 0.2**-10)**-1 phi3 = (1.57E8*Re**-1.625)**10 phi2 = ((0.148*Re**0.11)**-10 + 0.5**-10)**-1 phi1 = (24*Re**-1)**10 + (21*Re**-0.67)**10 + (4*Re**-0.33)**10 + 0.4**10 return (1/((phi1 + phi2)**-1 + phi3**-1) + phi4)**0.1 def Morrison(Re): r'''Calculates drag coefficient of a smooth sphere using the method in [1]_ as described in [2]_. .. math:: C_D = \frac{24}{Re} + \frac{2.6Re/5}{1 + \left(\frac{Re}{5}\right)^{1.52}} + \frac{0.411 \left(\frac{Re}{263000}\right)^{-7.94}}{1 + \left(\frac{Re}{263000}\right)^{-8}} + \frac{Re^{0.8}}{461000} Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Notes ----- Range is Re <= 1E6. Examples -------- >>> Morrison(200.) 0.767731559965325 References ---------- .. [1] Morrison, Faith A. An Introduction to Fluid Mechanics. Cambridge University Press, 2013. .. [2] Barati, Reza, Seyed Ali Akbar Salehi Neyshabouri, and Goodarz Ahmadi. "Development of Empirical Models with High Accuracy for Estimation of Drag Coefficient of Flow around a Smooth Sphere: An Evolutionary Approach." Powder Technology 257 (May 2014): 11-19. doi:10.1016/j.powtec.2014.02.045. ''' Cd = (24./Re + 2.6*Re/5./(1 + (Re/5.)**1.52) + 0.411*(Re/263000.)**-7.94/(1 + (Re/263000.)**-8) + Re**0.8/461000.) return Cd def Song_Xu(Re, sphericity=1., S=1.): r'''Calculates drag coefficient of a particle using the method in [1]_. Developed with data for spheres, cubes, and cylinders. Claims 3.52% relative error for 0.001 < Re < 100 based on 336 tests data. .. math:: C_d = \frac{24}{Re\phi^{0.65}S^{0.3}}\left(1 + 0.35Re\right)^{0.44} Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] sphericity : float, optional Sphericity of the particle S : float, optional Ratio of equivalent sphere area and the projected area in the particle settling direction [-] Returns ------- Cd : float Drag coefficient of particle [-] Notes ----- Notable as its experimental data and analysis is included in their supporting material. Examples -------- >>> Song_Xu(30.) 2.3431335190092444 References ---------- .. [1] Song, Xianzhi, Zhengming Xu, Gensheng Li, Zhaoyu Pang, and Zhaopeng Zhu. "A New Model for Predicting Drag Coefficient and Settling Velocity of Spherical and Non-Spherical Particle in Newtonian Fluid." Powder Technology 321 (November 2017): 242-50. doi:10.1016/j.powtec.2017.08.017. ''' return 24/(Re*sphericity**0.65*S**0.3)*(1+0.35*Re)**0.44 drag_sphere_correlations = { 'Stokes': (Stokes, None, 0.3), 'Barati': (Barati, None, 2E5), 'Barati_high': (Barati_high, None, 1E6), 'Rouse': (Rouse, None, 2E5), 'Engelund_Hansen': (Engelund_Hansen, None, 2E5), 'Clift_Gauvin': (Clift_Gauvin, None, 2E5), 'Morsi_Alexander': (Morsi_Alexander, None, 2E5), 'Graf': (Graf, None, 2E5), 'Flemmer_Banks': (Flemmer_Banks, None, 2E5), 'Khan_Richardson': (Khan_Richardson, None, 2E5), 'Swamee_Ojha': (Swamee_Ojha, None, 1.5E5), 'Yen': (Yen, None, 2E5), 'Haider_Levenspiel': (Haider_Levenspiel, None, 2E5), 'Cheng': (Cheng, None, 2E5), 'Terfous': (Terfous, 0.1, 5E4), 'Mikhailov_Freire': (Mikhailov_Freire, None, 118300), 'Clift': (Clift, None, 1E6), 'Ceylan': (Ceylan, 0.1, 1E6), 'Almedeij': (Almedeij, None, 1E6), 'Morrison': (Morrison, None, 1E6), 'Song_Xu': (Song_Xu, None, 1E3) } def drag_sphere_methods(Re, check_ranges=True): r'''This function returns a list of methods that can be used to calculate the drag coefficient of a sphere. Twenty one methods are available, all requiring only the Reynolds number of the sphere. Most methods are valid from Re=0 to Re=200,000. Examples -------- >>> len(drag_sphere_methods(200)) 20 >>> len(drag_sphere_methods(200000, check_ranges=False)) 21 >>> len(drag_sphere_methods(200000, check_ranges=True)) 5 Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] check_ranges : bool, optional Whether to return only correlations claiming to be valid for the given `Re` or not, [-] Returns ------- methods : list, only returned if AvailableMethods == True List of methods which can be used to calculate `Cd` with the given `Re` ''' methods = [] for key, (func, Re_min, Re_max) in drag_sphere_correlations.items(): if ((Re_min is None or Re > Re_min) and (Re_max is None or Re < Re_max)) or not check_ranges: methods.append(key) return methods def drag_sphere(Re, Method=None): r'''This function handles calculation of drag coefficient on spheres. Twenty methods are available, all requiring only the Reynolds number of the sphere. Most methods are valid from Re=0 to Re=200,000. A correlation will be automatically selected if none is specified. If no correlation is selected, the following rules are used: * If Re < 0.01, use Stoke's solution. * If 0.01 <= Re < 0.1, linearly combine 'Barati' with Stokes's solution such that at Re = 0.1 the solution is 'Barati', and at Re = 0.01 the solution is 'Stokes'. * If 0.1 <= Re <= ~212963, use the 'Barati' solution. * If ~212963 < Re <= 1E6, use the 'Barati_high' solution. * For Re > 1E6, raises an exception; no valid results have been found. Examples -------- >>> drag_sphere(200) 0.7682237950389874 Parameters ---------- Re : float Particle Reynolds number of the sphere using the surrounding fluid density and viscosity, [-] Returns ------- Cd : float Drag coefficient [-] Other Parameters ---------------- Method : string, optional A string of the function name to use, as in the dictionary drag_sphere_correlations ''' if Method is None: if Re > 0.1: # Smooth transition point between the two models if Re <= 212963.26847812787: return Barati(Re) elif Re <= 1E6: return Barati_high(Re) else: raise ValueError('No models implement a solution for Re > 1E6') elif Re >= 0.01: # Re from 0.01 to 0.1 ratio = (Re - 0.01)/(0.1 - 0.01) # Ensure a smooth transition by linearly switching to Stokes' law return ratio*Barati(Re) + (1-ratio)*Stokes(Re) else: return Stokes(Re) if Method == "Stokes": return Stokes(Re) elif Method == "Barati": return Barati(Re) elif Method == "Barati_high": return Barati_high(Re) elif Method == "Rouse": return Rouse(Re) elif Method == "Engelund_Hansen": return Engelund_Hansen(Re) elif Method == "Clift_Gauvin": return Clift_Gauvin(Re) elif Method == "Morsi_Alexander": return Morsi_Alexander(Re) elif Method == "Graf": return Graf(Re) elif Method == "Flemmer_Banks": return Flemmer_Banks(Re) elif Method == "Khan_Richardson": return Khan_Richardson(Re) elif Method == "Swamee_Ojha": return Swamee_Ojha(Re) elif Method == "Yen": return Yen(Re) elif Method == "Haider_Levenspiel": return Haider_Levenspiel(Re) elif Method == "Cheng": return Cheng(Re) elif Method == "Terfous": return Terfous(Re) elif Method == "Mikhailov_Freire": return Mikhailov_Freire(Re) elif Method == "Clift": return Clift(Re) elif Method == "Ceylan": return Ceylan(Re) elif Method == "Almedeij": return Almedeij(Re) elif Method == "Morrison": return Morrison(Re) elif Method == "Song_Xu": return Song_Xu(Re) else: raise ValueError('Unrecognized method') def _v_terminal_err(V, Method, Re_almost, main): Cd = drag_sphere(Re_almost*V, Method=Method) return V - sqrt(main/Cd) def v_terminal(D, rhop, rho, mu, Method=None): r'''Calculates terminal velocity of a falling sphere using any drag coefficient method supported by `drag_sphere`. The laminar solution for Re < 0.01 is first tried; if the resulting terminal velocity does not put it in the laminar regime, a numerical solution is used. .. math:: v_t = \sqrt{\frac{4 g d_p (\rho_p-\rho_f)}{3 C_D \rho_f }} Parameters ---------- D : float Diameter of the sphere, [m] rhop : float Particle density, [kg/m^3] rho : float Density of the surrounding fluid, [kg/m^3] mu : float Viscosity of the surrounding fluid [Pa*s] Method : string, optional A string of the function name to use, as in the dictionary drag_sphere_correlations Returns ------- v_t : float Terminal velocity of falling sphere [m/s] Notes ----- As there are no correlations implemented for Re > 1E6, an error will be raised if the numerical solver seeks a solution above that limit. The laminar solution is given in [1]_ and is: .. math:: v_t = \frac{g d_p^2 (\rho_p - \rho_f)}{18 \mu_f} Examples -------- >>> v_terminal(D=70E-6, rhop=2600., rho=1000., mu=1E-3) 0.004142497244531304 Example 7-1 in GPSA handbook, 13th edition: >>> from scipy.constants import * >>> v_terminal(D=150E-6, rhop=31.2*lb/foot**3, rho=2.07*lb/foot**3, mu=1.2e-05)/foot 0.4491992020345101 The answer reported there is 0.46 ft/sec. References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Rushton, Albert, Anthony S. Ward, and Richard G. Holdich. Solid-Liquid Filtration and Separation Technology. 1st edition. Weinheim ; New York: Wiley-VCH, 1996. ''' '''The following would be the ideal implementation. The actual function is optimized for speed, not readability def err(V): Re = rho*V*D/mu Cd = Barati_high(Re) V2 = (4/3.*g*D*(rhop-rho)/rho/Cd)**0.5 return (V-V2) return fsolve(err, 1.)''' v_lam = g*D*D*(rhop-rho)/(18*mu) Re_lam = Reynolds(V=v_lam, D=D, rho=rho, mu=mu) if Re_lam < 0.01 or Method == 'Stokes': return v_lam Re_almost = rho*D/mu main = 4/3.*g*D*(rhop-rho)/rho V_max = 1E6/rho/D*mu # where the correlation breaks down, Re=1E6 # Begin the solver with 1/100 th the velocity possible at the maximum # Reynolds number the correlation is good for return secant(_v_terminal_err, V_max*1e-2, xtol=1E-12, args=(Method, Re_almost, main)) def time_v_terminal_Stokes(D, rhop, rho, mu, V0, tol=1e-14): r'''Calculates the time required for a particle in Stoke's regime only to reach terminal velocity (approximately). An infinitely long period is required theoretically, but with floating points, it is possible to calculate the time required to come within a specified `tol` of that terminal velocity. .. math:: t_{term} = -\frac{1}{18\mu}\ln \left(\frac{D^2g\rho - D^2 g \rho_p + 18\mu V_{term}}{D^2g\rho - D^2 g \rho_p + 18\mu V_0 } \right) D^2 \rho_p Parameters ---------- D : float Diameter of the sphere, [m] rhop : float Particle density, [kg/m^3] rho : float Density of the surrounding fluid, [kg/m^3] mu : float Viscosity of the surrounding fluid [Pa*s] V0 : float Initial velocity of the particle, [m/s] tol : float, optional How closely to approach the terminal velocity - the target velocity is the terminal velocity multiplied by 1 (+/-) this, depending on if the particle is accelerating or decelerating, [-] Returns ------- t : float Time for the particle to reach the terminal velocity to within the specified or an achievable tolerance, [s] Notes ----- The symbolic solution was obtained via Wolfram Alpha. If a solution cannot be obtained due to floating point error at very high tolerance, an exception is raised - but first, the tolerance is doubled, up to fifty times in an attempt to obtain the highest possible precision while sill giving an answer. If at any point the tolerance is larger than 1%, an exception is also raised. Examples -------- >>> time_v_terminal_Stokes(D=1e-7, rhop=2200., rho=1.2, mu=1.78E-5, V0=1) 3.1880031137871528e-06 >>> time_v_terminal_Stokes(D=1e-2, rhop=2200., rho=1.2, mu=1.78E-5, V0=1, ... tol=1e-30) 24800.636391801996 ''' if tol < 1e-17: tol = 2e-17 term = D*D*g*rho - D*D*g*rhop denominator = term + 18.*mu*V0 v_term_base = g*D*D*(rhop-rho)/(18.*mu) const = D*D*rhop/mu*-1.0/18. for i in range(50): try: if v_term_base < V0: v_term = v_term_base*(1.0 + tol) else: v_term = v_term_base*(1.0 - tol) numerator = term + 18.*mu*v_term return log(numerator/denominator)*const except: tol = tol + tol if tol > 0.01: raise ValueError('Could not find a solution') raise ValueError('Could not find a solution') def integrate_drag_sphere(D, rhop, rho, mu, t, V=0, Method=None, distance=False): r'''Integrates the velocity and distance traveled by a particle moving at a speed which will converge to its terminal velocity. Performs an integration of the following expression for acceleration: .. math:: a = \frac{g(\rho_p-\rho_f)}{\rho_p} - \frac{3C_D \rho_f u^2}{4D \rho_p} Parameters ---------- D : float Diameter of the sphere, [m] rhop : float Particle density, [kg/m^3] rho : float Density of the surrounding fluid, [kg/m^3] mu : float Viscosity of the surrounding fluid [Pa*s] t : float Time to integrate the particle to, [s] V : float Initial velocity of the particle, [m/s] Method : string, optional A string of the function name to use, as in the dictionary drag_sphere_correlations distance : bool, optional Whether or not to calculate the distance traveled and return it as well Returns ------- v : float Velocity of falling sphere after time `t` [m/s] x : float, returned only if `distance` == True Distance traveled by the falling sphere in time `t`, [m] Notes ----- This can be relatively slow as drag correlations can be complex. There are analytical solutions available for the Stokes law regime (Re < 0.3). They were obtained from Wolfram Alpha. [1]_ was not used in the derivation, but also describes the derivation fully. .. math:: V(t) = \frac{\exp(-at) (V_0 a + b(\exp(at) - 1))}{a} .. math:: x(t) = \frac{\exp(-a t)\left[V_0 a(\exp(a t) - 1) + b\exp(a t)(a t-1) + b\right]}{a^2} .. math:: a = \frac{18\mu_f}{D^2\rho_p} .. math:: b = \frac{g(\rho_p-\rho_f)}{\rho_p} The analytical solution will automatically be used if the initial and terminal velocity is show the particle's behavior to be laminar. Note that this behavior requires that the terminal velocity of the particle be solved for - this adds slight (1%) overhead for the cases where particles are not laminar. Examples -------- >>> integrate_drag_sphere(D=0.001, rhop=2200., rho=1.2, mu=1.78E-5, t=0.5, ... V=30, distance=True) (9.68646, 7.82945) References ---------- .. [1] Timmerman, Peter, and Jacobus P. van der Weele. "On the Rise and Fall of a Ball with Linear or Quadratic Drag." American Journal of Physics 67, no. 6 (June 1999): 538-46. https://doi.org/10.1119/1.19320. ''' # Delayed import of necessaray functions from scipy.integrate import odeint, cumtrapz import numpy as np laminar_initial = Reynolds(V=V, rho=rho, D=D, mu=mu) < 0.01 v_laminar_end_assumed = v_terminal(D=D, rhop=rhop, rho=rho, mu=mu, Method=Method) laminar_end = Reynolds(V=v_laminar_end_assumed, rho=rho, D=D, mu=mu) < 0.01 if Method == 'Stokes' or (laminar_initial and laminar_end and Method is None): try: t1 = 18.0*mu/(D*D*rhop) t2 = g*(rhop-rho)/rhop V_end = exp(-t1*t)*(t1*V + t2*(exp(t1*t) - 1.0))/t1 x_end = exp(-t1*t)*(V*t1*(exp(t1*t) - 1.0) + t2*exp(t1*t)*(t1*t - 1.0) + t2)/(t1*t1) if distance: return V_end, x_end else: return V_end except OverflowError: # It is only necessary to integrate to terminal velocity t_to_terminal = time_v_terminal_Stokes(D, rhop, rho, mu, V0=V, tol=1e-9) if t_to_terminal > t: raise ValueError('Should never happen') V_end, x_end = integrate_drag_sphere(D=D, rhop=rhop, rho=rho, mu=mu, t=t_to_terminal, V=V, Method='Stokes', distance=True) # terminal velocity has been reached - V does not change, but x does # No reason to believe this isn't working even though it isn't # matching the ode solver if distance: return V_end, x_end + V_end*(t - t_to_terminal) else: return V_end # This is a serious problem for small diameters # It would be possible to step slowly, using smaller increments # of time to avlid overflows. However, this unfortunately quickly # gets much, exponentially, slower than just using odeint because # for example solving 10000 seconds might require steps of .0001 # seconds at a diameter of 1e-7 meters. # x = 0.0 # subdivisions = 10 # dt = t/subdivisions # for i in range(subdivisions): # V, dx = integrate_drag_sphere(D=D, rhop=rhop, rho=rho, mu=mu, # t=dt, V=V, distance=True, # Method=Method) # x += dx # if distance: # return V, x # else: # return V Re_ish = rho*D/mu c1 = g*(rhop-rho)/rhop c2 = -0.75*rho/(D*rhop) def dv_dt(V, t): if V == 0: # 64/Re goes to infinity, but gets multiplied by 0 squared. t2 = 0.0 else: # t2 = c2*V*V*Stokes(Re_ish*V) t2 = c2*V*V*drag_sphere(float(Re_ish*V), Method=Method) return c1 + t2 # Number of intervals for the solution to be solved for; the integrator # doesn't care what we give it, but a large number of intervals are needed # For an accurate integration of the particle's distance traveled pts = 1000 if distance else 2 ts = np.linspace(0, t, pts) # Perform the integration Vs = odeint(dv_dt, [V], ts) # V_end = float(Vs[-1]) if distance: # Calculate the distance traveled x = float(cumtrapz(np.ravel(Vs), ts)[-1]) return V_end, x else: return V_end fluids-1.0.22/fluids/jet_pump.py0000644000175000017500000007253214302004506016076 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2018, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains a model for a jet pump, also known as an eductor or an ejector. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Interfaces ---------- .. autofunction:: liquid_jet_pump Objective Function ------------------ .. autofunction:: liquid_jet_pump_ancillary Vacuum Air Leakage Estimation ----------------------------- .. autofunction:: vacuum_air_leakage_HEI2633 .. autofunction:: vacuum_air_leakage_Ryans_Croll .. autofunction:: vacuum_air_leakage_Coker_Worthington .. autofunction:: vacuum_air_leakage_Seider """ from __future__ import division from math import log, pi, sqrt, exp from fluids.constants import foot_cubed_inv, torr_inv, mmHg_inv, lb, hour_inv, inchHg from fluids.numerics import brenth, secant, numpy as np __all__ = ['liquid_jet_pump', 'liquid_jet_pump_ancillary', 'vacuum_air_leakage_Seider', 'vacuum_air_leakage_Coker_Worthington', 'vacuum_air_leakage_HEI2633', 'vacuum_air_leakage_Ryans_Croll'] def liquid_jet_pump_ancillary(rhop, rhos, Kp, Ks, d_nozzle=None, d_mixing=None, Qp=None, Qs=None, P1=None, P2=None): r'''Calculates the remaining variable in a liquid jet pump when solving for one if the inlet variables only and the rest of them are known. The equation comes from conservation of energy and momentum in the mixing chamber. The variable to be solved for must be one of `d_nozzle`, `d_mixing`, `Qp`, `Qs`, `P1`, or `P2`. .. math:: P_1 - P_2 = \frac{1}{2}\rho_pV_n^2(1+K_p) - \frac{1}{2}\rho_s V_3^2(1+K_s) Rearrange to express V3 in terms of Vn, and using the density ratio `C`, the expression becomes: .. math:: P_1 - P_2 = \frac{1}{2}\rho_p V_n^2\left[(1+K_p) - C(1+K_s) \left(\frac{MR}{1-R}\right)^2\right] Using the primary nozzle area and flow rate: .. math:: P_1 - P_2 = \frac{1}{2}\rho_p \left(\frac{Q_p}{A_n}\right)^2 \left[(1+K_p) - C(1+K_s) \left(\frac{MR}{1-R}\right)^2\right] For `P`, `P2`, `Qs`, and `Qp`, the equation can be rearranged explicitly for them. For `d_mixing` and `d_nozzle`, a bounded solver is used searching between 1E-9 m and 20 times the other diameter which was specified. Parameters ---------- rhop : float The density of the primary (motive) fluid, [kg/m^3] rhos : float The density of the secondary fluid (drawn from the vacuum chamber), [kg/m^3] Kp : float The primary nozzle loss coefficient, [-] Ks : float The secondary inlet loss coefficient, [-] d_nozzle : float, optional The inside diameter of the primary fluid's nozle, [m] d_mixing : float, optional The diameter of the mixing chamber, [m] Qp : float, optional The volumetric flow rate of the primary fluid, [m^3/s] Qs : float, optional The volumetric flow rate of the secondary fluid, [m^3/s] P1 : float, optional The pressure of the primary fluid entering its nozzle, [Pa] P2 : float, optional The pressure of the secondary fluid at the entry of the ejector, [Pa] Returns ------- solution : float The parameter not specified (one of `d_nozzle`, `d_mixing`, `Qp`, `Qs`, `P1`, or `P2`), (units of `m`, `m`, `m^3/s`, `m^3/s`, `Pa`, or `Pa` respectively) Notes ----- The following SymPy code was used to obtain the analytical formulas ( they are not shown here due to their length): >>> from sympy import * # doctest: +SKIP >>> A_nozzle, A_mixing, Qs, Qp, P1, P2, rhos, rhop, Ks, Kp = symbols('A_nozzle, A_mixing, Qs, Qp, P1, P2, rhos, rhop, Ks, Kp') # doctest: +SKIP >>> R = A_nozzle/A_mixing # doctest: +SKIP >>> M = Qs/Qp # doctest: +SKIP >>> C = rhos/rhop # doctest: +SKIP >>> rhs = rhop/2*(Qp/A_nozzle)**2*((1+Kp) - C*(1 + Ks)*((M*R)/(1-R))**2 ) # doctest: +SKIP >>> new = Eq(P1 - P2, rhs) # doctest: +SKIP >>> solve(new, Qp) # doctest: +SKIP >>> solve(new, Qs) # doctest: +SKIP >>> solve(new, P1) # doctest: +SKIP >>> solve(new, P2) # doctest: +SKIP Examples -------- Calculating primary fluid nozzle inlet pressure P1: >>> liquid_jet_pump_ancillary(rhop=998., rhos=1098., Ks=0.11, Kp=.04, ... P2=133600, Qp=0.01, Qs=0.01, d_mixing=0.045, d_nozzle=0.02238) 426434.60314398 References ---------- .. [1] Ejectors and Jet Pumps. Design and Performance for Incompressible Liquid Flow. 85032. ESDU International PLC, 1985. ''' unknowns = sum(i is None for i in (d_nozzle, d_mixing, Qs, Qp, P1, P2)) if unknowns > 1: raise ValueError('Too many unknowns') elif unknowns < 1: raise ValueError('Overspecified') C = rhos/rhop if Qp is not None and Qs is not None: M = Qs/Qp if d_nozzle is not None: A_nozzle = pi/4*d_nozzle*d_nozzle if d_mixing is not None: A_mixing = pi/4*d_mixing*d_mixing R = A_nozzle/A_mixing if P1 is None: return rhop/2*(Qp/A_nozzle)**2*((1+Kp) - C*(1 + Ks)*((M*R)/(1-R))**2 ) + P2 elif P2 is None: return -rhop/2*(Qp/A_nozzle)**2*((1+Kp) - C*(1 + Ks)*((M*R)/(1-R))**2 ) + P1 elif Qs is None: try: return sqrt((-2*A_nozzle**2*P1 + 2*A_nozzle**2*P2 + Kp*Qp**2*rhop + Qp**2*rhop)/(C*rhop*(Ks + 1)))*(A_mixing - A_nozzle)/A_nozzle except ValueError: return -1j elif Qp is None: return A_nozzle*sqrt((2*A_mixing**2*P1 - 2*A_mixing**2*P2 - 4*A_mixing*A_nozzle*P1 + 4*A_mixing*A_nozzle*P2 + 2*A_nozzle**2*P1 - 2*A_nozzle**2*P2 + C*Ks*Qs**2*rhop + C*Qs**2*rhop)/(rhop*(Kp + 1)))/(A_mixing - A_nozzle) elif d_nozzle is None: def err(d_nozzle): return P1 - liquid_jet_pump_ancillary(rhop=rhop, rhos=rhos, Kp=Kp, Ks=Ks, d_nozzle=d_nozzle, d_mixing=d_mixing, Qp=Qp, Qs=Qs, P1=None, P2=P2) return brenth(err, 1E-9, d_mixing*20) elif d_mixing is None: def err(d_mixing): return P1 - liquid_jet_pump_ancillary(rhop=rhop, rhos=rhos, Kp=Kp, Ks=Ks, d_nozzle=d_nozzle, d_mixing=d_mixing, Qp=Qp, Qs=Qs, P1=None, P2=P2) try: return brenth(err, 1E-9, d_nozzle*20) except: return secant(err, d_nozzle*2) def liquid_jet_pump_pressure_ratio(rhop, rhos, Km, Kd, Ks, Kp, d_nozzle=None, d_mixing=None, d_diffuser=None, Qp=None, Qs=None, P1=None, P2=None, P5=None, nozzle_retracted=True): C = rhos/rhop if nozzle_retracted: j = 0.0 else: j = 1.0 R = d_nozzle**2/d_mixing**2 alpha = d_mixing**2/d_diffuser**2 M = Qs/Qp M2, R2, alpha2 = M*M, R*R, alpha*alpha num = 2.0*R + 2*C*M2*R2/(1.0 - R) num -= R2*(1.0 + C*M)*(1.0 + M)*(1.0 + Km + Kd + alpha2) num -= C*M2*R2/(1.0 - R)**2*(1.0 + Ks) den = (1.0 + Kp) - 2.0*R - 2.0*C*M2*R2/(1.0 - R) den += R2*(1.0 + C*M)*(1.0 + M)*(1.0 + Km + Kd + alpha2) den += (1.0 - j)*(C*M2/((1.0 - R)/R)**2)*(1.0 - Ks) N = num/den if P1 is None: P1 = (-P2 + P5*N + P5)/N elif P2 is None: P2 = -P1*N + P5*N + P5 elif P5 is None: P5 = (P1*N + P2)/(N + 1.0) else: return N - (P5 - P2)/(P1 - P5) solution = {} solution['P1'] = P1 solution['P2'] = P2 solution['P5'] = P5 # solution['d_nozzle'] = d_nozzle # solution['d_mixing'] = d_mixing # solution['d_diffuser'] = d_diffuser # solution['Qs'] = Qs # solution['Qp'] = Qp # solution['N'] = N # solution['M'] = M # solution['R'] = R # solution['alpha'] = alpha # solution['efficiency'] = M*N return solution def liquid_jet_pump(rhop, rhos, Kp=0.0, Ks=0.1, Km=.15, Kd=0.1, d_nozzle=None, d_mixing=None, d_diffuser=None, Qp=None, Qs=None, P1=None, P2=None, P5=None, nozzle_retracted=True, max_variations=100): r'''Calculate the remaining two variables in a liquid jet pump, using a model presented in [1]_ as well as [2]_, [3]_, and [4]_. .. math:: N = \frac{2R + \frac{2 C M^2 R^2}{1-R} - R^2 (1+CM) (1+M) (1 + K_m + K_d + \alpha^2) - \frac{CM^2R^2}{(1-R)^2} (1+K_s)} {(1+K_p) - 2R - \frac{2CM^2R^2}{1-R} + R^2(1+CM)(1+M)(1+K_m + K_d + \alpha^2) + (1-j)\left(\frac{CM^2R^2}{({1-R})^2} \right)(1+K_s)} .. math:: P_1 - P_2 = \frac{1}{2}\rho_p \left(\frac{Q_p}{A_n}\right)^2 \left[(1+K_p) - C(1+K_s) \left(\frac{MR}{1-R}\right)^2\right] .. math:: \text{Pressure ratio} = N = \frac{P_5 - P_2}{P_1 - P_5} .. math:: \text{Volume flow ratio} = M = \frac{Q_s}{Q_p} .. math:: \text{Jet pump efficiency} = \eta = M\cdot N = \frac{Q_s(P_5-P_2)}{Q_p(P_1 - P_5)} .. math:: R = \frac{A_n}{A_m} .. math:: C = \frac{\rho_s}{\rho_p} There is no guarantee a solution will be found for the provided variable values, but every combination of two missing variables are supported. Parameters ---------- rhop : float The density of the primary (motive) fluid, [kg/m^3] rhos : float The density of the secondary fluid (drawn from the vacuum chamber), [kg/m^3] Kp : float, optional The primary nozzle loss coefficient, [-] Ks : float, optional The secondary inlet loss coefficient, [-] Km : float, optional The mixing chamber loss coefficient, [-] Kd : float, optional The diffuser loss coefficient, [-] d_nozzle : float, optional The inside diameter of the primary fluid's nozle, [m] d_mixing : float, optional The diameter of the mixing chamber, [m] d_diffuser : float, optional The diameter of the diffuser at its exit, [m] Qp : float, optional The volumetric flow rate of the primary fluid, [m^3/s] Qs : float, optional The volumetric flow rate of the secondary fluid, [m^3/s] P1 : float, optional The pressure of the primary fluid entering its nozzle, [Pa] P2 : float, optional The pressure of the secondary fluid at the entry of the ejector, [Pa] P5 : float, optional The pressure at the exit of the diffuser, [Pa] nozzle_retracted : bool, optional Whether or not the primary nozzle's exit is before the mixing chamber, or somewhat inside it, [-] max_variations : int, optional When the initial guesses do not lead to a converged solution, try this many more guesses at converging the problem, [-] Returns ------- solution : dict Dictionary of calculated parameters, [-] Notes ----- The assumptions of the model are: * The flows are one dimensional except in the mixing chamber. * The mixing chamber has constant cross-sectional area. * The mixing happens entirely in the mixing chamber, prior to entry into the diffuser. * The primary nozzle is in a straight line with the middle of the mixing chamber. * Both fluids are incompressible, and have no excess volume on mixing. * Primary and secondary flows both enter the mixing throat with their own uniform velocity distribution; the mixed stream leaves with a uniform velocity profile. * If the secondary fluid is a gas, it undergoes isothermal compression in the throat and diffuser. * If the secondary fluid is a gas or contains a bubbly gas, it is homogeneously distributed in a continuous liquid phase. * Heat transfer between the fluids is negligible - there is no change in density due to temperature changes * The change in the solubility of a dissolved gas, if there is one, is negigibly changed by temperature or pressure changes. The model can be derived from the equations in :py:func:`~.liquid_jet_pump_ancillary` and the following: Conservation of energy at the primary nozzle, secondary inlet, and diffuser exit: .. math:: P_1 = P_3 + \frac{1}{2}\rho_p V_n^2 + K_p\left(\frac{1}{2}\rho_p V_n^2\right) .. math:: P_2 = P_3 + \frac{1}{2}\rho_s V_3^2 + K_s\left(\frac{1}{2}\rho_s V_3^2\right) .. math:: P_5 = P_4 + \frac{1}{2}\rho_d V_4^2 - K_d\left(\frac{1}{2}\rho_d V_4^2\right) The mixing chamber loss coefficient should be obtained through the following expression, using the mixing chamber exit velocity to obtain the friction factor. .. math:: K_m = \frac{4f_d L}{D} .. math:: K_d = \frac{P_4 - P_5}{0.5 \rho_d V_4^2} = 1 - \left(\frac{A_4}{A_5} \right)^2 - C_{pr} .. math:: K_s = \frac{P_2 - P_3}{0.5\rho_s V_3^2} - 1 .. math:: K_p = \frac{P_1 - P_n}{0.5\rho_p V_n^2} - 1 Continuity of the ejector: .. math:: \rho_p Q_p + \rho_s Q_s = \rho_d Q_d Examples -------- >>> ans = liquid_jet_pump(rhop=998., rhos=1098., Km=.186, Kd=0.12, Ks=0.11, ... Kp=0.04, d_mixing=0.045, Qs=0.01, Qp=.01, P2=133600, ... P5=200E3, nozzle_retracted=False, max_variations=10000) >>> s = [] >>> for key, value in ans.items(): ... s.append('%s: %g' %(key, value)) >>> sorted(s) ['M: 1', 'N: 0.293473', 'P1: 426256', 'P2: 133600', 'P5: 200000', 'Qp: 0.01', 'Qs: 0.01', 'R: 0.247404', 'alpha: 1e-06', 'd_diffuser: 45', 'd_mixing: 0.045', 'd_nozzle: 0.0223829', 'efficiency: 0.293473'] References ---------- .. [1] Karassik, Igor J., Joseph P. Messina, Paul Cooper, and Charles C. Heald. Pump Handbook. 4th edition. New York: McGraw-Hill Education, 2007. .. [2] Winoto S. H., Li H., and Shah D. A. "Efficiency of Jet Pumps." Journal of Hydraulic Engineering 126, no. 2 (February 1, 2000): 150-56. https://doi.org/10.1061/(ASCE)0733-9429(2000)126:2(150). .. [3] Elmore, Emily, Khalid Al-Mutairi, Bilal Hussain, and A. Sheriff El-Gizawy. "Development of Analytical Model for Predicting Dual-Phase Ejector Performance," November 11, 2016, V007T09A013. .. [4] Ejectors and Jet Pumps. Design and Performance for Incompressible Liquid Flow. 85032. ESDU International PLC, 1985. ''' from random import uniform, seed solution_vars = ['d_nozzle', 'd_mixing', 'Qp', 'Qs', 'P1', 'P2', 'P5'] unknown_vars = [] for i in solution_vars: if locals()[i] is None: unknown_vars.append(i) if len(unknown_vars) > 2: raise ValueError('Too many unknowns') elif len(unknown_vars) < 2: raise ValueError('Overspecified') vals = {'d_nozzle': d_nozzle, 'd_mixing': d_mixing, 'Qp': Qp, 'Qs': Qs, 'P1': P1, 'P2': P2, 'P5': P5} var_guesses = [] # Initial guess algorithms for each variable here # No clever algorithms invented yet for v in unknown_vars: if v == 'd_nozzle': try: var_guesses.append(d_mixing*0.4) except: var_guesses.append(0.01) if v == 'd_mixing': try: var_guesses.append(d_nozzle*2) except: var_guesses.append(0.02) elif v == 'P1': try: var_guesses.append(P2*5) except: var_guesses.append(P5*5) elif v == 'P2': try: var_guesses.append((P1 + P5)*0.5) except: try: var_guesses.append(P1/1.1) except: var_guesses.append(P5*1.25) elif v == 'P5': try: var_guesses.append(P1*1.12) except: var_guesses.append(P2*1.12) elif v == 'Qp': try: var_guesses.append(Qs*1.04) except: var_guesses.append(0.01) elif v == 'Qs': try: var_guesses.append(Qp*0.5) except: var_guesses.append(0.01) C = rhos/rhop if nozzle_retracted: j = 0.0 else: j = 1.0 # The diffuser diameter, if not specified, is set to a very large diameter # so as to not alter the results if d_diffuser is None: if d_mixing is not None: d_diffuser = d_mixing*1E3 elif d_nozzle is not None: d_diffuser = d_nozzle*1E3 else: d_diffuser = 1000.0 vals['d_diffuser'] = d_diffuser def obj_err(val): # Use the dictionary `vals` to keep track of the currently iterating # variables for i, v in zip(unknown_vars, val): vals[i] = abs(float(v)) # Keep the pressure limits sane # if 'P1' in unknown_vars: # if 'P5' not in unknown_vars: # vals['P1'] = max(vals['P1'], 1.001*vals['P5']) # elif 'P2' not in unknown_vars: # vals['P1'] = max(vals['P1'], 1.001*vals['P2']) # if 'P2' in unknown_vars: # if 'P1' not in unknown_vars: # vals['P2'] = min(vals['P2'], 0.999*vals['P1']) # if 'P5' not in unknown_vars: # vals['P2'] = max(vals['P2'], 1.001*vals['P2']) # Prelimary numbers A_nozzle = pi/4*vals['d_nozzle']**2 alpha = vals['d_mixing']**2/d_diffuser**2 R = vals['d_nozzle']**2/vals['d_mixing']**2 M = vals['Qs']/vals['Qp'] err1 = liquid_jet_pump_pressure_ratio(rhop=rhop, rhos=rhos, Km=Km, Kd=Kd, Ks=Ks, Kp=Kp, d_nozzle=vals['d_nozzle'], d_mixing=vals['d_mixing'], Qs=vals['Qs'], Qp=vals['Qp'], P2=vals['P2'], P1=vals['P1'], P5=vals['P5'], nozzle_retracted=nozzle_retracted, d_diffuser=d_diffuser) rhs = rhop/2.0*(vals['Qp']/A_nozzle)**2*((1.0 + Kp) - C*(1.0 + Ks)*((M*R)/(1.0 - R))**2 ) err2 = rhs - (vals['P1'] - vals['P2']) vals['N'] = N = (vals['P5'] - vals['P2'])/(vals['P1']-vals['P5']) vals['M'] = M vals['R'] = R vals['alpha'] = alpha vals['efficiency'] = M*N if vals['efficiency'] < 0: if err1 < 0: err1 -= abs(vals['efficiency']) else: err1 += abs(vals['efficiency']) if err2 < 0: err2 -= abs(vals['efficiency']) else: err2 += abs(vals['efficiency']) # elif vals['N'] < 0: # err1, err2 = abs(vals['N']) + err1, abs(vals['N']) + err2 # print(err1, err2) return err1, err2 # Only one unknown var if 'P5' in unknown_vars: ancillary = liquid_jet_pump_ancillary(rhop=rhop, rhos=rhos, Kp=Kp, Ks=Ks, d_nozzle=d_nozzle, d_mixing=d_mixing, Qp=Qp, Qs=Qs, P1=P1, P2=P2) if unknown_vars[0] == 'P5': vals[unknown_vars[1]] = ancillary else: vals[unknown_vars[0]] = ancillary vals['P5'] = liquid_jet_pump_pressure_ratio(rhop=rhop, rhos=rhos, Km=Km, Kd=Kd, Ks=Ks, Kp=Kp, d_nozzle=vals['d_nozzle'], d_mixing=vals['d_mixing'], Qs=vals['Qs'], Qp=vals['Qp'], P2=vals['P2'], P1=vals['P1'], P5=None, nozzle_retracted=nozzle_retracted, d_diffuser=d_diffuser)['P5'] # Compute the remaining parameters obj_err([vals[unknown_vars[0]], vals[unknown_vars[1]]]) return vals with np.errstate(all='ignore'): from scipy.optimize import fsolve, root def solve_with_fsolve(var_guesses): res = fsolve(obj_err, var_guesses, full_output=True) if sum(abs(res[1]['fvec'])) > 1E-7: raise ValueError('Could not solve') for u, v in zip(unknown_vars, res[0].tolist()): vals[u] = abs(v) return vals try: return solve_with_fsolve(var_guesses) except: pass # Tying different guesses with fsolve is faster than trying different solvers for meth in ['hybr', 'lm', 'broyden1', 'broyden2']: # try: res = root(obj_err, var_guesses, method=meth, tol=1E-9) if sum(abs(res['fun'])) > 1E-7: raise ValueError('Could not solve') for u, v in zip(unknown_vars, res['x'].tolist()): vals[u] = abs(v) return vals except (ValueError, OverflowError): continue # Just do variations on this until it works for _ in range(int(max_variations/8)): for idx in [0, 1]: for r in [(1, 10), (0.1, 1)]: i = uniform(*r) try: l = list(var_guesses) l[idx] = l[idx]*i return solve_with_fsolve(l) except: pass # Vary both parameters at once for _ in range(int(max_variations/8)): for r in [(1, 10), (0.1, 1)]: i = uniform(*r) for s in [(1, 10), (0.1, 1)]: j = uniform(*s) try: l = list(var_guesses) l[0] = l[0]*i l[1] = l[1]*j return solve_with_fsolve(l) except: pass raise ValueError('Could not solve') def vacuum_air_leakage_Ryans_Croll(V, P, P_atm=101325.0): r'''Calculates an estimated leakage of air into a vessel using a correlation from Ryans and Croll (1981) [1]_ as given in [2]_ and [3]_. if P < 10 torr: .. math:: W = 0.026P^{0.34}V^{0.6} if P < 100 torr: .. math:: W = 0.032P^{0.26}V^{0.6} else: .. math:: W = 0.106V^{0.6} In the above equation, the units are lb/hour, torr (vacuum), and cubic feet; they are converted in this function. Parameters ---------- V : float Vessel volume, [m^3] P : float Vessel actual absolute operating pressure - less than `P_atm`!, [Pa] P_atm : float, optional The atmospheric pressure surrounding the vessel, [Pa] Returns ------- m : float Air leakage flow rate, [kg/s] Notes ----- No limits are applied to this function. Examples -------- >>> vacuum_air_leakage_Ryans_Croll(10, 10000) 0.0004512 References ---------- .. [1] Ryans, J. L. and Croll, S. "Selecting Vacuum Systems," 1981. .. [2] Coker, Kayode. Ludwig's Applied Process Design for Chemical and Petrochemical Plants. 4 edition. Amsterdam ; Boston: Gulf Professional Publishing, 2007. .. [3] Govoni, Patrick. "An Overview of Vacuum System Design" Chemical Engineering Magazine, September 2017. ''' V *= foot_cubed_inv P *= torr_inv P_atm *= torr_inv P_vacuum = P_atm - P if P_vacuum < 10: air_leakage = 0.026*P_vacuum**0.34*V**0.6 elif P_vacuum < 100: air_leakage = 0.032*P_vacuum**0.26*V**0.6 else: air_leakage = 0.106*V**0.6 leakage = air_leakage*lb*hour_inv return leakage def vacuum_air_leakage_Seider(V, P, P_atm=101325.0): r'''Calculates an estimated leakage of air into a vessel using a correlation from Seider [1]_. .. math:: W = 5 + \left[ 0.0298 + 0.03088\ln P - 0.0005733(\ln P)^2 \right]V^{0.66} In the above equation, the units are lb/hour, torr (vacuum), and cubic feet; they are converted in this function. Parameters ---------- V : float Vessel volume, [m^3] P : float Vessel actual absolute operating pressure - less than `P_atm`!, [Pa] P_atm : float, optional The atmospheric pressure surrounding the vessel, [Pa] Returns ------- m : float Air leakage flow rate, [kg/s] Notes ----- This formula is rough. Examples -------- >>> vacuum_air_leakage_Seider(10, 10000) 0.0018775547 References ---------- .. [1] Seider, Warren D., J. D. Seader, and Daniel R. Lewin. Product and Process Design Principles: Synthesis, Analysis, and Evaluation. 2nd edition. New York: Wiley, 2003. ''' P *= torr_inv P_atm *= torr_inv P_vacuum = P_atm - P V *= foot_cubed_inv lnP = log(P_vacuum) leakage_lb_hr = 5.0 + (0.0289 + 0.03088*lnP - 0.0005733*lnP*lnP)*V**0.66 leakage = leakage_lb_hr*lb*hour_inv return leakage def vacuum_air_leakage_HEI2633(V, P, P_atm=101325.0): r'''Calculates an estimated leakage of air into a vessel using fits to a graph of HEI-2633-00 for air leakage in commercially `tight` vessels [1]_. There are 5 fits, for < 1 mmHg; 1-3 mmHg; 3-20 mmHg, 20-90 mmHg, and 90 mmHg to atmospheric. The fits are for `maximum` air leakage. Actual values may be significantly larger or smaller depending on the condition of the seals, manufacturing defects, and the application. Parameters ---------- V : float Vessel volume, [m^3] P : float Vessel actual absolute operating pressure - less than `P_atm`!, [Pa] P_atm : float, optional The atmospheric pressure surrounding the vessel, [Pa] Returns ------- m : float Air leakage flow rate, [kg/s] Notes ----- The volume is capped to 10 ft^3 on the low end, but extrapolation past the maximum size of 10000 ft^3 is allowed. It is believed :obj:`vacuum_air_leakage_Seider` was derived from this data, so this function should be used in preference to it. Examples -------- >>> vacuum_air_leakage_HEI2633(10, 10000) 0.001186252403781038 References ---------- .. [1] "Standards for Steam Jet Vacuum Systems", 5th Edition ''' P_atm *= mmHg_inv P *= mmHg_inv P_vacuum = P_atm - P V *= foot_cubed_inv if V < 10: V = 10.0 logV = log(V) if P_vacuum <= 1: c0, c1 = 0.6667235169997174, -3.71246576520232 elif P_vacuum <= 3: c0, c1 = 0.664489357445796, -3.0147277548691274 elif P_vacuum <= 20: c0, c1 = 0.6656780453394583, -2.34007321331419 elif P_vacuum <= 90: c0, c1 = 0.663080000739313, -1.9278288516732665 else: c0, c1 = 0.6658471905826482, -1.6641585778506027 leakage_lb_hr = exp(c1 + logV*c0) leakage = leakage_lb_hr*lb*hour_inv return leakage def vacuum_air_leakage_Coker_Worthington(P, P_atm=101325.0, conservative=True): r'''Calculates an estimated leakage of air into a vessel using a tabular lookup from Coker cited as being from Worthington Corp's 1955 Steam-Jet Ejector Application Handbook, Bulletin W-205-E21 [1]_. Parameters ---------- P : float Vessel actual absolute operating pressure - less than `P_atm`!, [Pa] P_atm : float, optional The atmospheric pressure surrounding the vessel, [Pa] conservative : bool Whether to use the high values or low values in the table, [-] Returns ------- m : float Air leakage flow rate, [kg/s] Notes ----- Examples -------- >>> vacuum_air_leakage_Coker_Worthington(10000) 0.005039915222222222 References ---------- .. [1] Coker, Kayode. Ludwig's Applied Process Design for Chemical and Petrochemical Plants. 4 edition. Amsterdam ; Boston: Gulf Professional Publishing, 2007. ''' P /= inchHg # convert to inch Hg P_atm /= inchHg # convert to inch Hg P_vacuum = P_atm - P if conservative: if P_vacuum > 8: leakage = 40 elif P_vacuum > 5: leakage = 30 elif P_vacuum > 3: leakage = 25 else: leakage = 20 else: if P_vacuum > 8: leakage = 30 elif P_vacuum > 5: leakage = 25 elif P_vacuum > 3: leakage = 20 else: leakage = 10 leakage = leakage*lb*hour_inv return leakage fluids-1.0.22/fluids/open_flow.py0000644000175000017500000006444214302004506016244 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains functionality for calculating the flow rate of fluids in open channels. The Manning and Chezy methods are implemented Weirs as well as several calculations for flow rate over weirs. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Weirs ----- .. autofunction:: Q_weir_V_Shen .. autofunction:: Q_weir_rectangular_Kindsvater_Carter .. autofunction:: Q_weir_rectangular_SIA .. autofunction:: Q_weir_rectangular_full_Ackers .. autofunction:: Q_weir_rectangular_full_SIA .. autofunction:: Q_weir_rectangular_full_Rehbock .. autofunction:: Q_weir_rectangular_full_Kindsvater_Carter Manning and Chezy Equations --------------------------- .. autofunction:: V_Manning .. autofunction:: V_Chezy .. autofunction:: n_Manning_to_C_Chezy .. autofunction:: C_Chezy_to_n_Manning Manning Coefficients -------------------- .. autodata:: n_natural .. autodata:: n_excavated_dredged .. autodata:: n_lined_built .. autodata:: n_closed_conduit .. autodata:: n_dicts """ from __future__ import division from math import tan, radians, sqrt from fluids.constants import g from fluids.numerics import interp __all__ = ['Q_weir_V_Shen', 'Q_weir_rectangular_Kindsvater_Carter', 'Q_weir_rectangular_SIA', 'Q_weir_rectangular_full_Ackers', 'Q_weir_rectangular_full_SIA', 'Q_weir_rectangular_full_Rehbock', 'Q_weir_rectangular_full_Kindsvater_Carter', 'V_Manning', 'n_Manning_to_C_Chezy', 'C_Chezy_to_n_Manning', 'V_Chezy', 'n_natural', 'n_excavated_dredged', 'n_lined_built', 'n_closed_conduit', 'n_dicts'] nape_types = ['free', 'depressed', 'clinging'] flow_types = ['aerated', 'partially aerated', 'unaerated'] weir_types = ['V-notch', 'rectangular', 'rectangular full-channel', 'Cipoletti', 'broad-crested', 'Ogee'] angles_Shen = [20, 40, 60, 80, 100] Cs_Shen = [0.59, 0.58, 0.575, 0.575, 0.58] k_Shen = [0.0028, 0.0017, 0.0012, 0.001, 0.001] ### V-Notch Weirs (Triangular weir) def Q_weir_V_Shen(h1, angle=90): r'''Calculates the flow rate across a V-notch (triangular) weir from the height of the liquid above the tip of the notch, and with the angle of the notch. Most of these type of weir are 90 degrees. Model from [1]_ as reproduced in [2]_. Flow rate is given by: .. math:: Q = C \tan\left(\frac{\theta}{2}\right)\sqrt{g}(h_1 + k)^{2.5} Parameters ---------- h1 : float Height of the fluid above the notch [m] angle : float, optional Angle of the notch [degrees] Returns ------- Q : float Volumetric flow rate across the weir [m^3/s] Notes ----- angles = [20, 40, 60, 80, 100] Cs = [0.59, 0.58, 0.575, 0.575, 0.58] k = [0.0028, 0.0017, 0.0012, 0.001, 0.001] The following limits apply to the use of this equation: h1 >= 0.05 m h2 > 0.45 m h1/h2 <= 0.4 m b > 0.9 m .. math:: \frac{h_1}{b}\tan\left(\frac{\theta}{2}\right) < 2 Flows are lower than obtained by the curves at http://www.lmnoeng.com/Weirs/vweir.php. Examples -------- >>> Q_weir_V_Shen(0.6, angle=45) 0.21071725775478 References ---------- .. [1] Shen, John. "Discharge Characteristics of Triangular-Notch Thin-Plate Weirs : Studies of Flow to Water over Weirs and Dams." USGS Numbered Series. Water Supply Paper. U.S. Geological Survey : U.S. G.P.O., 1981 .. [2] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' C = interp(angle, angles_Shen, Cs_Shen) k = interp(angle, angles_Shen, k_Shen) return C*tan(radians(angle)/2)*sqrt(g)*(h1 + k)**2.5 ### Rectangular Weirs def Q_weir_rectangular_Kindsvater_Carter(h1, h2, b): r'''Calculates the flow rate across rectangular weir from the height of the liquid above the crest of the notch, the liquid depth beneath it, and the width of the notch. Model from [1]_ as reproduced in [2]_. Flow rate is given by: .. math:: Q = 0.554\left(1 - 0.0035\frac{h_1}{h_2}\right)(b + 0.0025) \sqrt{g}(h_1 + 0.0001)^{1.5} Parameters ---------- h1 : float Height of the fluid above the crest of the weir [m] h2 : float Height of the fluid below the crest of the weir [m] b : float Width of the rectangular flow section of the weir [m] Returns ------- Q : float Volumetric flow rate across the weir [m^3/s] Notes ----- The following limits apply to the use of this equation: b/b1 ≤ 0.2 h1/h2 < 2 b > 0.15 m h1 > 0.03 m h2 > 0.1 m Examples -------- >>> Q_weir_rectangular_Kindsvater_Carter(0.2, 0.5, 1) 0.15545928949179422 References ---------- .. [1] Kindsvater, Carl E., and Rolland W. Carter. "Discharge Characteristics of Rectangular Thin-Plate Weirs." Journal of the Hydraulics Division 83, no. 6 (December 1957): 1-36. .. [2] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' return 0.554*(1 - 0.0035*h1/h2)*(b + 0.0025)*sqrt(g)*(h1 + 0.0001)**1.5 def Q_weir_rectangular_SIA(h1, h2, b, b1): r'''Calculates the flow rate across rectangular weir from the height of the liquid above the crest of the notch, the liquid depth beneath it, and the width of the notch. Model from [1]_ as reproduced in [2]_. Flow rate is given by: .. math:: Q = 0.544\left[1 + 0.064\left(\frac{b}{b_1}\right)^2 + \frac{0.00626 - 0.00519(b/b_1)^2}{h_1 + 0.0016}\right] \left[1 + 0.5\left(\frac{b}{b_1}\right)^4\left(\frac{h_1}{h_1+h_2} \right)^2\right]b\sqrt{g}h^{1.5} Parameters ---------- h1 : float Height of the fluid above the crest of the weir [m] h2 : float Height of the fluid below the crest of the weir [m] b : float Width of the rectangular flow section of the weir [m] b1 : float Width of the full section of the channel [m] Returns ------- Q : float Volumetric flow rate across the weir [m^3/s] Notes ----- The following limits apply to the use of this equation: b/b1 ≤ 0.2 h1/h2 < 2 b > 0.15 m h1 > 0.03 m h2 > 0.1 m Examples -------- >>> Q_weir_rectangular_SIA(0.2, 0.5, 1, 2) 1.0408858453811165 References ---------- .. [1] Normen für Wassermessungen: bei Durchführung von Abnahmeversuchen an Wasserkraftmaschinen. SIA, 1924. .. [2] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' h = h1 + h2 Q = 0.544*(1 + 0.064*(b/b1)**2 + (0.00626 - 0.00519*(b/b1)**2)/(h1 + 0.0016))\ *(1 + 0.5*(b/b1)**4*(h1/(h1 + h2))**2)*b*sqrt(g)*h**1.5 return Q ### Rectangular Weirs, full channel def Q_weir_rectangular_full_Ackers(h1, h2, b): r'''Calculates the flow rate across a full-channel rectangular weir from the height of the liquid above the crest of the weir, the liquid depth beneath it, and the width of the channel. Model from [1]_ as reproduced in [2]_, confirmed with [3]_. Flow rate is given by: .. math:: Q = 0.564\left(1+0.150\frac{h_1}{h_2}\right)b\sqrt{g}(h_1+0.001)^{1.5} Parameters ---------- h1 : float Height of the fluid above the crest of the weir [m] h2 : float Height of the fluid below the crest of the weir [m] b : float Width of the channel section [m] Returns ------- Q : float Volumetric flow rate across the weir [m^3/s] Notes ----- The following limits apply to the use of this equation: h1 > 0.02 m h2 > 0.15 m h1/h2 ≤ 2.2 Examples -------- Example as in [3]_, matches. However, example is unlikely in practice. >>> Q_weir_rectangular_full_Ackers(h1=0.9, h2=0.6, b=5) 9.251938159899948 References ---------- .. [1] Ackers, Peter, W. R. White, J. A. Perkins, and A. J. M. Harrison. Weirs and Flumes for Flow Measurement. Chichester ; New York: John Wiley & Sons Ltd, 1978. .. [2] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. .. [3] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return 0.564*(1 + 0.150*h1/h2)*b*sqrt(g)*(h1 + 0.001)**1.5 def Q_weir_rectangular_full_SIA(h1, h2, b): r'''Calculates the flow rate across a full-channel rectangular weir from the height of the liquid above the crest of the weir, the liquid depth beneath it, and the width of the channel. Model from [1]_ as reproduced in [2]_. Flow rate is given by: .. math:: Q = \frac{2}{3}\sqrt{2}\left(0.615 + \frac{0.000615}{h_1+0.0016}\right) b\sqrt{g} h_1 +0.5\left(\frac{h_1}{h_1+h_2}\right)^2b\sqrt{g} h_1^{1.5} Parameters ---------- h1 : float Height of the fluid above the crest of the weir [m] h2 : float Height of the fluid below the crest of the weir [m] b : float Width of the channel section [m] Returns ------- Q : float Volumetric flow rate across the weir [m^3/s] Notes ----- The following limits apply to the use of this equation: 0.025 < h < 0.8 m b > 0.3 m h2 > 0.3 m h1/h2 < 1 Examples -------- Example compares terribly with the Ackers expression - probable error in [2]_. DO NOT USE. >>> Q_weir_rectangular_full_SIA(h1=0.3, h2=0.4, b=2) 1.1875825055400384 References ---------- .. [1] Normen für Wassermessungen: bei Durchführung von Abnahmeversuchen an Wasserkraftmaschinen. SIA, 1924. .. [2] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' Q = 2/3.*sqrt(2)*(0.615 + 0.000615/(h1 + 0.0016))*b*sqrt(g)*h1 \ + 0.5*(h1/(h1+h2))**2*b*sqrt(g)*h1**1.5 return Q def Q_weir_rectangular_full_Rehbock(h1, h2, b): r'''Calculates the flow rate across a full-channel rectangular weir from the height of the liquid above the crest of the weir, the liquid depth beneath it, and the width of the channel. Model from [1]_ as reproduced in [2]_. Flow rate is given by: .. math:: Q = \frac{2}{3}\sqrt{2}\left(0.602 + 0.0832\frac{h_1}{h_2}\right) b\sqrt{g} (h_1 +0.00125)^{1.5} Parameters ---------- h1 : float Height of the fluid above the crest of the weir [m] h2 : float Height of the fluid below the crest of the weir [m] b : float Width of the channel section [m] Returns ------- Q : float Volumetric flow rate across the weir [m^3/s] Notes ----- The following limits apply to the use of this equation: 0.03 m < h1 < 0.75 m b > 0.3 m h2 > 0.3 m h1/h2 < 1 Examples -------- >>> Q_weir_rectangular_full_Rehbock(h1=0.3, h2=0.4, b=2) 0.6486856330601333 References ---------- .. [1] King, H. W., Floyd A. Nagler, A. Streiff, R. L. Parshall, W. S. Pardoe, R. E. Ballester, Gardner S. Williams, Th Rehbock, Erik G. W. Lindquist, and Clemens Herschel. "Discussion of 'Precise Weir Measurements.'" Transactions of the American Society of Civil Engineers 93, no. 1 (January 1929): 1111-78. .. [2] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' return 2/3.*sqrt(2)*(0.602 + 0.0832*h1/h2)*b*sqrt(g)*(h1+0.00125)**1.5 #print [Q_weir_rectangular_full_Rehbock(h1=0.3, h2=0.4, b=2)] def Q_weir_rectangular_full_Kindsvater_Carter(h1, h2, b): r'''Calculates the flow rate across a full-channel rectangular weir from the height of the liquid above the crest of the weir, the liquid depth beneath it, and the width of the channel. Model from [1]_ as reproduced in [2]_. Flow rate is given by: .. math:: Q = \frac{2}{3}\sqrt{2}\left(0.602 + 0.0832\frac{h_1}{h_2}\right) b\sqrt{g} (h_1 +0.00125)^{1.5} Parameters ---------- h1 : float Height of the fluid above the crest of the weir [m] h2 : float Height of the fluid below the crest of the weir [m] b : float Width of the channel section [m] Returns ------- Q : float Volumetric flow rate across the weir [m^3/s] Notes ----- The following limits apply to the use of this equation: h1 > 0.03 m b > 0.15 m h2 > 0.1 m h1/h2 < 2 Examples -------- >>> Q_weir_rectangular_full_Kindsvater_Carter(h1=0.3, h2=0.4, b=2) 0.641560300081563 References ---------- .. [1] Kindsvater, Carl E., and Rolland W. Carter. "Discharge Characteristics of Rectangular Thin-Plate Weirs." Journal of the Hydraulics Division 83, no. 6 (December 1957): 1-36. .. [2] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' Q = 2/3.*sqrt(2)*(0.602 + 0.075*h1/h2)*(b - 0.001)*sqrt(g)*(h1 + 0.001)**1.5 return Q #print [Q_weir_rectangular_full_Kindsvater_Carter(h1=0.3, h2=0.4, b=2)] ### Open flow calculations - Manning and Chezy def V_Manning(Rh, S, n): r'''Predicts the average velocity of a flow across an open channel of hydraulic radius Rh and slope S, given the Manning roughness coefficient n. Flow rate is given by: .. math:: V = \frac{1}{n} R_h^{2/3} S^{0.5} Parameters ---------- Rh : float Hydraulic radius of the channel, Flow Area/Wetted perimeter [m] S : float Slope of the channel, m/m [-] n : float Manning roughness coefficient; traditionally in the correct units, [s/m^(1/3)] Returns ------- V : float Average velocity of the channel [m/s] Notes ----- This is equation is often given in imperial units multiplied by 1.49. Although `n` could be converted to be in imperial units, in practice this has not been done and all tables keep it in the units of s/m^(1/3). Examples -------- Example is from [2]_, matches. >>> V_Manning(0.2859, 0.005236, 0.03) 1.0467781958118971 References ---------- .. [1] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return Rh**(2.0/3.)*sqrt(S)/n def n_Manning_to_C_Chezy(n, Rh): r'''Converts a Manning roughness coefficient to a Chezy coefficient, given the hydraulic radius of the channel. .. math:: C = \frac{1}{n}R_h^{1/6} Parameters ---------- n : float Manning roughness coefficient [s/m^(1/3)] Rh : float Hydraulic radius of the channel, Flow Area/Wetted perimeter [m] Returns ------- C : float Chezy coefficient [m^0.5/s] Notes ----- Examples -------- Custom example, checked. >>> n_Manning_to_C_Chezy(0.05, Rh=5) 26.15320972023661 References ---------- .. [1] Chow, Ven Te. Open-Channel Hydraulics. New York: McGraw-Hill, 1959. ''' return 1./n*Rh**(1/6.) def C_Chezy_to_n_Manning(C, Rh): r'''Converts a Chezy coefficient to a Manning roughness coefficient, given the hydraulic radius of the channel. .. math:: n = \frac{1}{C}R_h^{1/6} Parameters ---------- C : float Chezy coefficient [m^0.5/s] Rh : float Hydraulic radius of the channel, Flow Area/Wetted perimeter [m] Returns ------- n : float Manning roughness coefficient [s/m^(1/3)] Notes ----- Examples -------- Custom example, checked. >>> C_Chezy_to_n_Manning(26.15, Rh=5) 0.05000613713238358 References ---------- .. [1] Chow, Ven Te. Open-Channel Hydraulics. New York: McGraw-Hill, 1959. ''' return Rh**(1/6.)/C def V_Chezy(Rh, S, C): r'''Predicts the average velocity of a flow across an open channel of hydraulic radius Rh and slope S, given the Chezy coefficient C. Flow rate is given by: .. math:: V = C\sqrt{S R_h} Parameters ---------- Rh : float Hydraulic radius of the channel, Flow Area/Wetted perimeter [m] S : float Slope of the channel, m/m [-] C : float Chezy coefficient [m^0.5/s] Returns ------- V : float Average velocity of the channel [m/s] Notes ----- Examples -------- Custom example, checked. >>> V_Chezy(Rh=5, S=0.001, C=26.153) 1.8492963648371776 References ---------- .. [1] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. .. [3] Chow, Ven Te. Open-Channel Hydraulics. New York: McGraw-Hill, 1959. ''' return C*sqrt(S*Rh) ### Manning coefficients # Tuple of minimum, average, maximum n_closed_conduit = { 'Brass': { 'Smooth': (0.009, 0.01, 0.013), }, 'Steel': { 'Lockbar and welded': (0.01, 0.012, 0.014), 'Riveted and spiral': (0.013, 0.016, 0.017), }, 'Cast Iron': { 'Coated ': (0.01, 0.013, 0.014), 'Uncoated': (0.011, 0.014, 0.016), }, 'Wrought Iron': { 'Black ': (0.012, 0.014, 0.015), 'Galvanized': (0.013, 0.016, 0.017), }, 'Corrugated metal': { 'Subdrain': (0.017, 0.019, 0.021), 'Storm drain': (0.021, 0.024, 0.03), }, 'Acrylic': { 'Smooth': (0.008, 0.009, 0.01), }, 'Glass': { 'Smooth': (0.009, 0.01, 0.013), }, 'Cement': { 'Neat, surface': (0.01, 0.011, 0.013), 'Mortar': (0.011, 0.013, 0.015), }, 'Concrete': { 'Culvert, straight and free of debris': (0.01, 0.011, 0.013), 'Culvert, some bends, connections, and debris': (0.011, 0.013, 0.014), 'Finished': (0.011, 0.012, 0.014), 'Sewer with manholes, inlet, straight': (0.013, 0.015, 0.017), 'Unfinished, steel form': (0.012, 0.013, 0.014), 'Unfinished, smooth wood form': (0.012, 0.014, 0.016), 'Unfinished, rough wood form': (0.015, 0.017, 0.02), }, 'Wood': { 'Stave': (0.01, 0.012, 0.014), 'Laminated, treated': (0.015, 0.017, 0.02), }, 'Clay': { 'Common drainage tile': (0.011, 0.013, 0.017), 'Vitrified sewer': (0.011, 0.014, 0.017), 'Vitrified sewer with manholes, inlet, etc.': (0.013, 0.015, 0.017), 'Vitrified Subdrain with open joint': (0.014, 0.016, 0.018), }, 'Brickwork': { 'Glazed': (0.011, 0.013, 0.015), 'Lined with cement mortar': (0.012, 0.015, 0.017), }, 'Other': { 'Sanitary sewers coated with sewage slime with bends and connections': (0.012, 0.013, 0.016), 'Paved invert, sewer, smooth bottom': (0.016, 0.019, 0.02), 'Rubble masonry, cemented': (0.018, 0.025, 0.03), } } n_lined_built = { 'Metal': { 'Smooth steel, unpainted': (0.011, 0.012, 0.014), 'Smooth steel, painted': (0.012, 0.013, 0.017), 'Corrugated': (0.021, 0.025, 0.03), }, 'Cement': { 'Neat, surface': (0.01, 0.011, 0.013), 'Mortar': (0.011, 0.013, 0.015), }, 'Wood': { 'Planed, untreated': (0.01, 0.012, 0.014), 'Planed, creosoted': (0.011, 0.012, 0.015), 'Unplaned': (0.011, 0.013, 0.015), 'Plank with battens': (0.012, 0.015, 0.018), 'Lined with Roofing paper': (0.01, 0.014, 0.017), }, 'Concrete': { 'Trowel finish': (0.011, 0.013, 0.015), 'Float finish': (0.013, 0.015, 0.016), 'Finished, with gravel on bottom': (0.015, 0.017, 0.02), 'Unfinished': (0.014, 0.017, 0.02), 'Gunite, good section': (0.016, 0.019, 0.023), 'Gunite, wavy section': (0.018, 0.022, 0.025), 'On good excavated rock': (0.017, 0.02, 0.02), 'On irregular excavated rock': (0.022, 0.027, 0.027), }, 'Concrete bottom float': { 'Finished with sides of dressed stone in mortar': (0.015, 0.017, 0.02), 'Finished with sides of random stone in mortar': (0.017, 0.02, 0.024), 'Finished with sides of cement rubble masonry, plastered': (0.016, 0.02, 0.024), 'Finished with sides of cement rubble masonry': (0.02, 0.025, 0.03), 'Finished with sides of dry rubble or riprap': (0.02, 0.03, 0.035), }, 'Gravel bottom': { 'Sides of formed concrete': (0.017, 0.02, 0.025), 'Sides of random stone in mortar': (0.02, 0.023, 0.026), 'Sides of dry rubble or riprap': (0.023, 0.033, 0.036), }, 'Brick': { 'Glazed': (0.011, 0.013, 0.015), 'In-cement mortar': (0.012, 0.015, 0.018), }, 'Masonry': { 'Cemented rubble': (0.017, 0.025, 0.03), 'Dry rubble': (0.023, 0.032, 0.035), }, 'Dressed ashlar': { 'Stone paving': (0.013, 0.015, 0.017), }, 'Asphalt': { 'Smooth': (0.013, 0.013, 0.013), 'Rough': (0.016, 0.016, 0.016), }, 'Vegatal': { 'Lined': (0.03, 0.4, 0.5), } } n_excavated_dredged = { 'Earth, straight, and uniform': { 'Clean, recently completed': (0.016, 0.018, 0.02), 'Clean, after weathering': (0.018, 0.022, 0.025), 'Gravel, uniform section, clean': (0.022, 0.025, 0.03), 'With short grass and few weeds': (0.022, 0.027, 0.033), }, 'Earth, winding and sluggish': { 'No vegetation': (0.023, 0.025, 0.03), 'Grass and some weeds': (0.025, 0.03, 0.033), 'Dense weeds or aquatic plants, in deep channels': (0.03, 0.035, 0.04), 'Earth bottom; rubble sides': (0.028, 0.03, 0.035), 'Stony bottom; weedy banks': (0.025, 0.035, 0.04), 'Cobble bottom; clean sides': (0.03, 0.04, 0.05), }, 'Dragline-excavated or dredged': { 'No vegetation': (0.025, 0.028, 0.033), 'Light brush on banks': (0.035, 0.05, 0.06), }, 'Rock cuts': { 'Smooth and Uniform': (0.025, 0.035, 0.04), 'Jaged and Irregular': (0.035, 0.04, 0.05), }, 'Channels not maintained, with weeds and uncut brush': { 'Dense weeds, as high as the flow depth': (0.05, 0.08, 0.12), 'Clean bottom, brush on sides': (0.04, 0.05, 0.08), 'Clean bottom, brush on sides, highest stage of flow': (0.045, 0.07, 0.11), 'Dense brush, high stage': (0.08, 0.1, 0.14), } } n_natural = { 'Major streams': { 'Irregular, rough': (0.035, 0.07, 0.1), }, 'Flood plains': { 'Pasture, no brush, short grass': (0.025, 0.03, 0.035), 'Pasture, no brush, high grass': (0.03, 0.035, 0.05), 'Cultivated areas, no crop': (0.02, 0.03, 0.04), 'Cultivated areas, mature row crops': (0.025, 0.035, 0.045), 'Cultivated areas, mature field crops': (0.03, 0.04, 0.05), 'Brush, scattered brush, heavy weeds': (0.035, 0.05, 0.07), 'Brush, light brush and trees, in winter': (0.035, 0.05, 0.06), 'Brush, light brush and trees, in summer': (0.04, 0.06, 0.08), 'Brush, medium to dense brush, in winter': (0.045, 0.07, 0.11), 'Brush, medium to dense brush, in summer': (0.07, 0.1, 0.16), 'Trees, dense willows, summer, straight': (0.11, 0.15, 0.2), 'Trees, cleared land with tree stumps, no sprouts': (0.03, 0.04, 0.05), 'Trees, cleared land with tree stumps, heavy growth of sprouts': (0.05, 0.06, 0.08), 'Trees, heavy stand of timber, a few down trees, little undergrowth, flood stage below branches': (0.08, 0.1, 0.12), 'Trees, heavy stand of timber, a few down trees, little undergrowth, flood stage reaching branches': (0.1, 0.12, 0.16), }, 'Minor streams': { 'Mountain streams, no vegetation in channel, banks steep, trees and bush on the banks submerged to high stages, with gravel, cobbles and few boulders on bottom': (0.03, 0.04, 0.05), 'Mountain streams, no vegetation in channel, banks steep, trees and bush on the banks submerged to high stages, with cobbles and large boulders on bottom': (0.04, 0.05, 0.07), 'Plain streams, clean, straight, full stage, no rifts or deep pools': (0.025, 0.03, 0.033), 'Plain streams, clean, straight, full stage, no rifts or deep pools, more stones and weeds': (0.03, 0.035, 0.04), 'Clean, winding, some pools and shoals': (0.033, 0.04, 0.045), 'Clean, winding, some pools and shoals, some weeds and stones': (0.035, 0.045, 0.05), 'Clean, winding, some pools and shoals, some weeds and stones, lower stages, less effective slopes and sections': (0.04, 0.048, 0.055), 'Clean, winding, some pools and shoals, more weeds and stones': (0.045, 0.05, 0.06), 'Sluggish reaches, weedy, deep pools': (0.05, 0.07, 0.08), 'Very weedy reaches, deep pools, or floodways with heavy stand of timber and underbrush': (0.075, 0.1, 0.15), } } n_dicts = [n_natural, n_excavated_dredged, n_lined_built, n_closed_conduit] # TODO lookup function to determine the nearest hit based on string matching fluids-1.0.22/fluids/data/0000755000175000017500000000000014302004506014601 5ustar nileshnileshfluids-1.0.22/fluids/data/Miller 2E 1990 entrances rounded beveled K.csv0000644000175000017500000000606614302004506024512 0ustar nileshnileshx,45 3.46945e-18,0.517486 0.002245,0.50302 0.00449,0.489406 0.006174,0.477493 0.0087,0.464445 0.010945,0.451397 0.013471,0.438349 0.015996,0.425301 0.018522,0.412252 0.02217,0.396934 0.025257,0.384451 0.028344,0.371402 0.031993,0.359486 0.035641,0.34757 0.039289,0.335654 0.043218,0.323737 0.047428,0.312387 0.054443,0.296494 0.059214,0.28571 0.063704,0.275494 0.068756,0.265844 0.074369,0.257326 0.079981,0.249943 0.085875,0.243694 0.092049,0.238011 0.100748,0.232324 0.107484,0.230043 0.114219,0.227194 0.120954,0.224346 0.127689,0.222065 0.134425,0.220351 0.14116,0.21807 0.147895,0.215788 0.150702,0.215216 0.157437,0.213502 0.164453,0.211787 0.171188,0.210073 0.177923,0.208926 0.184939,0.207779 0.191674,0.206632 0.19869,0.205485 0.208232,0.202631 0.215248,0.202618 0.222264,0.202604 0.228999,0.202592 0.236015,0.202011 0.24275,0.201999 0.249626,0.201986 0.257343,0.201971 0.264359,0.201958 0.3,0.20104 x,30 -0.00014,0.510964 0.006174,0.466718 0.008138,0.453104 0.010384,0.440056 0.012629,0.426441 0.014874,0.412826 0.01768,0.396942 0.020206,0.383894 0.022732,0.370845 0.025257,0.35723 0.028064,0.344181 0.030589,0.331133 0.033396,0.318084 0.036062,0.307021 0.038728,0.294823 0.041815,0.282341 0.045182,0.269858 0.048831,0.257375 0.050234,0.252268 0.054443,0.240918 0.058934,0.230701 0.063704,0.220484 0.069036,0.210834 0.076894,0.198342 0.082507,0.190959 0.087278,0.184712 0.093452,0.177895 0.099345,0.171646 0.104397,0.166532 0.110851,0.160849 0.117025,0.155166 0.12348,0.15005 0.129935,0.146068 0.136389,0.142086 0.142844,0.138671 0.149579,0.135256 0.151263,0.134119 0.157998,0.131837 0.164453,0.12899 0.171188,0.126709 0.178204,0.124994 0.184939,0.12328 0.188868,0.122705 0.195884,0.121558 0.201497,0.120413 0.208513,0.119833 0.215529,0.119819 0.222544,0.119806 0.22956,0.119793 0.236576,0.119213 0.243312,0.118633 0.250608,0.118619 0.257624,0.118606 0.26464,0.118592 0.271375,0.118013 0.278391,0.117999 0.285407,0.117419 0.292142,0.117973 0.299158,0.117393 x,0 -0.00014,0.510114 0.001123,0.498769 0.002385,0.487992 0.003508,0.478349 0.004771,0.462751 0.006174,0.449138 0.008138,0.435523 0.010103,0.421909 0.013751,0.396382 0.015716,0.382768 0.017961,0.369153 0.018522,0.365749 0.020767,0.352702 0.023012,0.339087 0.025538,0.326039 0.027783,0.312991 0.031712,0.294269 0.034238,0.281221 0.036763,0.268172 0.03957,0.255124 0.042376,0.242075 0.045182,0.229026 0.047989,0.216544 0.05304,0.196119 0.056408,0.183636 0.059775,0.171154 0.063424,0.159237 0.067072,0.147321 0.071001,0.135405 0.074369,0.124623 0.078859,0.114407 0.08363,0.10419 0.08812,0.097376 0.093732,0.089426 0.100748,0.08204 0.107203,0.076924 0.113658,0.072375 0.120393,0.06896 0.127128,0.066111 0.133863,0.064397 0.140879,0.062683 0.147615,0.062103 0.151824,0.060961 0.15884,0.06038 0.165575,0.059233 0.172591,0.05922 0.179607,0.059207 0.186623,0.059194 0.193639,0.05918 0.200655,0.059734 0.207951,0.059153 0.214967,0.058573 0.221983,0.05856 0.228718,0.05798 0.235734,0.057399 0.24275,0.057386 0.249766,0.057373 0.250889,0.057371 0.257905,0.05679 0.26492,0.056777 0.271936,0.056764 0.278952,0.056183 0.285968,0.05617 0.292703,0.05559 0.299719,0.055577 fluids-1.0.22/fluids/data/Miller 2E 1990 conical contractions K part 1.csv0000644000175000017500000000622314302004506024662 0ustar nileshnileshx,.4 0.100435,1.19432 0.104546,1.27929 0.108824,1.36534 0.114938,1.46228 0.121395,1.56611 0.129621,1.67104 0.138401,1.77009 0.148315,1.87495 0.158937,1.97162 0.170318,2.05825 0.183846,2.15637 0.19917,2.24272 0.201358,2.2671 0.218934,2.34924 0.238044,2.43436 0.257883,2.52265 0.28141,2.59502 0.30597,2.66956 0.33267,2.7363 0.36039,2.815 0.389,2.8855 0.42915,2.9896 x,.3 0.100703,0.69717 0.105975,0.74942 0.113574,0.82621 0.120392,0.88485 0.127619,0.94764 0.13332,0.98951 0.138266,1.02955 0.147099,1.09858 0.157065,1.16793 0.167704,1.23267 0.179064,1.30573 0.19189,1.37806 0.20119,1.42847 0.2156,1.5076 0.231881,1.57952 0.249394,1.66696 0.269204,1.74643 0.29059,1.82968 0.31253,1.91697 0.33127,1.97969 0.35241,2.05931 0.38179,2.14958 0.41816,2.25995 0.45136,2.35053 0.48899,2.45356 0.52782,2.55189 0.56974,2.64454 0.59951,2.71144 0.64948,2.82 0.70107,2.9437 0.72705,3.0131 x,.2 0.100624,0.45225 0.107051,0.48082 0.109816,0.4931 0.117255,0.52233 0.125199,0.5553 0.134167,0.5882 0.140671,0.61417 0.150748,0.65055 0.161545,0.68658 0.173116,0.72461 0.185515,0.76475 0.203934,0.82173 0.21854,0.86725 0.235045,0.91193 0.252799,0.96592 0.27388,1.02676 0.29456,1.07966 0.31681,1.14358 0.3395,1.20255 0.36514,1.26911 0.3913,1.33455 0.4014,1.36367 0.43014,1.43398 0.46263,1.51336 0.49577,1.59719 0.53321,1.6856 0.57348,1.77245 0.5991,1.84405 0.64435,1.94613 0.69807,2.0612 0.7508,2.1753 0.80458,2.30416 0.8622,2.42297 0.92732,2.55709 0.99013,2.68903 1.00832,2.72797 1.08054,2.8791 1.13911,3.0006 x,.1 0.100353,0.2773 0.109718,0.30069 0.117577,0.3185 0.125542,0.33738 0.134535,0.35737 0.143648,0.37855 0.159065,0.4097 0.170458,0.43239 0.182667,0.45634 0.195749,0.47987 0.200802,0.49034 0.215183,0.51562 0.231435,0.54417 0.248914,0.5722 0.273627,0.61484 0.29322,0.64419 0.31651,0.6749 0.34041,0.70967 0.36479,0.74355 0.39234,0.78187 0.42505,0.8221 0.45715,0.86132 0.49167,0.9057 0.5288,0.95236 0.56461,0.99605 0.60066,1.04178 0.64603,1.09945 0.69481,1.1561 0.74188,1.22018 0.80375,1.30176 0.86132,1.37387 0.92302,1.46055 0.98914,1.54707 1.00732,1.57519 1.07947,1.6685 1.14842,1.76746 1.22622,1.87905 1.27867,1.95498 1.35294,2.07104 1.43935,2.20186 1.53129,2.34095 1.62912,2.50699 1.72065,2.68499 1.82394,2.8755 1.89852,3.0136 x,.05 0.100843,0.200971 0.109248,0.209781 0.117498,0.219789 0.126371,0.230274 0.136906,0.241244 0.14778,0.252744 0.159517,0.263832 0.172188,0.27641 0.185865,0.28959 0.200627,0.30229 0.216563,0.3167 0.233765,0.3318 0.251416,0.34637 0.271386,0.36288 0.29188,0.37881 0.31391,0.39472 0.33153,0.40839 0.35786,0.42786 0.38488,0.44664 0.40061,0.45966 0.434,0.47981 0.46848,0.50268 0.50569,0.52665 0.54387,0.54777 0.58494,0.5739 0.65242,0.61211 0.70424,0.64129 0.76018,0.67186 0.80284,0.69387 0.86661,0.72694 0.93544,0.75883 0.99153,0.78509 1.07419,0.82398 1.1595,0.86013 1.25161,0.90442 1.35102,0.94409 1.45303,0.98554 1.55141,1.02514 1.67464,1.07402 1.80766,1.12522 1.91955,1.16836 2.00891,1.20454 2.17636,1.25734 2.3407,1.31732 2.52663,1.38012 2.7273,1.44066 2.9439,1.50386 3.1662,1.57561 3.4177,1.64473 3.6758,1.7232 4.0259,1.81828 4.3457,1.89804 4.6399,1.97073 4.9721,2.05358 5.3671,2.15148 5.7723,2.24594 6.0741,2.32802 6.5565,2.43015 7.0773,2.53676 7.6394,2.65769 8.0682,2.7547 8.709,2.8861 9.248,2.9913 fluids-1.0.22/fluids/data/Miller 2E 1990 smooth bends Re correction.csv0000644000175000017500000001215414302004506024404 0ustar nileshnileshx,1 9937.3,2.18039 10532.3,2.15006 11640.8,2.10217 12687.6,2.06169 13780.3,2.02256 15072.8,1.98474 16466.7,1.94424 17989,1.90108 19744.8,1.86057 21672,1.82273 23899,1.78219 26110,1.74438 28793,1.70384 31457,1.6687 32957,1.64977 34209,1.63624 35674,1.62001 38433,1.58761 39893,1.57407 41602,1.56052 42187,1.55244 43181,1.54431 44822,1.53078 46524,1.51725 48291,1.50371 50357,1.48481 52517,1.47393 54511,1.4604 55535,1.44962 57916,1.43874 60114,1.42254 61244,1.41443 63868,1.40088 66294,1.38735 68812,1.37381 71761,1.36026 73110,1.35216 74484,1.34405 77316,1.33319 80252,1.31966 83300,1.30613 86870,1.29257 88503,1.28447 90169,1.27904 93597,1.26818 97152,1.25464 100842,1.24111 105163,1.22756 112778,1.20318 117068,1.19499 119266,1.18422 132148,1.15168 134007,1.14627 139097,1.13274 145058,1.11918 147789,1.11375 151273,1.10563 157023,1.09477 162987,1.08123 169971,1.06768 176427,1.05414 179749,1.04871 183133,1.04328 190089,1.02975 202891,1.00006 x,1.5 10339.4,2.17085 10731.8,2.15465 11139.1,2.13844 11561.8,2.12224 12283.2,2.09524 12749.4,2.07903 13264.1,2.06148 14092.5,2.03982 14936.8,2.01283 16017.7,1.98445 16626.6,1.97359 17257.2,1.95472 17912.6,1.94118 18592.5,1.92498 19209.1,1.91414 20031.7,1.89791 20792.5,1.88438 21683,1.87082 22507,1.85729 23362,1.84376 24249,1.83022 25405,1.80863 26495,1.80042 27630,1.78687 28547,1.77603 29770,1.76247 30900,1.74894 32224,1.73538 33448,1.72185 33920,1.71911 35209,1.70558 36547,1.69472 38113,1.68116 39562,1.6703 41258,1.65942 42824,1.64322 44660,1.63233 46358,1.62147 47009,1.61339 48797,1.6052 52333,1.58617 54577,1.57529 56650,1.56176 59079,1.55087 61611,1.53732 64253,1.52644 67008,1.51555 69881,1.50467 72877,1.49379 76000,1.48023 79261,1.47202 82272,1.45849 85799,1.4476 89478,1.43672 92879,1.42586 101015,1.40409 104858,1.39591 107830,1.38509 112454,1.3742 117279,1.36599 122304,1.35244 126953,1.34158 133021,1.33334 138074,1.31981 143994,1.30893 150177,1.30339 156612,1.28983 163331,1.28162 170335,1.27074 176805,1.25721 183536,1.25169 191400,1.23814 198675,1.22727 207200,1.21906 212091,1.21361 2.2119e+05,1.20273 2.2961e+05,1.19721 2.3392e+05,1.18644 2.4395e+05,1.17823 2.5561e+05,1.16999 2.6533e+05,1.15913 2.7671e+05,1.14825 2.8857e+05,1.13737 3.0095e+05,1.12915 3.1386e+05,1.11827 3.2731e+05,1.10739 3.4136e+05,1.09918 3.5433e+05,1.08832 3.6954e+05,1.08011 3.8538e+05,1.06922 4.0191e+05,1.05834 4.1915e+05,1.05013 4.3713e+05,1.03925 4.5375e+05,1.03106 4.9347e+05,1.00395 x,2 10079.5,2.19636 10758,2.16399 11456,2.13698 12228.3,2.11396 12931.6,2.09366 13674.9,2.07069 14128.1,2.05718 14596.7,2.04634 15080.8,2.0355 15727,2.02195 16021.8,2.0085 16708.8,1.99762 17262.5,1.98411 18002.2,1.97055 18685.9,1.95702 19396.2,1.94616 20132.4,1.92995 20897.6,1.91909 21793,1.90554 22621,1.892 23590,1.87845 24602,1.86756 25656,1.85401 26630,1.84048 27642,1.82694 28827,1.81606 29095,1.808 30344,1.79979 31941,1.78352 33155,1.77266 34575,1.7591 36058,1.74822 37604,1.73734 39215,1.72378 40706,1.71292 42451,1.70204 44065,1.69118 45954,1.6803 47700,1.66676 49514,1.65857 50208,1.64782 52363,1.63961 54355,1.63142 56687,1.62321 57480,1.60978 59670,1.60694 62520,1.59603 64594,1.5852 67365,1.57698 69926,1.56612 72586,1.55793 75699,1.54705 78944,1.53617 82329,1.52528 86265,1.51705 89544,1.50619 93386,1.49798 96938,1.48979 100629,1.48427 104451,1.47074 108932,1.46253 113600,1.44897 118474,1.44076 123554,1.42988 128856,1.42167 130662,1.41092 136276,1.40805 142119,1.39717 148226,1.3943 149606,1.38624 156021,1.37536 162716,1.36715 169693,1.35626 176148,1.34807 183711,1.34253 191588,1.33165 199809,1.32344 207410,1.31525 2.1631e+05,1.30704 2.2453e+05,1.29618 2.3417e+05,1.28797 2.4535e+05,1.27706 2.5468e+05,1.26887 2.6437e+05,1.26068 2.7572e+05,1.25247 2.8755e+05,1.24426 2.9989e+05,1.23605 3.1274e+05,1.22517 3.2767e+05,1.21159 3.4335e+05,1.20603 3.5642e+05,1.20051 3.7171e+05,1.1923 3.7695e+05,1.18957 3.9311e+05,1.17868 4.1192e+05,1.17312 4.2958e+05,1.16224 4.4801e+05,1.15403 4.6723e+05,1.14582 4.8728e+05,1.13761 5.0344e+05,1.12677 5.2507e+05,1.1239 5.5017e+05,1.11567 5.7376e+05,1.10478 5.9838e+05,1.09657 6.2407e+05,1.09103 6.5083e+05,1.08015 6.8196e+05,1.07459 7.1122e+05,1.06638 7.4172e+05,1.0555 7.7356e+05,1.04996 8.0301e+05,1.04444 8.3745e+05,1.03356 8.6933e+05,1.02804 9.5219e+05,1.01158 1.0165e+06,0.99926 1.10821e+06,0.98416 1.16121e+06,0.9786 1.21103e+06,0.97039 1.26303e+06,0.96485 1.31722e+06,0.95664 1.37382e+06,0.95377 1.43277e+06,0.94556 1.49429e+06,0.94002 1.5584e+06,0.93181 1.61773e+06,0.92629 1.68719e+06,0.92075 1.75963e+06,0.91521 1.83519e+06,0.90967 1.92291e+06,0.90144 2.00547e+06,0.8959 2.10138e+06,0.89034 2.1915e+06,0.88213 2.2963e+06,0.8739 2.3949e+06,0.86836 2.4977e+06,0.86282 2.605e+06,0.85728 2.7041e+06,0.84909 2.8202e+06,0.84622 2.9413e+06,0.84068 3.0676e+06,0.83514 3.1993e+06,0.82961 3.3367e+06,0.82407 3.4637e+06,0.81855 3.7499e+06,0.80616 4.0692e+06,0.79242 4.4575e+06,0.78531 4.6707e+06,0.77975 4.8714e+06,0.77689 5.0096e+06,0.76874 5.2249e+06,0.76587 5.4238e+06,0.76035 5.6568e+06,0.75749 5.9272e+06,0.74925 6.153e+06,0.74641 6.3873e+06,0.74089 6.6617e+06,0.73802 6.9478e+06,0.73249 7.2461e+06,0.72695 7.5572e+06,0.72141 7.8449e+06,0.71589 8.1436e+06,0.71037 8.533e+06,0.70481 8.8997e+06,0.70194 9.2818e+06,0.6964 9.6809e+06,0.69621 fluids-1.0.22/fluids/data/residential power.csv0000644000175000017500000001223214302004506020736 0ustar nileshnileshCountry Country code Plugs Residential voltage, V Frequency, Hz Andorra ad C, F 230 50 United Arab Emirates ae C, D, G 220 50 Afghanistan af C, F 220 50 Antigua and Barbuda ag A, B 230 60 Anguilla ai A 110 60 Albania al C, F 230 50 Armenia am C, F 230 50 Angola ao C 220 50 Argentina ar C, I 220 50 Austria at C, F 230 50 Australia au I 230 50 Azerbaijan az C, F 230 50 Bosnia and Herzegovina ba C, F 230 50 Barbados bb A, B 115 50 Bangladesh bd C, D, G, K 220 50 Belgium be C, E 230 50 Burkina Faso bf C, E 220 50 Bulgaria bg C, F 230 50 Bahrain bh G 230 50 Burundi bi C, E 220 50 Benin bj C, E 220 50 Bermuda bm A, B 120 60 Brunei bn G 240 50 Bolivia bo A, C 115 50 Brazil br C, N 220 60 Bahamas bs A, B 120 60 Bhutan bt C, D, F, G, M 230 50 Botswana bw D, G, M 230 50 Belarus by C, F 230 50 Belize bz A, B, G 110 60 Canada ca A, B 120 60 Congo, Democratic Republic of the cd C, D, E 220 50 Central African Republic cf C, E 220 50 Congo, Republic of the cg C, E 230 50 Switzerland ch C, J 230 50 Côte d'Ivoire ci C, E 230 50 Chile cl L 220 50 Cameroon cm C, E 220 50 China cn A, I, C 220 50 Colombia co A, B 110 60 Costa Rica cr A, B 120 60 Cuba cu A, B, C 110 60 Cape Verde cv C, F 220 50 Cyprus cy G 240 50 Czech Republic cz C, E 230 50 Germany de C, F 230 50 Djibouti dj C, E 220 50 Denmark dk C, E, F, K 230 50 Dominica dm D, G 230 50 Dominican Republic do A, B 110 60 Algeria dz C, F 230 50 Ecuador ec A, B 120 60 Estonia ee C, F 230 50 Egypt eg C, F 220 50 Eritrea er C, L 230 50 Spain es C, F 230 50 Ethiopia et C, E, F, L 220 50 Finland fi C, F 230 50 Fiji fj I 240 50 Falkland Islands fk G 240 50 Micronesia fm A, B 120 60 Faroe Islands fo C, E, F, K 230 50 France fr C, E 230 50 Gabon ga C 220 50 United Kingdom gb G 230 50 Grenada gd G 230 50 Guernsey gg G 230 50 Ghana gh D, G 230 50 Gibraltar gi C, G 240 50 Gambia gm G 230 50 Guinea gn C, F, K 220 50 Equatorial Guinea gq C, E 220 50 Greece gr C, F 230 50 Guatemala gt A, B 120 60 Guam gu A, B 110 60 Guinea-Bissau gw C 220 50 Guyana gy A, B, D, G 110 60 Honduras hn A, B 110 60 Croatia hr C, F 230 50 Haiti ht A, B 110 60 Hungary hu C, F 230 50 Indonesia id C, F, G 230 50 Ireland ie G 230 50 Israel il C, H, M 230 50 Isle of Man im G 240 50 India in C, D, M 230 50 Iraq iq C, D, G 230 50 Iran ir C, F 220 50 Iceland is C, F 230 50 Italy it C, F, L 230 50 Jersey je G 230 50 Jamaica jm A, B 110 50 Jordan jo B, C, D, F, G, J 230 50 Japan jp A, B 100 50 Kenya ke G 240 50 Kyrgyzstan kg C, F 220 50 Cambodia kh A, C, G 230 50 Comoros km C, E 220 50 St. Kitts and Nevis kn A, B, D, G 110 60 North Korea kp A, C, F 110 60 South Korea kr C, F 220 60 Kuwait kw C, G 240 50 Cayman Islands ky A, B 120 60 Kazakhstan kz C, F 220 50 Laos la C, E, F 230 50 Lebanon lb A, B, C, D, G 220 50 St. Lucia lc G 240 50 Liechtenstein li C, J 230 50 Sri Lanka lk D, G, M 230 50 Liberia lr A, B, C, E, F 120 60 Lesotho ls M 220 50 Lithuania lt C, F 230 50 Luxembourg lu C, F 230 50 Latvia lv C, F 230 50 Libya ly C, D, F, L 127 50 Morocco ma C, E 220 50 Monaco mc C, D, E, F 230 50 Moldova md C, F 220 50 Montenegro me C, F 230 50 Madagascar mg C, D, E, J, K 220 50 Macedonia mk C, F 230 50 Mali ml C, E 220 50 Myanmar mm C, D, F, G 230 50 Mongolia mn C, E 220 50 Mauritania mr C 220 50 Montserrat ms A, B 120 60 Mauritius mu C, G 230 50 Maldives mv D, G, J, K, L 230 50 Malawi mw G 230 50 Mexico mx A, B 127 60 Malaysia my C, G, M 230 50 Mozambique mz C, F, M 220 50 Namibia na D, M 220 50 Niger ne A, B, C, D, E, F 220 50 Nigeria ng D, G 240 50 Nicaragua ni A, B 120 60 Netherlands nl C, F 230 50 Norway no C, F 230 50 Malta np G 230 50 Nepal np C, D, M 230 50 Nauru nr I 240 50 New Zealand nz I 230 50 Oman om C, G 240 50 Panama pa A, B 120 60 Peru pe A, B, C 220 60 Papua New Guinea pg I 240 50 Philippines ph A, B 220 60 Pakistan pk C, D, G, M 230 50 Poland pl C, E 230 50 Portugal pt C, F 230 50 Palau pw A, B 120 60 Paraguay py C 220 50 Qatar qa D, G 240 50 Romania ro C, F 230 50 Serbia rs C, F 230 50 Russia ru C, F 230 50 Rwanda rw C, J 230 50 Saudi Arabia sa A, B, G 220 60 Solomon Islands sb I, G 220 50 Seychelles sc G 240 50 Sudan sd C, D 230 50 Sweden se C, F 230 50 Singapore sg C, G, M 230 50 Saint Helena, Ascension and Tristan da Cunha sh G 240 50 Slovenia si C, F 230 50 Slovakia sk C, E 230 50 Sierra Leone sl D, G 230 50 San Marino sm C, F, L 230 50 Senegal sn C, D, E, K 230 50 Somalia so C 220 50 Suriname sr C, F 127 60 São Tomé and Príncipe st C, F 220 50 El Salvador sv A, B 115 60 Syria sy C, E, L 220 50 Swaziland sz M 230 50 Chad td C, D, E, F 220 50 Togo tg C 220 50 Thailand th A, B, C, F 220 50 Tajikistan tj C, F, I 220 50 Timor-Leste tl C, E, F, I 220 50 Turkmenistan tm B, C, F 220 50 Tunisia tn C, E 230 50 Tonga to I 240 50 Turkey tr C, F 230 50 Trinidad & Tobago tt A, B 115 60 Tuvalu tv I 220 50 Taiwan tw A, B 110 60 Tanzania tz D, G 230 50 Ukraine ua C, F 230 50 Uganda ug G 240 50 United States us A, B 120 60 Uruguay uy C, F, I, L 230 50 Uzbekistan uz C, I 220 50 St. Vincent and the Grenadines vc C, E, G, I, K 230 50 Venezuela ve A, B 120 60 British Virgin Islands vg A, B 110 60 Vietnam vn A, C, G 220 50 Vanuatu vu C, G, I 220 50 Samoa ws I 230 50 Kosovo xk C, F 230 50 Yemen ye A, D, G 230 50 South Africa za C, F, M, N 230 50 Zambia zm C, D, G 230 50 Zimbabwe zw D, G 220 50fluids-1.0.22/fluids/data/Miller 2E 1990 conical contractions K part 2.csv0000644000175000017500000000310214302004506024654 0ustar nileshnileshx,.03 1.02285,0.28413 1.0236,0.25954 1.03334,0.30991 1.03554,0.237932 1.05143,0.218121 1.05154,0.33802 1.07922,0.200677 1.08578,0.36601 1.09124,0.196358 1.12822,0.181306 1.12932,0.39631 1.14149,0.405 1.17492,0.168011 1.19594,0.43692 1.22356,0.155691 1.26217,0.46965 1.27885,0.144273 1.33699,0.50119 1.34638,0.133689 1.41748,0.123882 1.42661,0.5329 1.50312,0.115626 1.52781,0.56455 1.58816,0.107921 1.6363,0.59378 1.67806,0.100365 1.69042,0.60456 1.81051,0.63356 2.02521,0.67598 2.1929,0.70582 2.37455,0.73431 2.5806,0.76395 2.7944,0.79479 2.9504,0.80917 3.1948,0.84183 3.4595,0.87265 3.7598,0.90458 4.146,0.93764 4.5226,0.96494 4.9151,1.00025 5.1522,1.01469 5.6201,1.04422 6.1975,1.07847 6.7361,1.10586 7.3479,1.13805 8.3716,1.1838 9.1325,1.20947 9.8545,1.23573 x,.05 2.792,0.203365 2.7932,0.215883 2.8062,0.190877 2.8218,0.235472 2.8491,0.175618 2.8716,0.256833 2.9034,0.160993 2.9542,0.27911 2.9802,0.147583 3.0503,0.30332 3.0813,0.135777 3.1726,0.32842 3.209,0.125366 3.3119,0.35432 3.3541,0.115752 3.4827,0.38086 3.5439,0.107649 3.6627,0.40278 3.7444,0.100475 3.8417,0.42366 4.066,0.44804 4.3704,0.47293 4.7149,0.4974 5.0866,0.52125 5.5078,0.54426 5.9371,0.56572 6.4232,0.5875 6.8928,0.60627 7.4638,0.63074 8.32,0.65853 9.0425,0.68016 9.855,0.69869 x,.1 5.9796,0.208462 5.9994,0.1939 6.0148,0.221291 6.0292,0.18398 6.0947,0.233208 6.0981,0.173777 6.2245,0.162362 6.3161,0.252514 6.4356,0.149374 6.5932,0.273412 6.7022,0.13792 6.9838,0.29283 7.0049,0.128269 7.3978,0.31249 7.4012,0.119722 7.8199,0.111744 8.1835,0.34322 8.2916,0.105531 8.7592,0.100571 8.7641,0.36362 9.4548,0.38243 9.8822,0.39576 fluids-1.0.22/fluids/data/isd-history-cleaned.tsv0000644000175000017500001037304714302004506021225 0ustar nileshnilesh007018 99999 WXPOD 7018 0.0 0.0 7018.0 20110309 20130730 007026 99999 WXPOD 7026 AF 0.0 0.0 7026.0 20120713 20170822 007070 99999 WXPOD 7070 AF 0.0 0.0 7070.0 20140923 20150926 008260 99999 WXPOD8270 0.0 0.0 0.0 20050101 20100920 008268 99999 WXPOD8278 AF 32.95 65.567 1156.7 20100519 20120323 008307 99999 WXPOD 8318 AF 0.0 0.0 8318.0 20100421 20100421 008411 99999 XM20 20160217 20160217 008414 99999 XM18 20160216 20160217 008415 99999 XM21 20160217 20160217 008418 99999 XM24 20160217 20160217 010000 99999 BOGUS NORWAY NO ENRS 20010927 20041019 010010 99999 JAN MAYEN(NOR-NAVY) NO ENJA 70.933 -8.667 9.0 19310101 20200624 010013 99999 ROST NO 19861120 19880105 010014 99999 SORSTOKKEN NO ENSO 59.792 5.341 48.8 19861120 20200624 010015 99999 BRINGELAND NO 61.383 5.867000000000001 327.0 19870117 20081231 010016 99999 RORVIK/RYUM NO 64.85 11.232999999999999 14.0 19870116 19910806 010017 99999 FRIGG NO ENFR 59.98 2.25 48.0 19880320 20050228 010020 99999 VERLEGENHUKEN NO 80.05 16.25 8.0 19861109 20200624 010030 99999 HORNSUND NO 77.0 15.5 12.0 19850601 20200624 010040 99999 NY-ALESUND II NO ENAS 78.917 11.933 8.0 19730101 20140523 010050 99999 ISFJORD RADIO SV 78.067 13.633 9.0 19310103 20041030 010060 99999 EDGEOYA NO 78.25 22.816999999999997 14.0 19730101 20200624 010070 99999 NY-ALESUND SV 78.917 11.933 7.7 19730106 20200624 010071 99999 LONGYEARBYEN SV 78.217 15.583 37.0 20050210 20050210 010080 99999 LONGYEAR SV ENSB 78.24600000000001 15.466 26.8 19750929 20200624 010090 99999 KARL XII OYA SV 80.65 25.0 5.0 19550101 20200624 010100 99999 ANDOYA NO ENAN 69.293 16.144000000000002 13.1 19310103 20200624 010110 99999 KVITOYA SV 80.067 31.5 10.0 19861118 20200624 010120 99999 19741130 19751116 010140 99999 SENJA-LAUKHELLA NO 69.233 17.9 9.0 19730101 20140523 010150 99999 HEKKINGEN FYR NO 69.6 17.833 14.0 19800314 20200624 010160 99999 KONGSOYA NO 78.933 28.9 20.0 19930501 20200624 010170 99999 AKSELOYA SV 77.683 14.783 6.0 19730101 20200624 010171 99999 GIBOSTAD NO 69.35 18.083 12.0 20050216 20070307 010190 99999 SVARTTANGEN NO 77.517 20.816999999999997 20.0 20100825 20140523 010200 99999 SORKAPPOYA SV 76.483 16.55 10.0 20101008 20200624 010230 99999 BARDUFOSS NO ENDU 69.056 18.54 76.8 19400713 20200624 010231 99999 DRAUGEN NO ENDR 64.35 7.8 0.0 20040510 20200108 010240 99999 PYRAMIDEN NO 78.65 16.367 20.0 19730101 20200624 010250 99999 TROMSO NO ENTC 69.683 18.919 9.4 19730101 20200624 010260 99999 TROMSO NO 69.65 18.933 114.5 19970201 20200624 010270 99999 TROMSO-HOLT NO 69.65 18.9 20.0 20110928 20200624 010280 99999 BJORNOYA ISLAND NO ENBJ 74.517 19.017 18.0 19310103 20200624 010300 99999 KISTEFJELL NO 69.283 18.133 982.0 19510101 20200624 010303 99999 TROMSO/SKATTURA NO 69.7 19.017 14.0 20140522 20150108 010320 99999 OVERBYGD NO 69.017 19.283 78.0 19730101 20140523 010330 99999 TORSVAG FYR NO 70.25 19.5 24.0 19730101 20200624 010340 99999 FUGLOYKALVEN FYR NO 70.317 20.15 38.0 19871202 20140523 010350 99999 LYNGEN GJERDVASSBU NO 69.567 20.1 710.0 19730101 20200624 010360 99999 NORDNESFJELLET NO 69.567 20.433 710.0 20040510 20200624 010361 99999 SKIBOTIN NO 69.367 20.267 5.0 20050916 20050922 010370 99999 SKIBOTN 2 NO 69.383 20.283 20.0 19730101 20200624 010400 99999 SKJERVOY NO 70.033 20.983 15.0 19730101 19780927 010410 99999 NORDREISA-OYENG NO 69.733 21.017 5.0 19730101 20140523 010420 99999 HASVIK-SLUSKFJELLET NO 70.6 22.45 438.0 20080917 20200624 010430 99999 ROGNSUNDET NO 70.417 22.816999999999997 10.0 19730101 20200624 010431 99999 LOPPA NO 70.333 21.467 11.0 20060207 20070307 010435 99999 HASVIK NO 70.483 22.15 7.0 19750515 20081230 010440 99999 HASVIK NO ENHK 70.487 22.14 6.4 20050102 20200624 010450 99999 NORDSTRAUM I KVAENANGEN NO 69.833 21.883000000000003 6.0 19730101 20200624 010455 99999 19741117 19750904 010460 99999 SORKJOSEN NO ENSR 69.78699999999999 20.959 4.9 19750905 20200624 010470 99999 KAUTOKEINO II NO ENKA 69.017 23.066999999999997 307.0 19730101 20200624 010490 99999 ALTA NO ENAT 69.976 23.372 2.7 19730101 20200624 010510 99999 SUOLOVUOPMI NO 69.583 23.533 374.0 19730102 20140523 010520 99999 HAMMERFEST AP NO ENHF 70.683 23.683000000000003 81.0 19401008 20200624 010530 99999 HAMMERFEST RADIO NO 70.683 23.683000000000003 70.0 19730101 19871226 010550 99999 FRUHOLMEN FYR NO 71.1 23.983 14.2 19310101 20200624 010570 99999 CUOVDDATMOHKKI NO 69.367 24.433000000000003 286.0 19730101 20200624 010580 99999 SUOLOVUOPMI LULIT NO 69.567 23.533 381.0 20050218 20200624 010590 99999 BANAK NO ENNA 70.069 24.973000000000003 7.6 19730101 20200624 010610 99999 BRENNELV NO 70.067 25.116999999999997 34.0 19730101 19840707 010617 99999 OSEBERG NO 19890101 19901001 010620 99999 HOPEN ISLAND NO ENHO 76.5 25.066999999999997 10.0 19550101 20200624 010630 99999 KISTRAND III NO 70.45 25.217 6.0 19730101 19870715 010650 99999 KARASJOK NO 69.467 25.517 133.0 19730101 20200624 010660 99999 HELNES FYR NO 71.067 26.233 33.0 19730101 20040619 010670 99999 LEVAJOK-EVJEN NO 69.9 26.416999999999998 112.0 19730103 19820924 010671 99999 LEVAJOK-EVJEN NO 69.9 26.416999999999998 112.0 20070307 20070307 010680 99999 HONNINGSVAG/VALAN NO ENHV 71.017 25.983 14.0 19800604 20200624 010720 99999 19740227 19740227 010740 99999 MEHAMN NO ENMH 71.033 27.833000000000002 13.0 19750905 20200624 010750 99999 RUSTEFJELBMA NO 70.4 28.2 11.2 19730101 20130531 010760 99999 TANABRU NO 70.217 28.166999999999998 32.0 20121121 20200624 010780 99999 SLETTNES FYR NO 71.1 28.233 10.0 19730101 20200624 010820 99999 NYRUD NO 69.15 29.25 56.0 19730919 20200624 010830 99999 BERLEVAG NO ENBV 70.867 29.033 13.0 19750905 20200624 010840 99999 PASVIK NO 69.45 30.033 27.0 19730101 20200624 010850 99999 BUGOYFJORD NO 69.85 29.416999999999998 8.0 19730101 19781008 010860 99999 BATSFJORD NO ENBS 70.6 29.693 149.4 20050101 20200624 010875 99999 HEIMDAL OIL PLATFORM NO ENHM 59.567 2.217 90.0 20110101 20200624 010876 99999 NORNE OIL PLATFORM NO ENNE 66.017 8.083 90.0 20110101 20200624 010877 99999 TROLL A OIL PLATFORM NO ENQA 60.633 3.717 90.0 20110101 20200624 010878 99999 SNORRE A OIL PLATFORM NO ENSE 61.45 2.133 90.0 20110101 20200624 010879 99999 SNORRE B OIL PLATFORM NO ENQR 61.533 2.2 90.0 20110101 20200624 010880 99999 VADSO NO ENVD 70.067 29.85 39.0 19750905 20200624 010881 99999 NARVIK III/FRAMNES NO 68.467 17.5 23.0 20080101 20081231 010882 99999 ROROS NO ENRO 62.578 11.342 626.1 20050102 20200624 010883 99999 SANDANE/ANDA NO 61.833 6.117000000000001 60.0 20080101 20081231 010884 99999 GEITERYGGEN NO ENSN 59.185 9.567 141.1 20050103 20151109 010885 99999 BATSFJORD NO 70.6 29.733 153.0 19940718 20081231 010886 99999 SLEIPNER A OIL PLATFORM NO ENSL 58.367 1.9 30.0 20090201 20200624 010887 99999 TROLL C OIL PLATFORM NO ENQC 60.886 3.61 20.0 20110512 20200624 010890 99999 HOYBUKTMOEN NO ENKR 69.726 29.893 86.3 19401101 20200624 010920 99999 MAKKAUR FYR NO 70.7 30.083000000000002 9.0 19730101 20200402 010970 99999 SVARTNES NO 70.35 31.05 12.0 19930209 20081231 010980 99999 VARDO NO 70.367 31.1 15.0 19310103 20200623 010985 99999 19741117 19750904 010986 99999 19741117 19750904 010987 99999 19741117 19750904 010990 99999 VARDO AP / SVARTNES NO ENSS 70.355 31.045 12.8 20050102 20200624 011010 99999 BOGUS NORWEGIAN NO 19851202 20041105 011020 99999 SKLINNA FYR NO 65.2 11.0 16.0 19750228 20200624 011025 99999 HEIDRUN NO ENHE 65.333 7.317 80.0 19990424 20200624 011030 99999 LEKA NO 65.1 11.7 47.0 19730101 20070307 011040 99999 ROTVAER NO 68.367 15.95 8.0 20080101 20080817 011050 99999 ROTVAER NO 68.367 15.95 8.0 19730101 20200624 011051 99999 SKOMVAER (LGT-H) NO 67.417 11.883 18.0 20070307 20070307 011060 99999 ROEST III NO 67.517 12.1 2.0 19280101 20081204 011070 99999 ROST (NOR-AFB) NO ENRS 67.517 12.1 4.0 19880303 20200624 011080 99999 VEGA-VALLSJO NO 65.7 11.85 9.1 19910801 20200624 011090 99999 SKALVAER NO 65.867 12.183 6.0 19730101 19800910 011100 99999 YTTERHOLMEN FYR NO 66.0 11.683 33.0 19961201 20050319 011110 99999 BRONNOYSUND NO 65.467 12.217 5.0 19730116 19730718 011120 99999 BRONNOY NO ENBN 65.461 12.218 7.6 19730101 20200624 011130 99999 GLOMFJORD NO 66.8 13.982999999999999 39.0 20040406 20091216 011133 99999 DAGALI NO ENDI 60.417 8.513 798.0 19860509 20030427 011140 99999 REIPA NO 66.9 13.633 8.0 20090702 20200624 011150 99999 MYKEN NO 66.767 12.482999999999999 13.0 19730101 20200624 011160 99999 STOKKA NO ENST 65.95 12.467 17.1 19730401 20200624 011170 99999 TJOTTA NO 65.817 12.417 21.0 20040119 20200624 011210 99999 SOLVAER III NO 66.367 12.617 10.0 19730101 20200624 011220 99999 KJAERSTAD NO ENMS 65.78399999999999 13.215 72.2 19881014 20200624 011240 99999 SNASA NO 64.167 12.467 195.0 20050218 20200624 011310 99999 GLAPEN LIGHTHOUSE NO 67.883 13.05 31.0 19730101 19850625 011320 99999 MAJAVATN V NO 65.167 13.367 319.0 20080229 20200624 011330 99999 LAKSFORS NO 65.617 13.283 50.0 20111129 20200624 011340 99999 MAJAVATN III NO 65.183 13.417 339.0 19730101 20070630 011350 99999 SELJELIA NO 66.117 13.583 123.0 20111129 20200624 011370 99999 STOTT NO 66.933 13.45 12.0 19730806 20070307 011380 99999 TENNHOLMEN (LGT-H) NO 67.3 13.5 14.0 19850912 20070307 011390 99999 VAEROY HELIPORT NO ENVR 67.65 12.717 4.0 20110928 20200624 011410 99999 LEKNES NO ENLK 68.15 13.617 26.0 19730620 20200624 011430 99999 DRAG-AJLUOKTA NO 68.05 16.083 19.0 20070806 20180917 011440 99999 HELLIGVAER II NO 67.4 13.883 24.0 20050315 20200624 011450 99999 KVALNES I LOFOTEN NO 68.35 13.967 15.0 19730101 19820504 011460 99999 SKAMDAL NO 66.233 13.883 5.0 19730101 20200624 011470 99999 VARNTRESK NO 65.833 14.183 406.0 19400907 20200624 011480 99999 STORFORSHEI NO 66.383 14.517000000000001 110.0 20110616 20200624 011490 99999 RANA-BASMOEN NO 66.333 14.1 42.0 19730101 20070228 011500 99999 HJARTASEN NO 66.5 14.95 251.0 19730103 20200624 011501 99999 HATTFJELLDAL-KRUTA NO 65.683 14.167 385.0 20020312 20020312 011505 99999 19751101 19751130 011510 99999 MOIRANA NO ENRA 66.367 14.3 70.0 19730401 20200624 011520 99999 BODO NO ENBO 67.26899999999999 14.365 12.8 19400917 20200624 011530 99999 BODO-VAGONES NO 67.283 14.45 33.0 20111003 20140611 011540 99999 LITLOY FYR NO 68.583 14.3 30.0 19940406 20170801 011550 99999 BO I VESTERALEN II NO 68.633 14.467 12.0 19730101 20041201 011560 99999 BO I VESTERALEN NO 68.6 14.433 7.6 20040510 20200624 011580 99999 SETSA NO 67.167 15.482999999999999 8.0 20100114 20200624 011600 99999 SKROVA FYR NO 68.15 14.65 11.0 19730101 20200624 011610 99999 SVOLVAER/HELLE NO ENSH 68.25 14.667 9.0 19730620 20200624 011620 99999 STORKMARKNES/SKAGEN NO ENSK 68.583 15.017000000000001 3.0 19730620 20200624 011630 99999 BOLNA NO 66.5 15.25 549.0 19730101 19770823 011650 99999 GROTOY NO 67.833 14.783 6.0 19730101 19781031 011670 99999 SORTLAND NO 68.7 15.417 3.0 19850201 20191222 011680 99999 KLEIVA I SORTLAND NO 68.65 15.283 23.0 19730101 20060611 011690 99999 SALTDAL-NORDNES NO 66.933 15.317 37.0 19830101 20200624 011691 99999 OVRE SALTDAL NO 66.967 15.317 26.0 19730101 19781008 011700 99999 FAUSKE-VETEN NO 67.233 15.317 165.0 19730101 19900307 011720 99999 FINNOY I HAMAROY NO 68.0 15.617 53.0 19730101 20060311 011730 99999 19730101 19730731 011751 99999 LODINGEN NO 68.4 16.0 10.0 20040108 20040108 011760 99999 KONGSVIK NO 68.567 16.267 25.0 19730101 19780118 011800 99999 HARSTAD NO 68.8 16.533 45.0 20040510 20200624 011820 99999 EVENSKJER NO 68.583 16.583 7.0 19730101 19851119 011830 99999 EVENES NO ENEV 68.491 16.678 25.6 19750905 20200624 011840 99999 SANDSOY I SENJA NO 68.933 16.683 45.0 19730101 19780613 011841 99999 SANDSOY NO 68.933 16.683 45.0 20070307 20070307 011890 99999 LILAND NO 68.483 16.883 19.0 19730102 20050302 011895 99999 19731008 19750904 011910 99999 SKJOMEN-SLETTJORD NO 68.283 17.317 6.0 19730101 19961104 011920 99999 STRAUMSNES NO 68.417 17.65 200.0 20110203 20200624 011930 99999 NARVIK III/FRAMNES NO ENNK 68.467 17.5 23.0 20010706 20170403 011940 99999 NARVIK III NO ENNK 68.467 17.5 23.0 19730101 20041231 011960 99999 TENNEVOLL NO 68.75 17.817 21.0 19730101 20020808 011980 99999 DIVIDALEN II NO 68.783 19.7 204.0 20100114 20200624 011990 99999 SIHCCAJAVRI NO 68.75 23.533 382.0 19490101 20200624 012030 99999 KRAKENES NO 62.033 4.9830000000000005 41.0 19310904 20200624 012050 99999 SVINOY LH NO 62.333 5.267 37.2 19730101 20200624 012070 99999 FISKABYGD NO 62.1 5.582999999999999 41.0 20040510 20180630 012090 99999 ORSTA-VOLDA/HOVDEN NO ENOV 62.183 6.067 74.0 19841211 20200624 012091 99999 ORSTA-VOLDA/HOVD NO ENOV 62.183 6.05 74.0 19840910 19841127 012100 99999 VIGRA NO ENAL 62.56 6.11 21.0 19730101 20200624 012120 99999 ONA II NO 62.867 6.5329999999999995 15.0 19550101 20200624 012140 99999 REKDAL NO 62.65 6.767 43.0 20090112 20200624 012150 99999 HJELVIK MYRBO NO 62.62 7.23 35.0 19730101 20090630 012160 99999 HJELVIK I ROMSDAL NO 62.617 7.2170000000000005 16.0 19731226 20020527 012161 99999 GJERMUNDNES NO 62.617 7.167000000000001 49.0 20040412 20040412 012170 99999 ARO NO ENML 62.745 7.263 3.0 19760201 20200624 012180 99999 TAFJORD NO 62.233000000000004 7.417000000000001 17.0 19730101 20200624 012200 99999 MANNEN NO 62.45 7.767 1294.0 20100315 20200624 012210 99999 TAGDALEN NO 63.05 9.083 415.0 20080115 20200624 012220 99999 19730101 19751231 012230 99999 KVERNBERGET NO ENKB 63.111999999999995 7.825 62.2 19730101 20200624 012240 99999 AALESUND NO 62.467 6.2170000000000005 50.0 19841201 20200616 012250 99999 VEIHOLMEN NO 63.516999999999996 7.95 5.0 19730101 20200624 012270 99999 INNERDALEN NO 62.717 8.783 405.0 19730101 20200624 012273 99999 TINGVOLL-HANEM NO 62.833 8.3 69.0 20050101 20150108 012280 99999 SULA NO 63.85 8.467 6.0 19730101 20200624 012300 99999 BJORLI NO 62.266999999999996 8.2 579.0 19730101 20200624 012310 99999 LESJASKOG NO 62.233000000000004 8.367 621.0 19771030 20080731 012320 99999 VINJEORA II NO 62.45 7.85 67.0 19730101 20200624 012330 99999 DOMBAAS NO 62.083 9.117 638.0 20061121 20200624 012340 99999 ORKDAL-THAMSHAMN NO 63.317 9.85 4.0 20061121 20200624 012350 99999 DOMBAS-KIRKENAER NO 62.083 9.133 645.0 19360101 19760602 012360 99999 KJOREMSGRENDE NO 62.1 9.05 626.0 20050218 20100104 012370 99999 HITRA NO 63.516999999999996 9.117 13.0 20050402 20200624 012380 99999 FOKSTUA II NO 62.117 9.283 974.0 19730101 20200624 012390 99999 HJERKINN II NO 62.217 9.55 1012.0 20100907 20200624 012400 99999 HALTEN FYR NO 64.167 9.4 16.0 19850110 20200624 012410 99999 ORLAND NO ENOL 63.699 9.604 8.5 19730101 20200624 012420 99999 AFJORD II NO 63.967 10.217 30.0 20080115 20200624 012430 99999 SONGLI NO 63.333 9.65 300.0 19730101 19761119 012450 99999 OPPDAL-SETER NO 62.6 9.667 606.0 19760201 20200624 012480 99999 VALLERSUND NO 63.85 9.732999999999999 4.0 19730101 19751219 012500 99999 FOLLDAL-FREDHEIM NO 62.133 10.0 694.0 20110928 20200624 012520 99999 BERKAK-LYNGHOLT NO 62.817 10.017000000000001 475.0 19730101 20080930 012530 99999 SOKNEDAL NO 62.95 10.183 299.0 20090112 20200624 012540 99999 KOTSOY NO 62.983000000000004 10.55 127.0 20090112 20200624 012570 99999 TRONDHEIM/VOLL NO 63.417 10.45 131.5 20040406 20200624 012580 99999 TRONDHEIM (TYHOLT) NO 63.417 10.433 113.0 19730101 19810714 012590 99999 BUHOLMRASA LH NO 64.4 10.45 18.4 19730101 20200624 012620 99999 NORDOYAN FYR NO 64.8 10.55 33.0 19280102 20200624 012650 99999 TYNSET-HANSMOEN NO 62.266999999999996 10.732999999999999 482.3 19490101 20200624 012680 99999 19730101 19750125 012700 99999 KVITHAMAR NO 63.483000000000004 10.883 40.0 20111003 20200624 012710 99999 VAERNES NO ENVA 63.458 10.94 17.1 19400413 20200624 012720 99999 FROSTA NO 63.567 10.7 70.0 20110929 20200624 012730 99999 SELBU NO 63.233000000000004 11.017000000000001 160.0 20071016 20200622 012740 99999 SELBU-STUBBE NO 63.2 11.117 242.0 19730101 20061115 012770 99999 STEINKJER NO 64.017 11.45 80.0 19730101 20200624 012771 99999 LEVANGER-EGGEN NO 63.717 11.232999999999999 97.0 19730101 19730216 012780 99999 VERDAL-REPPE NO 63.783 11.683 83.0 19850102 20181031 012800 99999 NAMDALSEID-VENGSTAD NO 64.133 11.333 118.0 19730101 20081231 012810 99999 NAMSSKOGAN NO 64.733 12.85 140.0 20070105 20200624 012820 99999 RORVIK/RYUM NO ENRM 64.85 11.232999999999999 14.0 19950901 20200624 012823 99999 RORVIK/RYUM NO 64.85 11.232999999999999 14.0 19910827 19950831 012870 99999 SOLENDET NO 62.683 11.817 747.0 20080115 20200624 012880 99999 ROROS NO 62.567 11.383 630.0 19730101 20200624 012890 99999 ROROS LUFTHAVN NO ENRO 62.583 11.35 626.0 19840909 20041230 012891 99999 ROROS/AIRPORT NO ENRO 62.583 11.383 626.0 19790301 19840817 012900 99999 NAMSOS AIRPORT NO ENNM 64.467 11.583 2.0 19730401 20200624 012910 99999 GARTLAND NO 64.533 12.383 95.0 20090112 20200624 012920 99999 MERAKER-UTSYN NO 63.417 11.7 240.0 19730101 20040930 012930 99999 MERAKER-EGGE NO 63.417 11.732999999999999 171.0 20050215 20200624 012940 99999 19730101 19740629 012950 99999 HOYLANDET NO 64.55 12.15 27.0 19730101 20070612 012960 99999 BERG I SNASA NO 64.25 12.417 127.0 19730101 19770606 012980 99999 NORDLI-HOLAND NO 64.45 13.717 433.0 19730101 20191016 013000 99999 GULLFAKS C NO 61.2 2.267 78.0 20010601 20200624 013005 99999 STATFJORD OIL PLATFORM HELIPORT FO ENSF 61.25 1.85 117.7 19841204 20200623 013040 99999 YTTEROYANE FYR NO 61.567 4.683 25.0 19840901 20200624 013060 99999 HELLISOY FYR NO 60.75 4.717 23.0 19730101 20041229 013070 99999 FEDJE NO 60.75 4.717 20.0 20050218 20200624 013080 99999 FURUNESET NO 61.3 5.05 7.0 20110928 20200624 013090 99999 KINN ISLAND NO 61.567 4.8 10.0 19310104 20051022 013100 99999 FLORO NO ENFL 61.583999999999996 5.025 11.3 19800407 20200624 013110 99999 FLESLAND NO ENBR 60.293 5.218 51.8 19730101 20200624 013140 99999 FOSSMARK NO 60.516999999999996 5.7170000000000005 10.0 20120615 20200624 013150 99999 EVANGER NO 60.633 6.1 17.0 20101214 20200624 013160 99999 BERGEN-FREDRIKSBERG NO 60.4 5.317 40.0 19730101 19851230 013170 99999 BERGEN/FLORIDA NO 60.383 5.332999999999999 36.0 19730101 20200624 013180 99999 SANDANE NO 61.783 6.183 51.0 20050614 20171231 013190 99999 TAKLE NO 61.033 5.382999999999999 38.0 19730101 20200624 013200 99999 SANDANE/ANDA NO ENSD 61.833 6.117000000000001 60.0 19810904 20200624 013210 99999 STRYN NO 61.9 6.55 208.0 19730101 20200624 013220 99999 FORDE-TEFRE NO 61.467 5.917000000000001 64.0 19730101 20171223 013230 99999 BRINGELAND NO ENBL 61.393 5.763999999999999 327.0 19840502 20200624 013250 99999 MODALEN II NO 60.833 5.95 114.0 19730101 20080924 013260 99999 MODALEN III NO 60.85 5.983 125.0 20081008 20200624 013270 99999 KVAMSKOGEN-JONSHOGDI NO 60.383 5.9670000000000005 455.0 20061121 20200624 013280 99999 KVAMSKOGEN NO 60.4 5.917000000000001 408.0 19730101 20060726 013290 99999 KVAMSOY NO 60.35 6.267 50.0 20050218 20200624 013300 99999 OMASTRAND NO 60.217 5.983 6.0 19730101 20050910 013320 99999 FJAERLAND BREMUSEET NO 61.43 6.77 3.0 20060201 20200624 013360 99999 BULKEN NO 60.65 6.2170000000000005 328.0 19730101 20200624 013370 99999 VOSSEVANGEN NO 60.633 6.433 55.0 20050218 20200624 013380 99999 VANGSNES NO 61.167 6.65 51.0 20040706 20200624 013390 99999 VANGSNES NO 61.167 6.65 53.0 19730101 20011102 013400 99999 FET I EIDFJORD NO 60.42 7.28 737.0 20050726 20200624 013410 99999 EIDFJORD-BU NO 60.467 6.867000000000001 166.0 19830101 20070227 013420 99999 ULLENSVANG NO 60.317 6.65 12.0 19730101 20200624 013440 99999 MJOLFJELL NO 60.7 6.95 695.0 19730101 20200624 013450 99999 KLEVAVATNET NO 60.717 7.2170000000000005 960.0 19731007 20200624 013460 99999 MIDTSTOVA NO 60.65 7.267 1162.0 20111125 20200624 013470 99999 SOGNDAL HAUKASEN NO ENSG 61.156000000000006 7.1370000000000005 511.0 19850118 20200624 013471 99999 SOGNDAL/HAUKASEN NO ENSG 61.167 7.132999999999999 498.0 19840801 19841217 013500 99999 FINSEVATN NO 60.6 7.5329999999999995 1208.0 20030330 20200624 013510 99999 FINSE III NO 60.6 7.5 1224.0 19730102 20011210 013520 99999 SANDHAUG NO 60.183 7.483 1250.0 20040107 20200624 013550 99999 LAERDAL IV NO 61.1 7.5 5.0 19730101 20200624 013560 99999 FANNARAKI FO 61.516999999999996 7.9 2062.0 19881125 20140827 013570 99999 HOLLEKOLTEN NO 60.867 8.517000000000001 804.2 19730101 20200624 013580 99999 HEMSEDAL II NO 60.85 8.6 604.0 20110929 20200624 013590 99999 GEILO-OLDEBRATEN NO 60.533 8.2 773.0 19730101 20200624 013591 99999 HAUGASTOL NO 60.516999999999996 7.867000000000001 988.0 20070307 20070307 013600 99999 BRATA-SLETTOM NO 61.9 7.9 664.0 19730101 20200624 013610 99999 GROTLI III NO 62.016999999999996 7.667000000000001 872.0 19730101 20200624 013620 99999 JUVVASSHOE NO 61.667 8.367 1894.0 20090626 20200624 013630 99999 19730101 19740906 013640 99999 FILEFJELL NO 61.183 8.117 955.1 19490101 20200624 013650 99999 BEITOSTOLEN II NO 61.251000000000005 8.917 965.0 19730404 20200624 013660 99999 SOGNEFJELL NO 61.567 8.0 1413.0 19790301 20200624 013670 99999 FAGERNES NO 60.983000000000004 9.217 365.4 19821001 20200624 013671 99999 BEITOSTOLEN NO 61.233000000000004 8.933 828.0 19730101 19801105 013680 99999 LEIRIN NO ENFG 61.016000000000005 9.288 822.0 19881014 20200624 013690 99999 ABJORSBRATEN NO 60.917 9.283 639.0 19881001 20171230 013700 99999 SKABU NO 61.516999999999996 9.4 928.0 19730101 20200624 013710 99999 LOKEN I VOLBU NO 61.117 9.067 521.0 19730101 20200624 013720 99999 NESBYEN-SKOGLUND NO 60.567 9.133 167.0 19730101 20040121 013730 99999 NESBYEN-TODOKK NO 60.567 9.133 166.0 19730101 20200624 013740 99999 VEST-TORPA II NO 60.933 10.033 542.0 19810501 20200624 013741 99999 19730101 19790810 013743 99999 FAGERNES/LEIRIN & NO 61.0 9.3 822.0 19880105 19880913 013750 99999 KVITFJELL NO 61.467 10.133 1028.0 19730101 20200624 013755 99999 GULLFAX (PLATFORM) NO ENGC 61.033 2.033 10.0 19891115 20200624 013760 99999 GULSVIK II NO 60.383 9.6 142.0 19730101 20200624 013780 99999 LILLEHAMMER-SAETHERENGEN NO 61.1 10.467 239.0 19730101 20200624 013790 99999 SOR-NESSET NO 61.883 10.15 739.0 19730101 20051209 013800 99999 VENABU NO 61.65 10.117 930.0 19850110 20200613 013801 99999 KITTILBU NO 61.167 9.967 816.0 19741114 19840827 013810 99999 APELSVOLL NO 60.7 10.867 264.0 20111003 20200624 013820 99999 KISE NO 60.766999999999996 10.8 128.0 19730101 20200624 013830 99999 EVENSTAD-DIH NO 61.4 11.08 255.0 19730101 20200624 013839 99999 HAMAR / STAFSBERG NO ENHA 60.817 11.067 223.0 19870205 19900222 013840 99999 GARDERMOEN NO ENGM 60.193999999999996 11.1 207.6 19400511 20200624 013850 99999 HAMER NO 60.817 11.067 222.3 20061024 20200624 013860 99999 HAMAR II NO 60.8 11.1 132.0 20090701 20200624 013870 99999 FAVANG NO 61.45 10.183 200.0 20110929 20200624 013890 99999 RENA AP NO 61.183 11.367 255.7 19730101 20200624 013910 99999 FLISA NO 60.617 12.017000000000001 188.0 19730101 20050331 013920 99999 FLISA II NO 60.617 12.017000000000001 185.0 20050218 20200624 013930 99999 DREVSJO NO 61.883 12.033 673.5 19730101 20200624 013970 99999 TRYSIL VEGSTASJON NO 61.3 12.267000000000001 361.4 19730101 20200624 014000 99999 EKOFISK NO 56.55 3.217 48.8 19981223 20200624 014010 99999 FRIGG NO 59.983000000000004 2.25 48.0 20010601 20060718 014030 99999 UTSIRA FYR NO 59.3 4.867 56.3 19280102 20200624 014033 99999 EKOFISK OIL PLTFRM NO ENEK 56.55 3.25 48.8 19810506 20200624 014035 99999 KARMOY NO 59.35 5.2170000000000005 23.0 19751101 19840807 014060 99999 SLATTEROY FYR NO 59.917 5.067 16.0 19730101 20200624 014080 99999 KARMOY NO ENHD 59.345 5.207999999999999 26.2 19840909 20200624 014090 99999 SKUDENES NO 59.15 5.25 7.0 20050218 20051028 014110 99999 KVITSOY - NORDBO NO 59.067 5.417000000000001 22.0 20050612 20200624 014120 99999 OBRESTAD NO 58.65 5.567 26.0 19730101 20200624 014130 99999 SAERHEIM NO 58.75 5.65 87.0 20110928 20200624 014140 99999 ROVER NO 59.433 5.067 25.0 19890520 20200624 014150 99999 SOLA NO ENZV 58.876999999999995 5.638 8.8 19400410 20200624 014160 99999 STAVANGER VAALAND NO 58.95 5.733 72.0 20080724 20200624 014170 99999 NEDRE VATS NO 59.483000000000004 5.75 65.0 19730103 20200624 014180 99999 AUSTEVOLL NO 60.016999999999996 5.2 32.0 19730101 20200624 014190 99999 LIARVATN NO 59.05 6.117000000000001 300.0 20100702 20200624 014211 99999 INDRE MATRE NO 59.85 6.0 24.0 20020314 20020314 014220 99999 FISTER SIGMUNDSTAD NO 59.167 6.0329999999999995 25.0 20050101 20200624 014230 99999 FISTER-TONNEVIK NO 59.167 6.05 50.0 19730101 20041231 014240 99999 SAUDA NO 59.65 6.367000000000001 6.0 19730101 20200624 014250 99999 EIK HOVE NO 58.516999999999996 6.517 66.0 19730101 20200624 014260 99999 EIGEROYA NO 58.433 5.867000000000001 49.0 20040425 20200624 014270 99999 LISTA FYR NO 58.117 6.567 14.0 19280101 20200624 014280 99999 LISTA NO ENLI 58.099 6.626 8.8 19730101 20070813 014281 99999 ULA OIL PLATFORM NO ENLA 59.111000000000004 2.846 94.0 20130806 20200624 014300 99999 MANDAL II NO 58.016999999999996 7.45 138.0 19730101 20200624 014310 99999 SIRDAL-SINNES NO 58.933 6.917000000000001 557.0 20070806 20200624 014320 99999 SIRDAL-TJORHOM NO 58.883 6.85 500.0 19741114 20100331 014321 99999 FIDJELAND NO 58.967 6.933 568.0 20070307 20070307 014330 99999 MIDTLAEGER NO 59.833 6.983 1081.0 19730101 20150528 014340 99999 VAAGSLI NO 59.766999999999996 7.367000000000001 822.0 20040406 20200624 014350 99999 HAUKELISETER TESTFELT NO 59.817 7.2170000000000005 989.5 19850111 20200624 014360 99999 LINDESNES FYR NO 57.983000000000004 7.05 13.0 19730101 20200624 014390 99999 KONSMO-HOYLAND NO 58.25 7.442 260.0 19730101 20200624 014400 99999 BLASJO NO 59.333 6.867000000000001 1104.6 19730101 20200624 014410 99999 HOVDEN-LUNDANE NO 59.583 7.382999999999999 836.0 19830101 20200624 014420 99999 BYGLANDSFJORD NO 58.667 7.8 211.0 19730101 20200624 014440 99999 VALLE NO 59.2 7.517 302.0 20110926 20200624 014450 99999 SKAFSA NO 59.45 8.0 77.0 19730101 19891113 014460 99999 OYFJELL-TROVATN NO 59.567 8.2 714.0 19830101 20040731 014470 99999 HOYDALSMO II NO 59.5 8.2 562.0 20061121 20200624 014480 99999 OKSOY FYR NO 58.067 8.05 8.0 19490101 20200624 014490 99999 GJERSTAD NO 58.867 9.033 32.0 20120105 20200624 014500 99999 MOSSTRAND II NO 59.833 8.183 977.0 19730101 20200624 014520 99999 KJEVIK NO ENCN 58.20399999999999 8.085 17.4 19400501 20200624 014530 99999 HYNNEKLEIV NO 58.6 8.417 162.0 20120105 20200624 014550 99999 TVEITSUND NO 59.033 8.517000000000001 252.0 19730101 20200624 014590 99999 NELAUG NO 58.65 8.633 142.0 19730101 20200624 014600 99999 GULLHOLMEN NO 59.433 10.583 14.0 20121102 20200624 014610 99999 19730101 19740930 014611 99999 GAUSTATOPPEN NO 59.85 8.65 1803.7 20140605 20181022 014620 99999 PORSGRUNN NO 59.083 9.667 90.0 20130729 20200624 014630 99999 AS NO 59.65 10.767000000000001 89.0 20110929 20200624 014640 99999 LANDVIK NO 58.333 8.517000000000001 6.0 20110928 20200624 014650 99999 TORUNGEN FYR NO 58.4 8.783 15.0 19730101 20200624 014660 99999 KJELLER AP NO 59.967 11.033 109.0 20110928 20200624 014670 99999 LYNGOR FYR NO 58.633 9.15 5.0 19730101 20200624 014680 99999 KONGSVINGER NO 60.183 12.0 148.0 20061003 20200624 014690 99999 HONEFOSS-HOYBY NO 60.167 10.25 140.0 20050719 20200624 014700 99999 GVARV NO 59.383 9.2 93.0 19730101 20200624 014703 99999 NOTODDEN NO ENNO 59.566 9.212 19.2 19901019 20200624 014710 99999 VEGGLI II NO 60.05 9.15 275.0 20061003 20200624 014730 99999 KONGSBERG BRANNSTASJON NO 59.617 9.633 173.0 20040510 20200624 014740 99999 LYNGDAL I NUMEDAL NO 59.9 9.533 294.0 19730101 20060831 014750 99999 SKIEN-GEITERYGGEN NO ENSN 59.183 9.567 141.0 19850717 20041230 014760 99999 JOMFRULAND FYR NO 58.85 9.55 5.0 19730101 20200624 014770 99999 KONNERUD NO 59.717 10.15 193.0 19730101 20200624 014780 99999 SVENNER LH NO 58.967 10.15 15.0 19730101 20200624 014800 99999 DRAMMEN BERSKOG NO 59.75 10.133 8.0 20050218 20200624 014810 99999 MELSOM NO 59.233000000000004 10.35 26.0 19740519 20200624 014820 99999 FERDER LH NO 59.033 10.517000000000001 7.7 19310101 20200624 014825 99999 TORP NO ENTO 59.187 10.259 87.2 20050101 20200624 014830 99999 TORP NO 59.183 10.267000000000001 88.0 19730101 20200624 014840 99999 AURSKOG NO 59.917 11.583 128.0 19730101 20200624 014843 99999 OSEBERG NO ENOA 59.317 10.45 15.0 19901019 20200624 014850 99999 DANDE-GALLEBERG NO 59.617 10.217 60.0 20110928 20200624 014860 99999 ASKER NO 59.85 10.433 163.0 20040510 20200624 014870 99999 ALNA NO 59.933 10.833 90.0 20040924 20150601 014880 99999 HAKADAL NO 60.117 10.833 170.0 19400407 20200624 014881 99999 STATFJORD B OIL PLATFORM NO ENFB 61.206 1.829 142.0 20101123 20200624 014890 99999 BJORNHOLT NO 60.05 10.683 360.0 20110928 20200624 014900 99999 TRYVANNSHOGDA NO 59.983000000000004 10.683 528.0 19730101 20200624 014920 99999 OSLO-BLINDERN NO 59.95 10.717 97.0 19730803 20200624 014930 99999 SARPSBORG NO 59.283 11.117 57.0 20040510 20200624 014940 99999 RYGGE NO ENRY 59.379 10.786 53.0 19730101 20200624 014950 99999 STROMTANGEN FYR NO 59.15 10.833 10.0 20040406 20200624 014960 99999 HOLAND-FOSSER NO 59.817 11.482999999999999 154.0 19730101 20071020 014965 99999 19750426 19750514 014970 99999 PRESTEBAKKE NO 59.0 11.533 157.0 19730101 20100409 014980 99999 MAGNOR NO 59.967 12.217 153.0 19830101 20050831 014981 99999 19730101 19780221 014983 99999 STATFJORD OIL RIG & NO 19821204 19841127 014990 99999 VAEROY NO 19860916 19900322 014993 99999 VAEROY NO ENVY 19880105 19900716 015000 99999 RAKKESTAD NO 59.383 11.383 100.0 20090708 20091216 020001 99999 LJUNGBYHED SW ESTL 56.083 13.213 42.7 20040510 20200624 020120 99999 RITSEM SW 67.733 17.467 521.0 19810801 20050924 020130 99999 RITSEM SW 67.733 17.467 542.7 20010601 20200624 020180 99999 SUORVA SW 67.533 18.233 415.0 19350101 19381231 020190 99999 KATTERJAKK A SW 68.417 18.167 516.0 20081027 20200624 020200 99999 KATTERJAKK SW 68.417 18.167 517.0 19770701 20190401 020220 99999 ABISKO SW 68.354 18.816 392.3 20011107 20191119 020230 99999 TORNEHAMN (AUT) SW 68.433 18.633 512.0 19860427 20050526 020240 99999 STORA SJOFALLET SW 67.5 18.3 425.0 20010601 20200624 020260 99999 ALUOKTA SW 67.317 18.883 385.0 20021023 20050930 020290 99999 TARFALA SW 67.917 18.6 1146.0 20010601 20200624 020310 99999 RENSJON SW 68.067 19.833 493.0 20010601 20200624 020320 99999 TORNETRASK LAKE SW 68.217 19.717 393.0 19770701 20030909 020360 99999 NIKKALUOKTA SW 67.85 19.033 468.0 19770701 20200624 020380 99999 LATNIVAARA SW 67.25 20.267 453.0 20010601 20200624 020430 99999 ESRANGE SW 67.933 21.066999999999997 341.0 19940301 19990630 020440 99999 KIRUNA SW ESNQ 67.822 20.337 459.6 19770701 20200624 020450 99999 KIRUNA-SOL SW 67.833 20.417 424.0 19950401 20030922 020480 99999 MALMBERGET SW 67.167 20.666999999999998 375.0 19350101 19910505 020490 99999 GALLIVARE SW ESNG 67.132 20.815 313.0 19790803 20200624 020500 99999 RIKSGRANSEN SW 68.417 18.117 508.0 19350101 19770630 020510 99999 KARESUANDO SZ 68.45 22.5 327.1 19550101 19591231 020520 99999 KVIKKJOKK & SW 66.95 17.75 337.0 19550101 19770630 020530 99999 MALMBERGET SW 67.133 20.666999999999998 365.0 19550101 19770630 020540 99999 NEDRE SOPPERO SW 68.05 21.75 360.0 19550101 20160421 020550 99999 NAIMAKKA SW 68.683 21.533 402.0 19730101 20200624 020560 99999 STENSELE SZ 65.067 17.167 330.1 19550101 19591231 020570 99999 KALLAX/LULEA (AFB) SW ESPA 65.55 22.133000000000003 17.0 19550101 19770630 020580 99999 HAPARANDA & SW 65.833 24.15 7.0 19730101 19770630 020590 99999 GADDEDE SW 64.5 14.133 318.0 19550101 19770630 020600 99999 NAIMAKKA SW 68.683 21.533 403.0 19550101 20041021 020620 99999 OSTERSUND FROSON AB SW 63.183 14.5 376.0 19550101 19770630 020630 99999 ASELE SW 64.167 17.367 329.0 19550101 19770630 020640 99999 SAITTAROVA SW 67.333 22.233 240.0 19730101 20200624 020650 99999 SVEG & SW 62.033 14.367 360.0 19550101 19770630 020660 99999 SUNDSVALL/HARNOSAND SW ESNN 62.533 17.45 4.0 19550101 19770630 020670 99999 SARNA SW 61.683 13.133 505.0 19550103 19770630 020680 99999 DELSBO SW 61.8 16.567 93.0 19350101 19770630 020690 99999 SODERHAMN (SWE-AFB) SW ESCL 61.266999999999996 17.1 26.0 19550101 19770630 020700 99999 GUSTAVSFORS & SW 60.15 13.8 198.0 19730101 19770630 020710 99999 NORRKOPING-SOL SW 58.583 16.15 58.0 19550101 19591231 020711 99999 BORLANGE SW 60.417 15.517000000000001 153.0 19730101 19730121 020720 99999 PARKALOMPOLO SW 67.733 22.833000000000002 313.0 20010601 20200624 020730 99999 KARLSTAD & SW ESSQ 59.367 13.467 46.0 19550101 19770630 020740 99999 OREBRO/EKEBY SW 59.266999999999996 15.333 33.0 19730101 19770630 020750 99999 VASTERAS/HASSLO AFB SW ESCD 59.583 16.633 6.0 19730101 19770630 020760 99999 UPPSALA & SW ESCM 59.883 17.6 21.0 19730101 19770630 020770 99999 STOCKHOLM/BROMMA & SW ESSB 59.35 17.95 15.0 19550101 19770630 020790 99999 SATENAS (SWE-AFB) SW ESIB 58.433 12.7 54.0 19730101 19770630 020800 99999 KARESUANDO SW 68.45 22.45 331.0 19350101 20120831 020810 99999 KARESUANDO SW 68.45 22.45 330.0 19550101 20200624 020820 99999 LANDSORT & SW 58.75 17.867 32.0 19730101 19770630 020830 99999 GOTSKA SANDON & SW 58.4 19.2 12.0 19730101 19770630 020840 99999 LANNAVAARA & SW 68.05 22.0 360.0 19550101 20040507 020850 99999 RANGEDALA (AUTO) SW 57.717 13.117 259.0 19730101 19770630 020860 99999 LAINIO SW 67.767 22.35 317.0 19550101 20050317 020870 99999 JONKOPING & SW ESSJ 57.766999999999996 14.083 226.0 19550101 19770630 020880 99999 KOMPELUSVAARA SW 67.083 22.217 263.0 19730101 20020521 020890 99999 OLANDS NORRA UDDE & SW 57.367 17.1 4.0 19730101 19770630 020900 99999 VISBY & SW ESSV 57.667 18.35 51.0 19550101 19770630 020910 99999 VISBY-SOL SW 57.667 18.35 49.0 19730101 19770630 020920 99999 MUODOSLOMPOLO SW 67.95 23.467 240.0 19730101 20040917 020930 99999 VAXJO & SW 56.867 14.8 166.0 19730101 19770630 020940 99999 UNGSKAR SW 56.033 15.8 1.0 19550101 19770630 020950 99999 PAJALA SW 67.2 23.383000000000003 171.0 19550101 20200624 020960 99999 PAJALA SW 67.217 23.4 168.0 19550101 20080218 020970 99999 MALMO /BULLTOFTON SZ 55.6 13.067 14.9 19550101 19740702 020980 99999 MALMO/STURUP SW ESMS 55.55 13.367 72.0 19730101 19770630 020990 99999 YSTAD & SW 55.433 13.833 34.0 19730101 19770630 021000 99999 NAIMAKKA SW 68.683 21.533 403.0 19730101 19770630 021010 99999 HEMAVAN SW ESUT 65.806 15.083 458.1 19730102 20200624 021020 99999 STEKENJOKK SW 65.1 14.517000000000001 1036.0 19581101 20200624 021030 99999 HEMAVAN-GIEREVARTO SW 65.783 15.067 793.0 19871118 20200624 021040 99999 HEMAVAN SW 65.817 15.083 485.0 19770701 20080218 021050 99999 ABELVATTNET SW 65.533 14.982999999999999 670.0 19730101 20040221 021060 99999 JOKKMOKK (SWE-AFB) SW 66.6 19.833 256.0 19730101 19770630 021080 99999 KLIMPFJALL SW 65.067 14.8 593.0 19770701 20050921 021090 99999 ABRAUR SW 65.9 19.1 342.0 19730102 19770630 021100 99999 GIELAS SW 65.333 15.067 577.0 19870518 20200624 021110 99999 VIDSEL (SWE-AFB) SW ESPE 65.867 20.133 180.0 19730102 19770630 021120 99999 SYLARNA SW 63.05 12.267000000000001 1035.0 19770701 20040821 021140 99999 NORRAKER SW 64.45 15.6 346.0 19750807 19770630 021150 99999 STORLIEN-VISJOVALE& SW 63.3 12.133 640.0 19550101 19770630 021160 99999 MORSIL SW 63.317 13.65 400.0 19730101 20050221 021170 99999 NORDMALING SW 63.567 19.5 6.0 19550101 19770630 021180 99999 DIKANAS/SKANSNAS SW 65.317 16.033 525.0 19730101 20050121 021190 99999 KVIKKJOKK ARRENJARKA SW 66.883 18.017 320.0 19730101 20200624 021200 99999 KVIKKJOKK-ARRENJARKA SW 66.883 18.017 315.0 19350101 20130331 021205 99999 STORUMAN SW 64.95 17.7 279.0 20050419 20200624 021210 99999 MIERKENIS SW 66.683 16.117 615.0 20010601 20200624 021220 99999 STENUDDEN SW 66.533 17.667 453.0 19790802 20040321 021230 99999 JAKKVIK SW 66.317 17.1 552.0 19730101 20160421 021240 99999 ARJEPLOG SW 66.05 17.833 432.0 19770405 20200624 021250 99999 OSTMARK SW 60.317 12.7 178.0 19730101 19770630 021260 99999 GUNNARN SW 65.017 17.7 251.0 19730101 20081231 021270 99999 STENSELE SW 65.067 17.167 327.0 19310103 20050823 021280 99999 GUNNARN SW ESPD 65.0 17.7 283.0 19730101 20130402 021290 99999 GUNNARN SOL (AUT) SW 64.967 17.7 278.0 19730101 19861125 021300 99999 ROPARUDDEN SW 66.483 16.417 481.0 19730101 20160421 021310 99999 ARVIKA SW 59.667 12.583 75.0 19730101 19770630 021330 99999 SNAVLUNDA SW 58.967 14.9 144.0 19730101 19770630 021350 99999 BURESJON SW 65.567 17.867 393.0 19730101 20200624 021360 99999 STORBERG SW 65.5 18.95 454.0 20030519 20040829 021380 99999 GRUNDKALLEN SW 60.5 18.867 23.0 19730101 19770630 021410 99999 TJAKAAPE SW 66.317 19.217 582.0 19730101 20200624 021420 99999 JOKKMOKK SW ESNJ 66.49600000000001 20.147000000000002 275.5 19770701 20000510 021430 99999 PALJAMYREN SW 66.217 19.133 570.0 19730101 20030731 021440 99999 ABRAUR SW 65.983 18.933 374.0 19770701 20040626 021450 99999 TELLEJAUR SW 66.15 19.633 436.0 20030725 20040322 021460 99999 VAJMAT SW 66.5 19.683 324.0 20010701 20160421 021470 99999 MALA-BRANNAN SW 65.15 18.6 363.0 19730101 20200624 021480 99999 NORRKOPING/BRAVALLA SW ESCK 58.617 16.117 27.0 19730101 19770630 021490 99999 ARVIDSJAUR SW 65.6 19.267 384.0 20010701 20200624 021500 99999 NYKOPING/SKAVST AFB SW ESCJ 58.783 16.917 42.0 19730101 19770630 021510 99999 JOKKMOKK FPL SW 66.483 20.167 275.0 19730101 20200624 021520 99999 SUDOK SW 66.3 20.417 174.0 19730101 20050919 021540 99999 VIDSEL SW ESPE 65.875 20.15 182.0 19770701 20200624 021550 99999 HAGSHULT (SWE-AFB) SW ESMV 57.3 14.133 169.0 19550101 19770630 021560 99999 STENSJON (AUT) SW 63.967 13.717 680.0 19770701 20031028 021580 99999 FALLFORS SW 65.133 20.783 190.0 19790726 20020807 021590 99999 FALLFORS SW ESUF 65.12 20.77 195.0 19960801 20050629 021600 99999 NATTAVAARA SW 66.75 21.05 327.0 20010829 20050307 021610 99999 NATTAVAARA SW 66.75 20.933000000000003 327.0 19730101 20200624 021620 99999 MARKARYD SW 56.467 13.65 118.0 19730101 19770630 021630 99999 LJUNGBYHED(SWE-AFB) SW ESDA 56.083 13.232999999999999 43.0 19730101 19770630 021640 99999 PALKEM SW 66.383 21.633000000000003 263.0 19730501 20030719 021660 99999 RONNEBY (SWE-AFB) SW ESDF 56.266999999999996 15.283 58.0 19730101 19770630 021670 99999 FALSTERBO (LGT-H) SW 55.383 12.817 5.0 19730101 19770630 021690 99999 HEDEN SW ESPJ 65.867 21.45 36.0 20020530 20020801 021700 99999 SAVAST SW 65.75 21.767 12.0 20101117 20160421 021710 99999 BODEN SW 65.817 21.633000000000003 18.0 19790802 20200624 021720 99999 ALVSBYN SW 65.683 20.967 50.0 19790710 19791123 021730 99999 ALVSBYN SW 65.667 21.066999999999997 43.0 20010701 20200624 021740 99999 LAKATRASK SW 66.283 21.133000000000003 186.0 20010701 20200624 021760 99999 PITE-RONNSKAR SW 65.033 21.566999999999997 4.0 19970901 20200624 021810 99999 OVERKALIX SVARTBYN SW 66.267 22.85 62.0 19960801 20200624 021820 99999 OVERKALIX SW 66.267 22.833000000000002 47.0 19790803 20020602 021830 99999 LULEA-SOL SW 65.55 22.116999999999997 32.0 20040802 20041020 021840 99999 PAHAROVA SW 66.817 22.333000000000002 229.0 20010701 20200624 021850 99999 LULEA-KALLAX SW 65.55 22.133000000000003 34.0 20010402 20011008 021860 99999 KALLAX SW ESPA 65.544 22.122 19.8 19770701 20200624 021880 99999 RODKALLEN SW 65.317 22.383000000000003 2.0 19730101 20200624 021900 99999 KORPILOMBOLO SW 66.85 23.033 180.0 20010716 20040402 021910 99999 STORON SW 65.7 23.1 4.0 20010701 20200624 021960 99999 HAPARANDA SW 65.833 24.15 6.0 19310101 20121231 021970 99999 HAPARANDA SW 65.817 24.116999999999997 16.0 20081027 20200624 021990 99999 YLINENJARVI SW 66.617 23.467 132.0 20010701 20200624 022000 99999 EDEVIK SW 63.983000000000004 12.867 425.0 19770701 20041225 022020 99999 TORNETRASK LAKE SW 68.217 19.717 393.0 19730101 19770630 022040 99999 NIKKALUOKTA SW 67.85 19.033 470.0 19730101 19770630 022060 99999 STORLIEN-STORVALLEN SW 63.283 12.133 583.0 19350101 20130228 022070 99999 STORLIEN-VISJOVALEN A SW 63.283 12.117 583.0 19730101 20200624 022090 99999 SYLARNA SW 63.05 12.283 1030.0 19730101 20200624 022100 99999 BLAHAMMAREN SW 63.183 12.167 1090.0 20100920 20200624 022120 99999 19740519 19740519 022150 99999 ARESKUTAN SW 63.433 13.083 1280.0 19970901 20040822 022160 99999 MATTMAR SW 63.3 13.883 365.0 19730101 20160421 022170 99999 ARE SW 63.367 13.167 435.0 20010701 20160421 022180 99999 MORSIL SW 63.317 13.65 400.0 19730105 20050924 022190 99999 GADDEDE A SW 64.5 14.217 550.0 20080301 20200624 022210 99999 KORSVATTNET SW 63.833 13.5 717.0 19971201 20200624 022220 99999 GADDEDE SW 64.5 14.167 330.0 19770701 20080218 022230 99999 STEMSJON (AUT) SW 63.967 13.717 680.0 19730101 19770630 022240 99999 FOLLINGE-VAGSKALET SW 63.766999999999996 14.433 475.0 20020609 20020609 022260 99999 OSTERSUND SW ESNZ 63.2 14.5 376.0 19350101 20200624 022271 99999 KALIX SW 65.85 23.133000000000003 7.0 20070307 20070307 022280 99999 EDEVIK SW 64.05 12.95 453.0 19730101 19770630 022290 99999 OSTERSUND-SOL SW 63.2 14.482999999999999 374.0 19970901 20050729 022300 99999 GUBBHOGEN SW 64.217 15.55 310.0 19730101 20200624 022310 99999 FOLLINGE SW 63.683 14.6 362.0 20010701 20200624 022320 99999 NORRAKER SW 64.433 15.633 346.0 19770701 20040903 022330 99999 SAXNAS SW 64.967 15.383 545.0 20010701 20160421 022340 99999 STROMSUND SW 63.867 15.583 373.0 19790105 19951130 022360 99999 HALLHAXASEN SW 63.766999999999996 15.333 376.0 19770701 20200624 022420 99999 HOTING SW 64.083 16.233 241.0 19730101 20200624 022430 99999 JUNSELE SW 63.683 16.95 214.0 19730101 20200624 022440 99999 JUNSELE SW 63.683 16.95 217.0 19960201 20080218 022450 99999 VILHELMINA SW 64.583 16.85 349.0 19960801 20200624 022455 99999 LYCKSELE SW ESNL 64.548 18.715999999999998 214.9 19980408 20200624 022470 99999 KRANGEDE SW 63.15 16.167 184.0 19730101 20200624 022480 99999 KRANGEDE SW 63.167 16.167 223.0 19770704 20050218 022510 99999 STORSJO KAPELL SW 62.8 13.067 575.0 19730101 19770630 022520 99999 IDVATTNET SW 64.45 17.083 353.0 19830201 20040922 022540 99999 ASELE SW 64.167 17.317 308.0 19770701 20200624 022550 99999 FRANSTA SW 62.5 16.183 75.0 19730101 19770630 022560 99999 RISTRASK SW 64.733 17.4 575.0 20010701 20160421 022570 99999 FLOTNINGEN SW 61.85 12.267000000000001 670.0 19730101 19770630 022580 99999 VINDEL-BJORKHEDEN SW 65.817 16.717 352.0 20011104 20041216 022590 99999 KRAMFORS SOLLEFTEA SW ESNK 63.049 17.769000000000002 10.4 19770701 20200624 022600 99999 VASTMARKUM SW 63.133 18.25 143.0 19730101 20200624 022610 99999 LYCKSELE SW 64.55 18.717 211.0 19730101 20200624 022620 99999 VUOGGATJALME SW 66.567 16.35 500.0 19730101 20040306 022630 99999 FREDRIKA SW 64.083 18.367 327.0 20010701 20200624 022640 99999 FREDRIKA SW 64.083 18.417 300.0 19730101 20021028 022650 99999 HEMLING SW 63.65 18.55 183.0 20010701 20200624 022660 99999 VILHELMINA (AUTO) SW 64.583 16.85 349.0 20020608 20020608 022670 99999 ORNSKOLDSVIK SW ESNO 63.408 18.99 107.9 19790802 20200624 022690 99999 SKAGSUDDE SW 63.183 19.017 11.0 19960801 20200624 022700 99999 NORSJO SW 64.917 19.467 301.0 20010614 20030914 022710 99999 NORSJO SW 64.933 19.383 310.0 20010701 20200624 022740 99999 VINDELN SW 64.217 19.717 206.0 19960501 20000509 022760 99999 NORDMALING SW 63.567 19.5 5.0 19770701 19870423 022780 99999 KRANGEDE (AUTO) SW 63.15 16.167 184.0 19770701 20041015 022790 99999 SKILLINGMARK SW 59.867 11.967 130.0 19730101 19770630 022800 99999 BLOMSKOG SW 59.283 12.05 110.0 19730101 19770630 022810 99999 AMAL SW 59.05 12.7 60.0 19730101 19770630 022820 99999 PETISTRASK SW 64.567 19.7 258.0 20010701 20200624 022830 99999 UMEA-SOL SW 63.817 20.233 22.0 19840712 19840712 022840 99999 JARNASKLUBB SW 63.433 19.683 7.0 19730101 20200624 022860 99999 UMEA SW ESNU 63.792 20.283 7.3 19770701 20200624 022861 99999 SODERHAMN SW ESCL 61.266999999999996 17.1 36.0 20040706 20120103 022870 99999 HOLMON SW 63.8 20.866999999999997 8.0 20050724 20200624 022880 99999 HOLMOGADD SW 63.6 20.75 6.0 19350101 20080111 022890 99999 SYDOSTBROTTEN (LH) SW 63.333 20.183 25.0 19730101 20010920 022900 99999 FURUOGRUND & SW 64.917 21.233 10.0 19750210 20030114 022920 99999 HOKMARKSBERGET SW 64.433 21.283 105.0 20010701 20160421 022930 99999 SKELLEFTEA SW ESNS 64.625 21.076999999999998 47.9 19790802 20200624 022960 99999 BJUROKLUBB (LGT-H) SW 64.483 21.583000000000002 36.0 19350101 20031222 022970 99999 BJUROKLUBB SW 64.483 21.583000000000002 43.0 20010601 20200624 022980 99999 SVARTEBORG SW 58.567 11.55 70.0 19730101 19770630 023000 99999 FJALLNAS SW 62.583 12.217 780.0 20020523 20060102 023020 99999 STORBO SW 61.833 12.283 665.0 20010701 20160421 023030 99999 FLATRUET SW 62.733000000000004 12.732999999999999 995.0 20010701 20160421 023040 99999 FLOTNINGEN SW 61.85 12.267000000000001 670.0 19770701 20040123 023050 99999 NASHUVUD SW 58.9 13.25 50.0 19730101 19770630 023060 99999 RORBACKSNAS SW 61.133 12.817 465.0 19770701 20171208 023070 99999 IDRE FJALL SW 61.883 12.85 869.0 19730101 20200624 023080 99999 TANNAS SW 62.45 12.667 724.0 19960801 20200624 023100 99999 STORSJO KAPELL SW 62.8 13.067 583.0 19770701 20050123 023110 99999 HOGFJALLSHOTELLET SW 61.15 13.117 744.0 20010701 20160421 023120 99999 MALEXANDER SW 58.067 15.217 153.0 19730101 19770630 023130 99999 VISINGSO SW ESGI 58.1 14.4 110.0 19731209 19731209 023140 99999 LOFSDALEN SW 62.1 13.25 610.0 20010729 20050523 023141 99999 TYLLINGE SW 58.016999999999996 16.067 100.0 20160801 20190909 023160 99999 SARNA SW 61.7 13.183 425.0 19350101 20050523 023170 99999 DRAVAGEN SW 62.1 13.617 566.0 20010701 20200624 023180 99999 TANDADALEN SW 61.167 13.017000000000001 830.0 19730101 20160204 023190 99999 BORTNAN SW 62.75 13.85 467.0 20010701 20200624 023191 99999 AMBJORNARP SW 57.417 13.283 220.0 20160726 20200326 023201 99999 TINGHALLA SW 57.967 13.85 278.0 20160726 20200326 023210 99999 ALVDALEN SW 61.25 14.033 253.0 19730101 20200624 023220 99999 20030123 20030723 023230 99999 KLOVSJO SW 62.533 14.2 550.0 20011124 20050223 023240 99999 SVEG SW 62.016999999999996 14.183 363.0 19370101 20121031 023250 99999 KLOVSJOHOJDEN SW 62.5 14.15 803.0 19730101 20200624 023260 99999 FREDRIKA SW 64.083 18.417 300.0 19770701 20041221 023270 99999 SVEG A SW 62.05 14.4 362.0 20090929 20200624 023280 99999 KRAMFORS (SWE-AFB) SW 63.05 17.767 19.0 20021217 20041102 023290 99999 HAMRA SW 61.667 15.0 455.0 19730101 20200624 023300 99999 HUNGE SW 62.75 15.1 342.0 19740627 20051008 023310 99999 HUNGE SW 62.75 15.083 343.0 20010701 20200624 023321 99999 FAGERHULT SW 57.15 15.667 115.0 20160726 20200326 023330 99999 LJUNGBY SW 56.833 13.917 155.0 19730101 19770630 023340 99999 FINNEBY SW 62.033 15.467 261.0 19730101 19770630 023360 99999 EDSBYN SW 61.383 15.833 163.0 19770701 20040209 023370 99999 NORRHOG SW 62.266999999999996 15.667 320.0 19730101 20160421 023380 99999 EDSBYN SW 61.367 15.717 185.0 19960801 20200624 023420 99999 FRANSTA SW 62.516999999999996 16.183 105.0 19770701 19960103 023430 99999 TORPSHAMMAR SW 62.5 16.283 100.0 19730101 20200624 023451 99999 SJOBO SW 55.633 13.7 32.0 20160726 20200325 023460 99999 DELSBO SW 61.783 16.55 90.0 19770928 20030818 023470 99999 DELSBO SW 61.833 16.55 72.0 20010701 20200624 023490 99999 SILLRE SW 62.766999999999996 16.733 205.0 20010701 20160421 023540 99999 RASTA SW 62.433 17.35 80.0 20010701 20160421 023550 99999 KUGGOREN SW 61.7 17.533 10.0 19960801 20200624 023600 99999 SKELLEFTEA AIRPORT SW ESNS 64.633 21.083000000000002 46.0 19740110 19740110 023610 99999 HARNOSAND SW 62.633 17.95 8.0 19290801 20040910 023640 99999 ORNSKOLDSVIK ARPT SW ESNO 63.4 18.967 107.0 19731014 19740213 023650 99999 SUNDSVALL-HARNOSAND SW 62.516999999999996 17.45 8.0 19760801 20050417 023660 99999 SUNDSVALL HARNOSAND SW ESNN 62.528 17.444000000000003 4.9 19770701 20200624 023670 99999 ALNON ISLAND SW 62.367 17.533 33.0 19840529 20051231 023680 99999 BRAMON SW 62.217 17.75 18.0 19870521 20200624 023690 99999 20010918 20011107 023700 99999 GAVLE/SANDVIKEN AFB SW ESSK 60.6 16.95 68.0 19730828 19740123 023710 99999 BORLANGE (SWE-AFB) SW ESSD 60.433 15.5 153.0 19730810 19731213 023750 99999 ESKILSTUNA(SWE-AFB& SW ESSU 59.35 16.717 40.0 19800302 20030313 023760 99999 SODERHAMN (SWE-AFB) SW 61.266999999999996 17.1 36.0 19770701 19980105 023780 99999 SODERHAMN FLYGPLATS SW 61.45 17.167 27.0 20040706 20081231 023810 99999 NORRKOPING/KUNGSANG SW ESSP 58.583 16.25 5.0 19730728 19770630 023820 99999 LUNGO SW 62.65 18.1 18.0 19730824 20200624 023980 99999 KRISTIANSTAD/EVEROD SW ESMK 55.917 14.083 23.0 19730708 19731106 024000 99999 OSTMARK SW 60.35 12.65 310.0 19770701 20050924 024020 99999 SKILLINGMARK SW 59.867 11.967 130.0 19771014 20040224 024030 99999 NAVEN SW 58.7 13.117 53.0 20010701 20200624 024040 99999 ARVIKA SW ESKV 59.667 12.583 75.0 19770701 20040224 024060 99999 BLOMSKOG SW 59.283 12.05 110.0 19770701 20040424 024070 99999 MALUNG A SW 60.683 13.7 306.0 20011124 20200624 024080 99999 BLOMSKOG SW 59.217 12.083 171.0 19960801 20200624 024090 99999 AMAL SW 59.05 12.7 60.0 19770701 20040424 024100 99999 MALUNG SW EVSM 60.683 13.7 308.0 19770701 20110818 024110 99999 ARVIKA SW ESKV 59.676 12.639000000000001 72.2 20010701 20200624 024120 99999 GUSTAVSFORS SW 60.15 13.8 190.0 19350101 20050726 024130 99999 BRATTMON SW 60.75 12.767000000000001 205.0 20010701 20160421 024150 99999 KARLSTAD SOL SW 59.367 13.467 46.0 19850731 20081231 024160 99999 20010718 20031017 024161 99999 MOLKOM SW 59.617 13.732999999999999 93.0 20020924 20020924 024170 99999 PALGRUNDEN SW 58.75 13.15 50.0 19781014 20200624 024180 99999 KARLSTAD SW ESOK 59.445 13.337 107.3 19350101 20200624 024190 99999 KARLSTAD SOL SW 59.367 13.467 46.0 19840520 20060311 024200 99999 MOCKFJARD SW 60.516999999999996 14.95 193.0 20011117 20041211 024220 99999 ASPHYTTAN SW 59.617 14.183 130.0 20031224 20050124 024230 99999 SUNNE SW 59.867 13.117 109.0 20010701 20200624 024240 99999 STALLDALEN SW 59.95 14.95 210.0 19960501 20030319 024260 99999 GUSTAVSFORS SW 60.15 13.8 188.0 20010701 20200624 024280 99999 ATORP SW 59.1 14.367 105.0 19770701 20040801 024283 99999 OREBRO SW ESOE 59.224 15.038 57.3 19910827 20200624 024284 99999 MORA SW ESKM 60.958 14.511 193.2 19910827 20200624 024285 99999 TORSBY SW ESST 60.158 12.991 119.8 20070226 20200624 024290 99999 DAGLOSEN SW 59.667 14.183 133.0 20010701 20200624 024300 99999 BACKA SW 60.917 15.117 227.0 20010711 20020721 024310 99999 KLOTEN SW 59.867 15.25 289.0 20090811 20200624 024320 99999 OREBRO SW 59.233000000000004 15.05 53.0 19960801 20200624 024330 99999 FALUN SW 60.617 15.667 157.0 19350101 20020704 024350 99999 BORLANGE SW ESSD 60.422 15.515 153.3 19790802 20200624 024360 99999 OREBRO/EKEBY (DEAD) SW 59.266999999999996 15.333 33.0 19350101 19820831 024373 99999 ARBOGA SW ESQO 59.387 15.924000000000001 10.1 20070226 20070227 024390 99999 FELLINGSBRO-FINNAKE SW 59.533 15.583 52.0 20020315 20021101 024400 99999 AMOT SW 60.967 16.433 162.0 20010601 20200624 024410 99999 MORA SW 60.967 14.5 197.0 20010701 20200624 024430 99999 ENKOPING SW 59.65 17.117 26.0 19790803 20200624 024440 99999 FOLKARNA SW 60.167 16.317 70.0 19770701 19960506 024460 99999 VASTERAS SW ESOW 59.589 16.634 6.4 19770701 20200624 024480 99999 DUNKER SW 59.2 16.917 33.0 20010620 20041226 024490 99999 ESKILSTUNA A SW 59.383 16.45 15.0 20010701 20200624 024500 99999 EGGEGRUND SW 60.733000000000004 17.567 4.0 19970901 20200530 024510 99999 VASTRA BANKEN (AUT) SW 60.883 17.917 22.0 19771211 20021213 024520 99999 KILSBERGEN-SUTTARBODA SW 59.3 14.9 219.0 20010701 20200624 024530 99999 GAVLE/SANDVIKEN AIR FORCE BASE SW ESSK 60.717 17.167 16.0 19960501 20200624 024540 99999 UTVALNAS SW 60.75 17.35 4.0 19780102 19780615 024560 99999 FILM SW 60.233000000000004 17.9 35.0 19960201 20200624 024580 99999 UPPSALA SW ESCM 59.897 17.589000000000002 20.7 19350101 20200624 024600 99999 ARLANDA SW ESSA 59.652 17.919 41.8 19770630 20200624 024620 99999 UPPSALA UNIVERSITY SW 59.867 17.633 13.0 20061108 20191120 024640 99999 BROMMA SW ESSB 59.354 17.942 14.3 19310101 20200624 024650 99999 STOCKHOLM/BROMMA UA SW 59.35 17.967 22.0 19801004 20021218 024680 99999 STORA SPANSBERGET SW 60.383 15.133 493.0 20010701 20200624 024690 99999 TULLINGE SW ESCN 59.183 17.917 54.0 20010601 20200624 024700 99999 ORSKAR (LGT-H) SW 60.533 18.383 5.0 20010825 20030601 024710 99999 GRUNDKALLEN SW 60.5 18.867 23.0 19770701 20031012 024720 99999 SKEPPMORA SW 60.117 15.117 240.0 20010701 20160421 024730 99999 UNDERSTEN (LGT-H) SW 60.283 18.917 40.0 19890126 19890301 024740 99999 SINGO ISLAND SW 60.167 18.75 14.0 19770701 20040430 024760 99999 FLODA SW 59.05 16.4 33.0 19960801 20200624 024780 99999 19870519 19870519 024800 99999 NORRTALJE/VASBY SW 59.85 18.733 10.0 20010804 20050522 024810 99999 SALA SW 59.917 16.683 58.0 20010701 20200624 024820 99999 KERSTINBO SW 60.266999999999996 16.983 57.0 20010701 20200624 024830 99999 STOCKHOLM-SOL SW 59.35 18.067 30.0 19970901 20040416 024840 99999 STOCKHOLM/OBSERVATORIET SW 59.35 18.067 44.0 20010601 20200624 024850 99999 STOCKHOLM SW 59.35 18.067 52.0 19840521 20191030 024853 99999 SKAVSTA SW ESKN 58.788999999999994 16.912 42.7 19910827 20200624 024860 99999 ADELSO SW 59.367 17.517 6.0 20010701 20200624 024870 99999 SKARPO A SW 59.35 18.733 22.0 19970901 20200624 024880 99999 ORSKAR SW 60.533 18.383 9.0 19960801 20200624 024890 99999 BERGA SW 59.067 18.117 3.0 20010601 20200624 024900 99999 SVANBERGA SW 59.833 18.633 16.0 20010701 20200624 024930 99999 SODERARM SW 59.75 19.417 15.0 20010701 20200624 024940 99999 BJUROKLUBB (LGT-H) SW 64.483 21.583000000000002 36.0 20010930 20060303 024950 99999 SVENSKA BJORN (AUT) SW 59.55 20.017 24.0 19780303 20050111 024960 99999 SVENSKA HOGARNA SW 59.45 19.5 12.0 19770701 20200624 024980 99999 SVENSKA HOGARNA A SW 59.45 19.5 12.0 20100602 20200624 024990 99999 ALMAGRUNDET SW 59.15 19.133 25.0 19970901 20100311 025000 99999 NORDKOSTER SW 58.9 11.0 35.0 19960201 20200624 025010 99999 VADEROARNA SW 58.583 11.067 24.0 19770804 20200624 025020 99999 DALS-ED SW 58.9 12.033 152.0 20020205 20040425 025040 99999 SVARTEBORG SW 58.567 11.55 70.0 19770701 20040425 025050 99999 MASESKAR SW 58.1 11.333 16.0 19960801 20200624 025060 99999 20011225 20031125 025070 99999 HUD SW 58.667 11.417 80.0 20010701 20160421 025080 99999 MASESKAR (LGT-H) SW 58.1 11.35 14.0 19730101 20050525 025100 99999 LJUNGSKILE SW 58.217 11.933 70.0 19350101 20050925 025103 99999 TROLLHATTAN VANERSBORG SW ESGT 58.318000000000005 12.345 41.8 19910827 20200624 025105 99999 LIDKOPING SW ESGL 58.466 13.174000000000001 61.0 20071016 20120830 025110 99999 FLADEN SW 57.217 11.833 10.0 20041102 20041102 025120 99999 SAVE SW ESGP 57.775 11.87 18.0 19350101 20170102 025130 99999 GOTEBORG SW 57.717 12.0 2.0 19960501 20200624 025140 99999 ARVIDSJAUR SW ESNX 65.59 19.282 379.5 19770701 20200624 025150 99999 TORPABRON SW 58.2 12.15 20.0 20010601 20160421 025160 99999 VINGA SW 57.633 11.617 19.0 19960901 20200624 025170 99999 TRUBADUREN SW 57.6 11.633 26.0 19780323 20070611 025180 99999 NIDINGEN SW 57.3 11.9 2.0 19730101 20200624 025190 99999 RINGHALS (AUT) SW 57.266999999999996 12.117 12.0 20020325 20040525 025200 99999 SATENAS SW ESIB 58.426 12.714 55.2 19770701 20200624 025210 99999 BERGARUD SW 58.6 12.417 55.0 19770701 20160421 025220 99999 20010625 20031226 025230 99999 ABRAUR SW 65.983 18.933 374.0 19730101 20050325 025240 99999 MOLLA SW 57.933 13.067 190.0 19730101 20060331 025260 99999 LANDVETTER SW ESGG 57.663000000000004 12.28 154.2 19771003 20200624 025270 99999 GOTEBORG/LANDVETTER SW 57.667 12.290999999999999 164.0 19991219 19991219 025280 99999 TANDADALEN SW 61.167 13.017000000000001 830.0 19770708 20030914 025290 99999 VARBERG & SW 57.117 12.267000000000001 0.0 19840707 19841024 025300 99999 NASHUVUD SW 58.9 13.25 50.0 19770701 19960127 025330 99999 SKARA SW 58.383 13.25 120.0 19350101 20030911 025350 99999 SKOVDE SW ESGR 58.456 13.972999999999999 98.8 19910827 20200624 025360 99999 RANGEDALA SW 57.783 13.167 299.0 19770701 20200624 025361 99999 DALSJOFORS SW 57.717 13.083 259.0 20160726 20200326 025380 99999 HESTRA SW 57.4 13.533 285.0 20031221 20200325 025390 99999 ULLARED SW 57.117 12.783 122.0 20010701 20200624 025400 99999 KROPPEFJALL-GRANAN SW 58.6 12.2 174.0 20010701 20200624 025410 99999 SNAVLUNDA SW 58.967 14.9 144.0 19770701 20030502 025420 99999 HALLUM SW 58.317 13.033 71.0 20010701 20200624 025430 99999 FAGRE SW 58.65 14.133 97.0 20030621 20030621 025440 99999 KARLSBORG SW 58.516999999999996 14.517000000000001 94.0 19770701 20200624 025450 99999 AXSTAL SW 58.567 14.567 93.0 20071104 20200624 025460 99999 GARDSJO SW 58.883 14.383 212.0 20010701 20200624 025480 99999 VISINGSO SW 58.1 14.417 95.0 20010601 20200624 025490 99999 TOMTABACKEN SW 57.5 14.467 356.0 20010701 20200624 025500 99999 JONKOPING SW ESGJ 57.758 14.069 225.9 19310101 20200624 025520 99999 MALEXANDER SW 58.067 15.232999999999999 197.0 20010701 20200624 025530 99999 KYMBO SW 58.083 13.783 220.0 20010701 20160421 025531 99999 HABO SW 57.917 14.083 176.0 20070226 20070226 025540 99999 KETTSTAKA SW 58.717 15.033 225.0 20010701 20200624 025550 99999 NASSJO SW 57.65 14.7 305.0 19770701 20030102 025560 99999 HAGSHULT SW ESMV 57.292 14.137 169.5 19770701 20200624 025570 99999 HORN SW 57.883 15.867 91.0 20010701 20200624 025580 99999 KOLMARDEN-STROMSFORS SW 58.683 16.317 155.0 20010701 20200624 025590 99999 GLADHAMMAR SW 57.7 16.467 31.0 20010701 20200624 025600 99999 ZINKGRUVAN SW 58.8 15.117 215.0 20010620 20061120 025610 99999 KVARN SW 58.65 15.433 10.0 20100503 20200624 025620 99999 MALMEN SW ESCF 58.402 15.526 93.9 19770701 20200624 025625 99999 SAAB SW ESSL 58.406000000000006 15.681 52.4 19951012 20200624 025630 99999 HARSTENA SW 58.25 17.017 18.0 20010701 20200624 025635 99999 ANGELHOLM SW ESDB 56.283 12.833 47.0 20040810 20200624 025640 99999 MALEXANDER SW 58.067 15.232999999999999 200.0 19770701 20050621 025650 99999 HULTSFRED SW ESSF 57.526 15.823 111.6 19790806 20200624 025660 99999 MALILLA SW 57.4 15.817 98.0 19730101 20150128 025670 99999 LANDSORT SW 58.75 17.867 20.0 19960801 20200624 025680 99999 ALLGUNNEN SW 57.067 15.967 115.0 19770707 20010608 025700 99999 NORRKOPING/BRAVALLA SW 58.617 16.117 33.0 19770701 20150129 025710 99999 KUNGSANGEN SW ESSP 58.586000000000006 16.250999999999998 9.8 19770701 20200624 025720 99999 NYKOPING/SKAVST AFB SW 58.783 16.917 42.0 19770701 19801003 025740 99999 NORRKOPING SW 58.583 16.15 41.6 19970901 20200624 025750 99999 OLANDS NORRA UDDE SW 57.367 17.1 4.0 19960801 20200624 025760 99999 GLADHAMMAR SW 57.717 16.467 35.0 19770701 20021102 025800 99999 STABBO (AUT) SW 58.967 18.45 10.0 19870314 20160617 025810 99999 UTO ISLAND SW 58.95 18.267 76.0 20020222 20030815 025820 99999 LANDSORT (LGT-H) SW 58.75 17.867 32.0 19350101 20061025 025830 99999 GUSTAF DALEN SW 58.6 17.467 3.0 19770708 20081126 025840 99999 GOTSKA SANDON SW 58.4 19.2 12.0 19350101 20061231 025860 99999 HARSTENA SW 58.25 17.017 7.0 19770701 20050215 025870 99999 FAROSUND-AR SW 57.917 18.95 13.0 20010701 20200624 025880 99999 FARO ISLAND SW 57.9 19.167 8.0 19770701 20020513 025890 99999 GOTSKA SANDON SW 58.4 19.2 17.0 20010701 20200624 025900 99999 VISBY SW ESSV 57.663000000000004 18.346 50.0 19310101 20200624 025910 99999 VISBY AEROLOGISKA STATION SW 57.65 18.35 47.0 20020315 20200326 025920 99999 OLANDS NORRA UDDE SW 57.367 17.1 4.0 19350101 20020516 025931 99999 VASTERGARN SW 57.433 18.15 2.0 20160726 20181125 025940 99999 STORA KARLSO(LGT-H) SW 57.3 17.967 40.0 20010629 20040712 025950 99999 ROMA SW 57.55 18.433 35.0 20010601 20160421 025960 99999 HERRVIK SW 57.417 18.917 5.0 20020516 20050325 025970 99999 KAJAANI FI 64.283 27.683000000000003 135.9 20020707 20030820 025980 99999 OSTERGARNSHOLM SW 57.433 18.983 5.0 20010701 20200624 025990 99999 NASUDDEN SW 57.067 18.217 5.0 19970901 19970902 026000 99999 GLOMMEN SW 56.933 12.367 7.0 20010626 20050727 026020 99999 HALLANDSASEN SW 56.4 12.95 140.0 20010701 20160421 026030 99999 BROEN SW 56.867 12.667 47.0 20010701 20200326 026040 99999 HALMSTAD SW ESMT 56.691 12.82 30.8 19770701 20200624 026050 99999 HALLANDS VADERO SW 56.45 12.55 10.0 19960801 20200624 026060 99999 KULLEN (LGT-H) SW 56.3 12.45 72.0 19770701 20050901 026070 99999 ANGELHOLM/BARKAKRA SW ESDB 56.283 12.083 18.0 19770701 20081231 026090 99999 RYNGE SW 55.467 13.667 50.0 20010701 20160421 026100 99999 ORJA (AUT) SW 55.867 12.867 11.0 19851009 20051108 026110 99999 HELSINGBORG SW 56.033 12.767000000000001 44.0 19840618 20200624 026140 99999 OSKARSGRUNDET SW 55.6 12.85 10.0 19840515 20050602 026150 99999 FALSTERBO A SW 55.383 12.817 5.0 20090713 20200624 026151 99999 KLAGSHAMN (PORT) SW 55.516999999999996 12.917 2.0 20020826 20020826 026160 99999 FALSTERBO SW 55.383 12.817 5.0 19770701 20200624 026170 99999 MAGLARP (AUT) SW 55.383 13.067 8.0 20020326 20040626 026180 99999 TORUP SW 56.95 13.067 130.0 20080229 20200624 026200 99999 TORUP SW 56.967 13.067 87.0 19960201 20080218 026220 99999 LJUNGBY SW 56.85 13.883 148.0 19770701 20200624 026230 99999 HORBY SW 55.867 13.667 114.0 20010827 20200624 026240 99999 MARKARYD SW 56.467 13.65 118.0 19770701 19870831 026241 99999 MARKARYD SW 56.433 13.6 118.0 20160726 20200326 026250 99999 SKILLINGE SW 55.483000000000004 14.317 5.0 19960801 20200624 026260 99999 OSBY SW 56.367 13.95 85.0 19770701 20200326 026270 99999 LUND-SOL SW 55.717 13.217 86.0 19970901 19970902 026280 99999 HANO SW 56.016999999999996 14.85 60.0 19960801 20200624 026290 99999 HASTVEDA SW 56.283 13.933 10.0 20100503 20200624 026291 99999 LINDEROD SW 55.967 13.85 130.0 20160728 20200225 026300 99999 LJUNGBYHED(SWE-AFB) SW ESDA 56.083 13.232999999999999 52.0 19770701 20030131 026320 99999 UTKLIPPAN SW 55.95 15.7 3.0 20010701 20200624 026330 99999 LUND SOL SW 55.717 13.217 86.0 20160726 20200326 026350 99999 MALMO SW 55.567 13.067 21.0 19350413 20200624 026360 99999 STURUP SW ESMS 55.53 13.372 71.9 19770630 20200624 026380 99999 SMYGEHUK (LGT-H) SW 55.333 13.35 5.0 19770701 20041208 026390 99999 YSTAD & SW 55.433 13.833 34.0 19350101 19830915 026400 99999 VAXJO/URASA(SAFB) SW 56.867 14.8 166.0 19350101 20041115 026410 99999 KRONOBERG SW ESMX 56.928999999999995 14.728 185.9 19790802 20200624 026440 99999 OLANDS SODRA UDDE SW 56.2 16.4 3.0 19960801 20200624 026460 99999 OLANDSBRON LAG SW 56.667 16.467 10.0 20010701 20160421 026480 99999 VAXJO SW 56.85 14.833 200.0 20010601 20200624 026500 99999 HANO ISLAND (LGT-H) SW 56.016999999999996 14.85 55.0 19770701 20050814 026510 99999 KRISTIANSTAD SW ESMK 55.922 14.085999999999999 23.2 19790802 20200624 026520 99999 KRISTIANSTAD SW 56.016999999999996 14.1 10.0 20101117 20160421 026531 99999 RINKABY SW 55.983000000000004 14.3 12.0 20070307 20200326 026540 99999 STENSHUVUD & SW 55.667 14.267000000000001 112.0 19730101 20030803 026560 99999 SANDHAMMAREN(LGT-H) SW 55.383 14.2 5.0 20010925 20020813 026610 99999 KOSTA (ORREFORS) SW 56.833 15.467 232.0 20010916 20200624 026640 99999 RONNEBY SW ESDF 56.266999999999996 15.265 58.2 19770701 20200624 026660 99999 UNGSKAR SW 56.033 15.8 3.0 19770701 20050415 026670 99999 KARLSKRONA-SODERSTJERNA SW 56.15 15.583 8.0 20100503 20200624 026700 99999 KALMAR SW 56.683 16.3 4.0 19960501 20200624 026720 99999 KALMAR SW ESMQ 56.68600000000001 16.288 5.2 19350101 20200624 026750 99999 20030407 20030407 026760 99999 OLANDS SODRA UDDE SW 56.2 16.4 3.0 20010811 20050820 026790 99999 HOBURG A SW 56.917 18.15 39.0 20090610 20200624 026800 99999 HOBURG SW 56.917 18.15 39.0 19351025 20120831 026810 99999 VRETA KLOSTER SW 58.483000000000004 15.517000000000001 52.0 20040529 20070624 026850 99999 OLANDS SODRA GRUND SW 56.067 16.683 30.0 19771126 20070307 027010 99999 KILPISJARVI SAANA FI 69.05 20.85 1009.0 20080115 20200624 027020 99999 INARI KAAMANEN FI 69.133 27.267 156.0 20140108 20200624 027030 99999 ESPOO SEPANKYLA FI 60.2 24.733 31.5 20080115 20150316 027040 99999 HATTULA LEPAA AWS FI 61.117 24.316999999999997 87.0 20080115 20200624 027050 99999 PELKOSENNIEMI PYHATUNTURI FI 67.017 27.217 487.5 20080116 20200624 027060 99999 LOHJA PORLA FI 60.25 24.05 37.0 20080115 20200624 027080 99999 KARVIA ALKKIA FI 62.183 22.8 161.0 20130805 20200624 027100 99999 VESANTO SONKARI FI 62.917 26.416999999999998 120.0 20080116 20200624 027110 99999 VAASA KESKUSTA FI 63.1 21.616999999999997 13.0 20080115 20111102 027130 99999 HAMEENLINNA LAMMI EVO FI 61.217 25.133000000000003 134.0 20130805 20200527 027140 99999 VAALA PELSO FI 64.5 26.44 114.0 20080116 20200624 027150 99999 HYRYNSALM KYTOMAKI FI 64.833 28.233 320.0 20080116 20090706 027160 99999 RANUA KK FI 65.933 26.517 154.0 20080116 20080731 027170 99999 KITTILA POKKA FI 68.167 25.767 272.0 20080115 20200624 027180 99999 PUUMALA KK URHEILUKENTTA FI 61.516999999999996 28.183000000000003 98.0 20130805 20200624 027190 99999 SODANKYLA KOKKA FI 67.817 27.75 240.0 20080116 20200624 027200 99999 KITTILA FI EFKT 67.70100000000001 24.846999999999998 196.3 20050101 20200624 027210 99999 KOKKOLA TANKAR FI 63.95 22.85 6.3 20080116 20200624 027220 99999 INARI SAARISELKA FI 68.417 27.416999999999998 302.0 20080123 20200624 027230 99999 KITTILA LEVITUNTURI FI 67.783 24.85 200.0 20080115 20160222 027240 99999 LUMPARLAND LANGNAS HARBOUR FI 60.117 20.3 11.0 20150216 20200624 027250 99999 HALSUA KANALA PUROLA FI 63.45 24.45 153.0 20080115 20200624 027260 99999 ENONTEKIO NAKKALA FI 68.6 23.583000000000002 374.0 20080115 20200624 027270 99999 ASIKKALA PULKKILANHARJU FI 61.266999999999996 25.517 76.0 20080115 20200624 027280 99999 TAIPALSAARI KYLANIEMI FI 61.3 28.183000000000003 88.0 20080115 20110915 027290 99999 JAMSA HIMOS FI 61.883 25.333000000000002 205.0 20090701 20110804 027300 99999 SAVOLINNA RUUNAVUORI FI 61.833 28.85 157.0 20090701 20110210 027310 99999 PUUMALA KK FI 61.533 28.2 127.0 20090801 20130627 027320 99999 KUOPIO RITONIEMI FI 62.8 27.9 87.0 20090701 20200624 027330 99999 LAPPEENRANTA KONNUNSUO FI 61.033 28.566999999999997 46.4 20090701 20200624 027340 99999 PARIKKALA KOITSANLAHTI FI 61.45 29.467 75.0 20090701 20200624 027350 99999 VIRRAT AIJANNEVA FI 62.333 23.55 139.5 20090701 20200624 027360 99999 JUVA PARTALA FI 61.9 27.883000000000003 111.5 20090701 20200624 027370 99999 TOHOLAMPI LAITALA FI 63.817 24.166999999999998 84.5 20090701 20200624 027380 99999 PYHAJARVI OL OJAKYLA FI 63.733000000000004 25.7 153.3 20090701 20200624 027390 99999 SOTKAMO KUOLANIEMI FI 64.117 28.333000000000002 162.5 20090701 20200624 027410 99999 JOMALA JOMLABY FI 60.183 19.983 11.0 20080116 20200624 027430 99999 KEMIONSAARI VANO FI 59.867 22.2 8.0 20090701 20200624 027440 99999 TAMPERE SATAKUNNANKATU FI 61.5 23.767 92.0 20130805 20200624 027450 99999 SALLA NARUSKA FI 67.167 29.183000000000003 214.7 20090701 20200624 027460 99999 HANKO TULLINIEMI FI 59.817 22.916999999999998 27.5 20090701 20200624 027470 99999 TURKU RAJAKARI FI 60.383 22.1 5.5 20090701 20200624 027480 99999 VARKAUS FI EFVR 62.17100000000001 27.869 87.2 20050101 20160511 027500 99999 HANKO TVARMINNE FI 59.85 23.25 3.0 20090701 20200624 027510 99999 PORI TAHKOLUOTO HARBOUR FI 61.633 21.383000000000003 4.6 20080116 20200624 027520 99999 KRISTIINANKAUPUNKI LIGHTHOUSE FI 62.2 21.166999999999998 21.7 20080115 20200624 027530 99999 KANKAANPAA NIINISALO AIRFIELD FI 61.833 22.467 122.0 20080115 20200624 027540 99999 HAMEENLINNA KATINEN FI 61.0 24.5 85.0 20080115 20200624 027550 99999 YLIVIESKA AIRFIELD FI 64.05 24.717 76.0 20030330 20200624 027560 99999 SALO KARKKA FI 60.367 23.116999999999997 2.0 20080115 20200624 027570 99999 RAASEPORI JUSSARO FI 59.817 23.583000000000002 22.8 20080116 20200624 027580 99999 VIHTI MAASOJA FI 60.417 24.4 44.2 20080115 20200624 027590 99999 PORVOO HARABACKA FI 60.4 25.6 23.5 20080116 20200624 027600 99999 KUUSAMO RUKA TALVIJARVI FI 66.167 29.133000000000003 306.5 20140108 20200624 027610 99999 RAUMA KYLMAPIHLAJA FI 61.15 21.3 29.0 20080115 20200624 027620 99999 KOKEMAKI PEIPOHJA HYRKOLA FI 61.266999999999996 22.25 39.0 20080115 20100528 027630 99999 TAMPERE HARMALA FI 61.467 23.75 86.0 20080115 20200624 027640 99999 KITTILA LOMPOLONVUOMA FI 68.0 24.217 270.0 20140108 20200624 027650 99999 LUHANKA JUDINSALO FI 61.7 25.5 83.2 20080115 20200624 027660 99999 ILOMANTSI POTSONVAARA FI 63.15 31.05 236.5 20120618 20200624 027670 99999 HAMEENLINNA LAMMI PAPPILA FI 61.05 25.05 125.0 20080115 20200624 027680 99999 HEINOLA ASEMANTAUS FI 61.2 26.05 92.0 20080115 20200624 027690 99999 KAUHAJOKI KUJA-KOKKO FI 62.417 22.183000000000003 93.0 20080116 20200624 027700 99999 JUUPAJOKI HYYTIALA FI 61.85 24.283 153.0 20080115 20200624 027710 99999 JOUTSA LEIVONMAKI SAVENAHO FI 61.883 26.1 146.0 20080115 20200624 027720 99999 RANTASALMI RUKKASLUOTO FI 62.067 28.566999999999997 80.0 20080115 20200624 027730 99999 TURKU ARTUKAINEN FI 60.45 22.183000000000003 9.1 20080115 20200624 027770 99999 SALO KIIKALA AIRFIELD FI 60.467 23.65 117.0 20040510 20200624 027780 99999 SAVONLINNA PUNKAHARJU FI 61.8 29.316999999999997 79.5 20080115 20200624 027800 99999 KORSNAS BREDSKARET FI 62.933 21.183000000000003 2.8 20080115 20200624 027810 99999 STROMMINGSBADN FI 62.983000000000004 20.733 3.7 20080115 20200624 027830 99999 LAMMI ISO-EVO FI 61.183 25.033 129.0 20080116 20090201 027870 99999 ALAJARVI MOKSY FI 63.083 24.267 171.4 20080115 20200624 027880 99999 KUOPIO MAANINKA FI 63.15 27.316999999999997 91.3 20080115 20200624 027890 99999 RAUTAVAARA YLA-LUOSTA FI 63.383 28.666999999999998 165.5 20080116 20200624 027900 99999 KUMLINGE KK FI 60.25 20.75 22.5 20030330 20200624 027910 99999 JUUKA NIEMELA FI 63.233000000000004 29.233 115.0 20080115 20200624 027930 99999 LIPERI TUISKAVANLUOTO FI 62.55 29.666999999999998 79.5 20080115 20200624 027940 99999 KIRKKONUMMI MAKILUOTO FI 59.917 24.35 2.0 20080115 20200624 027950 99999 HELSINKI HARMAJA FI 60.1 24.983 6.4 20080116 20200624 027960 99999 LIEKSA LAMPELA FI 63.317 30.05 98.0 20080115 20200624 027970 99999 HAAPAVEST MUSTIKKAMAKI FI 64.15 25.416999999999998 112.0 20080115 20200624 027980 99999 VALTIMO KK FI 63.667 28.833000000000002 115.0 20080115 20200624 027990 99999 KUHMO KALLIOJOKI FI 64.3 30.166999999999998 198.4 20080115 20200624 028000 99999 RAAHE NAHKIAINEN FI 64.617 23.9 23.8 20080116 20200624 028010 99999 ENONTEKIO KILPISJARVI FI 69.05 20.783 482.7 19790601 20200624 028030 99999 SIIKAJOKI REVONLAHTI FI 64.683 25.083000000000002 49.5 20080115 20200624 028040 99999 TAIVALKOSKI KK URHEILUTIE FI 65.583 28.217 197.0 20080115 20200624 028050 99999 UTSJOKI KEVO FI 69.75 27.0 106.3 19730101 20200624 028060 99999 KAAMANEN FI 69.1 27.217 149.0 19080101 19151231 028070 99999 IVALO FI EFIV 68.607 27.405 146.6 19520101 20200624 028075 99999 ENONTEKIO FI EFET 68.363 23.424 306.3 19980419 20200624 028080 99999 INARI SEVETTIJARVI FI 69.583 28.85 132.0 20080116 20110429 028110 99999 KUUSAMO KIUTAKONGAS FI 66.367 29.316999999999997 165.0 20080115 20200624 028120 99999 YLITORNIO MELTOSJARVI FI 66.533 24.65 93.0 20080115 20200624 028130 99999 ROVANIEMI APUKKA FI 66.583 26.017 107.4 20080115 20200624 028140 99999 KEMIJARVI AIRFIELD FI 66.717 27.166999999999998 208.0 20080116 20200624 028150 99999 SAVUKOSKI KK FI 67.283 28.183000000000003 180.0 20080115 20200624 028160 99999 SODANKYLA VUOTSO FI 68.083 27.183000000000003 248.8 20080116 20200624 028170 99999 SAARISELKA KAUNISPAA FI 68.433 27.45 438.0 20080115 20200624 028180 99999 INARI RAJAJOOSEPPI FI 68.483 28.3 254.9 20080115 20200624 028190 99999 SALLA VARRIOTUNTURI FI 67.75 29.616999999999997 360.0 20080115 20200624 028200 99999 MUONIO LAUKUKERO FI 68.067 24.033 762.0 20080115 20200624 028210 99999 MUONIO SAMMALTUNTURI FI 67.967 24.116999999999997 565.5 20080115 20200624 028230 99999 MUONIO ALAMUONIO FI 67.967 23.683000000000003 252.6 19730101 20191001 028234 99999 KITTILA FI 67.7 24.833000000000002 201.0 19920615 20081231 028240 99999 KITTILA KENTTAROVA FI 67.983 24.25 349.5 20080116 20200624 028250 99999 UTSJOKI NUORGAM FI 70.083 27.9 22.0 20080115 20200624 028270 99999 INARI VAYLA FI 69.067 27.5 123.5 20080115 20200624 028280 99999 KAARINA YLTOINEN FI 60.383 22.55 5.2 20080115 20200624 028290 99999 HYVINKAA HYVINKAANKYLA FI 60.6 24.8 87.5 20080115 20200624 028300 99999 KOUVOLA ANJALA FI 60.7 26.816999999999997 33.0 20080115 20200624 028310 99999 VIROLAHTI KOIVUNIEMI FI 60.533 27.666999999999998 5.0 20080115 20200624 028320 99999 TOHMAJARVI KEMIE FI 62.233000000000004 30.35 90.0 20080115 20200624 028330 99999 SEINAJOKI PELMAA FI 62.933 22.483 31.7 20080115 20200624 028340 99999 VIEREMA KAARAKKALA FI 63.833 27.217 207.6 20080116 20200624 028350 99999 INARI NELLIM FI 68.85 28.3 123.0 20080115 20200624 028360 99999 SODANKYLA FI EFSO 67.395 26.619 183.5 19170101 20200624 028440 99999 PELLO CENTRE FI EFPE 66.767 23.967 85.9 19730101 20200624 028450 99999 ROVANIEMI FI EFRO 66.565 25.83 196.6 19730101 20200624 028470 99999 ROVANIEMI RAUTATIEASEMA FI 66.5 25.717 82.3 20080115 20200624 028480 99999 SALLA FI 66.817 28.666999999999998 223.0 19730101 19990730 028490 99999 SALLA KK MYLLYTIE FI 66.833 28.666999999999998 221.7 20010601 20200624 028500 99999 VARKAUS KOLSUANNIEMI FI 62.317 27.9 83.0 20130805 20200624 028510 99999 OULU OULUNSALO PELLONPAA FI 64.933 25.366999999999997 12.0 20120101 20200624 028520 99999 KOKKOLA HOLLIHAKA FI 63.85 23.116999999999997 8.1 20130805 20180515 028570 99999 INARI ANGELI LINTUPUOLISELKA FI 68.9 25.733 285.0 20130805 20200624 028580 99999 INARI KIRAKKAJARVI FI 69.583 28.9 106.0 20130805 20200624 028590 99999 PUOLANKA PALJAKKA FI 64.667 28.05 341.0 20130805 20200624 028600 99999 KITTILA KK FI 67.65 24.9 181.0 20130805 20200624 028620 99999 KEMI AJOS FI 65.667 24.517 3.1 20040831 20200624 028630 99999 KEMI I LIGHTHOUSE FI 65.383 24.1 19.0 20040213 20200624 028640 99999 KEMI TORNIO FI EFKE 65.782 24.599 18.6 19520101 20200624 028650 99999 KUIVANIEMI FI 65.517 25.267 5.0 19730101 19790729 028660 99999 PUDASJARVI AIRFIELD FI 65.417 26.967 120.0 20010601 20200624 028670 99999 PUDASJARVI FI 65.367 27.017 117.0 19730101 19990901 028680 99999 KUUSAMO RUKATUNTURI FI 66.167 29.15 362.8 20080115 20200624 028690 99999 KUUSAMO FI EFKS 65.988 29.239 264.0 19090101 20200624 028720 99999 RAAHE LAPALUOTO HARBOUR FI 64.667 24.4 2.0 20080116 20200624 028730 99999 HAILUOTO MARJANIEMI FI 65.033 24.566999999999997 7.3 20040803 20200624 028740 99999 HAILUOTO ISLAND FI EFHL 65.033 24.8 6.0 19730101 20200624 028744 99999 YLIVIESKA FI EFYL 64.061 24.715999999999998 76.8 19920615 19950608 028750 99999 OULU FI EFOU 64.93 25.355 14.3 19060101 20200624 028760 99999 OULU VIHREASAARI HARBOUR FI 65.0 25.4 3.8 20080115 20200624 028790 99999 SUOMUSSALMI FI EFSU 64.9 29.017 224.0 19730101 20010309 028800 99999 TORNIO TORPPI FI 65.85 24.166999999999998 9.0 20130805 20200624 028810 99999 RANUA AIRFIELD FI 65.983 26.366999999999997 161.0 20130805 20200624 028820 99999 KITTILA MATOROVA FI 68.0 24.233 340.0 20130805 20200624 028830 99999 KAJAANI PETAISENNISKA FI 64.217 27.75 161.5 20130805 20200624 028880 99999 INARI SEITALAASSA FI 69.05 27.75 121.5 20130805 20200624 028890 99999 SUOMUSSALMI PESIO FI 64.933 28.75 225.2 20010919 20200624 028900 99999 UTSJOKI KEVO KEVOJARVI FI 69.75 27.017 76.0 20130805 20200603 028970 99999 KAJAANI FI EFKI 64.285 27.691999999999997 147.2 19160101 20200624 029010 99999 MASSKAR FI 63.733000000000004 22.583000000000002 13.0 19730101 20050822 029020 99999 ULKOKALLA FI 64.333 23.45 4.0 19730101 19770126 029030 99999 KRUUNUPYY FI EFKK 63.721000000000004 23.143 25.3 19601101 20200624 029050 99999 NIVALA FI 63.917 24.967 81.0 19730101 20040329 029060 99999 KEMIONSAARI KEMIO FI 60.167 22.75 12.0 20130805 20200624 029070 99999 KALAJOKI ULKOKALLA FI 64.333 23.45 5.0 19010101 20200624 029100 99999 MUSTASAARI VALASSAARET FI 63.433 21.066999999999997 11.0 19730101 20200624 029110 99999 VAASA FI EFVA 63.051 21.761999999999997 5.8 19170101 20200624 029120 99999 VAASA FI 63.1 21.583000000000002 14.0 19971201 20060119 029130 99999 KAUHAVA FI EFKA 63.126999999999995 23.051 46.0 19730101 20200624 029135 99999 KRUUNUPYY FI 63.717 23.133000000000003 26.0 19980316 20081231 029140 99999 KAUHAVA KK UUNIMAANTIE FI 63.117 23.05 40.0 20130805 20150109 029150 99999 VIITASAARI FI EFVI 63.083 25.866999999999997 132.0 19730101 20200624 029170 99999 KUOPIO FI EFKU 63.007 27.798000000000002 98.5 19060101 20200624 029190 99999 LAPPEENRANTA HIEKKAPAKKA FI 61.2 28.467 77.0 19730101 20200624 029200 99999 PIETARSAARI KALLAN FI 63.75 22.517 19.2 20040803 20200624 029210 99999 MOIKIPAA FI 62.883 21.1 13.0 19740301 20050331 029240 99999 AHTARI MYLLYMAKI FI EFHT 62.533 24.217 159.7 19730101 20200624 029244 99999 ILMAJOKI FI EFIL 62.7 22.833000000000002 92.0 19920520 19920615 029245 99999 SEINAJOKI FI EFSI 62.692 22.831999999999997 91.7 19990114 20200624 029260 99999 PORI RAILWAY STATION FI 61.483000000000004 21.783 10.1 20120101 20200624 029270 99999 MULTIA KARHILA FI 62.516999999999996 24.8 227.0 20130805 20200624 029280 99999 JOENSUU LINNUNLAHTI FI 62.6 29.717 81.0 20130805 20200624 029290 99999 JOENSUU FI EFJO 62.663000000000004 29.608 121.3 19520101 20200624 029310 99999 KASKINEN SALGRUND FI 62.333 21.183000000000003 5.0 20130805 20200624 029340 99999 HELSINKI RAILWAY STATION SQ FI 60.167 24.95 3.0 20120618 20150924 029350 99999 JYVASKYLA FI EFJY 62.398999999999994 25.678 139.9 19170101 20200624 029370 99999 KOKEMAKI TULKKILA FI 61.25 22.35 39.0 20120618 20200624 029390 99999 ILOMANTSI MEKRIJARVI FI 62.766999999999996 30.983 156.5 20030330 20200624 029420 99999 KANKAANPAA NIINISALO PUOLVOIM FI 61.833 22.467 124.8 19520101 20200624 029430 99999 TAMPERE SIILINKARI FI 61.516999999999996 23.75 98.0 19730101 20200624 029440 99999 TAMPERE PIRKKALA FI EFTP 61.413999999999994 23.604 118.9 19060101 20200624 029450 99999 HALLI FI EFHA 61.856 24.787 146.0 19730101 20200624 029460 99999 JAMSA HALLI LENTOASEMANTIE FI 61.867 24.816999999999997 144.0 20120618 20200624 029470 99999 MIKKELI FI EFMI 61.687 27.201999999999998 100.3 19730101 20200624 029474 99999 VARKAUS FI 62.167 27.866999999999997 89.0 19920615 20081231 029480 99999 SAVONLINNA FI EFSA 61.943000000000005 28.945 94.8 19840813 20200624 029490 99999 SOMERO SALKOLA FI 60.65 23.8 143.0 19730101 20200624 029500 99999 PARAINEN FAGERHOLM FI 60.117 21.7 4.5 19010101 20200624 029510 99999 19730101 19740810 029520 99999 PORI FI EFPO 61.461999999999996 21.8 13.4 19520101 20200624 029530 99999 HAMEENLINNA FI 60.983000000000004 24.45 92.0 19730101 19770119 029550 99999 KUOPIO SAVILAHTI FI 62.9 27.633000000000003 88.3 20120618 20200624 029560 99999 KOUVOLA UTTI LENTOPORTINTIE FI 60.883 26.933000000000003 99.0 20130805 20200624 029570 99999 VAASA KLEMETTILA FI 63.1 21.639 9.0 20120101 20200624 029580 99999 LAPPEENRANTA FI EFLP 61.045 28.144000000000002 106.4 19730101 20200624 029590 99999 LAPPEENRANTA LEPOLA FI 61.05 28.217 104.4 20120618 20200624 029600 99999 RAIJALA FI 61.183 22.616999999999997 51.0 19010101 19051231 029610 99999 KUUSKAJASKARI FI 61.133 21.366999999999997 10.0 19730101 20050801 029630 99999 JOKIOINEN FI 60.817 23.5 103.0 19570402 20200624 029640 99999 KUSTAVI ISOKARI FI 60.717 21.033 3.9 20040803 20200624 029650 99999 LAHTI LAUNE FI 60.967 25.633000000000003 78.7 19730101 20190514 029660 99999 UTTI FI EFUT 60.896 26.938000000000002 103.3 19730101 20200624 029670 99999 KOTKA HAAPASAARI FI 60.283 27.183000000000003 5.5 20040803 20200624 029680 99999 KOTKA KIRKONMAA FI 60.383 27.05 27.9 20120618 20130830 029700 99999 MARIEHAMN FI EFMA 60.122 19.898 5.2 19170101 20200624 029710 99999 JOMALA FI 60.15 19.867 10.0 19971201 20070102 029720 99999 TURKU FI EFTU 60.513999999999996 22.263 49.1 19010101 20200624 029730 99999 SUOMUSJARVI FI 60.4 23.767 86.0 19730101 20031017 029740 99999 HELSINKI VANTAA FI EFHK 60.317 24.963 54.6 19520101 20200624 029750 99999 HELSINKI MALMI FI EFHF 60.255 25.043000000000003 17.4 19170101 20170306 029760 99999 KOTKA RANKKI FI 60.383 26.967 13.1 19520101 20200624 029780 99999 HELSINKI KAISANIEMI FI 60.183 24.95 4.0 20080115 20200624 029790 99999 KOKAR BOGSKAR FI 59.5 20.35 16.0 20040803 20200624 029800 99999 LEMLAND NYHAMN FI 59.967 19.95 10.0 19730101 20200624 029810 99999 PARAINEN UTO FI 59.783 21.366999999999997 6.8 19010101 20200624 029820 99999 HANKO RUSSARO FI 59.766999999999996 22.95 6.5 19060101 20200624 029830 99999 NURMIJARVI GEOPHSICAL OBSERVATORY FI 60.516999999999996 24.65 113.0 20120618 20200624 029840 99999 INKOO BAGASKAR FI 59.933 24.017 12.0 19730101 20200624 029851 99999 ESPOO TAPIOLA FI 60.183 24.783 7.5 20150217 20200624 029860 99999 KATAJALUOTO FI 60.1 24.916999999999998 7.0 19730101 19850520 029870 99999 PORVOO KALLBADAGRUND FI 59.983000000000004 25.6 23.3 19821001 20200624 029880 99999 ISOSAARI FI 60.1 25.066999999999997 7.0 19841001 20081001 029890 99999 HELSINKI LIGHTHOUSE FI 59.95 24.933000000000003 20.2 20120618 20200624 029900 99999 KUMLINGE ISLAND FI 60.3 20.75 5.0 19841001 20030222 029910 99999 PORVOO EMASALO FI 60.2 25.633000000000003 27.1 20040803 20200624 029920 99999 LOVIISA ORRENGRUND FI 60.283 26.45 3.5 20040803 20200624 029930 99999 HAMMARLAND MARKET FI 60.3 19.133 15.1 20040213 20200624 029960 99999 RYMATTYLA RAULA FI 60.4 21.95 7.0 20080116 20120413 029980 99999 HELSINKI KUMPULA FI 60.2 24.967 24.0 20130805 20200624 030010 99999 MUCKLE FLUGGA UK 60.85 -0.883 53.0 19800421 20060115 030020 99999 BALTASOUND NO.2 UK EGPW 60.75 -0.85 15.0 19730101 20200624 030030 99999 SUMBURGH UK EGPB 59.879 -1.296 6.1 19770119 20200624 030031 99999 19730102 19750810 030040 99999 COLLAFIRTH HILL UK 60.533 -1.383 228.0 19790208 20050731 030050 99999 LERWICK UK 60.133 -1.183 84.0 19291001 20200624 030060 99999 SELLA NESS UK 60.45 -1.2670000000000001 7.0 19810501 20160211 030064 99999 SCATSTA UK EGPM 60.433 -1.296 24.7 19811015 20200624 030065 99999 UNST ISLAND UK 60.733000000000004 -0.8170000000000001 285.0 19811124 20021130 030070 99999 MUCKLE HOLM UK 60.583 -1.2670000000000001 20.0 19811124 20050505 030080 99999 FAIR ISLE UK 59.533 -1.633 57.0 19730103 20200624 030090 99999 NORTH RONALDSAY ISL UK 59.367 -2.417 11.0 19781003 20060410 030100 99999 SULE SKERRY UK 59.083 -4.4 12.0 19730101 20190326 030110 99999 NORTH RONA ISLAND UK 59.117 -5.817 103.0 19900901 20090320 030130 99999 FOULA UK 60.15 -2.0669999999999997 22.0 19840614 20050129 030140 99999 FOULA NO2 UK 60.117 -2.0669999999999997 13.0 19840801 20160426 030170 99999 KIRKWALL UK EGPA 58.958 -2.905 15.5 19730101 20200624 030180 99999 WOODVALE UK EGOW 53.582 -3.056 11.3 20050620 20200624 030200 99999 SAINT KILDA ISLAND UK 57.817 -8.567 8.0 19750402 19900321 030210 99999 LOCHBOISDALE UK 57.15 -7.317 6.0 19730103 20050920 030220 99999 BENBECULA UK EGPL 57.481 -7.3629999999999995 5.8 19730101 20200624 030230 99999 SOUTH UIST RANGE UK 57.333 -7.367000000000001 4.0 19920301 20200624 030240 99999 HYSKEIR (LGT-H) UK 56.967 -6.683 10.0 19860501 20051002 030250 99999 BUTT OF LEWIS (LH) UK 58.516999999999996 -6.267 23.0 19830804 20051013 030260 99999 STORNOWAY UK EGPO 58.216 -6.331 7.9 19291001 20200624 030270 99999 WATERSTEIN UK 57.433 -6.767 83.0 19771005 20060203 030280 99999 NEIST POINT (LGT-H) UK 57.417 -6.7829999999999995 21.0 19801001 19900221 030290 99999 ARDNAMURCHAN(LGT-H) UK 56.733000000000004 -6.2170000000000005 12.0 19730101 20021027 030300 99999 SAASAIG UK 57.1 -5.832999999999999 9.0 19730104 19761003 030310 99999 LOCH GLASCARNOCH UK 57.717 -4.883 264.0 19921022 20200624 030320 99999 RUBH RE UK 57.867 -5.817 16.0 19730101 19780327 030330 99999 DIABAIG UK 57.583 -5.7 60.0 19801001 20021025 030340 99999 AULTBEA NO2 UK 57.867 -5.632999999999999 10.0 19861001 20200624 030350 99999 BARRA ISLAND UK EGPR 57.033 -7.45 3.0 19870624 20070710 030360 99999 BROADFORD UK 57.25 -5.867000000000001 8.0 19880301 19910513 030370 99999 SKYE/LUSA UK 57.25 -5.8 18.0 19980301 20170502 030380 99999 FORT WILLIAM UK 56.833 -5.1 20.0 19730101 20020610 030390 99999 BEALACH NA BA NO2 UK 57.417 -5.683 773.0 19890301 20200624 030400 99999 KILMORY UK 56.766999999999996 -6.05 45.0 19890801 20040323 030410 99999 AONACH MOR UK 56.817 -4.967 1130.0 19920302 20200624 030430 99999 LOCHCARRON UK 57.4 -5.483 32.0 20030330 20031107 030440 99999 ALTNAHARRA NO2 UK 58.283 -4.433 80.0 19930302 20200624 030460 99999 LOCHLUICHART UK 57.617 -4.817 88.0 20010915 20041031 030470 99999 TULLOCH BRIDGE UK 56.867 -4.7 249.0 19830805 20200624 030490 99999 CAPE WRATH (LGT-H) UK 58.633 -5.0 112.0 19730101 20011219 030500 99999 FORT AUGUSTUS UK 57.133 -4.717 41.0 19730101 20050709 030520 99999 SHIN-IN-SUTHERLAND UK 57.95 -4.417 7.0 19730101 19800110 030521 99999 SHIN UK 57.95 -4.417 7.0 20070307 20070307 030530 99999 NAIRN UK 57.6 -3.867 52.0 19291001 19301231 030540 99999 STRATHY PT. (LGT-H) UK 58.6 -4.0169999999999995 32.0 19780211 20011104 030550 99999 RACKWICK UK 58.867 -3.383 18.0 19840609 20080429 030560 99999 DALWHINNIE UK 56.933 -4.2330000000000005 358.0 19310301 19390930 030570 99999 FOYERS UK 57.266999999999996 -4.4830000000000005 21.0 19820403 20031223 030580 99999 INVERGORDON HARBOUR UK 57.683 -4.167 3.0 19840614 20021129 030590 99999 INVERNESS UK EGPE 57.543 -4.048 9.4 19730102 20200624 030600 99999 TUMMEL BRIDGE UK 56.7 -4.0169999999999995 145.0 19730101 20020117 030610 99999 TARBAT NESS (CAPE) UK 57.867 -3.767 18.0 19730101 20050515 030620 99999 TAIN RANGE (SAWS) UK EGQA 57.817 -3.967 4.0 19891019 20200624 030630 99999 AVIEMORE UK 57.2 -3.833 228.0 19821201 20200624 030640 99999 GLENMORE LODGE UK 57.167 -3.7 341.0 19730101 19800530 030650 99999 CAIRNGORM SUMMIT UK 57.117 -3.633 1245.0 19850106 20200624 030660 99999 KINLOSS UK EGQK 57.648999999999994 -3.5610000000000004 6.7 19730101 20200624 030670 99999 FEALAR LODGE UK 56.9 -3.633 560.0 19861101 20051021 030680 99999 LOSSIEMOUTH UK EGQS 57.705 -3.339 12.8 19730103 20200624 030700 99999 GLENLIVET UK 57.35 -3.35 213.0 19730101 20080801 030710 99999 GRANTOWN-ON-SPEY UK 57.333 -3.633 335.0 19810107 20051025 030720 99999 CAIRNWELL UK 56.883 -3.417 933.0 19971201 20200624 030730 99999 19730102 19731231 030740 99999 SCRABSTER HARBOUR UK 58.617 -3.55 10.0 19951001 20041015 030750 99999 WICK UK EGPC 58.458999999999996 -3.093 38.4 19291001 20200624 030755 99999 MERRYFIELD ARPT / RNAS UK EGDI 50.963 -2.9360000000000004 43.9 20181001 20191024 030760 99999 TEMP FOR 03075 UK 58.45 -3.1 39.0 19930313 19990425 030770 99999 LYBSTER UK 58.317 -3.283 85.0 19941001 20051112 030800 99999 ABOYNE NO2 UK 57.083 -2.833 140.0 19890412 20200624 030820 99999 SPITTAL OF GLENSHEE UK 56.766999999999996 -3.383 308.0 20040611 20060404 030840 99999 KIRKMICHAEL UK 56.717 -3.517 266.0 20040227 20040227 030850 99999 INCHMARLO UK 57.067 -2.533 80.0 19900301 20070301 030880 99999 INVERBERVIE NO.2 UK 56.85 -2.267 134.0 19871202 20200624 030890 99999 USAN UK 56.683 -2.45 30.0 19730308 19790709 030900 99999 WINDY HEAD UK 57.633 -2.233 231.0 19730102 19890107 030910 99999 DYCE UK EGPD 57.202 -2.198 65.5 19260602 20200624 030920 99999 PETERHEAD HARBOUR UK 57.5 -1.767 15.0 19781101 20200624 030930 99999 FRASERBURGH (LGT-H) UK 57.683 -2.0 19.0 19730308 19900718 030940 99999 ROSEHEARTY UK 57.7 -2.117 7.0 19951001 20120227 030960 99999 BRIDGE OF CLAY UK 56.65 -3.383 175.0 20010916 20040811 030970 99999 ENOCHDHU UK 56.75 -6.882999999999999 4.0 20030330 20050528 031000 99999 TIREE UK EGPU 56.498999999999995 -6.869 11.6 19291001 20200624 031020 99999 ORSAY (LGT-H) UK 55.667 -6.5 23.0 19840614 20050529 031050 99999 ISLAY: PORT ELLEN UK 55.683 -6.25 17.0 20010729 20200624 031051 99999 ISLAY (PORT ELLEN) UK 55.683 -6.25 18.0 19730401 19880105 031053 99999 ISLAY (PORT ELLEN) UK EGPI 55.683 -6.25 18.0 19880107 19880112 031060 99999 RHUVAAL UK 55.917 -6.132999999999999 20.0 19730101 19820623 031070 99999 DHU LOCH UK 55.817 -5.1 83.0 19730101 19850125 031110 99999 MACHRIHANISH UK EGQJ 55.433 -5.7 10.0 19730101 20200624 031140 99999 OBAN UK EGEO 56.417 -5.4670000000000005 4.0 19780902 20200624 031150 99999 19730115 19750612 031160 99999 DALMALLY STRONMILCHAN UK 56.4 -5.0 40.0 20010915 20090331 031180 99999 CORSEWALL PT. (LH) UK 55.0 -5.15 15.0 19730101 20050731 031190 99999 PORTPATRICK UK 54.85 -5.132999999999999 30.0 19730308 19751214 031200 99999 LOCHRANZA NO3 UK 55.7 -5.3 46.0 19880801 20081020 031210 99999 KILDONAN UK 55.433 -5.1 18.0 19730302 20030718 031220 99999 PLADDA (LGT-H) UK 55.417 -5.117 12.0 19861002 20040531 031290 99999 ARDROSSAN UK 55.65 -4.817 9.0 19730101 20010629 031300 99999 WEST FREUGH UK 54.85 -4.95 17.0 19730103 20070307 031310 99999 MULL OF GALLOWAY LH UK 54.633 -4.85 78.0 19730101 20050828 031320 99999 WEST FREUGH (AUT) UK EGOY 54.85 -4.95 12.0 19830804 20200624 031330 99999 SLOY UK 56.25 -4.717 6.0 19730101 20040814 031340 99999 GLASGOW BISHOPTON UK 55.9 -4.533 59.0 20030330 20200624 031350 99999 PRESTWICK UK EGPK 55.50899999999999 -4.587 19.8 19440101 20200624 031360 99999 PRESTWICK RNAS UK 55.516999999999996 -4.583 27.0 19930401 20200624 031370 99999 WHITHORN UK 54.7 -4.417 40.0 19800910 19940509 031380 99999 GREENOCK MRCC UK 55.967 -4.8 5.0 19870306 20070719 031390 99999 SAUGHALL UK 55.6 -4.217 223.0 19971201 20080731 031394 99999 CAMPBELTOWN UK EGEC 55.437 -5.686 12.8 19990118 20200624 031400 99999 GLASGOW UK EGPF 55.872 -4.433 7.9 19291001 20200624 031401 99999 MAGNUS OIL PLATFORM UK EGRE 61.617 1.3 470.0 20120301 20200624 031402 99999 BRUCE OIL PLATFORM UK EGRK 59.733000000000004 1.6669999999999998 470.0 20120301 20200624 031403 99999 HARDING OIL PLATFORM UK EGRL 59.266999999999996 1.5 470.0 20120301 20200624 031404 99999 MILLER OIL PLATFORM UK EGRM 58.717 1.4 470.0 20120301 20170812 031405 99999 ANDREW OIL PLATFORM UK EGRO 58.033 1.4 470.0 20120301 20200624 031406 99999 MUNGO OIL PLATFORM UK EGRP 57.367 1.983 470.0 20120301 20200624 031407 99999 MARNOCK OIL PLATFORM UK EGRS 57.283 1.65 470.0 20120301 20200624 031408 99999 RAVENSPURN N OIL PLATFORM UK EGRV 54.016999999999996 1.1 470.0 20120301 20200514 031409 99999 WEST SOLE OIL PLATFORM UK EGRW 53.7 1.133 470.0 20120301 20200624 031411 99999 SCHIEHALLION FPSO OIL PLATFORM UK EGRI 60.35 -4.05 470.0 20130312 20130326 031412 99999 CLAIR OIL PLATFORM UK EGRF 60.683 -2.533 470.0 20130312 20200624 031413 99999 CLEETON OIL PLATFORM UK EGRT 54.033 0.7170000000000001 470.0 20130312 20200504 031430 99999 KILLIN UK 56.483000000000004 -4.35 114.0 19730101 19890908 031440 99999 STRATHALLEN AIRFIELD UK 56.317 -3.733 35.0 19890502 20200624 031450 99999 GLASGOW WEA. CEN. UK 55.867 -4.2669999999999995 17.0 19730101 19850331 031470 99999 GLENLEE UK 55.1 -4.183 55.0 19730101 19901031 031480 99999 GLEN OGLE UK 56.417 -4.317 564.0 19961101 20200624 031490 99999 BECAME STN 031491 UK 56.067 -4.05 335.0 19730101 19811231 031500 99999 CRAWFORDJOHN UK 55.5 -3.767 274.0 19730101 19830730 031520 99999 SALSBURGH UK 55.867 -3.867 275.0 19730101 20040520 031530 99999 DUNDRENNAN UK 54.8 -4.0 113.0 19830804 20200624 031540 99999 DUMFRIES/DRUNGANS UK 55.05 -3.65 16.0 19730101 20040419 031550 99999 DRUMALBIN UK 55.617 -3.733 245.0 19910502 20200624 031560 99999 PITREAVIE UK EGRQ 56.05 -3.417 40.0 19820318 19850801 031570 99999 PERTH/SCONE UK 56.433 -3.367 121.0 19810330 19900402 031571 99999 PERTH/SCONE UK 56.433 -3.367 121.0 19730103 19810327 031573 99999 PERTH/SCONE UK EGPT 56.45 -3.367 121.0 19900424 19930701 031580 99999 CHARTERHALL UK 55.7 -2.383 111.0 19871002 20200624 031590 99999 INCHKEITH UK 56.033 -3.133 58.0 19291001 20160906 031600 99999 EDINBURGH UK EGPH 55.95 -3.373 41.1 19730101 20200624 031610 99999 EDDLESTON UK 55.7 -3.217 195.0 19730108 20060316 031620 99999 ESKDALEMUIR UK 55.317 -3.2 242.0 19291001 20200624 031634 99999 DUNDEE UK EGPN 56.452 -3.0260000000000002 5.2 19830404 20200624 031640 99999 BIGGAR UK 55.6 -3.55 206.0 20010916 20050529 031650 99999 SPADEADAM UK EGOM 55.05 -2.55 325.0 19920911 20200624 031660 99999 EDINBURGH GOGARBANK UK 55.933 -3.35 57.0 20030330 20200624 031670 99999 BASS ROCK (LGT-H) UK 56.083 -2.633 38.0 19761001 20010726 031680 99999 GALASHIELS UK 55.6 -2.9 146.0 19730101 20050523 031700 99999 SHANWELL UK 56.433 -2.867 5.0 19810929 20050821 031710 99999 LEUCHARS UK EGQL 56.373000000000005 -2.8680000000000003 11.6 19291001 20200624 031740 99999 FIFE NESS UK 56.3 -2.583 12.0 19780501 20071101 031750 99999 19730105 19760917 031760 99999 CARTERHOUSE UK 55.367 -2.517 308.0 19891001 20081031 031770 99999 BELL ROCK (LGT-H) UK 56.433 -2.4 21.0 19730101 19901008 031850 99999 ST. ABB'S HEAD (LH) UK 55.917 -2.133 75.0 19370701 19920127 031900 99999 SEAHOUSES UK 55.583 -1.65 11.0 19730308 19790629 032040 99999 ISLE OF MAN IM EGNS 54.083 -4.624 16.8 19730101 20200624 032050 99999 CALF OF MAN (AUX) IM 54.05 -4.833 93.0 19880504 20040626 032070 99999 SNAEFELL-ISLE UK 54.266999999999996 -4.467 615.0 19730104 20051011 032080 99999 POINT OF AYRE (LH) IM 54.417 -4.367 9.0 19350630 20030221 032090 99999 DRUMBURGH UK 54.933 -3.15 7.0 19951001 20050409 032100 99999 ST BEES HEAD NO.2 UK 54.516999999999996 -3.6 123.0 19840614 20200624 032110 99999 ST. BEES HEAD (LH) UK 54.516999999999996 -3.633 94.0 19730101 19870731 032120 99999 KESWICK UK 54.617 -3.167 81.0 19840614 20200624 032130 99999 ESKMEALS UK 54.317 -3.4 9.0 19730102 20010402 032140 99999 WALNEY ISLAND UK EGNL 54.131 -3.264 14.3 19830804 20200314 032145 99999 WARTON UK EGNO 53.745 -2.883 16.8 20111130 20200624 032150 99999 ASPATRIA UK 54.766999999999996 -3.3169999999999997 62.0 19771108 20070307 032160 99999 BROMFIELD UK 54.8 -3.283 20.0 19730101 19780323 032200 99999 CARLISLE UK 54.933 -2.967 27.0 19880601 20200624 032210 99999 CAUSEWAY FOOT UK 54.583 -3.083 160.0 19730809 19771101 032220 99999 CARLISLE UK EGNC 54.938 -2.8089999999999997 57.9 19730101 20200327 032230 99999 RYDAL UK 54.45 -2.983 67.0 19750426 19870112 032240 99999 SPADEADAM NO2 UK 55.05 -2.55 286.0 19921201 20200624 032250 99999 SHAP UK 54.5 -2.6830000000000003 255.0 19781101 20200624 032260 99999 WARCOP RANGE UK 54.567 -2.417 227.0 19830808 20200624 032270 99999 GREAT DUN FELL NO2 UK 54.683 -2.45 847.0 19941001 20200624 032280 99999 WHINS POND (AUX) UK 54.667 -2.7 125.0 19840614 20040128 032290 99999 GREAT DUN FELL UK 54.7 -2.45 847.0 19730101 20030731 032300 99999 REDESDALE CAMP UK 55.283 -2.283 212.0 19830804 20200624 032330 99999 RIBBLEHEAD UK 54.217 -2.333 312.0 19751218 19791202 032350 99999 BOLTSHOPE PARK UK 54.817 -2.083 434.0 19941101 20070331 032370 99999 FOREST UK 54.65 -2.2 381.0 19730101 19790404 032380 99999 ALBEMARLE UK 55.016999999999996 -1.867 146.0 20030330 20200624 032400 99999 BOULMER UK EGQM 55.424 -1.6030000000000002 21.3 19751001 20200624 032410 99999 LONG FRAMLINGTON UK 55.3 -1.8 158.0 19891201 20050822 032420 99999 BURNHOPE UK 54.817 -1.7169999999999999 244.0 19730101 20020616 032431 99999 NEWCASTLE/WOOLSING. UK 55.033 -1.683 81.0 19730101 19880105 032433 99999 NEWCASTLE UK EGNT 55.038000000000004 -1.692 81.1 19880105 20200624 032440 99999 19730101 19751110 032450 99999 NEWCASTLE WX CENTRE UK 54.967 -1.617 50.0 19730101 19901226 032460 99999 NEWCASTLE WEATHER CENTRE UK 54.983000000000004 -1.6 52.0 19901101 20051004 032490 99999 SUNDERLAND UNIVERSITY UK 54.983000000000004 -1.633 70.0 19890301 20010530 032570 99999 LEEMING UK EGXE 54.292 -1.535 40.2 19730101 20200624 032610 99999 DISHFORTH UK EGXD 54.137 -1.42 35.7 19920501 20160606 032620 99999 TYNEMOUTH UK 55.016999999999996 -1.4169999999999998 30.0 19260101 20050111 032635 99999 DURHAM TEES VALLEY AIRPORT UK EGNV 54.50899999999999 -1.429 36.6 19730101 20200624 032640 99999 19730101 19731005 032643 99999 TOPCLIFFE UK EGXZ 54.206 -1.382 28.0 19940720 20200624 032650 99999 TOPCLIFFE UK 54.2 -1.383 28.0 19970501 20200624 032660 99999 LINTON ON OUSE UK EGXU 54.049 -1.253 16.2 19730101 20200624 032690 99999 TEESMOUTH UK 54.65 -1.133 12.0 19750426 19840107 032700 99999 19730101 19750331 032710 99999 TEESMOUTH (AUX) UK 54.62 -1.13 12.0 19920401 20060207 032750 99999 LOFTUS UK 54.567 -0.867 159.0 19961101 20200624 032800 99999 CATTERICK UK 54.367 -1.617 53.0 19311113 19390930 032810 99999 FYLINGDALES UK 54.367 -0.667 262.0 19730101 20200624 032820 99999 WHITBY UK 54.483000000000004 -0.6 60.0 19730118 20050304 032910 99999 FLAMBOROUGH HEAD UK 54.117 -0.083 46.0 19730308 19870531 032920 99999 BRIDLINGTON MRSC UK 54.1 -0.16699999999999998 19.0 19870430 20200624 032930 99999 COWDEN UK 53.85 -0.1 15.0 19971201 20031006 033010 99999 MONA UK 53.266999999999996 -4.367 62.0 19291001 20200624 033020 99999 VALLEY UK EGOV 53.248000000000005 -4.535 11.3 19260606 20200624 033030 99999 AMLWCH UK 53.383 -4.367 114.0 19880501 19991214 033050 99999 CAPEL CURIG NO3 UK 53.1 -3.9330000000000003 215.0 19941001 20200624 033080 99999 SNOWDON SUMMIT UK 53.067 -4.083 1065.0 19880222 20051215 033090 99999 YSPYTTY IFAN UK 53.033 -3.7 262.0 19730101 19850930 033110 99999 HOLYHEAD UK 53.317 -4.617 8.0 19291001 19390930 033120 99999 RHYL UK 53.333 -3.5 15.0 19730308 20041105 033130 99999 RHYL NO2 UK 53.25 -3.5 76.0 19861001 20200624 033140 99999 MOEL-Y-CRIO UK 53.217 -3.217 263.0 19860501 20050919 033150 99999 FORMBY (DEAD) UK 53.55 -3.1 9.0 19730308 19821004 033160 99999 CROSBY UK 53.5 -3.0669999999999997 9.0 19840614 20200624 033170 99999 WOODVALE(RAF) UK 52.567 -3.05 11.0 20031010 20040920 033180 99999 BLACKPOOL UK EGNH 53.772 -3.029 10.4 19730101 20200624 033190 99999 FLEETWOOD UK 53.917 -3.033 8.0 19730212 19870223 033210 99999 HAWARDEN UK EGNR 53.178000000000004 -2.978 13.7 19850904 20200624 033220 99999 AUGHTON UK 53.55 -2.917 56.0 19780801 20020215 033230 99999 LIVERPOOL AIRPORT UK 53.333 -2.85 26.0 19291001 19900403 033233 99999 LIVERPOOL UK EGGP 53.333999999999996 -2.85 24.4 19900424 20200624 033290 99999 WINTER HILL UK 53.617 -2.517 440.0 19730101 20000103 033300 99999 LEEK THORNCLIFFE UK 53.133 -1.983 299.0 20040706 20200624 033340 99999 MANCHESTER UK EGCC 53.354 -2.275 78.3 19330930 20200624 033350 99999 MANCHESTER/BARTON UK EGCB 53.483000000000004 -2.25 37.0 19730101 19860729 033380 99999 CELLARHEAD UK 53.033 -2.083 228.0 19750426 20030812 033390 99999 SKIPTON NO2 UK 53.967 -2.033 153.0 19730101 20081031 033400 99999 HOLME MOSS (AUT) UK 53.533 -1.883 522.0 19781124 20021127 033410 99999 FLASH-IN-STAFFORD UK 53.2 -1.9669999999999999 457.0 19730101 19790929 033420 99999 HOLME MOSS UK 53.533 -1.867 524.0 19730101 19960305 033430 99999 HUDDERSFIELD/OAKES UK 53.65 -1.8330000000000002 232.0 19730101 19860930 033440 99999 BINGLEY NO.2 UK 53.817 -1.867 267.0 19730101 20200624 033450 99999 EMLEY MOOR UK 53.617 -1.6669999999999998 259.0 19730101 20081231 033460 99999 EMLEY MOOR NO 2 UK 53.6 -1.6669999999999998 267.0 19761221 20200624 033461 99999 19730101 19750802 033463 99999 LEEDS BRADFORD UK EGNM 53.86600000000001 -1.661 207.6 19880105 20200624 033464 99999 PENZANCE HELIPORT UK EGHK 50.12 -5.52 4.0 20050105 20121031 033465 99999 NEWQUAY CORNWALL UK 50.433 -4.9830000000000005 119.0 20090201 20200624 033470 99999 LEEDS WEATHER CTR UK 53.8 -1.55 47.0 19860101 20030902 033475 99999 SHEFFIELD CITY UK EGSY 53.394 -1.3880000000000001 70.4 19980408 20020914 033480 99999 WOODFORD UK 53.333 -2.15 88.0 19291001 20120528 033510 99999 ROSTHERNE NO 2 UK 53.367 -2.383 35.0 20121130 20200624 033540 99999 NOTTINGHAM/WATNALL UK 53.0 -1.25 117.0 19730101 20200624 033550 99999 CHURCH FENTON UK EGXG 53.833999999999996 -1.196 8.8 19730101 20131219 033600 99999 FINNINGLEY(RAF) UK 53.483000000000004 -1.0 17.0 19730101 19951001 033631 99999 SYERSTON UK 53.016999999999996 -0.917 63.0 20070307 20070307 033700 99999 HEMSWELL UK 53.4 -0.5670000000000001 63.0 19490101 19541231 033723 99999 BARKSTON HEATH UK EGYE 52.961999999999996 -0.562 111.9 19951129 20200624 033730 99999 SCAMPTON UK EGXP 53.308 -0.551 61.6 19730101 20200624 033735 99999 HUMBERSIDE UK EGNJ 53.574 -0.35100000000000003 36.9 19750109 20200624 033770 99999 WADDINGTON UK EGXW 53.166000000000004 -0.524 70.4 19500926 20200624 033790 99999 CRANWELL UK EGYD 53.03 -0.483 66.4 19290801 20200624 033820 99999 LECONFIELD UK 53.867 -0.433 7.0 20030330 20200624 033830 99999 LECONFIELD UK EGXV 53.883 -0.433 9.0 19730101 19781126 033840 99999 LECONFIELD (AUT) UK EGXV 53.867 -0.433 6.0 19810112 20200624 033850 99999 DONNA NOOK UK EGXX 53.467 0.067 8.0 19921208 20200624 033851 99999 DONNA NOOK RAF UK EGXS 53.475 0.152 3.0 20110512 20200624 033860 99999 NORTH COATES (AUT) UK 53.5 0.067 3.0 19890118 19940709 033870 99999 EASINGTON UK 53.667 0.11699999999999999 10.0 19881004 20050402 033880 99999 BINBROOK(RAF) UK 53.45 -0.2 108.0 19730101 20050820 033900 99999 INNER DOWSING (LH) UK 53.333 0.5670000000000001 37.0 19800301 19870227 033910 99999 CONINGSBY UK EGXC 53.093 -0.166 7.6 19430801 20200624 033920 99999 WAINFLEET (AUT) UK EGYW 53.083 0.267 5.0 19840614 20200624 033930 99999 DONNA NOOK (AUT) UK 53.383 0.217 4.0 19840614 19860725 033940 99999 GIBRALTAR POINT UK 53.1 0.317 4.0 19761023 20020928 033950 99999 19730101 19740911 033960 99999 SPURN HEAD (POINT) UK 53.617 0.15 12.0 19291001 19871004 033961 99999 SPURN HEAD (POINT) UK 53.567 0.11699999999999999 7.0 20170925 20200624 033980 99999 HUMBER (LGT-VSL) UK 53.617 0.36700000000000005 5.0 19730209 19820801 033990 99999 DOWSING (LGT-VSL) UK 53.567 0.833 5.0 19730101 19830429 034000 99999 BARDSEY ISL (LGT-H) UK 52.75 -4.8 16.0 19730101 19870907 034010 99999 PORTHDYNLLAEN UK 52.95 -4.567 37.0 19730106 20030722 034020 99999 MYNYDD RHIW UK 52.817 -4.633 253.0 19730101 20040211 034030 99999 NANTMOR UK 53.0 -4.083 53.0 19840614 20020919 034040 99999 ABERDOVEY UK 52.55 -4.067 22.0 19730206 20051017 034050 99999 ABERDARON UK 52.783 -4.7330000000000005 94.0 19941001 20200624 034053 99999 LLANBEDR UK EGOD 52.812 -4.124 9.1 19940503 20070227 034054 99999 DONCASTER SHEFFIELD UK EGCN 53.475 -1.004 16.8 20050507 20200624 034055 99999 NORTH DENES AIRPORT UK EGSD 52.65 -1.7830000000000001 2.0 20100726 20150430 034060 99999 TRAWSFYNYDD UK 52.933 -3.9330000000000003 193.0 19730101 19950929 034070 99999 LLANBEDR UK 52.8 -4.117 9.0 20010822 20041108 034080 99999 CYNWYD UK 52.95 -3.417 227.0 19840614 20031108 034090 99999 BALA UK 52.9 -3.583 163.0 20110627 20200624 034100 99999 LAKE VYRNWY NO2 UK 52.75 -3.467 359.0 19941001 20200624 034110 99999 ABERHOSAN UK 52.567 -3.717 244.0 19920801 20040627 034140 99999 SHAWBURY UK EGOS 52.798 -2.668 75.9 19730101 20200624 034145 99999 COSFORD UK EGWC 52.64 -2.306 82.9 19940831 20200624 034150 99999 SHAWBURY (SAWS) UK 52.8 -2.6830000000000003 74.0 19880712 19951221 034160 99999 BOGUS ENGLAND UK 19840719 20040823 034180 99999 TERNHILL(RAF) UK 52.867 -2.533 83.0 19730101 20050605 034185 99999 NOTTINGHAM EAST MIDLANDS UK EGNX 52.831 -1.328 93.3 19730101 20200624 034530 99999 COTTESMORE UK EGXJ 52.736000000000004 -0.649 140.5 19730101 20111109 034540 99999 TEMP FOR 03453 UK 52.733000000000004 -0.667 138.0 19930318 20031204 034610 99999 WITTERING (AUT) UK 52.617 -0.483 75.0 19840614 20060212 034620 99999 WITTERING UK EGXT 52.613 -0.47600000000000003 83.2 19730301 20200624 034690 99999 HOLBEACH (AUT) UK EGYH 52.867 0.15 3.0 19851201 20200624 034700 99999 HOLBEACH RAF RANGE UK EGYH 52.883 0.183 12.0 19640713 19810128 034701 99999 HOLBEACH RAF RANGE UK 52.85 0.16699999999999998 12.0 19780405 19810526 034705 99999 19730731 19751021 034820 99999 MARHAM UK EGYM 52.648 0.551 22.9 19490401 20200624 034850 99999 WEST RAYNHAM UK EGYV 52.783 0.733 76.0 19730101 19760114 034870 99999 SCULTHORPE (AF MET) UK EGUP 52.85 0.767 65.0 19780707 20011018 034873 99999 SCULTHORPE (AF MET) UK EGUP 52.85 0.767 65.0 19490601 19900827 034875 99999 HIGH WICOMBE(USAF) UK EGUH 51.62 -0.77 75.0 20040901 20041220 034880 99999 WEYBOURNE UK 52.95 1.133 20.0 19860119 20200624 034920 99999 NORWICH UK EGSH 52.676 1.2830000000000001 35.7 19871202 20200624 034925 99999 NORWICH WEA CNTRE & UK 52.683 1.2830000000000001 37.0 19840909 19880105 034930 99999 CROMER (LGT-H) UK 52.917 1.317 62.0 19850128 19900904 034940 99999 CROMER UK 52.933 1.317 44.0 19730309 20040722 034950 99999 COLTISHALL UK EGYC 52.755 1.358 20.1 19730101 20060404 034960 99999 HEMSBY UK 52.683 1.683 14.0 19730109 20100712 034970 99999 GORLESTON UK 52.583 1.7169999999999999 3.0 19260101 19811031 034980 99999 NEWARP (LGT-VSL) UK 52.8 1.8330000000000002 5.0 19730227 19820801 034990 99999 BECAME STN 034991 UK 52.717 2.3 5.0 19730101 19820913 035010 99999 CAPEL DEWI UK 52.417 -4.0 92.0 19990514 20041029 035020 99999 ABERPORTH UK EGUC 52.133 -4.567 134.0 19730101 20200624 035030 99999 TRAWSGOED UK 52.35 -3.95 62.0 19830820 20200624 035031 99999 ESGAIRWEN UK 52.083 -4.0169999999999995 332.0 19730101 19770301 035040 99999 CENARTH-IN-RADNOR UK 52.383 -3.533 305.0 19760601 19820106 035050 99999 SAINT HARMON UK 52.333 -3.483 279.0 19751117 20050405 035051 99999 CENARTH MILL UK 52.383 -3.5 282.0 19730101 19750729 035060 99999 19731108 19740331 035070 99999 SENNYBRIDGE NO2 UK 52.067 -3.617 307.0 19840614 20200624 035077 99999 NORWICH UK 52.683 1.2830000000000001 37.0 19770114 19840807 035110 99999 NEWCASTLE ON CLUN UK 52.433 -3.117 215.0 19860101 20060201 035120 99999 19730101 19730514 035121 99999 LYONSHALL UK 52.183 -2.983 178.0 20070307 20070307 035200 99999 SHOBDON AIRFIELD UK 52.25 -2.883 99.0 19920801 20200624 035210 99999 MADLEY UK 52.033 -2.85 78.0 19840614 20040331 035220 99999 HEREFORD/CREDENHILL UK 52.083 -2.8 76.0 19291001 20200624 035250 99999 MALVERN UK 52.083 -2.3 53.0 20051002 20051002 035260 99999 BARBOURNE UK 52.2 -2.217 25.0 19971201 20030802 035270 99999 GREAT MALVERN UK 52.117 -2.3 44.0 19840614 20081107 035280 99999 PERSHORE UK 52.133 -2.033 40.0 19730101 19780217 035290 99999 PERSHORE UK 52.15 -2.033 31.0 19780301 20200624 035310 99999 BIRMINGHAM/EDBASTON UK 52.483000000000004 -1.933 163.0 19291001 19791013 035340 99999 BIRMINGHAM UK EGBB 52.45399999999999 -1.7480000000000002 99.7 19730101 20200624 035350 99999 COLESHILL UK 52.483000000000004 -1.683 96.0 20010706 20200624 035360 99999 HINTS/LICHFIELD MST UK 52.633 -0.5670000000000001 30.0 19781220 19820203 035410 99999 COVENTRY AIRPORT UK 52.367 -1.483 85.0 19761221 19880105 035411 99999 19730101 19751005 035413 99999 COVENTRY UK EGBE 52.37 -1.48 81.4 19880105 20170718 035420 99999 RAF HETHEL UK 52.567 1.167 49.0 19430623 19450521 035430 99999 RAF RIDGEWELL UK 52.05 0.55 79.0 19431231 19450608 035440 99999 CHURCH LAWFORD UK 52.367 -1.3330000000000002 106.0 19830824 20200624 035450 99999 RAF GREAT ASHFIELD UK 52.25 0.95 61.0 19430731 19440630 035460 99999 RAF TIBENHAM UK 52.45 1.15 54.0 19431201 19450522 035471 99999 BITTESWELL UK EGBC 52.45 -1.25 134.0 19730101 19790629 035480 99999 RAF SNETTERTON HEATH UK 52.467 0.95 45.0 19430701 19440630 035490 99999 RAF OLD BUCKENHAM UK 52.5 1.067 59.0 19440107 19450510 035500 99999 RAF BODNEY UK 52.567 0.7170000000000001 40.0 19430830 20070501 035510 99999 RAF HORHAM UK 52.317 1.2329999999999999 55.0 19430520 19440630 035520 99999 RAF DUXFORD UK 52.1 0.133 30.0 19430620 19440630 035530 99999 RAF DEENETHORPE UK 52.5 -0.583 101.0 19431111 19450604 035540 99999 KINGS CLIFF RAF UK 52.567 -0.483 77.0 19431007 19450903 035560 99999 19420925 19440525 035570 99999 CRANFIELD UK 52.067 -0.617 111.0 20031003 20050928 035571 99999 CRANFIELD UK 52.067 -0.617 111.0 19730101 19900125 035573 99999 CRANFIELD UK EGTC 52.071999999999996 -0.617 109.1 19900208 20200624 035580 99999 BEDFORD AIRPORT UK 52.217 -0.483 89.0 19730101 20050407 035590 99999 CARDINGTON UK 52.1 -0.41700000000000004 29.0 19300301 20050203 035600 99999 BEDFORD UK 52.217 -0.483 84.0 19870409 20200624 035610 99999 RAF BURY ST EDMUNDS UK 52.25 0.767 63.0 19421221 19440630 035620 99999 ALCONBURY RAF UK EGWZ 52.367 -0.217 47.9 19990515 20050710 035621 99999 ALCONBURY RAF UK 52.367 -0.217 49.0 19730101 19880105 035623 99999 ALCONBURY RAF & UK 52.367 -0.217 49.0 19430113 19950331 035630 99999 THORPE ABBOTTS RAF UK 52.383 1.217 50.0 19430701 19440630 035660 99999 WYTON UK EGUY 52.357 -0.10800000000000001 41.1 19501003 20151004 035661 99999 ISLAY UK EGPI 55.681999999999995 -6.257000000000001 17.1 20040510 20200624 035671 99999 BASSINGBOURN UK 52.1 -0.05 23.0 19501101 20070307 035710 99999 CAMBRIDGE UK 52.2 0.183 15.0 19730101 19750106 035715 99999 CAMBRIDGE UK EGSC 52.205 0.175 14.3 19770201 20200624 035770 35046 MILDENHALL RAF UK EGUN 52.367 0.483 10.0 19990101 20200624 035770 99999 MILDENHALL UK EGUN 52.361999999999995 0.486 10.1 19930701 20041231 035771 99999 MILDENHALL RAF & UK 52.367 0.483 10.0 19730101 19880105 035773 99999 MILDENHALL RAF & UK 52.367 0.483 10.0 19500714 19950831 035780 99999 19350701 19390930 035810 99999 FELTWELL UK 52.483000000000004 0.517 14.0 19490103 19541231 035830 35034 LAKENHEATH RAF UK EGUL 52.417 0.5670000000000001 10.0 19990102 20200624 035830 99999 LAKENHEATH UK EGUL 52.409 0.561 9.8 19930701 20041230 035831 99999 LAKENHEATH RAF UK 52.4 0.5670000000000001 10.0 19730101 19880105 035833 99999 LAKENHEATH RAF UK EGUL 52.4 0.5670000000000001 10.0 19490501 19950525 035860 99999 HONINGTON UK 52.333 0.767 53.0 19730101 20031130 035881 99999 SHEPHERD'S GROVE UK 52.317 0.917 60.0 19510601 19590109 035900 99999 WATTISHAM UK EGUW 52.126999999999995 0.956 86.6 19730101 20200624 035905 99999 NEWTON UK EGXN 52.967 -0.983 55.0 19950210 20011103 035930 99999 BECCLES (AUX) UK 52.433 1.617 22.0 19900201 20030120 035951 99999 WOODBRIDGE RAF UK 52.083 1.4 29.0 19730101 19880105 035953 99999 WOODBRIDGE RAF UK EGVG 52.083 1.4 29.0 19541001 20070307 035961 99999 BENTWATERS RAF UK 52.133 1.433 26.0 19730101 19880105 035963 35048 BENTWATERS RAF UK EGVJ 52.133 1.433 26.0 19930104 19930331 035963 99999 BENTWATERS RAF UK EGVJ 52.133 1.433 25.9 19450101 19921229 035980 99999 ALDEBURGH UK 52.15 1.6 9.0 19730402 20050908 035990 99999 HENLOW UK 52.016999999999996 -0.267 95.0 19730101 19810601 036010 99999 ST. ANNES HEAD UK 51.683 -5.167000000000001 43.0 19291001 20160906 036030 99999 BRAWDY(RAF) UK 51.883 -5.117 111.0 19741008 20010925 036040 99999 MILFORD HAVEN CONSERVANCY BOARD UK 51.7 -5.05 32.0 19730101 20200624 036050 99999 PEMBRY SANDS UK EGOP 51.717 -4.367 3.0 19930301 20200624 036060 99999 MONKSTONE PT. UK 51.7 -4.667 84.0 19730308 19830626 036070 99999 PENDINE (AUT) UK 51.75 -4.5169999999999995 5.0 19730101 19880826 036080 99999 PENDINE (AUT) UK 51.75 -4.5169999999999995 5.0 19880828 20010323 036090 99999 MUMBLES HEAD UK 51.567 -3.983 32.0 19730104 20200624 036095 99999 SWANSEA UK EGFH 51.605 -4.0680000000000005 91.1 19770126 19990127 036100 99999 PENCELLI (AUX) UK 51.917 -3.3169999999999997 160.0 19900101 20050528 036110 99999 BRYNAMMAN UK 51.817 -3.867 182.0 19730101 19851107 036120 99999 TRECASTLE UK 51.95 -3.7 312.0 19730101 19881031 036130 99999 CWMBARGOED UK 51.75 -3.333 372.0 19730101 19921001 036140 99999 CILFYNYDD UK 51.633 -3.3 194.0 19730716 20050505 036150 99999 ABERDARE UK 51.717 -3.467 174.0 19730101 19790427 036170 99999 STOREY ARMS UK 51.867 -3.483 457.0 19870405 20030202 036240 99999 KYMIN UK 51.817 -2.6830000000000003 181.0 19730101 19781110 036250 99999 WYESHAM UK 51.8 -2.7 38.0 19791015 19800701 036260 99999 BERRY HILL UK 51.8 -2.617 25.0 19800910 19830312 036270 99999 ROSS-ON-WYE UK 51.911 -2.5860000000000003 67.0 19291001 19741022 036280 99999 FILTON UK 51.516999999999996 -2.583 59.0 19370601 20181015 036283 99999 BRISTOL FILTON UK EGTG 51.519 -2.591 68.9 19940718 20121221 036330 99999 GLOUCESTER UK 51.867 -2.217 24.0 19730101 19821109 036333 99999 GLOUCESTERSHIRE UK EGBJ 51.894 -2.167 30.8 19771001 20200624 036380 99999 KEMBLE RAF UK 51.667 -2.05 133.0 19730101 19880105 036383 99999 KEMBLE UK EGBP 51.668 -2.057 132.0 19880105 19920331 036440 99999 FAIRFORD UK EGVA 51.681999999999995 -1.79 87.2 19520610 20200624 036460 99999 19730101 19760430 036470 99999 LITTLE RISSINGTON UK 51.867 -1.683 210.0 19840614 20200624 036490 99999 BRIZE NORTON UK EGVN 51.75 -1.584 87.8 19510801 20200624 036530 99999 ABINGDON(RAF) UK 51.683 -1.317 80.0 19730101 19751113 036550 99999 UPPER HEYFORD(USAF) UK 51.933 -1.25 134.0 19301231 19390930 036551 99999 UPPER HEYFORD RAF UK 51.933 -1.25 133.0 19730101 19880105 036553 99999 UPPER HEYFORD RAF UK EGUA 51.933 1.25 133.0 19511101 19931215 036570 99999 BENSON (AUT) UK 51.617 -1.1 57.0 19840713 19930624 036580 99999 BENSON UK EGUB 51.61600000000001 -1.0959999999999999 68.9 19730101 20200624 036584 99999 COLERNE UK EGUO 51.43899999999999 -2.286 180.7 19420401 20190214 036600 99999 HIGH WYCOMBE HQAIR UK 51.683 -0.8 205.0 19971201 20200624 036690 99999 19420810 19600731 036720 99999 NORTHOLT UK EGWU 51.553000000000004 -0.418 37.8 19730101 20200624 036731 99999 LUTON ARPT UK 51.883 -0.36700000000000005 160.0 19730101 19880105 036733 99999 LUTON UK EGGW 51.875 -0.368 160.3 19880105 20200624 036740 99999 CHENIES(AUTO) UK 51.683 -0.5329999999999999 139.0 19921001 20010414 036800 99999 ROTHAMSTED UK 51.8 -0.358 128.0 20130820 20200624 036830 99999 STANSTED UK EGSS 51.885 0.235 106.1 19730101 20200624 036840 99999 ANDREWSFIELD UK 51.883 0.45 87.0 19980301 20200624 036880 99999 WETHERSFIELD(RAF) UK 51.967 0.5 98.0 19520507 19851015 036881 99999 WEATHERSFIELD RAF UK EGVT 51.967 0.5 101.0 19740117 19770617 036883 99999 WEATHERSFIELD RAF UK EGVT 51.967 0.5 101.0 19890304 19900122 036911 99999 SOUTHEND AIRPORT UK 51.567 0.7 15.0 19730101 19880105 036913 99999 SOUTHEND UK EGMC 51.571000000000005 0.696 14.9 19880105 20200624 036930 99999 SHOEBURYNESS LANDWICK UK 51.55 0.833 3.0 19291001 20200624 036940 99999 SHOEBURYNESS (AUT) UK 51.55 0.833 2.0 19850116 19940730 036950 99999 THAMES TOWER (AUT) UK 51.667 1.1 8.0 19811124 20041013 036960 99999 WALTON-ON-THE-NAZE UK 51.85 1.2830000000000001 5.0 19730117 20070621 036970 99999 FELIXSTOWE UK 51.95 1.3330000000000002 3.0 19290801 19390930 036980 99999 TONGUE (LGT-VSL) UK 51.516999999999996 1.383 15.0 19291001 19820914 036990 99999 GALLOPER (LGT-VSL) UK 51.733000000000004 1.9669999999999999 5.0 19730101 19770612 037000 99999 SAINT GOWAN L.V. UK 51.5 -5.0 5.0 19730207 20060207 037010 99999 GAWLISH UK 51.016999999999996 -4.5 122.0 19890301 20050607 037020 99999 LUNDY ISL (LGT-H) UK 51.167 -4.65 43.0 19730101 20030804 037030 99999 HARTLAND POINT UK 51.016999999999996 -4.533 91.0 19380520 19831129 037031 99999 HARTLAND POINT UK 51.033 -4.533 91.0 20070307 20070307 037040 99999 HARTLAND UK 50.983000000000004 -4.467 142.0 19840614 20030302 037060 99999 ILFRACOMBE C.G. UK 51.217 -4.083 61.0 19730308 19801130 037061 99999 ILFRACOMBE C.G. UK 51.217 -4.083 61.0 20070307 20070307 037070 99999 CHIVENOR UK EGDC 51.086999999999996 -4.15 8.2 19730101 20200624 037090 99999 MINEHEAD UK 51.2 -3.45 10.0 19870301 20051001 037100 99999 LISCOMBE UK 51.083 -3.6 347.0 19930113 20200624 037110 99999 EXTON UK 51.0 -3.483 332.0 19730101 19880508 037120 99999 TIVINGTON UK 51.2 -3.533 83.0 19890101 20051001 037150 99999 CARDIFF UK EGFF 51.397 -3.343 67.1 19730101 20200624 037155 99999 ST ATHAN UK 51.4 -3.4330000000000003 51.0 19940818 20040908 037160 99999 ST ATHAN UK EGDX 51.405 -3.4360000000000004 49.7 20010706 20200624 037170 99999 CARDIFF WEATHER CENTRE UK 51.483000000000004 -3.1830000000000003 52.0 19840614 20060616 037241 99999 BRISTOL/LULSGATE UK 51.383 -2.717 189.0 19730101 19880105 037243 99999 BRISTOL UK EGGD 51.383 -2.719 189.6 19880105 20200624 037260 99999 BRISTOL WEA CENTER UK 51.467 -2.6 11.0 19810801 20040819 037400 99999 LYNEHAM UK EGDL 51.505 -1.993 156.4 19730101 20200624 037430 99999 LARKHILL UK 51.2 -1.8 133.0 19890601 20200624 037435 99999 GREENHAM COMMON RAF UK EGVI 51.383 -1.2830000000000001 122.0 19760428 19920417 037440 99999 UPAVON UK EGDJ 51.3 -1.767 175.0 19730101 20040827 037450 99999 NETHERAVON(RA) UK 51.25 -1.767 139.0 19730101 20020315 037460 99999 BOSCOMBE DOWN UK EGDM 51.152 -1.7469999999999999 124.1 19310101 20200624 037480 99999 WINCHESTER UK 51.067 -1.317 83.0 19291001 19330831 037490 99999 MIDDLE WALLOP UK EGVP 51.15 -1.567 91.0 19730809 20200624 037520 99999 19730101 19760331 037590 99999 TEST SAMOS 03761 UK 51.25 -0.95 123.0 19930407 20000728 037610 99999 ODIHAM UK EGVO 51.233999999999995 -0.943 123.4 19730101 20200624 037630 99999 BRACKNELL/BEAUFORT UK EGRR 51.383 -0.7829999999999999 74.0 19730101 20191209 037640 99999 BRACKNELL (AUT) UK 51.383 -0.8 75.0 19871202 20040206 037660 99999 FARNBOROUGH (MIL) UK EGUF 51.283 -0.767 72.0 19291001 20051011 037661 99999 BIGGIN HILL UK 51.283 0.033 0.0 19840519 19880105 037663 99999 BIGGIN HILL UK EGKB 51.331 0.033 182.3 19880105 20200624 037670 99999 LIPHOOK UK 51.083 -0.8170000000000001 98.0 19730101 19880706 037680 99999 FARNBOROUGH UK EGLF 51.276 -0.7759999999999999 72.5 19880501 20200624 037683 99999 CITY UK EGLC 51.505 0.055 5.8 19880129 20200624 037690 99999 CHARLWOOD UK 51.144 -0.22899999999999998 68.0 19920301 20200624 037700 99999 ST JAMES PARK UK 51.5 -0.11699999999999999 5.0 20091218 20200624 037720 99999 HEATHROW UK EGLL 51.478 -0.461 25.3 19481201 20200624 037740 99999 CRAWLEY UK 51.083 -0.217 144.0 20011105 20070307 037750 99999 KEW-IN-LONDON UK 51.467 -0.317 5.0 19291001 19820510 037760 99999 GATWICK UK EGKK 51.148 -0.19 61.6 19730101 20200624 037770 99999 PURLEY OAKS UK 51.35 -0.11699999999999999 66.0 19290801 19390930 037780 99999 LONDON WEA CENTER UK 51.516999999999996 -0.11699999999999999 23.0 19730101 20030514 037790 99999 LONDON WEA CENTER UK EGRB 51.5 -0.11699999999999999 39.0 19920401 20100201 037800 99999 REDHILL UK 51.217 -0.133 63.0 20010702 20060228 037810 99999 KENLEY AIRFIELD UK 51.3 -0.083 170.0 19880201 20200624 037815 99999 LEAVESDEN UK EGTI 51.683 -0.41700000000000004 102.0 19730101 19950409 037820 99999 BLACKWALL UK 51.516999999999996 0.017 5.0 19741127 19881104 037830 99999 GALLIONS REACH UK 51.5 -0.067 12.0 19730101 19791011 037840 99999 GRAVESEND-BROADNESS UK 51.467 0.3 3.0 19960201 20180830 037850 99999 CHARING UK 51.2 0.7829999999999999 91.0 19800910 20011231 037860 99999 GRAVESEND UK 51.433 0.38299999999999995 5.0 19730101 20041016 037871 99999 WEST MALLING UK 51.283 0.41700000000000004 104.0 19601201 19640630 037890 99999 JUBILEE CORNER UK 51.183 0.633 47.0 19730105 19961002 037900 99999 EAST MALLING (AUT) UK 51.283 0.45 32.0 19851201 20011118 037910 99999 SHEERNESS UK 51.45 0.75 25.0 19730101 20080731 037920 99999 DODDINGTON UK 51.283 0.7829999999999999 91.0 19730101 19800913 037930 99999 ANVIL GREEN UK 51.2 1.0170000000000001 139.0 19730101 20050218 037940 99999 BECAME STN 037941 UK 51.15 1.383 91.0 19730308 19791003 037950 99999 LYMPNE UK 51.083 1.0170000000000001 104.0 19290801 19390930 037951 99999 ASHFORD UK EGMK 51.15 0.883 107.0 19730101 19741221 037960 99999 LANGDON BAY UK 51.133 1.35 117.0 19730308 20200624 037970 35047 MANSTON UK EGMH 51.35 1.3330000000000002 50.0 19300228 20200624 037970 99999 MANSTON UK EGMH 51.342 1.3459999999999999 54.3 20000101 20041231 037980 99999 FALLS (LGT-VSL) UK 51.3 1.817 5.0 19730101 19820913 037990 99999 EAST GOODWIN L.V. UK 51.217 1.6 5.0 19730101 19820623 038000 99999 SCILLY/ST. MARY'S UK 49.917 -6.2829999999999995 45.0 19890124 20031002 038010 99999 20010625 20021121 038020 99999 SCILLY/ROUND ISLAND UK 49.983000000000004 -6.317 38.0 19820304 20050829 038030 99999 SCILLY/SAINT MARY'S UK EGHE 49.917 -6.3 31.0 19860101 20200624 038040 99999 SCILLY/ST.MARYS UK EGHE 49.933 -6.3 51.0 19260101 20021106 038050 99999 SEVEN STONES L.V. UK 50.05 -6.067 5.0 19730227 19820801 038060 99999 LANDS END ARPT UK EGHC 50.06399999999999 -5.709 63.0 19730308 20200624 038080 99999 CAMBORNE UK 50.217 -5.317 88.0 19730101 20200624 038090 99999 CULDROSE UK EGDR 50.086000000000006 -5.256 81.4 19730101 20200624 038100 99999 PENDENNIS POINT UK 50.15 -5.067 42.0 19840614 20070621 038110 99999 PORT PENDENNIS UK 50.133 -5.033 61.0 19291001 19340404 038140 99999 LIZARD UK 49.95 -5.183 57.0 19320510 20020831 038150 99999 LIZARD LIGHTHOUSE UK 49.967 -5.2 60.0 19880719 20030529 038170 99999 ST MAWGAN UK EGDG 50.433 -5.0 118.9 19730101 20081201 038200 99999 DAVIDSTOW MOOR UK 50.633 -4.6 291.0 19920501 20040331 038230 99999 CARDINHAM BODMIN UK 50.5 -4.667 199.0 19870708 20200624 038240 99999 BASTREET UK 50.567 -4.4830000000000005 238.0 19750122 20040919 038250 99999 19730101 19740430 038270 99999 PLYMOUTH/MOUNTBATTE UK EGDB 50.35 -4.117 27.0 19730101 20200624 038273 99999 PLYMOUTH UK EGHD 50.423 -4.106 145.1 19880318 20111223 038280 99999 SOUTHWEST YELVERTON UK 50.483000000000004 -4.1 198.0 19291001 19390930 038300 99999 BURRINGTON UK 50.933 -3.983 199.0 19750521 20011001 038310 99999 NORTH HESSARY TOR UK 50.55 -4.0 510.0 19730101 20050323 038320 99999 OKEHAMPTON UK 50.717 -4.0 372.0 19760601 19891001 038330 99999 CHAWLEIGH UK 50.9 -3.8 160.0 19730101 19830116 038340 99999 PRAWLE POINT UK 50.2 -3.717 59.0 19730308 19830802 038341 99999 PRAWLE POINT UK 50.2 -3.717 59.0 20070307 20070307 038370 99999 BRIXHAM UK 50.4 -3.483 8.0 19730308 20070705 038390 99999 EXETER UK EGTE 50.733999999999995 -3.4139999999999997 31.1 19730101 20200624 038400 99999 DUNKESWELL AERODROME UK 50.867 -3.233 253.0 19910531 20200624 038410 99999 TEMP FOR 038400 UK 50.867 -3.25 255.0 19830825 20021227 038450 99999 BEER-IN-DEVON UK 50.7 -3.1 52.0 19730308 19840607 038530 99999 YEOVILTON UK EGDY 51.00899999999999 -2.639 22.9 19730101 20200624 038550 99999 PORTLAND BILL C.G. UK 50.516999999999996 -2.4330000000000003 53.0 19730112 20021101 038560 99999 PORTLAND BILL (LH) UK 50.516999999999996 -2.45 11.0 19291001 20041129 038570 99999 ISLE OF PORTLAND UK 50.516999999999996 -2.45 52.0 19730809 20200624 038580 99999 PORTLAND HELIPORT UK EGDP 50.567 -2.45 3.0 19730108 20021220 038590 99999 POOLE HARBOR UK 50.7 -1.983 5.0 20040909 20040910 038600 99999 ANVIL POINT UK 50.583 -1.9669999999999999 34.0 19780111 19810925 038610 99999 CHRISTCHURCH BAY UK 50.7 -1.6669999999999998 7.0 19811107 20020708 038620 99999 BOURNEMOUTH UK EGHH 50.78 -1.8430000000000002 11.6 19730101 20200624 038630 99999 THE NEEDLES (CAPE) UK 50.667 -1.5830000000000002 86.0 19730308 19860530 038640 99999 19291001 19390930 038650 99999 SOUTHAMPTON UK EGHI 50.95 -1.357 13.4 19730101 20200624 038660 99999 WIGHT: ST. CATHERINES POINT UK 50.583 -1.3 24.0 19730101 20200624 038670 99999 LEE-ON-SOLENT UK 50.817 -1.217 10.0 19730105 20050811 038690 99999 CALSHOT-IN-HANTS UK 50.817 -1.3 3.0 19730308 19830704 038700 99999 NAB TOWER LH (DEAD) UK 50.667 -0.95 24.0 19810121 19830713 038710 99999 19730101 19761101 038720 99999 THORNEY ISLAND UK 50.817 -0.917 3.0 19840703 20200624 038730 99999 TOTLAND UK 50.683 -1.5330000000000001 20.0 19890112 19960331 038740 99999 SOLENT UK 50.8 -1.217 13.0 19860602 20150227 038750 99999 WELLOW UK 50.683 -1.45 25.0 19890501 20070307 038760 99999 SHOREHAM UK EGKA 50.836000000000006 -0.297 2.1 19861201 20200624 038770 99999 EAST HOATHLY UK 50.917 0.15 38.0 19730101 20050817 038790 99999 SHOREHAM-BY-SEA UK 50.817 -0.25 5.0 19730209 19880105 038793 99999 SHOREHAM-BY-SEA UK 50.817 -0.267 18.0 19880105 19901016 038800 99999 NEWHAVEN (LGT-H) UK 50.783 0.05 5.0 19730101 20020929 038810 99999 BREDE UK 50.933 0.6 82.0 19880808 20050405 038820 99999 HERSTMONCEUX WEST END UK 50.9 0.317 52.0 19921201 20200624 038830 99999 EASTBOURNE UK 50.783 0.3 3.0 19730308 20050907 038840 99999 HERSTMONCEUX UK 50.867 0.33299999999999996 17.0 19761101 20030125 038850 99999 ROYAL SOVEREIGN(LH) UK 50.717 0.45 23.0 19730101 19821213 038860 99999 FAIRLIGHT UK 50.867 0.633 143.0 19730308 19910107 038871 99999 LYDD AIRPORT UK 50.95 0.9329999999999999 3.0 19750109 19880105 038873 99999 LYDD UK EGMD 50.956 0.9390000000000001 4.0 19880105 20200624 038880 99999 DUNGENESS UK 50.917 0.9670000000000001 3.0 19291001 19800314 038900 99999 CHANNEL (LGT-VSL) UK 49.9 -2.917 89.0 19790201 19820916 038915 99999 ALDERNEY GK EGJA 49.706 -2.215 88.4 19870629 20200624 038940 99999 GUERNSEY GK EGJB 49.435 -2.602 102.4 19291001 20200624 038950 99999 JERSEY JE EGJJ 49.208 -2.1959999999999997 84.4 19730101 20200624 038960 99999 ST. HELIER UK 49.2 -2.1 54.0 19840801 20200624 038980 99999 VARNE (LGT-VSL) UK 51.016999999999996 1.4 5.0 19730101 19821107 039000 99999 KNOCKAREVAN UK 54.417 -8.083 50.0 19730101 20050831 039010 99999 THOMASTOWN UK 54.333 -7.6 72.0 20120720 20200624 039020 99999 CORGARY UK 54.433 -8.05 145.0 19730809 20060207 039030 99999 ST ANGELO UK 54.4 -7.65 47.0 19850301 20130716 039040 99999 CASTLEDERG UK 54.7 -7.582999999999999 50.0 19971201 20200624 039050 99999 CARRIGANS UK 54.667 -7.317 113.0 19730101 20011116 039060 99999 CARMONEY UK 55.016999999999996 -7.233 73.0 19770803 20041231 039070 99999 MAGILLIGAN NO 2 UK 55.15 -6.933 6.0 20110901 20200624 039080 99999 BALLYKELLY UK 55.067 -7.017 5.0 19971201 20111103 039084 99999 LONDONDERRY EGLINTON UK EGAE 55.043 -7.1610000000000005 6.7 19900424 20200624 039090 99999 MONEYDIG UK 54.983000000000004 -6.6 34.0 19730101 19800724 039100 99999 MAGHERA UK 54.85 -6.7 141.0 19800912 19900124 039110 99999 LOUGH FEA UK 54.717 -6.817 227.0 19941003 20200624 039120 99999 MOYOLA UK 54.717 -6.517 17.0 19921201 20050815 039130 99999 ANNAGHMORE UK 54.45 -6.567 27.0 19810506 19851217 039140 99999 PORTRUSH UK 55.2 -6.667000000000001 8.0 19730309 20040926 039150 99999 PORTGLENONE UK 54.867 -6.45 65.0 19730308 20200624 039155 99999 COWDEN UK EGXF 53.85 -6.1 15.0 19950210 19980331 039160 99999 BALLYPATRICK FOREST UK 55.183 -6.167000000000001 156.0 19870301 20200624 039170 99999 ALDERGROVE UK EGAA 54.658 -6.216 81.7 19300228 20200624 039180 99999 CASTOR BAY UK 54.5 -6.332999999999999 18.0 19431004 20160906 039200 99999 HILLSBOROUGH UK 54.483000000000004 -6.1 38.0 19790208 20050912 039220 99999 KILKEEL UK 54.05 -6.0 18.0 19730323 19870130 039230 99999 GLENANNE NO2 UK 54.233000000000004 -6.5 160.0 19850207 20200624 039240 99999 CITY UK EGAC 54.618 -5.872999999999999 4.6 19730101 20200624 039250 99999 ORLOCK HEAD UK 54.667 -5.582999999999999 34.0 19730313 20020101 039260 99999 KILLOUGH UK 54.233000000000004 -5.617000000000001 18.0 19730107 20050814 039270 99999 BANGOR HARBOUR UK 54.667 -5.667000000000001 11.0 19920301 20071130 039280 99999 LARNE UK 54.85 -5.8 3.0 19291001 20040316 039290 99999 PORTMUCK UK 54.85 -5.733 43.0 19730323 19790529 039510 99999 SHERKIN ISLAND EI 51.467 -9.417 21.0 20091020 20200624 039520 99999 ROCHES POINT EI 51.8 -8.25 41.0 19291001 20200624 039530 99999 VALENTIA OBSERVATORY EI 51.933 -10.25 30.0 19260102 20200624 039550 99999 CORK EI EICK 51.841 -8.491 153.0 19730101 20200624 039560 99999 JOHNSTOWN CASTLE EI 52.283 -6.483 53.0 20070806 20200624 039570 99999 ROSSLARE EI 52.25 -6.332999999999999 25.0 19730101 20080407 039600 99999 KILKENNY EI 52.667 -7.267 64.0 19730101 20080407 039610 99999 OAK PARK - CARLOW EI 52.85 -6.9 63.0 20080721 20200624 039620 99999 SHANNON EI EINN 52.702 -8.925 14.0 19730101 20200624 039630 99999 MACE HEAD EI 53.317 -9.9 23.0 20091020 20200624 039640 99999 GALWAY EI 53.283 -9.017000000000001 21.0 19780616 20040928 039650 99999 BIRR EI 53.083 -7.882999999999999 72.0 19730101 20091001 039660 99999 GURTEEN EI 53.016999999999996 -8.0 76.0 19291001 20200624 039670 99999 CASEMENT EI EIME 53.302 -6.4510000000000005 97.2 19870201 20200624 039689 99999 DUBLIN WEATHER CENTER EI EIDB 53.433 -6.25 68.0 20160414 20190510 039690 99999 DUBLIN EI EIDW 53.42100000000001 -6.27 73.8 19730101 20200624 039700 99999 CLAREMORRIS EI 53.717 -8.982999999999999 69.0 19730101 20200624 039710 99999 MULLINGAR EI 53.533 -7.367000000000001 100.0 19730101 20200624 039730 99999 CONNAUGHT EI EIKN 53.91 -8.818 202.7 19291001 20200624 039740 99999 CLONES EI 54.183 -7.233 89.0 19730101 20080407 039760 99999 BELMULLET EI 54.233000000000004 -10.0 9.7 19730101 20200624 039780 99999 FINNER EI 54.483000000000004 -8.232999999999999 34.7 20010601 20200624 039790 99999 BALLYHAISE EI 54.05 -7.3 79.0 20080721 20200624 039800 99999 MALIN HEAD EI 55.367 -7.332999999999999 25.0 19260701 20200624 040010 99999 BREIDAVIK IC 65.533 -24.35 20.0 20011004 20041218 040011 99999 HVALLATUR IC 65.533 -24.467 8.0 20040720 20041123 040030 99999 KVIGINDISDALUR IC 65.55 -24.017 49.0 19310101 20070307 040040 99999 GUFUSKALAR IC 64.9 -23.933000000000003 7.0 19490101 20020405 040050 99999 BOLUNGAVIK IC 66.15 -23.25 24.0 19520201 20200624 040060 99999 BOGUS ICELAND IC 0.0 0.0 -999.0 19310105 20040211 040070 99999 HOLAR I DYRAFIRDI IC 65.867 -23.6 30.0 20051230 20100225 040100 99999 NEDRI-HOLL IC 64.8 -23.033 8.0 20050904 20070307 040110 99999 19490103 19561231 040130 99999 STYKKISHOLMUR IC BIST 65.083 -22.733 8.0 19730101 20200624 040131 99999 ISAFJORDUR IC BIIS 66.058 -23.135 2.4 20090403 20200624 040140 99999 REYKJANESVITI IC 63.817 -22.717 26.0 19740802 20060220 040170 99999 AEDEY IC 66.1 -22.666999999999998 5.0 20010923 20200624 040180 16201 KEFLAVIK NAVAL AIR STATION IC BIKF 63.967 -22.6 52.1 19421001 20200624 040230 99999 HORNBJARGSVITI (LH) IC 66.417 -22.383000000000003 27.0 19490102 20041211 040250 99999 REYKHOLAR IC 65.45 -22.2 11.0 20070226 20070307 040260 99999 HAUKATUNGA IC 64.817 -22.267 50.0 20070307 20070307 040270 99999 ASGARDUR IC 65.233 -21.75 10.0 19750930 20070307 040300 99999 REYKJAVIK IC BIRK 64.13 -21.941 14.6 19310101 20200624 040310 99999 GJOGUR IC 65.983 -21.35 5.0 19490101 20040323 040340 99999 STAFHOLTSEY IC 64.617 -21.6 14.0 19490101 20200624 040380 99999 EYRARBAKKI IC 63.867 -21.15 5.0 19740601 20200624 040400 99999 HEIDARBAER IC 64.2 -21.233 125.0 19740803 20070307 040410 99999 TANNSTADABAKKI IC 65.283 -21.1 8.0 20020910 20200624 040420 99999 HJARDARLAND IC 64.25 -20.417 101.0 20050114 20070307 040440 99999 HELLA IC 63.833 -20.4 20.0 20020316 20030812 040450 99999 BLONDUOS IC 65.667 -20.3 22.0 19490101 20031101 040480 99999 VESTMANNAEYJAR IC BIVM 63.424 -20.279 99.4 19310103 20200624 040500 99999 HAELL IC 64.067 -20.25 121.0 19510101 20050610 040530 99999 BERGSTADIR IC 65.7 -19.617 43.0 19540911 20180612 040550 99999 NAUTABU IC 65.45 -19.367 115.0 19490101 20070307 040560 99999 HVERAVELLIR IC 64.867 -19.567 642.0 19740731 20040610 040580 99999 VATNSSKARDSHOLAR IC 63.417 -19.183 20.0 19490101 20070307 040590 99999 SAUDANESVITI IC 66.183 -18.967 30.0 19490101 20070227 040620 99999 NORDURHJALEIGA IC 63.5 -18.383 18.0 20040902 20060111 040630 99999 AKUREYRI IC BIAR 65.66 -18.073 1.8 19310103 20200624 040640 99999 KIRKJUBAEJARKLAUSTUR IC 63.783 -18.067 38.0 19490101 20200624 040650 99999 GRIMSEY ISLAND IC BIGR 66.533 -18.017 16.0 19130101 20190809 040655 99999 BILDUDALUR IC BIBD 65.641 -23.546 5.5 20130220 20200624 040680 99999 SANDBUDIR IC 64.933 -17.983 821.0 19780131 19800726 040690 99999 STADARHOLL IC 65.817 -17.2 42.0 20190315 20200624 040710 99999 MANARBAKKI IC 66.2 -17.1 17.0 19800502 20200624 040720 99999 FAGURHOLSMYRI IC 63.883 -16.65 46.0 19490101 20200624 040730 99999 GRIMSSTADIR IC 65.633 -16.117 386.0 19490101 20200624 040750 99999 MOURUDALUR IC 65.367 -15.883 450.0 19490101 19561231 040770 99999 RAUFARHOFN IC BIRG 66.45 -15.95 10.0 19490101 20200624 040800 99999 SNAEFELLSSKALI IC 64.8 -15.633 810.0 20040304 20070307 040810 99999 SAUDANES IC 66.25 -15.267000000000001 17.0 20010716 20060124 040820 99999 HORNAFJORDUR IC BIHN 64.296 -15.227 7.3 19730101 20200624 040831 99999 SKORUVIK IC 66.35 -14.767000000000001 13.0 20070307 20070307 040850 99999 SKJALDTHINGSSTADIR IC BIVO 65.75 -14.833 48.0 19750311 20200624 040860 99999 HORN I HORNAFIRDI IC 64.267 -14.982999999999999 5.0 19490101 19560831 040870 99999 STRANDHOFN IC 65.9 -14.65 19.0 19490101 20050908 040890 99999 EGILSSTADIR IC BIEG 65.283 -14.401 23.2 19490101 20200624 040910 99999 REYDARFJORDUR IC 65.033 -14.232999999999999 25.0 19860515 20170804 040920 99999 DJUPIVOGUR IC 64.65 -14.283 25.0 19490101 19561231 040970 99999 DALATANGI IC 65.267 -13.583 11.0 19310103 20200624 041010 99999 BJARGTANGAR IC 65.5 -24.517 36.0 20040925 20200624 041030 99999 PATREKSFJORDUR IC 65.6 -24.0 4.0 20040909 20070307 041040 99999 GUFUSKALAR IC 64.9 -23.933000000000003 7.0 20060912 20200624 041090 99999 THVERFJALL IC 66.05 -23.316999999999997 753.0 20141113 20200624 041100 99999 NAVY OPERATED(AMOS) GL 72.283 -38.8 3195.0 19871005 20070307 041150 99999 DYNJANDIHEIDI IC 65.7 -23.083000000000002 621.0 19900501 20171206 041200 99999 GRINDAVIK IC 63.85 -22.416999999999998 4.0 20050222 20051201 041230 99999 HORNBJARGSVITI IC 66.417 -22.383000000000003 22.0 20050317 20200624 041240 99999 STRAUMSVIK IC 64.05 -22.333000000000002 5.0 20121204 20200624 041260 99999 GRUNDARTANGI IC 64.35 -21.783 5.0 20141113 20160503 041270 99999 BOLUNGARVIK IC 66.167 -23.25 27.0 20080115 20190315 041300 99999 REYKJAVIK IC 64.133 -21.9 53.0 20031104 20200624 041310 99999 GJOGUR IC 65.983 -21.35 32.0 20040612 20200624 041370 99999 AKUREYRI A IC 65.683 -18.117 31.0 20080429 20200624 041400 99999 THORLAKSHOFN IC 63.85 -21.383000000000003 5.0 20040704 20050104 041450 99999 BLONDUOS IC 65.667 -20.3 22.0 20080115 20200624 041460 99999 VESTMANNAEYJABAER IC 63.433 -20.283 40.0 20071016 20200624 041490 99999 KOLKA IC 65.4 -19.717 505.0 20141113 20200624 041540 99999 BURFELL IC 64.083 -19.733 249.0 20040116 20200624 041560 99999 HVERAVELLIR IC 64.867 -19.567 641.0 20080115 20200624 041600 99999 THUFUVER IC 64.583 -18.6 614.0 20031104 20200624 041620 99999 VEIDIVATNAHRAUN IC 64.4 -18.5 648.0 20070226 20200624 041650 99999 GRIMSEY IC 66.533 -18.017 17.0 19630101 20200624 041660 99999 JOKULHEIMAR IC 64.317 -18.217 727.0 20040809 20200624 041680 99999 SANDBUDIR IC 64.933 -17.983 821.0 20001204 20200624 041700 99999 SKARDSFJORUVITI IC 63.516999999999996 -17.983 9.0 20040504 20200624 041750 99999 ICELAND SITE IC 66.51 -16.54 59.3 19630101 20200624 041760 99999 KARAHNJUKAR IC 64.933 -15.783 639.0 20071016 20200624 041800 99999 HVANNEY IC 64.233 -15.2 5.0 20031104 20150519 041830 99999 FONTUR IC 66.383 -14.533 44.0 20041028 20200624 041900 99999 BOGUS GREENLAND GL 19880315 19880821 041930 99999 GAGNHEIDI IC 65.217 -14.267000000000001 949.0 20050923 20200624 041950 99999 ICELAND SITE IC 65.28 -14.0 92.4 19801201 20200624 041960 99999 KAMBANES IC 64.8 -13.85 34.0 20141113 20200624 041970 99999 DALATANGI IC 65.267 -13.583 11.0 20031009 20200624 042000 99999 DUNDAS GL 76.5 -69.0 20.0 19460908 20041005 042010 99999 QAANAAQ GL 77.467 -69.217 19.0 19960201 20041115 042020 99999 THULE AIR BASE GL BGTL 76.531 -68.703 76.5 19511101 20200624 042021 99999 AASIAAT MITTARFIA GL 68.717 -52.8 27.0 20040510 20200624 042022 99999 JAKOBSHAVN LUFTHAVN GL 69.233 -51.067 31.0 20040510 20200624 042023 99999 QAARSUT MITTARFIA GL BGUM 70.733 -52.7 89.0 20040831 20200624 042024 99999 SISIMIUT GL BGSS 66.95 -53.733000000000004 50.0 20040510 20160625 042025 99999 UPERNAVIK GL 72.783 -56.167 122.0 20040510 20140724 042030 99999 KITSISSUT (CAREY OEER) GL 76.633 -73.0 11.0 19730701 20200624 042040 99999 MANIITSOQ GL 65.417 -52.933 15.0 20040803 20200624 042050 99999 MITTARFIK QAANAAQ GL 77.483 -69.383 16.0 19730102 20200624 042070 99999 HALL LAND GL 81.683 -59.933 105.0 19821101 20070607 042080 99999 KITSISSORSUIT (EDDERFUGLE OEER) GL 74.033 -57.817 40.0 19820104 20200624 042090 99999 UPERNAVIK AWS GL BGUP 72.77 -56.17 63.0 19840901 20060114 042100 99999 UPERNAVIK GL 72.783 -56.167 120.0 19490101 20041219 042110 99999 MITTARFIK UPERNAVIK (UPERNAVIK LUFTHAVN) GL 72.783 -56.133 129.0 20040706 20200624 042120 99999 UUMMANNAQ HELIPORT GL 70.683 -52.117 2.0 19500711 20061116 042130 99999 QAARSUT MITTARFIA (UUMMANNAQ LUFTHAVN) GL 70.733 -52.7 89.0 20040706 20081231 042140 99999 NUUSSUAATAA (NUUSSUAQ) GL 70.683 -54.617 27.0 19821001 20200624 042160 99999 JAKOBSHAVN GL 69.217 -51.05 39.0 19730102 19880105 042163 99999 JAKOBSHAVN GL 69.217 -51.05 39.0 19880105 19880822 042170 99999 QASIGIANNGUIT HELIPORT GL 68.817 -51.183 24.0 19730102 20060404 042180 99999 GODHAVN PORT GL 69.333 -53.583 24.0 19730101 20190404 042200 99999 AASIAAT (EGEDESMINDE) GL BGEM 68.7 -52.85 41.0 19430109 20200624 042210 99999 ILULISSAT (JAKOBSHAVN) GL 69.233 -51.067 31.0 19880901 20081231 042215 99999 QAANAAQ GL 77.467 -69.217 15.5 20050101 20140724 042240 99999 AASIAAT MITTARFIA (EGEDESMINDE LUFTHAVN) GL 68.717 -52.8 27.0 20040915 20081231 042280 99999 KITSISSUT (ATTU) GL 67.783 -53.967 12.0 19830812 20200624 042300 99999 SISIMIUT /HOLSTEINS GL BGHB 66.917 -53.667 9.0 19490101 20051227 042310 99999 SONDRE STROMFJORD GL BGSF 67.017 -50.68899999999999 50.3 19411201 20200624 042340 99999 SISIMIUT MITTARFIA (HOLSTEINSBORG LUFTHA GL 66.95 -53.717 8.0 20040706 20200624 042350 99999 DYE 1 (RED RIVER) GL 66.633 -52.867 1453.0 19621201 20050315 042400 99999 SUKKERTOPPEN GL 65.4 -52.867 25.0 19490101 19871103 042410 99999 MANIITSOQ MITTARFIA (SUKKERTOPPEN LUFTHA GL 65.417 -52.933 32.0 20040706 20081231 042420 99999 SIORALIK GL 65.017 -52.55 14.0 19830701 20200624 042500 99999 NUUK (GODTHAAB) GL 64.167 -51.75 84.0 19490101 20200624 042520 99999 FAERINGEHAVN GL 63.7 -51.55 10.0 19730102 19730905 042530 99999 UKIIVIK (FREDERIKSHAAB ISBLINK) GL 62.567 -50.417 22.0 19821101 20200624 042540 99999 MITTARFIK NUUK (GODTHAAB LUFTHAVN) GL 64.2 -51.683 87.0 20010621 20081231 042600 99999 FREDERIKSHAAB GL BGFH 62.016999999999996 -49.667 15.0 19490101 20081231 042605 99999 FREDICKSHAB/PAAMIUT AIRPORT GL BGPT 61.983000000000004 -49.7 13.0 20050101 20200624 042610 99999 GROENNEDAL GL BGGD 61.233000000000004 -48.1 32.0 19430202 20051015 042630 99999 ARSUK GL 61.183 -48.45 137.0 20020420 20051012 042660 99999 NUNARSUIT GL 60.75 -48.45 30.0 19820104 20200607 042700 99999 NARSARSUAQ GL BGBW 61.161 -45.426 34.1 19410722 20200624 042720 99999 JULIANEHAAB GL BGJH 60.717 -46.05 34.0 19360501 20200624 042730 99999 QAQORTOQ HELIPORT GL 60.717 -46.033 18.0 20050724 20050724 042740 99999 QAGSSIMIUT GL 60.8 -47.1 13.0 20011002 20050616 042800 99999 NARSAQ HELIPORT GL 60.917 -46.05 25.0 19490113 20060214 042801 99999 NARSSAQ GL BGNS 60.9 -45.967 30.0 19440613 19490101 042830 99999 NANORTALIK HELIPORT GL 60.133 -45.233000000000004 5.0 19730102 20060217 042850 99999 ANGISOQ GL BGAS 59.983000000000004 -45.2 16.0 19811202 20200624 043010 99999 KAP MORRIS JESUP GL 83.65 -33.367 4.0 19811029 20200624 043050 99999 CAPE HARALD MOLTKE GL 82.15 -29.916999999999998 4.0 19831001 20050601 043100 99999 STATION NORD GL 81.6 -16.65 43.0 19520511 20140404 043120 99999 STATION NORD AWS GL 81.6 -16.65 36.0 19850801 20200624 043130 99999 HENRIK KROEYER HOLME GL 80.65 -13.717 10.0 19840901 20200624 043200 99999 DANMARKSHAVN (PORT) GL BGDH 76.767 -18.667 12.0 19490101 20200624 043300 99999 DANEBORG (AUT) GL BGDB 74.3 -20.217 44.0 19450901 20200624 043301 99999 DUNDAS GL 76.5 -69.0 20.0 20050905 20060105 043311 99999 UGO DANEBORGE GL 74.3 -20.217 43.0 20070307 20070307 043350 99999 MYGGBUKTA GL 73.483 -21.566999999999997 3.0 19310104 19390730 043380 99999 MESTERS VIG GL BGMV 72.25 -24.333000000000002 10.0 19730101 20060418 043390 99999 SCORESBYSUND GL BGSC 70.483 -21.95 69.0 19360501 20200624 043400 99999 CAPE TOBIN (AUT) GL BGKT 70.417 -21.967 41.0 19510801 20040919 043410 99999 CONSTABLE POINT GL BGCO 70.75 -22.65 10.0 19860510 20200624 043490 99999 KANGERDLUGSSUAK GL 68.15 -31.75 3.0 19490101 19500804 043500 99999 APUTITEQ (AUT) GL BGAT 67.783 -32.3 18.0 19500801 19870131 043510 99999 APUTITEEQ GL BGAT 67.783 -32.283 23.0 19870301 20200624 043600 99999 TASIILAQ GL BGAM 65.6 -37.633 52.0 19360501 20200624 043610 99999 KULUSUK LUFTHAVN GL BGKK 65.583 -37.15 37.0 19431005 20200624 043650 99999 KULUSUK LUFTHAVN GL 65.567 -37.117 327.0 19730101 19901016 043730 99999 IKERMIIT GL 64.783 -40.3 80.0 19861201 20200624 043800 99999 TINGMIARMIUT GL 62.417 -42.25 10.0 19490101 20050906 043810 99999 IKERMIUARSSUK (AUT) GL 61.8 -42.0 33.0 19800215 19891129 043820 99999 IKERMIUARSUK GL 61.933 -42.067 39.0 19431101 20200624 043900 99999 PRINS CHRISTIAN GL BGPC 60.033 -43.117 19.0 19430101 20200623 044160 99999 SUMMIT GL 72.583 -38.45 3207.0 19980301 20200624 044180 99999 SUMMIT-US GL 72.583 -38.5 3198.0 20110201 20130212 044360 99999 NEEM GL 77.502 -50.873999999999995 2450.0 20110402 20151223 044520 99999 JAR 1 GL 69.49600000000001 -49.693999999999996 905.0 20151008 20160809 044580 99999 SISS CAMP GL 69.565 -49.331 1093.0 20151008 20160809 044640 99999 DYE 2 GL BGRN 66.48100000000001 -46.283 2098.0 20110201 20130212 044850 99999 SADDLE GL 65.983 -44.5 2467.0 20110105 20160809 044880 99999 NASA-SE GL 66.467 -42.483000000000004 2406.0 20110101 20160809 049999 00001 BARBER GL 71.67 -38.17 3170.0 19900726 19960629 049999 00002 CATHY (GREENLAND) GL 72.3 -38.0 3210.0 19870504 19890529 049999 00003 GISP2 GL 72.58 -38.46 3205.0 19890608 19970125 049999 00004 GRIP GL 72.57 -37.62 3230.0 19890804 19900613 049999 00005 JULIE GL 72.57 -34.63 3100.0 19910802 19950520 049999 00006 KENTON (GREENLAND) GL 72.28 -38.82 3185.0 19890609 19980619 049999 00007 KLINCK GL 72.31 -40.48 3105.0 19900809 19950517 049999 00008 MATT GL 73.48 -37.62 3100.0 19910808 19950515 060050 99999 MYKINES DA 62.1 -7.683 100.0 20010601 20150302 060080 99999 FRODBA HELIPORT DA 61.533 -6.767 23.0 20160517 20190605 060090 99999 AKRABERG DA 61.4 -6.667000000000001 102.0 19730101 20181205 060100 99999 VAGAR FO EKVG 62.06399999999999 -7.277 85.3 19740805 20200624 060110 99999 TORSHAVN DA 62.016999999999996 -6.767 61.0 19310103 20200624 060120 99999 KIRKJA DA 62.317 -6.317 56.0 20010716 20160916 060130 99999 KATIMA MULILO ARPT/OKAMAPU WA FYMP -17.634 24.177 958.0 20160804 20190307 060160 99999 HORNS REV A FO EKHR 55.5 7.867000000000001 21.0 20091110 20200624 060170 99999 HORNS REV B HELIDECK DA EKHN 55.6 7.624 10.0 20090925 20200624 060190 99999 SILSTRUP DA 56.933 8.633 41.0 20050405 20200624 060210 99999 HANSTHOLM DA 57.117 8.6 3.0 19310101 20200606 060220 99999 TYRA OST DA EKGF 55.72 4.8 43.0 20050309 20191231 060221 99999 GORM C OIL PLATFORM HELIPAD DA EKGC 55.58 4.7589999999999995 96.0 20120822 20200624 060222 99999 HALFDAN A OIL PLATFORM HELIPAD DA EKHA 55.531000000000006 5.004 94.5 20120821 20200624 060223 99999 TYRA E OIL PLATFORM HELIPAD DA EKTE 55.722 4.802 95.1 20120821 20200327 060224 99999 HARALD HELIDECK OIL RIG DA EKHD 56.343999999999994 4.272 95.0 20120904 20200624 060230 99999 GORM (AUT/MAN) DA 55.583 4.7669999999999995 10.0 19821001 19860907 060240 99999 THISTED DA EKTS 57.068999999999996 8.705 7.0 19730621 20070201 060300 99999 FLYVESTATION AALBORG DA EKYT 57.093 9.849 3.0 19400401 20200624 060310 99999 TYLSTRUP DA 57.183 9.95 13.0 20050405 20200624 060320 99999 STENHOJ DA 57.383 10.333 55.0 20050405 20200624 060330 99999 HIRTSHALS DA 57.6 9.967 3.0 19770110 20200604 060335 99999 SINDAL DA 57.467 10.217 28.0 19770322 19770513 060340 99999 SINDAL DA EKSN 57.504 10.229 28.0 19820501 20200624 060370 99999 SKAGEN DA 57.783 10.732999999999999 1.0 19730921 19791125 060410 99999 SKAGEN DA 57.733000000000004 10.633 5.0 19280101 20200624 060430 99999 FREDERIKSHAVN DA 57.4 10.517000000000001 80.0 19890216 20070307 060440 99999 HALS DA 56.983000000000004 10.317 16.0 19860614 20200522 060450 99999 DYBVAD DA 57.266999999999996 10.317 16.0 19780403 19900317 060460 99999 19730111 19740805 060470 99999 LAESO TRINDEL DA 57.467 11.417 1.0 19730103 20050722 060480 99999 HADSUND DA EKHS 56.717 10.117 2.0 19830203 20020403 060490 99999 HALD V DA 56.567 10.1 89.0 20010918 20200624 060520 99999 THYBOROEN DA 56.7 8.217 4.0 19730101 20200624 060530 99999 AGGERSUND DA 57.0 9.3 6.0 19760311 20040717 060540 99999 LINDTORP AIRPORT DA EKHO 56.383 8.433 15.0 19770508 20070307 060550 99999 TORSMINDE DA 56.367 8.117 5.0 20020722 20180908 060560 99999 MEJRUP DA 56.383 8.667 53.0 20120411 20200624 060580 99999 HVIDE SANDE DA 56.0 8.15 5.0 19890216 20200624 060590 99999 LYNGVIG DA 56.05 8.1 3.0 19730101 19900209 060600 99999 KARUP DA EKKA 56.297 9.125 51.8 19730101 20200624 060620 99999 SKIVE DA EKSV 56.55 9.173 22.6 19761201 20070307 060630 99999 RONBJERG HUSE HAVN DA 56.9 9.167 2.0 19400701 19411231 060640 99999 HOLSTEBRO DA 56.367 8.583 21.0 19740613 19740921 060650 99999 AARS SYD DA 56.75 9.5 33.0 19780415 20200624 060660 99999 STAUNING DA EKVJ 55.99 8.354 5.2 19730621 20200624 060670 99999 19730102 19730527 060680 99999 ISENVAD DA 56.1 9.183 62.0 20120411 20200624 060690 99999 FOULUM DA 56.5 9.567 58.0 19881001 20190612 060700 99999 AARHUS DA EKAH 56.3 10.619000000000002 25.0 19730101 20200624 060710 99999 FORNAES (CAPE) DA 56.45 10.967 8.0 19730101 20070307 060720 99999 OEDUM DA 56.3 10.133 62.0 20120411 20200624 060730 99999 SLETTERHAGE FYR DA 56.1 10.517000000000001 6.0 19770401 20200624 060740 99999 AARHUS SYD DA 56.083 10.133 55.0 19770226 20200624 060750 99999 AARHUS DA 56.167 10.217 15.0 20031011 20041105 060760 99999 HADSTEN (DEAD) DA 56.333 10.05 19.0 19790402 19830914 060780 99999 ANHOLT ISLAND (AUT) DA EKAT 56.7 11.55 8.0 19841201 20070319 060790 99999 ANHOLT DA 56.717 11.517000000000001 4.0 19730101 20200624 060800 99999 ESBJERG DA EKEB 55.526 8.552999999999999 29.6 19730621 20200624 060810 99999 BLAAVANDSHUK DA 55.55 8.083 18.0 19280103 20200624 060820 99999 BORRIS DA 55.967 8.633 25.0 20120411 20200624 060840 99999 HERNING/SKINDERHOLM DA EKHG 56.183 9.033 51.0 19770401 20020108 060860 99999 OKSBOEL DA 55.583 8.25 17.0 20080825 20120913 060870 99999 ANHOLT KNOB DA 56.75 11.9 1.0 19730103 19860421 060890 99999 SAEDENSTRAND DA 55.5 8.4 11.0 19730101 20070616 060930 99999 VESTER VEDSTED DA 55.3 8.667 4.0 20120411 20200624 060960 99999 ROEMOE/JUVRE DA 55.183 8.567 9.0 19840905 20200624 060990 99999 HAVNEBY DA 55.083 8.567 3.0 19781201 20030512 060994 99999 OKSBOEL DA EKOX 55.583 8.25 17.0 20050530 20180822 061000 99999 VANDEL DA EKVA 55.7 9.2 73.0 19730102 20050213 061020 99999 HORSENS/BYGHOLM DA 55.867 9.783 24.0 20120411 20200624 061040 99999 BILLUND DA EKBI 55.74 9.152000000000001 75.3 19730101 20200624 061050 99999 19740613 19740805 061060 99999 TVINGSTRUP DA 55.917 9.917 70.0 19750911 19900131 061070 99999 HORNS REV (DEAD) DA 55.567 7.332999999999999 1.0 19730101 19801024 061080 99999 KOLDING VAMDRUP DA EKVD 55.43600000000001 9.331 43.6 19900911 20200624 061090 99999 ASKOV DA 55.467 9.117 62.0 20120411 20200624 061100 99999 SKRYDSTRUP DA EKSP 55.226000000000006 9.264 43.0 19730101 20200624 061110 99999 BAAGOE DA 55.3 9.8 2.0 19740805 20040829 061150 99999 MOLLEHUS DA 54.9 8.833 1.0 19740915 19891031 061160 99999 ST. JYNDEVAD (AUT) DA 54.9 9.167 0.0 19840904 19880623 061180 99999 SONDERBORG DA EKSB 54.964 9.792 7.3 19730621 20200624 061190 99999 KEGNAES DA 54.85 9.982999999999999 19.0 19730101 20200624 061200 99999 ODENSE DA EKOD 55.477 10.331 17.1 19730101 20200624 061230 99999 ASSENS/TOROE DA 55.25 9.883 3.0 20010601 20200624 061240 99999 SYDFYNS/TASINGE ISL DA EKST 55.016999999999996 10.567 6.0 19830401 20200624 061245 99999 AVNO AIR BASE DA EKAV 55.083 11.783 4.0 20120704 20200624 061260 99999 AARSLEV DA 55.317 10.433 51.0 20120411 20200624 061280 99999 MIDDLEFART DA 55.516999999999996 9.767000000000001 28.0 20020112 20060418 061310 99999 VESBORG DA 55.766999999999996 10.55 5.0 19830201 19960416 061350 99999 FLAKKEBJERG DA 55.317 11.383 34.0 20120411 20200624 061360 99999 TYSTOFTE DA 55.25 11.333 12.0 20050405 20200624 061370 99999 HATTER BARN DA 55.867 10.933 0.0 19850802 19851226 061380 99999 LANGOE DA 54.817 11.0 4.0 20010726 20200624 061390 99999 KELDSNOR DA 54.733000000000004 10.732999999999999 8.0 19830201 19910331 061400 99999 NAKSKOV AIRPORT DA 54.817 11.133 -1.0 19880601 19890413 061410 99999 ABED DA 54.833 11.333 9.0 20010919 20200624 061420 99999 ALBUEN DA 54.833 10.967 6.0 19911002 20000807 061430 99999 LOLLAND FALSTER MARIBO DA EKMB 54.699 11.44 4.9 19860401 20180129 061440 99999 BOGUS DANISH DA 0.0 0.0 -999.0 19730624 19850919 061441 99999 MARIBO AIRPORT DA 54.7 11.45 5.0 19850921 19880104 061443 99999 MARIBO AIRPORT DA 54.7 11.433 5.0 19880105 19901016 061470 99999 VINDEBAEK KYST DA 54.883 12.183 3.0 19730101 20200624 061490 99999 GEDSER DA 54.567 11.95 5.0 19530101 20200624 061500 99999 AVNO(DAFB) DA 55.083 11.783 4.0 19730102 20060109 061510 99999 OMOE DA 55.167 11.133 3.0 19730101 20200624 061520 99999 GLUMSO-ON-SJAELLAND DA 55.35 11.683 25.0 19730401 19841231 061530 99999 TYVELSE DA 55.383 11.683 38.0 19801003 20080429 061540 99999 BRANDELEV DA 55.2 11.867 46.0 20120411 20200624 061551 99999 RINGSTED ARPT DA EKRS 55.426 11.807 35.1 20190301 20200624 061560 99999 HOLBAEK DA 55.733000000000004 11.6 13.0 19740805 20200624 061570 99999 19730103 19750509 061580 99999 KALUNDBORG DA 55.667 11.1 2.0 19840814 20060113 061590 99999 ROESNAES DA 55.75 10.867 15.0 19740906 20200624 061600 99999 VAERLOSE DA EKVL 55.766999999999996 12.343 18.0 19391101 20070227 061610 99999 SPODSBJERG DA 55.983000000000004 11.867 5.0 19830401 20031208 061620 99999 KRONBORG DA 56.033 12.633 5.0 20010726 20010726 061640 99999 HESSELO ISL (AUT) DA 56.2 11.717 8.0 19850102 20040330 061650 99999 HESSELOE DA 56.2 11.717 18.0 20010919 20170215 061655 99999 COPENHAGEN/ROSKILDE DA 55.583 12.133 45.0 19740613 19770323 061680 99999 NAKKEHOVED DA 56.117 12.35 43.0 19881101 20200624 061690 99999 GNIBEN DA 56.016999999999996 11.283 12.0 19740731 20200624 061700 99999 ROSKILDE DA EKRK 55.586000000000006 12.130999999999998 44.5 19770419 20200624 061730 99999 STEVNS DA 55.283 12.45 40.0 20000706 20010506 061740 99999 TESSEBOELLE DA 55.4 12.15 22.0 20050405 20200624 061790 99999 MOEN DA 54.95 12.533 17.0 19730101 20060531 061800 99999 KASTRUP DA EKCH 55.618 12.655999999999999 5.2 19290801 20200624 061810 99999 JAEGERSBORG DA 55.766999999999996 12.533 42.0 19990119 20200624 061830 99999 DROGDEN DA 55.533 12.717 6.0 19830201 20200624 061840 99999 DMI DA 55.717 12.567 8.0 19890601 20020906 061860 99999 KOEBENHAVN/LANDBOHOEJSKOLEN DA 55.683 12.55 7.0 20031113 20031113 061880 99999 SJAELSMARK DA 55.883 12.417 40.0 20120411 20200624 061900 99999 BORNHOLM RONNE DA EKRN 55.063 14.76 15.8 19740110 20200624 061910 99999 CHRISTIANSO (LGT-H) DA 55.317 15.183 15.0 19730101 20030306 061930 99999 HAMMER ODDE FYR DA 55.3 14.767000000000001 9.0 19310101 20200624 061960 99999 POVLSKER DA 55.016999999999996 15.067 22.0 19771007 19840719 061970 99999 NEXOE VEST DA 55.05 15.1 25.0 20070807 20200624 061990 99999 DUEODDE (CAPE) DA 55.0 15.083 6.0 19530101 19771229 062000 99999 YPENBURG(NAFB) NL 52.033 4.35 1.0 19490101 20090202 062010 99999 D15-FA-1 HELIPAD OIL PLATFORM NL EHDV 54.317 2.9330000000000003 36.0 20080826 20200624 062030 99999 P11-B / DE RUYTER NL EHPG 52.367 3.35 24.0 20091109 20200624 062040 99999 K14-FA-1C NL EHKV 53.266999999999996 3.633 27.0 20070815 20200624 062050 99999 A12-CPP HELIPAD OIL PLATFORM NL EHAK 55.417 3.8169999999999997 33.0 20090209 20200624 062060 99999 F16-A NL EHFZ 54.117 4.0169999999999995 28.0 20070105 20200624 062070 99999 L9-FF-1 NL EHMG 53.617 4.967 30.0 20070105 20200624 062080 99999 AWG-1 NL EHMA 53.5 5.95 27.0 20070105 20200624 062090 99999 IJMOND NL 52.467 4.5169999999999995 0.0 20010701 20200624 062100 99999 VALKENBURG NL EHVB 52.167 4.433 1.0 19490101 20160503 062110 99999 J6-A HELIPAD OIL PLATFORM NL EHJA 53.817 2.95 34.0 20090209 20200624 062120 99999 HOORN-A HELIPAD OIL PLATFORM NL EHQE 52.917 4.15 41.0 20081118 20200624 062200 99999 TEXEL ISLAND NL 53.083 4.75 3.0 19490101 20060407 062250 99999 IJMUIDEN NL 52.467 4.567 4.0 19531101 20200624 062290 99999 TEXELHORS WP NL 53.0 4.717 0.0 19960901 20200624 062300 99999 DEN HELDER NL 52.967 4.75 7.0 19310101 19730107 062350 99999 DE KOOIJ NL EHKD 52.923 4.781000000000001 0.9 19730101 20200624 062390 99999 F3 - NETHERLANDS NL EHFD 54.85 4.7330000000000005 0.0 19940301 20200624 062400 99999 SCHIPHOL NL EHAM 52.309 4.763999999999999 -3.4 19320503 20200624 062410 99999 AMSTERDAM/COPENHA NL 52.417 4.867 0.0 20031007 20031009 062420 99999 VLIELAND ISLAND NL EHVL 53.25 4.917 5.0 19730102 20200624 062440 99999 HOORAN AWS NL 52.65 5.05 -1.0 19940901 20031214 062450 99999 19360102 19750520 062470 99999 BLOEMENDAAL NL 52.417 4.55 18.0 19960801 20060613 062480 99999 WIJDENES NL 52.633 5.167000000000001 4.0 19970204 20200624 062490 99999 BERKHOUT NL 52.65 4.9830000000000005 -3.0 20010701 20200624 062500 99999 TERSCHELLING(LGT-H) NL 53.367 5.2170000000000005 27.0 19490101 20051203 062510 99999 TERSCHELLING HOORN AWS NL 53.4 5.35 2.0 19960801 20200624 062520 99999 K13-A NL EHJR 53.217 3.217 30.0 19960801 20200624 062530 99999 AUK-ALFA NL EHAU 56.383 2.05 34.0 19960801 20060303 062540 99999 MEETPOST NOORDWIJK NL 52.266999999999996 4.3 17.0 19960801 20060705 062550 99999 NOORDELIJKE ZEERAAF NL 61.233000000000004 1.15 47.0 19960801 20060303 062570 99999 WIJK AAN ZEE NL 52.5 4.6 10.0 20010701 20200624 062580 99999 HOUTRIBDIJK NL 52.65 5.4 7.0 20060809 20200624 062600 99999 DE BILT NL EHDB 52.1 5.183 4.0 19310101 20200624 062650 99999 SOESTERBERG NL EHSB 52.126999999999995 5.276 20.1 19511001 20081120 062670 99999 STAVOREN AWS NL 52.9 5.382999999999999 3.0 19940901 20200624 062680 99999 HOUTRIB NL 52.533 5.433 2.0 19780301 20050605 062690 99999 LELYSTAD NL EHLE 52.46 5.527 -4.0 19940901 20200624 062691 99999 AUK-ALFA NL 56.4 2.0669999999999997 34.0 20040510 20040719 062692 99999 EURO PLATFORM NL EHEP 52.0 3.283 18.0 20040510 20061127 062693 99999 VLISSINGEN NL EHFS 51.45 3.6 8.0 20040510 20200624 062694 99999 LE GOEREE NL EHGO 51.933 3.667 19.0 20040510 20061127 062695 99999 K13-A NL EHKA 53.217 3.217 30.0 20040510 20061127 062696 99999 MEETPOST NOORDWUK NL EHMP 52.266999999999996 4.3 17.0 20040510 20060705 062697 99999 NOORDELUKE ZEERAAF NL EHNC 61.233000000000004 1.15 47.0 20040510 20060303 062700 99999 LEEUWARDEN NL EHLW 53.229 5.761 0.9 19490101 20200624 062710 99999 STAVOREN HAVEN NL 52.883 5.35 3.0 20010701 20051019 062720 99999 RAMSPOL NL 52.617 5.85 6.0 19520101 19770831 062730 99999 MARKNESSE AWS NL 52.7 5.882999999999999 -3.0 19940901 20200624 062750 99999 DEELEN NL EHDL 52.06100000000001 5.872999999999999 48.2 19491017 20200624 062770 99999 LAUWERSOOG AWS NL 53.417 6.2 0.0 19940901 20200624 062780 99999 HEINO AWS NL 52.433 6.267 5.0 19940901 20200624 062790 99999 HOOGEVEEN AWS NL 52.733000000000004 6.5729999999999995 16.0 19940901 20200624 062800 99999 EELDE NL EHGG 53.12 6.579 5.2 19310601 20200624 062830 99999 HUPSEL AWS NL 52.067 6.65 29.0 19940901 20200624 062850 99999 HUIBERTGAT WP NL 53.567 6.4 0.0 19960901 20200624 062860 99999 NIEUW BEERTA NL 53.2 7.15 0.0 19940901 20200624 062900 99999 TWENTHE NL EHTW 52.27 6.874 34.7 19490101 20200624 063000 99999 NOORDHINDER NL 51.65 2.5669999999999997 3.0 19310102 19840718 063080 99999 CADZAND WP NL 51.383 3.383 7.0 19960901 20200624 063100 99999 VLISSINGEN NL 51.45 3.6 10.0 19280102 20200624 063110 99999 HOOFDPLAAT NL 51.367 3.667 0.0 20010701 20160705 063120 99999 OOSTERSCHELDE WP NL 51.766999999999996 3.617 0.0 19960901 20200624 063130 99999 VLAKTE VAN RAAN NL 51.5 3.25 0.0 20010704 20200624 063150 99999 HANSWEERT NL 51.433 4.0169999999999995 0.0 20010704 20200624 063160 99999 OOSTERSCHELDE 4 NL 51.65 3.7 0.0 19960901 20200624 063190 99999 WESTDORPE NL 51.233000000000004 3.867 2.0 19940901 20200624 063200 99999 LE GOEREE NL EHSC 51.933 3.667 19.0 19490101 20200624 063210 99999 EURO PLATFORM NL EHSA 52.0 3.283 18.0 19960801 20200624 063230 99999 WILHELMINADORP AWS NL 51.533 3.883 1.0 19940901 20200624 063240 99999 STAVENISSE NL 51.6 4.0 0.0 20010704 20200624 063250 99999 ZIERIKZEE NL 51.65 3.9330000000000003 1.0 19740613 19900324 063300 99999 HOEK VAN HOLLAND NL 51.983000000000004 4.1 14.0 19490214 20200624 063310 99999 MAROLLEGAT NL 51.483000000000004 4.2 0.0 19960901 20200624 063400 99999 WOENSDRECHT NL EHWO 51.449 4.342 19.2 19490103 20200624 063401 99999 WOENSDRECHT RNLAFB& NL EHWO 51.45 4.333 17.0 19810910 19830422 063430 99999 ROTTERDAM GEULHAVEN AWS NL 51.9 4.317 4.0 19940901 20200624 063440 99999 ROTTERDAM NL EHRD 51.957 4.437 -4.6 19570101 20200624 063480 99999 CABAUW TOWER NL 51.967 4.933 2.0 19960101 20200624 063500 99999 GILZE RIJEN NL EHGR 51.567 4.9319999999999995 14.9 19490101 20200624 063560 99999 HERWIJNEN AWS NL 51.85 5.132999999999999 1.0 19940901 20200624 063700 99999 EINDHOVEN NL EHEH 51.45 5.375 22.6 19490101 20200624 063750 99999 VOLKEL NL EHVK 51.656000000000006 5.709 21.9 19510601 20200624 063770 99999 ELL AWS NL 51.2 5.767 30.0 20010701 20200624 063790 99999 OOST MAARLAND AWS NL 50.8 5.7170000000000005 49.0 19940901 19990330 063800 99999 MAASTRICHT NL EHBK 50.912 5.77 114.3 19490101 20200624 063850 99999 DE PEEL(NAFB) NL 51.55 5.933 31.0 19730402 19940611 063910 99999 ARCEN AWS NL 51.5 6.2 19.0 19940901 20200624 064000 99999 KOKSIJDE BE EBFN 51.09 2.653 6.1 19490101 20200624 064040 99999 WEST-HINDER (LV) BE 51.4 2.4330000000000003 7.0 19740903 20031110 064070 99999 OOSTENDE BE EBOS 51.199 2.862 4.0 19360103 20200624 064080 99999 OOSTENDE (PIER) BE 51.233000000000004 2.917 15.0 19490101 20060112 064100 99999 ZEEBRUGGE TERMINAL BE 51.35 3.2 18.0 19520101 19550925 064140 99999 BEITEM BE 50.9 3.117 25.0 20080115 20200624 064160 99999 WEVELGEM BE 50.817 3.2 25.0 19771030 20030514 064180 99999 ZEEBRUGGE BE 51.35 3.2 9.0 20091026 20200624 064280 99999 SEMMERZAKE BE EBMT 50.933 3.667 37.5 19730101 20200624 064310 99999 GENT/INDUSTRIE-ZONE BE EBGT 51.183 3.8 8.0 19791030 20181029 064320 99999 CHIEVRES AB BE EBCV 50.576 3.8310000000000004 58.8 19730101 20200624 064324 99999 LIEGE BE EBLH 50.633 5.45 201.0 19990114 20100917 064325 99999 CASTEAU/HELI (MET) BE EBCT 50.5 3.98 78.0 20100419 20200624 064340 99999 MELLE BE 50.983000000000004 3.8169999999999997 15.0 20091026 20200624 064390 99999 SINT KATELIJNE-WAVER BE 51.083 4.5169999999999995 11.0 20121001 20200624 064470 99999 UCCLE BE 50.8 4.35 101.0 19490101 20200624 064480 99999 MELSBROEK (BEL-AFB) BE EBMB 50.9 4.5 55.0 19951007 20050130 064490 99999 BRUSSELS SOUTH BE EBCI 50.458999999999996 4.454 187.1 19730101 20200624 064494 99999 ELSENBORN BE 50.467 -6.2170000000000005 0.0 19810327 19840817 064500 99999 DEURNE BE EBAW 51.18899999999999 4.46 11.9 19400605 20200624 064505 99999 BRUSSELLS (MIL) BE EBWM 50.883 4.5169999999999995 58.0 20061025 20111208 064510 99999 BRUSSELS NATL BE EBBR 50.901 4.484 56.1 19300302 20200624 064511 99999 BERTRIX BE EBBX 49.891999999999996 5.224 461.5 20061121 20080910 064514 99999 MELSBROEK (BEL-AFB) BE EBMB 50.917 4.4830000000000005 0.0 19830915 19830920 064520 99999 BRASSCHAAT (MIL) BE EBBT 51.333 4.5 23.0 19730101 20060608 064550 99999 DOURBES BE 50.1 4.6 233.0 20091026 20200624 064560 99999 FLORENNES BE EBFS 50.243 4.646 285.0 19490101 20200624 064580 99999 BEAUVECHAIN BE EBBE 50.75899999999999 4.768 112.8 19730101 20200624 064590 99999 ERNAGE BE 50.583 4.683 157.0 19311105 20200624 064620 99999 WEELDE BE EBWE 51.395 4.96 32.0 19990418 20011012 064630 99999 GOETSENHOVEN (MIL) BE EBTN 50.783 4.95 81.0 19730101 20030731 064640 99999 RETIE BE 51.217 5.033 21.0 20091026 20200624 064650 99999 SCHAFFEN BE EBDT 51.0 5.067 54.0 19730101 20200624 064700 99999 SINT TRUIDEN BE EBST 50.792 5.202000000000001 75.0 19520121 20070307 064720 99999 HUMAIN BE 50.2 5.25 296.0 20091026 20200624 064730 99999 SINSIN BE 50.266999999999996 5.25 244.0 19730809 20040424 064740 99999 LIBRAMONT BE 49.917 5.367000000000001 492.0 19400706 19420630 064760 99999 SAINT HUBERT MIL BE EBSU 50.036 5.404 588.3 19490101 20200624 064765 99999 SAINT HUBERT BE EBSH 50.033 5.4 557.0 20090604 20200624 064770 99999 DIEPENBEEK BE 50.917 5.45 39.0 20091026 20200624 064780 99999 LIEGE BE EBLG 50.637 5.443 200.9 19490101 20200624 064785 99999 LIEGE/BIERSET(BAFB) BE 50.633 5.45 201.0 19741008 19901016 064790 99999 KLEINE BROGEL BE EBBL 51.168 5.47 61.0 19730101 20200624 064800 99999 MEIX-DEVANT-VIRTON BE 49.6 5.483 252.0 19490101 20031231 064810 99999 GENK/ZWARTBERG BE EBZW 50.933 5.5 63.0 19490101 20050102 064820 99999 19490101 19560630 064840 99999 BUZENOL BE 49.617 5.582999999999999 324.0 20091026 20200624 064900 99999 SPA/LA SAUVENIERE BE EBSP 50.483000000000004 5.917000000000001 482.0 19501001 20200624 064901 99999 SEMMERZAKE (BAFB) BE EBSZ 50.933 3.65 37.0 20040510 20200624 064940 99999 MONT-RIGI BE 50.516999999999996 6.067 673.0 20080115 20200624 064950 99999 BOTRANGE (MOUNT) BE 50.5 6.1 695.0 19510201 20011015 064960 99999 ELSENBORN (MIL) BE EBLB 50.467 6.183 570.0 19840501 20200624 065850 99999 CLERVAUX LU 50.05 6.017 454.0 19490101 19591231 065890 99999 LUXEMBOURG (BEGGEN) LU 49.65 6.132999999999999 235.0 19490101 19600928 065900 99999 LUXEMBOURG LU ELLX 49.626999999999995 6.212000000000001 376.1 19490101 20200624 065970 99999 ECHTERNACH LU 49.8 6.45 244.0 19490101 20060123 065985 99999 BERTRIX (BEL-AFB) BE EBBX 49.85 5.25 0.0 19840402 19840526 066000 99999 ST. CHRISCHONA SZ 47.567 7.683 493.0 19550101 19670930 066010 99999 BASEL-BINNINGEN SZ 47.55 7.582999999999999 317.0 19901101 20200624 066020 99999 DELEMONT SZ 47.35 7.35 439.4 20121126 20200624 066040 99999 NEUCHATEL (AUT) SZ LSGN 47.0 6.95 487.0 19820114 20200624 066045 99999 LES EPLATURES SZ LSGC 47.083999999999996 6.792999999999999 1026.6 20040803 20200624 066050 99999 CHASSERAL SZ 47.133 7.067 1631.0 19881201 20200624 066060 99999 CRESSIER SZ 47.05 7.067 431.0 20110124 20200624 066080 99999 CHAUMONT SZ 47.05 6.983 1136.1 20130905 20200624 066090 99999 LE MOLESON SZ 46.55 7.017 1973.0 19901101 20200624 066099 99999 DUBENDORF SZ LSMD 47.398999999999994 8.648 448.1 20040903 20200624 066100 99999 PAYERNE SZ 46.817 6.95 490.5 19590319 20200624 066120 99999 LA CHAUX-DE-FONDS SZ 47.083 6.8 1018.1 19800208 20200624 066130 99999 EMMEN SZ LSME 47.092 8.305 426.7 20050727 20200624 066140 99999 MEIRINGEN SZ LSMM 46.743 8.11 579.1 20050727 20200624 066160 99999 FAHY-BONCOURT SZ 47.433 6.95 597.0 19810101 20200624 066170 99999 LA BREVINE SZ 46.983000000000004 6.617000000000001 1050.0 20130905 20200624 066180 99999 MATHOD SZ 46.733000000000004 6.567 437.4 20060207 20200624 066190 99999 BULLET-LA FRETAZ SZ 46.833 6.582999999999999 1210.0 19901101 20200624 066200 99999 SCHAFFHAUSEN SZ 47.683 8.617 437.0 19550101 20200624 066210 99999 GUETTINGEN SZ 47.6 9.283 440.0 19901101 20200624 066230 99999 SALEN-REUTENEN SZ 47.65 9.017000000000001 719.7 20110124 20200624 066240 99999 HALLAU SZ 47.683 8.467 420.0 20120124 20200624 066250 99999 FRIBOURG-POSIEUX SZ 46.766999999999996 7.117000000000001 633.0 20111011 20200624 066260 99999 GOESGEN SZ 47.367 7.983 380.0 20080721 20200624 066270 99999 CHATEAU-D'OEX SZ 46.483000000000004 7.132999999999999 1030.0 20120208 20200624 066280 99999 PLAFFEIEN SZ 46.75 7.267 1041.0 19900205 20200624 066300 99999 BERN-BELPMOOS SZ 46.917 7.5 510.0 19310103 19900424 066303 99999 BERN BELP SZ LSZB 46.913999999999994 7.497000000000001 510.2 19900424 20200624 066304 99999 SAMEDAN SZ LSZS 46.534 9.884 1706.9 20070301 20200624 066310 99999 BERN-ZOLLIKOFEN SZ 46.983000000000004 7.4670000000000005 567.0 19901101 20200624 066320 99999 GRENCHEN SZ 47.183 7.417000000000001 429.0 19790402 20200624 066330 99999 BUCHS-AARAU SZ 47.383 8.083 389.0 19901101 20200624 066350 99999 KOPPIGEN SZ 47.133 7.617000000000001 482.0 20121130 20200624 066360 99999 MUEHLEBERG SZ 46.983000000000004 7.2829999999999995 483.0 20080604 20200624 066370 99999 MEIRINGEN SZ 46.717 8.167 590.6 20111011 20200624 066380 99999 LANGNAU IE SZ 46.933 7.8 706.0 20111011 20200624 066390 99999 NAPF SZ 47.0 7.933 1406.0 19821101 20200624 066400 99999 MARSENS SZ 46.65 7.067 714.5 20150818 20200624 066410 99999 MOEHLIN SZ 47.583 7.882999999999999 340.0 20110201 20200624 066430 99999 WYNAU SZ 47.25 7.7829999999999995 416.0 19780101 20200624 066440 99999 MOSEN SZ 47.25 8.232999999999999 453.5 20121130 20200624 066450 99999 RUENENBERG SZ 47.433 7.882999999999999 610.0 19900316 20200624 066460 99999 BEZNAU SZ 47.567 8.232999999999999 327.0 20080604 20200624 066470 99999 WUERENLINGEN SZ 47.533 8.232999999999999 337.0 20050321 20200624 066480 99999 EGOLZWIL SZ 47.183 8.0 522.0 20110124 20200624 066490 99999 LAUFENBURG SZ 47.55 8.05 322.0 20020424 20020424 066500 99999 LUZERN SZ 47.033 8.3 456.0 19901101 20200624 066510 99999 SCHUEPFHEIM SZ 46.95 8.017000000000001 743.7 20110124 20200624 066520 99999 FLUEHLI SZ 46.883 8.017000000000001 939.8 20020331 20200624 066540 99999 BRUGG-WILDEGG SZ 47.467 8.167 350.0 20031120 20031120 066550 99999 ENGELBERG SZ 46.817 8.417 1018.0 19901101 20200624 066560 99999 BRIENZ SZ 46.75 8.067 580.0 20121130 20200624 066570 99999 GISWIL SZ 46.85 8.2 475.0 20110124 20200624 066580 99999 ALPNACH SZ LSMA 46.943999999999996 8.283999999999999 445.0 19771212 20200624 066590 99999 PILATUS SZ 46.983000000000004 8.25 2110.0 19891016 20200624 066600 99999 ZUERICH-FLUNTERN SZ 47.383 8.567 557.6 19350101 20200624 066621 99999 GRENCHEN SZ LSZG 47.181999999999995 7.417000000000001 430.1 20040510 20200624 066640 99999 ZUERICH-AFFOLTERN SZ 47.433 8.517000000000001 441.0 19901101 20200624 066660 99999 LEIBSTADT SZ 47.6 8.183 341.0 20080604 20200624 066690 99999 LAEGEREN SZ 47.483000000000004 8.4 843.0 19740101 20200624 066700 99999 ZURICH SZ LSZH 47.465 8.549 431.6 19550101 20200624 066710 99999 STECKBORN SZ 47.667 8.982999999999999 398.0 20120209 20200624 066720 99999 ALTDORF SZ 46.867 8.633 451.0 19790401 20200624 066730 99999 WAEDENSWIL SZ 47.217 8.683 486.5 19901101 20200624 066740 99999 CHAM SZ 47.183 8.467 443.4 20140701 20200624 066750 99999 EINSIEDELN SZ 47.133 8.75 910.0 20070226 20200624 066760 99999 OBERAEGERI SZ 47.133 8.617 724.0 20070226 20200624 066770 99999 UETLIBERG SZ 47.35 8.482999999999999 854.0 20070226 20070228 066780 99999 BISCHOFSZELL SZ 47.5 9.232999999999999 470.0 20150818 20200624 066790 99999 AADORF-TAENIKON SZ 47.483000000000004 8.9 539.5 19901101 20200624 066800 99999 SAENTIS SZ 47.25 9.35 2500.0 19350101 20200624 066810 99999 ST. GALLEN SZ 47.433 9.4 777.8 19811101 20200624 066811 99999 ST GALLEN ALTENRHEIN SZ LSZR 47.485 9.561 398.1 20040510 20200624 066820 99999 ELM SZ 46.917 9.183 965.0 20111011 20200624 066830 99999 SCHMERIKON SZ 47.217 8.933 409.4 20111031 20200624 066840 99999 WEESEN SZ 47.133 9.1 423.0 20010808 20040917 066850 99999 GLARUS SZ 47.033 9.067 517.5 19901101 20200624 066860 99999 BAD RAGAZ SZ 47.016999999999996 9.5 497.5 20120206 20200624 066870 99999 QUINTEN SZ 47.133 9.217 423.0 20111024 20200624 066880 99999 CRAP MASEGN SZ 46.85 9.183 2480.0 20111011 20200624 066890 99999 HOERNLI SZ 47.367 8.95 1124.0 19940301 20200624 066900 99999 ALTENRHEIN SZ 47.483000000000004 9.567 398.4 20140127 20200624 066930 99999 EBNAT-KAPPEL SZ 47.266999999999996 9.1 623.0 20041224 20200624 066950 99999 ANDERMATT SZ 46.633 8.583 1438.1 20140127 20200624 067000 99999 GENEVA COINTRIN SZ LSGG 46.238 6.109 430.1 19350101 20200624 067010 99999 LE CHENIT SZ 46.6 6.2170000000000005 1015.0 20070226 20070228 067020 99999 LA DOLE SZ 46.433 6.1 1670.2 19730101 20200624 067030 99999 LES CHARBONNIERES SZ 46.667 6.317 1045.1 20020407 20200624 067040 99999 BIERE SZ 46.516999999999996 6.332999999999999 684.0 20070226 20200624 067050 99999 NYON-CHANGINS SZ 46.4 6.233 432.0 19901101 20200624 067060 99999 ST-PREX SZ 46.483000000000004 6.45 425.0 20111206 20200624 067070 99999 VILLARS-TIERCELIN SZ 46.617 6.7170000000000005 859.0 20140402 20200624 067080 99999 ORON SZ 46.567 6.867000000000001 828.8 20120124 20200624 067090 99999 BOUVERET SZ 46.4 6.867000000000001 375.0 20060103 20200624 067100 99999 LAUSANNE SZ 46.55 6.617000000000001 610.0 19870519 20010805 067110 99999 PULLY SZ 46.516999999999996 6.667000000000001 462.0 19901101 20200624 067120 99999 AIGLE SZ 46.333 6.917000000000001 383.0 19810501 20200624 067140 99999 LES DIABLERETS SZ 46.333 7.2 2964.3 20070226 20200624 067150 99999 EVIONNAZ SZ 46.183 7.0329999999999995 480.0 20140127 20200624 067160 99999 MOTTEC SZ 46.15 7.617000000000001 1580.0 19901101 20200624 067170 99999 COL DU GRAND ST BERNARD SZ 45.867 7.167000000000001 2479.0 19901101 20200624 067180 99999 NOVILLE SZ 46.383 6.9 373.0 19770104 20030710 067200 99999 SION SZ LSGS 46.22 7.327000000000001 481.9 19550101 20200624 067205 99999 SION SZ LSMS 46.22 7.32 482.0 20060710 20190327 067210 99999 BINN SZ 46.367 8.183 1448.0 20140128 20200624 067220 99999 EVOLENE-VILLAZ SZ 46.117 7.517 1828.0 19901101 20200624 067230 99999 VERBIER-LES ATTLELAS SZ 46.1 7.267 2733.0 20070226 20200624 067240 99999 MONTANA SZ 46.3 7.4670000000000005 1508.0 19790401 20200624 067250 99999 BLATTEN-LOETSCHENTAL SZ 46.417 7.817 1538.2 20130905 20200624 067260 99999 PLAINE MORTE SZ 46.367 7.483 2937.0 19780702 19780702 067270 99999 VISP SZ 46.3 7.85 642.0 19900401 20200624 067280 99999 GRAECHEN SZ 46.2 7.832999999999999 1605.2 20070226 20200624 067300 99999 JUNGFRAUJOCH SZ 46.55 7.983 3576.0 19350101 20200624 067330 99999 BOLTIGEN SZ 46.633 7.382999999999999 820.0 20070226 20200624 067340 99999 INTERLAKEN SZ 46.667 7.867000000000001 578.6 19770616 20200624 067350 99999 ADELBODEN SZ 46.5 7.567 1328.1 19901101 20200624 067390 99999 EGGISHORN SZ 46.433 8.083 2893.0 20070226 20200624 067400 99999 TITLIS SZ 46.766999999999996 8.433 3094.3 20130905 20200624 067430 99999 ERNEN SZ 46.4 8.133 1000.0 19930121 20050427 067440 99999 GRIMSEL-HOSPIZ SZ 46.567 8.333 1965.0 19901101 20200624 067450 99999 ULRICHEN SZ 46.5 8.317 1347.1 19901101 20200624 067470 99999 MONTE ROSA SZ 45.95 7.817 2885.0 20100201 20200624 067480 99999 ZERMATT SZ 46.033 7.75 1624.0 19901101 20200624 067490 99999 GORNERGRAT SZ 45.983000000000004 7.7829999999999995 3129.3 20130905 20200624 067500 99999 GUETSCH OB ANDERMATT SZ 46.65 8.617 2284.2 19550101 20200624 067510 99999 ROBIEI SZ 46.45 8.517000000000001 1891.0 19910806 20200624 067520 99999 CEVIO SZ 46.317 8.6 422.4 20131001 20200624 067530 99999 PIOTTA SZ 46.516999999999996 8.683 1016.0 19790202 20200624 067540 99999 MATRO SZ 46.417 8.933 2171.0 20050222 20200624 067560 99999 ACQUAROSSA-COMPROVASCO SZ 46.467 8.933 552.0 19881001 20200624 067570 99999 LODRINO SZ 46.3 8.982999999999999 261.0 20070226 20070228 067580 99999 GRONO SZ 46.25 9.167 324.3 20060114 20200624 067590 99999 CIMETTA SZ 46.2 8.8 1648.0 19740101 20200624 067600 99999 LOCARNO-MONTI SZ 46.167 8.783 380.0 19730101 20200624 067620 99999 LOCARNO - MAGADINO SZ LSZL 46.17 8.88 198.0 19550101 20200624 067700 99999 LUGANO SZ LSZA 46.004 8.911 278.9 19350101 20200624 067710 99999 STABIO SZ 45.85 8.933 352.4 19820401 20200624 067770 99999 MONTE GENEROSO SZ 45.933 9.017000000000001 1601.2 20121130 20200624 067780 99999 BUFFALORA SZ 46.65 10.267000000000001 1970.0 20070226 20200624 067790 99999 SEGL-MARIA SZ 46.433 9.767000000000001 1804.2 20140401 20200624 067800 99999 WEISSFLUHJOCH SZ 46.833 9.817 2667.0 19881201 20200624 067810 99999 TAVANASA SZ 46.75 9.05 800.0 20061129 20061129 067820 99999 DISENTIS-SEDRUN SZ 46.7 8.85 1180.0 19770701 20200624 067830 99999 S BERNARDINO SZ 46.467 9.183 1638.0 19820401 20200624 067840 99999 DAVOS SZ 46.817 9.85 1592.0 19901101 20200624 067850 99999 AROSA SZ 46.8 9.683 1878.2 20160118 20200624 067860 99999 CHUR SZ 46.867 9.533 556.0 19800208 20200624 067870 99999 ANDEER SZ 46.617 9.433 989.0 20010811 20200624 067880 99999 VICOSOPRANO SZ 46.35 9.633 1075.0 19901101 20200624 067881 99999 HINTERRHIEN SZ 46.516999999999996 9.183 1619.0 20050101 20110628 067890 99999 ILANZ SZ 46.783 9.217 698.0 20140401 20200624 067900 99999 SCHIERS SZ 46.983000000000004 9.667 626.0 20011106 20200624 067910 99999 PIZ CORVATSCH SZ 46.417 9.817 3299.0 19770701 20200624 067920 99999 SAMEDAM SZ 46.533 9.883 1706.0 19800208 20200624 067930 99999 VALBELLA SZ 46.75 9.55 1560.0 20050321 20200624 067940 99999 POSCHIAVO-ROBBIA SZ 46.35 10.067 1079.1 19780718 20200624 067950 99999 PIZ MARTEGNAS SZ 46.583 9.533 2670.0 20111011 20200624 067960 99999 STA MARIA VAL MUESTAIR SZ 46.6 10.433 1390.0 20121130 20200624 067970 99999 PASSO DEL BERNINA SZ 46.417 10.017000000000001 2260.2 20150818 20200624 067980 99999 SCUOL SZ 46.8 10.283 1295.0 19901101 20200624 067990 99999 NALUNS SZ 46.817 10.267000000000001 2400.0 20060124 20200624 068065 99999 BUOCHS AIRPORT / STANS SZ LSZC 46.967 8.4 450.0 20060817 20200624 068070 99999 DUEBENDORF SZ 47.4 8.633 435.0 20070226 20070307 068420 99999 SITTERDORF SZ 47.516999999999996 9.267000000000001 506.0 20080122 20190118 068460 99999 SCALOTTAS SZ 46.717 9.517000000000001 2323.0 20090127 20200124 068470 99999 BRIENZER ROTHORN SZ 46.783 8.05 2280.0 20100126 20100202 068480 99999 PFAEFERS SZ 46.933 9.502 1420.0 20100126 20200124 068490 99999 SALEZ SZ 47.233000000000004 9.5 436.0 20110124 20110131 068500 99999 BACHTEL SZ 47.3 8.883 1115.0 20110124 20160124 068510 99999 HOMBRECHTIKOM SZ 47.25 8.767000000000001 496.0 20110124 20190125 068520 99999 SENT SZ 46.817 10.35 1420.0 20110124 20140126 068570 99999 GAMS SZ 47.2 9.417 701.0 20140116 20140126 069030 99999 DAVOS SZ 46.817 9.85 1639.2 20050101 20071031 069900 99999 VADUZ LS 47.133 9.517000000000001 463.0 19730101 20200624 070020 99999 BOULOGNE FR 50.733000000000004 1.6 74.0 19730101 20200624 070023 99999 CAPTIEUX FR LFYJ 44.183 -0.267 132.0 19880105 19880129 070030 99999 LE TOUQUET PARIS PLAGE FR LFAT 50.515 1.6269999999999998 11.0 19730101 20200624 070040 99999 CAP GRIS NEZ FR 50.867 1.5830000000000002 45.0 20080423 20170507 070050 99999 ABBEVILLE FR LFOI 50.143 1.8319999999999999 67.1 19261004 20200624 070070 99999 SAINT INGLEVERT FR 50.867 1.75 123.0 19310101 19420630 070090 99999 CALAIS/DUNKERQUE FR 50.967 1.95 3.0 19290801 20200624 070100 99999 DUNKERQUE FR 51.05 2.333 17.0 19730101 20200624 070130 99999 BIHUCOURT FR 50.117 2.8 130.0 19401014 19420808 070140 99999 BERCK-SUR-MER FR 50.417 1.6 7.0 19400715 19420923 070150 99999 LESQUIN FR LFQQ 50.562 3.089 47.9 19450301 20200624 070160 99999 VITRY-EN-ARTOIS FR 50.333 3.0 48.0 19310101 20120222 070170 99999 EPINOY FR LFQI 50.222 3.154 78.3 19730101 20120629 070190 99999 BARFLEUR (POINT) FR 49.7 -1.2670000000000001 7.0 19850701 20200624 070200 99999 LA HAGUE FR 49.717 -1.933 12.0 19360706 20200624 070220 99999 VIGITE DU HAUMET FR 49.65 -1.5 130.0 19760302 20200624 070240 99999 MAUPERTUS FR LFRC 49.65 -1.47 139.9 19360101 20200624 070270 99999 CARPIQUET FR LFRK 49.173 -0.45 78.0 19730101 20200624 070280 99999 OCTEVILLE FR LFOH 49.534 0.08800000000000001 95.4 19310101 20200624 070290 99999 PORT EN BESSIN FR 49.35 -0.767 73.0 19840101 20200624 070310 99999 ST GATIEN FR LFRG 49.365 0.154 146.0 19730102 20200624 070330 99999 VITTEFLEUR/ST. VALE FR LFOS 49.833 0.65 83.0 19831208 20080622 070340 99999 CARTERET FR 49.367 -1.8 65.0 19861001 20200624 070370 99999 VALLEE DE SEINE FR LFOP 49.38399999999999 1.175 156.1 19730101 20200624 070380 34061 EVREUX FR LFOE 49.016999999999996 1.217 138.0 19730101 20200624 070380 99999 FAUVILLE FR LFOE 49.028999999999996 1.22 141.4 20000101 20041231 070390 99999 VALOGNES (AUT) FR 49.516999999999996 -1.5 61.0 19910125 20090316 070400 99999 DIEPPE FR 49.933 1.1 38.0 19730101 20200624 070440 99999 ANTIFER FR 49.65 0.15 11.0 20080116 20091231 070460 99999 LE HAVRE-OCTEVILLE FR 49.533 0.083 94.0 20010919 20200624 070530 99999 CORMEILLES FR 49.083 2.033 88.0 19730107 20200624 070550 99999 TILLE FR LFOB 49.45399999999999 2.113 109.4 19360101 20200624 070570 99999 CREIL FR LFPC 49.254 2.519 88.7 19400713 20200624 070580 99999 THIEULLOY-L'ABBAYE FR 49.817 1.9669999999999999 180.0 19401101 19420630 070590 99999 MEAULTE FR 49.967 2.7039999999999997 111.0 19400617 20200624 070600 99999 MONTDIDIER FR 49.667 2.583 114.0 19400701 19420730 070610 99999 ST. QUENTIN/ROUPY FR LFOW 49.817 3.2 101.0 19360103 20200624 070640 99999 BERRY-AU-BAC FR 0.0 0.0 -999.0 19401009 20180807 070700 99999 CHAMPAGNE FR LFSR 49.31 4.05 95.1 19310105 20120523 070720 99999 REIMS-PRUNAY FR LFQA 49.217 4.15 96.0 19361010 20200624 070740 34072 SUIPPES GUN RANGE FR 49.15 4.633 192.9 19730102 19871229 070740 99999 SUIPPES RANGE (MET) FR 49.15 4.633 199.0 19880104 19880105 070743 34072 SUIPPES RANGE (MET) FR LFFS 49.15 4.533 199.0 19880105 19980123 070750 99999 CHARLEVILLE MEZIERES FR LFQV 49.784 4.647 149.0 19400703 20200624 070850 99999 BOGUS FRENCH FR 0.0 0.0 -999.0 19550702 20031227 070881 34064 ETAIN FR 49.233000000000004 5.683 237.1 19541213 19661031 070891 99999 CHAMBLEY AB FR LCHM 49.033 5.867000000000001 266.0 19541108 19661202 070900 99999 FRESCATY FR LFSF 49.071999999999996 6.132000000000001 191.7 19360102 20130429 070910 99999 GROSTENQUIN AB FR 49.016999999999996 6.7 252.0 19560101 19630731 070930 99999 METZ NANCY LORRAINE FR LFJL 48.982 6.251 265.2 19920408 20200624 071000 99999 OUESSANT FR 48.483000000000004 -5.05 68.0 19360102 20200624 071020 99999 POINTE ST MATHIEU FR 48.333 -4.7669999999999995 17.0 19831208 20200624 071030 99999 POINTE DU RAZ FR 48.033 -4.7330000000000005 89.0 19730101 20200624 071040 99999 POINTE DE TOULINGUET FR 48.283 -4.633 36.0 19831208 20190829 071060 99999 LANDIVISIAU FR LFRJ 48.53 -4.152 106.1 19730102 20200624 071070 99999 BRIGNOGAN FR 48.683 -4.333 18.0 19831207 20200624 071080 99999 PLABENNEC RADAR FR 48.47 -4.43 112.0 19831208 20060214 071090 99999 POULMIC FR LFRL 48.282 -4.445 87.5 19810202 20200624 071100 99999 GUIPAVAS FR LFRB 48.448 -4.419 99.1 19290801 20200624 071160 99999 BATZ ISLAND FR 48.75 -4.0169999999999995 37.0 19760708 20200624 071165 99999 LANNION FR 48.75 -3.467 91.0 19971101 20050612 071170 99999 PLOUMANAC'H PERROS GUIREC FR 48.833 -3.467 58.0 19831208 20200624 071180 99999 LANNION FR LFRO 48.754 -3.472 88.4 20010919 20200624 071190 99999 ROSTRENEN FR 48.233000000000004 -3.3 262.0 19730101 20070227 071200 99999 ARMOR FR LFRT 48.538000000000004 -2.8539999999999996 138.1 19860101 20200624 071210 99999 BREHAT ISLAND FR 48.85 -3.0 36.0 19360105 20200624 071230 99999 SAINT BRIEUC FR 48.516999999999996 -2.8 128.0 19851202 19880105 071233 99999 ST. BRIEUC ARMOR & FR LFRT 48.516999999999996 -2.8 128.0 19880105 19901016 071250 99999 PLEURTUIT FR LFRD 48.588 -2.08 66.8 19730101 20200624 071270 99999 GROUIN DE CANCALE FR 48.717 -1.85 41.0 19730101 20060122 071300 99999 ST JACQUES FR LFRN 48.07 -1.735 37.8 19310105 20200624 071330 99999 POINTE DU ROC FR 48.833 -1.617 42.0 19730101 20200624 071340 99999 LAVAL-ETRONNIER FR LFOV 48.033 -0.733 97.0 19880621 20200624 071390 99999 ALENCON/VALFRAMBERT FR LFOF 48.45 0.11699999999999999 141.0 19730101 20200624 071400 99999 CHATEAUDUN FR LFOC 48.058 1.3769999999999998 132.0 19730101 20200624 071411 99999 DREUX FR 48.733000000000004 1.367 186.0 20070307 20070307 071430 99999 CHARTRES/CHAMPOL FR LFOR 48.467 1.517 156.0 19360617 20200624 071440 99999 BOGUS FRENCH FR 19840507 19900925 071450 99999 TRAPPES FR 48.766999999999996 2.0 168.0 19870518 20200624 071460 99999 TOUSSUS LE NOBLE FR LFPN 48.751999999999995 2.106 164.0 19730101 20200624 071465 99999 LA CROIX DU BOIS FR 48.75 2.0669999999999997 131.0 19740315 19740516 071470 99999 VELIZY FR LFPV 48.773999999999994 2.202 178.0 19420101 20200624 071480 99999 BRETIGNY FR 48.6 2.333 80.0 19740102 20051130 071490 99999 ORLY FR LFPO 48.725 2.359 88.7 19370601 20200624 071500 99999 LE BOURGET FR LFPB 48.968999999999994 2.441 66.4 19280104 20200624 071515 99999 MAZAMET FR LFCK 43.556000000000004 2.289 240.2 20061025 20200624 071530 99999 VILLAROCHE FR LFPM 48.605 2.6710000000000003 92.0 19730328 20200624 071540 99999 PARIS ST-MAUR FR 48.8 2.5 50.0 19840504 20021107 071550 99999 COULOMMIERS FR 48.817 3.083 143.0 19421201 19440731 071560 99999 PARIS-MONTSOURIS FR 48.817 2.333 77.0 19831201 20200624 071570 99999 CHARLES DE GAULLE FR LFPG 49.013000000000005 2.55 119.5 19740419 20200624 071581 99999 DAMMARTIN EN GOELE FR 49.067 2.6830000000000003 172.0 20070227 20070227 071600 99999 19360108 19750505 071604 99999 PLOUJEAN FR LFRU 48.603 -3.8160000000000003 82.9 20141229 20200624 071650 99999 VATRY FR LFOK 48.776 4.184 178.9 19751203 20200624 071653 99999 CHALONS/VATRY FAFB& FR LFOK 48.783 4.183 179.0 19580901 19900517 071660 99999 VATRY AERO FR 48.766999999999996 4.15 179.0 20111129 20200624 071670 99999 ARCIS SUR AUBE FR 48.467 4.317 166.0 20050609 20070227 071680 99999 BARBEREY FR LFQB 48.321999999999996 4.0169999999999995 118.3 19750618 20200624 071690 99999 ROBINSON FR LFSI 48.636 4.899 139.6 19420101 20200624 071700 99999 DAMBLAIN(FAFB) FR 48.083 5.667000000000001 390.0 20031111 20061023 071704 99999 DAMBLAIN (FAFB) FR LFYD 48.1 5.65 390.0 19800807 19840329 071710 99999 BAR LE DUC FR 48.766999999999996 5.15 279.0 20070227 20070227 071720 99999 LOXEVILLE FR 48.75 5.4 313.0 19730102 19870830 071730 99999 EPINAL-DOGNEVILLE FR 48.2 6.433 320.0 19860604 20091125 071790 34051 TOUL / ROSIERES FR LFSL 48.783 5.983 286.0 19730101 20200624 071790 99999 TOUL/ROSIERES FR LFSL 48.783 5.983 286.0 20000214 20000214 071800 99999 ESSEY FR LFSN 48.692 6.23 228.9 19260404 20200624 071810 99999 OCHEY FR LFSO 48.583 5.955 337.1 19730101 20200624 071813 99999 BRETIGNY SUR ORGE FR LFPY 48.597 2.331 84.0 19980202 20070307 071820 99999 RECHICOURT-RADRA FR 48.717 6.582999999999999 286.0 19360102 20070227 071825 99999 MIRECOURT FR LFSG 48.325 6.07 330.4 20070227 20200624 071840 99999 SAVERNE FR 48.733000000000004 7.35 205.0 19360102 19381231 071860 34062 PHALSBOURG FR 48.817 7.2 313.0 19730101 19880929 071860 99999 PHALSBOURG FR 48.766999999999996 7.3 377.0 20020701 20070227 071900 99999 ENTZHEIM FR LFST 48.538000000000004 7.627999999999999 153.9 19310101 20200624 071910 99999 BOGUS FRENCH FR 19860801 20041015 071950 99999 STRASBOURG-NEUHOF FR 48.55 7.7829999999999995 42.0 19420102 19431231 071970 99999 MEYENHEIM FR LFSC 47.917 7.4 211.2 19730101 20200624 072000 99999 PENMARCH FR 47.8 -4.367 19.0 19360102 20200624 072010 99999 PLUGUFFAN FR LFRQ 47.975 -4.168 90.5 19730102 20200624 072030 99999 BEG MELEN FR 47.65 -3.5 54.0 19811104 20200624 072050 99999 LANN BIHOUE FR LFRH 47.761 -3.44 48.8 19730101 20200624 072070 99999 BELLE ILE-LE TALUT FR 47.3 -3.218 43.0 19310102 20200624 072080 99999 QUIBEKON / ST JULIEN FR 47.5 -3.117 30.0 19830701 20190330 072100 99999 VANNES/SENE FR LFRV 47.6 -2.717 3.0 19870601 20200624 072160 99999 CHEMOULIN FR 47.233000000000004 -2.3 20.0 20010919 20200624 072170 99999 MONTOIR FR LFRZ 47.312 -2.149 4.0 19730101 20200624 072220 99999 NANTES ATLANTIQUE FR LFRS 47.153 -1.611 27.4 19370601 20200624 072230 99999 TREILLIERES-RADAR FR 47.333 -1.65 69.0 20031223 20080927 072300 99999 BEAUCOUZE FR LFRA 47.483000000000004 -0.6 50.0 19360616 20200624 072350 99999 ARNAGE FR LFRM 47.949 0.20199999999999999 59.1 19730103 20200624 072400 99999 VAL DE LOIRE FR LFOT 47.431999999999995 0.728 108.8 19310101 20200624 072450 99999 LE BREUIL FR LFOQ 47.678000000000004 1.209 121.3 20010919 20200624 072470 99999 ROMORANTIN/PRUNIERS FR LFYR 47.317 1.683 86.0 19360701 20200624 072490 99999 BRICY FR LFOJ 47.988 1.761 125.6 19360102 20200624 072550 99999 BOURGES FR LFLD 47.058 2.37 161.2 19730101 20200624 072553 99999 TAVAUX FR LFGJ 47.038999999999994 5.4270000000000005 196.6 19980201 20200624 072554 99999 AVORD FR LFOA 47.053000000000004 2.633 176.8 19980201 20200624 072570 99999 AVORD FR 47.05 2.65 177.0 19310401 20200624 072600 99999 FOURCHAMBAULT FR LFQG 47.003 3.113 183.5 19730102 20200624 072650 99999 AUXERRE FR 47.8 3.55 212.0 19360615 20081231 072660 99999 BRANCHES FR LFLA 47.85 3.497 159.4 20050101 20200624 072700 99999 CHATEAU-CHINON FR 47.067 3.9330000000000003 598.0 19730101 20041116 072760 99999 CHATILLON-SUR-SEINE FR LFQH 47.85 4.55 264.0 19730101 20030324 072795 99999 DIJON/VAL SUZON FR LFGI 0.0 0.0 -999.0 19840909 19860707 072800 99999 LONGVIC FR LFSD 47.269 5.09 221.3 19310101 20200624 072830 99999 LANGRES FR 47.85 5.332999999999999 467.0 19730101 20200624 072835 99999 DOLE/TAVAUX FR 47.05 5.433 196.0 19440919 19750818 072880 99999 BESANCON/THISE(AUT) FR LFSA 47.25 5.983 309.0 19730101 20200624 072920 99999 SAINT SAUVEUR FR LFSX 47.783 6.364 278.3 19410301 20200624 072950 99999 BELFORT/FONTAINE FR LFSQ 47.633 6.867000000000001 423.0 19730103 20090915 072955 99999 LURE/MALBOUHANS AFB FR LFYL 47.7 6.55 317.0 19810309 19840328 072960 99999 DORANS FR 47.592 6.832999999999999 401.0 20100611 20200624 072990 99999 BALE MULHOUSE FR LFSB 47.59 7.53 269.7 19730101 20200624 073000 99999 SAINT-SAUVEUR FR 46.7 -2.333 32.0 19730101 20200624 073013 99999 NIORT/SOUCHE FR 46.317 -0.4 61.0 19860605 19901016 073060 99999 LES AJONCS FR LFRI 46.702 -1.379 91.1 19830405 20200624 073110 99999 POINTE DES BALEINES FR 46.25 -1.567 10.0 19880111 20200624 073140 99999 CHASSIRON FR 46.05 -1.4169999999999998 22.0 19730101 20200624 073150 99999 LA ROCHELLE FR 46.15 -1.15 10.0 19290801 20171018 073151 99999 LA ROCHELLE/LALEU FR LFBH 46.183 -1.183 22.0 19761201 19790310 073160 99999 ILE DE RE FR LFBH 46.178999999999995 -1.195 22.6 20040803 20200624 073170 99999 BISCAROSSE / PARENTIS FR LFWC 44.433 -1.25 39.0 20040803 20200624 073175 99999 BRAY FR LFAQ 49.972 2.698 110.9 20070822 20200624 073300 99999 SOUCHE FR LFBN 46.31100000000001 -0.402 61.9 19860101 20200624 073350 99999 BIARD FR LFBI 46.588 0.307 128.9 19360615 20200624 073540 34048 CHATEAURROUX DEOLS FR LFLX 46.867 1.7169999999999999 157.0 19360102 20200624 073540 99999 DEOLS FR LFLX 46.861999999999995 1.7309999999999999 161.2 20000101 20041231 073600 99999 GUERET FR 46.167 1.867 551.0 19871001 20120403 073610 99999 GUERET ST LAURENT FR 46.183 1.95 366.0 20120103 20200624 073625 99999 MONTLUCON GUERET FR LFBK 46.225 2.363 416.7 19840910 20080407 073740 99999 CHARMEIL FR LFLV 46.17 3.404 249.0 19730101 20200624 073790 99999 SAINT YAN FR LFLN 46.413000000000004 4.013 242.6 19730103 20200624 073820 99999 MONT SAINT VINCENT FR 46.65 4.433 603.0 19730101 20020311 073850 99999 CHARNAY FR LFLM 46.295 4.796 221.9 19730101 20200624 073860 99999 DOLE-TAVAUX FR 47.033 5.417000000000001 195.0 20010919 20200624 073865 99999 CHAMPFORGEUIL FR LFLH 46.826 4.8180000000000005 189.9 19840911 19850810 073900 99999 LONS-LE-SAUNIER FR 46.683 5.517 279.0 19870622 20090623 073901 99999 MARCE FR LFJR 47.56 -0.312 59.1 20040510 20200624 073930 99999 DOUBS FR 5.083 6.35 806.0 19801001 19810601 073940 99999 MORBIER FR 46.567 6.0329999999999995 928.0 19740111 19910521 073960 99999 PONTARLIER FR 46.9 6.332999999999999 817.0 19740111 19850610 074000 99999 LA COUBRE FR 45.7 -1.2329999999999999 6.0 19360616 20051012 074120 99999 CHATEAUBERNARD FR LFBG 45.658 -0.318 31.1 19730101 20200624 074200 99999 CHAMPNIERS FR LFBU 45.717 0.217 133.0 19310402 20200624 074280 99999 BASSILLAC FR LFBX 45.198 0.816 100.0 19730101 20200624 074300 99999 LA COURTINE FR 45.7 2.25 765.0 19311105 19371130 074340 99999 BELLEGARDE FR LFBL 45.863 1.179 396.2 19730101 20200624 074350 99999 19730101 19730619 074380 99999 LA ROCHE FR LFBV 45.151 1.469 115.5 19871001 20200624 074385 99999 BRIVE/LA ROCHE FR 45.15 1.4669999999999999 114.0 19840910 19901016 074420 99999 PUY DE DOME FR 45.766999999999996 2.967 1461.0 19360101 19820601 074600 99999 AUVERGNE FR LFLC 45.787 3.1689999999999996 332.2 19310102 20200624 074690 99999 CHAMONIX FR 45.93 6.88 1042.0 20050201 20090520 074700 99999 LE PUY CITY FR 45.05 3.9 714.0 19310101 19840807 074701 99999 LE PUY FR 45.05 3.9 714.0 20171209 20200313 074710 99999 LOUDES FR LFHP 45.081 3.763 832.4 19831201 20200624 074750 99999 BOUTHEON FR LFMH 45.541000000000004 4.296 403.9 19730101 20200624 074760 99999 CAUMONT FR LFMV 43.907 4.902 37.8 20040831 20200624 074765 99999 CORMEILLES EN VEXIN FR LFPT 49.097 2.041 99.1 20081022 20200624 074770 99999 LES SAUVAGES FR 45.933 4.383 720.0 19730101 20200624 074800 99999 BRON FR LFLY 45.727 4.944 200.9 19730101 20200624 074810 99999 SAINT EXUPERY FR LFLL 45.726000000000006 5.091 250.2 19310103 20200624 074820 99999 AMBERIEU FR LFXA 45.986999999999995 5.327999999999999 250.9 19801029 20200624 074840 99999 VILLARS DE LANS FR 45.067 5.517 1012.0 20070823 20170318 074850 99999 GRENOBLE FR 45.167 5.767 212.0 19830701 20131007 074860 99999 SAINT GEOIRS FR LFLS 45.363 5.329 396.8 19730101 20200624 074864 99999 CHALON/CHAMPFORGEUI FR 45.45 4.933 189.0 19801201 19840802 074870 99999 GRENONBLE LVD FR 45.22 5.85 220.0 20050201 20200624 074880 99999 19310104 19390831 074890 99999 SAINT-PANCRASSE FR 45.3 5.867000000000001 1154.0 19310104 20180606 074900 99999 MEYTHET FR LFLP 45.928999999999995 6.099 463.6 20070226 20200624 074910 99999 AIX LES BAINS FR LFLB 45.638000000000005 5.88 237.4 19730101 20200624 074920 99999 CHALLES-LES-EAUX FR 45.567 5.983 295.0 19730101 19730628 074940 99999 ANNECY / MEYTHET FR 45.933 6.1 463.0 19831201 20130430 074950 99999 MEGEVE FR 45.867 6.617000000000001 950.0 20050824 20170324 074960 99999 MODANE AVRIEUX FR 45.217 6.7170000000000005 1104.0 19360106 20120502 074965 99999 DIJON/VAL SUZON FR 47.383 4.933 -999.0 19810625 19840805 074970 99999 BOURG ST-MAURICE FR 45.617 6.767 868.0 19730101 20200624 074985 99999 BRIVE/LA ROCHE FR 45.15 1.4669999999999999 113.0 19770201 19840727 074990 99999 CHAMONIX FR 45.917 6.867000000000001 1050.0 20100612 20200603 075000 99999 CAP FERRET FR 44.633 -1.25 10.0 19730101 20200624 075020 99999 CAZAUX FR LFBC 44.533 -1.125 25.6 19360706 20200624 075030 99999 BISCAROSSE/PARENTIS FR LFBS 44.433 -1.25 39.0 19740301 20200624 075100 99999 MERIGNAC FR LFBD 44.828 -0.716 49.4 19310101 20200624 075170 99999 CAPTIEUX WEATHER FR 44.183 -0.28300000000000003 133.0 19740102 20030130 075173 99999 CAPTIEUX MET FR 44.183 -0.28300000000000003 133.0 19880421 19880502 075240 99999 LA GARENNE FR LFBA 44.175 0.591 62.2 19730101 20200624 075280 99999 BERGERAC FR 44.85 0.483 33.0 19811001 20060314 075290 99999 BERGERAC/ROUMANIERE FR 44.817 0.517 51.0 19730101 19880105 075293 99999 BERGERAC/ROUMANIERE FR 44.817 0.517 51.0 19880105 19880614 075300 99999 ROUMANIERE FR LFBE 44.825 0.519 52.1 19880502 20200624 075350 99999 GOURDON FR 44.75 1.4 261.0 19730101 20200624 075400 99999 MONTAUBAN FR LFDB 44.026 1.3780000000000001 107.0 20010919 20200624 075490 99999 AURILLAC FR LFLW 44.891000000000005 2.4219999999999997 638.9 19790215 20200624 075500 99999 AURILLAC CITY FR 44.9 2.417 644.0 19730101 19840818 075520 99999 MARCILLAC FR LFCR 44.408 2.483 582.2 19740318 20200624 075540 99999 MENDE FR 44.533 3.45 716.0 19850301 20200624 075550 99999 CASSAGNES BEGONHES FR LFIG 44.178000000000004 2.515 616.9 19830601 20081230 075580 99999 MILLAU FR 44.117 3.017 720.0 19360618 20200624 075600 99999 MONT AIGOUAL FR 44.117 3.583 1565.0 19360107 20200624 075615 99999 BRENOUX FR LFNB 44.501999999999995 3.533 1024.7 19770501 20090205 075630 99999 AVIGNON FR 43.9 4.9 48.0 20050201 20200624 075700 99999 LANAS SYN FR 44.533 4.367 280.0 19880301 20200624 075770 99999 MONTELIMAR/ANCONE FR LFLQ 44.583 4.7330000000000005 74.0 19310401 20200624 075790 99999 CARITAT FR LFMO 44.14 4.867 60.0 19730101 20200624 075795 99999 CHABEUIL FR LFLU 44.922 4.97 160.0 20140901 20200624 075850 99999 19360101 19381231 075860 99999 CARPENTRAS FR 44.083 5.05 105.0 19760309 20200306 075864 99999 CHATEAU-ARNOUX FR 44.1 6.0 -999.0 19810310 19901029 075870 99999 LUS-LA-CROIX-HAUTE FR 44.683 5.7170000000000005 1069.0 19730101 20030104 075880 99999 ST-AUBAN-SUR-DURANC FR LFMX 44.067 6.0 461.0 19730101 20200624 075890 99999 SAINT CHRISTOPHE / OISANS FR 44.933 6.25 1570.0 19360702 20200624 075900 99999 GAP / TALLARD FR 44.567 6.082999999999999 733.0 20060109 20200623 075910 99999 EMBRUN FR 44.567 6.5 876.0 19730101 20200624 075920 99999 GUILLESTRE FR 44.667 6.65 995.0 19400701 20121227 075930 99999 BRIANCON FR 44.917 6.65 1336.0 19340801 20200519 076000 99999 SOCOA FR 43.4 -1.683 25.0 19840616 20200624 076020 99999 ANGLET FR LFBZ 43.468 -1.5230000000000001 74.7 19290801 20200624 076030 99999 DAX SEYRESSE FR LFBY 43.683 -1.067 33.0 19730101 20200624 076070 99999 MONT DE MARSAN FR LFBM 43.912 -0.508 61.9 19310401 20200624 076100 99999 PAU PYRENEES FR LFBP 43.38 -0.419 187.8 19360615 20200624 076103 99999 PAU/IDRON FR 43.283 -0.317 -999.0 19820927 19840808 076210 99999 LOURDES FR LFBT 43.178999999999995 -0.006 384.0 19730101 20200624 076220 99999 LAMOTHE FR LFDH 43.688 0.602 125.3 19841201 20200624 076230 99999 AUCH-IN-ARMAGNAC FR 43.633 0.6 133.0 19820401 19880105 076231 99999 AUCH-IN-ARMAGNAC FR 43.633 0.6 133.0 19850522 19850626 076233 99999 LAMOTHE/AUCH FR 43.683 0.6 125.0 19880105 19900612 076270 99999 ANTICHAN FR LFCG 43.008 1.103 417.0 19730101 20200624 076280 99999 MURET-LHERM FR 43.45 1.25 189.0 20100611 20200624 076293 99999 LHERM FR LFBR 43.449 1.263 189.6 20100611 20200624 076300 99999 BLAGNAC FR LFBO 43.629 1.364 152.1 19730101 20200624 076303 99999 MONTAUBAN FR 44.016999999999996 1.383 110.0 19980202 20040908 076304 99999 SAINT CHRISTOL FR LFXI 44.05 5.5 834.0 19980202 19990528 076310 99999 FRANCAZAL FR LFBF 43.54600000000001 1.368 163.1 19310101 20200624 076320 99999 LE SEQUESTRE FR LFCI 43.913999999999994 2.113 171.9 19890101 20200624 076323 99999 ALBI/LE SEQUESTRE & FR 43.917 2.1 167.0 19900517 19900612 076350 99999 SALVAZA FR LFMK 43.216 2.306 132.0 19730101 20200624 076360 99999 BOGUS FRENCH FR 19841123 20020109 076380 99999 BEZIERS VIAS FR 43.317 3.35 16.0 20050201 20200624 076400 99999 ALBI/LE SEQUESTRE & FR 43.917 2.1 167.0 19730101 19900513 076410 99999 SETE FR 43.4 3.7 81.0 19360615 20200624 076415 99999 VIAS FR LFMU 43.324 3.3539999999999996 17.1 19750717 20200624 076430 99999 MEDITERRANEE FR LFMT 43.576 3.963 5.2 19730101 20200624 076450 99999 NIMES/COURBESSAC FR LFME 43.867 4.4 62.0 19360615 20200624 076460 99999 GARONS FR LFTW 43.757 4.416 94.2 19730101 20200624 076470 99999 LE TUBE FR LFMI 43.523 4.9239999999999995 25.0 19360702 20200624 076480 99999 SALON FR LFMY 43.606 5.109 59.4 19730202 20200624 076490 99999 AIX LES MILLES FR LFMA 43.506 5.367999999999999 111.9 19760401 20050605 076500 99999 PROVENCE FR LFML 43.43600000000001 5.2139999999999995 22.6 19310101 20200624 076505 99999 19750701 19751231 076510 99999 L'ESPIGUETTE FR 44.222 4.345 318.0 19841201 20200624 076520 99999 CAP POMEGUES FR 43.266999999999996 5.3 70.0 19730101 20011210 076530 99999 CAP COURONNE FR 43.333 5.05 27.0 19750715 20200624 076560 99999 BEC DE LAIGLE FR 43.183 5.582999999999999 315.0 19760309 20200624 076570 99999 APT/ST. CHRISTOL AB FR 44.05 5.483 837.0 19750122 20021201 076580 99999 NIMES MANDUEL FR 43.8 4.5 77.0 20031213 20040529 076600 99999 TOULON FR 43.1 5.933 25.0 19360403 20170321 076610 99999 CAP CEPET FR 43.083 5.933 134.0 19760302 20200624 076630 99999 PIERREFEN/NAVY FR 43.25 6.132999999999999 81.0 19840102 20040326 076660 99999 LEUCATE FR 42.917 3.0669999999999997 50.0 20010919 20200624 076670 99999 LE PALYVESTRE FR LFTH 43.097 6.146 2.1 19730101 20200624 076700 99999 PORQUEROLLES FR 43.0 6.233 147.0 19730101 20150512 076720 99999 LA MOLE FR 43.2 6.483 18.0 19830605 19880806 076750 99999 LE CANNET FR LFMC 43.385 6.3870000000000005 80.8 19760309 20200624 076770 99999 CAPE CAMARAT FR 43.2 6.683 112.0 19750715 20200624 076780 99999 TOULON/ILE DU LEVAN FR 43.033 6.4670000000000005 131.0 19760309 20200624 076800 99999 SAINT-RAPHAEL FR 43.417 6.75 6.0 19440804 20130101 076810 99999 LE DRAMONT FR 43.417 6.85 126.0 20090801 20200624 076820 99999 GRASSE-IN-PROVENCE FR 43.75 6.917000000000001 1269.0 19810301 19860217 076840 99999 MANDELIEU FR LFMD 43.542 6.952999999999999 4.0 19810203 20200624 076870 99999 SAINT-ANTOINE GINE FR 43.717 7.2170000000000005 3.0 19310106 19381231 076880 99999 LA GAROUPE FR 43.567 7.132999999999999 82.0 19750916 20200624 076900 99999 COTE D AZUR FR LFMN 43.658 7.216 3.7 19451001 20200624 076950 99999 CAP FERRAT FR 43.683 7.332999999999999 144.0 19730101 20100412 077200 99999 PIC DU MIDI FR 42.933 0.15 2883.0 19730101 19850919 077370 99999 FORMIGUERES FR 42.61 2.1 1530.0 19860801 20141213 077380 99999 LES ESCALDES FR 42.483000000000004 1.983 1432.0 19820401 20131122 077385 99999 LA MONTAGNE-NOIRE FR LFMG 43.383 1.983 450.0 19730201 19820416 077400 99999 SAINT LEOCADIE FR 42.45 2.0 1328.0 19820401 20141214 077420 99999 ST MICHEL DE CUXA FR 43.433 2.417 450.0 19830605 20141027 077430 99999 BOGUS FRENCH FR 19831201 20040111 077440 99999 BOGUS FRENCH FR 19840401 19911231 077470 99999 RIVESALTES FR LFMP 42.74 2.8710000000000004 43.9 19290801 20200624 077490 99999 CAP BEAR FR 42.516999999999996 3.133 86.0 19730102 20200624 077520 99999 LA PARATA FR 41.917 8.617 40.0 19360617 20200624 077530 99999 ILE ROUSSE FR 42.633 8.917 153.0 19881001 20200624 077540 99999 SAINT CATHERINE FR LFKC 42.531000000000006 8.793 63.7 19730101 20200624 077560 99999 CAPE CAVALLO FR 42.516999999999996 8.683 302.0 19730101 19880802 077610 99999 CAMPO DELL ORO FR LFKJ 41.924 8.802999999999999 5.5 19360616 20200624 077650 99999 SOLENZARA FR LFKS 41.924 9.406 8.5 19730101 20200624 077680 99999 LA CHIAPPA FR 41.6 9.367 68.0 19360615 20200624 077700 99999 CAP PERTUSATO FR 41.367 9.167 116.0 19360703 20200624 077750 99999 ALISTRO FR 42.266999999999996 9.533 74.0 20010919 20200624 077800 99999 SUD CORSE FR LFKF 41.501000000000005 9.097999999999999 26.5 19800401 20200624 077850 99999 CAP CORSE FR 43.0 9.367 113.0 19360615 20200624 077880 99999 CARDO FR 42.683 9.417 289.0 19360615 19381031 077900 99999 PORETTA FR LFKB 42.553000000000004 9.484 7.9 19450518 20200624 077910 99999 CAPE SAGRO FR 42.8 9.482999999999999 120.0 19431204 20200624 077950 99999 BOGUS FRENCH FR 19840809 19890517 078230 99999 BOGUS FRENCH FR 19880530 20030827 078260 99999 BOGUS FRENCH FR 19870704 19890330 078270 99999 BOGUS FRENCH FR 19860801 20041111 078450 99999 BOGUS FRENCH FR 19860801 20010926 078760 99999 GRAND BORNAND FR 45.967 6.4670000000000005 1270.0 20090901 20200314 079030 99999 METZ-NANCY-LORRAINE FR 48.983000000000004 6.25 264.0 19911211 19920325 080001 99999 MADEIRA PO LPMA 32.698 -16.774 58.5 20040510 20200624 080010 99999 LA CORUNA SP 43.367 -8.417 67.0 19310101 20200624 080020 99999 A CORUNA SP LECO 43.302 -8.377 98.5 19741001 20200624 080030 99999 MONTEVENTOSO SP 43.483000000000004 -8.317 240.0 19730101 20050211 080050 99999 EL FERROL SP 43.483000000000004 -8.232999999999999 9.0 19730101 20051112 080070 99999 CERCEDA SP 43.167 -8.533 595.0 20040517 20060207 080080 99999 LUGO/ROZAS SP 43.117 -7.45 446.0 19730101 20200624 080110 99999 ASTURIAS SP LEAS 43.56399999999999 -6.035 126.8 19730101 20200624 080140 99999 GIJON-MUSEL SP 43.567 -5.7 6.0 19730101 20200624 080141 99999 CIUDAD REAL SP LEAO 38.983000000000004 -3.917 629.0 20040510 20200624 080142 99999 BARDENAS REALES SP LEBR 42.2 -1.45 295.0 20040510 20200624 080143 99999 VALENCIA SP LEBT 39.583 -0.45 50.0 20040510 20200624 080144 99999 ARMILLA SP LEGA 37.133 -3.636 700.1 20040525 20200624 080150 99999 OVIEDO SP 43.35 -5.867000000000001 339.0 19730313 20200624 080190 99999 AGUION SP 43.467 -6.3 927.0 20041129 20060312 080210 99999 SANTANDER SP LEXJ 43.427 -3.82 4.9 19730101 20200624 080230 99999 SANTANDER SP 43.483000000000004 -3.8 59.0 19730101 20200624 080250 99999 BILBAO SP LEBB 43.301 -2.911 42.1 19730101 20200624 080270 99999 SAN SEBASTIAN/IGUELDO SP 43.3 -2.033 259.0 19730101 20200624 080290 99999 SAN SEBASTIAN SP LESO 43.357 -1.791 4.6 19730101 20200624 080420 99999 SANTIAGO SP LEST 42.896 -8.415 369.7 19730101 20200624 080430 99999 MARIN SP 42.4 -8.7 10.0 19740104 20180530 080440 99999 PONTEVEDRA SP 42.433 -8.617 108.0 19730101 20200624 080450 99999 VIGO SP LEVX 42.232 -8.627 260.6 19730101 20200624 080460 99999 VIGO SP 42.233000000000004 -8.75 85.0 19730101 20070626 080480 99999 ORENSE SP 42.333 -7.867000000000001 147.0 19730101 20200624 080530 99999 PONFERRADA SP 42.567 -6.6 550.0 19730102 20200624 080550 99999 LEON SP LELN 42.589 -5.656000000000001 916.2 19730101 20200624 080710 99999 PALENCIA SP 42.016999999999996 -4.533 750.0 19730101 20040219 080720 99999 PALENCIA-AUTILLA PINO SP 42.0 -4.6 860.0 20170712 20200624 080750 99999 BURGOS SP LEBG 42.358000000000004 -3.6210000000000004 897.6 19730101 20200624 080760 99999 BURGOS SP 42.333 -3.7 860.0 19730101 19840102 080800 99999 VITORIA SP LEVT 42.883 -2.7239999999999998 512.7 19730101 20200624 080810 99999 BAKIO SP 43.4 -2.85 576.0 20040812 20051129 080830 99999 LOGRONO SP 42.467 -2.383 369.0 19730101 20070528 080840 99999 LOGRONO/AGONCILLO SP LELO 42.45 -2.333 363.0 19730101 20200624 080850 99999 PAMPLONA SP LEPP 42.77 -1.646 458.4 19730313 20200624 080860 99999 PAMPLONA SP 42.817 -1.6669999999999998 461.0 19730101 20010705 080870 99999 BARDENAS REALES SP 42.2 -1.45 295.0 19700119 20200624 080910 99999 JACA SP 42.567 -3.133 828.0 19830613 20200624 080940 99999 HUESCA-PIRINEOS SP LEHC 42.083 -0.33299999999999996 554.0 19730102 20200624 080960 99999 CANDANCHU SP 42.783 -0.5329999999999999 1608.0 19730105 20040110 081120 99999 TALAR SP 42.2 0.867 800.0 19840503 20200624 081170 99999 LA MOLINA SP 42.333 1.933 1702.0 19730103 20200624 081300 99999 ZAMORA SP 41.516999999999996 -5.733 667.0 19730101 20200623 081400 99999 VALLADOLID SP LEVD 41.706 -4.852 845.8 19730101 20200624 081410 99999 VALLADOLID SP 41.633 -4.75 735.0 19730101 20200624 081480 99999 SORIA SP 41.783 -2.483 1082.0 19730101 20200624 081570 99999 DAROCA I SP 41.117 -1.4169999999999998 779.0 19730101 20200624 081600 99999 ZARAGOZA AB SP LEZG 41.666000000000004 -1.042 263.0 19730101 20200624 081605 99999 ZARAGOZA (USAFB) SP LEZA 41.667 -1.05 263.0 19570701 20010108 081606 99999 ZARAGOZA (MIL/CIV)& SP 41.667 -1.033 263.0 19770427 19830209 081610 99999 ZARAGOZA SP 41.633 -0.9 222.0 19730101 20050614 081620 99999 PERDIGUERA SP 41.733000000000004 -0.55 820.0 20041201 20050404 081710 99999 LERIDA SP 41.633 0.6 199.0 19730101 20200624 081750 99999 REUS SP LERS 41.147 1.167 71.3 19730101 20200624 081760 99999 TARRAGONA SP 41.117 1.25 64.0 19730101 20040105 081763 99999 SABADELL SP LELL 41.516999999999996 2.1 250.0 20000830 20200624 081800 99999 BARCELONA CITY SP 41.417 2.133 176.0 19730101 20200624 081810 99999 BARCELONA SP LEBL 41.297 2.0780000000000003 3.7 19730101 20200624 081820 99999 MONTSENY MTN RANGE SP 41.783 2.4330000000000003 1708.0 19730502 20060111 081830 99999 GERONA-IN-CATALUNA SP 41.983000000000004 2.833 98.0 19730101 19780808 081840 99999 GIRONA SP LEGE 41.901 2.761 142.6 19731129 20200624 081860 99999 SAN LORENZO SP 41.633 2.017 1092.0 19731108 20200624 082010 99999 SALAMANCA SP 40.95 -5.65 787.0 19751105 20200624 082020 99999 SALAMANCA SP LESA 40.952 -5.502000000000001 791.0 19730101 20200624 082100 99999 AVILA SP 40.667 -4.683 1132.0 19730101 20200624 082130 99999 SEGOVIA SP 40.95 -4.133 1005.0 19730101 20200624 082150 99999 NAVACERRADA PUERTO SP 40.8 -4.0169999999999995 1888.0 19730101 20200624 082190 99999 MADRI-COLMENAR SP LECV 40.65 -3.733 -999.9 19970506 20200624 082200 99999 MADRID/C. UNIVERSITARIA SP 40.45 -3.717 669.0 19791201 20200624 082204 99999 MADRI-COLMENAR SP 40.65 -3.733 0.0 19920807 19930820 082210 99999 BARAJAS SP LEMD 40.494 -3.5669999999999997 609.6 19310102 20200624 082211 99999 MADRID WEATHER CENTER SP LEMM 40.483000000000004 -3.583 633.0 20041209 20140319 082220 99999 MADRID RETIRO SP 40.417 -3.6830000000000003 667.0 19990412 20200624 082230 99999 CUATRO VIENTOS SP LEVS 40.371 -3.785 691.0 19730719 20200624 082240 99999 GETAFE SP LEGT 40.294000000000004 -3.7239999999999998 618.4 19730101 20200624 082260 99999 GUADALAJARA SP 40.667 -3.167 640.0 19730101 20200624 082270 99999 TORREJON SP LETO 40.497 -3.446 617.5 19571001 20200624 082310 99999 CUENCA SP 40.067 -2.133 946.0 19730101 20200624 082320 99999 MOLINA DE ARAGON SP 40.85 -1.883 1063.0 19730102 20200624 082330 99999 CALAMOCHA SP LECH 40.933 -1.3 889.0 19730101 20200624 082350 99999 TERUEL SP 40.35 -1.117 902.0 19730101 20200624 082380 99999 TORTOSA SP 40.817 0.5 50.0 19730101 20200624 082610 99999 CACERES SP 39.467 -6.332999999999999 405.0 19730101 20200624 082620 99999 SIERRA DE FUENTES SP 39.433 -6.2829999999999995 667.0 20050106 20051224 082720 99999 TOLEDO SP 39.883 -4.05 516.0 19730101 20200624 082800 99999 ALBACETE SP LEAB 38.949 -1.864 701.6 19730101 20200624 082820 99999 INIESTA SP 39.433 -1.75 762.0 19751101 19781003 082840 99999 VALENCIA SP LEVC 39.489000000000004 -0.48200000000000004 68.6 19730101 20200624 082850 99999 VALENCIA VIVEROS SP 39.483000000000004 -0.38299999999999995 11.0 19730101 20200624 082860 99999 CASTELLON-ALMAZORA SP 39.95 -0.067 43.5 19730101 20200624 082900 99999 ALCIRA/ALZIRA SP 39.15 -0.433 20.0 19730102 20200624 083010 99999 PALMA DE MALLORCA CMT SP 39.55 2.633 6.0 19800418 20200624 083030 99999 ALFABIA MTN RANGE SP 39.733000000000004 2.717 1015.0 19730101 20200624 083060 99999 PALMA DE MALLORCA SP LEPA 39.55 2.733 8.0 19730101 20200624 083070 99999 POLLENSA SP 39.9 3.1 7.0 19730102 19780602 083140 99999 MENORCA SP LEMH 39.863 4.218999999999999 90.8 19310103 20200624 083300 99999 TALAVERA LA REAL SP LEBZ 38.891 -6.821000000000001 185.6 19730101 20200624 083350 99999 HINOJOSA DEL DUQUE SP LEHI 38.516999999999996 -5.117 540.0 19730101 20200624 083480 99999 CIUDAD REAL SP LERL 38.983000000000004 -3.917 629.0 19730101 20200624 083550 99999 BOGUS SPANISH SP 19830401 20011129 083590 99999 ALICANTE SP 38.367 -0.5 82.0 19730101 20200624 083600 99999 ALICANTE SP LEAL 38.282 -0.5579999999999999 43.3 19730101 20200624 083610 99999 AITANA (PEAK) SP 38.65 -0.267 1497.0 19730103 20051017 083620 99999 BENIDORM SP 38.533 -0.15 10.0 19760201 19840629 083650 99999 DENIA SP 38.833 0.11699999999999999 15.0 19730102 20200624 083730 99999 IBIZA SP LEIB 38.873000000000005 1.3730000000000002 6.1 19730101 20200624 083830 99999 HUELVA SP 37.283 -6.917000000000001 20.0 19730101 20200624 083840 99999 EL ARENOSILLO SP 37.1 -6.733 41.0 20020430 20070307 083900 99999 SEVILLA/TABLADA SP 37.367 -6.0 14.0 19730101 20051206 083905 99999 SEVILLA HELIPORT SP LEEC 37.317 -6.0 5.0 20070629 20200624 083910 99999 SEVILLA SP LEZL 37.418 -5.893 33.8 19730101 20200624 083970 99999 MORON AB SP LEMO 37.175 -5.6160000000000005 86.9 19580102 20200624 084100 99999 CORDOBA SP LEBA 37.842 -4.849 90.5 19730101 20200624 084170 99999 JAEN SP 37.783 -3.8169999999999997 580.0 19730201 20200624 084190 99999 GRANADA SP LEGR 37.189 -3.7769999999999997 566.9 19730101 20200624 084200 99999 GRANADA / ARMILLA SP 37.133 -3.617 717.0 19730101 20040108 084290 99999 ALCANTARILLA SP LERI 37.951 -1.23 76.2 19730101 20200624 084300 99999 MURCIA SP 38.0 -1.167 62.0 19730101 20200624 084310 99999 CASTILLO GALERAS SP 37.583 -1.0 217.0 19730101 20040805 084330 99999 MURCIA SAN JAVIER SP LELC 37.775 -0.812 3.4 19730101 20200624 084490 13025 ROTA NAVAL AIR STATION SP LERT 36.65 -6.35 25.6 19730101 20200624 084510 99999 JEREZ SP LEJR 36.745 -6.06 28.3 19730101 20200624 084515 99999 LLEIDA-ALGUAIRE AIRPORT SP LEDA 41.728 0.536 350.0 20100114 20200624 084520 99999 CADIZ OBS SP 36.5 -6.25 9.0 19730101 20200624 084530 99999 SAN FERNANDO SP 36.467 -6.2 30.0 19310103 20200624 084580 99999 TARIFA SP 36.0 -5.6 25.0 19730101 20200624 084750 99999 ALHAURIN EL GRANDE SP 36.617 -4.667 1147.0 20050604 20051221 084820 99999 MALAGA SP LEMG 36.675 -4.499 15.8 19730101 20200624 084840 99999 MALAGA SP 36.717 -4.417 54.0 19751215 19751215 084870 99999 ALMERIA SP LEAM 36.844 -2.37 21.3 19310102 20200624 084880 99999 ALMERIA SP 36.833 -2.467 7.0 20020109 20180530 084890 99999 NIJAR SP 36.833 -2.083 486.0 20040817 20050221 084900 99999 ALBORAN ISLAND SP 35.933 -3.033 19.0 19730101 20180530 084950 99999 GIBRALTAR GI LXGB 36.150999999999996 -5.35 4.6 19580101 20200624 085010 99999 FLORES PO LPFL 39.455 -31.131 34.1 19781201 20200624 085020 99999 CORVO ISLAND AZORES PO LPCR 39.67 -31.12 26.0 20031023 20200624 085030 99999 CORVO ISLAND AZ 39.667 -31.116999999999997 28.0 19480111 19840509 085050 99999 HORTA PO LPHR 38.52 -28.715999999999998 36.0 19760201 20200624 085060 99999 HORTA (ACORES) PO 38.516999999999996 -28.633000000000003 62.0 19310101 20200624 085070 99999 GRACIOSA AERODROME PO 39.1 -28.033 26.2 20180205 20200524 085080 99999 LAJES/SANTA RITA (ACORES) PO 38.766999999999996 -27.066999999999997 113.0 19990101 20050504 085090 99999 LAJES PO LPLA 38.762 -27.090999999999998 54.9 19470101 20200624 085095 99999 SAO JORGE PO LPSJ 38.666 -28.176 94.8 20061010 20200624 085110 99999 ANGRA DO HEROISMO (ACORES) PO 38.667 -27.217 76.0 19971201 20200624 085120 99999 PONTA DELGADA PO LPPD 37.741 -25.698 78.9 19310103 20200624 085125 99999 PICO PO LPPI 38.554 -28.441 33.2 20050628 20200624 085130 99999 PONTA DELGADA/OBS. (ACORES) PO 37.75 -25.666999999999998 36.0 20020416 20050702 085150 99999 SANTA MARIA PO LPAZ 36.971 -25.171 93.9 19440807 20200624 085155 99999 GRACIOSA PO LPGR 39.092 -28.03 26.2 20050719 20160304 085210 99999 FUNCHAL/S.CATARINA PO LPFU 32.683 -16.767 58.0 19480111 20200624 085220 99999 FUNCHAL PO 32.633 -16.9 56.0 19310101 20200624 085240 99999 PORTO SANTO PO LPPS 33.073 -16.35 103.9 19480113 20200624 085300 99999 CABO CARVOEIRO PO 39.35 -9.4 34.0 19480111 20111009 085305 99999 ALVERCA (POR-AFB) PO 38.883 -9.033 3.0 19730623 19730927 085310 99999 CABO CARVOEIRO PO 39.35 -9.4 34.0 20070822 20200617 085320 99999 SINTRA PO LPST 38.830999999999996 -9.34 134.1 19901001 20200624 085330 99999 SAGRES PO 37.0 -8.95 26.0 20010705 20200624 085340 99999 MONTIJO PO LPMT 38.704 -9.036 14.0 19830503 20200624 085350 99999 LISBOA/GEOF PO 38.717 -9.15 95.0 19901101 20200624 085360 99999 LISBOA PO LPPT 38.781 -9.136000000000001 114.0 19310103 20200624 085370 99999 ALVERCA PO LPAR 38.883 -9.03 3.4 19990104 20200624 085380 99999 SAGRES PO 37.0 -8.95 25.0 19480114 20020519 085390 99999 OTA PO 39.117 -8.982999999999999 49.0 19901105 20061220 085400 99999 MONTE REAL PO LPMR 39.830999999999996 -8.887 57.0 19901006 20200624 085410 99999 SINES/MONTES CHAOS PO 37.95 -8.867 103.0 19890422 20200624 085420 99999 SINES PO 37.95 -8.883 16.0 19800401 19810331 085430 99999 VIANA DO CASTELO PO 41.7 -8.8 18.0 19480111 20060322 085440 99999 OVAR/MACEDA PO 40.917 -8.633 22.0 19901101 20200624 085450 99999 PORTO PO LPPR 41.248000000000005 -8.681000000000001 69.5 19310103 20200624 085460 99999 PORTO/SERRA DO PILAR PO 41.133 -8.6 100.0 19901006 20080403 085470 99999 AVEIRO(PAFB) PO 40.65 -8.732999999999999 19.0 20011104 20051208 085480 99999 COIMBRA/CERNACHE PO 40.15 -8.467 179.0 19960801 20200624 085490 99999 COIMBRA PO 40.2 -8.417 140.0 19480111 20170303 085500 99999 CORUCHE CRUZ DO LE?O PO 39.067 -8.4 167.0 20040523 20060323 085510 99999 VIANA DO CASTELO-CHAPE PO 41.633 -8.8 48.0 20061010 20200624 085520 99999 TANCOS PO LPTN 39.475 -8.365 81.1 19901006 20090831 085540 99999 FARO PO LPFR 37.014 -7.966 7.3 19480111 20200624 085550 99999 FARO/CIDADE PO 37.016999999999996 -7.917000000000001 8.0 19971201 20030731 085570 99999 EVORA PO 38.567 -7.9 321.0 19480112 20050722 085580 99999 EVORA/C. COORD PO 38.533 -7.9 246.0 19950701 20200624 085581 99999 OVAR PO LPOV 40.916 -8.646 17.1 20040525 20200624 085600 99999 VISEU PO 40.717 -7.882999999999999 644.0 19971201 20200624 085610 99999 BEJA/B. AEREA PO 38.067 -7.917000000000001 203.0 19971201 20200624 085620 99999 BEJA PO LPBJ 38.079 -7.932 193.9 19480808 20200624 085660 99999 VILA REAL PO 41.317 -7.733 481.0 19480121 19920324 085670 99999 VILA REAL PO LPVR 41.273999999999994 -7.72 550.2 19920501 20200624 085680 99999 PENHAS DOURADAS PO 40.417 -7.55 1388.0 19480113 20200624 085700 99999 CASTELO BRANCO PO 39.833 -7.483 384.0 19860604 20200624 085710 99999 PORTALEGRE PO 39.283 -7.417000000000001 590.0 19480112 20200624 085750 99999 BRAGANCA PO LPBG 41.86 -6.706 690.4 19480112 20200624 085790 99999 LISBOA/GAGO COUTINHO PO 38.766999999999996 -9.133 105.0 19840502 20200624 085830 99999 MINDELO CV 16.833 -25.05 20.0 19310103 20200624 085890 99999 PRAIA CV 14.933 -23.483 95.0 19330309 20200624 085940 99999 AMILCAR CABRAL INTL CV GVAC 16.741 -22.949 53.9 19480304 20200624 085944 99999 BOA VISTA RABIL CV GVBA 16.137 -22.889 21.0 20080902 20200624 085945 99999 SAO PEDRO CV GVSV 16.834 -25.057 20.1 20071004 20200624 085950 99999 FRANCISCO MENDES CV GVFM 14.924000000000001 -23.494 230.0 20041002 20120318 089110 99999 ARAGUES DEL PUERTO- LIZARRA SP 42.766999999999996 -0.633 1540.0 20191211 20200624 089120 99999 ISABA EL FERIAL SP 42.95 -0.8 1591.0 20151207 20200623 089130 99999 ANSO REFUGIO DE LINZA SP 42.9 -0.8 1340.0 20191211 20200313 089140 99999 CANDANCHU 'ETUKSA' SP 42.783 -0.5329999999999999 1560.0 20031016 20200624 089160 99999 ASTUN 'ESQUI 1730' SP 42.817 -0.5 1730.0 20191219 20200624 089170 99999 SALLENT DE GALLEGO 'FURCO' SP 42.766999999999996 -0.38299999999999995 1855.0 20060201 20200321 089180 99999 SALLENT DE GALLEGO 'FORMIGAL' SP 42.766999999999996 -0.36700000000000005 1500.0 20191212 20200624 089200 99999 SALLENT DE GALLEGO 'RESPOMUSO' SP 42.817 -0.3 2145.0 20051101 20200624 089220 99999 PANTICOSA 'REFUGIO CASA PIEDRA' SP 42.766999999999996 -0.233 1645.0 20050111 20200624 089240 99999 PANTICOSA ESQUI SP 42.7 -0.28300000000000003 1830.0 20191211 20200320 089250 99999 ERISTE REFUGIO ANGEL ORUS SP 42.633 0.45 2115.0 20191211 20200624 089260 99999 FANLO 'REFUGIO DE GORIZ' SP 42.667 0.017 2195.0 20191211 20200624 089270 99999 BIELSA REFUGIO DE PINETA SP 42.667 0.1 1240.0 20191211 20200623 089280 99999 BENASQUE 'REFUGIO DE ESTOS' SP 42.683 0.483 1890.0 20191211 20200624 089300 99999 CERLER ESQUI COTA 2000 SP 42.567 0.55 2020.0 20191212 20200313 089480 99999 VALLTER 2000 SP 42.433 2.267 2167.0 20031017 20051128 089580 99999 CAMARENA DE LA SIERRA SP 40.117 -1.033 1520.0 20191212 20200624 089600 99999 VALDELINARES 'ESQUI' SP 40.383 -0.633 1955.0 20031222 20200619 090910 99999 ARKONA (CAPE) & GM 54.683 13.433 42.0 19750701 20020729 090930 99999 BOGUS GERMAN GM 19901203 19911031 091610 99999 BOLTENHAGEN & GM 54.0 11.2 15.0 19750701 19911031 091620 99999 SCHWERIN & GM 53.633 11.417 59.0 19750701 19920517 091680 99999 BOGUS GERMAN GM 19901203 19911030 091700 99999 WARNEMUENDE GM 54.183 12.083 4.0 19750701 20011121 091770 99999 TETEROW & GM 53.766999999999996 12.617 46.0 19750701 19911031 091800 99999 BARTH GM ETBH 54.333 12.717 7.0 19791106 19911031 091810 99999 PAROW GM ETPA 54.367 13.083 4.0 19910506 19911009 091840 99999 GREIFSWALD & GM 54.1 13.383 2.0 19771203 20020421 091850 99999 GRIEFSWALD/WIECK GM 54.1 13.45 2.0 19750701 19780110 091930 99999 UECKERMUENDE (AUT) GM 53.75 14.067 1.0 19750701 20020518 092490 99999 BOIZENBURG (AUT) & GM 53.383 10.717 45.0 19750701 19911031 092610 99999 SEEHAUSEN/ALTMARK GM 52.9 11.732999999999999 0.0 19761007 19920516 092620 99999 WITTENBERGE & GM 53.033 11.8 24.0 19750701 19770323 092640 99999 MARNITZ (AUT) & GM 53.317 11.933 81.0 19761001 19911031 092670 99999 BOGUS GERMAN GM 19901005 19911031 092700 99999 NEURUPPIN & GM 52.9 12.817 38.0 19750701 19911031 092770 99999 NEUGLOBSOW GM 53.15 13.033 62.0 19910206 19911031 092790 99999 NEUSTRELITZ & GM 53.35 13.083 64.0 19750701 20010803 092800 99999 NEUBRANDENBURG GM 53.6 13.317 79.0 19760701 19911031 092810 99999 NEUBRANDENBURG/TROL GM ETNB 53.6 13.317 71.0 19910421 19911027 092890 99999 BOGUS GERMAN GM 19901001 19911031 092910 99999 ANGERMUENDE GM 53.016999999999996 14.0 48.0 19750701 19911031 093560 99999 BOGUS GERMAN GM 19901101 19911031 093590 99999 GARDELEGEN (AUT) & GM 52.516999999999996 11.4 47.0 19750701 19911031 093610 99999 MAGDEBURG & GM ETMG 52.1 11.583 79.0 19750701 19920516 093650 99999 BOGUS GERMAN GM 19910701 19911030 093680 99999 BOGUS GERMAN GM 19901101 19911031 093790 99999 POTSDAM & GM 52.383 13.067 81.0 19750701 19920517 093810 99999 19750728 19750728 093850 99999 BERLIN/SCHONEFELD GM 52.383 13.517000000000001 48.0 19750401 19920517 093890 99999 BOGUS GERMAN GM 19910502 19911031 093930 99999 LINDENBERG & GM 52.217 14.117 98.0 19750701 19920503 093950 99999 NEUHARDENBERG/WRIEZ GM ETWN 52.617 14.232999999999999 10.0 19910511 19910912 093960 99999 BOGUS GERMAN GM 19901206 19911031 093980 99999 FRANKFURT/ODER GM 52.367 14.533 48.0 19750701 19860622 094490 99999 LEINEFELDE (AUT) & GM 51.383 10.317 354.0 19750701 19911031 094530 99999 BROCKEN (PEAK) GM 51.8 10.617 1142.0 19750701 19911031 094540 99999 WERNIGERODE (AUT) & GM 51.85 10.767000000000001 234.0 19750701 19911031 094550 99999 BOGUS GERMAN GM 19901001 19910801 094580 99999 BOGUS GERMAN GM 19901001 19911031 094600 99999 ARTERN & GM 51.367 11.3 164.0 19750701 19911031 094690 99999 LEIPZIG/SCHKEUDITZ& GM 51.417 12.232999999999999 142.0 19750701 19911031 094740 99999 WITTENBERG & GM 51.883 12.65 104.0 19750701 19911031 094790 99999 COLLMBERG (DEAD) GM 51.3 13.017000000000001 370.0 19750701 19910115 094800 99999 OSCHATZ GM 51.3 13.117 152.0 19830201 19911031 094880 99999 DRESDEN/KLOTZSCHE GM 51.133 13.8 226.0 19750401 19920516 094900 99999 DOBERLUG/KIRCHHAIN& GM 51.65 13.583 97.0 19750701 20011009 094920 99999 COTTBUS GM ETCB 51.766999999999996 14.3 68.0 19750701 19911003 094930 99999 PRESCHEN GM ETPR 51.667 14.633 100.0 19910411 19911029 094960 99999 COTTBUS GM ETCO 51.783 14.333 69.0 19830201 19911031 094990 99999 GOERLITZ GM 51.167 14.95 237.0 19750702 19911031 095460 99999 BOGUS GERMAN GM 50.633 10.15 487.0 19750701 19911031 095480 99999 MEININGEN & GM 50.55 10.367 448.0 19790101 19911031 095490 99999 GROSSER INSELSBERG& GM 50.85 10.467 944.0 19750701 19780831 095510 99999 BOGUS GERMAN GM 19910701 19911031 095520 99999 SCHMUECKE (RIDGE) GM 50.65 10.767000000000001 935.0 19780801 19911031 095540 99999 ERFURT/BINDERSLEBN& GM 50.983000000000004 10.967 315.0 19750701 19920516 095570 99999 NEUHAUS GM 50.5 11.15 850.0 19900206 19911031 095580 99999 SONNEBERG/NEUFANG & GM 50.383 11.183 630.0 19750701 19911031 095640 99999 BOGUS GERMAN GM 19901101 19911031 095650 99999 BOGUS GERMAN GM 19901101 19911031 095670 99999 GERA/LEUMNITZ & GM 50.883 12.133 303.0 19750702 19911031 095690 99999 PLAUEN (AUT) GM 50.5 12.15 408.0 19750701 19911031 095740 99999 BOGUS GERMAN GM 19901001 19911031 095750 99999 BOGUS GERMAN GM 19901001 19911031 095770 99999 KARL-MARX-STADT & GM 50.817 12.9 357.0 19750701 19911031 095780 99999 FICHTELBERG MTN & GM 50.433 12.95 1213.0 19750701 20021106 095790 99999 BOGUS GERMAN GM 19901204 19911031 095820 99999 ZINNWALD/GEORGENFE& GM 50.733000000000004 13.75 887.0 19761001 19911031 095823 99999 BOGUS EAST GERMAN GM ETAR 19870304 19890228 095910 99999 BOGUS GERMAN GM 19910501 19911031 095970 99999 BOGUS GERMAN GM 19910101 19910706 100001 99999 NIEDERRHEIN GM EDLV 51.602 6.142 32.3 20050101 20200624 100010 99999 FORSCHUNGS PLATFORM GM 54.7 7.167000000000001 24.0 19310101 20030203 100020 99999 BORKUMRIFF(LGT-VSL) GM 53.8 6.367000000000001 6.0 19280101 19891216 100030 99999 LIGHTSHIP 01 WESER GM 53.867 7.832999999999999 5.0 19310101 19900219 100031 99999 LIGHTSHIP 01 WESER GM 53.917 7.832999999999999 0.0 19730101 19810923 100040 99999 UFS TW/EMS (AUT) GM 54.167 6.35 3.0 19590805 20030816 100050 99999 ELBE 1 (LGT-VSL) GM 54.0 8.117 5.0 19310101 19921231 100060 99999 NORDSEEBOJE III GM 54.683 6.75 5.0 19310101 19811231 100065 99999 MARIENLEUCHTE GM 54.5 11.232999999999999 4.0 19730101 19730601 100070 99999 UFS DEUTSCHE BUCHT GM 54.183 7.433 3.0 19730101 20030816 100080 99999 NORDSEEBOJE I GM 55.0 6.332999999999999 3.0 19310101 20081230 100100 99999 19310101 19390731 100130 99999 19360102 19421230 100150 99999 HELGOLAND/DUNE GM 54.183 7.9 4.0 19730101 20030816 100155 99999 HELGOLAND GM 54.2 7.882999999999999 4.0 19730101 19740205 100180 99999 WESTERLAND SYLT GM EDXW 54.913000000000004 8.34 15.5 19890318 20200624 100190 99999 19310101 19411231 100195 99999 WESTERLAND/SYLT & GM EDHX 54.917 8.35 16.0 19780601 19811005 100196 99999 WESTERLAND/SYLT GM 54.917 8.35 16.0 19870416 19881009 100200 99999 LIST/SYLT GM 55.016999999999996 8.417 26.0 19340101 20030816 100220 99999 LECK GM 54.8 8.95 17.0 19730101 20081231 100260 99999 HUSUM (GER-AFB) GM 54.516999999999996 9.15 28.0 19730101 19921231 100270 99999 19360605 19421231 100280 99999 ST PETER-ORDING GM 54.333 8.6 11.0 20010915 20081231 100290 99999 19730101 19740821 100320 99999 19370301 19390731 100330 99999 MEIERWIK GM ETGG 54.833 9.5 33.0 19360101 20200624 100340 99999 EGGEBEK GM ETME 54.625 9.346 20.0 19730101 20050629 100350 99999 SCHLESWIG GM 54.533 9.55 43.0 19590805 20030816 100370 99999 SCHLESWIG GM ETNS 54.458999999999996 9.516 21.3 19420101 20200624 100380 99999 HOHN GM ETNH 54.312 9.538 11.9 19730101 20200624 100420 99999 OLPENITZ (AUT) GM 54.667 10.033 4.0 19750606 20030816 100440 99999 KIEL (LGT-H/AUT) GM 54.5 10.283 21.0 19370815 20030816 100450 99999 KIEL/KRONSHAGEN GM 54.333 10.1 19.0 19340101 19900301 100460 99999 KIEL/HOLTENAU(GNVY) GM ETMK 54.383 10.15 31.0 19290801 20030816 100465 99999 KIEL HOLTENAU GM EDHK 54.38 10.145 30.8 19950827 20200624 100480 99999 FRIEDRICHSORT GM 54.383 10.183 11.0 19750523 20010925 100500 99999 19420101 19431231 100550 99999 FEHMAR GM 54.533 11.067 9.0 19960901 20081231 100630 99999 PUTTGARDEN (AUT) GM 54.5 11.217 3.0 19860604 19921231 100670 99999 MARIENLEUCHTE GM 54.5 11.232999999999999 12.0 19310101 20041013 100910 99999 ARKONA (CAPE) GM 54.683 13.433 41.0 19310101 20030816 100930 99999 PUTBUS GM 54.367 13.482999999999999 34.0 19911101 20030816 100970 99999 GREIFSWALDER OIE GM 54.25 13.917 12.0 20010705 20081231 100974 99999 GREIFSWALDER OIE GM 54.25 13.917 12.0 20020410 20031028 101130 99999 NORDERNEY ISLAND GM 53.717 7.15 13.0 19350206 20030816 101200 99999 HELGOLAND ISLAND GM 54.183 7.882999999999999 53.0 19290801 20050110 101220 99999 JEVER GM ETNJ 53.534 7.888999999999999 7.3 19370105 20130926 101225 99999 WITTMUND GM 53.583 7.817 1.0 19730101 19730330 101230 99999 WANGEROGGE ISLAND GM 53.8 7.9 29.0 19870320 20081027 101240 99999 ALTE WESER (LGT-H) GM 53.867 8.132 32.0 19800307 20030816 101250 99999 WILHELMSHAVEN-MARIE GM 53.5 8.05 5.0 20010917 20041112 101260 99999 WITTMUNDHAFEN GM ETNT 53.548 7.667000000000001 7.9 19730101 20200624 101270 99999 WILHELMSHAVEN GM 53.533 8.167 11.0 19290801 20030731 101280 99999 SENGWARDEN GM EDZE 53.583 8.033 1.0 19730101 19830704 101281 99999 SENGWARDEN GM 53.583 8.033 1.0 19881014 19900110 101286 99999 WILHEIMSHAVEN GM 53.516999999999996 8.133 4.0 19730101 19730601 101290 99999 BREMERHAVEN GM 53.533 8.583 7.0 19490101 20030816 101300 99999 ELPERSBUETTEL (AUT) GM 54.067 9.017000000000001 1.0 19821104 20030816 101310 99999 CUXHAVEN GM 53.867 8.7 4.0 19310101 20030816 101330 99999 SAINT MICHAELISDONN GM 53.983000000000004 9.15 41.0 20031203 20040614 101360 99999 NORDHOLZ GM ETMN 53.768 8.658999999999999 22.6 19460901 20200624 101390 99999 BREMERVOERDE (AUT) GM 53.5 9.167 5.0 19900403 20030816 101420 99999 ITZEHOE GM ETHI 53.983000000000004 9.567 26.0 19730102 20081231 101430 99999 NEUMUNSTER/WASBEK GM EDHN 54.083 9.982999999999999 25.0 19420101 19921231 101440 99999 UETERSEN GM 53.65 9.7 7.0 19730622 20040522 101445 99999 HAMBURG/FINKENWERDE GM 53.55 9.833 0.0 19880201 19881027 101460 99999 QUICKBORN GM 53.733000000000004 9.883 17.0 19821111 20081231 101470 99999 HAMBURG GM EDDH 53.63 9.988 16.2 19280401 20200624 101480 99999 HAMBURG-STADT GM 53.55 9.967 22.0 20140930 20160113 101490 99999 HAMBURG FINKENWERDER GM EDHI 53.536 9.837 6.7 19881028 20200624 101500 99999 DOERNICK GM 54.167 10.35 28.0 20010707 20081231 101510 99999 DAHMESHOVED GM 54.2 11.1 8.0 19330701 19830509 101520 99999 PELZERHAKEN (AUT) GM 54.083 10.883 2.0 19880201 20030816 101560 99999 LUBECK BLANKENSEE GM EDHL 53.805 10.719000000000001 16.2 19730101 20200624 101610 99999 BOLTENHAGEN GM 54.0 11.2 17.0 19730101 20030816 101620 99999 SCHWERIN GM 53.633 11.417 68.0 19360102 20030816 101624 99999 SCHWERIN PARCHIM GM EDOP 53.427 11.783 50.6 19990115 20190331 101630 99999 PARCHIM GM 53.417 11.783 44.0 19520101 19601231 101680 99999 GOLDBERG (AUT) GM 53.6 12.1 58.0 19911101 20030815 101690 99999 ROSTOCK GM 54.183 12.067 4.0 20040530 20040530 101700 99999 WARNEMUENDE GM 54.183 12.083 10.0 19310101 20030816 101720 99999 LAAGE GM ETNL 53.918 12.277999999999999 42.1 19911218 20200624 101730 99999 19360515 19431231 101770 99999 TETEROW GM 53.766999999999996 12.617 50.0 19520101 20030816 101780 99999 TUTOW GM EDUW 53.922 13.219000000000001 7.0 19350101 19400324 101800 99999 BARTH GM 54.367 12.732999999999999 7.0 19360608 20030816 101810 99999 PAROW GM 54.367 13.083 4.0 19360325 20020501 101840 99999 GREIFSWALD GM 54.1 13.4 6.0 19911028 20030816 101850 99999 NAME AND LOC UNKN GM 0.0 0.0 -999.0 19370102 20020903 101920 99999 HERINGSDORF GM 53.883 14.15 28.0 19370202 20041024 101930 99999 UECKERMUENDE (AUT) GM 53.75 14.067 7.0 19361005 20030816 101935 99999 HERINGSDORF GM EDAH 53.879 14.152000000000001 28.3 19950315 20200624 102000 99999 EMDEN GM EDWE 53.391000000000005 7.227 0.6 19830506 20130528 102020 99999 EMDEN/WOLTHUSEN GM 53.367 7.2170000000000005 1.0 19590805 19830523 102030 99999 EMDEN/HAFEN GM 53.333 7.2 6.0 19600401 19921231 102040 99999 EMDEN-KNOCK GM 53.333 7.0329999999999995 2.0 20040929 20040929 102050 99999 PAPENBURG (AUT) GM 53.083 7.382999999999999 1.0 19870906 19900527 102130 99999 19390502 19431231 102150 99999 OLDENBURG GM 53.183 8.167 20.0 19730101 20081231 102180 99999 AHLHORN(GAFB) GM 52.883 8.232999999999999 56.0 19730101 20020114 102240 99999 BREMEN GM EDDW 53.048 8.787 4.3 19290801 20200624 102244 99999 LEMWERDER GM EDWD 53.15 8.617 30.0 19920827 19970226 102340 99999 ROTENBURG GM ETGQ 53.133 9.35 61.0 19420101 20161010 102350 99999 SOLTAU GM 53.0 9.833 77.0 19730101 20030816 102380 99999 BERGEN (MIL) GM ETGB 52.817 9.933 69.0 19730102 20180402 102420 99999 19501103 19560831 102460 99999 FASSBERG GM ETHS 52.919 10.198 74.7 19360102 20200624 102490 99999 BOIZENBURG (AUT) GM 53.4 10.683 46.0 19520101 20030816 102500 99999 19351202 19421231 102530 99999 LUCHOW/REHBECK GM 52.967 11.133 17.0 19490101 20030816 102540 99999 SALZWEDEL GQ 52.833 11.15 34.1 19360106 19570531 102610 99999 SEEHAUSEN/ALTMARK GM 52.9 11.732999999999999 23.0 19911101 20030816 102620 99999 WEISEN B WITTENBERGE GQ 53.033 11.8 24.1 19380106 19750707 102640 99999 MARNITZ (AUT) GM 53.317 11.933 87.0 19911101 20030816 102670 99999 KYRITZ (AUT) GM 52.933 12.417 40.0 19911101 20030816 102680 99999 WAREN GM 53.516999999999996 12.667 71.0 19941001 20081231 102700 99999 NEURUPPIN GM 52.9 12.817 39.0 19340806 20030816 102720 99999 WITTSTOCK GM ETGW 53.2 12.517000000000001 74.0 19950403 20140309 102730 99999 BASEPOHL GM 53.733000000000004 12.933 53.0 19920430 20031231 102740 99999 19310702 19440630 102770 99999 NEUGLOBSOW GM 53.15 13.033 62.0 19911003 20030816 102790 99999 NEUSTRELITZ GQ 53.35 13.083 64.0 19520101 19750730 102800 99999 NEUBRANDENBURG GM 53.55 13.2 80.0 19360101 20030816 102810 99999 NEUBRANDENBURG GM ETNU 53.602 13.306 69.5 19920630 20130930 102860 99999 WOLDEGK GM 53.467 13.617 118.0 19920601 19921231 102890 99999 GRUENOW (AUT) GM 53.317 13.933 57.0 19360102 20030816 102910 99999 ANGERMUENDE GM 53.033 14.0 55.0 19520101 20030816 103030 99999 19360102 19431231 103040 99999 MEPPEN (MIL) GM ETWM 52.717 7.317 26.0 19761201 20200624 103050 99999 LINGEN GM 52.516999999999996 7.317 21.0 19730101 20030816 103060 99999 RHEINE BENTLAGE GM ETHE 52.291000000000004 7.3870000000000005 39.3 19401001 20171220 103070 99999 RHEINE/WALDHUGEL GM 52.266999999999996 7.433 78.0 19830504 20030227 103080 99999 NORDHORN RANGE GM ETUN 52.45 7.167000000000001 26.0 19310102 20040915 103084 99999 NORDHORN RANGE & GM 52.45 7.167000000000001 26.0 19771003 19900424 103090 99999 AHAUS GM 52.083 6.95 46.0 19411201 19431231 103100 99999 19310502 19431229 103120 99999 BELM GM 52.318000000000005 8.17 104.0 19310102 19421231 103130 99999 MUNSTER/TELGTE GM EDLT 51.967 7.6 64.0 19380404 19891129 103134 99999 MUNSTER/OSNABRUCK GM 52.133 7.683 48.0 19771108 19881027 103140 99999 HOPSTEN GM ETNP 52.339 7.541 40.0 19730101 20051223 103150 99999 MUNSTER OSNABRUCK GM EDDG 52.135 7.685 48.8 19881027 20200624 103160 99999 19300501 19421231 103170 99999 OSNABRUCK/ATTERHEID GM 52.25 8.05 95.0 19390519 20030816 103180 99999 BORGHOLZHAUSEN GM 52.117 8.283 305.0 19850227 20021122 103190 99999 19360501 19411222 103193 99999 PADERBORN/LIPPSTAD& GM 51.617 8.617 217.0 19870302 19881026 103200 99999 GUTERSLOH GM ETUO 51.923 8.306000000000001 71.9 19370503 20131028 103210 99999 DIEPHOLZ GM ETND 52.586000000000006 8.341000000000001 38.7 19730102 20200624 103250 99999 BAD SALZUFLEN GM 52.1 8.75 98.0 19730101 20030816 103280 99999 DETMOLD (UK-ARMY) GM 51.95 8.9 189.0 19360302 20010707 103340 99999 WUNSTORF GM ETNW 52.457 9.427 57.0 19370507 20200624 103350 99999 BUCKEBURG GM ETHB 52.278999999999996 9.082 70.1 19730102 20200624 103370 99999 HILDESHEIM GM 52.183 9.95 88.0 19341201 20021102 103380 99999 HANNOVER GM EDDV 52.461000000000006 9.685 55.8 19260101 20200624 103390 99999 19370106 19431231 103400 99999 19300502 19420630 103410 99999 19370601 19431231 103430 99999 CELLE GM ETHC 52.591 10.022 39.3 19360102 20200624 103480 99999 BRAUNSCHWEIG WOLFSBURG GM EDVE 52.318999999999996 10.556 89.9 19310102 20200624 103490 99999 19360508 19431231 103510 99999 19361116 19431016 103520 99999 19380103 19420630 103560 99999 UMMENDORF(AUT) GM 52.167 11.183 163.0 19911025 20030816 103570 99999 19360102 19431231 103590 99999 GARDELEGEN (AUT) GM 52.516999999999996 11.4 48.0 19360101 20030816 103610 99999 MAGDEBURG GM 52.117 11.583 85.0 19310101 20030816 103620 99999 MAGDENBURG GM 52.067 11.617 81.0 19381014 19431231 103630 99999 19350105 19431231 103640 99999 19360603 19411231 103650 99999 GENTHIN (AUT) GM 52.383 12.167 39.0 19911022 20030816 103660 99999 19360803 19431231 103680 99999 WIESENBURG GM 52.117 12.467 188.0 19911101 20041231 103700 99999 BRANDENBURG/BRIEST GM 52.433 12.45 31.0 19381201 20010923 103710 99999 19400501 19411231 103760 99999 BARUTH GM 52.117 13.617 57.0 20030518 20030816 103780 99999 POTSDAM (SOR) GM 52.367 13.083 89.0 20040510 20040510 103790 99999 POTSDAM GM 52.383 13.067 100.0 19730101 20030816 103800 99999 POTSDAM GQ 52.383 13.05 70.1 19520101 19601231 103810 99999 BERLIN/DAHLEM GM 52.467 13.3 51.0 19730101 20030816 103820 99999 TEGEL GM EDDT 52.56 13.288 37.2 19360310 20200624 103830 99999 19391114 19431231 103840 99999 TEMPELHOF GM EDDI 52.473 13.404000000000002 50.9 19290801 20090703 103850 99999 SCHONEFELD GM EDDB 52.38 13.523 47.9 19400408 20200624 103860 99999 19731129 19740923 103870 99999 19350201 19431231 103890 99999 BERLIN/ALEXANDERPLZ GM 52.516999999999996 13.417 84.0 19911101 20030816 103930 99999 LINDENBERG GM 52.217 14.117 112.0 19311001 20030816 103940 99999 LINDENBERG GM 52.217 14.117 101.0 20040714 20040714 103950 99999 TROLLENBERG-BEESKOW GM 52.167 14.117 71.0 19920126 20030326 103960 99999 MANSCHNOW GM 52.55 14.55 16.0 19911101 20030816 103980 99999 FRANKFURT /ODER GQ 52.367 14.517000000000001 49.1 19360102 19750630 104000 99999 DUSSELDORF GM EDDL 51.288999999999994 6.767 44.8 19310102 20200624 104010 99999 BRUGGEN (RAF) GM ETUR 51.2 6.132999999999999 76.0 19730102 20030622 104020 99999 WILDENRATH(GAFB) GM 51.117 6.2170000000000005 89.0 19730101 20030508 104030 99999 MOENCHENGLADBACH GM 51.233000000000004 6.5 38.0 19381001 19421031 104040 99999 KALKAR (MIL COMM) GM ETGY 51.75 6.2829999999999995 43.0 19730102 20140122 104043 99999 KALKAR (MIL COMM) GM 51.683 6.167000000000001 19.0 19820927 19870304 104050 99999 LAARBRUCH (RAF) GM ETUL 51.6 6.15 31.0 19730102 20030615 104060 99999 BOCHOLT GM 51.833 6.5329999999999995 25.0 19730101 20030816 104070 99999 19381001 19421231 104090 99999 ESSEN/MUELHEIM GM 51.4 6.9670000000000005 161.0 19300414 19431231 104100 99999 ESSEN/MULHEIM GM EDZE 51.4 6.9670000000000005 161.0 19310101 20030816 104160 99999 DORTMUND GM EDLW 51.518 7.612 129.5 19310101 20200624 104180 99999 LUEDENSCHEID GM 51.25 7.65 392.0 19940301 20081231 104183 99999 DORTMUND/WICKEDE & GM 19880105 19881027 104190 99999 LUDENSCHEID & GM 51.233000000000004 7.6 458.0 19270906 20030306 104203 99999 ARNSBERG MENDEN GM EDLA 51.483000000000004 7.899 242.0 20181211 20181211 104230 99999 19390901 19421231 104240 99999 WERL GM 51.583 7.882999999999999 85.0 19390801 20081231 104260 99999 PADERBORN LIPPSTADT GM EDLP 51.614 8.616 213.1 19381104 20200624 104264 99999 SOEST (UK-ARMY) GM 51.583 8.217 125.0 19830406 19900403 104270 99999 KAHLER ASTEN(MOUNT) GM 51.183 8.482999999999999 835.0 19260501 20030816 104300 99999 BAD LIPPSPRINGE GM 51.783 8.833 151.0 19370603 20030816 104310 99999 EGGEGEBIRGE GM 51.833 8.95 430.0 20010921 20010921 104320 99999 KOETERBERG (AUT) GM 51.85 9.317 493.0 19750816 19921231 104330 99999 LUEGDE-PAENBRUCH GM 51.867 9.267000000000001 260.0 19290809 20081231 104340 99999 FLECHTDORF GM 51.333 8.85 516.0 19300301 19431231 104350 99999 WARBURG (AUT) GM 51.5 9.183 225.0 19750825 20030816 104360 99999 KASSEL CALDEN GM EDVK 51.408 9.378 276.8 19881223 20200624 104370 99999 FRITZLAR-KASSELER W GM 51.133 9.283 223.0 19990501 20030705 104374 99999 MONCHENGLADBACH GM EDLN 51.23 6.504 38.1 19960715 20200624 104380 99999 KASSEL GM 51.3 9.45 158.0 19310101 20030816 104390 99999 FRITZLAR GM ETHF 51.115 9.286 172.5 19380722 20200624 104400 99999 FLECHTDORF GM 51.317 8.8 551.0 19281018 19431231 104410 99999 SCHAUNBERG-ELGERSHAUSEN GM 51.283 9.367 317.5 19390902 19411201 104420 99999 ALFELF GM 51.967 9.8 66.0 19371001 20080111 104440 99999 GOETTINGEN GM 51.55 9.95 176.0 19420101 20030816 104480 99999 KALTENEBER GQ 51.333 10.167 445.9 19370109 19560731 104490 99999 LEINEFELDE (AUT) GM 51.4 10.317 356.0 19270510 20030816 104500 99999 19370201 19420630 104510 99999 19390201 19431231 104520 99999 BRAUNLAGE GM 51.733000000000004 10.6 607.0 19730101 20030816 104530 99999 BROCKEN (PEAK) GM 51.8 10.617 1153.0 19260801 20030816 104540 99999 WERNIGERODE (AUT) GM 51.85 10.767000000000001 240.0 19520101 20030816 104550 99999 SCHIERKE (AUT) GM 51.766999999999996 10.667 617.0 19911230 20020306 104560 99999 19341205 19431231 104570 99999 19300909 19411231 104580 99999 HARZGERODE GM 51.65 11.133 405.0 19911101 20030816 104600 99999 ARTERN GM 51.383 11.3 166.0 19730101 20030816 104660 99999 HALLE-KROELLWITZ GM 51.516999999999996 11.95 93.0 19360401 20030816 104680 99999 OPPIN GM 51.55 12.067 106.0 19310102 19431231 104690 99999 LEIPZIG HALLE GM EDDP 51.424 12.235999999999999 141.7 19290311 20200624 104700 99999 LEIPZIG /MOCKAU GQ 51.4 12.417 131.1 19570601 19711130 104710 99999 LEIPZIG-HOLZHAUSEN GM 51.317 12.45 151.0 19300303 20081231 104720 99999 19360118 19411231 104730 99999 19360618 19431231 104740 99999 WITTENBERG GM 51.883 12.65 106.0 19310301 20030816 104750 99999 19390102 19431231 104760 99999 HOLZDORF GM ETSH 51.768 13.168 80.8 19911020 20200624 104770 99999 19360102 19430531 104790 99999 COLOMBERG GQ 51.3 13.017000000000001 324.9 19520101 19750630 104800 99999 OSCHATZ GM 51.3 13.1 152.0 19370107 20030816 104810 99999 19310219 19431231 104820 99999 19351101 19421230 104860 99999 WAHNSDORF GM 51.117 13.683 232.0 19520101 19600930 104880 99999 DRESDEN GM EDDC 51.133 13.767000000000001 230.1 19310101 20200624 104900 99999 DOBERLUG/KIRCHHAIN GM 51.65 13.583 100.0 19360102 20030816 104910 99999 19390901 19431231 104920 99999 COTTBUS (FLUGPLATZ) GM ETHT 51.766999999999996 14.3 67.0 19311102 20030613 104930 99999 PRESCHEN GM 51.667 14.633 100.0 19400801 20011007 104940 99999 19390103 19411231 104960 99999 COTTBUS GM 51.783 14.317 69.0 19520101 20030816 104970 99999 19390901 19431231 104980 99999 19311010 19420630 104990 99999 GOERLITZ GM 51.167 14.95 238.0 19320104 20030816 105000 99999 GEILENKIRCHEN GM ETNG 50.961000000000006 6.042000000000001 90.2 19820625 20200624 105010 99999 AACHEN GM 50.783 6.1 202.0 19280101 20030816 105020 99999 NORVENICH GM ETNN 50.831 6.6579999999999995 117.7 19730101 20200624 105030 99999 AACHEN/MERZBRUCK GM ETBA 50.817 6.183 191.0 19780901 20030305 105040 99999 EIFEL GM 50.65 6.2829999999999995 572.0 20040501 20040501 105060 99999 NUERBURG-BARWEILER GM 50.367 6.867000000000001 488.0 19950401 20081231 105080 99999 BLANKENHEIM GM 50.45 6.65 556.0 19781002 19840504 105090 99999 BUTZWEILERHOF(BAFB) GM 50.983000000000004 6.9 49.0 19780901 19950823 105100 99999 NUERBURG GM 50.333 6.95 626.0 19300901 19921231 105120 99999 19310602 20080913 105130 99999 KOLN BONN GM EDDK 50.86600000000001 7.143 92.0 19310101 20200624 105140 99999 MENDIG GM ETHM 50.36600000000001 7.315 182.0 19730102 20070614 105150 99999 BENDORF GM 50.417 7.582999999999999 96.0 19310102 20030816 105170 99999 BONN/FRIESDORF(AUT) GM 50.7 7.15 61.0 19360102 19921231 105180 99999 BONN-HARDTHOEHE GM 50.7 7.0329999999999995 160.0 19750523 20031030 105190 99999 BONN-ROLEBER GM 50.733000000000004 7.2 162.0 20010705 20081231 105260 99999 BAD MARIENBERG GM 50.667 7.9670000000000005 547.0 19730101 20030816 105320 99999 GIESSEN GM 50.583 8.7 186.0 19390102 20030816 105325 99999 FRIEDBERG (USA-HP) GM 50.333 8.732999999999999 146.0 19731129 19740102 105330 99999 GIESSEN (USA-HP) GM 50.6 8.732999999999999 152.0 19810902 19820412 105350 99999 WAHLEN (AUT) GM 50.817 9.133 320.0 19320301 20030816 105360 99999 FULDA(USA\AF) GM 50.55 9.65 305.0 19600908 20021225 105390 99999 19310302 19411231 105420 99999 BAD HERSFELD (AHP) GM 50.867 9.717 212.0 19730101 20030816 105440 99999 WASSERKUPPE (MOUNT) GM 50.5 9.95 921.0 19310101 20030816 105445 99999 MELLENDORF GM EDEX 50.533 9.633 305.0 19730102 19881027 105460 99999 KALTENNORDHEIM(AUT) GM 50.633 10.15 494.0 19520101 19921231 105480 99999 MEININGEN GM 50.567 10.383 453.0 19280305 20030816 105490 99999 GROSSER INSELSBERG GQ 50.85 10.467 920.2 19280702 19750630 105500 99999 19341001 19431231 105510 99999 SUHL GM 50.617 10.667 505.0 19911028 19951213 105520 99999 SCHMUECKE (RIDGE) GM 50.65 10.767000000000001 942.0 19911101 20030816 105536 99999 ALTENBURG NOBITZ GM EDAC 50.982 12.505999999999998 195.1 19960321 20200624 105540 99999 ERFURT GM EDDE 50.98 10.958 315.8 19310101 20200624 105550 99999 WEIMAR GM 50.983000000000004 11.317 268.0 19370106 20041231 105560 99999 19390103 19430131 105570 99999 NEUHAUS GM 50.5 11.133 850.0 19911101 20030816 105580 99999 SONNEBERG/NEUFANG GM 50.383 11.183 630.0 19370401 20030816 105590 99999 19370403 19411231 105600 99999 19390903 19420630 105610 99999 19310903 19390331 105620 99999 19360701 19420630 105640 99999 SCHLEIZ (AUT) GM 50.567 11.817 502.0 19410216 20030815 105650 99999 OSTERFELD (AUT) GM 51.083 11.933 263.0 19911101 20030816 105670 99999 GERA/LEUMNITZ GM 50.883 12.133 312.0 19520101 20030816 105690 99999 PLAUEN (AUT) GM 50.483000000000004 12.133 389.0 19310101 20030816 105730 99999 19390102 19420630 105740 99999 CARLSFELD GM 50.433 12.617 899.0 19911101 20030816 105750 99999 AUE GM 50.6 12.717 397.0 19911101 20030816 105760 99999 19300915 19431231 105770 99999 CHEMNITZ GM 50.8 12.867 420.0 19310101 20030816 105780 99999 FICHTELBERG MTN GM 50.433 12.95 1215.0 19310101 20030816 105790 99999 MARIENBERG GM 50.65 13.15 640.0 19300415 20030816 105820 99999 ZINNWALD/GEORGENFE GM 50.733000000000004 13.75 882.0 19911008 20030816 105910 99999 LICHTENHAIN-MITTELD GM 50.933 14.217 300.0 19911101 20030816 105970 99999 BOGUS GERMAN GM 19920224 19920727 106070 99999 SPANGDAHLEM AB GM ETAD 49.973 6.693 364.8 19530518 20200624 106074 99999 BITBURG GM EDRB 49.945 6.565 372.8 19970826 19980709 106090 99999 TRIER/PETRISBERG GM 49.75 6.667000000000001 265.0 19310102 20030816 106100 99999 BITBURG(US ARMY) GM 49.95 6.567 374.0 19520401 20010822 106130 99999 BUCHEL GM ETSB 50.174 7.063 477.9 19730101 20200624 106140 99999 RAMSTEIN AB GM ETAR 49.437 7.6 238.1 19520301 20200624 106145 99999 PIRMASEN (USA-HP) GM 49.217 7.617000000000001 415.0 19730102 19881027 106150 99999 DEUSELBACH GM 49.766999999999996 7.05 479.0 19730101 20030816 106156 99999 BIRKENFELD GM 49.65 7.183 547.0 19840716 19930716 106160 99999 FRANKFURT HAHN GM EDFH 49.949 7.263999999999999 502.6 19530722 20200624 106161 99999 MAGDEBURG GM EDBM 52.074 11.626 81.7 20040510 20070105 106162 99999 SIEGERLAND GM EDGS 50.708 8.083 599.2 20040510 20200624 106163 99999 ZWEIBRUCKEN GM EDRZ 49.21 7.401 345.3 20040510 20141128 106164 99999 COCHSTEDT GM EDBC 51.855 11.419 180.0 20100716 20170724 106170 99999 TRABEN-TRARBACH GM 49.967 7.117000000000001 257.0 19850601 19920625 106180 99999 IDAR-OBERSTEIN(MIL) GM ETGI 49.7 7.332999999999999 377.0 19730102 20171020 106190 99999 BAUMHOLDER AAF GM ETEK 49.65 7.3 553.0 19650201 20200622 106260 99999 PFERDSFELD (GER-AF) GM ETSP 49.85 7.6 396.0 19730101 20010421 106265 99999 BAD KREUZNACH AAF & GM 49.85 7.882999999999999 103.0 19730102 19881027 106270 99999 BAD KREUZNACH AAF GM ETEH 49.85 7.882999999999999 103.0 19591104 20010223 106280 99999 GEISENHEIM GM 49.983000000000004 7.95 123.0 19830503 20081231 106290 99999 OFFENTHAL (RADAR) GM 49.983000000000004 8.717 198.0 19380601 19411231 106320 99999 FINTHEN (USA-AF) GM EDOT 49.967 8.15 232.0 19420101 19921009 106325 99999 EGELSBACH GM EDFE 49.961000000000006 8.642000000000001 117.3 20070807 20170403 106330 99999 WIESBADEN AAF GM ETOU 50.05 8.325 140.5 19380106 20200624 106334 99999 MEBSTETTEN / ALBSTADT GM ETCE 50.117 9.117 475.0 19801015 19950104 106335 99999 FINTHEN (USA-AF) & GM 49.967 8.15 232.0 19730102 19881027 106350 99999 KLEINER FELDBERG GM 50.217 8.45 805.0 19260501 20030816 106370 99999 FRANKFURT MAIN GM EDDF 50.026 8.543 110.9 19260101 20200624 106380 99999 MAURICE ROSE(USAHP) GM 50.183 8.65 104.0 19920601 20030516 106390 99999 LANGEN GM 50.016999999999996 8.667 135.0 19490101 19971005 106400 99999 OFFENBACH-M GM 50.1 8.732999999999999 112.0 19730101 20010517 106405 99999 MAURICE ROSE(USAHP) GM EDEN 50.183 8.667 104.0 19650501 19860330 106410 99999 OFFENBACH WETTERPAR GM 50.083 8.783 119.0 19410401 19431231 106420 99999 HANAU AAF GM ETID 50.169 8.962 112.2 19381104 20060428 106430 99999 BABENHAUSEN GM EDEF 49.95 8.967 131.0 19850509 19860330 106450 99999 BREITSOL (AUT) GM 49.9 9.433 585.0 19880105 20030816 106460 99999 NEUHUTTEN-SPESSART GM 50.016999999999996 9.417 339.0 19410101 19410731 106480 99999 MICHELSTADT/VIELBRU GM 49.717 9.1 405.0 19871002 20030816 106530 99999 GIEBELSTADT AAF GM ETEU 49.648 9.966000000000001 298.7 19360102 20060831 106550 99999 WURZBURG (USA-AF) GM 49.766999999999996 9.967 259.0 19310103 20030816 106570 99999 WERTHEIM (USA-HP) GM 49.75 9.5 338.0 19380202 19990401 106580 99999 BAD KISSINGEN GM 50.2 10.083 224.0 19460202 20030816 106585 99999 SCHWEINFURT AHP GM ETOA 50.047 10.171 239.9 20030423 20051104 106590 99999 KITZINGEN(US ARMY) GM 49.75 10.2 210.0 19340801 20011119 106595 99999 VILSECK AAF GM ETOI 49.63399999999999 11.767000000000001 412.4 19810102 20130325 106596 99999 HEIDELBERG AHP GM ETIE 49.383 8.65 109.0 20080101 20081231 106597 99999 LANDSTUHL AHP GM ETIP 49.403 7.5360000000000005 355.7 20060831 20151215 106600 99999 19380103 19431231 106690 99999 KITZINGEN AAF GM ETIN 49.743 10.201 210.0 19990424 20020117 106700 99999 19490101 19541231 106710 99999 COBURG GM 50.283 10.982999999999999 337.0 19730101 20030816 106750 99999 BAMBERG (USA-AF) GM 49.883 10.917 242.0 19730101 20030816 106755 99999 BAMBERG (USA-AF) GM EDEJ 49.917 10.917 242.0 19461101 19820716 106770 99999 BAYREUTH GM EDQD 49.983999999999995 11.639000000000001 488.0 19310102 20070701 106780 99999 GRADFFENWOHR GM 49.7 11.933 415.0 19410501 19431231 106810 99999 19490101 19541231 106840 99999 HOF GM 50.283 11.85 588.0 20040610 20040907 106850 99999 HOF PLAUEN GM EDQM 50.288999999999994 11.855 597.4 19310101 20200624 106870 99999 GRAFENWOHR AAF GM ETIC 49.699 11.94 415.4 19390901 20200624 106874 99999 HERZO BASE (USA-HP) GM 49.583 10.917 329.0 19370401 19431231 106875 99999 ERLANGEN (USA-AF) GM 49.583 11.033 282.0 19470630 19731121 106880 99999 WEIDEN (MIL/MET) GM 49.667 12.183 438.0 19310102 20030816 107000 99999 19741029 19741029 107020 99999 KARLSRUHE/BADEN-B GM 48.783 8.083 124.0 19860107 20010918 107040 99999 BERUS GM 49.283 6.683 363.0 19730101 20030816 107050 99999 19730101 19750513 107060 99999 THOLEY GM 49.483000000000004 7.05 398.0 19750618 20030816 107070 99999 19410701 19431231 107080 99999 SAARBRUCKEN GM EDDR 49.215 7.11 322.5 19350701 20200624 107090 99999 SAARBRUECKEN GM 49.25 6.933 213.0 19311104 20041123 107100 99999 19380901 19411231 107110 99999 19400719 19411231 107120 99999 SEMBACH (USAFB) GM ETAS 49.5 7.867000000000001 321.0 19530708 20100216 107140 99999 ZWEIBRUECKEN GM 49.217 7.4 353.0 19541001 20030329 107170 99999 PIRMASENS (USA-HP) GM 49.217 7.617000000000001 415.0 19881027 20021228 107220 99999 KARLSRUHE/BADEN-BAD GM 48.783 8.083 135.0 19550702 19930526 107230 99999 NEUSTADT/WEINSTR. GM 49.367 8.133 163.0 19730101 19840724 107240 99999 WEINBIET (AUT) GM 49.383 8.117 553.0 19730101 20030816 107250 99999 BADEN-OOS GM 48.8 8.183 126.0 19770803 20020311 107260 99999 19360107 19431231 107270 99999 KARLSRUHE (USA-AF) GM 49.033 8.367 114.0 19290801 20030816 107275 99999 KARLSRUHE BADEN BADEN GM EDSB 48.778999999999996 8.081 124.4 19970723 20200624 107280 99999 COLEMAN AAF / COLEMAN BARRACKS GERMANY GM ETOR 49.56399999999999 8.463 94.2 19310101 20130114 107290 99999 MANNHEIM CITY GM EDFM 49.473 8.514 94.2 19470729 20200624 107295 99999 COLEMAN (USA-AF) & GM 49.567 8.467 94.0 19730102 19881027 107320 99999 19390711 19411231 107330 99999 WAIBSTADT GM 49.3 8.9 237.0 20011008 20040124 107340 99999 HEIDELBERG AAF GM 49.4 8.65 109.0 19461118 20041011 107345 99999 HEIDELBERG AHP GM ETIE 49.393 8.652000000000001 109.1 20060424 20130614 107350 99999 SINSHEIM (AUT) GM 49.25 8.883 169.0 19870904 20030816 107360 99999 MUEHLACKER (AUT) GM 48.967 8.867 244.0 19790314 20030816 107370 99999 STUTTGART GM 48.766999999999996 9.183 305.0 19360701 20030425 107380 99999 STUTTGART GM EDDS 48.69 9.222000000000001 388.9 19390902 20200624 107390 99999 STUTTGART/SCHNARREN GM 48.833 9.2 315.0 19840807 20030816 107420 99999 OEHRINGEN GM 49.217 9.517000000000001 276.0 19490101 20030816 107430 99999 NIEDERSTETTEN GM ETHN 49.391999999999996 9.958 468.2 19730102 20200624 107450 99999 SCHWABISCH HALL GM EDTY 49.118 9.783999999999999 399.6 19360102 20200624 107460 99999 19311123 19431231 107520 99999 ILLESHEIM AHP GM ETIK 49.474 10.388 328.6 19390901 20200624 107550 99999 ANSBACH AHP / KATTERBACH GERMANY GM ETEB 49.308 10.639000000000001 467.0 19390101 20200624 107552 99999 19730102 19761022 107610 99999 WEISSENBURG GM 49.016999999999996 10.967 422.0 19310102 20030816 107620 99999 FURTH (USA-HP) GM 49.5 10.967 302.0 19310501 20030719 107630 99999 NURNBERG GM EDDN 49.498999999999995 11.078 318.8 19310101 20200624 107635 99999 FURTH (USA-HP) GM EDEW 49.5 10.967 302.0 19460301 19710704 107640 99999 FEUCHT(USA\AF) GM 49.383 11.167 386.0 19680117 20030729 107650 99999 ROTH GM ETHR 49.218 11.1 386.5 19390901 20131205 107655 99999 FEUCHT AAF GM EDIG 49.383 11.167 386.0 19730101 19790108 107710 99999 KUEMMERSBRUCK GM ETGK 49.433 11.9 418.0 19730102 20140925 107715 99999 HOHENFELS (USA-AF)& GM 49.217 11.833 442.0 19730102 19881027 107750 99999 HOHENFELS AAF GM ETIH 49.218 11.835999999999999 443.5 19610918 20200624 107760 99999 REGENSBURG/OBERHUB GM 49.05 12.1 376.0 19310102 20030816 107770 99999 GELBELSEE GM 48.95 11.433 539.0 19870906 20030816 107780 99999 19411001 19431231 107880 99999 STRAUBING GM 48.833 12.567 360.0 19390902 20081231 107910 99999 GROSSER ARBER (MTN) GM 49.117 13.133 1307.0 19490101 20030816 107960 99999 ZWIESEL (AUT) GM 49.033 13.232999999999999 581.0 19760403 20030816 108030 99999 FREIBURG (CIV/FAFB) GM 48.0 7.85 269.0 19310106 20030816 108040 99999 19300730 19411231 108050 99999 LAHR GM EDTL 48.369 7.827999999999999 155.8 19730101 20200624 108051 99999 BADEN OOS GM EDTB 48.791000000000004 8.187000000000001 123.4 20171201 20180522 108055 99999 19740604 19740812 108060 99999 19290521 19411231 108100 99999 19290522 19411231 108150 99999 FREUDENSTADT GM 48.45 8.417 797.0 19730101 20030816 108180 99999 KLIPPENECK (CLIFF) GM 48.1 8.75 973.0 19300903 20030816 108260 99999 TUBINGEN GM 48.516999999999996 9.05 370.0 19730101 19790809 108270 99999 MESSSTETTEN GM ETGZ 48.183 9.0 920.0 19740820 20130930 108280 99999 SIGMARINGEN GM 48.1 9.25 646.0 19950201 20080725 108320 99999 TUERKHEIM GM 48.583 9.783 731.0 20040818 20040818 108330 99999 19360603 19400616 108340 99999 RIEDLINGEN (AUT) GM 48.167 9.5 526.0 19880105 19921231 108350 99999 GOPPINGEN(US ARMY) GM 48.717 9.7 382.0 19730102 19750214 108354 99999 GOPPINGEN (USA-AF) GM 48.717 9.7 382.0 19370104 19900201 108360 99999 STOETTEN GM 48.667 9.867 734.0 19490101 20030816 108365 99999 19750905 19760325 108370 99999 LAUPHEIM GM ETHL 48.22 9.91 538.3 19730102 20200624 108380 99999 ULM (MIL/MET) GM 48.383 9.95 522.0 19490101 20030816 108390 99999 ULM/WILHELMSBURG & GM 48.4 9.982999999999999 596.0 19410116 19430430 108400 99999 19391001 19431231 108410 99999 19410301 19431231 108450 99999 LEIPHEIM(GAFB) GM 48.433 10.232999999999999 489.0 19370802 19940331 108460 99999 19320504 19431231 108500 99999 HARBURG (AUT) GM 48.783 10.7 457.0 19750822 20030816 108520 99999 AUGSBURG GM EDMA 48.425 10.932 461.8 19371101 20200624 108522 99999 AUGSBURG/MULHAUSEN GM 48.433 10.933 461.0 19850205 19900108 108523 99999 AUGSBURG/MULHAUSEN GM 48.433 10.933 461.0 19900111 19901029 108530 99999 NEUBURG GM ETSN 48.711000000000006 11.212 380.7 19380804 20200624 108560 99999 LECHFELD GM ETSL 48.18600000000001 10.860999999999999 555.3 19281114 20200624 108570 99999 LANDSBERG LECH GM ETSA 48.071000000000005 10.905999999999999 623.0 19380103 20180710 108580 99999 FURSTENFELDBRUCK GM ETSF 48.206 11.267000000000001 519.1 19380401 20030814 108590 99999 OBERPFAFFENHOFEN GM 48.083 11.283 600.0 19400902 19431231 108600 99999 INGOLSTADT MANCHING GM ETSI 48.716 11.534 366.4 19391101 20200624 108605 99999 SIEGENBERG G.R.(MIL GM 48.75 11.8 404.0 19730108 19830322 108620 99999 SIEGENBURG(MIL/MET) GM 48.75 11.8 404.0 19830405 20031015 108630 99999 WEIHENSTEPHAN-DURNA GM 48.4 11.7 470.0 19890319 20081231 108640 99999 NEUBIBERG (GER-AFB) GM 48.067 11.633 560.0 19370401 20010409 108644 99999 OBERPFAFFENHOFEN GM EDMO 48.081 11.283 593.4 19920831 20200624 108645 99999 MUNICH/PERLACHER GM EDEM 48.083 11.6 567.0 19731108 19860725 108646 99999 BAYREUTH/BINDLACHER GM 49.983000000000004 11.633 488.0 19771108 19881026 108650 99999 MUNICH GM 48.133 11.55 520.0 19260101 20030816 108660 99999 MUNCHEN GM EDDM 48.354 11.786 453.2 19290801 20200624 108670 99999 OBERSCHLEISSHEIM GM EDPO 48.233000000000004 11.55 486.0 19730102 19810630 108680 99999 MUENCHEN-OBERSCHLEI GM 48.244 11.552999999999999 489.0 19350101 19431231 108690 99999 ERDING GM ETSE 48.321999999999996 11.949000000000002 461.8 19370901 20150130 108700 99999 MUNICH ARPT GM 48.35 11.783 448.0 19920416 20030816 108710 99999 FUERHOLZEN GM 48.333 11.617 510.0 19940327 19990509 108750 99999 MUHLDORF GM 48.283 12.5 401.0 19730101 20030816 108760 99999 19380401 19441231 108930 99999 PASSAU GM 48.583 13.467 409.0 19490101 19921231 108940 99999 19391005 19431231 108950 99999 FUERSTENZELL GM 48.55 13.35 480.0 19980301 20081231 109000 99999 BREMGARTEN(GAFB) GM 47.9 7.617000000000001 217.0 19730101 20020131 109080 99999 FELDBERG/SCHWARZWAL GM 47.883 8.0 1486.0 19310106 20030816 109120 99999 DONAUESCHINGEN VILLINGEN GM EDTD 47.973 8.522 680.0 20040406 20191118 109210 99999 NEUHAUSEN OB ECK GM 47.983000000000004 8.9 804.0 19730102 19950228 109290 99999 KONSTANZ GM EDTZ 47.683 9.183 447.0 19360102 20030816 109340 99999 FRIEDRICHSHAFEN GM 47.65 9.482999999999999 401.0 19590801 19780126 109350 99999 FRIEDRICHSHAFEN GM EDNY 47.67100000000001 9.511000000000001 416.7 19290801 20200624 109353 99999 FRIEDRICHSHAFEN GM 47.667 9.517000000000001 424.0 19880105 19881011 109360 99999 19340102 19420630 109460 99999 KEMPTEN/DURACH GM 47.717 10.333 705.0 19410114 20030816 109470 99999 ALLGAU GM EDJA 47.989 10.24 629.1 19370401 20200624 109480 99999 OBERSTDORF GM 47.4 10.283 810.0 19730101 20030628 109530 99999 KAUFBEUREN(GAFB) GM 47.867 10.617 721.0 19360102 20030227 109540 99999 ALTENSTADT GM ETHA 47.833 10.867 760.0 19321122 20200624 109543 99999 ALTENSTADT (GAM) & GM EDPL 47.833 10.867 739.0 19881027 19901029 109610 99999 ZUGSPITZE MOUNTAIN GM 47.417 10.982999999999999 2960.0 19310101 20030816 109620 99999 HOHENPEISSENBERG GM 47.8 11.017000000000001 977.0 19370402 20030816 109630 99999 GARMISCH (USA-HP) GM 47.483000000000004 11.067 719.0 19490101 20030816 109650 99999 MITTENWALD GM 47.417 11.267000000000001 1035.0 19300602 19401231 109710 99999 BAD TOLZ (USA-AF) GM 47.766999999999996 11.6 716.0 19730102 19990321 109711 99999 BAD TOLZ (USA-AF) & GM EDOV 47.766999999999996 11.6 716.0 19640916 19861114 109720 99999 19310515 19431231 109800 99999 WENDELSTEIN MTN GM 47.7 12.017000000000001 1832.0 19730101 20030816 109820 99999 CHIEMING (AUT) GM 47.883 12.533 549.0 19420101 20030816 109970 99999 19730101 19751219 109973 99999 ALTENSTADT (GAM) & GM 47.833 10.867 739.0 19870119 19881027 109999 99999 19730101 19730531 110010 99999 WOLFSEGG AU 48.1 13.667 615.6 19730715 20200624 110030 99999 RIED IM INNKREIS AU 48.217 13.482999999999999 443.0 19520103 20050409 110050 99999 SCHAERDING/SUBEN AU 48.4 13.433 330.0 20010807 20010807 110080 99999 ROHRBACH AU 48.567 14.0 602.0 19761101 20200624 110090 99999 WELS/FLUGFELD AU 48.183 14.033 318.0 19340502 20050814 110100 99999 LINZ AU LOWL 48.233000000000004 14.187999999999999 298.1 19341001 20200624 110110 99999 HORSCHING (AUS-AFB) AU LOXL 48.233000000000004 14.183 313.0 19391204 20030929 110120 99999 KREMSMUENSTER AU 48.05 14.133 389.0 19730802 20200624 110130 99999 STADT HAAG/HEIMBERG AU 48.117 14.617 408.0 20030120 20040827 110140 99999 KOENIGSWIESEN AU 48.4 14.833 608.0 19730706 20041212 110150 99999 FREISTADT AU 48.5 14.5 548.0 19730623 20140804 110160 99999 FREISTADT-FLUGFELD AU 48.516999999999996 14.417 682.0 20010807 20031001 110161 99999 WIENER NEUSTADT EAST AU LOAN 47.843 16.26 273.1 20040510 20200624 110162 99999 LUGPLATZ VOSLAU AU LOAV 47.967 16.267 233.0 20040510 20200624 110163 99999 PUNITZ / GUESSING AU LOGG 47.15 16.317 290.0 20040519 20130620 110164 99999 OBEROSTERREICH / FREISTADT AU LOLF 48.516999999999996 14.417 685.0 20040510 20080208 110165 99999 WIENER NEUSTADT AU LOXN 47.85 16.25 272.0 20040510 20200624 110170 99999 FREISTADT AU 48.516999999999996 14.5 563.0 20031008 20050910 110180 99999 AMSTETTEN AU 48.1 14.9 271.0 19650526 20200624 110190 99999 ALLENTSTEIG AU 48.683 15.367 607.0 19940601 20200624 110200 99999 STIFT ZWETTL AU 48.617 15.2 506.0 19791002 20200624 110210 99999 LITSCHAU AU 48.95 15.033 556.7 19761021 20200624 110220 99999 RETZ AU 48.766999999999996 15.95 323.0 19650526 20200624 110230 99999 GARS AM KAMP AU 48.583 15.667 267.0 20140521 20160518 110240 99999 JAUERLING AU 48.333 15.333 959.0 19730623 20200624 110250 99999 WEITRA AU 48.7 14.883 471.0 20140521 20200624 110260 99999 KREMS/LANGENLOIS GNEIXENDORF AU 48.45 15.633 312.0 20041211 20050315 110270 99999 STOCKERAU AU 48.4 16.2 205.1 19330102 20200624 110280 99999 ST. POELTEN AU 48.183 15.617 284.0 19520101 20050721 110300 99999 TULLN AU LOXT 48.321000000000005 16.112000000000002 175.3 19400311 20200624 110320 99999 POYSDORF AU 48.667 16.633 207.0 19730821 20200624 110330 99999 BREITENFORT AU 48.15 16.133 440.0 19820101 19850502 110340 99999 WIEN/INNERE STADT AU 48.2 16.367 171.0 19900705 20200624 110350 99999 WIEN/HOHE WARTE AU 48.25 16.367 200.0 19310102 20200624 110360 99999 SCHWECHAT AU LOWW 48.11 16.57 182.9 19520101 20200624 110370 99999 GROSSENZERSDORF AU 48.2 16.567 153.0 20080310 20200624 110380 99999 RAUCHENWARTH BEI SCHWECHAT AU 48.067 16.533 205.0 19400411 19440831 110390 99999 SPITZERBERG AIRPORT AU 48.1 16.933 183.0 19380101 20050517 110400 99999 WIEN/UNTERLAA AU 48.133 16.417 199.0 20010919 20200624 110510 99999 RANSHOFEN AU 48.217 13.033 388.1 19950801 20200624 110520 99999 FELDKIRCHEN AU 48.067 13.067 550.0 20041018 20051008 110530 99999 RIED IM INNKREIS AU 48.217 13.482999999999999 429.2 20010919 20200624 110550 99999 SCHAERDING AU 48.467 13.433 318.0 19941012 20200624 110590 99999 WELS/SCHLEISSHEIM AU 48.167 14.067 314.0 20050928 20200624 110600 99999 LINZ/STADT AU 48.3 14.283 263.0 19940601 20200624 110700 99999 KREMS AU 48.417 15.617 204.0 20010919 20200624 110750 99999 LANGENOIS (AUT) AU LOAG 48.467 15.7 210.0 19901201 20200624 110780 99999 LILIENFELD/TARSCHBERG AU 48.033 15.583 696.0 19940201 20200624 110800 99999 WIEN/MARIABRUNN AU 48.2 16.233 227.0 20031021 20200624 110810 99999 BADEN AU 48.0 16.233 244.0 19910206 20100225 110820 99999 GUMPOLDSKIRCHEN AU 48.033 16.283 233.0 19920201 20200624 110830 99999 LEISER BERGE AU 48.567 16.367 451.0 20040306 20200624 110850 99999 ZWERNDORF-MARCHEGG AU 48.333 16.833 146.0 20040430 20200624 110900 99999 WEIN-DONAUFELD AU 48.25 16.433 161.0 20140521 20200420 111010 99999 BREGENZ AU 47.5 9.75 441.9 19650526 20200624 111030 99999 HOHENEMS/DORNBIRN FLUGFELD AU 47.383 9.7 418.0 20010810 20040506 111050 99999 FELDKIRCH AU 47.266999999999996 9.617 439.0 19661006 20200624 111060 99999 LAZ/MUTTERSBERG AU 47.183 9.817 900.0 19761007 20031011 111090 99999 ST ANTON AM ARLBERG AU 47.133 10.317 1275.0 19820301 20200320 111100 99999 GALZIG AU 47.133 10.232999999999999 2080.0 19821030 20200624 111120 99999 LANDECK AU 47.14 10.564 806.5 19650526 20200624 111130 99999 NAUDERS AU 46.883 10.482999999999999 1330.0 20141207 20200308 111140 99999 REUTTE/HOEFEN ARPT AU 47.467 10.7 857.0 20020131 20041209 111150 99999 VILS BEI REUTTE AU 47.567 10.6 832.0 19670613 19780204 111160 99999 REUTTE/TIROL AU 47.5 10.75 870.0 19790807 20200612 111190 99999 SEEFELD AU 47.317 11.183 1183.7 19670622 20200624 111200 99999 INNSBRUCK AU LOWI 47.26 11.344000000000001 580.9 19310104 20200624 111210 99999 INNSBRUCK-FLUGHAFEN AU 47.25 11.35 579.0 20140521 20200624 111220 99999 SCHWAZ (HELIPORT) AU LOXS 47.333 11.7 543.0 19760930 20020717 111240 99999 VALLUGA (RADAR) AU 47.15 10.2 2809.0 20161011 20190411 111260 99999 PATSCHERKOFEL AU 47.217 11.467 2254.0 19670622 20200624 111270 99999 OBERGURGL AU 46.867 11.033 1937.0 19840102 20200624 111280 99999 BRENNER AU 47.0 11.517000000000001 1447.0 19670609 20110221 111290 99999 PASSO DEL BRENNERO IT LIVB 47.0 11.5 -999.9 19870519 20200624 111300 99999 KUFSTEIN AU 47.583 12.167 493.0 19650526 20200624 111320 99999 SAINT JOHANN/TIROL AU 47.516999999999996 12.45 670.0 19380103 20030206 111330 99999 ST. JOHANN IN TIROL AU 47.516999999999996 12.45 670.0 20040824 20040824 111340 99999 GERLOS AU 47.217 12.033 1250.0 20011014 20040511 111350 99999 HAHNENKAMM/EHRENBACHHOEHE AU 47.417 12.367 1763.6 19730101 20171027 111360 99999 KRIMML AU 47.233000000000004 12.183 1010.7 19730704 20200624 111370 99999 MARIA ALM AU 47.4 12.9 792.0 20050719 20200420 111380 99999 ALPINZENTRUM RUDOLFSHUETTE AU 47.133 12.633 2310.0 19810401 20200624 111390 99999 ANNABERG IM LAMMERTAL AU 47.55 13.433 885.0 20030227 20030227 111400 99999 LOFER AU 47.583 12.7 629.0 19730724 20200624 111410 99999 BISCHOFSHOFEN AU 47.4 13.217 548.0 19810303 20200624 111420 99999 ST. JOHANN/PONGAU AU 47.317 13.183 647.0 20010919 20200623 111430 99999 ZELL AM SEE-FLUGFELD AU 47.3 12.783 754.0 19380103 20040403 111440 99999 ZELL AM SEE (AUT) AU LOWZ 47.333 12.8 763.0 19661003 20200420 111450 99999 BAD GASTEIN AU 47.117 13.133 1100.0 19730228 20041020 111460 99999 SONNBLICK AU 47.05 12.95 3109.0 19390101 20200122 111470 99999 RADSTADT AU 47.383 13.45 861.0 19731108 20081231 111480 99999 ST. MICHAEL IM LUNGAU AU 47.1 13.65 1094.0 19730712 20200624 111490 99999 OBERTAUERN AU 47.25 13.567 1744.9 19730425 20200624 111500 99999 SALZBURG AU LOWS 47.793 13.004000000000001 430.1 19380601 20200624 111510 99999 SEEWALCHEN/ATTERSEE AU 47.95 13.6 496.0 19830701 20050819 111520 99999 MATTSEE AU 47.983000000000004 13.1 503.0 19730821 20200624 111530 99999 MONDSEE AU 47.85 13.367 491.0 19730814 20200624 111540 99999 GMUNDEN AU 47.9 13.8 428.0 19730820 20161211 111550 99999 FEUERKOGEL AU 47.817 13.717 1620.1 19650526 20200624 111560 99999 BAD ISCHL AU 47.717 13.633 470.0 19730731 20070131 111570 99999 AIGEN/ENNSTAL (MIL) AU LOXA 47.533 14.133 649.0 19380103 20200624 111580 99999 BOGUS AUSTRIAN AU 47.117 13.732999999999999 -999.0 19380102 20040908 111590 99999 PYHRNPASS AU 47.617 14.3 940.0 20010804 20021108 111600 99999 HIEFLAU AU 47.6 14.75 492.0 19800408 20070912 111610 99999 PRAEBICHL AU 47.516999999999996 14.95 1214.2 19730821 20200624 111620 99999 MAUTERNDORF AU 47.133 13.683 1115.0 20011221 20171231 111630 99999 STOLZALPE (MOUNT) AU 47.117 14.2 1305.0 19730821 20040914 111640 99999 ZIRBITZKOGEL AU 47.067 14.56 2372.0 20050830 20050830 111650 99999 ZELTWEG AU LOXZ 47.203 14.744000000000002 676.7 19380601 20200624 111680 99999 WALD AM SCHOBER AU 47.45 14.667 849.0 20020331 20030304 111690 99999 GEMEINDEALPE/MITTER AU 47.817 15.25 1626.0 19870301 19900406 111700 99999 LUNZ AU 47.85 15.067 615.0 19730624 20200624 111710 99999 ST SEBASTIAN/MARIAZELL AU 47.8 15.3 872.0 19870901 20200624 111720 99999 MARIAZELL AU 47.766999999999996 15.317 875.0 19730101 20171224 111730 99999 FISHBACH AU 47.45 15.65 1050.0 20060711 20200420 111740 99999 ST. MICHAEL/LEOBEN AU 47.333 15.0 572.0 19850904 20081231 111750 99999 BRUCK/MUR AU 47.417 15.267000000000001 482.0 19661006 20200624 111760 99999 KAPFENBERG-FLUGFELD AU 47.467 15.333 527.0 20181107 20200624 111770 99999 KUB AU 47.683 15.867 462.0 19330103 19380630 111800 99999 RAX/SEILBAHN-BERGSTATION AU 47.717 15.783 1554.0 19770114 20200624 111810 99999 VOESLAU-FLUGFELD AU 47.967 16.267 233.0 19390302 20021111 111820 99999 WIENER NEUSTADT AU 47.833 16.217 285.0 19340501 20200624 111830 99999 SEMMERING AU 47.633 15.817 960.0 19761101 20041108 111840 99999 STUHLECK MOUNTAIN AU 47.567 15.783 1782.0 19790701 19800226 111850 99999 MOENICHKIRCHEN AU 47.516999999999996 16.033 994.0 19650526 20200624 111860 99999 MOENICHKIRCHEN/OST AU 47.516999999999996 16.05 940.0 19890703 19891118 111890 99999 BAD TATZMANNSDORF AU 47.333 16.233 360.0 19761202 19791220 111900 99999 EISENSTADT AU 47.85 16.533 189.3 19730627 20200624 111910 99999 TRAUSDORF AIRPORT AU LOAT 47.8 16.567 164.0 20010824 20021222 111920 99999 KLEINZICKEN AU 47.2 16.333 267.0 19780502 20200624 111930 99999 BAD TATZMANNSDORF AU 47.333 16.217 340.0 20060726 20200420 111940 99999 NEUSIEDL AM SEE AU 47.95 16.85 132.0 19850102 20081231 111950 99999 PUNITZ/GUESSING FLUGFELD AU 47.15 16.317 290.0 19810603 20050924 112010 99999 SILLIAN AU 46.75 12.417 1081.0 20080310 20200624 112020 99999 FELBERTAUERN/SUEDPORTAL AU 47.117 12.5 1632.0 19810626 20040124 112030 99999 ISELSBERG AU 46.85 12.867 1208.0 20040704 20050104 112040 99999 LIENZ AU 46.833 12.817 666.0 19380401 20200624 112050 99999 LAVANT AU 46.8 12.85 660.0 20040719 20050531 112070 99999 REISACH AU 46.65 13.15 646.0 19730724 20071231 112100 99999 MALLNITZ AU 46.983000000000004 13.183 1185.0 19761101 20050706 112110 99999 RADENTHEIN AU 46.783 13.7 685.0 19751230 20030731 112120 99999 VILLACHERALPE AU 46.6 13.667 2160.0 19650526 20190105 112130 99999 VILLACH AU 46.617 13.883 494.0 19761102 20200624 112140 99999 PREITENEGG AU 46.933 14.917 1035.0 19650526 20200624 112150 99999 MILLSTATT AU 46.808 13.573 719.0 19381214 19440630 112190 99999 NEUMARKTER SATTEL AU 47.117 14.4 1125.0 19870301 20031212 112200 99999 NEUMARKT AU 47.067 14.417 870.0 19761101 20200624 112250 99999 WEITENSFELD AU 46.85 14.183 712.4 19761102 20200624 112270 99999 FELDKIRCHEN AU 46.717 14.1 551.0 20080310 20200624 112280 99999 FRIESACH AU 46.967 14.4 641.3 20141230 20180223 112290 99999 ST. ANDRAE I.L. AU 46.766999999999996 14.833 404.0 19771101 20200624 112310 99999 KLAGENFURT(CIV/MIL) AU LOWK 46.65 14.333 452.0 19310107 20200624 112320 99999 FEISTRITZ OB BLEIBURG AU 46.567 14.767000000000001 527.0 19930101 20200624 112330 99999 SAINT MICHAEL AU 46.583 14.75 500.0 19761101 20051024 112340 99999 BAD EISENKAPPEL AU 46.5 14.593 620.0 20040619 20200420 112360 99999 UEBELBACH/REICHERHOEHE AU 47.233000000000004 15.232999999999999 999.0 20030221 20030819 112370 99999 ST VIET/GLAN AU 46.733000000000004 14.383 462.0 19761101 19900315 112400 99999 GRAZ AU LOWG 46.99100000000001 15.44 339.9 19340201 20200624 112410 99999 SCHOECKL AU 47.2 15.467 1442.0 19761101 20200624 112420 99999 ST RADEGUND AU 47.167 15.482999999999999 725.0 20140521 20200420 112440 99999 BAD GLEICHENBERG AU 46.867 15.9 282.0 20071016 20200624 112450 99999 BAD GLEICHENBERG AU 46.867 15.9 326.0 19390406 20030731 112480 99999 BAD RADKERSBURG AU 46.683 15.982999999999999 214.0 19940801 20160405 112520 99999 VIRGEN AU 47.0 12.45 1190.0 19940201 20200624 112550 99999 KOETSCHACH-MAUTHEN AU 46.683 13.0 711.0 19901201 20200624 112600 99999 MALLNITZ-BAD AU 47.0 13.167 1201.2 19901201 20200619 112610 99999 OBERVELLACH AU 46.933 13.217 809.0 19910202 20150201 112630 99999 WEISSENSEE/GATSCHACH AU 46.717 13.283 954.0 20040610 20200420 112650 99999 VILLACHER ALPE AUTOM AU 46.6 13.667 2160.0 20010919 20200624 112700 99999 DELLACH IM DRAUTAL AU 46.733000000000004 13.083 625.0 19910214 20200624 112720 99999 SPITTAL/DRAU AU 46.783 13.482999999999999 542.0 20050815 20200624 112750 99999 ARRIACH AU 46.733000000000004 13.85 892.3 19901201 20200624 112780 99999 POERTSCHACH AU 46.633 14.167 453.0 20080310 20200420 112800 99999 MURAU AU 47.117 14.183 813.0 19901201 20200624 112850 99999 DEUTSCHLANDSBERG AU 46.817 15.232999999999999 355.0 20040223 20200624 112900 99999 GRAZ UNIVERSITAET AU 47.083 15.45 378.0 19920215 20200624 112920 99999 LASSNITZHOEHE AU 47.067 15.583 533.0 19901201 20200624 112950 99999 LEIBNITZ AU 46.783 15.55 272.0 20010919 20031028 112960 99999 LEIBNITZ AU 46.766999999999996 15.55 265.7 20140521 20200624 112980 99999 FELDBACH AU 46.933 15.867 283.0 20091117 20200624 113010 99999 ALBERSCHWENDE AU 47.45 9.85 719.0 20100224 20200624 113020 99999 DORNBIRN AU LOIH 47.433 9.732999999999999 410.0 19951001 20200624 113040 99999 BRAND AU 47.1 9.732999999999999 1029.0 20140521 20200624 113060 99999 SCHROECKEN AU 47.266999999999996 10.083 1243.9 20141213 20200409 113070 99999 LANGEN/ARLBERG AU 47.117 10.117 1221.0 20141211 20200331 113080 99999 WARTH AU 47.25 10.183 1471.0 19910205 20200624 113090 99999 GARGELLEN AU 46.967 9.917 438.0 19290204 19381231 113100 99999 ISCHGL/IDALPE AU 46.983000000000004 10.317 2319.0 19901201 20200624 113120 99999 GALTUER AU 46.967 10.183 1584.0 20100224 20200624 113150 99999 HOLZGAU AU 47.25 10.333 1140.0 20141024 20200331 113160 99999 PITZTALER GLETSCHER AU 46.933 10.883 2843.0 20070226 20200624 113180 99999 BRUNNENKOGEL/OETZTALER ALPEN AU 46.917 10.867 3429.5 20050218 20200624 113200 99999 INNSBRUCK/UNIVERSITAET AU 47.266999999999996 11.383 579.0 19990109 20020916 113250 99999 JENBACH AU 47.383 11.75 531.4 20091117 20200624 113280 99999 ACHENKIRCH AU 47.516999999999996 11.7 904.0 20140521 20161004 113300 99999 MAYRHOFEN AU 47.167 11.85 633.0 20140521 20200624 113310 99999 KLAGENFURT-FLUGHAFEFN AU 46.633 14.317 450.0 20140521 20200624 113320 99999 MISTELBACH AU 48.567 16.6 195.0 20140521 20200420 113360 99999 KITZBUEHEL AU 47.433 12.383 746.0 20141024 20141024 113370 99999 LOFERER ALM AU 47.6 12.65 1626.0 20091117 20200624 113400 99999 SCHMITTENHOEHE AU 47.333 12.732999999999999 1954.4 19900601 20200624 113420 99999 BAD GASTEIN/BOECKSTEIN AU 47.1 13.117 1100.0 20010919 20100207 113430 99999 SONNBLICK - AUTOM. AU 47.05 12.95 3113.8 20010919 20200624 113450 99999 ST VEIT IM PONGAU AU 47.333 13.15 749.2 19900601 20200624 113460 99999 RAURIS AU 47.217 13.0 935.0 19940601 20200624 113480 99999 MARIAPFARR AU 47.15 13.75 1151.0 19911102 20200420 113490 99999 KATSCHBERG AU 47.067 13.617 1637.3 20140521 20200624 113500 99999 SALZBURG/FREISAAL AU 47.783 13.05 423.0 19941001 20200624 113510 99999 RAMSAU/DACHSTEIN AU 47.433 13.633 1209.7 19911102 20200624 113520 99999 FRANKENMARKT AU 47.983000000000004 13.417 571.0 20140521 20170315 113530 99999 SCHOBERSTEIN AU 47.9 14.333 1250.0 20040127 20040301 113540 99999 BAD GOISERN AU 47.633 13.617 503.0 20010919 20160426 113550 99999 WINDISCHGARSTEN AU 47.733000000000004 14.333 614.0 19900601 20200624 113560 99999 BAD AUSSEE AU 47.617 13.75 747.0 19950102 20200624 113570 99999 ST. WOLFGANG AU 47.733000000000004 13.45 537.0 19900601 20200624 113580 99999 BAD MITTERNDORF AU 47.55 13.933 803.0 19950102 20200624 113590 99999 GROEBMING AU 47.433 13.9 765.0 20140521 20200624 113600 99999 IRDNING/GUMPENSTEIN AU 47.5 14.1 707.0 19900601 20030731 113620 99999 KALWANG AU 47.417 14.767000000000001 744.0 20040512 20200624 113650 99999 ZELTWEG/AUTOM. STAT. AU 47.2 14.767000000000001 682.0 20091117 20200624 113660 99999 SAALBACH AU 47.383 12.65 980.6 20141111 20200624 113670 99999 BAERNKOPF AU 48.383 15.0 970.0 20140521 20200624 113700 99999 KAPFENBERG AU 47.45 15.3 506.4 20010919 20180516 113720 99999 BAD GASTEIN AU 47.1 13.133 1092.0 20141112 20190712 113750 99999 AFLENZ AU 47.55 15.232999999999999 774.0 20091117 20200624 113780 99999 GUTENSTEIN-MARIAHILFBERG AU 47.867 15.883 709.0 20091117 20200624 113800 99999 REICHENAU/RAX AU 47.7 15.833 486.0 19910206 20200624 113820 99999 PUCHBERG AU 47.783 15.9 582.0 19910401 20200624 113830 99999 SEMMERING AU 47.617 15.817 985.0 19910217 20200624 113840 99999 HIRSCHENKOGEL AU 47.617 15.833 1319.0 19950701 20200624 113850 99999 HOHE WAND/HOCHKOGELHAUS AU 47.817 16.033 939.0 19940201 20200624 113860 99999 KRUMBACH ID BUCKLIGEN WELT AU 47.516999999999996 16.183 545.0 20140521 20200420 113870 99999 SEIBERSDORF AU 47.983000000000004 16.5 186.0 20040820 20200624 113890 99999 ST POELTEN LANDHAUS AU 48.183 15.617 273.0 20071016 20200624 113900 99999 HARTBERG AU 47.283 15.982999999999999 335.0 20091117 20200624 113930 99999 LUTZMANNSBURG AU 47.467 16.667 199.0 20041214 20200624 113950 99999 ANDAU AU 47.766999999999996 17.033 122.0 20091117 20200624 114060 99999 CHEB EZ 50.067 12.383 490.0 19370102 20200624 114140 99999 KARLOVY VARY EZ LKKV 50.203 12.915 606.2 19390101 20200624 114180 99999 MARIANSKE LAZNE EZ 49.917 12.717 541.0 19390901 20010907 114230 99999 PRIMDA EZ 49.667 12.683 747.4 19400102 20200624 114231 99999 CESKE BUDEJOVICE EZ LKCS 48.946000000000005 14.427 443.0 20040510 20090328 114232 99999 KBELY EZ LKKB 50.121 14.544 286.2 20040510 20200624 114233 99999 KUNOVICE EZ LKKU 49.028999999999996 17.44 177.1 20040510 20200624 114234 99999 LIBEREC EZ LKLB 50.766999999999996 15.017000000000001 398.0 20040510 20130102 114330 99999 KOPISTY EZ 50.55 13.617 240.0 20080401 20090525 114380 99999 TUSIMICE EZ 50.383 13.333 326.2 19780608 20200624 114480 99999 PLZEN LINE EZ LKLN 49.675 13.275 362.1 19390401 20200624 114500 99999 PLZEN-MIKULKA EZ 49.766999999999996 13.383 371.5 19370301 20200624 114550 99999 LUBY EZ 49.383 13.3 397.0 19401001 19431231 114570 99999 CHURANOV EZ 49.067 13.617 1122.2 19730101 20200624 114640 99999 MILESOVKA EZ 50.55 13.933 842.6 19310202 20200624 114650 99999 TEPLICE EZ 50.65 13.8 228.0 19330503 20090617 114870 99999 KOCELOVICE EZ 49.467 13.833 521.9 19750801 20200624 115020 99999 USTI NAD LABEM EZ 50.683 14.033 378.6 19780714 20200624 115090 99999 DOKSANY EZ 50.467 14.167 160.2 19950401 20200624 115180 99999 RUZYNE EZ LKPR 50.101000000000006 14.26 380.1 19290801 20200624 115190 99999 PRAHA-KARLOV / KLEMENTINUM EZ 50.067 14.433 254.0 19310101 20200624 115200 99999 PRAHA-LIBUS EZ 50.0 14.45 303.7 19730101 20200624 115351 99999 BECHYNE ARPT EZ LKBC 49.273999999999994 14.502 431.0 20180816 20200624 115380 99999 TEMELIN EZ 49.2 14.35 508.0 19891201 20200624 115400 99999 HOSIN EZ 49.033 14.482999999999999 488.0 19880301 20030726 115410 99999 CESKE BUDEJOVICE EZ 48.95 14.433 436.0 19330102 20070227 115420 99999 19400501 19431231 115430 99999 OLSINA EZ 48.8 14.133 766.0 19411201 19531231 115440 99999 19391001 19431231 115460 99999 C. BUDEJOVICE-ROZNOV EZ 48.95 14.467 396.4 20010915 20200624 115670 99999 PRAHA-KBELY EZ 50.117 14.533 285.5 19390321 20200624 115820 99999 TABOR EZ 49.417 14.667 444.0 19520101 19531231 116030 99999 LIBEREC EZ 50.766999999999996 15.017000000000001 401.5 19370302 20200624 116240 99999 CASLAV EZ LKCV 49.94 15.382 242.0 19970101 20200624 116280 99999 KOSETICE EZ 49.567 15.083 532.1 19881001 20200624 116360 99999 KOSTELNI MYSLOVA EZ 49.167 15.433 572.4 19520101 20200624 116380 99999 BOGUS CZECHOSLOVAK EZ 19870626 19890117 116430 99999 PEC POD SNEZKOU EZ 50.7 15.732999999999999 820.6 19310101 20200624 116440 99999 ZACLER EZ 50.667 15.917 173.0 19381117 19411231 116450 99999 BROUMOV EZ 50.583 16.333 128.0 19400816 19420630 116480 99999 HRADEC KRALOVE EZ 50.25 15.85 244.0 19390317 20030731 116490 99999 HRADEC KRALOVE EZ 50.183 15.833 285.0 20070226 20070227 116500 99999 HAVLICKUV BROD EZ 49.617 15.583 456.0 19400301 19431231 116520 99999 PARDUBICE EZ LKPD 50.013000000000005 15.739 225.9 19960506 20200624 116530 99999 SNEZKA EZ 50.733000000000004 15.732999999999999 1602.0 20090501 20200624 116580 99999 VESELICE EZ 49.617 15.533 459.0 19520101 19531231 116590 99999 PRIBYSLAV EZ 49.583 15.767000000000001 536.4 19370102 20200624 116690 99999 POLOM EZ 50.35 16.317 747.2 20080101 20081231 116790 99999 USTI NAD ORLICI EZ 49.983000000000004 16.417 404.9 19730101 20200624 116830 99999 SVRATOUCH EZ 49.733000000000004 16.033 740.4 19770601 20200624 116920 99999 NAMEST EZ LKNA 49.166000000000004 16.125 471.8 19960506 20200624 116930 99999 DUKOVANY EZ 49.1 16.133 402.0 19871001 20200624 116980 99999 KUCHAROVICE EZ 48.883 16.083 338.7 19780608 20200624 117100 99999 LUKA EZ 49.65 16.95 515.6 19770601 20200624 117220 99999 BRNO-SOKOLNICE EZ 49.117 16.75 300.0 19520101 20040607 117230 99999 TURANY EZ LKTB 49.151 16.694000000000003 237.1 19390320 20200624 117240 99999 LICHKOV EZ 50.1 16.683 160.0 19390221 19420630 117250 99999 DOLNI BENESOV EZ 49.917 18.1 75.0 19401101 19420630 117300 99999 SERAK EZ 50.183 17.117 1327.5 20040706 20200624 117350 99999 PRADED MOUNTAIN EZ 50.067 17.233 1492.0 19370102 20020307 117400 99999 OPAVA EZ 49.933 17.883 267.0 19370103 19420630 117440 99999 OLOMOUC EZ 49.6 17.217 263.0 19410101 19411231 117470 99999 PROSTEJOV EZ 49.45 17.133 216.0 20140930 20200624 117480 99999 PREROV EZ LKPO 49.426 17.405 206.0 19960506 20131001 117500 99999 PREROV EZ 49.433 17.4 205.0 19740204 19900315 117660 99999 CERVENA EZ 49.783 17.55 753.3 19780608 20200624 117740 99999 HOLESOV EZ LKHO 49.317 17.567 224.0 19530404 20200624 117810 99999 NOVY JICIN EZ 49.6 18.017 87.0 19401001 19420630 117820 99999 MOSNOV EZ LKMT 49.696000000000005 18.111 257.3 19520101 20200624 117830 99999 19410115 19431231 117870 99999 LYSA HORA EZ 49.55 18.45 1326.8 19730101 20200624 118010 99999 MALACKY LO LZMC 48.4 17.15 207.0 20031123 20200624 118120 99999 MALY JAVORNIK LO 48.25 17.15 368.5 20120101 20200624 118130 99999 BRATISLAVA-LOLIBA LO 48.167 17.117 163.1 20120101 20200624 118160 99999 M R STEFANIK LO LZIB 48.17 17.213 132.9 19400101 20200624 118190 99999 JASLOVSKE BOHUNICE LO 48.483000000000004 17.667 178.0 20040909 20200624 118260 99999 PIESTANY LO LKPP 48.617 17.833 164.0 19370102 20200624 118410 99999 ZILINA/HRICOV LO 49.233000000000004 18.617 311.0 19750515 20200624 118550 99999 NITRA LO 48.283 18.133 136.0 19370102 20200624 118560 99999 MOCHOVCE LO 48.283 18.45 262.0 20100226 20200624 118580 99999 HURBANOVO LO 47.867 18.2 124.0 19730101 20200624 118650 99999 ZILINA EZ 49.2 18.767 365.0 19570401 19750620 118670 99999 PRIEVIDZA LO 48.766999999999996 18.6 261.0 19780606 20200624 118800 99999 DUDINCE LO 48.167 18.867 140.0 19780308 20200624 119000 99999 BAISOARA RO 46.533 23.3 1356.0 20120501 20200624 119030 99999 SLIAC LO LKSL 48.65 19.15 315.0 19520101 20200624 119060 99999 LEST GM 48.35 19.317 720.0 19521106 19531231 119160 99999 CHOPOK LO 48.983000000000004 19.6 2007.0 19730101 20200624 119180 99999 LIESEK LO 49.367 19.683 693.0 19330301 20200624 119270 99999 LUCENEC LO LZLU 48.333 19.733 214.0 19780608 20200624 119271 99999 KOSICE LO LZKZ 48.663000000000004 21.241 230.1 20040510 20200624 119272 99999 NITRA LO LZNI 48.283 18.133 134.0 20040510 20121231 119273 99999 PRIEVIDZA LO LZPE 48.766999999999996 18.583 260.0 20040510 20121231 119274 99999 PIESTANY LO LZPP 48.625 17.828 166.1 20040510 20200624 119275 99999 SLIAC LO LZSL 48.638000000000005 19.134 317.9 20040510 20200624 119276 99999 ZILINA LO LZZI 49.232 18.614 310.9 20040510 20200624 119300 99999 LOMNICKY STIT LO 49.2 20.217 2635.0 19520101 20200624 119330 99999 KAMENICA NAD CIROCHOU LO LZKC 48.933 22.0 177.0 19780608 20200624 119340 99999 TATRY LO LZTT 49.074 20.241 718.1 19570312 20200624 119380 99999 TELGART LO 48.85 20.183 906.0 19780608 20200624 119520 99999 POPRAD-GANOVCE LO 49.033 20.317 703.0 20000530 20200624 119550 99999 PRESOV LO LZPW 49.033 21.316999999999997 324.0 20110815 20200624 119580 99999 KOJSOVSKA HOLA LO 48.783 20.983 1246.0 20060228 20200624 119650 99999 19330504 19361223 119680 99999 KOSICE LO LKKZ 48.667 21.217 231.0 19520101 20200624 119760 99999 STROPKOV TISINEC LO 49.217 21.65 217.0 19780608 20200624 119780 99999 MILHOSTOV LO 48.667 21.733 106.0 19890103 20200624 119930 99999 KAMENICA NAD CIROCHOU LO 48.933 22.0 178.0 19730101 20200624 119950 99999 SPISSKA NOVA VES FLD LO 48.933 20.55 495.0 19410101 19411231 120010 99999 PETROBALTIC BETA PL 55.467 18.167 46.0 20141127 20200624 121000 99999 KOLOBRZEG PL 54.183 15.583 5.0 19350101 20200624 121010 99999 BEACON 186 PL 54.15 15.35 1.0 19390103 19431231 121020 99999 DZWIRZYNO PL 54.016999999999996 14.767000000000001 1.0 19370601 19431231 121030 99999 DZIWNOW PL 54.016999999999996 14.732999999999999 4.0 19870103 20081017 121050 99999 KOSZALIN PL EPKO 54.2 16.15 34.0 19520101 20200624 121051 99999 BABICE PL EPBC 52.268 20.910999999999998 107.3 20040526 20200624 121052 99999 INOWROCLAW PL 52.817 18.333 83.0 20040510 20200624 121053 99999 LECZYCA PL 52.0 19.15 150.0 19880421 20200624 121054 99999 TOMASZOW PL EPTM 51.533 20.017 190.0 20040510 20200624 121055 99999 LUBLINEK PL 51.717 19.4 184.0 20040810 20200624 121056 99999 MODLIN PL EPMO 52.451 20.651999999999997 103.9 20120718 20200624 121060 99999 KOSZALIN ZEGRZE PL 54.033 16.3 72.0 19740215 20020422 121070 99999 BOGUS POLISH PL 54.283 16.117 -999.0 19350718 20010804 121080 99999 POLANOW PL 54.117 16.683 24.0 19360102 19420630 121110 99999 BOGUS POLISH PL 19861101 20011029 121120 99999 BYTOW PL 54.167 17.5 38.0 19360102 19411231 121140 99999 NIECHORZE PL 54.1 15.067 10.0 19300201 20081017 121150 99999 USTKA PL 54.583 16.867 11.0 19370715 20200624 121160 99999 MRZEZYNO PL 54.15 15.3 8.0 19310101 20060203 121163 99999 REDZIKOWO PL EPSK 54.479 17.108 66.1 19901120 20120730 121170 99999 BOGUS POLISH PL 19861101 20020705 121180 99999 KOLOBRZEG PL 54.183 15.55 6.0 20020601 20081017 121190 99999 GASKI PL 54.25 15.85 9.0 20020601 20070830 121195 99999 LUBLIN AIRPORT PL EPLB 51.233000000000004 22.683000000000003 203.0 20130521 20200624 121200 99999 LEBA PL 54.75 17.533 6.0 19730101 20200624 121220 99999 WICKO MORSKIE PL EPWI 54.55 16.62 3.0 20020820 20200608 121230 99999 LAZY PL 54.3 16.183 8.0 20020601 20070305 121240 99999 DARLOWEK PL EPDA 54.4 16.35 5.0 20020601 20200624 121250 99999 LEBORK PL 54.55 17.75 41.0 19530401 20200624 121270 99999 DARLOWO PL 54.43 16.37 4.0 20020604 20081017 121280 99999 ZEGRZE POMORSKIE PL EPKZ 54.042 16.264 75.9 20020601 20080923 121290 99999 JAROSLAWIEC PL 54.55 16.533 35.0 20020601 20160102 121310 99999 USTKA PL 54.583 16.85 15.0 19860101 20081017 121320 99999 BOGUS POLISH PL 19880504 20011031 121330 99999 SLUPSK/REDZIKOWO PL EPSS 54.483000000000004 17.1 65.0 19390923 20040917 121350 99999 HEL PL 54.6 18.817 3.0 19550701 20200624 121360 99999 LEBUNIA PL EPCE 54.417 17.767 151.0 20020601 20200624 121370 99999 CZOLPINO PL 54.717 17.233 48.0 20020601 20081017 121380 99999 LEBA PL 54.766999999999996 17.533 23.0 19870106 20081017 121390 99999 BIALOGORA PL 54.833 17.933 30.0 20020601 20081017 121400 99999 GDANSK PORT PN. PL 54.4 18.7 7.0 20010704 20121231 121420 99999 OKSYWIE PL 54.567 18.517 70.0 20020601 20200624 121430 99999 ROZEWIE PL 54.833 18.35 85.0 20020601 20031004 121450 99999 GDYNIA PL 54.516999999999996 18.567 22.0 19340329 20071231 121460 99999 PRUSZCZ GDANSKI PL EPPR 54.248000000000005 18.672 6.4 20020601 20200624 121465 99999 PIOTRKOW TRYBUNALSKI PL EPPT 51.383 19.683 205.1 20110331 20200401 121470 99999 GORA SZWEDOW PL 54.633 18.817 17.0 20020601 20081017 121480 99999 HEL PL 54.58 18.8 12.0 20020601 20081017 121490 99999 OKSYWIE PL 54.533 18.567 2.0 20020601 20081017 121500 99999 LECHA WALESY PL EPGD 54.378 18.465999999999998 149.0 19310101 20200624 121530 99999 GDANSK-NOWY PORT PL 54.4 18.667 16.0 20020601 20080829 121540 99999 MALBORK PL EPMK 54.03 19.13 5.0 20020601 20190724 121550 99999 GDANSK-SWIBNO PL 54.333 18.933 9.0 19820901 20200624 121560 99999 SKOWEONKI PL 54.367 19.283 22.0 20020601 20081017 121580 99999 BOGUS POLISH PL 19870104 19920926 121590 99999 19390822 19421231 121600 99999 ELBLAG-MILEJEWO PL EPEL 54.223 19.543 43.0 19330102 20200624 121610 99999 BOGUS POLISH PL 19861101 20020308 121620 99999 19390413 19431231 121630 99999 LIDZBARK WARMINSKI PL 54.133 20.566999999999997 27.0 19370818 19420630 121850 99999 KETRZYN PL 54.067 21.366999999999997 110.0 19520101 20200624 121860 99999 OLECKO PL 54.033 22.517 50.0 19330102 19421231 121950 99999 SUWALKI PL 54.133 22.95 186.0 19310109 20200624 121960 99999 BOGUS POLISH PL 19870607 20020814 122000 99999 SWINOUJSCIE PL 53.917 14.232999999999999 5.0 19330704 20200624 122010 99999 SWINOUJSCIE PL 53.917 14.283 10.0 20020824 20040124 122030 99999 MIEDZYZDROJE PL 53.95 14.467 70.0 20020601 20081017 122050 99999 SZCZECIN PL EPSD 53.4 14.617 7.0 19280101 20200624 122060 99999 GOLENIOW PL 53.583 14.9 38.0 20020105 20050813 122070 99999 STARGARD SZCZECINSKI PL 53.317 15.0 9.0 19360810 19430227 122080 99999 PNIEWO PL 53.9 15.45 12.0 19400102 19410628 122090 99999 19391101 19411231 122100 99999 RESKO-SMOLSKO PL 53.766999999999996 15.4 52.9 19730101 20200624 122110 99999 SOUTH SWIDWIN PL 53.766999999999996 15.783 27.0 19360101 19420630 122120 99999 SWIDWIN PL EPSN 53.791000000000004 15.825999999999999 117.3 19400402 20200624 122140 99999 BOGUS POLISH PL 19861101 20030408 122150 99999 SZCZECINEK PL 53.717 16.747 144.0 19730101 20200624 122220 99999 BOGUS POLISH PL 19870102 20040922 122250 99999 NADARZYCE PL EPNA 53.45 16.5 129.0 19311102 20200624 122260 99999 MIROSLAWIEC PL EPMI 53.395 16.083 150.9 19870301 20200624 122300 99999 PILA PL 53.133 16.75 73.0 19730101 20081231 122310 99999 MORYN PL 52.833 14.417 15.0 19400401 19431231 122320 99999 19310105 19431231 122350 99999 CHOJNICE PL 53.717 17.55 172.0 19410101 20200624 122360 99999 LUBANIE PL 53.733000000000004 18.933 19.0 19330102 20170308 122370 99999 GRUDZIADZ / LISIE KATY ARPT PL EPGI 53.525 18.849 32.3 19340329 20181211 122380 99999 BYDGOSZCZ PL 53.117 17.967 72.0 20020601 20081013 122400 99999 BYDGOSZCZ PL 53.083 17.983 71.0 19730101 19830222 122440 99999 BOGUS POLISH PL 19861101 20010820 122500 99999 TORUN PL 53.05 18.583 72.0 19340331 20200624 122620 99999 BOGUS POLISH PL 19870203 20020813 122690 99999 MARWALD PL 53.533 19.95 92.0 19400201 19420630 122700 99999 MLAWA PL 53.1 20.35 149.0 19340331 20200624 122720 99999 OLSZTYN PL 53.766999999999996 20.417 137.0 19350101 20200624 122730 99999 CIECHANOW PL 52.883 20.633000000000003 36.0 19391108 19421012 122800 99999 MIKOLAJKI PL 53.783 21.583000000000002 132.0 19621105 20200624 122810 99999 SZCZYTNO PL 53.567 21.0 36.0 19330102 19420630 122830 99999 BOGUS POLISH PL 19870602 19920229 122850 99999 OSTROLEKA PL 53.083 21.566999999999997 97.0 19410101 20200624 122950 99999 BIALYSTOK PL 53.1 23.166999999999998 151.0 19310101 20200624 122990 99999 STARE KUROWO PL 52.85 15.667 11.0 19320801 19420630 123000 99999 GORZOW WLKP PL 52.75 15.283 73.0 19520101 20200624 123100 99999 SLUBICE PL 52.35 14.6 24.0 19520102 20200624 123110 99999 MIEDZYRZECZ PL 52.433 15.55 14.0 19360101 19411231 123120 99999 BABIMOST PL EPZG 52.138999999999996 15.799000000000001 59.1 20020603 20200624 123150 99999 WAGROWIEC PL 52.833 17.3 90.0 19400101 19420630 123180 99999 BOGUS POLISH PL 19870601 20040914 123250 99999 BOGUS POLISH PL 19870104 20041119 123260 99999 KRZESINY PL EPKS 52.332 16.965999999999998 80.8 20020601 20200624 123290 99999 BOGUS POLISH PL 19861101 20011107 123300 99999 LAWICA PL EPPO 52.42100000000001 16.826 93.9 19310102 20200624 123310 99999 BEDNERY PL 52.533 17.217 109.0 19340331 19381231 123320 99999 CHORZEN PL 52.233000000000004 18.217 83.0 19410101 19411231 123330 99999 BOGUS POLISH PL 19861101 20040528 123360 99999 POWIDZ PL EPPW 52.379 17.854 113.1 20010919 20200624 123400 99999 19391109 19431130 123420 99999 INOWROCLAW PL 52.817 18.333 83.0 20020601 20081231 123450 99999 KOLO PL 52.2 18.667 117.0 19520401 20200624 123540 99999 BOGUS POLISH PL 19870403 20030221 123590 99999 WLOCLAWEK PL 52.65 19.083 61.0 19400101 19411231 123600 99999 PLOCK PL 52.583 19.733 109.0 19350101 20200624 123610 99999 KROSNIEWICE PL 52.25 19.233 114.0 19410509 19421231 123630 99999 WARSZAWA/BABICE PL EPBC 52.266999999999996 20.916999999999998 106.0 19890401 20030217 123720 99999 WARSZAWA BIELANY PL 52.283 20.967 100.0 20011027 20030113 123740 99999 LEGIONOWO PL 52.4 20.967 96.0 20000420 20040516 123750 99999 OKECIE PL EPWA 52.166000000000004 20.967 110.3 19280102 20200624 123760 99999 MINSK MAZOWIECKI PL EPMM 52.196000000000005 21.656 184.1 20020601 20200624 123764 99999 NOWA DEBA PL EPND 50.433 21.767 170.0 20090908 20190530 123765 99999 MALBORK PL EPMB 54.027 19.134 4.9 20050101 20200624 123766 99999 CEWICE PL 54.417 17.767 151.0 20080101 20081231 123767 99999 SZWEDEROWO PL 53.1 17.983 235.0 20050101 20200624 123810 99999 BOGUS POLISH PL 19861202 19920229 123850 99999 SIEDLCE PL 52.181000000000004 22.25 155.0 19730101 20200624 123950 99999 BIALA PODLASKA PL 52.016999999999996 23.116999999999997 146.6 19410101 19590730 123960 99999 PODLASKA PL 52.0 23.15 150.0 19861101 20160520 123990 99999 TERESPOL PL 52.067 23.616999999999997 137.0 19730101 20200624 124000 99999 ZIELONA GORA PL 51.933 15.533 192.0 19310101 20200624 124010 99999 ZARY MISATO PL 51.65 15.15 144.0 19370712 19420630 124020 99999 BOGUS POLISH PL 19870403 19920229 124030 99999 NOWE MIASTECZKO PL 51.683 15.732999999999999 31.0 19360102 19420630 124040 99999 STARA KOPERNIA PL 51.633 15.383 46.0 19390821 19420930 124050 99999 ZGORZELEC PL 51.133 15.033 203.0 19730101 19830209 124060 99999 SZPROTAWA-WIECHLICE PL EPWE 51.56100000000001 15.585 128.0 19390815 20191108 124110 99999 BOGUS POLISH PL 19870601 20040303 124140 99999 BOLESLAWIEC MIASTO PL 51.266999999999996 15.567 59.0 19360102 20160328 124150 99999 LEGNICA PL 51.2 16.2 124.0 19370401 20200624 124160 99999 WSCHOWA PL 51.8 16.317 29.0 19360102 19420630 124170 99999 LUBIN MIASTO PL 51.417 16.2 46.0 19390810 19411231 124180 99999 LESZNO PL 51.833 16.533 92.0 19730101 20081231 124190 99999 JAROCIN PL 51.967 17.55 120.0 19391113 19420630 124230 99999 BOGUS POLISH PL 19870103 20040620 124240 99999 STRACHOWICE PL EPWR 51.103 16.886 123.1 19390102 20200624 124250 99999 WROCLAW I PL 51.117 16.883 122.0 19280101 20171118 124260 99999 SYCOW PL 51.3 17.717 51.0 19360102 20180404 124280 99999 WROCLAW/STRACHOWICE PL EPWL 51.1 16.883 123.0 20020601 20090815 124290 99999 BOGUS POLISH PL 19861102 20020817 124300 99999 OLESNICA PL 51.217 17.45 46.0 19400115 19410531 124350 99999 KALISZ PL 51.783 18.083 140.0 19520101 20200624 124440 99999 BOGUS POLISH PL 19870105 20020703 124470 99999 BOGUS POLISH PL 19870102 19920229 124520 99999 LECZYCA PL 52.0 19.15 150.0 20020601 20081231 124540 99999 LASK PL EPLK 51.552 19.179000000000002 192.9 20020601 20200624 124550 99999 WIELUN PL 51.217 18.567 201.0 19391201 20200624 124640 99999 NOWE PL 51.617 20.533 180.0 20031110 20031110 124650 99999 LODZ PL 51.733000000000004 19.4 190.0 19340329 20081231 124660 99999 TOMASZOW PL 51.533 20.017 190.0 20020601 20081231 124690 99999 SULEJOW PL 51.35 19.867 189.0 19730101 20200624 124710 99999 BELSK PL 51.833 20.8 180.0 20030414 20030414 124760 99999 BOGUS POLISH PL 19870301 20040910 124850 99999 RADOM PL EPRP 51.417 21.116999999999997 183.0 19391101 20081231 124860 99999 BOGUS POLISH PL 19870104 20030827 124880 99999 KOZIENICE PL 51.567 21.55 126.0 19750812 20200624 124900 99999 DEBLIN PL EPDE 51.551 21.894000000000002 119.5 19340104 20200624 124950 99999 LUBLIN RADAWIEC PL 51.217 22.4 240.0 19310103 20200624 124970 99999 WLODAWA PL 51.55 23.533 179.0 19730101 20200624 125000 99999 JELENIA GORA PL 50.9 15.8 344.0 19330601 20200624 125010 99999 MIROSLAWICE PL 50.95 16.767 47.0 19390901 19420628 125100 99999 SNIEZKA PL 50.733000000000004 15.732999999999999 1613.0 19520101 20200624 125110 99999 WALBRZYCH PL 50.766999999999996 16.283 131.0 19360102 19420630 125180 99999 OPOLE-NOWE PL 50.633 17.783 57.0 19390907 19420630 125190 99999 DUSZNIKI-ZDROJ PL 50.4 16.4 170.0 19360703 19411231 125200 99999 KLODZKO PL 50.433 16.617 357.0 19520102 20200624 125210 99999 OLAWA PL 50.983000000000004 17.25 39.0 19390901 19420630 125220 99999 SLEZA PL 50.867 16.717 217.0 19400414 19420630 125230 99999 SWIDNICA PL 50.85 16.483 75.0 19410114 19431231 125240 99999 STRZELCE OPOLSKIE PL 50.516999999999996 18.3 69.0 19400201 19420630 125250 99999 BRZEG PL 50.833 17.433 47.0 19380815 19430531 125260 99999 STARY GRODKOW PL 50.633 17.4 53.0 19410102 19420630 125270 99999 BOGUS POLISH PL 19861101 20031207 125280 99999 OLESNO PL 50.867 18.417 73.0 19400701 19420630 125290 99999 KRAPKOWICE PL 50.5 17.983 56.0 19400816 19420630 125300 99999 OPOLE PL 50.617 17.967 163.0 19730101 20200624 125310 99999 RADZIKOWICE PL 50.5 17.3 62.0 19410101 19411231 125320 99999 ROZKOCHOW PL 50.367 17.933 59.0 19430115 19431231 125330 99999 BYSTRZYCA PL 50.3 16.667 113.0 19360615 20180915 125390 99999 KOLO PL 52.266999999999996 18.667 75.0 19310501 19420630 125400 99999 RACIBORZ PL 50.05 18.2 206.0 19530102 20200624 125500 99999 CZESTOCHOWA PL 50.817 19.1 295.0 19400101 20200624 125550 99999 PYRZOWICE PL 50.483000000000004 19.083 304.0 19881013 20021121 125560 99999 KRAKOW/BALICE PL EPKF 50.083 19.783 241.0 20020601 20160404 125600 99999 KATOWICE PL EPKM 50.233000000000004 19.033 284.0 19340330 20200624 125650 99999 KRAKOW PL 50.083 19.8 236.5 19520101 19600930 125660 99999 BALICE PL EPKK 50.078 19.785 241.1 19310103 20200624 125680 99999 BOGUS POLISH PL 19870102 19920917 125690 99999 WLOSZCZOWA PL 50.85 19.967 261.0 19400220 19420331 125700 99999 KIELCE-SUKOW PL 50.817 20.7 261.0 19341002 20200624 125750 99999 TARNOW PL 50.033 20.983 209.0 19391126 20200624 125760 99999 JAROGLAW PL 50.016999999999996 22.683000000000003 210.0 19410301 20090119 125770 99999 MIELEC PL 50.3 21.45 170.0 19400510 19781026 125800 99999 JASIONKA PL EPRZ 50.11 22.019000000000002 205.7 19540102 20200624 125830 99999 BOGUS POLISH PL 19870605 20030920 125850 99999 SANDOMIERZ PL 50.7 21.717 218.0 19400101 20200624 125950 99999 ZAMOSC PL 50.7 23.25 213.0 19400220 20200624 125960 99999 BOGUS POLISH PL 19870607 19890513 125990 99999 OSWIECIM PL 50.033 19.217 73.0 19350101 19420630 126000 99999 BIELSKO-BIALA PL 49.8 19.0 399.0 19391009 20200624 126010 99999 BOGUS POLISH PL 19870601 20021020 126070 99999 BOGUS POLISH PL 19870701 20011114 126250 99999 ZAKOPANE PL 49.3 19.967 857.0 19340329 20200624 126500 99999 KASPROWY WIERCH PL 49.233000000000004 19.983 1989.0 19400101 20200624 126600 99999 NOWY SACZ PL 49.617 20.7 295.0 19730101 20200624 126650 99999 CIESZYN PL 49.75 18.633 312.0 19340329 20070712 126700 99999 KROSNO PL 49.7 21.767 329.0 19850401 20200624 126760 99999 BOGUS POLISH PL 19861101 20041001 126800 99999 KROSCIENKO WYZNE PL 49.683 21.816999999999997 281.0 19391101 19420630 126899 99999 NOWY TARG AIRPORT PL EPNT 49.467 20.05 628.0 20140513 20191019 126900 99999 LESKO PL 49.467 22.35 422.0 19730101 20200624 126914 99999 KOSZALIN & PL 19870117 19880323 126915 99999 SLUPSK & PL 54.467 17.017 0.0 19870117 19901115 126926 99999 BOGUS POLISH PL 19870202 19880323 126950 99999 PRZEMYSL PL 49.8 22.767 280.0 19340330 20200624 126980 99999 BOGUS POLISH PL 19870408 19920718 127560 99999 SZECSENY HU 48.117 19.517 153.0 20010705 20200624 127660 99999 JOSVAFO HU 48.483000000000004 20.533 305.0 20010705 20200624 127720 99999 MISKOLC HU LHMC 48.083 20.767 236.0 19520101 20200624 127860 99999 ZAHONY HU 48.4 22.166999999999998 104.0 20010705 20200624 128050 99999 SOPRON HU 47.683 16.6 239.0 19360601 20200624 128120 99999 SZOMBATHELY ARPT / VAS HU LHSY 47.283 16.633 223.1 19360105 20200624 128150 99999 MOSONMAGYAROVAR HU 47.883 17.283 122.0 19961201 20200624 128220 99999 GYOR HU LHPR 47.717 17.683 129.0 19730101 20200624 128250 99999 PAPA HU LHPA 47.364 17.500999999999998 152.0 19730101 20200624 128300 99999 VESZPREM/SZENTKIRALYSZABADJA HU 47.067 17.833 281.0 19880210 20200624 128305 99999 TOKOL HU LHTL 47.346000000000004 18.980999999999998 104.0 19951213 20010427 128310 99999 DOBOGOKO (MOUNT) HU 47.7 18.883 676.0 19340901 20020830 128360 99999 TATA HU 47.65 18.317 129.0 20010705 20200624 128380 99999 BUDAORS HU LHBS 47.45 18.967 132.0 19780119 19971231 128390 99999 FERIHEGY HU LHBP 47.437 19.256 150.9 19520101 20200624 128400 99999 BUDAPEST MET CENTER HU LHBM 47.516999999999996 19.033 129.0 19310103 20031111 128430 99999 BUDAPEST/PESTSZENTLORINC HU 47.433 19.183 139.0 19730101 20200624 128440 99999 TOKOL HU 47.35 18.983 104.0 20011106 20011106 128460 99999 AGARD HU 47.183 18.617 106.0 20010705 20200624 128470 99999 TAT HU 47.75 18.6 109.0 20010805 20200624 128510 99999 KEKESTETO HU 47.867 20.017 1015.0 19340901 20200624 128550 99999 NAGYKOROS HU 47.033 19.783 114.0 19360904 19390930 128600 99999 SZOLNOK HU LHSN 47.123000000000005 20.236 98.1 19520101 20200624 128601 99999 AZENTKILYSZABADJA HU LHSA 47.067 17.983 303.0 19960221 19960410 128603 99999 SZENTKIRALYSZABADJA HU LHSA 47.078 17.968 280.1 19960403 20040914 128605 99999 BALATON HU LHSM 46.68600000000001 17.159000000000002 124.4 20061010 20200624 128660 99999 POROSZLO HU 47.65 20.633000000000003 92.0 20010705 20200624 128700 99999 EGER HU 47.9 20.383 218.0 19360102 20200624 128820 99999 DEBRECEN HU LHDC 47.489 21.615 110.0 19310104 20200624 128920 99999 NYIREGYHAZA HU LHNY 47.983999999999995 21.691999999999997 103.0 19730101 20200624 129100 99999 SZENTGOTTHARD/FARKASFA HU 46.917 16.317 313.0 19740812 20200624 129150 99999 ZALAEGERSZEG/ANDRASHIDA HU 46.867 16.8 180.0 19770909 20200624 129200 99999 KESZTHELY HU 46.736000000000004 17.239 110.7 19360101 20200624 129220 99999 SARMELLEK HU 46.683 17.167 125.0 20010919 20200624 129250 99999 NAGYKANIZSA HU 46.45 16.967 141.0 19730101 20200624 129255 99999 TASZAR HU LHTA 46.4 17.917 160.0 19951213 19971029 129300 99999 KAPOSVAR HU LHKV 46.383 17.833 145.0 19361001 20200624 129320 99999 TASZAR HU LHTA 46.393 17.917 164.0 19970201 20051001 129350 99999 SIOFOK HU LHSK 46.917 18.05 109.0 19730101 20200624 129400 99999 PECS HU 46.067 18.233 201.8 19520101 19561231 129410 99999 PECS/ARPADTETO HU 46.133 18.25 440.0 19311001 20011007 129420 99999 PECS SOUTH HU LHPP 45.99100000000001 18.241 304.8 19360501 20200624 129500 99999 PAKS HU 46.583 18.85 98.0 19801009 20200624 129600 99999 BAJA HU 46.183 19.017 113.0 19730101 20200624 129700 99999 KECSKEMET HU LHKE 46.918 19.749000000000002 114.6 19730101 20200624 129820 99999 SZEGED (AUT) HU LHUD 46.25 20.1 83.0 19360101 20200624 129900 99999 19730612 19730619 129920 99999 BEKESCSABA HU LHBC 46.683 21.166999999999998 90.0 19361201 20200624 130050 99999 BOVEC SI 46.333 13.567 452.0 19920301 20040916 130060 99999 VOGEL SI 46.266999999999996 13.833 1535.0 19920301 19960101 130070 99999 RATECE/PLANICA SI 46.5 13.717 865.0 19920302 20001113 130080 99999 KREDARICA SI 46.383 13.85 2514.0 19730105 19960405 130090 99999 ATLAS BUOY / LAMBADA SI 13009 8.0 -38.0 3.0 19930101 19960118 130100 99999 ATLAS BUOY 13010 / SOUL 0.0 0.0 3.0 19930105 20180425 130120 99999 KATARINA SI 46.1 14.367 685.0 19920301 19960101 130140 99999 LJUBLJANA/BRNIK SI 46.217 14.482999999999999 385.0 19730101 20041231 130145 99999 CERKLJE SI LJCE 45.9 15.53 155.4 20051006 20200624 130150 99999 LJUBLJANA/BEZIGRAD SI 46.067 14.517000000000001 299.0 19360701 19960130 130180 99999 LJUBLJANA /BRNIK SI 46.233000000000004 14.482999999999999 388.9 19520102 19621231 130200 99999 ROGLA SI 46.45 15.333 1480.0 19920301 20011201 130210 99999 SMARTNO SI 46.483000000000004 15.117 452.0 19730105 19960109 130230 99999 CELJE SI 46.25 15.25 244.0 19910708 20041210 130240 99999 LISCA SI 46.067 15.283 941.0 19861201 20000713 130250 99999 MARIBOU-MESTO SI 46.533 14.867 157.0 19920301 19951231 130260 99999 MARIBOR SI 46.483000000000004 15.683 265.0 19730101 20040924 130310 99999 MURSKA SOBOTA SI 46.65 16.183 188.0 19910708 20020613 130330 99999 VARAZDIN HR 46.3 16.383 167.0 19730102 20030607 130670 99999 PALIC RI 46.1 19.767 105.0 19730101 20200624 130680 99999 BOGUS YUGOSLAVIAN SI 19880602 19890513 131050 99999 PORTOROZ/SECOVLJE SI 45.483000000000004 13.617 3.0 19740602 20070307 131060 99999 NOVA GORICA SI 45.95 13.65 102.0 19830210 19960208 131070 99999 19730101 19740817 131090 99999 PAZIN HR 45.233000000000004 13.967 293.0 19800712 19900313 131110 99999 IL SISTRICA SI 45.567 14.25 413.0 19920302 19960203 131120 99999 POSTOJNA SI 45.766999999999996 14.2 533.0 19920302 19960101 131130 99999 BOGUS YUGOSLAVIAN SI 19910701 19920903 131160 99999 RIJEKA HR LYRI 45.217 14.57 84.7 19730101 20200624 131180 99999 KOCEVJE SI 45.9 14.867 56.0 19920301 20020613 131200 99999 CRNOMELJ SI 45.567 15.15 157.0 19920301 19960501 131210 99999 NOVO MESTO SI 45.783 15.183 213.0 19730105 19960413 131220 99999 OGULIN & HR 45.266999999999996 15.232999999999999 328.0 19730102 19951231 131280 99999 PUNTIJARKA (MOUNT) HR 45.9 15.967 988.0 19520101 19951231 131290 99999 ZAGREB/GRIC HR 45.817 15.982999999999999 163.0 19940613 19951231 131300 99999 ZAGREB/MAKSIMIR HR 45.817 16.033 123.0 19360101 19951231 131310 99999 ZAGREB/PLESO HR 45.733000000000004 16.067 106.0 19730101 19960507 131420 99999 DARUVAR HR 45.6 17.233 161.0 19730102 19951231 131430 99999 BOGUS YUGOSLAVIAN EG 28.866999999999997 31.333000000000002 103.6 19910701 19920802 131500 99999 SLAVONSKI BROD HR 45.167 18.0 88.0 19360901 19970116 131510 99999 BOGUS YUGOSLAVIAN SI 19910701 19920223 131560 99999 BOGUS YUGOSLAVIAN HR 45.533 18.733 92.0 19520101 19920812 131570 99999 OSIJEK HR LDOS 45.533 18.733 89.0 19730105 19941130 131590 99999 OSIJEK/SPA HR 45.533 18.633 92.0 19950401 19951218 131600 99999 SOMBOR RI 45.766999999999996 19.15 89.0 19820101 20200624 131680 99999 NOVI SAD RIMSKI SANCEVI RI 45.333 19.85 87.0 19360801 20200624 131681 99999 PETROVARADIN RI 45.25 19.883 87.0 19730102 19841129 131730 99999 ZRENJANIN RI 45.367 20.417 82.0 19820101 20200624 131740 99999 KIKINDA RI 45.85 20.467 82.0 19730102 20200624 131800 99999 BANATSKI KARLOVAC RI 45.05 21.033 91.0 19910701 20200624 131825 99999 CAMP BONDSTEEL AHP KV 42.35 21.25 595.0 20080101 20081231 131830 99999 VRSAC RI LYVR 45.147 21.31 84.1 19730101 20200624 132080 99999 PULA HR 44.867 13.85 32.0 19520101 19621231 132090 99999 PULA HR 44.9 13.917 67.0 19730101 19960507 132140 99999 MALI LOSINJ HR 44.533 14.467 53.0 19730107 19960123 132160 99999 BARBAT NA RABU HR 44.75 14.8 342.0 19360702 19391231 132180 99999 SENJ & SI 44.983000000000004 14.9 26.0 19820101 19951231 132190 99999 ZAVIZAN MOUNTAIN HR 44.817 14.982999999999999 1597.0 19801022 20020112 132220 99999 ZADAR 44.117 15.232999999999999 4.0 19520101 19621231 132230 99999 GOSPIC HR 44.55 15.367 564.0 19820401 19951231 132240 99999 ZADAR/ZEMUNIK HR 44.083 15.35 82.0 19730101 19960101 132280 99999 BIHAC BK LQBI 44.817 15.883 250.0 19570115 20030714 132340 99999 DRVAR BK 44.383 16.4 485.0 19730102 19841115 132420 99999 BANJA LUKA BK LQBK 44.941 17.298 121.9 19360701 20200624 132440 99999 BUGOJNA BK 44.067 17.467 562.0 19730102 19960113 132490 99999 ZENICA SI 44.217 17.9 344.0 19890907 19950227 132570 99999 TUZLA BK 44.55 18.7 306.0 19730305 20081231 132600 99999 BANJA KOVILJACA RI 44.516999999999996 19.167 125.0 19360102 19391231 132610 99999 LOZNICA TUGOSLAVIA RI 44.55 19.233 121.9 19520101 19621231 132620 99999 LOZNICA RI 44.55 19.233 122.0 19730101 20200624 132660 99999 SREMSKA MITROVICA RI 45.1 19.55 83.0 19820401 20200624 132690 99999 VALJEVO RI 44.317 19.917 177.0 19730102 20200624 132720 99999 BEOGRAD RI LYBE 44.818000000000005 20.309 102.1 19450501 20200624 132725 99999 BEOGRAD/BATAJNICA RI LYBT 44.935 20.258 80.8 20080115 20200624 132740 99999 BEOGRAD RI 44.8 20.467 132.0 19520101 20200624 132750 99999 BEOGRAD/KOSUTNJAK RI 44.766999999999996 20.417 203.0 19310101 20020104 132780 99999 KRAGUJEVAC RI 44.033 20.933000000000003 185.0 20070228 20200624 132790 99999 SMEDEREVSKA PALANKA RI 44.367 20.95 122.0 19730102 20200624 132850 99999 VELIKO GRADISTE RI 44.75 21.517 84.0 19360701 20200624 132890 99999 CRNI VRH RI 44.117 21.95 1039.0 19730302 20200624 132950 99999 NEGOTIN RI 44.233000000000004 22.55 44.0 19730101 20200624 133220 99999 BOGUS YUGOSLAVIAN SI 19910701 20021207 133290 99999 SIBENIK HR 43.733000000000004 15.917 77.0 19730102 19960201 133300 99999 BOGUS YUGOSLAVIAN SI 19910701 20021124 133330 99999 SPLIT/KASTEL STAFIL HR 43.533 16.3 24.0 19610101 19960714 133340 99999 SPLIT/MARJAN HR 43.516999999999996 16.433 128.0 19310102 20041006 133350 99999 HVAR HR 43.167 16.45 20.0 19820101 19960101 133400 99999 LIVNO BK LQLV 43.833 17.017 724.0 19820101 19930224 133480 99999 MOSTAR BK LQMO 43.283 17.846 47.5 19360701 20200624 133490 99999 MOSTAR BK 43.333 17.817 107.9 19570111 19590731 133510 99999 SJELASNICA BK 43.717 18.267 2069.9 19570124 19590731 133520 99999 BJELASNICA MTN RNG BK 43.717 18.267 2067.0 19730302 19930203 133530 99999 SARAJEVO BK LQSA 43.825 18.331 520.6 19360102 20200624 133535 99999 SARAJEVO/BUTMIR BK LQSA 43.817 18.35 511.0 19941007 19950124 133540 99999 SARAJEVO & BK 43.867 18.433 637.0 19751004 19920914 133560 99999 CEMERNO (MOUNT) BK 43.233000000000004 18.6 1305.0 19730109 19841010 133610 99999 ZABLJAK MJ 43.15 19.133 1450.0 19820101 20081204 133630 99999 PLEVLJA MJ 43.35 19.35 788.0 19360102 20200624 133670 99999 ZLATIBOR RI 43.733000000000004 19.717 1029.0 19730101 20200624 133690 99999 SJENICA RI 43.283 20.0 1039.0 19820401 20200624 133700 99999 POZEGA UZICKA RI 43.833 20.033 312.0 19820101 20200624 133760 99999 KRALJEVO RI LYKV 43.7 20.7 217.0 19360102 20200624 133766 99999 UZICE-PONIKVE RI LYUZ 43.9 19.7 904.0 20071203 20200624 133770 99999 KRALJEVO RI 43.733000000000004 20.683000000000003 221.0 19520101 19621231 133780 99999 KOPAONIK RI 43.283 20.8 1713.0 19820401 20200624 133820 99999 KURSUMLIJA RI 43.133 21.267 383.0 19730105 20060314 133830 99999 KRUSEVAC RI 43.567 21.35 167.0 19820101 20200624 133840 99999 CUPRIJA RI 43.933 21.383000000000003 125.0 19730105 20200624 133880 99999 NIS RI LYNI 43.336999999999996 21.854 197.5 19360102 20200624 133890 99999 LESKOVAC RI 42.983000000000004 21.95 232.0 19730102 20200624 133970 99999 DIMITROVGRAD RI 43.016999999999996 22.75 450.0 19730105 20200624 134320 99999 PALAGRUZA SI 42.4 16.267 97.0 19910701 19960101 134380 99999 PALAGRUZA 42.4 16.267 82.0 19520101 19620614 134390 99999 LASTOVO ISLAND HR 42.766999999999996 16.9 187.0 19830301 19900515 134510 99999 DUBROVNIK GORICA HR 42.65 18.083 53.0 19590805 19951231 134520 99999 DUBROVNIK-CILIPI HR 42.567 18.267 161.0 19730101 20030106 134550 99999 HERCEG NOVI-IGALO MJ 42.45 18.55 10.0 19360102 20081204 134555 99999 19760422 19761221 134570 99999 TIVAT MJ LYTV 42.405 18.723 6.1 19761221 20200624 134590 99999 NIKSIC MJ 42.766999999999996 18.95 647.0 19751023 20200624 134610 99999 BAR MJ 42.1 19.1 6.0 19820101 20200624 134615 99999 OHRID-AERODROME MK LYOH 41.1 20.816999999999997 700.0 20050101 20200624 134620 99999 PODGORICA / GOLUBOVCI MJ LYTI 42.367 19.25 33.0 19520101 20200624 134624 99999 PODGORICA TITOGRAD MJ LYPG 42.433 19.283 53.0 19930408 20200624 134630 99999 PODGORICA-GRAD MJ 42.433 19.283 50.0 20010916 20200624 134640 99999 ULCINJ MJ 41.917 19.217 29.0 19970101 20081204 134650 99999 KOLASIN MJ 42.833 19.533 945.0 19730105 20081204 134720 99999 PEC RI 42.667 20.3 501.1 19520801 19621211 134730 99999 PEC KV 42.667 20.3 499.0 19730101 20070227 134740 99999 KOSOVSKA MITROVICA KV 42.833 20.833000000000002 521.0 19360102 19391231 134770 99999 PRIZREN KV 42.217 20.733 403.0 19730102 20140602 134810 99999 PRISTINA KV LYPR 42.573 21.035999999999998 545.3 19730101 20051024 134811 99999 PRISTINA KV BKPR 42.57 21.03 559.0 20040706 20200624 134830 99999 SXODJE MK 41.983000000000004 21.467 241.1 19520101 19621231 134890 99999 VRANJE RI 42.55 21.916999999999998 434.0 19791104 20200624 134900 99999 RESERVED FOR NAVY 0.0 0.0 0.0 19940116 20040112 134910 99999 SKOPJE MK 42.516999999999996 22.283 1176.0 19940107 19960219 134920 99999 POPOVA SAPKA MK 41.016999999999996 20.883000000000003 1750.0 20020914 20130228 134930 99999 KRIVA PALANKA MK 42.2 22.333000000000002 696.0 19730101 20200624 135620 99999 ULCINJ MJ 41.917 19.217 29.0 19520101 20021222 135710 99999 TETOVO MK 42.0 20.967 462.0 20130225 20200624 135750 99999 POZARANE-PGC MK 41.85 20.866999999999997 885.0 20010725 20200624 135760 99999 MAVROVO MK 41.7 20.75 1240.0 20120703 20200413 135770 99999 LAZAROPOLE MK 41.533 20.7 1321.0 19730102 20200519 135780 99999 OHRID MK LWOH 41.18 20.741999999999997 705.0 19730105 20200624 135790 99999 OHRID-AERODROME MK LYOH 41.1 20.816999999999997 700.0 19910701 20081231 135800 99999 PRETOR-PGC MK 40.983000000000004 21.066999999999997 910.0 20011113 20200624 135810 99999 TOPOLCANI-PGC MK 41.217 21.467 -999.9 20010730 20200624 135820 99999 KRUSEVO MK 41.367 21.25 1230.0 19570101 20130301 135830 99999 BITOLA MK 41.05 21.366999999999997 589.0 19730101 20200624 135840 99999 SOLUNSKA GLAVA MK 41.733000000000004 21.517 2540.0 20010705 20120823 135850 99999 PRILEP MK 41.333 21.566999999999997 674.0 19360102 20200624 135860 99999 SKOPJE MK LWSK 41.961999999999996 21.621 238.0 19280106 20200624 135880 99999 SKOPJE-ZAJCEV RID MK 42.016999999999996 21.4 301.0 20011113 20200624 135890 99999 KUMANOVO MK 42.133 21.717 338.0 20151212 20151212 135900 99999 GURISTE-PGC MK 41.9 21.85 856.0 20010713 20200624 135910 99999 STIP MK 41.75 22.183000000000003 327.0 19730102 20200624 135920 99999 DEMIR KAPIJA MK 41.417 22.25 126.0 19730101 20200624 135930 99999 POZAR-PGC MK 41.3 22.416999999999998 1030.0 20011113 20191130 135940 99999 VINICA-PGC MK 41.883 22.5 513.0 20010726 20200624 135950 99999 STRUMICA MK 41.433 22.65 224.0 20011113 20200624 135970 99999 GEVGELIJA MK 41.15 22.5 59.0 20010705 20200624 135980 99999 BEROVO MK 41.717 22.85 836.0 19910701 20200624 135990 99999 KAVADARCI MK 41.433 22.033 260.0 20130228 20130301 136000 99999 SHKODRA AL 42.1 19.533 43.0 19560101 20200624 136010 99999 TIRANA-LA PRAKA AL 41.333 19.8 97.0 20110525 20200624 136100 99999 KUKES AL 42.033 20.417 354.0 19730106 20200624 136110 99999 DURRES AL 41.3 19.45 12.0 19730106 20200624 136120 99999 DURRES AL 41.3 19.467 8.0 19931101 20041116 136150 99999 TIRANA RINAS AL LATI 41.415 19.721 38.4 19560101 20200624 136190 99999 PESHKOPI AL 41.683 20.433 653.0 19730106 20200624 136220 99999 VLORE AL 40.467 19.483 5.0 19601002 20200624 136230 99999 SAZAN ISLAND AL 40.5 19.283 240.0 19330516 20200624 136240 99999 QYTETI STALIN AL 40.8 19.9 33.0 19730106 20200624 136250 99999 GJIROKASTRA AL 40.083 20.15 194.0 19560101 20200624 136290 99999 KORCA AL 40.6 20.767 899.0 19560101 20200624 136424 99999 PODGORICA (TITOGRAD 42.383 19.283 37.0 19930112 19930208 140050 99999 BOVEC SI LJBO 46.333 13.567 452.0 19960204 20050913 140060 99999 VOGEL SI 46.266999999999996 13.833 1535.0 19960101 20200624 140070 99999 RATECE SI 46.5 13.717 864.5 19960101 20200624 140080 99999 KREDARICA SI 46.383 13.85 2515.0 19960201 20200624 140090 99999 VOJSKO SI 46.033 13.9 1067.0 19960102 20200624 140100 99999 LESCE SI 46.367 14.183 515.0 19960101 20200624 140120 99999 KATARINA SI 46.1 14.367 685.0 19960101 20200624 140140 99999 LJUBLJANA SI LJLJ 46.224 14.458 388.0 19960201 20200624 140150 99999 LJUBLJANA/BEZIGRAD SI 46.067 14.517000000000001 298.0 19960101 20200624 140210 99999 SLOVENJ GRADEC SI 46.483000000000004 15.117 444.0 19960101 20200624 140230 99999 CELJE SI LJCL 46.233000000000004 15.232999999999999 243.6 19960101 20200624 140240 99999 LISCA SI 46.067 15.283 941.0 19960201 20200624 140250 99999 MARIBOR/TABOR SI 46.533 15.65 278.0 19960101 20010414 140260 99999 MARIBOR SI LJMB 46.48 15.686 267.0 19960101 20200624 140310 99999 MURSKA SOBOTA SI 46.65 16.2 186.7 19960201 20200624 141050 99999 PORTOROZ SI LJPZ 45.473 13.615 2.1 19960101 20200624 141060 99999 NOVA GORICA SI 45.9 13.633 56.1 19960101 20200624 141110 99999 ILIRSKA BISTRICA SI 45.567 14.25 413.0 19960101 20080821 141120 99999 POSTOJNA SI 45.766999999999996 14.2 533.0 19960101 20200624 141180 99999 KOCEVJE SI 45.65 14.85 467.0 19960201 20200624 141200 99999 CRNOMELJ SI 45.567 15.15 157.0 19960201 20200624 141210 99999 NOVO MESTO SI 45.8 15.183 220.0 19960201 20200624 141220 99999 CERKLJE OB KRKI SI 45.9 15.517000000000001 161.6 20061010 20200624 142160 99999 RIJEKA/KOZALA HR 45.333 14.45 125.0 19960201 20200624 142190 99999 PARG HR 45.6 14.633 863.0 19960201 20200624 142320 99999 KARLOVAC HR 45.5 15.567 111.0 19960201 20200624 142340 99999 KRAPINA HR 46.133 15.883 203.1 19960201 20200624 142350 99999 PUNTIJARKA HR 45.917 15.967 988.0 19960201 20200624 142360 99999 ZAGREB/GRIC HR 45.8 15.967 157.0 19960201 20200624 142400 99999 ZAGREB\MAKSIMIR HR LDDD 45.817 16.033 128.0 19960201 20200624 142410 99999 ZAGREB HR LDZA 45.743 16.069000000000003 107.6 19960201 20200624 142440 99999 SISAK HR 45.5 16.367 106.0 19960201 20200624 142460 99999 VARAZDIN HR LDVA 46.295 16.381 167.0 19960201 20200624 142480 99999 KRIZEVCI HR 46.033 16.55 146.0 19960117 20200624 142530 99999 BJELOVAR HR 45.917 16.867 142.4 19960201 20200624 142531 99999 LOSINJ ISLAND HR LDLO 44.567 14.4 45.0 20040510 20200621 142560 99999 BILOGORA HR 45.883 17.2 263.0 19960201 20200624 142580 99999 DARUVAR HR 45.6 17.233 161.0 19960201 20200624 142790 99999 OSIJEK\SPA HR 45.533 18.633 92.0 19960501 20020630 142800 99999 OSIJEK-CEPIN HR LDOC 45.5 18.567 89.3 20030330 20200624 142840 99999 OSIJEK HR LDOS 45.463 18.81 88.4 20040713 20200624 143010 99999 POREC HR 45.233000000000004 13.6 15.0 19960201 20100630 143014 99999 CEPIN HR 45.533 18.633 93.0 19960328 20011130 143015 99999 OSIJEK HR 45.467 18.817 88.0 20040803 20081231 143030 99999 ROVINJ/SV.IVAN NA PUCINI HR 45.05 13.617 8.0 19960201 20200609 143070 99999 PULA HR LDPL 44.894 13.922 83.5 19960201 20200624 143080 99999 PAZIN HR 45.233000000000004 13.933 293.0 19960201 20200624 143140 99999 MALI LOSINJ HR 44.533 14.482999999999999 53.0 19960201 20200624 143170 99999 RIJEKA/OMISALJ HR LDRI 45.217 14.583 85.0 19960501 20081231 143200 99999 CRIKVENICA HR 45.167 14.7 2.0 19960103 20060216 143210 99999 RAB HR 44.75 14.767000000000001 19.9 19960201 20200624 143230 99999 SENJ HR 45.0 14.9 28.0 19960201 20200624 143240 99999 ZAVIZAN HR 44.817 14.982999999999999 1597.0 19960201 20200624 143280 99999 OGULIN HR 45.266999999999996 15.232999999999999 328.0 19960201 20200624 143300 99999 GOSPIC HR 44.55 15.367 565.0 19960201 20200624 143700 99999 SLAVONSKI BROD HR LDOR 45.167 18.0 89.0 19960201 20200624 143820 99999 GRADISTE HR 45.15 18.7 98.0 19960106 20200624 144270 99999 VELA SESTRICA HR 43.85 15.2 35.0 19960201 20090910 144280 99999 ZADAR PUNTAMIKA HR 44.133 15.217 7.0 19960201 20200624 144310 99999 ZADAR HR LDZD 44.108000000000004 15.347000000000001 88.1 19960101 20200624 144380 99999 SIBENIK HR 43.733000000000004 15.917 75.0 19960201 20200624 144410 99999 KOMIZA HR 43.05 16.1 20.0 19960201 20200624 144420 99999 KNIN HR 44.033 16.2 255.0 19960227 20200624 144430 99999 PALAGRUZA HR 42.4 16.267 98.0 19960201 20200624 144440 99999 SPLIT HR LDSP 43.538999999999994 16.298 24.1 19960201 20200624 144450 99999 SPLIT/MARJAN HR 43.516999999999996 16.433 128.0 19960201 20200624 144460 99999 BRAC HR LDSB 43.286 16.68 541.3 20040810 20200623 144470 99999 HVAR HR LDSH 43.167 16.45 25.0 19960201 20200624 144520 99999 LASTOVO HR 42.766999999999996 16.9 187.0 20010916 20200624 144540 99999 MAKARSKA HR 43.283 17.017 49.0 19960201 20200624 144620 99999 PLOCE HR 43.05 17.45 5.0 19960201 20200624 144720 99999 DUBROVNIK/GORICA HR 42.65 18.083 53.0 19960201 20200624 144740 99999 DUBROVNIK HR LDDU 42.56100000000001 18.268 160.6 19960101 20200624 145280 99999 BIHAC BK 44.817 15.883 250.0 20010705 20200624 145370 99999 SANSKI MOST BK 44.766999999999996 16.7 158.0 20010705 20200624 145420 99999 BANJA LUKA BK 44.783 17.217 156.0 20010705 20200624 145430 99999 JAJCE BK 44.35 17.267 431.0 20010705 20200624 145440 99999 BUGOJNO BK 44.067 17.467 566.0 19981012 20200624 145490 99999 ZENICA BK 44.217 17.9 348.0 19981012 20200624 145540 99999 GRADACAC BK 44.883 18.433 140.0 20010705 20200622 145570 99999 TUZLA BK LQTZ 44.55 18.7 307.0 20010705 20200624 146400 99999 LIVNO BK LQLV 43.833 17.017 728.0 19990109 20200624 146480 99999 MOSTAR BK 43.35 17.8 108.0 20010705 20200624 146500 99999 IVAN SEDLO BK 43.766999999999996 18.033 972.0 20010705 20200624 146520 99999 BJELASNICA BK 43.717 18.267 2070.0 19991029 20200624 146540 99999 SARAJEVO-BJELAVE BK 43.867 18.433 638.0 19981012 20200624 146560 99999 CEMERNO BK 43.233000000000004 18.6 1309.0 20080801 20081009 146570 99999 NEUM BK 42.917 17.6 14.0 20080721 20200624 150000 99999 DARABANI RO 48.2 26.583000000000002 260.0 19861201 20200624 150001 99999 BOBOC AIR BASE RO LRBO 45.21 26.97 103.0 20080811 20200624 150002 99999 BORCEA FETESTI AIR BASE RO LRFT 44.383 27.717 54.0 20080811 20200624 150010 99999 AVRAMENI RO 48.016999999999996 26.95 240.0 19730721 20020805 150030 99999 BOGUS ROMANIAN RO 52.233000000000004 0.467 86.9 19851201 20020927 150040 99999 SIGHETUL MARMATIEI RO 47.933 23.9 276.0 19650701 20200624 150070 99999 RADAUTI RO 47.833 25.9 391.0 19730721 20200624 150080 99999 20010708 20030605 150090 99999 DOROHOI RO 47.967 26.4 241.0 19730721 20020921 150100 99999 SATU MARE RO LRSM 47.703 22.886 126.2 19520101 20200624 150105 99999 BAIA MARE/MAGHERUSI RO 47.667 23.666999999999998 152.0 19730621 19900127 150110 99999 BOGUS ROMANIAN RO 19850102 20020915 150130 99999 BOGUS ROMANIAN RO 19860603 19900220 150140 99999 TAUTII MAGHERAUS RO LRBM 47.658 23.47 184.1 19740315 20200624 150150 99999 OCNA SUGATAG RO 47.733000000000004 23.95 503.0 19740316 20200624 150200 99999 BOTOSANI RO 47.733000000000004 26.65 163.0 19570901 20200624 150230 99999 STEFAN CEL MARE RO LRSV 47.688 26.354 419.1 19730105 20200624 150235 99999 SUCEAVA/SALCEA RO 47.683 26.35 399.0 19760204 19900127 150250 99999 STANCA STEFANESTI RO 47.833 27.217 110.0 19841101 20200624 150320 99999 RODNEI MOUNTAIN RNG RO 47.583 24.666999999999998 2303.0 19740315 20020601 150330 99999 IEZER RO 47.6 24.65 1786.0 19730721 20200624 150400 99999 CIMPULUNG MOLDOVENE RO 47.533 25.566999999999997 660.0 19520101 20040615 150410 99999 RAUSENI RO 47.567 27.2 61.0 19730721 20020802 150420 99999 SACUIENI RO 47.35 22.1 113.0 19730802 20200624 150430 99999 BOGUS ROMANIAN RO 19880302 20020516 150440 99999 SUPURU DE JOS RO 47.45 22.783 161.0 19730721 20200624 150470 99999 TARGU LAPUS RO 47.433 23.866999999999997 365.0 19870701 20200624 150480 99999 20010731 20020920 150520 99999 RARAU RO 47.45 25.566999999999997 1574.0 19660102 20040903 150540 99999 BOGUS ROMANIAN RO 19880201 20020928 150550 99999 RADASENI RO 47.467 26.25 230.0 19840401 20051004 150560 99999 COTNARI RO 47.367 26.933000000000003 289.0 19730721 20200624 150620 99999 BOGUS ROMANIAN RO 19900615 20020430 150630 99999 ZALAU RO 47.183 23.05 294.0 19730105 20200624 150690 99999 POIANA STAMPEI RO 47.317 25.133000000000003 920.0 19730802 20200624 150700 99999 BOGUS ROMANIAN RO 19880601 20031215 150730 99999 TARGU NEAMT RO 47.217 26.383000000000003 388.0 19730721 20200624 150740 99999 BOGUS ROMANIAN RO 19851001 20020528 150750 99999 PODUL ILOAIEI RO 47.217 27.267 90.0 19740316 20030515 150790 99999 BOGUS ROMANIAN RO 19881101 19900205 150800 99999 ORADEA RO LROD 47.025 21.903000000000002 141.7 19360101 20200624 150830 99999 DEJ RO 47.133 23.9 236.0 19740318 20200624 150840 99999 BOGUS ROMANIAN RO 19870201 20030513 150850 99999 BISTRITA RO 47.15 24.517 367.0 19660102 20200624 150880 99999 CALIMANI RETITIS RO 47.1 25.25 2021.0 19900201 20200624 150890 99999 CEAHLAU RO 47.05 25.967 554.0 19740319 20020925 150900 99999 IASI RO LRIA 47.178000000000004 27.621 121.0 19360101 20200624 150910 99999 BOGUS ROMANIAN RO 19861101 20030227 150920 99999 BOGUS ROMANIAN RO 19830301 20020829 150940 99999 BARNOVA RO 47.016999999999996 27.583000000000002 400.0 20120329 20200624 150950 99999 BOROD RO 46.983000000000004 22.6 317.0 19730721 20200624 150980 99999 BOGUS ROMANIAN RO 19880201 20030623 150990 99999 HUEDIN RO 46.85 23.033 561.0 19830301 20200624 151070 99999 TOPLITA RO 46.933 25.366999999999997 688.0 19730721 20200624 151080 99999 CEAHLAU TOACA RO 46.983000000000004 25.95 1898.0 19640201 20200624 151090 99999 PIATRA NEAMT RO 46.917 26.383000000000003 361.0 19730721 20200624 151110 99999 ROMAN RO 46.967 26.916999999999998 217.0 19350701 20200624 151130 99999 NEGRESTI RO 46.85 27.45 131.0 19730721 20200624 151150 99999 BOGUS ROMANIAN RO 19870609 20020916 151160 99999 BOGUS ROMANIAN RO 19830301 20020523 151170 99999 HOLOD RO 46.783 22.116999999999997 165.0 19740316 20200624 151180 99999 STANA DE VALE RO 46.683 22.616999999999997 1116.0 19830301 20200624 151190 99999 VLADEASA 1800 RO 46.766999999999996 22.8 1837.0 19730721 20200624 151200 99999 CLUJ NAPOCA RO LRCL 46.785 23.686 315.8 19360101 20200624 151205 99999 CLUJ-NAPOCA/SOMESEN RO LRCL 46.783 23.566999999999997 410.0 19760203 19900108 151230 99999 SARMASU RO 46.75 24.166999999999998 398.0 19730722 20200624 151240 99999 BATOS RO 46.883 24.65 448.0 19870301 20200624 151270 99999 JOSENI RO 46.7 25.517 751.0 19730721 20200624 151320 99999 PLOPANA RO 46.683 27.233 251.0 19730721 20080211 151340 99999 HUSI RO 46.683 28.066999999999997 98.0 19830301 20020601 151360 99999 CHISINEU-CRIS RO 46.533 21.533 96.0 19730721 20200624 151380 99999 DUMBRAVITA DE CODRU RO 46.633 22.166999999999998 586.0 19840101 20200624 151400 99999 STEIU RO 46.533 22.45 500.0 19840401 20120531 151430 99999 TURDA RO 46.583 23.783 428.0 19740315 20200624 151450 99999 VIDRASAU RO LRTM 46.468 24.413 293.5 19520401 20200624 151455 99999 TIGU MURES/VIDRASA RO LRTM 46.533 24.533 308.0 19760203 19900127 151480 99999 BUCIN RO 46.65 25.3 1279.0 19830301 20200624 151490 99999 BOGUS ROMANIAN RO 19910201 20020828 151500 99999 BACAU RO LRBC 46.522 26.91 185.0 19520101 20200624 151520 99999 BOGUS ROMANIAN RO 19840401 20020906 151540 99999 VASLUI RO 46.65 27.717 117.0 19740316 20200624 151550 99999 20010728 20030222 151580 99999 ZARAND RO 46.4 21.65 112.0 19830301 20040525 151590 99999 MOCREA RO 46.383 21.816999999999997 697.0 19830301 20020929 151600 99999 STEI RO 46.533 22.467 279.0 19730804 20200624 151620 99999 CAMPENI RO 46.367 23.05 611.0 19740315 20200624 151630 99999 BAISOARA RO 46.533 23.316999999999997 1356.0 19730721 20200624 151650 99999 TARNAVENI RO 46.367 24.233 524.0 19870301 20200624 151680 99999 ODORHEIUL SECUIESC RO 46.3 25.3 525.0 19730802 20200624 151700 99999 MIERCUREA CIUC RO 46.367 25.733 662.0 19660102 20200624 151740 99999 ONCESTI RO 46.467 27.25 204.0 19730721 20020802 151750 99999 BOGUS ROMANIAN RO 19890310 20020928 151790 99999 SIRIA RO 46.25 21.65 473.0 19850401 20200624 151820 99999 GURAHONT RO 46.266999999999996 22.333000000000002 177.0 19730721 20200624 151840 99999 ROSIA MONTANA RO 46.317 23.133000000000003 1193.0 19840101 20200624 151860 99999 BOGUS ROMANIAN RO 19850104 20020531 151880 99999 BOGUS ROMANIAN RO 19890601 20030401 151890 99999 DUMBRAVENI RO 46.233000000000004 24.6 319.0 19730105 20200624 151910 99999 BOGUS ROMANIAN RO 19860603 20021222 151940 99999 TARGU OCNA RO 46.266999999999996 26.65 243.0 19730114 20200624 151970 99999 BARLAD RO 46.233000000000004 27.65 173.0 19660102 20200624 151990 99999 SANNICOLAU MARE RO 46.067 20.6 86.2 19730802 20200624 152000 99999 ARAD RO LRAR 46.177 21.261999999999997 107.3 19361105 20200624 152005 99999 ARAD RO 46.167 21.316999999999997 108.0 19751202 19901120 152040 99999 VARADIA DE MURES RO 46.016999999999996 22.15 157.0 19730721 20200624 152060 99999 TEBEA RO 46.167 22.726 264.0 19730802 20200624 152080 99999 ALBA IULIA RO 46.067 23.566999999999997 247.0 19830301 20200624 152090 99999 BLAJ RO 46.183 23.933000000000003 334.0 19730105 20200624 152100 99999 BOGUS ROMANIAN RO 19890508 20030130 152110 99999 BOGUS ROMANIAN RO 19870615 20030615 152120 99999 HOMOROD RO 46.05 25.267 451.0 19840902 20020930 152150 99999 BARAOLT RO 46.083 25.6 509.0 19730721 20200624 152170 99999 TARGU SECUIESC RO 46.0 26.133000000000003 569.0 19730721 20200624 152190 99999 ADJUD RO 46.1 27.166999999999998 102.0 19740318 20200624 152210 99999 BALINTESTI RO 46.033 27.916999999999998 214.0 19730721 20041215 152220 99999 BOGUS ROMANIAN RO 19840104 20020718 152300 99999 DEVA RO 45.867 22.9 231.0 19520101 20200624 152310 99999 SEBES ALBA RO 45.967 23.533 272.2 19730721 20200624 152350 99999 FAGARAS RO 45.833 24.933000000000003 429.0 19660505 20200624 152370 99999 BOGUS ROMANIAN RO 19881001 20020713 152380 99999 SFANTU GHEORGHE GOVASNA RO 45.867 25.816999999999997 526.0 19740315 20200624 152390 99999 BOGUS ROMANIAN RO 19880501 20020726 152410 99999 TULNICI RO 45.917 26.666999999999998 563.0 19730721 20020930 152450 99999 JIMBOLIA RO 45.783 20.7 80.0 19860101 20200624 152470 99999 TRAIAN VUIA RO LRTR 45.81 21.338 106.1 19520101 20200624 152490 99999 BOGUS ROMANIAN RO 19910201 20020901 152540 99999 PALTINIS SIBIU RO 45.65 23.933000000000003 1454.0 19730802 20200624 152590 99999 POSTAVARU RO 45.567 25.55 1784.0 19891201 20090205 152600 99999 SIBIU RO LRSB 45.786 24.090999999999998 456.0 19360101 20200624 152610 99999 INTORSURA BUZAULUI RO 45.683 26.017 710.0 19730105 20200624 152620 99999 LACAUTI RO 45.817 26.383000000000003 1785.0 19730721 20200624 152640 99999 FOCSANI RO 45.7 27.2 59.0 19830301 20200624 152650 99999 TECUCI RO 45.85 27.416999999999998 61.0 19360102 20200624 152670 99999 RAUTI RO 45.667 20.933000000000003 80.0 19730721 20020909 152700 99999 LUGOJ RO 45.683 21.933000000000003 123.0 19740316 20200624 152710 99999 20010707 20020803 152720 99999 20010820 20030220 152730 99999 PICLISA RO 45.567 22.883000000000003 381.0 19730721 20020607 152770 99999 BOITA RO 45.65 24.267 519.0 19730721 20200624 152780 99999 BOGUS ROMANIAN RO 19840102 20020922 152790 99999 BALEA LAC RO 45.6 24.616999999999997 2038.0 19830301 20200624 152800 99999 VARFU OMU RO 45.45 25.45 2509.0 19520101 20200624 152810 99999 BOGUS ROMANIAN RO 19830301 20021106 152820 99999 POIANA BRASOV RO 45.6 25.55 1028.0 19870301 20040514 152830 99999 BOGUS ROMANIAN RO 19840501 20020517 152840 99999 PENTELEU RO 45.6 26.416999999999998 1626.0 19880101 20200624 152850 99999 BISOCA RO 45.55 26.7 833.0 19840401 20200624 152870 99999 MAICANESTI RO 45.5 27.5 18.0 19740315 20080625 152890 99999 BANLOC RO 45.383 21.133000000000003 83.0 19730105 20200624 152900 99999 BOGUS ROMANIAN RO 0.0 0.0 -999.9 19850102 20020916 152920 99999 CARANSEBES RO LRCS 45.42 22.253 264.0 19650701 20200624 152950 99999 BOGUS ROMANIAN RO 19880201 20030302 152960 99999 PETROSANI RO 45.417 23.383000000000003 599.0 19730115 20200624 152970 99999 OBARSIA LOTRULUI RO 45.433 23.633000000000003 1350.0 19830301 20200624 152980 99999 COZIA PASS (AUT) RO 45.25 24.25 1640.0 19740318 20030221 152990 99999 RUCAR RO 45.4 25.166999999999998 581.0 19830301 20020619 153000 99999 BRASOV-GHIMBAV RO 45.7 25.533 538.0 19730721 20200624 153010 99999 FUNDATA RO 45.433 25.267 1383.0 19730721 20200624 153020 99999 PREDEAL RO 45.5 25.583000000000002 1093.0 19340703 20200624 153030 99999 BOGUS ROMANIAN RO 19870701 20020521 153040 99999 BOGUS ROMANIAN RO 19880201 20020903 153070 99999 RAMNICU SARAT RO 45.383 27.05 154.0 19740315 20200624 153100 99999 GALATI RO 45.483000000000004 28.033 71.0 19350702 20200624 153110 99999 BOGUS ROMANIAN RO 19850102 20030205 153120 99999 BOGUS ROMANIAN RO 19371103 20020809 153140 99999 RESITA RO 45.3 21.916999999999998 286.0 19830401 20200624 153150 99999 SEMENIC RO 45.183 22.05 1433.0 19730721 20200624 153160 99999 CUNTU RO 45.3 22.517 1450.0 19730721 20200624 153170 99999 TARCU RO 45.283 22.533 2186.0 19730721 20200624 153180 99999 20010710 20030208 153190 99999 VOINEASA RO 45.417 23.967 575.0 19730720 20200624 153200 99999 PARANG RO 45.383 23.467 1550.0 19730720 20200624 153210 99999 PARING (AUT) RO 45.35 23.517 2075.0 19740318 20020822 153220 99999 BOGUS ROMANIAN RO 19890101 20020930 153240 99999 CAMPULUNG MUSCEL RO 45.283 25.033 680.0 19740315 20200624 153250 99999 SINAIA-1500 RO 45.35 25.5 1510.0 19730721 20200624 153280 99999 PATARLAGELE RO 45.317 26.366999999999997 291.0 19740315 20200624 153330 99999 BRAILA RO 45.2 27.916999999999998 15.0 19830401 20200624 153350 99999 CATALOI RO LRTC 45.062 28.714000000000002 61.0 19730105 20200624 153355 99999 TULCEA/CATALOI RO 45.067 28.717 46.0 19760203 19900108 153360 99999 GORGOVA RO 45.183 29.166999999999998 4.0 19740315 20200624 153370 99999 MAHMUDIA RO 45.083 29.066999999999997 173.0 19930501 20200624 153380 99999 ORAVITA RO 45.033 21.683000000000003 310.0 19730108 20200624 153400 99999 TARGU JIU RO 45.033 23.267 205.5 19660506 20200624 153410 99999 APA NEAGRA RO 45.0 22.866999999999997 251.0 19730819 20200624 153440 99999 POLOVRAGI RO 45.183 23.816999999999997 532.0 19740315 20200624 153450 99999 MORARESTI RO 45.0 24.533 550.0 19730728 20200624 153460 99999 RAMNICU VALCEA RO 45.1 24.366999999999997 239.0 19370316 20200624 153470 99999 CURTEA DE ARGES RO 45.167 24.666999999999998 449.0 19730721 20200624 153480 99999 BOGUS ROMANIAN RO 19910601 20020930 153490 99999 CAMPINA RO 45.144 25.75 463.0 19730721 20200624 153500 99999 BUZAU RO 45.15 26.816999999999997 97.0 19360101 20200624 153510 99999 BOGUS ROMANIAN RO 19870611 20030622 153550 99999 FAUREI/=694514 KQYB RO 45.067 27.233 53.0 19730721 20041018 153560 99999 VIZIRU RO 45.016999999999996 27.7 20.0 19730721 20010401 153570 99999 BOGUS ROMANIAN RO 19900301 20021103 153580 99999 BOGUS ROMANIAN RO 19880201 20030609 153600 99999 SULINA RO 45.167 29.733 9.0 19360101 20200624 153610 99999 BOGUS ROMANIAN RO 19890520 20020724 153630 99999 CARBUNARI RO 44.833 21.75 90.0 19840104 20020519 153640 99999 BOZOVICI RO 44.917 22.0 252.0 19740315 20200624 153660 99999 BAILE HERCULANE RO 44.883 22.416999999999998 176.0 19830401 20200624 153690 99999 TARGU LOGRESTI RO 44.883 23.7 265.0 19730721 20200624 153730 99999 PITESTI RO 44.85 24.816999999999997 315.0 19660202 20200624 153750 99999 TARGOVISTE RO 44.933 25.433000000000003 297.7 19730105 20200624 153770 99999 PLOIESTI RO 44.95 26.0 177.0 19660105 20200624 153800 99999 20010718 20030711 153870 99999 SFANTU GHEORGHE DELTA RO 44.9 29.6 2.0 19730102 20200624 153880 99999 MOLDOVA VECHE RO 44.717 21.633000000000003 83.0 19740315 20200624 153890 99999 BERZASCA RO 44.65 21.95 68.0 19730721 20020523 153950 99999 DRAGASANI RO 44.667 24.233 281.0 19730721 20200624 153990 99999 BOGUS ROMANIAN RO 19910201 20030921 154010 99999 BOGUS ROMANIAN RO 19851101 20020908 154020 99999 URZICENI RO 44.717 26.65 61.0 19730721 20200624 154050 99999 GRIVITA RO 44.75 27.3 51.0 19660105 20200624 154060 99999 HARSOVA RO 44.683 27.95 38.0 19740315 20200624 154080 99999 CORUGEA RO 44.733000000000004 28.35 220.0 19730804 20200624 154090 99999 JURILOVCA RO 44.766999999999996 28.883000000000003 38.0 19730105 20200624 154100 99999 DROBETA TURNU SEVERIN RO 44.633 22.633000000000003 80.0 19360101 20200624 154120 99999 BACLES RO 44.483000000000004 23.116999999999997 313.0 19730721 20200624 154130 99999 BOGUS ROMANIAN RO 19920301 20020531 154140 99999 BOGUS ROMANIAN RO 19840402 20020930 154160 99999 STOLNICI RO 44.567 24.8 210.0 19730721 20200624 154190 99999 TITU RO 44.65 25.583000000000002 160.0 19740315 20200624 154200 99999 AUREL VLAICU RO LRBS 44.503 26.101999999999997 90.5 19310106 20200624 154210 99999 HENRI COANDA RO LROP 44.571000000000005 26.085 95.7 19730101 20200624 154215 99999 CAMPIA TURZII RO LRCT 46.501999999999995 23.886 330.1 20050727 20200624 154220 99999 BUCURESTI FILARET RO 44.417 26.1 83.5 19790808 20200624 154230 99999 DILGA RO 44.45 26.967 51.0 19730721 20020607 154240 99999 FUNDULEA RO 44.467 26.517 67.0 19730721 20120531 154250 99999 SLOBOZIA RO 44.55 27.4 52.0 19830401 20200624 154280 99999 GURA PORTITEI RO 44.683 29.0 6.0 19850410 20200624 154290 99999 SARULESTI RO 44.417 26.65 88.0 19830401 20020930 154340 99999 SLATINA RO 44.433 24.35 173.0 19830401 20200624 154360 99999 BOGUS ROMANIAN RO 0.0 0.0 159.0 19850501 20020604 154430 99999 DOR MARUNT RO 44.45 26.916999999999998 40.0 19830401 20020614 154440 99999 FETESTI RO 44.367 27.85 61.0 19730105 20200624 154450 99999 CERNAVODA RO 44.35 28.05 88.0 19850801 20200624 154470 99999 SARBATO RO 44.283 23.633000000000003 162.0 19840401 19860807 154480 99999 BOGUS ROMANIAN RO 0.0 0.0 19910201 20020623 154490 99999 BOGUS ROMANIAN RO 19910201 20020916 154500 99999 CRAIOVA RO LRCV 44.318000000000005 23.889 190.8 19360101 20200624 154510 99999 CRAIOVA RO 44.3 23.8 113.0 19740315 19901024 154550 99999 VIDELE RO 44.283 25.533 107.0 19740318 20200624 154580 99999 MINASTIREA RO 44.25 26.85 41.0 19740429 19841112 154600 99999 CALARASI RO 44.2 27.35 20.0 19360101 20200624 154620 99999 MEDGIDIA RO 44.25 28.267 72.0 19730721 20200624 154630 99999 BOGUS ROMANIAN RO 0.0 0.0 49.0 19840102 20020618 154640 99999 20010717 20020923 154650 99999 BAILESTI RO 44.016999999999996 23.333000000000002 58.0 19730721 20200624 154690 99999 CARACAL RO 44.1 24.366999999999997 107.0 19730721 20200624 154700 99999 ROSIORII DE VEDE RO 44.1 24.983 103.0 19660506 20200624 154740 99999 BOGUS ROMANIAN RO 0.0 0.0 93.0 19890201 20020930 154750 99999 OLTENITA RO 44.067 26.633000000000003 16.0 19831201 20200624 154760 99999 GREACA RO 44.117 26.333000000000002 4.0 19841001 20030614 154770 99999 PLATFORMA GLORIA RO 44.516999999999996 29.566999999999997 14.0 19830401 20120531 154790 99999 ADAMCLISI RO 44.083 27.967 160.0 19730721 20200624 154800 99999 CONSTANTA RO 44.217 28.65 14.0 19360101 20200624 154810 99999 MIHAIL KOGALNICEANU RO LRCK 44.361999999999995 28.488000000000003 107.6 19730620 20200624 154820 99999 CALAFAT RO 43.983000000000004 22.95 63.0 19730105 20200624 154830 99999 BOGUS ROMANIAN RO 19860301 20020924 154890 99999 ALEXANDRIA RO 43.983000000000004 25.35 76.0 19730721 20200624 154900 99999 TURNU-MAGURELE RO 43.75 24.883000000000003 31.0 19361201 20200624 154910 99999 GIURGIU RO 43.883 25.95 24.0 19730115 20200624 154930 99999 TUZLA RO 44.0 28.666999999999998 49.0 19730721 19900809 154931 99999 TUZLA RO LRTZ 43.985 28.607 50.0 20110715 20200624 154940 99999 BECHET RO 43.783 23.95 40.0 19740315 20200624 154950 99999 BOGUS ROMANIAN RO 19910201 20020813 154980 99999 ZIMNICEA RO 43.667 25.35 34.0 19830401 20200624 154990 99999 MANGALIA RO 43.817 28.583000000000002 9.0 19640101 20200624 155010 99999 NOVO SELO BU 44.167 22.8 38.0 19530306 20180430 155020 99999 VIDIN BU 43.983000000000004 22.85 595.0 19730314 20200624 155030 99999 GRAMADA BU 43.833 22.666999999999998 253.0 19730305 19910707 155050 99999 VRATZA BU 43.2 23.533 310.0 19730305 20180430 155070 99999 MONTANA BU 43.417 23.217 204.0 20040916 20180716 155100 99999 NAME AND LOC UNKN BU 0.0 0.0 -999.0 19750903 20030518 155110 99999 LOM BU 43.817 23.25 33.0 19520101 20180430 155140 99999 ORYAHOVO BU 43.683 23.967 31.0 19660111 20180716 155200 99999 BOGUS BULGARIAN BU 19730305 20030904 155250 99999 LOVETCH BU 43.15 24.7 221.0 19751101 20200624 155253 99999 GORNA ORYAHOVITSA BU LBGO 43.151 25.713 86.9 19970102 20200624 155254 99999 DOLNA MITROPOLIA AB BU LBPL 43.45 24.5 101.0 20080721 20200624 155255 99999 GRAF IGNATIEVO BU LBPG 42.29 24.73 196.0 20071016 20200624 155256 99999 BEZMER AB BU LBIA 42.45 26.35 155.0 20080721 20200624 155257 99999 BALCHICK AB BU LBWB 43.417 28.183000000000003 201.0 20080722 20200624 155258 99999 GRAF IGNATIEVO AIR BASE BU LBGD 42.283 24.75 58.0 20080916 20121019 155260 99999 PLEVEN BU 43.417 24.6 71.0 19520803 20020918 155280 99999 PLEVEN BU 43.4 24.6 160.0 20010915 20180716 155300 99999 VELIKO TARNOVO BU 43.083 25.65 218.0 19360701 20180716 155330 99999 SVICHTOV BU 43.617 25.35 26.0 19530301 20180430 155340 99999 NAME AND LOC UNKN BU 0.0 0.0 -999.0 19730305 19740429 155350 99999 ROUSSE/RUSE BU LBRS 43.85 25.95 45.0 19360701 20180716 155380 99999 BOGUS BULGARIAN BU 19730305 20020518 155440 99999 SHUMEN BU 43.266999999999996 26.933000000000003 220.0 19650701 19901130 155460 99999 SAMOUIL BU 43.516999999999996 26.75 475.0 19730305 19801004 155470 99999 BOGUS BULGARIAN BU 19860504 19900210 155490 99999 RAZGRAD BU 43.567 26.5 347.0 19810101 20200624 155500 99999 SILISTRA BU 44.117 27.267 16.0 19530801 20180430 155520 99999 VARNA BU LBWN 43.232 27.825 70.1 19360102 20200624 155560 99999 LJUBEN KARAVELOVO BU 43.233000000000004 27.816999999999997 62.0 19730101 19750514 155561 99999 BALGAREVO BU 43.383 28.383000000000003 83.0 19750515 19900125 155610 99999 SHABLA BU 43.533 28.533 28.0 19750401 20180716 155620 99999 KALIAKPA BU 43.367 28.467 64.0 19730305 20180430 155630 99999 NAME AND LOC UNKN BU 0.0 0.0 -999.0 19730305 20020312 155750 99999 BOGUS BULGARIAN BU 19751101 19900220 156000 99999 MOURGASH BU 42.833 23.666999999999998 1692.0 19730305 20200624 156010 99999 KUSTENDIL BU 42.266999999999996 22.767 527.0 19660503 20180716 156050 99999 DRAGOMAN BU 42.933 22.933000000000003 716.0 19730305 20180430 156090 99999 SOFIA/VRAZHDEBNA BU 42.7 23.416999999999998 531.0 19730101 19750514 156091 99999 SOFIA (OBSERVATORY) BU 42.817 23.383000000000003 595.0 19750515 19900208 156110 99999 BOGUS BULGARIAN BU 19730305 20031111 156130 99999 CHERNI VRAH (TOP/SOMMET) BU 42.583 23.267 2292.0 19530804 20180430 156140 99999 SOFIA BU LBSF 42.695 23.406 531.0 19310901 20200624 156150 99999 MUSSALA (TOP/SOMMET) BU 42.183 23.583000000000002 2927.0 19350102 20200624 156180 99999 BOGUS BULGARIAN BU 19730305 20020507 156190 99999 BOGUS BULGARIAN BU 19730305 20030225 156220 99999 IHTIMAN BU 42.433 23.816999999999997 637.0 19530305 20030501 156250 99999 PLOVDIV BU LBPD 42.068000000000005 24.851 182.0 19390102 20200624 156260 99999 PLOVDIV BU 42.067 24.85 156.0 20040831 20180716 156270 99999 BOTEV VRAH (TOP/SOMMET) BU 42.667 24.833000000000002 2389.0 19570701 20190127 156280 99999 IVAILO BU 42.217 24.333000000000002 214.0 19730305 20180430 156300 99999 NAME AND LOC UNKN BU 0.0 0.0 -999.0 19751101 19781103 156310 99999 KAZANLUK BU 42.617 25.4 387.0 19360701 19390930 156350 99999 CHIRPAN BU 42.2 25.333000000000002 178.0 19530402 20180430 156360 99999 YAMBOL BU 42.483000000000004 26.517 146.0 19360701 19390930 156370 99999 BOGUS BULGARIAN BU 19730308 20040219 156400 99999 SLIVEN BU 42.667 26.333000000000002 257.0 19530305 20200624 156420 99999 ELHOVO BU 42.183 26.566999999999997 139.0 19530401 20180430 156450 99999 NAME AND LOC UNKN BU 0.0 0.0 -999.0 19730305 20021015 156460 99999 KARNOBAT BU 42.65 26.983 195.0 19570630 19900219 156500 99999 BOGUS BULGARIAN BU 19730306 19891223 156550 99999 BURGAS BU LBBG 42.57 27.515 41.1 19530101 20200624 156610 99999 ACHTOPOL BU 42.1 27.85 19.0 19730305 20180430 156620 99999 PRIMORSKO BU 42.283 27.75 10.0 19890604 20020922 157120 99999 SANDANSKI BU 41.55 23.267 207.0 19520101 20200624 157180 99999 BOGUS BULGARIAN BU 19730305 20031118 157250 99999 SNEJANKA (TOP/SOMMET) BU 41.667 24.683000000000003 1930.0 19530309 20020618 157260 99999 ROJEN BU 41.883 24.733 1750.0 20010915 20191009 157290 99999 BOGUS BULGARIAN BU 19730305 20020104 157300 99999 KURDJALI BU 41.65 25.383000000000003 331.0 19570627 20200624 157340 99999 NAME AND LOC UNKN BU 0.0 0.0 -999.0 19750901 20021003 157360 99999 NAME AND LOC UNKN BU 0.0 0.0 -999.0 19730305 20020825 157410 99999 SVILENGRAD BU 41.766999999999996 26.2 55.0 19660101 20050630 157720 99999 20010810 20021014 158430 99999 20010906 20020401 158840 99999 BOGUS BULGARIAN BU 19881104 20020507 160000 99999 BOGUS ITALIAN IT 19850126 20030328 160010 99999 BASSANO DEL GRAPPA IT LIPJ 45.766999999999996 11.732999999999999 19770513 19790830 160015 99999 UNKNOWN IT 0.0 0.0 -999.0 19730101 19740228 160016 99999 ANCONA IT 43.617 13.517000000000001 103.0 19730101 19751109 160060 99999 BOGUS ITALIAN IT 19860721 20020121 160080 99999 S. VALENTINO ALLA MUTA IT 46.75 10.533 1461.0 19670102 20200624 160083 99999 RESIA PASS IT LIVE 46.833 10.5 1800.0 19870326 20200624 160100 99999 VIPITENO IT 46.883 11.35 942.0 20040216 20040316 160140 99999 VIPITENO IT 46.883 11.433 921.0 20050727 20200624 160150 99999 BRENNERO PASS IT 46.983000000000004 11.5 1362.0 19730101 19840514 160180 99999 SOPRABOLZANO IT 46.533 11.417 1298.0 19730226 19760101 160200 99999 BOLZANO IT LIPB 46.46 11.325999999999999 240.5 19650129 20200624 160210 99999 ROLLE PASS IT LIVR 46.3 11.783 2006.0 19730101 20200624 160220 99999 PAGANELLA MOUNTAIN IT LIVP 46.15 11.033 2129.0 19730101 20200624 160230 99999 TRENTO IT 46.016999999999996 11.117 190.0 20070605 20200624 160330 99999 DOBBIACO IT LIVD 46.733000000000004 12.217 1226.0 19730101 20200624 160360 99999 AVIANO AB IT LIPA 46.032 12.595999999999998 117.0 19660701 20200624 160365 99999 AVIANO (USAF) IT 46.016999999999996 12.617 126.0 19560101 19950831 160370 99999 AVIANO (USAF) IT LIYW 46.033 12.617 125.0 19930701 20081231 160400 99999 TARVISIO IT LIVO 46.5 13.583 778.0 19650129 20200624 160410 99999 TARVISIO IT 46.5 13.583 778.0 20050727 20120531 160440 99999 UDINE/CAMPOFORMIDO IT LIPD 46.033 13.183 94.0 19660104 19990330 160450 99999 RIVOLTO IT LIPI 45.979 13.049000000000001 54.6 19580414 20200624 160455 99999 GORIZIA IT LIPG 45.95 13.633 63.0 19731122 19840512 160460 99999 UDINE/RIVOLTO IT 45.967 13.033 53.0 20061024 20120531 160520 99999 PIAN ROSA (MTN TOP) IT LIMH 45.933 7.7 3488.0 19650129 20200310 160530 99999 COLLE DEL GIGANTE IT LIMI 46.917 12.1 -999.9 19730101 20050505 160540 99999 AOSTA POLLEIN IT LIMW 45.733000000000004 7.35 551.0 19840701 20200624 160550 99999 BOGUS ITALIAN IT 19850602 20041129 160580 99999 BOUSSON IT 44.933 6.817 1400.0 20050727 20200624 160590 99999 TORINO CASELLE IT LIMF 45.201 7.65 301.4 19640811 20200624 160595 99999 AERITALIA-TORINO IT LIMA 45.086000000000006 7.603 288.3 20080425 20200624 160600 99999 TORINO VENARIA IT 45.117 7.617000000000001 277.0 20050727 20200624 160610 99999 TORINO/BRIC CROCE IT LIMK 45.033 7.733 710.0 19730101 20200624 160640 99999 CAMERI IT LIMN 45.53 8.669 178.6 19660923 20200624 160660 99999 MALPENSA IT LIMC 45.631 8.728 233.8 19650204 20200624 160670 99999 GALLARATE IT 45.65 8.817 238.0 20061024 20120531 160680 99999 CASALE MONFERRATO IT 45.1 8.45 120.0 20050727 20191113 160700 99999 GRIGNA SETTENTRION IT 45.95 9.383 2403.0 19730301 20050902 160720 99999 BISBINO MOUNTAIN IT LIMO 45.867 9.067 1322.0 19730101 20070227 160730 99999 MONTE BISBINO IT 45.867 9.067 1323.0 20060201 20080801 160740 99999 VALCAVA IT 45.783 9.517000000000001 1262.0 19770309 19790828 160760 99999 BERGAMO ORIO AL SERIO IT LIME 45.674 9.704 238.4 19660908 20200624 160800 99999 LINATE IT LIML 45.445 9.277000000000001 107.6 19310104 20200624 160810 99999 MILANO/LINATE IT 45.467 9.267000000000001 108.0 20050727 20181231 160840 99999 PIACENZA IT LIMS 44.913000000000004 9.722999999999999 139.0 19660914 20200624 160880 99999 GHEDI IT LIPL 45.431999999999995 10.267999999999999 101.5 19660904 20200624 160890 99999 DESENZANO IT 45.467 10.55 65.0 20050727 20200624 160900 99999 VILLAFRANCA IT LIPX 45.396 10.889000000000001 72.8 19450518 20200624 160903 99999 PADOVA (CIV/IT-AFB) IT 45.4 11.85 13.0 19820625 19901115 160920 99999 GRAPPA MOUNTAIN IT 45.867 11.8 1775.0 19730101 19840910 160940 99999 VICENZA IT LIPT 45.573 11.53 39.0 19660904 20150116 160950 99999 PADOVA IT LIPU 45.4 11.85 14.0 19730101 20200624 160960 99999 MOUNT VENDA IT LIVV 45.317 11.683 575.0 19730101 19790315 160980 99999 ISTRANA IT LIPS 45.685 12.083 41.8 19660904 20200624 160990 99999 TREVISO IT LIPH 45.648 12.194 18.0 19660901 20200624 161000 99999 VENEZIA/SAN NICOLO IT LIPV 45.433 12.383 4.0 19511001 19790830 161010 99999 VENEZIA LIDO IT 45.433 12.383 5.0 19961205 20200624 161050 99999 VENEZIA TESSERA IT LIPZ 45.505 12.352 2.1 19610301 20200624 161070 99999 CONCORDIA SAGITTARIA IT 45.75 12.85 2.0 20051013 20200624 161080 99999 RONCHI DEI LEGIONARI IT LIPQ 45.828 13.472000000000001 11.3 19730101 20200624 161100 99999 TRIESTE IT LIVT 45.65 13.75 20.0 19321020 20200624 161110 99999 MONTE SETTEPANI IT 44.233000000000004 8.2 1382.0 20050727 20200624 161120 99999 FRAITEVE MOUNTAIN IT LIMX 44.983000000000004 6.85 2680.0 19730101 19840525 161140 99999 MONDOVI IT 44.383 7.817 560.0 19841101 20200624 161150 99999 MALANOTTE MOUNTAIN IT LIMY 44.25 7.8 1742.0 19730608 20200624 161155 99999 MALANOTTE MOUNTAIN& IT 44.25 7.8 1742.0 19730101 19740515 161160 99999 GOVONE IT 44.8 8.1 315.0 19730101 20010713 161170 99999 CUNEO LEVALDIGI IT 44.533 7.617000000000001 386.0 19730620 20120531 161180 99999 NOVI LIGURE IT 44.766999999999996 8.783 187.0 19750401 20050506 161190 99999 GIOVI PASS IT LIMV 44.633 8.933 475.0 19730101 20200623 161200 99999 GENOVA SESTRI IT LIMJ 44.412 8.842 4.0 19280101 20200624 161210 99999 GENOVA IT 44.4 8.9 45.0 19511001 20200624 161220 99999 ALBENGA IT LIMG 44.051 8.127 45.1 19730101 20200624 161230 99999 CHIAVARI IT 44.317 9.333 30.0 20050727 20200624 161240 99999 CISA PASS IT LIMT 44.433 9.933 1040.0 19730101 20190923 161250 99999 SARZANA/LUNI IT LIQW 44.083 9.982999999999999 10.0 19731109 20200624 161260 99999 PASSO DEI GIOVI IT 44.55 8.933 488.0 20050727 20120531 161270 99999 SARZANA IT 44.083 9.982999999999999 9.0 20050727 20120531 161280 99999 MODENA IT 44.65 10.95 33.0 20050727 20160130 161290 99999 PALMARIA ISLAND IT LIQP 44.033 9.833 192.0 19730101 20200624 161300 99999 PARMA IT 44.817 10.283 51.0 19660101 20160516 161320 99999 BOLOGNA IT 44.533 11.283 52.0 20050727 20200624 161330 99999 FERRARA IT 44.8 11.6 10.0 20050727 20200624 161340 99999 CIMONE MOUNTAIN IT LIVC 44.2 10.7 2173.0 19650201 20200624 161343 99999 PORRETTA PASS IT LIQD 44.033 10.933 932.0 19901018 19940816 161350 99999 PASSO PORRETTA IT 44.033 11.0 1314.0 20050727 20090206 161360 99999 PASSO PORRETTA IT 44.016999999999996 11.0 1314.0 19730101 20090531 161380 99999 FERRARA (AUT) IT LIPF 44.833 11.617 10.0 19730101 20200624 161400 99999 BOLOGNA IT LIPE 44.535 11.289000000000001 37.5 19640811 20200624 161420 99999 RIFREDO MUGELLO IT 44.05 11.383 887.0 19441202 20050124 161440 99999 S. PIETRO CAPOFIUME MOLINELLA (BOLOGNA) IT 44.65 11.617 12.0 20001019 20010202 161450 99999 PUNTA MARINA IT 44.467 12.283 6.0 20050727 20120531 161460 99999 POINT MARINA/RAVENN IT LIVM 44.45 12.3 6.0 19660104 20200624 161470 99999 FORLI IT LIPK 44.195 12.07 29.6 19730101 20200624 161480 99999 CERVIA IT LIPC 44.224 12.307 5.5 19730101 20200624 161490 99999 RIMINI IT LIPR 44.02 12.612 12.5 19450408 20200624 161500 99999 IMPERIA IT 43.867 8.033 60.0 19851201 20120531 161530 99999 CAPE MELE IT LIMU 43.95 8.167 221.0 19650501 20200624 161540 99999 ISOLA GORGONA IT 43.433 9.9 260.0 19730101 20190616 161550 99999 ISOLA CAPRAIA IT 43.033 9.817 27.0 20070717 20081113 161580 99999 PISA IT LIRP 43.684 10.392999999999999 1.8 19441124 20200624 161640 99999 VOLTERRA IT LIQV 43.4 10.867 575.0 19730101 20170707 161650 99999 VOLTERRA IT 43.4 10.883 575.0 20050727 20060927 161680 99999 MOUNT ARGENTARIO IT LIQO 42.383 11.167 632.0 19730101 20200624 161700 99999 FIRENZE IT LIRQ 43.81 11.205 43.9 19310102 20200624 161710 99999 FIRENZE IT 43.783 11.217 18.0 20050727 20200624 161720 99999 AREZZO IT LIQB 43.467 11.85 249.0 19780914 20200624 161740 99999 SIENA IT 43.317 11.35 322.0 19730101 19781104 161743 99999 SIENA & IT LIQS 43.317 11.35 322.0 19441004 19450116 161760 99999 SASSOFELTRIO IT 43.883 12.517000000000001 461.0 19730101 19751224 161780 99999 FRONTONE IT 43.516999999999996 12.717 574.0 20051017 20120531 161790 99999 FRONTONE IT LIVF 43.516999999999996 12.732999999999999 574.0 19730101 20200624 161800 99999 PERUGIA IT 43.133 12.383 493.0 19650204 20050317 161810 99999 PERUGIA IT LIRZ 43.096000000000004 12.513 211.2 19671106 20200624 161820 99999 PERUGIA S. EGIDIO IT 43.1 12.5 205.0 20050727 20120531 161900 99999 ANCONA IT 43.617 13.533 142.0 19490403 20200624 161910 99999 FALCONARA IT LIPY 43.61600000000001 13.362 14.9 19450414 20200624 161915 99999 JESI IT 43.516999999999996 13.232999999999999 -999.0 19730719 19740814 161920 99999 LORETO IT 43.433 13.583 197.0 20050727 20191124 161940 99999 19730101 19751126 161970 99999 MONTE CALAMITA IT LIRX 42.733000000000004 10.4 397.0 19730101 20200624 161980 99999 ISOLA D'ELBA IT 42.733000000000004 10.4 397.0 20050727 20090206 162000 99999 PIANOSA ISLAND IT 42.583 10.1 15.0 19650201 19791220 162040 99999 RADICOFANI IT LIQR 42.9 11.767000000000001 918.0 19730101 20200228 162060 99999 GROSSETO IT LIRS 42.76 11.072000000000001 4.6 19441211 20200624 162100 99999 FURBARA IT 42.0 12.017000000000001 11.0 20151209 20160817 162140 99999 CIVITAVECCHIA IT 42.016999999999996 11.817 4.0 19450305 20200624 162150 99999 CIVITAVECCHIA IT LIQJ 42.02 11.82 4.0 20050727 20200624 162160 99999 VITERBO IT LIRV 42.43 12.064 301.8 19440701 20200624 162170 99999 ORTE IT 42.483000000000004 12.333 75.0 20050727 20120531 162180 99999 VITERBO IT 42.433 12.05 310.0 20050727 20190417 162190 99999 TERMINILLO MOUNTAIN IT LIRK 42.467 12.982999999999999 1875.0 19650201 20200624 162210 99999 RIETI IT LIQN 42.417 12.85 389.0 19731213 20200624 162230 99999 VIGNA DI VALLE IT 42.083 12.217 266.0 20050727 20080523 162240 99999 VIGNA DI VALLE(MIL) IT LIRB 42.083 12.217 270.0 19730101 20200624 162250 99999 GROTTAMMARE IT 42.983000000000004 13.867 1.0 19730101 19840916 162260 99999 L'AQUILA IT 42.367 13.317 669.0 20050727 20080611 162270 99999 FUCINO IT 41.983000000000004 13.6 650.0 19840801 20181116 162280 99999 PRETURO IT LIAP 42.367 13.3 667.0 19730101 19891204 162281 99999 GRAN SASSO MTN RNG IT 42.45 13.55 2138.0 19850118 19900125 162283 99999 GRAN SASSO MTN RNG IT LIQI 42.45 13.7 2138.0 19900208 20090603 162290 99999 GRAN SASSO MTN RNG IT 42.45 13.7 2138.0 20030725 20050511 162300 99999 PESCARA IT LIBP 42.431999999999995 14.181 14.6 19650201 20200624 162310 99999 MONTE S. ANGELO IT LIBE 41.7 15.95 844.0 20040917 20200624 162320 99999 TERMOLI IT LIBT 42.0 15.0 44.0 19730101 20200624 162330 99999 GUIDONIA IT 42.0 12.732999999999999 90.0 20050727 20120531 162340 99999 GUIDONIA IT LIRG 41.99 12.741 88.1 19660923 20200624 162350 99999 URBE IT LIRU 41.952 12.499 16.8 19730101 20200624 162380 99999 ROMA/CENTOCELLE IT 41.867 12.567 53.0 20050727 20120531 162390 99999 CIAMPINO IT LIRA 41.799 12.595 130.1 19511001 20200624 162400 99999 ROME IT 41.9 12.482999999999999 95.0 19280101 20040826 162420 99999 FIUMICINO IT LIRF 41.803999999999995 12.251 4.6 19650701 20200624 162430 99999 LATINA IT LIRL 41.542 12.909 28.3 19440301 20200624 162440 99999 FROSINONE (IT-AFB) IT LIRH 41.633 13.3 181.0 19730101 20200624 162450 99999 PRATICA DI MARE IT LIRE 41.659 12.445 12.5 19660923 20200624 162460 99999 FROSINONE IT 41.633 13.3 186.0 20050727 20090206 162470 99999 LATINA IT 41.55 12.9 26.0 20050727 20180621 162490 99999 CAPE CIRCEO IT LIQT 41.217 13.05 3.0 19730101 20180307 162520 99999 CAMPOBASSO IT LIBS 41.567 14.65 807.0 19650201 20200624 162530 99999 GRAZZANISE IT LIRM 41.06100000000001 14.082 8.8 19440331 20200624 162580 99999 MONTE S. ANGELO IT 41.7 15.95 848.0 19730101 20200624 162591 99999 PARMA IT LIMP 44.824 10.296 49.1 20040525 20200624 162592 99999 LEVALDIGI IT LIMZ 44.547 7.622999999999999 386.2 20040510 20200624 162593 99999 MONTICHIARI IT LIPO 45.428999999999995 10.331 108.5 20040510 20200624 162600 99999 GINA LISA IT LIBF 41.433 15.533 81.0 19570701 20200624 162603 99999 FOGGIA/GINO LISA & IT LIBF 41.433 15.533 80.0 19430930 19460915 162610 99999 AMENDOLA IT LIBA 41.541000000000004 15.718 55.8 19440131 20200624 162620 99999 TREVICO IT 41.05 15.232999999999999 1093.0 20050727 20120531 162630 99999 TREVICO IT LIRT 41.05 15.232999999999999 1093.0 19730101 20200624 162640 99999 MARINA DI GINOSA IT 41.133 15.517000000000001 514.0 19730101 19900403 162660 99999 VIESTE IT 41.883 16.167 4.0 19730101 20200624 162700 99999 BARI IT LIBD 41.133 16.767 53.9 19431207 20200624 162710 99999 BARI IT 41.117 16.883 11.0 20050727 20200624 162800 99999 PONZA ISLAND IT LIQZ 40.917 12.95 185.0 19650201 20200624 162810 99999 PONZA IT 40.917 12.95 185.0 20050831 20081003 162880 99999 CASERTA IT 41.067 14.317 62.0 20050727 20200609 162890 34113 NAPLES NAVAL AIR STATION IT LIRN 40.9 14.3 67.1 19981101 20200624 162890 99999 NAPOLI/CAPODICHINO IT LIRN 40.85 14.3 72.0 19511001 20081231 162920 99999 PONTECAGNANO IT 40.617 14.917 39.0 19730101 20090206 162923 99999 PONTECAGNANO IT LIRI 40.62 14.911 37.5 19930129 20200624 162940 99999 CAPRI ISLAND IT LIQC 40.55 14.25 269.0 19730101 20200624 162950 99999 CAPRI IT 40.55 14.2 161.0 20050728 20060529 162980 99999 19440301 19470228 163000 99999 POTENZA IT LIBZ 40.633 15.8 843.0 19650201 20070213 163100 99999 CAPE PALINURO IT LIQK 40.016999999999996 15.283 185.0 19640811 20200624 163120 99999 GIOIA DEL COLLE IT LIBV 40.768 16.933 361.8 19440229 20200624 163140 99999 MATERA IT 40.65 16.7 498.0 20050727 20200624 163160 99999 LATRONICO IT 40.083 16.017 896.0 19740902 20200624 163170 99999 LATRONICO IT LIBU 40.083 16.017 896.0 20050727 20200624 163180 99999 MARTINA FRANCA IT 40.633 17.217 414.0 19730915 20191204 163200 99999 CASALE IT LIBR 40.658 17.947 14.3 19431129 20200624 163240 99999 GROTTAGLIE IT LIBG 40.518 17.403 65.5 19430927 20200624 163250 99999 MARINA DI GINOSA IT LIBH 40.433 16.883 12.0 19670317 20200624 163300 99999 TARANTO IT 40.467 17.233 22.0 19310104 19391231 163320 99999 LECCE IT LIBN 40.239000000000004 18.133 47.5 19431231 20200624 163330 99999 LECCE IT 40.233000000000004 18.133 48.0 20050727 20181211 163340 99999 OTRANTO IT 40.1 18.483 80.0 19730101 20200624 163360 99999 BONIFATI IT 39.583 15.9 485.0 20060201 20120531 163370 99999 BONIFATI (CAPE) IT LIBW 39.583 15.883 485.0 19650201 20200624 163380 99999 CALOPEZZATI IT LICM 39.567 16.8 179.0 19740808 19810220 163383 99999 CALOPEZZATI IT LICM 39.55 16.8 179.0 19930312 19961009 163440 99999 MONTE SCURO IT 39.333 16.4 1677.0 19730101 20200624 163445 99999 SCURO MOUNTAIN IT LIBQ 39.333 16.4 1720.0 20050101 20200624 163450 99999 MONTE SCURO IT 39.333 16.4 1677.0 20061024 20120531 163500 99999 CROTONE IT LIBC 38.997 17.08 158.8 19570701 20200624 163510 99999 CROTONE IT 39.0 17.083 155.0 20050727 20120531 163600 99999 SANTA MARIA DI LEUC IT LIBY 39.817 18.35 112.0 19650201 20200624 163620 99999 LAMEZIA TERME IT LICA 38.905 16.242 11.9 19771101 20200624 163640 99999 SERRALTA DI S. VITO IT 38.75 16.367 997.0 19730101 20200623 163650 99999 CATANZARO IT 38.9 16.6 358.0 20060711 20200624 163680 99999 VIBO VALENTIA IT 38.667 16.1 520.0 19730725 19810711 164000 99999 USTICA ISLAND IT LICU 38.7 13.183 251.0 19570701 20200624 164010 99999 USTICA IT 38.7 13.183 243.0 20051017 20120529 164050 99999 PALERMO IT LICJ 38.176 13.091 19.8 19640811 20200624 164090 99999 PALERMO BOCCADIFALCO IT 38.117 13.317 123.0 20060710 20170927 164100 99999 BOCCADIFALCO IT LICP 38.111 13.312999999999999 105.2 19430807 20090111 164150 99999 ISOLA SALINA IT 38.567 14.85 46.0 19840501 20191121 164160 99999 ISOLA STROMBOLI IT 38.8 15.232999999999999 5.0 19730101 20200624 164200 99999 MESSINA IT LICF 38.2 15.55 51.0 19310101 20200624 164220 99999 REGGIO CALABRIA IT LICR 38.071 15.652000000000001 29.3 19730101 20200624 164290 99999 TRAPANI BIRGI IT LICT 37.911 12.488 7.3 19650201 20200624 164300 99999 MARSALA IT 37.817 12.467 2.0 19570701 19581231 164340 99999 PRIZZI IT LICX 37.717 13.433 1035.0 19730101 20200624 164350 99999 PRIZZI IT 37.717 13.433 1035.0 20050727 20160205 164360 99999 SCIACCA IT 37.516999999999996 13.083 125.0 19431010 20200624 164420 99999 GIBILMANNA IT 37.983000000000004 14.017000000000001 998.0 20050727 20191114 164500 99999 ENNA IT LICE 37.567 14.283 965.0 19730101 20200624 164530 99999 GELA IT LICL 37.083 14.217 33.0 19430902 20200624 164535 99999 19730101 19740117 164540 99999 GELA IT 37.083 14.217 65.0 20050727 20170526 164590 99999 CATANIA/SIGONELLA IT LICZ 37.4 14.917 22.0 19430810 20200624 164594 33126 SIGONELLA IT KQNS 37.4 14.917 31.1 19790101 20041231 164600 99999 CATANIA FONTANAROSSA IT LICC 37.467 15.065999999999999 11.9 19431028 20200624 164640 99999 SIRACUSA IT 37.05 15.279000000000002 2.0 20050727 20200624 164650 99999 MEZZO GREGORIO IT 36.967 14.95 639.0 20050727 20200624 164690 99999 CAPO SPARTIVENTO IT 37.933 16.05 118.0 19740601 20200624 164700 99999 PANTELLERIA IT LICG 36.817 11.969000000000001 193.5 19430620 20200624 164710 99999 PANTELLERIA IT 36.817 11.967 185.0 20050727 20090206 164750 99999 COMISO IT LICB 36.983000000000004 14.617 210.0 20050727 20200624 164751 99999 COMISO AS (USAF) IT LICB 36.983000000000004 14.583 220.0 19840323 19860430 164800 99999 COZZO SPADARO IT LICO 36.683 15.133 51.0 19660101 20200624 164900 99999 LAMPEDUSA IT LICD 35.498000000000005 12.618 21.3 19660104 20200624 164910 99999 LAMPEDUSA IT 35.5 12.6 50.0 20050727 20120531 165020 99999 ASINARA ISLAND IT LIER 41.117 8.317 115.0 19701001 19751209 165029 99999 19751117 19761215 165040 99999 PORTO TORRES IT 40.839 8.405 8.0 20151207 20160705 165060 99999 GUARDIAVECCHIA IT LIEG 41.217 9.4 170.0 19701001 20021029 165200 99999 ALGHERO IT LIEA 40.632 8.291 26.5 19570701 20200624 165220 99999 CAPE CACCIA IT LIEH 40.567 8.167 205.0 19750717 20200624 165230 99999 CAPO CACCIA IT 40.567 8.167 204.0 20050727 20120528 165240 99999 MACOMER SA' CRABARZA IT 40.266999999999996 8.767000000000001 586.0 19730101 20090206 165300 99999 OLSIA SARDINIA IT 40.933 9.5 2.1 19310104 19750910 165310 99999 OLBIA COSTA SMERALDA IT LIEO 40.899 9.517999999999999 11.3 19691117 20200624 165320 99999 MONTE LIMBARA IT 40.85 9.167 1363.0 20050727 20191214 165370 99999 FONNI IT 40.117 9.25 992.0 20050727 20080221 165380 99999 FONNI IT LIEN 40.117 9.25 1029.0 19730301 20161015 165390 99999 CAPE FRASCA IT LIEF 39.75 8.467 92.0 19660104 20200624 165410 99999 PERDASDEFOGU IT LIEP 39.667 9.433 645.0 19730101 20200624 165420 99999 CAPE S. LORENZO IT LIEL 39.5 9.617 22.0 19730101 20200624 165430 99999 CAPO S. LORENZO IT 39.5 9.633 3.0 20050727 20081125 165440 99999 MOUNT SERPEDDI IT 39.367 9.3 1067.0 19730101 19780812 165450 99999 PERDASDEFOGU IT 39.667 9.45 609.0 20050727 20120531 165460 99999 DECIMOMANNU IT LIED 39.354 8.972000000000001 30.5 19660923 20200624 165480 99999 CARLOFORTE IT 39.133 8.317 15.0 19780914 20020327 165490 99999 CARLOFORTE IT 39.133 8.3 12.0 19850301 20081023 165500 99999 CAPE BELLAVISTA IT LIEB 39.933 9.717 156.0 19660104 20200624 165600 99999 ELMAS IT LIEE 39.251 9.054 4.0 19431101 20200624 165635 99999 LAMEZIA TERME IT 38.917 16.233 12.0 19770125 19830627 165640 99999 CAPE CARBONARA IT LIEC 39.1 9.517000000000001 118.0 19730101 20200624 165643 99999 BOGUS ITALIAN IT LIEZ 19890310 19900901 165650 99999 CAPO CARBONARA IT 39.1 9.517000000000001 118.0 20050805 20120525 165700 99999 TEULADA IT 38.983000000000004 8.65 50.0 20080115 20120529 165820 99999 PADOVA IT 45.7 11.85 15.0 20070822 20170220 165840 99999 BARI PALESE IT 41.133 16.767 46.0 20070822 20191003 165850 99999 CAGLIARI S AVENDRACE IT 39.25 9.05 17.0 20070822 20080406 165860 99999 TRIPANI BIRGI IT 37.917 12.5 5.0 20080414 20080514 165970 99999 LUQA MT LMML 35.857 14.478 91.4 19310104 20200624 165974 99999 MALTA(ACC) MT LMMM 35.917 14.433 95.0 19801213 20091110 165990 99999 GUDJA MT 35.85 14.5 78.0 20191115 20200624 166000 99999 ORESTIAS GR 41.817 26.517 48.0 19600701 19780930 166060 99999 SERRAI GR 41.067 23.566999999999997 35.0 19321101 20200624 166100 99999 KOMOTINI GR 41.117 25.4 31.0 19651204 20031017 166130 99999 FLORINA GR 40.783 21.4 662.0 19321101 20200624 166140 99999 ARISTOTELIS GR LGKA 40.446 21.281999999999996 660.5 19801014 20200624 166181 99999 EDESSA GR 40.814 22.046 314.0 20171207 20200624 166200 99999 SEDES(GAFB) GR 40.55 23.017 57.0 19491001 19700520 166220 99999 MAKEDONIA GR LGTS 40.52 22.971 6.7 19600701 20200624 166240 99999 MEGAS ALEXANDROS INTL GR LGKV 40.913000000000004 24.619 5.5 19910827 20200624 166250 99999 KAVALA/AMIGDHALEON GR 40.933 24.383000000000003 62.0 19360101 20030316 166270 99999 DIMOKRITOS GR LGAL 40.856 25.956 7.3 19321101 20200624 166320 99999 FILIPPOS GR LGKZ 40.286 21.840999999999998 627.6 19380103 20200624 166410 99999 IOANNIS KAPODISTRIAS INTL GR LGKR 39.602 19.912 1.8 19321101 20200624 166420 99999 IOANNINA (AIRPORT) GR LGIO 39.7 20.816999999999997 483.0 19321101 20200624 166421 99999 PAROS GR LGPA 37.016999999999996 25.133000000000003 36.0 20040713 20200624 166430 99999 AKTIO GR LGPZ 38.925 20.765 3.4 19730101 20200624 166450 99999 TRIKALA GR 39.55 21.767 116.0 19390101 20050909 166480 99999 LARISA GR LGLR 39.65 22.465999999999998 73.5 19321101 20200624 166500 99999 LIMNOS GR LGLM 39.917 25.236 4.3 19770217 20200624 166510 99999 LIMNOS ISLAND ARPT GR 39.933 25.25 9.0 19491001 19780618 166540 99999 ARTA (HALKIADES) GR 39.167 21.0 11.0 19860413 20120525 166560 99999 ARTA GR 39.167 21.0 42.0 19661104 19700514 166610 99999 VOLOS / AIRPORT GR 39.367 22.95 27.0 19651204 19700526 166620 99999 SKOPELOS ISLAND GR 39.117 23.733 11.0 19640101 19710318 166650 99999 NEA ANCHIALOS GR LGBL 39.22 22.794 25.3 19651204 20200624 166651 99999 NEA ANGHIALOS HAFB GR LGBL 39.217 22.8 25.0 19810617 19850628 166653 99999 ALEXANDROS PAPADIAMANTIS GR LGSK 39.177 23.504 16.5 19910827 20200624 166670 99999 MITILINI GR LGMT 39.056999999999995 26.598000000000003 18.3 19600713 20200624 166690 99999 LEFKAS GR 38.833 20.717 3.0 19330102 19710318 166720 99999 AGRINION (AIRPORT) GR 38.6 21.35 24.0 19380101 20091117 166740 99999 ALIARTOS GR 38.383 23.1 110.0 19690919 20021202 166750 99999 LAMIA GR 38.883 22.433000000000003 13.8 19321101 20200624 166820 99999 ANDRAVIDA GR LGAD 37.921 21.293000000000003 16.8 19650424 20200624 166830 99999 KIMI GR 38.633 24.1 221.0 19640101 19710321 166840 99999 SKIROS GR LGSY 38.968 24.487 13.4 19491001 20200624 166850 99999 KEFALLINIA GR LGKF 38.12 20.5 18.0 19651204 20200624 166870 99999 ARAXOS GR LGRX 38.150999999999996 21.426 14.0 19420101 20200624 166890 99999 PATRAI GR 38.25 21.733 3.0 19321101 20061024 166900 99999 PLATANOS GR 38.6 21.783 851.0 19830801 19840217 166931 99999 DESFINA GR 38.417 22.529 764.7 20171207 20200624 166970 99999 CHALKIS GR 38.467 23.6 6.1 19651205 19700514 166990 99999 TANAGRA GR LGTG 38.34 23.565 147.8 19651204 20200624 167010 99999 ATHINAI (FILADELFIA) GR 38.05 23.666999999999998 138.0 19490930 19700514 167040 99999 CHIOS DODECANESE IS GR 38.367 26.15 61.0 19491001 19710318 167050 99999 ZAKYNTHOS GR 37.783 20.883000000000003 4.0 19321101 19710318 167060 99999 CHIOS GR LGHI 38.343 26.141 4.6 19910828 20200624 167100 99999 TRIPOLIS GR LGTP 37.531 22.404 644.0 19321101 20200624 167110 99999 TRIPOLIS GR 37.516999999999996 22.35 666.0 19491001 19591231 167120 99999 CORINTH RUINS GR 37.933 22.95 15.0 19651204 19700518 167131 99999 NAFPLION GR 37.583 22.767 2.0 20160301 20200624 167140 99999 ATHENS OBSERVATORY GR 37.967 23.717 107.0 20010808 20010810 167150 99999 TATOI GR LGTT 38.109 23.784000000000002 239.3 19660804 20200624 167160 99999 ATHINAI GR LGAT 37.882 23.735 21.0 19490301 20200624 167161 99999 ELEFTHERIOS VENIZELOS INTL GR LGAV 37.936 23.944000000000003 93.9 20040105 20200624 167170 99999 PIRAEUS GR 37.983000000000004 23.566999999999997 2.0 19651205 20091117 167180 99999 ELEFSIS GR LGEL 38.064 23.555999999999997 43.6 19651204 20200624 167190 99999 ZAKINTHOS GR 37.783 20.883000000000003 4.0 20090915 20200624 167193 99999 DIONYSIOS SOLOMOS GR LGZA 37.751 20.884 4.6 19910902 20200624 167210 99999 SAMOS ISLAND GR 37.75 26.866999999999997 48.0 19491002 19810211 167230 99999 SAMOS GR LGSM 37.69 26.912 5.8 19780407 20200624 167240 99999 KALAMATA GR 37.033 22.1 4.9 19600701 19710318 167260 99999 KALAMATA GR LGKL 37.068000000000005 22.026 7.9 19730512 20200624 167263 99999 MIKONOS GR LGMK 37.435 25.348000000000003 123.4 19910827 20200624 167264 99999 SYROS GR LGSO 37.423 24.951 71.9 19980201 20200624 167300 99999 SIROS ISLAND GR 37.45 24.95 10.0 19651205 19730222 167320 99999 NAXOS GR 37.1 25.366999999999997 9.8 19381010 20200624 167330 99999 XIROKAMBOS GR 37.117 26.866999999999997 22.0 19350101 19391231 167340 99999 METHONI GR 36.833 21.7 53.2 19340201 20200624 167341 99999 CYCLADES ISLANDS GR LGNX 37.083 25.366999999999997 3.0 20040510 20200624 167380 99999 MILOS GR 36.733000000000004 24.433000000000003 168.4 19321101 20200624 167400 99999 KOS ISLAND GR 36.8 27.1 125.0 19670318 19710318 167410 99999 EL VENIZELOS GR 37.917 23.933000000000003 73.5 20090915 20200624 167420 99999 KOS GR LGKO 36.793 27.092 125.6 19821001 20200624 167430 99999 KITHIRA GR LGKC 36.274 23.017 318.5 19330101 20200624 167440 99999 THIRA (AIRPORT) GR 36.417 25.433000000000003 36.0 19350101 20020513 167443 99999 SANTORINI GR LGSR 36.399 25.479 38.7 19910801 20200624 167460 99999 SOUDA GR LGSA 35.532 24.15 149.4 19321101 20200624 167464 33209 SOUDA BAY CRETE GR CR KQNC 35.533 24.15 146.3 19730801 20041231 167470 99999 KHANIA GR 35.5 24.033 62.0 19491001 19700514 167480 99999 KARPATHOS (TOWN) GR 35.5 27.217 9.0 19920612 20041216 167490 99999 DIAGORAS GR LGRP 36.405 28.086 5.8 19350101 20200624 167494 99999 RHODES/PARADISSI & GR 36.383 28.116999999999997 62.0 19770803 19870320 167500 99999 TAVRONITIS BEACH GR 35.533 23.816999999999997 25.0 19410809 20091117 167540 99999 NIKOS KAZANTZAKIS GR LGIR 35.34 25.18 35.1 19321101 20200624 167543 99999 KARPATHOS GR LGKP 35.421 27.146 20.1 19980201 20200624 167560 99999 IERAPETRA GR 35.0 25.733 13.0 19651204 20030306 167570 99999 SITIA GR 35.2 26.1 28.0 19640101 20200624 167580 99999 RETHYMNON GR 35.35 24.517 7.0 19670317 20030317 167590 99999 TYMBAKION (AIRPORT) GR 35.066 24.75 7.0 19420108 20200624 167600 99999 KASTELI (AIRPORT) GR 35.183 25.316999999999997 336.0 20090323 20200624 167650 99999 KARPATHOS (AIRPORT) GR 35.428000000000004 27.147 6.0 19910920 20200624 169990 99999 UNKNOWN TEST STN GR 0.0 0.0 -999.0 19860101 20030128 170200 99999 BARTIN TU 41.633 32.333 33.0 19510101 20200624 170220 99999 ZONGULDAK TU LTAS 41.45 31.8 137.0 19570703 20200624 170222 99999 KASTAMONU TU 41.317 33.783 1100.0 20180101 20180528 170223 99999 SAMANDIRA TU LTBX 41.0 29.217 121.9 20111212 20200624 170240 99999 INEBOLU TU 41.983000000000004 33.783 64.0 19730101 20200624 170260 99999 SINOP TU 42.033 35.167 32.0 19570701 20200624 170290 99999 SAMSUN\MEYDAN TU LTAQ 41.283 36.333 168.0 19730101 19990822 170300 99999 SAMSUN TU 41.283 36.3 4.0 19510101 20200624 170310 99999 CARSAMBA TU LTFH 41.254 36.567 5.5 20010915 20200624 170330 99999 ORDU TU 40.983000000000004 37.9 4.0 20031119 20200624 170340 99999 GIRESUN TU 40.917 38.383 37.0 19730101 20200624 170380 99999 TRABZON TU LTCG 40.995 39.79 31.7 19510101 20200624 170400 99999 RIZE TU 41.033 40.516999999999996 9.0 20031117 20200624 170420 99999 HOPA TU 41.4 41.433 33.0 19630103 20200624 170450 99999 ARTVIN TU 41.183 41.817 628.0 20010912 20200624 170460 99999 ARDAHAN TU 41.117 42.717 1829.0 20080906 20200624 170500 99999 EDIRNE TU 41.667 26.566999999999997 51.0 19550101 20200624 170520 99999 KIRKLARELI TU 41.733000000000004 27.233 232.0 19910202 20200624 170540 99999 CORLU TU LTBU 41.138000000000005 27.919 175.0 20050101 20200624 170560 99999 TEKIRDAG TU 40.983000000000004 27.55 3.0 19630101 20200624 170575 99999 CORLU TU 41.133 27.916999999999998 179.0 19921223 20180522 170590 99999 KUMKOY TU 41.25 29.033 30.0 19730101 20200624 170600 99999 ATATURK TU LTBA 40.977 28.820999999999998 49.7 19450613 20200624 170610 99999 SARIYER TU 41.133 29.066999999999997 58.0 19650405 20200624 170620 99999 ISTANBUL/GOZTEPE TU 40.9 29.15 33.0 19990603 20070509 170630 99999 SABIHA GOKCEN TU LTFJ 40.899 29.309 95.1 20031118 20200624 170640 99999 ISTANBUL BOLGE (KARTAL) TU 40.9 29.15 18.0 20140218 20200624 170660 99999 19730101 19750823 170661 99999 IZMIT TU 40.766999999999996 29.9 76.0 20150817 20200624 170670 99999 GOLCUK/DUMLUPINAR TU 40.667 29.833000000000002 18.0 19630101 20161214 170671 99999 KAPADOKYA TU 38.766999999999996 34.533 969.0 20040510 20180514 170672 99999 YENISEHIR TU 40.25 29.55 239.0 20040510 20180528 170673 99999 CARSAMBA TU 41.25 36.567 6.0 20040510 20180528 170674 99999 ANTALYA/GAZIPASA TU LTFG 36.3 32.3 28.0 20040510 20200624 170675 99999 EDREMIT KORFEZ TU 39.55 27.0 50.0 20180101 20180524 170680 99999 CENGIZTOPEL TU 40.85 29.9 70.0 19990315 20200624 170690 99999 ADAPAZARI TU 40.783 30.416999999999998 30.0 20030606 20200624 170700 99999 BOLU TU 40.733000000000004 31.6 743.0 19730101 20200624 170720 99999 DUZCE TU 40.833 31.166999999999998 146.0 20081020 20200624 170740 99999 KASTAMONU TU LTAL 41.31399999999999 33.796 1100.0 19630101 20200624 170780 99999 KARABUK TU 41.2 32.633 259.0 20080801 20160516 170800 99999 CANKIRI TU 40.6 33.617 751.0 20040417 20200624 170820 99999 MERZIFON TU LTAP 40.829 35.522 535.8 19500101 20200624 170840 99999 CORUM TU 40.55 34.95 776.0 19730101 20200624 170850 99999 AMASYA TU 40.65 35.85 412.0 19910212 20200624 170860 99999 TOKAT TU LTAW 40.3 36.567 608.0 19910216 20200624 170880 99999 GUMUSHANE TU 40.467 39.467 1219.0 19860624 20200624 170890 99999 BAYBURT TU 40.25 40.233000000000004 1584.0 20091117 20200624 170900 99999 SIVAS TU LTAR 39.814 36.903 1595.9 19630103 20200624 170905 99999 SIVAS (CIV/MIL) TU LTAR 39.75 37.016999999999996 1285.0 19760802 19900801 170920 99999 ERZINCAN TU LTCD 39.71 39.527 1153.1 19500101 20200624 170950 99999 ERZURUM BOLGE TU 39.9 41.283 1869.0 20140218 20200624 170960 99999 ERZURUM TU LTCE 39.957 41.17 1756.6 19500501 20200624 170965 99999 ERZURUM (CIV/MIL) TU 39.917 41.266999999999996 1869.0 19751202 19901128 170980 99999 KARS TU LTCF 40.562 43.115 1795.0 19630105 20200624 170981 99999 SIIRT TU LTCL 37.979 41.84 609.9 20061222 20200624 170990 99999 AGRI TU LTCO 39.733000000000004 43.05 1632.0 20010712 20200624 171000 99999 IGDIR TU 39.917 44.05 858.0 19630106 20200624 171001 99999 IGDIR AIRPORT TU LTCT 39.983000000000004 43.867 946.0 20120713 20200624 171100 99999 GOKCEADA TU 40.183 25.9 72.0 19730101 20160328 171110 99999 BOZCAADA TU 39.833 26.066999999999997 30.0 20080922 20160809 171120 99999 CANAKKALE TU LTBH 40.138000000000005 26.427 7.0 19630101 20200624 171150 99999 BANDIRMA TU LTBG 40.318000000000005 27.978 51.8 19500101 20200624 171160 99999 BURSA TU LTBE 40.183 29.066999999999997 100.0 19730101 20200624 171170 99999 KUTAHYA(TAFB) TU LTBN 39.433 30.017 921.0 19730101 20200612 171180 99999 YENISEHIR TU LTBR 40.255 29.563000000000002 232.9 20050101 20200624 171185 99999 SIVRIHISAR TU LTAV 39.451 31.365 970.8 19940124 20200624 171190 99999 YALOVA TU LTBP 40.667 29.283 4.0 20080808 20200624 171200 99999 BILECIK TU 40.15 29.967 539.0 19950901 20200624 171240 99999 ESKISEHIR TU LTBI 39.784 30.581999999999997 786.7 19500101 20200624 171270 99999 AKINCI TU LTAE 40.079 32.566 843.4 19730101 20200624 171273 99999 MURTED (TUR-AFB) TU 40.083 32.567 840.0 19900424 19950831 171280 99999 ESENBOGA TU LTAC 40.128 32.995 952.5 19670101 20200624 171290 99999 ETIMESGUT TU LTAD 39.95 32.689 808.6 19450131 20200624 171295 99999 GUVERCINLIK TU 39.933 32.733000000000004 842.0 19940806 20180524 171300 99999 ANKARA/CENTRAL TU 39.95 32.883 891.0 19740601 20200624 171310 99999 GUVERCINLIK TU LTAB 39.935 32.741 821.1 20050101 20200624 171350 99999 KIRIKKALE TU 39.85 33.516999999999996 748.0 19980303 20200624 171400 99999 YOZGAT TU 39.817 34.8 1298.0 19910301 20200624 171450 99999 EDREMIT KORFEZ TU LTFD 39.555 27.014 15.2 19990211 20200624 171500 99999 BALIKESIR TU LTBF 39.619 27.926 103.6 19500101 20200624 171550 99999 KUTAHYA TU 39.417 29.967 969.0 20030330 20200624 171600 99999 KIRSEHIR TU 39.15 34.167 1007.0 19630111 20200624 171620 99999 GEMEREK TU 39.183 36.067 1171.0 19730101 20160701 171650 99999 TUNCELI TU 39.117 39.55 981.0 20090112 20200624 171700 99999 VAN TU LTCI 38.468 43.332 1670.3 19570701 20200624 171750 99999 AYVALIK TU 39.3 26.7 4.0 19980303 20200624 171770 99999 BOGUS TURKISH TU 19881001 19900329 171800 99999 DIKILI TU 39.067 26.883000000000003 3.0 19730101 20200624 171840 99999 AKHISAR TU LTBT 38.809 27.834 80.2 19630101 20200624 171860 99999 MANISA TU 38.617 27.433000000000003 71.0 19860624 20200624 171865 99999 MANISA / SANAYI AIRPORT TU LTBZ 38.633 27.35 73.5 20121124 20200624 171880 99999 USAK TU LTBO 38.683 29.4 919.0 19630101 20200624 171890 99999 AFYONKARAHISAR TU 38.73 30.6 1012.0 20080101 20190415 171900 99999 AFYON TU LTAH 38.726 30.601 1008.9 19630101 20200624 171905 99999 AFYON (MIL) TU 38.733000000000004 30.6 1010.0 19500101 19901011 171910 99999 CIHANBEYLI TU 38.65 32.95 969.0 20080807 20200624 171920 99999 AKSARAY TU 38.383 34.05 961.0 20081125 20200624 171930 99999 NEVSEHIR TU 38.617 34.7 1260.0 20010711 20200624 171940 99999 KAPADOKYA TU LTAZ 38.772 34.535 944.9 20050103 20200624 171950 99999 ERKILET TU LTAU 38.77 35.495 1055.5 19660722 20200624 171960 99999 KAYSERI BOLGE TU LTAM 38.683 35.483000000000004 1096.0 19630101 20021121 171970 99999 TULGA TU LTAO 38.354 38.254 919.3 20020902 20200624 171983 99999 AKHISAR (TUR-AFB) & TU 38.8 27.833000000000002 75.0 19870108 19881213 171990 99999 MALATYA/BOLGE TU 38.35 38.317 948.0 20040713 20081231 172000 99999 ERHAC TU LTAT 38.435 38.091 862.0 19500106 20200624 172005 99999 TOPEL TU LTBQ 40.735 30.083000000000002 55.5 19770323 20200624 172006 99999 ANADOLU TU LTBY 39.81 30.519000000000002 788.8 20050804 20200624 172020 99999 ELAZIG TU LTCA 38.607 39.291 892.1 19730101 20200624 172030 99999 BINGOL TU LTCU 38.867 40.5 1177.0 19910406 20200624 172040 99999 MUS TU 38.733000000000004 41.516999999999996 1320.0 20031121 20200624 172043 99999 MUS TU LTCK 38.748000000000005 41.661 1267.1 19920914 20200624 172050 99999 TATVAN TU 38.483000000000004 42.3 1665.0 19750427 20161129 172100 99999 SIIRT TU 37.917 41.95 896.0 19630104 20200624 172180 99999 CIGLI TU LTBL 38.513000000000005 27.01 4.9 19500115 20200624 172189 99999 KAKLIC TU LTFA 38.518 26.976999999999997 4.0 19971010 20200624 172190 99999 ADNAN MENDERES TU LTBJ 38.292 27.156999999999996 125.6 19800925 20200624 172191 99999 GAZIEMIR TU LTBK 38.319 27.159000000000002 132.0 19731108 20200624 172200 99999 IZMIR/GUZELYALI TU 38.433 27.166999999999998 29.0 19500115 20200624 172210 99999 CESME TU 38.3 26.3 5.0 20090313 20200624 172320 99999 KUSADASI TU LTFB 37.867 27.25 22.0 20070127 20200624 172340 99999 AYDIN TU LTBD 37.85 27.85 56.0 19821101 20200624 172345 99999 DALAMAN/MUGLA TU 36.717 28.783 7.0 19860111 19881111 172370 99999 DENIZLI TU 37.783 29.083000000000002 425.0 19730101 20200624 172375 99999 CARDAK TU LTAY 37.786 29.701 851.9 19940805 20200624 172380 99999 BURDUR TU 37.667 30.333000000000002 967.0 20070127 20200624 172390 99999 AKSEHIR TU 38.35 31.416999999999998 1002.0 20081105 20200624 172400 99999 ISPARTA TU LTBM 37.785 30.581999999999997 990.6 19630101 20200624 172410 99999 SULEYMAN DEMIREL TU LTFC 37.855 30.368000000000002 864.1 20040713 20200624 172440 99999 KONYA TU LTAN 37.979 32.562 1030.5 19500102 20200624 172460 99999 KARAMAN TU 37.2 33.217 1023.0 20091028 20200624 172480 99999 EREGLI/KONYA TU 37.5 34.05 1044.0 19730101 20200624 172500 99999 NIGDE TU 37.967 34.683 1210.0 19880106 20200624 172550 99999 KAHRAMANMARAS TU LTCN 37.6 36.933 572.0 19980303 20200624 172600 99999 OGUZELI TU LTAJ 36.946999999999996 37.479 705.6 19730101 20200624 172620 99999 KILIS TU 36.717 37.117 638.0 20080821 20200624 172650 99999 ADIYAMAN TU LTCP 37.75 38.283 672.0 20070127 20200624 172700 99999 SANLIURFA TU 37.133 38.766999999999996 549.0 19630105 20200624 172710 99999 GAP/SANLIURFA TU LTCS 37.483000000000004 38.883 825.4 20080401 20200624 172734 99999 MILAS BODRUM TU 37.25 27.666999999999998 7.0 19990114 20180514 172750 99999 MARDIN TU LTCR 37.3 40.733000000000004 1050.0 19910214 20200624 172800 99999 DIYARBAKIR TU LTCC 37.894 40.201 686.1 19500101 20200624 172805 99999 BATMAN (TUR-AFB) TU LTCJ 37.933 41.117 533.0 19740731 19891228 172820 99999 BATMAN TU LTCJ 37.929 41.117 555.3 19910209 20200624 172821 99999 SIRNAK TU LTCV 37.367 42.567 621.0 20130917 20200624 172850 99999 HAKKARI TU 37.567 43.766999999999996 1728.0 19730101 20200624 172900 99999 IMSIK TU LTBV 37.14 27.67 61.6 19630101 20200624 172910 99999 MILAS BODRUM TU LTFE 37.251 27.664 6.4 20050101 20200624 172920 99999 MUGLA TU 37.217 28.366999999999997 646.0 19630101 20200624 172950 99999 DALAMAN TU LTBS 36.713 28.793000000000003 6.1 19860624 20200624 172953 99999 DALAMAN/MUGLA TU 36.717 28.783 7.0 19881208 19901126 172960 99999 FETHIYE TU 36.617 29.116999999999997 3.0 20080821 20200624 172970 99999 DATCA TU 36.7 27.666999999999998 28.0 20080821 20200624 172980 99999 MARMARIS TU 36.85 28.267 16.0 19871227 20200624 173000 99999 ANTALYA TU LTAI 36.899 30.8 53.9 19510101 20200624 173020 99999 ANTALYA-BOLGE TU 36.867 30.7 47.0 20080801 20200624 173100 99999 ALANYA TU 36.55 32.0 6.0 20010705 20200624 173200 99999 ANAMUR TU 36.083 32.833 4.0 19861216 20200624 173300 99999 SILIFKE TU 36.383 33.933 15.0 19630101 20200624 173400 99999 MERSIN TU 36.8 34.633 3.0 19740820 20200624 173500 33308 ADANA/INCIRLIK TU LTAG 37.0 35.417 66.0 19730101 20200624 173500 99999 INCIRLIK AB TU LTAG 37.001999999999995 35.426 72.5 20000101 20041231 173505 99999 ADANA CIVIL TU 36.983000000000004 35.283 20.0 19730503 19870320 173510 99999 ADANA/BOLGE TU 36.983000000000004 35.35 27.0 19990612 20050921 173520 99999 ADANA TU LTAF 36.982 35.28 19.8 19450412 20200624 173550 99999 OSMANIYE TU 37.1 36.25 94.0 20091117 20200624 173700 99999 ISKENDERUN TU LTAK 36.573 36.154 7.6 19510101 20200624 173720 99999 HATAY-ANTAKYA TU 36.2 36.167 100.0 19760315 20091117 173721 99999 ERCAN/TYMBOU CY 35.15 33.5 117.0 19870302 19881027 173725 99999 HATAY TU LTDA 36.35 36.283 267.0 19761023 20200624 173750 99999 FINIKE TU 36.3 30.15 2.0 19860624 20200624 173800 99999 KAS TU 36.2 29.65 153.0 20080824 20200624 175000 99999 GUZELYURT CY LCGU 35.183 32.983000000000004 52.0 20050322 20200624 175010 99999 LEFKE CY 35.817 32.85 129.0 20080721 20200624 175050 99999 AKDENIZ CY LCAK 35.3 32.967 89.0 20080721 20200624 175070 99999 YESILIRMAK CY LCYS 35.167 32.733000000000004 20.0 20090701 20200624 175100 99999 GIRNE CY 35.35 33.333 10.0 20050322 20200624 175150 99999 LEFKOSA CY 35.2 33.35 131.0 20050323 20200624 175210 99999 ERCAN CY 35.15 33.5 119.0 20080101 20160719 175300 99999 GECITKALE CY 35.233000000000004 33.733000000000004 45.0 20090701 20200624 175350 99999 ISKELE CY LCIS 35.283 33.883 39.0 20080721 20200624 175400 99999 GAZIMAGUSA CY 35.133 33.933 0.0 20050322 20200624 175470 99999 DIPKARPAZ CY LCDP 35.583 34.383 136.0 20090701 20200624 175500 99999 YENIERENKOY CY 35.533 34.016999999999996 123.0 20080721 20200624 176000 99999 PAFOS INTL CY LCPH 34.718 32.486 12.5 19490101 20200624 176010 99999 AKROTIRI CY LCRA 34.59 32.988 23.2 19600103 20200624 176020 99999 GECITKALE CY 35.233000000000004 -33.717 44.0 19490101 20081116 176025 99999 GECITKALE CY LCGK 35.233000000000004 33.733000000000004 45.0 20060719 20090918 176051 99999 ERCAN/TYMBOU CY 35.15 33.5 117.0 19890131 19900119 176060 99999 NICOSIA AIRFIELD CY 35.15 33.283 216.7 19490101 19760111 176070 99999 NICOSIA/ATHALASSA CY LCNC 35.15 33.4 161.0 19900101 20200624 176074 99999 ERCAN CY 35.15 33.5 91.0 19921219 20200624 176083 99999 BOGUS CYPRUS CY LCGK 19860620 19881028 176090 99999 LARNACA CY LCLK 34.875 33.625 2.4 19770101 20200624 176110 99999 AYIOS NICOLAOS CY 35.083 33.9 37.0 19541215 20070127 176170 99999 KARPAZIA CY 35.667 34.567 6.0 19490101 19531231 200260 99999 VIKTORIYA ISLAND RS 80.167 36.75 9.0 19591102 20020320 200290 99999 ABELOYA SV 79.0 30.166999999999998 0.0 19600119 19621230 200340 99999 NAGURSKOYE RS 80.817 47.417 18.0 19550305 20030314 200460 99999 POLARGMO IM. E.T. KRENKELJA RS 80.617 58.05 22.0 19570703 20200624 200470 99999 BUKHTA YURIYA RS 80.317 52.8 6.0 19550305 19591218 200490 99999 TIKHAYA BAY RS 80.367 52.917 46.0 19320202 20040930 200660 99999 USHAKOVA ISLAND RS 80.833 79.7 47.0 19550305 20040118 200690 99999 OSTROV VIZE RS 79.483 76.983 10.0 19550305 20200624 200740 99999 ... 79.5 81.833 19620304 19621127 200850 99999 OSTROV PIONEER RS 79.883 91.23299999999999 30.0 19591101 19591225 200870 99999 MGMS IM. G.F. USHAKOVA RS 79.55 90.56700000000001 8.0 19320101 20200624 200970 99999 CAPE PESCHANIY RS 79.383 102.417 6.0 19590901 20040925 201070 99999 BARENTSBURG SV 78.067 14.25 75.0 19520101 20200624 201080 99999 LONGYEARBYEN SV 70.433 83.75 29.0 19540605 19570613 201460 99999 ZALIV GULDA RS 79.917 58.917 -999.0 19620201 19621230 201860 99999 KRASNOFLOTSKIYE ISL RS 78.617 98.7 8.0 19550305 19871130 201990 99999 MALYY TAYMIR ISLAND RS 78.133 107.2 12.0 19550305 19940818 202740 99999 OSTROV UEDINENIJA RS 77.5 82.2 23.0 19350202 19961121 202770 99999 ISACHENKO ISLAND RS 77.283 89.667 5.0 19550305 19970330 202890 99999 RUSSKIY ISLAND RS 77.183 96.583 9.0 19550305 19960426 202910 99999 SOLNECHNAYA BAY RS 78.233 103.117 30.0 19550305 20050901 202920 99999 GMO IM.E.K. FEDOROVA RS 77.717 104.3 15.0 19330107 20200624 202940 99999 GEYBERGA ISLAND RS 77.617 101.48299999999999 6.0 19550305 19950731 203010 99999 SAVITSJVATNET SV 76.917 15.833 115.0 19600104 19621231 203530 99999 MYS ZHELANIYA RS 76.95 68.55 8.0 19320103 20150130 203570 99999 RUSSKAYA GAVAN' RS 76.183 63.567 9.0 19480101 20050403 203860 99999 OSTROV TYRTOVA RS 76.6 97.667 1.0 19550305 19601025 203880 99999 PRAVDY ISLAND RS 76.283 94.73299999999999 10.0 19550305 20031010 203890 99999 POLAR STATION RS 76.233 98.833 19550305 19581226 203930 99999 OSTROV FADDEYA RS 76.967 108.0 3.0 19550305 19581201 204050 99999 TUNHEIM SV 74.483 19.25 3.0 19600102 19621231 204710 99999 IZVESTIJ TSIK RS 75.95 82.95 11.9 19550130 20200624 204760 99999 MYS STERLEGOVA RS 75.417 88.9 11.0 19550305 20200624 204780 99999 19740717 19740911 204810 99999 OSTROV RYKACHEVA RS 75.867 92.833 7.0 19550305 19570630 205780 99999 OSTROV PESTSOVYY RS 74.25 86.5 2.0 19610311 19621028 205940 99999 LAKE TAJMYR RS 74.5 102.5 11.0 19550305 20050303 206470 99999 OSTROV GOLETS RS 73.05 53.1 29.0 19550305 19621210 206490 99999 MAMOCKIN SAR RS 73.267 56.4 43.0 19320102 19580916 206650 99999 VILKICKOGO ISLAND RS 73.5 76.0 4.0 19550305 20010222 206670 99999 IM. M.V. POPOVA RS 73.333 70.05 7.0 19360101 20200624 206740 99999 OSTROV DIKSON RS 73.5 80.4 47.0 19320101 20200624 206750 99999 MAKAROVA RS 73.683 85.25 15.0 19480104 20050802 206790 99999 TAREYA (STREAM) RS 73.25 90.917 21.0 19550304 20020807 206960 99999 CAPE KASISTY RS 73.667 109.75 20.0 19550305 19910418 207440 99999 MALYE KARMAKULY RS 72.367 52.7 19.0 19480101 20200624 207560 99999 CAPE PAYNOTE RS 72.65 68.983 10.0 19900601 19910525 207640 99999 DRONYANAYA RS 72.667 70.833 13.0 19550304 19630523 207660 99999 LESKINO RS 72.333 79.5 10.0 19550305 20030130 208440 99999 19740812 19740831 208560 99999 CAPE KHARASOVOY RS 71.4 67.633 18.0 19550307 20021020 208620 99999 MONGATALYANG RS 71.983 75.4 21.0 19810101 19991110 208640 99999 TAMBEY RS 71.483 71.817 8.0 19570703 20010430 208710 99999 SOPOCHNAYA KARGA RS 71.883 82.7 5.9 19550306 20200624 208910 99999 HATANGA RS 71.983 102.46700000000001 33.0 19370102 20200624 209210 99999 BOGUS SOVIET FR 49.783 4.633 156.1 19850301 20030819 209400 99999 VAIGACH RS 70.4 58.8 11.0 19480101 19510805 209430 99999 CAPE MENSHIKOVA RS 70.717 57.617 14.0 19550305 19950307 209460 99999 IM E K FEDOROVA RS 70.45 59.083 12.2 19320101 20200624 209630 99999 GYDA RS 70.883 78.5 8.0 19480101 20051205 209640 99999 TADIBE-YAKHA RS 70.35 74.133 4.0 19550306 19950627 209670 99999 SEYAHA RS 70.167 72.517 17.8 19570702 20200624 209700 99999 MUNGUY RS 70.433 83.75 3.0 19590902 19591031 209730 99999 KRESTI RS 70.85 89.883 29.0 19550306 20010430 209780 99999 KARAUL RS 70.083 83.167 28.7 19550305 20200624 209820 99999 VOLOCHANKA RS 70.967 94.5 40.0 19370101 20180105 210060 99999 BOGUS SOVIET RS 19841119 20011126 210080 99999 BOGUS SOVIET RS 19841117 20030808 210100 99999 BOGUS SOVIET RS 19841117 20040129 212120 99999 20020703 20030707 213010 99999 ANDREYA ISLAND RS 76.8 110.833 6.0 19550306 19990618 213530 99999 MYS MELVILLE RS 77.117 156.583 19550305 19570630 213580 99999 ZOHOVA ISLAND RS 76.15 152.833 14.0 19550601 19960101 214050 99999 B. PRONCHISHCHEVOY RS 75.533 113.51700000000001 6.0 19550305 20020111 214320 99999 OSTROV KOTEL'NYJ RS 76.0 137.86700000000002 8.0 19361231 20200624 214350 99999 TEMPA BAY RS 75.75 137.583 10.0 19550305 19750731 215020 99999 BOGUS SOVIET RS 19860306 20020531 215040 99999 OSTROV PREOBRAZENIJ RS 74.667 112.93299999999999 57.0 19550305 20020224 215350 99999 SANNIKOVA RS 74.667 138.9 14.6 19550305 20200624 215370 99999 STOLBOVOY ISLAND RS 74.117 135.86700000000002 20.0 19810101 20020601 215410 99999 ZEMLYA BUNGE RS 74.883 142.2 10.0 19550305 20031012 215430 99999 NOVAYA SIBIR RS 74.95 147.86700000000002 24.0 19550305 19581231 216080 99999 ANABAR RS 73.217 113.5 13.3 19880501 20200624 216110 99999 CAPE TERPAY-TUMUS RS 73.567 118.75 10.0 19550326 20020618 216130 99999 DUNWAY ISLAND RS 73.9 124.6 9.0 19550305 19941008 216270 99999 ANTIPINSKIY RS 73.167 128.833 5.0 19611103 20050829 216360 99999 KIGILYAH RS 73.336 139.86700000000002 24.7 19550305 20200624 216390 99999 DRIFTER 21639 20180103 20180309 216470 99999 MYS SHALAUROVA RS 73.183 143.233 22.0 19340701 20030117 217010 99999 URYUNG-KHAYA RS 72.817 113.26700000000001 25.0 19690623 20040130 217110 99999 UST' OLENEK RS 73.0 119.867 14.9 19550305 20200624 217120 99999 STANNAKH-KHOCHO RS 72.967 121.667 23.0 19810101 19940721 217150 99999 TAJMYRLYR RS 72.6 121.85 22.0 19550305 20020904 217210 99999 IM YU A HABAROVA RS 72.4 126.35 19.6 19550305 20200624 217270 99999 TIT-ARY RS 71.917 127.01700000000001 20.0 19790701 19811225 217280 99999 BYKOVSKI RS 71.933 129.083 7.0 19590802 19900131 217290 99999 APPROXIMATE LOCALE RS 72.167 132.667 0.0 19751001 19850212 217330 99999 CAPE SVATOJ RS 72.75 140.75 6.0 19550305 19880215 217390 99999 CAPE KURTAKH RS 72.167 139.5 8.0 19730701 19800523 217480 99999 CHIKHACHEVA RS 72.3 146.817 8.0 19590901 19631023 217490 99999 OZERO MOGOTOYEVO RS 72.233 149.083 23.0 19690202 19901225 218020 99999 SASKYLAH RS 71.967 114.083 18.0 19570702 20200624 218130 99999 TYUMYATI RS 71.917 123.56700000000001 26.6 19590101 20200624 218200 99999 BOGUS SOVIET RS 19831201 20020805 218210 99999 BYKOV (MYS) RS 72.0 129.11700000000002 16.5 19830202 20200624 218230 99999 YAKUTSK RS UEEE 62.093 129.77100000000002 99.1 19550305 20200624 218240 99999 TIKSI RS UE38 71.69800000000001 128.903 9.1 19331205 20200624 218241 99999 POLYARNY RS 66.4 112.01700000000001 522.0 20040713 20081231 218250 99999 MOSTAKH ISLAND RS 71.533 129.917 3.0 19361231 20060604 218260 99999 OZERO KHARGY (LAKE) RS 71.5 132.667 18.0 19811101 20050903 218340 99999 KUOGASTAKH RS 71.383 135.167 12.0 19550315 20031014 218350 99999 UEDEY RS 71.5 136.583 11.0 19690101 19940609 218490 99999 RUSSKOYE UST'YE RS 71.017 149.0 6.0 19550305 20071010 218530 99999 TABOR RS 71.267 150.2 3.0 19590901 19940609 219080 99999 DZALINDA RS 70.133 113.96700000000001 62.0 19590101 20200624 219210 99999 KJUSJUR RS 70.683 127.4 33.0 19480101 20200624 219230 99999 KHAYYR RS 70.817 133.5 91.0 19810101 20030212 219310 99999 JUBILEJNAJA RS 70.767 136.217 24.0 19480102 20200624 219320 99999 UST YANSK RS 70.9 136.333 10.0 19550305 19570622 219370 99999 KUJGA RS 70.033 135.667 92.2 20120829 20200624 219460 99999 CHOKURDAH RS 70.617 147.88299999999998 61.0 19550305 20200624 219550 99999 ALAZEJA RIVER RS 70.55 154.25 2.0 19550305 19940926 219610 99999 DRIFTER 21961 / ARGOS 90122 20180101 20180425 219650 99999 OSTROV CHETYREHSTOLBOVOY RS 70.633 162.483 41.0 19350206 19950909 219780 99999 VAL' KARKAY RS 70.083 170.933 5.8 19480101 20200624 219790 99999 MORPORT RS 70.05 171.417 2.0 19550415 19570605 219800 99999 WRANGEL RS 70.917 179.667 83.0 19570701 19631231 219820 99999 OSTROV VRANGELYA RS 70.983 -178.65 4.0 19341101 20200624 219830 99999 ZVEZDNYY RS 70.95 -179.6 30.0 19590901 20011103 220030 99999 VAIDA GUBA (BAY) RS 69.933 31.983 8.0 19590101 20200624 220040 99999 NIKEL RS 69.4 30.233 92.0 19530705 20200624 220060 99999 PECHENGA RS 69.55 31.116999999999997 31.0 19590101 20030704 220070 99999 HEVOSKOSKI RS 69.133 29.267 101.0 19540102 19541231 220090 99999 PEREVALYAUR RS 69.267 31.767 302.0 19590101 19980725 220120 99999 TSYP-NAVOLOK RS 69.733 33.1 11.0 19590101 20160604 220140 99999 BOLSHAYA-ZAPADNAYA RS 69.417 32.167 117.0 19590101 20000316 220180 99999 URA-GUBA (BAY) RS 69.283 32.8 27.0 19530908 20050821 220190 99999 SEVEROMORSK RS 69.083 33.45 20.0 19320101 20010430 220200 99999 VOSTOCHNIY KILDIN ? RS 69.317 34.2 -999.0 19831004 20030808 220280 99999 TERIBERKA RS 69.2 35.117 30.0 19590101 20200624 220370 99999 DALNE-ZELENETSKAYA RS 69.117 36.067 42.0 19531001 19891217 220950 99999 KOLGUYEV ISLAND RS 69.083 49.25 24.0 19361231 20010429 221000 99999 VERKHOV'E R LOTTA RS 68.533 28.916999999999998 115.0 19600220 20200624 221010 99999 YANISKOSKI RS 68.967 28.783 101.0 19590101 20160614 221050 99999 NIVANKYUL RS 68.35 30.733 90.0 19590101 20160614 221060 99999 PADUN RS 68.6 31.8 63.0 19590101 20200624 221120 99999 KOLA RS 68.883 33.016999999999996 7.0 19590101 19840610 221130 99999 MURMANSK RS ULMM 68.782 32.751 81.1 19361231 20200624 221140 99999 LOPARSKAYA RS 68.633 33.2 112.0 19590101 20010430 221190 99999 PULOZERO RS 68.35 33.3 143.0 19590101 20011028 221230 99999 GOLITSINO RS 69.067 35.733000000000004 15.0 19730101 20040914 221260 99999 VORONYE RS 68.45 35.367 19590101 19631231 221270 99999 LOVOZERO RS 68.0 35.033 162.0 19471002 20200624 221330 99999 OSTROV HATLOV RS 68.817 37.333 64.0 19590101 20141112 221400 99999 SVYATOJ NOS RS 68.15 39.766999999999996 12.0 19590802 20171118 221440 99999 CHERNYY (CAPE) RS 68.4 38.667 10.0 19860701 20020714 221450 99999 CAPE CHERNIY RS 68.367 38.65 10.0 19550101 19861008 221490 99999 KACHALOVKA RS 67.983 39.817 149.0 19320101 19891130 221650 99999 KANIN NOS RS 68.65 43.3 49.0 19460106 20200624 221930 99999 BUGRINO RS 68.783 49.3 7.0 19590101 20200624 222040 99999 KOVDOR RS 67.567 30.4 247.0 19590101 20010902 222050 99999 ENA RS 67.6 31.166999999999998 160.0 19590101 20051127 222120 99999 MONCHEGORSK RS 67.933 32.917 132.0 19590101 20200624 222130 99999 APATITY RS 67.55 33.35 134.0 19810101 20200624 222140 99999 ZASHEYEK RS 67.417 32.55 151.0 19730101 20020922 222160 99999 APATITY RS 67.567 33.367 136.0 19320101 20020322 222170 99999 KANDALAKSHA RS 67.15 32.35 25.0 19320101 20200624 222190 99999 KIROVSK RS 67.617 33.667 1093.0 19861001 19980101 222270 99999 KANOZERO (LAKE) RS 67.117 34.083 584.0 19590101 19891120 222320 99999 KOLMYABR RS 67.7 37.117 244.0 19590101 20040925 222350 99999 KRASNOSCEL'E RS 67.35 37.05 156.0 19461101 20200624 222490 99999 KANEVKA RS 67.133 39.667 151.0 19550101 20200624 222590 99999 TERSKO-ORLOVSKAJA RS 67.217 41.333 72.0 19590101 20011008 222690 99999 MYS KONUSIN RS 67.15 43.9 13.0 19590101 20010728 222710 99999 SHOJNA RS 67.883 44.15 18.0 19590101 20200624 222820 99999 MYS MIKULKIN RS 67.8 46.667 6.0 19530216 20180228 222920 99999 INDIGA RS 67.683 48.683 4.0 19590101 20200624 223010 99999 ALAKURTTI RS 66.95 30.3 152.0 19600102 19960522 223020 99999 NYAM (LAKE) RS 66.967 31.467 152.0 19810101 20010922 223050 99999 ZASHEEK RS 66.25 31.116999999999997 119.0 19630613 20160614 223080 99999 NIISKA RS 66.267 31.116999999999997 1.0 19590101 19610724 223120 99999 KOVDA RS 66.7 32.883 18.0 19460307 20200624 223180 99999 LOUHI RS 66.067 33.0 94.0 19590101 20030630 223240 99999 UMBA RS 66.683 34.35 40.0 19590101 20200624 223330 99999 SLYUDYANKA RS 66.717 38.0 150.0 19590101 20041003 223340 99999 KASHKARANTSY RS 66.333 36.016999999999996 3.5 19320101 20200624 223390 99999 CHAVANGA (STREAM) RS 66.1 37.817 7.0 19590101 20011029 223490 99999 PJALICA RS 66.183 39.533 9.0 19370101 20200624 223550 99999 SOSNOVETS ISLAND RS 66.483 40.683 16.0 19590101 20010619 223610 99999 MORZHOVEC RS 66.717 42.483000000000004 16.2 19590102 20180228 223650 99999 ABRAMOVSKIJ MAJAK RS 66.383 43.25 21.0 19590101 20200624 223750 99999 NES' RS 66.65 44.683 14.0 19590101 20020715 223760 99999 VIZHAS RS 66.633 45.9 12.0 19590101 19760105 223830 99999 NIZHNYAYA PESHA RS ULAV 66.73899999999999 47.72 11.5 19590101 20200624 224030 99999 KESTEN'GA RS 65.883 31.833000000000002 129.0 19590101 20010908 224080 99999 KALEVALA RS 65.217 31.166999999999998 120.0 19460901 20200624 224130 99999 ENGOZERO RS 65.783 33.933 80.0 19730103 20200624 224160 99999 PILDOZERO RS 65.667 33.483000000000004 79.9 19590101 19630209 224180 99999 PANOZERO (LAKE) RS 64.967 32.917 91.0 19730103 20040617 224220 99999 GRIDINO RS 65.9 34.766999999999996 12.0 19460102 20070425 224290 99999 SOLOVKI RS 65.033 35.7 7.4 19590101 20200624 224380 99999 ZIZGIN RS 65.2 36.817 17.0 19550701 20200624 224460 99999 ZIMNEGORSKIJ MAJAK RS 65.467 39.733000000000004 77.0 19590101 20200624 224520 99999 INCY RS 65.967 40.717 5.0 19590101 20021213 224560 99999 KEPINO RS 65.383 41.883 68.6 19590101 20200624 224710 99999 MEZEN' RS 65.867 44.217 19.0 19320101 20200624 224810 99999 MOSEEVO RS 65.767 46.2 42.2 19590101 20200624 224990 99999 BARKOVSKAJA RS 65.233 49.583 155.0 19590101 19930717 225110 99999 JUSKOZERO RS 64.75 32.117 97.0 19570703 19931019 225180 99999 RUGOZERO RS 64.083 32.783 159.0 19590101 20020608 225200 99999 KEM' PORT RS 64.983 34.8 8.0 20061121 20200624 225220 99999 KEM' RS 64.95 34.65 8.0 19320101 20060628 225250 99999 RAZNAVOLOK RS 64.567 34.917 9.0 19480306 20200624 225260 99999 JUKOVO RS 64.367 35.667 4.0 19590101 19620517 225290 99999 KOLEZMA RS 64.233 35.883 3.0 19590101 20200624 225350 99999 LJAMCA RS 64.433 37.083 8.0 19590101 20030115 225410 99999 UNSKIJ MAJAK RS 64.833 38.4 5.0 19590101 20200624 225460 99999 SEVERODVINSK RS 64.55 39.766999999999996 7.9 19590101 20200624 225480 99999 ... RS 64.283 38.7 19621014 19631216 225500 99999 TALAGI RS ULAA 64.6 40.717 18.9 19310104 20200624 225510 99999 MUD'JUG RS 64.85 40.283 3.0 19590101 20200624 225550 99999 VAS'KOVO RS 64.533 40.5 11.0 19630406 20030910 225590 99999 HOLMOGORY RS 64.217 41.667 12.0 19590101 20200622 225630 99999 PINEGA RS 64.7 43.383 31.0 19460102 20200624 225730 99999 LESUKONSKOE RS 64.9 45.766999999999996 71.0 19590101 20200624 225830 99999 KOJNAS RS 64.75 47.65 64.0 19320101 20200624 226020 99999 REBOLY RS 63.833 30.816999999999997 182.0 19460201 20200624 226190 99999 PADANY RS 63.266999999999996 33.417 128.0 19590101 20200624 226210 99999 SEGEZA RS 63.766999999999996 34.283 112.0 19460109 20200624 226220 99999 VORENZA RS 63.917 35.266999999999996 91.0 19590101 20050823 226290 99999 19310106 19360430 226380 99999 KALGACHIHA RS 63.333 36.717 182.9 19590101 20141231 226410 99999 ONEGA RS 63.9 38.117 13.0 19460307 20200624 226480 99999 TURCASOVO RS 63.117 39.233000000000004 34.0 19590101 20200624 226510 99999 KHOLMOGORSKAYA RS 63.8 40.667 85.0 19590101 20050726 226560 99999 EMECK RS 63.483000000000004 41.8 18.0 19590101 20200624 226570 99999 EMCA RS 63.067 40.35 108.0 19460101 19881008 226710 99999 KARPOGORY RS 64.017 44.45 65.1 19590101 20200624 226760 99999 SURA RS 63.583 45.633 62.0 19361231 20200624 226860 99999 VENDINGA RS 63.45 47.917 80.0 19590101 20200623 226950 99999 KOSLAN RS 63.45 48.9 158.0 19590101 20200624 227070 99999 VYARTSILYA RS 62.183 30.683000000000003 102.0 19010101 20010814 227100 99999 KUDAMGUBA RS 62.867 32.4 173.0 19630821 19910522 227120 99999 SOVDDVERO RS 62.717 33.25 167.0 19590101 19621219 227170 99999 SUOYARVI RS 62.1 32.383 156.0 19590101 20200624 227210 99999 MEDVEZEGORSK RS 62.917 34.433 81.0 19480101 20200624 227230 99999 DANILOVO RS 62.967 35.7 139.0 19590101 19951222 227250 99999 SHUNGA RS 62.6 34.95 48.0 19590101 19880614 227270 99999 KONDOPOGA RS 62.167 34.3 38.0 19590101 20200624 227380 99999 KUGONAVOLOK RS 62.233000000000004 36.883 147.0 19590101 20020920 227490 99999 KONEVO RS 62.133 39.3 101.3 19590101 20200624 227620 99999 DVINSKIJ BEREZNIK RS 62.817 42.783 34.0 19590101 20200621 227650 99999 19361231 19371229 227680 99999 SHENKURSK RS 62.1 42.9 45.0 19320101 20200624 227780 99999 VERHNJAJA TOJMA RS 62.233000000000004 45.016999999999996 58.0 19590101 20200624 227810 99999 OKULOVSKAYA RS 62.967 46.583 95.0 19590101 20021107 227840 99999 KERGA RS 62.65 46.033 130.0 19590101 19600520 227930 99999 LOPTYUGA RS 62.9 49.633 180.0 19590101 19941002 227980 99999 JARENSK RS 62.167 49.117 92.0 19480101 20200624 228020 99999 SORTAVALA RS 61.717 30.717 19.0 19170101 20200624 228050 99999 VALAAM RS 61.367 30.883000000000003 16.0 19590101 20200624 228060 99999 MANTSINSARI ISLAND RS 61.333 31.6 24.0 19590101 20081205 228070 99999 PRIOZERSK RS 61.05 30.133000000000003 9.0 19590101 19901126 228090 99999 ORITSEL KYA RS 61.283 31.633000000000003 1.0 19590101 19630331 228140 99999 PALALAKHTA RS 61.633 32.417 93.0 19590101 19891218 228160 99999 PRIAZA RS 61.683 33.617 133.0 19590101 19960902 228170 99999 VIDLITSA RS 61.183 32.433 13.0 19590101 20050727 228200 99999 PETROZAVODSK RS ULPB 61.817 34.266999999999996 110.0 19320101 20200624 228230 99999 KLIMENITSY RS 61.85 35.2 40.0 19590101 19940724 228240 99999 LADVA-VETKA RS 61.35 34.45 57.0 19590101 20050812 228260 99999 BESOV NOS (CAPE) RS 61.667 36.067 43.0 19590101 19891111 228290 99999 VOSNESEN'E RS 61.016999999999996 35.483000000000004 41.0 19590101 20160614 228300 99999 TEREBOVSKAYA RS 61.783 36.033 34.0 19590101 20030129 228310 99999 PUDOZ RS 61.8 36.583 44.0 19471002 20200624 228330 99999 KOLODOZERO RS 61.783 37.75 116.0 19590101 19960216 228350 99999 MIRONOVA RS 61.45 36.9 152.0 19730520 20051011 228370 99999 VYTEGRA RS 61.016999999999996 36.45 56.0 19320112 20200624 228450 99999 KARGOPOL' RS 61.5 38.933 126.0 19590101 20200624 228540 99999 NJANDOMA RS 61.667 40.183 233.0 19361231 20200624 228670 99999 VEL'SK RS 61.083 42.067 91.0 19320101 20200624 228690 99999 SHANGALY RS 61.133 43.35 117.2 19590101 20200624 228760 99999 KRASNOBORSK RS 61.55 45.933 59.6 19590101 20200624 228830 99999 SLOBODICHIKOVO RS 61.75 48.25 88.0 19590101 19841007 228860 99999 SEVERNY RS 61.583 47.467 19630627 19631219 228870 99999 KOTLAS RS ULKK 61.233000000000004 46.717 56.0 19480104 20200624 228890 99999 VILEGODSKOE RS 61.117 48.0 69.8 19900101 20200624 228910 99999 SOSNOVO RS 60.55 30.316999999999997 70.0 19590101 20160614 228911 99999 LESOGORSKIY RS 61.033 28.933000000000003 39.0 20091128 20091128 228920 99999 VYBORG RS 60.717 28.733 13.0 19060101 20200624 228940 99999 BOLSHOY BOR RS 60.516999999999996 28.25 0.0 19590101 19631124 228960 99999 ROSCINO RS 60.217 29.717 96.0 19590101 19940916 228970 99999 OZERKI FS 60.2 29.0 11.0 19590101 20160614 228971 99999 SURSARI/GOGLAND ISL RS 60.067 27.0 6.0 20091128 20091128 229050 99999 RANTA-KYULYA RS 60.567 30.666999999999998 6.0 19591018 19631009 229060 99999 SOSNOVO RS 60.516999999999996 30.483 68.0 19600510 19901006 229070 99999 TOKSOVO RS 60.15 30.517 115.0 19590911 20050115 229080 99999 OSINOVETS RS 60.167 31.066999999999997 8.0 19590101 20020622 229120 99999 OLONEC RS 60.983000000000004 32.983000000000004 12.0 19590101 20200624 229130 99999 LODEJNOE POLE RS 60.717 33.55 23.0 19590101 20200624 229140 99999 STOROZHNO RS 60.516999999999996 32.633 8.0 19730103 19891109 229150 99999 SVIRICA RS 60.467 32.9 8.0 19460308 19970511 229170 99999 NOVAJA LADOGA RS 60.117 32.317 9.0 19590101 20200624 229250 99999 VINNICY RS 60.633 34.783 111.0 19590101 20200624 229320 99999 NOVO-PETROVSKOYE RS 60.833 37.083 145.0 19590101 19601224 229390 99999 BELOZERSK RS 60.016999999999996 37.75 131.0 19320101 20200624 229440 99999 CHAROZERO RS 60.467 38.65 158.0 19590101 19960404 229510 99999 KONOSHA RS 60.983000000000004 40.25 226.5 19590101 20200624 229540 99999 VOZEGA RS 60.467 40.2 202.0 19480101 20200624 229740 99999 NYUKSENITSA RS 60.417 44.217 136.5 19590101 20200624 229810 99999 VELIKIJ USTJUG RS 60.766999999999996 46.25 99.0 19320101 20200624 229830 99999 LAL' SK RS 60.7 47.6 84.1 20120328 20200624 229880 99999 PODOSINOVETS RS 60.283 47.083 134.0 19590102 19631226 229960 99999 OB'JACEVO RS 60.367 49.65 152.0 19590101 20200611 230200 99999 JUGORSKI STRAIT RS 69.75 60.583 13.0 19810101 20020607 230210 99999 YUGORSKIY SHAR RS 69.817 60.75 13.0 19320101 19840816 230220 99999 AMADERMA RS ULDD 69.75 61.7 49.0 19480101 20200624 230240 99999 CAPE BELY RS 69.483 60.333 6.0 19590405 20050821 230290 99999 UST-KARA RS 69.25 64.983 4.0 19570712 20010430 230320 99999 MARESALE RS 69.717 66.8 25.0 19320101 20200624 230580 99999 ANTIPAJUTA RS 69.083 76.85 3.0 19600211 20200624 230660 99999 UST PORT /UST ENISEISK RS 69.65 84.4 27.1 19320101 19570629 230740 99999 DUDINKA RS 69.4 86.167 19.0 19480101 20141221 230770 99999 NORILSK RS 69.333 87.95 19590101 19760104 230780 99999 NORIL'SK RS 69.333 88.25 64.0 19751001 20200624 231030 99999 HODOVARIHA RS 68.933 53.766999999999996 11.0 19590101 20010429 231040 99999 SENGEJSKI STRAIT RS 68.483 51.25 5.0 19590101 20021213 231050 99999 TOBSEDA RS 68.6 52.333 6.0 19590101 20050202 231090 99999 NDSOVAJA RS 68.25 54.516999999999996 24.0 19590101 20010717 231120 99999 VARANDEY RS 68.8 57.983000000000004 6.6 19590102 20200624 231140 99999 MYS KONSTANTINOVSKIJ RS 68.533 55.5 6.7 19590101 20200624 231210 99999 KOROTAJIHA RS 68.85 61.183 10.0 19590102 19950723 231460 99999 CAPE KAMENNYJ RS 68.5 73.583 5.0 19550305 19940828 231740 99999 POTAPOVO RS 68.667 86.25 41.0 19570830 20200624 231790 99999 SNEZHNOGORSK RS 68.1 87.76700000000001 93.8 19730101 20200624 232050 99999 NAR'JAN-MAR RS 67.633 53.033 12.0 19320101 20200624 232070 99999 KOTKINO RS 67.017 51.133 18.0 19590101 20050112 232140 99999 LAYATO (LAKE) RS 67.567 56.133 137.0 19830701 19960330 232150 99999 HOREJ-VER RS 67.433 58.033 71.0 19590101 20080612 232190 99999 HOSEDA-HARD RS 67.033 59.4 83.0 19480101 20160417 232200 99999 ZELEZNODOROZNY RS 67.833 64.75 116.0 19590801 20050223 232201 99999 SALEKHARD RS USDD 66.59100000000001 66.611 66.4 20040706 20170615 232202 99999 RADUZHNY RS 62.15 77.3 78.0 20040706 20041231 232203 99999 KOGALYM RS 62.183 74.533 69.0 20040706 20081231 232204 99999 ROSCHINO RS USTR 57.19 65.324 115.2 20040706 20200624 232205 99999 UKHTA RS UUYH 63.55 53.817 149.0 20040706 20130719 232210 99999 USINSK RS UUYS 66.0 57.367 80.0 20040803 20130719 232215 99999 MAGNITOGORSK RS USCM 53.393 58.756 435.9 20090510 20200624 232260 99999 VORKUTA RS 67.483 64.017 172.0 19530216 20200624 232420 99999 NOVYJ PORT RS 67.683 72.883 12.0 19320101 20200624 232560 99999 TAZOVSKIJ RS 67.467 78.733 8.0 19480101 20200624 232740 99999 IGARKA RS 67.467 86.56700000000001 28.0 19480101 20200624 233050 99999 OKUNEV NOS RS 66.25 52.55 22.0 19480304 20200624 233110 99999 MISVAN RS 66.95 55.766999999999996 61.0 19600101 20010429 233160 99999 ADZVA-VOM RS 66.6 59.283 67.0 19590101 19891004 233220 99999 SIVOMASKINSKI RS 66.667 62.516999999999996 96.0 19590101 19880805 233240 99999 PETRUN' RS 66.433 60.766999999999996 62.0 19590101 20200624 233300 99999 SALEHARD RS 66.533 66.667 16.0 19320101 20200617 233310 99999 RA-IZ RS 66.9 65.667 890.0 19530216 20030821 233320 99999 SANGOMNOY RS 66.75 67.75 31.0 19590102 20030624 233330 99999 JAMBUR RS 66.8 68.883 32.0 19560101 20030308 233380 99999 POLUY RS 66.267 67.867 38.0 19690110 20020906 233390 99999 POLUJ RS 66.033 68.683 35.9 19740517 20200624 233410 99999 JAR-SALE RS 66.833 70.833 8.0 19570702 19980328 233450 99999 NYDA RS 66.633 72.933 7.0 19570701 20200624 233580 99999 NOVYJ URENGOJ RS 66.1 76.783 61.9 20120425 20200624 233630 99999 SDOVETSKAYA RECHKA RS 66.817 83.667 47.0 19630802 19631229 233650 99999 SIDOROVSK RS 66.6 82.5 34.0 19590103 19941231 233680 99999 MUNGUV RS 66.25 82.167 22.0 19560103 19630118 233750 99999 KUREJKA RIVER RS 66.417 87.2 27.0 19590101 20070715 233760 99999 SVETLOGORSK RS 66.933 88.367 100.8 20120328 20200624 233830 99999 AGATA RS 66.883 93.46700000000001 278.0 19570702 20200624 234050 99999 UST'-CIL'MA RS 65.433 52.266999999999996 68.0 19320101 20200624 234110 99999 MUNTNIY MATERIK RS 65.95 55.15 72.0 19611104 20031011 234120 99999 UST'-USA RS 65.967 56.917 78.0 19480104 20200624 234160 99999 KOSJU RIVER RS 65.633 59.15 89.0 19590101 20010722 234180 99999 PECHORA RS 65.133 57.133 53.2 19570803 20200624 234230 99999 UNSILGORT RS 65.85 65.0 40.0 19590101 20021114 234260 99999 MUZHI RS 65.483 64.717 19.0 19530216 20200624 234310 99999 PITLYAR RS 65.833 65.933 16.5 19530216 20200624 234430 99999 PANGODY RS 65.833 74.5 51.9 19870601 20200624 234450 99999 NADYM RS USMM 65.467 72.667 19.0 19560101 20200624 234530 99999 URENGOJ RS 65.95 78.4 23.7 19550701 20200624 234630 99999 YANOV-STAN RS 65.983 84.32799999999999 40.0 19570710 20170703 234650 99999 KRASNOSEL' KUPSK RS 65.7 82.45 24.7 19631002 20200624 234710 99999 NIZHNEVARTOVSK RS USNN 60.949 76.484 53.9 19690101 20200624 234711 99999 UST-BAJHA RS 65.867 86.21700000000001 58.0 20050901 20050912 234720 99999 TURUHANSK RS 65.783 87.98899999999999 38.0 19320106 20200624 234750 99999 SUKHAYA TUNGUSKA RS 65.167 87.917 27.0 19690101 19840623 234840 99999 BOLSOJ POROG RS 65.633 90.01700000000001 65.0 19590101 20061023 234990 99999 TEMBENCHI RS 64.933 98.867 203.0 19570722 20110308 235010 99999 LEVKINSKAJA RS 64.783 51.067 167.0 19590101 19961001 235030 99999 IZHMA RS 65.033 53.967 52.0 19590101 20200624 235040 99999 MICHMAICHMON RS 64.4 51.016999999999996 250.0 19630615 19631223 235090 99999 KEDVA RIVER RS 64.233 53.5 60.0 19590101 20041117 235140 99999 IRAEL RS 64.45 55.133 157.0 19590101 20011020 235160 99999 IJID-PATOK RS 64.333 58.217 84.0 19630501 19940323 235180 99999 UST'-SUGOR RS 64.267 57.617 75.0 19480130 20200624 235190 99999 VERHNI SUGOR RS 64.033 59.5 290.0 19590101 20051008 235270 99999 SARAN-PAUL' RS 64.283 60.883 29.0 19530216 20200624 235310 99999 SHIZHIMGORT RS 64.883 65.583 24.0 19750716 20010710 235410 99999 HEJGIJAHA RIVER RS 64.75 70.967 63.0 19870601 20020224 235520 99999 TARKO-SALE RS 64.917 77.817 27.0 19570701 20200624 235550 99999 19740804 19741006 235580 99999 KHARAMPUR RS 64.283 78.15 30.0 19730101 20021130 235780 99999 VERESHCHAGINO RS 64.233 87.56700000000001 30.0 19570715 20200624 235850 99999 KOCHUNDEK RS 66.383 93.117 91.7 19570701 19741001 235890 99999 TUTONCHANY RS 64.2 93.78299999999999 105.0 19690503 20200624 235920 99999 BOGUS SOVIET RS 19881007 20020812 236040 99999 PEGISHDOR RS 63.433 50.55 137.0 19630502 20031002 236060 99999 UHTA RS 63.55 53.817 137.0 19530216 20200624 236080 99999 MESJU RS 63.233000000000004 52.9 180.0 19590101 20010830 236090 99999 IZVAJIL RS 63.05 54.467 112.0 19590101 19970506 236110 99999 DUTOVO-IN-KOMI RS 63.783 56.683 92.0 19590101 19820409 236120 99999 VUKTYL RS 63.833 57.417 97.0 19830401 20040903 236250 99999 SOSVA RS 63.65 62.1 28.0 19530220 20200624 236280 99999 SARTINYA RS 63.367 63.067 50.0 19730101 20010706 236290 99999 IGRIM RS 63.2 64.483 28.0 19560101 20030223 236310 99999 BEREZOVO RS 63.933 65.05 32.0 19320101 20200624 236320 99999 KISLOR WEST RS 63.717 66.7 61.0 19530216 20020604 236350 99999 YUIL' SK RS 63.667 69.6 85.8 19690101 20200624 236440 99999 NUMTO RS 63.5 71.333 109.0 19590101 19910720 236560 99999 HALESOVAYA RS 63.383 78.317 67.1 19600205 20200624 236570 99999 NOYABR' SK RS 63.117 75.283 131.0 20120425 20200624 236620 99999 TOL'KA RS 63.983000000000004 82.083 33.0 19590101 20200624 236660 99999 BOGUS SOVIET RS 19850801 20011004 236780 99999 VERHNEIMBATSK RS 63.15 87.95 46.0 19320107 20200624 236910 99999 UCAMI RS 63.833 96.65 105.0 19570710 20020807 236990 99999 KERBO RS 62.717 101.117 230.4 19570710 20200624 236991 99999 VIVI RIVER RS 63.867 97.833 109.0 20051127 20071023 237010 99999 VESLJANA RS 62.983000000000004 50.9 103.0 19530216 20200624 237040 99999 ZELEZNODOROZNY RS 62.617 50.917 87.0 19590101 20021016 237070 99999 UST-VYM RS 62.217 50.417 80.0 19590101 19601224 237080 99999 LUN' RS 62.233000000000004 52.483000000000004 120.0 19590101 20200624 237090 99999 POMOZDINO RS 62.2 54.2 154.0 19590101 20010429 237110 99999 TROICKO-PECHERSKOE RS 62.7 56.2 139.0 19320101 20200622 237140 99999 ZELENETS-IN-KOMI RS 62.433 55.3 214.0 19590101 19751221 237230 99999 RUZITGORT RS 62.867 64.967 45.0 19800402 19891004 237240 99999 NJAKSIMVOL' RS 62.433 60.867 51.0 19530216 20200624 237290 99999 TUZKIN-KURT RS 62.167 64.0 85.0 19530216 19700406 237340 99999 OKTJABR'SKOE RS 62.45 66.05 72.0 19480101 20200624 237370 99999 MYS SOSNOVIY RS 62.05 66.4 25.0 19530216 20030606 237410 99999 NIZHNESORTYMSK RS 62.75 71.667 85.5 20120425 20200624 237450 99999 KOCEVJE RS 62.467 73.117 80.0 19730101 19940927 237480 99999 KOGALYM RS USRK 62.19 74.53399999999999 67.1 19881201 20200624 237580 99999 RADUZHNY RS USNR 62.158 77.313 78.0 20050101 20200623 237740 99999 KELLOG RS 62.483000000000004 86.28299999999999 60.4 19570710 20200624 237760 99999 BAHTA RS 62.467 89.01700000000001 57.1 19590101 20200624 237880 99999 KUZ' MOVKA RS 62.317 92.117 62.0 19570728 20200624 237890 99999 POLIGUS RS 61.967 94.667 140.0 19591201 20070112 238030 99999 UST'-KULOM RS UUYT 61.683 53.683 144.0 19480101 20200624 238040 99999 SYKTYVKAR RS UUYY 61.647 50.845 98.8 19320101 20200624 238045 99999 OSTAFYEVO RS UUMO 55.508 37.505 172.0 20090701 20200624 238060 99999 ... RS 61.417 54.333 19610301 19751012 238070 99999 VIZINGA RS 61.083 50.167 134.0 19590101 20010429 238080 99999 LOPIDINO-IN-KOMI RS 61.133 52.133 133.0 19590101 19890928 238120 99999 JAKSHA RS 61.833 56.867 131.0 19590101 20200624 238130 99999 UST-UNJA RS 61.8 57.917 174.0 19630601 19950703 238140 99999 BOGUS SOVIET RS 19870603 20030205 238150 99999 TULPAN RS 61.35 57.483000000000004 202.0 19620418 20011208 238170 99999 LAREVKA RS 61.2 56.667 152.0 19740821 20050224 238200 99999 PIONERSKI RS 61.2 62.95 63.0 19810101 20020513 238230 99999 VONEGAN RS 61.95 64.9 111.4 19700108 20200608 238270 99999 BURMANTOVO RS 61.283 60.483000000000004 127.0 19590101 20040812 238290 99999 SOVETSKI RS 61.333 63.483000000000004 116.0 19740820 19970208 238380 99999 BECAME STN 238281 RS 61.05 68.633 28.0 19690503 19890618 238410 99999 GORSKOVA RS 61.7 70.667 46.0 19570701 20000303 238430 99999 YERMAKOVO RS 61.8 74.083 48.0 19570701 19890523 238470 99999 SYTOMINO RS 61.3 71.3 33.4 19530216 20200624 238480 99999 NEFTEJUGANSK RS 61.1 72.75 27.0 19881201 19980423 238490 99999 SURGUT RS USRR 61.343999999999994 73.402 61.0 19320101 20200624 238520 99999 VAR-YEGAN RS 61.983000000000004 76.733 63.0 19730402 20020708 238590 99999 LOBCHINSKIYE RS 60.95 78.617 49.0 19590105 19861227 238620 99999 KORLIKI RS 61.533 82.417 71.0 19690331 20200624 238670 99999 LAR' YAK RS 61.1 80.25 57.0 19570710 20200624 238830 99999 PEREVALOCHNAYA RS 61.85 93.46700000000001 456.0 19560101 19591128 238840 99999 BOR RS 61.6 90.01700000000001 58.0 19530216 20200624 238900 99999 19870511 19870511 238910 99999 BAJKIT RS 61.667 96.367 262.0 19570701 20200624 239040 99999 KAZIM RS 60.333 51.55 126.0 19590801 20020216 239050 99999 UST-CERNAJA RS 60.5 52.667 152.0 19590101 20010915 239070 99999 KAZHIM RS 60.333 51.55 19580121 19581221 239090 99999 GAJNY RS 60.283 54.35 198.0 19530216 20200622 239120 99999 NYROB RS 60.7 56.75 173.0 19590101 20060221 239130 99999 PRIISKOVAYA RS 60.8 58.95 305.0 19740904 19891014 239140 99999 CHERDYN' RS 60.4 56.516999999999996 207.0 19320101 20200624 239150 99999 POLJUDOV KAMEN' RS 60.5 57.133 523.0 19590101 19910227 239160 99999 SOLVA RS 60.4 59.417 647.0 19600202 19630731 239190 99999 POKROVSK-URAL'SKIY RS 60.133 59.817 229.0 19620605 20000109 239210 99999 IVDEL' RS 60.683 60.45 95.0 19480101 20200624 239230 99999 SUPRA RS 60.867 64.9 81.0 19690331 20010719 239250 99999 SANTAL RS 60.4 63.133 68.0 19530216 20030304 239270 99999 SEVEROURALSK RS 60.15 60.016999999999996 186.0 19620617 20050829 239290 99999 SAIM RS 60.317 64.217 53.0 19530216 20200624 239330 99999 KHANTY MANSIYSK RS USHH 61.028 69.086 23.2 19320101 20200624 239331 99999 NIZHNEVARTOVSK RS 60.95 76.483 55.0 20040831 20081231 239390 99999 ALTAY RS 60.333 68.967 32.3 19530225 20200624 239460 99999 UGUT RS 60.5 74.017 48.1 19530216 20200624 239470 99999 SALYM RS 60.067 71.483 54.6 20120425 20200624 239530 99999 LOBCINSKIJE RS 60.95 78.783 56.0 19860601 20040610 239550 99999 ALEKSANDROVSKOE RS 60.433 77.867 48.0 19480104 20200624 239660 99999 VANZIL'-KYNAK RS 60.35 84.083 99.0 19530216 20200624 239730 99999 VOROGOVO RS 61.033 89.633 49.0 19530216 20200624 239750 99999 SYM RS 60.35 88.367 86.0 19530216 20200624 239820 99999 VEL'MO RS 61.016999999999996 93.43299999999999 121.8 19570710 20200624 239860 99999 SEVERO-ENISEJSK RS 60.367 93.03299999999999 511.0 19570722 20200624 239870 99999 JARCEVO RS 60.25 90.23299999999999 58.0 19480101 20200624 239920 99999 UST'-KAMO RS 60.717 97.51700000000001 178.0 19570731 20200624 240510 99999 SIKTJAH RS 69.917 125.167 38.0 19690101 19940218 240520 99999 SAHANJA RS 69.75 128.2 315.0 19690102 19940906 240650 99999 TOMTOR RS 69.5 132.2 99.0 19810101 19930707 240710 99999 JANGKI-IN-YAKUT RS 69.767 135.067 49.0 19690101 20020627 240760 99999 DEPUTATSKI RS 69.333 139.667 284.5 19730102 20200624 240950 99999 VORONTSOVO RS 69.583 147.533 16.0 19690101 19810122 241050 99999 ESSEJ RS 68.467 102.367 271.0 19570701 20040524 241250 99999 OLENEK RS 68.5 112.43299999999999 220.0 19620101 20200624 241360 99999 SUHANA RS 68.617 118.333 77.0 19590101 20200624 241430 99999 DZARDZAN RS 68.733 124.0 39.0 19480101 20200624 241520 99999 VERKHOYANSK RANGE RS 68.85 127.367 683.0 19590101 19631231 241660 99999 JANSK RS 68.45 134.8 103.0 19590102 20010624 241940 99999 BELAYA GORA RS 68.55 146.217 41.0 20120829 20200624 241970 99999 DRUZINA RS 68.233 145.3 152.0 19590101 19930226 242190 99999 YAROL'IN RS 67.133 108.53299999999999 235.8 19590101 20200624 242310 99999 MAAK-IN-YAKUT RS 67.733 116.167 70.0 19590101 20030801 242430 99999 MENKERE RS 67.967 123.4 4.0 19590101 19800108 242570 99999 SOBOPOL-IN-YAKUT RS 67.117 126.117 184.0 19590101 19790604 242610 99999 BATAGAJ-ALYTA RS 67.8 130.38299999999998 491.2 19590101 20200624 242630 99999 BATAGAJ RS 67.65 134.683 214.0 19591105 20200624 242660 99999 VERHOJANSK RS 67.567 133.4 138.0 19480101 20200624 242750 99999 MALIY TUOSTAKH RS 67.383 137.217 224.0 19590101 20020629 243220 99999 POLIARNY RS UERP 66.4 112.03 506.0 19760403 20200624 243290 99999 SHELAGONTSY RS 66.25 114.28299999999999 236.0 19570701 20200624 243380 99999 EJK RS 66.033 117.4 304.3 19730101 20200624 243430 99999 ZHIGANSK RS 66.767 123.4 92.0 19480103 20200624 243610 99999 EKYUCHCHYU RS 66.767 131.6 200.1 19590101 20200624 243710 99999 UST'-CHARKI RS 66.8 136.683 273.8 19590101 20200624 243820 99999 UST'-MOMA RS 66.45 143.233 196.0 19590101 20200624 243960 99999 ARGA RS 66.5 149.783 40.0 19590101 19931212 244210 99999 AJHAL RS 66.0 111.53299999999999 396.0 19730101 19890629 244490 99999 BESTYAHSKAYA ZVEROFERMA RS 65.3 127.117 73.3 19590101 20200624 244620 99999 SEBYAN-KYUEL' RS 65.3 130.0 777.2 20120829 20200624 244770 99999 IEMA RS 65.3 135.8 674.9 19590101 20200624 244880 99999 BEREZKIN RS 65.25 143.167 503.0 19600101 19791208 245070 99999 TURA RS 64.267 100.23299999999999 168.0 19370101 20200624 245250 99999 HABARDINO RS 64.6 112.51700000000001 251.2 19730518 20200624 245380 99999 CHUMPURUK RS 64.233 116.917 139.1 19590101 20200624 245440 99999 UGULYAT RS 64.55 120.5 146.0 19590101 20021229 245570 99999 SOGO-HAYA RS 64.283 126.45 85.0 19590101 20200624 245590 99999 BOGUS SOVIET RS 19840121 20020324 245610 99999 SYURYUN-KYUYEL' RS 65.0 130.683 737.0 19570702 19880627 245670 99999 BOGUS SOVIET RS 19740610 19860727 245840 99999 RAZVEDCHIK RS 64.5 140.667 1013.0 19590101 19700607 245850 99999 NERA RS 64.55 144.4 518.5 19590101 20200624 245880 99999 YURTY RS 64.05 141.88299999999998 589.7 19620625 20200624 245890 99999 SAYYLYK RS 64.367 143.083 676.0 19590101 19630124 245980 99999 DARPIR RS 64.167 148.033 841.0 19590101 19950920 246060 99999 KISLOKAN RS 63.583 103.96700000000001 211.0 19560101 20200624 246290 99999 SYULDYUKAR RS 63.217 113.633 163.0 19570701 20050829 246390 99999 NJURBA RS 63.283 118.333 119.0 19340903 20200624 246410 99999 VILJUJSK RS 63.766999999999996 121.617 111.0 19370101 20200624 246430 99999 HATYAYK-HOMO RS 63.95 124.833 76.5 19590101 20200624 246440 99999 VERHNEVILJUJSK RS 63.45 120.31700000000001 115.3 19590101 20200624 246520 99999 SANGARY RS 63.967 127.46700000000001 96.0 19480101 20200624 246560 99999 BATAMAJ RS 63.516999999999996 129.483 79.0 19480101 20200624 246610 99999 SEGEN-KYUEL' RS 64.0 130.3 208.0 19590101 20200624 246680 99999 VERHOJANSK PEREVOZ RS 63.317 132.017 90.9 19590101 20200624 246710 99999 TOMPO RS 63.95 135.86700000000002 402.0 19590101 20200624 246780 99999 ZAPADNAYA-IN-YAKUT RS 63.05 137.95 849.0 19590101 20020128 246790 99999 VOSTOCHNAYA RS 63.217 139.6 1287.9 19590101 20200624 246840 99999 AGAYAKAN RS 63.333 141.733 776.9 19590101 20200624 246880 99999 OJMJAKON RS 63.25 143.15 741.0 19480101 20200624 246910 99999 DELYANKIR RS 63.833 145.6 800.9 19590101 20200624 246980 99999 ARKAGALA RS 63.15 146.967 798.0 19590101 19780627 247130 99999 NAKANNO RS 62.883 108.43299999999999 246.0 19550701 20070227 247180 99999 HAMAKAR RS 62.1 108.23299999999999 272.0 19570701 20011120 247240 99999 CHERNISHEVSKIJ RS 63.033 112.48299999999999 422.0 19480101 20200624 247250 99999 TUOJ-HAYA RS 62.533 111.23299999999999 259.7 19730518 20200624 247260 99999 MIRNY RS UERR 62.535 114.039 352.0 19610701 20200624 247300 99999 OYUSUT RS 62.833 115.21700000000001 156.0 19590901 19591223 247370 99999 KRESTYAH RS 62.266999999999996 116.15 139.1 19591101 20200624 247380 99999 SUNTAR RS 62.15 117.65 133.0 19331202 20200624 247390 99999 CHAINGDA RS 62.283 119.85 308.2 19590101 20150407 247530 99999 NAMTSY RS 62.733000000000004 129.667 89.8 19690101 20200624 247580 99999 BERDIGESTYAH RS 62.266999999999996 127.06700000000001 231.4 19590101 20200624 247610 99999 BOROGONCY RS 62.667 131.13299999999998 140.0 19600113 19810411 247630 99999 KREST-HAL' DZHAY RS 62.817 134.433 114.5 19590101 20200624 247660 99999 YTYK-KJUEL RS 62.467 133.417 120.0 19590101 20020703 247680 99999 CURAPCA RS 62.033 132.6 186.0 19480101 20200624 247710 99999 TEPLY KLJUCH RS 62.783 136.85 288.6 19590101 20200624 247840 99999 MUSKHAYA RS 62.6 140.7 2149.0 19590101 19631231 247900 99999 SUSUMAN RS 62.783 148.167 655.0 19590901 20200624 247960 99999 YAGODNOYE RS 62.533 149.63299999999998 504.0 19590101 19780709 247990 99999 JEK-LONDON (LAKE) RS 62.117 149.517 808.0 19690101 19831230 248020 99999 STRELKA CHUNYA RS 61.733000000000004 102.81700000000001 358.2 19570722 20200624 248070 99999 MUTORAJ RS 61.333 100.48299999999999 331.5 19590101 20200624 248130 99999 MARKHAY RS 61.983000000000004 109.76700000000001 268.0 19690102 19800211 248170 99999 ERBOGACEN RS 61.266999999999996 108.01700000000001 291.0 19370102 20200624 248260 99999 DOROZHNYJ RS 61.617 114.617 353.7 19590101 20200624 248430 99999 TONGULAH RS 61.917 124.55 199.1 19590101 20200624 248560 99999 POKROVSK RS 61.483000000000004 129.15 115.0 19480101 20200624 248580 99999 SINSKOYE-IN-YAKUT RS 61.133 126.8 122.0 19590101 19840810 248590 99999 BROLOGYAKHATAT RS 61.283 128.933 118.0 19590101 20011213 248710 99999 OHOTSKIJPEREVOZ RS 61.867 135.5 140.6 19590101 20200624 248780 99999 ALLAH-JUN RS 61.133 137.983 613.0 19590101 19960910 248910 99999 KULU RS 61.883 147.35 670.0 19590101 20050816 248940 99999 KOLYMSKAYA RS 61.85 147.667 838.8 20120530 20200624 248980 99999 UST' OMCHUG RS 61.117 149.63299999999998 574.5 19590101 20200624 248990 99999 UST OMCHUK RS 61.15 149.63299999999998 19590101 19631207 249080 99999 VANAVARA RS 60.333 102.26700000000001 260.0 19570701 20200624 249180 99999 PREOBRAZHENKA RS 60.05 108.083 295.2 19570701 20200624 249230 99999 LENSK RS 60.717 114.883 234.0 19480101 20200624 249280 99999 KOMAKA RS 60.266999999999996 111.73299999999999 298.6 19590101 20200624 249330 99999 KILEER RS 60.95 119.3 249.3 19590101 20200624 249340 99999 NJUJA RS 60.533 116.23299999999999 168.0 19331202 20010814 249440 99999 OLEKMINSK RS 60.4 120.417 229.6 19311231 20200624 249460 99999 SANI-YAKHTAT RS 60.6 124.03299999999999 139.0 19590101 19890919 249510 99999 ISIT' RS 60.817 125.31700000000001 118.0 19331202 20200624 249520 99999 BOGUS SOVIET RS 19880301 19890930 249550 99999 DOBROLET-IN-YAKUT RS 60.516999999999996 127.917 468.0 19590101 19800228 249590 99999 JAKUTSK RS 62.016999999999996 129.717 101.0 19311231 20200624 249620 99999 AMGA RS 60.9 131.983 146.0 19480101 20200624 249660 99999 UST'-MAJYA RS 60.383 134.45 170.0 19331209 20200624 249670 99999 TEGYULTYA RS 60.467 130.0 171.0 19590101 20200624 249750 99999 YNYKVHAN RS 60.367 137.5 385.0 20120829 20141111 249820 99999 UEGA RS 60.717 142.783 398.0 19541122 20200624 249880 99999 ARKA RS 60.083 142.333 198.0 19480101 20200624 249940 99999 NOVVY KHEYDZHAM RS 60.667 145.533 408.0 19621005 19630906 249950 99999 APPROXIMATE LOCALE RS 60.516999999999996 148.2 305.0 19731004 19780301 250020 99999 KONDAKOVA RS 69.75 151.667 68.0 19620821 19631223 250170 99999 ADRYUSKINO RS 69.167 154.5 16.0 19830401 20200624 250230 99999 19870511 19870511 250260 99999 OSTROV SUKHARYYA RS 69.583 161.733 1.0 19610401 19630304 250340 99999 BUHTA AMBARCIK RS 69.617 162.3 23.0 19480101 20200624 250420 99999 AJON RS 69.917 167.967 13.7 19550305 20200624 250440 99999 RAUCHUA RS 69.5 166.583 4.6 19550305 20200624 250510 99999 PEVEK RS UHMP 69.783 170.597 3.4 19550305 20200624 250520 99999 APAPELKHINO RS 69.75 170.6 4.0 19550305 20020507 250530 99999 SHALAUROVA ISLAND RS 69.983 172.783 20.0 19590802 19630830 250550 99999 KRASNOARMEJSKI RS 69.617 172.033 193.0 19570701 19931221 250560 99999 APPROXIMATE LOCALE RS 69.5 174.0 0.0 19821101 20020901 250620 99999 MYS BILLINGSA RS 69.883 175.767 3.0 19550305 20200624 250770 99999 CAPE KJANGTOKJNMANK RS 69.217 179.36700000000002 7.0 19811101 19950419 251210 99999 KOLYMSKAYA RS 68.733 158.717 12.0 19590101 20200624 251230 99999 CHERSKIJ RS 68.75 161.283 28.0 19550305 20200624 251290 99999 KONSTANTINOVSKAYA RS 68.15 161.167 8.4 20120731 20200624 251380 99999 OSTROVNOE RS 68.117 164.167 94.0 19590101 20200624 251470 99999 BILIBINO RS 68.05 166.45 279.5 20120731 20200624 251500 99999 CAUNSKAJA BAY RS 68.9 170.667 6.0 19821101 20041025 251510 99999 CHAUN RS 68.883 170.783 4.7 19590101 20200624 251730 99999 MYS SHMIDTA RS 68.9 -179.63299999999998 3.0 19331203 20150318 251870 99999 YULINU RS 68.333 177.717 4.0 19590901 19630923 251960 99999 /OPEN WATER/ 68.0 -172.0 19591001 19591211 252060 99999 CREDNEKOLYMSK RS 67.45 153.717 21.0 19590101 20200624 252410 99999 KEPERVEYEM RS 67.833 166.167 137.0 19731108 20020419 252480 99999 ILIRNEJ RS 67.25 167.967 353.0 19590101 20200624 252730 99999 IULTIN-IN-CHUKOT RS 67.867 -178.75 234.0 19590101 19890909 252820 99999 MYS VANKAREM RS 67.833 -175.833 5.0 19550305 20200624 252860 99999 KOLJUCINSKAJA BAY RS 66.833 -174.5 31.0 19550305 19940308 253250 99999 UST'-OLOJ RS 66.55 159.417 127.0 19590101 20141112 253350 99999 BAIMKA RS 66.533 164.283 286.3 19690331 20200624 253560 99999 EN' MUVEEM RS 66.383 173.333 77.0 19590101 20200623 253720 99999 AMGUJEMA RS 67.033 -178.917 138.0 19590101 20020830 253780 99999 EGVEKINOT RS 66.35 -179.11700000000002 26.0 19460101 20200624 253790 99999 MYS RAZDEL NYY RS 66.183 -179.0 19590901 19591226 253920 99999 ENURMINO RS 66.933 -171.833 20.0 19550305 19920509 253990 99999 MYS UELEN RS 66.15 -169.833 3.0 19331203 20200624 254000 99999 ZYRYANKA RS 65.733 150.9 43.0 19460101 20200624 254280 99999 OMOLON RS 65.233 160.533 264.0 19590101 20200624 254340 99999 KULYUKA RS 65.433 161.717 610.0 19730101 20020927 254480 99999 EREPOL RS 65.267 168.667 197.0 19860501 19940522 254490 99999 EREPOL RS 65.267 168.667 125.0 19590101 19890109 254560 99999 UST BELAYA RS 65.483 173.3 23.0 19590101 19810531 254690 99999 KANCHALAN RS 65.183 176.767 18.5 19590101 20200624 254930 99999 RATMANOVA ISLAND RS 65.783 -169.083 39.0 19460405 19930510 254960 99999 LAVRENTIJA RS 65.55 -171.033 9.0 19591212 20020129 255030 99999 KORKODON RS 64.75 153.967 98.0 19590101 20200624 255260 99999 KRESTIK RS 64.1 161.033 373.0 19590101 19780119 255380 99999 VERHNEE PENZINO RS 64.217 164.233 326.0 19590101 20161231 255510 99999 MARKOVO RS 64.683 170.417 26.0 19460102 20200624 255520 99999 PEVEK RS 69.7 170.283 3.0 20040810 20081231 255610 99999 TANYURER RS 64.867 174.417 8.0 19460103 20200618 255630 99999 UGOLNY RS UHMA 64.735 177.74099999999999 59.1 19331201 20200624 255680 99999 YARANGI-IN-CHUKOT RS 64.183 176.417 12.0 19590101 20020314 255940 99999 PROVIDENIYA BAY RS UHMD 64.378 -173.243 21.9 19470502 20200624 255950 99999 CHAYBUKHA RS UHMG 61.95 160.417 1.0 19460102 20050915 256030 99999 RS 19870511 19870511 256080 99999 KANON-IN-MAGADAN RS 63.4 151.317 686.0 19590101 19770816 256110 99999 BALYGYCAN RIVER RS 64.0 154.167 145.0 19590101 19890225 256210 99999 KEDON RS 64.0 158.917 683.0 19590101 20001225 256270 99999 LABAZNAYA RS 63.3 158.5 709.0 19590101 20200624 256480 99999 SLAUTNOE RS 63.2 167.85 44.0 19550501 20200624 256560 99999 BEREZOVO RS 63.417 172.717 200.0 19590101 20000221 256770 99999 BERINGOVSKAJA RS 63.016999999999996 179.283 82.0 19550305 20141112 257000 99999 EL' GEN (SOVHOZ) RS 62.8 150.667 312.4 19590101 20200624 257010 99999 KHATINNAKH RS 62.717 150.017 782.0 19471231 19831224 257030 99999 SEJMCHAN RS 62.917 152.417 205.0 19590101 20200624 257050 99999 SREDNIKAN RS 62.45 152.317 260.0 19590101 20200624 257070 99999 BOHAPCHA RS 62.1 150.683 348.8 19730313 20200624 257150 99999 OMSUKCHAN RS 62.516999999999996 155.8 499.8 19590101 20200624 257190 99999 BOGUS SOVIET RS 19860107 19870204 257440 99999 KAMENSKOE RS 62.433 166.083 10.0 19550501 20090527 257450 99999 KAMENSKOE RS 62.483000000000004 166.217 40.0 20090801 20200624 257670 99999 HATYRKA RS 62.05 175.283 13.2 19550417 20141112 257770 99999 BUHTA GAVRIILA RS 62.417 179.13299999999998 7.0 19360102 19780809 258020 99999 STRELKA-IN-MAGADAN RS 61.883 152.4 583.0 19590101 20030618 258080 99999 TALATA RS 61.133 152.38299999999998 707.5 19590201 20200624 258160 99999 PESTRAYA DRESVA RS 61.533 156.7 7.0 19590101 19881009 258200 99999 EVENSK RS 61.917 159.217 11.8 20120530 20200624 258210 99999 NAJAHAN RS 61.917 158.983 23.0 19370212 20020428 258220 99999 GIZIGA RS 62.05 160.5 2.0 19590101 20020503 258580 99999 VATYNA RS 61.233000000000004 172.38299999999998 15.0 19630404 19870519 259020 99999 ATKA RS 60.85 151.767 901.0 19590101 20041002 259040 99999 MADAUN RS 60.6 150.7 521.9 19590101 20200624 259070 99999 PALATKA RS 60.1 151.0 347.0 19590101 19771125 259100 99999 ... RS 59.7 150.417 19590101 19630203 259110 99999 ARMAN RS 59.667 150.13299999999998 19590101 19631212 259120 99999 MAGADAN NW RS 59.917 150.717 254.0 19590101 19790221 259130 99999 SOKOL RS UHMM 59.911 150.72 175.0 19451231 20200624 259140 99999 NAGAJEVA BAY RS 59.483000000000004 150.5 6.0 19370101 19951125 259150 99999 OLA RS 59.617 151.333 4.0 19590101 19800220 259160 99999 ALEVINA (MYS) RS 58.833 151.35 65.1 19620501 20200624 259170 99999 ZAVYALOVA ISLAND RS 59.0 150.467 221.0 19590101 19820616 259180 99999 DYUGUDYAKH RS 59.117 152.333 15.0 19621201 19630314 259190 99999 BRAT' EV (MYS) RS 59.1 153.333 12.9 19630608 20200624 259220 99999 SHELIHOVA RS 60.717 155.88299999999998 33.3 19611201 20200624 259270 99999 BROHOVO RS 59.65 154.267 5.0 19590101 20200624 259320 99999 TAJGONOS RS 60.683 160.4 30.0 19590101 20130917 259410 99999 CHEMURNAUT RS 60.733000000000004 163.017 14.0 19550501 20200619 259540 99999 KORF RS 61.35 166.0 3.6 19370101 20120731 259550 99999 YEMET RS 60.583 168.15 7.0 19750808 20010908 259560 99999 APUKA RS 60.433 169.667 5.0 19530216 20200624 259640 99999 TOPATA-OLYUTORSKAYA RS 60.55 171.083 12.0 19550501 19890723 260120 99999 SORVE EN 57.917 22.05 2.0 19591101 20040912 260270 99999 OSMUSSAR ISLAND EN 59.333 23.25 5.0 19601201 19621119 260290 99999 PAKRI EN 59.383 24.033 26.0 19591223 20200624 260340 99999 NAISSAAR ISLAND EN 59.6 24.416999999999998 2.0 19600817 20040717 260380 99999 TALLINN EN EETN 59.413000000000004 24.833000000000002 39.9 19530216 20200624 260381 99999 PARNU EN 58.417 24.467 47.0 20040713 20200622 260390 99999 MUSTAMETSA EN 59.45 25.65 70.0 19590101 19630305 260450 99999 KUNDA EN 59.516999999999996 26.55 3.0 19590101 20200624 260460 99999 JOHVI EN 59.333 27.383000000000003 75.0 19590101 20200624 260490 99999 JOHVI ESTONIA EN 59.367 27.416999999999998 19550101 19570630 260500 99999 MOSCNI ISLAND EN 60.0 27.833000000000002 6.0 19590101 20030310 260570 99999 SILLAMAE EN 59.4 27.75 16.0 19590102 19621229 260580 99999 NARVA-JOESUU EN 59.388999999999996 28.116999999999997 29.9 19590101 20200624 260590 99999 KINGISEPP RS 59.367 28.6 19.0 19480101 20200624 260600 99999 LOMONOSOV RS 59.917 29.767 2.0 19881002 20050801 260630 99999 PULKOVO RS ULLI 59.8 30.263 24.1 19310401 20200624 260635 99999 SMOLNAYA RS ULSS 59.983000000000004 30.583000000000002 18.0 19730101 19890315 260636 99999 ST. PETERSBURG RS 59.967 30.3 4.0 19880621 19901128 260640 99999 BEGUNITSY RS 59.583 29.316999999999997 160.0 19590809 19960426 260660 99999 PUSKIN RS 59.733000000000004 30.416999999999998 63.0 20011108 20020322 260670 99999 VOLOSOVO RS 59.433 29.5 129.0 19590101 20160614 260680 99999 DILITSY RS 59.483000000000004 29.767 19610207 19610707 260690 99999 BELOGORKA RS 59.35 30.133000000000003 90.0 19590101 20200624 260720 99999 SHLISSEL'BURG RS 59.933 31.0 17.0 19590101 20200624 260780 99999 LJUBAN' RS 59.35 31.233 39.0 19480101 20200624 260800 99999 KIRISHI RS 59.45 32.033 26.0 19831002 20200624 260801 99999 MOTOKHOVO RS 59.533 32.383 34.0 20091128 20091128 260810 99999 VOLHOV RS 59.933 32.317 31.0 19590101 19900930 260870 99999 BUDOGOSC RS 59.317 32.483000000000004 54.0 19550101 20021227 260920 99999 SUGOZERO RS 59.95 34.2 91.0 19590101 19940930 260940 99999 TIHVIN RS 59.65 33.55 61.0 19320101 20200624 260990 99999 EFIMOVSKAJA RS 59.5 34.7 176.0 19590101 20200624 261148 99999 MINSK 2 BO UMMS 53.882 28.031 204.2 19990114 20200624 261149 99999 MOGILEV BO 53.95 30.1 194.0 20040810 20200624 261150 99999 RISTNA EN 58.917 22.066999999999997 9.0 19550101 20200624 261160 99999 KARDLA EN EEKA 58.99100000000001 22.831 5.5 19590101 20200624 261161 99999 KURESSAARE EN 58.217 22.5 4.0 20040510 20200624 261190 99999 METSKULA EN 58.567 22.533 17.0 19590101 19630517 261200 99999 HELTERMAA EN 58.867 23.05 4.0 19590101 20041119 261210 99999 SUTLEPA EN 59.033 23.65 5.0 19550101 19570630 261220 99999 RIGULDI EN 59.133 23.533 3.0 19590101 19631018 261240 99999 LAANE-NIGULA EN 58.95 23.816999999999997 25.0 19590101 20200624 261251 99999 HAAPSALU BO 58.95 23.533 1.0 20050914 20050914 261280 99999 VIRTSU EN 58.567 23.517 3.0 19590102 20200624 261340 99999 KUUSIKU EN 58.967 24.733 52.0 19690101 20200624 261350 99999 TURI EN 58.817 25.416999999999998 65.0 19550101 20200624 261410 99999 VALKE-MAARJA EN 59.133 26.233 123.0 19621211 20200624 261440 99999 JOGEVA EN 58.75 26.416999999999998 71.0 20010919 20200624 261450 99999 TILRIKOJA EN 58.867 26.95 34.0 19550101 20200624 261570 99999 GDOV RS 58.733000000000004 27.833000000000002 40.0 19361231 20200624 261590 99999 LYADY RS 58.617 28.833000000000002 74.1 19590101 19631027 261610 99999 OS'MINO RS 59.016999999999996 29.083000000000002 54.0 19590101 20030106 261670 99999 NIKOLAEVSKOE RS 58.567 29.8 91.0 19550301 20200624 261680 99999 LUGA RS 58.733000000000004 29.883000000000003 104.0 19460106 19511114 261790 99999 NOVGOROD RS 58.516999999999996 31.25 24.0 19320101 20200624 261840 99999 MALAYA VISHERA RS 58.85 32.233000000000004 61.0 19880201 20041218 261880 99999 VEREB'YE RS 58.683 32.7 116.0 19590101 19890919 261960 99999 HVOJNAJA RS 58.9 34.533 164.0 19460105 19910423 262100 99999 19290101 19420930 262140 99999 VILSANDI EN 58.383 21.816999999999997 6.0 19590101 20200624 262150 99999 KURESSAARE-ROOMASSAARE EN 58.233000000000004 22.5 4.0 19550101 20041105 262180 99999 SORVE EN 57.917 22.05 4.0 19730101 20200624 262260 99999 KIHNU EN 58.1 23.967 4.0 19590101 20200624 262270 99999 RUHNU EN 57.783 23.25 2.0 19611110 20200624 262290 99999 AINAZI LG 57.867 24.366999999999997 5.0 19550101 20200331 262310 99999 PJARNU-SAUGA EN 58.417 24.467 8.0 19480101 20081231 262330 99999 VILJANDI EN 58.367 25.6 86.0 19590101 20200624 262380 99999 RUJIENA LG 57.9 25.383000000000003 12.0 19590101 20200331 262410 99999 19310101 19381231 262420 99999 TARTU EN EETU 58.306999999999995 26.69 66.8 19480101 20200624 262470 99999 VALGA EN 57.783 26.033 66.0 19590101 20200624 262490 99999 VORU EN 57.85 27.017 83.0 19590101 20200624 262580 99999 PSKOV RS ULOO 57.784 28.396 46.9 19530216 20200624 262640 99999 STRUGI KRASNYE RS 58.266999999999996 29.1 129.0 19590101 19940726 262680 99999 DNO RS 57.817 29.95 71.0 19361231 20200624 262750 99999 STARAYA RUSSA RS 58.016999999999996 31.316999999999997 25.0 19550101 20200624 262830 99999 OKULOVKA RS 58.367 33.317 176.0 19590101 19940618 262850 99999 KRESTCY RS 58.266999999999996 32.533 63.0 19590101 20200624 262890 99999 VALDAJ RS 57.967 33.233000000000004 219.0 19460102 20010630 262910 99999 BOROVICI RS 58.417 33.9 89.0 19590101 20200624 262980 99999 BOLOGOE RS 57.9 34.03 188.0 19590807 20200621 263100 99999 STENDE BO 57.167 22.5 70.0 19550101 19800824 263130 99999 KOLKA LG 57.75 22.6 5.0 19550101 20200624 263140 99999 VENTSPILS LG UMRW 57.4 21.533 3.0 19480101 20081231 263180 99999 STENDE LG 57.183 22.55 79.0 19590101 20200331 263240 99999 MERSRAGS LG 57.35 23.116999999999997 6.0 19590101 20200331 263260 99999 SKULTE LG 57.317 24.416999999999998 10.0 19590101 20200331 263350 99999 PRIEKULI LG 57.317 25.333000000000002 122.0 19550101 20200331 263390 99999 ZOSENI LG 57.133 25.916999999999998 180.0 19950101 20200331 263460 99999 ALUKSNE LG 57.433 27.033 193.0 19590101 20200624 263480 99999 GULBENE LG 57.133 26.717 143.0 19480101 20200331 263500 99999 PYTALOVO RS 57.1 27.983 82.0 19590101 19800527 263550 99999 OSTROV RS 57.35 28.333000000000002 55.0 19460101 19491231 263570 99999 VILAKA LG 57.183 27.666999999999998 93.0 19590101 20110312 263590 99999 PUSKINSKIE GORY RS 57.016999999999996 28.9 108.0 19590101 20200624 263780 99999 HOLM RS 57.15 31.183000000000003 71.0 19460307 20200624 263810 99999 DEMJANSK RS 57.65 32.467 62.0 19590101 20200624 263890 99999 OSTASKOV RS 57.133 33.117 218.0 19590102 20200609 263930 99999 VYSNIJ VOLOCEK RS 57.55 34.567 169.0 19320101 20200621 263980 99999 KUVSINOVO RS 57.05 34.217 244.0 19890101 19890811 264030 99999 PAVILOSTA LG 56.883 21.183000000000003 10.0 19590101 20200331 264050 99999 VENTSPILS LG 57.35 21.533 6.0 20040905 20200624 264060 99999 LIEPAJA INTL LG EVLA 56.518 21.096999999999998 4.9 19550101 20200624 264140 99999 KAZDANGA LG 56.733000000000004 21.733 95.0 19690101 20040926 264160 99999 SALDUS LG 56.683 22.5 112.0 19550101 20200624 264190 99999 AUCE LG 56.467 22.833000000000002 104.0 19690101 20080827 264220 99999 RIGA LG UMRR 56.917 23.967 26.0 19280102 20081231 264225 99999 RIGA LG EVRR 56.967 24.05 26.0 19940718 20200624 264240 99999 DOBELE LG 56.617 23.316999999999997 44.0 19960501 20200624 264250 99999 JELGAVA LG 56.65 23.733 9.0 19590101 20200331 264290 99999 BAUSKA LG 56.4 24.217 33.0 19590101 20200331 264350 99999 SKRIVERI LG 56.65 25.133000000000003 83.0 19550101 20200331 264360 99999 ZILANI LG 56.516999999999996 25.916999999999998 109.0 19590101 20200331 264410 99999 MADONA LG 56.883 26.333000000000002 251.0 19590101 19800503 264460 99999 REZEKNE LG 56.533 27.267 157.0 19550101 20200331 264470 99999 MADONA LG 56.85 26.233 133.0 19280102 20200331 264560 99999 OPOCHKA RS 56.717 28.717 99.0 19590101 20200624 264590 99999 IDRICA RS 56.317 28.9 139.0 19480101 20030523 264620 99999 SUSHCHEVO RS 57.0 29.916999999999998 108.0 19590101 19960513 264770 99999 VELIKIE LUKI RS ULOL 56.35 30.62 106.0 19320101 20200624 264780 99999 PSKOV RS 57.783 28.4 47.0 20040810 20081231 264790 99999 TOROPEC RS 56.483000000000004 31.633000000000003 187.0 19631204 20200614 264870 99999 ZAPADNAJA DVINA RS 56.266999999999996 32.083 197.0 19631102 20030615 264980 99999 RZEV RS 56.266999999999996 34.317 196.0 19320101 19990421 264990 99999 STARITSA RS 56.5 34.933 186.0 20010915 20200621 265010 99999 MAZEIKIAI LH 56.35 22.316999999999997 66.8 20140701 20200624 265020 99999 PALANGA INTL LH EYPA 55.973 21.094 10.1 19590101 20200624 265021 99999 SIAULIAI INTL LH 55.883 23.383000000000003 138.0 20040106 20200624 265030 99999 RUCAVA LG 56.15 21.166999999999998 19.0 19590101 20200331 265090 99999 KLAIPEDA LH 55.733000000000004 21.083000000000002 7.3 19290801 20200624 265100 99999 RYBACHIY RS 55.15 20.866999999999997 1.0 19330102 19420630 265110 99999 DONSKOYE RS 54.933 19.95 10.0 19401102 19431231 265120 99999 PIONERSKIJ RS 54.95 20.25 7.0 19370401 19431231 265150 99999 TELSIAI LH 55.967 22.25 152.0 19590101 20200624 265180 99999 LAUKUVA LH 55.617 22.233 166.0 19590101 20200624 265240 99999 SIAULIAI LH 55.933 23.316999999999997 107.0 19550101 20081231 265290 99999 PANEVEZYS LH EYPP 55.733000000000004 24.416999999999998 58.3 19590101 20200624 265310 99999 BIRZAI LH 56.2 24.767 51.5 19590101 20200624 265440 99999 DAUGAVPILS LG 55.867 26.616999999999997 122.0 19550101 20200624 265470 99999 DUKSTAS LH 55.516999999999996 26.3 168.0 20010705 20200624 265510 99999 DAGDA LG 56.1 27.55 181.0 19590101 20070227 265540 99999 VERHNEDVINSK BO 55.817 27.95 132.0 19590101 20200624 265650 99999 NEVEL RS 56.0 29.916999999999998 150.0 19590101 19610816 265660 99999 YEZERISHCHE BO 55.833 29.983 171.0 19730101 19820525 265680 99999 SHCHELOKI BO 55.683 29.816999999999997 213.0 19610209 19631023 265750 99999 VELKZH RS 55.617 31.2 159.1 19460103 19491231 265780 99999 VELIZH RS 55.617 31.183000000000003 166.0 19590803 20200612 265850 99999 BELYJ RS 55.85 32.95 222.0 19480101 20200531 265950 99999 SYCHEVKA RS 55.833 34.283 200.0 19590710 19961012 266000 99999 SILUTE LH 55.35 21.467 5.0 19940601 20200624 266030 99999 NIDA LH 55.3 21.0 2.6 19590101 20140908 266070 99999 SVETLOGORSK RS 54.917 20.133 37.0 19590101 19801028 266140 99999 SOVETSK RS 55.083 21.866999999999997 37.0 19330102 19810506 266150 99999 TAURAGE LH 55.25 22.283 34.5 19590101 20050912 266200 99999 DOTNUVA LH 55.4 23.883000000000003 77.1 19590101 20020131 266210 99999 RASEINIAI LH 55.4 23.15 110.5 19590101 20200624 266290 99999 KAUNAS LH 54.883 23.833000000000002 77.0 19530216 20200624 266295 99999 KAUNAS INTL LH EYKA 54.964 24.085 78.0 19980301 20200624 266330 99999 UTENA LH 55.516999999999996 25.583000000000002 105.7 19590101 20200624 266340 99999 UKMERGE LH 55.266999999999996 24.767 73.2 19590101 20200624 266360 99999 SVENCIONYS LH 55.15 26.166999999999998 222.3 20140701 20200624 266430 99999 SHARCOVSCHINA BO 55.367 27.467 131.0 19610208 20200624 266440 99999 SVENCIONYS LITHUANIA LH 55.117 26.166999999999998 19590101 19600929 266450 99999 LYNTUPY BO 55.05 26.316999999999997 212.0 19610208 20200624 266490 99999 BUDSLAV BO 54.817 27.533 177.0 19730101 20020518 266530 99999 POLOTSK BO 55.467 28.767 133.0 19610207 20200624 266570 99999 DOKSHITSY BO 54.883 27.75 193.0 19610930 20200624 266590 99999 LEPEL BO 54.883 28.7 174.0 19590101 20200624 266660 99999 VITEBSK BO UMII 55.126999999999995 30.35 207.9 19320101 20200624 266661 99999 GRODNO BO 53.6 24.533 138.0 20040713 20200624 266680 99999 SENNO BO 54.817 29.683000000000003 176.0 19600127 20200624 266730 99999 DEMIDOV RS 55.266999999999996 31.517 209.0 19881201 19910506 266810 99999 BAL'SHOYE BERESNEVO RS 55.35 32.317 244.0 19881201 19890328 266930 99999 GUTENFELD RS 54.683 20.65 3.0 19390901 19431231 266940 99999 CHKALOVSK RS 54.75 20.283 3.0 19370802 19431231 266950 99999 VJAZ'MA RS 55.167 34.4 251.0 19460101 20200618 266960 99999 PROVEREN RS 54.766999999999996 20.4 10.0 19380616 19411231 266970 99999 BALTIYSK NAVAL RS 54.617 19.883 6.0 19370202 19431231 266980 99999 NIVENSKOYE RS 54.567 20.6 7.0 19370712 19431231 266990 99999 GURYEVSK RS 54.783 20.616999999999997 6.0 19350502 19431231 267010 99999 BALTIJSK RS 54.667 19.967 2.0 19590101 20020526 267020 99999 KHRABROVO RS UMKK 54.89 20.593000000000004 13.1 19280101 20200624 267030 99999 19420101 19420718 267040 99999 MAMONOVO RS 54.467 19.95 23.0 19590101 19740818 267050 99999 BAGRATIONOVSK RS 54.4 20.633000000000003 55.0 19590102 19631231 267060 99999 ZELEZNODOROZNY RS 54.383 21.316999999999997 49.0 19590101 19710630 267110 99999 CHERNYAHOVSK RS 54.633 21.8 31.1 19590101 20180228 267130 99999 KYBARTAI LH 54.65 22.8 59.4 19330102 20200624 267140 99999 MARIJAMPOLE LH 54.533 23.35 86.0 20071026 20200624 267210 99999 MARIAMPOLE LH 54.567 23.35 75.0 20011121 20080427 267280 99999 LAZDIJAI LH 54.233000000000004 23.517 133.6 19590101 20020131 267300 99999 VILNIUS INTL LH EYVI 54.63399999999999 25.285999999999998 196.9 19340313 20200624 267320 99999 VILNIUS LH 54.633 25.283 196.0 20010705 20020920 267360 99999 OSMJANY BO 54.45 25.95 211.0 19690101 20170305 267370 99999 VARENA LH 54.25 24.55 110.7 19590101 20200624 267450 99999 VILEYKA BO 54.483000000000004 26.9 183.0 19610209 20050312 267460 99999 STARINKI BO 54.5 27.316999999999997 19620106 19620122 267480 99999 MOLODECNO BO 54.317 26.883000000000003 155.0 19600208 20170305 267490 99999 RADOSKOVICI BO 54.2 27.283 198.0 19610207 20050307 267590 99999 BORISOV BO 54.266999999999996 28.5 189.0 19590103 20200624 267630 99999 ORSHA BO 54.5 30.416999999999998 185.0 19460101 20200624 267640 99999 SLAVNOYE BO 54.3 29.433000000000003 193.0 19610220 19771012 267660 99999 BOGUS SOVIET BO 19810101 19820126 267740 99999 GORKI BO 54.3 30.933000000000003 205.0 19320101 20200624 267810 99999 SMOLENSK BO 54.75 32.067 239.0 19361231 20200622 267840 99999 POCHINOK RS 54.417 32.433 201.0 19881201 20200531 267950 99999 SPAS-DEMENSK RS 54.417 34.016999999999996 238.0 19590101 20200624 268250 99999 GRODNO BO 53.6 24.05 134.0 19340329 20081231 268320 99999 LIDA BO 53.902 25.316999999999997 157.0 19340331 20200624 268340 99999 SCUCIN BO 53.65 24.8 178.0 19730101 20021205 268360 99999 NOVOGRUDOK BO 53.6 25.85 280.0 19600108 20170305 268460 99999 STOLBTSY BO 53.62 27.08 190.0 19610209 20160614 268500 99999 MINSK 1 BO UMMM 53.864 27.54 228.0 19320101 20200624 268530 99999 BEREZINO BO 53.833 28.983 154.0 19600401 20200624 268550 99999 MARIYNA GORKA BO 53.45 28.133000000000003 177.0 19610204 20200624 268630 99999 MOGILEV BO 53.95 30.066999999999997 192.0 19550101 20081231 268640 99999 KLICHEV BO 53.5 29.333000000000002 155.0 19610203 20200624 268780 99999 SLAVGOROD BO 53.45 31.017 170.0 19610203 20200624 268820 99999 ROSLAVL' RS 53.933 32.833 224.0 19460102 20200531 268870 99999 KOSTUCKOVICHI BO 53.35 32.067 167.0 19600110 20200624 268940 99999 ZUKOVKA RS 53.533 33.75 177.0 19320102 20200624 268980 99999 BRYANSK RS UUBP 53.214 34.176 202.1 19361231 20200624 269230 99999 VOLKOVYSK BO 53.17 24.45 183.0 19600307 20160614 269290 99999 PRUZANY BO 52.6 24.467 167.0 19600101 20021011 269380 99999 IVACEVICI BO 52.72 25.35 156.0 19590101 20160614 269390 99999 BEREZOVKA BO 53.016999999999996 25.75 176.0 19340502 19381231 269410 99999 BARANOVICHI BO 53.117 26.0 193.0 19550101 20200624 269470 99999 GANEVICI BO 52.75 26.483 157.0 19600113 20020725 269500 99999 URECH'YE BO 52.95 27.883000000000003 146.0 19610623 20081127 269510 99999 SLUTSK BO 53.033 27.55 162.0 19590101 20200624 269520 99999 MLYNOK BO 53.083 28.166999999999998 155.0 19600502 19620222 269610 99999 BOBRUISK BO 53.217 29.127 156.0 19550101 20200624 269660 99999 ZHLOBIN BO 52.9 30.033 142.0 19610203 20200624 269740 99999 CECERSK BO 52.917 30.9 142.0 19600101 20040520 269760 99999 KRASNAJA GORA RS 53.016999999999996 31.6 148.0 19530217 20200624 269860 99999 POCHEP RS 52.933 33.45 157.0 19591219 19630630 269870 99999 KLINCY RS 52.766999999999996 32.283 182.0 19600121 19811205 269970 99999 TRUBCHEVSK RS 52.583 33.766999999999996 178.0 19550101 20200624 270020 99999 BOGUS SOVIET RS 19860717 19881010 270030 99999 BORISOVO-SUDSKOYE RS 59.9 36.016999999999996 177.0 19590101 20020415 270080 99999 BABAEVO RS 59.4 35.9 137.0 19361231 20200624 270200 99999 YARSHEVO RS 59.95 38.6 120.4 20120328 20180226 270210 99999 KIRILLOV RS 59.85 35.383 19590101 19601229 270260 99999 KOROBOVO RS 59.6 39.167 133.0 19590101 20180227 270370 99999 VOLOGDA RS ULWW 59.233000000000004 39.867 131.0 19320101 20200624 270440 99999 CUCKOVO RS 59.583 41.25 197.0 19590101 19751223 270510 99999 TOTMA RS ULWT 59.967 42.766999999999996 134.0 19361231 20200624 270660 99999 NIKOL'SK RS 59.533 45.467 143.0 19480101 20200624 270710 99999 LUBOZINO RS 59.817 45.533 19590101 19750917 270830 99999 OPARINO RS 59.85 48.283 180.0 19480101 20200624 270950 99999 LETKA RS 59.6 49.433 168.0 19610801 20030401 270970 99999 MURASI RS 59.383 48.983000000000004 213.0 19730101 20050801 271060 99999 USTYUZHNA RS 58.85 36.433 125.0 19590101 20200624 271080 99999 OHONY RS 58.567 35.633 145.0 19590101 20200624 271130 99999 CHEREPOVEC RS ULWC 59.266999999999996 38.016999999999996 114.0 19550301 20200624 271430 99999 SOLIGALIC RS 59.083 42.283 142.0 19590101 19840514 271640 99999 KOLOGRIV RS 58.817 44.317 151.2 19590103 20200531 271740 99999 PISCUG RS 58.883 45.717 150.0 19730106 19750723 271760 99999 VOHMA RS 58.933 46.766999999999996 159.2 20120229 20200605 271850 99999 DAROVSKOJ RS 58.783 47.983000000000004 146.0 19600116 20041206 271960 99999 KIROV RS 58.65 49.617 147.0 19320101 20021211 271990 99999 KIROV RS 58.567 49.567 158.0 19940802 20200624 272080 99999 MAKSATIKHA RS 57.8 35.883 142.0 19881201 20200621 272120 99999 KES'MA RS 58.4 37.067 183.0 19881201 19891216 272150 99999 KRASNYY KHOLM RS 58.033 37.1 166.6 19881201 20200620 272170 99999 BEZECK RS 57.8 36.7 147.0 19590101 20010306 272230 99999 POSHEHON'E RS 58.483000000000004 39.133 117.8 20120229 20200622 272250 99999 RYBINSK RS 58.1 38.683 105.0 19360101 20200623 272255 99999 TUNOSHNA RS UUDL 57.56100000000001 40.157 87.5 20120504 20200624 272420 99999 BUJ RS 58.483000000000004 41.533 103.0 19460102 20200531 272520 99999 NIKOLO-POLOMA RS 58.35 43.383 150.0 19590101 20200611 272590 99999 MAKARYEV RS 57.883 43.8 119.0 19590102 19631222 272710 99999 SAR'JA RS 58.367 45.533 125.0 19361231 20200605 272770 99999 VETLUGA RS 57.85 45.766999999999996 136.0 19590101 20200624 272810 99999 SABALINO RS 58.3 47.117 166.0 19590101 20030302 272830 99999 KOTEL'NIC RS 58.3 48.35 127.0 19840511 20200624 272960 99999 KUMENY RS 58.1 49.917 177.1 19590814 20200624 273050 99999 RAMESHKL RS 57.35 36.05 155.0 19881201 19890617 273160 99999 KASIN RS 57.35 37.583 138.0 19590101 20200610 273210 99999 UGLIC RS 57.5 38.3 122.0 19320101 20200612 273290 99999 ROSTOV RS 57.2 39.417 101.0 19460401 20200621 273310 99999 JAROSLAVL' RS 57.633 39.75 129.0 19690101 19800119 273330 99999 KOSTROMA RS 57.733000000000004 40.783 126.0 19590101 20200620 273460 99999 KINESHMA RS 57.417 42.183 128.0 19840511 19840513 273470 99999 IVANOVO RS UUBI 56.95 40.967 126.0 19361231 20200523 273490 99999 LUKH RS 57.016999999999996 42.266999999999996 150.0 19590101 19840514 273550 99999 JUR'EVEC RS 57.333 43.117 132.0 19550301 20200527 273690 99999 KRASNYE BAKI RS 57.133 45.167 110.0 19570701 20200624 273700 99999 ARYA RS 57.5 45.967 130.0 20010808 20010808 273730 99999 SAKUN'JA RS 57.667 46.633 175.0 19550301 20200624 273910 99999 SOVETSK RS 57.583 48.967 19590101 19631226 273930 99999 NOLINSK RS 57.55 49.95 136.0 19550701 20200624 274010 99999 MEDNOYE RS 56.933 35.483000000000004 140.0 19590927 20030723 274020 99999 TVER' RS UUEM 56.883 35.867 137.0 19460101 20200617 274120 99999 SAVELOVO RS 56.867 37.383 124.0 19640401 20030810 274170 99999 KLIN RS 56.35 36.75 167.0 19840511 20200610 274190 99999 DMITROV RS 56.333 37.516999999999996 158.0 19590809 19630505 274280 99999 ALEKSANDROV RS 56.4 38.75 185.0 19590101 19781020 274530 99999 GORODEC RS 56.683 43.433 103.0 19840511 20200624 274550 99999 PUREKH RS 56.65 43.05 115.8 19590101 19631231 274590 99999 STRIGINO RS UWGG 56.23 43.784 78.0 19940802 20200624 274620 99999 SEMENOV RS 56.733000000000004 44.516999999999996 118.0 19590101 19631229 274630 99999 19730104 19750809 274790 99999 KOZ'MODEM'JANSK RS 56.333 46.583 107.0 19550301 20200624 274800 99999 SANCURSK RS 56.983000000000004 47.317 103.0 19590101 19960317 274850 99999 JOSHKAR-OLA RS 56.633 47.766999999999996 106.0 19590101 20200624 274910 99999 NOVYJ TOR'JAL RS 57.0 48.733000000000004 143.0 19730104 20200624 274930 99999 19730106 19751205 274980 99999 MORKI RS 56.467 49.0 130.0 19590101 19840519 275020 99999 VOLOKOLAMSK RS 56.016999999999996 35.933 198.0 19590101 19800604 275070 99999 GAGARIN RS 55.516999999999996 35.033 194.0 19590101 20200623 275090 99999 MOZAJSK RS 55.516999999999996 36.0 185.0 19460307 20031027 275110 99999 NOVO-JERUSALIM RS 55.9 36.817 162.0 19590102 20200623 275155 99999 SHEREMETYEVO RS UUEE 55.973 37.415 189.6 19730101 20200624 275185 99999 VNUKOVO RS UUWW 55.592 37.260999999999996 208.8 19730101 20200624 275195 99999 RYZAN/DYAGILEVO RS 55.65 39.567 131.0 19770803 19830706 275230 99999 PAVLOVSKIJ POSAD RS 55.766999999999996 38.683 135.0 19590101 20200621 275243 99999 MOSCOW/MONINO RS 55.833 38.167 -999.0 19830206 19831102 275280 99999 KUROVSKOYE SOUTH RS 55.533 38.95 133.0 19600128 19620222 275320 99999 VLADIMIR RS 56.117 40.35 172.0 19460307 20200617 275390 99999 GUS'-HRUSTAL'NYJ RS 55.6 40.65 136.0 19590101 20200615 275490 99999 MUROM RS 55.6 42.033 119.0 20011119 20030228 275530 99999 GOR'KIJ RS 56.217 43.817 82.0 19320101 19951120 275550 99999 PAVLOVO RS 55.967 43.083 100.0 19590101 20020605 275630 99999 LYSKOVO RS 56.05 45.067 93.0 19840506 19840514 275740 99999 KURMYS RS 55.833 46.067 82.0 19590101 19631005 275770 99999 SERGAC RS 55.533 45.5 125.0 19640303 20200624 275810 99999 CEBOKSARY RS 56.083 47.333 163.0 19590101 19780801 275870 99999 KANAS RS 55.516999999999996 47.467 183.0 19590101 19840514 275930 99999 ARSK RS 56.083 49.867 157.0 19620112 20200614 275950 99999 KAZAN RS UWKD 55.606 49.278999999999996 126.2 19320101 20200624 276040 99999 IZNOSKI RS 54.983000000000004 35.317 213.0 19881201 19891030 276060 99999 MALOJAROSLAVEC RS 55.016999999999996 36.483000000000004 197.0 19600116 20200624 276070 99999 BEGISHEVO RS UWKE 55.565 52.093 196.0 20040810 20200624 276110 99999 NARO-FOMINSK RS 55.383 36.7 193.0 19590101 20200622 276120 99999 MOSKVA VDNH (DOLGOPRUDNYJ) RS 55.833 37.617 200.0 19320101 20200622 276180 99999 SERPUHOV RS 54.933 37.467 166.0 19590101 20030626 276230 99999 YEGORYEVSK RS 55.383 39.033 143.0 19630601 19630630 276250 99999 KOLOMNA RS 55.133 38.733000000000004 114.0 19590101 20040813 276270 99999 KASIRA RS 54.833 38.15 221.0 19590823 20200619 276430 99999 VYKSA RS 55.333 42.117 114.0 19590101 20200624 276480 99999 ELAT'MA RS 54.95 41.766999999999996 136.0 19320101 20200620 276530 99999 ARZAMAS RS 55.367 43.783 127.0 19590101 20200624 276650 99999 LUKOJANOV RS 55.033 44.5 219.0 19460309 20200624 276750 99999 PORETSKOE RS 55.183 46.333 136.0 20090128 20200624 276790 99999 ALATYR' RS 54.817 46.583 180.0 19361231 20200624 276830 99999 BOLSHIYE KAYBITSY RS 55.417 48.25 127.0 19740820 19870705 276930 99999 LAISEVO RS 55.433 49.533 61.0 19621011 19870517 276970 99999 TETYUSHI RS 54.933 48.783 156.0 19620414 20200612 277030 99999 KALUGA RS 54.55 36.367 198.8 19320101 20200624 277070 99999 SUHINICHI RS 54.1 35.35 238.0 19590101 20200624 277190 99999 TULA RS 54.233000000000004 37.617 203.0 19590101 20200624 277290 99999 MIHAJLOV RS 54.233000000000004 39.033 166.0 19590101 20050913 277300 99999 RYAZAN' RS 54.633 39.7 158.0 19940802 20200624 277310 99999 RJAZAN' RS 54.617 39.717 170.0 19460308 20041113 277360 99999 SILOVO RS 54.3 40.883 99.0 19590101 19840604 277450 99999 SASOVO RS 54.35 41.967 115.0 20120125 20200624 277520 99999 TEMNIKOV RS 54.633 43.233000000000004 139.0 19590101 20200624 277560 99999 KRASNOSLOBODSK RS 54.433 43.766999999999996 188.0 20120328 20200624 277580 99999 TORBEEVO RS 54.083 43.25 198.0 19590101 19780801 277600 99999 SARANSK RS 54.133 45.233000000000004 201.0 19590101 20200624 277620 99999 POCHINKI RS 54.7 44.867 137.0 19590101 19630927 277760 99999 SURSKOE RS 54.483000000000004 46.7 100.0 19590101 20200611 277820 99999 STARYYE ALGASHI RS 54.7 47.533 188.0 19740821 19800115 277850 99999 ULYANOVSK RS UWLL 54.276 48.243 141.0 20050101 20200611 277860 99999 ULYANOVSK RS 54.317 48.333 129.0 19480102 20130430 277870 99999 ANNENKOVO RS 54.1 47.333 192.0 19620619 20030817 277990 99999 DIMITROVGRAD RS 54.233000000000004 49.6 73.0 19611208 20200623 278150 99999 CERN' RS 53.45 36.883 229.0 19320101 19780615 278170 99999 MCENSK RS 53.383 36.533 201.0 19910911 20200624 278210 99999 UZLOVAJA RS 54.0 38.133 231.0 20031011 20200624 278230 99999 PAVELETS RS 53.783 39.25 209.0 19460306 20200623 278240 99999 MALEVKA RS 53.6 38.25 219.0 19590103 19621225 278350 99999 RJAZSK RS 53.717 40.117 127.0 19881108 20200622 278480 99999 MORSANSK RS 53.45 41.8 142.0 19590101 20200624 278530 99999 NAROVCAT RS 53.867 43.683 148.0 19590101 20030719 278570 99999 ZAMETCHINO RS 53.483000000000004 42.633 131.0 19320101 20200624 278580 99999 PACELMA RS 53.333 43.317 261.0 19590101 20200603 278610 99999 INSAR RS 53.867 44.367 165.0 19590101 19630829 278720 99999 INZA RS 53.85 46.417 175.4 19570701 20200608 278880 99999 BEZVODOVKA RS 53.5 47.95 263.0 19590101 20010919 278900 99999 SENGILEJ RS 53.967 48.766999999999996 61.0 19620902 19880825 278940 99999 NOVODEVIC'E RS 53.6 48.833 143.0 19620621 20200618 279060 99999 OREL RS 52.933 36.0 196.0 19460102 20200624 279210 99999 EFREMOV RS 53.15 38.117 215.0 19590101 20200623 279280 99999 ELEC RS 52.633 38.516999999999996 168.0 19480101 20200624 279300 99999 LIPETSK ARPT RS UUOL 52.703 39.538000000000004 178.9 19590101 20200624 279350 99999 MICURINSK RS 52.883 40.483000000000004 158.0 19361231 20200624 279470 99999 TAMBOV RS 52.8 41.333 128.0 19570701 20200624 279550 99999 BELINSKIY RS 52.967 43.4 205.7 19740820 20200523 279570 99999 KIRSANOV RS 52.667 42.717 169.0 19460306 20200624 279620 99999 PENZA RS UWPP 53.133 45.016999999999996 174.0 19320101 20200624 279621 99999 VOSTOCHNY RS UWLW 54.401 48.803000000000004 76.8 20040713 20200624 279622 99999 CHEBOKSARY RS UWKS 56.09 47.347 170.1 20080825 20200624 279720 99999 RADISHCHEVO RS 53.05 46.433 252.6 20120229 20200624 279730 99999 KUZNECK RS 53.1 46.6 270.0 19590101 20030302 279810 99999 KANADEY RS 53.15 47.516999999999996 98.9 20120229 20200527 279830 99999 SYZRAN' RS 53.183 48.4 103.0 19590101 20200623 279870 99999 KADYSHEVKA RS 52.683 47.167 167.0 19620601 19630326 279950 99999 SAMARA (BEZENCHUK) RS 52.983000000000004 49.433 46.0 19320102 20200612 279980 99999 APPROXIMATE LOCALE RS 52.633 49.217 46.0 19740822 19800115 280070 99999 NAGORSKOYE RS 59.317 50.817 19590101 19751023 280090 99999 KIRS RS 59.35 52.25 168.0 19550101 20200624 280130 99999 KOSA RS 59.95 55.016999999999996 183.0 19740820 19950524 280160 99999 KOCEVO RS 59.633 54.3 174.0 19590101 20030625 280260 99999 SOLIKAMSK RS 59.65 56.8 180.0 19530216 20020625 280280 99999 BEREZNIKI RS 59.55 56.833 223.0 19740820 20040829 280330 99999 KARPINSK RS 59.75 60.016999999999996 228.0 19740820 19890823 280350 99999 SOSNOVKA RS 59.55 58.917 421.0 19590103 19631223 280360 99999 KYTLYM RS 59.5 59.2 411.0 19860601 20020505 280380 99999 RASTES-IN-SVERDLOV RS 59.433 58.75 457.0 19740821 20060102 280440 99999 SEROV RS 59.6 60.533 130.0 19320101 20200624 280490 99999 GARI RS 59.433 62.333 131.0 19530216 20200624 280640 99999 LEUSI RS 59.617 65.717 72.0 19530216 20200624 280660 99999 KONDINSKOJE RS 59.667 67.417 41.0 19530216 20011121 280740 99999 19870511 19870511 280760 99999 DEM'JANSKOE RS 59.6 69.283 57.0 19530216 20200624 280870 99999 LIMKOYEVSKIYE RS 59.533 70.417 50.0 19570701 20051016 280970 99999 TAUROVO RS 59.583 73.283 60.3 19730809 20200624 280980 99999 TAYLAKOVY RS 59.25 73.967 80.0 19690101 19740720 281140 99999 AFANASYEVO RS 58.85 53.25 19590101 19631220 281160 99999 KUDYMKAR RS 58.983000000000004 54.65 186.0 19460309 20200531 281280 99999 CERMOZ RS 58.766999999999996 56.2 123.0 19610806 20090414 281310 99999 KIZEL RS 59.033 57.567 316.0 19460309 19970713 281340 99999 GUBAKHA RS 58.867 57.783 304.0 19920301 20040915 281350 99999 SREDNJAJA US'VA RS 58.983000000000004 58.917 457.0 19740820 19950821 281380 99999 BISER RS 58.516999999999996 58.85 463.0 19590101 20200624 281430 99999 SOSVA RS 59.167 61.833 80.0 19590101 19890605 281440 99999 VERHOTUR'E RS 58.867 60.783 125.0 19590101 20200624 281550 99999 NOSOVA-IN-SVERDLOV RS 58.967 63.766999999999996 61.0 19591201 19800212 281580 99999 TABORY RS 58.516999999999996 64.55 73.0 19850701 20010128 281650 99999 KUMINSKAYA RS 58.717 66.083 81.2 19730101 20200624 281720 99999 UVAT RS 59.15 68.917 41.0 19530216 19950923 282120 99999 SEVERNY KOMMUNAR RS 58.383 54.033 152.0 19850615 19890827 282130 99999 SIVA-IN-PERM RS 58.4 54.383 172.0 19740820 19790207 282140 99999 GLAZOV RS 58.133 52.583 169.0 19470506 20200624 282160 99999 VERESCAGINO RS 58.083 54.683 226.0 19590101 20180717 282240 99999 PERM' RS 58.0 56.333 170.9 20040713 20200624 282250 99999 BOLSHOYE SAVINO RS USPP 57.915 56.021 123.1 19320101 20200624 282330 99999 KUSVA RS 58.3 59.75 268.0 19740820 19930222 282340 99999 LYS'VA RS 58.117 57.783 226.0 19610813 20080116 282380 99999 KYN RS 57.833 58.65 245.0 19930202 20110910 282400 99999 NIZHNYJ TAGIL RS 57.883 60.067 260.0 19460309 20200624 282440 99999 VERHNJAJA SALDA RS 58.05 60.567 200.0 19610803 20020623 282480 99999 ALAPAEVSK RS 57.867 61.7 130.0 19530216 19970428 282550 99999 TURINSK RS 58.05 63.683 103.0 19460314 20170726 282570 99999 IRBIT RS 57.817 63.05 79.9 19600301 19631206 282640 99999 TAVDA BELYJAR RS 58.05 65.35 59.0 19600212 20030222 282750 99999 TOBOL'SK RS 58.15 68.25 50.0 19320101 20200624 282780 99999 VAGAY RIVER RS 57.917 69.033 100.0 19690101 19971223 283020 99999 UNI RS 57.75 51.5 183.0 19590101 20020809 283070 99999 URZUM RS 57.117 50.0 165.0 19590101 19631230 283090 99999 BOLSHOY KIYAIK RS 57.05 52.65 185.0 19590101 19631212 283120 99999 DEBESSI-IN-UDMURT RS 57.65 53.817 192.0 19590103 20010724 283190 99999 NOZOVKA RS 57.083 54.75 131.0 19460309 20200624 283210 99999 OHANSK RS 57.717 55.383 163.0 19470219 20200624 283240 99999 OSA RS 57.283 55.433 98.0 19610806 20071027 283260 99999 KUNGUR RS 57.417 56.933 150.0 19600301 20071218 283330 99999 VISIM RS 57.65 59.5 314.0 19600630 19940703 283340 99999 SAMARY RS 57.35 58.217 244.0 19530216 20200624 283390 99999 KUZINO-IN-SVERDLOV RS 57.016999999999996 59.433 333.0 19600625 20021205 283440 99999 NEVJANSK RS 57.533 60.217 277.0 19590103 19940817 283450 99999 LIPOVSKOYE RS 57.45 61.15 207.0 20010922 20010922 283460 99999 ARTEMOVSIJ RS 57.367 61.917 154.0 19590102 19940712 283510 99999 IRBIT RS 57.683 63.05 76.0 19740820 19950208 283520 99999 KRASNO-POLYANSKOYE RS 57.533 63.65 85.0 19740821 19890721 283590 99999 TUGULYM RS 57.067 64.667 90.0 19610801 20021204 283620 99999 NIZHNAYA TRADVA RS 57.667 66.167 19610105 19631005 283660 99999 JARKOVO RS 57.417 67.083 52.1 19530216 20200624 283670 99999 TYUMEN' RS 57.117 65.433 102.0 19320101 20200618 283820 99999 UST'-ISIM RS 57.683 71.183 62.0 19480101 20200612 283830 99999 TEVRIZ RS 57.516999999999996 72.4 67.0 19480101 20180715 283960 99999 VASISS-IN-OM RS 57.367 74.75 101.0 19530216 20040328 284020 99999 KILMEZ-IN-KIROV RS 56.95 51.067 100.0 19730106 20031009 284040 99999 SAVALS RS 56.533 50.633 107.9 19550101 19551231 284090 99999 MOZGA RS 56.433 52.2 169.0 19590101 19840627 284110 99999 IZHEVSK RS 56.833 53.45 159.0 19570701 20200624 284130 99999 DUBROVA RS 57.0 54.55 76.0 19740820 20080116 284180 99999 SARAPUL RS 56.467 53.733000000000004 133.0 19611223 20200624 284190 99999 JANAUL RS 56.283 54.967 99.4 19460309 20050629 284210 99999 BARDA RS 56.917 55.6 133.0 19601005 20010621 284230 99999 NIZHNYAYA IRGA RS 56.867 57.433 229.0 19630610 19881117 284260 99999 CHAD-IN-PERM RS 56.516999999999996 57.266999999999996 319.0 19590101 19780924 284280 99999 CERNUSKA RS 56.5 56.133 148.0 19590101 20180717 284290 99999 OKTJABRSKI RS 56.516999999999996 57.2 229.0 19740910 20090128 284300 99999 REVDA RS 56.817 59.95 325.0 19590101 20011225 284320 99999 BISERT RS 56.867 59.067 303.0 19610902 20020629 284330 99999 DRUZININO RS 56.8 59.533 345.0 19590102 20011029 284340 99999 KRASNOUFIMSK RS 56.65 57.783 206.0 19460401 20200624 284370 99999 SYZGI RS 56.5 57.833 229.0 19740821 20020429 284380 99999 ARTI RS 56.433 58.55 305.0 19740820 20050904 284400 99999 KOLTSOVO RS USSS 56.743 60.803000000000004 232.9 19320101 20200624 284430 99999 BOGDANOVICH RS 56.783 62.067 159.0 19740820 19990925 284440 99999 SVERDLOVSKY/KOLTSOV RS 56.733000000000004 60.817 236.0 19600217 19881009 284450 99999 EKATERINBURG (VERHNEE DUBROVO) RS 56.733000000000004 61.067 290.0 19891004 19980306 284480 99999 SYSERT RS 56.516999999999996 60.833 266.0 19600229 20020523 284490 99999 KAMENSK-URALSKIJ RS 56.433 61.867 171.0 19530216 19930714 284510 99999 KAMYSLOV RS 56.85 62.717 127.0 19480101 20180725 284550 99999 BUTKA RS 56.717 63.766999999999996 106.0 19920204 19980720 284560 99999 SATROVO RS 56.516999999999996 64.65 114.0 19590101 19940909 284570 99999 KATAJSK RS 56.3 62.6 152.0 19590101 19961106 284650 99999 JALTUROVOSK RS 56.683 66.35 61.0 19530216 20200615 284690 99999 VAGAJ RS 56.483000000000004 67.3 131.0 19480101 19891030 284780 99999 GOLYSMANOVO RS 56.383 68.383 122.0 19890101 19960313 284810 99999 VIKULOVO RS 56.817 70.617 78.0 19480101 20200624 284910 99999 BOL'SIE UKI RS 56.933 72.667 87.0 19550101 20200624 284930 99999 TARA RS 56.9 74.383 73.0 19320101 20200624 284935 99999 YEMELYANOVO RS UNKL 56.173 92.493 287.1 19990114 20200624 284980 99999 KOLOSOVKA RS 56.45 73.65 98.0 19600104 20030215 285020 99999 VJATSKIE POLJANY RS 56.233000000000004 51.033 83.0 19590101 20200624 285060 99999 ELABUGA RS 55.766999999999996 52.067 91.0 19460101 20200614 285090 99999 19730701 19760112 285170 99999 MENZELINSK RS 55.717 53.067 112.0 20050828 20200607 285220 99999 ASKINO RS 56.11 56.574 206.5 20050629 20200624 285260 99999 KARAIDELSKI RS 55.817 57.083 200.0 19590101 20050514 285330 99999 NTAZEPETROVSK RS 56.05 59.583 320.0 19460309 20050412 285350 99999 KARLJHANOVO RS 55.95 58.667 231.0 19590101 20030702 285370 99999 DUVAN RS 55.7 57.9 338.0 19530216 20160718 285410 99999 VERHNIJ UFALEJ RS 56.083 60.3 399.0 19590101 20200624 285450 99999 BOLSHAY KUYASH RS 55.833 61.1 229.0 19850701 20020814 285460 99999 TAKHTALYM RS 55.933 61.766999999999996 117.0 19740820 20010815 285480 99999 ARGAJAS RS 55.516999999999996 60.917 254.0 19590101 20030922 285490 99999 BRODOKALMAK RS 55.583 62.067 158.0 19590101 19950330 285520 99999 SADRINSK RS 56.067 63.65 89.0 19460311 20200624 285610 99999 TEBENJAKSKOE RS 56.167 65.45 61.0 19620618 19990727 285660 99999 MOKROUSOVO RS 55.817 66.783 115.0 19530216 20030207 285730 99999 ISHIM RS 56.1 69.433 82.0 19480101 20200624 285740 99999 BERDYUZHYE RS 55.8 68.317 129.0 19730101 20031226 285810 99999 KAMJSENKA RS 56.15 70.65 122.0 19890101 19970225 285860 99999 TJUKALINSK RS 55.867 72.2 118.0 19480101 20180725 285870 99999 SLADKOV RS 55.533 70.317 134.0 19890101 19950922 285880 99999 NAZYVOEVSK RS 55.567 71.367 126.0 19530216 20180723 285930 99999 BOL'SHERECH'E RS 56.1 74.633 77.0 19480101 20200621 285980 99999 SARGATSKOE RS 55.6 73.483 81.0 19530216 20160330 286010 99999 CISTOPOL' RS 55.317 50.617 179.0 19590102 19991124 286110 99999 MUSLJUMOVO RS 55.317 53.2 80.0 19620501 20020724 286120 99999 MUSLJUMOVO RS 55.317 53.183 79.0 20120125 20200624 286130 99999 DYURTYULI RS 55.483000000000004 54.867 155.0 19850701 20040919 286150 99999 BAKALY RS 55.183 53.8 125.0 19590101 20160718 286210 99999 BIRSK RS 55.417 55.533 186.0 19590101 20200624 286220 99999 STARONADEZDINO RS 55.317 56.417 129.0 19740820 19950311 286240 99999 KUSHNARENKOVO RS 55.1 55.35 162.0 19900201 19931220 286250 99999 BLAGOVESHCHENSK RS 55.016999999999996 55.983000000000004 19631014 19631022 286290 99999 ULU-TELJAK RS 54.9 56.95 119.0 19740820 19940207 286300 99999 ZLATOUST RS 55.2 59.667 538.0 19590101 20060828 286330 99999 TAGANAJ GORA (MTN) RS 55.367 59.917 1102.0 19590101 20021009 286360 99999 BERDYAUSH RS 55.15 59.117 378.0 19600322 19890727 286370 99999 KROPACEVO RS 55.0 57.983000000000004 415.0 19460309 20010508 286390 99999 BOGUS SOVIET RS 19850801 20021128 286420 99999 BALANDINO RS USCC 55.306000000000004 61.503 234.4 19320101 20200624 286450 99999 CHELYABINSK-GOROD RS 55.15 61.3 237.0 19460311 20200624 286470 99999 MEDVEDEVSKAJA RS 54.967 60.766999999999996 305.0 19600301 19940521 286550 99999 SUMIHA RS 55.233000000000004 63.317 178.0 19600106 20180718 286590 99999 KURTAMYS RS 54.917 64.433 158.0 19590101 20020530 286610 99999 KURGAN RS 55.467 65.4 74.0 19320101 20200624 286620 99999 LEBJAZJE RS 55.266999999999996 66.5 135.0 19590101 20020208 286630 99999 MORSHIKHA RS 55.367 67.083 132.0 19610801 19620721 286660 99999 MAKUSINO RS 55.25 67.3 140.0 19530216 20200624 286680 99999 POLOVINNOE RS 54.766999999999996 66.0 152.0 19600101 20010930 286730 99999 ILINSKOYE-IN-TYUMEN RS 55.45 69.317 92.0 19690101 20040820 286740 99999 PETUHOVO RS 55.1 67.967 136.0 19590101 20050616 286750 99999 BOGUS SOVIET RS 19890403 20021121 286760 99999 PETROPAVLOVSK KZ UACP 54.83 69.15 142.0 20050101 20200624 286790 99999 PETROPAVLOVSK KZ 54.833 69.15 136.0 19320101 20081231 286870 99999 BULAJEVO KZ 54.9 70.45 134.0 19590101 20200624 286880 99999 ISIL'KUL' KZ 54.9 71.25 125.0 19480101 20180722 286960 99999 KALACINSK RS 55.033 74.583 110.0 19530216 20180725 286980 99999 OMSK RS UNOO 54.967 73.311 94.8 19320101 20200624 287040 99999 CULPANOVO RS 54.5 50.417 78.0 19590101 20200622 287050 99999 CELNO-VERSINY RS 54.417 51.1 158.0 19611205 20200610 287100 99999 RAEVSKY RS 54.083 54.917 120.0 19590101 20030223 287110 99999 BUGUL'MA RS 54.617 52.8 303.0 19460309 20200601 287120 99999 TUIMAZY RS 54.583 53.733000000000004 135.0 19590101 20020712 287130 99999 BUZDYAK RS 54.567 54.516999999999996 171.0 19740820 20000219 287190 99999 AKSAKOVO RS 54.016999999999996 54.15 355.9 19590101 20200624 287220 99999 UFA RS UWUU 54.558 55.873999999999995 136.9 19320101 20200624 287260 99999 ARHANGELSKOJE RS 54.4 56.8 168.0 19590101 20010711 287300 99999 TIRJANSKI RS 54.2 58.567 533.0 19590901 20040717 287360 99999 UCALY RS 54.333 59.516999999999996 525.0 19740821 20030214 287410 99999 MIRNII RS 54.55 60.3 319.0 19930201 20011231 287450 99999 JUZNO-URALSK RS 54.45 61.25 217.0 19740820 19940422 287470 99999 PETROPAVLOVSKIJ ZER RS 54.016999999999996 60.117 314.0 20011119 20020503 287480 99999 TROIZK RS 54.083 61.617 192.0 19460312 20200624 287520 99999 POLOVINNOJE RS 54.7 63.833 217.0 19740820 20041202 287540 99999 OKTJABRSKI RS 54.4 62.733000000000004 168.0 19590101 20010519 287550 99999 UST-UJSKOJE RS 54.266999999999996 63.95 104.0 19530216 20010831 287560 99999 ZVERINOGOLOVSKOE RS 54.467 64.867 117.0 19590803 20180718 287640 99999 PRESNOGORKOVKA KZ 54.483000000000004 65.767 158.0 19590101 20200624 287660 99999 BLAGOVESHCHENKA KZ 54.367 66.967 151.0 19480101 20200624 287670 99999 FEDOROVKA KZ 54.217 65.5 166.0 19630304 19631231 287750 99999 YAVLENKA KZ 54.333 68.467 19590101 19760107 287751 99999 JAVLENKA KZ 54.4 68.4 115.0 20180619 20200624 287850 99999 VOZVISHEN SOVKHOZ KZ 54.433 70.917 127.0 19590102 20080905 287854 99999 ABAKAN RS UNAA 53.74 91.385 253.3 19990114 20200624 287860 99999 POLTAVKA KZ 54.367 71.75 125.0 19530216 20200624 287910 99999 SERBAKUL' RS 54.633 72.433 115.0 19610215 20180725 287970 99999 ODESSKOE RS 54.2 72.967 125.0 19480101 20200621 287980 99999 PAVLOGRADKA RS 54.2 73.55 125.0 19860101 20030227 287990 99999 CERLAK RS 54.167 74.8 115.0 19480101 20200624 288010 99999 KRASNOE POSELENIE RS 53.967 50.367 65.0 19590101 20020519 288020 99999 SERGIYEVSK RS 53.933 51.167 19600424 19630322 288060 99999 BUGURUSLAN RS 53.617 52.45 92.0 19361231 20200624 288070 99999 SAMARA (SNYSLJAEVKA) RS 53.25 50.45 40.0 19961001 20131223 288080 99999 KROTOVKA RS 53.283 51.167 45.0 19590926 20021101 288150 99999 ABDULINO RS 53.7 53.65 164.0 19620401 20020822 288230 99999 TUKAN RS 53.833 57.516999999999996 548.0 19610901 20031105 288250 99999 STERLITAMAK RS 53.583 55.934 137.0 19460309 20200624 288270 99999 STERLIBASEVO RS 53.467 55.266999999999996 279.0 19740820 20020120 288290 99999 VERKHNIY AVZYAN RS 53.516999999999996 54.067 457.0 19850701 20020809 288310 99999 BELORECK RS 53.967 58.35 568.1 19530216 20010903 288330 99999 VERHNEURAL'SK RS 53.883 59.2 403.0 19320101 19950626 288360 99999 FERSHAMPENUAZ RS 53.516999999999996 59.8 350.0 19610804 20020504 288380 99999 MAGNITOGORSK RS 53.35 59.083 384.0 19351231 20200624 288430 99999 KOMSOMOLEC KZ 53.75 62.033 187.0 19590102 20200624 288440 99999 BORODINOVSKIY RS 53.533 60.766999999999996 280.0 19740820 20040918 288540 99999 FYODOROV SOVKHOZ KZ 53.75 63.167 184.0 19590101 19631218 288630 99999 MARYEVKA KZ 53.766999999999996 67.383 137.0 19600101 20200624 288670 99999 SARYKOL KZ 53.317 65.55 216.0 19530216 20200624 288730 99999 KRASNOARMEJSK KZ 53.833 69.783 153.0 19530216 20200624 288770 99999 VOLODARSKOE KZ 53.317 68.1 319.0 19590101 20020319 288790 99999 KOKSHETAY KZ 53.283 69.383 229.0 19320101 20200624 288840 99999 CHKALOVO KZ 53.617 70.417 19610301 19631224 288841 99999 CHKALOVO KZ 53.6 70.5 164.9 20180717 20200624 288860 99999 KZIL-TUS SOVKHOZ KZ 53.633 72.367 138.0 19630602 20030223 288950 99999 RUSSKAJA POLIANA RS 53.783 73.883 125.0 19570701 20050630 289000 99999 KURUMOCH RS UWWW 53.505 50.163999999999994 145.4 19460101 20200624 289010 99999 BEZYMYANKA RS 53.233000000000004 50.167 136.0 19361231 19371231 289060 99999 BUZULUK RS 52.783 52.283 75.0 19800715 20050728 289080 99999 AVANGARD ZERNOSOVHOZ RS 52.617 51.283 88.0 19611205 20200624 289090 99999 BUZULUK RS 52.817 52.217 80.0 19530216 20180725 289120 99999 ROMANOVKA RS 53.033 54.067 149.0 19611205 20020731 289160 99999 SARLYK RS 52.933 54.75 190.0 19591201 20200624 289250 99999 MELEUZ RS 52.917 55.917 180.0 19530216 20050629 289270 99999 JERMOLAJEVO RS 52.717 55.8 247.0 19630603 20010726 289380 99999 KIZILSKOJE RS 52.733000000000004 58.9 316.0 19590101 20010608 289390 99999 KALININSK RS 52.5 59.7 381.0 19590101 19970218 289410 99999 KARTALY RS 53.05 60.667 301.0 19590101 20030306 289480 99999 GEORGIYEVKA KZ 52.717 61.167 260.0 19630614 20200624 289520 99999 KOSTANAY KZ UAUU 53.217 63.617 170.0 19351231 20200624 289570 99999 TOBOL KZ 52.683 62.6 208.0 19530216 20020319 289660 99999 RUZAEVKA KZ 52.817 66.967 227.0 19531101 20200624 289670 99999 KARASUL KZ 52.667 65.5 209.0 19590101 19741025 289760 99999 DOROGOVKA KZ 52.85 69.417 19630601 19631124 289780 99999 BALKASINO KZ 52.533 68.75 398.0 19590101 20200624 289840 99999 SUCINSK KZ 52.95 70.217 395.0 19530216 20200624 289860 99999 ZOLOTAJA NIVA KZ 52.967 71.933 196.0 19630302 20010815 289930 99999 GOLUBOVKA KZ 53.15 74.2 126.0 19610915 20200624 290160 99999 MURASOVA RS 59.516999999999996 79.517 39.0 19620401 19631231 290230 99999 NAPAS RS 59.85 81.95 76.0 19480101 20200624 290370 99999 BEREZOVKA RS 59.383 82.833 68.0 19530216 20071106 290590 99999 ALEKSANDROVSKIJ SHLYUZ RS 59.433 89.28299999999999 102.2 19591101 20200624 290680 99999 NAZIMOVO RS 59.5 90.928 67.0 19590101 20200624 290750 99999 CHIRIMBA-IN-KRASNOY RS 59.717 93.43299999999999 454.0 19590101 19880419 291030 99999 KATYLGA RS 59.067 76.733 69.0 19530216 19950423 291110 99999 SREDNY VASJUGAN RS 59.217 78.233 69.0 19480101 20200624 291220 99999 KARGASOK RS 59.05 80.833 57.0 19480101 20200624 291280 99999 PARABEL' RS 58.7 81.5 63.0 19530216 20020531 291490 99999 STEPANOVKA RS 58.633 86.73299999999999 105.0 19570702 20200624 291980 99999 KLIMINO-IN-KRASNOY RS 58.633 98.73299999999999 150.0 19530901 19891020 292020 99999 GRABTSOVY RS 58.35 76.383 90.0 19530216 19570630 292030 99999 NOVYJ VASYUGAN RS 58.583 76.517 80.0 19570718 20200624 292090 99999 MAJSK RS 57.8 77.217 99.0 19480101 20200624 292240 99999 STARICA RS 58.133 80.583 80.0 19550108 19960503 292310 99999 KOLPASEVO RS 58.317 82.95 75.0 19320101 20200624 292330 99999 RYBINSK TOMSKAYA RS 58.383 84.75 72.0 19530216 19601105 292410 99999 PALOCKA RS 58.383 84.6 81.0 19600218 19960418 292470 99999 BATURINO RS 57.75 85.2 90.0 19600424 20000209 292530 99999 LOSINOBORSKOE RS 58.45 89.46700000000001 133.0 19530216 20200624 292630 99999 JENISEJSK RS UNII 58.45 92.15 78.0 19320101 20200624 292650 99999 MAKOVSKOYE RS 59.2 90.9 162.0 19610101 19891008 292740 99999 STRELKA RS 58.083 93.0 90.0 19590101 20200624 292760 99999 MOTYGINO RS 58.183 94.75 161.1 19600103 20200624 292820 99999 BOGUCANY RS 58.383 97.45 133.0 19530216 20200624 292890 99999 GONDA RS 57.85 97.4 378.0 19590101 20020724 293130 99999 PUDINO RS 57.533 79.431 97.0 19480101 20200624 293280 99999 BAKCHAR RS 57.0 82.06700000000001 110.0 19480101 20200624 293320 99999 MOLCHANOVO RS 57.583 83.78299999999999 114.0 19530216 20200624 293350 99999 ZHUKOVA RS 57.383 83.917 106.0 19550113 19580417 293400 99999 19870511 19870511 293480 99999 PERVOMAJSKOE RS 57.067 86.21700000000001 114.0 19480101 20200624 293540 99999 TEGULDET RS 57.3 88.18299999999999 19530216 19601103 293550 99999 TUTALO-CULYM RIVER RS 57.45 88.46700000000001 140.0 19600105 19960121 293560 99999 CHINDAT-IN-KRASNOY RS 57.367 89.31700000000001 150.0 19480101 19890830 293630 99999 PIROVSKOE RS 57.633 92.26700000000001 179.0 19480101 20200624 293650 99999 PLATONOVKA RS 57.266999999999996 91.167 221.0 19590101 19600906 293670 99999 NOVOBIRILYUSSY RS 56.967 90.68299999999999 180.6 19530216 20200624 293740 99999 KAZACHINSKOE RS 57.683 93.26700000000001 92.9 19590101 20200624 293760 99999 TASEYEVO & RS 57.217 94.917 147.0 19530804 19890323 293790 99999 TASEEVO RS 57.2 94.55 168.0 19870701 20200624 293820 99999 MOLCHANOVO RS 57.583 83.78299999999999 128.0 19480101 19530215 293930 99999 CHERVYANKA RS 57.65 99.53299999999999 220.5 19530216 20200624 294010 99999 SEDELNIKOVO RS 56.95 75.3 90.0 19600424 19970728 294050 99999 KYSTOVKA RS 56.6 76.567 116.0 19480101 20200624 294070 99999 MUROMCEVO RS 56.383 75.25 87.0 19600708 19900123 294180 99999 SEVERNOE RS 56.35 78.35 126.0 19480101 20200624 294300 99999 TOMSK RS 56.5 84.917 139.0 19320101 20200624 294330 99999 MALOBRAGINO RS 56.867 84.367 81.0 19540207 19630105 294560 99999 TJUHTET RS 56.533 89.31700000000001 205.0 19530216 20200624 294640 99999 BOL'SOJ ULUJ RS 56.65 90.55 231.0 19460131 20200624 294670 99999 ACHINSK RS 56.283 90.51700000000001 257.2 19530216 20200624 294710 99999 BOL'SHAJA MURTA RS 56.9 93.133 180.0 19480101 20200624 294770 99999 SUHOBUZIMSKOE RS 56.5 93.28299999999999 164.0 19610303 20200624 294810 99999 DZERZHINSKOE RS 56.85 95.21700000000001 188.0 19480101 20200624 294830 99999 DOLGIY MOST RS 56.766999999999996 96.8 257.0 19590101 19880502 294850 99999 ABAN RS 56.683 96.05 244.5 20120328 20200624 294980 99999 SITKINO RS 56.35 98.367 221.0 19480102 20070227 295240 99999 KRESCHENKA RS 55.85 80.033 129.0 19530216 20200624 295320 99999 KOZEVNIKOVO RS 56.25 84.0 113.0 19530216 20010621 295340 99999 PIHTOVKA RS 55.983000000000004 82.7 127.0 19480101 19911118 295390 99999 BOLOTNOE RS 55.667 84.4 193.0 19530216 20030127 295400 99999 ANZERO-SUDZENSK RS 56.117 86.0 259.0 19530216 19951120 295410 99999 TAJGA RS 56.067 85.617 251.0 19530216 19970518 295420 99999 JAJA RS 56.2 86.43299999999999 139.0 19480101 19530215 295480 99999 BARZAS RS 55.717 86.3 208.0 19530218 19970705 295510 99999 MARIINSK RS 56.183 87.68299999999999 144.0 19530216 20200624 295520 99999 TJAZIN RS 56.117 88.51700000000001 222.0 19530216 20070226 295530 99999 BOGOTOL RS 56.217 89.55 290.0 19460102 20200624 295570 99999 TISUL' RS 55.75 88.31700000000001 211.0 19530216 20180725 295580 99999 GGP KATEK RS 55.533 89.2 318.8 20120328 20200624 295590 99999 SHARYPOV RS 55.55 89.23299999999999 274.0 19840314 20011226 295610 99999 NAZAROVO RS 56.033 90.31700000000001 255.9 20120328 20200624 295620 99999 KEMCHUG RS 56.1 91.667 332.0 19590101 20200624 295630 99999 KACA RS 56.117 92.2 479.0 20051018 20200624 295660 99999 SHUMIHA RS 55.933 92.28299999999999 274.5 20120328 20200624 295670 99999 KRUTOYARSKIY RS 55.783 90.133 371.0 19590101 19871230 295700 99999 KRASNOJARSK OPYTNOE POLE RS 56.067 92.73299999999999 234.6 19960701 20160225 295710 99999 MININO RS 56.067 92.73299999999999 234.6 20120328 20200624 295720 99999 EMEL' YANOVO RS 56.183 92.6 206.7 20070226 20070226 295740 99999 KRASNOJARSK RS 56.0 92.883 277.0 19320101 19960416 295750 99999 SOROKINO RS 55.883 93.383 338.0 19460108 19530214 295760 99999 UJAR RS 55.817 94.3 375.0 19530216 20200624 295780 99999 SHALINSKOE RS 55.717 93.75 399.2 19590101 20200624 295800 99999 SOLYANKA RS 56.167 95.26700000000001 357.2 20120328 20200624 295810 99999 KANSK RS 56.2 95.633 207.0 19320106 20200624 295830 99999 KLYUCHI-IN-KRASNOY RS 56.117 97.31700000000001 338.0 19530216 20011110 295870 99999 IRBEJSKOE RS 55.633 95.46700000000001 252.0 19530216 20200624 295900 99999 NOVOCUNSKOE RS 56.15 99.3 265.0 19590101 20090415 295940 99999 TAJSHET RS 55.95 98.0 307.0 19530906 20200624 295980 99999 ALZAMAY RS 55.55 98.667 295.0 19530216 19540225 296020 99999 CHANY RS 55.3 76.75 111.0 19530218 20200624 296050 99999 TATARSK RS 55.2 76.01899999999999 112.0 19480101 20200624 296120 99999 BARABINSK RS 55.333 78.308 120.0 19320102 20200624 296130 99999 UBINSKOE RS 55.3 79.617 140.0 19480101 20020109 296210 99999 19870519 19870519 296220 99999 PENKI-IN-NOVOSIBIR RS 55.483000000000004 81.6 146.0 19530216 20020111 296250 99999 CULYM RS 55.1 80.967 140.0 19530216 20180725 296260 99999 KOCENEVO RS 55.016999999999996 82.23299999999999 159.0 19480101 19950703 296300 99999 LENINSKIY RS 55.167 83.133 220.0 19620601 19631211 296310 99999 KOLYVAN' RS 55.3 82.75 137.0 19530216 20200624 296320 99999 MOSKOVO RS 55.3 83.6 215.0 19530216 20020102 296340 99999 TOLMACHEVO RS UNNT 55.013000000000005 82.65100000000001 111.3 19320101 20200624 296360 99999 TOGUCHIN RS 55.233000000000004 84.4 173.0 19480101 20200624 296380 99999 NOVOSIBIRSK (OGOURTSOVO) RS 54.9 82.95 133.0 20040803 20200624 296390 99999 KOURAK RS 54.833 84.7 195.0 19530908 19631115 296420 99999 KEMEROVO RS UNEE 55.27 86.10700000000001 263.0 19460101 20200624 296450 99999 KEMEROVO CGMS RS 55.25 86.21700000000001 148.0 20090225 20200624 296490 99999 KRAPIVINO RS 55.0 86.8 151.0 19530219 19960627 296530 99999 UZUR RS 55.3 89.81700000000001 387.0 19480101 20200624 296540 99999 CENTRAL'NYJ RUDNIK RS 55.217 87.65 495.0 19530216 20200624 296580 99999 ORDZHONIKIDZEVSKIY RS 54.766999999999996 88.96700000000001 610.0 19740429 19891026 296620 99999 BALAHTA RS 55.383 91.617 321.0 19480101 20200624 296630 99999 DERBINO RS 55.367 92.3 221.0 19570711 19631231 296640 99999 SVETLOLYUBOVO RS 55.083 90.85 325.3 19590101 20200624 296650 99999 LEGOATAYEVO RS 55.133 91.03299999999999 327.0 19530216 19581030 296750 99999 KOLBA RS 55.083 93.367 477.0 19530216 20121031 296760 99999 AGINSKOE RS 55.25 94.883 337.0 19480101 20200624 296980 99999 NIZNE-UDINSK RS UINN 54.883 99.03299999999999 410.0 19320104 20200624 297010 99999 LJUBIMOVKA RS 54.667 75.1 111.0 19601201 19950411 297020 99999 CISTOOZERNOJE RS 54.717 76.717 111.0 19590101 20030301 297060 99999 KUPINO RS 54.367 77.283 115.0 19480101 20200624 297120 99999 ZDVINSK RS 54.7 78.667 113.0 19530216 20200624 297130 99999 19870511 19870511 297160 99999 DOVOLNOYE RS 54.483000000000004 79.667 132.0 19590101 19620502 297220 99999 UZANIHA RS 54.667 81.05 175.0 19530418 20021120 297240 99999 KOCHKI RS 54.333 80.467 160.0 19530216 20200624 297260 99999 ORDYNSKOE RS 54.367 81.883 132.0 19480101 20200624 297350 99999 POSEVNAJA RS 54.3 83.314 293.0 19530216 19980722 297360 99999 MASLJANINO RS 54.333 84.21700000000001 198.0 19480101 20200624 297420 99999 KOLCHUGINO RS 54.667 86.18299999999999 276.0 19320103 19631231 297450 99999 BELOVO RS 54.45 86.367 226.0 19530216 20050117 297490 99999 ZHERNOVO RS 54.15 87.31700000000001 291.0 19530219 19631221 297520 99999 NENASTNAYA RS 54.75 88.81700000000001 1183.0 19530302 20200624 297560 99999 SIRA RS 54.5 89.93299999999999 475.0 19460101 20180216 297590 99999 KOMMUNAR RS 54.333 89.28299999999999 847.0 19590101 20200624 297620 99999 KHAKASSKIY RS 54.6 90.93299999999999 281.0 19590101 19621209 297660 99999 IDRINSKOE RS 54.367 92.133 282.0 19480101 20200624 297680 99999 LEBYAZH'E RS 54.2 91.583 252.8 20120330 20200624 297710 99999 SHCHETINKINO RS 55.35 92.1 804.3 20120330 20200624 297720 99999 ARTEMOVSK RS 54.367 93.43299999999999 479.3 19530216 20200624 297890 99999 VERHNJAJA GUTARA RS 54.217 96.96700000000001 984.0 19530216 20200624 297940 99999 BIRJUSA RS 54.383 97.78299999999999 802.0 19590102 20010529 298020 99999 MIKHAILOVKA KZ 53.817 76.533 114.0 19590102 20200624 298070 99999 ERTIS KZ 53.35 75.45 94.0 19480101 20200624 298130 99999 KRASNOOZERSK RS 53.967 79.233 144.0 19530218 20180725 298140 99999 KARASUK RS 53.733000000000004 78.017 115.0 19530216 20200624 298160 99999 HABARY RS 53.617 79.55 138.0 19530216 20021222 298220 99999 KAMEN'-NA-OBI RS 53.817 81.267 129.0 19460101 20180725 298230 99999 19870511 19870511 298270 99999 BAEVO RS 53.266999999999996 80.767 122.0 19530218 20200624 298320 99999 TALMENKA RS 53.817 83.583 144.0 19530216 20090627 298360 99999 SOROKINO RS 53.75 84.95 221.0 19530216 20011027 298370 99999 SELABOLIHA RS 53.4 82.6 170.0 19570701 20020828 298380 99999 BARNAUL RS UNBB 53.364 83.539 255.1 19320101 20200624 298430 99999 BAYDAYEVKA RS 53.766999999999996 87.23299999999999 213.0 19350329 19550630 298460 99999 NOVOKUZNETSK RS UNWW 53.733000000000004 87.18299999999999 308.0 19550701 20170615 298480 99999 TOGUL RS 53.467 85.917 272.0 19480101 20090627 298490 99999 KUZEDEEVO RS 53.333 87.167 293.0 19530216 19970328 298540 99999 MEZDURECENSK RS 53.683 88.05 242.0 19600102 19961116 298550 99999 TEBA RS 53.633 88.56700000000001 304.0 19730101 20050108 298560 99999 ASUK RS 53.633 89.45 783.0 19610509 19620823 298580 99999 NEOZIDANNIJ PRIISK RS 53.283 89.167 527.0 19530216 20090523 298620 99999 HAKASSKAJA RS 53.766999999999996 91.31700000000001 256.0 19960701 20070328 298640 99999 UYBAT RS 53.717 90.367 525.0 19480101 20200624 298650 99999 ABAKAN RS UNKA 53.75 91.4 245.0 19330215 20011024 298660 99999 MINUSINSK RS 53.717 91.7 254.5 19320213 20200624 298690 99999 ERMAKOVSKOE RS 53.3 92.417 298.0 19480101 20200624 298700 99999 KURAGINO RS 53.883 92.667 284.0 19590222 20030512 298710 99999 BEREZOVSKOYE RS 53.933 92.8 311.0 19530216 19620508 298740 99999 KARATUZSKOE RS 53.583 92.883 319.7 20120330 20200624 298760 99999 KAZYR RS 53.683 94.2 446.1 19590101 20200624 298890 99999 ... RS 53.383 97.15 19611025 19620518 298920 99999 HADAMA RS 53.95 98.81700000000001 705.0 19530218 20200624 298940 99999 ALYGDZER RS 53.633 98.21700000000001 918.0 19480101 20010926 299060 99999 USPENKA KZ 52.917 77.417 112.0 19590801 20200624 299150 99999 SLAVGOROD RS 52.967 78.65 126.0 19480101 20200624 299230 99999 REBRIHA RS 53.067 82.3 219.0 19530216 20191225 299250 99999 ZAVYALOVO-IN-ALTAY RS 52.833 80.95 165.0 19530216 20011104 299370 99999 ALEJSKAJA RS 52.516999999999996 82.76700000000001 175.0 19480101 20200624 299390 99999 BIJSK ZONAL'NAYA RS 52.667 84.917 225.0 19320101 20200624 299460 99999 KONDOMA RS 52.867 87.28299999999999 354.0 19530216 20050627 299550 99999 UST-KABIRZA RS 52.817 88.45 416.0 19690101 19950715 299560 99999 TASTYP RS 52.8 89.917 455.0 19480101 20200624 299620 99999 BEJA RS 53.05 90.917 469.0 19530216 20181106 299630 99999 RAZYEZZHEYE RS 53.117 92.45 326.0 19590101 20150624 299730 99999 VERHNI AMIL RS 53.133 94.46700000000001 765.0 19590901 19960405 299740 99999 OLEN' YA RECHKA RS 52.8 93.23299999999999 1398.5 19361231 20200624 299980 99999 ORLIK RS 52.5 99.81700000000001 1376.0 19970101 20200624 299990 99999 ORLIK (MTN STN) RS 52.5 99.81700000000001 1570.0 19480105 19990910 300140 99999 CEMDALSK RS 59.75 103.3 277.0 19591101 20110316 300280 99999 IKA RS 59.283 106.167 352.0 19530216 20200624 300370 99999 NEPA RS 59.25 108.23299999999999 323.0 19550701 20010528 300540 99999 VITIM RS 59.45 112.583 190.0 19340805 20200624 300740 99999 MACHA RS 59.933 117.6 163.8 19590901 20200624 300890 99999 DZHIKIMDA RS 59.016999999999996 121.76700000000001 175.0 19590101 20200624 301020 99999 KEZMA RS 58.967 101.083 185.0 19370101 19960309 301170 99999 UST-ILIMSK RS 58.2 102.75 401.0 19530216 20020421 301270 99999 TOKMA RS 58.233000000000004 105.73299999999999 438.8 19570701 20200624 301350 99999 19870519 19870519 301360 99999 ICHERA RS 58.55 109.76700000000001 234.0 19480101 19840513 301380 99999 CECUJSK RS 58.1 108.68299999999999 245.0 19530216 20020501 301390 99999 PUSHCHINA RS 58.183 109.333 240.0 19811101 19890717 301420 99999 VIZIRNYJ RS 58.883 111.25 227.0 19530216 20140831 301510 99999 VORONCOVKA RS 58.85 112.9 203.0 19480101 20040630 301570 99999 MAMA RS 58.317 112.867 224.0 19530216 20200624 301650 99999 SVETLY RS 58.417 116.01700000000001 422.5 19550322 20150917 301730 99999 TYANYA RS 59.0 119.8 198.5 19590102 20200624 301770 99999 ... RS 58.083 118.25 457.2 19620805 19630324 301980 99999 SUON-TIT RS 58.067 123.71700000000001 416.8 19600108 20200624 302170 99999 NIZHNE-ILIMSK RS 57.183 103.25 19530216 19740112 302190 99999 MAKSIMOVO RS 57.1 105.0 354.0 19560101 20010529 302290 99999 VERHNE-MARKOVO RS 57.333 107.06700000000001 271.0 19530216 19950619 302300 99999 KIRENSK RS UIKK 57.766999999999996 108.06700000000001 258.0 19320101 20200624 302460 99999 GORNO-CUJSKI RS 57.667 111.667 332.0 19550310 20010511 302520 99999 MAMAKAN RS 57.817 114.01700000000001 249.0 20051229 20200624 302530 99999 BODAJBO RS UIKB 57.85 114.2 278.0 19480101 20051228 302550 99999 MAMAKAN RS 57.8 114.083 532.0 19690101 20010704 302630 99999 NICATKA RS 57.833 117.667 562.0 19600114 20020112 303050 99999 19740425 19740926 303070 99999 BRATSK RS 56.367 101.7 489.0 20040706 20090225 303090 99999 BRATSK RS UIBB 56.371 101.698 490.7 19340202 20200624 303120 99999 ILIMSK RS 56.766999999999996 103.833 274.9 19530216 19730626 303170 99999 ZAJARSK RS 56.2 102.833 427.0 19731213 20080115 303200 99999 UST'-KUT RS 56.867 105.7 669.0 19530216 20001025 303210 99999 USTKUT SOUTHWEST RS 56.75 105.48299999999999 596.0 19480101 19520629 303230 99999 UST' KUT RS 56.8 105.8 325.7 20120425 20200624 303280 99999 ORLINGA RS 56.05 105.833 338.0 19530216 20200624 303370 99999 KAZACHINSK RS 56.317 107.617 362.0 19480101 20200624 303560 99999 ULON-MAKIT RS 56.367 114.633 516.0 19730102 20010528 303640 99999 MUJA RS 56.5 115.667 474.0 19480101 20020218 303700 99999 BOGUS SOVIET RS 19881103 19891020 303720 99999 CHARA RS 56.9 118.26700000000001 711.0 19480101 20200624 303740 99999 BOLSAJA-LEPRINDA RS 56.65 117.56700000000001 1000.0 19550304 20020321 303790 99999 KATUGINO RS 56.0 119.45 996.0 19580219 20010528 303850 99999 UST'-NJUKZHA RS 56.583 121.48299999999999 426.0 19530223 20200624 303930 99999 CULMAN/NERIUGRI RS UE40 56.833 124.867 859.0 19480101 20200624 304050 99999 TANGUJ RS 55.383 101.03299999999999 423.0 19480101 20200624 304060 99999 ARTUMEJ RS 55.617 102.31700000000001 448.0 19730128 20010925 304120 99999 KOCHENGA-IN-IRKUT RS 55.917 104.06700000000001 325.0 19590104 19790527 304130 99999 JASACNAJA RS 55.833 104.23299999999999 331.0 19790601 20021011 304240 99999 GOLOVSKOE RS 55.483000000000004 105.48299999999999 372.0 19370109 19951220 304300 99999 ONOKOCHAN SOUTH RS 55.533 109.18299999999999 453.0 19530216 19600527 304320 99999 GOUJOKIT RS 55.717 109.06700000000001 676.0 19600713 20020315 304330 99999 NIZHNEANGARSK RS 55.783 109.55 487.0 19480101 20200624 304340 99999 TUKOLON RS 55.4 107.71700000000001 457.0 19590101 19590921 304360 99999 BAYKALSKOYE RS 55.367 109.18299999999999 478.0 19590115 19740303 304370 99999 KARAM RS 55.15 107.617 497.0 19600621 20050312 304380 99999 TALAYA RS 55.333 109.167 19530216 19541223 304390 99999 TOMPA RS 55.117 109.75 465.0 19530216 20200624 304550 99999 UAKIT RS 55.467 113.617 1097.0 19480101 20200624 304570 99999 BAUNT RS 55.266999999999996 113.133 1078.0 19530216 20030328 304610 99999 TILISMA RS 55.8 115.43299999999999 830.0 19590101 20010528 304690 99999 KALAKAN RS 55.117 116.76700000000001 613.0 19370402 20141112 304710 99999 SREDNIJ KALAR RS 55.867 117.367 750.0 19530216 20010528 304730 99999 IMENI ODINNADTSATOGO RS 55.9 119.6 1080.0 19480105 19580219 304840 99999 SREDNJAJA OLEKMA RS 55.433 120.667 531.0 19570702 20010528 304930 99999 NAGORNYJ RS 55.967 124.883 861.0 19361231 20200624 304970 99999 UST-URKIMA RS 55.3 123.167 522.0 19690101 20020924 304980 99999 SREDNAYAYA NYUKZHA RS 55.167 123.5 557.2 19530219 19760105 304990 99999 TYNDA RS 55.183 124.667 528.0 19530216 20200624 305040 99999 TULUN RS 54.6 100.633 522.0 19480101 20200624 305070 99999 IKEJ RS 54.183 100.083 527.0 19530216 20081018 305130 99999 ZHAMENKA RS 54.7 104.85 470.0 19530216 19550531 305140 99999 UST-UDA RS 54.167 103.01700000000001 427.0 19480102 20040315 305210 99999 ZHIGALOVO RS 54.8 105.167 418.0 19480101 20200624 305260 99999 TIRKA RS 54.483000000000004 107.06700000000001 650.8 19550701 20200624 305360 99999 DAVSA RS 54.35 109.51700000000001 469.0 19550415 20010528 305370 99999 SOLNETHNAYA RS 54.033 108.26700000000001 464.0 19530216 20050922 305420 99999 TASSA RS 54.85 111.15 563.0 19480103 20060726 305440 99999 SAKHULI RS 54.417 110.4 573.0 20011121 20040501 305450 99999 POD-LKAT RS 54.433 111.367 874.0 19600105 19600829 305470 99999 KURUMKAN RS 54.317 110.31700000000001 509.0 19550315 20010528 305490 99999 KARAFTIT RS 54.2 111.95 1302.0 19480101 20041117 305500 99999 TSIPIKAN WEST RS 54.917 113.15 1251.0 19550305 19600623 305510 99999 VERKHNIY TSIPIKAN RS 54.85 113.06700000000001 1166.0 19540301 20040424 305520 99999 ZADORNY WEST RS 54.7 113.5 1375.0 19590101 19591208 305540 99999 BAGDARIN RS 54.483000000000004 113.583 995.0 19480101 20200624 305550 99999 TROICKIJ PRIISK RS 54.617 113.133 1314.0 19530216 20030618 305650 99999 UST-KARENGA RS 54.45 116.51700000000001 686.0 19550315 20020910 305670 99999 BUGARIHTA RS 54.05 115.01700000000001 738.0 19550315 20010528 305760 99999 TUPIK RS 54.433 119.9 644.0 19480101 20010528 305790 99999 TUNGIR MINE RS 54.117 119.35 19530216 19630401 305850 99999 KROPOCHEVA SOUTHEAST RS 54.333 120.5 757.0 19590101 19630204 305970 99999 URUSA RS 54.033 122.9 454.0 19530216 19910725 305980 99999 TAKHTAMYGDA NE RS 54.15 123.667 425.0 19530216 19631110 305990 99999 TIGAN-URKAN RS 54.083 124.76700000000001 379.0 19590130 19880915 306030 99999 ZIMA RS 53.933 102.05 458.0 19480101 20200624 306040 99999 ... RS 53.5 100.0 19600528 19601228 306050 99999 SARAM RS 53.333 101.18299999999999 600.0 19530310 20010528 306060 99999 ZALARI RS 53.6 102.53299999999999 450.0 19690101 20070921 306120 99999 BALAGANSK RS 54.0 103.06700000000001 427.0 19530216 20200624 306170 99999 CEREMHOVO RS 53.167 103.083 598.0 19690101 20080429 306180 99999 BOHAN RS 53.133 103.76700000000001 446.0 19530216 20011112 306200 99999 SARMA RS 53.1 106.81700000000001 464.0 19550701 19910326 306220 99999 KACUG RS 53.967 105.9 533.0 19480101 20200624 306270 99999 BAJANDAJ RS 53.1 105.53299999999999 762.0 19480101 20200624 306320 99999 BOLSOJ USKAN ISLAND RS 53.85 108.6 460.0 19550701 20020615 306350 99999 UST'-BARGUZIN RS 53.417 109.01700000000001 461.0 19530216 20200624 306360 99999 BARGUZIN RS 53.617 109.633 489.0 19320106 20200623 306370 99999 UZUR RS 53.317 107.73299999999999 461.6 19550701 20200624 306380 99999 MAKSIMIHA RS 53.266999999999996 108.75 475.0 19550701 20000108 306390 99999 BOGUS SOVIET RS 19871002 20020916 306490 99999 UST-ZAZA RS 53.183 111.71700000000001 973.0 19550306 20010528 306500 99999 ROMANOVKA RS 53.2 112.78299999999999 923.0 19480101 20200619 306510 99999 BOLSOJ AMALAT RS 53.917 113.417 935.0 19550315 20010625 306550 99999 INGUR RS 53.583 113.76700000000001 810.0 19590101 20010528 306570 99999 POLIVTSEVO RS 53.283 112.78299999999999 1203.0 19550312 19890929 306580 99999 ALEKSEYEVKA RS 53.133 113.617 914.0 19740620 20011025 306640 99999 TUNGOKOCEN RS 53.533 115.617 811.0 19480101 20200624 306670 99999 KIKER RS 53.167 115.833 596.0 19550315 20020319 306690 99999 ZILOVO RS 53.067 117.48299999999999 708.0 19480101 20171016 306730 99999 MOGOCHA RS 53.75 119.73299999999999 625.0 19480101 20200624 306750 99999 KSEN'EVSKAJA RS 53.55 118.71700000000001 582.0 19480108 20011209 306760 99999 SOBOLINA RS 53.383 119.68299999999999 456.0 19530218 19590408 306790 99999 GORBICA RS 53.1 119.21700000000001 384.0 19530216 20141112 306820 99999 AMAZAR RS 53.867 120.867 472.0 19530216 20020516 306830 99999 EROFEJ PAVLOVIC RS 53.967 121.93299999999999 522.0 19311231 20200624 306860 99999 IGNASINO RS 53.467 122.4 295.0 19530216 20180725 306880 99999 POKROVKA RS 53.35 121.55 314.0 19530216 20010528 306920 99999 SKOVORODINO RS 54.0 123.96700000000001 398.0 19480101 20141029 306930 99999 TALDAN RS 53.7 124.833 462.1 19530216 19590731 306950 99999 DZALINDA RS 53.467 123.9 266.0 19530216 20200624 307000 99999 KHORYO-IN-BURYAT RS 52.167 100.35 1590.0 19570701 19891023 307020 99999 ... RS 52.9 101.2 19600612 19601230 307030 99999 INGA RS 52.967 101.98299999999999 543.0 19480101 20200624 307080 99999 ILCIR RS 52.05 101.06700000000001 2083.0 19550701 19960326 307100 99999 IRKUTSK RS UIII 52.268 104.389 510.5 19320101 20200624 307110 99999 MIKHAYLOVKA RS 52.95 103.28299999999999 535.0 19530216 19631230 307120 99999 USOL' E-SIBIRSKOE RS 52.783 103.68299999999999 437.4 19740429 20131225 307130 99999 UST'ORDYNSKIJ RS UIIO 52.817 104.76700000000001 526.0 19480101 20010926 307140 99999 DABADY RS 52.1 102.7 755.9 19530315 20200624 307141 99999 KHEYTA-IN-IRKUT RS 52.55 103.05 759.0 20050729 20050729 307150 99999 ANGARSK RS 52.483000000000004 103.85 437.0 19960901 20050416 307180 99999 SMOLENSHCHINA RS 52.25 104.2 437.0 19730108 19891030 307190 99999 IRKUTSK OBSERVATORY RS 52.266999999999996 104.31700000000001 468.0 19570701 19740416 307250 99999 KRESTOVAYA SE RS 52.65 106.417 568.0 19550701 19590131 307260 99999 SUHAJA RS 52.567 107.133 461.0 19590130 20060426 307270 99999 BOLSOJE-GOLOUSTNOJ RS 52.033 105.4 461.0 19570701 20020606 307290 99999 KABANSK RS 52.05 106.65 467.0 19480101 20021107 307300 99999 CHEREMUKHOVO RS 52.766999999999996 108.133 462.0 19530216 19600731 307310 99999 GORJACINSK RS 52.983000000000004 108.28299999999999 487.0 19480101 20200624 307330 99999 TAKARKHAY NW RS 52.75 109.0 1043.0 19591006 19600814 307380 99999 VERKHNIYS TALTSY NE RS 52.05 108.93299999999999 592.0 19550315 19620105 307390 99999 HORINSK RS UIUH 52.167 109.78299999999999 666.1 19480101 20200619 307410 99999 ZAMAKTA RS 52.766999999999996 109.96700000000001 1286.0 19480101 20200624 307450 99999 SOSNOVO-OZERSKOE RS 52.533 111.55 952.0 19480101 20200622 307500 99999 CHITA /NORTHWEST FLO RS 52.067 113.43299999999999 659.9 19600127 19601221 307510 99999 TELEMBA RS 52.733000000000004 113.26700000000001 929.0 19530216 20020418 307570 99999 BEKLEMISEVO RS 52.117 112.667 968.0 19591127 20020423 307580 99999 KADALA RS UIAA 52.026 113.306 692.5 19320101 20200624 307640 99999 USUGLI RS 52.65 115.167 646.0 19480101 20200624 307650 99999 ZJUL'ZJA RS 52.55 116.2 533.0 19530216 20011223 307660 99999 CHERNYSHEVSK RS 52.533 117.0 539.0 19530216 20020526 307670 99999 EDAKUY-IN-CHITA RS 52.3 115.03299999999999 779.0 19550315 19810426 307680 99999 NERCINSK RS 52.0 116.53299999999999 482.0 19530216 20020422 307720 99999 UST'-KARA RS 52.7 118.8 407.0 19530216 20030602 307770 99999 SRETENSK RS 52.233000000000004 117.7 525.0 19320101 20200624 307810 99999 URJUPINO RS 52.75 120.03299999999999 370.0 19480108 20200624 307910 99999 IRKUTSK RS 52.266999999999996 104.35 498.0 20040706 20090225 308020 99999 MONDY RS 51.683 100.98299999999999 1304.0 19490101 20200623 308030 99999 BAGO-GORHON RS 51.7 102.45 889.0 19740517 20031119 308060 99999 KYREN RS 51.683 102.167 758.0 19730101 20020207 308110 99999 TUNKA RS 51.733000000000004 102.53299999999999 721.0 19530216 20060426 308120 99999 SLJUDJANKA RS 51.65 103.667 471.0 19480101 20011202 308130 99999 ISTOK ANGRY RS 51.9 104.81700000000001 470.0 19530216 20020408 308140 99999 KULTUK RS 51.733000000000004 103.7 472.0 19540402 20021124 308150 99999 HAMAR-DABAN RS 51.533 103.6 1442.0 19530216 20200624 308180 99999 UNKNOWN RS 51.167 103.667 481.0 19740419 20010528 308220 99999 BABUSKIN RS 51.717 105.85 467.0 19530216 20200619 308230 99999 MUKHINO RS UIUU 51.808 107.43799999999999 515.1 19480101 20200624 308240 99999 TANHOJ RS 51.567 105.117 472.0 19480101 20060426 308290 99999 NOVOSELENGINSK RS 51.1 106.65 556.0 19480101 20200619 308330 99999 ... RS 51.817 107.51700000000001 19590101 19591217 308370 99999 MUHORSIBIR RS 51.016999999999996 107.833 733.0 19550315 20010528 308380 99999 PETROVSKIJ ZAVOD RS 51.317 108.867 806.0 19480101 20200624 308410 99999 INNOKENTYEVKA SOUTH RS 51.9 110.15 684.0 19531112 19551231 308430 99999 MOGZON RS 51.733000000000004 112.0 907.0 19480102 20020127 308440 99999 HILOK RS 51.35 110.46700000000001 802.0 19480101 20200624 308450 99999 HARAGUN RS 51.55 111.167 858.0 19550113 20000210 308460 99999 ULETY RS 51.35 112.46700000000001 743.0 19480101 20200624 308490 99999 NIKOLAJEVSKOE RS 51.05 111.76700000000001 817.0 19570701 20020507 308510 99999 TURGUTUJ (MTN STN) RS 51.85 112.633 1030.0 19530216 19600808 308530 99999 KARYMSKAJA RS 51.633 114.31700000000001 616.0 19530216 20020614 308560 99999 SEDLOVAJA RS 51.483000000000004 114.53299999999999 877.0 19480101 19960801 308580 99999 KUROT-DARASUA RS 51.2 113.71700000000001 805.0 19550315 20020618 308590 99999 AGINSKOE RS 51.1 114.51700000000001 681.0 19530216 20200624 308600 99999 NERCHINSK RS 51.85 116.01700000000001 19570701 19611125 308620 99999 SHILKA RS 51.867 116.03299999999999 597.0 19480101 20200624 308630 99999 KAZAKOVSKIY-PROMYSEL RS 51.65 117.56700000000001 19550315 19600513 308660 99999 BALEJ RS 51.583 116.633 649.0 19690101 20010729 308740 99999 SELOPUGINO RS 51.65 117.56700000000001 715.0 19530216 20020207 308750 99999 TAJNA RS 51.583 118.46700000000001 698.0 19530216 20050104 308790 99999 NERCHINSKIJ ZAVOD RS 51.317 119.617 619.0 19340102 20200624 309110 99999 SANAGA RS 50.733000000000004 102.833 1170.0 19550312 20021002 309150 99999 CAKIR RS 50.417 103.617 989.0 19550315 20021121 309160 99999 TOREJ RS 50.516999999999996 104.833 733.0 19550315 19950909 309240 99999 PETROPAVLOVKA RS 50.633 105.31700000000001 684.0 19600520 20010528 309250 99999 KJAHTA RS 50.367 106.45 797.0 19480101 20200624 309340 99999 BICURA RS 50.6 107.583 638.0 19530216 20010804 309350 99999 KRASNYJ CHIKOJ RS 50.367 108.75 771.0 19550315 20200624 309380 99999 MENZA RS 49.433 108.9 940.0 19550315 20010528 309400 99999 ESUTAY RS 50.183 110.417 1100.0 19590825 19620831 309410 99999 ENGOROK RS 50.967 110.35 920.0 19550315 19601213 309420 99999 NOVOSALIYA SOUTHEAST RS 50.95 111.45 940.0 19550315 19570328 309440 99999 CEREMHOVO RS 50.567 110.2 885.0 19550315 20020302 309470 99999 SUMILOVKA RS 50.067 110.15 1154.0 19550107 20020616 309480 99999 GRJAZI RS 50.016999999999996 111.18299999999999 1234.0 19550315 20011112 309490 99999 KYRA RS 49.567 111.96700000000001 908.0 19480101 20200624 309530 99999 AGINSKLY RS 51.083 114.46700000000001 19590101 19710101 309540 99999 DULDURGA RS 50.633 113.583 811.0 19550313 20020927 309560 99999 KUBUKHAY RS 50.383 114.78299999999999 19550306 19570628 309570 99999 AKSA RS 50.266999999999996 113.26700000000001 732.0 19480101 20200624 309580 99999 UBUR-TOKHTOR RS 50.1 113.633 19611007 19611007 309610 99999 OLOVJANNAJA RS 50.95 115.583 640.0 19480102 20180808 309620 99999 BOGUS SOVIET RS 19610725 20011029 309640 99999 KUBUHAJ RS 50.5 114.81700000000001 679.0 19730101 20020217 309650 99999 BORZYA RS 50.4 116.51700000000001 676.0 19361231 20200624 309670 99999 SOLOV'EVSK RS 49.9 115.75 623.0 19530216 20200624 309680 99999 HARANOR RS 50.1 116.667 705.0 19850306 20020612 309690 99999 MATSIYEVSKAYA RS 49.733000000000004 117.26700000000001 736.0 19530216 20020310 309710 99999 ALEKSANDROVSKIJ ZAVOD RS 50.917 117.93299999999999 807.0 19480101 20180808 309720 99999 DONO RS 50.883 118.583 694.0 19530216 20010528 309750 99999 PRIARGUNSK RS 50.333 119.06700000000001 521.1 19480105 20200624 309760 99999 BIRKA-IN-CHITA RS 50.65 118.55 587.0 19570701 19890714 309780 99999 KAJLASTUJ RS 49.833 118.383 550.0 19480101 20180808 310040 99999 ALDAN RS 58.617 125.367 679.0 19341013 20200624 310050 99999 TOMMOT RS 58.967 126.26700000000001 283.5 19340807 20200624 310070 99999 USMUN RS 58.317 125.35 951.0 19590101 20041003 310110 99999 BUJAGA RS 59.667 127.05 278.4 19570702 20200624 310160 99999 UGINO RS 58.633 128.5 230.6 19590101 20200624 310260 99999 UCHUR RS 58.733000000000004 130.61700000000002 197.4 19590101 20200624 310410 99999 UST'-MIL' RS 59.633 133.033 179.4 19590101 20200624 310540 99999 UST'-JUDOMA RS 59.183 135.15 212.0 19590101 20200624 310620 99999 YUGORENOK RS 59.766999999999996 137.667 383.7 19590102 20200624 310670 99999 KURUN-URJAKAH RS 58.65 137.217 457.0 19590102 20080227 310830 99999 HEJDZHAN RS 59.967 144.783 121.0 19590101 20150701 310860 99999 INJA RS 59.5 144.8 6.0 19590101 19780425 310870 99999 UL' YA RS 58.817 141.85 5.0 19590101 20200624 310880 99999 OHOTSK RS 59.367 143.2 6.0 19360103 20200624 310920 99999 TALON RS 59.8 148.833 19.0 19590101 19941127 310930 99999 ARMAN RS 59.717 150.2 8.0 19590101 19890401 310960 99999 SPAFAR' EVA (OSTROV) RS 59.15 149.033 52.0 19630523 20200624 310970 99999 USKI RS 59.183 146.333 17.0 19590101 19931118 311020 99999 KANKU RS 57.65 125.96700000000001 1204.0 19690101 20200624 311120 99999 SVETLYY WEST RS 57.8 127.883 777.0 19590101 19631231 311130 99999 ... RS 57.5 128.917 19620808 19631223 311230 99999 CJUL'BJU RS 57.766999999999996 130.9 255.0 19570701 20200624 311250 99999 ... RS 56.733000000000004 129.917 19620821 19621209 311320 99999 ... RS 57.633 132.25 19620828 19620828 311370 99999 TOKO RS 56.283 131.13299999999998 850.0 19590101 20200624 311520 99999 NEL' KAN RS 57.65 136.15 318.0 19480115 20200624 311580 99999 BATOMGA RS 56.65 136.35 496.0 19590101 20031018 311630 99999 ENKAN RS 57.766999999999996 140.183 10.0 19590101 20151117 311680 99999 AYAN RS 56.45 138.15 8.0 19471231 20200624 311730 99999 CAPE UKOY RS 55.65 136.75 29.0 19590101 20020528 311740 99999 BOL'SHOJ SHANTAR RS 54.833 137.533 21.0 19590101 20200624 311830 99999 OSTROV BELICHIY RS 54.45 137.86700000000002 19620606 19620606 311870 99999 AMURSKAYA NORTH RS 55.2 126.383 630.0 19590924 19630306 311990 99999 UNAHA RS 55.033 126.8 448.0 19530216 20020816 312350 99999 JANA RS 55.483000000000004 134.333 318.0 19590101 20080930 312530 99999 BOMNAK RS 54.717 128.86700000000002 364.0 19530216 20200624 312570 99999 DAMBUKI RS 54.333 127.633 272.0 19530216 20031018 312630 99999 LOKSAK RS 54.733000000000004 130.45 464.0 19530216 20180808 312650 99999 BOGUS SOVIET RS 19850201 20030430 312850 99999 UDSKOE RS 54.5 134.417 62.0 19590118 20200624 312860 99999 CUMIKAN RS 54.717 135.317 5.0 19360104 20090917 312880 99999 TOROM RS 54.117 135.7 182.0 19590101 19960109 312950 99999 MAGDAGACI RS 53.467 125.81700000000001 370.0 19480106 20200624 312990 99999 TYGDA RS 53.1 126.35 314.0 19530216 19581214 313000 99999 ZEJA RS 53.7 127.3 229.0 19480101 20200624 313060 99999 DEP-DOLBIR RS 53.533 128.75 318.0 19531201 19811123 313110 99999 OGORON RS 53.967 129.067 405.0 19531202 20020831 313180 99999 DUGDA RS 53.35 130.017 319.3 19531201 20031018 313250 99999 SEVLI RS 53.516999999999996 132.917 442.0 19600808 20020303 313289 99999 IGNATYEVO RS UHBB 50.425 127.412 194.5 20101203 20200624 313290 99999 EKIMCAN RS UHBP 53.067 132.933 543.0 19471231 20200624 313310 99999 BOLODEK RS 53.717 133.15 280.0 19590101 20050724 313380 99999 SELEMDZA RS 53.133 133.967 682.0 19480101 19940918 313460 99999 TUGUR RS 53.85 136.86700000000002 52.0 19590101 19940325 313480 99999 BURUKAN RS 53.05 136.033 153.0 19480116 20200624 313610 99999 OSTROV REYNEK SW RS 54.033 139.217 98.0 19590101 19631231 313620 99999 ALEKSANDRA RS 54.283 139.783 9.0 19590101 20090613 313640 99999 KULCI RS 53.567 139.65 128.0 19570701 19930630 313660 99999 PETROVSK NW RS 53.467 140.88299999999998 36.0 19590102 19621207 313690 99999 NIKOLAEVSK-ON-AMUR RS UHNN 53.15 140.7 68.0 19311231 20200624 313710 99999 CHERNJAEVO RS 52.783 126.0 210.0 19480101 20200624 313720 99999 AYAK (?) RS 52.8 127.78299999999999 196.0 19550107 20010909 313730 99999 OKTJABR'SKIJ PRIISK RS 53.0 128.65 332.0 19531201 20070228 313770 99999 MUHINO RS 52.266999999999996 127.21700000000001 326.0 19590101 20020420 313840 99999 GAR RS 52.567 129.067 246.0 19531201 20020311 313880 99999 NORSK RS 52.35 129.917 208.0 19471231 20200624 313920 99999 STOJBA RS 52.8 131.717 359.0 19471231 20031018 313940 99999 SELEMDZINSKOE RS 52.583 131.13299999999998 300.0 19531201 19571215 313970 99999 BYSSA RS 52.45 130.86700000000002 267.0 19540210 20031018 314160 99999 IM POLINY OSIPENKO RS 52.417 136.5 73.0 19471231 20200624 314180 99999 VESELAJA GORKA RS 52.283 135.8 201.0 19530216 20200624 314190 99999 KAMENKA RS 47.417 142.817 0.0 19790601 19831117 314210 99999 GUGA RS 52.7 137.533 60.0 19480116 19990803 314230 99999 UDINSKOJE RS 52.9 138.86700000000002 15.0 19480115 20110907 314320 99999 VOSKRESENSKOJE RS 52.867 140.0 25.0 19590101 20021101 314330 99999 PAD RS 52.667 140.167 92.0 19590104 19621013 314360 99999 UARKI RS 52.516999999999996 141.2 14.0 19590106 20031018 314370 99999 SOMNITELNIJ-PRIISK RS 52.167 139.067 220.0 19590104 20050417 314390 99999 BOGORODSKOE RS 52.383 140.467 35.0 19471231 20200624 314410 99999 USAKOVO RS 51.9 126.583 159.0 19730313 19930630 314420 99999 SIMANOVSK RS 51.983000000000004 127.65 281.0 19471231 20200624 314430 99999 MAZANOVO RS 51.633 128.817 161.0 19530216 20000228 314440 99999 KUMARA RS 51.583 126.75 173.0 19460307 19740415 314450 99999 SVOBODNYJ RS 51.45 128.11700000000002 197.0 19471231 20200624 314590 99999 VERHNJAJA TOM RS 51.35 130.433 261.0 19471231 20110116 314690 99999 CEGDOMYN RS 51.167 132.95 374.0 19550101 20080916 314740 99999 UST'-UMAL'TA RS 51.633 133.267 384.0 19480101 20200624 314750 99999 SREDNYAYA IPPATA RS 51.417 134.13299999999998 930.0 19590101 20100322 314780 99999 SOFIJSKIJ PRIISK RS 52.266999999999996 133.983 902.0 19471231 20200624 314820 99999 DUKI RS 51.717 135.933 132.0 19471231 20011229 314840 99999 HULARIN RS 51.417 135.083 269.0 19480101 20200624 314890 99999 GORIN RS 51.2 136.8 92.0 19531201 20200624 314920 99999 BICHI-IN-KHABAROV RS 51.967 138.183 430.0 19590105 20030403 314970 99999 BAKTOR RS 51.133 137.417 35.0 19590127 20021219 315020 99999 MARIINSKOJE RS 51.717 140.317 20.0 19590104 20081117 315040 99999 SUHANOVKA RS 51.35 139.1 63.0 19471231 20081117 315090 99999 DE-KASTRI RS 51.483000000000004 140.783 36.0 19590103 20030805 315100 99999 BLAGOVESCENSK RS 50.283 127.48299999999999 169.2 19311231 20200624 315110 99999 SERGEJEVKA RS 50.783 127.3 145.0 19480101 20010523 315130 99999 BELOGORSK RS 50.917 128.467 178.0 19530216 20180725 315210 99999 BRATOLJUBOVKA RS 50.783 129.333 227.0 19471231 20200624 315270 99999 ZAVITAJA RS 50.117 129.467 241.0 19471231 20200624 315280 99999 PAYKAN-IN-AMUR RS 50.183 130.15 148.0 19590106 19891106 315320 99999 CEKUNDA RS 50.867 132.25 272.0 19451231 20200624 315340 99999 SEKTAGLI RS 50.433 131.017 230.0 19471231 20200624 315380 99999 SUTUR RS 50.067 132.13299999999998 347.0 19531019 20200624 315410 99999 LEVAJA KOSMUN RS 50.783 133.3 627.0 19850201 20010924 315450 99999 IRUMKA-IN-KHABAROV RS 50.683 133.95 567.0 19590104 20020719 315480 99999 VERHOVJE URMI RS 50.016999999999996 133.583 533.0 19590130 20090729 315500 99999 AMURSK RS 50.266999999999996 136.917 24.0 19850201 20050823 315520 99999 VERKHOVYE GORINA RS 50.867 136.05 314.0 19590105 19890802 315610 99999 KOMSOMOLSK-NA-AMURE RS 50.533 137.033 22.0 19361231 20200624 315620 99999 NIZNETAMBOVSKOE RS 50.933 138.2 60.0 19590130 20051114 315660 99999 SEGZEMA RS 50.333 138.467 193.0 19590106 20071203 315730 99999 SIZEMAN RS 50.733000000000004 140.433 5.0 19550423 19940409 315770 99999 SIHOTE RS 50.183 139.017 697.0 19590105 19940325 315790 99999 CAPE SYURKUM RS 50.1 140.683 109.0 19471231 20011121 315830 99999 MALINOVKA RS 49.783 129.917 116.0 19531201 20200624 315860 99999 ASTASIHA RS 49.483000000000004 129.483 126.0 19590130 20041121 315870 99999 POJARKOVO RS 49.617 128.65 115.0 19460204 20200624 315880 99999 ASTASHIKNA RS 49.483000000000004 129.467 125.9 19460307 19581207 315930 99999 KHARA-IN-AMUR RS 49.783 130.75 230.0 19590311 20020521 315940 99999 ARHARA RS 49.417 130.083 135.0 19460104 20200624 316180 99999 BIRA RS 49.016999999999996 132.467 154.0 19530216 20011015 316240 99999 URMI RS 49.4 133.233 198.0 19480101 20200624 316320 99999 KUR RS 49.933 134.63299999999998 283.0 19531202 20200624 316360 99999 NERAN RS 49.55 134.733 222.0 19471231 20000224 316380 99999 IVANKOVTSI RS 49.1 134.483 55.0 19590127 19860723 316470 99999 LITOVKO RS 49.283 135.183 71.0 19590106 20011121 316510 99999 BOLON RS 49.967 136.067 28.0 19590106 19890904 316530 99999 VERKHNIY NERGEN NW RS 49.867 136.75 15.0 19590104 19611031 316550 99999 TROICKOE RS UHHO 49.45 136.567 29.0 19471231 20200624 316610 99999 VERHNI NERGEN RS 49.867 136.767 64.0 19590130 20080420 316770 99999 SOLEKUL RS 49.016999999999996 138.75 894.0 19590104 20090403 316830 99999 TUMNIN RS 49.65 140.083 58.0 19590101 20200624 316890 99999 ALEKSEYEVKA WEST RS 49.183 139.85 536.0 19590106 19631229 317020 99999 OBLUC'E RS 49.0 131.083 257.0 19530216 20200624 317030 99999 BIRAKAN RS 49.0 131.733 267.0 19530216 20031002 317040 99999 POMPEYEVKA RS 48.35 130.8 91.0 19530216 20020213 317050 99999 DICHUN RS 48.516999999999996 130.733 116.0 19690101 20041130 317070 99999 EKATERINO-NIKOL'SKOE RS 47.733000000000004 130.967 73.0 19471231 20200624 317100 99999 LENINSKOE RS 47.95 132.61700000000002 56.0 19541201 20080915 317130 99999 BIROBIDZHAN RS 48.733000000000004 132.95 80.0 19471231 20200624 317230 99999 NOVOKUROVKA RS 48.85 134.317 80.0 19590130 19741019 317250 99999 SMIDOVICH RS 48.617 133.833 52.0 19530216 20200624 317270 99999 NADEZHDINSKOYE RS 48.3 133.2 53.0 19530216 19890819 317330 99999 ELABUGA RS 48.817 135.88299999999998 58.0 19361231 20200624 317350 99999 NOVY RS UHHH 48.528 135.188 75.0 19311231 20200624 317360 99999 HABAROVSK RS 48.533 135.233 72.0 20020515 20020515 317490 99999 CHERINAY RS 48.016999999999996 136.85 288.0 19590130 19880426 317540 99999 TIVJAKU RS 48.6 137.05 403.0 19471231 20200624 317660 99999 IOLI RS 48.65 138.983 382.0 19570702 20070205 317670 99999 GROSSEVICHI WEST RS 48.15 138.183 501.0 19550501 19620910 317700 99999 SOVETSKAYA GAVAN RS 49.0 140.3 23.8 19590130 20200624 317760 99999 KOPPI SOUTH RS 48.45 140.183 0.0 19600707 19610730 317860 99999 VJAZEMSKAJA RS 47.55 134.817 89.0 19471231 19981219 317880 99999 LERMONTOVKA RS 47.15 134.333 76.0 19530216 20021005 317900 99999 VERINO RS 47.983000000000004 135.083 85.0 19881001 20010908 317910 99999 KHOR RS 47.883 135.067 67.0 19551003 19890808 317920 99999 BICEVAJA RS 47.766999999999996 135.63299999999998 105.0 19530216 19820303 317980 99999 MATAY-IN-KHABAROV RS 47.367 135.63299999999998 182.0 19590130 19890918 318010 99999 GVASJUGI RS 47.667 136.183 180.0 19480101 20200624 318020 99999 BOGUS SOVIET RS 19890302 20030104 318150 99999 SUKPAY RS 47.683 137.483 488.0 19590102 19950602 318230 99999 GROSSEVICHI RS 47.967 139.533 3.0 19480101 20010910 318250 99999 AGZU RS 47.6 138.4 165.0 19471231 20200624 318290 99999 ZOLOTOJ RS 47.317 138.983 26.0 19530216 20101005 318320 99999 BIKIN RS 46.8 134.267 68.0 19471231 20200624 318450 99999 KRASNYJ JAR RS 46.533 135.317 130.0 19530216 20200624 318480 99999 GLUBINNOYE NORTH RS 46.1 135.4 241.0 19560101 19630405 318510 99999 GAMCANZA RS 46.683 136.267 244.0 19550423 19960709 318560 99999 ULUNGA-IN-PRIMOR RS 46.516999999999996 136.95 389.0 19550424 20020123 318590 99999 UNNAMED MOUNTAIN RS 45.967 136.63299999999998 1570.0 19550424 20020728 318660 99999 SOSUNOVO RS 46.533 138.333 4.0 19530216 20200624 318680 99999 MASOVAYA RS 46.167 137.967 105.0 19570710 19611213 318690 99999 KHUCIN RS 46.033 137.88299999999998 10.0 19590201 20050522 318730 99999 DAL'NERECHENSK RS 45.867 133.733 101.0 19471231 20200624 318750 99999 LESOZAVODSK SOUTH RS 45.467 133.417 118.0 19550423 19610426 318780 99999 KIROVSKIJ RS 45.1 133.5 97.7 19530216 20200624 318830 99999 VOSTRETSOVO/KARTON RS 45.883 134.967 150.0 19530216 20020823 318840 99999 MALINOVO RS 45.417 134.267 139.0 19480101 20011002 318880 99999 19740926 19741021 318950 99999 UST-KOLUMBE RS 45.266999999999996 135.5 335.0 19550406 19970522 319020 99999 BELKIN-IN-PRIMOR RS 45.833 137.7 103.0 19590120 20021128 319060 99999 BELENDE RS 45.3 136.983 7.0 19550404 19630319 319090 99999 TERNEJ RS 45.0 136.6 68.0 19530216 20200624 319110 99999 ... RS 44.85 131.25 19620911 19630823 319130 99999 TURIJ ROG RS 45.217 131.983 88.0 19480101 20180617 319150 99999 POGRANICHNYJ RS 44.4 131.38299999999998 211.0 19471231 20200624 319160 99999 ZHARIKOVO NORTHWEST RS 44.583 131.717 134.0 19570701 19581225 319170 99999 POLTAVKA RS 44.033 131.317 109.0 19530216 20060426 319210 99999 ASTRAHANKA RS 44.717 132.067 78.0 19530216 20200624 319240 99999 HKOROL' RS 44.433 132.067 128.0 19530216 20030918 319260 99999 SPASSK-DALNII RS 44.6 132.817 96.0 19530216 20040817 319310 99999 SVIJAGINO RS 44.8 133.083 99.0 19530216 20030217 319350 99999 JAKOVLEVKA RS 44.417 133.483 154.0 19530305 20030810 319380 99999 NOVO SYSOVENVKA RS 44.233000000000004 133.36700000000002 19550404 19751207 319390 99999 CUGUEVKA RS 44.15 133.86700000000002 259.0 19480101 20180808 319420 99999 ZURAVLEVKA RS 44.75 134.467 170.0 19530216 19980823 319430 99999 ZAVETNOJE RS 44.7 134.7 299.0 19810101 20040507 319460 99999 PEREVALNAYA RS 44.333 135.067 595.0 19550425 19751126 319530 99999 PLASTUN WEST RS 44.75 136.15 352.0 19471231 19581210 319580 99999 BOGOPOL' RS 44.25 135.45 65.0 19530216 20170303 319590 99999 RUDNAJA PRISTAN' RS 44.367 135.85 34.0 19530216 20200624 319600 99999 VLADIVOSTOK RS 43.117 131.933 183.0 19311231 20200624 319610 99999 TIMIRYAZEVSKIJ RS 43.883 131.967 37.0 19590718 20200624 319630 99999 VOROSHILOV RS 43.8 131.967 18.9 19530216 19590131 319650 99999 GUSEVKA SOUTHEAST RS 43.35 131.63299999999998 270.0 19550402 19631110 319660 99999 TEREHOVKA RS 43.55 131.88299999999998 22.0 19530216 20020224 319670 99999 KRASKINO RS 42.717 130.783 34.0 19480101 19620629 319690 99999 POS'ET RS 42.65 130.8 35.0 19560101 20200624 319700 99999 NAHODKA RS 42.8 132.86700000000002 121.0 19590102 20090328 319710 99999 GLUKHOVKA RS 43.8 132.167 19550402 19751201 319720 99999 OSINOVKA EAST RS 43.967 132.317 299.0 19590120 19610731 319740 99999 ARTEM RS 43.367 132.167 46.0 19530216 20030815 319741 99999 KNEVICHI RS UHWW 43.398999999999994 132.148 14.0 20050101 20200624 319750 99999 NOVO KHATUNIEHI RS 43.567 132.5 88.1 19530216 19740920 319760 99999 NOVO-MOSKOVSKAYA NE RS 43.35 132.8 204.0 19550304 19610420 319770 99999 VLADIVOSTOK (SAD GOROD) RS 43.266999999999996 132.05 82.0 19601201 19960603 319780 99999 ASKOLID ISLAND SOUTH RS 42.733000000000004 132.35 60.0 19590123 19620629 319810 99999 ANUCINO RS 43.967 133.067 188.0 19530216 20200624 319811 99999 ALYKEL RS UOOO 69.311 87.33200000000001 175.0 20040706 20200624 319850 99999 MOLCHANOVKA RS 43.483000000000004 133.36700000000002 267.0 19740828 20020325 319870 99999 PARTIZANSK RS 43.15 133.017 208.0 19530216 20200624 319890 99999 PREOBRAZHENIE RS 42.9 133.9 43.0 19480101 20200624 319930 99999 FURMANOVO-IN-PRIMOR RS 43.983000000000004 134.683 234.0 19530216 20200205 319940 99999 BEREZNJAKI RS 43.583 134.167 509.0 19530216 20191214 319950 99999 SHCHERBAKOVKA RS 43.567 134.63299999999998 149.0 19880301 20200417 319960 99999 MARGARITOVO RS 43.433 134.767 25.0 19320101 20071111 319970 99999 BUKHTA VALENTINA RS 43.117 134.333 27.1 19530216 19540828 319990 99999 MORYAK-RYBOLOV NORTH RS 43.367 134.8 2.0 19480101 19551231 320040 99999 RYBNOVSK RS 53.25 141.917 4.0 19550305 20020716 320050 99999 BOGUS SOVIET RS 19850629 20010921 320100 99999 OHA RS 53.5 142.9 38.0 19361231 20200624 320110 99999 NYVROVO RS 54.333 142.6 19620903 19620903 320120 99999 CAPE YELIZAVETI RS 54.417 142.717 77.0 19560311 20050917 320130 99999 KAJGAN RS 53.567 142.75 4.0 19810101 20040903 320140 99999 MOSKALVO RS 53.65 142.61700000000002 4.0 19550305 20080504 320210 99999 PYRKI SAKHALIN RS 52.833 141.5 19550305 19570624 320270 99999 POGIBI RS 52.217 141.63299999999998 6.0 19530216 20200624 320360 99999 CAJVO RS 52.367 143.183 6.0 19550306 20040903 320430 99999 OLENEVOD NORTHEAST RS 51.833 142.333 147.0 19550305 19570629 320450 99999 VIAHTU RS 51.6 141.9 14.0 19471231 19580724 320530 99999 NOGLIKI RS 51.917 143.13299999999998 34.0 19471231 20200624 320570 99999 ADO-TYMOVO RS 51.133 142.667 66.0 19530216 20030213 320590 99999 KONGI RS 51.1 143.55 15.0 19590113 20040903 320610 99999 ALEKSANDROVSK-SAHALINSKIJ RS 50.9 142.167 31.0 19311231 20200624 320690 99999 PIL'VO RS 50.05 142.167 4.0 19530216 20200624 320710 99999 TYMOVSKOE RS 50.733000000000004 142.717 95.0 19530216 20040903 320760 99999 POGRANICHNOE RS 50.4 143.767 8.0 19471231 20200624 320770 99999 ONOR RS 50.233000000000004 142.583 181.0 19471231 20040903 320850 99999 LESOGORSK SOUTHEAST RS 49.433 142.13299999999998 131.0 19550305 19570629 320880 99999 UGLEGORSK RS 49.067 142.033 43.0 19480101 20040903 320910 99999 SMIRNYKH RS 49.75 142.833 81.0 19471231 19610224 320930 99999 PESKOYSKIY NORTHWEST RS 49.967 143.817 316.0 19530216 19591020 320960 99999 VLADI-MIROVO RS 49.283 143.967 5.0 19550305 20020327 320980 99999 PORONAJSK RS 49.217 143.1 8.0 19530216 20200624 320990 99999 MYS TERPENIYA RS 48.65 144.733 6.0 19480103 20200624 321050 99999 KRASHOGORSK RS 48.4 142.1 3.0 19530216 19631031 321160 99999 MAKAROV RS 48.65 142.85 38.0 19550305 19991204 321180 99999 VOSTOCHNY SAKH /MOTO DOMARI RS 48.283 142.63299999999998 6.1 19530216 19581103 321210 99999 ILYINSKIY RS 47.983000000000004 142.2 18.0 19530216 20200624 321240 99999 CHEKHOV WEST RS 47.45 141.817 0.0 19550305 19570629 321280 99999 HOLMSK RS 47.05 142.05 44.0 19530216 20180808 321310 99999 VEMORYE RS 47.85 142.533 0.0 19550305 19570629 321330 99999 DOLINSK RS 47.333 142.8 11.0 19480101 20040903 321360 99999 STARO-DUBSKOYE RS 47.417 142.817 70.0 19550305 19791023 321450 99999 NEVELSK RS 46.617 141.95 6.0 19480101 20040903 321480 99999 DALNYAYA RS 45.9 142.083 0.0 19550307 19570629 321490 99999 CAPE KRYLJON RS 45.9 142.083 45.0 19590102 20020910 321500 99999 KHOMUTOVO RS UHSS 46.888999999999996 142.718 18.0 19530216 20200624 321520 99999 SVOBODNAYA NORTHEAST RS 46.867 143.65 0.0 19550305 19570626 321530 99999 SVOBODNAYA NORTH RS 46.85 143.433 8.0 19550305 19610424 321560 99999 KORSAKOV RS 46.633 142.85 34.0 19550305 20040903 321580 99999 JUZNOJE (LGT-H) RS 46.217 143.45 21.0 19590819 20040903 321650 99999 JUZHNO-KURIL'SK RS 44.016999999999996 145.86700000000002 49.0 19530216 20200624 321660 99999 MALO-KURILSKOJE RS 43.75 146.667 65.0 19530216 19990518 321680 99999 SUISHO-TO RS 43.433 145.917 18.0 19550315 19631224 321740 99999 KURILSK RS 45.266999999999996 147.967 38.0 19480101 20040903 321760 99999 19740827 19751020 321860 99999 URUP RS 46.2 150.5 76.0 19530216 20020315 321950 99999 SIMUSIR RS 46.85 151.86700000000002 25.0 19480129 19981106 322050 99999 SEVERGINO SOUTHEAST RS 49.117 154.533 489.0 19480102 19530215 322070 99999 MATUA RS 48.067 153.217 58.0 19480103 19960710 322110 99999 ... RS 50.883 154.967 19620923 19631004 322120 99999 DEVYATKA WEST RS 50.833 155.483 11.0 19590607 19620831 322130 99999 MYS LOPATKA RS 50.867 156.683 47.0 19460101 20200624 322150 99999 SEVERO-KURIL'SK RS 50.683 156.13299999999998 23.0 19480102 20200624 322170 99999 CAPE VASILEVA RS 50.0 155.38299999999998 16.0 19530216 20050730 322210 99999 KINKIL RS 59.35 160.38299999999998 30.0 19550501 19700718 322220 99999 TEVI RS 59.6 160.733 18.5 20120530 20151020 322270 99999 PALANA RS 59.117 159.967 19.0 19550501 19940411 322460 99999 OSSORA RS 59.25 163.033 3.0 19550501 19860731 322520 99999 UST'-VOYAMPOLKA RS 58.5 159.167 7.0 19550501 20200624 322850 99999 PTICHIY ISLAND RS 57.167 156.6 15.0 19570802 19870524 322870 99999 UST'- HAJRJUZOVO RS 57.083 156.7 8.0 19550501 20200624 322930 99999 TIGIL RS 57.8 158.667 12.0 19550501 19860219 323310 99999 UKA-IN-KAMCHAT RS 57.833 162.1 3.0 19590101 19860618 323330 99999 OZERNOY (MYS) RS 57.65 163.233 9.1 19550501 20200624 323630 99999 ESSO RS 55.933 158.667 481.0 19550501 19860706 323790 99999 KOZYREVSK RS 55.983000000000004 159.983 45.0 19350302 19891122 323890 99999 KLJUCHI RS 56.317 160.833 29.0 19530216 20200616 324080 99999 UST'-KAMCHATSK RS 56.217 162.717 27.0 19480101 20200624 324090 99999 CAPE AFRIKA RS 56.167 163.317 14.0 19600104 20090109 324110 99999 ICA RS 55.583 155.583 6.0 19550503 20200624 324470 99999 DOLINOVKA RS 55.117 159.067 100.0 19550501 19960107 324770 99999 SOBOLEVO RS 54.3 155.933 14.0 19550501 20200618 324960 99999 MILKOVO RS 54.717 158.717 125.0 19550501 20170702 324970 99999 PUSHCHINO RS 54.167 158.0 318.0 19550501 20190425 325090 99999 SEMYACHIK RS 54.117 159.983 27.0 19460402 20200624 325110 99999 KRONOTSKY RS 54.717 160.35 366.0 19550501 19630919 325190 99999 KRONOKI RS 54.617 161.2 15.9 19550501 20150512 325240 99999 KIKHCHIK KAMCHATKA RS 53.467 156.033 7.9 19480101 19710630 325320 99999 GANALI-IN-KAMCHAT RS 53.7 157.63299999999998 292.0 19550501 19860710 325380 99999 ... RS 53.1 157.65 19610801 19621005 325390 99999 NACHIKI-IN-KAMCHAT RS 53.117 157.75 325.0 19550501 19860618 325400 99999 YELIZOVO RS UHPP 53.168 158.454 39.9 19320101 20200624 325470 99999 KORVAKI RS 53.283 158.2 84.0 19740601 19860618 325480 99999 JELIZOVO RS 53.0 158.333 22.0 19550501 19740924 325590 99999 CAPE SHIPUNSKIY RS 53.1 160.033 88.0 19550501 20191213 325620 99999 BOL'SHERETZK RS 52.833 156.3 30.0 19530216 20200624 325640 99999 OKTIABR'SKAYA RS 52.667 156.233 6.0 19480102 20040731 325690 99999 UST-BOLSHERETSK SE RS 52.283 157.0 34.0 19550501 19581012 325710 99999 APACA RS 52.833 157.167 110.0 19550501 19860813 325830 99999 PETROPAVLOVSK-KAMCHATSKIJ RS 52.867 158.65 24.0 19460403 20200624 325860 99999 CAPE POVOROTNIY RS 52.367 158.567 18.0 19590130 20030421 325890 99999 PETROPAVLOVSK SOUTH RS 52.333 158.583 3.0 19550509 19600525 325930 99999 GOLYGINO RS 51.867 156.7 13.0 19550501 19570624 325940 99999 OZERNAJA RS 51.483000000000004 156.483 28.0 19530216 20200624 325950 99999 19731120 19731120 325960 99999 HODUTKA RS 51.783 158.033 18.0 19570701 20050413 326110 99999 OSTROV KARAGINSKIY RS 50.0 163.917 6.1 19530401 19680630 326180 99999 OSTROV BERINGA RS 55.2 165.983 18.0 19320801 20200624 326230 99999 PRE-OBRAZHENSKOYE RS 54.783 167.6 4.0 19480101 19710630 330001 99999 LUHANSK INTL UP UKCW 48.417 39.374 193.9 20040510 20140608 330002 99999 DONETSK INTL UP UKCC 48.074 37.74 241.1 20040510 20140603 330003 99999 LOZUVATKA INTL UP UKDR 48.043 33.21 124.4 20040510 20200624 330004 99999 DNIPROPETROVSK INTL UP UKDD 48.357 35.101 146.6 20040510 20200624 330005 99999 IVANO FRANKIVSK UP 48.883 24.683000000000003 287.0 20040510 20200624 330010 99999 VYSOKOJE BO 52.367 23.433000000000003 163.0 19610207 20020725 330080 99999 BREST BO UMBB 52.108000000000004 23.898000000000003 142.6 19310110 20200624 330150 99999 TELEKHANI BO 52.516999999999996 25.85 155.0 19811101 20030124 330190 99999 PINSK BO 52.117 26.116999999999997 142.0 19290802 20200624 330270 99999 ZHITCKOVICHI BO 52.217 27.866999999999997 137.0 19460403 20200624 330360 99999 MOZYR BO 52.036 29.166999999999998 190.0 19590101 20200624 330380 99999 VASILEVICHI BO 52.25 29.833000000000002 142.0 19320101 20200624 330410 99999 GOMEL BO UMGG 52.527 31.017 143.9 19550101 20200624 330420 99999 ZLYNKA RS 52.483000000000004 31.666999999999998 138.0 19320101 20030305 330490 99999 SEMENOVKA UP 52.183 32.583 161.0 19590101 20170908 330580 99999 DRUZHBA UP 52.05 33.95 190.0 19690101 20160614 330670 99999 SVITYAZ UP 51.483000000000004 23.85 164.0 19590101 20160614 330750 99999 PNEVNO UP 51.667 25.267 152.0 19840106 20020331 330880 99999 SARNY UP 51.283 26.616999999999997 156.0 19480101 20200624 331050 99999 LELOIOV BO 51.783 28.333000000000002 141.0 19570701 20010908 331240 99999 BRAGIN BO 51.817 30.248 116.0 19610203 20200624 331350 99999 CHERNIHIV UP 51.467 31.25 141.0 19460102 20200624 331360 99999 VOLSKOVTSKY UP 51.567 31.967 143.0 19840115 20011222 331490 99999 BOGUS UKRAINIAN UP 19840606 19841206 331560 99999 GLUKHOV UP 51.683 33.917 180.0 19840602 19980420 331730 99999 KOVEL' UP 51.217 24.683000000000003 174.0 19590101 20160614 331770 99999 VOLODYMYR-VOLYNS'KYI UP 50.833 24.316999999999997 194.0 19590101 20200624 331820 99999 MANEVICHI UP 51.283 25.533 183.0 19790601 20011222 331870 99999 LUTS'K UP 50.7 25.5 232.0 19310105 20160614 332030 99999 OLEVSK UP 51.217 27.633000000000003 183.0 19550101 20160614 332130 99999 OVRUCH UP 51.317 28.783 170.0 19480101 20160614 332150 99999 KOROSTEN UP 50.95 28.65 189.0 19790701 20021222 332220 99999 VOLYA UP 51.233000000000004 29.383000000000003 137.0 19840602 19940512 332280 99999 TETERIV UP 50.7 29.583000000000002 132.0 19590101 20160614 332310 99999 CHORNOBYL' UP 51.283 30.233 127.0 19550101 20160614 332360 99999 OSTER UP 50.95 30.883000000000003 104.0 19840607 20160602 332460 99999 NIZHYN UP 51.05 31.9 126.0 19550101 20160614 332610 99999 KONOTOP UP 51.233000000000004 33.2 149.0 19361231 20200624 332680 99999 ROMNY UP 50.766999999999996 33.45 169.0 19590101 20160614 332710 99999 BELOPOL'E UP 51.15 34.333 156.0 19590101 19890717 332750 99999 SUMY UP 50.85 34.667 181.0 19460307 20200624 332870 99999 RAVA-RUS'KA UP 50.25 23.633000000000003 251.0 19590101 20160614 332880 99999 KAMENKA-BUGSKAYA UP 50.1 24.35 228.0 19590101 20010124 332960 99999 DUBNO UP 50.417 25.75 216.0 19890701 20160602 332970 99999 BRODY UP 50.1 25.15 228.0 19590101 20160614 332990 99999 KREMENETS UP 50.133 25.733 259.0 19630201 20160614 333010 99999 RIVNE INTL UP UKLR 50.607 26.142 230.1 19590101 20200624 333011 99999 UZHHOROD UP 48.633 22.267 120.0 20040713 20081231 333012 99999 MYKOLAIV UP 47.05 31.916999999999998 58.0 20040713 20200624 333120 99999 NOVOHRAD-VOLYNS'KYI UP 50.6 27.633000000000003 218.0 19590101 20160614 333170 99999 SHEPETIVKA UP 50.167 27.033 278.0 19361231 20200624 333250 99999 ZHYTOMYR UP 50.233000000000004 28.733 224.0 19480102 20200624 333390 99999 FASTOV UP 50.083 29.916999999999998 209.0 19800402 20011222 333450 99999 ZHULIANY INTL UP UKKK 50.402 30.451 178.6 19320101 20200624 333451 99999 ANTONOV INTL UP UKKM 50.603 30.191999999999997 157.6 20040713 20200624 333460 99999 KIEV/BORISPOL UP 50.35 30.916999999999998 125.0 19590101 19900424 333463 99999 KIEV/BORISPOL UP 50.35 30.916999999999998 125.0 19900424 19901218 333470 99999 BORYSPIL INTL UP UKBB 50.345 30.895 130.1 19610404 20200624 333530 99999 BOGUS SOVIET UP 19910403 20030511 333560 99999 YAHOTYN UP 50.217 31.8 128.0 19590101 20160614 333620 99999 PRILUKY UP 50.583 32.383 133.0 19550101 20160614 333680 99999 GREBENKA UP 50.133 32.45 114.0 19590101 19880502 333740 99999 LOHVICA UP 50.367 33.266999999999996 127.0 19840112 19890930 333760 99999 HADIACH UP 50.367 33.983000000000004 154.0 19590101 20160614 333770 99999 LUBNY UP 50.0 33.016999999999996 158.0 19460101 20200624 333820 99999 LEBEDIN UP 50.583 34.483000000000004 142.0 19890701 19990327 333910 99999 MOSTISKA UP 49.8 23.15 216.0 19590101 20020609 333920 99999 YAVOROV UP 49.933 23.383000000000003 229.0 19890701 19940420 333930 99999 LVIV INTL UP UKLL 49.813 23.956 326.4 19280102 20200624 333931 99999 CHERNIVTSI UP 48.25 25.983 258.0 20040713 20081231 333980 99999 DROHOBYCH UP 49.35 23.517 276.0 19590101 20160614 334090 99999 BEREZHANY UP 49.433 24.95 304.0 19590101 20160614 334150 99999 TERNOPIL' UP 49.533 25.666999999999998 329.0 19340329 20200624 334210 99999 YAMPOL' UP 49.967 26.25 282.0 19890701 19950725 334290 99999 KHMEL'NYTS'KYI UP 49.433 26.983 350.0 19550101 20200624 334390 99999 KHMELNYK UP 49.567 27.933000000000003 284.0 19810101 20160614 334460 99999 BILOPILLJA UP 49.833 28.883000000000003 258.0 19550101 20160614 334640 99999 BILA TSERKVA UP 49.75 30.116999999999997 180.0 19590101 20160614 334660 99999 MYRONIVKA UP 49.667 31.0 153.0 19480101 20200624 334840 99999 ZOLOTONOSHA UP 49.683 32.516999999999996 96.0 19590101 20160602 334870 99999 CHERKASY UP 49.417 32.05 107.0 19590101 20040116 334950 99999 VESELYI PODIL UP 49.617 33.266999999999996 96.0 19550103 20160614 335020 99999 BOGUS SOVIET UP 19910402 20030325 335060 99999 POLTAVA UP 49.6 34.55 160.0 19361231 20200624 335100 99999 BOGUS SOVIET UP 19910401 20030507 335110 99999 TURKA UP 49.15 23.033 594.0 19550101 20160614 335130 99999 STRYY UP 49.25 23.85 306.0 19890703 20160602 335140 99999 VELIKIY BEREZNY UP 48.9 22.467 195.0 19590101 20021126 335150 99999 SKOLE UP 49.033 23.517 549.0 19740419 20030513 335160 99999 SLAVSKE UP 48.85 23.45 592.0 19590101 20160614 335170 99999 PERECHIN UP 48.733000000000004 22.467 198.0 19590101 20021126 335240 99999 KALUSH UP 49.016999999999996 24.366999999999997 285.0 19890701 20030523 335260 99999 IVANO-FRANKIVS'K UP 48.967 24.4 280.0 19480101 20081231 335360 99999 CHORTKIV UP 49.016999999999996 25.8 318.0 19590101 20160614 335460 99999 BOGUS SOVIET UP 19910403 20010913 335480 99999 KAMIANETS'-PODIL' SKYI UP 48.65 26.666999999999998 222.0 19320101 20160614 335500 99999 BOGUS SOVIET UP 19910403 20010810 335570 99999 NOVA USHYTSIA UP 48.85 27.267 290.0 19590101 20160614 335620 99999 VINNYTSIA UP 49.233000000000004 28.6 298.0 19460403 20200624 335640 99999 ZHMERYNKA UP 49.016999999999996 28.133000000000003 313.0 19690101 20160614 335710 99999 LIPOVEC UP 49.25 29.233 299.0 19590101 20041204 335770 99999 HAISYN UP 48.8 29.4 211.0 19590101 20160614 335810 99999 ZHASHKIV UP 49.233000000000004 30.1 235.0 19790701 20160614 335830 99999 BOGUS SOVIET UP 19910408 20030131 335860 99999 ZVENIHORODKA UP 49.083 30.9 215.0 19590101 20160614 335870 99999 UMAN' UP 48.766999999999996 30.233 216.0 19320101 20200624 335930 99999 ROTMISTROVKA UP 49.133 31.7 168.0 19890701 20020809 335980 99999 NOVO-MYRHOROD UP 48.833 31.65 179.0 19590101 20160614 336050 99999 CHYHYRYN UP 49.083 32.667 124.0 19690101 20160614 336090 99999 ZNAMIANKA UP 48.717 32.667 181.0 19590101 20160614 336140 99999 SVITLOVODS'K UP 49.05 33.25 84.0 19950315 20200624 336150 99999 KREMENCUG UP 49.033 33.433 80.0 19590101 20021102 336210 99999 KOBELIAKY UP 49.15 34.2 118.0 19590101 20160614 336310 99999 UZHHOROD UP 48.633 22.267 124.0 19550101 20200624 336340 99999 BEREHOVE UP 48.2 22.65 113.0 19590101 20160614 336380 99999 KHUST UP 48.183 23.3 164.0 19590101 20160614 336450 99999 YASNYA UP 48.266999999999996 24.366999999999997 731.0 19590101 20011222 336460 99999 BOGUS SOVIET UP 48.067 24.183000000000003 19610805 19910926 336470 99999 RAKHIV UP 48.05 24.2 430.0 19590101 20160614 336510 99999 KOLOMYIA UP 48.533 25.033 298.0 19550103 20160614 336570 99999 SELIATYN UP 47.867 25.217 763.0 19590101 20160614 336580 99999 CHERNIVTSI UP 48.367 25.9 246.0 19360101 20200624 336630 99999 MOHYLIV-PODIL'S'KYI UP 48.45 27.783 78.0 19590101 20200624 336640 99999 BRICENI MD 48.35 27.083000000000002 261.0 19590101 20200624 336760 99999 GORYACHKOVKA UP 48.333 28.75 229.0 19790701 19890915 336780 99999 SOROCA MD 48.2 28.3 173.0 19550101 20200624 336790 99999 CAMENCA MD 48.033 28.7 154.0 19620209 20200624 336860 99999 HAIVORON UP 48.35 29.85 150.0 19590101 20160614 336990 99999 PERVOMAIS'K UP 48.05 30.85 103.0 19590101 20181209 337050 99999 POMICHNA UP 48.233000000000004 31.4 211.0 19790601 20160602 337110 99999 KIROVOHRAD UP 48.516999999999996 32.2 171.0 19361231 20200624 337170 99999 BOBRYNETS' UP 48.067 32.15 143.0 19590101 20160614 337175 99999 MARCULESTI INTL MD LUBM 47.867 28.217 95.1 20100214 20200621 337230 99999 KOMISARIVKA UP 48.433 33.9 118.0 19590101 20160614 337440 99999 FALESTI MD 47.583 27.7 162.0 20070809 20200624 337450 99999 BALTI MD 47.783 27.95 102.0 19480101 20200624 337480 99999 CORNESTI MD 47.333 28.083000000000002 232.0 19590101 20200624 337490 99999 BRAVICEA MD 47.367 28.433000000000003 78.0 20070809 20200624 337540 99999 RIBNITA MD 47.766999999999996 29.017 119.0 19590101 20200624 337590 99999 ZATIS'E UP 47.333 29.883000000000003 191.0 19590101 19891109 337610 99999 LIUBASHIVKA UP 47.85 30.267 183.0 19480401 20200624 337770 99999 VOZNESENS'K UP 47.567 31.333000000000002 34.0 19480102 20160614 337880 99999 BASTANKA UP 47.417 32.467 84.0 19590101 20020408 337910 99999 KRYVYI RIH UP 48.033 33.217 124.0 19480101 20200624 338050 99999 NIKOPOL' UP 47.583 34.45 55.0 19460701 20160602 338100 99999 CODRII MD 47.117 28.366999999999997 157.0 20060819 20191020 338150 99999 CHISINAU MD UKII 47.016999999999996 28.983 173.0 19360101 20200624 338151 99999 CHERKASY UP 49.417 31.983 117.0 20040713 20190118 338170 99999 KARPINENY MD 46.75 28.35 78.0 19590101 20010718 338210 99999 DUBASARI MD 47.283 29.133000000000003 40.0 20070809 20200624 338240 99999 BALTATA MD 47.05 29.033 79.0 20060819 20191020 338290 99999 TIRASPOL MD 46.9 29.6 40.0 20070809 20200624 338300 99999 BELGORDO-ONIESTROVSKIY UP 46.2 30.366999999999997 19590101 19631020 338330 99999 SERBKA UP 47.016999999999996 30.75 73.0 19590101 20160602 338340 99999 ROZDIL'NA UP 46.85 30.083000000000002 148.0 19460210 20160602 338370 99999 ODESA INTL UP UKOO 46.427 30.676 52.4 19320101 20200624 338380 99999 BOGUS UKRAINIAN UP 19761001 20020513 338387 99999 CHISINAU INTL MD LUKK 46.928000000000004 28.930999999999997 121.6 19990114 20200624 338388 99999 BALTI INTL MD LUBL 47.838 27.781 231.0 20050704 20180626 338390 99999 SVERDLOVO UP 46.667 30.883000000000003 21.0 19590101 19751128 338450 99999 TILIGULO-BEREZANKA UP 46.833 31.4 42.0 19590101 19891216 338460 99999 MIKOLAIV UP 47.033 31.95 50.0 19550101 20040116 338480 99999 OCHAKOV UP 46.633 31.55 41.0 19600128 20011222 338620 99999 VELYKA OLEKSANDRIVKA UP 47.317 33.283 56.0 19550101 20160614 338690 99999 NOVA KAKHOVKA UP 46.783 33.367 25.0 19590101 20160614 338770 99999 NIZHNI SIROHOZY UP 46.85 34.4 53.0 19590101 20160602 338810 99999 LEOVA MD 46.483000000000004 28.283 156.0 19590101 20200624 338830 99999 KOMRAT MD 46.3 28.633000000000003 133.0 19590101 20200624 338850 99999 CAHUL MD LUCH 45.883 28.233 113.0 19590101 20200624 338860 99999 CEADIR-LUNGA MD 46.1 28.9 180.0 20070809 20200624 338870 99999 BOLGRAD UP 45.667 28.616999999999997 81.0 19480101 20050407 338890 99999 IZMAIL UP 45.367 28.85 30.0 19590101 20160614 338920 99999 STEFAN-VODA MD 46.516999999999996 29.483 173.0 19840106 20200624 338930 99999 OLONESTY MD 46.5 29.866999999999997 111.0 19590101 19830517 338960 99999 SARATA UP 46.016999999999996 29.666999999999998 14.0 19590101 20160602 338980 99999 TATARBUNARY UP 45.817 29.583000000000002 40.0 19590101 19891109 339020 99999 KHERSON UP 46.633 32.567 54.0 19320101 20200624 339070 99999 BEKHTERY UP 46.25 32.3 7.0 19590101 20160602 339090 99999 SKADOVSK RS 46.1 32.917 4.0 19590101 19631125 339100 99999 HENICHES'K UP 46.167 34.817 15.0 19320106 20160614 339110 99999 BOGUS SOVIET UP 19870301 20020521 339150 99999 ASKANIIA-NOVA UP 46.45 33.883 30.0 19590101 20160614 339170 99999 PRIMORSKIY UP 46.05 33.45 12.0 19890701 20011104 339210 99999 STEREGUSCIJ UP 45.75 33.217 16.0 19590101 19891225 339220 99999 NOVO-SELOVSKOYE UP 45.45 33.6 15.0 19840501 20021110 339240 99999 CHORNOMORS'KE UP 45.516999999999996 32.7 10.0 19361231 20200624 339290 99999 YEVPATORIIA UP 45.183 33.367 6.0 19590101 20150327 339330 99999 CHOKRAK UP 45.9 34.867 6.0 19590101 20011222 339340 99999 DZANKOJ UP 45.717 34.4 8.0 19550101 20021223 339350 99999 VORONKI UP 45.6 33.55 88.0 19590101 19840314 339390 99999 KLEPYNINE UP 45.65 34.2 37.0 19890701 20150331 339450 99999 POSHTOVE UP 44.833 33.95 176.0 19831210 20150327 339460 99999 SIMFEROPOL' UP UKFF 44.683 34.133 181.0 19360101 20200624 339590 99999 ALUSHTA UP 44.683 34.433 7.0 19590101 20150327 339600 99999 SOVETSKIY UP 45.35 34.95 18.0 19600101 20040624 339610 99999 AZOVSKOYE UP 45.55 34.55 27.0 19480101 19940613 339620 99999 NYZHNIOHIRS'K UP 45.45 34.733000000000004 20.0 19590101 20150327 339660 99999 KRYMS'KA UP 45.05 34.6 205.0 19590101 20150327 339690 99999 SUDAK UP 44.85 34.967 59.1 19590101 19630821 339730 99999 VLADISLAVOVKA UP 45.167 35.383 37.0 19590101 20020725 339760 99999 FEODOSIIA UP 45.033 35.383 26.0 19320103 20150331 339810 99999 CAPE KAZANTIP (LH) UP 45.467 35.867 101.0 19610404 20011222 339830 99999 KERCH UP 45.4 36.417 49.0 19320101 20200624 339900 99999 YALTA UP 44.483000000000004 34.167 72.0 19480102 20150331 339920 99999 BAHCISARAJ UP 44.75 33.867 201.0 19590101 20011117 339940 99999 SEVASTOPOL/BELBEK UP 44.683 33.567 85.0 19320101 19980504 339950 99999 BOGUS SOVIET UP 19890701 19920703 339960 99999 GURZUF UP 44.55 34.283 61.0 19590101 20011104 339980 99999 AI-PETRI UP 44.433 34.083 1180.0 20150327 20200624 339990 99999 AY-PETRI MTN UP 44.467 34.067 1180.0 19320503 20011009 340030 99999 PONYRI RS 52.317 36.3 251.0 19590101 20200624 340090 99999 KURSK RS 51.766999999999996 36.167 247.0 19320101 20200624 340130 99999 LIVNY RS 52.433 37.6 179.0 19590101 20200624 340270 99999 NOVO-KASTORNOE RS 51.783 38.133 191.0 19590103 19940216 340360 99999 LENIN SOVKHOZ RS 52.25 40.667 160.0 19600103 19631216 340470 99999 ZERDEVKA RS 51.833 41.483000000000004 147.0 19320101 20200624 340490 99999 MUCHKAPSKIY SW RS 51.85 42.467 108.0 19590101 19631231 340560 99999 RTISCEVO RS 52.25 43.783 213.0 19590101 20200613 340630 99999 PETROVSK RS 52.283 45.4 199.0 19620603 19950405 340690 99999 ATKARSK RS 51.867 45.033 206.0 19590101 19800115 340720 99999 KARABULAK RS 52.333 46.367 302.0 19620601 20200525 340830 99999 HVALYNSK RS 52.5 48.083 88.0 19620813 20200608 340840 99999 VOLSK RS 52.067 47.35 199.9 19591101 19631218 340850 99999 BALAKOVO RS 52.033 47.75 30.0 19740904 20030112 340980 99999 PUGACEV RS 52.033 48.833 38.0 19480101 20200502 341090 99999 OBOJAN' RS 51.2 36.317 192.0 19910907 20200624 341100 99999 BOGORODITSKOE-FENINO RS 51.167 37.35 226.0 20090128 20200624 341160 99999 STARYJ OSKOL RS 51.3 37.883 218.0 19460309 20020807 341220 99999 CHERTOVITSKOYE RS UUOO 51.81399999999999 39.23 156.7 19320101 20200624 341230 99999 VORONEZ RS 51.7 39.217 149.0 19940802 20200624 341390 99999 KAMENNAJA STEP' RS 51.05 40.7 194.0 20120731 20200624 341460 99999 BORISOGLEBSK RS 51.367 42.083 106.0 19600129 20200624 341520 99999 BALASHOV RS 51.55 43.15 159.0 19320101 20200622 341630 99999 OKTJABR'SKIJ GORODOK RS 51.633 45.45 201.0 20070226 20200621 341640 99999 KALININSK RS 51.5 44.5 229.0 19740820 19800217 341680 99999 MEDVEDITSA RS 51.083 44.817 19620609 19630811 341710 99999 GAGARIN RS UWSG 51.713 46.17100000000001 31.4 20110331 20200624 341720 99999 TSENTRALNY RS UWSS 51.565 46.047 152.1 19320101 20190820 341760 99999 19870518 19870518 341860 99999 ERSHOV RS 51.367 48.3 111.0 19570701 20200515 341990 99999 OZINKI RS 51.2 49.733000000000004 104.0 19591006 20200607 342020 99999 GOTNJA RS 50.8 35.766999999999996 226.0 19590101 20200624 342130 99999 NOVYJ OSKOL RS 50.75 37.867 140.0 19590101 20030709 342140 99999 BELGOROD RS 50.633 36.583 224.0 19590103 20130430 342310 99999 LISKI RS 51.0 39.5 115.0 19590103 20200624 342330 99999 BUTURL INOVKA RS 50.817 40.633 132.0 19590101 19631211 342380 99999 ANNA RS 51.483000000000004 40.417 154.0 19590101 20200624 342400 99999 URJUPINSK RS 50.8 42.0 110.0 19530216 20200621 342470 99999 KALAC RS 50.417 41.05 92.0 19600101 20200624 342530 99999 ELAN' RS 50.95 43.733000000000004 132.0 20120731 20200610 342540 99999 NOVOANNENSKIJ RS 50.533 42.683 98.0 19610805 20200618 342620 99999 RUDNYA RS 50.833 44.567 114.0 19590103 20200523 342670 99999 DANILOVKA RS 50.367 44.117 102.0 19600401 20200619 342710 99999 ZOLOTOE RS 50.817 45.883 43.0 19611206 19800117 342730 99999 KRASNYJ KUT RS 50.95 46.967 50.0 19620803 20200604 342890 99999 NOVOUZENSK RS 50.483000000000004 48.133 32.0 19740821 19800113 343000 99999 OSNOVA INTL UP UKHH 49.925 36.29 154.8 19320101 20200624 343020 99999 BOHODUKHIV UP 50.2 35.533 203.0 19590101 20160614 343040 99999 KOLOMAK UP 49.85 35.233000000000004 180.0 19590101 20160614 343070 99999 ARTEMOVKA UP 49.766999999999996 35.067 152.0 19620204 20060611 343120 99999 VELYKYI BURLUK UP 50.067 37.383 175.0 19590101 20160614 343170 99999 BOGUS SOVIET UP 19840112 19920413 343190 99999 KUPIANS'K UP 49.633 37.7 83.0 19590101 20160614 343210 99999 VALUJKI RS 50.217 38.1 112.0 19480501 20200624 343310 99999 ROSSOSH RS 50.2 39.567 92.0 19570701 19631217 343360 99999 BOGUCAR RS 49.933 40.567 84.0 19361231 20200624 343440 99999 KAZANSKAJA RS 49.8 41.15 72.0 19610907 20200429 343480 99999 VESHENSKAYA RS 49.617 41.733000000000004 19610805 19630731 343510 99999 BOGUS SOVIET RS 19910401 20030223 343560 99999 FROLOVO RS 49.8 43.667 119.0 19610802 20200620 343570 99999 SERAFIMOVIC RS 49.567 42.75 200.0 19460403 20200616 343580 99999 BOGUS SOVIET RS 19910407 20021223 343630 99999 KAMYSIN RS 50.067 45.367 119.0 19320101 20200623 343680 99999 GORNIY BALIKLEY RS 49.55 45.083 43.0 19610805 19840507 343730 99999 PALLASOVKA RS 50.05 46.883 37.0 19610802 20200607 343850 99999 ASCE UZJAK KZ 49.766999999999996 47.75 18.0 19590101 19901129 343910 99999 ALEKSANDROV-GAJ RS 50.15 48.55 25.0 19320101 20200623 343940 99999 DZHAMBALA SOUTH KZ 49.783 48.533 13.0 19630301 20200624 343980 99999 ZHALPAKTAL KZ 49.667 49.483000000000004 10.0 19590101 20200624 344010 99999 KRASNOHRAD UP 49.383 35.45 159.0 19590101 20160614 344070 99999 HUBYNYKHA UP 48.8 35.25 127.0 19590101 20160614 344090 99999 LOZOVA UP 48.9 36.317 177.0 19590101 20160614 344110 99999 BALAKLEYA SOUTHWEST UP 49.45 36.85 78.0 19590101 19620114 344150 99999 IZIUM UP 49.183 37.3 78.0 19320101 20200624 344190 99999 KRASNY LIMAN UP 48.983000000000004 37.783 107.0 19590101 20021125 344210 99999 SVATOVE UP 49.417 38.167 89.0 19840520 20160602 344220 99999 STAROBEL'SK UP 49.283 38.917 64.0 19590101 19900710 344320 99999 CERTKOVO RS 49.383 40.167 145.0 19590101 19950621 344340 99999 BILOVODS'K UP 49.217 39.583 75.0 19590101 20160602 344380 99999 MILLEROVO RS 48.933 40.383 155.0 19480505 20200614 344450 99999 BOKOVSKAJA RS 49.217 41.833 91.0 19610805 20200621 344610 99999 ILOVLJA RS 49.3 44.0 44.4 19611101 20200529 344730 99999 OZHANYBEK KZ 49.433 46.85 19590110 19631230 344731 99999 JANIBEK KZ 49.4 46.8 28.0 20180625 20200624 344760 99999 EL'TON RS 49.133 46.85 6.0 19600101 20200428 344990 99999 NOVAJA KAZANKA KZ 48.967 49.617 -2.0 19590101 19890923 345000 99999 P0DGORODNOYE UP 48.55 35.05 61.0 19570926 19631230 345020 99999 PAVLOGRAD UP 48.533 35.833 91.0 19771001 20160602 345040 99999 DNIPROPETROVS'K UP 48.6 34.967 143.0 19320101 20200624 345050 99999 BOGUS SOVIET UP 19890703 19920915 345090 99999 CHAPLYNE UP 48.133 36.233000000000004 175.0 19480104 20160614 345100 99999 ARTEMIVS'K UP 48.6 37.983000000000004 124.0 19590101 20160614 345140 99999 ALEKSANDROPOL UP 48.6 36.55 125.0 19840112 20020605 345150 99999 KRASNOARMEJSK UP 48.183 37.2 175.0 19590101 20021225 345190 99999 DONETS'K UP 48.067 37.766999999999996 225.0 19460307 20131231 345230 99999 LUHANS'K UP 48.567 39.25 62.0 19320101 20140707 345240 99999 DEBAL'TSEVE UP 48.35 38.433 334.0 19600402 20150123 345350 99999 KAMENSK-SAHTINSKIJ RS 48.3 40.3 51.0 19590630 20200420 345370 99999 DAR'IVKA UP 48.083 39.5 302.0 19590101 20150113 345390 99999 BELAJA KALITVA RS 48.167 40.817 155.0 19730101 19840507 345450 99999 MOROZOVSK RS 48.35 41.867 90.0 19470502 20200622 345550 99999 NIZHNY-CHIR RS 48.333 43.117 68.0 19590101 20200608 345590 99999 GNILO-AKSAYSKAYA RS 48.033 43.867 156.0 19610805 19810223 345600 99999 GUMRAK RS URWW 48.783 44.346000000000004 146.9 19320101 20200624 345710 99999 KAPUSTIN JAR RS 48.6 45.75 7.0 19590101 19740309 345780 99999 CERNYJ JAR RS 48.067 46.117 5.0 19610901 20200622 345790 99999 VERHNIJ BASKUNCHAK RS 48.217 46.733000000000004 34.0 19361231 20200622 345810 99999 URDA KZ 48.766999999999996 47.433 4.0 19590101 19981009 345880 99999 TYULYUGEN KZ 48.15 47.667 9.0 19740721 19840530 346010 99999 ZAPORIZHZHIA INTL UP UKDE 47.867 35.316 113.7 19581230 20200624 346060 99999 GULYAYPOLE UP 47.667 36.25 135.0 19581230 20030112 346070 99999 PRYSHYB UP 47.266999999999996 35.333 88.0 19590101 20160614 346090 99999 KYRYLIVKA UP 47.333 36.333 221.0 19590101 20160614 346150 99999 VOLNOVAKHA UP 47.617 37.35 267.0 19590101 20160602 346220 99999 AMVROSIIVKA UP 47.8 38.516999999999996 164.0 19590101 20150327 346250 99999 MATVEEV KURGAN RS 47.567 38.883 43.0 19590101 19840627 346350 99999 SAHTY RS 47.7 40.266999999999996 118.0 19610907 19950601 346440 99999 KONSTANTINOVSK RS 47.583 41.1 66.0 19590101 20200608 346460 99999 CIMLJANSK RS 47.633 42.117 65.0 19590101 20200427 346550 99999 KOTEL'NIKOVO RS 47.633 43.15 49.0 19320102 20200602 346620 99999 MALYE DERBETY RS 47.933 44.7 9.0 19600101 20200520 346870 99999 KHARABALI RS 47.417 47.25 -16.0 19590101 20080210 346910 99999 NOVYJ USHTOGAN KZ 47.9 48.8 -10.0 19590101 20200624 346990 99999 BOGUS SOVIET RS 19810101 19820527 347040 99999 MELITOPOL' UP 46.833 35.367 34.0 19361231 20160602 347080 99999 BOTIEVE UP 46.683 35.85 19.0 19590101 20160602 347120 99999 MARIUPOL' UP UKCM 47.033 37.5 70.0 19361231 20200624 347170 99999 BERDYANSK UP 46.75 36.783 2.0 19320107 19891221 347190 99999 DOLZHANKA RS 46.617 37.8 2.0 19590516 19970608 347200 99999 TAGANROG RS 47.2 38.9 32.0 19590101 20200621 347230 99999 AZOV RS 47.117 39.417 4.0 19590107 20030105 347250 99999 MARGARITOVKA RS 46.933 38.867 11.0 19610907 19840203 347270 99999 EJSK RS 46.8 38.266999999999996 3.0 19320102 20200602 347300 99999 ROSTOV NA DONU RS URRR 47.258 39.818000000000005 79.2 20030330 20171231 347310 99999 ROSTOV-NA-DONU GG 47.25 39.817 78.0 19320101 20180108 347330 99999 VESELIY RS 47.083 40.75 9.0 19730101 19860101 347350 99999 ZERNOGRAD RS 46.8 40.317 85.0 19610907 20120713 347370 99999 KUSCEVSKAJA RS 46.533 39.617 22.0 19590101 20081121 347400 99999 GIGANT RS 46.516999999999996 41.35 79.0 20090325 20200401 347430 99999 ZIMOVNIKI RS 47.15 42.483000000000004 72.0 19590101 20200531 347470 99999 CELINA RS 46.55 41.05 112.0 19480102 19990205 347480 99999 PROLETARSKAYA RS 46.7 41.733000000000004 25.0 19590101 19980408 347530 99999 ZAVETNOE RS 47.117 43.933 81.0 19610905 20040226 347590 99999 REMONTNOE RS 46.567 43.667 106.0 19480101 20200623 347720 99999 YUSTA RS 47.133 46.317 2.6 19600104 20200514 347850 99999 DOSANG RS 46.917 47.933 -19.0 19590101 20200622 347980 99999 GANJUSHKINO KZ 46.6 49.266999999999996 -23.0 19590101 20200624 348130 99999 KAMYSEVATSKAJA RS 46.417 37.95 16.0 19590801 19630905 348240 99999 PRIMORSKO-AHTARSK RS 46.033 38.15 5.0 19480102 20200620 348250 99999 KANEVSKAJA RS 46.067 38.967 17.0 19610907 19950822 348380 99999 TIHORECK RS 45.85 40.083 78.0 19550101 20200623 348450 99999 GORODOVIKOVSK RS 46.067 41.967 86.0 19590101 20200624 348580 99999 DIVNOE GG 45.917 43.35 87.0 19351231 20200624 348610 99999 ELISTA RS URWI 46.367 44.333 152.7 19590101 20200624 348660 99999 YASHKUL' RS 46.183 45.35 -7.0 19361231 20200622 348680 99999 IKI-BURUL RS 45.8 44.633 113.0 20120926 20200428 348710 99999 UTTA RS 46.367 46.016999999999996 -7.1 19611103 20200615 348720 99999 UTTA EAST RS 46.367 46.033 0.0 19611103 19631108 348770 99999 ADYK RS 45.8 45.633 -11.0 19611005 19840413 348780 99999 ... RS 45.783 46.333 19620106 19760110 348800 99999 ASTRAHAN' RS 46.283 47.983000000000004 -21.6 19320101 20200622 348870 99999 LIMAN RS 45.8 47.217 -18.0 19610905 20200622 348940 99999 ZELENGA RS 46.183 48.6 19610901 19631229 348960 99999 UKATNIY ISLAND RS 45.917 49.55 -27.0 19590101 19631231 349150 99999 KUBANSKAYA (TEMRYUK) RS 45.317 37.383 2.0 19590903 20081121 349170 99999 TAMAN' (BAY) RS 45.233000000000004 36.75 5.0 19590719 19781106 349220 99999 TIMASEVSKAJA RS 45.633 38.933 22.0 19590101 19950511 349240 99999 SLAVJANSK-NA-KUBANI RS 45.283 38.117 9.0 19590101 20081121 349270 99999 KRASNODAR-KRUGLIK RS 45.05 39.033 29.0 20090325 20170628 349290 99999 KRASNODAR RS 45.033 39.15 34.0 19320101 20200624 349360 99999 KROPOTKIN RS 45.433 40.567 106.0 19590104 19950601 349370 99999 UST-LABINSK RS 45.217 39.683 90.0 19610905 19860708 349490 99999 SHPAKOVSKOYE RS URMT 45.108999999999995 42.113 452.9 19590101 20200624 349540 99999 SVETLOGRAD RS 45.35 42.85 140.0 19361231 20200621 349580 99999 BLAGODARNYJ RS 45.1 43.45 162.0 19610814 20200623 349640 99999 ARZGIR RS 45.4 44.2 76.0 19590101 19950601 349750 99999 KOMSOMOL'SKIJ RS 45.35 46.033 -1.7 19610912 20200624 349760 99999 NARYN-HUDUK RS 45.433 46.55 -18.0 19590101 19890513 349820 99999 VOSKRESENSK SOUTH RS 45.617 47.516999999999996 0.0 19590901 19631213 349840 99999 LAGAN' RS 45.4 47.35 -24.0 20120731 20200622 349890 99999 ISKUSSTVENNYJ OSTRO RS 45.383 47.783 -25.0 19600101 19631231 350010 99999 BOL'SAJA GLUSCICA RS 52.383 50.467 64.0 19611208 20200428 350070 99999 PERELJUB RS 51.867 50.333 71.0 19611001 20200602 350110 99999 SOROCHINSK RS 52.433 53.133 123.0 19591004 20200624 350150 99999 NOVOSERGIEVKA RS 52.083 53.633 139.0 19591004 20021107 350190 99999 SIRT RS 51.867 54.533 269.0 19591101 20030412 350210 99999 OKTYABRSKOYE RS 52.35 55.467 135.0 19590430 20020914 350260 99999 ZILAIR RS 52.217 57.452 521.0 19530216 20200624 350370 99999 AK'JAR RS 51.867 58.183 341.0 19590101 20200624 350390 99999 KRASNOJARSKI RS 51.967 59.95 322.0 19620731 19870624 350410 99999 BREDY RS 52.433 60.35 310.0 19600301 20030115 350420 99999 ZABELOVKA KZ 52.3 61.317 279.0 19600101 20000105 350450 99999 DZHETYGARA KZ 52.183 61.233000000000004 263.0 19480101 19601223 350530 99999 KUSMURUN KZ 52.467 64.667 110.0 19590101 20000807 350670 99999 ESIL' KZ 51.883 66.333 221.0 19530216 20200624 350675 99999 UST KAMENOGORSK KZ UASK 50.037 82.494 286.2 20070822 20200624 350780 99999 ATBASAR KZ 51.817 68.367 304.0 19480101 20200624 350830 99999 AKSU KZ 52.467 71.983 290.0 19590101 20020609 350850 99999 AKKOL' KZ 52.0 70.95 384.0 19590101 20200624 350920 99999 BESTOBE KZ 52.5 73.1 168.0 20131128 20200624 351020 99999 TEPLOVKA RS 51.533 51.533 70.0 19590102 20030213 351060 99999 SHARAKKOP KZ 51.4 51.95 38.0 19600129 20200624 351070 99999 KAMEMKA KZ 51.117 50.317 72.0 19590110 20200624 351080 99999 URALSK KZ UARR 51.151 51.543 38.1 19320102 20200624 351120 99999 ILEK RS 51.533 53.45 64.0 19611208 19800117 351170 99999 KAZAKHSTAN KZ 51.167 53.0 19590101 19631222 351171 99999 AKSAI KZ 51.16 52.998000000000005 62.8 20191113 20200624 351180 99999 CINGIRLAU KZ 51.033 54.1 105.0 19590101 20200624 351210 99999 ORENBURG RS UWOO 51.79600000000001 55.457 118.0 19320101 20200624 351250 99999 BELJAEVKA RS 51.417 56.417 131.0 19611212 20170420 351260 99999 KUVANDYK RS 51.483000000000004 57.467 225.0 19611211 20020826 351270 99999 AK-BULAK RS 51.016999999999996 55.633 144.0 19611212 20200624 351320 99999 IRIKLINSKI RS 51.667 58.65 268.0 19740821 19800115 351330 99999 ADAMOVKA RS 51.533 59.983000000000004 285.0 19461003 20021205 351380 99999 ORSK RS 51.067 58.6 285.0 19611204 20200624 351480 99999 PSKOVSKIY KZ 50.933 61.667 248.0 19630605 20020116 351560 99999 NAURZUMSKIY KZ 51.4 64.633 130.0 19730104 19831109 351570 99999 ARALKOL' KZ 51.083 62.7 230.0 19630302 19981009 351630 99999 KIJMA KZ 51.6 67.567 272.0 19850702 19971128 351660 99999 KAZGORODOK KZ 51.266999999999996 67.233 252.0 19530219 19880925 351670 99999 DERZHAVINSK KZ 51.083 66.3 243.0 20131128 20200624 351730 99999 ZHALTYR KZ 51.617 69.8 305.0 19590101 20200624 351880 99999 ASTANA INTL KZ UACC 51.022 71.467 355.1 19320101 20200624 351910 99999 JERMENTAU KZ 51.633 73.167 397.0 19590116 19990203 351920 99999 BOSTAL KZ 51.533 73.817 19530216 19580520 352130 99999 BURANNOYE RS 50.967 54.467 97.0 19590101 20020807 352150 99999 LOKTEV KZ 50.617 50.85 19.0 19630601 19631129 352170 99999 DZHAMBEJTY KZ 50.25 52.567 32.0 19480101 20200624 352250 99999 MARTUK KZ 50.75 56.533 178.0 19530216 20020810 352290 99999 AKTYUBINSK KZ UATT 50.246 57.207 224.9 19320101 20200624 352330 99999 DOMBAROVSKI RS 50.783 59.567 287.0 19740820 19800831 352340 99999 KOS-ISTEK KZ 50.733000000000004 57.9 340.0 19590628 20200624 352350 99999 STEPNOE KZ 50.717 58.667 243.0 20131128 20200624 352570 99999 SHIYLI KZ 50.45 62.8 183.0 19820102 19820428 352590 99999 SHUMEKTY KZ 50.266999999999996 64.217 76.0 19600317 20020830 352740 99999 TALDY-KUL KZ 50.55 67.917 286.0 19590101 19631231 352830 99999 VISHNEVKA KZ 50.833 72.183 411.0 19810101 20200624 352840 99999 ARYKTY KZ 50.633 70.55 320.0 19810101 20200624 352860 99999 ANAR KZ 50.617 72.433 437.0 19530216 19800322 352870 99999 KURGALDZINSKI KZ 50.5 70.05 330.0 19600223 20020804 353020 99999 CHAPAEVO KZ 50.2 51.167 17.0 19590101 20200624 353120 99999 LUBENKA KZ 50.45 54.117 136.0 19590901 19601001 353150 99999 KARATYUBINSKIY KZ 49.516999999999996 53.516999999999996 80.0 19600415 20200624 353210 99999 NOVOALEKSJEVKA KZ 50.133 55.7 142.0 19590110 20000829 353250 99999 LLINKA KZ 49.933 56.4 188.0 19610321 20200624 353310 99999 NOVOROSSIYSKIY KZ 50.233000000000004 58.0 19590412 19751205 353340 99999 TOKMANSAY KZ 49.8 57.983000000000004 368.0 20131128 20200624 353350 99999 KOKLEKTY KZ 49.9 58.317 351.0 19610313 19620809 353440 99999 KARABUTAK KZ 49.95 60.133 229.0 19590110 20200624 353450 99999 TAMABULAK KZ 49.983000000000004 61.483000000000004 221.0 19600109 20030218 353540 99999 19740803 19740913 353570 99999 BARSHINO KZ 49.683 69.517 349.0 20081201 20200624 353580 99999 TORGAI KZ 49.635 63.482 132.8 19320101 20200624 353610 99999 AMANGELDY KZ 50.133 65.233 142.0 19530216 20200624 353630 99999 ARKALYK KZ 50.217 66.833 343.0 19690102 20200624 353680 99999 SENBER KZ 49.75 66.15 229.0 19600401 20121119 353760 99999 BERLIK KZ 49.883 69.517 349.0 19530216 20080328 353860 99999 KAZGORODOK KZ 49.95 71.583 422.0 19630601 20030216 353940 99999 KARAGANDA KZ UAKK 49.67100000000001 73.334 538.0 19480101 20200624 353941 99999 KOSTANAY KZ 53.2 63.55 186.0 20040510 20081231 353942 99999 ASTRAKHAN RS URWA 46.283 48.006 -20.1 20040510 20200624 353943 99999 OKHA RUSSIAN FEDERAT RS UHSH 53.62 142.95 37.0 20040831 20130719 353944 99999 NOVY URENGOY RS USMU 66.067 76.517 64.0 20040706 20170615 353946 99999 ZVARTNOTS AM UDYZ 40.147 44.396 865.0 20040706 20200624 353947 99999 CHOKURDAKH RUSSIAN RS UESO 70.63 147.92 26.0 20040706 20130719 353948 99999 SHIRAK GEORGIA GG UDSG 40.75 43.85 1524.0 20040803 20200624 354040 99999 DZHANGALA KZ 49.217 50.3 7.0 19881001 20040731 354060 99999 TAIPAK KZ 49.05 51.867 2.0 19361231 20200624 354160 99999 UIL KZ 49.067 54.683 128.0 19320401 20200624 354260 99999 TEMIR KZ 49.15 57.117 234.0 19480103 20200624 354300 99999 TALDYK KZ 49.25 59.55 260.0 19590101 19941202 354360 99999 DZHURUN KZ 49.233000000000004 57.667 234.0 19590101 19631231 354370 99999 EMBA KZ 48.817 58.217 230.0 19340114 20200624 354490 99999 NURA KZ 48.833 62.1 82.0 19590101 20200624 354590 99999 BISARY KZ 48.817 64.617 122.0 19630302 20050824 354670 99999 BRALI KZ 48.9 65.533 223.0 19630302 20040324 354750 99999 SHUBARKUL KZ 49.016999999999996 68.667 490.0 20131128 20200621 354780 99999 ALGABAS KZ 48.883 68.083 506.0 19810101 19970209 354970 99999 ZHARYK KZ 48.85 72.867 656.0 19530216 20200624 354980 99999 AKSU-AYULY KZ 48.783 73.667 724.0 20010927 20200624 355050 99999 TOLUBAI KZ 48.467 51.0 10.1 19590101 19631221 355140 99999 KARABAU KZ 48.45 52.917 0.0 19590101 20111017 355190 99999 SAGIZ KZ 48.2 54.933 73.0 19730101 19990318 355220 99999 KARAUL KEL'DY KZ 48.733000000000004 56.033 186.0 19530216 20200624 355290 99999 KOZASAJ KZ 48.217 57.117 151.0 19530217 19950712 355320 99999 MUGODZARSKAJA KZ 48.633 58.5 398.0 19570701 20200624 355350 99999 BERCOGUR KZ 48.467 58.583 404.0 19480101 19620129 355420 99999 IRGIZ KZ 48.617 61.266999999999996 114.0 19320401 20041003 355490 99999 TAUP KZ 48.25 62.0 74.0 19590101 19951113 355630 99999 ULYTAU KZ 48.583 67.083 632.0 19590201 20200624 355760 99999 KZYLZHAR KZ 48.3 69.65 361.1 19550301 20200624 355820 99999 ATASU KZ 48.7 71.633 488.0 19590102 20101130 356020 99999 TOPOLI KZ 47.967 51.65 -14.0 19590102 19781101 356050 99999 MAHAMBET KZ 47.667 51.583 -15.0 19751201 20020319 356150 99999 MAKAT KZ 47.633 53.317 -22.0 20131128 20200624 356330 99999 CELKAR KZ 47.85 59.617 176.0 19361231 20020319 356350 99999 TEREN'-KUDUK KZ 47.7 58.467 511.0 19590101 20021120 356560 99999 APPROXIMATE LOCALE KZ 47.633 64.583 0.0 19820102 20200624 356620 99999 KARSAKBAY KZ 47.833 66.733 488.0 20131128 20200623 356630 99999 KARSAKPAJ KZ 47.833 66.75 508.0 19351231 20020920 356710 99999 ZHEZKAZGAN KZ UAKD 47.8 67.717 346.0 19480102 20200624 356830 99999 KZYL-TAU KZ 47.85 72.083 810.0 19570710 20050704 356870 99999 KOKTAS KZ 47.516999999999996 70.9 471.0 19590101 20090220 356990 99999 BEKTAUATA KZ 47.45 74.817 620.0 19530217 20200624 357000 99999 ATYRAU KZ 47.117 51.917 -22.0 19320101 20200624 357010 99999 ISATAI KZ 47.217 50.983000000000004 -27.0 20131128 20200624 357040 99999 ZOBURUN'JE KZ 46.75 50.167 -24.0 19840401 20011023 357050 99999 APPROXIMATE LOCALE KZ 46.867 51.25 0.0 19591101 20200624 357060 99999 BOLSHOY PESHNO ISL KZ 46.766999999999996 51.783 -23.0 19810501 19810822 357070 99999 ZABURUNYE/ISATAY KZ 46.75 50.2 -23.0 19590101 19840829 357150 99999 KULSARY KZ 46.8 53.917 18.0 19340102 19991218 357210 99999 ZAMBIKE KZ 47.033 55.133 45.0 19590101 20030303 357290 99999 AK-TUMSUK KZ 46.633 57.333 44.0 19570701 19891001 357390 99999 AYAK-KUM KZ 46.717 59.167 114.0 19570710 20020319 357420 99999 SAKSAULSKI KZ 47.083 61.217 79.0 19590104 19910330 357460 99999 ARALSK KZ UATA 46.783 61.667 56.0 19480101 20200624 357490 99999 MONSYR KZ 46.717 62.5 80.0 19590101 20071001 357560 99999 KARA-KUM KZ 46.883 64.667 79.0 19570711 20020726 357770 99999 JETI-KONUR KZ 46.583 68.617 276.0 19570710 20020730 357780 99999 19870518 19870518 357910 99999 MOINTY KZ 47.2 73.35 581.0 19370119 20020915 357930 99999 MOIYNTY KZ 47.217 73.35 582.0 20131128 20200624 357960 99999 BALHASH KZ 46.8 75.083 350.0 19480101 20200624 358160 99999 OPORNY KZ 46.233000000000004 54.483000000000004 -16.0 19810101 20200624 358220 99999 DGUKARA KZ 46.567 55.867 28.0 19590102 19870619 358470 99999 IMENI SHAVCHEMKO KZ 45.983000000000004 61.067 60.0 19730701 19880818 358490 99999 KAZALY KZ 45.766999999999996 62.117 68.0 19340201 20200624 358660 99999 APPROXIMATE LOCALE KZ 46.133 67.083 0.0 19820119 19840421 358830 99999 SARYSHAGAN WEST KZ 46.333 72.033 538.0 19590102 19630204 358840 99999 BETPAK-DALA STEPPE KZ 46.0 70.0 325.0 19570706 20020607 358850 99999 BULAT-TAU KZ 46.067 71.6 583.0 19740909 19820301 358890 99999 KASHKANTENIZ WEST KZ 45.9 72.65 500.0 19620202 19631231 358950 99999 KOKTAS KZ 46.033 73.533 344.0 19730922 20200624 359070 99999 KULALY ISLAND KZ 45.016999999999996 50.033 -22.0 19590101 20020319 359250 99999 SAM KZ 45.4 56.117 88.0 19570701 20200624 359270 99999 BEJNEU KZ 45.25 55.083 74.0 19590102 20200624 359370 99999 CHIYLA BULAK WEST UZ 45.083 58.067 157.0 19600101 19631231 359410 99999 BARSAKELMES ISLAND KZ 45.683 59.917 80.0 19600101 19970318 359420 99999 UZUN-KAYIR KZ 45.733000000000004 60.933 54.0 19600101 20011121 359530 99999 ZHOSALY KZ 45.5 64.083 103.0 19480102 20200624 359690 99999 ZLIKHA KZ 45.25 67.067 138.0 19530216 20200624 359860 99999 TYUKEN KZ 45.533 72.4 420.0 19590101 19820413 359970 99999 CIGANAK KZ 45.1 73.967 349.0 19590101 20090810 359980 99999 BURIBAYTAL SOUTHEAST KZ 45.05 74.033 347.0 19480101 19551231 360010 99999 EKIBASTUZ KZ 51.7 75.367 234.0 19590102 20010928 360030 99999 PAVLODAR KZ UASP 52.195 77.074 125.0 19320102 20200624 360120 99999 SCERBAKTY KZ 52.35 78.333 149.0 19590102 20200624 360150 99999 LEBJAZJE KZ 51.483000000000004 77.767 144.0 19740319 20200624 360200 99999 RODINO RS 52.483000000000004 80.167 158.0 19480101 20180725 360210 99999 KLJUCI RS 52.25 79.183 142.0 19530216 20200624 360220 99999 VOLCIHA RS 52.016999999999996 80.367 208.0 19530216 20200624 360260 99999 NOVONIKALAEVKA KZ 51.067 79.417 258.0 20131128 20200624 360270 99999 NOVO-NIKOLAYEVKA KZ 51.016999999999996 79.283 249.0 19610420 20030219 360280 99999 UGLOVSKOYE RS 51.367 80.217 202.0 19530216 20020419 360320 99999 SIPUNOVO RS 52.217 82.25 196.0 19890201 20020821 360340 99999 RUBCOVSK RS 51.576 81.217 219.0 19480101 20200624 360360 99999 KRASNO-SCEKOVO RS 51.667 82.73299999999999 240.0 19530216 20010627 360380 99999 ZMEINOGORSK KZ 51.15 82.2 355.0 19530216 20200624 360450 99999 SOLONESNOJE RS 51.667 84.31700000000001 411.0 19600112 19970323 360460 99999 BELOKURIHA RS 51.967 84.95 260.0 19361231 19620811 360520 99999 MAJMA RS 52.016999999999996 85.9 331.0 19570913 20030214 360580 99999 CEMAL RS 51.433 86.0 420.0 19530216 20200624 360610 99999 TUROCAK RS 52.25 87.117 326.0 19480101 20200624 360640 99999 YAJLJU RS 51.766999999999996 87.6 480.0 19610215 20200624 360730 99999 KANTEGIR RS 52.266999999999996 90.8 716.2 20120330 20150224 360780 99999 TELI RS 51.016999999999996 90.21700000000001 983.1 19600213 20200624 360830 99999 UST'-USA RS 52.05 92.167 576.9 19530216 20200624 360870 99999 CADAN RS 51.283 91.667 836.0 19570722 20050117 360900 99999 HOVU-AKSY RS 51.133 93.68299999999999 1043.0 19820101 20200624 360910 99999 NIZHNE-USINSKOE RS 52.25 93.01700000000001 662.1 19590101 20200624 360920 99999 TURAN RS 52.15 93.917 852.4 19590101 20200624 360960 99999 KYZYL RS 51.717 94.5 628.0 19570731 20200624 360970 99999 HOVU-AKSY RS 51.016999999999996 93.71700000000001 1063.0 19590101 19840923 361030 99999 TOORA-HEM RS 52.467 96.1 920.0 19570722 20200624 361040 99999 SARYG-SEP RS 51.483000000000004 95.583 705.8 19570722 20200624 361260 99999 BAJANAUL KZ 50.8 75.7 504.0 19570710 20200624 361520 99999 SEMIJARKA KZ 50.867 78.35 149.0 19480101 20200624 361770 99999 SEMIPALATINSK KZ 50.417 80.3 196.0 19320101 20200624 361780 99999 BOGUS SOVIET RS 19850514 20030113 361860 99999 SEMONAIHA KZ 50.633 81.917 320.0 19530216 20051013 361870 99999 CHALOBAY KZ 50.217 81.333 365.0 19740822 20020920 361970 99999 TAVRIA KZ 50.167 82.03299999999999 270.0 20131128 20200624 362080 99999 LENINOGORSK KZ 50.333 83.55 811.0 19590102 20200624 362130 99999 UST-KAN RS 50.95 84.917 1037.0 19530316 19951120 362290 99999 UST'- KOKSA RS 50.283 85.617 978.0 19600112 20200624 362310 99999 ONGUDAJ RS 50.75 86.133 833.0 19570701 20050117 362370 99999 MUL'TA RS 50.167 85.95 957.0 19890101 20010807 362460 99999 UST-ULAGAN RS 50.633 87.93299999999999 1937.0 19611105 19891228 362490 99999 KOTASEVO RS 50.317 87.583 1309.0 19890101 19891111 362590 99999 KOSH-AGACH RS 50.016999999999996 88.68299999999999 1759.0 19570706 20200624 362780 99999 MUGUR-AKSY RS 50.383 90.43299999999999 1850.0 19631005 20200624 363070 99999 ERZIN RS 50.25 95.167 1100.0 19590101 20200624 363250 99999 KUNGUR-TUK RS 50.6 97.51700000000001 1315.0 19590101 19950418 363350 99999 KARKARALINSK KZ 49.383 75.517 812.0 19320106 19940725 363410 99999 EGINDYBULAK KZ 49.783 76.383 776.0 20131128 20200624 363580 99999 KAJNAR KZ 49.2 77.367 842.0 19570706 20130410 363920 99999 BORODINE KZ 49.967 81.467 371.0 19610326 20200624 363940 99999 CARSKAJA KZ 49.583 81.05 334.0 19530218 20200624 363970 99999 ZHANGIZTOBE KZ 49.217 81.217 455.0 19480101 20200624 363980 99999 GEORGIJEVKA KZ 49.317 81.583 418.0 19591023 20020913 364030 99999 UST-KAMENOGORSK KZ 49.967 82.633 292.0 19570710 20010504 364100 99999 BUKHTARMA SE KZ 49.6 83.55 387.0 19590102 19631225 364180 99999 SAMARSKOE KZ 49.033 83.383 524.0 19590115 20200624 364210 99999 ZYRJANOVSK KZ 49.75 84.28299999999999 492.0 19590102 20200624 364280 99999 ULKEN NARYN KZ 49.2 84.51700000000001 401.0 19530216 20200624 364390 99999 KATON-KARAGAJ KZ 49.183 85.617 1081.0 19570701 20200624 364420 99999 KATUN RS 49.733000000000004 86.55 1800.0 19600427 19941231 364430 99999 AK-KEM RS 49.917 86.53299999999999 2056.0 19610105 20081009 364530 99999 BELESI RS 49.7 87.43299999999999 1524.0 19890101 19891111 364570 99999 ARGAMJI RS 49.283 87.917 2280.0 19600102 19831004 364670 99999 AKTOGAJ KZ 48.3 74.967 780.0 19590102 19980526 364870 99999 OGIZTAU KZ 48.266999999999996 77.317 699.0 19590101 19970622 364980 99999 BARSHATAS KZ 48.167 78.417 643.0 19590101 20200624 365010 99999 KARAUL KZ 49.0 79.333 618.0 19610313 20200624 365130 99999 KARA-JOL KZ 48.717 80.9 872.0 19590801 19750307 365350 99999 KOKPEKTY KZ 48.75 82.367 512.0 19480101 20200624 365460 99999 KURCUM KZ 48.55 83.68299999999999 427.0 19590121 19981009 365630 99999 TOPOLEVKA KZ 48.833 85.85 1667.0 19590104 19631228 365690 99999 BURAN KZ 48.067 85.25 412.0 19590202 19811227 366040 99999 19870518 19870518 366190 99999 ZUZ-AGAC KZ 47.083 79.717 422.0 19600529 20200624 366220 99999 AJAGUZ KZ 47.967 80.45 655.0 19570701 20020105 366390 99999 URZHAR KZ 47.117 81.617 491.0 19530216 20200624 366430 99999 AKSUAT KZ 47.8 82.833 548.0 19590110 20200624 366610 99999 PRIOZERNYY NE KZ 47.8 84.3 386.0 19600201 19631231 366650 99999 ZAJSAN KZ 47.467 84.917 603.0 19480101 20200624 366770 99999 TOMAR E KZ 46.383 75.167 340.0 19590415 19600827 366860 99999 ALGAZY OSTROV KZ 46.55 76.867 349.0 19630502 20160105 367140 99999 BURLYU-TYUBE /BURLIU-TOBE KZ 46.583 79.1 351.1 19361231 19540506 367230 99999 SAGAT KZ 46.717 80.75 427.0 19731213 19830929 367290 99999 UC-ARAL KZ 46.167 80.933 397.0 19530216 20200624 367360 99999 BAHTY KZ 46.65 82.75 441.0 19480101 20200624 367440 99999 AUL KZ 45.633 75.117 353.0 19570701 20020319 367610 99999 NAYMAN-SUYEK KZ 45.7 77.267 368.0 19590101 20091107 367700 99999 MULALY KZ 45.45 78.333 564.0 19890513 20020820 367730 99999 MATAJ KZ 45.85 78.717 412.0 19590102 20200624 367770 99999 KARATAL E KZ 45.333 78.017 443.0 19590101 20200624 367780 99999 TALDY-KURGAN KZ 45.0 78.383 602.0 19590101 20040731 367850 99999 ZHANSUGUROV KZ 45.383 79.5 628.0 20131128 20200624 367860 99999 SARKAND KZ 45.417 79.9 1113.0 19590101 20200624 367960 99999 LEPSINSK KZ 45.883 80.917 1189.0 19790401 20200624 368030 99999 UZYNBULAK KZ 45.85 82.18299999999999 362.0 19731109 20030213 368060 99999 DRUZBA KZ 45.3 82.48299999999999 394.0 19590102 20200624 368170 99999 ANARKHAY KZ 43.983000000000004 75.083 830.0 19590101 20200624 368190 99999 AYDARLI KZ 44.133 75.85 499.0 19590101 20200624 368210 99999 BAKANAS KZ 44.833 76.267 396.0 19590114 20200624 368215 99999 KOKSHETAU AIRPORT KZ UACK 53.32 69.6 263.0 20050724 20200624 368290 99999 KURTY RIVER KZ 44.317 76.7 432.0 19590102 20020519 368310 99999 ZHETY-ZHOL KZ 44.8 77.333 505.0 19590101 19831005 368370 99999 ILIYSK KZ 44.016999999999996 77.133 710.0 19810101 20200624 368390 99999 SARYOZEK KZ 44.367 77.9 948.0 19590107 20200624 368430 99999 KOK-SU KZ 44.633 78.75 1114.0 19610330 20200624 368460 99999 KUGALI KZ 44.467 78.667 1385.0 19590101 20200624 368560 99999 KONYROLEN KZ 44.266999999999996 79.317 1224.0 20131128 20200624 368590 99999 ZHARKENT KZ 44.167 80.067 645.0 19460114 20200624 368640 99999 OTAR KZ 43.533 75.25 743.0 19530216 20200624 368700 99999 ALMATY KZ 43.233000000000004 76.933 851.0 19320101 20200624 368710 99999 KARASAYSKY KZ 43.183 76.75 810.0 20131128 20200624 368720 99999 ALMATY KZ UAAA 43.352 77.041 680.9 20060101 20200624 368740 99999 UZUNAGAC KZ 43.6 76.317 685.0 19610301 20080326 368770 99999 PRUDKY KZ 43.167 76.05 992.0 19630302 20010629 368790 99999 BOGUS SOVIET RS 19850708 19850831 368800 99999 BOGUS SOVIET RS 19860108 20020924 368810 99999 KAPCAGAJ KZ 43.883 77.067 456.0 19590101 20021223 368830 99999 ILIYSKY KZ 43.483000000000004 76.983 614.0 20131128 20200624 368850 99999 ISSYK KZ 43.35 77.467 1098.0 19590101 20200624 368890 99999 TURGEN KZ 43.383 77.55 979.9 19590101 20200624 368910 99999 CILIK KZ 43.583 78.2 600.0 19810101 20200624 368940 99999 MALIBAY KZ 43.483000000000004 78.4 870.0 19590101 20200624 368970 99999 ASSI KZ 43.317 78.25 2216.0 19570706 20200624 369050 99999 PODGORNOJE KZ 43.317 79.483 1273.0 19590101 20200624 369110 99999 TOKMAK KG 42.833 75.283 817.0 19590630 20200624 369260 99999 CHON-SARY-OY KG 42.6 76.917 1596.0 19610203 19621005 369270 99999 RYBACJE KG 42.467 76.183 1660.0 19600101 20080925 369340 99999 COLPON-ATA KG 42.65 77.1 1645.0 19730104 20180417 369380 99999 TAMGA-IN-KIRGIZ KG 42.167 77.533 1690.0 19591102 19891117 369440 99999 KYZYL-SUU KG 42.35 78.35 1769.0 20071001 20180417 369480 99999 BOLSAJA KZYL KG 42.2 78.2 1719.0 19591124 19970529 369530 99999 NARYNKOL KZ 42.733000000000004 80.133 1807.0 19570710 20200624 369630 99999 DOLON PASS KG 41.8 75.767 3040.0 19600208 19981008 369740 99999 NARYN KG 41.433 76.0 2041.0 19370102 20200624 369820 99999 TIAN-SHAN' KG 41.883 78.233 3639.0 19590101 20200624 369830 99999 DARHAN KG 42.317 77.9 1700.0 19600102 20000107 369850 99999 KARAKOLKA KG 41.483000000000004 77.4 3080.0 19600102 19981226 369940 99999 AK-SYJRAK KG 41.817 78.733 3540.0 19591101 19981008 370000 99999 NOVOROSSIJSK RS 44.717 37.766999999999996 30.0 19320101 19891110 370008 99999 DOMODEDOVO RS UUDD 55.409 37.906 179.2 19990114 20200624 370010 99999 VITYAZEVO RS URKA 45.001999999999995 37.347 53.0 19590101 20200624 370040 99999 GELENDZHIK RS 44.567 38.083 27.0 19590101 20160606 370060 99999 NOVOROSSIJSK RS 44.717 37.85 3.0 19871202 20160614 370061 99999 ARKHIPO-OSIPOVKA RS 44.367 38.533 3.0 20091128 20091128 370090 99999 DZHUBGA RS 44.333 38.717 23.0 19590101 20040915 370130 99999 BELORECENSK RS 44.75 39.9 137.0 19590101 19630822 370140 99999 GORJACIJ KLJUC RS 44.633 39.1 62.0 19610908 20040602 370170 99999 GORNYIJ RS 44.283 39.266999999999996 323.0 19610907 20050915 370180 99999 TUAPSE RS 44.1 39.033 95.0 19360101 20200621 370210 99999 MAJKOP RS URKM 44.617 40.083 220.0 19611005 20200612 370260 99999 LABINSK RS 44.583 40.733000000000004 263.0 19730101 19841028 370310 99999 ARMAVIR RS 44.983000000000004 41.117 159.0 19320101 20200417 370360 99999 NEVINNOMYSSK RS 44.633 41.967 343.0 19480102 20200624 370440 99999 KIAN RS 44.567 42.217 440.0 19610912 19801124 370450 99999 KAZINKA RS 44.45 42.317 410.0 19610907 19631021 370470 99999 CHERKESSK RS 44.233000000000004 42.05 563.0 19590101 19950530 370500 99999 PJATIGORSK RS 44.05 43.033 538.0 19320101 20031223 370540 99999 MINERALNYYE VODY RS URMM 44.225 43.082 321.3 19550101 20200624 370580 99999 GEORGIEVSK RS 44.15 43.467 302.0 19590101 20200624 370610 99999 BUDENNOVSK RS 44.783 44.133 136.0 19480101 20200622 370660 99999 ACHIKULAK RS 44.55 44.833 69.0 19590101 19840820 370750 99999 BAZHIGAN RS 44.55 45.683 16.0 19590206 20150303 370790 99999 TEREKLI-MEKTEB RS 44.167 45.867 19.0 19590101 19950528 370820 99999 ARTEZIAN RS 44.917 46.65 -20.0 19611021 19800927 370850 99999 KOCUBEJ RS 44.4 46.55 -21.0 19590101 20200623 370890 99999 OSTROV TJULENIJ RS 44.467 47.483000000000004 -23.0 19791101 20070515 370990 99999 SOTCHI RS 43.583 39.766999999999996 34.0 19320101 19631230 371070 99999 KRASNAYA POLYANA RS 43.683 40.2 569.0 20090325 20200624 371160 99999 KARATCHAEVSK RS 43.783 41.9 862.0 19590101 19940831 371260 99999 SHADZHATMAZ RS 43.733000000000004 42.667 2056.0 20070227 20200615 371440 99999 PROHLADNAYA RS 43.75 44.05 199.9 20120926 20200623 371450 99999 MOZDOK RS 43.733000000000004 44.667 136.0 19480102 20010926 371630 99999 KIZLJAR RS 43.833 46.717 -5.0 19590101 20200607 371690 99999 BABAYURT RS 43.6 46.783 -3.0 19590101 19950809 371710 99999 SOCHI RS URSS 43.45 39.957 27.1 19590101 20200624 371750 99999 GAGRSKIY GG 43.417 40.25 1629.0 19590101 19950915 371770 99999 GAGBY GG 43.25 40.266999999999996 7.0 19590103 20001217 371775 99999 KOPITNARI GG UGKO 42.177 42.483000000000004 68.0 20050524 20200624 371780 99999 PICUNDA GG 43.2 40.35 4.0 19800304 20010220 371870 99999 GUDAUTA (BAY) GG 43.1 40.633 11.0 19610116 19940515 371890 99999 SUKHUMI (POINT) GG 43.0 41.033 37.0 19590101 20011102 371930 99999 TEBERDA RS 43.45 41.733000000000004 1325.0 19360101 20200615 371960 99999 ZEMO-AZHARA GG 43.117 41.733000000000004 952.0 19590101 19950531 372090 99999 VERKHNAYA BALKARIYA GG 43.05 42.717 1441.0 19590101 19940712 372120 99999 NALCHIK RS URMN 43.513000000000005 43.637 445.3 19480101 20200624 372180 99999 NAZRAN' RS 43.15 44.85 664.8 20120926 20200623 372280 99999 VLADIKAVKAZ RS URMO 43.033 44.683 703.0 19320101 20200618 372350 99999 GROZNYJ RS 43.25 45.717 163.0 19480101 20200611 372440 99999 GUDERMES RS 43.35 46.117 75.0 19610912 20200622 372480 99999 HASAVJURT RS 43.25 46.583 117.0 19590101 20130409 372600 99999 SUHUMI GG 42.867 41.133 13.0 19320101 19951012 372670 99999 OCEMCIRI GG 42.7 41.467 5.0 19590101 19980420 372720 99999 TKVARCHELI GG 42.85 41.683 266.0 19730101 19950911 372780 99999 GALI GG 42.633 41.7 63.0 19590101 19941116 372790 99999 ZUGDIDI GG 42.516999999999996 41.883 118.0 19590101 20200624 372860 99999 LEBARDE GG 42.733000000000004 42.483000000000004 1610.0 19590101 19930418 372950 99999 LENTEKHI GG 42.783 42.733000000000004 731.0 19841102 20141119 372980 99999 TSAGERI GG 42.633 42.7 474.0 19590101 20200624 373080 99999 AMBROLAURI GG 42.516999999999996 43.133 544.0 19690218 20200624 373090 99999 ONI GG 42.583 43.45 789.0 19590101 19931015 373160 99999 NIZHNIY-ZARAMAG RS 42.7 43.967 1730.0 19590101 19931022 373340 99999 KAZBEK MOUNTAIN GG 42.7 44.516999999999996 5033.0 19590101 20021208 373670 99999 BOTLIH RS 42.683 46.2 980.0 19591012 19820627 373710 99999 ANAKLIA GG 42.4 41.567 3.0 19590101 19601216 373720 99999 KOBI GG 42.317 41.883 29.0 19590101 19810731 373750 99999 KHOBI GG 42.317 41.883 19590102 19630728 373790 99999 POTI GG 42.133 41.7 1.0 19320102 20200623 373800 99999 SENAKI GG 42.266999999999996 42.067 34.0 19590101 20040329 373850 99999 SAMTREDIA GG 42.183 42.367 26.0 19590101 19981008 373860 99999 CULUKIDZE GG 42.3 42.417 114.0 19590101 19920628 373880 99999 LANCHKHUTI GG 42.083 42.0 20.0 19890702 20020919 373900 99999 ORPIRI GG 42.333 42.817 175.0 19590101 19951113 373910 99999 KVEDA-GORDI GG 42.433 42.533 540.0 19800302 20010815 373930 99999 TKIBULI GG 42.333 42.983000000000004 541.0 19590101 19961215 373950 99999 KUTAISI GG 42.266999999999996 42.633 114.0 19361231 20200624 374030 99999 SACHKHERE GG 42.35 43.417 455.0 19590101 20200623 374040 99999 ZESTAFONT GG 42.133 43.016999999999996 148.0 19590102 20070823 374090 99999 MTA-SABUETI GG 42.033 43.483000000000004 1245.0 19590101 20200624 374160 99999 CHINVALY GG 42.233000000000004 43.983000000000004 871.0 19590101 20020208 374170 99999 KHASHURI GG 42.0 43.617 690.0 19590101 19990218 374200 99999 BOGUS SOVIET GG 42.05 44.15 19590101 19911130 374290 99999 LENINGORI GG 42.117 44.483000000000004 760.0 19730102 20011003 374320 99999 PASANAURI GG 42.35 44.7 1070.0 19360101 20170109 374370 99999 DUSETI GG 42.083 44.7 902.0 19590101 20200624 374390 99999 TIANETI GG 42.117 44.967 1091.0 19590101 20141028 374480 99999 AKHMETA GG 42.033 45.217 546.0 19760601 19951117 374520 99999 TUSHETI GG 42.417 45.717 2064.0 19590815 19591031 374610 99999 SULAK MOUNTAIN RS 42.4 46.233000000000004 2923.0 19590101 19900428 374630 99999 GUNIB RS 42.4 46.967 1399.0 19590101 20200614 374700 99999 DERBENT RS 42.067 48.3 -18.0 19590101 20200621 374710 99999 BUJNAKSK RS 42.817 47.117 473.0 19600403 20030604 374720 99999 MAHACHKALA RS 43.0 47.5 -18.6 19320101 20200624 374730 99999 IZBERG RS 42.533 47.917 -21.0 19590101 20150204 374750 99999 SERGOKALA RS 42.45 47.667 519.0 19590101 20110801 374810 99999 KOBULETI GG 41.867 41.766999999999996 7.0 19600112 20200624 374830 99999 ANASEULI GG 41.917 41.983000000000004 174.0 19590101 20030124 374840 99999 BATUMI GG UGSB 41.61 41.6 32.0 19320101 20200624 374920 99999 BAKHMARO GG 41.85 42.317 1924.0 19590101 20200624 374960 99999 BATUMI GG 41.6 41.633 11.0 19550101 20200624 374970 99999 BOGUS SOVIET RS 19910501 19911228 374980 99999 KHULO GG 41.65 42.317 946.0 19590101 20040520 375020 99999 SAYIRME GG 41.917 42.75 910.0 19590101 19900107 375030 99999 ABASTUMANI GG 41.717 42.833 1265.0 19730101 19930701 375060 99999 AHALCIHE GG 41.633 42.983000000000004 982.0 19591106 19951213 375070 99999 ADIGENI GG 41.7 42.7 1185.0 19730101 20030505 375080 99999 VALE GG 41.617 42.867 1097.0 19900402 19920725 375130 99999 TSIPA GG 42.016999999999996 43.45 673.0 19590810 19931022 375140 99999 AKHALTSIKHE GG 41.65 43.0 989.0 19590915 20200624 375150 99999 BORZOMI GG 41.833 43.383 794.0 19370101 19961215 375240 99999 BAKURIANI GG 41.717 43.516999999999996 1665.0 19591011 19970429 375250 99999 TABATSKURI (LAKE) GG 41.65 43.617 1995.0 19730105 19920507 375310 99999 GORI GG 41.983000000000004 44.117 609.0 19590101 20200624 375330 99999 KASPI GG 41.933 44.417 616.0 19890604 19960823 375350 99999 MANGLISI GG 41.7 44.383 1195.0 19590101 19951025 375370 99999 TSALKA GG 41.6 44.083 1458.0 19590101 19940704 375390 99999 TETRI-TSKARO GG 41.55 44.467 1140.0 19590101 19940822 375410 99999 MUHRANI GG UGMM 41.933 44.583 551.0 19590101 20200624 375450 99999 TBILISI GG 41.667 44.95 495.0 19320101 20081231 375490 99999 TBILISI / LOCHINI AIRPORT GG UGGG 41.75 44.766999999999996 427.0 19590101 20200624 375491 99999 MESTIA GG UGMS 43.068999999999996 42.754 2700.0 20110207 20200624 375530 99999 TELAVI GG UG25 41.933 45.512 542.0 19590101 20170101 375560 99999 SAGAREDZO GG 41.733000000000004 45.333 806.0 19590101 20040331 375630 99999 KVARELI GG 41.967 45.833 449.0 19730101 20141029 375660 99999 GURDZHAANI GG 41.75 45.8 410.0 19590101 20040404 375690 99999 CNORI GG 41.583 45.983000000000004 294.0 19590101 20020912 375720 99999 LAGODEHI GG 41.817 46.3 435.0 19590101 20030704 375750 99999 ZAKATALA AJ UBBY 41.667 46.65 490.0 19480101 20200624 375770 99999 CNORIS GG 41.6 46.05 291.0 19760401 19940510 375780 99999 DANACHY AJ 41.55 46.417 213.0 19861015 19940907 375970 99999 KASUMKENT RS 41.667 48.05 477.0 19591003 19600112 376020 99999 AKHALQALAQI GG 41.417 43.483000000000004 1716.0 19590708 20141029 376030 99999 RADIONOVKA GG 41.483000000000004 43.867 2100.0 19590101 20031231 376090 99999 ASHOTSK AM 41.028999999999996 43.876000000000005 2015.0 20060128 20200624 376180 99999 TASHIR AM 41.117 44.283 1509.0 19590101 20020411 376210 99999 BOLNISI GG 41.45 44.55 534.0 19590101 20200624 376270 99999 ODZUN AM 41.05 44.633 1110.0 19610207 19790322 376320 99999 GARDABANI GG 41.45 45.1 303.0 19590101 20020810 376330 99999 UDABNO (MOUNT) GG 41.516999999999996 45.383 750.0 19590101 19941006 376360 99999 JEYRANCHEL AJ 41.3 45.467 421.0 20170118 20200619 376370 99999 ... AM 41.016999999999996 45.15 19610705 19610730 376390 99999 AGSTAPHA AIRPORT AJ 41.133 45.417 333.0 19550101 20150509 376420 99999 TOVUZ AJ 41.1 43.55 333.0 20200619 20200619 376510 99999 DEDOPLISTSKARO GG 41.467 46.083 801.0 19590101 20141029 376610 99999 SHAKI AJ 41.217 47.167 641.0 19590101 20200119 376630 99999 AHTY RS 41.467 47.75 1015.0 19590101 20200624 376680 99999 OGUZ AJ 41.067 47.467 598.0 20070226 20150630 376730 99999 KHACHMAZ AERODROME AJ 41.417 48.883 27.0 19590101 20150630 376750 99999 GUBA AJ 41.367 48.516999999999996 552.0 19590101 20200624 376760 99999 KHINALIG AJ 41.183 48.133 2305.0 20070219 20150815 376770 99999 KHALTAN AJ 41.0 48.7 1107.0 20070226 20070226 376820 99999 AMASIA AM 40.95 43.783 1866.0 19590101 20200624 376830 99999 DZADZUR AM 40.867 43.95 1798.0 19800517 20040603 376860 99999 GUMRI AM 40.783 43.833 1512.0 19480101 19900804 376930 99999 STEPANAVAN AM 41.0 44.367 1400.0 19730101 19980821 376950 99999 SPITAK AM 40.833 44.266999999999996 1555.0 19590101 19800307 376990 99999 APARAN AM 40.533 44.383 1892.0 19590101 20200624 377040 99999 VANADZOR AM 40.817 44.43600000000001 1376.0 19590828 20200624 377060 99999 DILIJAN AM 40.75 44.867 1255.0 19590119 19780601 377080 99999 SEMYONOVKA AM 40.65 44.9 2097.0 19590101 19951118 377090 99999 SEVAN AM 40.55 44.933 1937.0 19590128 20031011 377110 99999 IDJEVAN AM 40.867 45.15 733.0 19590114 20200624 377130 99999 BERD AM 40.917 45.467 697.0 19610219 19810404 377170 99999 SEVAN OZERO AM 40.567 45.0 1917.0 20010916 20200624 377190 99999 TCHAMBARAK AM 40.593 45.356 1852.8 19590101 19950427 377290 99999 GADABAY AJ 40.683 45.817 1476.0 19590101 20200119 377340 99999 SHAMKIR AJ 40.833 46.033 410.0 20070614 20141201 377350 99999 GANDJA AJ 40.717 46.417 311.0 19320101 20200624 377351 99999 MAYKOP RS 44.65 40.1 679.0 20080101 20081231 377352 99999 UYTASH RS URML 42.817 47.652 3.7 20040706 20200624 377400 99999 QABALA AJ 40.983000000000004 47.867 682.0 19590101 20200119 377440 99999 MINGACHEVIR AJ 40.766999999999996 47.05 94.0 19590101 20141201 377470 99999 EVLAKH AIRPORT AJ 40.617 47.15 15.0 19590101 20200624 377490 99999 GOYCHAY AJ 40.65 47.75 95.0 19590101 20200624 377500 99999 ISMAILLY AJ 40.783 48.133 550.0 20010801 20160409 377530 99999 ALTIAGACH AJ 40.867 48.933 1082.0 19590117 20160818 377560 99999 MARAZA AJ 40.533 48.933 755.0 19590101 20200624 377590 99999 SHAMAKHY AJ 40.633 48.633 892.0 19590101 20191011 377610 99999 KHIZY AJ 40.917 49.05 525.0 19590101 20160916 377690 99999 SUMGAIT AJ 40.6 49.633 -19.0 19590124 20141201 377740 99999 ARAGATS AM 40.317 43.667 1255.0 19590101 20020726 377810 99999 ARAGAC H/M AM 40.483000000000004 44.183 3223.0 19610331 19631106 377850 99999 ASHTARAK AM 40.283 44.35 1090.0 20060128 20200624 377870 99999 ARMAVIR AM 40.133 43.903 860.8 19590101 20200624 377880 99999 YEREVAN ZVARTNOTS AM 40.15 44.383 854.0 20010916 20200624 377890 99999 YEREVAN-ARABKIR GG UGEE 40.211999999999996 44.53 1013.4 19320101 20031122 377910 99999 FANTAN AM 40.4 44.683 1800.0 19730101 20070226 377920 99999 HRAZDAN AM 40.483000000000004 44.75 1761.0 19590101 20200624 378010 99999 GAVAR AM 40.35 45.133 1962.0 19590101 20200624 378080 99999 MARTUNI AM 40.133 45.283 1943.0 19590101 19951121 378150 99999 MASRIK AM 40.2 45.75 1940.0 19590101 19990611 378160 99999 DASHKASAN AJ 40.467 46.083 1658.0 20070516 20150630 378250 99999 GYOY-GYOL AJ 40.417 46.333 1602.0 20070422 20110622 378310 99999 TAR-TAR AJ 40.35 47.016999999999996 227.0 19590101 20140406 378320 99999 BARDA AJ 40.367 47.117 69.0 19880301 20200119 378350 99999 ZARDAB AJ 40.2 47.217 -5.0 20080105 20110419 378355 99999 GABALA AJ UBBQ 40.817 47.733000000000004 338.0 20120106 20200624 378430 99999 SABIRABAD AJ 40.016999999999996 48.467 -15.0 20071214 20100622 378440 99999 KURDAMIR AJ 40.333 48.167 4.0 19590101 20190810 378480 99999 KYURKENDI AJ 40.033 48.5 0.0 19590101 19631222 378490 99999 GAZIMAMMAD AERODROME AJ 40.016999999999996 48.917 -5.0 19590101 20150606 378500 99999 BAKU (OBSERVATORY) AJ 40.35 49.833 5.0 19320101 20150801 378510 99999 BAKU (KHURDALAN) AJ 40.417 49.783 85.0 20061230 20200119 378520 99999 SHUBANY AJ 40.367 49.766999999999996 224.0 19590101 20160614 378530 99999 BAKU/ZABRAT AIRPORT AJ 40.5 49.983000000000004 -5.0 19460101 20080414 378560 99999 PUTA AJ 40.3 49.7 -11.0 19590101 19631130 378600 99999 MASHTAGA AJ 40.533 50.0 28.0 19590101 20170125 378610 99999 NEFT DASHLARI AJ 40.233000000000004 50.817 -15.0 20040917 20110520 378630 99999 GYANDZHA AJ 40.733000000000004 46.4 330.0 20040803 20200624 378635 99999 NAKHCHIVAN AJ UB15 39.189 45.458 872.6 20060201 20200624 378640 99999 HEYDAR ALIYEV AJ UBBB 40.468 50.047 3.0 19590402 20200624 378650 99999 ORSK RS UWOR 51.073 58.596000000000004 277.1 20040803 20200624 378660 99999 PIRALLAHI AJ 40.467 50.317 -24.0 19590101 19991205 378710 99999 ARTASHAT AM 39.95 44.55 833.0 20060128 20200624 378740 99999 ARARAT AM 39.817 44.567 822.0 19590101 20020210 378760 99999 EHGNADZOR AM 39.766999999999996 45.333 1317.0 19590101 20020531 378780 99999 ANANUN IERNANTCK AM 40.95 45.068000000000005 2122.0 20070531 20080316 378820 99999 DJERMUK AM 39.833 45.683 2075.0 20110925 20110925 378930 99999 AGDAM AJ 39.983000000000004 46.75 252.0 19590101 19920105 378950 99999 KHANKANDY AJ 39.983000000000004 46.75 828.0 19590101 20140703 378970 99999 SISIAN AM 39.533 46.016999999999996 1581.0 19590101 20200624 378980 99999 LACHIN AJ 39.65 46.533 1099.0 20130604 20130723 378990 99999 SHUSHA AJ 39.766999999999996 46.75 1355.0 19590101 20070227 379050 99999 BEYLAGAN AERODROME AJ 39.766999999999996 47.75 71.0 19590101 20200119 379070 99999 FIZULY AJ 39.6 47.15 439.0 19370103 20080207 379130 99999 SALYAN AJ 39.583 48.967 -21.0 19590925 20160930 379140 99999 IMISHLY AJ 39.867 48.05 -1.0 20040710 20150829 379230 99999 ALAT AJ 39.967 49.4 -16.0 19590101 20180902 379250 99999 NEFTCHALA AJ 39.4 49.25 -24.0 19600720 20200119 379260 99999 BYANDOVAN AJ 39.733000000000004 49.6 0.0 19590101 19601230 379360 99999 NAXCIVAN AJ 39.2 45.417 885.0 19480101 20081127 379470 99999 JULFA AJ 38.95 45.633 717.0 19590101 19950603 379530 99999 GORIS AM 39.510999999999996 46.347 1550.1 19590101 20020504 379570 99999 ORDUBAD AJ 38.917 46.016999999999996 787.0 19590101 19950910 379580 99999 MEGRI AM 38.9 46.25 628.0 19590101 20030217 379590 99999 KAPAN AM 39.2 46.433 706.0 19590101 20200624 379720 99999 BILASUVAR AJ 39.467 48.55 3.0 19460406 20160924 379780 99999 GYOYTAPA AJ 39.7 48.6 4.0 19590101 20160217 379810 99999 YARDIMLI AJ 38.9 48.25 794.0 20080722 20080827 379840 99999 LERIK AJ 38.766999999999996 48.4 1113.0 19590101 20100628 379850 99999 LANKARAN AJ UBBL 38.733000000000004 48.833 -12.0 19320101 20200624 379880 99999 WEST ASTARA AJ 38.5 48.633 591.0 19600420 20091010 379890 99999 ASTARA AJ 38.45 48.883 -22.0 19361231 20200119 380010 99999 AKTAU KZ UATE 43.86 51.092 22.3 19320201 20200624 380020 99999 TUSCIKUDUK KZ 44.733000000000004 51.967 56.0 19590101 20200624 380080 99999 TUSHCHIBEK KZ 44.15 51.95 240.0 19590102 20200624 380190 99999 DUKEN KZ 44.317 54.6 143.0 19590101 20030612 380230 99999 KARAKAPALKIJA UZ 44.85 56.333 126.0 19590101 20050104 380370 99999 BELEULI UZ 44.533 56.766999999999996 122.0 19600101 20020224 380390 99999 KOYKE UZ 44.016999999999996 58.233000000000004 176.0 19731004 19840501 380440 99999 UJALY KZ 44.583 61.15 55.0 19600101 20060106 380490 99999 CIRIK-RABAT KZ 44.067 62.9 88.0 19480101 20200624 380510 99999 KARAK KZ 44.883 63.167 92.0 19590101 20200624 380540 99999 19740429 19740429 380610 99999 KZYL-ORCA KZ 44.85 65.5 131.1 19480101 19630304 380620 99999 KZYL-ORDA KZ UAOO 44.766999999999996 65.533 129.0 19320101 20200624 380690 99999 SHIELI KZ 44.167 66.75 153.0 19480101 20200624 380810 99999 TASTY KZ 44.8 69.117 190.0 19530216 20030121 380820 99999 KAMKALY KZ 44.75 70.0 207.0 19590102 19850114 380910 99999 ULANBEL' KZ 44.8 71.067 266.0 19590101 20040104 380920 99999 APPROXIMATE LOCALE KZ 44.833 72.0 0.0 19820102 19820629 380990 99999 FURMANOVO KZ 44.283 72.95 350.0 19600101 20200624 381080 99999 KHANTAU KZ 44.217 73.8 504.0 20020519 20200624 381110 99999 SEVCENKO KZ 43.583 51.083 15.0 19601201 20200624 381170 99999 JERALIJEV KZ 43.2 51.717 -21.0 19530216 20040804 381240 99999 UZEN KZ 43.367 52.833 210.0 19810101 19860307 381410 99999 JASLYK UZ 43.883 57.883 127.0 19740421 20200624 381411 99999 ATYRAU KZ UATG 47.122 51.821000000000005 -21.9 20040706 20200624 381412 99999 TURKMENBASHI TX UTAK 40.063 53.007 85.0 20040706 20200624 381413 99999 KHUDZHAND TI UTDL 40.215 69.695 442.0 20040706 20200624 381414 99999 NAMANGAN UZBEKISTAN UZ UTKN 40.98 71.58 474.0 20040706 20051110 381415 99999 BUKHARA UZ UTSB 39.775 64.483 228.9 20040706 20200624 381416 99999 ZARAFSHAN UZ UTSN 41.62 64.23 425.0 20061110 20130625 381417 99999 KARSHI KHANABAD UZ UTSK 38.834 65.921 416.1 20060207 20200624 381418 99999 SHAHRISABZ UZ UTSH 39.033 66.783 599.0 20080722 20190104 381430 99999 CAPE TIGROVIY UZ 43.933 58.733000000000004 220.0 19600101 19810113 381460 99999 MUJNAK UZ 43.783 59.033 54.0 20021124 20021124 381490 99999 KUNGRAD UZ 43.083 58.933 64.0 19480101 20200624 381620 99999 CABANKAZGAN KZ 43.6 61.933 64.0 19600101 20021101 381780 99999 AK-BAJTAL UZ 43.15 64.333 234.0 19570201 20200624 381910 99999 AK-KUM KZ 43.717 67.417 174.0 19590606 20200624 381960 99999 ASHCHYSAI KZ 43.55 68.9 822.0 19611203 20200624 381980 99999 TURKESTAN KZ 43.266999999999996 68.217 207.0 19320104 20200624 382010 99999 CULAKKURGAN KZ 43.8 69.2 481.0 19600804 20200624 382020 99999 BAYKADAM KZ 43.75 69.917 19590113 19631230 382021 99999 BAIKADAM KZ 43.8 69.9 336.0 20180615 20200624 382030 99999 UJUK RS 43.783 70.933 366.0 19590101 20200624 382070 99999 CAJAN KZ 43.033 69.367 365.0 19590101 20200624 382150 99999 UMBET KZ 43.65 72.383 512.0 19590101 19820203 382200 99999 MANAS KG 43.067 74.483 637.0 19950101 20140709 382220 99999 TOLE BI KZ 43.7 73.783 456.0 19590101 20200624 382230 99999 CHOKPAR KZ 43.833 74.4 768.0 19600101 20200624 382290 99999 KURDAJ KZ 43.3 74.983 1145.0 19590101 20200624 382310 99999 FETISOVO KZ 42.733000000000004 52.65 -24.0 19590101 19631231 382320 99999 AKKUDUK KZ 42.967 54.117 78.0 19570701 20200624 382610 99999 AK-DEPE TX 42.05 59.367 74.0 20130918 20130918 382620 99999 CHIMBAJ UZ 42.95 59.817 66.0 19320602 20200624 382640 99999 NUKUS UZ 42.45 59.617 77.0 19591101 20200624 382670 99999 KENEURGENCH TX 42.3 59.133 71.0 19591101 20200510 382840 99999 KUL-KUDUK UZ 42.533 63.283 333.0 19591120 19940430 383010 99999 KYZYLKUM KZ 42.8 67.417 185.0 19590101 20200624 383130 99999 BUGUN KZ 43.717 69.0 405.0 20131128 20200624 383160 99999 ARYS KZ 42.433 68.8 240.0 19590101 20200624 383170 99999 BAJRKUM KZ 42.067 68.117 238.0 19590101 19860918 383180 99999 BAYYRKUM KZ 42.1 68.117 184.0 20131128 20200624 383280 99999 SHYMKENT KZ UAII 42.364 69.479 422.1 19480101 20200624 383285 99999 TARAZ KZ UADD 42.854 71.304 665.7 20070822 20200624 383340 99999 AUL TURARA RYSKULOVA KZ 42.483000000000004 70.3 808.0 19590101 20200624 383380 99999 BLINKOVO KZ 42.233000000000004 70.117 1122.0 19630316 20200624 383390 99999 OLGAING UZ 42.167 70.883 2151.0 19630610 19981009 383410 99999 TARAZ KZ 42.85 71.3 652.0 19480101 20190412 383420 99999 KYZYLTU KZ 42.95 72.217 19630604 19631119 383430 99999 KULAN KZ 42.95 72.75 683.0 19590101 20200624 383450 99999 TALAS KG 42.516999999999996 72.217 1218.0 19480101 20200624 383511 99999 MERKE KZ 42.9 73.2 702.0 20180911 20200624 383520 99999 BELOVODSKOE KG 42.85 74.1 726.0 19590812 20020405 383530 99999 BISHKEK KG 42.85 74.533 760.0 19460103 20200624 383531 99999 MANAS KG UCFM 43.06100000000001 74.47800000000001 627.3 20040713 20200624 383580 99999 SUSAMYR KG 42.15 73.983 2092.0 19591102 20020826 383670 99999 KARABOGAZKEL TX 41.05 52.917 -22.0 19590101 20090414 383830 99999 SHASENEM TX 41.583 58.717 62.0 19600207 20190507 383880 99999 EKEZHE TX 41.033 57.766999999999996 62.0 19590101 20200624 383920 99999 DASHKHOVUZ TX 41.75 59.817 82.0 19480101 20200624 383960 99999 URGENCH UZ 41.567 60.633 101.0 19480101 20200624 384010 99999 IGARKA RS UOII 67.433 86.617 25.0 20040824 20130719 384020 99999 KHATANGA RS UOHH 71.97800000000001 102.491 29.0 20040824 20130719 384030 99999 BUZAUBAJ UZ 41.75 62.467 98.0 19600101 20200624 384031 99999 NUKUS / KARAKALPAKSTAN UZ UTNN 42.483000000000004 59.633 77.0 20040713 20200624 384032 99999 URGENCH UZ UTNU 41.583999999999996 60.641999999999996 97.5 20040713 20200624 384080 99999 LEBAP TX 41.067 61.9 137.0 19591101 19800407 384130 99999 TAMDY-BULAK UZ UTSM 41.733000000000004 64.617 238.0 19591110 20200624 384230 99999 TORUK KZ 41.8 66.717 202.0 19590101 20021212 384270 99999 MASHIKUDUK UZ 41.05 65.283 200.0 19590930 20050804 384390 99999 SHARDARA KZ 41.367 68.0 275.0 19730101 20200624 384440 99999 KOKSU KZ 41.467 68.033 306.0 19730102 19960313 384490 99999 ALGABAS KZ 41.217 68.8 315.0 19590624 19631112 384520 99999 KARATAS KZ 41.867 69.433 637.0 19611116 20200624 384540 99999 DARBAZA-IN-KAZAKH KZ 41.567 69.117 444.0 19800322 19810512 384570 99999 YUZHNY UZ UTTT 41.258 69.281 431.9 19320101 20200624 384572 99999 TASHKENT VOSTOCNY UZ UTTP 41.32 69.4 466.0 20050411 20110803 384573 99999 MARY TX UTAM 37.619 61.897 221.9 20050722 20200624 384574 99999 DASHOGUZ TX UTAT 41.761 59.827 82.9 20050724 20200624 384620 99999 PSKEM UZ 41.9 70.367 1258.0 19600208 20200624 384660 99999 TERS KG 41.667 70.717 1759.0 19591222 19960416 384680 99999 IRTASH UZ 41.117 70.333 1402.0 19600131 19740808 384710 99999 CATKAL RIVER KG 41.9 71.35 1937.0 19591101 20020411 384730 99999 TOKTOGUL KG 41.833 72.867 986.0 19591102 20180417 384740 99999 URTA-TOKAISKOE KG 41.367 71.45 1120.0 19600128 19631212 384750 99999 ANDIZHAN AIRPORT UZ UTFA 40.733000000000004 72.333 477.0 19591205 20200606 384970 99999 BOGUS SOVIET RS 19881002 20040305 385030 99999 YANGYSU TX 40.733000000000004 54.667 12.0 19610402 19620803 385070 99999 TURKMENBASHI TX 40.033 52.983000000000004 90.0 19320101 20200624 385110 99999 CHAGYL TX 40.783 55.333 115.0 19570710 20200624 385270 99999 DAVALY TX 40.067 57.383 47.0 19591101 20051015 385290 99999 DEVERZE TX 40.183 58.483000000000004 84.0 19550703 20151211 385420 99999 DZHIGERBENT TX 40.766999999999996 62.016999999999996 135.0 19610726 19620726 385450 99999 DARGANATA TX 40.467 62.283 142.0 19480101 20200624 385510 99999 DZANGELDY UZ 40.85 63.333 208.0 19590901 20070227 385530 99999 AYAKAGITMA UZ 40.683 64.483 219.0 19590801 20040215 385650 99999 NURATA UZ 40.55 65.683 485.0 19480106 20200624 385670 99999 NAVOI UZ UTSA 40.133 65.35 341.0 19600101 20200624 385780 99999 GALLYAARAL UZ 40.033 67.367 691.0 19600102 19631223 385790 99999 DZIZAK UZ UTED 40.117 67.833 345.0 19480101 20200624 385820 99999 ZAPADNY ARNASAY UZ 40.833 67.667 250.0 19590101 19631231 385830 99999 SYR-DAR'JA UZ 40.817 68.683 264.0 19600101 20200624 385890 99999 JANGIER UZ 40.283 68.833 316.0 19530216 20160410 385980 99999 KAJRAKKUMSKOE TI 40.266999999999996 69.817 347.0 20101001 20200624 385990 99999 KHUDJANT TI 40.217 69.733 427.0 19360101 20200624 386010 99999 ABLYK UZ 40.983000000000004 70.05 846.7 19591008 19620822 386020 99999 DZARBULAK TI 40.8 70.633 699.0 19600101 20191228 386060 99999 KOKAND UZ 40.55 70.95 499.0 19590913 20160121 386090 99999 ISFARA TI 40.133 70.6 873.0 19480101 19970510 386110 99999 NAMANGAN UZ UTFN 40.983000000000004 71.583 474.0 19480101 20200624 386130 99999 DZHALAL-ABAD KG 40.917 72.95 765.0 19570702 20200624 386150 99999 OSH KG 40.533 72.8 875.0 19591102 20031003 386155 99999 OSH KG UAFO 40.609 72.793 892.1 20070823 20200624 386160 99999 KARA-SUU KG 40.7 72.9 868.0 19980301 20200624 386180 99999 FERGANA AIRPORT UZ UTFF 40.367 71.75 603.5 19480101 20200624 386230 99999 ARPA KG 40.783 74.767 2865.0 19600101 19631223 386270 99999 GULCA KG 40.317 73.55 1555.0 19591102 20120201 386280 99999 KOKMAGDAY KG 40.25 74.0 19600214 19631216 386300 99999 NEBIT-DAG TX 39.483000000000004 54.367 16.0 19590101 20140729 386340 99999 NEBITDAG TX 39.5 54.333 -8.0 19591102 20061019 386360 99999 AYDIN TX 39.383 54.833 14.0 19600101 19600320 386370 99999 OGRYDA TX 39.1 53.1 -26.0 19590101 20070227 386410 99999 JASGA TX 39.683 55.567 -9.0 19591102 20021006 386470 99999 GAZANDZHYK TX 39.25 55.516999999999996 31.0 19591102 20200624 386530 99999 SERNYY ZAVOD TX 39.983000000000004 58.833 90.0 19530402 19621019 386550 99999 MODAR TX 39.533 57.766999999999996 73.0 19591102 19631217 386560 99999 ERBENT TX 39.317 58.6 87.0 19590109 20200624 386650 99999 AKMOLLA TX 39.583 59.95 108.0 19730102 20051114 386830 99999 BUHARA UZ 39.717 64.617 226.0 19361231 20200624 386840 99999 DJACHEV TX 39.317 63.2 182.0 20081101 20200211 386850 99999 KARAKUL UZ 39.5 63.85 196.0 19591101 20020814 386870 99999 CHARDZHEV TX 39.083 63.6 190.0 19480101 20200624 386880 99999 BOGUS SOVIET RS 19851103 20030215 386960 99999 SAMARKAND UZ UTSS 39.701 66.984 677.9 19480101 20200624 386990 99999 URUS-KISHLAK UZ 39.117 66.883 658.0 19591102 19630320 387050 99999 PENDZHIKENT TI 39.5 67.6 1015.0 19600117 20200624 387080 99999 FARAB TI 39.233000000000004 67.467 1981.0 19630615 20190713 387110 99999 BAHMAL UZ 39.717 68.017 1321.7 20150813 20150813 387130 99999 URA-TYUBE TI 39.9 68.983 1005.0 19600102 20200624 387150 99999 SHAHRISTANSKIJ PEREVAL TI 39.567 68.583 3143.0 19610107 20200624 387160 99999 SONGISTON (MTN STN) TI 39.383 68.617 1507.0 19610119 20050126 387180 99999 ISKANDERKUL TI 39.1 68.383 2204.0 19751101 20200624 387190 99999 ANZQBSKIJ PEREVAL TI 39.083 68.867 3373.0 19610201 20200624 387250 99999 MADRUSHKAT TI 39.433 69.667 2234.0 19591029 20200624 387340 99999 DEHAVZ TI 39.45 70.2 2561.0 19751101 20200624 387440 99999 LAHSH TI 39.283 71.867 1198.0 19730312 20200624 387450 99999 SARY-TAS KG 39.733000000000004 73.267 3155.0 19591101 20010303 387480 99999 BOGUS SOVIET RS 19860301 19860726 387500 99999 ESENGULY TX 37.467 53.967 -22.0 19320101 20200624 387550 99999 BYGDAILI TX 38.533 54.3 -1.0 19600216 20150526 387560 99999 BEKIBENT TX 38.617 55.183 206.0 19600111 20090520 387590 99999 GYZYLETREK TX 37.617 54.783 29.0 19591102 20170817 387630 99999 GYZYLARBAT TX 38.983000000000004 56.283 92.0 19320101 20200624 387670 99999 GARRYQALA TX 38.433 56.3 312.0 19591103 20120325 387730 99999 BOKYRDAK TX 38.75 58.467 84.0 19591101 20001027 387740 99999 BAKHERDEN TX 38.433 57.417 159.0 19590801 20200624 387910 99999 CHESHME TX 38.683 61.2 147.0 19570703 19980225 387990 99999 UCHADZHY TX 38.083 62.8 185.0 19530216 20200624 388040 99999 REPATEK TX 38.567 63.183 185.0 19320101 20190904 388060 99999 BYRDALYK TX 38.467 64.367 212.0 19591102 20200624 388120 99999 KARSHI UZ 38.8 65.717 376.0 19590804 20200624 388150 99999 GUZAR UZ 38.617 66.267 524.0 19480101 20090612 388160 99999 MINCHUKUR UZ 38.65 66.933 2121.0 19600101 20030429 388180 99999 AKRABAT UZ 38.25 66.833 1601.0 19600817 20040319 388270 99999 BAYSUN UZ 38.2 67.2 1244.6 19591102 19630331 388280 99999 PULE-KHAKIM UZ 38.167 67.367 977.0 19590915 20161224 388290 99999 DENAU UZ 38.266999999999996 67.9 520.0 19590811 20020829 388350 99999 SAHRINAU TI 38.567 68.333 821.0 19600410 20030605 388360 99999 DUSHANBE TI UTDD 38.543 68.825 784.9 19320101 20200624 388380 99999 ISAMBAJ TI 38.05 68.35 563.0 19600102 20200624 388400 99999 NUREK TI 38.417 69.35 549.0 19830701 20191229 388420 99999 BUSTONABAD-IN-TAJIK TI 38.683 69.567 1964.0 19601202 20191228 388440 99999 SANGLOK TI 38.25 69.233 2239.0 19730101 20200624 388460 99999 HOVALING TI 38.367 69.983 1468.0 20090801 20200624 388470 99999 DANGARA TI 38.1 69.317 660.0 19591102 20200624 388480 99999 KANGURT TI 38.25 69.517 908.0 20020716 20021005 388510 99999 RASHT TI 39.0 70.3 1316.0 19591124 20200624 388530 99999 KHABURABAD TI 38.65 70.717 3347.0 19730101 20050327 388560 99999 DARVAZ TI 38.467 70.883 1288.0 19590901 20200624 388620 99999 FEDCENKO GLACIER TI 38.917 72.167 4169.0 19370104 20050827 388670 99999 HUMRAGI TI 38.283 71.333 1737.0 19730101 20130112 388690 99999 IHRT TI 38.167 72.633 3276.0 19590101 20200624 388710 99999 KARAKUL LAKE TI 39.083 73.417 3930.0 19591102 20020618 388750 99999 KARAKUL TI 39.016999999999996 73.55 3940.0 19570722 20200624 388780 99999 MURGAB TI 38.167 73.967 3576.0 19591118 20200624 388790 99999 OKSU TI 38.067 74.467 3740.0 19770705 20020312 388800 99999 ASHGABAT TX UTAA 37.986999999999995 58.361000000000004 210.9 19320101 20200624 388810 99999 GAUDAN-IN-TURKMEN TX 37.65 58.4 1486.0 19591205 20111017 388850 99999 KAKA TX 37.35 59.633 308.0 19590810 20181211 388860 99999 TEDZHEN TX 37.383 60.516999999999996 186.0 19480101 20200624 388910 99999 CHASHKENT TX 37.8 61.55 200.0 19590909 20011030 388950 99999 BAJRAMALY TX 37.6 62.183 240.0 19370731 20200624 388990 99999 ELOTEN TX 37.3 62.417 259.0 19590818 20050127 389110 99999 KERKI TX 37.833 65.2 240.0 19320101 20200624 389150 99999 CARSANGA TX 37.516999999999996 66.017 265.0 19590801 20200624 389210 99999 SHIRABAD UZ 37.667 67.017 410.0 19590811 20050713 389270 99999 TERMEZ UZ UTST 37.287 67.31 313.0 19480101 20200624 389300 99999 AJVADZ TI 36.983000000000004 68.033 349.0 19610104 20191228 389320 99999 GANDZHINA TI 37.95 68.567 752.0 20101001 20200624 389330 99999 KURGAN-TYUBE TI 37.817 68.783 429.0 19600101 20200624 389370 99999 SHAARTUZ TI 37.317 68.133 380.0 19600602 20040611 389430 99999 KULYAB TI 37.917 69.783 659.0 19600101 20191228 389440 99999 PARKHAR TI 37.483000000000004 69.383 448.0 19591030 20200624 389450 99999 MITEN-TUGAY TI 37.667 69.617 480.0 19810112 20030120 389470 99999 PYANDJ TI 37.233000000000004 69.083 363.0 19480101 20200624 389510 99999 RUSHAN TI 37.95 71.55 1981.0 20130112 20200624 389540 99999 KHOROG TI 37.5 71.5 2077.0 19571011 20200624 389560 99999 BULUN-KUL TI 37.7 72.95 3744.0 19591111 20130112 389570 99999 ISHKASHIM TI 36.717 71.6 2523.0 19591108 20200624 389660 99999 SAJMAK TI 37.533 74.833 3840.0 19601201 20191229 389740 99999 SARAGT TX 36.533 61.217 275.0 19460403 20200624 389870 99999 GYSHGY TX 35.283 62.35 625.0 19320101 20200624 389890 99999 TAGTABAZAR TX 35.95 62.917 349.0 19570710 20090910 389980 99999 LEKKER TX 36.266999999999996 63.7 787.0 19600101 20011007 400010 99999 KAMISHLY SY OSKL 37.021 41.191 451.1 19501109 20200624 400050 99999 JARABLUS SY 36.817 38.0 351.0 19750505 20081120 400070 99999 ALEPPO INTL SY OSAP 36.181 37.224000000000004 388.9 19370105 20200624 400090 99999 TEL ABIADH SY 36.7 38.95 349.0 19630622 20120917 400160 99999 HASSAKAH SY 36.5 40.75 308.0 19370105 20200624 400170 99999 EDLEB SY 35.933 36.617 451.0 19920615 20080510 400220 99999 LATTAKIA SY 35.533 35.766999999999996 7.0 19370201 20200624 400250 99999 BASSEL AL ASSAD INTL SY OSLK 35.400999999999996 35.949 47.9 19500711 20200624 400270 99999 ETHERIA SY 35.4 37.85 460.0 19990528 20071212 400290 99999 SALAMYA SY 35.0 37.033 481.0 20031116 20180828 400300 99999 HAMA SY 35.117 36.75 303.0 19570630 20200624 400390 99999 RAQQA SY 35.933 39.016999999999996 246.0 19600101 20190209 400410 99999 AL-RASTAN SY 34.933 36.733000000000004 450.0 20010912 20071128 400450 99999 DEIR ZZOR SY OSDZ 35.285 40.176 213.4 19370101 20171220 400500 99999 TARTOUS SY 34.883 35.883 5.0 19930201 20180819 400550 99999 HOMS SY 34.75 36.717 485.0 19370715 20191215 400610 99999 PALMYRA SY OSPR 34.556999999999995 38.317 402.9 19370101 20171230 400660 99999 SAFITA SY 34.817 36.133 359.0 19630117 20200624 400670 99999 SWEIDA SY 32.7 35.6 997.0 20040409 20190918 400720 99999 ABUKMAL SY 34.417 40.917 182.0 19600102 20140625 400760 99999 AL QUNAYTIRAH SY 33.117 35.817 941.0 19600102 20080425 400790 99999 DAMASCUS /DIMASHO SY 33.483000000000004 36.233000000000004 729.1 19500215 19670630 400800 99999 DAMASCUS INTL SY OSDI 33.412 36.516 615.7 19370101 20200624 400830 99999 NABK SY 34.033 36.717 1333.0 19600102 20170625 400840 99999 AL THAURAH SY 34.367 40.15 119.0 19370216 20070811 400850 99999 SABE ABAR SY 33.783 37.7 825.0 20010714 20110301 400860 99999 TIYAS SY OS72 34.533 37.7 558.0 19370216 19390830 400870 99999 JABAL ETTANF SY 33.483000000000004 38.667 708.0 19600102 20191121 400910 99999 FIQ SY 32.766999999999996 35.7 339.0 19600102 19670622 400950 99999 DARA'A SY 32.6 36.1 543.0 19780914 20110424 401000 99999 RAFIC HARIRI INTL LE OLBA 33.821 35.488 26.5 19321019 20200624 401010 99999 HOUCHE-AL-OUMARA LE 33.817 35.85 920.0 19490130 20200624 401020 99999 RAYACK LE 33.867 36.0 920.0 19370101 20200128 401030 99999 TRIPOLI LE 34.45 35.8 5.0 19370104 20200624 401040 99999 MERDJAYOUN LE 33.367 35.583 773.0 19490130 20021219 401050 99999 AL-ARZ (LES CEDRES) LE 34.25 36.05 1916.0 19490301 20181226 401060 99999 KSARA LEBABON LE 33.833 35.883 918.1 19490309 19670112 401100 99999 DAHR BAIDAR LE 33.817 35.766999999999996 1524.0 19630117 20131016 401530 99999 HAR-KNAAN (ZEFAT) IS 32.967 35.5 934.0 19500301 20200624 401540 99999 HAIFA/U. MICHAELI IS LLHA 32.817 35.0 5.0 19510301 19810123 401550 99999 HAIFA IS LLHA 32.809 35.043 8.5 19490301 20200624 401650 99999 RAMAT-DAVID IS 32.667 35.183 49.0 19490301 20030624 401700 99999 BOGUS ISRAELI IS 52.667 7.832999999999999 7.0 19890313 20041118 401730 99999 NETANYA IS 32.333 34.85 0.0 19510620 19600731 401760 99999 SDE-DOV (TEL-AVIV) IS 32.1 34.783 4.0 19500301 20070916 401761 99999 MAHANAIM I BEN YAAKOV IS LLIB 32.981 35.571999999999996 281.0 20040510 20200331 401762 99999 SDE DOV IS 32.117 34.783 13.0 20040510 20190630 401770 99999 TEL AVIV /PORT IS 32.1 34.783 11.0 19500301 19670630 401790 99999 BET DAGAN IS 32.0 34.817 35.0 19791111 20200624 401800 99999 BEN GURION IS LLBG 32.010999999999996 34.887 41.1 19431101 20200624 401830 99999 JERUSALEM CENTER IS 31.767 35.217 815.0 20080116 20200624 401840 99999 JERUSALEM IS OJJR 31.865 35.219 757.4 19490301 20070916 401900 99999 BEER SHEVA CITY IS 31.25 34.8 280.0 20080116 20200624 401910 99999 TEYMAN IS LLBS 31.287 34.723 199.9 19510101 20050905 401921 99999 SEDOM IS 31.031 35.391999999999996 -388.0 20181002 20200624 401980 99999 OVDA IS LLOV 29.94 34.936 454.8 19830201 20190331 401990 99999 EILAT IS LLET 29.561 34.96 12.8 19510101 20200624 402150 99999 TULKARM IS 32.317 35.016999999999996 -999.9 20060409 20060409 402300 99999 GAZA INTERNATIONAL AIRPORT IS 31.233 34.266999999999996 -999.9 19650815 20080309 402400 99999 HEBRON IS 31.533 35.1 -999.9 20091005 20151011 402500 99999 H4 JO OJHR 32.539 38.195 685.8 19630117 20200604 402530 99999 BAQURA JO 32.633 35.617 -170.0 20031225 20031225 402550 99999 IRBID (MET) JO OJBD 32.55 35.85 619.0 19780701 20200624 402560 99999 WADI RAYAN JO 32.4 35.583 -200.0 20050129 20180628 402570 99999 RAS MUNEEF JO 32.367 35.75 1150.0 20051225 20051225 402600 99999 PRINCE HASAN JO OJHF 32.161 37.149 676.7 19640113 20200624 402650 99999 KING HUSSEIN JO OJMF 32.356 36.259 682.8 19530301 20200624 402680 99999 SALT JO 32.033 35.733000000000004 915.0 20050101 20050101 402700 99999 MARKA INTL JO OJAM 31.973000000000003 35.992 778.8 19490301 20200624 402720 99999 QUEEN ALIA INTL JO OJAI 31.723000000000003 35.993 730.0 19830701 20200624 402750 99999 QATRANEH JO 31.25 36.117 768.0 20050905 20200108 402800 99999 JERICHO JO 31.866999999999997 35.5 -275.0 19610702 20030713 402850 99999 DEIR ALLA JO 32.217 35.617 -224.0 20031130 20150308 402900 99999 JERUSALEM AIRPORT JO LLJR 31.866999999999997 35.217 759.0 19550802 20061031 402920 99999 ER RABBAH JO 31.267 35.75 920.0 20040523 20040523 402960 99999 GHOR SAFI JO 31.033 35.467 -350.0 19830701 20200624 403100 99999 MA'AN JO OJMN 30.166999999999998 35.783 1069.0 19610701 20200624 403400 99999 AQABA KING HUSSEIN INTL JO OJAQ 29.612 35.018 53.3 19610701 20200624 403410 99999 AQABA PORT JO 29.483 34.983000000000004 3.0 19650806 20031017 403415 99999 AL KHARJ SA OEKJ 24.061 47.411 426.7 20050315 20140324 403560 99999 TURAIF SA OETR 31.693 38.731 854.4 19510406 20200624 403570 99999 ARAR SA OERR 30.906999999999996 41.138000000000005 552.6 19510407 20200624 403584 99999 ARAR & SA 30.967 40.983000000000004 542.0 19831222 19910806 403600 99999 GURIAT SA OEGT 31.412 37.279 509.6 19840415 20200624 403610 99999 AL JOUF SA OESK 29.785 40.1 689.2 19730101 20200624 403620 99999 RAFHA SA OERF 29.625999999999998 43.49100000000001 449.3 19510406 20200624 403630 99999 AL-ZABERAH SA 28.0 41.45 617.0 20170419 20170705 403640 99999 JUBBAH SA 28.033 40.95 945.0 20020518 20040816 403660 99999 LISS SA 31.233 38.2 843.0 19770926 20071130 403670 99999 QIBAH SA 27.4 44.317 476.0 20010709 20130216 403680 99999 TAWQAH SA 31.217 39.266999999999996 948.0 19780205 20030527 403690 99999 HAQL SA 29.5 35.0 2.0 20011030 20020929 403700 99999 MASHTHOBAH SA 27.35 45.016999999999996 244.0 20161105 20161105 403710 99999 TOBAGE SA 29.666999999999998 38.717 1016.0 20010716 20020204 403720 99999 MAARIK SA 30.533 38.9 813.0 19490101 19870116 403724 99999 KUWAIT MET/LOC UNKN KU OKAM 0.0 0.0 -999.0 19810220 19820302 403730 99999 QAISUMAH SA OEPA 28.335 46.125 357.8 19510406 20200624 403740 99999 AL-MUWAYLAH SA 27.7 35.483000000000004 26.0 19910606 20030621 403750 99999 TABUK SA OETB 28.365 36.619 777.5 19730101 20200624 403760 99999 TAYMA SA 27.6 38.567 860.0 19910408 20010109 403770 99999 KING KHALED MILITARY CITY SA OEKK 27.901 45.528 412.1 19780512 20170910 403780 99999 BUBIYAN KU 29.783 48.367 3.0 19770215 20030519 403790 99999 AL-SALMI KU 29.116999999999997 46.667 290.0 19761218 19821012 403800 99999 AL-KHAFJI SA 28.4 48.5 8.0 19771201 20111010 403810 99999 AL-HOAGE SA 28.883000000000003 38.9 884.0 20161015 20161015 403820 99999 AL-NWAISEEB KU 28.5 48.467 3.0 19770728 19780702 403900 99999 BAG'A SA 27.916999999999998 42.467 683.0 20040604 20051203 403940 99999 HAIL SA OEHL 27.438000000000002 41.68600000000001 1015.3 19730101 20200624 403950 99999 HAIL AIRPORT SA 27.433000000000003 41.683 1002.0 19510428 20040703 403980 99999 GARB SA 28.316999999999997 38.617 935.0 20191112 20191112 404000 99999 WEJH SA OEWJ 26.199 36.476 20.1 19730101 20200624 404010 99999 PRINCE ABDULMAJEED BIN ABDULAZIZ AIRPORT SA OEAO 26.294 38.064 623.0 20101110 20200624 404020 99999 TABAH SA 27.017 42.167 1000.0 20041119 20050803 404040 99999 GASSIM AIRPORT SA 26.3 43.766999999999996 648.0 20080427 20080427 404050 99999 GASSIM SA 26.3 43.766999999999996 648.0 19730101 20200624 404100 99999 KHAYBER SA 25.666999999999998 39.3 754.0 19930102 20081231 404140 99999 PRINCE SALMAN BIN ABDULAZIZ SA OEDM 24.45 44.121 922.3 20040810 20200624 404150 99999 DAMMAM (KING FAHD INT. AIRPORT) SA 26.433000000000003 49.8 12.0 20040105 20200624 404160 99999 KING ABDULAZIZ AB SA OEDR 26.265 50.152 25.6 19460214 20200624 404170 99999 K.F.I.A. (KING FAHAD INT. AIRPORT) DAMMA SA 26.45 49.817 12.0 19981231 20081231 404180 99999 AL-QATIF-GOSP-3 SA 26.833000000000002 49.967 1.0 20040517 20040517 404184 99999 AL-HASA SA OEHS 25.4 49.483000000000004 178.0 19831223 19850319 404190 99999 DAMMAM-A.W.S. SA 26.4 50.133 10.0 19910605 20030707 404194 99999 JUBAIL SA OEJB 27.039 49.405 7.9 20000906 20200608 404200 99999 AL AHSA SA OEAH 25.285 49.485 179.2 19810101 20200624 404210 99999 HAFOOF-A.W.S. SA 25.3 49.65 151.0 19911101 20120109 404220 99999 DAMMAM - MET. SA 26.4 50.183 4.0 20070628 20080217 404260 99999 DOHA PORT BA 25.3 51.55 3.0 19780907 19821231 404270 99999 BAHRAIN/MUHARRAQ BA OBBI 26.267 50.617 2.0 19490206 20030605 404280 99999 DOHA INTL AIRPORT QA OTBD 25.267 51.55 11.0 19730101 20030615 404290 99999 UMM SAID QA 24.9 51.55 4.0 19780903 19790525 404300 99999 PRINCE MOHAMMAD BIN ABDULAZIZ SA OEMA 24.553 39.705 655.6 19580302 20200624 404320 99999 UQLAT AL-SUQ0R SA 25.833000000000002 42.25 783.0 19910406 20040927 404340 99999 DHARIAH SA 25.366999999999997 42.733000000000004 920.0 20041108 20080525 404350 99999 AL-DAWADAMI SA OEDW 26.983 44.117 923.0 19811002 20200624 404370 99999 KING KHALED INTL SA OERK 24.958000000000002 46.699 624.5 19831222 20200624 404375 99999 KING KHALID MIL CTY SA 27.9 45.533 412.0 19891115 19930322 404380 99999 KING SALMAN AB SA OERY 24.721999999999998 46.725 635.2 19580305 20200624 404384 99999 AL AHSA SA 25.333000000000002 49.583 158.0 19810220 19810806 404390 99999 YENBO SA OEYN 24.144000000000002 38.063 7.9 19730101 20200624 404400 99999 YENBO A.W.S. SA 24.017 38.233000000000004 11.0 19911101 20040603 404410 99999 KHASHM ALAN/ RIYADH AIRPORT SA OEKA 24.621 46.919 563.3 20090715 20131218 404450 99999 AL-KHARJ SA 24.15 47.317 439.0 19730101 20081106 404453 99999 ABU DHABI INTL AE 24.433000000000003 54.65 27.0 19820902 19830510 404460 99999 NAME/LOCATION UNKN AE 0.0 0.0 -999.0 19821101 19821231 404480 99999 DUBAI AE OMDB 25.25 55.333 8.0 19730620 19821231 404490 99999 ASH SHARIQAH SW AE 25.35 55.383 5.0 19490105 19821231 404500 99999 AL-KHUSARIAH SA 23.733 44.633 1080.0 19910805 20100122 404520 99999 RAS-AL-KHAIMA AE OMRK 25.8 55.933 27.0 19790501 20030528 404540 99999 OBAYLAH SA 22.0 49.917 150.0 19780102 20020310 404560 99999 SHAWALAH SA 22.333000000000002 54.0 50.0 19771201 19821231 404580 99999 KHASSAB YM OOKE 26.183000000000003 56.233000000000004 0.0 19790201 19821231 404600 99999 BURAIMI MU OOBR 24.25 55.833 295.0 19490104 20020921 404610 99999 SOHAR MU OOSH 24.35 56.733000000000004 0.0 19800208 20030219 404620 99999 MUSCAT/SEEB INTL MU OOMS 23.583000000000002 58.283 14.0 19740308 19821231 404630 99999 MINA QUABOOS MU 23.583000000000002 58.467 0.0 19821003 19821230 404650 99999 SAIG MU OOSQ 23.133000000000003 57.633 2132.0 19780104 19821231 404670 99999 IBRA MU OOIA 22.717 58.933 0.0 19800311 19810711 404680 99999 SUR MU OOSR 22.583000000000002 59.5 6.0 19781001 20030319 404690 99999 BURAIMI MU OOFD 24.25 55.833 295.0 19780601 20011121 404710 99999 SUR MU -22.583000000000002 59.5 6.0 19780228 19781108 404740 99999 THUMRAIT MU OOTH 17.733 53.933 0.0 19800301 20020309 404750 99999 RAYSUT MU 16.917 53.917 0.0 19820706 19821231 404760 99999 JEDDAH/ABUL AZIZ SA OEJN 21.666999999999998 39.15 8.0 19810601 19821231 404770 99999 JEDDAH INTL SA OEJD 21.5 39.2 17.0 19490419 19821231 404800 99999 TAIF/AT TAIF SA OETF 21.483 40.533 1471.0 19730101 20030421 404950 99999 SULAYEL/ASSULAYYIL SA OESL 20.467 45.667 615.0 19730102 19821231 404980 99999 BISHA SA OEBH 19.967 42.667 1167.0 19730101 20030104 405500 99999 ABDALY KU 30.066999999999997 47.683 25.2 20020605 20200624 405510 99999 MITRIBAH KU 29.816999999999997 47.35 119.5 20070228 20200624 405520 99999 JAL ALIYAH KU 29.616999999999997 47.583 120.5 20070128 20180402 405530 99999 SABRIYAH KU 29.75 47.85 5.0 20110607 20200624 405640 99999 UMM AL-AISH KU 29.8 47.766999999999996 34.0 19490130 19821231 405680 99999 BUBYAN ISLAND KU 29.767 48.367 5.9 19790101 20200205 405690 99999 BEACON N6 KU 29.566999999999997 48.2 5.6 19730101 20080517 405700 99999 SALMY KU 29.1 46.683 289.5 19740602 20200624 405710 99999 BEACON M28 KU 29.517 48.6 8.0 19780103 20080517 405720 99999 SOUTH DOLPHIN KU 29.416999999999998 48.0 6.9 19730101 20080517 405730 99999 ABRAQUE MAZRAA KU 29.366999999999997 46.967 232.4 20070228 20200624 405736 99999 ALI AL SALEM AB KU OKAS 29.346999999999998 47.521 143.9 20190102 20200624 405750 99999 SALALAH MU OOSA 17.033 54.083 17.0 19490206 19821231 405760 99999 SANAA INTL/RAHABA YM OYSN 15.482999999999999 44.217 2206.0 19740925 19821231 405770 99999 MARIB YM OYMB 15.482999999999999 45.317 1143.0 19790301 19821221 405780 99999 AL HUDAYDAH/HODEIDA YM OYHD 14.75 42.983000000000004 11.0 19761105 19821231 405790 99999 MOKHA/AL MOCHA YM OYMK 13.333 43.266999999999996 3.0 19750703 19821217 405800 99999 RABYAH KU 29.3 47.933 21.3 19790101 20200624 405810 99999 KUWAIT CITY KU 29.383000000000003 48.0 7.5 20010705 20200624 405820 99999 KUWAIT INTL KU OKBK 29.226999999999997 47.968999999999994 62.8 19450802 20200624 405830 99999 AHMADI OIL PIER KU 29.066999999999997 48.167 19.7 19770829 20080517 405840 99999 FAHAAHEEL KU 29.066999999999997 48.15 16.0 20010709 20010709 405850 99999 SALMIYAH KU 29.35 48.1 7.9 19790401 20200624 405860 99999 JAHRA KU 29.316999999999997 47.667 55.5 19490206 20200624 405870 99999 SULAIBIYA KU 29.267 47.717 54.0 19541116 20200624 405880 99999 FAILAKAH ISLAND KU 29.45 48.333 7.1 19490130 20200624 405885 99999 DHALA/AD DALI YM 13.732999999999999 44.733000000000004 1448.0 19730708 19740218 405900 99999 MANAGISH KU 29.066999999999997 47.533 188.0 19550901 20200329 405920 99999 WAFRA KU 28.566999999999997 48.067 107.1 19550602 20200624 405930 99999 JULUIAH PORT KU 28.866999999999997 48.283 8.9 20070228 20171002 405940 99999 NUWASIB KU 28.55 48.383 20.6 20070128 20200624 405960 99999 MARADIM ISLAND KU 28.683000000000003 48.65 8.5 20020723 20200624 405970 99999 ADEN KHORMAKSAR YM ODAA 12.833 45.033 3.0 19490130 19821231 405990 99999 SOCOTRA/RAS KARMA YM ODAK 12.633 53.9 45.0 19760823 19790728 406010 99999 BOGUS IRAQI IZ 51.75 11.067 38.1 19890116 20030218 406020 99999 RABIAH IZ 36.8 42.1 382.0 19740101 20200624 406030 99999 TEL AFER IZ ORTF 36.367 42.483000000000004 373.0 19881120 20200624 406040 99999 SINJAR IZ 36.317 41.833 476.0 19730101 20140802 406050 99999 ZAKHO IZ 37.133 42.717 442.0 19761101 20200624 406060 99999 DUHOOK IZ 36.867 43.0 276.0 20100303 20200624 406070 99999 AQRAH IZ 36.75 43.89 716.0 20110830 20200623 406080 99999 MOSUL IZ ORBM 36.306 43.147 216.1 19370111 20200624 406090 99999 TEL ABTA IZ 35.917 42.717 200.0 20061026 20141126 406100 99999 BAAJ IZ 36.033 41.733000000000004 321.0 20090801 20190628 406109 99999 AL QAIM IZ 34.266999999999996 41.167 232.0 20090102 20090910 406110 99999 SALLAHDEEN IZ 36.383 44.2 1088.0 19730101 20200624 406120 99999 SORAN IZ 36.867 44.633 927.0 20120204 20140510 406150 99999 BOGUS IRAQI IZ 51.867 13.232999999999999 29.0 19890101 20010912 406160 99999 ERBEEL IZ 36.15 44.0 420.0 19881119 20020826 406180 99999 BOGUS IRAQI IZ 19890318 19890801 406190 99999 MAKHMOOR IZ 35.75 43.6 270.0 19881120 20180216 406200 99999 HALABCHA IZ 35.2 45.95 620.0 19881102 20200623 406210 99999 KIRKUK AB IZ ORKK 35.469 44.349 323.4 19370105 20200624 406220 99999 CHEM-CHAMAL IZ 35.516999999999996 44.833 701.0 19881120 20200624 406230 99999 SULYMANIYAH IZ 35.55 45.45 853.0 19730103 20200624 406235 99999 QAYYARAH WEST IZ ORQW 35.766999999999996 43.125 228.3 20050101 20191105 406270 99999 AL KAEM IZ 34.383 41.016999999999996 177.5 19881120 20190418 406290 99999 ANAH IZ 34.367 41.95 150.0 19730101 20200624 406310 99999 BAIJI IZ 34.9 43.533 150.0 19780601 20200624 406320 99999 TUZ IZ 34.883 44.65 220.0 20090808 20200624 406330 99999 TIKRIT IZ 34.567 43.7 107.0 19881120 20200315 406340 99999 HADITHAH IZ 34.133 42.35 140.0 19371002 20200624 406350 99999 SAMARAA IZ 34.183 43.883 75.0 19881120 20030604 406355 99999 ALI BASE IZ ORTL 30.936 46.09 6.1 20050101 20191105 406356 99999 ERBIL INTL IZ 36.233000000000004 43.967 408.7 20090326 20200624 406370 99999 KHANAQIN IZ 34.35 45.383 202.0 19370801 20200131 406379 99999 FOB COBRA IZ 34.233000000000004 45.15 125.0 20100414 20110630 406380 99999 AL KHALIS IZ 33.833 44.533 44.0 20070618 20200624 406400 99999 KILO 160 IZ 33.217 41.783 400.0 19881120 20160524 406410 99999 TORAYBEEL IZ 32.717 38.733000000000004 800.0 19770110 20130627 406420 99999 RUTBAH IZ 33.033 40.283 615.0 19370107 20200624 406430 99999 AUKASHAT IZ 33.8 40.133 583.0 20090729 20150317 406440 99999 H1 IZ 33.783 41.633 409.0 19761211 19910801 406450 99999 RAMADI IZ 33.45 43.317 48.0 19881120 20200624 406460 99999 HEET IZ 33.633 43.75 58.0 20090720 20200624 406480 99999 HABANYAH IZ ORBH 33.383 43.567 43.6 19370105 20190714 406491 99999 AL FALLUJAH IZ 33.317 43.883 47.0 20050101 20071018 406500 99999 BAGHDAD INTL AIRPORT IZ ORBI 33.266999999999996 44.233000000000004 34.7 19370104 20200624 406503 99999 BAGHDAD/SIRSENK/BAM IZ ORBB 33.233000000000004 44.233000000000004 34.0 19881223 20180706 406506 99999 BALAD AB IZ ORBD 33.94 44.361999999999995 49.1 20050101 20191107 406507 99999 AL ASAD AB IZ ORAA 33.786 42.441 188.4 20190501 20191105 406508 99999 AL SAHRA AAF IZ ORSH 34.673 43.543 137.5 20050101 20191105 406511 99999 BASHUR IZ ORBR 36.534 44.34 633.7 20111109 20191019 406514 99999 AL TAJI AAF IZ ORTI 33.524 44.257 36.9 20050101 20111130 406550 99999 AINALTAMER IZ 32.55 44.717 28.0 20100302 20200624 406559 99999 FOB KALSU IZ 32.8 44.45 27.0 20051007 20111120 406560 99999 KERBELA IZ 32.567 44.05 29.0 19761101 20200624 406570 99999 HELLA IZ 32.45 44.45 27.0 19881120 20200624 406580 99999 NUKHEB IZ 32.033 42.283 305.0 19490321 20200624 406600 99999 AZIZYAH IZ 32.917 45.067 25.0 20090806 20200624 406620 99999 BADRAH IZ 33.1 45.95 64.0 20090719 20200624 406640 99999 KUT IZ ORUB 32.5 45.817 19.0 19881120 20200624 406650 99999 KUT-AL-HAI IZ 32.133 46.033 15.0 19490101 20200624 406660 99999 ALI ALGHARBI IZ 32.467 46.717 14.0 20090716 20200624 406700 99999 NAJAF IZ ORNI 31.95 44.317 32.0 19630117 20200624 406720 99999 DIWANIYA IZ 31.95 44.95 20.0 19370105 20200624 406740 99999 SAMAWA IZ 31.267 45.266999999999996 6.0 19730702 20200624 406750 99999 RAFAEI IZ 31.717 46.1 6.0 20100408 20200624 406760 99999 NASIRIYA IZ 31.017 46.233000000000004 3.0 19490101 20200624 406780 99999 BOGUS IRAQI IZ 19881121 19890823 406800 99999 AMARAH IZ 31.85 47.167 9.0 19730101 20200624 406840 99999 AL-SALMAN IZ 30.5 44.533 202.0 19490206 20021102 406850 99999 BOGUS IRAQI IZ 50.9 14.817 83.8 19881121 19890831 406860 99999 BUSAYAH IZ 30.1 46.117 144.0 19490206 20011118 406880 99999 SHAIBAH/BASRAH IZ 30.416999999999998 47.65 19.0 19370106 19940805 406890 99999 BASRAH INTL IZ ORMM 30.549 47.662 3.4 19370718 20200624 406900 99999 BASRAH AIRPORT IZ 30.517 47.783 2.6 19890701 20200624 406910 99999 AL-FAO IZ 29.983 48.5 2.0 19790701 20200624 407000 99999 PARS ABAD MOGHAN IR 39.65 47.917 32.0 19890102 20200624 407010 99999 MAKKO IR 39.333 44.433 1411.0 19900112 20200624 407030 99999 KHOY IR OITK 38.427 44.974 1213.4 19730101 20200624 407036 99999 LAMERD IR OISR 27.373 53.18899999999999 410.0 20100707 20200624 407037 99999 KALALEH IR OINE 37.383 55.45 152.4 20120509 20200624 407040 99999 AHAR IR 38.433 47.067 1390.0 19910918 20200624 407060 99999 TABRIZ INTL IR OITT 38.134 46.235 1359.1 19570701 20200624 407080 99999 ARDEBIL IR 38.25 48.283 1332.0 19761001 20081231 407090 99999 TABRIZ IR 38.083 46.283 1390.2 19490106 19551231 407100 99999 SARAB IR 37.933 47.533 1682.0 19890901 20200624 407120 99999 UROMIYEH IR OITR 37.668 45.068999999999996 1324.1 19491101 20200624 407125 99999 JAM IR OIBJ 27.82 52.352 662.0 20090219 20200624 407126 99999 LAVAN ISLAND IR OIBV 26.81 53.356 22.3 20090313 20200624 407127 99999 DEZFUL IR OIAD 32.434 48.398 144.5 20090214 20170916 407130 99999 MARAGHEH IR OITM 37.35 46.167 1478.0 19910907 20200624 407160 99999 MEYANEH IR 37.45 47.7 1110.0 20050817 20200624 407180 99999 ANZALI IR 37.467 49.467 -26.0 19320102 20200624 407190 99999 RASHT IR OIGG 37.325 49.606 -12.2 19730101 20200624 407200 99999 BOGUS IRANIAN IR 49.317 10.667 141.7 19890208 20040118 407210 99999 MARAVEH-TAPPEH IR 37.9 55.95 460.0 20010824 20200624 407230 99999 BOJNORD IR OIMN 37.493 57.308 1079.9 19771201 20200624 407260 99999 MOHABAD IR 36.766999999999996 45.717 1385.0 19890101 20200624 407270 99999 SAGHEZ IR OITS 36.25 46.266999999999996 1493.0 19730101 20200624 407290 99999 ZANJAN IR OITZ 36.774 48.358999999999995 1640.4 19730101 20200624 407300 99999 IMAM KHOMEINI INTL IR OIIE 35.416 51.152 1007.4 20040824 20200624 407310 99999 GHAZVIN IR OIIK 36.24 50.047 1275.3 19730101 20200624 407315 99999 GHAZVIN AZADI IR OIIA 35.952 50.451 1158.2 20080925 20090207 407320 99999 RAMSAR IR OINR 36.91 50.68 -21.3 19730101 20200624 407330 99999 REGENSBERG OBERTRAUBLING GQ 48.983000000000004 12.2 100.6 20010830 20040731 407340 99999 NOSHAHR IR 36.65 51.5 -21.0 19890104 20081231 407350 99999 GONBAD GHABUS IR OINK 37.25 55.1 32.6 20040824 20191125 407355 99999 NAJA IR OIIM 35.775999999999996 50.881 1231.4 20061020 20080630 407360 99999 BABULSAR IR 36.717 52.65 -21.0 19491127 20200624 407370 99999 GHARAKHIL IR 36.45 52.817 14.0 19890101 20200624 407380 99999 GORGAN IR OING 36.909 54.401 -7.3 19730101 20200624 407390 99999 SHAHRUD IR 36.417 54.95 1345.0 19570701 20200624 407400 99999 GHUCHAN IR 37.067 58.5 1287.0 19490813 20200624 407410 99999 SARAKHS IR 36.533 61.167 235.0 19890102 20081231 407430 99999 SABZEVAR IR OIMS 36.168 57.595 908.3 19630118 20200624 407450 99999 MASHHAD INTL IR OIMM 36.235 59.641000000000005 994.6 19440103 20200624 407460 99999 KASHAFRUD IR 35.983000000000004 60.833 584.0 20020723 20160411 407470 99999 SANANDAJ IR OICS 35.247 47.00899999999999 1378.3 19730101 20200624 407540 99999 MEHRABAD INTL IR OIII 35.689 51.313 1207.6 19431101 20200624 407550 99999 VARAMIN IR 35.35 51.683 950.0 20020605 20110402 407560 99999 GARMSAR IR 35.25 52.167 900.0 20020306 20160308 407570 99999 SEMNAN IR OIIS 35.591 53.495 1117.1 19730101 20200624 407620 99999 TORBAT-HEYDARIEH IR OIMH 35.266999999999996 59.217 1451.0 19730101 20200624 407630 99999 KASHMAR IR 35.2 58.467 1109.0 19490702 20200624 407650 99999 GHASRE-SHIRIN IR OICG 34.516999999999996 45.583 378.0 19761101 20080927 407660 99999 SHAHID ASHRAFI ESFAHANI IR OICC 34.346 47.158 1305.8 19570701 20200624 407670 99999 NOWJEH IR 35.2 48.683 1679.0 19570701 20110802 407680 99999 HAMEDAN IR 34.85 48.533 1749.0 19961201 20081231 407690 99999 ARAK IR OIHR 34.138000000000005 49.847 1661.8 19431018 20200624 407700 99999 GHOM/QOM IR 34.65 50.9 928.0 20160307 20160418 407720 99999 KERMANSHAN IR 34.317 47.083 1295.4 19481101 19530731 407780 99999 KAUPBEUREN GQ 47.867 10.617 216.1 19500103 19530722 407800 99999 ILAM IR 33.633 46.433 1337.0 19890102 20081231 407801 99999 MAHSHAHR IR OIAM 30.555999999999997 49.152 2.4 20040511 20200624 407802 99999 KISH ISLAND IR 26.517 53.983000000000004 31.0 20040511 20200624 407803 99999 SIRRI ISLAND IR 25.9 54.533 13.0 20040511 20200624 407804 99999 ILAM IR 33.583 46.4 1368.0 20040511 20200624 407805 99999 KHORAM ABAD IR 33.433 48.283 1184.0 20040511 20200624 407806 99999 HAMADAN IR 34.867 48.55 1801.0 20040511 20200624 407807 99999 PAYAM IR OIIP 35.775999999999996 50.827 1271.0 20040511 20200624 407808 99999 DAYRESTAN IR OIKQ 26.750999999999998 55.898 12.5 20040511 20200624 407809 99999 SARAKHS IR 36.5 61.067 295.0 20040511 20200624 407810 99999 ASALOYEH IR OIBI 27.480999999999998 52.61600000000001 3.0 20040921 20040922 407820 99999 KHORRAM ABAD IR 33.433 48.283 1148.0 19730101 20081231 407821 99999 BABULSAR IR 36.717 52.65 -21.0 20040511 20081220 407822 99999 NOSHAHR IR 36.65 51.467 -19.0 20040511 20200624 407823 99999 LAR IR OISL 27.674 54.383 792.5 20040511 20200624 407824 99999 YASOUJ IR 30.683000000000003 51.55 1871.0 20040511 20200624 407825 99999 ARDABIL IR 38.317 48.417 1348.0 20040511 20200624 407826 99999 SARI DASHT E NAZ IR OINZ 36.635999999999996 53.193999999999996 10.7 20050724 20200624 407830 99999 ALI-GOODARZ IR 33.4 49.683 2034.0 19910919 20200624 407850 99999 KASHAN IR OIFK 33.895 51.577 1056.1 19730101 20200624 407890 99999 KHOR IR 33.783 55.083 845.0 19891203 20200624 407910 99999 TABAS IR OIMT 33.668 56.893 704.7 19651003 20200624 407920 99999 FERDOUS IR 34.016999999999996 58.167 1293.0 19910601 20200624 407940 99999 SAFI-ABAD DEZFUL IR 32.266999999999996 48.417 83.0 19961201 20200624 407950 99999 DEZFUL IR 32.4 48.383 152.0 19431120 20040902 407980 99999 SHAHRE KORD IR OIFS 32.297 50.842 2049.2 19730101 20200624 408000 99999 ESFAHAN SHAHID BEHESHTI INTL IR OIFM 32.751 51.861999999999995 1545.9 19480901 20200624 408020 99999 ESFAHAN/KHATAMI IR 32.667 51.867 1543.0 20041001 20160308 408080 99999 SAR-E-YEZD IR 31.583000000000002 54.7 1245.0 19520410 19530730 408090 99999 BIRJAND IR OIMB 32.898 59.266000000000005 1509.4 19630121 20200624 408110 99999 AHWAZ IR OIAW 31.337 48.762 20.1 19730101 20200624 408120 99999 SHAHID ASYAEE IR OIAI 32.001999999999995 49.271 361.8 19730101 20200624 408180 99999 ABADEH IR OISA 31.183000000000003 52.667 2004.0 19771201 20200624 408190 99999 KERMAN EAST IR 30.35 57.167 1991.0 19490501 19530720 408200 99999 BOGUS IRANIAN IR 19890212 20021216 408210 99999 YAZD SHAHID SADOOGHI IR OIYY 31.905 54.277 1235.7 19570701 20200624 408230 99999 ZAWIDAN IR 29.5 60.883 1438.4 19490301 19530731 408260 99999 BOGUS IRANIAN IR 19890103 20040323 408270 99999 NEHBANDAN IR 31.533 60.033 1211.0 19900102 20200624 408290 99999 ZABOL IR OIZB 31.098000000000003 61.544 496.2 19660101 20200624 408300 99999 OMIDIEH IR 30.75 49.7 19.0 19940303 20170708 408310 99999 ABADAN IR OIAA 30.371 48.228 3.0 19431130 20200624 408320 99999 ABAMUSA ISLAND IR 25.883000000000003 55.016999999999996 1.0 19730101 20160308 408330 99999 AGHAJARI IR OIAG 30.745 49.676 26.8 19730101 20200624 408350 99999 GACHSARAN IR OIAH 30.338 50.828 729.7 19730101 20200624 408351 99999 ABUMUSA ISLAND IR 25.866999999999997 55.033 7.0 20040901 20200624 408352 99999 MALAYER IR OIHM 34.28 48.82 1725.0 20050315 20191125 408353 99999 BOROUJERD IR OICJ 34.9 48.63 1600.0 20050315 20191125 408354 99999 MINAB IR OIKO 27.12 57.1 27.0 20050315 20191125 408355 99999 GONABAD IR OIMD 34.35 58.68 1056.0 20050315 20200624 408356 99999 MAKU IR OITU 39.33 44.43 1411.0 20080101 20200621 408357 99999 KERMANSHAH IR OIGK 34.28 47.12 1322.0 20050315 20191125 408358 99999 JIROFT IR OIKJ 28.726999999999997 57.67 805.6 20070822 20080625 408359 99999 RAFSANJAN IR OIKR 30.298000000000002 56.051 1614.8 20071122 20200624 408360 99999 YASOGE IR 30.666999999999998 51.583 1837.0 19900203 20081231 408361 99999 PERSIAN GULF AIRPORT IR OIBP 27.366999999999997 52.733000000000004 8.0 20051112 20200624 408410 99999 KERMAN IR OIKK 30.274 56.951 1748.3 19570701 20200624 408420 99999 SHIRAZ IR 29.616999999999997 52.55 1530.1 19490301 19530730 408450 99999 KHARG IR OIBQ 29.267 50.266999999999996 3.0 19730101 20200624 408460 99999 BUSHEHR IR 28.983 50.833 14.0 19570701 19741231 408480 99999 SHIRAZ SHAHID DASTGHAIB INTL IR OISS 29.539 52.589 1499.6 19570701 20200624 408510 99999 SIRJAN IR 29.467 55.717 1739.0 19890101 20200624 408530 99999 BAFT IR 29.233 56.567 2280.0 19490108 20200624 408540 99999 BAM IR OIKM 29.084 58.45 940.0 19660101 20200624 408560 99999 ZAHEDAN INTL IR OIZH 29.476 60.907 1377.7 19570701 20200624 408570 99999 BUSHEHR IR 28.95 50.85 8.0 19961201 20171231 408580 99999 BUSHEHR IR OIBB 28.945 50.835 20.7 19440101 20200624 408590 99999 FASA IR OISF 28.892 53.723 1298.8 19730101 20200624 408690 99999 FARSI ISLAND IR 27.983 50.183 4.0 19751101 20111222 408720 99999 BANDAR-E-DAYYER IR 27.833000000000002 51.933 4.0 20060913 20200624 408750 99999 BANDAR ABBASS INTL IR OIKB 27.218000000000004 56.378 6.7 19650106 20200624 408770 99999 KAHNUJ IR 27.967 57.7 470.0 19890127 20200624 408780 99999 SARAVAN IR 27.333000000000002 62.333 1195.0 19900323 20200624 408785 99999 KHASH IR OIZK 28.217 61.2 1394.0 20080116 20081120 408790 99999 IRAN SHAHR IR OIZI 27.236 60.72 620.9 19730101 20200624 408820 99999 KISH ISLAND IR 26.5 53.983000000000004 30.0 19940302 20081231 408830 99999 BANDAR LENGEH IR OIBL 26.531999999999996 54.825 20.4 19730101 20200624 408890 99999 SIRI ISLAND IR 25.866999999999997 54.483000000000004 4.0 19890101 20081231 408900 99999 ABU MUSA IR 25.833000000000002 54.833 6.0 19760309 20081231 408930 99999 JASK IR OIZJ 25.654 57.799 5.8 19440102 20200624 408970 99999 KONARAK IR 25.433000000000003 60.367 10.0 19940502 20081231 408980 99999 CHAHBAHAR IR 25.283 60.617 8.0 19660101 20200624 409000 99999 DARWAZ AF OADZ 38.433 70.8 1320.0 19730304 20070905 409010 99999 KHWAHAN AF OAHN 37.883 70.217 1040.0 19730629 20070608 409030 99999 KHWAJA-GHAR AF 37.083 69.433 480.0 20010925 20010925 409040 99999 FAIZABAD AF OAFZ 37.117 70.517 1200.0 19730304 20130703 409041 99999 QAR-QIN AF 37.417 66.083 262.0 20171229 20171229 409050 99999 SHIGHNAN AF 37.567 71.5 2265.0 19730701 20090511 409080 99999 SHEBIRGHAN AF OASG 36.667 65.717 360.0 19730101 20130313 409100 99999 SHOR-TIPA AF 37.333 66.85 260.0 19800316 20010828 409110 99999 MAZAR I SHARIF AF OAMS 36.707 67.21 391.4 19730101 20200624 409120 99999 AIBACK AF 36.3 68.0 900.0 19880803 20020730 409130 99999 KUNDUZ AF OAUZ 36.667 68.917 433.0 19730101 20200623 409133 99999 FOB KUNDUZ AF 36.667 68.9 448.1 20100901 20130929 409150 99999 TALOQAN AF 36.733000000000004 69.5 804.0 19860102 19860424 409160 99999 HAIRATAN AF 37.217 67.417 300.0 19840401 19990813 409180 99999 ISKACHEM / ESHKASHEM AF OAEM 36.7 71.567 2620.0 20021121 20170316 409200 99999 ZEBAK AF OAZB 36.5 71.25 2600.0 19580101 20021220 409210 99999 TURGHUNDI AF 35.233000000000004 62.283 680.0 19790201 20131127 409220 99999 MIMANA AF OAMN 35.933 64.767 815.0 19730101 20120731 409230 99999 BALA-MOORGHAB AF 35.583 63.317 470.0 19790201 20120630 409240 99999 KALDAR AF 37.2 67.733 304.0 19580101 19611231 409250 99999 QAISAR AF 35.667 64.267 1300.0 19580101 19611231 409275 99999 DARI-SUF AF OADF 35.917 67.283 1350.0 20100824 20100824 409280 99999 YANGI QALA AF OAYQ 37.467 69.667 810.0 19800306 20030105 409300 99999 NORTH-SALANG AF 35.317 69.017 3366.0 19581201 20200623 409310 99999 SOUTH-SALANG AF 35.3 69.067 3172.0 19730101 19970319 409320 99999 JABUL-SARAJ AF OAJS 35.133 69.25 1630.0 19730101 19940324 409323 99999 PANJSHIR AF 35.266999999999996 69.467 1945.0 20070105 20111202 409330 99999 HAJIGAK AF OAHJ 34.583 68.1 3400.0 19790201 20180214 409343 99999 FOB BOSTIC AF 35.21 71.52 1042.0 20090101 20120630 409350 99999 ISLAM-QALA AF 34.65 61.583 800.0 19790201 20011230 409370 99999 QALA-I-NOW AF OAQN 35.0 63.117 914.0 19730203 20130924 409380 99999 HERAT AF OAHR 34.21 62.228 977.2 19730101 20200624 409389 99999 FOB VICTORY/STONE AF 34.117 62.217 1112.5 20090810 20140907 409390 99999 QADES AF 34.783 63.417 1280.0 19760302 20021217 409400 99999 OBE AF 34.367 63.15 1298.0 19780101 19840708 409410 99999 GHELMEEN AF 34.883 65.3 2070.0 19580101 19890519 409420 99999 CHAKHCHARAN AF OACC 33.533 65.267 2183.0 19730203 20200617 409430 99999 SHAHRAK AF 34.1 64.3 2325.0 19730208 20200412 409440 99999 LAL AF 34.5 66.3 2800.0 19730208 19790429 409450 99999 BAMIYAN AF OABN 34.817 67.817 2550.0 19730108 20200623 409460 99999 PAN JAO AF OAPJ 34.383 67.033 2710.0 19751101 19791009 409465 99999 FOB EDINBURGH AF 32.4 64.7 1110.0 20110830 20120718 409470 99999 PAGHMAN AF OAPG 34.583 68.983 2114.0 19580101 19590930 409473 99999 CAMP AIRBORNE HLZ AF 34.4 68.883 2240.0 20090103 20140823 409480 99999 KABUL INTL AF OAKB 34.566 69.212 1791.3 19570701 20200624 409490 99999 KARIZIMIR AF 34.633 69.05 1905.0 19580610 19611231 409500 99999 LOGAR AF 34.1 69.05 1935.0 19580101 20110102 409510 99999 SAROBI AF 34.583 69.75 1020.0 19600101 19610131 409511 99999 FOB KUTSCHBACH AF 34.867 69.633 1357.9 20090101 20131103 409520 99999 LAGHMAN AF OALN 34.65 70.217 770.0 19610310 20140413 409530 99999 GHAZIABAD AF OAGA 34.317 70.767 510.0 20020713 20020713 409534 99999 FOB CONNOLLY AF 34.266999999999996 70.2 1214.6 20110413 20130529 409540 99999 JALALABAD AF OAJL 34.4 70.499 566.9 19730101 20200624 409570 99999 SHINDAND AF OASD 33.391 62.261 1150.0 19850502 20141103 409584 99999 COP HONAKER-MIRACLE AF 71.083 34.917 891.8 20120724 20130408 409585 99999 CAMP BLESSING-NANGA AF 34.983000000000004 70.9 1020.0 20090101 20110209 409600 99999 SARDAY AG AF 33.32 68.5 2059.0 19580101 19611231 409660 99999 OKAK AF 33.883 67.95 3130.0 19761201 19790819 409670 99999 BEHSOOD AF OABD 34.3 67.85 2975.0 19791020 19800309 409680 99999 GHAZNI AF OAGN 33.533 68.417 2183.0 19600322 20200623 409700 99999 GARDIZ AF 33.617 69.233 2350.0 19730101 20121231 409703 99999 CHEROKEE AF 33.65 68.9 2504.0 20091123 20120724 409705 99999 COP WILDERNESS AF 33.367 69.417 2019.9 20090101 20131019 409706 99999 FOB CHAMKANI AF 33.8 69.817 1951.9 20110709 20130926 409710 99999 KHOST AF OAKS 33.35 69.95 1146.0 19730620 20131011 409713 99999 FOB CLARK AF 33.35 69.733 1383.2 20140115 20141025 409730 99999 BACKWA AF 32.233000000000004 62.967 724.0 19870316 19870316 409731 99999 BACKWA AF 32.233000000000004 62.967 724.0 20121101 20121127 409739 99999 DELARAM AF 32.133 63.433 840.0 20110906 20120705 409740 99999 FARAH AF OAFR 32.367 62.183 700.0 19730101 20131015 409750 99999 GULISTAN AF OAGL 32.617 63.667 1375.0 19850409 19860214 409760 99999 KAJAKI AF 32.167 65.1 1000.0 19790201 19840715 409763 99999 SAKARI KAREZ AF 31.65 64.96 916.0 20090615 20121124 409764 99999 FOB SABIT QADAM AF 32.083 64.833 880.9 20120714 20140504 409770 99999 TIRIN KOT AF OATT 32.617 65.867 1350.0 19730812 20140408 409775 99999 FOB TINSLEY AF 32.933 65.567 1261.9 20110818 20121130 409780 99999 LASHKARGAH AF 31.5 64.333 787.0 19600401 19611231 409790 99999 KALAT AF OAKT 32.117 66.9 1565.0 19751001 20140723 409793 99999 FOB WOLVERINE AF 31.967 67.05 1902.0 20091101 20130630 409794 99999 FOB VIPER AF 31.8 66.333 1249.7 20110528 20120229 409800 99999 MOKUR AF 32.833 67.783 2000.0 19751001 20190603 409803 99999 COP ARYAN AF 33.117 68.033 2126.0 20120830 20130720 409804 99999 VSSA WARRIOR AF 32.736999999999995 67.628 1996.4 20090102 20140114 409810 99999 WAZAKHAW AF OADW 32.2 68.35 2800.0 19570701 20110726 409813 99999 FOB KUSAHMOND AF 32.633 68.267 2001.9 20111007 20120330 409814 99999 SUPER FOB AF 32.9 68.5 2141.2 20120530 20130625 409840 99999 URGOON AF 32.917 69.133 2262.0 19730208 20170221 409843 99999 COP SPERA AF 33.05 69.5 2132.0 20091030 20101114 409844 99999 FOB TILLMAN AF 32.933 69.45 1814.0 20101115 20121115 409845 99999 SHARANA AF OASA 33.126 68.839 2266.2 20070108 20130912 409849 99999 FOB SKHIN AF 32.533 69.2 2212.0 20060103 20120731 409860 99999 ZARANJ AF OAZG 31.0 61.85 478.0 19440120 20090916 409880 99999 BUST AF 31.55 64.367 780.0 19730101 20200623 409900 99999 KANDAHAR AF OAKN 31.506 65.848 1007.1 19730101 20200624 409903 99999 FOB FRONTENAC AF 31.866999999999997 65.85 1136.6 20090828 20140501 409904 99999 FOB SPIN BULDAK AF 30.983 66.35 1191.2 20091101 20140603 409905 99999 FOB PASAB/WILSON AF 31.583000000000002 65.433 961.9 20100930 20140714 409950 99999 CHAR-BURJACK AF 30.283 62.033 550.0 19790202 19790909 409960 99999 DESHOO AF 30.433000000000003 63.3 590.0 19730701 20140520 410001 99999 MUKAYRIS YM 13.95 45.667 2175.0 20070705 20140110 410060 99999 MUWAIH SA OEMH 22.433000000000003 41.75 971.0 19851001 20110614 410080 99999 ZULM SA 22.717 42.167 870.0 20041015 20041015 410100 99999 LAYLA SA 22.333000000000002 46.733000000000004 543.0 19910408 20030329 410140 99999 OBAYLAH (AUT) SA 22.217 50.883 588.0 19830201 20030315 410160 99999 SHAWALAH SA 22.517 54.05 468.0 19830402 20030528 410180 99999 MAHAZAT AL-SAID-1 SA 22.25 41.633 1394.0 20031231 20060117 410200 99999 JEDDAH I.E. SA 21.416999999999998 39.217 10.0 19910605 20050729 410240 99999 KING ABDULAZIZ INTL SA OEJN 21.68 39.157 14.6 19830101 20200624 410260 99999 JEDDAH SA OEJD 21.5 39.2 15.0 19560101 20061026 410300 99999 MAKKAH SA 21.433000000000003 39.766999999999996 240.0 19830701 20190718 410310 99999 MINA SA 21.416999999999998 39.867 394.0 20050112 20180825 410320 99999 ARAFAT SA 21.333000000000002 39.967 308.0 20041109 20200624 410350 99999 AL-HADA SA 21.333000000000002 40.266999999999996 2089.0 19910501 20031110 410360 99999 TAIF SA OETF 21.483 40.544000000000004 1477.7 19830101 20200624 410550 99999 AL BAHA SA OEBA 20.296 41.63399999999999 1672.1 19830201 20200624 410600 99999 WADI AL-DAWASSER SA 20.433 44.683 701.0 20160406 20160406 410610 99999 WADI AL DAWASIR SA OEWD 20.504 45.2 628.5 19900401 20200624 410620 99999 SULAYEL SA 20.467 45.667 614.0 19830101 19900614 410800 99999 AL-QUNFUDAH SA 19.117 41.083 0.0 19910605 20071118 410840 99999 BISHA SA OEBH 19.984 42.621 1184.8 19830101 20200624 411070 99999 19870518 19870518 411120 99999 ABHA SA OEAB 18.24 42.657 2090.3 19830101 20200624 411140 99999 KING KHALED AB SA OEKM 18.297 42.803999999999995 2065.9 19830101 20200624 411280 99999 NEJRAN SA OENG 17.611 44.419 1213.7 19830101 20200624 411360 99999 SHARURAH SA OESH 17.467 47.121 720.2 19830101 20200624 411363 99999 SHARURAH (CIV/MIL)& SA 17.45 47.15 720.0 19850405 19910707 411400 99999 KING ABDULLAH BIN ABDULAZIZ SA OEGN 16.901 42.586000000000006 6.1 19830101 20200624 411410 99999 GIZAN SA 16.9 42.533 5.0 19910601 20050726 411500 99999 BAHRAIN INTL BA OBBI 26.271 50.63399999999999 1.8 19440101 20200624 411510 99999 JARIM BA 26.483 50.583 3.0 20061106 20061106 411520 99999 HAWAR ISLAND BA 25.717 50.783 2.0 20140730 20140730 411540 99999 JABAL AL DUKHAN BA 26.033 50.533 135.0 20100727 20110301 411550 99999 F1 (FORMULA 1) BA 26.017 50.5 5.0 20051001 20051001 411560 99999 RAS AL BAR BA 25.85 50.55 2.0 20080925 20101231 411600 99999 AI RUWAIS QA 26.15 51.2 6.0 20111201 20200624 411610 99999 AL KHOR AIRPORT QA 25.616999999999997 51.516999999999996 11.0 20111201 20190528 411620 99999 AL SHEHAIMIYA QA 25.85 50.967 2.0 20111201 20150331 411640 99999 AL GUWAYRIYAH QA 25.833000000000002 51.266999999999996 19.0 20111201 20150401 411670 99999 DUKHAN QA 25.4 50.75 5.0 20111201 20200624 411680 99999 DOHA PORT QA 25.3 51.55 4.0 19830101 20190301 411700 99999 DOHA INTL QA OTBD 25.261 51.565 10.7 19830101 20200624 411703 99999 DOHA QA OTHH 25.267 51.6 4.0 20140513 20200624 411705 99999 AL UDEID AB QA OTBH 25.116999999999997 51.315 39.6 20050101 20200624 411710 99999 QATAR UNIVERSITY QA 25.383000000000003 51.483000000000004 12.0 20111201 20170425 411730 99999 AL WAKRAH QA 25.183000000000003 51.617 5.0 20111201 20150401 411750 99999 AL KARANA QA 25.0 51.033 49.0 20111201 20150401 411760 99999 UMM SAID QA 24.95 51.567 5.0 19840101 20200624 411770 99999 TURAYNA QA 24.717 51.217 41.0 20111201 20150401 411780 99999 ABU SAMRA QA 24.75 50.817 8.0 20111201 20200624 411840 99999 RAS AL KHAIMAH INTL AE OMRK 25.613000000000003 55.93899999999999 31.1 19830101 20200624 411940 99999 DUBAI INTL AE OMDB 25.255 55.364 10.4 19830101 20200624 411945 99999 AL MAKTOUM INTL AIRPORT AE 24.886 55.172 18.9 20100518 20200624 411946 99999 ZIRKU AE OMAZ 24.862 53.078 4.3 20100706 20140221 411960 99999 SHARJAH INTL AE OMSJ 25.329 55.516999999999996 33.8 19440320 20200624 411980 99999 FUJAIRAH INTL AE OMFJ 25.112 56.324 46.3 19881102 20200624 412160 99999 BATEEN AE OMAD 24.428 54.458 4.9 19830101 20200624 412161 99999 AL HAMRA AUX AE OMAH 24.074 52.464 15.2 20080721 20190714 412162 99999 AL DHAFRA AE OMAM 24.248 54.548 23.2 20080721 20190714 412163 99999 DELMA AE OMDL 24.51 52.335 25.0 20080721 20190822 412164 99999 DUBAI MINHAD AB AE OMDM 25.026999999999997 55.36600000000001 50.3 20080721 20190714 412165 99999 SIR ABU NAIR AE OMSN 25.217 54.233999999999995 7.0 20100131 20190714 412170 99999 ABU DHABI INTL AE OMAA 24.433000000000003 54.651 26.8 19830102 20200624 412180 99999 AL AIN INTL AE OMAL 24.261999999999997 55.608999999999995 264.9 19940308 20200624 412260 99999 MEDINA ZAYED AE 23.633000000000003 53.633 130.0 20011004 20030601 412265 99999 BUHASA AE OMAB 23.616999999999997 53.383 94.0 19950101 20111111 412400 99999 KHASAB PORT MU 26.217 56.25 4.0 19830101 20200624 412410 99999 KHASAB AIRPORT MU 26.166999999999998 56.233000000000004 29.0 20080101 20151218 412420 99999 DIBA MU 25.616999999999997 56.25 10.0 20010705 20200624 412440 99999 BURAIMI (AUT) MU OOBR 24.233 55.783 299.0 19830101 20200624 412460 99999 SOHAR MAJIS MU 24.467 56.65 2.0 19830101 20200624 412490 99999 QUMAIRA MU 23.933000000000003 56.2 633.0 20130101 20190530 412500 99999 SUNAYNAH MU 23.717 55.9 257.0 20130101 20190530 412520 99999 IBRI MU 23.233 56.433 327.0 20011108 20200624 412530 99999 RUSTAQ MU 23.416999999999998 57.433 322.0 20010712 20200624 412540 99999 SAIQ MU OOSQ 23.066999999999997 57.633 1755.0 19830101 20190530 412550 99999 NIZWA MU 22.866999999999997 57.55 462.0 20010916 20200624 412560 99999 SEEB INTL MU OOMS 23.593000000000004 58.284 14.6 19440101 20200624 412570 99999 SAMAIL MU 23.254 57.928000000000004 417.0 20010707 20190530 412580 99999 MINA SULTAN QABOOS MU 23.633000000000003 58.567 3.0 19830101 20190530 412590 99999 JABAL SHAMS MU 23.233 57.266999999999996 2764.0 20050303 20190515 412620 99999 FAHUD (AUT) MU OOFD 22.35 56.483000000000004 170.0 19870211 20190530 412630 99999 BAHLA MU 22.912 57.257 592.0 20010915 20190530 412640 99999 ADAM AIRPORT MU 22.5 57.367 328.0 20010705 20190530 412650 99999 IBRA MU 22.809 58.461000000000006 469.0 20010915 20200624 412660 99999 IBRA MU 22.633000000000003 58.667 1100.0 20010713 20190530 412670 99999 QALHAT MU 22.666999999999998 59.4 11.0 20010716 20190530 412680 99999 SUR MU OOSR 22.533 59.483000000000004 14.0 19830101 20200624 412700 99999 RAS AL HADD MU 22.3 59.817 43.0 20050315 20190530 412720 99999 SUWAIQ MU 23.816999999999997 57.283 39.0 20130101 20190530 412740 99999 GHABA CENTRAL/PRI MU 21.383000000000003 57.05 135.0 20140707 20190530 412750 99999 QARN ALAM MU 21.383000000000003 57.05 133.0 20010802 20190530 412760 99999 UMZAMAIM MU 20.8 57.117 126.0 20130101 20190530 412800 99999 AL AMERAT MU 23.5 58.483000000000004 105.0 20130101 20190530 412870 99999 JOBA MU 20.866999999999997 58.25 34.0 20050303 20200213 412880 99999 MASIRAH MU OOMA 20.675 58.89 19.5 19430510 20190530 412900 99999 DUQM MU 19.617 57.633 40.0 20050619 20190530 412910 99999 DUQM AIRPORT MU 19.517 57.65 102.0 20130613 20200624 412920 99999 AL MUDHAIBI MU 22.517 58.117 378.0 20140707 20190530 412930 99999 BIDIYA MU 22.467 58.85 316.0 20130101 20190530 412940 99999 HAIMA MU 19.967 56.266999999999996 122.0 19830801 20030408 412950 99999 YAALONI MU 19.95 57.1 156.0 20071024 20190609 412960 99999 DUQM & MU 19.75 57.633 0.0 19831106 19900316 413010 99999 HAIMA MU 20.05 56.383 146.0 20130101 20200624 413040 99999 MARMUL MU 18.133 55.183 273.0 19870406 20190530 413120 99999 MINA SALALAH MU 16.933 54.016999999999996 25.0 19830101 20190530 413130 99999 JABAL NOOS MU 17.25 55.233000000000004 706.0 20130101 20130319 413140 99999 THUMRAIT MU OOTH 17.666 54.025 478.5 19830101 20190530 413150 99999 QAIROON HAIRITI MU 17.25 54.083 881.0 20010814 20190530 413160 99999 SALALAH MU OOSA 17.039 54.091 22.3 19430413 20200624 413240 99999 SAADA & YM OYSH 16.967 43.717 1890.0 19831122 20030409 413243 99999 SA'ADA & YM OYSH 16.967 43.717 1890.0 19970123 19970509 413253 99999 BOGUS YEMEN YM OYJA 19880320 19900226 413260 99999 AL-HAZM YM OYZM 16.2 44.783 1900.0 19840402 20030202 413410 99999 ABBS YM OYAS 16.083 43.167 2000.0 20080722 20130930 413440 99999 SANA'A (CIV/MIL) YM 15.517000000000001 44.183 2190.0 19830101 20011103 413500 99999 MARIB YM 15.433 45.333 1000.0 19730101 20081231 413580 99999 JUMEISHA YM 14.717 43.067 38.0 20020605 20020605 413600 99999 HODEIDAH (CIV/MIL) YM 14.75 42.967 115.0 19830101 20141002 413720 99999 SAADA YM 17.033 43.766999999999996 1890.0 20030331 20081231 413780 99999 AL-BAYDA YM 13.967 45.583 1011.0 20021228 20150209 413783 99999 AL-BAYDA YM 13.967 45.583 1011.0 20090529 20090529 413820 99999 MOKHA YM 13.25 43.283 3.0 19830515 20150326 413900 99999 TAIZ (CIV/MIL) YM 13.683 44.15 1385.0 19830101 20170130 413905 99999 RIYAN YM 14.65 49.367 17.0 19980301 20081231 413910 99999 HAJJAH YM OYHJ 15.833 43.583 1760.0 19930104 20200526 413913 99999 BOGUS YEMEN YM OYSA 19880214 19900917 413940 99999 BOGUS YEMEN YM 19900220 20040129 413960 99999 SEIYOUN YM 15.982999999999999 48.95 700.0 19920501 20081231 413980 99999 AL-GHAIDAH YM 16.083 52.083 42.0 19920503 20081231 413990 99999 AMRAN YM 15.767000000000001 44.016999999999996 15.0 20111201 20170130 414040 99999 SANAA INTL YM OYSN 15.475999999999999 44.22 2205.8 19920501 20170208 414050 99999 SAADA/SADAH YM 16.967 43.733000000000004 1890.0 20041211 20161125 414070 99999 MARIB YM OYMB 15.433 45.333 1070.0 19920503 20161108 414140 99999 20010718 20030211 414160 99999 KAMARAN YM 15.367 42.583 15.0 19990103 20030215 414280 99999 AL-GHAIDAH YM 16.083 52.083 42.0 19861006 19941011 414300 99999 KAMARAN ISLAND YM 15.367 42.583 15.0 19830120 20030714 414310 99999 HODEIDAH YM OYHD 14.753 42.976000000000006 12.5 19920301 20170208 414340 99999 DHAMAR YM OYDM 14.583 44.417 2425.0 20030331 20170208 414360 99999 SEIYOUN & YM 15.982999999999999 48.95 580.0 19830108 20010713 414363 99999 SAYUN YM 15.967 48.783 656.0 19881223 20170208 414365 99999 AI-GHAIDAH YM 16.083 52.083 42.0 20080103 20081113 414370 99999 ATAQ YM OYAT 14.550999999999998 46.826 1097.3 19920301 20170208 414380 99999 AL SADDAH YM 14.133 44.367 2692.0 20111201 20161216 414430 99999 RIYAN YM OYRN 14.663 49.375 16.5 19920301 20150326 414440 99999 ATAQ & YM 14.517000000000001 46.85 1097.0 19881201 20020826 414480 99999 RIYAN YM 14.583 49.25 25.0 19830108 19940503 414520 99999 IBB YM OYIB 14.0 44.333 1920.0 20010916 20170208 414660 99999 GANED YM OYTZ 13.686 44.138999999999996 1402.1 19920301 20150326 414670 99999 ADEN KHORMAKSAR YM 12.833 45.033 3.0 19430413 19931025 414770 99999 MOKHA YM 13.25 43.283 3.0 19920301 20020529 414800 99999 ADEN YM OYAA 12.833 45.033 3.0 19920301 20180122 414820 99999 SAHAREEG YM 12.783 45.167 0.0 20111201 20140622 414940 99999 SOCOTRA YM 12.633 53.9 47.0 19920303 20200323 414990 99999 SOCOTRA ISLAND YM 12.633 53.9 45.0 19900201 19920701 415040 99999 GUPIS PK 36.167 73.4 2156.0 20051001 20200601 415050 99999 HUNZA PK 36.317 74.65 2374.0 20081029 20180129 415060 99999 CHITRAL PK 35.85 71.833 1500.0 19730101 20140207 415070 99999 MET OBSERVATORY TIMERGARA / DIR LOWER PK 34.833 71.817 786.0 20081029 20180129 415080 99999 DIR PK 35.2 71.85 1370.0 19800309 20200624 415090 99999 MIR KHANI PK 35.5 71.7 1250.0 20061003 20180129 415100 99999 KALAM PK 35.833 72.983 2123.0 20050727 20180129 415150 99999 DROSH PK 35.567 71.783 1465.0 19440101 20200624 415160 99999 GILGIT PK OPGT 35.919000000000004 74.334 1457.2 19730401 20191015 415170 99999 SKARDU PK OPSD 35.336 75.536 2316.5 19440101 20191016 415180 99999 BUNJI PK 35.667 74.633 1470.0 20040806 20191015 415190 99999 CHILLAS PK 35.417 74.1 1251.0 20050728 20191015 415195 99999 TURBAT INTL PK 25.983 63.033 152.0 20050727 20191015 415200 99999 ASTORE PK 35.367 74.9 2168.0 20050727 20191015 415205 99999 CHITRAL PK 35.883 71.8 1494.0 20050727 20200624 415215 99999 DERA GHAZI KHAN PK 29.967 70.483 148.0 20050727 20191011 415225 99999 MUZAFFARABAD PK 34.333 73.517 831.0 20050727 20191015 415230 99999 SAIDU SHARIF PK 34.733000000000004 72.35 951.0 19740730 20081231 415235 99999 SAIDU SHARIF PK 34.817 72.35 970.0 20050101 20200624 415240 99999 PATTAN PK 35.1 73.0 752.0 20081029 20180129 415250 99999 MALAM JABBA PK 34.75 72.9 2652.0 20070116 20180731 415260 99999 BABUSAR PK 35.217 74.1 2854.0 20151007 20151007 415280 99999 LANDIKOTAL PK 34.1 71.133 1067.0 19730101 19791113 415281 99999 LANDIKOTAL PK 34.1 71.133 1068.0 20090101 20111022 415300 99999 PESHAWAR PK 34.016999999999996 71.583 360.0 19440101 20200624 415310 99999 BATTAL PK 34.583 73.15 1676.0 19730815 20030111 415320 99999 MUZAFFAR ABAD PK 34.367 73.483 2303.0 19730103 20081015 415330 99999 RISALPUR PK OPRS 34.080999999999996 71.973 320.0 19730101 20191015 415350 99999 KAKUL PK 34.183 73.25 1309.0 19730101 20200624 415360 99999 BALAKOT PK 34.383 73.35 981.0 19980301 20200624 415600 99999 PARACHINAR PK 33.867 70.083 1726.0 19440101 20200624 415620 99999 BANNU* PK 33.0 70.1 406.0 20081029 20081130 415640 99999 KOHAT PK 33.567 71.433 513.0 19730101 20191015 415650 99999 CHERAT PK 33.817 71.883 1372.0 19440101 20191015 415690 99999 CAMPBELLPUR PK 33.766999999999996 72.367 357.0 19730103 19730619 415710 99999 CHAKLALA PK OPRN 33.617 73.09899999999999 508.4 19440101 20200624 415720 99999 HARIPUR PK 33.983000000000004 72.917 535.0 19730107 19781008 415730 99999 MURREE PK 33.917 73.383 2127.0 19440101 20200624 415740 99999 RAWALAKOT* PK 33.85 73.8 1677.0 20081029 20081130 415760 99999 MANGLA* PK 33.067 73.633 283.0 20081130 20081130 415770 99999 ISLAMABAD CITY PK 33.717 73.1 525.0 20050727 20191015 415840 99999 MIRANSHAH AIRPORT PK 32.983000000000004 70.117 921.0 19440102 20031024 415900 99999 KHUSHAB PK 32.3 72.35 186.0 19540101 20020522 415920 99999 MIANWALI PK OPMI 32.563 71.571 210.3 19440101 20200422 415925 99999 SUKKUR PK OPSK 27.721999999999998 68.792 58.2 20050107 20191011 415930 99999 SARGODHA PK 32.05 72.667 187.0 20040812 20161227 415940 99999 SARGODHA PK OPSR 32.05 72.667 188.0 19730101 20200624 415970 99999 MANDI BAHAUDDIN PK 32.583 73.5 253.0 20050727 20180129 415980 99999 JHELUM PK 32.933 73.717 234.0 19730101 20200624 415990 99999 SIALKOT PK OPST 32.5 74.533 255.0 20090104 20200309 416000 99999 SIALKOT PK OPST 32.5 74.533 256.0 19440101 20200624 416200 99999 ZHOB PK OPZB 31.358 69.464 1417.3 19440101 20200624 416240 99999 D I KHAN PK OPDI 31.909000000000002 70.89699999999999 181.1 19440101 20200624 416300 99999 FAISALABAD PK 31.433000000000003 73.1 184.0 19440101 20200624 416360 99999 JHANG PK 31.267 72.317 153.0 20050803 20180129 416380 99999 TOBA TEK SINGH PK 30.983 72.467 156.0 20081029 20180129 416400 99999 LAHORE CITY PK OPLH 31.55 74.333 215.0 19440101 20200624 416410 99999 ALLAMA IQBAL INTL PK OPLA 31.522 74.404 217.0 19761201 20191015 416460 99999 OKARA PK 30.8 73.433 180.0 20081029 20081130 416520 99999 DERA GHAZI KHAN PK 30.05 70.633 125.0 19730101 20081130 416580 99999 19570201 19631029 416600 99999 QUETTA PK OPQT 30.250999999999998 66.938 1600.2 19440101 20200624 416610 99999 QUETTA (SHEIKH MANDA) PK 30.267 66.917 1621.0 19730101 20180131 416620 99999 QILA SAIFULLAH PK 30.75 67.867 1801.0 19570201 19631029 416630 99999 19440101 19471230 416711 99999 LAYYAH PK 31.017 70.967 151.0 20160513 20180129 416720 99999 RAFIQUI PK 30.783 72.2 150.0 19750905 20191015 416750 99999 MULTAN INTL PK OPMT 30.203000000000003 71.419 121.9 19440101 20200624 416780 99999 BAHAWALNAGAR PK 29.95 73.25 163.0 19730101 20200624 416800 99999 19440101 19481231 416850 99999 BAR KHAN PK 29.883000000000003 69.717 1098.0 19730620 20200624 416960 99999 KALAT PK 29.033 66.583 2017.0 19440101 20200624 416970 99999 SIBI PK OPSB 29.55 67.883 134.0 19570201 20200624 417000 99999 BAHAWALPUR PK OPBW 29.4 71.783 113.0 19440101 20200624 417010 99999 BAHAWALPUR PK 29.4 71.783 117.0 20090519 20191011 417100 99999 NOKKUNDI PK 28.816999999999997 62.75 683.0 19440102 20200624 417120 99999 DAL BANDIN PK 28.883000000000003 64.4 850.0 19440101 20200624 417150 99999 SHAHBAZ AB PK OPJA 28.284000000000002 68.45 56.4 19440101 20200624 417160 99999 SHEIKH ZAYED PK OPRK 28.384 70.28 82.6 20081029 20200323 417170 99999 19570803 19631029 417180 99999 KHANPUR PK 28.65 70.683 88.0 19440101 20200624 417250 99999 ROHRI PK 27.666999999999998 68.9 68.0 19570201 20200624 417380 99999 TURBAT PK 26.017 63.067 154.0 20081001 20081029 417390 99999 PANJGUR PK OPPG 26.955 64.133 1002.5 19440115 20200624 417420 99999 LASBELLA PK 26.23 66.17 87.0 19570201 20180129 417430 99999 DADU PK 26.717 67.767 40.0 19730111 19740118 417440 99999 KHUZDAR PK 27.833000000000002 66.633 1232.0 19730101 20200624 417450 99999 SAKRAND AGROMET OBSERVATORY PK 25.133000000000003 68.267 11.0 20180129 20180129 417460 99999 PADIDAN PK 26.85 68.133 47.0 19440101 20200624 417470 99999 MOENJODARO PK OPMJ 27.335 68.143 50.9 20151214 20191011 417480 99999 LARKANA PK 27.533 68.233 53.0 20050727 20130310 417490 99999 NAWABSHAH PK OPNH 26.219 68.39 28.3 19550101 20200624 417560 99999 JIWANI PK OPJI 25.068 61.805 58.0 19440101 20200624 417570 99999 GWADAR PK OPGD 25.233 62.32899999999999 29.3 20050728 20191015 417590 99999 PASNI PK OPPI 25.29 63.343999999999994 3.7 19440101 20200624 417600 99999 ORMARA PK OPOR 25.273000000000003 64.58800000000001 19.0 19440101 20191011 417640 99999 HYDERABAD AIRPORT PK OPKD 25.383000000000003 68.417 41.0 19450228 20200624 417650 99999 HYDERABAD PK 25.383000000000003 68.417 30.0 19570201 19921231 417680 99999 CHHOR PK 25.517 69.783 6.0 19540101 20200624 417690 99999 UNMARKOT PK 25.366999999999997 69.75 17.0 19570201 19631029 417800 99999 JINNAH INTL PK OPKC 24.906999999999996 67.161 30.5 19420506 20200624 417810 99999 MASROOR PK OPMR 24.894000000000002 66.939 10.7 19730101 20191104 417820 99999 KARACHI MANORA PK 24.8 66.983 4.0 19440101 20030328 417850 99999 BADIN PK 24.633000000000003 68.9 11.0 19440101 20200624 417861 99999 M O MITHI PK 24.732 69.798 34.0 20181221 20200212 418500 99999 TETULIA PANCHAGOR BG 26.35 88.6 55.0 20160217 20200624 418520 99999 THAKURGAON BG 26.017 88.4 -999.9 19730107 20050221 418550 99999 ISHURDI BG 24.15 89.03299999999999 14.0 19730409 19811230 418560 99999 RAJSHAHI BG 24.383000000000003 88.6 23.0 19800410 20030210 418580 99999 SAIDPUR BG 25.75 88.917 39.0 19440101 20200624 418590 99999 RANGPUR BG 25.733 89.23299999999999 34.0 19811213 20200624 418600 99999 SIRAJGANJ BG 24.45 89.7 15.0 19780808 19790928 418620 99999 LALMONIRHAT BG VGLM 25.883000000000003 89.48299999999999 34.0 19430709 19460330 418621 99999 RAJARHAT KURIGRAM BG 25.8 89.55 31.0 20150218 20200624 418630 99999 DINAJPUR BG 25.65 88.68299999999999 37.0 19440101 20200624 418830 99999 BOGRA BG 24.85 89.367 20.0 19820101 20200624 418840 99999 JAMALPUR BG 24.933000000000003 89.95 20.0 19950502 20030227 418860 99999 MYMENSINGH BG 24.717 90.43299999999999 19.0 19440101 20200624 418900 99999 SYLHET A.P. BG 24.967 91.883 -999.9 20010714 20030710 418910 99999 OSMANY INTL BG VGSY 24.963 91.867 15.2 19440131 20200624 418950 99999 SHAH MOKHDUM BG VGRJ 24.436999999999998 88.617 19.5 19811230 20200624 418980 99999 SERAJGONJ BG 24.45 89.7 16.0 20020602 20140706 419000 99999 SYLHET BG 24.9 91.883 32.0 19530706 19811230 419070 99999 ISHURDI BG VGIS 24.153000000000002 89.04899999999999 13.7 19820101 20200624 419090 99999 TANGAIL BG 24.25 89.93299999999999 -999.9 19880305 20200624 419150 99999 SRIMANGAL BG 24.3 91.73299999999999 23.0 19440101 20200624 419160 99999 FARIDPUR BG 23.616999999999997 89.85 14.0 19770603 19811207 419170 99999 DACCA/TEZGAON BG VGDC 23.767 90.383 7.0 19540101 20020601 419210 99999 JOYDEVPUR BG 23.983 90.417 -999.9 20160204 20200301 419220 99999 HAZRAT SHAHJALAL INTL BG VGHS 23.843000000000004 90.398 9.1 19430715 20200624 419230 99999 TEJGAON BG VGTJ 23.779 90.383 7.3 19450228 20200624 419260 99999 CHUADANGA BG 23.65 88.81700000000001 12.0 20040821 20200624 419280 99999 MADARIPUR BG 23.166999999999998 90.18299999999999 13.0 19770708 19781224 419290 99999 FARIDPUR BG 23.6 89.85 9.0 19440101 20200624 419310 99999 KHULNA BG 22.85 89.56700000000001 5.0 19800301 19811129 419320 99999 BARISAL BG 22.717 90.367 4.0 19770915 19811205 419330 99999 COMILLA BG 23.433000000000003 91.18299999999999 9.0 19450802 20200624 419350 99999 FENI BG 23.0 91.4 8.0 19780803 19810126 419360 99999 JESSORE BG VGJR 23.184 89.161 6.1 19820101 20200624 419370 99999 BHOLA BG 22.683000000000003 90.65 5.0 19780102 19801108 419380 99999 BORHANUDDIN BG 22.483 90.71700000000001 8.0 19750112 19750329 419390 99999 MADARIPUR BG 23.166999999999998 90.18299999999999 13.0 19870303 20200624 419400 99999 CHITTAGONG BG 22.35 91.81700000000001 26.0 19440101 19810916 419410 99999 CHANDPUR BG 23.267 90.7 7.0 19610101 20200624 419430 99999 FENI BG 23.033 91.417 8.0 19800324 20200624 419440 99999 CHILLIMPUR BG 22.416999999999998 91.75 9.0 19450531 19450612 419450 99999 SANDVIP BG 22.483 91.417 6.0 19800310 19801012 419460 99999 SATKHIRA BG 22.717 89.083 6.0 19780804 20200624 419470 99999 KHULNA BG 22.783 89.53299999999999 4.0 19811214 20200624 419500 99999 BARISAL BG 22.75 90.367 4.0 19440101 20200624 419510 99999 BHOLA BG 22.683000000000003 90.65 5.0 19830419 20200624 419530 99999 MAIJDICOURT BG 22.866999999999997 91.1 6.0 20011014 20200624 419580 99999 MONGLA BG 22.6 89.5 -999.9 20040807 20200624 419600 99999 PATUAKHALI BG 22.333000000000002 90.333 3.0 20010805 20200624 419610 99999 KHEPUPARA BG 21.983 90.23299999999999 9.0 19800327 19800928 419630 99999 HATIA BG 22.433000000000003 91.1 4.0 19830413 20200624 419640 99999 SANDWIP BG 22.483 91.43299999999999 6.0 19830408 20200624 419650 99999 SITAKUNDU BG 22.583000000000002 91.7 10.0 19880609 20200624 419660 99999 RANGAMATI BG 22.533 92.2 63.0 19830406 20200624 419770 99999 CHITTAGONG (AMBAGAN) BG 22.35 91.81700000000001 34.0 19440503 20061020 419780 99999 SHAH AMANAT INTL BG VGEG 22.25 91.81299999999999 3.7 19820101 20200624 419800 99999 TEKNAF BG 20.417 92.3 6.0 19800415 19800806 419840 99999 KHEPUPARA BG 21.983 90.23299999999999 9.0 19830427 20200624 419890 99999 KUTUBDIA BG 21.816999999999997 91.85 7.0 20011014 20200624 419920 99999 COXS BAZAR BG VGCB 21.451999999999998 91.964 3.7 19460101 20200624 419930 99999 20020528 20020528 419980 99999 TEKNAF BG 20.866999999999997 92.3 6.0 19820729 20200624 420100 99999 BOGUS INDIAN IN 19870511 20020618 420260 99999 GULMARG IN 34.05 74.4 2655.0 19440601 20200624 420270 99999 SRINAGAR IN 34.083 74.833 1587.0 19730101 20200624 420280 99999 19870519 19870519 420290 99999 SONAMARG IN 34.317 75.317 2515.0 19740613 20180527 420300 99999 DRAS IN 34.433 75.767 3066.0 19440101 20070426 420340 99999 LEH & IN 34.15 77.567 3513.0 19440101 19481106 420420 99999 SRINAGAR IN 33.983000000000004 74.783 1664.0 19881026 20190213 420440 99999 QAZI GUND IN 33.583 75.083 1690.0 20090205 20200624 420450 99999 BANIHAL IN 33.5 75.167 1630.0 20021023 20200624 420550 99999 JAMMU (IN-AFB) IN 32.683 74.833 314.0 19730101 19910719 420560 99999 JAMMU IN 32.667 74.833 367.0 19830902 20200624 420570 99999 PATHANKOT (IN-AFB)& IN 32.233000000000004 75.633 312.0 19730102 19750831 420590 99999 DALHOUSIE IN 32.533 75.967 1959.0 19440601 20060101 420600 99999 KATHUA IN 32.333 75.5 380.0 20011121 20180316 420620 99999 DHARMSALA IN 32.266999999999996 76.383 1211.0 19730101 20200624 420630 99999 KYELONG IN 32.583 77.067 3348.0 20170926 20200306 420650 99999 MANALI IN 32.266999999999996 77.167 2039.0 19990223 20200624 420710 99999 AMRITSAR IN VIAR 31.71 74.797 230.4 19730101 20200624 420740 99999 KAPURTHALA IN 31.333000000000002 75.333 229.0 20020214 20160509 420750 99999 JULLUNDUR IN 31.467 75.583 -999.9 20180918 20200602 420770 99999 UNA IN 31.467 76.267 369.0 20090205 20200624 420780 99999 MANDI IN 31.717 76.967 761.0 19590602 20200624 420790 99999 SUNDERNAGAR IN 31.533 76.9 874.0 20130529 20200624 420800 99999 BILASPUR IN 31.25 76.667 587.0 19590602 20151208 420801 99999 BHAVNAGAR IN VABV 21.752 72.185 13.4 20110129 20200608 420810 99999 BHUNTAR IN 31.833000000000002 77.167 1084.0 20020903 20200624 420830 99999 SHIMLA IN 31.1 77.167 2202.0 19440101 20200624 420960 99999 FEROZEPUR IN 30.916999999999998 74.667 200.0 19730101 19900317 420970 99999 BHATINDA IN 30.166999999999998 74.583 211.0 20200213 20200213 420980 99999 HALWARA IN 30.75 75.633 241.0 19440101 19481231 420990 99999 LUDHIANA IN 30.866999999999997 75.933 255.0 19730101 20200624 421010 99999 PATIALA IN 30.333000000000002 76.467 251.0 19730101 20200624 421030 99999 AMBALA IN 30.383000000000003 76.767 272.0 19440101 20200624 421040 99999 NAHAN IN 30.4 76.767 958.0 19881016 20200624 421050 99999 CHANDIGARH(IAFB) IN 30.733 76.883 347.0 19740101 20200624 421070 99999 DHARMPUR IN 30.9 77.017 1986.0 19990701 20021214 421080 99999 UTTARKASHI IN 30.733 78.45 1200.0 19990420 20190201 421100 99999 PAURI IN 30.15 78.783 1845.0 20190315 20190315 421110 99999 DEHRADUN IN 30.316999999999997 78.033 682.0 19440101 20200624 421120 99999 MUSSOORIE IN 30.45 78.083 2042.0 19540101 20040705 421140 99999 TEHRI IN 30.4 78.483 770.0 19981224 20200624 421160 99999 JOSHIMATH IN 30.55 79.567 1875.0 19730101 20021002 421170 99999 CHAMOLI IN 30.4 79.333 1160.0 19990211 20200307 421210 99999 MUNSYARI IN 30.116999999999997 80.25 3414.0 20011024 20110908 421220 99999 ANUPGARH IN 29.166999999999998 73.167 154.0 19440101 20020317 421230 99999 GANGANAGAR IN 29.916999999999998 73.917 177.0 19440101 20200624 421310 99999 HISSAR IN VIHR 29.179000000000002 75.755 213.4 19440101 20200624 421350 99999 SANGRUR IN 30.166999999999998 75.833 236.0 19831001 20180519 421370 99999 KARNAL IN 29.7 77.033 249.0 19730109 20200624 421390 99999 MEERUT IN 29.017 77.717 222.0 19440603 20200624 421400 99999 ROORKEE IN 29.85 77.883 274.0 19440101 20180810 421430 99999 NAJIBABAD IN 29.616999999999997 78.383 270.0 19730101 20200624 421460 99999 NAINITAL IN 29.4 79.467 1953.0 19730103 19790214 421470 99999 MUKTESHWAR KUMAON IN 29.467 79.65 2311.0 19440101 20200624 421480 99999 PANTNAGAR IN 29.033 79.467 233.0 20070520 20200624 421510 99999 DHARCHULA IN 29.85 80.533 817.0 19831002 20020313 421650 99999 BIKANER IN 28.0 73.3 224.0 19440101 20200623 421700 99999 CHURU IN 28.25 74.917 291.0 19730101 20200624 421740 99999 PILANI IN 28.333000000000002 75.583 301.0 20020630 20200624 421760 99999 ROHTAK IN 28.833000000000002 76.583 222.0 20010728 20200624 421770 99999 NARNAUL IN 28.0 76.083 308.0 20020219 20200624 421780 99999 GURGAON IN 28.416999999999998 77.0 224.0 20010718 20200513 421810 99999 INDIRA GANDHI INTL IN VIDP 28.566999999999997 77.10300000000001 236.8 19750307 20200624 421820 99999 SAFDARJUNG IN VIDD 28.585 77.206 214.9 19420702 20200624 421830 99999 BULANDSHAHR IN 28.4 77.867 218.0 20010823 20191117 421870 99999 MORADABAD IN 28.833000000000002 78.75 202.0 19830915 20200505 421880 99999 RAMPUR IN 28.75 79.0 191.0 19990709 20020927 421890 99999 BAREILLY IN VIBY 28.421999999999997 79.45100000000001 176.8 19440101 20200624 421900 99999 PILIBHIT IN 28.633000000000003 79.8 188.0 20020725 20020725 422060 99999 HALDIA IN 22.066999999999997 88.06700000000001 11.0 20170614 20170614 422120 99999 19440101 19481231 422200 99999 PASIGHAT IN 28.1 95.383 157.0 19740403 20200624 422370 99999 PHALODI IN 27.133000000000003 72.367 234.0 19440101 20200624 422420 99999 NAGAUR IN 27.166999999999998 73.667 298.0 20010723 20020817 422490 99999 SIKAR IN 27.616999999999997 75.133 433.0 19730101 20200624 422550 99999 ALWAR IN 27.5 76.583 271.0 19730101 20200624 422570 99999 MATHURA IN 27.5 77.683 174.0 20020418 20021216 422580 99999 BHARATPUR IN 27.217 77.5 176.0 20020214 20181129 422600 99999 AGRA IN VIAG 27.156 77.961 167.9 19420824 20200620 422610 99999 AGRA IN 27.166999999999998 78.033 169.0 19440101 20021224 422620 99999 ALIGARH IN 27.883000000000003 78.067 187.0 19730101 20200624 422650 99999 MAINPURI IN 27.233 79.05 157.0 19440101 20021214 422660 99999 SHAHJAHANPUR IN 27.883000000000003 79.9 155.0 20090205 20200624 422700 99999 KHERI IN 27.9 80.8 147.0 19730101 20171124 422710 99999 HARDOI IN 27.383000000000003 80.167 142.0 19730101 20200624 422730 99999 BAHRAICH IN 27.566999999999997 81.6 124.0 19440101 20200624 422740 99999 GONDA IN 27.133000000000003 81.96700000000001 110.0 19730101 20171008 422790 99999 BASTI IN 26.8 82.73299999999999 89.0 20160804 20190926 422820 99999 NAUTANWA IN 27.433000000000003 83.417 99.0 19730101 20191117 422890 99999 19570104 19621227 422950 99999 DARJEELING IN 27.05 88.26700000000001 2128.0 19440101 20200624 422960 99999 KALIMPONG IN 27.066999999999997 88.46700000000001 1209.0 20151207 20200624 422990 99999 GANGTOK IN 27.333000000000002 88.617 1756.0 19740902 20200624 423050 99999 BOMDILA IN 27.416999999999998 92.85 2484.0 20020727 20050401 423090 99999 LILABARI IN VELR 27.295 94.098 100.6 19431223 20200624 423110 99999 SIBSAGAR IN 26.983 94.633 97.0 19440101 20160117 423120 99999 ZIRO IN 27.916999999999998 94.8 1476.0 20010802 20171105 423140 99999 DIBRUGARH IN VEMN 27.484 95.01700000000001 110.3 19420714 20200624 423160 99999 DIGBOI IN 27.383000000000003 95.617 143.0 19440901 20160805 423280 99999 JAISALMER IN 26.9 70.917 231.0 19730101 20200624 423390 99999 JODHPUR IN VIJO 26.250999999999998 73.04899999999999 218.5 19430731 20200624 423430 99999 AJMER IN 26.45 74.617 486.0 19440101 20200624 423480 99999 JAIPUR IN VIJP 26.824 75.812 385.0 19440101 20200624 423490 99999 TONK IN 26.166999999999998 75.75 272.0 19990514 20190930 423540 99999 DHOLPUR IN 26.666999999999998 77.833 176.0 19730101 20090205 423580 99999 BHIND IN 26.566999999999997 78.8 168.0 20020328 20021208 423610 99999 GWALIOR IN VIGR 26.293000000000003 78.22800000000001 188.1 19440101 20200624 423640 99999 ETAWAH IN 26.733 78.983 151.0 20010711 20200423 423660 99999 KANPUR IN 26.433000000000003 80.367 125.0 19450621 20180217 423670 99999 KANPUR CHAKERI IN VICX 26.404 80.41 123.4 19440101 20200624 423680 99999 LUCKNOW IN 26.866999999999997 80.933 111.0 19730101 20161218 423690 99999 LUCKNOW IN VILK 26.761 80.889 125.0 19440101 20200624 423720 99999 FURSATGANJ AIRPORT IN VERB 26.25 81.383 109.7 20130529 20200624 423740 99999 FAIZABAD IN 26.75 82.083 102.0 20020203 20181003 423750 99999 SULTANPUR IN 26.25 82.0 97.0 19990614 20190527 423790 99999 GORAKHPUR IN VEGK 26.74 83.45 78.9 19440101 20200624 423810 99999 AZAMGARH IN 26.05 83.21700000000001 78.0 19730101 19800626 423820 99999 RAXAUL IN 26.983 84.85 79.0 19730101 20180409 423830 99999 MOTIHARI IN 26.666999999999998 84.917 66.0 19440101 20200201 423870 99999 MUZAFFARPUR IN 26.116999999999997 85.4 53.0 19740515 20200516 423900 99999 MUZAFFARPUR AERODROME IN 26.116999999999997 85.31700000000001 53.0 20011029 20170327 423910 99999 DARBHANGA IN 26.166999999999998 85.9 49.0 19440101 20200624 423930 99999 SUPAUL IN 26.133000000000003 86.583 50.0 20010905 20200624 423950 99999 FORBESGANJ IN 26.3 87.26700000000001 61.0 19730101 20200624 423970 99999 SILIGURI IN 26.666999999999998 88.367 123.0 19990213 20190918 423980 99999 BAGDOGRA IN VEBD 26.680999999999997 88.329 125.6 19570618 20200624 423990 99999 JALPAIGURI IN 26.533 88.71700000000001 83.0 19440101 20200624 424030 99999 COOCH BEHAR IN 26.333000000000002 89.46700000000001 43.0 19430220 20200624 424040 99999 DHUBRI IN 26.017 89.98299999999999 36.0 19440101 20200624 424060 99999 DHUBRI/RUPSI IN 26.15 89.917 45.0 19450630 19450930 424070 99999 GOALPARA IN 26.183000000000003 90.633 38.0 19730102 20200624 424080 99999 RANGIA IN 26.433000000000003 91.617 60.0 20151207 20200624 424090 99999 TANGLA IN 26.65 91.917 65.0 19740221 20200624 424100 99999 GUWAHATI INTL IN VEGT 26.105999999999998 91.586 49.4 19440102 20200624 424130 99999 MAJBAT IN 26.75 92.35 120.0 20011009 20200624 424140 99999 CHAPARMUKH IN 26.2 92.51700000000001 66.0 19730103 20200624 424150 99999 TEZPUR IN 26.616999999999997 92.78299999999999 79.0 19440101 20200624 424160 99999 TEZPUR/BINDUKURI IN 26.717 92.8 75.0 19430510 19801101 424190 99999 GOHPUR IN 26.833000000000002 93.583 82.0 19831028 20071017 424200 99999 GOLAGHAT IN 26.517 93.98299999999999 95.0 19740806 20200624 424230 99999 JORHAT IN 26.066999999999997 90.167 880.0 19430414 20200624 424231 99999 JORHAT IN VEJT 26.732 94.176 94.8 20160807 20180829 424350 99999 BARMER IN 25.75 71.383 194.0 19440101 20200624 424390 99999 JALORE IN 25.35 72.617 168.0 20151208 20200407 424410 99999 ERINPURA /JAWAI DAM SITE IN 25.083000000000002 73.083 295.0 19450801 20200624 424470 99999 BHILWARA IN 25.35 74.633 425.0 20020917 20200624 424500 99999 BUNDI IN 25.45 75.633 267.0 20090205 20200624 424510 99999 KOTA-IN-RAJASTHAN IN 25.183000000000003 75.85 256.0 19440101 19780502 424520 99999 KOTA IN VIKO 25.16 75.846 273.1 19730101 20200624 424530 99999 SAWAI MADHOPUR IN 25.983 76.367 264.0 20010822 20200624 424560 99999 SHEOPUR IN 25.666999999999998 76.683 235.0 19730101 20200321 424590 99999 SHIVPURI IN 25.333000000000002 77.65 464.0 20020528 20200624 424600 99999 DATIA IN 25.666999999999998 78.467 229.0 20020417 20200624 424630 99999 JHANSI IN VIJN 25.491 78.558 244.1 19440101 20200624 424670 99999 NOWGONG IN 25.066999999999997 79.45 229.0 19440101 20200624 424680 99999 ORAI IN 25.983 79.5 141.0 20040508 20200624 424690 99999 HAMIRPUR IN 25.95 80.15 109.0 20090205 20200624 424710 99999 FATEHPUR IN 25.933000000000003 80.833 114.0 19730101 20200623 424720 99999 PRATAPGARH IN 25.9 81.95 99.0 20161018 20180706 424730 99999 BANDA IN 25.467 80.367 121.0 20040902 20200624 424750 99999 ALLAHABAD ARPT IN VEAB 25.44 81.734 98.2 19420727 20181203 424770 99999 JAUNPUR IN 25.75 82.68299999999999 80.0 20170531 20190320 424790 99999 LAL BAHADUR SHASTRI IN VEBN 25.45 82.867 81.1 19730101 20200624 424820 99999 GHAZIPUR IN 25.4 83.55 67.0 20010718 20200624 424830 99999 VARANASI IN 25.3 83.01700000000001 90.0 19440101 20200624 424840 99999 BALLIA IN 25.75 84.167 64.0 20020217 20181013 424870 99999 ARRAH IN 25.566999999999997 84.667 58.0 20170508 20191023 424880 99999 CHAPRA IN 25.783 84.73299999999999 58.0 20051019 20200624 424920 99999 PATNA IN VEPT 25.590999999999998 85.088 51.8 19440101 20200624 424980 99999 BHAGALPUR IN 25.233 86.95 49.0 19570102 20200624 424990 99999 SABAUR IN 25.233 87.06700000000001 37.0 20020614 20200620 425000 99999 PURNEA IN 25.267 87.46700000000001 38.0 19440101 20200624 425030 99999 MALDA IN 25.033 88.133 31.0 19730101 20200624 425060 99999 BALURGHAT IN 25.217 88.78299999999999 26.0 20151207 20200624 425110 99999 TURA IN 25.517 90.23299999999999 370.0 19730101 20021123 425120 99999 SHILLONG ARPT/UMROI ARPT IN VEBI 25.7 91.98299999999999 891.2 20151208 20200624 425150 99999 CHERRAPUNJI IN 25.25 91.73299999999999 1313.0 19440101 20200624 425160 99999 SHILLONG IN 25.566999999999997 91.883 1598.0 19440101 20200624 425220 99999 HAFLONG IN 25.166999999999998 93.01700000000001 682.0 20151207 20200624 425230 99999 LUMDING IN 25.75 93.18299999999999 149.0 19730101 20200624 425270 99999 KOHIMA IN 25.633000000000003 94.167 1406.0 19770923 20200624 425390 99999 DEESA IN 24.2 72.2 136.0 19440101 20200620 425400 99999 MOUNT ABU IN 24.6 72.717 1195.0 19440101 20200624 425420 99999 UDAIPUR IN VAUD 24.618000000000002 73.896 513.3 19750811 20200624 425430 99999 UDAIPUR IN 24.583000000000002 73.7 582.0 19440601 20170701 425460 99999 CHITTORGARH IN 24.883000000000003 74.633 404.0 20090205 20200624 425470 99999 NIMACH IN 24.467 74.9 496.0 19440101 19900427 425520 99999 CHAMBAL/RAWAT BHATA IN 24.916999999999998 75.583 351.0 20040727 20090205 425550 99999 JHALAWAR IN 24.533 76.167 321.0 19440101 20180109 425570 99999 RAJGARH IN 24.0 76.717 382.0 20090205 20200621 425590 99999 GUNA IN 24.65 77.317 478.0 19440101 20200624 425620 99999 TIKAMGARH IN 24.767 78.833 345.0 20060328 20200624 425670 99999 KHAJURAHO IN 24.983 79.917 217.0 20020623 20200624 425700 99999 PANNA IN 24.717 80.167 354.0 20010726 20200613 425710 99999 SATNA IN VIST 24.566999999999997 80.833 317.0 19440101 20200624 425740 99999 REWA IN 24.533 81.3 299.0 20090205 20200624 425770 99999 SIDHI IN 24.416999999999998 81.867 272.0 19730101 20200624 425870 99999 DALTONGANJ IN 24.05 84.06700000000001 221.0 19440101 20200624 425880 99999 DEHRI IN 24.916999999999998 84.18299999999999 107.0 19730101 20200624 425910 99999 GAYA IN VEGY 24.744 84.95100000000001 115.8 19421122 20200624 425950 99999 JAMUI IN 24.933000000000003 86.3 82.0 20120710 20120710 425990 99999 DUMKA IN 24.267 87.25 149.0 19440102 20181123 426030 99999 BERHAMPORE IN 24.133000000000003 88.26700000000001 19.0 19440101 20200624 426180 99999 KAILASHAHAR IN 24.316999999999997 92.0 30.0 19450119 20200624 426190 99999 SILCHAR IN 24.75 92.8 29.0 19440101 20200613 426200 99999 SILCHAR/KUMBHIRGRAM IN 24.916999999999998 92.98299999999999 105.0 19860321 19910723 426230 99999 IMPHAL IN VEIM 24.76 93.897 774.2 19441202 20200624 426310 99999 NALIYA IN 23.25 68.85 21.0 19730101 20200624 426340 99999 BHUJ IN VABJ 23.288 69.67 81.7 19440101 20200624 426380 99999 KANDLA AERODROME IN 23.15 70.117 29.0 20041007 20200624 426390 99999 NEW KANDLA IN 23.0 70.217 14.0 20090205 20200624 426409 99999 MT HOREB IN C96 42.983000000000004 -89.75 370.0 19860331 19860331 426470 99999 AHMEDABAD IN VAAH 23.076999999999998 72.635 57.6 19440101 20200624 426510 99999 IDAR IN 23.833000000000002 73.033 219.0 20090205 20181105 426520 99999 DUNGARPUR IN 23.833000000000002 73.667 291.0 20011122 20171011 426540 99999 GANDHINAGAR IN 23.233 72.717 82.0 20151207 20200624 426550 99999 BANSWARA IN 23.55 74.45 220.0 20021116 20090205 426610 99999 RATLAM IN 23.316999999999997 75.05 486.0 19730101 20200624 426620 99999 UJJAIN IN 23.183000000000003 75.783 489.0 20020615 20200624 426650 99999 SHAJAPUR IN 23.433000000000003 76.317 446.0 20010806 20200624 426670 99999 BHOPAL IN VABP 23.287 77.337 524.0 19440101 20200624 426690 99999 VIDISHA IN 23.533 77.817 430.0 20010713 20010713 426710 99999 SAGAR IN 23.85 78.75 551.0 19440101 20200620 426720 99999 RAISEN IN 23.316999999999997 77.833 440.0 19840225 20200624 426740 99999 DAMOH IN 23.833000000000002 79.45 371.0 20040603 20200624 426750 99999 JABALPUR IN VAJB 23.178 80.05199999999999 495.0 19440101 20200624 426790 99999 UMARIA IN 23.533 80.883 459.0 19730101 20200624 426930 99999 AMBIKAPUR IN 23.166999999999998 83.25 611.0 19730101 20200624 426990 99999 HAZARIBAGH IN 23.983 85.367 611.0 19440101 20190510 427000 99999 RANCHI IN 23.433000000000003 85.4 647.0 19730101 20140203 427010 99999 BIRSA MUNDA IN VERC 23.314 85.322 654.7 19440101 20200624 427030 99999 DHANBAD IN 23.783 86.43299999999999 257.0 20010813 20170103 427040 99999 PANAGARH IN 23.467 87.43299999999999 74.0 19431130 20020805 427050 99999 PURULIA IN 23.333000000000002 86.417 255.0 19440325 20200624 427051 99999 KULLU MANALI IN VIBR 31.877 77.154 1089.1 20040707 20200620 427052 99999 CHANDIGARH IN VICG 30.673000000000002 76.789 308.5 20060812 20200620 427053 99999 LEH IN VILH 34.135999999999996 77.547 3255.9 20060905 20200620 427055 99999 CALICUT IN VOCL 11.137 75.955 104.2 20100125 20200624 427056 99999 BANGALURU INTL AIRPORT IN VOBL 13.2 77.7 915.0 20080721 20200624 427060 99999 BANKURA IN 23.383000000000003 87.083 100.0 20050225 20200624 427070 99999 20010726 20021102 427080 99999 SHANTI NIKETAN IN 23.65 87.7 59.0 20010913 20200620 427090 99999 BURDWAN IN 23.233 87.85 30.0 19440101 20200624 427110 99999 KRISHNANAGAR IN 23.4 88.51700000000001 15.0 19950425 20200624 427140 99999 BAGATI IN 22.983 88.367 12.0 19801206 20200624 427150 99999 MALANJKHAND IN 22.0 80.7 581.0 20011121 20200623 427240 99999 AGARTALA IN VEAT 23.886999999999997 91.24 14.0 19450110 20200624 427260 99999 LENGPUI IN VELP 23.840999999999998 92.62 426.1 20100719 20200624 427270 99999 AIJAL IN 23.733 92.71700000000001 1097.0 19540101 20200624 427290 99999 MANDVI IN 22.816999999999997 69.267 9.0 20010921 20180620 427300 99999 OKHA IN 22.483 69.117 7.0 20011014 20200624 427310 99999 DWARKA IN 22.366999999999997 69.083 11.0 19440101 20200624 427340 99999 JAMNAGAR IN 22.45 70.083 14.0 19730101 19760102 427370 99999 RAJKOT IN VARK 22.309 70.78 134.4 19440101 20200624 427371 99999 RAIPUR IN VARP 21.18 81.73899999999999 317.3 20080616 20190831 427400 99999 SURENDRANAGAR IN 22.733 71.6 74.0 19730101 20200624 427440 99999 VALLABH VIDYANAGAR IN 22.566999999999997 72.933 44.0 19831001 20200624 427470 99999 BARODA IN 22.3 73.25 34.0 19440101 20160404 427480 99999 BARODA AERODROME IN 22.333000000000002 73.267 37.0 20070520 20200624 427500 99999 19870518 19870518 427510 99999 DOHAD IN 22.833000000000002 74.267 333.0 19440101 20190901 427520 99999 DHAR IN 22.6 75.3 583.0 19740724 20200620 427540 99999 DEVI AHILYABAI HOLKAR IN VAID 22.721999999999998 75.801 563.9 19440101 20200624 427630 99999 HOSHANGABAD IN 22.767 77.767 302.0 19440101 20200624 427670 99999 PACHMARHI IN 22.467 78.433 1075.0 19440101 20200624 427680 99999 CHHINDWARA IN 22.1 79.0 685.0 20020814 20200620 427700 99999 NARSINGHPUR IN 22.95 79.183 356.0 20010709 20200624 427710 99999 SEONI IN 22.083000000000002 79.55 619.0 19440101 20200624 427760 99999 MANDLA IN 22.583000000000002 80.367 443.0 20070520 20200624 427790 99999 PENDRA ROAD IN 22.767 81.9 625.0 19440101 20200624 427820 99999 BILASPUR IN VABI 21.988000000000003 82.111 274.0 20110724 20200624 427830 99999 CHAMPA IN 22.033 82.7 245.0 19730101 20090205 427900 99999 JASHPURNAGAR IN 22.883000000000003 84.133 771.0 20011004 20200504 427920 99999 SUNDARGARH IN 22.116999999999997 84.03299999999999 240.0 20020620 20200624 427930 99999 ROURKELA IN 22.217 84.883 196.0 20170815 20200124 427950 99999 CHAIBASA IN 22.55 85.81700000000001 226.0 19440101 20190603 427980 99999 JAMSHEDPUR IN VEJS 22.813000000000002 86.169 153.9 19730101 20200624 427990 99999 JAMSHEDPUR IN 22.816999999999997 86.18299999999999 129.0 19450801 20180423 428020 99999 KALAIKUNDA IN 22.333000000000002 87.21700000000001 62.0 19440115 19451210 428030 99999 MIDNAPORE IN 22.416999999999998 87.31700000000001 45.0 19730101 20200624 428050 99999 ULUBERIA IN 22.5 87.95 5.0 19810506 20200623 428070 99999 KOLKATA/ALIPORE IN 22.533 88.333 6.0 19440331 20200624 428080 99999 19740821 19740910 428081 99999 CALCUTTA/BARRACKS IN 22.767 88.367 7.0 19440331 19460531 428090 99999 NETAJI SUBHASH CHANDRA BOSE INTL IN VECC 22.655 88.447 4.9 19430831 20200624 428100 99999 BASIRHAT IN 22.65 88.867 4.0 20151207 20190408 428110 99999 DIAMOND HARBOUR IN 22.183000000000003 88.2 7.0 20011015 20200624 428120 99999 CANNING IN 22.25 88.667 4.0 20090205 20200624 428300 99999 PORBANDAR IN 21.65 69.667 5.0 19730101 20200624 428320 99999 KESHOD IN 21.316999999999997 70.317 50.0 20010916 20200624 428340 99999 AMRELI IN 21.6 71.217 115.0 19740517 20200624 428370 99999 MAHUVA IN 21.083000000000002 71.783 9.0 20010711 20200624 428380 99999 BHAUNAGAR IN 21.75 72.2 5.0 19730102 20200624 428390 99999 19440101 19631231 428400 99999 SURAT IN 21.2 72.833 12.0 19440101 20200624 428410 99999 BROACH IN 21.733 73.0 17.0 20011001 20190311 428460 99999 NANDURBAR IN 21.333000000000002 74.25 206.0 20160321 20190320 428490 99999 KHARGONE IN 21.816999999999997 75.617 251.0 20090205 20200624 428510 99999 JALGAON IN 21.05 75.567 201.0 19440101 20200624 428550 99999 KHANDWA IN VAKD 21.833000000000002 76.367 318.0 19440101 20200624 428600 99999 BETUL IN 21.866999999999997 77.933 653.0 19730101 20200624 428660 99999 NAGPUR (MAYO HOSPITAL) IN 21.15 79.117 311.0 19860516 20200330 428670 99999 DR AMBEDKAR INTL IN VANP 21.092 79.047 314.9 19440101 20200624 428710 99999 GONDIA ARPT/BIRSI IN VAGD 21.524 80.288 300.8 19730101 20200624 428720 99999 MANA IN 21.233 81.65 313.0 20151207 20200624 428740 99999 PBO RAIPUR IN 21.233 81.65 298.0 19960701 20200624 428750 99999 SWAMI VIVEKANANDA IN VERP 21.183000000000003 81.733 317.6 19440101 20200624 428760 99999 DURG IN 21.183000000000003 81.283 293.0 20020315 20200624 428830 99999 SAMBALPUR IN 21.467 83.96700000000001 148.0 19440101 20200624 428840 99999 RAIGARH IN 21.883000000000003 83.383 220.0 19990612 20070520 428860 99999 JHARSUGUDA IN VEJH 21.914 84.05 228.9 19570102 20200624 428910 99999 KEONGJHARGARH IN 21.616999999999997 85.51700000000001 463.0 20010917 20200624 428940 99999 BARIPADA IN 21.933000000000003 86.76700000000001 54.0 20090205 20200624 428950 99999 BALASORE IN 21.517 86.93299999999999 20.0 19440101 20200624 429000 99999 CONTAI IN 21.783 87.75 11.0 20020314 20200624 429010 99999 DIGHA IN 21.616999999999997 87.5 6.0 20090204 20200624 429030 99999 SAGAR ISLAND IN 21.65 88.05 3.0 19440101 20200324 429090 99999 VERAVAL IN 20.9 70.367 8.0 19440101 20200624 429140 99999 DIU APRT IN VADU 20.715 70.922 9.1 20151207 20200624 429150 99999 BULSAR IN 20.616999999999997 72.933 15.0 20090205 20200107 429160 99999 DAMAN IN 20.417 72.85 12.0 19780110 20170419 429200 99999 OZAR AIR FORCE STATION /NASHIK ARPT IN VAOZ 20.119 73.914 598.0 19890430 20200624 429210 99999 NASIK CITY IN 19.967 73.817 598.0 20060202 20200624 429250 99999 MALEGAON IN 20.55 74.533 437.0 19440101 20200624 429310 99999 BULDANA IN 20.533 76.233 650.0 19730101 20200624 429330 99999 AKOLA IN 20.7 77.033 282.0 19440101 20200624 429340 99999 AKOLA IN VAAK 20.699 77.059 304.5 19730101 20190417 429350 99999 WASHIM IN 20.117 77.117 565.0 20090205 20200624 429370 99999 AMRAOTI IN 20.933000000000003 77.783 370.0 19440101 20200624 429390 99999 WARDHA IN 20.666999999999998 78.583 283.0 20070520 20200624 429430 99999 YEOTMAL IN 20.4 78.15 451.0 19730101 20200301 429460 99999 BRAMHAPURI IN 20.6 79.85 229.0 19831018 20200623 429480 99999 RAJNANDGAON IN 21.1 81.033 329.0 20151208 20200624 429530 99999 KANKER IN 20.267 81.483 402.0 19440101 20191202 429610 99999 TITLAGARH IN 20.3 83.3 211.0 19730101 20190414 429630 99999 BOLANGIR IN 20.7 83.5 190.0 20020418 20190125 429660 99999 PHULBANI IN 20.483 84.26700000000001 489.0 20010707 20190804 429690 99999 ANGUL IN 20.833000000000002 85.1 139.0 19730101 20200624 429700 99999 CUTTACK IN 20.467 85.93299999999999 27.0 19440101 20200624 429710 99999 BHUBANESHWAR IN VEBS 20.244 85.818 42.1 19570102 20200624 429730 99999 CHANDBALI IN 20.783 86.73299999999999 6.0 19440101 20200624 429760 99999 PARADIP (C.W.R.) IN 20.3 86.68299999999999 8.0 20020521 20200624 429770 99999 SANDHEADS IN 20.85 88.25 10.0 19440101 20100827 429980 99999 BOGUS INDIAN IN 19840503 20040613 430010 99999 DAHANU IN 19.967 72.717 5.0 19440101 20200624 430020 99999 BOMBAY / JUHU IN 19.117 72.833 3.0 20161012 20161012 430030 99999 CHHATRAPATI SHIVAJI INTL IN VABB 19.089000000000002 72.868 11.3 19440101 20200624 430050 99999 T B I A IN 19.15 72.0 12.0 20170418 20200624 430090 99999 AHMADNAGAR IN 19.083 74.8 657.0 19440101 20200316 430110 99999 BIR IN 19.0 75.717 519.0 20020317 20200623 430120 99999 JALNA IN 19.833 75.8 538.0 20151208 20200624 430130 99999 AURANGABAD IN 19.883 75.333 579.0 19440101 20190620 430140 99999 AURANGABAD IN VAAU 19.863 75.398 582.5 19730101 20200624 430170 99999 PARBHANI IN 19.133 76.833 422.0 19440101 20200624 430190 99999 PUSAD IN 19.917 77.583 332.0 19831018 20190823 430210 99999 NANDED IN 19.083 77.333 358.0 20151207 20200624 430220 99999 PRIYADARSHINI IN 19.75 78.033 457.0 20081111 20081111 430250 99999 ADILABAD IN 19.65 78.533 269.0 19851202 20200624 430290 99999 CHANDRAPUR IN 19.967 79.3 193.0 19440101 20200624 430410 99999 JAGDALPUR IN 19.083 82.03299999999999 553.0 19440101 20200624 430420 99999 BHAWANIPATNA IN 19.917 83.18299999999999 261.0 19810103 20200624 430490 99999 GOPALPUR IN 19.267 84.883 17.0 19440101 20200624 430530 99999 PURI IN 19.8 85.81700000000001 6.0 19730101 20200624 430570 99999 BOMBAY / COLABA IN 18.9 72.817 11.0 20041228 20200624 430580 99999 ALIBAG IN 18.633 72.867 7.0 20020509 20200624 430600 99999 MATHERAN IN 18.983 73.283 695.0 20170604 20200624 430610 99999 KHANDALA IN 18.767 73.367 539.0 19440507 20070522 430620 99999 BHIRA IN 18.45 73.4 96.0 20070520 20190919 430630 99999 PUNE IN 18.533 73.85 558.0 19440101 20200624 430640 99999 PUNE / LOHOGAON AERODROME IN 18.583 73.917 589.0 19880501 20160618 430670 99999 PASHAN CTI IN 18.533 73.85 560.0 20180724 20180724 430690 99999 BARAMATI IN 18.15 74.583 551.0 19840213 20200624 430710 99999 JEUR IN 18.2 75.2 521.0 20151208 20200615 430760 99999 UDGIR IN 18.067 77.117 639.0 20151208 20200211 430810 99999 NIZAMABAD IN 18.667 78.1 381.0 19440101 20200624 430830 99999 MEDAK IN 18.05 78.267 472.0 19870905 20200624 430860 99999 RAMGUNDAM IN 18.767 79.433 156.0 19730101 20200624 430870 99999 HANAMKONDA IN 18.017 79.567 269.0 19440101 20200624 430890 99999 SIRONCHA IN 18.85 79.967 123.0 20010812 20021015 430930 99999 BAILADILA IN 18.583 81.233 1144.0 19890521 20200217 430970 99999 KORAPUT IN 18.817 82.71700000000001 913.0 19730113 20200624 431050 99999 KALINGAPATAM IN 18.333 84.133 6.0 19440101 20200624 431090 99999 HARNAI IN 17.817 73.1 20.0 19440101 20200624 431100 99999 RATNAGIRI IN 16.983 73.333 67.0 19440101 20200624 431110 99999 MAHABALESHWAR IN 17.933 73.667 1382.0 19440101 20200624 431130 99999 SATARA IN 17.517 74.05 612.0 20020727 20200624 431170 99999 SHOLAPUR IN VASL 17.628 75.935 482.8 19440101 20200624 431210 99999 GULBARGA IN 17.35 76.85 458.0 19440101 20200623 431250 99999 BIDAR IN VOBR 17.917 77.533 663.0 19440701 20200624 431280 99999 BEGUMPET AIRPORT IN VOHY 17.452 78.461 531.0 19440101 20200624 431285 99999 HYDERABAD INTL AIRPORT IN VOHS 17.233 78.417 617.0 20080721 20200624 431290 99999 19440101 19631231 431300 99999 HAKIMPET IN 17.55 78.517 613.0 19890731 19890731 431330 99999 NALGONDA IN 17.0 79.25 227.0 19771019 20200624 431360 99999 BHADRACHALAM IN 17.667 80.883 54.0 19730104 20200624 431370 99999 KHAMMAM IN 17.25 80.15 112.0 19440101 20200607 431470 99999 TUNI IN 17.35 82.55 35.0 20090204 20200624 431490 99999 VISHAKHAPATNAM CTLZ IN VOVZ 17.717 83.21700000000001 4.6 19540101 20200624 431500 99999 CWC VISHAKHAPATNAM/WALTAIR IN 17.7 83.3 66.0 19440101 20200623 431530 99999 DEVGARH IN 16.383 73.35 36.0 19460801 19860725 431570 99999 KOLHAPUR IN VAKP 16.665 74.289 608.4 19730101 20200624 431580 99999 SANGLI IN 16.85 74.6 549.0 19750906 20200622 431590 99999 19730103 19740630 431600 99999 BAGALKOTE IN 16.7 75.75 524.0 19440101 20190904 431610 99999 BIJAPUR IN 16.817 75.717 594.0 19440101 20200624 431680 99999 MAHABUBNAGAR IN 16.75 78.0 505.0 20090205 20200617 431690 99999 RAICHUR IN 16.2 77.35 400.0 19440101 20200619 431770 99999 RENTACHINTALA IN 16.55 79.55 106.0 19440101 20200621 431800 99999 VIJAYAWADA IN 16.517 80.617 20.0 20010823 20021025 431810 99999 VIJAYAWADA IN VOBZ 16.53 80.797 25.0 19730103 20200624 431820 99999 NANDIGAMA IN 16.783 80.283 51.0 20090205 20200624 431840 99999 NIDADAVOLE IN 16.833 81.583 13.0 20011125 20160120 431850 99999 MACHILIPATNAM/FRANCHPET IN 16.2 81.15 3.0 19540101 20200624 431870 99999 NARSAPUR IN 16.433 81.7 4.0 20040528 20200624 431890 99999 KAKINADA IN 16.95 82.23299999999999 8.0 19440101 20200624 431920 99999 GOA/PANJIM IN 15.482999999999999 73.817 58.4 19730101 20200624 431930 99999 VENGURLA IN 15.867 73.633 16.0 19561031 20200624 431940 99999 GOA INTL IN VOGO 15.380999999999998 73.831 56.1 19730101 20200624 431960 99999 MORMUGAO IN 15.417 73.783 62.0 19440101 20200624 431970 99999 BELGAUM IN 15.85 74.533 753.0 19440101 20200624 431971 99999 BELGAUM AIRPORT IN VOBM 15.85 74.617 747.0 20151207 20200624 431980 99999 BELGAUM IN VABM 15.859000000000002 74.618 758.0 19730101 20200624 432000 99999 DHARWAD IN 15.482999999999999 74.983 678.0 20151208 20200624 432010 99999 GADAG IN 15.417 75.633 650.0 19440101 20200624 432011 99999 HUBLI IN VOHB 15.35 75.083 661.3 20151110 20200624 432050 99999 BELLARY IN 15.15 76.85 449.0 19440101 20190509 432070 99999 PARANGIPETTAI IN 11.5 79.767 3.0 20151207 20200624 432120 99999 NANDYAL IN 15.467 78.483 212.0 20010825 20200624 432130 99999 KURNOOL IN 15.8 78.067 281.0 19440101 20200624 432200 99999 BAPATLA IN 15.9 80.467 6.0 19790416 20200624 432210 99999 ONGOLE IN 15.5 80.083 12.0 19730101 20200624 432250 99999 KARWAR IN 14.783 74.133 4.0 19730101 20200624 432260 99999 HONAVAR IN 14.283 74.45 9.0 19440101 20200624 432270 99999 HAVERI IN 14.783 75.4 573.0 20151208 20200620 432280 99999 KOPPAL IN 15.35 76.15 532.0 20151208 20200620 432290 99999 SHIRALI IN 14.067 74.533 45.0 19771222 20200624 432300 99999 DAVANGERE IN 14.5 75.917 620.0 20151208 20200620 432330 99999 CHITRADURGA IN 14.232999999999999 76.433 733.0 19440101 20200624 432370 99999 PBO ANANTAPUR IN 14.583 77.633 364.0 19540101 20200624 432410 99999 CUDDAPAH IN 14.482999999999999 78.833 130.0 19440101 20200623 432430 99999 KAVALI IN 14.9 79.983 17.0 20040528 20200624 432450 99999 NELLORE IN 14.45 79.983 20.0 19440101 20200624 432570 99999 AGUMBE EMO IN 13.5 75.083 659.0 20010808 20200610 432580 99999 SHIMOGA IN 13.933 75.633 571.0 20010904 20200619 432590 99999 BALEHONUR IN 13.367 75.45 907.0 19851209 20161029 432600 99999 CHICKMAGALUR IN 13.25 75.75 1057.0 20090205 20200624 432630 99999 HASSAN IN 12.967 76.333 955.0 20020522 20200624 432640 99999 CHIKKANAHALLI IN 13.667 77.917 672.0 20151210 20190507 432660 99999 M.O. AGATHI AIRPORT IN 10.85 72.467 3.0 20090205 20200624 432710 99999 AROGYAVARAM IN 13.533 78.5 701.0 19730101 20200624 432720 99999 CHINTAMANI IN 13.2 78.067 857.0 20151208 20200620 432750 99999 TIRUPATHI IN 13.667 79.583 105.0 19860108 20200624 432770 99999 TIRUTTANI IN 13.15 79.533 87.0 19780210 20200624 432780 99999 NUMGAMBAKKAM IN 13.067 80.2 7.0 19870110 20200624 432790 99999 CHENNAI INTL IN VOMM 12.994000000000002 80.181 15.8 19440101 20200624 432830 99999 MANGALORE IN 12.867 74.85 22.0 19440101 19631231 432840 99999 MANGALORE IN VOML 12.960999999999999 74.89 102.7 19730101 20200624 432850 99999 MANGALORE/PANAMBUR IN 12.95 74.833 31.0 19740429 20200624 432870 99999 MADIKERI IN 12.417 75.733 1153.0 19440101 20200615 432890 99999 MANDYA IN 12.5 76.833 695.0 19811012 20200619 432910 99999 MYSORE IN 12.3 76.7 767.0 19440101 20200622 432950 99999 BANGALORE IN 12.967 77.583 921.0 19730101 20200624 432960 99999 BANGALORE/HINDUSTAN AIRPORT IN 12.95 77.633 888.0 19420901 20200624 432990 99999 KOLAR GOLD FIELDS IN 12.95 78.3 882.0 19990207 20190401 433010 99999 DHARMAPURI IN 12.133 78.033 396.0 19771125 20200624 433020 99999 TIRUPPATTUR IN 12.482999999999999 78.567 385.0 20151212 20200624 433025 99999 BANGALORE IN VOBG 12.95 77.668 887.6 20050507 20200624 433030 99999 VELLORE IN VOVR 12.917 79.15 214.0 19440101 20200624 433080 99999 MAHABALIPURAM IN 12.617 80.2 9.0 19760825 19760827 433090 99999 MAYA BANDAR IN 12.917 92.917 28.0 19730101 20200624 433100 99999 LONG ISLAND IN 12.417 92.93299999999999 25.0 20070520 20200624 433110 99999 M.O. AMINI IN 11.117 72.733 3.0 19730101 20200624 433120 99999 AGATTI IN 10.85 72.467 4.0 20020325 20030525 433140 99999 KOZHIKODE IN 11.25 75.783 5.0 19440101 20200624 433150 99999 CANNUR IN 11.833 75.333 18.0 19771015 20200624 433160 99999 NILAMBUR IN 11.283 76.233 31.0 19990225 20190317 433170 99999 UDHAGAMANDALAM IN 11.4 76.733 2249.0 19440101 20200624 433180 99999 COONOOR IN 11.35 76.8 1747.0 19860214 20200621 433190 99999 COIMBATORE IN 11.0 76.967 409.0 19440101 20030606 433200 99999 M.O. KARIPUR AIRPORT IN 11.133 75.95 100.0 20090205 20200624 433210 99999 COIMBATORE IN VOCB 11.030999999999999 77.044 403.6 19730101 20200624 433220 99999 CHAMARAJNAGAR IN 11.933 76.933 760.0 20151208 20200319 433240 99999 ARIYALUR IN 11.167 79.0 747.0 19771101 20200624 433250 99999 SALEM IN 11.65 78.167 278.0 19440101 20200624 433260 99999 KALLAKKURICHCHI IN 11.732999999999999 78.967 127.0 19730101 20200621 433270 99999 KARAIKUDI IN 10.067 78.8 92.0 19760323 20200321 433280 99999 PONDICHERRY IN 11.917 79.833 6.0 20020305 20030528 433290 99999 CUDDALORE IN 11.767000000000001 79.767 12.0 19440101 20200624 433300 99999 THANJAVUR IN 10.783 79.133 68.0 19761009 20200624 433310 99999 M.O. PONDICHERRY IN 11.967 79.817 38.0 20090204 20200624 433330 99999 PORT BLAIR IN VEPB 11.667 92.71700000000001 79.0 19451101 20200624 433340 99999 ANDROTH IN 10.8 73.983 5.0 20020807 20200530 433350 99999 PALAKKAD IN 10.767000000000001 76.65 97.0 19440101 20200624 433360 99999 COCHIN INT. AIRPORT NEDUMBASSERY IN 10.15 76.4 7.7 20061013 20200624 433370 99999 KAVARATTI HELIPORT IN VOKV 10.542 72.616 9.1 20160101 20161013 433380 99999 ERODE IN 11.482999999999999 77.767 172.0 20190623 20200624 433390 99999 KODAIKANAL IN 10.232999999999999 77.467 2343.0 19440101 20200624 433400 99999 YERCAUD IN 11.75 78.167 1463.0 20151207 20200624 433410 99999 VALPARAI IN 10.283 77.0 1041.0 20151207 20200624 433420 99999 K. PARAMATHY IN 10.95 78.083 181.0 19780731 20200624 433430 99999 TIRUCHIRAPALLI TOWN IN 10.767000000000001 78.717 88.0 20160205 20200624 433440 99999 TIRUCHIRAPPALLI IN VOTR 10.765 78.71 87.8 19440101 20200624 433450 99999 KUDIMIAMALAI IN 10.4 78.667 123.0 20151211 20200326 433460 99999 KARAIKAL IN 10.917 79.833 7.0 19990412 20200624 433470 99999 NAGAPPATTINAM IN 10.767000000000001 79.85 9.0 19440101 20200624 433480 99999 ATIRAMAPATTINAM IN 10.333 79.383 6.0 20030727 20200624 433490 99999 VEDARANNIYAM IN 10.367 79.85 4.0 19990908 20191110 433510 99999 FORT COCHIN IN 9.967 76.233 3.0 19540101 20011006 433520 99999 ALAPUZHA IN 9.55 76.417 4.0 19440701 20200624 433530 99999 COCHIN IN VOCC 9.946 76.27199999999999 2.4 19440101 20200624 433540 99999 PUNALUR IN 9.0 76.917 34.0 20020827 20200624 433550 99999 KOTTAYAM IN 9.533 76.6 78.0 20010707 20200624 433560 99999 PERIAKULAM IN 10.0 77.133 300.0 20151207 20200624 433570 99999 THRISSUR IN 10.517000000000001 76.217 39.0 20151207 20200624 433580 99999 KOVILANGULAM IN 9.55 78.083 103.0 20151208 20200103 433590 99999 MADURAI IN 9.917 78.117 133.0 19730101 20200624 433600 99999 MADURAI IN VOMD 9.835 78.093 139.9 19440101 20200624 433610 99999 TONDI IN 9.732999999999999 79.033 5.0 20030727 20200624 433630 99999 PAMBAN IN 9.283 79.217 11.0 19440101 20200624 433640 99999 HUT BAY IN 10.583 92.55 5.0 20020604 20200624 433670 99999 CAR NICOBAR IN 9.167 92.833 10.0 19730101 20200624 433680 99999 CAR NICOBAR(IN-AFB) IN VECX 9.15 92.81700000000001 14.0 19730101 20200616 433690 99999 MINICOY IN 8.3 73.15 2.0 19440101 20200623 433710 99999 THIRUVANANTHAPURAM IN 8.482999999999999 76.95 64.0 19440101 20200624 433720 99999 THIRUVANANTHAPURAM INTL IN VOTV 8.482000000000001 76.92 4.6 19960201 20200624 433730 99999 TRIVANDRUM MET.OBS./THUMBA IN 8.533 76.867 7.0 20030304 20200103 433740 99999 KOVALAM IN 8.083 77.25 35.0 20011027 20011027 433760 99999 PALAYANKOTTAI IN 8.732999999999999 77.75 51.0 19730101 20200624 433770 99999 KANNIYAKUMARI IN 8.083 77.5 37.0 19800710 20200624 433790 99999 TUTICORIN NEW PORT IN 8.75 78.183 2.0 20090205 20200624 433820 99999 NANCOWRY IN 7.983 93.53299999999999 26.0 19730101 20200624 433850 99999 KONDUL IN 7.2170000000000005 93.73299999999999 8.0 19730101 20030727 433950 99999 MALE ISLAND IN 4.167 73.5 6.0 19740730 19811214 433990 99999 PARO BT VQPR 27.403000000000002 89.425 2234.8 20101206 20200624 434000 99999 KANKASANTURAI CE 9.8 80.067 15.0 19560104 20190814 434040 99999 JAFFNA CE 9.65 80.017 3.0 20010820 20200624 434100 99999 MULLAITTIVU CE 9.267000000000001 80.817 2.0 19840105 20161214 434130 99999 MANNAR CE 8.982999999999999 79.917 3.0 19570701 20200624 434150 99999 VAVUNIYA CE 8.75 80.5 98.0 20020326 20200624 434180 99999 CHINA BAY CE VCCT 8.539 81.182 1.8 19450801 20200624 434210 99999 ANURADHAPURA CE VCCA 8.301 80.428 98.8 19620101 20200624 434220 99999 MAHA ILLUPPALLAMA CE 8.117 80.467 117.0 19990909 20200624 434240 99999 PUTTALAM CE 8.033 79.833 2.0 19590112 20200624 434360 99999 BATTICALOA CE VCCB 7.706 81.679 6.1 19570701 20200624 434410 99999 KURUNEGALA CE 7.4670000000000005 80.367 116.0 20030112 20200624 434440 99999 KANDY CE 7.332999999999999 80.633 477.0 20030111 20200624 434500 99999 BANDARANAIKE INTL COLOMBO CE VCBI 7.181 79.866 8.8 19620101 20200624 434660 99999 COLOMBO CE 6.9 79.867 7.0 19440101 20200624 434670 99999 COLOMBO RATMALANA CE VCCC 6.822 79.88600000000001 6.7 19440513 20200624 434730 99999 NUWARA ELIYA CE 6.9670000000000005 80.767 1880.0 19570701 20200624 434750 99999 POTTUVIL CE 6.882999999999999 81.833 8.0 20070619 20200624 434760 99999 DIYATALAWA CE 6.817 80.967 1250.0 20050714 20200624 434780 99999 BOGUS SRI LANKAN CE 19840612 20030701 434790 99999 BADULLA CE 6.983 81.05 667.0 20030112 20200624 434860 99999 RATNAPURA CE 6.683 80.4 88.0 20020116 20200624 434950 99999 GALLE CE 6.0329999999999995 80.217 13.0 20020116 20200624 434970 99999 HAMBANTOTA CE VCRI 6.117000000000001 81.133 20.0 19450801 20200624 435170 99999 19440101 19601108 435330 99999 HANIMAADHOO MV 6.733 73.167 2.0 19930501 20200624 435360 99999 19550506 19630930 435400 99999 BOGUS MALDIVIAN MV 19440101 19860729 435410 99999 SONAMARG & IN 34.317 75.317 2515.0 19440101 19631112 435420 99999 DRAS IN 34.433 75.767 3066.0 19550430 19631230 435440 99999 19440101 19630630 435550 99999 MALE INTL MV VRMM 4.192 73.529 1.8 19810101 20200624 435770 99999 KADHDHOO MV 1.883 73.5 2.0 19940301 20200624 435880 99999 KAADEDHDHOO MV 0.483 72.983 2.0 20010916 20200624 435990 99999 GAN ISLAND MV VRMG -0.693 73.156 1.8 19811001 20200624 436040 99999 19550110 19631231 438150 99999 19440101 19481231 438470 99999 19870511 19870511 442030 99999 RINCHINLHUMBE MG 51.117 99.667 1583.0 19830421 20200624 442031 99999 TUERHTU EAST MG 51.516999999999996 100.68299999999999 1724.0 19740419 19821124 442070 99999 HATGAL MG 50.433 100.15 1668.0 19630301 20200624 442080 99999 BOGUS MONGOLIAN MG 19890602 20041208 442100 99999 NOGOONNUUR MG 49.6 90.35 1480.0 20070822 20200624 442120 99999 ULAANGOM MG 49.8 92.083 939.0 19570701 20200624 442130 99999 BARUUNTURUUN MG 49.65 94.4 1232.0 19830102 20200624 442131 99999 KHYARGAS SOUTHWEST MG 49.533 93.8 2050.0 19730103 19821227 442140 99999 ULGI MG 48.933 89.93299999999999 1715.0 19590101 20200624 442150 99999 OMNO-GOBI MG 49.016999999999996 91.71700000000001 1590.0 19730101 20200624 442160 99999 HUNHATAOORTOO MG 48.817 93.1 1051.0 19751001 20200624 442170 99999 TOLBO MG 48.417 90.3 2101.0 19730401 20200624 442180 99999 HOVD MG 48.016999999999996 91.56700000000001 1405.0 19561016 20200624 442190 99999 URGAMAL MG 48.516999999999996 94.3 1263.0 19750109 20200624 442210 99999 GANDAN HURYEE MG 49.65 95.78299999999999 1421.0 19730401 20200624 442240 99999 TSETSEN UUL MG 48.766999999999996 96.0 1928.0 19751003 20200624 442250 99999 TOSONTSENGEL MG ZMTL 48.733000000000004 98.2 1723.0 19690101 20200624 442251 99999 TOSONTSENGEL MG 48.739 98.29700000000001 1709.0 19730101 19800215 442290 99999 TARIAT MG 48.083 99.55 2041.0 19730101 20200624 442300 99999 TARIALAN MG 49.567 102.0 1235.0 19830112 20200624 442301 99999 TESHIG SOUTHWEST MG 49.95 102.6 1070.0 19730102 19821124 442310 99999 MUREN MG 49.633 100.167 1283.0 19560802 20200624 442320 99999 HUTAG MG 49.383 102.7 938.0 19630301 20200624 442360 99999 NAME AND LOC UNKN MG 48.85 103.51700000000001 -999.0 19731004 20190606 442370 99999 ERDENEMANDAL MG 48.533 101.383 1509.0 19830102 20200624 442371 99999 ONDOR-ULAAN NW MG 48.05 100.48299999999999 1989.0 19730103 19821230 442380 99999 BOGUS MONGOLIAN MG 19890510 20021122 442390 99999 BULGAN MG 48.8 103.55 1208.0 19560805 20200624 442400 99999 BATA SUMBER MG 48.417 106.71700000000001 630.0 19690101 20190606 442410 99999 BARUUNHARAA MG 48.917 106.06700000000001 807.0 19560802 20200624 442420 99999 HADATYN MG 49.45 107.2 762.0 19730102 20200624 442430 99999 ULYGAIIN DUGANG MG 49.833 107.73299999999999 883.0 19730101 20200624 442450 99999 DZUUNHARAA MG 48.867 106.46700000000001 895.0 19740419 20190606 442540 99999 TATAAL MG 48.85 111.45 994.0 19630301 20200624 442560 99999 DASHBALBAR MG 49.55 114.4 705.0 19831201 20200624 442570 99999 BINDER MG 48.617 110.6 747.0 19560803 20200624 442580 99999 KHOLONBUIR NE MG 48.033 113.25 824.0 19631002 19631227 442590 99999 CHOIBALSAN MG 48.083 114.55 747.0 19560802 20200624 442640 99999 BULGAN MG 46.083 91.53299999999999 1190.0 19750521 20190606 442650 99999 BAITAG MG 46.117 91.46700000000001 1186.0 19630301 20200624 442652 99999 19730101 19790805 442660 99999 TONHIL MG 46.317 93.9 2095.0 19731004 20200624 442720 99999 ULIASTAI MG 47.75 96.85 1759.0 19560901 20200624 442730 99999 BULENII HURYEE WEST MG 47.667 99.0 2523.0 19740425 19740817 442750 99999 BAYANBULAG MG 46.833 98.083 2255.0 19831011 20200624 442752 99999 19741127 19800830 442770 99999 ALTAI MG 46.4 96.25 2181.0 19560802 20200624 442780 99999 DELGER MG 46.367 97.367 1793.0 19731004 20020930 442820 99999 TSETSERLEG MG 47.45 101.46700000000001 1691.0 19560803 20200624 442840 99999 GALUUT MG 46.7 100.133 2126.0 19570725 20200624 442850 99999 HUJIRT MG 46.9 102.76700000000001 1662.0 19580410 20200624 442860 99999 BAT OLDZIY BUND MG 46.967 103.8 1358.0 19730103 20200624 442870 99999 BAYANHONGOR MG 46.133 100.68299999999999 1859.0 19630301 20200624 442880 99999 ARVAIHEER MG 46.266999999999996 102.78299999999999 1813.0 19560802 20200624 442900 99999 LUNG MG 47.867 105.25 1530.0 19560802 20190606 442910 99999 SONGIIN MG 47.85 106.75 1272.0 20070822 20200624 442920 99999 CHINGGIS KHAAN INTL MG ZMUB 47.843 106.76700000000001 1330.1 19560802 20200624 442930 99999 HERELENGIIN DEN NE MG 47.833 108.5 1319.0 19560803 19581231 442940 99999 MAANTI MG 47.3 107.48299999999999 1430.0 19560821 20200624 442970 99999 DELGERTSGOT MG 46.117 106.383 1405.0 19740421 20190606 442980 99999 CHOIR MG 46.45 108.21700000000001 1286.0 19560802 20200624 443010 99999 BOGUS MONGOLIAN MG 19890201 20020518 443020 99999 BAYAN-OVOO MG 47.783 112.117 926.0 19690101 20200624 443021 99999 19730101 19810526 443040 99999 UNDERKHAAN MG 47.317 110.633 1033.0 19560802 20200624 443050 99999 BARUUN-URT MG 46.683 113.28299999999999 981.0 19600101 20200624 443130 99999 KHALKH-GOL MG 47.617 118.617 688.0 19831011 20200624 443132 99999 HUSHUU SUME SOUTH MG 47.333 119.03299999999999 1067.0 19730401 19810806 443140 99999 MATAD MG 47.167 115.633 907.0 19750808 20200624 443150 99999 19730108 19751223 443170 99999 ERDENETSAGAAN MG 45.9 115.367 1076.0 19730101 20200624 443190 99999 19870519 19870519 443250 99999 ERDENI MG 45.15 97.76700000000001 2417.0 19630301 20200624 443290 99999 AMARBUYANTAYN MG 44.617 98.7 2103.0 19731004 20200624 443360 99999 SAIKHAN-OVOO MG 45.45 103.9 1316.0 19831011 20200624 443362 99999 19730101 19781108 443380 99999 BOGD MG 44.65 102.167 1646.0 19750809 20200624 443410 99999 MANDALGOBI MG 45.766999999999996 106.28299999999999 1393.0 19560802 20200624 443470 99999 TSOGT-OVOO MG 44.417 105.31700000000001 1298.0 19690101 20200624 443480 99999 BAYAN DOBO SUMA MG 44.567 107.18299999999999 1093.0 19731129 20200624 443520 99999 BAYANDELGER MG 45.733000000000004 112.367 1101.0 19561031 20200624 443540 99999 SAINSHAND MG 44.9 110.117 938.0 19560802 20200624 443580 99999 ZAMYN-UUD MG 43.733000000000004 111.9 964.0 19560803 20200624 443730 99999 DALANZADGAD MG 43.583 104.417 1465.0 19560802 20200624 443740 99999 SHINE USA MG 42.9 100.21700000000001 1494.0 19730102 20200624 443830 99999 HOVSOGOL MG 43.6 109.65 992.0 19731118 20020613 443850 99999 HANBOGD MG 43.2 107.167 914.0 19751201 20200624 443860 99999 UNKNOWN MONGOLIA MG 43.183 109.21700000000001 213.0 19730102 20200624 443920 99999 BOGUS MONGOLIAN MG 19890703 20020705 444040 99999 DADELDHURA NP 29.3 80.583 1848.0 19780301 20200527 444060 99999 DIPAYAL NP 29.25 80.95 617.0 20051012 20200527 444090 99999 DHANGADHI (ATARIYA) NP 28.8 80.55 187.0 20051012 20200527 444160 99999 SURKHET NP VNSK 28.6 81.617 720.0 19761101 20200527 444180 99999 NEPALGUNJ AIRPORT NP 28.1 81.667 165.0 20051012 20200527 444240 99999 JUMLA NP VNJL 29.283 82.167 2300.0 19750913 20200527 444290 99999 DANG NP 28.05 82.5 634.0 20051012 20200527 444340 99999 POKHARA NP VNPK 28.201 83.98100000000001 826.6 19770207 20200527 444380 99999 BHAIRAHAWA NP VNBW 27.506 83.416 109.1 19770302 20200527 444490 99999 SIMARA NP VNSI 27.159000000000002 84.98 137.2 19740110 20200527 444540 99999 TRIBHUVAN INTL NP VNKT 27.697 85.359 1338.1 19730521 20200624 444600 99999 JIRI NP VNJI 27.633000000000003 86.23299999999999 2003.0 19780722 19780722 444610 99999 SYANGBOCHE NP 27.816999999999997 86.71700000000001 3700.0 19761101 19800210 444620 99999 OKHALDHUNGA NP 27.3 86.5 1720.0 19761101 20200527 444740 99999 TAPLEJUNG NP VNTJ 27.35 87.667 1732.0 19780701 20200527 444770 99999 DHANKUTA NP 26.983 87.35 1210.0 19761101 20200527 444780 99999 BIRATNAGAR NP VNVT 26.480999999999998 87.264 71.9 19770208 20200527 450010 99999 CHEUNG CHAU CH VHCH 22.2 114.01700000000001 79.0 19730101 20020513 450020 99999 19530101 19560331 450030 99999 TAI-O CH 22.25 113.85 76.0 19770514 20020820 450040 99999 KOWLOON CH 22.311999999999998 114.17299999999999 66.4 19791102 20180930 450050 99999 HONG KONG OBSERVATORY CH 22.3 114.167 62.0 19460901 20180930 450060 99999 GREEN ISLAND CH 22.283 114.117 76.0 20010707 20010707 450070 99999 HONG KONG INTL HK VHHH 22.309 113.915 8.5 19481231 20200624 450080 99999 19730101 19740430 450090 99999 TAI MO SHAN CH 22.416999999999998 114.117 947.0 19471231 19560331 450100 99999 TATE'S CAIRN CH 22.366999999999997 114.21700000000001 576.0 20011226 20011226 450110 99999 MACAU INTL MC VMMC 22.15 113.59200000000001 6.1 19510320 20200624 450200 99999 MACAO/FORTALEZA DO MONTE MC 22.183000000000003 113.53299999999999 59.0 20120823 20120823 450320 99999 TA KWU LING CH 22.533 114.15 13.0 19921204 20200624 450330 99999 KAT O CH 22.533 114.3 10.0 19921204 19990604 450340 99999 TAI MEI TUK CH 22.483 114.23299999999999 53.0 19921204 19960405 450350 99999 LAU FAU SHAN CH 22.467 113.98299999999999 35.0 20040713 20200624 450390 99999 SHA TIN CH 22.4 114.2 8.0 20040713 20200624 450410 99999 TSEUNG KAWN O CH 22.316999999999997 114.25 32.0 20040604 20040604 450440 99999 CHEUNG CHAU CH 22.2 114.01700000000001 79.0 20020313 20200624 450450 99999 WAGLAN ISLAND CH 22.183000000000003 114.3 60.0 20040122 20200624 459090 99999 19870518 19870518 465660 99999 DRIFTER 46566 / ARGOS 63832 20180101 20180425 465890 99999 HSIA-TA-CHEN SHAN CHINA SEA CH 28.416999999999998 121.917 35.7 19540516 19550131 466860 99999 CHIANG KAI SHEK INTL TW RCTP 25.078000000000003 121.23299999999999 32.6 19790301 20200624 466880 99999 MATSU TW 26.233 120.0 8.0 19730101 19730901 466888 99999 BEIGAN TW RCMT 26.224 120.00299999999999 12.5 19990114 20001231 466890 99999 NANGAN TW RCFG 26.16 119.958 68.0 19540517 19991017 466900 99999 TANSHUI TW 25.166999999999998 121.43299999999999 19.0 19730101 19780629 466920 99999 TAIBEI TW 25.033 121.51700000000001 9.0 19730101 20180711 466940 99999 CHILUNG TW 25.15 121.8 3.0 19730101 19981231 466950 99999 PENGJIA YU(=589740) TW 25.633000000000003 122.06700000000001 102.0 19730101 19981231 466960 99999 SUNGSHAN TW RCSS 25.069000000000003 121.552 5.5 19461231 20200624 466970 99999 TAOYUAN TW RCGM 25.055999999999997 121.243 46.0 19491231 20001231 466990 99999 HUA-LIEN CITY TW 23.983 121.6 19.0 19730101 20180711 467060 99999 SUAO MET STATION TW 24.6 121.85 3.0 19820101 19981231 467080 99999 ILAN CITY TW 24.75 121.78299999999999 7.0 19730101 20180711 467300 99999 DONGSHI TW RCNO 23.267 119.667 45.0 19730101 20010626 467340 99999 MAGONG TW RCQC 23.569000000000003 119.62799999999999 31.4 19490531 20140228 467350 99999 PENGHU ISLANDS TW 23.5 119.5 21.0 19730101 20091105 467360 99999 SHANG YI TW RCBS 24.428 118.359 28.3 19540516 20020318 467373 99999 BAKUAI/PA KUEI TW 24.933000000000003 121.3 141.0 19880105 19900703 467380 99999 PA KUEI/BAKUAI TW RCUK 24.933000000000003 121.3 141.0 19811101 20010102 467400 99999 KAOHSIUNG INTL TW RCKH 22.576999999999998 120.35 7.9 19730101 20200624 467403 99999 FENGNIN TW RCFN 22.755 121.102 43.6 19820603 20200624 467410 99999 TAINAN (=593580) TW 23.0 120.21700000000001 14.0 19730101 20040607 467425 99999 BOGUS TAIWANESE TW RCLT 19860111 20010101 467430 99999 TAINAN TW RCNN 22.95 120.206 19.2 19471231 20200624 467440 99999 KAOHSIUNG TW 22.633000000000003 120.28299999999999 29.0 19500131 19981231 467450 99999 GANGSHAN TW RCAY 22.783 120.262 10.4 19540516 20091105 467460 99999 CHIAYI TW RCKU 23.462 120.39299999999999 25.9 19490301 20140311 467470 99999 DONGGANG (=595530) TW RCMJ 22.467 120.43299999999999 8.0 19730101 19741030 467480 99999 CHIAYI TW 23.5 120.45 28.0 19540516 20000413 467490 99999 TAICHUNG (=591580) TW 24.15 120.68299999999999 78.0 19730101 19990904 467500 99999 PINGTUNG SOUTH TW RCDC 22.671999999999997 120.462 23.8 19540516 20091106 467510 99999 TAICHUNG TW RCLG 24.186 120.654 115.0 19461231 20001231 467520 99999 HENGCHUN TW RCKW 22.041 120.73 14.0 19490731 20030316 467530 99999 MOUNT ALISAN TW 23.517 120.8 2406.0 19730101 20000219 467540 99999 DAWU TW 22.35 120.9 8.0 19730101 19981231 467550 99999 MOUNT MORRISON TW 23.483 120.95 3850.0 19730101 19981231 467560 99999 HSINCHU TW RCPO 24.818 120.939 7.9 19540516 20100606 467570 99999 HSINCHU CITY TW 24.833000000000002 120.0 27.0 19730101 19981231 467580 99999 PINGTUNG NORTH TW RCSQ 22.7 120.48200000000001 29.6 19730101 20010209 467590 99999 HENGCHUN (=595590) TW 22.0 120.75 24.0 19730101 19981231 467600 99999 JHIHHANG TW RCQS 22.793000000000003 121.182 36.9 19490531 20010703 467610 99999 CHENG-KUNG TW 23.1 121.367 37.0 19730101 19990220 467615 99999 BOGUS TAIWANESE TW RCTM 19860125 19880702 467620 99999 LANYU TW RCLY 22.029 121.53399999999999 13.1 19730102 20030906 467630 99999 HUALIEN TW RCYU 24.023000000000003 121.618 15.8 19461231 20140228 467640 99999 ILAN TW RCMS 24.75 121.76700000000001 9.0 19490930 20020805 467650 99999 JOYUTANG TW 23.883000000000003 120.85 1015.0 19730101 19990221 467660 99999 TAIDONG (=595620) TW 22.75 121.15 10.0 19730101 20010304 467690 99999 LUNG TAN(TAFB) TW 24.866999999999997 121.23299999999999 241.0 19520519 19651231 467700 99999 CHING CHUAN KANG AB TW RCMQ 24.265 120.62100000000001 202.1 19520331 20200624 467710 99999 SHIH-KANG SOUTHEAST TW 24.25 120.8 430.0 19540516 19551231 467720 99999 CHIA TUNG TW RCFS 22.416999999999998 120.55 20.0 19540516 20010101 467770 99999 WU-CHI OBSERVATORY TW 24.25 120.51700000000001 5.0 19780801 19981231 467800 99999 LU-TAO TW 22.683000000000003 121.5 280.0 19860101 20030318 468100 99999 DONGSHA TW RCLM 20.666999999999998 116.71700000000001 6.0 19490111 20000830 468110 99999 PRATAS ISLAND TW 20.717 116.71700000000001 3.0 19730101 19990628 469010 99999 WOODY ISLAND PARACEL IS TW 16.85 112.333 2.4 19490201 19500430 469020 99999 NENSHA ISL(=599970) TW 10.383 114.367 5.0 19490111 19981231 469999 99999 BOGUS TAIWANESE TW RCKK 0.0 0.0 -999.0 19850611 19910323 470030 99999 SENBONG KN 42.317 130.4 3.0 19570202 20200624 470050 99999 SAMJIYON KN 41.817 128.3 1381.0 19760401 20200624 470080 99999 CHONGJIN KN 41.783 129.817 43.0 19570202 20200624 470140 99999 CHUNGGANG KN 41.783 126.883 331.0 19570202 20200624 470160 99999 HYESAN KN 41.4 128.167 714.0 19570202 20200624 470200 99999 KANGGYE KN 40.967 126.6 306.0 19570202 20200624 470220 99999 PUNGSAN KN 40.817 128.15 1200.0 19760401 20200624 470250 99999 KIMCHAEK/SONGJIN KN ZKKC 40.667 129.2 23.0 19570202 20200624 470280 99999 SUPUNG KN 40.45 124.93299999999999 76.0 19760401 20200624 470310 99999 CHANGJIN KN 40.367 127.25 1080.0 19760401 20200624 470311 99999 MEILAN CH ZJHK 19.935 110.459 22.9 20040706 20200624 470312 99999 ZHENGDING CH ZBSJ 38.281 114.697 71.0 20040706 20200624 470350 99999 SINUIJU KN 40.1 124.383 7.0 19570202 20200624 470370 99999 KUSONG KN 39.983000000000004 125.25 99.0 19760401 20200624 470380 99999 BOGUS KOREAN KN 19880403 20020721 470390 99999 HUICHON KN 40.167 126.25 155.0 19760401 20200624 470410 99999 HAMHEUNG KN 39.933 127.55 22.0 19570202 20200624 470420 99999 BOGUS KOREAN KN 19880209 20030109 470460 99999 SINPO KN 40.033 128.183 19.0 19760401 20200624 470500 99999 ANJU KN 39.617 125.65 27.0 19760401 20200624 470520 99999 YANGDOK KN 39.217 126.65 279.0 19760401 20200624 470550 99999 WONSAN KN ZKWS 39.183 127.43299999999999 36.0 19570202 20200624 470580 99999 PYONGYANG INTL KN ZKPY 39.224000000000004 125.67 35.7 19501024 20200624 470600 99999 NAMPO KN 38.717 125.383 47.0 19760401 20200624 470610 99999 CHANGJON KN 38.733000000000004 128.183 34.0 19760401 20200624 470650 99999 SARIWON KN 38.516999999999996 125.76700000000001 52.0 19570202 20200624 470660 99999 HYUN NI (KOR-ARMY) KS 37.95 128.317 274.0 19510909 19830116 470670 99999 SINGYE KN 38.5 126.53299999999999 97.0 19760401 20200624 470680 99999 RYONGYON KN 38.15 124.883 6.0 19760401 20200624 470690 99999 HAEJU KN 38.033 125.7 81.0 19570202 20200624 470699 99999 CHAJANG NI (K-ARMY) KS 37.867 127.18299999999999 100.0 19790907 19791117 470700 99999 KAESONG KN 37.967 126.56700000000001 70.0 19570202 20200624 470750 99999 PYONGGANG KN 38.417 127.28299999999999 352.0 19760401 20200624 470800 99999 GEOJIN KN 38.45 128.45 107.0 19530502 20020607 470880 99999 SANGJU RANGE KS RKTS 36.4 128.283 90.3 20050102 20200624 470900 99999 SOKCHO KS 38.251 128.565 22.9 19730101 20200624 470910 99999 SOKCHO AIRPORT KN 38.133 128.6 13.0 19730101 19811030 470920 99999 YANGYANG INTL KS RKNY 38.061 128.66899999999998 73.5 20040405 20200624 470950 99999 CHEORWON KS 38.15 127.3 155.0 19880331 20200624 470970 99999 ICHEON KS 37.266999999999996 127.48299999999999 90.0 20090108 20200624 470980 99999 DONGDUCHEON KS 37.9 127.06700000000001 112.0 20010705 20200624 470990 99999 PAJU KS 37.883 126.766 30.0 20030330 20200624 471000 99999 DAEGWALLYEONG KS 37.683 128.717 844.0 19791126 20200624 471010 99999 CHUNCHEON KS 37.9 127.73299999999999 78.0 19510622 20200624 471020 99999 BAENGNYEONGDO KS 37.966 124.63 145.5 19800310 20200624 471025 99999 TAESONG-SAN KS 38.2 127.55 1182.0 19541107 20200519 471030 99999 BAENGNYEONGDO AB KS RKSP 37.933 124.667 171.0 19510916 20200624 471033 99999 BOGUS KOREAN KS RKTX 19861002 19890307 471034 99999 YEONPYEUNGDO KS RKSQ 37.7 125.7 91.0 19930702 20200624 471040 99999 A 306 KS RKNC 37.884 127.71799999999999 77.0 19600918 20200624 471050 99999 GANGNEUNG KS 37.771 128.868 26.1 19730101 20200624 471060 99999 DONGHAE RADAR KS 37.5 129.13299999999998 37.0 19510701 20200624 471064 99999 H 207 HELIPORT KS RKSX 37.719 127.09899999999999 71.3 19790710 20161022 471065 99999 YEONGDONGRI KS 37.783 126.85 24.0 19530501 19840225 471066 99999 CAMP CASEY/TONGDUCH KS RKST 37.917 127.05 60.0 19531023 20190812 471069 99999 PYORIP-SAN KS RKSV 37.783 126.367 248.0 19790907 19890806 471070 99999 GANGNEUNG KS RKNN 37.754 128.944 10.7 19511231 20200624 471074 99999 KEO JIN KS RKNO 38.467 128.467 107.0 19930802 20200624 471080 99999 SEOUL CITY KS RKSL 37.567 126.96700000000001 87.0 19501204 20200624 471084 99999 PYORIPSAN KS RKSV 37.783 126.367 250.0 19930829 20200624 471085 99999 PAEKADO KS RKTB 37.016999999999996 126.05 46.0 19930702 20200624 471086 99999 WOONG CHEON KS RKTW 36.2 126.55 13.0 19930910 20200624 471087 99999 SEOSAN AB KS 36.7 126.48299999999999 12.0 19950911 20041231 471094 99999 WHANG RYEONG KS RKNF 37.75 128.667 1407.0 19930802 20200624 471100 99999 GIMPO KS RKSS 37.558 126.791 17.7 19450930 20200624 471105 99999 H 264 HELIPORT KS RKSY 37.522 126.979 12.2 19730101 20200624 471110 99999 SEOUL AB KS RKSM 37.446 127.11399999999999 28.0 19740101 20200624 471115 99999 KOON-NI RANGE KS 37.033 126.75 15.0 19730101 19731231 471116 99999 SUSAEK AERO KS RKSK 37.6 126.867 52.0 19841106 19900628 471120 99999 INCHEON KS 37.467 126.633 70.0 19730101 20200624 471125 99999 COMMAND POST TANGO KS RKSH 37.516999999999996 126.98299999999999 73.0 19960820 20000817 471130 99999 INCHEON INT'L AIRPORT KS 37.467 126.43299999999999 7.0 19640630 20050322 471131 99999 INCHEON INTL KS RKSI 37.469 126.45100000000001 7.0 20040706 20200624 471140 99999 WONJU KS RKNW 37.438 127.96 100.3 19540424 20200624 471150 99999 ULLEUNGDO KS 37.483000000000004 130.9 220.0 19730101 20200624 471160 99999 GWANAKSAN KS 37.433 126.96700000000001 637.0 19990130 20020116 471165 99999 KOREAN AF HQ KS RKSF 37.5 126.917 49.0 20050102 20200624 471170 99999 SINYONGSAN KS 37.533 126.96700000000001 29.0 19740101 20041231 471180 99999 WONJU AB KS RKNH 38.233000000000004 127.96700000000001 105.5 19510411 20020905 471190 99999 SUWON KS 37.266999999999996 126.98299999999999 35.0 19730101 20200624 471200 99999 SUWON KS RKSW 37.239000000000004 127.007 26.8 19510205 20200624 471204 99999 SV RI SAN KS 37.35 126.917 406.0 19630301 20090607 471205 99999 MAESANRI KS RKSD 37.35 127.26700000000001 144.0 19930910 20200624 471206 99999 19730102 19761221 471207 99999 SEOUL EAST(KOR-AFB) KS 37.433 127.117 20.0 19730101 19731231 471210 99999 YEONGWOL KS 37.183 128.467 237.0 19810604 20200624 471220 99999 OSAN AB KS RKSO 37.091 127.03 11.6 19530109 20200624 471223 99999 KOTAR RANGE KS RKNR 37.1 128.9 792.0 19820624 20200624 471240 99999 SEONGMU KS RKTE 36.568000000000005 127.5 78.6 19910611 20200624 471243 99999 BAEGADO KS 37.083 125.96700000000001 -999.0 19880310 19900504 471250 99999 JUNGWON AB KS RKTI 37.03 127.885 85.6 19920415 20200624 471260 99999 MANGILSAN KS RKTM 36.933 126.45 84.0 19740101 20171013 471263 99999 BOGUS KOREAN KS 19890908 19910319 471270 43216 A511/PYEONGTAEK KS RKSG 36.967 127.03299999999999 16.0 19510313 20200624 471270 99999 A 511 / DESIDERIO AAF-PYEONGTAEK / CAMP HUMPHREYS ROK KS RKSG 36.967 127.03299999999999 15.5 20000101 20041231 471275 99999 MANGILSAN (KOR-AFB) KS 36.933 126.45 302.0 19690331 19731231 471280 99999 CHEONGJU INTL KS RKTU 36.717 127.499 58.2 19790315 20200624 471285 99999 CHOCH' IWON KS RKTL 36.567 127.28299999999999 25.0 20010705 20051105 471290 99999 SEOSAN KS 36.766999999999996 126.5 27.0 19730101 20200624 471299 99999 TAESONG-SAN KS 38.2 127.55 1175.0 19790907 19841102 471300 99999 ULJIN KS 37.0 129.417 51.2 19780310 20200624 471310 99999 CHEONGJU KS 36.633 127.45 59.0 19510228 20200624 471315 99999 YEOJU RANGE KS RKSU 37.433 127.633 43.0 19730114 20200624 471320 99999 ANMYEONDO KS RKTD 36.516999999999996 126.31700000000001 43.0 19510131 20070227 471330 99999 TAEJON KS RKTF 36.3 127.4 78.0 19730101 20200624 471340 99999 YECHEON KS RKTY 36.632 128.355 107.9 19770208 20200624 471349 99999 KOJIN NI KS 0.0 0.0 -999.0 19770208 19841120 471350 99999 CHUPUNGNYEONG KS 36.217 127.98299999999999 245.0 19550912 20200624 471360 99999 ANDONG KS RKTA 36.567 128.7 141.6 19830201 20200624 471370 99999 SANGJU KS RKTS 36.417 128.15 97.6 19890501 20200624 471380 99999 POHANG KS 36.033 129.38299999999998 3.6 19730101 20200624 471385 99999 SANGJU KS 36.417 128.167 150.0 19660531 20081017 471390 99999 POHANG KS RKTH 35.988 129.42 21.3 19730101 20200624 471395 99999 MOKPO KS RKJM 34.759 126.38 7.0 20041005 20140104 471400 99999 GUNSAN KS 36.001999999999995 126.76299999999999 26.9 19730101 20200624 471405 99999 JEON JU KS RKJU 35.878 127.12 29.3 19730101 19730626 471410 43219 KUNSAN AB KS RKJK 35.917 126.617 10.0 19510409 20200624 471410 99999 KUNSAN AB KS RKJK 35.904 126.616 8.8 20000101 20041231 471420 99999 DAEGU AB KS RKTN 35.894 128.659 35.4 19501101 20200624 471425 99999 CAMP WALKER (H-805) KS RKTG 35.85 128.583 75.0 19730101 19970117 471430 99999 TAEGU ACC (KOR-AFB) KS RKTT 35.883 128.61700000000002 61.0 19730101 20200624 471440 99999 OSUNGSAN KS 36.0 126.78299999999999 227.0 19990623 20010807 471450 99999 CHEONAN KS 36.763000000000005 127.29299999999999 81.5 20090108 20200624 471460 99999 JEONJU KS 35.833 127.117 62.6 19730101 20200624 471470 99999 GYERYONGDAE KS 36.3 127.21700000000001 145.0 19801225 19810402 471475 99999 BOGUS KOREAN KS RKTV 19841012 19910807 471476 99999 BOGUS KOREAN KS RKTW 19870403 19910807 471480 99999 MYONBONGSAN KS 36.183 129.0 1133.0 20070226 20070227 471490 99999 SEOSAN AB KS 36.683 126.48299999999999 12.0 20050102 20070409 471500 99999 BORYEONG KS 36.333 126.55 18.0 20090108 20200624 471510 99999 ULSAN AIRPORT KS 35.583 129.35 13.0 19500716 20070227 471511 99999 ULSAN ARPT KS RKPU 35.583 129.35 10.0 19810811 19831206 471520 99999 ULSAN KS RKPU 35.593 129.352 13.7 19730101 20200624 471530 99999 GIMHAE INTL KS RKPK 35.18 128.938 1.8 19540719 20200624 471540 43213 GUMI KS 36.117 128.317 47.0 19730101 19870621 471540 99999 GUMI KS 36.117 128.317 47.0 20090108 20200624 471550 99999 CHANGWON KS 35.17 128.57299999999998 36.8 19860601 20200624 471560 99999 GWANGJU KS 35.167 126.9 74.0 19730101 20200624 471570 99999 GEOCHANG KS 35.667 127.917 226.0 20090108 20200624 471571 99999 CHINHAE (KOR-ARMY) KS RKPE 35.133 128.7 4.0 19670731 19840621 471580 99999 GWANGJU KS RKJJ 35.126 126.809 11.9 19531201 20200624 471590 99999 BUSAN KS RKPP 35.1 129.033 71.0 19730101 20200624 471600 99999 GUDEOKSAN KS 35.117 129.0 532.0 20041104 20041104 471610 43240 SACHEON AB KS RKPS 35.083 128.083 8.0 19730101 20200624 471610 99999 SACHEON AB KS RKPS 35.089 128.07 7.6 20000101 20041231 471620 99999 TONGYEONG KS 34.85 128.433 33.3 19730101 20200624 471630 99999 MUAN INTL AIRPORT KS RKJB 34.983000000000004 126.383 16.0 20080331 20200624 471650 99999 MOKPO KS 34.817 126.383 39.0 19730101 20200624 471660 99999 MOKPO AIRPORT KS 34.766999999999996 126.383 5.0 19740210 19740210 471670 99999 YEOSU KS RKJY 34.842 127.617 16.2 19741117 20200624 471680 99999 YEOSU KS 34.733000000000004 127.75 67.0 19730101 20200624 471690 99999 HEUKSANDO KS 34.687 125.45100000000001 68.5 20010705 20200624 471700 99999 WANDO KS 34.4 126.7 35.0 19830201 20200624 471710 99999 JEONGEUP KS 35.55 126.867 39.0 20090108 20200624 471720 99999 GOCHANG KS 35.349000000000004 126.59899999999999 55.0 20090108 20200624 471730 99999 NAMWON KS 35.417 127.4 132.5 20090108 20200624 471740 99999 SUNCHEON KS 35.016999999999996 127.367 166.9 19890601 20200624 471750 99999 JINDO RADAR KS 34.467 126.333 478.0 20030330 20190731 471790 99999 ULNEUNGDO KS 37.5 130.86700000000002 968.0 19890503 20200624 471820 99999 JEJU INTL KS RKPC 33.510999999999996 126.493 36.0 19730101 20200624 471840 99999 JEJU KS 33.516999999999996 126.53299999999999 23.0 19510131 20200624 471850 43263 GOSAN KS 33.294000000000004 126.163 71.0 19880312 20200624 471850 99999 GOSAN KS 33.294000000000004 126.163 70.9 20000101 20041231 471870 99999 MOSULPO (KOR-AFB) KS RKPM 33.2 126.26700000000001 27.0 19540729 20200624 471880 99999 SEONGSAN KS 33.383 126.867 18.0 20101208 20200624 471890 99999 SEOGWIPO KS 33.25 126.56700000000001 51.0 19730101 20200624 471910 99999 IRI KS 35.917 126.95 8.0 20011002 20030923 471920 99999 JINJU KS 35.167 128.033 29.9 19730101 20200624 471933 99999 SONGMU (KOR-AFB) & KS 36.567 127.5 79.0 19870629 19910611 471963 99999 YEONPYEONGDO KS 34.667 125.68299999999999 -999.0 19880301 19900516 471990 99999 YONG JUNG-RI KS 35.433 126.43299999999999 37.0 19800216 20020810 471999 99999 YONG JUNG-RI KS RKJO 35.433 126.43299999999999 37.0 19730101 19800105 472020 99999 NAYORO-ON-HOKKAIDO JA 44.367 142.467 89.0 19730101 19780804 472025 99999 RISHIRI JA RJER 45.242 141.186 34.1 19750521 20060816 472050 99999 ISHIKARINUMATA JA 43.8 141.95 63.0 19730101 20020602 472070 99999 TAKIKAWA JA 43.567 141.95 48.0 19730102 20011001 472130 99999 FURANO-ON-HOKKAIDO JA 43.333 142.4 174.0 19730101 19780422 472140 99999 YUBARI-ON-HOKKAIDO JA 43.033 141.967 293.0 19730101 19780511 472150 99999 KITAMI-ON-HOKKAIDO JA 43.817 143.917 84.0 19730101 20020207 472160 99999 NUKABIRA JA 43.367 143.2 540.0 19730101 19760901 472180 99999 19730101 19750331 472185 99999 OKUSHIRI JA RJEO 42.073 139.43 54.9 19750521 19990228 472260 99999 19730101 19750401 472310 99999 HIROSAKI-IN-TOHOKU JA 40.617 140.467 30.0 19740503 20020426 472330 99999 TAKANOSU-IN-TOHOKU JA 40.233000000000004 140.38299999999998 29.0 19740503 19770502 472390 99999 YOKOTE JA 39.317 140.55 59.0 19740503 19780219 472410 99999 19740503 19750331 472560 99999 OBANAZAWA JA 38.6 140.417 98.0 19740503 20030129 472590 99999 ICHINOSEKI JA 38.917 141.13299999999998 68.0 19740503 20020601 472630 99999 TADAMI-IN-TOHOKU JA 37.333 139.317 377.0 19731129 20030218 472660 99999 YONEZAWA-IN-TOHOKU JA 37.917 140.11700000000002 239.0 19740503 19770430 472680 99999 KORIYAMA-IN-TOHOKU JA 37.383 140.36700000000002 255.0 19740503 20021220 472720 99999 NAGAOKA-IN-CHUBU JA 37.45 138.85 21.0 19730101 20010708 472760 99999 TONAMI-IN-CHUBU JA 36.633 136.933 50.0 19730101 19740331 472850 99999 19740720 19740831 472900 99999 IKARI JA 36.9 139.7 512.0 20020124 20020124 472940 99999 19740720 19750906 472970 99999 OTAWARA JA 36.867 140.033 213.0 19740720 20020417 473020 99999 ONO-IN-CHUBU JA 35.983000000000004 136.483 175.0 19730101 19780815 473040 99999 SHIROTORI-IN-CHUBU JA 35.867 136.86700000000002 372.0 20010726 20020523 473070 99999 MITAKE JA 35.85 137.63299999999998 870.0 19730101 19760331 473080 99999 HAGIWARA-IN-CHUBU JA 35.867 137.217 431.0 20020104 20040608 473120 99999 ENA-IN-CHUBU JA 35.45 137.4 315.0 20011109 20020909 473150 99999 19730101 19730331 473160 99999 19730101 19750315 473250 99999 MIYAGAWA-IN-KANSAI JA 34.283 136.217 202.0 20011127 20011127 473460 99999 SHOBARA-IN-CHUGOKU JA 34.867 133.033 300.0 20050517 20050517 473530 99999 IKOMAYANA JA 34.667 135.667 633.0 19800706 19840410 473620 99999 OZU-ON-SHIKOKU JA 33.5 132.55 68.0 20011105 20011105 474010 99999 WAKKANAI JA 45.417 141.683 11.7 19521231 20200624 474020 99999 KITAMIESASHI JA 44.933 142.583 8.4 19521231 20200624 474030 99999 YAGISHIRITO (LGT-H) JA 44.433 141.433 40.0 19730101 20040508 474040 99999 HABORO JA 44.367 141.7 9.6 19521231 20200624 474050 99999 OMU JA 44.583 142.967 15.9 19521231 20200624 474060 99999 RUMOI JA 43.95 141.63299999999998 24.3 19521231 20200624 474070 99999 ASAHIKAWA JA 43.75 142.36700000000002 140.0 19521231 20200624 474090 99999 ABASHIRI JA 44.016999999999996 144.283 43.5 19521231 20200624 474110 99999 OTARU JA 43.183 141.017 26.3 19521231 20200624 474120 99999 SAPPORO JA 43.067 141.333 26.2 19521231 20200624 474130 99999 IWAMIZAWA JA 43.217 141.783 51.5 19521231 20200624 474150 99999 SAPPORO/KENASHIYAMA JA 43.133 141.017 700.0 19990109 20010725 474170 99999 OBIHIRO JA 42.917 143.217 43.7 19521231 20200624 474180 99999 KUSHIRO/KENEBETSU JA RJCS 42.983000000000004 144.4 37.0 19521231 20200624 474200 99999 NEMURO JA 43.333 145.583 27.2 19521231 20200624 474210 99999 SUTTSU JA 42.8 140.217 35.1 19521231 20200624 474230 99999 MURORAN/YAKUMO JA RJCY 42.317 140.983 49.0 19521231 20200624 474240 99999 TOMAKOMAI JA 42.617 141.55 7.9 19521231 20200624 474250 99999 NEW CHITOSE JA RJCC 42.775 141.692 25.0 19451031 20200624 474260 99999 URAKAWA JA 42.167 142.783 38.5 19521231 20200624 474270 99999 ERIMO (CAPE/LGT-H) JA 41.917 143.25 63.0 19730101 20020520 474280 99999 ESASHI JA 41.867 140.11700000000002 12.1 19521231 20200624 474290 99999 MORI JA 42.1 140.567 27.0 19521231 19641231 474300 99999 HAKODATE JA 41.817 140.75 43.9 19521231 20200624 474310 99999 ESAN (CAPE/LGT-H) JA 41.817 141.183 36.0 19730101 20020109 474320 99999 HAKODATE/YOKOTSUDAKE JA 41.933 140.783 1111.0 19990127 19991124 474330 99999 KUTCHAN JA 42.9 140.75 188.1 19730101 20200624 474340 99999 CHITOSE JA RJCJ 42.794 141.666 26.5 19880901 20200624 474350 99999 MOMBETSU JA 44.35 143.35 17.7 19730101 20200624 474400 99999 HIROO JA 42.3 143.317 34.2 19730101 20200624 474410 99999 WAKKANAI JA RJCW 45.403999999999996 141.80100000000002 9.1 19730101 20200624 474415 99999 REBUN ISLAND JA RJCR 45.45 141.033 27.0 19790911 20001002 474510 99999 AONAE (LGT-H) JA 42.05 139.45 16.0 19730101 19900328 474520 99999 SHAKOTAN (CAPE/LH) JA 43.367 140.467 117.0 19730101 20020512 474720 99999 RISHIRI AIRPORT JA 45.233000000000004 141.2 33.0 19990128 20020421 474740 99999 MONBETSU JA RJEB 44.303999999999995 143.404 24.4 19730401 20200624 474760 99999 ASAHIKAWA JA RJEC 43.67100000000001 142.44799999999998 219.8 19730101 20200624 474770 99999 ASAHIKAWA JA RJCA 43.795 142.363 114.9 19730103 20200624 474780 99999 BOGUS JAPANESE JA 19870306 20020610 474790 99999 SAPPORO JA RJCO 43.11600000000001 141.38 7.6 19730101 20200624 474800 99999 MEMAMBETSU JA 43.917 144.183 40.0 19981224 20011010 474810 99999 MEMANBETSU JA RJCM 43.881 144.164 41.1 19730101 20200624 474830 99999 NAKASHIBETSU JA RJCN 43.578 144.96 71.3 19730410 20200624 474870 99999 NEW CHITOSE AIRPORT JA 42.783 141.7 21.3 20070226 20070228 474880 99999 HAKODATE JA RJCH 41.77 140.822 46.0 19730101 20200624 474890 99999 KUSHIRO JA RJCK 43.041000000000004 144.19299999999998 99.7 19730101 20200624 474900 99999 OBIHIRO JA RJCB 42.733000000000004 143.217 153.9 19730101 20200624 474905 99999 TOKACHI JA RJCT 42.891000000000005 143.158 85.6 19810506 20200624 475000 99999 WAJIMA JA 37.383 136.9 14.0 19990429 20021008 475120 99999 OFUNATO JA 39.067 141.717 38.4 19730101 20200624 475125 99999 OJIKA JA 19860125 19890531 475150 99999 HACHINOHE JA RJSH 40.556 141.466 46.3 19730101 20200624 475160 99999 OMINATO (JASDF) JA RJSO 41.233000000000004 141.13299999999998 10.0 19730101 20140701 475170 99999 OMINATO JA 41.233000000000004 141.15 10.0 19750407 20020618 475200 99999 SHINJO JA 38.75 140.317 102.0 19730101 20200624 475420 99999 AOMORI JA RJSA 40.735 140.691 202.4 19730101 20200624 475450 99999 AKITA JA RJSK 39.616 140.219 95.4 19730101 20200624 475490 99999 HANAMAKI JA RJSI 39.429 141.135 90.5 19730101 20200624 475530 99999 YAMAGATA JA RJSC 38.412 140.371 107.6 19730101 20200624 475570 99999 FUKUSHIMA JA RJSF 37.227 140.431 372.2 19950826 20200624 475670 99999 KASUMINOME (JASDF) JA RJSU 38.233000000000004 140.917 10.0 19730103 20140701 475690 99999 SENDAI JA RJSS 38.14 140.917 4.6 19730101 20200624 475700 99999 WAKAMATSU JA 37.483000000000004 139.917 213.6 19730101 20200624 475720 99999 NIIGATA/YAHIKOYAMA JA 37.717 138.817 634.0 19740802 20011224 475730 43318 NIIGATA AIRPORT JA RJSN 37.95 139.11700000000002 4.0 19730101 20200624 475730 99999 NIIGATA JA RJSN 37.955999999999996 139.121 8.8 20000101 20041231 475740 99999 FUKAURA JA 40.65 139.933 68.0 19730101 20200624 475750 99999 AOMORI JA 40.817 140.767 4.1 19730101 20200624 475760 99999 MUTSU JA 41.283 141.217 4.8 19730101 20200624 475770 99999 SHIRIYA POINT JA 41.433 141.467 16.0 19730101 20011002 475800 44402 MISAWA NAVAL AIR STATION JA RJSM 40.7 141.36700000000002 35.1 20050101 20200624 475800 99999 MISAWA AB JA RJSM 40.705 141.372 39.0 19480408 20041231 475805 99999 MISAWA (USAF) JA KQSM 40.683 141.4 36.0 19800227 20011215 475810 99999 HACHINOHE JA 40.533 141.517 28.5 19730101 20200624 475820 99999 AKITA JA 39.717 140.1 21.8 19521231 20200624 475830 99999 ODATE NOSHIRO JA RJSR 40.192 140.371 89.0 19800302 20200624 475840 99999 MORIOKA JA 39.7 141.167 155.4 19521231 20200624 475850 99999 MIYAKO JA 39.65 141.967 47.0 19521231 20200624 475860 99999 TODOGA (LGT-H) JA 39.55 142.083 28.0 19730101 19740531 475870 99999 SAKATA JA 38.917 139.85 4.8 19521231 20200624 475874 99999 SHONAI JA RJSY 38.812 139.787 26.2 19920508 20200624 475880 99999 YAMAGATA JA 38.25 140.35 153.7 19521231 20200624 475900 99999 SENDAI JA 38.266999999999996 140.9 43.8 19541214 20200624 475910 99999 MATSUSHIMA JA RJST 38.405 141.22 2.1 19480229 20200624 475920 99999 ISHINOMAKI JA 38.433 141.3 42.9 19730101 20200624 475930 99999 KINKASAN (LGT-H) JA 38.266999999999996 141.583 47.0 19730101 19941029 475950 99999 FUKUSHIMA JA 37.766999999999996 140.467 69.3 19730101 20200624 475954 99999 FUKUSHIMA ARPT JA 37.233000000000004 140.433 375.0 19930408 19950907 475970 99999 SHIRAKAWA JA 37.133 140.217 356.7 19730101 20200624 475980 99999 ONAHAMA JA 36.95 140.9 5.1 19730101 20200624 475990 99999 SHIOY (LGT-H) JA 37.0 140.983 52.0 19730101 19741029 476000 99999 WAJIMA JA 37.383 136.9 6.7 19730101 20200624 476010 99999 HEGURASHIMA (LGT-H) JA 37.85 136.917 14.0 19730101 20020925 476020 99999 AIKAWA JA 38.033 138.233 7.2 19730101 20200624 476030 99999 HAJIKI (LGT-H) JA 38.333 138.517 57.0 19730101 19820328 476040 99999 NIIGATA JA 37.9 139.017 5.7 19730101 20200624 476050 99999 KANAZAWA JA 36.583 136.63299999999998 33.7 19730101 20200624 476060 99999 FUSHIKI JA 36.8 137.05 13.1 19730101 20200624 476070 99999 TOYAMA JA 36.717 137.2 17.3 19730101 20200624 476100 99999 NAGANO JA 36.667 138.2 419.9 19730101 20200624 476110 99999 NAGANO/KURUMAYAMA JA 36.1 138.2 1925.0 19870102 19890811 476120 99999 TAKADA JA 37.1 138.25 14.6 19730101 20200624 476150 99999 UTSUNOMIYA JA 36.55 139.86700000000002 140.3 19730101 20200624 476160 99999 FUKUI JA 36.05 136.217 17.4 19730101 20200624 476170 99999 TAKAYAMA JA 36.15 137.25 561.9 19730101 20200624 476180 99999 MATSUMOTO JA 36.25 137.967 611.6 19730101 20200624 476200 99999 SUWA JA 36.05 138.11700000000002 762.6 19730101 20200624 476220 99999 KARUIZAWA JA 36.35 138.55 1004.8 19730101 20200624 476240 99999 MAEBASHI JA 36.4 139.067 114.4 19521231 20200624 476260 99999 KUMAGAYA JA 36.15 139.38299999999998 31.8 19521231 20200624 476270 99999 TSUKSBASAN (MOUNT) JA 36.217 140.1 870.0 19521231 20091014 476280 99999 KAKIOKA JA 36.233000000000004 140.183 34.0 19800402 20021221 476290 99999 MITO JA 36.383 140.467 30.7 19521231 20200624 476310 99999 TSURUGA JA 35.65 136.067 12.4 19521231 20200624 476320 99999 GIFU JA 35.4 136.767 17.0 19521231 20200624 476340 99999 GIFU JA RJNG 35.394 136.87 39.0 19730101 20200624 476345 99999 CHUBU CENTRAIR INTL JA RJGG 34.858000000000004 136.805 4.6 20050217 20200624 476350 99999 NAGOYA JA RJNA 35.255 136.924 15.8 19461031 20200624 476360 99999 NAGOYA JA 35.167 136.967 56.3 19521231 20200624 476370 99999 IIDA JA 35.516999999999996 137.817 528.9 19521231 20200624 476380 99999 KOFU JA 35.667 138.55 281.5 19521231 20200624 476390 99999 FUJISAN JA 35.367 138.733 3777.5 19521231 20200624 476400 99999 KAWAGUCHIKO JA 35.5 138.767 861.3 19521231 20200624 476410 99999 CHICHIBU JA 35.983000000000004 139.067 233.7 19521231 20200624 476420 43313 YOKOTA AB JA RJTY 35.75 139.35 142.0 19990101 20200624 476420 99999 YOKOTA AB JA RJTY 35.748000000000005 139.34799999999998 141.1 19471101 20041231 476430 99999 IRUMA JA RJTJ 35.842 139.411 89.9 19460930 20200624 476435 99999 SOMAGAHARA (JGSDF) HELIPAD JA RJTS 36.433 138.95 395.0 20090201 20200624 476440 99999 KIYOSE JA 35.783 139.533 -999.9 20031127 20040921 476460 99999 TATENO JA 36.05 140.13299999999998 31.0 19791102 20020601 476480 99999 CHOSHI JA 35.733000000000004 140.85 28.1 19521231 20200624 476490 99999 UENO JA 34.766999999999996 136.15 161.0 19521231 20200624 476500 99999 SEKI JA 34.85 136.467 71.0 19521231 19641231 476510 99999 TSU JA 34.733000000000004 136.517 18.4 19521231 20200624 476530 99999 IRAKO JA 34.633 137.1 7.7 19521231 20200624 476540 99999 HAMAMATSU JA 34.75 137.717 47.7 19521231 20200624 476550 99999 OMAEZAKI JA 34.6 138.217 46.8 19521231 20200624 476560 99999 SHIZUOKA JA 34.983000000000004 138.4 15.9 19521231 20200624 476570 99999 MISHIMA JA 35.117 138.933 21.9 19521231 20200624 476580 99999 SHIZUHAMA JA RJNY 34.813 138.298 7.0 19730101 20200624 476600 99999 TACHIKAWA (JASDF) JA RJTC 35.7 139.4 98.0 19451115 20140701 476610 43321 KISARAZU AB JA RJTK 35.4 139.917 6.0 19730103 20200624 476610 99999 KISARAZU JA RJTK 35.398 139.91 3.0 20000101 20041228 476620 99999 TOKYO JA RJTD 35.683 139.767 36.0 19521231 20200624 476630 99999 OWASE JA 34.067 136.2 17.1 19521231 20200624 476650 99999 DAI (LGT-H) JA 34.266999999999996 136.9 27.0 19730101 20050116 476660 99999 IROZAKI JA 34.6 138.85 53.2 19521231 20200624 476680 99999 AJIRO JA 35.05 139.1 67.9 19521231 20200624 476700 99999 YOKOHAMA JA 35.433 139.65 42.7 19730101 20200624 476710 99999 TOKYO INTL JA RJTT 35.552 139.78 10.7 19460911 20200624 476713 99999 ICHIGAYA JA RJAI 35.68 139.72 31.0 19900725 20200624 476720 99999 TATEYAMA JA 34.983000000000004 139.86700000000002 7.1 19730101 20200624 476730 99999 TOKISAKI JA 34.917 139.833 13.7 19521231 19641231 476740 99999 KATSUURA JA 35.15 140.317 13.5 19521231 20200624 476741 99999 AMAKUSA JA RJDA 32.483000000000004 130.159 103.6 20040706 20200624 476742 99999 NOTO JA RJNW 37.293 136.96200000000002 218.8 20040706 20200624 476750 99999 OSHIMA JA 34.75 139.36700000000002 75.5 19521231 20200624 476760 99999 NIIJIMA ISLAND JA 34.367 139.25 10.0 19521231 20020426 476770 99999 MIYAKEJIMA JA 34.117 139.517 39.6 19521231 20200624 476780 99999 HACHIJOJIMA JA 33.117 139.783 152.6 19521231 20200624 476790 43319 ATSUGI US NAVAL AIR STATION JA RJTA 35.45 139.45 50.9 20050101 20200624 476790 99999 ATSUGI NAS JA RJTA 35.45 139.45 65.0 19450902 20041231 476794 99999 ATSUGI (NWSED) JA 35.45 139.467 61.0 19791209 19800212 476800 99999 KASTNER AAF / CAMP ZAMA JAPAN JA RJTR 35.514 139.394 111.9 19541214 20200624 476810 99999 HAMAMATSU JA RJNH 34.75 137.703 45.7 19730101 20200624 476820 99999 CHIBA JA 35.6 140.1 6.1 19730101 20200624 476830 99999 CHOFU AIRPORT JA RJTF 35.667 139.533 44.0 19541214 20200624 476840 99999 YOKKAICHI JA 34.933 136.583 57.1 19730101 20200624 476850 99999 MATSUSHIRO JA 36.55 138.217 440.0 19740902 20020518 476860 99999 NARITA INTL JA RJAA 35.765 140.386 43.0 19780519 20200624 476870 99999 TOKYO HELIPORT JA RJTI 35.633 139.85 8.0 19730101 20200624 476880 99999 TATEYAMA JA RJTE 34.986999999999995 139.829 3.0 19730101 20200624 476900 99999 NIKKO JA 36.733000000000004 139.5 1294.0 19521231 20200624 476920 99999 UTSUNOMIYA JA RJTU 36.515 139.871 101.8 19730101 20200624 476950 99999 TOKYO/KASHIWA JA 35.867 139.967 19.0 19890525 20020814 476960 43323 YOKOSUKA NAVAL STATION JA RJTX 35.283 139.667 49.1 19730101 20200316 476965 99999 YOKOSUKA REG MET HQ JA 35.3 139.667 10.0 19730105 19750515 477000 99999 SADO JA 38.05 138.417 26.0 19730101 20020824 477040 99999 KOMATSU JA RJNK 36.395 136.407 11.0 19730101 20200624 477050 99999 FUKUI/TOJIMBO JA 36.233000000000004 136.15 80.0 19990426 20020902 477060 99999 FUKUI JA RJNF 36.143 136.224 5.8 19730101 20070228 477070 99999 TOYAMA JA RJNT 36.648 137.188 29.0 19730101 20200624 477090 99999 MATSUMOTO JA RJAF 36.167 137.923 665.1 19730101 20200624 477150 99999 HYAKURI JA RJAH 36.181 140.415 32.0 19730101 20200624 477160 99999 KASUMIGAURA (JASDF) JA RJAK 36.033 140.2 29.0 19730103 20140701 477210 99999 FUJI (JASDF) JA RJAT 35.317 138.86700000000002 683.0 19730103 20140701 477270 99999 SHIMOFUSA JA RJTL 35.799 140.011 29.9 19730101 20200624 477300 99999 AKENO (JASDF) JA RJOE 34.533 136.683 9.0 19730103 20140701 477350 99999 OSHIMA JA RJTO 34.782 139.36 39.6 19730101 20200624 477370 99999 MIYAKEJIMA JA RJTQ 34.074 139.56 20.4 19730101 20020121 477380 99999 HACHIJOJIMA JA RJTH 33.115 139.786 92.4 19730101 20130331 477390 99999 SHIZUOKA AIRPORT JA RJNS 34.8 138.183 135.0 19730101 20200624 477400 99999 SAIGO JA 36.2 133.333 28.1 19521231 20200624 477410 99999 MATSUE JA 35.45 133.067 22.4 19521231 20200624 477420 99999 SAKAI JA 35.55 133.233 3.8 19521231 20200624 477430 99999 MIHO JA RJOH 35.492 133.236 6.1 19480831 20200624 477440 99999 YONAGO JA 35.433 133.333 8.5 19521231 20200624 477460 99999 TOTTORI JA 35.483000000000004 134.233 15.9 19521231 20200624 477470 99999 TOYOOKA JA 35.533 134.817 5.8 19521231 20200624 477473 99999 TAJIMA JA RJBT 35.513000000000005 134.787 178.0 19961020 20200624 477480 99999 KYOGA (LGT-H) JA 35.766999999999996 135.233 139.0 19740517 19900701 477490 99999 MAIZURU AB JA 35.483000000000004 135.38299999999998 9.0 20081207 20130429 477500 99999 MAIZURU JA 35.45 135.317 4.2 19521231 20200624 477505 99999 MAIZURU REG MET HQ JA 35.45 135.333 30.0 19730105 19750515 477510 99999 IBUKIYAMA MTN (AUT) JA 35.417 136.417 1377.0 19521231 20020220 477530 99999 MISHIMA (LGT-H) JA 34.75 131.15 72.0 19800902 19801216 477540 99999 HAGI JA 34.417 131.4 3.7 19521231 20200624 477550 99999 HAMADA JA 34.9 132.067 20.9 19521231 20200624 477560 99999 TSUYAMA JA 35.067 134.017 147.8 19521231 20200624 477590 99999 KYOTO JA 35.016999999999996 135.733 46.5 19451031 20200624 477610 99999 HIKONE JA 35.283 136.25 92.8 19521231 20200624 477620 99999 SHIMONOSEKI JA 33.95 130.933 19.5 19521231 20200624 477630 99999 WOFU JA 34.05 131.533 4.0 19521231 19641231 477640 43324 IWAKUNI JA RJOI 34.15 132.233 3.0 19730101 20041002 477641 43324 AIRFIELD & HARBOR OPERATIONS JA RJOI 34.15 132.233 2.1 20040401 20200624 477641 99999 IWAKUNI MCAS JA RJOI 34.15 132.233 2.0 20040713 20041231 477650 99999 HIROSHIMA JA 34.4 132.467 54.0 19521231 20200624 477660 99999 KURE JA 34.233000000000004 132.55 5.0 19521231 20200624 477665 99999 KURE REG MET HQ JA 34.233000000000004 132.567 4.0 19730105 19750515 477670 99999 FUKUYAMA JA 34.45 133.25 3.6 19521231 20200624 477680 99999 OKAYAMA JA 34.683 133.917 7.0 19521231 20200624 477690 99999 HIMEJI JA 34.833 134.667 39.7 19521231 20200624 477700 99999 KOBE JA 34.7 135.217 30.6 19521231 20200624 477710 99999 OSAKA INTL JA RJOO 34.786 135.438 15.2 19451101 20200624 477720 99999 OSAKA JA 34.683 135.517 83.0 19521231 20200624 477725 99999 KANSAI INTL JA 34.417 135.25 8.0 19950101 19950907 477730 99999 OSAKA/TAKAYASUYAMA JA 34.617 135.65 474.0 19991011 20010220 477740 99999 KANSAI INTL JA RJBB 34.433 135.233 7.9 19950827 20200624 477760 99999 SUMOTO JA 34.333 134.9 112.4 19521231 20200624 477770 99999 WAKAYAMA JA 34.233000000000004 135.167 18.0 19521231 20200624 477780 99999 SHIONOMISAKI JA 33.45 135.75 69.2 19521231 20200624 477790 99999 YAO JA RJOY 34.596 135.60299999999998 11.9 19730101 20200624 477800 99999 NARA JA 34.7 135.833 109.0 19530430 20200624 477820 99999 NANKI SHIRAHAMA JA RJBD 33.662 135.364 90.8 19730101 20200624 477830 99999 IWAMI JA RJOW 34.676 131.79 56.1 19940719 20200624 477840 99999 YAMAGUCHI JA 34.167 131.467 19.7 19730101 20200624 477860 99999 YAMAGUCHI UBE JA RJDC 33.93 131.279 7.0 19730101 20200624 477870 99999 OZUKI JA RJOZ 34.045 131.05200000000002 4.0 19730101 20200624 477880 99999 HOFU JA RJOF 34.035 131.549 2.1 19481025 20200624 477890 99999 HIROSHIMA JA RJOA 34.436 132.91899999999998 331.6 19730101 20200624 477895 99999 HIROSHIMANISHI JA RJBH 34.367 132.414 4.6 19940819 20110921 477900 99999 IZUMO JA RJOC 35.414 132.89 4.6 19730101 20200624 477910 99999 MATSUE/MISAKAYAMA JA 35.55 133.1 535.0 19990109 20020831 477920 99999 HIROSHIMA/HAIGAMINE JA 34.266999999999996 132.6 734.0 19780920 19990130 477930 99999 OKAYAMA JA RJOB 34.757 133.855 245.7 19730101 20200624 477940 99999 TOTTORI JA RJOR 35.53 134.167 19.8 19730101 20200624 477990 99999 TSUSHIMA JA RJDT 34.285 129.33100000000002 64.9 19800301 20200624 477991 99999 TSUSHIMA JA 34.3 129.3 3.0 19760422 19800227 478000 99999 IZUHARA JA 34.198 129.292 3.7 19521231 20200624 478010 99999 BOGUS JAPANESE JA 19870102 20020324 478030 99999 ASHIYA JA RJFA 33.883 130.653 29.9 19451231 20200624 478050 99999 HIRADO JA 33.367 129.55 58.7 19521231 20200624 478060 99999 FUKUOKA/SEFURISAN JA 33.433 130.35 960.0 19791103 20051020 478070 99999 FUKUOKA JA 33.583 130.38299999999998 15.0 19521231 20200624 478080 99999 FUKUOKA JA RJFF 33.586 130.451 9.8 19460906 20200624 478090 99999 IIZUKA JA 33.65 130.7 37.9 19521231 20200624 478100 99999 SAGA JA RJFS 33.15 130.30200000000002 1.8 19990115 20200624 478110 43285 NAVSTA JA RJFW 33.167 129.717 3.3 19870326 20070509 478110 99999 SASEBO JA RJFW 33.167 129.733 22.0 20000102 20041229 478120 99999 SASEBO JA 33.167 129.733 5.6 19521231 20200624 478123 99999 KAMIGOTO JA RJDK 33.016999999999996 129.183 20.0 19820625 20200325 478124 99999 OJIKA ISLAND JA RJDO 33.217 129.05 20.0 19890715 19990129 478125 99999 SASEBO REG MET HQ JA 33.167 129.717 17.0 19730105 19750515 478130 99999 SAGA JA 33.266999999999996 130.3 33.0 19521231 20200624 478140 99999 HITA JA 33.317 130.933 84.4 19521231 20200624 478150 99999 OITA JA 33.233000000000004 131.61700000000002 13.5 19521231 20200624 478160 99999 IKITSUKIJIMA JA 33.433 129.433 85.0 19521231 19620430 478170 99999 NAGASAKI JA 32.733000000000004 129.86700000000002 35.9 19521231 20200624 478180 99999 UNZENDAKE JA 32.733000000000004 130.267 679.8 19521231 20200624 478190 99999 KUMAMOTO JA 32.817 130.7 39.4 19521231 20200624 478210 99999 ASOSAN JA 32.883 131.067 1144.4 19521231 20171211 478220 99999 NOBEOKA JA 32.583 131.65 21.0 19610731 20200624 478230 99999 AKUNE JA 32.033 130.2 42.2 19521231 20200624 478240 99999 HITOYOSHI JA 32.217 130.75 147.7 19521231 20200624 478250 99999 HOSOSHIMA (LGT-H) JA 32.417 131.683 96.0 19730101 19810519 478260 99999 TSURIKAKE (LGT-H) JA 31.616999999999997 129.7 147.0 19730101 19840527 478270 99999 KAGOSHIMA JA 31.55 130.55 31.7 19521231 20200624 478290 99999 MIYAKONOJO JA 31.733 131.083 155.7 19521231 20200624 478300 99999 MIYAZAKI JA 31.933000000000003 131.417 15.0 19521231 20200624 478310 99999 MAKURAZAKI JA 31.267 130.3 31.4 19521231 20200624 478320 99999 SATA (LGT-H) JA 30.983 130.667 56.0 19730101 19860405 478330 99999 KANOYA JA 31.416999999999998 130.88299999999998 105.0 20010710 20020602 478340 99999 TOI (LGT-H) JA 31.366999999999997 131.35 234.0 19730101 19740531 478350 99999 ABURATSU JA 31.583000000000002 131.4 14.6 19521231 20200624 478360 99999 YAKUSHIMA JA RJFC 30.386 130.659 37.8 19521231 20200624 478370 99999 TANEGASHIMA JA 30.717 130.983 37.6 19521231 20200624 478380 99999 USHIBUKA JA 32.2 130.033 15.0 19521231 20200624 478400 99999 TSUIKI JA RJFZ 33.685 131.04 16.8 19730101 20200624 478420 99999 MESHIMA JA 31.983 128.35 110.0 19730101 20060930 478430 99999 FUKUE JA 32.7 128.833 26.9 19620430 20200624 478440 99999 FUKUE JA RJFE 32.666 128.833 83.2 19730101 20200624 478450 99999 KUSAGKISHIMA(LGT-H) JA 30.85 129.467 130.0 19730101 20020209 478460 99999 GAJASHIMA (LGT-H) JA 29.916999999999998 129.533 196.0 19730101 20020422 478490 99999 UCHINOURA JA 31.25 131.083 277.0 19920901 19980624 478500 99999 KANOYA JA RJFY 31.368000000000002 130.845 65.2 19450918 20200624 478510 99999 KAGOSHIMA JA RJFK 31.803 130.719 276.1 19730101 20200624 478520 99999 OITA JA RJFO 33.479 131.737 5.8 19730101 20200624 478530 99999 KITAKYUSHU JA RJFR 33.836 130.947 5.5 19730101 20200624 478540 99999 NYUTABARU JA RJFN 32.084 131.451 78.9 19580430 20200624 478550 99999 NAGASAKI JA RJFU 32.917 129.914 4.6 19730101 20200624 478560 99999 KUMAMOTO JA RJFT 32.836999999999996 130.855 195.7 19730101 20200624 478570 99999 MIYAZAKI JA RJFM 31.877 131.44899999999998 6.1 19730101 20200624 478580 99999 IKI JA RJDB 33.749 129.785 15.8 19730101 20060331 478590 99999 OMURA AB JA 32.933 129.933 8.8 20130301 20130430 478600 99999 METABARU (JASDF) JA RJDM 33.317 130.417 19.0 19730103 20140701 478690 99999 TANEGASHIMA/NAKATANE JA 30.633000000000003 130.983 281.0 19990325 20020923 478700 99999 TANEGASHIMA JA RJFG 30.546999999999997 130.95 97.2 19730101 20200624 478710 99999 19730101 19760305 478720 99999 AMAMI JA RJKA 28.430999999999997 129.713 8.2 19730101 20200624 478724 99999 KIKAI JA RJKI 28.320999999999998 129.928 6.4 19801129 20200624 478800 99999 TAKAMATSU JA RJOT 34.214 134.016 185.0 19730101 20200624 478810 99999 TOKUSHIMA JA RJOS 34.133 134.607 7.9 19730101 20200624 478820 99999 MATSUYAMA JA RJOM 33.827 132.7 7.6 19730101 20200624 478830 99999 KOCHI JA RJOK 33.546 133.66899999999998 12.8 19730101 20200624 478840 99999 KOMATSUJIMA (JASDF) JA RJOP 34.0 134.63299999999998 6.0 19730101 20140701 478850 99999 SHIMIZU JA 32.783 132.967 4.0 19881027 19900624 478860 99999 SADA (LGT-H) JA 33.333 132.017 32.0 19740517 19851231 478870 99999 MATSUYAMA JA 33.85 132.783 34.3 19521231 20200624 478880 99999 BOGUS JAPANESE JA 19890502 20020205 478900 99999 TADOTSU JA 34.283 133.75 4.8 19521231 20200624 478910 99999 TAKAMATSU JA 34.317 134.05 14.0 19521231 20200624 478920 99999 UWAJIMA JA 33.233000000000004 132.55 14.8 19521231 20200624 478930 99999 KOCHI JA 33.567 133.55 4.9 19521231 20200624 478940 99999 TSURUGISAN JA 33.85 134.1 1946.0 19521231 20040408 478950 99999 TOKUSHIMA JA 34.067 134.567 6.4 19521231 20200624 478960 99999 TOSAOKINOSHIMA (LH) JA 32.7 132.55 162.0 19740517 19851231 478970 99999 SUKUMO JA 32.917 132.7 10.9 19521231 20200624 478980 99999 SHIMIZU JA 32.717 133.017 33.8 19521231 20200624 478990 99999 MUROTOMISAKI JA 33.25 134.183 186.9 19521231 20200624 479070 99999 TOKUNOSHIMA AIRPORT JA 27.833000000000002 128.88299999999998 5.0 20010831 20030212 479090 99999 NAZE/FUNCHATOGE JA 28.394000000000002 129.553 294.1 19521231 20200624 479100 99999 TOKUNOSHIMA JA RJKN 27.836 128.881 5.2 19760601 20200624 479110 99999 YONAGUNI JA ROYN 24.467 122.978 21.3 19870214 20200624 479120 99999 YONAGUNIJIMA JA 24.467 123.01700000000001 36.5 19730101 20200624 479170 99999 IRIOMOTEJIMA JA 24.433000000000003 123.76700000000001 11.2 19751201 20200624 479180 99999 ISHIGAKI JA ROIG 24.345 124.18700000000001 28.3 19730101 20200624 479185 99999 YONAGUNI-JIMA JA 24.467 122.98299999999999 21.0 19780330 19900709 479186 99999 HATERUMA JA RORH 24.066999999999997 123.8 13.0 19790911 19990129 479190 99999 NEW ISHIGAKI AIRPORT JA 24.4 124.25 31.1 19991120 20020821 479210 99999 BOGUS JAPANESE JA 19870216 20011207 479260 99999 MIYAKO AIRPORT JA 24.783 125.3 42.7 19890220 20030928 479270 99999 MIYAKO JA ROMY 24.783 125.295 45.7 19730101 20200624 479275 99999 TARAMA JA RORT 24.654 124.675 11.0 19790911 19990814 479276 99999 SHIMOJISHIMA JA RORS 24.826999999999998 125.145 16.5 19790911 20200624 479280 99999 KUMEJIMA AIRPORT JA 26.366999999999997 126.71700000000001 10.0 19881204 20020423 479290 99999 KUMEJIMA JA ROKJ 26.364 126.714 7.0 19740517 20200624 479300 99999 NAHA JA ROAH 26.195999999999998 127.646 3.7 19451111 20200624 479310 42204 KADENA AB JA RODN 26.35 127.76700000000001 48.0 19990101 20200624 479310 99999 KADENA AB JA RODN 26.355999999999998 127.76799999999999 43.6 19460101 20041231 479330 42215 OKINAWA MARINE CORPS AIR STATION JA ROTM 26.267 127.75 75.3 19730101 20200624 479350 99999 HAMBY AAF/BUCKNER JA ROHF 26.3 127.76700000000001 6.0 19630825 20050313 479360 99999 NAHA JA 26.2 127.68299999999999 50.1 19730101 20200624 479365 99999 KERAMA JA ROKR 26.166999999999998 127.3 48.0 19990114 19990129 479370 99999 NAHA/ITOKAZU JA 26.15 127.76700000000001 180.0 19791102 20020525 479380 99999 IE SHIMA AUX AB JA RODE 26.729 127.762 56.1 19450515 19991126 479385 99999 IE JIMA JA RORE 26.721999999999998 127.785 75.0 19750808 19760214 479386 99999 AGUNI ISLAND JA RORA 26.6 127.23299999999999 29.0 19840605 19990129 479400 99999 NAGO JA 26.6 127.96700000000001 7.1 19751201 20200624 479405 99999 19741219 19750206 479420 99999 OKIERABU JA RJKB 27.426 128.701 30.8 19730101 20200624 479425 99999 YORON JA RORY 27.044 128.40200000000002 15.8 19790911 20200624 479430 99999 OKINO-DAITO-SHIMA JA 24.467 131.233 0.0 19800306 19840612 479440 99999 MINAMIDAITO JA 25.85 131.233 4.0 20040831 20040908 479450 99999 MINAMI DAITO JA ROMD 25.846999999999998 131.263 50.9 19730101 20200624 479455 99999 KITADAITO JA RORK 25.945 131.327 24.4 19800402 20200624 479710 42402 CHICHIJIMA JA RJAO 27.092 142.191 8.0 19730101 20200624 479710 99999 CHICHIJIMA ISLAND JA RJAO 27.083000000000002 142.183 8.0 20000101 20041231 479810 99999 IWOTO JA RJAW 24.784000000000002 141.32299999999998 115.2 19450301 20200624 479910 99999 MINAMI TORISHIMA JA RJAM 24.29 153.97899999999998 6.7 19730101 20200624 479995 99999 ICHIKAWA & JA 35.683 139.733 31.0 19761222 19900709 480010 99999 PUTAO BM VBPT 27.333000000000002 97.417 409.0 19430301 20200624 480040 99999 HKAMTI BM 26.0 95.7 146.0 19820306 20200624 480080 99999 MYITKYINA BM VBMK 25.366999999999997 97.4 147.0 19440713 20200624 480100 99999 HOMALIN BM VBHL 24.866999999999997 94.917 131.0 19730101 20200624 480170 99999 PINLEBU BM 24.083000000000002 95.367 259.0 20020408 20030612 480180 99999 KATHA BM 24.166999999999998 96.333 95.0 19550701 20200624 480190 99999 BHAMO BM VBBM 24.267 97.2 113.0 19450208 20200624 480200 99999 MAWLAIK BM 23.633000000000003 94.417 116.0 19830508 20200624 480240 99999 KALEMYO BM 23.2 94.06700000000001 152.0 19450205 20070710 480250 99999 KALEWA BM 23.2 94.3 109.0 19730101 20200624 480300 99999 HAKHA BM 22.65 93.633 1866.0 20120403 20200624 480310 99999 FALAM BM 22.916999999999998 93.68299999999999 1372.0 19730101 20200624 480330 99999 SHWEBO BM 22.583000000000002 95.71700000000001 110.0 19450131 20200624 480340 99999 BOGUS BURMESE BM 19830701 19881208 480350 99999 LASHIO BM VBLS 22.933000000000003 97.75 749.0 19450318 20200624 480360 99999 GANGAW BM 22.166999999999998 94.133 214.0 20011003 20020907 480370 99999 MONYWA BM 22.1 95.133 82.0 19450221 20200624 480400 99999 HSIPAW BM 22.6 97.3 436.0 19730816 20150429 480420 99999 MANDALAY BM VBRM 21.983 96.1 76.0 19470405 20200624 480450 99999 MINDAT BM 21.383000000000003 93.95 1395.0 19730101 20200624 480460 99999 PAKOKKU (DEAD) BM 21.333000000000002 95.083 57.0 19730101 19790818 480470 99999 MYINGYAN BM 21.467 95.383 60.0 19450331 20150609 480480 99999 NYAUNG-U BM 21.2 94.917 55.0 20010705 20200624 480510 99999 KYAUKTAW BM 20.85 92.633 3.0 20120410 20200624 480520 99999 CHAUK (DEAD) BM 20.9 94.833 82.0 19870518 19870518 480530 99999 MEIKTILA BM VBML 20.833000000000002 95.833 220.0 19450315 20200624 480570 99999 TAUNGGYI BM 20.783 97.05 1436.0 19500821 20200624 480580 99999 LOILEM BM 20.916999999999998 97.55 1355.0 19730809 20031230 480600 99999 KENGTUNG BM VBKG 21.3 99.617 828.0 19581122 20200624 480620 99999 SITTWE BM VYSW 20.133 92.87299999999999 8.2 19450302 20200624 480640 99999 MINBU BM 20.167 94.883 51.0 19581122 20200624 480670 99999 YAMETHIN BM 20.417 96.15 199.0 19520812 20150609 480680 99999 PINLAUNG BM 20.133 96.76700000000001 1463.0 20010906 20040420 480700 99999 MONGHSAT BM 20.55 99.26700000000001 572.0 19740730 20080308 480710 99999 KYAUKPYU BM VBKP 19.417 93.55 5.0 19490101 20200624 480720 99999 MANAUNG BM 18.85 93.73299999999999 9.1 20120410 20200624 480740 99999 PYINMANA BM 19.717 96.21700000000001 104.0 19540515 20200624 480750 99999 LOIKAW BM 19.683 97.21700000000001 895.0 19581122 20200624 480770 99999 PROME BM VBPR 18.8 95.21700000000001 60.0 19500622 20200624 480780 99999 TOUNGOO BM 18.917 96.46700000000001 49.0 19500408 20200624 480800 99999 SANDOWAY BM VBSY 18.467 94.35 11.0 19490101 20200624 480850 99999 GWA BM 17.583 94.583 3.0 20120403 20200624 480870 99999 HINTHADA BM 17.667 95.417 26.0 19740805 20200624 480880 99999 THARRAWADDY BM 17.633 95.8 15.0 19510303 20040508 480890 99999 SHWEGYIN BM 17.917 96.867 14.0 20011028 20030327 480920 99999 BOGUS BURMESE BM 19830701 20020529 480930 99999 BAGO BM 17.333 96.5 15.0 19540520 20200624 480940 99999 PATHEIN BM VBBS 16.767 94.76700000000001 10.0 19490101 20200624 480950 99999 MAUBIN BM 16.733 95.65 5.0 19540501 20200624 480960 99999 MINGALADON BM 16.9 96.18299999999999 29.0 19450901 20200624 480970 99999 YANGON INTL BM VYYY 16.907 96.133 33.2 19490417 20200624 480980 99999 THATON BM 16.917 97.367 17.0 20010706 20050530 480990 99999 HPAAN BM VBPA 16.75 97.667 10.0 19730101 20200624 481000 99999 BILIN (DEAD) BM 17.217 97.23299999999999 61.0 19800303 19840213 481010 99999 PHYAPON BM 16.267 95.667 2.1 19510921 20200624 481030 99999 MAWLAMYINE BM VBMM 16.5 97.617 22.0 19490929 20200624 481050 99999 19740429 19740429 481070 99999 YE BM 15.25 97.867 7.0 19730101 20200624 481080 99999 DAWEI BM VBTV 14.1 98.21700000000001 17.0 19490101 20200624 481090 99999 COCO ISLAND BM VBCI 14.117 93.367 3.0 19550114 20200624 481100 99999 MERGUI BM VBRN 12.433 98.6 37.0 19490101 20200624 481120 99999 VICTORIA POINT BM 9.967 98.583 47.0 19460101 20200624 483000 99999 MAE HONG SON TH VTCH 19.301 97.976 283.2 19540512 20200624 483006 99999 NAN/CHIANG KLANG TH VTCD 19.3 100.867 243.0 19730101 19740101 483007 99999 CHIANG KHAM (ARMY) TH VTCB 19.5 100.28299999999999 389.0 19731115 19740108 483009 99999 CHIANG KLANG TH VTND 19.3 100.867 243.0 19750821 19751121 483020 99999 DOI ANG KHANG TH 19.917 99.03299999999999 1530.0 20060429 20200624 483030 99999 CHIANG RAI TH VTCR 19.885 99.82700000000001 399.9 19560103 20200624 483031 99999 CHIANG RAI INTL TH VTCT 19.952 99.883 390.1 20050405 20200624 483032 99999 PHITSANULOK TH 16.8 100.76700000000001 44.0 20080101 20081231 483033 99999 NAKHON PHANOM TH VTUW 17.384 104.64299999999999 178.9 20050405 20200624 483034 99999 ROI ET TH VTUV 16.117 103.774 137.5 20050405 20200624 483035 99999 CHIANG RAI TH VTNR 19.883 99.833 416.0 19750501 19760518 483040 99999 CHAING RAI ARGOMET TH 19.867 99.76700000000001 401.0 20090801 20200624 483070 99999 TUNG CHANG TH 19.417 100.883 335.0 20050108 20200624 483100 99999 PHAYAO TH 19.192999999999998 99.9 398.9 19850413 20200624 483150 99999 THA WANG PHA TH 19.117 100.8 237.0 19740315 20200624 483240 99999 THOEN TH 17.633 99.25 192.0 20050108 20200624 483250 99999 MAE SARIANG TH VTCS 18.167 97.93299999999999 213.0 19540501 20200624 483260 99999 MAE JO AGROMET TH 18.917 99.0 318.0 20070705 20190503 483270 99999 CHIANG MAI INTL TH VTCC 18.767 98.963 315.8 19421231 20200624 483275 99999 CHIANG MAI INTL TH VTNC 18.767 98.96700000000001 316.0 19750501 19760518 483280 99999 LAMPANG TH VTCL 18.271 99.50399999999999 247.2 19500222 20200624 483290 99999 LAMPHUN TH 18.567 99.03299999999999 298.0 19850410 20200624 483300 99999 PHRAE TH VTCP 18.132 100.165 164.0 19520214 20200624 483310 99999 NAN TH VTCN 18.808 100.78299999999999 208.8 19490113 20200624 483315 99999 NAN TH VTNN 18.767 100.76700000000001 200.0 19750501 19760517 483330 99999 NAN AGROMET TH 18.867 100.75 264.0 20070705 20200624 483340 99999 LAMPANG AGROMET TH 18.317 99.28299999999999 319.0 20070705 20200624 483500 99999 LOEI AGROMET TH 17.4 101.73299999999999 264.0 20070707 20200624 483510 99999 UTTARADIT TH VTPU 17.617 100.1 64.0 19490103 20200624 483520 99999 NONG KHAI TH VTUM 17.867 102.75 175.7 19730101 20200624 483530 99999 LOEI TH VTUL 17.439 101.72200000000001 262.1 19540523 20200624 483540 99999 UDON THANI TH VTUD 17.386 102.788 176.5 19421231 20200624 483545 99999 UDORN AB (USAF) TH 17.367 102.8 178.0 19730402 19760518 483550 99999 SAKON NAKHON AGROMET TH 17.117 104.05 192.0 20070705 20200624 483560 99999 SAKON NAKHON TH VTUS 17.15 104.133 172.0 19490106 20200624 483565 99999 SAKON NAKHON TH VTUI 17.195 104.119 161.2 19750717 20200624 483570 99999 NAKHON PHANOM TH VTUP 17.417 104.78299999999999 148.0 19520707 20200624 483575 99999 19730101 19750504 483576 99999 NAKHON PHANOM WEST TH VTUW 17.383 104.65 176.0 19750501 19760518 483580 99999 NAKHON PHANOM AGROMET TH 17.433 104.78299999999999 153.0 20070705 20200624 483600 99999 NONGBUALAMPHU TH 17.217 102.417 228.0 20081231 20200624 483720 99999 SUKHOTHAI TH 17.1 99.8 50.0 20040608 20200624 483730 99999 SI SAMRONG AGROMET TH 17.167 99.867 54.0 20070705 20200624 483740 99999 LOMSAK TH 16.767 101.25 145.0 19850414 20200624 483750 99999 MAE SOT TH VTPM 16.7 98.545 210.3 19490103 20200624 483760 99999 TAK TH VTPT 16.896 99.25299999999999 145.7 19540526 20200624 483770 99999 BHUMIBOL DAM TH 17.233 99.05 144.0 19730101 20200624 483780 99999 PHITSANULOK TH VTPP 16.783 100.279 44.2 19490103 20200624 483785 99999 PHITSANULOK/SARIT TH VTPP 16.817 100.26700000000001 44.0 19750501 19760517 483790 99999 PHETCHABUN TH VTPB 16.676 101.195 137.2 19500501 20200624 483795 99999 SAK LONG TH VTPL 16.824 101.251 152.4 19750702 19750702 483800 99999 KAMPHAENG PHET TH 16.483 99.53299999999999 82.0 19760402 20200624 483810 99999 KHON KAEN TH VTUK 16.467 102.78399999999999 204.2 19490106 20200624 483815 99999 NAM PHUNG DAM SOUTH TH VTUF 16.95 103.98299999999999 274.0 19730219 19730418 483816 99999 MOUNG KHOM TH 14.8 100.617 76.0 19730103 19730921 483817 99999 KHON KAEN/NAM PHUNG TH VTUZ 16.65 102.96700000000001 240.0 19730117 19750131 483818 99999 NAM PHUNG DAM NORTH TH VTUE 16.967 103.98299999999999 320.0 19740809 19740818 483820 99999 KOSUMPHISAI TH 16.25 103.06700000000001 154.0 19861127 20200624 483830 99999 MUKDAHAN TH VTUB 16.533 104.71700000000001 140.0 19490113 20200624 483840 99999 THA PHRA AGROMET TH 16.333 102.81700000000001 166.0 20070705 20200624 483850 99999 UMPHANG TH 16.017 98.867 460.0 19850503 20200624 483860 99999 PICHIT AGROMET TH 16.333 100.367 39.4 20070705 20200624 483870 99999 DOI MU SOE AGROMET TH 16.75 98.93299999999999 368.0 19890613 20200624 483880 99999 19740429 19870519 483900 99999 KAMALASAI TH 16.333 103.583 140.9 20010705 20200624 484000 99999 NAKHON SAWAN TH VTPN 15.673 100.137 34.4 19490106 20200624 484005 99999 TA KHLI THAILAND AB TH VTPI 15.232999999999999 100.28299999999999 37.0 19651130 19750430 484006 99999 TAKHLI TH VTPI 15.277000000000001 100.296 32.6 19580930 19760518 484010 99999 TAKFA AGROMET TH 15.35 100.5 87.0 20070705 20200624 484020 99999 CHAINAT AGROMET TH 15.15 100.18299999999999 17.0 19871202 20200624 484030 99999 CHAIYAPHUM TH VTUC 15.8 102.03299999999999 184.0 19560801 20200624 484040 99999 ROI ET AGROMET TH 16.067 103.617 156.0 20070705 20200624 484050 99999 ROB MUANG TH VTUR 16.07 103.646 139.9 19490106 20200624 484070 99999 UBON RATCHATHANI TH VTUU 15.251 104.87 123.7 19490106 20200624 484075 99999 BURI RAM TH VTUO 15.23 103.25299999999999 179.8 19730402 20200624 484076 99999 SUKHOTHAI TH VTPO 17.238 99.818 54.6 19750501 20200624 484080 99999 UBON RATCHATHANI AGROMET TH 15.232999999999999 105.03299999999999 129.9 19730202 20200624 484085 99999 SARABURI TH VTBE 14.517000000000001 100.917 91.0 19730830 19731222 484090 99999 SI SAKET AGROMET TH 15.085 104.331 129.2 20070705 20200624 484130 99999 WICHIAN BURI TH 15.657 101.105 69.7 19740315 20200624 484150 99999 AYUTTHAYA TH 14.517000000000001 100.71700000000001 10.0 20070705 20200624 484160 99999 THA TUM TH 15.317 103.68299999999999 130.0 19740315 20200624 484180 99999 BUA CHUM TH 15.267000000000001 101.2 51.0 19740315 20200624 484190 99999 PATHUMTHANI TH 14.1 100.617 7.0 20070705 20200624 484200 99999 SAMUTPRAKAN AGROMET TH 13.517000000000001 100.75 3.0 20081001 20200624 484210 99999 THONG PHAPHUM TH 14.75 98.633 99.0 19740315 20200624 484250 99999 SUPHAN BURI TH 14.467 100.133 9.0 19490109 20200624 484260 99999 LOP BURI TH 14.8 100.617 11.0 19490103 20200624 484262 99999 LOP BURI/KOKE KATHI TH VTBL 14.883 100.667 30.0 19730101 19751029 484265 99999 MOUNG KHOM/CHANDY R TH 15.05 100.917 61.0 19730921 19750514 484266 99999 LOP BURI/KOKE KATHI TH 14.883 100.667 30.0 19750501 19760518 484267 99999 MOUNG KHOM/CHANDY R TH 15.05 100.917 61.0 19750501 19760518 484270 99999 U THONG AGROMET TH 14.3 99.867 7.0 20070705 20200624 484290 99999 SUVARNABHUMI INTER AIRPORT TH 13.683 100.76700000000001 6.0 20070801 20200624 484300 99999 KHAO E TO TH VTBI 14.078 101.38 24.4 19490103 20200624 484305 99999 KHAO KHEO TH 14.417 101.53299999999999 610.0 19730101 19750430 484306 99999 KHAO KHEO/GREEN HIL TH 14.417 101.53299999999999 610.0 19750501 19760518 484310 99999 KHORAT TH VTUN 14.935 102.079 222.2 19490102 20200624 484315 99999 NAKHON RATCHASIMA TH VTUQ 14.949000000000002 102.31299999999999 233.2 19730101 20200624 484316 99999 KORAT AB (USAF) TH 14.933 102.083 225.0 19730402 19760517 484320 99999 SURIN TH 14.883 103.5 147.0 19490103 20200624 484330 99999 SURIN AGROMET TH 14.883 103.45 145.0 20070705 20200624 484340 99999 CHOK CHAI TH 14.717 102.167 193.0 19850413 20200624 484350 99999 PAKCHONG AGROMET TH 14.633 101.31700000000001 388.0 20070705 20200624 484360 99999 NANGRONG TH 14.630999999999998 102.721 181.7 19850414 20200624 484370 99999 BURERAM TH 15.232999999999999 103.25 184.0 20040405 20200624 484390 99999 KABINBURI TH 13.982999999999999 101.7 12.0 19850409 20200624 484400 99999 SRAKAEW TH 13.783 102.03299999999999 43.0 20050207 20200624 484500 99999 KANCHANA BURI TH VTBG 14.017000000000001 99.53299999999999 29.0 19490109 20200624 484505 99999 19730101 19750928 484506 99999 KAMPHAENG SAEN TH VTMK 14.1 99.917 9.0 19750515 19760518 484510 99999 NAKHONPATHOM TH 14.017000000000001 99.96700000000001 10.0 20070705 20200624 484530 99999 BANG NA AGROMET TH 13.667 100.617 6.0 20070705 20200624 484540 99999 BANGKOK PORT TH 13.7 100.56700000000001 6.0 19950401 20200624 484550 99999 BANGKOK METROPOLIS TH 13.732999999999999 100.56700000000001 4.0 19490102 20200624 484560 99999 BANGKOK INTL TH VTBD 13.913 100.60700000000001 2.7 19421231 20200624 484565 99999 BANGKOK/DON MUANG TH VTMD 13.917 100.617 4.0 19750501 19760517 484570 99999 BANGKOK PILOT TH 13.383 100.6 15.0 19560104 20200624 484580 99999 CHACHOENGSAO AGROMET TH 13.567 101.454 70.2 20070705 20200624 484590 99999 CHON BURI/SATTAHIP TH VTBS 13.367 100.98299999999999 2.0 19490113 20200624 484600 99999 KO SICHANG TH 13.167 100.8 27.0 19620106 20200624 484610 99999 PHATTHAYA TH 12.917 100.867 61.0 19811101 20200624 484620 99999 ARANYAPRATHET TH 13.7 102.50399999999999 49.0 19490106 20200624 484630 99999 LAEM CHABANG TH 13.083 100.883 82.0 19950401 20200624 484640 99999 RATCHA BURI TH 13.482999999999999 99.78299999999999 5.0 20070705 20200624 484650 99999 PHETCHABURI TH VTBJ 12.999 100.06700000000001 3.8 19780101 20200624 484740 99999 NONG PHLUB AGROMET TH 12.583 99.73299999999999 108.0 20070705 20200624 484750 99999 HUA HIN TH VTPH 12.636 99.95200000000001 18.9 19490102 20200624 484770 99999 SATTAHIP TH VTBU 12.683 100.98299999999999 18.0 19490508 20200624 484775 99999 U-TAPHAO INTL(NAVY) TH 12.683 101.0 18.0 19660701 19910707 484776 99999 U-TAPAO AB (USAF) TH 12.683 101.01700000000001 18.0 19750122 19760522 484777 99999 BAN NONG PRU NE TH 13.133 101.03299999999999 18.0 19750501 19750520 484778 99999 SATTAHIP TH 12.65 100.95 7.0 19750501 19760518 484780 99999 RAYONG TH 12.633 101.35 5.0 19811101 20200624 484790 99999 HUAI PONG AGROMET TH 12.732999999999999 101.133 45.0 20070705 20200624 484800 99999 CHANTHABURI TH VTBC 12.6 102.117 4.0 19490116 20200624 484810 99999 PHLIU AGROMET TH 12.5 102.167 24.0 20070705 20200624 485000 99999 PRACHUAP TH VTBP 11.788 99.805 3.0 19490102 20200624 485005 99999 PRAN BURI TH VTBN 12.417 99.867 15.0 19730101 19730809 485006 99999 PRACHUAP KHIRI KHAN TH 11.8 99.8 3.0 19750501 19760518 485010 99999 KHLONG YAI TH 11.767000000000001 102.883 4.0 19490911 20200624 485170 99999 CHUMPHON TH VTSE 10.710999999999999 99.36200000000001 5.5 19490102 20200624 485200 99999 SAWI AGROMET TH 10.333 99.1 13.0 19780201 20200624 485320 99999 RANONG TH VTSR 9.777999999999999 98.585 17.4 19540517 20200624 485500 99999 KO SAMUI TH 9.467 100.05 5.0 19730101 20200624 485510 99999 SURAT THANI TH VTSB 9.133 99.13600000000001 6.1 19490109 20200624 485515 99999 SURAT THANI TH 9.133 99.367 5.0 19750501 19760517 485520 99999 CHA IAN TH VTSN 8.471 99.956 13.4 19490113 20200624 485530 99999 KHANOM TH 9.25 99.867 5.0 19950401 20030326 485540 99999 NAKHONSI THAMMARAT AGROMET TH 8.359 100.059 3.0 20070705 20200624 485550 99999 SURAT THANI AGROMET TH 9.1 99.633 37.0 20070705 20200624 485560 99999 PHRASANG TH 8.567 99.25 14.0 20041125 20200624 485570 99999 CHAWANG TH 8.433 99.51700000000001 30.0 20040811 20200624 485575 99999 NAKHON SI THAMMARAT TH VTSF 8.54 99.945 4.0 20050322 20200624 485576 99999 KRABI TH VTSG 8.099 98.986 25.0 20050329 20200624 485577 99999 SAMUI TH VTSM 9.548 100.06200000000001 19.5 20050322 20200624 485578 99999 TRAT TH VTBO 12.275 102.32 32.0 20050323 20200624 485600 99999 PHATTHALUNG AGROMET TH 7.582999999999999 100.167 4.0 20070705 20200624 485610 99999 TAKUA PA TH 8.683 98.25 4.0 19761101 20200624 485630 99999 KRABI TH 8.1 98.98299999999999 45.0 19950401 20200624 485640 99999 PHUKET TH 7.882999999999999 98.4 4.0 19490113 20200624 485650 99999 PHUKET INTL TH VTSP 8.113 98.31700000000001 25.0 19560126 20200624 485660 99999 KO LANTA TH 7.5329999999999995 99.05 3.0 19490122 20200624 485670 99999 TRANG TH VTST 7.5089999999999995 99.617 20.4 19620124 20200624 485680 99999 SONGKHLA TH VTSH 7.187 100.60799999999999 3.7 19421231 20200624 485685 99999 SONGKHLA TH 7.183 100.617 4.0 19750501 19760518 485690 99999 HAT YAI INTL TH VTSS 6.933 100.39299999999999 27.4 19730101 20200624 485700 99999 KHOUN KHAN TH VTSA 6.6610000000000005 100.08 5.5 19780101 20200624 485710 99999 KHO HONG AGROMET TH 7.0 100.5 10.0 20070705 20200624 485740 99999 SA-DAO TH 6.8 100.383 25.0 20040930 20200624 485800 99999 PATTANI TH VTSK 6.785 101.154 2.4 19730101 20200624 485806 99999 HAT YAI INTL (AFB)& TH 6.933 100.417 27.0 19730101 19730311 485810 99999 YALA AGROMET TH 6.517 101.28299999999999 36.0 20070705 20200624 485830 99999 NARATHIWAT TH VTSC 6.52 101.743 4.9 19490201 20200624 486000 99999 LANGKAWI INTL MY WMKL 6.33 99.729 8.8 19901210 20200624 486001 99999 MANDALAY INTL BM VYMD 21.701999999999998 95.978 91.4 20040707 20200624 486010 99999 PENANG INTL MY WMKP 5.297000000000001 100.277 3.4 19490101 20200624 486020 99999 BUTTERWORTH MY WMKB 5.466 100.391 3.4 19490101 20200624 486021 99999 MERSING MY WMAU 2.45 103.833 45.0 20040706 20200624 486022 99999 SULTAN ABDUL HALIM MY WMKA 6.194 100.40299999999999 4.6 20040706 20200624 486023 99999 SULTAN AZLAN SHAH MY WMKI 4.5680000000000005 101.09200000000001 39.6 20040706 20200624 486024 99999 SULTAN MAHMUD MY 5.382999999999999 103.1 7.0 20040706 20050612 486030 99999 ALOR STAR MY 6.2 100.4 5.0 19490101 20200624 486040 99999 CHUPING MY 6.483 100.26700000000001 22.0 20040513 20040513 486150 99999 SULTAN ISMAIL PETRA MY WMKC 6.167000000000001 102.29299999999999 4.9 19490105 20200624 486160 99999 KUALA KRAI MY 5.5329999999999995 102.2 65.0 19860821 19861229 486180 99999 SULTAN MAHMUD MY WMKN 5.382999999999999 103.103 6.4 20011012 20200624 486190 99999 KUALA TRENGGANU/CLIM MY 5.332999999999999 103.133 36.0 19490104 19651231 486200 99999 SITIAWAN MY WMBA 4.217 100.7 8.0 19490101 20200624 486250 99999 IPOH MY 4.567 101.1 40.0 19490101 20200624 486310 99999 CAMERON HIGHLANDS MY 4.467 101.383 1470.0 19640401 19641231 486320 99999 CAMERON HIGHLANDS MY 4.467 101.367 1545.0 20010730 20200624 486340 99999 KUALA LIPIS MY 4.183 102.05 169.0 19490101 19531030 486470 99999 SULTAN ABDUL AZIZ SHAH INTL MY WMSA 3.1310000000000002 101.54899999999999 27.4 19490101 20200624 486475 99999 SULTAN ABDUL AZIZ S MY 3.133 101.55 28.0 19990321 20041231 486480 99999 PETALING JAYA MY 3.1 101.65 47.0 19881101 20020715 486490 99999 MUADZAM SHAH MY 3.05 103.083 34.0 20070226 20070226 486500 99999 KUALA LUMPUR INTL MY WMKK 2.7460000000000004 101.71 21.0 20000918 20200624 486530 99999 TEMERLOH MY 3.467 102.383 40.0 19490101 20070227 486570 99999 KUANTAN MY WMKD 3.775 103.209 17.7 19490103 20200624 486580 99999 BOGUS MALAYSIAN MY 19890204 20021127 486600 99999 PORT SWEETENHAM MY 3.0 101.417 3.0 19490101 19531031 486650 99999 MALACCA MY WMKM 2.263 102.25200000000001 10.7 19490101 20200624 486720 99999 KLUANG MY 2.017 103.31700000000001 86.0 19750407 19750413 486726 99999 KERTEH MY WMKE 4.537 103.427 5.5 20120904 20200624 486740 99999 MERSING MY 2.45 103.833 45.0 19490102 20200624 486790 99999 SULTAN ISMAIL MY WMKJ 1.641 103.67 41.1 19990101 20200624 486870 99999 SINGAPORE/TENGAH SN 1.383 103.71700000000001 12.0 19490104 19651231 486920 99999 SINGAPORE/SELETAR SN 1.4169999999999998 103.883 14.0 19620501 20040605 486940 99999 PAYA LEBAR SN WSAP 1.36 103.91 19.8 19490101 20200624 486980 99999 SINGAPORE CHANGI INTL SN WSSS 1.35 103.994 6.7 19560103 20200624 486990 99999 SELETAR SN WSSL 1.4169999999999998 103.868 11.0 20040831 20200624 487470 99999 SAVANNAKHET LA 16.55 104.75 155.0 20020713 20030101 488020 99999 SA PA VM 22.35 103.81700000000001 1581.0 19590502 20200624 488030 99999 LAO CAI VM 22.5 103.96700000000001 97.0 19490502 20200624 488060 99999 SON LA VM 21.333000000000002 103.9 676.0 19970301 20200624 488080 99999 CAO BANG VM 22.666999999999998 106.25 243.0 19490502 20200624 488100 99999 BAC CAN VM 22.15 105.833 176.0 19590501 20200624 488190 99999 HANOI (CITY) VM VVVV 21.033 105.833 10.0 19490401 19840815 488193 99999 HANOI/GIALAM VM VVGL 21.033 105.85 12.0 19840909 19890705 488200 99999 NOIBAI INTL VM VVNB 21.221 105.807 11.9 19581201 20200624 488230 99999 NAM DINH VM 20.433 106.15 3.0 19740924 20200624 488250 99999 HA DONG VM 20.967 105.76700000000001 7.9 19800808 20200624 488251 99999 CAT BI INTL ARPT/HAI PHONG VM VVCI 20.819000000000003 106.725 1.8 20170531 20200624 488260 99999 PHU LIEN VM 20.8 106.633 116.0 19740924 20200624 488300 99999 LANG SON VM 21.833000000000002 106.76700000000001 263.0 19740924 20200624 488310 99999 THAI NGUYEN VM 21.6 105.833 32.0 19740924 20200624 488380 99999 MONG CAI VM 21.517 107.96700000000001 7.0 19740924 20200624 488390 99999 BACH LONG VI VM 20.133 107.71700000000001 56.0 19740925 20200624 488400 99999 THANH HOA VM 19.75 105.78299999999999 5.0 19740924 20200624 488430 99999 MUONG SEN VM 19.4 104.15 220.0 19800710 19820302 488450 99999 VINH VM VVVH 18.737000000000002 105.671 5.2 19740924 20200624 488460 99999 HA TINH VM 18.35 105.9 3.0 19740924 20200606 488480 99999 DONG HOI VM 17.483 106.6 8.0 19740924 20200624 488490 99999 DONG HA VM 16.817 107.1 25.0 19660101 19850722 488500 99999 KHE SANH VM 16.633 106.71700000000001 420.0 19800702 19820420 488505 99999 KHE SANH VM 16.633 106.71700000000001 420.0 19670731 19710328 488510 99999 QUANG TRI VM 16.733 107.18299999999999 6.0 19580813 19900617 488515 99999 CAMP EVANS VM 16.55 107.383 30.0 19680201 19711218 488520 99999 PHUBAI VM VVPB 16.402 107.70299999999999 14.6 19570101 20200624 488525 99999 L.Z. SALLY VM 16.517 107.46700000000001 -999.0 19680402 19700310 488526 99999 CAMP EAGLE VM 16.4 107.633 38.0 19680331 19720110 488550 99999 DANANG INTL VM VVDN 16.044 108.199 10.1 19561231 20200624 488556 99999 AN HOA VM 15.783 108.083 23.0 19670731 19700909 488561 41024 MARBLE MOUNTAIN VM 16.033 108.25 9.1 19680101 19900124 488580 99999 PLEIKU AB/CU-HANH VM VVPK 14.0 108.01700000000001 742.0 19730101 19801218 488600 99999 HOANG SA (PATTLE) VM 16.55 111.617 6.0 19561231 19740811 488630 99999 QUANG NGAI VM 15.133 108.78299999999999 9.0 19571231 20200624 488635 99999 DUC PHO VM 14.817 108.96700000000001 11.0 19671130 19710617 488640 99999 CHU LAI VM 15.417 108.7 8.0 19650531 19711127 488660 99999 PLEIKU VM VVPK 14.005 108.01700000000001 741.9 19580908 20200624 488665 99999 CAMP ENARI VM 13.85 108.05 835.0 19660930 19700228 488671 99999 AN KHE VM 13.967 108.667 421.0 19651130 19701212 488675 99999 CAMP RADCLIFF/ANKHE VM 13.982999999999999 108.65 771.0 19700312 19701116 488676 99999 PHU CAT VM 13.95 109.05 34.0 19661231 19750331 488685 99999 L.Z. ENGLISH VM 14.467 109.03299999999999 30.0 19680303 19710812 488690 99999 19870519 19870519 488695 99999 KONTUM VM 14.35 108.01700000000001 595.0 19680402 19700331 488700 99999 QUY NHON VM VVQN 13.767000000000001 109.21700000000001 6.0 19570104 20200624 488730 99999 TUY-HOA VM 13.083 109.28299999999999 11.0 19561231 20131115 488750 99999 BANMETHUOT VM 12.683 108.083 537.0 19561231 20200624 488770 99999 NHA TRANG VM VVNT 12.25 109.2 10.0 19561231 20200624 488810 99999 BECAME STN 488811 VM 11.75 108.383 962.0 19490304 19750331 488811 99999 DA LAT/LIEN KHUONG VM VVDL 11.753 108.36200000000001 962.0 20100319 20100319 488815 99999 DALAT/CAM LY VM 11.95 108.417 1517.0 19661003 19710315 488830 99999 DI LINH VM 11.567 108.06700000000001 972.0 19491213 19610521 488840 99999 BAO-LOC (BLAO) VM 11.467 107.8 850.0 19610526 19790809 488870 99999 PHAN THIET VM 10.933 108.1 5.0 19561008 20200624 488880 99999 PHUOC LONG/SONG BE VM 11.817 106.96700000000001 243.0 19800702 19900726 488885 99999 PHUOC LONG/SONG BE VM 11.817 106.96700000000001 243.0 19680115 19710214 488890 99999 PHAN RANG VM 11.633 108.95 31.0 20080530 20130409 488896 99999 PHAN RANG VM 11.633 108.95 31.0 19660103 19750402 488910 99999 DAU TIENG VM 11.267000000000001 106.31700000000001 16.0 19660731 19700320 488915 99999 TAY NINH WEST VM 11.317 106.06700000000001 8.0 19661130 19700807 488920 99999 SONG TU TAY (SOUTH WEST CAY) VM 11.417 114.333 5.0 19921201 20200624 488925 99999 PHU LOI VM 11.0 106.7 34.0 19660419 19711231 488926 99999 PHUOC-VINH VM 11.3 106.8 58.0 19660731 19731216 488935 99999 CU CHI VM 10.982999999999999 106.51700000000001 12.0 19660331 19701124 488940 99999 NHA BE VM 10.65 106.71700000000001 3.6 20130702 20200624 488960 99999 BIEN-HOA AB VM 10.967 106.81700000000001 13.4 19581231 19650627 488962 99999 SAIGON/BIEN/HOA VM 10.967 106.81700000000001 11.0 19581231 19750428 488966 99999 GIA RAY VM 10.967 107.4 142.0 19701001 19710314 488970 99999 CAM RANH BAY VM 12.0 109.21700000000001 14.0 19651103 19711231 489000 99999 TANSONNHAT INTL VM VVTS 10.819 106.652 10.1 19490102 20200624 489003 99999 HO CHI MINH/TANSONN VM 10.817 106.667 9.0 19780527 19830209 489005 99999 DIAN VM 10.9 106.75 32.0 19661007 19710306 489006 99999 QUAN LOI VM 11.667 106.667 167.0 19680131 19700909 489015 99999 LONG THANH (NORTH) VM 10.833 106.96700000000001 41.0 19660731 19711231 489020 99999 BARIA (PHUOC LE) VM 10.5 107.167 15.0 19550814 19561031 489030 99999 VUNGTAU/PHARE VM 10.333 107.083 175.0 19490502 19790217 489040 99999 VUNG TAU VM 10.367 107.06700000000001 4.0 19630301 20100520 489041 99999 VUNGTAU VM VVVT 10.367 107.1 4.0 19621129 19700811 489070 99999 RACH GIA VM 10.0 105.083 3.0 19560117 20200624 489100 99999 VINH LONG VM 10.25 105.95 3.0 19630515 20120930 489105 99999 TAN AN VM 10.55 106.4 3.0 19670630 19700907 489110 99999 CAN THO VM 10.05 105.76700000000001 19630503 19641230 489111 99999 PHONG DINH/CAN THO VM 10.05 105.76700000000001 2.0 19630504 19750428 489125 99999 CAN THO VM VVCT 10.083 105.71700000000001 3.1 19651213 20200621 489130 99999 BA-XUYEN/SOC TRANG VM 9.6 105.96700000000001 5.0 19490502 20131105 489140 99999 CA MAU VM 9.183 105.15 2.0 19570831 20200624 489160 99999 THO CHU VM 9.283 103.46700000000001 24.0 19970201 20200624 489170 99999 PHU QUOC VM 10.217 103.96700000000001 4.0 19570403 20200624 489180 99999 CON SON VM 8.683 106.6 9.0 19490103 20200624 489190 99999 HUYEN TRAN VM 8.017000000000001 110.617 19.0 19970201 20200624 489200 99999 TRUONG SA VM 8.65 111.917 3.0 19811101 20200624 489210 99999 BOUNNEUA LA 21.633000000000003 101.883 923.0 20030330 20200624 489220 99999 19870519 19870519 489235 99999 BAN HOUAY-XAY LA VLHS 20.25 100.43299999999999 421.0 19680930 19740814 489236 99999 NAM LIEU LA 20.566999999999997 100.583 579.0 19730101 19730201 489240 99999 LUANG NAMTHA (M.SING) LA VLLN 21.05 101.46700000000001 644.0 20030330 20200624 489245 99999 XIENG LOM LA VLXL 19.65 100.81700000000001 579.0 19730101 19730831 489250 99999 OUDOMXAY LA 20.683000000000003 102.0 550.0 19840701 20200624 489260 99999 HOUEI-SAI * LA 20.25 100.43299999999999 -999.9 19740610 20200624 489270 99999 VIENGSAY LA 20.417 104.23299999999999 913.0 19790701 20200624 489280 99999 SAM-NEUA LA 20.417 104.06700000000001 1000.0 19590829 20200624 489286 99999 NAM TAN DAM LA 19.017 101.5 366.0 19730101 19730801 489288 99999 19730101 19730619 489300 99999 LUANG PHABANG INTL LA VLLB 19.897000000000002 102.161 291.1 19510601 20200624 489305 99999 VANG VIENG(CIV/MIL) LA VLVV 18.917 102.45 296.0 19730101 19730822 489306 99999 PHU CUM LA 19.9 103.117 1158.0 19670824 19681230 489325 99999 BOUAM LONG LA 19.75 103.333 1463.0 19730114 19730624 489326 99999 BAN HONG SA LA 19.683 101.333 610.0 19730101 19730110 489350 99999 PLAINE DES JARRES (XIENGKHOUANG) LA 19.467 103.133 1050.0 19511011 20200624 489360 99999 PAKLAY LA 18.2 101.2 220.0 19730814 20020813 489365 99999 SKYLINE/BAN SAN TON LA 19.167 102.9 1585.0 19680106 19700228 489366 99999 LONG TIENG LA 19.117 102.917 951.0 19730101 19730821 489370 99999 NAM THANE LA 19.117 101.55 370.0 19731113 19801226 489380 99999 SAYABOURY LA VLSB 19.233 101.73299999999999 326.0 19730101 20200624 489390 99999 VANGVIENG LA 18.917 102.45 298.0 19801005 19840724 489400 99999 WATTAY INTL LA VLVT 17.988 102.56299999999999 171.9 19490101 20200624 489410 99999 PHONHONG LA 18.467 102.4 179.0 20020530 20200624 489420 99999 HAT DOKEO LA 17.85 102.6 165.0 20090916 20120111 489425 99999 PHU MIENG MANE LA 17.667 101.083 620.0 19730101 19730706 489436 99999 PAKKENYANE LA 16.867 105.333 213.0 19730101 19730111 489438 99999 PAK SANE LA 18.383 103.667 157.0 19730620 19730920 489440 99999 THANGONE LA 18.283 102.633 185.0 20020608 20200123 489445 99999 GROVE JONES-2 LA 18.05 104.31700000000001 159.0 19730101 19730430 489450 99999 PAKSANE LA 18.4 103.667 157.0 20090801 20200624 489460 99999 THAKHEK LA VLTK 17.383 104.65 52.0 19810101 20200624 489470 99999 SAVANNAKHET LA VLSK 16.557000000000002 104.76 155.1 19680131 20200624 489475 99999 THAKHEK WEST LA 17.4 104.81700000000001 150.0 19730101 19730803 489480 99999 SENO LA 16.667 105.0 185.0 19490101 20200624 489485 99999 BANG DONG HENE LA 16.7 105.3 143.0 19730101 19730803 489486 99999 MOUNG PHA LANE LA 16.683 105.55 159.0 19660503 19730803 489488 99999 KENG KOK LA 16.45 105.18299999999999 171.0 19730101 19730430 489489 99999 XE BANG FAI LA 17.083 104.98299999999999 146.0 19730101 19730803 489500 99999 19870519 19870519 489506 99999 XE BANG HAING LA 16.083 105.367 145.0 19730101 19730803 489520 99999 SARAVANE LA VLSV 15.683 106.417 168.0 19800701 20200624 489525 99999 KHONG XEDONE LA 15.6 105.8 137.0 19730101 19730803 489526 99999 SARAVANE LA 15.717 106.417 175.0 19660313 19680218 489530 99999 SEKONG LA 15.333 106.68299999999999 143.0 20090801 20200624 489550 99999 PAKSE LA VLIP 15.117 105.76700000000001 102.0 19490807 20190416 489555 99999 PAKSE (BACK-UP) LA 15.133 105.78299999999999 102.0 19730101 19730514 489558 99999 BAN KHENG NHAO LA 15.317 105.98299999999999 186.0 19730101 19730803 489559 99999 BAN DON TALAT LA 14.783 105.78299999999999 84.0 19730101 19730803 489560 99999 PAKSONG LA 15.183 106.2 1200.0 20081228 20180723 489565 99999 NEW PAKSONG LA 15.183 106.23299999999999 1219.0 19730608 19730803 489570 99999 ATTOPEU LA VLAP 14.8 106.833 105.0 19660511 20200624 489595 99999 KHONG ISLAND LA VLKG 14.117 105.833 76.0 19730101 19730803 489620 99999 BATTAMBANG CB 13.1 103.2 13.0 19510911 20200624 489660 99999 SIEM REAP CB VDSR 13.411 103.81299999999999 18.3 19490103 20200624 489680 99999 PURSAT CB 12.55 103.85 18.0 19490901 20150603 489690 99999 BANTEAY MEANCHEY CB 13.617 102.96700000000001 31.0 19750109 19751127 489720 99999 STUNG TRENG CB 13.517000000000001 105.96700000000001 56.0 19490102 20200624 489800 99999 19870519 19870519 489820 99999 KOS KONG CB 11.617 103.0 4.0 19730102 19740425 489830 99999 SIHANOUK VILLE CB 10.633 103.48299999999999 15.0 19560528 20200624 489840 99999 19750109 19750327 489850 99999 KAMPOT CB 10.6 104.18299999999999 4.0 19490102 20200624 489910 99999 PHNOM PENH INTL CB VDPP 11.547 104.844 12.2 19490102 20200624 489920 99999 KOMPONG SPEU CB 11.467 104.56700000000001 27.0 19741127 19750703 489950 99999 KOMPONG-CHAM CB VDKC 12.0 105.45 16.0 19490102 20200624 489970 99999 CPREY VENG CB 11.467 105.31700000000001 2.0 20111201 20140116 489980 99999 SVAY RIENG CB 11.083 105.8 6.0 19490501 20200624 501360 99999 MOHE CH 52.967 122.53299999999999 438.0 19730101 20200624 502460 99999 TA-HE CH 52.333 124.8 465.0 19730101 20070727 503490 99999 JIU-HAI-LAI CH 51.133 124.05 610.0 19730105 20020513 503530 99999 HUMA CH 51.733000000000004 126.633 175.6 19560820 20200624 504250 99999 SAN-HE CH 50.5 120.06700000000001 671.0 19570601 20040809 504340 99999 TULIHE CH 50.45 121.7 733.0 19570531 20200624 504420 99999 XIAO-YANG-QI CH 50.8 124.28299999999999 549.0 19730313 20020513 504680 99999 AIHUI CH 50.25 127.45 166.0 19610801 20200624 505140 99999 MAN-ZHOU-LI CH 49.55 117.46700000000001 710.0 19581002 20050805 505270 99999 HAILAR CH 49.25 119.7 650.0 19560820 20200619 505280 99999 HAI-LAR/TUNGSHAN CH ZYLA 49.217 119.8 488.0 19790701 20020731 505480 99999 XIAO'ERGOU CH 49.2 123.71700000000001 288.0 19570531 20200624 505570 99999 NENJIANG CH 49.167 125.23299999999999 243.0 19560820 20200624 505640 99999 SUNWU CH 49.433 127.35 235.0 19560820 20200624 506030 99999 XIN BARAG YOUQI CH 48.683 116.81700000000001 556.7 19600101 20200624 506320 99999 BUGT CH 48.766999999999996 121.917 739.0 19560820 20200624 506390 99999 ZALANTUN CH 48.0 122.73299999999999 310.0 19560820 19611031 506460 99999 BORDO CH 48.483000000000004 124.85 199.0 19570601 19590831 506560 99999 LONG-ZHEN CH 48.65 126.667 305.0 19610801 20130120 506580 99999 KESHAN CH 48.05 125.883 237.0 19570601 20200624 507030 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801004 20030619 507270 99999 ARXAN CH 47.167 119.93299999999999 997.0 19560820 20200624 507410 99999 NORTHEAST CH 47.9 133.5 50.0 19570601 19590831 507420 99999 SAN-CHEN-FANG CH 47.783 124.167 146.0 19570601 20070727 507450 99999 SANJIAZI CH ZYQQ 47.24 123.91799999999999 145.4 19560820 20200624 507560 99999 HAILUN CH 47.45 126.867 248.0 19560820 20200624 507580 99999 MING-SHUI CH 47.25 125.883 259.0 19570601 20020613 507740 99999 YICHUN CH 47.7 128.833 259.1 19570601 20200624 507750 99999 HE-GANG CH 47.35 130.2 198.0 19570602 20030124 507870 99999 BOGUS CHINESE CH 19880208 20020101 507880 99999 FUJIN CH 47.233000000000004 131.983 65.0 19560820 20200624 508340 99999 TE-PO-SU-K/-MIAO CH 46.5 121.367 427.0 19610801 20090904 508380 99999 QARSAN SOUTHEAST CH 46.217 122.05 273.0 19560820 19611031 508440 99999 TAILAI CH 46.4 123.45 150.0 19610801 20200603 508450 99999 NAME/LOCATION UNKN CH 0.0 0.0 -999.0 19801002 20020906 508530 99999 WANG-KUI CH 46.833 126.48299999999999 158.0 19570601 20020513 508540 99999 ANDA CH 46.383 125.31700000000001 150.0 19560820 20200624 508620 99999 TIE-LI CH 47.067 128.033 264.0 19571215 20070727 508730 99999 CHIA-MU-SSU /CHIAMUEZE CH 46.817 130.333 80.2 19560820 19611031 508770 99999 YI-LAN CH 46.3 129.55 99.0 19610801 20020513 508880 99999 BAOQING CH 46.317 132.183 83.0 19570602 20200624 509150 99999 ULIASTAI CH 45.516999999999996 116.96700000000001 840.0 19560820 20200624 509360 99999 BAICHENG NORTHEAST CH 45.633 122.85 151.0 19560820 19611031 509450 99999 TA-AN CH 0.0 0.0 -999.0 19801003 20070727 509490 99999 QIAN GORLOS CH 45.083 124.867 136.0 19560820 20200624 509530 99999 HARBIN CH 45.933 126.56700000000001 117.7 19560820 20200624 509540 99999 CHAO-YUAN CH 0.0 0.0 -999.0 19801001 20031227 509630 99999 TONGHE CH 45.967 128.733 110.0 19560820 20200624 509680 99999 SHANGZHI CH 45.217 127.96700000000001 191.0 19560820 20200624 509780 99999 JIXI CH 45.3 130.917 273.5 19560820 20200624 509830 99999 HULIN CH 45.766999999999996 132.967 103.0 19730101 20200624 509880 99999 BOGUS CHINESE CH 19890406 20020509 510530 99999 KABA HE CH 48.05 86.35 534.0 19600101 20200624 510560 99999 APPROXIMATE LOCALE CH 47.933 86.167 0.0 19890508 20020918 510680 99999 FUHAI/BURULTOKAY CH 47.1 87.383 472.0 19620306 20020513 510760 99999 ALTAY CH 47.733000000000004 88.083 737.0 19560820 20200624 510770 99999 BOGUS CHINESE CH 47.167 88.367 -999.0 19570613 20020824 510860 99999 BOGUS CHINESE CH 19840502 20020924 510870 99999 FUYUN CH 46.983000000000004 89.51700000000001 827.0 19560820 20200624 511160 99999 BOGUS CHINESE CH 19870103 20020803 511330 99999 TACHENG CH 46.733000000000004 83.0 535.0 19610901 20200624 511560 99999 HOBOKSAR CH 46.817 85.75 1323.2 19560820 20200624 511860 99999 QINGHE/QINGGLI CH 46.717 90.4 1463.0 19620302 20020820 512320 99999 PA-ERH-LU-K'O MTN CH 45.95 82.56700000000001 1067.0 19591209 20020513 512410 99999 TO-LI CH 45.95 83.617 2072.0 19570629 20050515 512430 99999 KARAMAY CH 45.6 84.85 428.0 19610402 20200624 512880 99999 BAYTIK SHAN CH 45.367 90.53299999999999 1651.0 19591209 20200624 512940 99999 BOGUS CHINESE CH 19860504 20011008 513300 99999 BOLE/BORTALA CH 44.917 82.06700000000001 1366.0 19620302 20020513 513340 99999 JINGHE CH 44.567 82.81700000000001 330.2 19560820 20200624 513460 99999 KUYTUN CH 44.433 84.96700000000001 442.0 19560820 19991014 513520 99999 PAO-TAI EAST CH 44.817 85.6 335.0 19560820 19570630 513560 99999 SHIHEZI CH 44.3 86.03299999999999 457.0 19560820 20020221 513650 99999 FUKANG CH 44.15 87.98299999999999 549.0 19620302 20020513 513790 99999 QITAI CH 44.016999999999996 89.56700000000001 794.0 19560820 20200624 514300 99999 INING CH 43.917 81.283 670.0 19560820 19580812 514310 99999 YINING CH ZWYN 43.95 81.333 663.0 19580809 20200624 514370 99999 ZHAOSU/MONGGOLKURE CH 43.167 81.117 1830.0 19620302 20050918 514630 99999 WU LU MU QI CH 43.783 87.617 919.0 19560820 20200624 514635 99999 DIWOPU CH ZWWW 43.907 87.47399999999999 647.7 19850209 20200624 514670 99999 BALGUNTAY CH 42.667 86.333 1753.0 19600101 20200624 514770 99999 PAU-YANG-HU CH 43.2 88.46700000000001 1037.0 19620302 20020513 514950 99999 SHISANJIANFANG CH 43.217 91.73299999999999 732.0 19560820 20200624 514960 99999 YIWANQUAN CH 43.383 92.1 1890.0 19890901 19990715 515260 99999 CHUGIRTY CH 42.8 80.85 2042.0 19620302 20020513 515420 99999 BAYANBULAK CH 43.033 84.15 2459.0 19600101 20200624 515570 99999 BOGUS CHINESE CH 19881001 20011120 515670 99999 YANQI CH 42.05 86.56700000000001 1097.0 19560820 19991105 515730 99999 TURPAN CH 42.95 89.23299999999999 39.3 19560820 20200624 515810 99999 SHANSHAN/PIQAN CH 42.917 90.25 410.0 19890901 19970504 516280 99999 WEN-SU CH 41.266999999999996 80.233 1286.0 19560820 19991014 516330 99999 BAICHENG/BAY CH 41.766999999999996 81.867 1280.0 19621101 20020513 516380 99999 KUQA SOUTHWEST CH 41.3 81.683 985.0 19620302 19620731 516420 99999 LUNTAI/BUGUR CH 41.783 84.167 883.0 19620302 20020513 516440 99999 KUQA CH 41.717 82.95 1100.0 19560820 20200624 516560 99999 KORLA CH 41.733000000000004 85.81700000000001 903.0 19610901 20200624 517010 99999 SAI-K'O-LO-T'E-MA CH 40.45 75.383 3651.0 19620302 20020805 517050 99999 AR-TUX CH 39.667 76.167 1494.0 19560820 20020513 517060 99999 TEJAN CH 39.7 76.35 19560820 19570930 517080 99999 AK-TO CH 0.0 0.0 -999.0 19790705 19820402 517090 99999 KASHI CH ZWSH 39.543 76.02 1380.4 19571004 20200624 517110 99999 AKQI CH 40.933 78.45 1986.0 19570701 20200624 517160 99999 BACHU CH 39.8 78.567 1117.0 19560820 20200624 517200 99999 CH'I-LAN-TAI CH 40.533 79.533 1158.0 19620202 20030516 517300 99999 ALAR CH 40.5 81.05 1013.0 19620302 20200624 517470 99999 TAZHONG CH 39.0 83.667 1099.0 20010915 20200624 517650 99999 TIKANLIK CH 40.633 87.7 847.0 19570630 20200624 517770 99999 RUOQIANG CH 39.033 88.167 889.0 19560820 20200624 517780 99999 BOGUS CHINESE CH 19801004 20020611 517860 99999 BOGUS CHINESE CH 19801004 20011214 518040 99999 P U-LI CH 37.783 75.233 3159.0 19570201 19600328 518110 99999 SHACHE CH 38.433 77.267 1232.0 19560820 20200624 518180 99999 PISHAN CH 37.617 78.283 1376.0 19610301 20200624 518280 99999 HOTAN CH ZWTN 37.133 79.933 1375.0 19560820 20200624 518390 99999 MINFENG CH 37.067 82.71700000000001 1409.0 19600101 20020513 518480 99999 ANDIR CH 37.933 83.65 1264.0 19620302 19990104 518550 99999 QIEMO/QARQAN CH 38.15 85.55 1248.0 19560820 20020513 518860 99999 MANGNAI CH 38.25 90.85 2945.0 19610801 20200624 518950 99999 ZILIUJING WEST CH 37.85 91.48299999999999 3061.0 19560820 19610705 519150 99999 SOGAT SOUTHWEST CH 36.333 78.0 3700.0 19570629 19600131 519310 99999 YUTIAN/KERIYA CH 36.867 81.7 1554.0 19560820 20030629 521010 99999 BARKOL CH 43.583 92.85 1584.0 19610901 20020530 521120 99999 NAOMAOHU CH 43.6 95.133 469.0 20030330 20200624 521180 99999 YIWU CH 43.266999999999996 94.7 1729.0 19610901 20021231 522030 99999 HAMI CH ZWHM 42.817 93.51700000000001 739.0 19560820 20200624 522230 99999 19740613 19741018 522610 99999 19870507 19870507 522670 99999 EJIN QI CH 41.95 101.06700000000001 941.0 19600301 20200624 522680 99999 APPROXIMATE LOCALE CH 42.083 101.667 0.0 19740425 20020522 523030 99999 YA-MAN-SU CH 0.0 0.0 -999.0 19731008 20011209 523130 99999 XING-XING-XIA CH 41.783 95.133 1935.0 19560820 20011109 523180 99999 HONGLIUYUAN CH 41.067 95.417 1524.0 19740612 19750417 523230 99999 MAZONG SHAN CH 41.8 97.03299999999999 1770.0 19591209 20200624 523330 99999 YEH-MA-CHING CH 41.7 98.25 1463.0 19740430 19820421 523430 99999 SHU-LUN-CHING CH 41.95 100.0 958.0 19610701 19611031 523530 99999 DALAIN HOB EAST CH 41.967 100.883 946.0 19570601 19580531 523670 99999 BOGUS CHINESE CH 19801001 19850320 523770 99999 BOGUS CHINESE CH 19801002 19840506 523780 99999 GUAIZIHU CH 41.367 102.367 960.0 19600501 20200624 523910 99999 PANG-TING-TO-TO-KAI CH 41.75 103.96700000000001 1463.0 19600101 20020416 524180 99999 DUNHUANG CH 40.15 94.68299999999999 1140.0 19560820 20200624 524240 99999 AN-XI CH 40.5 96.0 1177.0 19570629 20020615 524310 99999 BOGUS CHINESE CH 19840102 19860927 524320 99999 19870518 19870518 524340 99999 YUMENZHEN NORTHEAST CH 40.467 97.18299999999999 1360.0 19621102 19621230 524360 99999 YUMENZHEN CH 40.266999999999996 97.03299999999999 1527.0 19560820 20200624 524410 99999 BEISHAN (MTNS) CH 40.717 98.617 1554.0 19730101 19900418 524460 99999 SHUANGCHENGTZU CH 40.4 99.8 1158.0 19560820 20020513 524470 99999 JINTA CH 39.817 98.9 1372.0 19890101 20020513 524950 99999 BAYAN MOD CH 40.75 104.5 1329.0 19610902 20200624 525230 99999 APPROXIMATE LOCALE CH 39.833 96.75 0.0 19801001 19840611 525330 99999 JIUQUAN/SUZHOU CH ZLJQ 39.766999999999996 98.48299999999999 1478.0 19460331 20200624 525331 99999 ZHONGCHUAN CH ZLLL 36.515 103.62 1947.1 20040713 20200624 525360 99999 JIAYUGUAN SOUTHWEST CH 39.617 98.05 2154.0 19610903 19610930 525430 99999 BOGUS CHINESE CH 19801002 20020501 525460 99999 GAOTAI WEST CH 39.383 99.71700000000001 1354.0 19560820 19611031 525760 99999 LAI-YEN-CH'IH CH 39.383 102.833 1383.0 19570601 20020513 526020 99999 LENGHU CH 38.833 93.383 2771.0 19570701 20200624 526180 99999 DANGCHENGWAN SOUTH CH 39.167 94.833 3746.0 19620302 19620430 526330 99999 TUO-LE CH 38.8 98.417 609.0 19610902 20020513 526450 99999 YEH-NIU-KOU CH 38.467 99.55 2169.0 19600301 20020513 526510 99999 ZHANG-YE/SOUTH CH 38.817 100.4 1493.0 19560820 20011205 526520 99999 ZHANGYE CH 39.083 100.28299999999999 1462.0 19600101 20200624 526530 99999 ZHANG-YE/SOUTHEAST CH 38.8 100.667 1463.0 19731109 20011012 526570 99999 BABAO CH 38.233000000000004 100.25 2700.0 19600101 20020513 526610 99999 SHAN-DAN CH 38.8 101.083 1760.0 19560820 20020513 526710 99999 SALT LAKE CH 0.0 0.0 -999.0 19740422 20020609 526740 99999 JIN-CHANG CH 38.467 102.18299999999999 1676.0 19640101 20020513 526790 99999 CAIQI SOUTHEAST CH 38.083 102.917 1525.0 19560820 19611031 526810 99999 MINQIN CH 38.633 103.083 1367.0 19570502 20200624 526820 99999 BOGUS CHINESE CH 19890404 20020106 526850 99999 19870511 19870511 526980 99999 GOLMUD NW CH 0.0 0.0 -999.0 19800703 20010829 527020 99999 SHA-LIANG-ZI CH 37.917 93.35 0.0 19801005 20010903 527070 99999 T'A-ERH-TING CH 37.067 92.867 2712.0 19570701 20020513 527130 99999 DA-QAIDAM CH 37.85 95.367 3174.0 19570630 20200624 527180 99999 19731023 19750420 527230 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740612 20020926 527360 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19731004 20020818 527370 99999 DELINGHA CH 37.367 97.367 2982.0 19560820 20200624 527380 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19731129 20011104 527400 99999 HSIN-YUAN CH 37.3 99.01700000000001 3627.0 19890928 19970514 527440 99999 KARMAR NORTHWEST CH 37.5 98.8 3978.0 19610316 19620621 527530 99999 BOGUS CHINESE CH 37.683 100.7 3353.0 19740612 19850306 527540 99999 GANGCA CH 37.333 100.133 3302.0 19610316 20200624 527650 99999 HAO-MEN CH 37.367 101.617 2682.0 19610901 20020513 527660 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19731110 20011214 527760 99999 GU-LANG (?) CH 0.0 0.0 -999.0 19740617 19811221 527770 99999 XOLUNGLANG SE CH 37.15 102.21700000000001 2934.0 19740425 19741203 527790 99999 TIANZHU NORTHEAST CH 37.266999999999996 102.883 2728.0 19740423 19760112 527820 99999 NAME/LOCATION UNKN CH 19801004 20011110 527870 99999 WUSHAOLING CH 37.2 102.867 3044.0 19560820 20200624 527880 99999 BOGUS CHINESE CH 37.233000000000004 103.4 2415.0 19731101 20020922 527970 99999 CHING-T'AI CH 37.133 104.21700000000001 1402.0 19620302 20020513 527980 99999 BOGUS CHINESE CH 37.067 104.46700000000001 1829.0 19740427 20160421 528130 99999 GOL-MUD (?) CH 36.817 95.35 2731.0 19731109 20011126 528180 99999 GOLMUD CH ZLGM 36.417 94.9 2809.0 19560820 20200624 528250 99999 NUO-MU-HONG CH 36.45 96.46700000000001 2804.0 19570601 20021025 528260 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801001 19850320 528330 99999 SERH CH 36.95 98.35 2987.0 19890901 20020513 528360 99999 DOULAN CH 36.3 98.1 3190.0 19560820 20200624 528380 99999 HSIANG-JIH-TE NE CH 36.067 97.75 2976.0 19731108 19750414 528420 99999 CHA-KA CH 36.783 99.083 2925.0 19610901 20001028 528460 99999 BOGUS CHINESE CH 19801003 19840515 528540 99999 JIANG-XI-GOU (?) CH 0.0 0.0 -999.0 19570701 20020910 528560 99999 GONGHE CH 36.35 100.78299999999999 2743.0 19560820 20020513 528570 99999 BOGUS CHINESE CH 19801004 19850328 528640 99999 HUANG-YUAN (?) CH 0.0 0.0 -999.0 19841101 20020712 528660 99999 XINING CH ZLXN 36.617 101.76700000000001 2262.0 19560820 20200624 528680 99999 HEY-IN CH 36.033 101.43299999999999 2072.0 19620302 20051212 528760 99999 MINHE CH 36.333 102.833 1905.0 19620302 20090928 528860 99999 APPROXIMATE LOCALE CH 36.567 103.7 1951.0 19731108 20020803 528880 99999 LAN-ZHOU/CITY CH ZLAN 36.117 103.617 1600.0 19740613 20020301 528890 99999 LANZHOU CH 36.05 103.883 1518.0 19560820 20170220 528950 99999 JINGYUAN CH 36.583 104.68299999999999 1505.0 19560820 20030118 529070 99999 BOGUS CHINESE CH 35.167 92.833 4877.0 19740601 20020310 529080 99999 WUDAOLIANG CH 35.217 93.083 4613.0 19570701 20200624 529400 99999 APPROXIMATE LOCALE CH 35.5 99.333 0.0 19841101 19851116 529410 99999 NAME UNKNOWN CH 35.717 98.917 3962.0 19900101 20101225 529420 99999 ZIKETAN WEST CH 35.766999999999996 99.167 4723.0 19600101 19600430 529430 99999 XINGHAI CH 35.75 99.98299999999999 3200.0 19600601 20020923 529470 99999 APPROXIMATE LOCALE CH 35.167 98.75 0.0 19831203 19850625 529550 99999 GUINAN CH 35.583 100.75 3123.0 20010802 20200624 529570 99999 TONGDE CH 35.266999999999996 100.65 3290.0 19560820 19990422 529580 99999 APPROXIMATE LOCALE CH 35.266999999999996 100.65 0.0 19731129 19890816 529680 99999 SON-AG CH 35.033 101.46700000000001 3565.0 19620302 20020208 529740 99999 BOGUS CHINESE CH 19910201 20020417 529780 99999 XIAHE NORTH CH 35.233000000000004 102.5 3050.0 19560820 19580408 529830 99999 YU ZHONG CH 35.867 104.15 1875.0 20040510 20200624 529840 99999 LINXIA CH 35.467 102.98299999999999 1920.0 19620302 20020513 529860 99999 LINTAO CH 35.333 104.0 1905.0 19570705 20020513 529960 99999 HUAJIALING CH 35.383 105.0 2450.0 19560820 20200624 530630 99999 19740421 19740716 530670 99999 ENGER HULASA MG 44.167 111.167 1086.0 19740429 19850402 530680 99999 ERENHOT CH 43.65 112.0 966.0 19560820 20200624 530730 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740429 20020410 530780 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740420 20020610 530830 99999 NARAN BULAG CH 44.617 114.15 1183.0 19580101 20200624 531490 99999 MANDAL CH 42.533 110.133 1223.0 19580101 20200624 531920 99999 ABAG QI CH 44.016999999999996 115.0 1147.7 19560820 20200624 531950 99999 ENGER SHOOTO CH 43.383 114.45 1128.0 19570601 20090904 532310 99999 HAILS CH 41.45 106.383 1510.0 19600102 20200624 532760 99999 JURH CH 42.4 112.9 1152.0 19560820 20200624 532780 99999 BOIN SUM CH 42.2 112.51700000000001 1280.0 19890901 19910607 532860 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19731009 20011205 533230 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740617 19841006 533310 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801001 20011010 533360 99999 HALIUT CH 41.567 108.51700000000001 1290.0 19560820 20200624 533520 99999 BAILING-MIAO CH 41.7 110.43299999999999 1377.0 19560820 20200624 533620 99999 SHARA MORON SUME CH 42.033 111.53299999999999 1372.0 19610801 20020404 533630 99999 APPROXIMATE LOCALE CH 41.667 111.78299999999999 1524.0 19740616 20020203 533760 99999 BA-DAO-GOU (?) CH 0.0 0.0 -999.0 19740421 20020605 533910 99999 HUADE CH 41.9 114.0 1484.0 19560820 20200624 533980 99999 19740425 19740803 534200 99999 HANG-CHIN-HOU-CHI NW CH 40.967 107.167 1035.0 19560820 19611031 534360 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801001 20030723 534460 99999 BAOTOU CH ZBOW 40.567 109.98299999999999 940.0 19560820 19840813 534463 99999 BAOTOU CH ZBOW 40.559 109.99799999999999 1012.2 20060727 20190611 534620 99999 PI KO CHAI(AFLD) CH 40.75 111.26700000000001 1036.0 19731020 20030923 534630 99999 BAITA CH ZBHH 40.851 111.824 1083.9 19560820 20200624 534730 99999 CHI PI PU LANG CH 0.0 0.0 -999.0 19800708 20020509 534770 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740425 20020524 534780 99999 YOU-YU CH 40.167 112.333 1212.0 19570601 20070727 534800 99999 JINING CH 41.033 113.06700000000001 1416.0 19560820 20200624 534870 99999 DATONG CH 40.083 113.417 1054.0 19570601 20200624 534880 99999 CHU LE P'U CH 0.0 0.0 -999.0 19731111 20020621 535020 99999 JARTAI CH 39.783 105.75 1143.0 19560820 20200624 535130 99999 LINHE CH 40.766999999999996 107.4 1041.0 19560820 20200624 535190 99999 SHIZUISHAN/DAWUKOU CH 39.05 106.4 975.0 19620302 20020513 535230 99999 A-LU-CH'IH-LAO-KA CH 39.883 108.0 1372.0 19740613 20020910 535290 99999 OTOG QI CH 39.1 107.98299999999999 1381.0 19560820 20200624 535330 99999 HANG-GIN-QI CH 39.85 108.73299999999999 1450.0 19731004 20130527 535390 99999 PA LA MU TU SHIH LI CH 39.15 108.9 1140.0 19731004 19850401 535430 99999 DONGSHENG CH 39.833 109.98299999999999 1459.0 19730101 20200624 535460 99999 XINJIE NW CH 39.283 109.75 1310.0 19560820 19631231 535630 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19800401 20011128 535640 99999 HEQU CH 39.367 111.21700000000001 1037.0 19560820 20200624 535730 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801001 20020625 535770 99999 BOGUS CHINESE CH 39.133 112.3 1219.0 19740612 20070602 535780 99999 BOGUS CHINESE CH 39.3 112.417 900.0 19731108 20030414 535870 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801003 20021010 535880 99999 WUTAI SHAN CH 38.95 113.51700000000001 2210.0 19560820 20200624 535930 99999 YU XIAN CH 39.833 114.56700000000001 910.0 19560820 20200624 536020 99999 ALXA ZUOQI/BAYAN HO CH 38.833 105.53299999999999 1500.0 19600101 20090904 536140 99999 YINCHUAN CH ZLIC 38.483000000000004 106.21700000000001 1112.0 19560820 20200624 536150 99999 YINCHUAN (CITY) CH 38.467 106.31700000000001 1005.0 19620302 20040206 536170 99999 19740423 19740502 536240 99999 BOGUS CHINESE CH 19801002 20011024 536360 99999 UXIN-QI CH 38.6 108.85 1341.0 19840503 19860712 536460 99999 YULIN CH 38.266999999999996 109.78299999999999 1158.0 19560820 20200624 536520 99999 BOGUS CHINESE CH 38.983000000000004 110.6 1219.0 19740503 20020604 536620 99999 MA-CHIA-HO EAST CH 38.8 111.45 1671.0 19740422 19740816 536630 99999 WU-ZHAI CH 38.917 111.833 1463.0 19570616 20070727 536640 99999 XINXIAN CH 38.4 112.71700000000001 900.0 19570601 20070727 536660 99999 HSIA-TAO-HUNG SOUTH CH 38.4 111.833 1370.0 19570601 19620421 536730 99999 YUANPING CH 38.75 112.7 838.0 19560820 20200603 536810 99999 BOGUS CHINESE CH 38.717 113.0 792.0 19740124 20020417 536980 99999 SHIJIAZHUANG CH 38.067 114.35 104.8 19560820 20200624 537050 99999 ZHONGNING CH 37.483000000000004 105.68299999999999 1193.0 19560820 20200624 537130 99999 BOGUS CHINESE CH 19801001 20020520 537140 99999 BOGUS CHINESE CH 19801002 20040913 537150 99999 HUI-AN-BU CH 37.45 106.667 1463.0 19731110 20010712 537230 99999 YANCHI CH 37.8 107.383 1356.0 19560820 20200624 537380 99999 PIN-KOU-MEN CH 37.15 108.383 1438.0 19600102 20020513 537400 99999 ZI-CHANG CH 37.133 109.65 1189.0 19570601 20051004 537430 99999 MI-ZHI AIRFIELD (?) CH 37.867 110.06700000000001 975.0 19740423 19820424 537450 99999 APPROXIMATE LOCALE CH 37.467 109.583 0.0 19731004 20020923 537530 99999 BOGUS CHINESE CH 37.833 110.833 914.0 19740613 19840904 537540 99999 SUIDE CH 37.467 110.25 900.0 19620302 20020802 537570 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740430 19840218 537630 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19731004 20030924 537640 99999 LISHI CH 37.5 111.1 951.0 19570601 20200624 537720 99999 WUSU CH ZBYN 37.747 112.62799999999999 784.9 19560820 20200624 537760 99999 YU-CI (?) CH 37.7 112.71700000000001 823.0 19740422 20011111 537820 99999 YANGQUAN CH 37.817 113.56700000000001 908.0 19570601 20020930 537870 99999 YUSHE CH 37.067 112.98299999999999 1042.0 19570601 20200624 537880 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740423 20020422 537970 99999 BOGUS CHINESE CH 19801002 20011222 537980 99999 XINGTAI CH 37.183 114.367 184.0 19570601 20200624 537981 99999 HANDAN/HEIBEI CH ZBHD 36.533 114.43299999999999 69.8 20120116 20140715 538050 99999 HAI-YUAN CH 36.567 105.65 1850.0 19740613 20020224 538100 99999 QI-YING CH 36.55 106.15 1615.0 19610103 20020513 538170 99999 GUYUAN CH 36.016999999999996 106.28299999999999 1676.0 19600101 20050920 538180 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740421 19850411 538210 99999 HUNG-TE CH 36.766999999999996 107.2 1322.0 19610103 20020513 538230 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19731008 20020614 538450 99999 YAN AN CH ZLYA 36.6 109.5 959.0 19560820 20200624 538530 99999 XI-XIAN CH 36.7 110.93299999999999 1006.0 19610801 20070727 538630 99999 JIEXIU CH 37.033 111.917 745.0 19560820 20200624 538650 99999 BOGUS CHINESE CH 19840204 19860124 538660 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19731115 20200620 538680 99999 CANYU NORTHEAST CH 36.15 111.45 462.0 19560820 19611031 538870 99999 CHANG-ZHI CH 36.2 113.117 975.0 19560820 20041117 538920 99999 YONGNIAN NORTHWEST CH 36.8 114.45 60.0 19560820 19570731 538980 99999 ANYANG CH 36.05 114.133 195.7 19570601 20200624 539030 99999 XI-JI CH 35.967 105.71700000000001 1935.0 19620302 20020513 539070 99999 19740423 19740916 539130 99999 BOGUS CHINESE CH 19890611 20020929 539150 99999 PINGLIANG CH 35.55 106.667 1348.0 19560820 20200624 539230 99999 XIFENGZHEN CH 35.733000000000004 107.633 1423.0 19560820 20200624 539270 99999 19740617 19740729 539290 99999 CHANG-WU CH 35.217 107.8 1219.0 19801001 20020930 539380 99999 CHIU-PO-TOU NW CH 35.283 108.3 1219.0 19740601 19741025 539420 99999 LUO-CHUAN CH 35.75 109.417 1000.0 19570601 20020513 539450 99999 HUANG-LONG CH 0.0 0.0 -999.0 19740519 20020613 539470 99999 TONGCHUAN CH 35.167 109.05 914.0 19560820 20000108 539480 99999 BOGUS CHINESE CH 19801002 19850311 539590 99999 YUNCHENG CH 35.117 111.06700000000001 376.5 19560820 20200624 539750 99999 YANGCHENG CH 35.483000000000004 112.4 659.0 19610801 20200624 539850 99999 SHEN-CHUANG CH 0.0 0.0 -999.0 19731110 20020603 539860 99999 GUGUZHAI NW CH 35.25 113.95 72.0 19560820 19611031 539950 99999 HUAXIANCHENG NE CH 35.583 114.55 62.0 19731111 19760103 540010 99999 TAI-LE-MIN-SU-MU CH 44.9 115.417 1143.0 19900401 19950919 540120 99999 XI UJIMQIN QI CH 44.583 117.6 997.0 19560820 20200624 540160 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801002 20020521 540170 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801001 20030311 540260 99999 JARUD QI CH 44.567 120.9 266.0 19560820 20200624 540270 99999 LINDONG CH 43.983000000000004 119.4 485.0 19560820 20200624 540280 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740101 20020413 540410 99999 KAITONG/TONGYU CH 44.8 123.083 152.0 19570601 20070727 540490 99999 CHANGLING CH 44.25 123.96700000000001 190.0 19560820 20200624 540630 99999 WU-CHAI-CHAN CH 44.967 125.68299999999999 240.0 19570601 20070727 540680 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19731108 20020313 540740 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801001 19821126 540800 99999 SHAHEZI SE CH 44.483000000000004 127.6 249.0 19571201 19590831 540940 99999 MUDANJIANG CH 44.5 129.667 306.5 19560820 20200624 540960 99999 SUIFENHE CH 44.383 131.15 498.0 19560820 20200624 540970 99999 MUDANJIANG NORTH CH 44.133 129.217 282.0 19570601 19590831 541020 99999 XILIN HOT CH 43.95 116.117 1004.0 19560820 20200624 541150 99999 LINXI CH 43.633 118.03299999999999 825.4 19560820 20200624 541250 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801007 20020609 541340 99999 KAILU CH 43.617 121.31700000000001 274.0 19570601 20020930 541350 99999 TONGLIAO CH 43.6 122.26700000000001 180.0 19560820 20200624 541420 99999 WO-HU-TUN CH 43.7 123.6 183.0 19570601 20070727 541450 99999 CHENG-CHIZ-T'UN CH 43.5 123.5 183.0 19800402 20011114 541570 99999 SIPING CH 43.183 124.333 167.0 19560820 20200624 541580 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801003 20020411 541610 99999 LONGJIA CH ZYCC 43.996 125.681 215.2 19560820 20200624 541611 99999 TAIPING CH ZYHB 45.623000000000005 126.25 139.3 20040713 20200624 541720 99999 JILIN CH 43.85 126.55 188.0 19570601 20020809 541810 99999 JIAOHE SOUTH CH 43.717 127.15 275.0 19560820 19611031 541860 99999 DUNHUA CH 43.367 128.2 525.0 19570601 20200624 541920 99999 LUO-ZI-GOU CH 43.717 130.317 500.0 19571201 20011225 541950 99999 WANG-CH'ING CH 43.317 129.75 244.0 19890101 20070727 542070 99999 NAN-JUAN-ZI CH 42.3 115.68299999999999 1524.0 19740426 20030130 542080 99999 DUOLUN CH 42.183 116.46700000000001 1247.0 19560820 20200624 542130 99999 WUDAN/ONGNIUD QI CH 42.967 119.03299999999999 634.0 19570601 20040920 542180 99999 CHIFENG CH 42.3 118.833 567.0 19560820 20200624 542260 99999 BUGT CH 42.333 120.7 401.0 19570601 20200624 542350 99999 HA-ERH-T'AO CH 42.5 122.133 183.0 19731006 20021121 542360 99999 ZHANGWU CH 42.417 122.53299999999999 84.0 19560820 20200624 542370 99999 FUXIN CH 42.0 121.633 182.0 19570601 20020930 542590 99999 QINGYUAN CH 42.067 124.867 230.0 19570601 20200624 542660 99999 MEIHEKOU WEST CH 42.516999999999996 125.633 326.0 19560820 19611031 542730 99999 HUADIAN CH 42.983000000000004 126.75 264.0 19570601 20200624 542740 99999 HUI-NAN-ZHEN CH 0.0 0.0 -999.0 19800418 20020429 542760 99999 JING-YU CH 0.0 0.0 -999.0 19570601 20020826 542840 99999 FUSONG CH 42.333 127.28299999999999 610.0 19610801 20070727 542850 99999 LUSHUIHE CH 42.516999999999996 127.8 853.0 19580101 20070727 542870 99999 SONGJIANGHE CH 42.167 127.5 975.0 19610801 20030125 542920 99999 YANJI CH 42.883 129.5 178.0 19560820 20200624 543080 99999 FENGNING CH 41.2 116.633 661.0 19570601 20200624 543110 99999 WEICHANG CH 41.933 117.75 844.0 19560820 20200624 543240 99999 CHAOYANG CH 41.55 120.45 176.0 19570302 20200624 543260 99999 CHAOYANG AIRFIELD CH 41.583 120.43299999999999 152.0 19570601 20020603 543350 99999 GOUBANGZI CH 41.383 121.8 25.0 19570601 20020930 543360 99999 TAI-AN/SOUTHEAST CH 0.0 0.0 -999.0 19740304 20020414 543370 99999 JINZHOU CH 41.133 121.117 70.0 19560820 20200624 543380 99999 PAN-SHAN CH 0.0 0.0 -999.0 19740910 20151103 543390 99999 ANSHAN CH 41.133 122.98299999999999 17.0 19570601 20040118 543420 99999 SHENYANG CH ZYYY 41.733000000000004 123.51700000000001 43.0 19560820 20200624 543424 99999 TAOXIAN CH ZYTX 41.64 123.48299999999999 60.4 19920701 20200624 543430 99999 FU-SHUN CH 0.0 0.0 -999.0 19740617 20030318 543460 99999 BENXI CH 41.317 123.78299999999999 185.0 19570601 20200624 543510 99999 DA-HUO-FANG CH 41.883 124.083 273.0 19610801 20040624 543630 99999 TONGHUA CH 41.717 125.917 312.0 19570601 20020930 543650 99999 HUANREN CH 41.266999999999996 125.367 204.0 19570601 20020930 543740 99999 LINJIANG CH 41.8 126.917 381.0 19570401 20200624 543770 99999 JI'AN CH 41.15 126.21700000000001 225.0 19560820 20200624 543780 99999 CHING-ZHI (?) CH 0.0 0.0 -999.0 19800702 20020604 543860 99999 CHANGBAI CH 41.417 128.183 775.0 19570601 20200624 544010 99999 ZHANGJIAKOU CH 40.783 114.883 726.0 19560820 20200624 544050 99999 HUAILAI CH 40.417 115.5 538.0 19560820 20200624 544060 99999 YEN-CHING /YEN-KING CH 40.467 115.93299999999999 19610110 19610228 544230 99999 CHENGDE CH 40.967 117.917 423.0 19560820 20200624 544290 99999 ZUNHUA CH 40.2 117.96700000000001 152.0 19570601 20020930 544360 99999 QINGLONG CH 40.4 118.95 228.0 19570602 20200623 544490 99999 SHAN-HAI-GUAN CH 40.0 119.75 27.0 19560820 19811228 544540 99999 SUIZHONG CH 40.35 120.35 18.0 19730101 20020930 544550 99999 SHAHOUSUO CH 40.484 120.56700000000001 10.0 19570601 19631231 544710 99999 YINGKOU CH 40.667 122.2 4.0 19560820 20200624 544740 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801002 20020119 544760 99999 BAIYANGGOU NW CH 40.35 122.75 280.0 19570601 19590831 544770 99999 XIONG-YUE-CHENG CH 40.167 122.133 1.0 19740503 20020717 544830 99999 CAOHEKOU CH 40.883 123.9 235.0 19560820 19900414 544860 99999 SITAIZI CH 40.467 123.96700000000001 126.0 19570601 19590831 544930 99999 KUANDIAN CH 40.717 124.78299999999999 261.0 19560820 20200624 544970 99999 DANDONG CH 40.05 124.333 14.0 19560820 20200624 544980 99999 APPROXIMATE LOCALE CH 40.117 124.333 0.0 19731115 20020605 545010 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801005 20021201 545110 99999 BEIJING - CAPITAL INTERNATIONAL AIRPORT CH ZBAA 40.08 116.585 35.4 19451031 20200624 545120 99999 BEI-JING/NAN-YUAN CH 39.783 116.383 40.0 19800701 20020209 545130 99999 BEI-JING/TONG-XIAN CH 39.817 116.7 21.0 19800703 20010725 545170 99999 TS AN KANG CH 0.0 0.0 -999.0 19800707 20020619 545180 99999 BAXIAN CH 39.05 116.4 8.0 19570601 20040124 545230 99999 YU-TIAN CH 0.0 0.0 -999.0 19740424 20011011 545270 99999 TIANJIN CH 39.1 117.167 5.0 19560820 20200624 545273 99999 BINHAI CH ZBTJ 39.124 117.346 3.0 19811125 20200624 545280 99999 TIAN-JIN/ZHANG-GUI CH 39.133 117.35 3.0 19800702 20020911 545290 99999 CHAI-SHANG CH 0.0 0.0 -999.0 19731130 20020521 545340 99999 TANGSHAN CH 39.65 118.1 29.0 19560820 20200608 545390 99999 LETING CH 39.433 118.9 12.0 19570601 20200624 545430 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740425 20020313 545630 99999 FUXIAN/WAFANGDIAN CH 39.633 121.98299999999999 17.0 19570601 20020930 545640 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740421 20020207 545750 99999 CHENGZITAN CH 39.5 122.5 17.0 19570601 19590831 545770 99999 LU-DA/ZHENG-SHA-HE CH 39.266999999999996 122.083 31.0 19800403 20191211 545840 99999 SHISHAN NORTHEAST CH 39.717 123.06700000000001 17.0 19560820 19611031 545870 99999 HAIYANG DAO CH 39.05 123.21700000000001 -999.9 19570801 20050516 546020 99999 BAODING CH 38.733000000000004 115.48299999999999 17.0 19560820 20200624 546060 99999 SUNING CH 38.433 115.833 15.0 19570601 19590831 546140 99999 HE-JIAN CH 0.0 0.0 -999.0 19800403 20011222 546160 99999 CANGZHOU CH 38.333 116.833 11.0 19560820 20011024 546180 99999 POTOU CH 38.083 116.55 13.0 19971201 20200624 546230 99999 TANGGU CH 39.016999999999996 117.6 4.0 19570601 20020930 546240 99999 HUANGHUA CH 38.383 117.35 4.0 19620402 20020930 546250 99999 QI-KOU CH 0.0 0.0 -999.0 19570601 20020510 546260 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801002 19850106 546350 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801001 20011013 546430 99999 MOORED VESSEL CH 38.967 119.95 6.0 19860501 19931229 546460 99999 MOORED VESSEL CH 38.35 119.68299999999999 6.0 19881001 20000405 546530 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801001 20020105 546560 99999 TUOJI ISLAND CH 38.167 120.78299999999999 59.0 19570601 20020811 546620 99999 ZHOUSHUIZI CH ZYTL 38.966 121.539 32.6 19560820 20200624 546630 99999 DA-SAN-SHAN ISLAND CH 38.883 121.81700000000001 161.0 19800714 20020212 546800 99999 BOGUS CHINESE CH 19801001 19851228 547020 99999 WANG CHIA CHING CH 0.0 0.0 -999.0 19800703 20030403 547050 99999 NANGONG CH 37.367 115.383 42.0 19610801 20051021 547070 99999 GUANG-ZUNG (?) CH 0.0 0.0 -999.0 19740504 19820419 547130 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801005 20060916 547140 99999 DEZHOU CH 37.433 116.31700000000001 22.0 19560820 20020212 547150 99999 LINGXIAN CH 37.333 116.56700000000001 19.0 19800701 20200624 547160 99999 LING HSIEN CH 0.0 0.0 -999.0 19740422 20020909 547230 99999 ZHAN-CHENG CH 0.0 0.0 -999.0 19731101 20020420 547250 99999 HUIMIN CH 37.5 117.53299999999999 12.0 19560820 20200624 547260 99999 BIN-XIAN CH 0.0 0.0 -999.0 19731004 20020829 547360 99999 YONGAN CH 37.55 118.73299999999999 6.0 19570601 20020930 547430 99999 NAME UNKNOWN CH 0.0 0.0 -999.0 19731005 20020801 547450 99999 CANG-SHANG CH 37.367 119.9 1.0 19740426 19840408 547510 99999 CHANG DAO CH 37.933 120.71700000000001 40.0 19860501 20200624 547530 99999 LONGKOU CH 37.617 120.31700000000001 5.0 19570601 20200624 547560 99999 DA-XIN-DIAN CH 37.617 120.9 100.0 19740426 20140503 547570 99999 APPROXIMATE LOCATIO CH 37.167 120.167 0.0 19770801 20090621 547580 99999 LAI-YANG AFLD (?) CH 36.967 120.583 72.0 19740504 20020709 547630 99999 YANTAI CH 37.55 121.4 25.0 19731108 20020520 547640 99999 FU-SHAN (?) CH 0.0 0.0 -999.0 19731109 20020605 547650 99999 YANTAI NORTHEAST CH 37.55 121.367 12.0 19560820 19611031 547720 99999 BOGUS CHINESE CH 19801004 20040628 547730 99999 BOGUS CHINESE CH 19801005 20020317 547740 99999 WEIHAI CH 37.45 122.03299999999999 61.0 19570601 20020930 547760 99999 CHENGSHANTOU CH 37.4 122.68299999999999 47.0 19570601 20200624 547900 99999 BOGUS CHINESE CH 19891001 19920529 548080 99999 XINXIAN CH 36.233000000000004 115.667 38.0 19570601 20200624 548230 99999 JINAN/TSINAN CH ZSTN 36.683 116.98299999999999 58.0 19560820 20200624 548260 99999 TAI SHAN CH 36.25 117.1 1536.0 19560820 20200624 548270 99999 TAI-AN CH 36.183 117.133 155.0 19570601 20020413 548300 99999 LIN-ZI CH 36.867 118.333 55.0 19570602 20020106 548360 99999 YIYUAN CH 36.183 118.15 302.0 19610701 20200624 548430 99999 WEIFANG CH 36.766999999999996 119.18299999999999 22.0 19560820 20200624 548460 99999 GAO-MI (?) CH 36.383 119.73299999999999 38.0 19800704 20011027 548520 99999 LAIYANG CH 36.983000000000004 120.65 72.0 19570601 20020930 548525 99999 NANTONG CH ZSNT 32.02 120.85 6.0 20050703 20200529 548530 99999 NANWU CH 0.0 0.0 -999.0 19731004 20020628 548570 99999 LIUTING CH ZSQD 36.266 120.374 10.1 19560820 20200624 548580 99999 CANG-KOU CH 36.167 120.367 10.0 19731110 20040126 548630 99999 HAIYANG CH 36.766999999999996 121.167 64.0 19570601 20200624 548680 99999 QIAN-LI ISLAND CH 36.266999999999996 121.383 18.0 19610801 20030211 548710 99999 SHIDAO CH 36.883 122.417 79.0 19560820 19611031 548970 99999 BOGUS CHINESE CH 19860604 20020808 549060 99999 HEZE/CAOZHOU CH 35.25 115.43299999999999 51.0 19560820 20020205 549070 99999 DING-TAO CH 35.067 115.56700000000001 0.0 19800401 19820428 549090 99999 DINGTAO CH 35.083 115.51700000000001 51.0 19950401 20200624 549150 99999 JI-NING CH 0.0 0.0 -999.0 19790702 20020713 549160 99999 YANZHOU CH 35.567 116.85 53.0 19560820 20200624 549230 99999 MENG YIN CH 0.0 0.0 -999.0 19800706 20020617 549290 99999 FEZXZAN CH 35.25 117.95 120.0 19980301 20200624 549360 99999 JUXIAN CH 35.55 118.75 109.0 19570601 20020930 549380 99999 LINYI CH 35.05 118.35 86.0 19570601 20010914 549450 99999 RIZHAO CH 35.433 119.53299999999999 37.0 19570601 20200624 549460 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19800704 19831124 549480 99999 BOGUS CHINESE CH 19801003 20020615 549520 99999 FLASHING LIGHT CH 35.967 120.48299999999999 25.0 19570601 20020609 551700 99999 20020603 20020603 552280 99999 SHIQUANHE CH 32.5 80.083 4280.0 19610701 20200624 552480 99999 LUMARINGBO CH 32.3 84.05 4420.0 19730313 20111117 552700 99999 20020117 20020117 552790 99999 BAINGOIN CH 31.366999999999997 90.01700000000001 4701.0 19570701 20200624 552940 99999 P'A-NA CH 32.266999999999996 91.667 4724.0 19801001 20020207 552990 99999 NAGQU CH 31.483 92.06700000000001 4508.0 19560820 20200624 553850 99999 BOGUS CHINESE CH 31.48 92.06 -999.0 20010717 20011008 554370 99999 T'U-KO-ERH-HO-KUNG CH 30.55 81.433 4736.0 19730313 20111117 554720 99999 XAINZA CH 30.95 88.633 4670.0 19600307 20200624 554880 99999 DEQEN SOUTH CH 30.333000000000002 90.083 5304.0 19591210 19620630 554930 99999 ZHA-TE-KE-TANG CH 30.733 92.45 4724.0 19630101 20020429 555690 99999 LHAZE CH 29.066999999999997 87.68299999999999 4237.0 19801001 20020207 555780 99999 XIGAZE CH 29.25 88.883 3837.0 19570701 20200624 555850 99999 BOGUS CHINESE CH 29.5 90.25 -999.0 19801027 20040928 555910 99999 LHASA CH ZULS 29.666999999999998 91.133 3650.0 19560820 20200624 555980 99999 NEDONG CH 29.233 91.76700000000001 3657.0 19591209 20020207 556560 99999 YALEP CH 28.383000000000003 86.15 5181.0 19800902 20020607 556640 99999 TINGRI CH 28.633000000000003 87.083 4300.0 19591210 20200624 556800 99999 GYANGZE CH 29.0 89.633 3657.0 19591209 20020207 556900 99999 CHE-KU CH 28.7 91.633 4336.0 19870311 20080712 556960 99999 LHUNZE CH 28.416999999999998 92.46700000000001 3861.0 19591209 20200624 557730 99999 PAGRI CH 27.733 89.083 4300.0 19560820 20200624 558210 99999 BOGUS CHINESE CH 19850301 19860921 559850 99999 20010802 20020824 559910 99999 19870511 19870511 560040 99999 TUOTUOHE CH 34.217 92.43299999999999 4535.0 19570701 20200624 560070 99999 AMDO NORTHEAST CH 33.417 92.833 4648.0 19591209 19620331 560160 99999 BIE-LI-XI-DU CH 34.1 95.03299999999999 4785.0 19730101 20030305 560180 99999 ZADOI CH 32.9 95.3 4068.0 19570701 20200624 560190 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801001 20050522 560210 99999 QUMARLEB CH 34.133 95.78299999999999 4176.0 19570701 20200624 560230 99999 NAME/LOCATION UNKN CH 0.0 0.0 -999.0 19801001 19820330 560260 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801005 20020308 560280 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801009 20061017 560290 99999 YUSHU CH 33.016999999999996 96.95 3682.0 19560820 20200624 560295 99999 YUSHU BATANG AIRPORT CH ZLYS 32.817 97.133 3890.0 20100415 20150310 560310 99999 APPROXIMATE LOCALE CH 34.833 97.46700000000001 0.0 19740809 20011017 560330 99999 MADOI CH 34.917 98.21700000000001 4273.0 19560820 20200624 560340 99999 QINGSHUI-HE CH 33.8 97.133 4419.0 19570701 20020207 560360 99999 CANG-DUO (?) CH 0.0 0.0 -999.0 19731005 20020311 560380 99999 SHIQU CH 32.983000000000004 98.1 4114.0 19601001 20100424 560410 99999 UNKNOWN CH 34.5 98.883 4175.0 19600102 20120527 560420 99999 BOGUS CHINESE CH 19830705 19860420 560430 99999 BOGUS CHINESE CH 19910101 20020207 560440 99999 BOGUS CHINESE CH 19830728 20010921 560460 99999 DARLAG CH 33.75 99.65 3968.0 19560820 20200624 560570 99999 BOGUS CHINESE CH 19831201 19851123 560650 99999 HENAN CH 34.733000000000004 101.6 3501.0 19610901 20200624 560670 99999 JIGZHI CH 33.467 101.48299999999999 3350.0 19600706 20020207 560690 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801001 20020814 560700 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740504 20031203 560740 99999 GA-HAI CH 34.2 102.3 3109.0 19890101 20031121 560750 99999 LANG-MU-SI CH 34.1 102.617 3565.0 19570630 20020704 560760 99999 XAGDOMBA EAST CH 34.1 102.9 3330.0 19740518 19741025 560790 99999 RUO'ERGAI CH 33.583 102.96700000000001 3441.0 19591209 20200624 560800 99999 HEZUO CH 35.0 102.9 2910.0 19580506 20200624 560850 99999 DENGKAGOIN CH 34.04 103.333 3166.0 19731005 19740924 560860 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801006 19850321 560890 99999 BAI-GU-SI CH 0.0 0.0 -999.0 19730102 20020713 560900 99999 BOGUS CHINESE CH 19801001 19850322 560930 99999 WU-SHAN CH 34.717 104.883 1371.0 19560820 20020523 560960 99999 WUDU CH 33.4 104.917 1079.0 19560820 20200624 560970 99999 YUNG-FENG-HSIANG N CH 33.033 104.117 2712.0 19591209 19610327 561060 99999 SOG XIAN CH 31.883000000000003 93.78299999999999 4024.0 19570701 20200624 561070 99999 TANGGO WEST CH 31.55 92.867 4185.0 19731108 19740920 561160 99999 DENGQEN CH 31.416999999999998 95.6 3874.0 19560820 20200624 561250 99999 NANGQEN CH 32.25 96.21700000000001 4145.0 19591203 20090225 561260 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801002 19841215 561270 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801001 20011203 561320 99999 GAO-RIK CH 32.5 97.93299999999999 3657.0 19591209 20170412 561370 99999 QAMDO CH 31.15 97.167 3307.0 19560820 20200624 561380 99999 QING-NI-DONG (?) CH 0.0 0.0 -999.0 19731005 20020529 561430 99999 DARCANG WEST CH 32.783 99.917 4147.0 19600201 19610227 561440 99999 DEGE CH 31.733 98.56700000000001 3201.0 19570701 20200624 561460 99999 GARZE CH 31.616999999999997 100.0 3394.0 19560820 20200624 561470 99999 CHUN-LUO-SI CH 0.0 0.0 -999.0 19740422 20020127 561510 99999 LUO-XUE CH 32.567 100.583 3505.0 19730101 20020927 561520 99999 SERTAR CH 32.283 100.333 3896.0 19610105 20200624 561560 99999 BOGUS CHINESE CH 19801001 20020815 561570 99999 BOGUS CHINESE CH 19801005 20020521 561670 99999 DAWU CH 30.983 101.117 2959.0 19790701 20200624 561710 99999 A-BA CH 32.917 101.7 3170.0 19570701 20020717 561720 99999 BARKAM CH 31.9 102.23299999999999 2666.0 19560820 20200624 561730 99999 MA-TANG CH 31.85 102.7 3422.0 19730101 20100424 561780 99999 XIAO-JIN CH 31.017 102.367 2426.0 19560820 20100424 561820 99999 SONGPAN CH 32.667 103.6 2882.5 19560820 20200624 561830 99999 ZHENJIANGGUAN CH 32.333 103.73299999999999 2697.0 19560820 19750514 561870 99999 WENJIANG CH 30.75 103.867 541.0 20050101 20200624 561880 99999 WENCHUAN CH 31.483 103.583 2042.0 19591209 20100424 561920 99999 BOGUS CHINESE CH 19801003 20020310 561930 99999 PINGWU CH 32.417 104.51700000000001 894.0 19570701 20061231 561940 99999 BOGUS CHINESE CH 19801002 20020615 561960 99999 MIANYANG CH 31.45 104.73299999999999 522.0 19591209 20200624 562020 99999 JIA-LI CH 30.783 93.4 4876.0 19591209 20120429 562270 99999 CHING-TO EAST CH 30.1 95.78299999999999 5108.0 19560820 19570531 562370 99999 BANG-DA CH 0.0 0.0 -999.0 19800701 19850907 562470 99999 BATANG CH 30.0 99.1 2589.0 19560820 20200624 562510 99999 XINLONG/NYAGRONG CH 30.967 100.2 3500.0 19591209 20100424 562570 99999 LITANG CH 30.0 100.26700000000001 3950.0 19560820 20200624 562650 99999 QIAN-NING CH 30.5 101.48299999999999 3452.0 19570701 19840611 562870 99999 YA'AN CH 29.983 103.0 629.0 19560820 20200624 562940 99999 SHUANGLIU CH ZUUU 30.579 103.947 495.3 19560820 20200624 562950 99999 CHIEN YANG CH 0.0 0.0 -999.0 19800701 20100531 562970 99999 REN-SHOU CH 30.0 104.133 610.0 19740806 20011204 562980 99999 ZIYANG SOUTHWEST CH 30.116999999999997 104.617 383.0 19591201 19610227 563120 99999 NYINGCHI CH 29.566999999999997 94.46700000000001 3001.0 19560820 20200624 563150 99999 DABBA SOUTHWEST CH 29.033 100.167 4553.0 19570701 19631231 563470 99999 ZEN-YAN (?) CH 0.0 0.0 -999.0 19731112 19860127 563570 99999 DAOCHENG CH 29.05 100.3 3729.0 19640101 20200624 563740 99999 KANGDING CH 30.05 101.96700000000001 2617.0 19570701 20200624 563750 99999 HAN-YUAN-JIE CH 0.0 0.0 -999.0 19731004 20011029 563760 99999 HAN-YUAN-CHIEH EAST CH 29.583000000000002 102.71700000000001 2209.0 19601001 19610227 563840 99999 E-BIAN CH 0.0 0.0 -999.0 19731004 20011104 563850 99999 EMEI SHAN CH 29.517 103.333 3049.0 19560820 20200624 563860 99999 LESHAN CH 29.566999999999997 103.76700000000001 440.0 19591209 20100424 564410 99999 BAME NORTHWEST CH 28.883000000000003 98.583 4413.0 19600101 19641231 564440 99999 DEQEN CH 28.45 98.883 3320.0 19560820 20200624 564590 99999 TU-ZHA CH 28.15 100.93299999999999 2743.0 19591209 20100424 564620 99999 JIULONG CH 29.0 101.5 2994.0 19560820 20200624 564625 99999 DAYONG CH ZGDY 29.133000000000003 100.48299999999999 900.0 20071010 20200117 564720 99999 GAN-LUO CH 0.0 0.0 -999.0 19790705 20020613 564740 99999 MIAN-NING CH 0.0 0.0 -999.0 19800701 20040630 564750 99999 YUEXE CH 28.616999999999997 102.6 1736.0 19570701 20100424 564790 99999 JIAGU NORTH CH 28.217 103.0 1892.0 19591209 19610227 564850 99999 HU-JIA-PU-ZIIA CH 28.517 103.617 1485.0 19570701 20100424 564920 99999 YIBIN CH 28.8 104.6 342.0 19440229 20200624 564940 99999 PING-SHAN (?) CH 0.0 0.0 -999.0 19800701 20020418 565330 99999 LA-WAN CH 27.683000000000003 98.35 3352.0 19591209 20100424 565430 99999 ZHONGDIAN CH 27.7 99.7 3001.0 19591209 20100424 565480 99999 WEIXI CH 27.217 99.31700000000001 2743.0 19570701 20100424 565610 99999 DA-CUN CH 0.0 0.0 -999.0 19740425 19840728 565620 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19731004 19840628 565650 99999 YANYUAN CH 27.433000000000003 101.53299999999999 2591.0 19591209 20100424 565710 99999 XICHANG CH 27.9 102.26700000000001 1599.0 19440325 20200624 565760 99999 ZHAO-ZI-BA CH 27.6 102.85 2347.0 19730101 20020316 565770 99999 BOGUS CHINESE CH 19890501 20020801 565810 99999 TIAN-DI-BA CH 0.0 0.0 -999.0 19790701 20020518 565860 99999 ZHAOTONG CH 27.333000000000002 103.75 1950.0 19450107 20200624 566470 99999 19731119 19740225 566510 99999 LIJING CH 26.833000000000002 100.21700000000001 2382.0 19440131 20200624 566520 99999 BOGUS CHINESE CH 19890108 20011224 566640 99999 LA-SHI CH 26.366999999999997 101.21700000000001 1210.0 19591209 20100424 566710 99999 HUILI CH 26.65 102.25 1788.0 19560820 20200624 566740 99999 OGUS CHINESE CH 0.0 0.0 -999.0 19731022 20011113 566810 99999 APPROXIMATE LOCALE CH 26.833000000000002 103.167 0.0 19801001 20020524 566840 99999 HUIZE CH 26.4 103.25 2189.3 19570701 20200624 566910 99999 WEINING CH 26.866999999999997 104.28299999999999 2236.0 19570701 20200624 567380 99999 MENG-KA CH 25.217 97.867 2134.0 19740112 19890830 567390 99999 TENGCHONG CH 24.983 98.5 1696.9 19570701 20200624 567410 99999 LIU-KU CH 25.783 98.85 2377.0 19591209 20020207 567450 99999 SHAN-YAN-ZHEN CH 0.0 0.0 -999.0 19800302 19841103 567480 99999 BAOSHAN CH 25.116999999999997 99.18299999999999 1649.0 19440326 20200624 567510 99999 DALI CH 25.7 100.18299999999999 1992.0 19431130 20200624 567630 99999 YUANMOU CH 25.733 101.867 1120.0 19560820 20200624 567680 99999 CHUXIONG CH 25.017 101.51700000000001 1820.0 19440131 20200624 567760 99999 APPROXIMATE LOCALE CH 25.633000000000003 102.96700000000001 0.0 19731113 20011229 567770 99999 JINSHAN NORTH CH 25.15 102.083 1580.0 19740421 19741202 567780 99999 WUJIABA CH ZPPP 24.991999999999997 102.744 1894.9 19420713 20200624 567860 99999 ZHANYI CH 25.583000000000002 103.833 1900.0 19440109 20200624 567930 99999 PU-AN CH 25.783 104.95 2133.0 19591209 20100424 568380 99999 RUILI CH 24.0 97.85 776.0 19591209 20200622 568390 99999 LU-XI CH 24.283 98.46700000000001 1524.0 19740730 20020222 568560 99999 JING-DONG CH 24.433000000000003 100.85 1676.0 19591209 20100424 568750 99999 YUXI CH 24.45 102.56700000000001 1677.0 19591209 20100424 568850 99999 MI-LE (?) CH 24.4 103.43299999999999 1402.0 19730102 20020124 568860 99999 LUXI CH 24.533 103.76700000000001 1708.0 19591209 20200624 569150 99999 NAME/LOCATION UNKN CH 0.0 0.0 -999.0 19801005 20010820 569160 99999 NAME/LOCATION UNKN CH 0.0 0.0 -999.0 19801001 20020303 569420 99999 MENG-SA CH 23.717 99.633 1524.0 19800313 20020327 569450 99999 MENGDING CH 23.566999999999997 99.083 512.0 19591209 19900405 569460 99999 GENGMA CH 23.55 99.4 1104.0 19900101 20200624 569510 99999 LINCANG CH 23.95 100.21700000000001 1503.0 19560820 20200624 569540 99999 LANCANG CH 22.566999999999997 99.93299999999999 1054.0 19570701 20200624 569590 99999 JINGHONG CH 22.0 100.78299999999999 579.0 19570701 20200624 569640 99999 SIMAO CH 22.767 100.98299999999999 1303.0 19440516 20200624 569650 99999 MENG-WANG CH 22.483 101.3 975.0 19740302 20020323 569660 99999 YUANJIANG CH 23.6 101.98299999999999 398.0 19560820 20200624 569690 99999 MENGLA CH 21.5 101.583 633.0 19730101 20200624 569750 99999 YI-SHA CH 23.316999999999997 102.367 1215.0 19731006 20020912 569770 99999 JIANGCHENG CH 22.616999999999997 101.81700000000001 1121.0 19730101 20200624 569790 99999 JIE-JIE CH 0.0 0.0 -999.0 19731004 19831223 569820 99999 KAI-YUAN CH 0.0 0.0 -999.0 19800402 20021030 569830 99999 BING-YUAN-JIE CH 23.7 103.833 1524.0 19800701 20020529 569850 99999 MENGZI CH 23.45 103.333 1313.6 19450228 20200624 569860 99999 DEHOUJIE CH 23.583000000000002 103.867 1423.0 19800701 20100424 569870 99999 BOGUS CHINESE CH 19801001 19841230 569880 99999 BOGUS CHINESE CH 19801002 19840614 569890 99999 HE-KOU CH 22.5 103.95 1363.0 19560820 20020927 569940 99999 WENSHAN CH 23.366999999999997 104.383 1278.0 19591204 20020106 569950 99999 BANG-O-JIE CH 0.0 0.0 -999.0 19731008 20011201 569990 99999 MALIPO SOUTHEAST CH 23.133000000000003 104.7 1057.0 19731111 19750421 570050 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801001 20050813 570060 99999 TIANSHUI CH 34.583 105.75 1143.0 19560820 20031231 570070 99999 HSI-LI SOUTH CH 34.1 105.03299999999999 1505.0 19731108 19741003 570140 99999 BEIDAO CH 34.57 105.87 1086.0 20050101 20200603 570160 99999 BAOJI CH 34.35 107.133 610.0 19560820 20041231 570230 99999 CUI-MU CH 34.8 107.867 914.0 19610901 20050423 570250 99999 FENGXIANG CH 34.516999999999996 107.383 781.0 20050502 20200624 570260 99999 APPROXIMATE LOCALE CH 34.483000000000004 107.95 0.0 19740422 20020322 570270 99999 BOGUS CHINESE CH 19850503 20040704 570340 99999 QIAN-XIAN CH 34.533 108.23299999999999 335.0 19620302 20020712 570360 99999 XIANYANG CH ZLXY 34.446999999999996 108.75200000000001 479.1 19560820 20200624 570460 99999 HUA SHAN CH 34.483000000000004 110.083 2063.0 19560820 20200624 570510 99999 BUCHANG SOUTHEAST CH 34.833 110.167 332.0 19570616 19590831 570630 99999 MIAN-CHI CH 0.0 0.0 -999.0 19800402 20040104 570670 99999 LUSHI CH 34.083 111.06700000000001 659.5 19560820 20200624 570680 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740421 20020722 570710 99999 MENGJIN CH 34.817 112.43299999999999 333.0 19830701 20200624 570720 99999 JIUMENGJIN CH 34.817 112.633 119.0 19570601 19580831 570730 99999 LUO-YANG CH 34.667 112.417 155.0 19560820 20040728 570770 99999 TIEN-HU CH 34.15 112.1 753.0 19610801 20020930 570780 99999 LYANG CH 34.15 112.46700000000001 400.0 19740423 20020617 570830 99999 XINZHENG CH ZHCC 34.52 113.84100000000001 150.9 19570601 20200624 570890 99999 XUCHANG CH 34.0 113.96700000000001 72.0 19570401 20020207 570910 99999 KAIFENG CH 34.75 114.417 67.0 19570602 20020930 570930 99999 NAO-KAO CH 0.0 0.0 -999.0 19790702 20020324 571020 99999 MING-YANG-CHEN CH 33.817 105.617 1524.0 19731111 20040426 571060 99999 CHENG-XIAN CH 33.75 105.75 1128.0 19560820 20020207 571270 99999 HANZHONG CH 33.067 107.03299999999999 509.0 19560820 20200624 571280 99999 YANG-XIAN CH 0.0 0.0 -999.0 19731005 20021013 571300 99999 NINGSHAN NORTHEAST CH 33.333 108.333 875.0 19600612 19610228 571310 99999 JINGHE CH 34.433 108.96700000000001 411.0 20061010 20200624 571340 99999 WEN-HUANG-PING CH 33.45 108.25 548.0 19570601 20020207 571370 99999 SHI-QUAN CH 0.0 0.0 -999.0 19740613 20040430 571430 99999 SHANGXIAN CH 33.917 109.95 748.0 19620302 20030724 571440 99999 CHEN-AN CH 33.417 109.15 610.0 19591209 20020207 571500 99999 APPROXIMATE LOCALE CH 33.483000000000004 110.43299999999999 0.0 19740421 20020515 571560 99999 SHANG-NAN CH 33.533 110.883 914.0 19570601 20020207 571730 99999 LUSHAN EAST CH 33.733000000000004 112.917 125.0 19731108 19740923 571780 99999 NANYANG CH 33.1 112.48299999999999 181.6 19560820 20200624 571810 99999 JIAXIAN CH 33.967 113.21700000000001 76.0 19570601 20020930 571880 99999 APPROXIMATE LOCALE CH 33.233000000000004 113.46700000000001 0.0 19731111 20020719 571890 99999 YUSHAN SOUTH CH 33.15 113.81700000000001 58.0 19560820 19581031 571930 99999 XIHUA CH 33.783 114.51700000000001 53.0 19560820 20200624 571970 99999 SHANG-CAI CH 0.0 0.0 -999.0 19800701 20050929 572030 99999 WU-TONG-YUAN CH 32.817 105.7 700.0 19740421 20020503 572060 99999 GUANG-YUAN CH 32.433 105.8 487.0 19560820 19841226 572070 99999 YAN-MEN-BA (?) CH 0.0 0.0 -999.0 19740425 20060301 572080 99999 ZHAO-HUA CH 32.333 105.68299999999999 675.0 19731018 20040924 572210 99999 YU-SHU-MTHO (?) CH 0.0 0.0 -999.0 19740422 20020918 572320 99999 HAN-YIN CH 32.9 108.51700000000001 457.0 19620302 20020207 572370 99999 WANYUAN CH 32.067 108.03299999999999 674.0 19560820 20200624 572380 99999 JAN-CHIA-PA CH 32.1 108.48299999999999 1372.0 19730101 20020817 572450 99999 ANKANG CH 32.717 109.03299999999999 291.0 19560820 20200624 572510 99999 BAIHE CH 32.766999999999996 110.117 610.0 19740423 20070727 572530 99999 YUN-XIAN CH 32.8 110.8 100.0 19570601 19891014 572550 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801002 20050313 572590 99999 FANGXIAN CH 32.033 110.76700000000001 435.0 19591101 20200624 572650 99999 LAOHEKOU CH 32.433 111.73299999999999 128.8 19560820 20200624 572780 99999 APPROXIMATE LOCALE CH 32.317 112.633 0.0 19731007 20070727 572790 99999 ZAOYANG CH 32.15 112.667 127.0 19570602 20200624 572900 99999 ZHUMADIAN CH 32.933 113.917 107.2 19581105 20200624 572970 99999 XINYANG CH 32.133 114.05 115.0 19560820 20200624 572980 99999 LUO-SHAN CH 32.217 114.53299999999999 75.0 19730519 20020822 572990 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740421 20050805 573060 99999 LANGZHONG CH 31.583000000000002 105.96700000000001 385.0 19591208 20200624 573070 99999 SANTAI CH 31.083000000000002 105.083 385.0 19740112 19741128 573130 99999 BAZHONG CH 31.9 106.7 360.0 19570701 20100424 573210 99999 APPROXIMATE LOCALE CH 31.883000000000003 107.083 0.0 19740425 20020605 573270 99999 YONG-XING CH 0.0 0.0 -999.0 19740425 20170529 573280 99999 DA XIAN CH 31.2 107.5 344.0 19560820 20200624 573450 99999 WU-XI (?) CH 0.0 0.0 -999.0 19740421 20011120 573470 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19731008 20020107 573480 99999 FENGJIE CH 31.017 109.53299999999999 303.0 19560820 20200624 573550 99999 SHIH-PU-SA NORTH CH 31.666999999999998 110.367 2182.0 19591103 19591229 573650 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740611 20020101 573670 99999 APPROXIMATE LOCALE CH 31.166999999999998 111.167 0.0 19740514 20020322 573770 99999 WU-JIA-CHI(CHI-AFB) CH 31.116999999999997 112.4 198.0 19740421 20020528 573780 99999 ZHONGXIANG CH 31.166999999999998 112.633 108.9 19560820 20200624 573790 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740621 20020705 573850 99999 SUIZHOU CH 31.717 113.367 61.0 19610901 20020207 573940 99999 YINGSHAN NORTH CH 31.616999999999997 113.81700000000001 106.0 19570602 19610831 573980 99999 HONG-AN CH 0.0 0.0 -999.0 19740421 19840527 573990 99999 MACHENG CH 31.133000000000003 114.95 75.2 19570601 20200624 574050 99999 SUINING CH 30.5 105.583 300.0 19591202 20100424 574060 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19731108 19840921 574070 99999 19740616 19740922 574110 99999 GAOPING CH 30.75 106.133 347.0 19560820 20200624 574240 99999 BOGUS CHINESE CH 19840101 20020529 574260 99999 LIANGPING CH 30.683000000000003 107.8 455.0 19560820 20200624 574280 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740429 20020227 574310 99999 20011118 20020530 574320 99999 WANXIAN CH 30.8 108.35 299.0 19591209 20100424 574370 99999 ZHONG-XIAN (?) CH 0.0 0.0 -999.0 19740601 20010712 574450 99999 APPROXIMATE LOCALE CH 30.6 109.53299999999999 0.0 19731108 20070727 574470 99999 ENSHI CH 30.283 109.46700000000001 458.0 19450331 20200624 574480 99999 EN-SHI (CHI-AFB) CH 30.3 109.48299999999999 457.0 19740421 20020615 574500 99999 ZIGUI CH 31.017 110.7 442.0 19900401 20000216 574510 99999 LU-CONG-PO CH 30.783 110.26700000000001 1188.0 19570601 20010615 574570 99999 GUAN-DIAN-GOU (?) CH 0.0 0.0 -999.0 19740421 20020930 574580 99999 WU-FENG CH 30.2 110.667 915.0 19570601 20100424 574610 99999 YICHANG CH 30.733 111.367 257.7 19560820 20200624 574620 99999 YI-CHANG (CHI-AFB) CH 30.683000000000003 111.45 107.0 19730101 20020703 574660 99999 JIANG-KOU (?) CH 0.0 0.0 -999.0 19740425 20020425 574720 99999 SHA-YANG (?) CH 0.0 0.0 -999.0 19740425 20020825 574760 99999 JIANGLING CH 30.333000000000002 112.18299999999999 33.0 19570601 20200624 574770 99999 SHA-SHI (?) CH 0.0 0.0 -999.0 19731004 20020819 574780 99999 YANG-JIA-CHANG CH 0.0 0.0 -999.0 19740615 20020523 574830 99999 FENSUIZUI NORTH CH 30.65 113.65 30.0 19570601 19610324 574910 99999 19731005 19740808 574940 99999 TIANHE CH ZHHH 30.784000000000002 114.208 34.4 19560820 20200624 574941 99999 SANYA PHOENIX INTL CH ZJSY 18.303 109.412 28.0 20040713 20200624 575030 99999 NEIJIANG CH 29.616999999999997 105.117 349.0 20030330 20200624 575040 99999 NEIJIANG CH 29.583000000000002 105.05 357.0 19560820 20020815 575060 99999 DA-ZU CH 29.633000000000003 105.76700000000001 305.0 19740423 20020415 575150 99999 CHONG-QING CH 29.517 106.48299999999999 351.0 19560820 19870114 575160 99999 JIANGBEI CH ZUCK 29.719 106.64200000000001 416.1 19441111 20200624 575220 99999 FOU-LING CH 29.717 107.4 275.0 19591209 20020207 575250 99999 XIANG-GOU CH 0.0 0.0 -999.0 19740613 19840131 575270 99999 NAN-CHUAN (?) CH 0.0 0.0 -999.0 19740422 20020529 575320 99999 WEN-TOU CH 29.866999999999997 108.56700000000001 610.0 19800803 20050722 575370 99999 PENG-SHUI CH 29.25 108.167 314.9 19570701 19740831 575450 99999 LAIFENG CH 29.533 109.383 561.0 19450430 20100424 575540 99999 SANGZHI CH 29.4 110.167 322.0 19591101 20200624 575570 99999 SHA-DI-QI CH 29.05 110.133 455.0 19800311 20021225 575620 99999 SHI-MEN CH 29.583000000000002 111.3 91.0 19591102 20100424 575640 99999 CI-LI CH 0.0 0.0 -999.0 19740518 19830528 575690 99999 CHANG-DE (?) CH 0.0 0.0 -999.0 19740601 20020307 575720 99999 ZHI-ZHOU CH 29.733 112.3 76.0 19790903 20020605 575730 99999 JIAN-LI CH 29.816999999999997 112.883 27.0 19740805 20011003 575740 99999 ANXIANG CH 29.433000000000003 112.18299999999999 28.0 19591101 20100424 575760 99999 NAN XIAN SOUTH CH 29.333000000000002 112.417 31.0 19570601 19580731 575830 99999 PUQI CH 29.717 113.883 61.0 19570603 20100424 575840 99999 YUEYANG CH 29.383000000000003 113.083 52.0 19560820 20200624 575940 99999 CHONG-YANG (?) CH 0.0 0.0 -999.0 19800705 20020822 575970 99999 MA-AO (?) CH 0.0 0.0 -999.0 19740426 20020621 575980 99999 XIUSHUI CH 29.033 114.583 147.0 19560820 20200624 575990 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19731202 19850302 576020 99999 LUZHOU CH 28.883000000000003 105.43299999999999 336.0 19450630 20021231 576040 99999 NAXI CH 28.783 105.383 364.0 20030330 20200624 576060 99999 CH'IH-SHUI HO CH 28.483 105.93299999999999 977.0 19570701 20100424 576070 99999 DA-BA CH 0.0 0.0 -999.0 19740613 20020911 576080 99999 XUYONG/YONGNING CH 28.217 105.43299999999999 366.0 19591209 20100424 576140 99999 CHIU-HSI-SHUI SOUTH CH 28.566999999999997 106.083 289.0 19600201 19610222 576220 99999 JINFO SHAN (MOUNT) CH 28.95 107.15 1907.0 19560820 20020613 576230 99999 CHEN-NAN CH 0.0 0.0 -999.0 19740425 20020410 576320 99999 CHANG-PU-QI CH 0.0 0.0 -999.0 19740421 20020622 576330 99999 YOUYANG CH 28.833000000000002 108.76700000000001 665.0 19560820 20200624 576450 99999 HUA-YUAN CH 0.0 0.0 -999.0 19740425 20020406 576460 99999 APPROXIMATE LOCALE CH 28.5 109.833 0.0 19740423 20020927 576490 99999 QIAN-ZHOU-ZHEN CH 28.267 109.68299999999999 560.0 19600101 20100424 576530 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740421 19840602 576550 99999 YUANLING CH 28.467 110.4 143.0 19560820 20200624 576590 99999 APPROXIMATE LOCALE CH 28.166999999999998 110.96700000000001 0.0 19740421 20020809 576620 99999 CHANGDE CH 29.05 111.68299999999999 35.0 19560820 20200624 576630 99999 HAN-SHOU (?) CH 0.0 0.0 -999.0 19800706 20020608 576650 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740601 20041112 576660 99999 MA-JI-TANG (?) CH 0.0 0.0 -999.0 19731108 20120913 576670 99999 DARONGTANG SOUTHEAST CH 28.316999999999997 111.133 397.0 19740421 19740919 576690 99999 MEI-CHENG-ZHEN CH 28.15 111.633 201.0 19570602 20100424 576710 99999 YUANJIANG CH 28.85 112.383 27.0 19570602 20100424 576720 99999 YUAN-JIANG CH 0.0 0.0 -999.0 19731101 20020528 576760 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740427 20020310 576770 99999 BOGUS CHINESE CH 19890101 20020921 576790 99999 CHANGSHA/DATUOPU CH ZGCS 28.2 113.083 46.0 19560820 19880714 576820 99999 PINGJIANG CH 28.75 113.617 88.0 19591101 20100424 576870 99999 CHANGSHA CH 28.116999999999997 112.78299999999999 120.0 19440214 20200624 576930 99999 SHI-MEN-LOU CH 28.983 114.85 152.0 19740427 20020709 576990 99999 SHANG-GAO CH 0.0 0.0 -999.0 19740425 20010819 577060 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19801001 20010715 577070 99999 BIJIE CH 27.3 105.23299999999999 1511.0 19560820 20200624 577080 99999 DA-FANG CH 27.15 105.6 1520.0 19731016 20020530 577120 99999 HUICHUAN CH 27.733 106.95 984.0 19800701 20200624 577130 99999 ZUNYI CH 27.7 106.883 845.0 19560820 20110108 577150 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740423 20020503 577160 99999 APPROXIMATE LOCALE CH 27.5 106.833 914.0 19740425 20020627 577220 99999 MEITAN SOUTHWEST CH 27.75 107.43299999999999 786.0 19591209 19610228 577230 99999 LONG-ZHUAN CH 0.0 0.0 -999.0 19800710 20011201 577250 99999 20011011 20020519 577260 99999 BOGUS CHINESE CH 0.0 0.0 -999.0 19740610 20020123 577310 99999 SINAN CH 27.95 108.25 418.0 19570701 20200624 577320 99999 DE-WANG CH 0.0 0.0 -999.0 19731004 20020615 577380 99999 CHEN-YUAN CH 27.05 108.4 464.0 19560820 19580203 577410 99999 TONGREN NORTHWEST CH 27.733 109.167 335.0 19591209 19610228 577450 99999 ZHIJIANG CH 27.45 109.68299999999999 273.0 19430930 20200624 577490 99999 HUAIHUA CH 27.566999999999997 110.0 261.0 19800307 20021205 577530 99999 XU-BU CH 27.916999999999998 110.583 152.0 19730906 20021007 577540 99999 QIAN-YANG (?) CH 0.0 0.0 -999.0 19740427 20020306 577590 99999 LONG-HUI-ANG CH 27.35 110.95 644.0 19800410 20020331 577650 99999 APPROXIMATE LOCALE CH 27.5 111.5 0.0 19801001 20050518 577660 99999 SHAOYANG CH 27.183000000000003 111.45 310.4 19570602 20200624 577720 99999 XIANG-XIANG CH 27.733 112.53299999999999 76.0 19740802 20020316 577730 99999 XIANG-TAN CH 27.883000000000003 112.917 75.0 19740802 20020827 577740 99999 SHUANG-FENG CH 27.45 112.2 916.0 19570602 20100424 577760 99999 NANYUE CH 27.3 112.7 1268.0 19560820 20200624 577830 99999 TONG-MU CH 0.0 0.0 -999.0 19731004 19840529 577920 99999 YI-CHUN CH 0.0 0.0 -999.0 19740111 20011111 577930 99999 YICHUN CH 27.8 114.383 129.0 19560820 20200624 577990 99999 JI'AN CH 27.116999999999997 114.96700000000001 78.0 19560820 20200624 578020 99999 APPROXIMATE LOCATIO CH 26.833000000000002 105.5 0.0 19801001 20041009 578030 99999 ZHI-JIN CH 26.7 105.76700000000001 1676.0 19600301 20100424 578060 99999 ANSHUN CH 26.267 105.96700000000001 1402.0 19591202 20100424 578070 99999 LANG-TAI CH 26.05 105.21700000000001 899.0 19731004 20041122 578130 99999 YANG-CHANG (?) CH 0.0 0.0 -999.0 19730813 20020803 578160 99999 LONGDONGBAO CH ZUGY 26.539 106.801 1138.7 19450204 20200624 578220 99999 FUQUAN CH 26.7 107.5 896.0 19731004 19740914 578230 99999 DAO-PING (?) CH 0.0 0.0 -999.0 19800707 20040522 578250 99999 MA-JIANG CH 26.5 107.583 726.0 19450310 20100424 578310 99999 TAI-JIANG CH 26.666999999999998 108.333 607.0 19730816 20010725 578320 99999 SANSUI CH 26.967 108.667 631.0 19591209 20200624 578340 99999 LEISHAN NORTHEAST CH 26.433000000000003 108.133 926.0 19740421 19740819 578430 99999 HUI-TONG CH 26.866999999999997 109.71700000000001 305.0 19800304 20011124 578450 99999 TONGDAO CH 26.166999999999998 109.78299999999999 397.0 19591101 20200624 578470 99999 20010909 20020526 578530 99999 WUGANG CH 26.733 110.633 340.0 19570601 20200624 578660 99999 LINGLING CH 26.233 111.617 174.0 19430531 20200624 578720 99999 HENGYANG CH 26.933000000000003 112.583 98.0 19430831 20100424 578820 99999 CHA-LING CH 0.0 0.0 -999.0 19730103 19840930 578830 99999 CHALING CH 26.8 113.53299999999999 176.0 19570601 20020922 578910 99999 HECHUAN CH 26.95 114.23299999999999 122.0 19610901 19630131 578930 99999 TAI-HO CH 26.783 114.9 50.0 19730103 20020723 578960 99999 HUANGDIAN CH 26.25 114.333 282.0 19570601 19610314 578961 99999 SUI-CHUAN CH 26.333000000000002 114.5 152.0 19430930 19460228 579010 99999 HUA-GONG CH 0.0 0.0 -999.0 19800706 20040214 579020 99999 XINGREN CH 25.433000000000003 105.18299999999999 1379.0 19560820 20200624 579060 99999 ZHEN-FENG CH 25.383000000000003 105.65 571.0 19600701 20100424 579090 99999 WANGMO NORTHWEST CH 25.25 105.867 359.0 19600201 19600229 579110 99999 GUDONG WEST CH 25.95 107.133 977.0 19740421 19740819 579130 99999 APPROXIMATE LOCATIO CH 25.833000000000002 106.833 0.0 19801004 19850710 579160 99999 LUODIAN CH 25.433000000000003 106.76700000000001 441.0 19560820 20200624 579220 99999 DUSHAN CH 25.833000000000002 107.55 971.0 19450430 20200624 579230 99999 JIANGZHAI CH 25.883000000000003 107.75 536.0 19731119 19740912 579250 99999 LIU-CHAI CH 25.3 107.4 854.0 19570602 19830914 579270 99999 APPROXIMATE LOCALE CH 25.283 107.3 0.0 19740425 20020611 579310 99999 APPROXIMATE LOCALE CH 25.85 108.083 0.0 19740601 20011025 579320 99999 RONGJIANG CH 25.967 108.53299999999999 287.0 19560820 20200624 579440 99999 GONGDONG SOUTHEAST CH 25.533 109.2 423.0 19740421 19741202 579470 99999 RONG-SHUI CH 25.066999999999997 109.25 183.0 19570603 20100424 579570 99999 LIANGJIANG CH ZGKL 25.218000000000004 110.039 173.7 19430606 20200624 579580 99999 NAME UNKNOWN CH 0.0 0.0 -999.0 19731004 20020507 579600 99999 DAO XIAN NORTH CH 25.55 111.583 179.0 19610107 19610314 579620 99999 NAME UNKNOWN (ONC) CH 0.0 0.0 -999.0 19740513 20021205 579650 99999 DAOXIAN CH 25.616999999999997 111.6 152.0 19730101 20100424 579660 99999 NING-YUAN (?) CH 0.0 0.0 -999.0 19800405 20020106 579680 99999 TUO-JIANG (?) CH 25.183000000000003 111.583 122.0 19570601 19850331 579720 99999 CHENZHOU CH 25.733 112.96700000000001 368.8 19560820 20200624 579730 99999 GUI-YANG (?) CH 0.0 0.0 -999.0 19731004 20020326 579820 99999 APPROXIMATE LOCALE CH 25.833000000000002 113.5 0.0 19740729 20020909 579830 99999 NAME UNKNOWN CH 0.0 0.0 -999.0 19740806 20040118 579920 99999 SHANG-YU CH 25.8 114.53299999999999 202.0 19730103 20020516 579930 99999 GANZHOU CH ZSGZ 25.85 114.95 125.0 19441130 20200624 579931 99999 YAOQIANG CH ZSJN 36.857 117.21600000000001 23.2 20050617 20200624 579950 99999 19740611 19740915 579960 99999 XIN-FENG CH 25.4 114.93299999999999 195.0 19591101 20100424 580050 99999 SHANGQIU CH 34.4 115.633 50.0 19610801 20040515 580150 99999 TANG-SHAN CH 34.417 116.333 44.0 19570531 20100424 580270 99999 XUZHOU CH 34.283 117.15 42.0 19560820 20200624 580280 99999 XUZHOU / GUANYIN ARPT CH ZSXZ 34.059 117.556 35.1 19731104 20031001 580400 99999 GANYU CH 34.85 119.133 10.0 19580104 20200624 580440 99999 NANCHENG NORTHEAST CH 34.583 119.25 4.0 19560821 19571231 580570 99999 LIUDUO SOUTHWEST CH 34.067 120.21700000000001 3.0 19570602 19591231 580830 99999 BOGUS CHINESE CH 19801003 20020923 581020 99999 BOXIAN CH 33.783 115.73299999999999 40.3 19560821 20200624 581220 99999 SUINING CH 33.9 117.95 26.0 19570601 20100424 581340 99999 SI-HONG CH 33.467 118.21700000000001 15.0 19740401 20020717 581370 99999 SHUANG-GOU CH 33.217 118.18299999999999 14.0 19800707 20030213 581380 99999 HONGZE HU (LAKE) CH 33.333 118.667 2.0 19570602 20100424 581400 99999 CHIANELO CH 26.767 117.367 183.0 19790710 19810529 581410 99999 HUAIYIN CH 33.633 118.93299999999999 13.7 20040713 20200624 581440 99999 QINGJIANG CH 33.6 119.03299999999999 19.0 19560820 20040206 581500 99999 SHEYANG CH 33.75 120.3 3.0 19600101 20200624 581930 99999 NAME/LOCATION UNKN CH 0.0 0.0 -999.0 19801005 20020111 582020 99999 TSAOCHUANG CH 0.0 0.0 -999.0 19740426 20020319 582030 99999 FUYANG CH 32.867 115.73299999999999 33.0 19570601 20200624 582070 99999 HUANG-CHUAN (?) CH 0.0 0.0 -999.0 19740425 20020511 582080 99999 GUSHI CH 32.167 115.617 44.0 19560820 20200624 582110 99999 YING-SHANG CH 0.0 0.0 -999.0 19801001 20020615 582150 99999 SHOUXIAN/SHOUYANG CH 32.583 116.78299999999999 23.0 19570601 20100424 582210 99999 BENGBU CH 32.85 117.3 28.0 19560820 20200624 582310 99999 JIA-SHAN CH 0.0 0.0 -999.0 19731004 20020809 582340 99999 CHU-XIAN CH 0.0 0.0 -999.0 19740425 20030413 582360 99999 CHUZHOU EAST CH 32.317 118.333 26.0 19570601 19610322 582370 99999 JIANG-PU (?) CH 0.0 0.0 -999.0 19800703 20020731 582380 99999 LUKOU CH ZSNJ 31.741999999999997 118.86200000000001 14.9 19560820 20200624 582390 99999 LISHE CH ZSNB 29.825 121.465 4.0 20040825 20200624 582410 99999 GAOYOU CH 32.783 119.45 3.0 19591101 20100424 582440 99999 DAYIJI NORTH CH 32.55 119.23299999999999 30.0 19740112 20120523 582450 99999 YANG-ZHOU (?) CH 0.0 0.0 -999.0 19740423 20040128 582500 99999 HAIAN NORTHEAST CH 32.567 120.46700000000001 12.0 19731004 19741204 582510 99999 DONGTAI CH 32.85 120.28299999999999 4.0 19560820 20200624 582520 99999 AN-FENG CH 0.0 0.0 -999.0 19801001 20030227 582580 99999 MO-TOU AIR BASE CH 32.266999999999996 120.5 6.0 19740611 19840120 582590 99999 NANTONG/JINSHA CH 32.1 120.867 1.0 19570601 20100424 582650 99999 LUSI CH 32.067 121.6 10.0 19570602 20200624 582660 99999 BOGUS CHINESE CH 19830701 19890503 582670 99999 RU-DONG CH 0.0 0.0 -999.0 19731109 20050405 583140 99999 HUOSHAN CH 31.4 116.333 68.0 19560820 20200624 583210 99999 LUOGANG CH ZSOF 31.78 117.29799999999999 32.9 19560820 20200624 583211 99999 PUDONG CH ZSPD 31.143 121.805 4.0 20040713 20200624 583212 99999 JINJIANG AIRPORT CH ZSQZ 24.796 118.59 51.0 20100727 20191102 583213 99999 ZHOUSHAN AIRPORT CH ZSZS 29.934 122.36200000000001 9.0 20110116 20140826 583230 99999 SHIH-TANG-JIAO BASE CH 0.0 0.0 -999.0 19801012 20020301 583240 99999 SHAN-HE CH 0.0 0.0 -999.0 19731005 20031011 583250 99999 SHENG-JIA-QIAO CH 0.0 0.0 -999.0 19801005 20030306 583260 99999 CHAOHU WEST CH 31.6 117.833 21.0 19570601 19610314 583270 99999 KONG-CHENG CH 0.0 0.0 -999.0 19801005 20010713 583280 99999 HUANG GU-JIA CH 0.0 0.0 -999.0 19801002 20050524 583340 99999 WU-HU CH 31.333000000000002 118.35 20.0 19570601 19860114 583380 99999 WUHUXIAN CH 31.15 118.583 16.0 19860101 20200624 583430 99999 CHANGZHOU CH 31.767 119.95 15.0 19560820 20100424 583450 99999 LIYANG CH 31.433000000000003 119.48299999999999 8.0 19570601 20200624 583570 99999 WA LI CH 0.0 0.0 -999.0 19730103 20020523 583580 99999 SUZHOU CH 31.267 120.617 19.0 19570602 20100424 583620 99999 SHANGHAI CH 31.4 121.46700000000001 4.0 19910615 20200624 583670 99999 HONGQIAO INTL CH ZSSS 31.198 121.336 3.0 19560820 20200624 583680 99999 BOGUS CHINESE CH 19801004 20031129 583780 99999 HUINAN EAST CH 31.183000000000003 122.367 0.0 19731004 19740919 584020 99999 YINGSHAN CH 30.75 115.667 116.0 19591101 20100424 584030 99999 LEI-CHIA-TIEN WEST CH 30.883000000000003 115.71700000000001 260.0 19731004 19740817 584070 99999 QIZHOU CH 30.066999999999997 115.333 29.0 19570601 20100424 584080 99999 MEI-CHUAN CH 30.133000000000003 115.6 73.0 19731004 20040703 584140 99999 TAI-HU CH 0.0 0.0 -999.0 19800706 20020303 584240 99999 ANQING CH 30.616999999999997 116.96700000000001 63.2 19560820 20200624 584360 99999 HELIXI CH 30.633000000000003 118.96700000000001 53.0 19570601 19740813 584370 99999 HUANG SHAN CH 30.133000000000003 118.15 1836.0 19560820 20200624 584380 99999 JING-DE CH 0.0 0.0 -999.0 19730403 20040928 584450 99999 TIANMU SHAN (MTNS) CH 30.35 119.417 1494.0 19570603 20020209 584470 99999 HE-QIAO CH 0.0 0.0 -999.0 19731004 20020730 584510 99999 WU-XING CH 0.0 0.0 -999.0 19800809 20020709 584560 99999 HUANG WAN CH 0.0 0.0 -999.0 19731004 20020118 584570 99999 XIAOSHAN CH ZSHC 30.228 120.432 7.0 19560820 20200624 584580 99999 SHAO-XING (?) CH 0.0 0.0 -999.0 19731004 20020708 584610 99999 JIN-SHAN CH 0.0 0.0 -999.0 19740421 20040716 584620 99999 MIN-HANG CH 0.0 0.0 -999.0 19730702 20020612 584640 99999 ZHA-PU CH 30.616999999999997 121.083 7.0 19570601 20100424 584670 99999 YU-YAO CH 0.0 0.0 -999.0 19570602 20070727 584720 99999 SHENGSI CH 30.733 122.45 81.0 19581001 20200624 584730 99999 SHENG SHANG CH 30.717 122.81700000000001 197.0 19800401 20020502 584740 99999 DACHU SHAN CH 30.45 122.3 152.0 19891201 20050728 584760 99999 LANG-GANG ISLAND CH 30.433000000000003 122.917 95.0 19800401 20020519 584770 99999 DINGHAI CH 30.033 122.117 37.0 19560820 20200624 584780 99999 ZHI-ZHI ISLAND CH 0.0 0.0 -999.0 19740426 20030310 585020 99999 FENLU SOUTHEAST CH 29.75 115.917 31.0 19560820 19631231 585060 99999 LU SHAN CH 29.583000000000002 115.98299999999999 1165.0 19560820 20200624 585170 99999 BOGUS CHINESE CH 19801003 20020629 585190 99999 GU-XIAN-DU CH 29.083000000000002 116.883 31.0 19570602 20100424 585210 99999 APPROXIMATE LOCATIO CH 29.833000000000002 117.167 0.0 19801010 20060214 585270 99999 JINGDEZHEN CH 29.3 117.2 60.0 19560820 20200624 585280 99999 KOMATSUSHIMA AB CH 29.166999999999998 117.5 0.0 19801002 20020702 585290 99999 APPROXIMATE LOCATIO CH 29.166999999999998 117.833 0.0 19801002 19840529 585310 99999 TUNXI CH 29.717 118.26700000000001 145.0 19570601 20130218 585320 99999 SHE-XIAN CH 0.0 0.0 -999.0 19740802 20011203 585370 99999 HUA-BU CH 0.0 0.0 -999.0 19740423 20020214 585430 99999 CHUN AN CH 29.616999999999997 119.01700000000001 172.0 20070727 20200624 585490 99999 JINHUA CH 29.15 119.633 35.0 19570602 20100424 585540 99999 YI-WU/AIRFIELD CH 29.35 120.01700000000001 91.0 19740421 20030330 585560 99999 SHENGXIAN CH 29.6 120.81700000000001 108.0 19570601 20200624 585590 99999 TIAN-TAI CH 29.15 121.01700000000001 67.0 19740422 20020524 585620 99999 NINGBO CH 29.916999999999998 121.46700000000001 6.0 19570601 20100424 585690 99999 SHIPU CH 29.2 121.95 127.0 19570601 20200624 586060 99999 CHANGBEI INTL CH ZSCN 28.865 115.9 43.6 19560820 20200624 586070 99999 HUI-HE CH 0.0 0.0 -999.0 19740422 19840609 586080 99999 QINGJIANG/ZHANGSHUZ CH 28.05 115.53299999999999 40.0 19570601 20021209 586180 99999 POTOU CH 38.083 116.55 13.0 19970611 20041004 586210 99999 LE-PING (?) CH 28.983 117.117 49.0 19740424 19810525 586250 99999 YI-YANG CH 0.0 0.0 -999.0 19740112 19841121 586260 99999 SHANGRAO CH 28.483 117.98299999999999 90.0 19570301 20100424 586270 99999 XIONGSHI NORTHEAST CH 28.3 117.21700000000001 39.0 19740423 19740919 586310 99999 YU-SHAN CH 28.666999999999998 118.25 94.0 19740421 19840505 586320 99999 CHANG-SHAN CH 28.933000000000003 118.5 137.0 19740425 20030101 586330 99999 QU XIAN CH 28.967 118.867 71.0 19560820 20200624 586340 99999 YUSHAN CH 28.683000000000003 118.25 94.0 19570601 20100424 586440 99999 19740503 19740810 586450 99999 19740523 19740723 586460 99999 LISHUI CH 28.45 119.917 60.0 19560820 20200624 586470 99999 LONGQUAN CH 28.1 119.083 180.0 19570301 20041123 586480 99999 AN-REN CH 28.05 119.333 274.0 19740421 19840513 586530 99999 KUOCANG SHAN CH 28.816999999999997 120.917 1375.0 19570601 20011017 586540 99999 JIN-YUN CH 0.0 0.0 -999.0 19740425 19840517 586550 99999 YONG-LIN CH 0.0 0.0 -999.0 19731004 20020429 586580 99999 KENG-KOU CH 0.0 0.0 -999.0 19740616 20020116 586590 99999 WENZHOU CH ZSWZ 28.017 120.667 7.0 19560820 20181113 586600 99999 LINHAI (REPLACED BY 58652 - XIANJU) CH 28.85 121.133 9.0 19940801 20111121 586620 99999 HAI-MEN CH 28.683000000000003 122.133 3.0 19731004 20020617 586650 99999 HONGJIA CH 28.616999999999997 121.417 2.0 19560820 20100424 586660 99999 DACHEN DAO CH 28.45 121.883 84.0 19591101 20200624 586670 99999 YU-HUAN CH 28.133000000000003 121.21700000000001 100.0 19570601 20100424 586690 99999 SONGMEN SOUTHEAST CH 28.283 121.73299999999999 2.0 19731026 19740801 587130 99999 HUANG-SHI-DU CH 0.0 0.0 -999.0 19740601 20020803 587150 99999 NANCHENG CH 27.583000000000002 116.65 82.0 19560820 20200624 587210 99999 NAME UNKNOWN (ONC) CH 27.717 117.05 305.0 19740425 19851024 587230 99999 19740601 19740919 587250 99999 SHAOWU CH 27.333000000000002 117.46700000000001 219.0 19570602 20200624 587260 99999 QIXIAN SHAN CH 27.95 117.833 1415.0 19560820 19940718 587300 99999 WUYISHAN CH 27.767 118.03299999999999 221.0 19920301 20200624 587310 99999 PUCHENG CH 27.916999999999998 118.53299999999999 275.0 19560820 20200624 587320 99999 APPROXIMATE LOCATIO CH 27.833000000000002 118.5 0.0 19801001 20011230 587340 99999 JIAN-YANG CH 0.0 0.0 -999.0 19570601 20020620 587350 99999 APPROXIMATE LOCATIO CH 27.5 118.5 0.0 19801001 20020518 587360 99999 XIONG MOUNTAIN CH 0.0 0.0 -999.0 19600309 19840815 587370 99999 JIAN'OU CH 27.05 118.31700000000001 112.0 19570601 20100424 587450 99999 SHOU-NING CH 27.467 119.48299999999999 732.0 19570609 20020730 587470 99999 LI-MEN CH 0.0 0.0 -999.0 19740425 20030610 587490 99999 FU AN CH 0.0 0.0 -999.0 19740601 19850920 587520 99999 RUIAN CH 27.783 120.65 38.0 20040713 20200624 587530 99999 RUI-AN CH 0.0 0.0 -999.0 19731006 20021127 587540 99999 FUDING CH 27.333000000000002 120.2 38.0 19560820 20200624 587600 99999 20020207 20021209 587640 99999 DONG-GUA ISLAND CH 27.633000000000003 121.05 18.0 19591101 20010912 587650 99999 NANJI SHAN CH 27.467 121.05 2.0 19731004 20020120 588110 99999 LO-KOU CH 26.85 116.06700000000001 243.0 19731113 19741008 588130 99999 GUANGCHANG CH 26.85 116.333 142.0 19570610 20200624 588150 99999 NING-HUA CH 26.267 116.65 303.0 19730102 20020624 588200 99999 SANMING CH 26.183000000000003 117.617 198.0 19570601 20100424 588210 99999 TAI-NING CH 26.9 117.167 305.0 19730810 20051025 588250 99999 JIANG-LE CH 26.767 117.367 183.0 19730102 20020517 588260 99999 SHA-XIAN CH 26.4 117.78299999999999 183.0 19730102 20050506 588310 99999 XIA-YANG CH 26.783 118.0 146.0 19570601 20020511 588340 99999 NANPING CH 26.633000000000003 118.15 153.0 19560820 20200624 588370 99999 YOU-XI CH 26.166999999999998 118.18299999999999 165.0 19730103 20020610 588380 99999 SHUANG-KENG CH 0.0 0.0 -999.0 19731004 19840507 588460 99999 LUOYUAN CH 26.517 119.53299999999999 85.0 19570602 20100424 588470 99999 FUZHOU CH 26.083000000000002 119.28299999999999 85.0 19560820 20200624 588480 99999 SANYA CH 0.0 0.0 -999.0 19731008 20020220 588490 99999 MAZU CH 26.166999999999998 119.93299999999999 91.0 19560821 20050830 588500 99999 SONGCHENG NORTHEAST CH 26.933000000000003 120.06700000000001 258.0 19600506 19631031 588520 99999 TA-YU MOUNTAIN CH 26.916999999999998 120.383 305.0 19570601 20020919 588530 99999 TAISHAN CH 27.0 120.7 107.0 19631101 20020104 588540 99999 XI-YANG ISLAND CH 0.0 0.0 -999.0 19730101 20020816 588640 99999 TUNG-YIN ISLAND CH 0.0 0.0 -999.0 19730303 19831002 588930 99999 BOGUS CHINESE CH 19860604 19860626 589110 99999 CHANGTING CH 25.85 116.367 311.0 19570301 20200624 589180 99999 SHANGHANG CH 25.066999999999997 116.35 207.0 19570602 20100424 589210 99999 YONG'AN CH 25.967 117.35 204.0 19560820 20200624 589260 99999 ZHANG PING CH 25.3 117.4 203.0 19940901 20200624 589270 99999 LONGYAN CH 25.1 117.01700000000001 341.0 19560820 20030102 589280 99999 ZHANG-PING CH 25.3 117.4 0.0 19740421 19851011 589310 99999 JIUXIAN SHAN CH 25.717 118.1 1651.0 19560820 20200624 589320 99999 NAME UNKNOWN (ONC) CH 0.0 0.0 -999.0 19740425 20020615 589330 99999 ZHANGCHENG SOUTHWEST CH 25.866999999999997 118.917 152.0 19600101 19610314 589340 99999 YONG-CHUN CH 0.0 0.0 -999.0 19740613 19850922 589380 99999 HUNG-LAI CH 25.083000000000002 118.51700000000001 61.0 19880201 20030809 589410 99999 HESHANG SOUTHEAST CH 25.933000000000003 119.56700000000001 8.0 19570603 19610314 589440 99999 PINGTAN CH 25.517 119.78299999999999 31.0 19560820 20200624 589450 99999 BOGUS CHINESE CH 19831201 20020823 589470 99999 DAI-TOU CH 25.267 119.2 37.0 19740817 20020408 589650 99999 TAOYUAN CH 25.05 121.21700000000001 48.0 19560820 20030222 589680 99999 TAIBEI CH 25.033 121.51700000000001 9.0 19570601 20200624 589690 99999 589690 CH 25.066999999999997 121.53299999999999 7.0 19730101 19900623 589740 99999 PENGJIA YU CH 25.633000000000003 122.06700000000001 102.0 19730102 20200624 589840 99999 BOGUS CHINESE CH 19801001 20011007 590070 99999 GUANGNAN CH 24.066999999999997 105.06700000000001 1251.0 19560820 20200624 590080 99999 BOGUS CHINESE CH 19801001 20040118 590130 99999 BOGUS CHINESE CH 19801001 20041008 590210 99999 TIAN'E/LIUPAI CH 25.083000000000002 107.2 305.0 19730101 20040827 590230 99999 HECHI CH 24.7 108.05 214.0 19560820 20200624 590370 99999 DU AN CH 24.017 108.083 162.0 19570601 19610314 590460 99999 LIUZHOU CH 24.35 109.4 97.0 19430919 20200624 590580 99999 MENGSHAN CH 24.2 110.51700000000001 145.0 19570601 20200624 590620 99999 BOGUS CHINESE CH 19801001 19840222 590650 99999 HEXIAN/BABU CH 24.467 111.56700000000001 91.0 19570601 20021209 590720 99999 LIANZHOU CH 24.8 112.367 98.0 19560820 20200624 590750 99999 YANGSHAN CH 24.483 112.633 64.0 19731004 19741013 590760 99999 NAME UNKNOWN (ONC) CH 0.0 0.0 -999.0 19731108 19820219 590770 99999 XIA-SHUI-XU CH 0.0 0.0 -999.0 19740504 19840914 590820 99999 SHAOGUAN CH 24.666999999999998 113.6 68.0 19560820 20200624 590830 99999 BOGUS CHINESE CH 19890608 20020912 590850 99999 WU-SHI (?) CH 0.0 0.0 -999.0 19740424 19811212 590860 99999 XIN-JIANG CH 0.0 0.0 -999.0 19740615 20020615 590870 99999 FOGANG CH 23.883000000000003 113.51700000000001 68.0 19570602 20200624 590920 99999 CHENG-LONG CH 0.0 0.0 -999.0 19730104 19840601 590960 99999 LIANPING CH 24.366999999999997 114.48299999999999 214.0 19570602 20200624 590970 99999 XINFENG CH 0.0 0.0 -999.0 19730105 20011210 591020 99999 XUNWU CH 24.95 115.65 299.0 19560820 20200624 591090 99999 XING-NING CH 0.0 0.0 -999.0 19800803 19840504 591170 99999 MEI XIAN CH ZGMX 24.283 116.06700000000001 116.9 19560820 20200624 591240 99999 NAN-JING CH 0.0 0.0 -999.0 19800702 20020126 591260 99999 ZHANGZHOU CH 24.633000000000003 117.65 24.0 19570603 20021209 591270 99999 DA-XI CH 0.0 0.0 -999.0 19740423 20011114 591330 99999 JIN-JIANG CH 24.8 118.583 22.0 19570601 20021209 591340 99999 GAOQI CH ZSAM 24.544 118.12799999999999 18.0 19560820 20200624 591350 99999 CHIN-MEN TW 24.433000000000003 118.43299999999999 12.0 19560820 19850722 591520 99999 XINZHU CH 24.8 120.96700000000001 34.0 20020103 20070226 591530 99999 XIN-ZHU TW 24.816999999999997 120.95 8.0 19560820 19841229 591550 99999 19730104 19730109 591580 99999 TAIZHONG CH 24.15 120.68299999999999 78.0 19560820 20200624 591590 99999 TAICHUNG TW 24.183000000000003 120.65 112.0 19730101 19840713 591625 99999 YANCHENG CH ZSYN 33.417 120.2 3.0 20131001 20200101 591630 99999 I-LAN FORMOSA/NILAN CH 24.767 121.75 7.0 19560820 19591031 592020 99999 XI-YANG (?) CH 0.0 0.0 -999.0 19740425 20011003 592030 99999 ZHE-SHANG CH 0.0 0.0 -999.0 19740514 20010831 592090 99999 NAPO CH 23.3 105.95 794.0 19730101 20200624 592110 99999 BAISE CH 23.9 106.6 177.0 19560820 20200624 592160 99999 HUO-JIAO CH 23.633000000000003 106.71700000000001 329.0 19730323 20011006 592170 99999 RONG-LAO-XIANG CH 0.0 0.0 -999.0 19731004 20020821 592180 99999 XINJING CH 23.133000000000003 106.417 740.0 19570601 20021209 592240 99999 PINGMA CH 23.6 107.117 112.0 19570601 19890913 592280 99999 LONG'AN CH 23.133000000000003 107.65 457.0 19880201 20021209 592340 99999 QIAO-LI CH 0.0 0.0 -999.0 19731004 20020815 592420 99999 DA-WAN CH 23.85 109.417 76.0 19570602 20021209 592430 99999 XIANGZHOU CH 23.95 109.68299999999999 122.0 19740307 19741025 592450 99999 WU-XUAN CH 0.0 0.0 -999.0 19730701 20020421 592540 99999 GUIPING CH 23.4 110.083 44.0 19560820 20200624 592580 99999 LIU-CHEN CH 0.0 0.0 -999.0 19740610 20020416 592590 99999 JINJI CH 23.217 110.81700000000001 77.0 19740111 19750404 592620 99999 GU-NA CH 23.833000000000002 111.56700000000001 137.0 19740302 20020530 592650 99999 WUZHOU CH 23.483 111.3 120.0 19560820 20200624 592710 99999 HUAIJI CH 23.95 112.2 57.0 19570601 20021209 592730 99999 QINGCHENG CH 23.666999999999998 112.867 20.0 19740112 19741024 592770 99999 LU-BU CH 0.0 0.0 -999.0 19740424 20020615 592780 99999 GAOYAO CH 23.05 112.46700000000001 12.0 19570601 20200624 592800 99999 QING YUAN CH 23.7 113.083 19.0 19990207 19991203 592830 99999 LIANG-KOU (?) CH 0.0 0.0 -999.0 19731101 20011206 592870 99999 BAIYUN INTL CH ZGGG 23.392 113.29899999999999 15.2 19451130 20200624 592871 99999 HUANGHUA CH ZGHA 28.189 113.22 66.1 20040713 20200624 592880 99999 GUANG-ZHOU/EAST CH 0.0 0.0 -999.0 19731008 20020926 592930 99999 HEYUAN CH 23.8 114.73299999999999 41.0 19560820 20200624 592970 99999 BO-LUO CH 0.0 0.0 -999.0 19731005 20020522 592980 99999 HUI-YANG CH 23.083000000000002 114.417 16.0 19570603 20021209 593030 99999 SONG-LIN-BA CH 23.967 115.96700000000001 152.0 19570601 20021209 593090 99999 DAPING CH 23.183000000000003 115.85 97.0 19740421 19751221 593110 99999 APPROXIMATE LOCALE CH 23.767 116.01700000000001 0.0 19740421 20020110 593160 99999 SHANTOU CH ZGOW 23.4 116.68299999999999 3.0 19560820 20200624 593170 99999 HUILAI CH 23.083000000000002 116.3 30.0 19570602 20021209 593210 99999 GULEITOU CH 23.8 117.55 6.0 19560820 19611031 593240 99999 LUNG-AO /NAN-AO TAO CH 23.433000000000003 117.01700000000001 19570601 19610314 593260 99999 XIONG-DI ISLAND CH 0.0 0.0 -999.0 19731108 19851025 593270 99999 APPROXIMATE LOCALE CH 23.166999999999998 117.167 0.0 19830201 20011025 593450 99999 MAGONG CH 23.517 119.56700000000001 22.0 19560820 19910321 593460 99999 P ENG-HU CH 23.533 119.56700000000001 21.0 19730103 19820511 593530 99999 ALI SHAN CH 23.517 120.8 2408.0 19490930 20011212 593540 99999 CHIA-YI TW 23.467 120.383 25.0 19560820 20020131 593580 99999 TAINAN CH 23.0 120.21700000000001 14.0 19560820 20200624 593590 99999 19730103 19730114 593610 99999 HUA-LIAN CITY TW 23.983 121.6 19.0 19730101 19850709 593620 99999 HUALIAN CH 24.017 121.617 14.0 19560820 19900623 594170 99999 LONGZHOU CH 22.366999999999997 106.75 129.0 19560820 20200624 594270 99999 NING-MING CH 22.116999999999997 107.133 168.0 19801001 19840518 594310 99999 WUXU CH ZGNN 22.608 108.17200000000001 128.3 19440114 20200624 594320 99999 BOGUS CHINESE CH 19801001 20020823 594460 99999 BOBAI CH 22.25 109.96700000000001 121.0 19570601 20021209 594530 99999 CEN-XI CH 22.933000000000003 110.98299999999999 243.0 19570701 20021209 594560 99999 XINYI CH 22.35 110.93299999999999 84.0 19560820 20200624 594620 99999 LUODING CH 22.717 111.55 134.0 19591101 20021209 594680 99999 SANJIA CH 23.133000000000003 111.46700000000001 80.0 19740422 19741130 594720 99999 MING-CHENG CH 0.0 0.0 -999.0 19731103 20020618 594730 99999 HE-QING CH 0.0 0.0 -999.0 19740427 20020606 594770 99999 EN-PING CH 0.0 0.0 -999.0 19740112 20011201 594780 99999 TAI-SHAN CH 22.267 112.78299999999999 46.0 19560820 20021209 594880 99999 ZHUHAI SANZAO CH 22.017 113.383 3.0 19740611 19741125 594930 99999 BAOAN INTL CH ZGSZ 22.639 113.811 4.0 19570601 20200624 595010 99999 SHANWEI CH 22.783 115.367 5.0 19560820 20200624 595050 99999 APPROXIMATE LOCALE CH 22.5 115.5 0.0 19830201 20011016 595500 99999 TAINAN CH 22.95 120.18299999999999 17.0 19730101 19801007 595520 99999 LU-CHU TW 22.833000000000002 120.3 15.0 19560820 19591031 595530 99999 DONGGANG CH 22.467 120.43299999999999 8.0 19730102 20031205 595540 99999 GAOXIONG CH 22.616999999999997 120.26700000000001 33.0 20020617 20020617 595580 99999 HENG CHUN ARPT TW 22.033 120.73299999999999 13.0 19730101 20011205 595590 99999 HENGCHUN CH 22.0 120.75 24.0 19560820 20200624 595600 99999 CHIN HONG CH 22.8 121.167 37.0 19730101 19800710 595620 99999 TAIDONG CH 22.75 121.15 10.0 19560820 20200624 595670 99999 LAN YU CH 22.033 121.55 325.0 19730101 20200624 595680 99999 ORCHID ISL. TW 22.033 121.55 10.0 19731115 20020526 596220 99999 DONG-JIAO (?) CH 0.0 0.0 -999.0 19740426 19820428 596260 99999 DONG-XING CH 21.55 107.96700000000001 13.0 19591101 20021209 596320 99999 QINZHOU CH 21.95 108.617 6.0 19560820 20200624 596330 99999 BAI-MU CH 0.0 0.0 -999.0 19731004 20020515 596340 99999 WANWEI CH 21.55 108.167 21.0 19570602 19580731 596440 99999 BEIHAI CH 21.483 109.1 16.0 19450811 20200624 596441 99999 BEIHAI AIRPORT CH ZGBH 21.539 109.294 16.0 20100602 20180401 596460 99999 SHAN-KOU (?) CH 0.0 0.0 -999.0 19740422 19820422 596470 99999 WEI-ZHOU ISLAND CH 21.033 109.117 41.0 19570602 20021209 596480 99999 FOU-TOU CH 0.0 0.0 -999.0 19731010 19840503 596570 99999 ZHAN-JIANG CH 0.0 0.0 -999.0 19800401 20020613 596580 99999 ZHANJIANG CH ZGZJ 21.217 110.4 28.0 19560820 20200624 596630 99999 YANGJIANG CH 21.866999999999997 111.96700000000001 22.0 19560820 20200624 596640 99999 TIAN-CHENG CH 21.517 111.3 8.0 19570602 20021209 596730 99999 SHANGCHUAN DAO CH 21.733 112.76700000000001 18.0 19591101 20200624 596830 99999 BEI-JIAN ISLAND CH 0.0 0.0 -999.0 19731101 20020426 597380 99999 DAO-BACH-LONG ISLAN CH 20.133 107.73299999999999 58.0 19731108 20020731 597450 99999 XI-CUN CH 0.0 0.0 -999.0 19731004 20020725 597480 99999 LIN-GAO (CAPE) CH 0.0 0.0 -999.0 19731004 19820826 597520 99999 BOGUS CHINESE CH 19831201 20030216 597540 99999 XUWEN CH 20.367 110.167 109.0 19570602 20021209 597550 99999 CHIN HO (CHIN NANG) CH 0.0 0.0 -999.0 19731108 20020524 597580 99999 HAIKOU CH ZGHK 20.0 110.25 24.0 19560820 20200513 597920 99999 DONGSHA DAO CH 20.666999999999998 116.71700000000001 6.0 19560820 20200624 598380 99999 DONGFANG CH 19.1 108.617 8.0 19560820 20200624 598450 99999 DANXIAN CH 19.517 109.583 169.0 19570602 20200624 598480 99999 BAI-SHA CH 0.0 0.0 -999.0 19731114 19851031 598490 99999 XIN-SHI CH 19.067 109.883 243.0 19570601 20021209 598530 99999 APPROXIMATE LOCALE CH 19.833 110.833 0.0 19830201 20040908 598550 99999 QIONGHAI CH 19.233 110.46700000000001 25.0 19560820 20200624 598580 99999 BOGUS CHINESE CH 19.25 110.48299999999999 -999.0 19740422 20011214 599380 99999 HUANG-LIU CH 0.0 0.0 -999.0 19730105 19851006 599450 99999 BAO-TING CH 0.0 0.0 -999.0 19731008 19840302 599480 99999 SANYA CH 18.217 109.583 7.0 19560820 20200624 599540 99999 LING-SHUI CH 18.5 110.0 50.0 19570601 20021209 599550 99999 DA-ZHOU ISLAND CH 18.667 110.46700000000001 246.0 19731111 19840203 599580 99999 19740101 19750122 599810 99999 XISHA DAO CH 16.833 112.333 5.0 19570701 20200624 599850 99999 SANHU DAO CH 16.533 111.617 5.0 19750426 20200624 599910 99999 19741103 19741128 599950 99999 YONGSHUJIAO CH 9.533 112.883 6.0 19881001 20111022 599970 99999 NANSHA DAO CH 10.383 114.367 5.0 19730101 20200624 600010 99999 HIERRO SP GCHI 27.815 -17.887 31.4 19730313 20200624 600050 99999 LA PALMA SP GCLA 28.625999999999998 -17.756 32.6 19600101 20200624 600070 99999 LA GOMERA/AEROPUERTO SP 28.033 -17.217 219.0 20040529 20200624 600100 99999 IZANA SP 28.316999999999997 -16.5 2368.0 19470101 20200624 600150 99999 TENERIFE NORTE SP GCXO 28.483 -16.342 631.9 19470101 20200624 600180 99999 TENERIFE-GUIMAR SP 28.316999999999997 -16.383 111.0 20081007 20200624 600200 99999 STA. CRUZ DE TENERIFE SP 28.45 -16.25 36.0 19310103 20200624 600214 99999 TENEIFE SUR CP 28.416999999999998 -16.75 50.0 19781205 19840215 600250 99999 TENERIFE SUR SP GCTS 28.044 -16.572 63.7 19800701 20200624 600280 99999 ARTENARA SP 28.017 -15.617 1681.0 20040522 20060205 600300 99999 GRAN CANARIA SP GCLP 27.932 -15.387 23.8 19500316 20200624 600310 99999 BOGUS CANARY ISLAND SP 0.0 0.0 -999.0 19870301 20041205 600330 99999 HASSAN I WI GMML 27.151999999999997 -13.219000000000001 63.1 19610601 20200624 600340 99999 DAKHLA WI GMMH 23.718000000000004 -15.932 6.1 20040811 20200624 600350 99999 FUERTEVENTURA SP GCFV 28.453000000000003 -13.864 25.3 19500327 20200624 600400 99999 LANZAROTE SP GCRR 28.945 -13.605 14.3 19500310 20200624 600600 99999 SIDI IFNI MO GMMF 29.369 -10.18 59.0 19500310 20200624 600650 99999 19870511 19870511 600690 99999 CABO JUBY SPANISH SAHARA 27.933000000000003 -13.0 4.9 19310103 19580416 600960 99999 VILLA CISNEROS(MIL) WI GSVO 23.7 -15.867 10.0 19310103 20200624 601000 99999 TANGER-PORT MO 35.783 -5.8 11.0 19490102 20200624 601010 99999 IBN BATOUTA MO GMTT 35.727 -5.917000000000001 18.9 19570101 20200624 601050 99999 LARACHE MO 35.15 -6.1 49.0 19620506 20200624 601060 99999 CHEFCHAOUEN MO 35.167 -5.3 305.0 19940901 20200624 601070 99999 CHERIF EL IDRISSI MO GMTA 35.177 -3.84 27.1 19650307 20200624 601150 99999 ANGADS MO GMFO 34.787 -1.9240000000000002 467.9 19490110 20200624 601154 99999 SIDI SLIMANE & MO GMSL 34.233000000000004 -6.05 52.0 19811017 19820531 601190 99999 KENITRA (RMAF) MO 34.3 -6.6 6.0 19730101 20050811 601191 99999 KENITRA (RMAF) MO 34.3 -6.617000000000001 6.0 20050405 20050623 601200 99999 KENITRA (RMAFB) MO GMMP 34.3 -6.6 6.0 19490122 20200624 601250 99999 TOUAHAR MO 34.2 -3.833 569.1 19490105 19521231 601270 99999 TAZA MO GMFZ 34.217 -4.0 510.0 19591017 20200624 601300 99999 RABAT MO 34.0 -6.832999999999999 68.0 19490113 19521231 601350 99999 SALE MO GMME 34.051 -6.752000000000001 84.1 19430113 20200624 601360 99999 SIDI SLIMANE MO GMSL 34.233000000000004 -6.05 50.0 19510901 20200624 601400 99999 FES MO 34.033 -4.9830000000000005 414.0 19490103 19610328 601410 99999 SAISS MO GMFF 33.927 -4.978 579.1 19441101 20200624 601460 99999 MOHAMMEDIA MO 33.717 -7.4 5.0 20040621 20200624 601465 99999 TEL MELLIL AIRPORT MO GMMT 33.6 -7.4670000000000005 98.2 20111112 20170924 601500 99999 BASSATINE MO GMFM 33.879 -5.515 576.1 19490116 20200624 601550 99999 ANFA MO GMMC 33.556999999999995 -7.66 61.9 19490101 20200624 601560 99999 MOHAMMED V MO GMMN 33.367 -7.59 199.9 19421121 20200624 601600 99999 IFRANE MO GMFI 33.505 -5.153 1663.9 19490209 20181230 601650 99999 EL JADIDA MO 33.233000000000004 -8.517000000000001 27.0 19840414 20181230 601700 99999 LAJAQMA MO 33.283 -7.4 160.0 19490124 19520529 601770 99999 SETTAT MO 32.95 -7.617000000000001 408.0 20181225 20200624 601780 99999 KHOURIBGA MO 32.867 -6.9670000000000005 781.0 19500621 20200624 601850 99999 SAFI MO GMMS 32.283 -9.232999999999999 45.0 19490404 20200624 601900 99999 KASBA-TADLA MO 32.533 -6.2829999999999995 518.0 19490124 20181207 601910 99999 BENI-MELLAL MO GMMD 32.367 -6.4 472.0 19730101 20200624 601920 99999 19870511 19870511 601950 99999 MIDELT MO 32.683 -4.7330000000000005 1515.0 19490130 20200624 601954 99999 ERRACHIDIA MO 31.967 -4.417 1034.0 19810506 19810518 602000 99999 BOUARFA MO GMFB 32.567 -1.95 1143.0 19840410 20181230 602001 99999 ARWI MO 34.983000000000004 -3.017 179.0 20040510 20081231 602051 99999 BEN GUERIR AIR BASE MO 32.117 -7.882999999999999 422.0 19511122 19630501 602100 99999 MOULAY ALI CHERIF MO GMFK 31.948 -4.398 1044.9 19730101 20200624 602200 99999 ESSAOUIRA MO GMMI 31.399 -9.683 128.0 19490124 20200624 602230 99999 TAKERKOUSTE MO 31.033 -8.482999999999999 667.0 20130410 20140128 602300 99999 MENARA MO GMMX 31.607 -8.036 467.9 19430118 20200624 602500 99999 INEZGANE MO GMAA 30.381 -9.546 27.1 19450615 20200624 602520 99999 AL MASSIRA MO GMAD 30.325 -9.413 76.2 19920301 20200624 602530 99999 TAROUDANT MO 30.5 -8.817 266.0 20031230 20200624 602650 99999 OUARZAZATE MO GMMZ 30.939 -6.909 1153.1 19490401 20200624 602700 99999 TIZNIT MO 29.683000000000003 -9.732999999999999 261.0 19881225 20200624 602750 99999 ZAGORA MO GMAZ 30.316999999999997 -5.867000000000001 729.0 20020328 20030713 602800 99999 GUELMIN MO GMAG 29.017 -10.067 341.0 19910918 20200624 602850 99999 PLAGE BLANCHE MO GMAT 28.448 -11.161 199.0 19490108 20200624 602890 99999 TARFAYA MO 27.933000000000003 -13.0 10.0 19450828 20051226 602900 99999 MAURITANIA NORTH MR 25.683000000000003 -9.3 500.0 19500211 19521217 602950 99999 FORT TRINQUET APT MB 25.233 -10.417 360.0 19490101 19521231 603080 99999 OULAD EL RHOUMARI MO 35.033 -6.167000000000001 30.0 19500310 19590224 603180 99999 SANIAT RMEL MO GMTN 35.594 -5.32 3.0 19500310 20200624 603200 99999 CEUTA SP 35.917 -5.35 88.0 19650101 20200624 603350 99999 SMARA MO GMMA 26.733 -11.683 110.0 19760302 20160522 603380 99999 MELILLA SP GEML 35.28 -2.9560000000000004 47.5 19641001 20200624 603400 99999 NADOR-AROUI MO GMMW 34.983000000000004 -3.017 177.0 19500201 20200624 603500 99999 BOGUS ALGERIAN AG 37.083 6.45 -999.0 19490112 20041204 603510 99999 FERHAT ABBAS AIRPORT AG DAAV 36.795 5.874 11.0 19811101 20200624 603530 99999 JIJEL-PORT AG 36.817 5.882999999999999 6.0 19951101 20191231 603550 99999 SKIKDA AG DABP 36.933 6.95 7.0 19570206 20200624 603570 99999 ANNABA NORTH AG 36.967 7.8 156.0 19510102 20100123 603600 99999 ANNABA AG DABB 36.821999999999996 7.809 4.9 19450609 20200624 603670 99999 EL-KALA AG 36.9 8.45 13.0 19840101 20140813 603690 99999 ALGER-PORT AG 36.766999999999996 3.1 12.0 19430325 20200624 603710 99999 OUED KORICHE AG 36.783 3.033 171.9 20120101 20200624 603720 99999 BOUZAREAH AG 36.783 3.0 54.6 20120101 20200624 603730 99999 MEHELMA AG 36.7 2.883 70.1 20120101 20200624 603740 99999 AIN BENAIN AG 36.783 2.883 33.0 20030123 20200624 603760 99999 BORDJ-EL-BAHRI AG 36.783 3.25 58.0 20010712 20200624 603790 99999 REGHAIA AG 36.766999999999996 3.333 162.2 20120101 20200624 603800 99999 TESSALA EL MERDJA AG 36.617 2.917 17.1 20120101 20200624 603810 99999 EL HARRACH AG 36.717 3.15 51.0 20120101 20200624 603840 99999 CAP CORBELIN AG 36.9 4.417 45.0 20010923 20040823 603870 99999 DELLYS AG 36.917 3.95 8.0 19951101 20200617 603880 99999 CHERCHELL AG 36.6 2.1830000000000003 33.0 20010713 20041007 603900 99999 HOUARI BOUMEDIENE AG DAAG 36.691 3.215 25.0 19430401 20200624 603930 99999 DAR EL BEIDA VILLE AG 36.7 3.2 148.1 20120101 20140211 603940 99999 BARAKI AG 36.683 3.1 124.4 20120101 20200624 603950 99999 TIZI-OUZOU AG 36.7 4.133 153.0 19951004 20200624 604000 99999 CAP CARBON AG 36.75 5.1 13.0 19490402 20051221 604010 99999 BEJAIA-PORT AG 36.75 5.1 4.0 20010916 20140901 604020 99999 SOUMMAM AG DAAE 36.711999999999996 5.07 6.1 19730101 20200624 604030 99999 GUELMA AG 36.467 7.4670000000000005 228.0 19951004 20200624 604050 99999 BOUCHEGOUF AG 36.5 7.7170000000000005 111.0 20020314 20200624 604100 99999 TENES AG 36.5 1.3330000000000002 18.0 19490102 20200623 604130 99999 BOUFARIK AG 36.55 2.883 85.0 19490116 19620523 604150 99999 AIN-BESSAM AG 36.283 3.667 752.0 20030330 20200624 604170 99999 BOUIRA AG 36.383 3.883 560.0 19951008 20200624 604190 99999 MOHAMED BOUDIAF INTL AG DABC 36.275999999999996 6.62 690.4 19430301 20200624 604200 99999 LE KHROUB AG 36.266999999999996 6.683 583.0 19490108 20140501 604210 99999 OUM EL BOUAGHI AG 35.867 7.117000000000001 891.0 19850203 20200624 604230 99999 SOUK AHRAS AG 36.25 7.95 831.0 19880813 20200624 604250 99999 ECH CHELIFF AG DAOI 36.213 1.3319999999999999 141.1 19430107 20200624 604300 99999 MILIANA AG 36.3 2.233 721.0 19490112 20200624 604350 99999 BLIDA AG 36.483000000000004 2.8169999999999997 170.0 19490108 19620523 604370 99999 MEDEA AG 36.283 2.733 1036.0 19951008 20200624 604440 99999 BORDJ-BOU-ARRERIDJ AG 36.067 4.667 957.0 19790916 20200624 604450 99999 SETIF AIN ARNAT AG DAAS 36.178000000000004 5.324 1050.0 19490115 20200624 604520 99999 ARZEW AG 35.817 -0.267 4.0 19840801 20200624 604570 99999 MOSTAGANEM AG 35.883 0.11699999999999999 138.0 19760401 20200624 604590 99999 SIDI AISSA AG 35.883 3.767 658.0 20010806 20010806 604591 99999 HASSI R MEL AG 32.917 3.3 794.0 20040510 20200624 604592 99999 TAFARAOUI AG 35.533 -0.5329999999999999 115.0 20040525 20200624 604593 99999 MASCARA AG DAOM 35.383 0.133 492.0 20040525 20080418 604610 99999 ORAN-PORT AG 35.7 -0.65 22.0 19510118 20200528 604650 99999 BOGHAR NORTH AG 35.933 2.75 635.0 19490108 20110622 604653 99999 AIN OUSSERA AG DAAQ 35.525 2.8789999999999996 649.8 20160209 20160209 604670 99999 M'SILA AG 35.667 4.5 442.0 19810101 20200624 604680 99999 BATNA AG DABT 35.751999999999995 6.309 822.0 19730101 20200624 604710 99999 BARIKA AG 35.333 5.332999999999999 461.0 20031118 20180914 604750 99999 CHEIKH LARBI TEBESSI AG DABS 35.431999999999995 8.121 811.1 19510102 20200624 604760 99999 KHENCHELLA AG 35.467 7.082999999999999 987.0 19960201 20200624 604780 99999 ARIS AG 35.25 6.35 1240.0 20040621 20041207 604810 99999 ORAN-TAFARAOUI AG 35.483000000000004 -0.517 111.0 19811101 20080204 604820 99999 CAP AIGUILLE AG 35.867 -0.483 62.0 20021010 20040224 604850 99999 CAP FALCON AG 35.766999999999996 -0.8 104.0 19650307 20050815 604900 99999 ES SENIA AG DAOO 35.624 -0.621 89.9 19490102 20200624 604920 99999 RELIZANE AG DAAZ 35.75 0.617 94.0 19421114 20200624 604981 99999 DJELFA/TLETSI AG 34.667 3.35 1178.0 19750804 19840212 605050 99999 ORAN/TAFAROUI AG 35.717 -0.7170000000000001 111.0 20031214 20050317 605054 99999 ORAN/TAFAROUI AG DAOL 35.483000000000004 -0.5329999999999999 0.0 19421114 19851124 605060 99999 MASCARA-MATEMORE AG 35.6 0.3 476.0 19810101 20080430 605070 99999 GHRISS AG DAOV 35.208 0.147 513.9 19430521 20200624 605110 99999 BOU CHEKIF AG DAOB 35.341 1.463 989.1 19830404 20200624 605140 99999 KSAR CHELLALA AG 35.167 2.3169999999999997 801.0 19951101 20200624 605150 99999 BOU SAADA AG DAAD 35.333 4.206 459.0 19840301 20200624 605170 99999 GHAZAOUET AG 35.1 -1.867 5.0 19951101 20200624 605180 99999 BENI-SAF AG 35.3 -1.35 70.0 19760307 20200624 605200 99999 SIDI-BEL-ABBES AG 35.2 -0.617 476.0 19850203 20200624 605220 99999 MAGHNIA AG DAOH 34.82 -1.77 426.0 19761001 20200624 605250 99999 BISKRA AG DAUB 34.793 5.7379999999999995 88.1 19430201 20200624 605300 99999 TLEMCEN/ZENATA AG 35.016999999999996 -1.3330000000000002 587.0 19730102 20041205 605310 99999 ZENATA AG DAON 35.016999999999996 -1.45 248.1 19810101 20200624 605350 99999 DJELFA/TLETSI AG DAFI 34.683 3.25 1144.0 19490108 20200624 605360 99999 SAIDA AG 34.867 0.15 752.0 19810101 20200624 605400 99999 EL-KHEITER AG 34.15 0.067 1001.0 19490116 20200624 605450 99999 LAGHOUAT AG DAUL 33.764 2.927 765.0 19490108 20200624 605490 99999 MECHERIA AG DAAY 33.536 -0.242 1175.0 19800208 20200624 605500 99999 EL-BAYADH AG DAOY 33.717 1.083 1347.0 19490116 20200624 605550 99999 SIDI MAHDI AG DAUK 33.068000000000005 6.0889999999999995 85.0 19490112 20200624 605570 99999 NAAMA AG 33.266999999999996 -0.3 1166.0 19951004 20200624 605590 99999 GUEMAR AG DAUO 33.510999999999996 6.777 61.9 19650101 20200624 605600 99999 AIN-SEFRA AG 32.766999999999996 -0.6 1059.0 19490112 20200624 605630 99999 HASSIR'MEL AG 32.933 3.283 764.0 20010916 20081231 605650 99999 BENI ISUGEN AG 32.467 3.667 533.0 19490108 19521231 605660 99999 NOUMERAT AG DAUG 32.384 3.7939999999999996 460.9 19590416 20200624 605700 99999 COLUMB-BECHAR AG 31.616999999999997 -1.7830000000000001 780.9 19490102 19750725 605710 99999 BECHAR AG DAOR 31.646 -2.27 811.1 19570101 20200624 605800 99999 OUARGLA AG DAUU 31.916999999999998 5.412999999999999 150.0 19490130 20200624 605810 99999 OUED IRARA AG DAUH 31.673000000000002 6.14 141.1 19650307 20200624 605900 99999 EL GOLEA AG DAUE 30.570999999999998 2.86 398.1 19490130 20200624 605930 99999 HASSI KHEBI AG 29.166999999999998 -5.233 565.0 20120308 20140205 606000 99999 BENI-ABBES AG 30.133000000000003 -1.8330000000000002 498.0 19490116 19621013 606010 99999 HAMRA AG DAMH 29.233 6.483 259.0 20110101 20150215 606020 99999 BENI-ABBES AG 30.133000000000003 -2.167 505.0 19730101 20200624 606030 99999 RHOURD NOUSS AG DAEN 29.717 6.7 252.0 20051023 20200624 606050 99999 TABELBALA AG 29.416999999999998 -3.25 550.0 19500211 20140211 606060 99999 TATA MG 29.767 -8.0 899.8 19490130 19660127 606070 99999 TIMIMOUN AG DAUT 29.237 0.276 313.0 19660722 20200624 606080 99999 BORDJ OMAR DRISS AG 28.133000000000003 6.832999999999999 387.0 19500201 20051019 606100 99999 MAISON ROUGE LY 27.816999999999997 9.967 466.0 19590104 20130629 606110 99999 IN AMENAS AG DAUZ 28.052 9.642999999999999 563.0 19641001 20200624 606120 99999 TIRIRINE AG 22.05 8.583 770.0 20120601 20200624 606130 99999 OUHANET AG 28.7 8.933 610.0 20120101 20190802 606170 99999 TAMESGUIDA AG 27.316999999999997 3.717 354.0 20120601 20181202 606190 99999 TAGUENTOUR AG 28.467 2.517 636.0 20080401 20191225 606200 99999 TOUAT CHEIKH SIDI MOHAMED BELKEBIR AG DAUA 27.838 -0.18600000000000003 280.1 19490130 20200624 606201 99999 BORDJ MOKHTAR AG 21.333000000000002 0.95 398.0 20040713 20200624 606210 99999 IN GUEZZAM AG 19.567 5.75 399.9 20040929 20081231 606250 99999 AOULEF AG DAAF 26.967 1.083 309.0 19490210 20050529 606300 99999 IN-SALAH AG 27.233 2.5 269.0 19490102 20081231 606305 99999 IN SALAH AG 27.25 2.5 280.0 19790801 20200624 606330 99999 IN ZIZA AG 23.217 2.583 443.0 20090201 20180306 606380 99999 TIN FOUYE AG DAEF 28.447 7.5520000000000005 480.1 20110101 20200624 606390 99999 TINFOUYE AG DATF 28.433000000000003 7.55 471.0 20120101 20140211 606400 99999 ILLIZI TAKHAMALT AG DAAP 26.724 8.623 541.9 19500201 20200624 606450 99999 REGGANE AG DAAN 26.717 0.28300000000000003 291.1 19500215 20200624 606460 99999 REGGANE AG 26.7 0.28300000000000003 285.0 19590325 19670515 606500 99999 AMGUID AG 26.416999999999998 5.367000000000001 614.0 20080721 20200624 606560 99999 TINDOUF AG DAOF 27.7 -8.167 442.9 19430319 20200624 606600 99999 ARAK AG 25.267 3.733 556.0 20080721 20200420 606610 99999 ABDENNIZI AG 25.217 5.117 800.0 19500201 20200624 606620 99999 FADNOUNE AG 25.816999999999997 8.183 1291.0 20120601 20200624 606630 99999 MOULAY LACHEN AG 24.717 4.65 1054.0 20080721 20200624 606650 99999 GHAT SOUTH LY 24.916999999999998 10.2 710.0 19500201 20140122 606670 99999 TINALKOUM AG 24.6 10.217 719.0 20120601 20191007 606700 99999 TISKA AG DAAJ 24.293000000000003 9.452 968.0 19490214 20200624 606720 99999 MERTOUEK AG 24.217 5.5329999999999995 1343.0 20080721 20200624 606750 99999 OUALLEN AG 23.4 1.0 358.0 19490130 20200315 606760 99999 IN-EZZANE AG 23.483 11.232999999999999 912.0 20080721 20190109 606770 99999 AFARA AG 25.333000000000002 7.8 1240.0 20090201 20200624 606780 99999 IN AMGUEL AG 23.816999999999997 5.15 1006.0 19641001 19670223 606790 99999 ASSEKREM AG 23.267 5.632999999999999 2710.0 20080721 20200624 606800 99999 TAMANRASSET AG 22.8 5.433 1364.0 19490214 20081231 606805 99999 TAMANRASSET AG 22.8 5.45 1412.0 19801107 20200624 606810 99999 OUED TAHAGGARET AG 21.683000000000003 7.132999999999999 573.0 20120101 20140327 606820 99999 TINTARABINE AG 23.183000000000003 6.767 1105.0 20120218 20200125 606850 99999 BIDON 5 AG 22.316999999999997 1.117 392.0 20120101 20200624 606860 99999 BORDJ-BADJ-MOKHTAR AG 21.333000000000002 0.95 399.0 19951102 20081231 606890 99999 TIMIAOUINE AG 20.417 1.8 608.7 20120101 20140211 606900 99999 IN-GUEZZAM AG 19.567 5.767 400.0 19880326 20200624 606910 99999 ANESBARAKA AG 19.433 4.65 477.0 20120601 20200624 606920 99999 IN GUEZZAM AG DATG 19.57 5.75 400.0 20050101 20200624 606930 99999 IN ATEI AG 20.566999999999997 6.117000000000001 471.0 20120101 20200624 606940 99999 IN AZAOUA AG 20.967 7.45 517.0 20120101 20200624 606950 99999 TIN ZAOUATENE AG 19.967 2.983 734.9 20120101 20181225 607050 99999 BIZERTE TS 37.233000000000004 9.817 6.1 19490108 19521231 607100 99999 TABARKA 7 NOVEMBRE TS DTKA 36.98 8.877 70.1 19741001 20200624 607140 99999 SIDI AHMED AIR BASE TS DTTB 37.245 9.791 6.1 19430805 20200624 607150 99999 CARTHAGE TS DTTA 36.851 10.227 6.7 19430608 20200624 607200 99999 KELIBIA TS DTTL 36.85 11.083 30.0 19430524 20200624 607230 99999 BEJA TS 36.733000000000004 9.183 159.0 19880503 20200624 607250 99999 JENDOUBA TS DTTN 36.483000000000004 8.8 144.0 19430630 20200624 607280 99999 NABEUL TS 36.467 10.7 78.0 19820901 20200624 607290 99999 ZAGHONAN MAGRANE TS 36.433 10.083 156.0 20010917 20200624 607310 99999 ENFIDHA TS DTNH 36.083 10.433 6.0 20091201 20200624 607320 99999 LE KEF TS 36.133 8.7 518.0 19891001 20200624 607340 99999 SILIANA TS 36.067 9.367 445.0 19801201 20200624 607350 99999 KAIROUAN TS DTTK 35.667 10.1 68.0 19490108 20200624 607380 99999 THALA TS 35.55 8.683 1092.0 19770102 20200624 607390 99999 KASSERINE TS 35.167 8.833 707.0 20010917 20200624 607400 99999 MONASTIR-SKANES TS DTTM 35.667 10.75 2.0 19430602 20200624 607401 99999 HABIB BOURGUIBA TS 35.766999999999996 10.75 2.0 19851215 19890820 607403 99999 HABIB BOURGUIBA INTL TS DTMB 35.758 10.755 2.7 19890908 20200624 607420 99999 MAHDIA TS 35.5 11.067 12.0 20030330 20200624 607450 99999 GAFSA TS DTTF 34.422 8.823 323.1 19490107 20200624 607470 99999 KASSERINE NORTH TS 35.183 8.8 689.0 19490108 19520529 607480 99999 SIDI BOUZID TS 35.0 9.482999999999999 355.0 19770830 20200624 607500 99999 THYNA TS DTTX 34.718 10.690999999999999 25.9 19490108 20200624 607560 99999 BOGUS TUNISIAN TS 19860604 20030728 607600 99999 NEFTA TS DTTZ 33.94 8.111 87.5 19730101 20200624 607640 99999 KEBILI TS 33.7 8.967 46.0 19880401 20200624 607650 99999 GABES TS DTTG 33.876999999999995 10.103 7.9 19490101 20200624 607670 99999 GABES TS 33.733000000000004 9.917 112.2 20120101 20200624 607690 99999 ZARZIS TS DTTJ 33.875 10.775 5.8 19660722 20200624 607700 99999 MEDENINE TS 33.35 10.482999999999999 117.0 19770305 20200624 607720 99999 TATAOUINE TS 32.917 10.45 215.0 19890701 20200624 607750 99999 REMADA TS DTTD 32.306 10.382 306.0 19490108 20200624 607800 99999 EL BORMA TS DTTR 31.704 9.255 252.1 19490209 20200624 607850 99999 SABHAM LY 27.017 14.433 444.1 19490108 19521230 607880 99999 BIRAK LY 27.5 14.25 265.0 19500210 19521022 607930 99999 UBARI LY 26.583000000000002 12.767000000000001 425.0 19500210 19521217 607950 99999 MARZUQ LY 25.9 13.85 139.0 19500201 20181030 607980 99999 AL QATRUN LY 24.9 14.667 484.0 19500210 19521217 610170 99999 BILMA NG DRRI 18.683 12.917 357.0 19490401 20200624 610240 99999 AGADEZ NG DRZA 16.967 7.9670000000000005 505.1 19490401 20200624 610330 99999 TESKER NG 15.133 10.717 -999.9 20170417 20170417 610360 99999 TILLABERY NG DRRL 14.2 1.45 210.0 19490401 20200624 610400 99999 20020402 20040110 610430 99999 TAHOUA NG DRRT 14.876 5.265 385.9 19490402 20200624 610450 99999 GOURE NG DRZG 13.982999999999999 10.3 460.0 19830502 20200624 610490 99999 N'GUIGMI NG 14.25 13.117 286.0 19500204 20200624 610520 99999 DIORI HAMANI NG DRRN 13.482000000000001 2.184 223.1 19490401 20200624 610530 99999 DOSSO NG DRRD 13.033 3.3 225.0 20100113 20200624 610750 99999 BIRNI-N'KONNI NG DRRB 13.8 5.25 273.0 19490403 20200624 610800 99999 MARADI NG DRRM 13.503 7.127000000000001 378.0 19490401 20200624 610850 99999 DIFFA NG DRZF 13.373 12.627 303.0 19850401 20200624 610900 99999 ZINDER NG DRZR 13.779000000000002 8.984 462.1 19490401 20200624 610910 99999 MAGARIA NG 12.982999999999999 8.933 403.0 19801001 20200624 610960 99999 MAINE-SOROA NG DRZM 13.232999999999999 11.982999999999999 338.0 19490401 20200624 610990 99999 GAYA NG DRRG 11.883 3.45 202.0 19730101 20200624 611090 99999 BOGUS NIGER NG 19861127 19861127 612020 99999 TESSALIT ML GATS 20.243 0.977 494.1 19500608 20191218 612030 99999 YELIMANE ML GAYE 15.13 -10.57 325.0 20040803 20161124 612140 99999 KIDAL ML GAKL 18.433 1.35 459.0 19570305 20190410 612190 99999 NEMA MT 16.6 -6.733 271.9 19500111 19621231 612230 99999 TOMBOUCTOU ML GATB 16.73 -3.008 263.0 19490411 20190223 612260 99999 GAO ML GAGO 16.248 -0.005 265.2 19490401 20190830 612300 99999 NIORO DU SAHEL ML GANR 15.232999999999999 -9.35 237.0 19490406 20200624 612330 99999 NARA/KEIBANE ML GANK 15.167 -7.2829999999999995 265.0 19780201 20200624 612350 99999 YELIMANE ML 15.117 -10.567 100.0 19901001 20200624 612400 99999 HOMBORI ML GAHB 15.333 -1.683 288.0 19490403 20120218 612500 99999 MENAKA ML GAMK 15.867 2.217 278.0 19490403 20170210 612570 99999 KAYES/DAG-DAG ML GAKD 14.482000000000001 -11.44 51.5 19490403 20200624 612650 99999 AMBODEDJO ML GAMB 14.513 -4.08 276.1 19490403 20200624 612690 99999 TOUKOTO ML 13.467 -9.883 177.0 19490403 19521231 612700 99999 KITA ML GAKT 13.067 -9.467 334.0 19570105 20200624 612720 99999 SEGOU ML GASG 13.4 -6.15 289.0 19490406 20200624 612770 99999 SAN ML GASN 13.333 -4.833 284.0 19500103 20200624 612850 99999 KENIEBA ML GAKA 12.85 -11.232999999999999 132.0 19490416 20200624 612880 99999 DIOILA ML 12.482999999999999 -6.8 331.0 20050803 20050803 612900 99999 BAMAKO MT 12.633 -7.9670000000000005 331.9 19490401 19750109 612910 99999 SENOU ML GABS 12.534 -7.95 380.1 19750101 20200624 612930 99999 KOUTIALA ML GAKO 12.383 -5.4670000000000005 367.0 19500403 20200624 612960 99999 BOUGOUNI ML GABG 11.417 -7.5 351.0 19490511 20200624 612970 99999 SIKASSO ML GASK 11.35 -5.683 375.0 19490403 20200624 614010 99999 BIR MOGHREIN MR GQPT 25.237 -11.589 363.9 19570114 20181222 614020 99999 AIN BEN TILI MR 26.0 -9.533 406.0 20010809 20040808 614030 99999 F DERIK MR 22.683000000000003 -12.7 298.0 19490508 20070430 614040 99999 ZOUERATE MR 22.75 -12.482999999999999 343.0 19830701 20200621 614150 99999 NOUADHIBOU MR GQPP 20.933000000000003 -17.03 4.9 19490401 20200624 614210 99999 ATAR MR GQPA 20.506999999999998 -13.043 231.0 19430401 20200624 614370 99999 AKJOUJT MR GQNJ 19.75 -14.367 120.0 19490502 20200616 614420 99999 NOUAKCHOTT MR GQNN 18.098 -15.948 2.1 19490406 20200624 614500 99999 TIDJIKJA MR GQND 18.57 -11.424000000000001 401.1 19490607 20181222 614610 99999 BOUTILIMIT MR GQNB 17.533 -14.683 75.0 19490406 20181222 614890 99999 ROSSO MR GQNR 16.5 -15.817 6.0 19570102 20180103 614920 99999 KAEDI MR GQNK 16.16 -13.508 22.9 19820101 20180101 614970 99999 NEMA MR GQNI 16.622 -7.317 231.0 19650307 20200612 614980 99999 KIFFA MR GQNF 16.59 -11.405999999999999 128.9 19570108 20180104 614990 99999 AIOUN EL ATROUSS MR GQNA 16.711 -9.638 289.9 19570112 20181222 615100 99999 SELIBABY MR 15.232999999999999 -12.167 60.0 20041119 20150804 615200 99999 BASSIKOUNOU MR 15.867 -5.933 261.0 20021102 20050311 615680 99999 19870519 19870519 616000 99999 SAINT LOUIS SG GOSS 16.051 -16.463 2.7 19490401 20200624 616120 99999 PODOR SG GOSP 16.65 -14.967 7.0 19730101 20200624 616160 99999 20011001 20040807 616270 99999 LINGUERE SG GOOG 15.383 -15.117 21.0 19500304 20200624 616300 99999 MATAM/OURO SOGUI SG GOSM 15.65 -13.25 17.0 19490423 20200624 616410 99999 LEOPOLD SEDAR SENGHOR INTL SG GOOY 14.74 -17.49 25.9 19430401 20200624 616540 99999 THIES SG 14.8 -16.95 76.0 19500205 19521231 616660 99999 DIOURBEL SG GOOD 14.65 -16.233 9.0 19500206 20200624 616790 99999 KAOLACK SG GOOK 14.147 -16.051 7.9 19500205 20200624 616870 99999 TAMBACOUNDA SG GOTT 13.737 -13.652999999999999 49.1 19490501 20200624 616890 99999 SIMENTI SG 13.05 -13.3 52.0 19771102 20051021 616950 99999 ZIGUINCHOR SG GOGG 12.556 -16.282 22.9 19490402 20200624 616970 99999 CAP SKIRING SG GOGS 12.41 -16.746 15.8 19771101 20200624 616980 99999 KOLDA SG GOGK 12.883 -14.967 10.0 19730101 20200624 616990 99999 KEDOUGOU SG GOTK 12.572000000000001 -12.22 178.0 19730102 20200624 617010 99999 BANJUL INTL GA GBYD 13.338 -16.652 29.0 19490113 20200624 617050 99999 SIBANOR GA 13.217 -16.2 21.0 19950702 20200624 617070 99999 JENOI GA 13.482999999999999 -15.567 11.0 19880807 20200624 617110 99999 BANJUL/HALF-DIE GA 13.45 -16.45 2.0 19490113 20180625 617120 99999 KEREWAN GA 13.482999999999999 -16.183 15.0 19810506 20180613 617170 99999 KAUR GA 13.717 -15.25 6.0 19860525 20200215 617200 99999 KUNTAUR GA 13.667 -14.883 -999.9 19950504 20191111 617210 99999 GEORGETOWN GA 13.533 -14.767000000000001 1.0 19490327 20200605 617220 99999 SAPU GA 13.567 -15.933 2.0 19821009 20200620 617310 99999 BASSE GA 13.317 -14.217 4.0 19791002 20200624 617330 99999 FATOTO GA 13.667 -14.467 17.5 19950411 20200611 617410 99999 JENOI GA 13.482999999999999 -15.567 11.0 19790901 19860415 617660 99999 BISSAU OSWALDO VIEIRA INTL PU GGOV 11.895 -15.654000000000002 39.3 19490106 20200624 617690 99999 BOLAMA PU 11.583 -15.482999999999999 20.0 19490106 20200624 617810 99999 BAFATA PU GGBF 12.183 -14.667 43.0 19730105 20200624 618020 99999 KOUNDARA GV 12.567 -13.517000000000001 90.0 19891001 20200623 618090 99999 LABE GV GULB 11.325999999999999 -12.287 1035.1 19490405 20200624 618110 99999 SIGUIRI GV GUSI 11.433 -9.167 366.0 19740715 20190716 618160 99999 BOKE/BARALANDE GV GUOK 10.933 -14.317 69.0 19490403 20200310 618180 99999 KINDIA GV GUID 10.05 -12.867 459.0 19730507 20200624 618200 99999 MAMOU GV 10.367 -12.083 784.0 19500206 20200622 618290 99999 KANKAN GV GUXD 10.383 -9.3 384.0 19490401 20200427 618310 99999 CONAKRY GV 9.567 -13.617 49.0 20020113 20180529 618320 99999 CONAKRY GV GUCY 9.577 -13.612 21.9 19490401 20200624 618330 99999 FARANAH GV GUFH 10.035 -10.77 449.9 19740823 20191201 618340 99999 KISSIDOUGOU GV 9.217 -10.217 412.0 19741208 20120323 618470 99999 MACENTA GV GUMA 8.533 -9.467 544.0 19490402 20110510 618490 99999 N'ZEREKORE/KONIA GV GUNZ 7.733 -8.833 470.0 19741108 20200622 618560 99999 FREETOWN LUNGI SL GFLL 8.616 -13.195 25.6 19490124 20200623 618660 99999 BONTHE SL GFBN 7.5329999999999995 -12.5 8.0 19490124 19840908 618730 99999 MAKENI SL 8.55 -12.05 84.0 19830302 19950808 618760 99999 MAKENI SL 8.883 -11.95 87.5 19490118 19521231 618770 99999 YELE SL 8.417 -11.833 68.0 19840502 20030220 618780 99999 NJALA SL 8.1 -12.1 56.0 19771013 20051015 618810 99999 BO SL GFBO 7.95 -11.767000000000001 93.0 19490129 20071010 618860 99999 KABALA SL 9.583 -11.55 464.0 19730102 20070523 618910 99999 DARU SL 7.983 -10.85 186.0 19490118 20080816 618920 99999 SEFADU SL 8.65 -10.967 390.0 19840204 19990322 619000 99999 ASCENSION ISLAND SH -7.933 -14.417 20.0 19800511 20051015 619010 99999 ST. HELENA IS. SH -15.933 -5.667000000000001 436.0 19430518 20200624 619020 99999 ASCENSION AUX AF SH FHAW -7.97 -14.394 84.7 19420901 20200624 619030 99999 UNKN AY -71.05 -10.9 37.0 19500307 19520115 619100 99999 19870519 19870519 619140 99999 19870503 19870503 619310 99999 SAO TOME INTL TP FPST 0.37799999999999995 6.712000000000001 10.1 19730101 20200624 619340 99999 PRINCIPE TP FPPR 1.663 7.412000000000001 180.1 19730504 20190302 619670 70701 DIEGO GARCIA NAVAL AIR STATION IO FJDG -7.3 72.4 4.3 19490201 20200624 619680 99999 ILES GLORIEUSES FS -11.583 47.283 4.0 19730102 20200624 619700 99999 ILE JUAN DE NOVA JU -17.05 42.717 10.0 19730102 20190206 619710 99999 ALDABRA RE -9.35 46.533 4.0 19730102 19770701 619720 99999 ILE EUROPA EU -22.333000000000002 40.333 6.0 19730101 20200624 619740 99999 AGALEGA MP -10.433 56.6 4.0 19490201 20200624 619760 99999 SERGE-FROLOW (ILE TROMELIN) TE -15.883 54.516999999999996 13.0 19730101 20200622 619790 99999 LE COLORADO RADAR FR -20.916999999999998 55.417 743.0 20040611 20040611 619800 99999 ST DENIS GILLOT RE FMEE -20.886999999999997 55.51 20.1 19730101 20200624 619810 99999 LE PORT RE -20.933000000000003 55.283 11.0 19830701 20121228 619840 99999 ST PIERRE PIERREFONDS RE FMEP -21.320999999999998 55.425 18.0 19730102 20200624 619860 99999 ST. BRANDON (ST. RAPHAEL) MP -16.45 59.617 4.0 19490201 20200624 619880 99999 PLAINE CORAIL MP FIMR -19.758 63.361000000000004 29.0 19490201 20200624 619890 99999 PLAINE CORAIL MP -19.75 63.37 30.0 20060101 20200624 619900 99999 SIR SEEWOOSAGUR RAMGOOLAM INTL MP FIMP -20.43 57.684 56.7 19490201 20200624 619950 99999 VACOAS (MAURITIUS) MP -20.3 57.467 425.0 19770701 20200624 619960 99999 MARTIN DE VIVIES (ILE AMSTERDAM) FS -37.8 77.533 29.0 19730101 20191228 619970 99999 ALFRED FAURE (ILES CROZET) FS -46.433 51.85 142.0 19740903 20200610 619980 99999 PORT-AUX-FRANCAIS (ILES KERGUELEN) FS -49.35 70.25 30.0 19730101 20200624 620020 99999 NALUT LY 31.514 10.597999999999999 621.0 19490130 20200624 620070 99999 ZUARA LY 32.555 12.056 4.0 19490129 20200624 620080 99999 YEFREN LY 32.04 12.312999999999999 691.0 19830701 20200624 620100 99999 TRIPOLI INTL LY HLLT 32.664 13.159 80.2 19430630 20171114 620110 99999 GARINA LY 32.15 13.0 728.0 20161109 20200624 620111 99999 WHEELUS FLD LY 32.9 13.283 4.0 19450415 19700528 620115 99999 TRIPOLI LY HLLL 0.0 0.0 -999.0 20051014 20051014 620120 99999 EL KHOMS LY 32.400999999999996 14.142999999999999 25.0 19900601 20200624 620140 99999 BENWLID LY 31.741 13.957 271.0 20050315 20200522 620160 99999 MISURATA LY 32.243 15.020999999999999 33.0 19490129 20200624 620165 99999 MISURATA AIRPORT LY HLMS 32.333 15.067 18.3 20111117 20140917 620180 99999 ABU NJAYM LY 30.355 15.254000000000001 90.0 20041121 20200602 620190 99999 SIRTE LY 31.2 16.583 14.0 19490130 20200624 620525 99999 MITIGA LY HLLM 32.894 13.276 11.0 20050507 20190405 620530 99999 BENINA AIRPORT LY HLLB 32.097 20.269000000000002 132.0 19431031 20200624 620540 99999 AL-MARJ LY 32.516999999999996 20.883000000000003 335.0 20050317 20200624 620550 99999 AGEDABIA LY 30.717 20.167 7.0 19490130 20180626 620560 99999 SHAHAT LY 32.8 21.883000000000003 648.0 19490129 20110217 620590 99999 DERNA LY 32.783 22.583000000000002 26.0 19490129 20200511 620620 99999 TOBRUK LY 32.1 23.933000000000003 51.0 19441027 20200624 620630 99999 TOBRUK LY HLGN 31.866999999999997 23.9 158.0 19490129 20020308 621010 99999 MOORED BUOY US 50.6 -2.9330000000000003 -999.0 20080721 20080721 621030 99999 GHADAMES EAST LY HLTD 30.151999999999997 9.715 342.0 19570101 20200624 621110 99999 MOORED BUOY US 58.9 -0.2 -999.0 20041118 20041118 621130 99999 MOORED BUOY US 58.4 0.3 -999.0 20040726 20040726 621160 99999 MOORED BUOY US 58.1 1.8 -999.0 20040829 20040829 621170 99999 MOORED BUOY US 57.9 0.1 -999.0 20040726 20040726 621200 99999 GARIAT EL-SHARGHIA LY 30.383000000000003 13.583 497.0 19730101 20200624 621210 99999 EL HAMADA LY 29.517 12.933 623.0 20040517 20150905 621220 99999 MOORED BUOY US 56.5 2.017 -999.0 20040801 20040801 621240 99999 SEBHA LY HLLS 26.987 14.472999999999999 434.9 19611204 20140111 621250 99999 MOORED BUOY US 53.8 -3.8 -999.0 20081204 20081204 621260 99999 MOORED BUOY US 53.8 -3.6 -999.0 20041030 20041101 621300 99999 MOORED BUOY US 53.0 1.7 -999.0 20041110 20041110 621310 99999 HON LY 29.116999999999997 15.95 267.0 19490130 20200624 621370 99999 PLATFORM NO. 62137 US 57.35 1.4669999999999999 0.0 20040726 20040726 621430 99999 MOORED BUOY US 58.3 0.4 -999.0 20040726 20040726 621450 99999 MARADA LY 29.467 19.333 37.0 20080901 20140304 621500 99999 MOORED BUOY US 58.0 0.6 -999.0 20041202 20041224 621610 99999 JALO LY 29.033 21.566999999999997 60.0 19490129 20200624 621760 99999 GIGHBUB LY 29.75 24.533 -1.0 19490131 20200624 622000 99999 OBARI LY HLUB 26.6 12.783 463.0 19880502 20200624 622120 99999 GHAT LY HLGT 25.146 10.142999999999999 699.8 19811201 20200624 622250 99999 TRAGEN LY 25.933000000000003 14.45 421.0 20080901 20180807 622590 99999 TAZERBO LY 25.673000000000002 21.090999999999998 261.2 19620403 20200624 622710 99999 KUFRA LY HLKF 24.179000000000002 23.314 416.7 19490129 20200624 623000 99999 SALLOUM EG 31.533 25.183000000000003 6.0 19370103 20040530 623010 99999 SIDI BARRANI EG 31.616999999999997 25.9 23.0 19990128 20140211 623030 99999 SIDI BARRANI EG 31.633000000000003 25.967 23.0 19570101 20170705 623050 99999 SALLUM PLATEAU EG 31.566999999999997 25.133000000000003 6.0 19951214 20200605 623060 99999 MERSA MATRUH EG HEMM 31.325 27.221999999999998 28.7 19370103 20200624 623080 99999 RAS EL HIKMA / QISM MOURSY MATROUH EG 31.116999999999997 27.866999999999997 40.0 20010805 20190409 623090 99999 DABAA EG 31.017 28.433000000000003 18.0 19570102 20200624 623150 99999 PORT ALEXANDRIA EG 31.183000000000003 29.866999999999997 14.0 20010711 20150407 623180 99999 ALEXANDRIA INTL EG HEAX 31.184 29.949 -1.8 19370103 20200624 623190 99999 20010729 20041212 623240 99999 ROSETTA EG 31.45 30.366999999999997 1.0 20020312 20150803 623250 99999 BALTIM EG 31.55 31.1 2.0 19940801 20200618 623290 99999 PORT DAMIETTA EG 31.467 31.767 4.0 19370103 20160210 623300 99999 DAMIETTA EG 31.416999999999998 31.816999999999997 1.0 20010823 20141105 623320 99999 PORT SAID/EL GAMIL EG 31.283 32.233000000000004 6.0 19870901 20081231 623330 99999 PORT SAID EG 31.267 32.3 6.0 19490301 20200624 623350 99999 RAFH-AGRIMET EG 31.2 34.2 73.0 20031230 20190424 623360 99999 EL ARISH-AGRIMET EG 31.083000000000002 33.817 27.0 19381103 20190907 623370 99999 EL ARISH INTL EG HEAR 31.073 33.836 36.9 19850601 20200509 623380 99999 GHAZZA EG 31.5 34.45 16.0 19600102 20150511 623390 99999 DAMANHOUR EG 31.033 30.467 2.0 19890329 20161101 623430 99999 AD DANABIQ EG 31.05 31.467 7.0 19600101 19660920 623450 99999 TAHRIR EG 30.65 30.7 15.0 19880604 20200213 623480 99999 TANTA EG 30.783 31.0 12.0 19600101 20160212 623570 99999 WADI EL NATROON EG 30.4 30.35 1.0 19960407 20190917 623600 99999 SHEBIN EL KOM EG 30.6 31.017 11.0 20011029 20190320 623601 99999 BORG EL ARAB INTL EG HEBA 30.918000000000003 29.695999999999998 53.9 20040510 20200624 623630 99999 BANHA EG 30.467 31.183000000000003 14.0 20010729 20200413 623660 99999 CAIRO INTL EG HECA 30.122 31.406 116.4 19431031 20200624 623661 99999 MARSA ALAM INTL EG HEMA 25.557 34.582 76.5 20040510 20200624 623662 99999 ISMALIA EG 30.583000000000002 32.25 3.0 20080101 20081231 623663 99999 MINYA EG HEAM 28.0 30.75 1.0 20070819 20091027 623664 99999 ST CATHERINE INTL EG 28.683000000000003 34.067 1331.0 20070822 20200624 623665 99999 EDFU EG 24.983 32.867 85.0 20090508 20190907 623670 99999 CAIRO ALMAZA EG 30.083000000000002 31.366999999999997 51.0 19370103 19400531 623680 99999 CAIRO WEST EG 30.116999999999997 30.916999999999998 151.0 19730101 20170703 623690 99999 BAHTIM EG 30.133000000000003 31.25 16.0 20010924 20020601 623710 99999 CAIRO H.Q. EG 30.083000000000002 31.283 26.0 19990409 20030529 623720 99999 CAIRO /ALMAZA EG 30.1 31.366999999999997 74.1 19490322 19521231 623730 99999 EMBABA EG 30.066999999999997 31.183000000000003 19.0 19740423 20081211 623750 99999 GIZA-AGRIMET EG 30.05 31.217 18.0 20011016 20170609 623780 99999 HELWAN EG HE15 29.866999999999997 31.333000000000002 141.0 19381002 20200520 623810 99999 FAYOUM EG 29.3 30.85 23.0 19600101 20160422 623860 99999 MINYA EG 28.083000000000002 30.733 40.0 19881006 20040921 623870 99999 MINYA EG HE25 28.083000000000002 30.733 37.2 19381002 20200624 623890 99999 MALAWY-AGRIMET EG 27.7 30.75 44.0 20031230 20131021 623920 99999 ASYUT-AGRIMET EG 27.2 31.166999999999998 52.0 19380208 20051107 623930 99999 ASYUT INTL EG HEAT 27.046999999999997 31.011999999999997 235.3 19490323 20200624 623970 99999 SOHAG AIRPORT EG HEMK 26.333000000000002 31.75 92.7 19990101 20160325 623980 99999 SOHAG INTL AIRPORT EG HESG 26.333000000000002 31.733 92.7 20070215 20200624 624020 99999 QENA EG 26.183000000000003 32.733000000000004 74.0 19381001 20130701 624030 99999 SOUTH OF VALLEY UNIVERSITY EG 26.2 32.75 96.0 20040510 20190823 624050 99999 LUXOR INTL EG HELX 25.671 32.707 89.6 19431130 20200624 624080 99999 EDFOU EG 24.983 32.817 89.0 20080523 20080523 624110 99999 DARAW EG HE23 24.416 32.955999999999996 99.1 19850508 20050103 624140 99999 ASWAN INTL EG HESN 23.964000000000002 32.82 201.8 19370103 20200624 624160 99999 SIWA OASIS ARPT EG HESW 29.346 25.506999999999998 101.0 20010707 20200624 624170 99999 SIWA EG 29.2 25.483 -15.0 19370103 20200623 624190 99999 ABU SIMBEL EG HEBL 22.375999999999998 31.612 187.8 19730723 20200624 624200 99999 BAHARIA EG 28.333000000000002 28.866999999999997 130.0 19490905 20200624 624210 99999 19870519 19870519 624230 99999 FARAFRA EG 27.05 27.983 78.0 19500313 20200107 624250 99999 SHARK EL OWEINAT INTL EG HEOW 22.586 28.717 261.8 20010713 20200526 624320 99999 DAKHLA EG 25.5 28.967 117.0 19380310 20200608 624350 99999 KHARGA EG 25.45 30.533 73.0 19570101 20200624 624380 99999 ABU SUWAYR EG 30.566999999999997 32.1 16.0 19581102 20080628 624400 99999 ISMAILIA EG HEIS 30.6 32.25 12.5 19431031 20200624 624410 99999 ISMAILIA & EG 30.6 32.283 3.0 19370103 19881010 624440 99999 FAID EG 30.316999999999997 32.283 11.0 19490304 19521231 624470 99999 MADIYAH EG 30.05 32.533 14.0 19490304 19520105 624490 99999 PORT TAWFIK EG 29.933000000000003 32.567 4.0 19791017 20041115 624500 99999 EL-SUEZ EG 29.866999999999997 32.467 3.6 19600101 20190819 624520 99999 NEKHEL EG 29.916999999999998 33.733000000000004 403.0 20010916 20200624 624530 99999 ELHASANA EG 30.45 33.766999999999996 255.0 20040115 20190131 624540 99999 BEAR EL ABD EG 30.967 32.766999999999996 24.0 20040617 20160913 624550 99999 RAS SEDR EG 29.583000000000002 32.717 16.0 19960201 20200624 624560 99999 TABA AIRPORT (RAS ELNAKB) EG 29.6 34.783 749.0 20040518 20120730 624570 99999 SANT KATREIN AIRPORT EG 28.683000000000003 34.05 1331.0 20110114 20121116 624580 99999 ABURDEES EG 28.9 33.183 8.0 20010903 20200624 624590 99999 EL TOR EG HETR 28.209 33.646 35.1 19381101 20200624 624620 99999 JIYANKLIS NEW EG HEGS 30.82 30.191 14.9 19490301 20110501 624630 99999 HURGHADA INTL EG HEGN 27.178 33.799 15.8 19900215 20200624 624639 99999 SHARM EL SHEIKH INT EG 27.967 34.383 45.0 19970901 20200624 624640 99999 HURGUADA EG 27.283 33.733000000000004 7.0 20100626 20140907 624650 99999 KOSSEIR EG 26.133000000000003 34.25 11.0 19381002 20190405 624655 99999 TABA INTL EG 29.6 34.766999999999996 768.0 19990710 20200419 624670 99999 DAHAB EG 28.483 34.5 19.0 20040222 20200615 624760 99999 SHALATIN EG 23.133000000000003 35.583 21.0 20030330 20190604 625600 99999 MOORED BUOY US 30.1 -19.4 -999.0 20040304 20041109 625630 99999 MOORED BUOY US 31.2 -13.5 -999.0 20040419 20040611 625650 99999 MOORED BUOY US 28.1 -15.1 -999.0 20040128 20040820 625660 99999 MOORED BUOY US 29.5 -14.4 -999.0 20041021 20041021 625750 99999 MOORED BUOY US 27.6 -16.1 -999.0 20031204 20041004 625760 99999 MOORED BUOY US 27.3 -18.1 -999.0 20040706 20080606 626000 99999 HALFA (WADI) SU HSSW 21.816999999999997 31.483 183.0 19490130 20190508 626150 99999 HALIB SU 22.217 36.65 2.0 19741008 20021211 626200 99999 STATION NO 6 * SU 20.75 32.55 468.0 19490130 20050528 626350 99999 ARBAT SU 19.833 36.967 120.0 20010717 20080525 626400 99999 ABU HAMED SU 19.533 33.317 312.0 19490209 20190505 626410 99999 PORT SUDAN SU HSSP 19.583 37.217 3.0 19490205 20190508 626414 99999 PORT SUDAN SU HSPN 19.434 37.234 41.1 20030218 20200329 626500 99999 DONGOLA SU HSDN 19.154 30.43 235.6 19490301 20200328 626520 99999 SUAKIN SU 19.1 37.333 3.0 20010809 20140117 626600 99999 KARIMA SU 18.55 31.85 249.0 19490130 20190508 626610 99999 GEBEIT SU 18.95 36.833 796.0 19490209 20180509 626700 99999 HAIYA SU 18.333 36.367 639.0 19490130 19740806 626710 99999 TOKAR SU 18.433 37.733000000000004 19.0 19490811 20140706 626750 99999 AGIG SU 18.233 38.183 2.0 19741008 20030422 626800 99999 ATBARA SU HSAT 17.7 33.967 345.0 19490130 20190508 626810 99999 DERUDEB SU 17.55 36.1 508.0 20010712 20041025 626820 99999 HUDEIBA SU 17.567 33.933 350.0 20040227 20190508 627000 99999 SHENDI SU HSND 16.7 33.433 360.0 19490303 20190508 627210 99999 KHARTOUM SU HSSS 15.589 32.553000000000004 385.6 19421031 20200624 627220 99999 AROMA SU 15.833 36.15 431.0 19490302 20150717 627230 99999 SHAMBAT OBSERVATORY SU 15.667 32.533 380.0 19510713 20190508 627300 99999 KASSALA SU HSKA 15.387 36.329 509.3 19490130 20190508 627330 99999 HALFA EL GAIDIDA SU 15.317 35.6 451.0 19740221 20190508 627350 99999 SHOWAK SU 14.217 35.85 511.0 20010712 20050808 627500 99999 ED DUEIM SU 14.0 32.333 378.0 19490301 20190508 627510 99999 WAD MEDANI SU 14.4 33.483000000000004 408.0 19490130 20190508 627520 99999 GEDAREF/AZAZA SU HSGF 14.033 35.4 599.0 19490305 20190508 627560 99999 SAVDIRI SU 14.417 29.083000000000002 536.0 20010731 20101001 627600 99999 EL FASHIR SU HSFS 13.615 25.325 729.4 19430401 20190508 627610 99999 HAG ABDULLA SU 13.95 33.583 417.0 20010705 20120226 627620 99999 SENNAR SU HSNR 13.55 33.617 418.0 19790102 20190508 627700 99999 GENEINA SU HSGN 13.482999999999999 22.45 805.0 19430401 20190508 627710 99999 EL OBEID SU HSOB 13.152999999999999 30.233 587.3 19490130 20200329 627720 99999 KOSTI/RABAK SU HSKI 13.167 32.667 381.0 19490130 20190508 627730 99999 SINGA SU 13.15 33.95 429.0 19490130 19521225 627740 99999 UMM BENIN SU 13.067 33.95 435.0 20071113 20190508 627800 99999 ZALINGEI SU HSZA 12.9 23.483 900.0 19490301 20131106 627810 99999 EN NAHUD SU 12.7 28.433000000000003 564.0 19490205 20190508 627900 99999 NYALA SU HSNN 12.05 24.883000000000003 643.0 19790101 20200329 627950 99999 ABU NA'AMA SU 12.732999999999999 34.133 445.0 19590101 20190508 628010 99999 RENK SU HSRN 11.75 32.783 282.0 19791101 20200408 628020 99999 ER ROSEIRES SU 11.85 34.383 463.9 19510110 19521231 628030 99999 RASHAD SU 11.867 31.05 885.0 19810908 20190428 628050 99999 DAMAZIN SU HSDZ 11.786 34.336999999999996 482.2 19730101 20190505 628080 99999 GAZALA GAWZAT SU 11.467 26.45 480.0 19741219 20050902 628090 99999 BABANUSA SU 11.333 27.816999999999997 453.0 19860301 20190429 628100 99999 KADUGLI SU HSLI 11.138 29.701 563.3 19740601 20190429 628400 99999 MALAKAL OD HSSM 9.559 31.651999999999997 393.5 19490301 20110713 628500 99999 AWEIL / UWAYL OD HSAW 8.767000000000001 27.4 414.0 20040610 20160111 628550 99999 BENTIU OD 9.232999999999999 29.833000000000002 389.0 19740625 20041112 628600 99999 NASIR SU HSNA 8.617 33.067 399.0 20040710 20101031 628700 99999 GAMBELLA ET HAGM 8.129 34.563 491.9 20010710 20200226 628710 99999 RAGA OD HSRJ 8.467 25.683000000000003 545.0 19880216 20150827 628800 99999 WAU OD HSWW 7.7 28.017 438.0 19490301 20200408 628810 99999 AKOBO OD HSAK 7.7829999999999995 33.016999999999996 402.0 20040228 20121218 628900 99999 TONJ OD 7.2829999999999995 28.75 429.0 20010813 20120606 629050 99999 PIBOR POST SU 6.8 33.133 510.0 20020325 20020430 629310 99999 MARIDI OD HSMD 4.917 29.467 749.0 19740626 19740626 629400 99999 YAMBIO OD HSYA 4.567 28.4 649.0 20011122 20040701 629401 99999 BENTU OD 9.217 29.816999999999997 609.6 20050513 20051207 629407 99999 TUMBURA OD HSTU 5.6 27.467 609.0 20130529 20200105 629410 99999 JUBA OD HSSJ 4.872 31.601 468.8 19490301 20200623 629510 99999 NAGICHOT OD 4.2669999999999995 33.567 1980.0 20050127 20050127 629550 99999 YEI OD HSYE 4.083 30.666999999999998 830.0 20030124 20030124 630060 99999 NACFA ER 16.667 38.333 1676.0 19490130 20010921 630100 99999 TESSENEI /FLT D-4 ER 15.133 36.7 615.1 19580215 19731001 630130 99999 AGORDAT ET HAAG 15.55 37.883 626.0 19490206 19780503 630140 99999 KEREN ER 15.75 38.45 1402.1 19490404 19631230 630210 99999 ASMARA INTL ER HHAS 15.292 38.911 2335.1 19431219 20171103 630220 99999 GINDA ER 15.433 39.083 960.1 19490130 19750707 630230 99999 MASSAWA ER HAMS 15.617 39.45 10.0 19490206 20030623 630290 99999 ADI UGRI ER 14.883 58.817 1972.1 19490209 19750908 630300 99999 ADI KAIE /CAIEH ER 14.833 39.333 2642.0 19490209 19631231 630420 99999 BOGUS ETHIOPIAN ET 19880408 20010921 630430 99999 ASSAB ER 13.067 42.717 14.0 19490130 19951223 631080 99999 MOORED BUOY US 60.133 1.7 -999.0 20040131 20040131 631100 99999 MOORED BUOY US 59.5 1.517 -999.0 20041227 20041227 631150 99999 TADJOURA DJ 11.783 42.883 10.0 19520101 19581130 631170 99999 BOGUS DJIBOUTI DJ 19860811 20021001 631250 99999 DJIBOUTI DJ HFFF 11.55 43.15 19.0 19520101 20081229 631252 99999 DJIBOUTI/AMBOULI DJ HFFF 11.55 43.133 13.0 19961201 20200624 631260 99999 DJIBOUTI SO REP/PLATEAU DU S BP 11.6 43.15 7.3 19490210 19640131 631410 99999 DIKHIL DJ 11.1 42.367 490.0 19520101 20130725 631450 99999 OBOLEH DJ 11.167 42.717 777.0 20120816 20120816 631500 99999 BORAMA SO 9.95 43.183 1454.0 19900807 20130922 631600 99999 BERBERA SO HCMI 10.389000000000001 44.941 9.1 19730101 20141221 631700 99999 EGAL INTL SO HCMH 9.517999999999999 44.089 1348.1 19520101 20200213 631750 99999 BURAO SO HCMV 9.517000000000001 45.567 1032.0 19730101 20070201 631800 99999 ERIGAVO SO 10.633 47.367 1743.0 19921215 20050725 631900 99999 LAS-ANOD SO 8.5 47.367 700.0 20050830 20051017 632000 99999 ALULA SO 11.95 50.733000000000004 2.0 19570113 20050512 632100 99999 BOSASO SO HCMF 11.283 49.183 2.0 19570104 20200329 632200 99999 SCUSCIUBAN SO 10.3 50.233000000000004 344.0 19570101 20050903 632250 99999 GARDO SO 9.517000000000001 49.083 812.0 19570103 20120730 632270 99999 GAROE SO 7.95 48.5 -999.9 19810204 20200325 632280 99999 EIL SO 7.95 49.783 -999.9 20080927 20080927 632300 99999 GALCAYO SO 6.85 47.266999999999996 302.0 19540104 20161007 632350 99999 OBBIA SO 5.332999999999999 48.567 10.0 19730801 19830208 632370 99999 EL BUR SO 4.7 46.617 175.0 19570101 20190720 632400 99999 BELET UEN SO 4.7 45.217 173.0 19570101 20190502 632450 99999 HUDDUR SO 4.183 43.867 -999.9 19930201 20030614 632470 99999 ISCIA BAIDOA SO 3.133 43.667 487.0 19570103 20051019 632480 99999 LUG-GANANE SO 3.583 42.45 -999.9 20051019 20051019 632500 99999 BARDERA SO 2.35 42.3 116.0 19570114 20200603 632580 99999 AFGOI SO 2.15 45.133 83.0 20030620 20030620 632600 99999 MOGADISHU SO HCMM 2.033 45.35 9.0 19490121 20200624 632610 99999 GENALE SO 1.8330000000000002 44.75 69.0 20031018 20031018 632620 99999 EL MUGNE SO 1.7169999999999999 44.766999999999996 12.0 20020608 20050311 632650 99999 AFMADU SO 0.517 42.067 29.0 20050624 20050624 632660 99999 ALESSANDRA SO 0.5 42.766999999999996 24.0 20020805 20051014 632700 99999 CHISIMAIO SO -0.36700000000000005 42.433 10.0 19570123 20050406 632710 99999 JONTE SO -0.33299999999999996 42.567 8.0 20100622 20100622 633299 99999 AXUM ET HAAX 14.147 38.773 2121.1 19890421 19891126 633300 99999 MEKELE ET HAMK 13.467 39.533 2254.3 19571209 20200624 633310 99999 GONDER ET HAGN 12.52 37.434 1965.7 19570101 20200624 633320 99999 BAHIR DAR ET HABD 11.607999999999999 37.321999999999996 1822.1 19731003 20200624 633330 99999 COMBOLCHA/DESSIE ET HADC 11.083 39.717 1864.0 19570104 20200624 633340 99999 DEBRE MARCOS ET HADM 10.35 37.717 2476.0 19570101 20200624 633400 99999 LEKEMTE ET 9.083 36.45 2080.0 19730909 20200624 634020 99999 JIMMA ET HAJM 7.666 36.817 1676.4 19570101 20200624 634030 99999 GORE ET HAGR 8.167 35.55 1974.0 19570101 20200624 634043 99999 ASOSA ET HASO 10.019 34.586 1554.5 20010128 20010128 634500 99999 BOLE INTL ET HAAB 8.978 38.799 2325.6 19570101 20200624 634510 99999 HARAR MEDA (MIL) ET HAHM 8.732999999999999 39.0 1876.0 19570109 20200623 634520 99999 AFDAM ET 9.417 41.0 1153.0 19570109 20140827 634530 99999 METEHARA ET 8.867 39.9 930.0 19570101 20200624 634531 99999 AWASH ET HAAW 8.933 40.083 1052.0 19730101 19841226 634590 99999 BOGUS ETHIOPIAN ET 19850701 20040313 634600 99999 AWASSA (LAKE) ET HALA 7.067 38.05 1652.0 19730620 20200624 634710 99999 DIRE DAWA INTL ET HADR 9.625 41.854 1158.8 19570101 20200624 634723 99999 MASSLO/MESLO ET HAML 6.367000000000001 39.833 2274.0 20021218 20021218 634730 99999 JIGGIGA ET HAJJ 9.333 42.717 1644.0 19570101 20200317 634740 99999 ROBE/BALE ET 7.132999999999999 40.0 2480.0 19630118 20200624 634750 99999 KABRE DARE /ETH-AFB ET 6.75 44.266999999999996 450.0 19571017 19771015 634760 99999 GHINNIR ET 7.15 40.7 1844.0 19801116 20020408 634763 99999 GHINNIR/GINIR ET HAGH 7.15 40.717 1844.0 20050421 20050901 634770 99999 ... ET 0.0 0.0 19570119 19631207 634780 99999 GODE ET HAGO 5.935 43.57899999999999 254.2 19730104 20200624 635000 99999 ARBA MINCH ET HAAM 6.039 37.59 1189.0 19870301 20200624 635320 99999 KIBRE MENGIST SW ET 5.867000000000001 38.95 1770.0 19570101 19631219 635330 99999 NEGHELLI (MIL) ET HANG 5.2829999999999995 39.75 1455.0 19570101 20200624 636020 99999 ARUA UG HUAR 3.05 30.916999999999998 1211.0 19570101 20200622 636120 99999 LODWAR KE HKLO 3.122 35.609 522.7 19570101 20200624 636190 99999 MOYALE LOWER (ODA) KE HKMY 3.533 39.05 1097.0 19570101 20200624 636240 99999 MANDERA KE HKMA 3.9330000000000003 41.867 231.0 19570101 20200624 636280 99999 PARAA UG 2.3 31.583000000000002 693.0 19730719 20030909 636300 99999 GULU UG HUGU 2.806 32.272 1069.8 19570101 20200622 636304 99999 LIRA UG HULI 2.25 32.9 1091.0 19850408 20160222 636310 99999 LIRA KE 2.283 32.933 1189.0 20090801 20200622 636350 99999 MOROTO UG 2.517 34.583 1280.0 19570101 19741002 636353 99999 MOROTO UG 2.533 34.65 1280.0 19990118 20030623 636410 99999 MARSABIT KE HKMB 2.3 37.9 1345.0 19751201 20200624 636540 99999 MASINDI UG HUMI 1.683 31.717 1147.0 19630316 20200616 636580 99999 SOROTI UG HUSO 1.7280000000000002 33.623000000000005 1126.8 19730101 20200622 636610 99999 KITALE KE HKKT 0.972 34.959 1850.1 19491101 20200624 636630 99999 19570101 19611231 636710 99999 WAJIR KE HKWJ 1.733 40.092 234.7 19570101 20200624 636735 99999 MARA SERENA KE HKMS -1.405 35.008 1585.0 20111212 20190615 636740 99999 KASESE UG HUKS 0.183 30.1 961.0 19730101 20200622 636760 99999 19570101 19661231 636763 99999 FORT PORTAL UG HUFP 0.667 30.283 1533.0 20030617 20030617 636800 99999 KAMPALA UG 0.317 32.617 1140.0 19730102 20200622 636820 99999 JINJA UG HUJI 0.45 33.183 1173.0 19570101 20200622 636840 99999 TORORO UG HUTO 0.6829999999999999 34.167 1171.0 19570101 20200622 636860 99999 ELDORET KE 0.483 35.3 2120.0 19570101 20200624 636870 99999 KAKAMEGA KE HKKG 0.271 34.787 1530.1 19841101 20200327 636880 99999 EL DORET INTL KE HKED 0.40399999999999997 35.239000000000004 2150.1 20030330 20180516 636940 99999 NANYUKI KE 0.017 37.067 1946.5 19570101 19750808 636943 99999 NANYUKI KE HKNY -0.067 37.033 1905.0 20001208 20170203 636944 99999 MULIKA KE HKMK 0.233 38.183 679.7 20111201 20130622 636950 99999 MERU KE HKME 0.083 37.65 1554.0 19570101 20200624 636953 99999 ISIOLO KE HKIS 0.35 37.583 1067.0 20030521 20030521 637020 99999 MBARARA UG HUMA -0.617 30.65 1413.0 19570101 20200622 637050 99999 ENTEBBE INTL UG HUEN 0.042 32.444 1152.8 19490121 20200624 637080 99999 KISUMU KE HKKI -0.086 34.729 1208.5 19490909 20200624 637085 99999 ISII KE -0.6829999999999999 34.7 0.0 19840207 19841127 637090 99999 KISII KE HKKS -0.667 34.783 1493.0 19841110 20170512 637100 99999 KERICHO KE HKKR -0.36700000000000005 35.35 2184.0 19730719 20200624 637110 99999 SUBA KE -0.4 34.133 1143.0 20120309 20160716 637120 99999 EQUATOR SW KE -0.017 35.55 2762.0 19570101 19601231 637140 99999 NAKURU KE HKNK -0.267 36.1 1901.0 19570101 20200624 637170 99999 NYERI KE HKNI -0.5 36.967 1759.0 19790901 20200624 637200 99999 EMBU KE HKEM -0.5 37.45 1493.0 19790901 20200624 637230 99999 GARISSA KE HKGA -0.46399999999999997 39.648 148.0 19570101 20200624 637260 99999 KABALE UG HUKB -1.25 29.983 1869.0 19570101 20200622 637290 99999 BUKOBA TZ HTBU -1.3330000000000002 31.816999999999997 1137.0 19570101 20200624 637330 99999 MUSOMA TZ HTMU -1.5 33.8 1147.0 19570101 20200624 637335 99999 MAKAU TZ HTMH -3.367 34.833 1563.9 20110708 20200620 637370 99999 NAROK KE HKNO -1.133 35.833 1890.0 19570101 20200624 637380 99999 MAGADI KE -1.883 36.283 622.0 19570101 20050521 637390 99999 NAIROBI EASTLEIGH KE HKRE -1.2770000000000001 36.861999999999995 1639.8 20010729 20170727 637400 99999 NAIROBI JKIA KE HKJK -1.319 36.928000000000004 1623.7 19490121 20200624 637403 99999 NAIROBI/DAGORETTI KE -1.3 36.75 1798.0 19850130 19910806 637410 99999 NAIROBI/DAGORETTI KE HKNC -1.3 36.75 1798.0 19570101 20200624 637420 99999 NAIROBI WILSON KE HKNW -1.3219999999999998 36.815 1687.4 19630316 20200624 637560 99999 MWANZA TZ HTMW -2.444 32.933 1147.0 19500108 20200624 637660 99999 MAKINDU KE HKMU -2.283 37.833 1000.0 19570101 20200624 637720 99999 LAMU MANDA KE HKLU -2.252 40.913000000000004 6.1 19570101 20200624 637840 99999 SHINYANGA TZ -3.65 33.35 1000.0 19870601 20181225 637880 99999 19570101 19600331 637890 99999 ARUSHA TZ HTAR -3.3680000000000003 36.633 1386.8 19600111 20200624 637900 99999 MOSHI TZ HTMS -3.35 37.333 831.0 19490909 20200620 637910 99999 KILIMANJARO INTL TZ HTKJ -3.429 37.074 893.7 19730101 20200624 637930 99999 VOI KE HKVO -3.4 38.567 579.0 19570101 20200624 637990 99999 MALINDI KE HKML -3.2289999999999996 40.102 25.0 19630316 20200624 638010 99999 KIGOMA TZ HTKA -4.883 29.633000000000003 885.0 19570101 20200624 638100 99999 SINGIDA TZ -4.8 34.717 1307.0 20060511 20181114 638160 99999 SAME TZ HTSE -4.083 37.717 872.0 19570101 20200620 638180 99999 MOMBO TZ HTMO -4.883 38.283 511.0 19580206 20030306 638200 99999 MOMBASA MOI INTL KE HKMO -4.035 39.594 61.0 19490121 20200624 638320 99999 TABORA AIRPORT TZ HTTB -5.083 32.833 1190.0 19490121 20200624 638400 99999 HANDENI TZ -5.433 38.033 756.0 20050804 20200618 638430 99999 AMANI TZ -5.1 38.633 911.0 19570101 19611231 638440 99999 TANGA TZ HTTG -5.092 39.071 39.3 19570101 20200620 638450 99999 PEMBA TZ HTPE -5.257000000000001 39.811 24.4 19570101 20200620 638620 99999 DODOMA TZ HTDO -6.17 35.753 1119.5 19500207 20200624 638630 99999 KONGWA TZ -6.2 36.433 1113.0 19570101 20200421 638660 99999 MOROGORO (MET) TZ HTMG -6.832999999999999 37.65 526.0 19570101 20200624 638700 99999 ZANZIBAR TZ HTZA -6.222 39.225 16.5 19570101 20200624 638810 99999 SUMBAWANGA TZ HTSU -7.9670000000000005 31.63 1923.0 19890902 20200624 638870 99999 IRINGA TZ HTIR -7.669 35.751999999999995 1425.9 19570101 20200624 638940 99999 MWALIMU JULIUS K NYERERE INTL TZ HTDA -6.877999999999999 39.203 55.5 19500201 20200624 638950 99999 MAFIA/KILINDONI TZ -7.917000000000001 39.667 21.0 19570101 20141221 639003 99999 SHINYANGA TZ HTSY -3.5 33.0 1100.0 19880324 20200620 639193 99999 KILWA MASOKO TZ HTKI -8.933 39.516999999999996 18.0 20010617 20200620 639320 99999 MBEYA TZ HTMB -8.933 33.467 1707.0 19491101 20191227 639350 99999 NJOBE SW TZ -9.367 34.75 1950.0 19570101 19611231 639360 99999 MAHENGE TZ -8.667 36.717 1200.0 20060620 20181114 639620 99999 SONGEA TZ HTSO -10.683 35.583 1067.0 19490121 20200624 639690 99999 NACHINGWEA TZ HTNA -10.35 38.75 465.0 19570101 20030609 639700 99999 LINDI TZ -10.0 39.7 41.0 19490121 20190505 639710 99999 MTWARA TZ HTMT -10.339 40.181999999999995 113.1 19570101 20200624 639800 99999 SEYCHELLES INTL SE FSIA -4.6739999999999995 55.522 3.0 19490121 20200624 639810 99999 PRASLIN SE FSPP -4.319 55.691 3.0 20010703 20180117 639850 99999 SEYCHELLES INTL SE FSSS -4.683 55.533 4.0 19770702 20051004 639950 99999 ALDABRA SE -9.35 46.533 4.0 19770701 20041211 639960 99999 FARQUHAR SE -10.1 51.167 3.0 20010919 20030507 639970 99999 USWAA NE TZ -3.233 37.233000000000004 1281.0 19570101 19611031 640050 99999 MBANDAKA CG FZEA 0.023 18.289 317.0 19490704 20191126 640060 99999 GEMENA CG FZFK 3.235 19.771 420.0 19730102 20200611 640080 99999 BASANKUSU CG 1.217 19.8 360.0 19730203 20011010 640085 99999 BANGOKA INTL CG FZIC 0.48200000000000004 25.338 431.9 20110602 20200624 640100 99999 BOGUS ZAIRE CG 19910904 19921130 640140 99999 LISALA CG 2.3169999999999997 21.566999999999997 463.0 19730102 20020410 640150 99999 LIBENGE CG 3.633 18.633 359.0 19490704 20030223 640160 99999 BUMBA CG 2.1830000000000003 22.55 361.0 19730101 19810828 640180 99999 BASOKO CG 1.25 23.6 410.0 19740720 20110312 640210 99999 BONDO CG 3.8 23.816999999999997 474.0 19740818 19901027 640340 99999 BUTA CG 2.783 24.783 410.0 19490704 20020413 640400 99999 KISANGANI SIMISINI CG FZIA 0.518 25.155 392.9 19490704 20200623 640460 99999 BANALIA CG 1.55 25.333000000000002 450.0 19870109 20200106 640560 99999 BAFWASENDE CG 1.083 27.133000000000003 524.0 19800609 20050501 640620 99999 ISIRO CG 2.767 27.65 806.0 19730129 20130211 640710 99999 MAMBASA CG 1.367 29.066999999999997 900.0 19800704 19931207 640720 99999 BUTEMBO CG FZMB 0.133 29.267 1840.0 19730620 20131214 640750 99999 IRUMU CG 1.45 29.866999999999997 920.0 19490704 19531231 640760 99999 BUNIA CG 1.5 30.217 1239.0 19730201 20160128 640770 99999 BUNIA-RUAMPARA CG 1.567 30.217 1285.0 20010828 20040312 641010 99999 LUKOLELA CG -1.05 17.2 318.0 20011116 20101101 641080 99999 BANDUNDU CG FZBO -3.3110000000000004 17.382 324.0 19740713 20131215 641150 99999 INONGO CG FZBA -1.9669999999999999 18.267 300.0 19730101 20151126 641260 99999 BOENDE CG FZGN -0.217 20.85 351.0 19730206 20180925 641460 99999 LODJA CG -3.483 23.467 479.0 19800802 19960910 641520 99999 OPALA CG -0.583 24.35 405.0 19740809 20020511 641550 99999 KINDU CG FZOA -2.9189999999999996 25.915 496.8 19490704 20180728 641556 99999 MBUJI MAYI CG FZWA -6.121 23.569000000000003 677.0 20081217 20200624 641560 99999 KALIMA CG -2.6 26.55 569.0 19740501 20031120 641570 99999 RUTSHURU CG -1.183 29.45 1275.0 19800813 19960423 641620 99999 LUBUTU CG -0.75 26.566999999999997 762.0 19861101 19960414 641700 99999 WALIKALE CG -1.4169999999999998 27.0 800.0 20011107 20190210 641750 99999 KAMEMBE RW -1.5330000000000001 28.9 1574.0 19490704 19531231 641800 99999 BUKAVU CG -2.517 28.85 1612.0 19730102 20200206 641840 99999 GOMA CG FZNA -1.683 29.233 1552.0 19730101 20200624 642010 99999 MUANDA CG FZAG -5.931 12.352 27.1 19730101 20190707 642030 99999 KITONA CG -5.917000000000001 12.45 122.0 19730129 20011221 642040 99999 BOMA CG -5.85 13.1 22.0 19730612 20130210 642050 99999 19870518 19870518 642060 99999 INGA CG -5.517 13.583 277.0 19730202 20200527 642070 99999 MATADI/TSHIMPI CG FZAM -5.8 13.433 340.0 19730101 20130128 642090 99999 LUOZI CG -4.95 14.133 236.0 19730618 19781006 642100 99999 NDJILI INTL CG FZAA -4.386 15.445 313.0 19490704 20200624 642110 99999 KINSHASA/N'DOLO CG FZAB -4.317 15.317 282.0 19730203 20200502 642170 99999 KENGE CG FZCS -4.917 17.067 563.0 19830702 20181219 642200 99999 KINSHASA/BINZA CG -4.367 15.25 445.0 19430301 20190816 642220 99999 KIKWIT CG FZCA -5.0360000000000005 18.785999999999998 479.1 19771201 20200424 642230 99999 KAHEMBA CG -7.2829999999999995 19.0 1060.0 20020604 20020604 642240 99999 ILEBO CG -4.333 20.583000000000002 465.0 19740514 20200619 642280 99999 TSHIKAPA CG FZUK -6.417000000000001 20.85 481.0 19740505 20171211 642350 99999 KANANGA CG FZUA -5.9 22.469 652.0 19490704 20200319 642460 99999 LUSAMBO CG FZVI -4.967 23.433000000000003 424.0 19800604 20030118 642470 99999 MBUJI-MAYI CG -6.167000000000001 23.616999999999997 633.0 19740831 20200624 642480 99999 LUPUTA CG -7.132999999999999 23.733 880.0 19800401 20121208 642640 99999 KASONGO CG -4.5169999999999995 26.583000000000002 544.0 20080804 20080804 642760 99999 KONGOLO CG FZRQ -5.35 27.0 561.0 19731207 20100816 642820 99999 MANONO CG FZRA -7.2829999999999995 27.433000000000003 633.0 19730501 20190605 642850 99999 KALEMIE CG -5.882999999999999 29.183000000000003 790.0 19490704 20200624 642910 99999 MOBA CG -7.067 29.783 1132.0 20020604 20020805 642940 99999 BOGUS ZAIRE CG 19861001 20020206 643020 99999 KAPANGA CG -8.35 22.583000000000002 882.0 19740819 19740819 643150 99999 KAMINA BASE CG FZSA -8.642000000000001 25.253 1079.9 19730513 20140604 643280 99999 KOLWEZI CG FZQM -10.765999999999998 25.506 1526.1 19730725 20200528 643480 99999 MITWABA CG -8.6 27.333000000000002 1579.0 19800701 19821220 643600 99999 LUBUMBASHI INTL CG FZQA -11.591 27.531 1309.1 19490704 20200624 643700 99999 LUBUMBASHI-KARAVIA CG -11.65 27.467 1260.0 19430406 19430522 643800 99999 KAMEMBE RW HRZA -2.467 28.916999999999998 1587.4 19730101 20200624 643810 99999 GISENYI RW HRYG -1.6769999999999998 29.259 1549.0 19850506 20200624 643830 99999 RUHENGERI RW HRYU -1.5 29.633000000000003 1855.7 19780404 20200624 643840 99999 BUTARE RW -2.6 29.733 1764.0 19730924 20170718 643870 99999 KIGALI INTL RW HRYR -1.969 30.139 1481.0 19730102 20200624 643900 99999 BUJUMBURA INTL BY HBBA -3.324 29.319000000000003 787.0 19730101 20200624 643970 99999 MUYINGA BY -2.833 30.333000000000002 1755.0 19730701 19990304 644000 99999 POINTE NOIRE CF FCPP -4.816 11.887 16.8 19421220 20200624 644007 99999 YOKANGASSI AIRPORT CF FCBY -4.217 13.283 164.9 20100209 20200624 644010 99999 DOLISIE CF FCPD -4.2 12.7 331.0 19491202 20200624 644020 99999 MOUYONDZI CF FCBM -3.983 13.917 512.0 19500212 20200608 644030 99999 MAKABANA CF FCPA -3.483 12.617 161.0 19730103 20200624 644050 99999 SIBITI CF FCBS -3.6830000000000003 13.35 531.0 19491202 20200624 644500 99999 MAYA MAYA CF FCBB -4.252 15.253 319.4 19490307 20200624 644510 99999 BOULANKIO CF -3.8169999999999997 15.25 750.0 20040304 20140430 644520 99999 M'POUYA CF FCBO -2.617 16.217 312.0 19500315 20200624 644530 99999 DJAMBALA CF FCBD -2.533 14.767000000000001 790.0 19500203 20200624 644540 99999 GAMBOMA CF FCOG -1.867 15.867 377.0 19491202 20200624 644550 99999 MOSSAKA CF -1.217 16.8 296.0 19730629 20140430 644560 99999 MAKOUA CF FCOM -0.017 15.65 380.0 19730102 20200624 644580 99999 OUESSO CF FCOU 1.6159999999999999 16.038 353.0 19491202 20200624 644590 99999 IMPFONDO CF FCOI 1.617 18.067 326.0 19491205 20200624 644600 99999 SOUANKE CF FCOS 2.0669999999999997 14.133 550.0 19500801 20200624 644620 99999 KELLE CF FCOK 0.1 13.55 408.0 20040619 20200624 644625 99999 BONGOR CD FTTB 10.28 15.38 328.0 20050423 20200522 644630 99999 EWO CF FCOE -5.582999999999999 14.817 438.0 20080914 20200624 645000 99999 LEON M BA GB FOOL 0.45899999999999996 9.412 11.9 19490401 20200624 645010 99999 PORT GENTIL GB FOOG -0.7120000000000001 8.754 4.0 19490307 20200624 645030 99999 MAYUMBA GB FOOY -3.417 10.65 34.0 19491206 20090720 645040 99999 COCOBEACH GB FOOC 1.0 9.6 13.0 19491205 20061009 645070 99999 TCHIBANGA GB FOOT -2.85 11.017000000000001 79.0 19730101 20200624 645100 99999 BITAM GB FOOB 2.076 11.493 600.2 19730101 20200624 645120 99999 OYEM GB FOGO 1.5430000000000001 11.581 657.8 20060313 20200624 645450 99999 MEKAMBO GB FOOE 1.0170000000000001 13.933 501.0 19730103 20061220 645500 99999 MOUILLA VILLE GB FOGM -1.845 11.057 89.9 19491202 20200624 645510 99999 LAMBARENE GB FOGR -0.7040000000000001 10.245999999999999 25.0 19491206 20200624 645520 99999 MITZIC GB FOOM 0.7829999999999999 11.533 583.0 19491202 20160531 645525 99999 OYEM GB 1.55 11.567 658.0 20080101 20081230 645530 99999 FRANCEVILLE GB FOOF -1.633 13.6 426.0 19490307 20040919 645533 99999 FRANCEVILLE MVENGUE GB -1.65 13.433 453.0 19920704 20080612 645560 99999 MAKOKOU GB FOOK 0.579 12.890999999999998 526.1 19730101 20200624 645600 99999 LASTOURSVILLE GB FOOR -0.833 12.717 485.0 19730101 20200624 645650 99999 MOANDA GB FOOD -1.5330000000000001 13.267000000000001 573.0 19730101 20080427 645700 99999 FRANCEVILLE MVENGUE GB FOON -1.6669999999999998 13.4 444.0 19810101 20200624 646000 99999 BERBERATI CT FEFT 4.2219999999999995 15.786 588.0 19490401 20200624 646010 99999 BOUAR CT FEFO 5.9670000000000005 15.633 1020.0 19500918 20200624 646030 99999 BOUCA U O C A R CT 6.5 18.267 458.1 19500201 19521217 646050 99999 BOSSEMBELE CT FEFL 5.267 17.633 674.0 19730101 20130322 646100 99999 BOSSANGOA CT FEFS 6.483 17.433 465.0 19730101 20130321 646500 99999 BANGUI M POKO CT FEFF 4.398 18.519000000000002 368.2 19490401 20200624 646503 99999 BANGUI/MPOKO CT FEFF 4.4 18.517 367.0 19860101 19910613 646540 99999 N'DELE CT FEFN 8.4 20.65 511.0 19500201 20181002 646550 99999 BRIA CT FEFR 6.5329999999999995 21.983 584.0 19730101 20121218 646560 99999 BANGASSOU CT FEFG 4.7330000000000005 22.833000000000002 500.0 19491202 20161202 646580 99999 BIRAO CT FEFI 10.283 22.783 464.0 19730101 20180126 646590 99999 OBO CT FEFB 5.4 26.5 651.0 19730101 20080505 646600 99999 BAMBARI CT FEFM 5.85 20.65 475.0 19730101 20140116 646610 99999 YALINGA CT FEFY 6.5 23.267 602.0 19730101 20170601 646620 99999 ALINDAO CT FEFA 5.05 21.2 449.0 19730101 20141110 646650 99999 MOBAYE CT 4.317 21.183000000000003 405.0 19920202 20130206 647000 99999 NDJAMENA HASSAN DJAMOUS CD FTTJ 12.134 15.034 295.0 19490401 20200624 647010 99999 MAO CD FTTU 14.117 15.317 355.0 19730108 20200203 647020 99999 BOL-BERIM CD FTTL 13.433 14.732999999999999 292.0 19730101 20200624 647040 99999 ZOUAR CD 20.45 16.567 809.0 20040307 20040307 647050 99999 BOUSSO CD FTTS 10.482999999999999 16.717 336.0 19730101 20200624 647060 99999 MOUNDOU CD FTTD 8.624 16.070999999999998 428.9 19730101 20200624 647070 99999 MOUSSORO CD 13.65 16.5 301.0 19730208 20050902 647080 99999 BOKORO CD FTTK 12.383 17.05 301.0 19730102 20200520 647085 99999 BILTINE CD FTTE 14.517000000000001 20.9 512.0 20080827 20200318 647086 99999 LAI CD FTTH 9.4 16.3 357.0 20090223 20091209 647090 99999 PALA CD FTTP 9.367 14.917 455.0 19730101 20200624 647200 99999 BARDAI-ZOUGRA CD FTTZ 21.45 17.05 1074.0 20021211 20050927 647500 99999 SARH (CIV/MIL) CD FTTA 9.15 18.383 365.0 19490408 20200624 647510 99999 ATI CD 13.217 18.317 334.0 19730101 20200624 647530 99999 FAYA LARGEAU CD FTTY 17.917 19.111 235.0 19730101 20200624 647540 99999 AM-TIMAN CD FTTN 11.033 20.283 436.0 19730101 20200624 647550 99999 GOZ-BEIDA CD 12.232999999999999 21.416999999999998 557.0 19730319 20050630 647560 99999 ABECHE CD FTTC 13.847000000000001 20.844 545.0 19500306 20200624 647570 99999 FADA CD 17.167 21.55 540.0 19730802 20190703 647580 99999 MONGO CD 12.183 18.683 430.0 19500316 20200624 648100 99999 MALABO EK FGSL 3.755 8.709 23.2 19740618 20200624 648200 99999 BATA (RIO MUNI) EK FGBT 1.9 9.8 8.0 20071005 20200624 648510 99999 SALAK CM FKKL 10.450999999999999 14.257 424.0 19500201 20200624 648514 99999 YAGOUA CITY CM FKKJ 10.367 15.232999999999999 326.0 19810220 19830615 648530 99999 KAELE CM 10.1 14.45 389.0 20050105 20050904 648600 99999 GAROUA CM FKKR 9.336 13.37 242.0 19500201 20200624 648700 99999 NGAOUNDERE CM FKKN 7.357 13.559000000000001 1114.0 19500201 20200624 648800 99999 BANYO CM FKAB 6.7829999999999995 11.817 1110.0 19730101 20051128 648820 99999 MEIGANGA CM FKAM 6.5329999999999995 14.367 1027.0 19730101 20040913 648821 99999 MAROUA-SALAK CM FKKA 10.433 14.25 422.0 20080101 20081231 648900 99999 MAMFE CM FKKF 5.7170000000000005 9.283 126.0 19500201 20080518 648920 99999 BAMENDA CM FKKV 6.039 10.123 1239.0 19790501 20100419 648930 99999 FOUMBAN NKOUNJA CM FKKM 5.6370000000000005 10.751 1207.9 19500814 20071022 649000 99999 YOKO CM FKAY 5.55 12.367 1031.0 19500211 20080606 649010 99999 BETARE-OYA CM FKAO 5.6 14.067 804.0 19500203 20060218 649100 99999 DOUALA CM FKKD 4.006 9.719 10.1 19491202 20200624 649110 99999 NKONGSAMBA CM FKAN 4.95 9.933 821.0 19491205 20100119 649120 99999 TIKO CM FKKC 4.0889999999999995 9.361 46.0 19730101 20110113 649200 99999 BAFIA CM FKAF 4.7330000000000005 11.25 500.0 19730103 20060413 649220 99999 NANGAWEBOKO CM 4.65 12.4 623.0 19500201 19511205 649300 99999 BERTOUA CM FKKO 4.6 13.732999999999999 668.0 19500201 20200624 649310 99999 BATOURI CM FKKI 4.467 14.367 656.0 19500201 20011027 649420 99999 ESEKA CM FKKE 3.65 10.767000000000001 227.0 19500201 20160301 649500 99999 YAOUNDE NSIMALEN CM FKYS 3.7230000000000003 11.552999999999999 694.3 19490914 20200624 649504 99999 YAOUNDE VILLE CM FKKY 3.8360000000000003 11.523 751.0 19930408 20200624 649600 99999 ABONG-MBANG CM FKAG 3.967 13.2 693.0 19730101 20180519 649610 99999 LOMIE CM FKAL 3.15 13.617 624.0 19730101 19980923 649620 99999 YOKADOOMA CM 3.517 15.1 534.0 19500211 19511202 649700 99999 CAMPO CM 2.367 9.8 25.0 19500301 20121122 649710 99999 KRIBI CM FKKB 2.95 9.9 16.0 19500201 20120519 649730 99999 AMBAM CM 2.383 11.283 602.0 19500318 19511225 650010 99999 YELWA NI 10.883 4.75 244.0 19490321 20200622 650020 99999 ENUGU NI 6.4670000000000005 7.567 142.0 20040811 20200624 650030 99999 BIRNIN KEBBI NI 12.467 4.217 220.0 20040902 20190923 650100 99999 SADIQ ABUBAKAR III INTL NI DNSO 12.915999999999999 5.207000000000001 307.8 19490321 20200612 650150 99999 GUSAU NI DNGU 12.172 6.696000000000001 463.3 19730102 20200421 650190 99999 KADUNA NI DNKA 10.696 7.32 631.9 19490321 20200624 650280 99999 KATSINA NI DNKT 13.017000000000001 7.683 517.0 19490321 20200325 650300 99999 ZARIA NI DNZA 11.13 7.686 661.4 19730812 20181016 650460 99999 MALLAM AMINU INTL NI DNKN 12.048 8.525 476.1 19430501 20200624 650550 99999 BAUCHI NI 10.283 9.817 609.0 19490421 20200412 650640 99999 NGURU NI 12.883 10.467 344.0 19490411 20200522 650730 99999 POTISKUM NI 11.7 11.033 414.0 19490321 20160427 650750 99999 GOMBE NI DNGO 10.283 11.15 505.0 20120613 20200413 650820 99999 MAIDUGURI NI 11.85 13.083 354.0 19430501 20200614 651000 99999 IBADAN NI DNIB 7.362 3.978 221.0 20040815 20200622 651010 99999 ILORIN NI DNIL 8.44 4.494 343.2 19500203 20200624 651080 99999 SHAKI NI 8.667 3.383 456.0 19870518 20200615 651120 99999 BIDA NI DNBI 9.1 6.017 143.0 19500101 20200624 651125 99999 NNAMDI AZIKIWE INTL NI DNAA 9.007 7.263 342.3 20050102 20200622 651230 99999 MINNA NI 9.617 6.5329999999999995 260.0 19490516 20200624 651240 99999 LAFIA NI 8.55 8.533 181.0 20110601 20200614 651250 99999 ABUJA NI 9.25 7.0 344.0 19880101 20200624 651340 99999 YAKUBU GOWON NI DNJO 9.64 8.869 1289.9 19490305 20200621 651450 99999 IBI NI 8.183 9.75 111.0 19500306 20140130 651640 99999 19870518 19870518 651670 99999 YOLA NI DNYO 9.258 12.43 182.6 19500211 20200612 652000 99999 ISEYEN NI 7.9670000000000005 3.6 330.0 20090303 20200528 652010 99999 MURTALA MUHAMMED NI DNMM 6.577000000000001 3.321 41.1 19490225 20200624 652015 99999 MAIDUGURI NI 11.85 13.083 344.0 20040804 20081230 652016 99999 OWERRI LMO NI DNIM 5.417000000000001 7.2 114.0 20110529 20200605 652020 99999 OSHODI NI 6.5 3.383 19.0 19430609 20200624 652030 99999 LAGOS ROOF NI 6.45 3.4 19.0 20111019 20200525 652050 99999 BOGUS NIGERIAN NI 19880106 20041231 652080 99999 IBADAN NI 7.433 3.9 228.0 19490225 20200621 652100 99999 IJEBU ODE NI 6.832999999999999 3.9330000000000003 77.0 20090303 20200622 652130 99999 ABEOKUTA NI 7.167000000000001 3.333 104.0 19830701 20200619 652150 99999 OSHOGBO NI DNOS 7.7829999999999995 4.4830000000000005 304.0 19730101 20200624 652220 99999 ONDO NI 7.1 4.833 287.0 19490325 20190418 652240 99999 ADO EKITI NI 7.65 5.2 453.0 20120120 20120120 652290 99999 BENIN CITY NI DNBE 6.317 5.1 79.0 19490225 20200617 652320 99999 AKURE NI DNAK 7.25 5.3 335.3 20110328 20200624 652360 99999 WARRI NI 5.517 5.733 4.0 19490225 20200621 652430 99999 LOKOJA NI 7.8 6.733 44.0 19490325 20170904 652450 99999 ONITSHA NI 6.15 6.7829999999999995 86.0 19871202 20151106 652460 99999 AWKA NI 6.2 7.05 325.0 20120613 20171026 652500 99999 PORT HARCOURT INTL NI DNPO 5.015 6.95 26.5 19490225 20200624 652510 99999 19870518 19870518 652520 99999 OWERRI NI 5.483 7.0 91.0 19880101 20200624 652540 99999 UMUAHIA NI 5.483 7.55 122.0 20180714 20190921 652570 99999 ENUGU NI 6.4670000000000005 7.55 137.0 19490325 20081217 652600 99999 UYO NI DNAI 5.05 7.917000000000001 38.0 19830705 20200616 652640 99999 CALABAR NI DNCA 4.976 8.347000000000001 64.0 19490225 20200624 652710 99999 MAKURDI NI DNMK 7.704 8.613999999999999 113.1 19730101 20200624 652730 99999 IKOM NI 5.9670000000000005 8.717 93.0 19791103 20110826 652740 99999 OBUDU NI 6.6 9.317 284.0 20111204 20191017 652750 99999 OGOJA NI 6.667000000000001 8.8 117.0 19830701 20200317 652850 99999 TIKO CM 4.1 9.35 51.8 19490511 19521029 652920 99999 MAMFE CM 5.7170000000000005 9.283 152.0 19490323 19520901 653060 99999 KANDI BN DBBK 11.133 2.9330000000000003 292.0 19490401 20200624 653190 99999 NATITINGOU BN DBBN 10.317 1.383 461.0 19490407 20200624 653300 99999 PARAKOU BN DBBP 9.35 2.617 393.0 19730101 20200624 653330 99999 TCHAOUROU BN 8.867 2.6 327.0 19490401 20181005 653350 99999 SAVE BN DBBS 8.033 2.467 200.0 19490401 20200624 653380 99999 BOHICON BN DBBC 7.167000000000001 2.0669999999999997 167.0 19490402 20200624 653440 99999 CADJEHOUN BN DBBB 6.357 2.384 5.8 19490401 20200624 653510 99999 DAPAON TO 10.867 0.25 330.0 19780311 20081230 653520 99999 MANGO/SANSANNE TO DXMG 10.367 0.467 146.0 19490125 20200624 653550 99999 NIAMTOUGOU INTERNATIONAL TO DXNG 9.767000000000001 1.091 461.8 19851201 20200624 653570 99999 KARA TO 9.55 1.167 341.0 19771103 20200624 653610 99999 SOKODE TO DXSK 8.982999999999999 1.15 387.0 19490119 20200624 653760 99999 ATAKPAME/AKPAKA TO DXAK 7.582999999999999 1.117 402.0 19490114 20200624 653765 99999 DAPANGO TO DXDP 10.8 0.25 919.0 20051105 20200624 653780 99999 KOUMA-KONDA TO 6.95 0.583 641.0 20051226 20051226 653800 99999 TABLIGBO TO DXTA 6.582999999999999 1.5 44.0 19730101 20200624 653870 99999 GNASSINGBE EYADEMA INTL TO DXXX 6.166 1.255 21.9 19490114 20200624 654010 99999 NAVRONGO GH DGLN 10.9 -1.1 203.0 19490112 20200624 654040 99999 WA GH DGLW 10.083 -2.508 323.1 19730101 20200624 654080 99999 TAKORACI GHANA GH 4.883 -0.233 8.8 19490116 19521122 654160 99999 BOLE GH DGLB 9.033 -2.483 301.0 19730101 20200624 654180 99999 TAMALE GH DGLE 9.557 -0.863 168.6 19730101 20200624 654200 99999 YENDI GH DGLY 9.45 -0.017 197.0 19730111 20200624 654220 99999 KUMASI GHANA GH 6.7170000000000005 -0.4 292.9 19490112 19521230 654290 99999 NAVRONGO GHANA GH 10.883 -0.917 202.1 19500218 19521218 654320 99999 WENCHI GH DGSW 7.75 -2.1 340.0 19730201 20200624 654360 99999 SALTPOND GHANA GH 5.2 -0.9329999999999999 5.8 19490112 19521231 654370 99999 KETE-KRACHI GH 7.817 -0.033 122.0 19730111 20200624 654390 99999 SUNYANI GH DGSN 7.362 -2.329 309.1 19741102 20200624 654420 99999 KUMASI GH DGSI 6.715 -1.591 287.1 19730101 20200624 654430 99999 TAMALE GHANA GH 9.417 0.883 188.1 19490116 19521230 654450 99999 SEFWI BEKWAI GH DGSB 6.2 -2.333 172.0 19740711 20200624 654490 99999 ACCRA GHANA GH 5.6 0.16699999999999998 65.2 19501201 19521231 654500 99999 ABETIFI GH 6.667000000000001 -0.75 594.0 20050405 20200624 654530 99999 HO GH DGAH 6.6 0.467 158.0 19730101 20200624 654570 99999 AKIM ODA GH DGKA 5.933 -0.983 140.0 19490112 20200624 654590 99999 KOFORIDUA GH DGKK 6.082999999999999 -0.25 167.0 19730313 20200624 654600 99999 AKUSE GH DGAK 6.1 0.11699999999999999 19.0 19730102 20200624 654620 99999 AKATSI GH 6.117000000000001 0.8 178.0 19780805 20200624 654640 99999 YENDI GHANA GH 9.45 0.017 196.6 19510620 19521125 654650 99999 AXIM GH DGTX 4.867 -2.233 40.0 19730103 20200624 654670 99999 TAKORADI GH DGTK 4.896 -1.775 6.4 19730101 20200624 654690 99999 SALTPOND GH DGAS 5.2 -1.067 47.0 19730101 20200624 654710 99999 AKUSE GHANA GH 6.082999999999999 0.11699999999999999 18.6 19490112 19521230 654720 99999 KOTOKA INTL GH DGAA 5.605 -0.16699999999999998 62.5 19420701 20200624 654730 99999 TEMA GH DGAT 5.617000000000001 0.0 18.0 19790108 20200624 654750 99999 ADA GH DGAD 5.7829999999999995 0.633 7.0 19730108 20200624 654780 99999 ATSIATI NORTHWEST GH 6.667000000000001 0.5 237.0 19490202 19521231 654810 99999 ADA GHANA GH 5.767 0.633 9.1 19500809 19521231 654850 99999 KETA GH 5.917000000000001 0.983 0.0 19490112 19500731 655000 99999 MARKOYE UV 14.633 -0.067 295.0 20040524 20160127 655010 99999 DORI UV DFEE 14.033 -0.033 277.0 19490520 20200624 655020 99999 OUAHIGOUYA UV DFCC 13.567 -2.417 336.0 19730101 20200624 655030 99999 OUAGADOUGOU UV DFFD 12.353 -1.5119999999999998 316.1 19490401 20200624 655050 99999 DEDOUGOU UV DFOD 12.467 -3.483 300.0 19830701 20200624 655070 99999 FADA N'GOURMA UV DFEF 12.033 0.36700000000000005 309.0 19491202 20200624 655100 99999 BOBO DIOULASSO UV DFOO 11.16 -4.331 460.6 19490402 20200624 655160 99999 BOROMO UV DFCO 11.75 -2.9330000000000003 271.0 19500201 20200624 655180 99999 PO UV DFCP 11.15 -1.15 322.0 19830701 20200624 655220 99999 GAOUA UV DFOG 10.333 -3.1830000000000003 335.0 19490410 20200624 655280 99999 ODIENNE IV DIOD 9.5 -7.567 421.0 19490402 20200624 655360 99999 KORHOGO IV DIKO 9.387 -5.557 370.0 19730101 20200624 655390 99999 FERKESSEDOUGOU IV 9.6 -5.2 323.0 19490407 19521231 655450 99999 BONDOUKOU/SOKO IV DIBU 8.05 -2.783 370.0 19730102 20200624 655480 99999 MAN IV DIMN 7.272 -7.587000000000001 331.9 19490402 20200624 655550 99999 BOUAKE IV DIBK 7.739 -5.074 374.9 19490401 20200624 655570 99999 GAGNOA IV DIGA 6.132999999999999 -5.95 210.0 19500217 20200624 655600 99999 DALOA IV DIDL 6.792999999999999 -6.473 250.9 19780701 20200624 655620 99999 DIMBOKRO CITY IV DIDK 6.65 -4.7 92.0 19500213 20200624 655630 99999 YAMOUSSOUKRO IV DIYO 6.903 -5.3660000000000005 213.1 19780612 20200624 655780 99999 ABIDJAN FELIX HOUPHOUET BOIGNY INTL IV DIAP 5.261 -3.926 6.4 19490401 20200624 655850 99999 ADIAKE IV DIAD 5.3 -3.3 39.0 19500215 20200624 655920 99999 TABOU IV DITB 4.417 -7.367000000000001 21.0 19430601 20200624 655940 99999 SAN PEDRO IV DISP 4.747 -6.6610000000000005 7.9 19780701 20200624 655990 99999 SASSANDRA/DREWIN IV DISS 4.95 -6.082999999999999 66.0 19490402 20200624 656020 99999 MONROVIA SPRIGGS PAYNE LI GLMR 6.289 -10.759 7.6 19740924 20150206 656550 99999 BOGUS LIBERIAN LI 19841101 20030520 656570 99999 20011008 20030523 656600 99999 MONROVIA ROBERTS INTL LI GLRB 6.234 -10.362 9.4 19420701 20200624 656620 99999 BOGUS LIBERIAN LI 19841101 20040927 656630 99999 BOGUS LIBERIAN LI 19841102 20030203 656780 99999 BOGUS LIBERIAN LI 19841101 19841101 656850 99999 20031010 20031010 656920 99999 BOGUS LIBERIAN LI 19841101 19841101 656940 99999 BOGUS LIBERIAN LI 19841224 19841224 656990 99999 BOGUS LIBERIAN LI 19841102 20040525 659020 99999 19870511 19870511 661040 99999 CABINDA AO FNCA -5.597 12.187999999999999 20.1 19490104 20200624 661160 99999 NOQUI AO -5.867000000000001 13.433 -999.9 19920902 20171118 661180 99999 MBANZA CONGO AO FNBC -6.27 14.247 566.9 19811011 20200302 661200 99999 SOYO A AO -6.117000000000001 12.35 -1.0 20080501 20160517 661210 99999 MAQUELA DO ZOMBO AO -6.0329999999999995 15.117 920.0 19671105 20070111 661300 99999 N'ZETO (AMBRIZETE) AO -7.233 12.867 17.0 19630101 20170317 661360 99999 TOTO AO -7.167000000000001 14.267000000000001 540.0 19671105 19750222 661361 99999 NAMIBE AO -15.267000000000001 12.15 66.0 20050103 20200624 661362 99999 DUNDO AO -7.4 20.816999999999997 747.0 20050114 20200624 661363 99999 SUMBE AO -11.167 13.85 11.0 20050201 20200624 661365 99999 SOYO AO -6.132999999999999 12.367 5.0 20070629 20200624 661400 99999 CARMONA AO -7.582999999999999 15.0 829.0 19560504 20040821 661420 99999 NEGAGE AO -7.683 15.367 1249.0 19671105 19751231 661520 99999 DUNDO AO -7.4 20.816999999999997 776.0 19510613 20080220 661600 99999 LUANDA 4 DE FEVEREIRO AO FNLU -8.857999999999999 13.231 74.1 19490103 20200624 661720 99999 N'DALATANDO AO -9.283 14.917 795.0 19740429 20200624 661870 99999 CAMAXILO AO -8.367 18.933 1180.0 19730104 20081023 662100 99999 SUMBE AO -11.2 13.85 10.0 20050704 20151202 662150 99999 MALANJE AO FNMA -9.525 16.312 1179.0 19490930 20200624 662260 99999 SAURIMO AO FNSA -9.689 20.432000000000002 1092.4 19520616 20200624 662400 99999 PORTO AMBOIM AO -10.7 13.75 5.0 19521013 20180625 662600 99999 SUMBE AO -11.2 13.85 -999.9 19850701 20081220 662700 99999 WAKU KUNGU (CELA) AO -11.417 15.117 1304.0 19610101 20021104 662850 99999 LUENA AO FNUE -11.767999999999999 19.898 1328.9 19490103 20200624 662960 99999 CAZOMBO AO -11.867 22.9 1126.0 19680805 20031101 663050 99999 LOBITO AO -12.367 13.533 3.0 19490103 19751014 663100 99999 BENGUELA AO FNBG -12.609000000000002 13.404000000000002 36.0 19730101 20200610 663180 99999 HUAMBO AO FNHU -12.809000000000001 15.761 1702.9 19490103 20200624 663250 99999 KUITO AO FNKU -12.405 16.947 1712.4 19520805 20200624 663900 99999 LUBANGO AO FNUB -14.925 13.575 1761.1 19490103 20200624 664100 99999 MENONGUE (SERPA PINTO) AO -14.65 17.683 1343.0 19530616 20070606 664220 99999 MOCAMEDES AO -15.2 12.15 43.0 19490103 20081228 664470 99999 MAVINGA AO -15.833 20.35 1088.0 19530616 19751004 664500 99999 BAIA DOS TIGRES AO -16.6 11.717 1.0 19730101 20180802 664600 99999 NGIVA AO FNGI -17.043 15.684000000000001 1086.9 19740419 20200624 664850 99999 ROCADAS AO -16.717 15.0 1099.0 19610401 19750906 670010 99999 MORONI AIRPORT (GRANDE-COMORE) CN -11.7 43.233000000000004 6.0 19730101 20020509 670020 99999 PRINCE SAID IBRAHIM CN FMCH -11.534 43.272 28.3 19811101 20200624 670030 99999 BOGUS COMOROS CN 19880601 20031007 670040 99999 OUANI CN FMCV -12.132 44.43 18.9 19730101 20200619 670050 99999 DZAOUDZI PAMANDZI MF FMCZ -12.805 45.281000000000006 7.0 19490101 20200624 670090 99999 ARRACHART MA FMNA -12.349 49.292 114.0 19490101 20200624 670120 99999 FASCENE MA FMNN -13.312000000000001 48.315 11.0 19730101 20200623 670170 99999 VOHIMARINA MA FMNV -13.376 50.003 5.8 19730102 20171125 670190 99999 ANALALAVA MA FMNL -14.63 47.763999999999996 105.2 19730102 20120113 670200 99999 ANTSOHIHY MA -14.883 47.983000000000004 23.0 19730102 20200623 670220 99999 ANDAPA MA FMND -14.652000000000001 49.621 473.0 19730102 20170514 670230 99999 SAMBAVA MA FMNS -14.279000000000002 50.175 6.1 19730102 20200623 670250 99999 ANTSIRABATO MA FMNH -14.999 50.32 6.1 19730101 20200623 670270 99999 PHILIBERT TSIRANANA MA FMNM -15.667 46.352 26.5 19490101 20200624 670290 99999 BOGUS MADAGASCAR MA 19890103 20040729 670350 99999 19730102 19730330 670370 99999 BESALAMPY MA FMNQ -16.742 44.481 38.1 19730101 20200623 670450 99999 MAEVATANANA MA -16.95 46.833 79.0 19730101 20131017 670490 99999 BOGUS MADAGASCAR MA 19890101 20040830 670560 99999 AMBATOMAINTY MA -17.683 45.167 430.0 20041228 20041228 670650 99999 19730102 19730328 670670 99999 AMBOHITSILAOZANA MA -17.633 48.5 780.0 19890101 20200623 670720 99999 SAINTE MARIE MA FMMS -17.094 49.816 2.1 19730101 20200624 670730 99999 MAINTIRANO MA FMMO -18.05 44.033 23.0 19730101 20200623 670735 99999 TAMBOHORANO AIRPORT MA FMMU -17.483 43.967 7.0 20120509 20170929 670736 99999 SOALALA AIRPORT MA FMNO -16.083 45.367 43.0 20121223 20151104 670830 99999 IVATO MA FMMI -18.797 47.479 1279.6 19730101 20200624 670850 99999 ANTANANARIVO / VILLE MA FMMD -18.867 47.5 1310.0 19520801 20200616 670950 99999 TOAMASINA MA FMMT -18.11 49.393 6.7 19490101 20200624 671070 99999 ANTSIRABE MA FMME -19.817 47.067 1532.0 19730315 20200623 671090 99999 ARIVONIMAMO MA FMMA -19.033 47.167 1450.0 19730101 19840615 671091 99999 ANTANANARIVO ARIVONIMAMO MA FMMA -19.029 47.172 1449.9 20070226 20161021 671130 99999 MAHANORO MA FMMH -19.833 48.8 5.0 19730101 20191029 671131 99999 MIANDRIVAZO MA FMMN -19.563 45.451 61.9 20050515 20160804 671170 99999 MORONDAVA MA FMMV -20.285 44.318000000000005 9.1 19730101 20200623 671280 99999 ST DENIS REUNION/GILLOT RE -19.467 55.483000000000004 11.0 19521106 19531231 671290 99999 ST DENIS LA REUNION I RE -26.467 59.45 11.9 19490101 19521112 671300 99999 ST DENIS LA REUNION I RE -19.133 55.433 398.1 19490930 19511202 671310 99999 MOROMBE MA FMSR -21.754 43.376000000000005 4.9 19730101 20200623 671350 99999 BEROROHA MA -21.666999999999998 45.167 530.0 20081119 20081119 671370 99999 FIANARANTSOA MA FMSF -21.441999999999997 47.111999999999995 1115.0 19730101 20200623 671430 99999 MANANJARY MA FMSM -21.201999999999998 48.358000000000004 6.1 19730101 20200623 671500 99999 EUROPA IS MP -21.666999999999998 40.35 7.0 19500128 19531231 671520 99999 RANOHIRA MA FMSO -22.55 45.4 824.0 19730101 20200623 671570 99999 FARAFANGANA MA FMSG -22.805 47.821000000000005 7.9 19730101 20200622 671610 99999 TOLIARA MA FMST -23.383000000000003 43.728 8.8 19730101 20200623 671940 99999 FAUX-CAP MA -25.55 45.533 22.0 19730101 20170908 671970 99999 TOLAGNARO MA FMSD -25.038 46.956 8.8 19490101 20200624 671980 99999 ILE AMSTERDAM FS -37.833 77.567 28.0 19500201 19531231 671990 99999 KERGUELEN IS FR -48.667 70.167 11.9 19510109 19531231 672050 99999 MOCIMBOA DA PRAIA MZ FQMP -11.362 40.355 27.1 19730101 20190830 672100 99999 MATCHEDJE MZ -11.6 35.433 619.0 20171121 20180822 672150 99999 PEMBA MZ FQPB -12.987 40.522 100.9 19730101 20200624 672170 99999 LICHINGA MZ FQLC -13.274000000000001 35.266 1373.1 19730101 20200624 672210 99999 MARRUPA MZ FQMR -13.225 37.552 755.9 19730103 20200623 672230 99999 MONTEPUEZ MZ -13.133 39.033 535.0 19730101 20200526 672250 99999 FURANCUNGO MZ -14.917 33.617 1262.0 19730101 20200624 672290 99999 ULONGWE MZ FQUG -14.705 34.352 1300.0 19800303 20200623 672310 99999 CUAMBA MZ FQCB -14.817 36.533 607.0 19730103 20200623 672370 99999 NAMPULA MZ FQNP -15.106 39.282 440.1 19730101 20200624 672410 99999 LUMBO MZ FQLU -15.033 40.672 10.1 19490103 20200624 672430 99999 ZUMBO MZ -15.617 30.433000000000003 340.0 19730215 20200623 672500 99999 SONGO MZ FQSG -15.6 34.433 966.0 19760819 20200624 672600 99999 MILANGE MZ -16.1 35.766999999999996 6.7 20161229 20200624 672610 99999 TETE MZ FQTE -16.183 33.583 150.0 19730101 20200624 672614 99999 TETE CHINGODZI MZ FQTT -16.105 33.64 160.0 19990703 20200624 672651 99999 MOCUBA MZ -16.833 36.983000000000004 134.0 20160306 20200611 672730 99999 ANGOCHE MZ -16.217 39.9 62.0 19730101 20200622 672790 99999 MUTARARA MZ -17.367 35.033 89.0 19730108 20200619 672800 99999 CAIA MZ -17.833 35.333 45.0 19830701 20200624 672830 99999 QUELIMANE MZ FQQL -17.855999999999998 36.869 11.0 19490103 20200624 672850 99999 PEBANE MZ -17.267 38.15 26.0 19730101 20190821 672871 99999 CATANDICA MZ -18.067 33.167 611.0 20160225 20200624 672950 99999 CHIMOIO MZ FQCH -19.151 33.429 697.1 19730101 20200624 672970 99999 BEIRA MZ FQBR -19.796 34.908 10.1 19490103 20200624 672991 99999 ESPUNGABERA MZ -20.467 32.766999999999996 824.0 20160301 20200624 673050 99999 MASSANGENA MZ -21.55 32.967 136.0 19730101 19790401 673051 99999 MASSANGENA MZ -21.55 32.967 136.0 20160225 20200624 673080 99999 CHICUALACUALA MZ -22.083000000000002 31.683000000000003 453.0 19730101 20200304 673090 99999 DINDIZA-GAZA MZ -22.083000000000002 33.367 102.0 20071124 20200623 673150 99999 VILANKULO MZ FQVL -22.018 35.313 14.0 19730101 20200624 673230 99999 INHAMBANE MZ -23.866999999999997 35.383 15.0 19490103 20200624 673270 99999 PANDA MZ -24.05 34.717 150.0 20071016 20200624 673310 99999 MAPULANGUENE-MAPUTO MZ -24.483 32.083 151.0 20071123 20190924 673350 99999 XAI XAI MZ FQXA -25.05 33.633 5.0 19730101 20200624 673390 99999 MAPUTO MZ -25.967 32.6 59.0 19490101 20190508 673410 99999 MAPUTO MZ FQMA -25.921 32.573 44.2 19730101 20200624 673460 99999 CHANGALANE MZ -26.283 32.183 104.0 19800301 20191101 674030 99999 KAWAMBWA ZA FLKB -9.8 29.083000000000002 1324.0 19730115 20200623 674035 99999 LWELA ZA FLLL -11.717 29.116999999999997 1085.0 20100607 20100705 674130 99999 MBALA ZA FLBA -8.85 31.333000000000002 1673.0 19730101 20200601 674210 99999 CHITIPA MI FWCT -9.7 33.266999999999996 1278.0 19730102 20200423 674230 99999 KARONGA MI FWKA -9.954 33.893 538.0 19730102 20200622 674240 99999 BOLERO MI -10.967 33.733000000000004 1100.0 19850506 20200617 674410 99999 MWINILUNGA ZA FLMW -11.75 24.433000000000003 1363.0 19730101 20200624 674420 99999 MFUWE ZA -13.267000000000001 31.933000000000003 573.0 20040817 20200624 674610 99999 MANSA ZA FLMA -11.1 28.85 1384.0 19730101 20200622 674690 99999 SAMYA ZA -11.367 29.9 1171.0 19730102 20020320 674750 99999 KASAMA ZA FLKS -10.217 31.133000000000003 1384.0 19490101 20200623 674760 99999 MISAMFU ZA -10.1 31.25 1536.0 19900903 20200619 674770 99999 MPIKA ZA FLMP -11.9 31.433000000000003 1402.0 19730101 20200622 674810 99999 ISOKA ZA FLIK -10.117 32.633 1360.0 19850102 20200624 674850 99999 MZIMBA MI FWMZ -11.883 33.617 1351.0 19730103 20200528 674890 99999 MZUZU MI FWUU -11.445 34.012 1254.3 19730101 20200622 674930 99999 NKHATA BAY MI -11.6 34.3 500.0 19730621 20200624 675310 99999 ZAMBEZI ZA FLZB -13.533 23.116999999999997 1078.0 19730101 20200624 675410 99999 KASEMPA ZA FLPA -13.533 25.85 1234.0 19730101 20200624 675430 99999 KABOMPO ZA -13.6 24.2 1075.0 19761201 20041231 675510 99999 SOLWEZI ZA FLSW -12.167 26.366999999999997 1386.0 19730105 20200624 675610 99999 NDOLA SIMON MWANSA KAWEPEWE INTL ZA FLSK -12.982999999999999 28.65 1270.1 19490101 20200623 675630 99999 KAFIRONDA ZA -12.6 28.116999999999997 1243.0 19730104 20200624 675710 99999 SERENJE ZA FLSE -13.232999999999999 30.217 1384.0 19730101 20200624 675750 99999 MKUSHI ZA -13.633 29.433000000000003 1237.0 19940603 20200624 675800 99999 MSEKERA ZA -13.65 32.567 1025.0 20011028 20200623 675810 99999 CHIPATA ZA FLCP -13.55 32.583 1032.0 19490101 20200624 675820 99999 BOGUS ZAMBIA ZA 19900103 20030212 675830 99999 LUNDAZI ZA FLLD -12.283 33.2 1143.0 19730401 20200624 675840 99999 KASUNGU MI -13.017000000000001 33.467 1015.0 19840503 20200624 675850 99999 CHITEDZE MI -13.982999999999999 33.633 1149.0 19821101 20200623 675860 99999 LILONGWE INTL MI FWLI -13.789000000000001 33.781 1261.0 19820501 20200619 675870 99999 LILONGWE/AIRPORT MI -13.982999999999999 33.783 1067.0 19730101 20100407 675880 99999 N.R.C. MI -14.167 33.667 1100.0 19880203 20100314 675890 99999 DWANGWA MI -12.482999999999999 34.083 489.0 19730106 20160125 675910 99999 NKHOTA KOTA MI FWKK -12.917 34.266999999999996 500.0 19730620 20200623 675970 99999 SALIMA MI FWSM -13.75 34.583 513.0 19730102 20200623 675990 99999 MFUWE ZA -13.267000000000001 31.933000000000003 570.0 19881103 20081226 676250 99999 KALABO ZA -14.85 22.7 -999.9 20080208 20200624 676330 99999 MONGU ZA FLMG -15.255 23.162 1063.1 19490102 20200624 676410 99999 KAOMA ZA FLKO -14.8 24.8 1213.0 19730101 20200623 676550 99999 MUMBWA ZA -15.067 27.183000000000003 1216.0 19810603 20200623 676590 99999 KAFUE POLDER ZA -15.767000000000001 27.916999999999998 978.0 19730103 20200624 676610 99999 LUSAKA CITY ZA -15.417 28.333000000000002 1280.0 19490101 20031110 676620 99999 KABWE AGRIC ZA -14.4 28.5 1165.0 19900901 20200624 676630 99999 KABWE/MILLIKEN ZA FLKW -14.45 28.467 1207.0 19730101 20200624 676650 99999 LUSAKA INTL ZA FLKK -15.333 28.45 1151.8 19730101 20200624 676660 99999 LUSAKA CITY ZA FLLC -15.414000000000001 28.331 1280.2 19880303 20200623 676670 99999 MOUNT MAKULU ZA -15.55 28.25 1213.0 19730102 20200624 676730 99999 PETAUKE ZA FLPE -14.25 31.283 1036.0 19730103 20200624 676870 99999 CHICHIRI MI -15.783 35.033 1141.0 19730201 20200526 676890 99999 DEDZA MI FWDZ -14.317 34.266999999999996 1632.0 19730720 20200623 676900 99999 MONKEY BAY MI FWMY -14.083 34.917 474.0 19821001 20200528 676920 99999 MAKOKA MI -15.517000000000001 35.217 1028.0 19730302 20200624 676930 99999 CHILEKA INTL MI FWCL -15.679 34.974000000000004 778.8 19490101 20200624 676950 99999 MANGOCHI MI FWMG -14.433 35.25 485.0 19730102 20200624 676960 99999 CHIKWEO MI -14.75 35.667 717.0 19890901 20181004 676990 99999 MIMOSA MI -16.083 35.583 653.0 19730201 20200623 677310 99999 SENANGA ZA FLSN -16.1 23.267 1027.0 19851201 20200624 677410 99999 SESHEKE ZA FLSS -17.467 24.3 951.0 19730101 20200624 677430 99999 HARRY MWAANGA NKUMBULA INTL ZA FLHN -17.8 25.816999999999997 992.1 19490101 20200624 677510 99999 MAGOYE ZA -16.0 27.6 1018.0 19900211 20200619 677530 99999 CHOMA ZA FLCH -16.833 27.066999999999997 1278.0 19730101 20200623 677550 99999 BINGA ZI FVBI -17.617 27.333000000000002 617.0 19620701 20200623 677610 99999 KARIBA INTL ZI FVKB -16.52 28.885 520.0 19620701 20200623 677650 99999 KAROI ZI FVKA -16.833 29.616999999999997 1344.0 19620701 20200623 677670 99999 KANYEMBA ZI -15.633 30.416999999999998 329.0 19881101 20200623 677710 99999 CHINHOYI ZI -17.367 30.2 1140.0 19620701 20200623 677730 99999 GURUVE ZI -16.65 30.7 1180.0 19750816 20200623 677740 99999 HARARE (BELVEDERE) ZI -17.833 31.017 1472.0 19831008 20200617 677750 99999 ROBERT GABRIEL MUGABE INTL / HARARE ZI FVRG -17.93 31.094 1489.6 19490101 20200623 677790 99999 MOUNT DARWIN ZI -16.783 31.583000000000002 966.0 19620701 20200623 677810 99999 MUTOKO ZI FVMT -17.432000000000002 32.185 1204.0 19620701 20200623 677850 99999 HERNDERSON ZI -17.583 30.967 1290.0 19870312 20200623 677890 99999 MVURWI ZI -17.033 30.983 1480.0 19620701 20200619 677910 99999 BVUMBWE MI -15.917 35.067 1146.0 19730302 20200624 677930 99999 THYOLO MI -16.15 35.217 820.0 19730201 20030508 677960 99999 NGABU MI -16.5 34.95 102.0 19730102 20200624 677970 99999 MAKANGA MI -16.517 35.15 58.0 19730115 20070612 678430 99999 VICTORIA FALLS INTL ZI FVFA -18.096 25.839000000000002 1063.8 19730101 20200623 678530 99999 HWANGE NATIONAL PARK ZI FVWN -18.63 27.021 1079.9 19620701 20200622 678550 99999 LUPANE ZI -18.95 27.8 1000.0 19620701 20200623 678570 99999 ZIKAMANUS ZI -18.2 27.967 1010.0 19620701 20200623 678610 99999 GOKWE ZI FVGO -18.217 28.933000000000003 1282.0 19620701 20200622 678630 99999 NKAYI ZI -19.0 28.9 1131.0 19620701 20200622 678650 99999 KWEKWE ZI -18.933 29.833000000000002 1213.0 19620701 20200622 678670 99999 GWERU THORNHILL ZI FVTL -19.436 29.862 1426.5 19620701 20200622 678690 99999 KADOMA ZI -18.317 29.883000000000003 1157.0 19620701 20200622 678710 99999 CHIVHU ZI -19.033 30.883000000000003 1459.0 19620701 20200619 678730 99999 19870519 19870519 678750 99999 BUHERA ZI -19.317 31.433000000000003 1190.0 19870312 20200623 678770 99999 GRASSLANDS ZI -18.183 31.467 1632.0 19620701 20200623 678810 99999 RUSAPE ZI FVRU -18.533 32.133 1430.0 19620701 20200623 678813 99999 MARONDERA ZI FVMA -18.183 31.467 1637.0 19881223 19890911 678850 99999 MUTARE/GRAND REEF ZI -18.983 32.45 1019.0 19620701 20050803 678890 99999 WYANGA ZI -18.283 32.75 1880.0 19620701 20200623 678910 99999 MHONDORO ZI -19.317 30.6 1260.0 19870314 20200622 678950 99999 MUKANDI ZI -18.717 32.85 1270.0 19841001 20200620 678970 99999 CHISENGU ZI -19.883 32.883 1480.0 19730315 20200619 678990 99999 WEDZA ZI -18.617 31.566999999999997 1380.0 19730102 20200620 679510 99999 PLUMTREE ZI -20.483 27.8 1390.0 19620701 20200623 679610 99999 KEZI ZI -20.916999999999998 28.45 1020.0 19730102 20200623 679630 99999 MATOPOS ZI -20.383 28.5 1350.0 19870401 20200516 679640 99999 BULAWAYO (GOETZ OBSY.) ZI -20.15 28.616999999999997 1344.0 19620701 20200623 679650 99999 J M NKOMO INTL / BULAWAYO ZI FVJN -20.021 28.627 1330.8 19490101 20200623 679670 99999 TULI ZI -21.383000000000003 28.983 770.0 19870314 20180331 679690 99999 WEST NICHOLSON ZI -21.05 29.366999999999997 861.0 19620701 20200623 679710 99999 ZVISHAVANE ZI -20.317 30.066999999999997 980.0 19620701 20200622 679740 99999 MAKOHOLI ZI -19.833 30.783 -999.9 19910719 20050831 679750 99999 MASVINGO INTL ZI FVMV -20.055 30.859 1095.8 19620701 20200623 679760 99999 RUPIKE ZI -20.55 31.083000000000002 700.0 20010916 20200623 679770 99999 BUFFALO RANGE ZI FVCZ -21.008000000000003 31.579 433.1 19651201 20200623 679790 99999 ZAKA ZI -20.333 31.467 770.0 19870307 20200622 679830 99999 CHIPINGE ZI FVCH -20.2 32.617 1132.0 19490103 20200623 679890 99999 RUPISI ZI -20.417 32.317 442.0 19620701 19680630 679900 99999 BOGUS ZIMBABWEAN ZI 19851116 20041112 679910 99999 BEITBRIDGE ZI FVBB -22.217 30.0 457.0 19620701 20200623 679950 99999 BOGUS ZIMBABWEAN ZI 19870314 20041113 680010 99999 MPACHA AIRPORT WA -17.633 24.183000000000003 985.0 20080103 20081231 680015 99999 MPACHA (CIV/MIL) WA FAMP -17.633 24.183000000000003 985.0 19880106 19900515 680020 99999 EROS WA FYWE -22.612 17.08 1699.3 19730620 20200624 680021 99999 OPUWA WA FYOP -18.067 13.85 1149.0 20120302 20180916 680022 99999 HENTIES BAY WA FYHN -22.116999999999997 14.283 3.0 20090311 20180916 680023 99999 KHORIXAS WA FYKX -20.367 14.967 1026.0 20090311 20180916 680025 99999 KATIMA MULILO WA -17.633 24.166999999999998 958.0 20071229 20200624 680026 99999 ORANJEMUND WA FYOG -28.585 16.447 4.3 20091104 20151129 680027 99999 AUS WA FYAS -26.666999999999998 16.292 459.9 20091104 20150808 680029 99999 TSUMKWE WA FYTK -19.583 20.533 351.1 20091104 20151214 680031 99999 TERRACE BAY WA FYTE -19.983 13.0 5.0 20091104 20120718 680032 99999 OTJINENE WA FYTN -21.133000000000003 18.767 442.9 20091104 20180916 680035 99999 ARANOS WA FYAN -24.166999999999998 19.167 1189.0 20080721 20150808 680040 99999 OTJIWARONGO WA FYOW -20.43 16.67 1475.0 19730102 20200422 680045 99999 EENHANA WA FYEN -17.483 16.322 1115.6 20080722 20180916 680055 99999 TSUMEB WA -19.267 17.733 1327.0 20080721 20080814 680060 99999 ONDANGWA WA FYOA -17.878 15.953 1097.0 19730118 20200624 680065 99999 OOTMOED WA FYOT -24.017 19.733 1200.0 20090701 20180916 680066 99999 NOORDOEWER WA FYND -28.75 17.617 150.0 20100706 20150808 680067 99999 MALTAHOHE WA FYMH -24.767 16.983 1365.5 20120302 20150808 680068 99999 OSHAKATI WA FYOS -17.8 15.7 1097.3 20120302 20180916 680069 99999 BAGANI WA FYBG -18.117 21.616999999999997 1011.0 20120302 20150808 680071 99999 OKAHAO WA FYOH -17.884 15.067 1097.3 20120302 20180916 680072 99999 AROAB WA FYAB -26.783 19.633 987.0 20120302 20180916 680075 99999 OKAKARARA WA FYOK -20.603 17.468 1350.0 20100422 20120718 680100 99999 OKAUKUEJO WA FYOO -19.183 15.917 1100.0 19740603 20200624 680120 99999 TSUMEB WA FYTM -19.262 17.733 1326.8 19490105 20171119 680130 99999 ONDANGWA WA -17.883 15.95 1096.0 20040831 20180523 680140 99999 GROOTFONTEIN WA FYGF -19.602 18.123 1413.1 19730101 20200624 680150 99999 OTJIWARONGO WA -20.433 16.667 1475.0 20040921 20081231 680151 99999 KARASBURG WA FYKB -28.0 18.75 1017.0 20080811 20150808 680152 99999 OKONGO WA FYKG -17.567 17.217 1152.0 20080811 20180916 680153 99999 SESFONTEIN WA FYSF -19.133 13.6 564.0 20101115 20180916 680160 99999 MOWE BAY WA -19.333 12.717 0.0 19730101 20090807 680180 99999 RUNDU WA FYRU -17.956 19.719 1105.5 19730102 20200624 680235 99999 BOGUS BOTSWANA BC FBMP 19880111 19910305 680240 99999 GHANZI BC FBGZ -21.7 21.65 1100.0 19590101 20200616 680250 99999 PANDAMATENGA BC FBPA -18.27 25.633000000000003 1064.0 20040831 20101103 680260 99999 SHAKAWE BC FBSW -18.367 21.85 1000.0 19600101 20200616 680281 99999 SAVUTI BC FBSV 0.0 0.0 -999.0 20060304 20060304 680290 99999 KASANE BC FBKE -17.833 25.162 1002.5 19820801 20200624 680300 99999 PANDAMATENGA BC -18.533 25.633000000000003 1071.0 19980301 20200618 680310 99999 MOREMI BC -19.333 23.416999999999998 964.0 19981224 20151019 680320 99999 MAUN BC FBMN -19.973 23.430999999999997 942.7 19490102 20200624 680340 99999 GWETA BC -20.25 25.083000000000002 927.0 20020603 20040910 680380 99999 SUA PAN BC FBSN -20.553 26.116 909.8 19910801 20200624 680400 99999 LETLHAKANE BC FBLT -21.416999999999998 25.6 985.0 19921101 20200616 680540 99999 FRANCISTOWN BC FBFT -21.16 27.475 1000.7 19590101 20200624 680560 99999 SELIBE-PHIKWE BC -22.05 27.816999999999997 939.0 20010811 20060605 680700 99999 SELEBI-PHIKWE BC -22.05 27.816999999999997 892.0 20010916 20200518 680980 99999 WALVIS BAY WA FYWB -22.98 14.645 91.1 19900214 20200624 681000 99999 SWAKOPMUND WA FYSM -22.658 14.567 15.9 19490101 20120711 681020 99999 OUTJO WA -20.114 16.154 1250.0 19600101 20160804 681040 99999 WALVIS BAY (PELICAN POINT) WA -22.883000000000003 14.433 0.0 19650502 20091016 681041 99999 MARIENTAL WA FYML -24.605 17.925 1112.5 20050217 20200130 681045 99999 ROOIKOP (SAAF/CIV) WA FYRK -22.983 14.65 88.0 19870720 20120328 681060 99999 GOBABEB WA FYGO -23.57 15.05 400.0 19730101 20140423 681080 99999 UIS WA -21.233 14.85 800.0 19730101 20160804 681090 99999 BITTERWASSER WA -23.866999999999997 18.0 1274.0 20080423 20090913 681100 99999 WINDHOEK/EROS(SAAF) WA FYWW -22.566999999999997 17.1 1725.0 19570701 20200624 681105 99999 WINDHOEK (MET) WA FAWW -23.5 17.0 1700.0 19880105 19910627 681110 99999 OUTJO WA FYOJ -20.07 16.13 1324.0 20041123 20180916 681115 99999 REHOBETH WA FYRH -23.25 17.067 1385.0 20090819 20180916 681120 99999 HOSEA KUTAKO INTL WA FYWH -22.48 17.471 1719.1 19730101 20200624 681140 99999 OMARURU WA FYOM -21.416999999999998 15.933 1217.0 20010916 20180916 681160 99999 GOBABIS WA FYGB -22.5 18.967 1387.0 19600101 20200624 681480 99999 MAHALAPYE BC -23.083000000000002 26.8 1006.0 19750515 20200616 681500 99999 DIBETE BC 0.0 0.0 -999.0 20010707 20051008 681510 99999 LEPHEPE BC -23.366999999999997 25.85 1020.0 20120215 20200613 681550 99999 ELLISRAS SF FAER -23.683000000000003 27.7 839.0 19970603 20200624 681560 99999 ELLISRAS SF -23.733 27.683000000000003 851.0 19880106 20051008 681590 99999 CUMBERLAND SF -23.967 26.916999999999998 857.0 19980301 20041214 681620 99999 MARNITZ SF -23.15 28.217 947.0 19560201 20050807 681630 99999 MARKEN SF -23.6 28.383000000000003 996.0 20041113 20200624 681710 99999 ALLDAYS SF -22.683000000000003 29.1 839.0 19980301 20050516 681740 99999 POLOKWANE SF FAPB -23.866999999999997 29.45 1224.0 19490101 20081231 681760 99999 MARA SF -23.15 29.566999999999997 897.0 19590101 20200624 681780 99999 LOUIS TRICHARDT SF -23.15 29.7 945.0 19970605 20051022 681800 99999 MESSINA-MACUVILLE SF -22.267 29.9 525.0 19651101 20091128 681810 99999 TSHIPISE SF -22.616999999999997 30.166999999999998 527.0 19980301 20160123 681820 99999 LEVUBU SF -23.083000000000002 30.283 706.0 19730101 20200624 681830 99999 THOHOYANDOU SF FATH -23.066999999999997 30.383000000000003 618.0 19970601 20200624 681840 99999 LYDENBURG SF -25.1 30.467 1425.0 19620801 20200624 681844 99999 MAIEPSKOP(SAAFB) SF FAMR -24.55 30.866999999999997 0.0 19880106 19880913 681850 99999 LYDENBURG SF -25.1 30.467 1434.0 19980301 20200624 681860 99999 TZANEEN SF -23.833000000000002 30.15 716.0 20020617 20200624 681863 99999 TZANEEN SF FATZ -23.824 30.329 583.4 20020423 20150511 681880 99999 TZANEEN-GRENSHOEK SF -23.767 30.066999999999997 896.0 19980301 20200624 681900 99999 PHALABORWA SF FAPH -23.936999999999998 31.155 436.5 19580101 20140526 681903 99999 GRAVELOTTE SF FAGV -23.9 30.683000000000003 0.0 19881208 19900729 681910 99999 PHALABORWA SF -23.933000000000003 31.15 407.0 19970603 20140526 681920 99999 THOHOYANDOU SF -22.967 30.5 600.0 19941004 20200624 681940 99999 PAFURI SF -22.45 31.316999999999997 202.0 19980301 20011109 681960 99999 PUNDA MARIA SF -22.683000000000003 31.017 457.0 20080624 20200624 682120 99999 MARIENTAL WA -24.5 17.867 1100.0 19600101 20200130 682200 99999 KHUTSE BC -23.666999999999998 24.166999999999998 1100.0 20040601 20050908 682260 99999 TSHANE BC FBTE -24.017 21.883000000000003 1100.0 19590101 20200613 682300 99999 MABUASEHUBE BC -25.033 22.133000000000003 -999.0 20010918 20051029 682320 99999 KHUTSE BC -23.8 24.433000000000003 -999.0 20020113 20040609 682340 99999 JWANENG BC FBJW -24.601999999999997 24.691 1188.7 19880801 20200616 682390 99999 POMFRET SF -25.833000000000002 23.533 1181.0 19980301 20050131 682400 99999 SIR SERETSE KHAMA INTL BC FBSK -24.555 25.918000000000003 1005.5 19850102 20200624 682410 99999 MADIKWE GAME RESERVE SF -24.683000000000003 26.2 1027.0 20081025 20200624 682413 99999 LOKALENG SF -25.8 25.55 1277.0 19870720 19910627 682420 99999 MAFIKENG SF FAMM -25.798000000000002 25.548000000000002 1274.4 19580601 20200624 682425 99999 MAFIKENG SF FAMK -25.883000000000003 25.65 1400.0 19880106 19901024 682430 99999 DOORNLAAGTE SF -24.6 26.517 946.0 19980301 20050226 682440 99999 GABORONE BC -24.666999999999998 25.916999999999998 1000.0 19580101 20160904 682443 99999 BOGUS BOTSWANA BC FBVZ 19890223 19900830 682500 99999 PILANSBERG SF -25.333000000000002 27.166999999999998 1043.0 19881001 20040721 682513 99999 BREDASDORP SF -34.533 20.033 19880202 19891002 682520 99999 RUSTENBURG SF -25.717 27.3 1157.0 19580101 20050501 682530 99999 THABAZIMBI SF FATI -24.583000000000002 27.416999999999998 977.0 19980301 20200624 682550 99999 RUSTENBURG SF -25.65 27.233 1151.0 19980301 20200624 682570 99999 PILANESBERG SF -25.25 27.217 1086.0 20040612 20200624 682580 99999 GOEDEHOOP SF -24.233 28.033 1200.0 19730101 20200624 682610 99999 BOLEPI HOUSE SF -25.816999999999997 28.25 1517.0 20131210 20190828 682620 99999 PRETORIA(MET) SF FAPR -25.733 28.183000000000003 1322.0 19490101 20190513 682623 99999 WATERKLOOF (SAAF) SF -25.833000000000002 28.217 1506.0 19870720 19901128 682630 99999 PRETORIA/IRENE SF FAIR -25.916999999999998 28.217 1500.0 19910108 20200624 682635 99999 LANSERIA SF FALA -25.939 27.926 1376.8 19900323 20200624 682640 99999 WATERKLOOF AFB SF FAWK -25.83 28.223000000000003 1505.7 19910108 20200624 682643 99999 WONDERBOOM SF FAWB -25.654 28.224 1248.2 20060220 20200624 682645 99999 MAKHADO AFB SF FALM -23.16 29.697 935.4 20050923 20200130 682650 99999 GRAND CENTRAL SF -25.983 28.133000000000003 1621.0 20131210 20150612 682670 99999 ERMELO SF -26.5 29.983 1766.0 19980301 20200624 682671 99999 GRAND CENTRAL SF FAGC -25.986 28.14 1623.1 20040518 20171125 682672 99999 JOHANNESBURG B/G SF FAJB -26.15 28.0 1626.0 20040510 20200624 682673 99999 RUSTENBURG SF FARG -25.644000000000002 27.271 1127.8 20040510 20130712 682674 99999 SPRINGS SF FASI -26.248 28.398000000000003 1627.6 20040510 20200624 682675 99999 MAHALAPYE BC FBMP -23.083000000000002 26.8 991.0 20040518 20080307 682676 99999 SELEBI PHIKWE BC FBSP -22.058000000000003 27.829 891.5 20040518 20200624 682677 99999 PIETERSBURG SF FAPB -23.866999999999997 29.433000000000003 1222.0 20050101 20200624 682678 99999 GREYTOWN SF FAGY -29.122 30.587 1076.2 20150511 20150511 682680 99999 WARMBAD TOWOOMBA SF -24.9 28.333000000000002 1132.0 19630601 20200617 682690 99999 PRETORIA-UNISA SF -25.767 28.2 1439.0 20030317 20200624 682710 99999 KOPANE SF -24.2 29.0 1097.0 19970603 20200624 682720 99999 OUDESTAD SF -25.183000000000003 29.333000000000002 949.0 19881130 20200624 682730 99999 WITBANK SF -25.833000000000002 29.183000000000003 1550.0 19980301 20200624 682760 99999 POTGIETERSRUS SF -24.183000000000003 29.017 1118.0 19730101 20050820 682770 99999 MIDDELBURG DAM SF -25.767 29.55 1527.0 19980301 20051009 682850 99999 BELFAST SF -25.691999999999997 30.034000000000002 1879.0 20131210 20200624 682860 99999 GRASKOP-SKOOL SF -24.933000000000003 30.833000000000002 1441.0 20020521 20020521 682870 99999 GRASKOP SF -24.933000000000003 30.85 1436.0 19980301 20200624 682880 99999 NELSPRUIT SF -25.433000000000003 30.983 674.0 19730101 20060219 682883 99999 NELSPRUIT & SF FANS -25.45 30.967 660.0 19871204 19880218 682884 99999 HOEDSPRUIT (SAAF) SF -24.366999999999997 31.066999999999997 533.0 19870720 19910627 682890 99999 NELSPRUIT SF FANS -25.433000000000003 30.983 883.0 19980301 20200624 682900 99999 HOEDSPRUIT AFB SF FAHS -24.369 31.049 531.3 19920220 20200624 682903 99999 GARIEP DAM SF FAHV -30.561999999999998 25.528000000000002 1272.8 20150511 20150511 682904 99999 KRUGER MPUMALANGA INTL SF FAKN -25.383000000000003 31.105999999999998 862.3 20060716 20200624 682905 99999 PILANESBERG INTL SF FAPN -25.334 27.173000000000002 1040.0 20050413 20200213 682910 99999 HOEDSPRUIT SF -24.35 31.05 510.0 19980301 20200624 682920 99999 FLEUR DE LYS SF -24.533 31.033 620.0 19741008 20040517 682950 99999 SKUKUZA AWS SF -24.983 31.583000000000002 150.0 20160422 20160422 682960 99999 SKUKUZA SF -24.983 31.6 271.0 19591101 20200624 682965 99999 BARBERTON SF FABN -25.733 31.0 0.0 19881225 19910117 682970 99999 KOMATIDRAAI SF -25.517 31.9 183.0 19980301 20200624 682974 99999 WITBANK SF FAWI -25.831999999999997 29.191999999999997 1547.8 19990116 20150511 682980 99999 LOMAHASHA WZ FDLM -25.983 31.983 570.0 20081002 20150723 682990 99999 PIGGS PEAK WZ FDPP -25.967 31.25 1099.0 20070228 20200624 683000 99999 LUDERITZ (DIAZ POINT) WA -26.683000000000003 15.25 139.0 19490103 20200624 683005 99999 LUDERITZ WA FYLZ -26.686999999999998 15.243 139.3 20000412 20200624 683007 99999 VEREENIGING SF FAVV -26.566 27.961 1477.1 19990114 20200624 683120 99999 KEETMANSHOOP WA FYKT -26.54 18.111 1068.6 19490104 20200624 683200 99999 WERDA BC FBWD -25.267 23.25 1046.0 20030330 20200616 683210 99999 SWARTKOPS AFB SF FASK -25.816999999999997 29.166999999999998 1457.0 20040611 20170117 683220 99999 TWEE RIVIEREN SF -26.467 20.616999999999997 879.0 19730101 20200624 683250 99999 GOOD HOPE BC -25.45 25.416999999999998 1275.0 20040512 20200624 683280 99999 TSABONG BC FBTS -26.05 22.45 1000.0 19580101 20200624 683290 99999 VAN ZYLSRUS SF -26.883000000000003 22.05 928.0 19980301 20200624 683300 99999 VANZYLSRUS SF -26.883000000000003 22.05 932.0 19870510 20040813 683304 99999 LOUIS TRICHARDT AFB SF -23.15 29.683000000000003 959.0 19900328 20081024 683310 99999 KATHU SF -27.666999999999998 23.0 1186.0 19980301 20200624 683320 99999 KURUMAN SF -27.467 23.433000000000003 1318.0 19570801 20041206 683330 99999 KURUMAN SF -27.433000000000003 23.45 1315.0 20060609 20200624 683350 99999 TAUNG SF -27.55 24.767 1100.0 19980301 20200624 683354 99999 SISHEN SF FASS -27.65 23.0 1172.9 19990115 20150511 683380 99999 VRYBURG SF FAVB -26.982 24.729 1194.8 19560101 20200428 683410 99999 LICHTENBURG SF FALI -26.176 26.185 1485.9 19980301 20200624 683420 99999 OTTOSDAL SF -26.816999999999997 26.017 1500.0 19730102 20200624 683430 99999 BLOEMHOF SF -27.65 25.616999999999997 1128.0 19980301 20200624 683440 99999 PLESSISDRAAI SF -27.983 26.133000000000003 1254.0 19570801 20020828 683450 99999 WELKOM SF -28.0 26.666999999999998 1342.0 19980301 20200624 683460 99999 WELKOM SF FAWM -27.998 26.67 1340.8 19730101 20030730 683463 99999 RAND SF FAGM -26.243000000000002 28.151 1671.2 19870721 20200623 683465 99999 ERMELO SF FAEO -26.496 29.98 1737.4 19881223 20200624 683470 99999 P C PELSER SF FAKD -26.871 26.718000000000004 1354.5 19980408 20200624 683490 99999 VENTERSDORP SF FAVE -26.32 26.82 1496.0 19980303 20200624 683500 99999 POTCHEFSTROOM SF -26.733 27.066999999999997 1351.0 19561001 20200624 683510 99999 POTCHEFSTROOM SF FAPS -26.671 27.081999999999997 1377.7 19800301 20150511 683520 99999 KROONSTAD SF FAKS -27.660999999999998 27.316 1432.6 19601201 20120127 683530 99999 VEREENIGING SF -26.566999999999997 27.95 1481.0 19980301 20200624 683550 99999 KROONSTAD SF -27.666 27.314 1434.0 19980301 20200624 683610 99999 JOHANNESBURG BOT. GARDENS SF -26.15 28.0 1626.0 20040910 20200624 683620 99999 FRANKFORT SF FAFF -27.267 28.5 1503.0 19490101 20200624 683630 99999 SPRINGS SF -26.2 28.45 1588.0 20041118 20200624 683670 99999 HENDRINA/PRIVATE SF -26.017 29.6 1576.0 20040610 20041209 683680 99999 JOHANNESBURG INTL SF FAJS -26.139 28.246 1694.1 19560101 20200527 683685 99999 MARGATE SF -30.85 30.333000000000002 155.0 19970701 20030730 683690 99999 GERMISTON SF -26.25 28.15 1668.0 20050925 20050925 683700 99999 BETHAL SF -26.467 29.45 838.0 19730101 20191209 683710 99999 HEIDELBERG SF -26.517 28.366999999999997 1560.0 20040311 20050824 683720 99999 STANDERTON SF -26.933000000000003 29.233 1564.0 19591001 20081217 683750 99999 VREDE SF -27.433000000000003 29.166999999999998 1671.0 20040727 20200624 683770 99999 NEWCASTLE SF -27.767 29.983 1238.0 19980301 20170329 683780 99999 NEWCASTLE SF -27.733 29.916999999999998 1235.0 19560301 20050505 683783 99999 NEWCASTLE SF FANC -27.771 29.976999999999997 1241.8 19871218 20200303 683784 99999 VRYHEID SF FAVY -27.783 30.8 1158.0 19970902 20030718 683800 99999 CAROLINA SF FACL -26.066999999999997 30.116999999999997 1700.0 19580501 20200623 683801 99999 COOKHOUSE SF FACH -32.766999999999996 25.75 900.0 20050507 20180516 683820 99999 JERICHO WZ FDJR -27.162 31.439 701.0 20110701 20200624 683830 99999 NDZEVANE WZ FDND -26.956999999999997 31.955 207.0 20110901 20200621 683850 99999 PIET RETIEF SF -27.017 30.8 1235.0 19980301 20061219 683860 99999 NYONYANE WZ FDNY -26.115 31.45 320.0 20110901 20200602 683870 99999 VRYHEID SF -27.783 30.8 1163.0 19980301 20200624 683880 99999 PIET RETIEF SF -27.033 30.8 1238.0 19560701 20060317 683900 99999 MAYIWANNE WZ FDMY -25.883000000000003 31.5 480.0 20070301 20200624 683910 99999 MBABANE WZ -26.333000000000002 31.133000000000003 1193.0 20070228 20160429 683920 99999 NHLANGANO WZ -27.05 31.1 1102.0 20070330 20200624 683923 99999 MOTI WZ FDOT -26.704 31.426 341.0 20110901 20200624 683924 99999 MUSI WZ FDUS -26.721999999999998 30.912 956.0 20110901 20181218 683925 99999 VUVULANE WZ FDVV -26.081999999999997 31.886 276.0 20110901 20180601 683930 99999 LAVUMISA WZ FDLV -27.267 31.816999999999997 315.0 20070228 20191112 683935 99999 NSOKO AIRFIELD WZ FDNS -27.017 31.933000000000003 671.0 20100420 20100420 683950 99999 HLATHIKHULU WZ FDHL -26.967 31.316999999999997 1190.0 20070228 20170704 683960 99999 MATSAPHA WZ FDMS -26.529 31.308000000000003 633.4 19730101 20200624 683970 99999 MBAZWANA AIRFIELD SF -27.467 32.583 61.0 20091027 20200624 683980 99999 SITEKI WZ FDST -26.433000000000003 31.95 667.0 20030214 20200624 683990 99999 BIG BEND WZ FDBB -26.85 31.916999999999998 94.0 20070228 20200624 684000 99999 MAKATINI SF -27.383000000000003 32.183 63.0 19941005 20200624 684030 99999 ALEXANDER BAY SF FAAB -28.575 16.533 29.9 19970701 20200624 684060 99999 ALEXANDER BAY SF -28.566999999999997 16.533 21.0 19560101 20050727 684080 99999 PORT NOLLOTH SF -29.233 16.867 10.0 19490101 20200624 684110 99999 VIOOLSDRIF SF -28.769000000000002 17.623 174.0 19980301 20200624 684150 99999 DURNACOL SF -28.116999999999997 29.967 1500.0 20041112 20041118 684160 99999 POFADDER SF -29.133000000000003 19.383 990.0 19550103 20200624 684164 99999 LIME ACRES FINSCH MINE SF FALC -28.36 23.439 1493.5 20161213 20161213 684240 99999 UPINGTON SF FAUP -28.399 21.26 850.7 19560101 20200624 684250 99999 AUGRABIES FALLS SF -28.6 20.35 635.0 20131210 20200624 684290 99999 POSTMASBURG SF -28.333000000000002 23.066999999999997 1321.0 19980301 20200624 684300 99999 POSTMASBURG SF -28.316999999999997 23.066999999999997 1323.0 20040523 20050903 684380 99999 KIMBERLEY SF FAKM -28.803 24.765 1204.0 19490101 20200624 684381 99999 KOMATIPOORT SF FAKP -25.433000000000003 31.933000000000003 152.0 20081021 20081021 684420 99999 BLOEMFONTEIN INTL SF FABL -29.093000000000004 26.302 1358.8 19490101 20200624 684430 99999 BLOEMFONTEIN CITY SF -29.116999999999997 26.183000000000003 1406.0 20060608 20200518 684470 99999 GLEN COLLEGE AWS SF -28.95 26.333000000000002 1303.0 20131210 20200624 684490 99999 FICKSBURG SF -28.816999999999997 27.9 1614.0 19980301 20200624 684520 99999 MOKHOTLONG LT -29.267 29.133000000000003 2200.0 19840501 20051019 684533 99999 MOSHOESHOE I INTL LT FXMM -29.462 27.553 1630.1 19870720 20200607 684540 99999 MEJAMETALANA LT FXMU -29.304000000000002 27.503 1556.0 19740731 20200607 684560 99999 QACHA'S NEK LT -30.066999999999997 28.7 1970.0 19840601 20071127 684610 99999 BETHLEHEM SF FABM -28.248 28.336 1695.0 19800301 20200624 684620 99999 BETHLEHEM SF -28.166999999999998 28.767 1600.0 19570801 20050213 684710 99999 VAN REENEN SF -28.366999999999997 29.383000000000003 1680.0 19980301 20200624 684740 99999 ROYAL NATAL NAT. PARK SF -28.683000000000003 28.95 1392.0 19980301 20200624 684750 99999 ESHOWE SF FAES -28.883000000000003 31.45 487.0 20040426 20051227 684760 99999 LADYSMITH SF FALY -28.581999999999997 29.75 1081.4 19840103 20150511 684780 99999 ESTCOURT SF -29.0 29.883000000000003 1144.0 19570101 20200624 684790 99999 LADYSMITH SF -28.566999999999997 29.767 1069.0 19970715 20200624 684810 99999 PONGOLA SF -27.416999999999998 31.6 312.0 19970701 20200624 684850 99999 MOOI RIVER SF -29.217 30.0 1393.0 20131210 20200624 684870 99999 GREYTOWN SF -29.083000000000002 30.6 1029.0 19970715 20200624 684880 99999 BABANANGO SF -28.366999999999997 31.217 768.0 19950110 20200624 684910 99999 CHARTERS CREEK SF -28.2 32.417 9.0 19980301 20200624 684930 99999 PRINCE MANGOSUTHU BUTHELEZI SF FAUL -28.320999999999998 31.416999999999998 524.3 19970715 20200624 684940 99999 MANDINI SF -29.15 31.4 112.0 19980301 20200624 684950 99999 RICHARDS BAY AIRPORT SF FARB -28.733 32.083 35.0 19970704 20200624 684960 99999 CAPE ST. LUCIA SF -28.5 32.4 107.0 19490101 20150611 684963 99999 PIETERMARITZBURG SF FAPM -29.649 30.399 738.5 19970701 20190115 684970 99999 MTUNZINI SF -28.95 31.7 38.0 19980301 20200624 684980 99999 RICHARD'S BAY SF -28.8 32.1 0.0 19941004 20041228 685120 99999 SPRINGBOK SF FASB -29.689 17.94 819.9 19550914 20200624 685121 99999 STANDERTON SF FASR -26.93 29.22 1581.0 20040608 20080822 685130 99999 KOINGNAAS SF -30.2 17.283 99.0 19980301 20200624 685140 99999 HENKRIES SF -28.967 18.1 415.0 20010916 20130702 685230 99999 BRANDVLEI SF -30.467 20.483 923.0 19970701 20200624 685240 99999 VANWYKSVLEI SF -30.35 21.816999999999997 962.0 19551001 20200624 685270 99999 PRIESKA SF -29.666999999999998 22.733 947.0 19980301 20200624 685280 99999 PRIESKA SF -29.666999999999998 22.75 946.0 19570401 20050821 685300 99999 DOUGLAS SF -29.066999999999997 23.75 995.0 19740429 20050801 685360 99999 DE AAR SF FADA -30.65 24.017 1247.0 19570601 20050829 685380 99999 DEAAR(UA) SF FADY -30.666999999999998 24.017 1287.0 19930701 20200624 685410 99999 FAURESMITH SF -29.754 25.323 1387.0 20131210 20200624 685420 99999 FAURESMITH SF -29.767 25.316999999999997 1372.0 19560901 19990903 685430 99999 GARIEP DAM SF -30.533 25.533 1272.0 20131210 20200624 685450 99999 VENTERSTAD SF -30.783 25.8 1283.0 19980301 20030611 685460 99999 ALIWAL NORTH SF FAAN -30.717 26.717 1351.0 19550101 20200624 685490 99999 WEPENER SF -29.9 26.866999999999997 1420.0 20131210 20200624 685500 99999 WEPENER SF -29.733 27.033 1438.0 19550601 20051016 685580 99999 BARKLY EAST SF -30.933000000000003 27.6 1819.0 19980301 20200624 685630 99999 BURGERSDORP SF -30.967 26.316999999999997 1437.0 20050414 20050414 685640 99999 SHEEPRUN SF -30.983 28.383000000000003 1328.0 19621015 20050529 685700 99999 MATATIELE SF -30.35 28.8 1490.0 19950101 20120206 685720 99999 SHALEBURN SF -29.8 29.35 1614.0 19621004 20200624 685740 99999 KOKSTAD SF -30.533 29.483 1300.0 19730101 20041107 685750 99999 IXOPO SF -30.15 30.066999999999997 937.0 19980302 20200624 685770 99999 KOKSTAD SF -30.5 29.4 1443.0 20050920 20200624 685790 99999 PADDOCK SF -30.75 30.267 515.0 20040613 20200624 685800 99999 CEDARA SF -29.533 30.283 1071.0 19590801 20200624 685810 99999 PIETERMARITZBURG SF -29.633000000000003 30.4 673.0 19970715 20200304 685820 99999 ORIBI AIRPORT SF -29.65 30.4 739.0 20131210 20200624 685830 99999 MOUNT EDGECOMBE SF -29.7 31.05 94.0 19980301 20200624 685840 99999 PORT SHEPSTONE SF -30.733 30.45 17.0 19730101 20051218 685845 99999 DURBAN/VIRGINIA SF -29.767 31.066999999999997 6.0 19881209 19900914 685850 99999 PENNINGTON SOUTH SF -30.4 30.666999999999998 98.0 20040323 20200624 685870 99999 PORT EDWARD SF -31.066999999999997 30.233 12.0 19980301 20200624 685880 99999 DURBAN INTL SF FADN -29.97 30.951 10.1 19560201 20200624 685890 99999 GIANTS CASTLE SF -29.267 29.517 1763.0 19970715 20200624 685900 99999 ADDINGTON SF -29.85 31.05 13.0 19490101 19531231 685910 99999 MARGATE SF FAMG -30.85 30.333000000000002 154.0 19970701 20200624 685920 99999 KING SHAKA INTL AIRPORT SF FALE -29.616999999999997 31.133000000000003 127.0 20100430 20200624 685930 99999 VIRGINIA SF FAVG -29.771 31.058000000000003 6.1 19980408 20200624 686130 99999 LAMBERTS BAY SF -32.033 18.333 94.0 19980301 20200624 686140 99999 VREDENDAL SF FAVR -31.641 18.545 100.6 19570901 20200624 686160 99999 VANRHYSDORP SF -31.6 18.75 147.0 19861001 20050729 686180 99999 CALVINIA SF FACV -31.5 19.726 990.6 19560101 20200624 686190 99999 NIEUWOUDTVILLE SF -31.35 19.083 731.0 20131210 20200624 686240 99999 FRASERBURG SF FAFR -31.916999999999998 21.517 1268.0 19730101 20200624 686300 99999 VICTORIA / WEST SF -31.4 23.116999999999997 1256.0 20040326 20060126 686330 99999 NOUPOORT SF -31.183000000000003 24.95 1496.0 19980301 20200624 686380 99999 MIDDELBURG SF FAMB -25.685 29.44 1489.3 19570101 20030407 686460 99999 WILLOW PARK SF -31.5 26.95 1485.0 19730219 19730219 686470 99999 QUEENSTOWN SF -31.916999999999998 26.883000000000003 1104.0 19970701 20200624 686480 99999 QUEENSTOWN SF FAQT -31.92 26.881999999999998 1108.6 19570701 20050821 686490 99999 JAMESTOWN SF -31.116999999999997 26.8 1603.0 19970701 20200624 686510 99999 ELLIOT SF -31.333000000000002 27.85 1463.0 19970701 20200624 686680 99999 MTHATHA SF FAUT -31.548000000000002 28.674 731.5 19730101 20200624 686740 99999 PORT ST JOHNS SF FAPJ -31.605999999999998 29.52 374.0 19490101 20200624 686770 99999 COFFEE BAY SF -31.95 29.133000000000003 161.0 20131210 20200624 687120 99999 CAPE COLUMBINE SF -32.833 17.85 67.0 19490102 20200624 687130 99999 PAARL SF -33.717 18.967 104.0 20040608 20200624 687140 99999 LANGEBAANWEG SF FALW -32.969 18.16 32.9 19730801 20200624 687150 99999 MALMESBURY SF -33.467 18.717 102.0 19970701 20200624 687170 99999 PORTERVILLE SF -33.013000000000005 18.977 122.0 19980301 20200624 687180 99999 ROBERTSON SF -33.8 19.9 204.0 19730101 20200624 687190 99999 EXCELSIOR SF -32.95 19.433 945.0 20040423 20200624 687220 99999 SUTHERLAND SF -32.383 20.666999999999998 1459.0 19590917 20200624 687230 99999 LAINGSBURG SF -33.2 20.866999999999997 656.0 19980301 20200624 687270 99999 BEAUFORT WEST SF -32.35 22.55 899.0 19980301 20200624 687280 99999 BEAUFORT WEST(MET) SF FABY -32.35 22.583000000000002 842.0 19490101 20150511 687285 99999 BEAUFORT WEST (MET) SF FABY -32.35 22.583000000000002 857.0 19880106 19910627 687360 99999 GRAAFF REINET SF FAGR -32.194 24.541 793.7 19730102 20031201 687370 99999 GRAAFF-REINET SF -32.2 24.55 790.0 19980301 20200612 687380 99999 JANSENVILLE SF -32.933 24.666999999999998 424.0 19730102 20051231 687420 99999 SOMERSET EAST SF -32.733000000000004 25.583000000000002 720.0 19601113 20051023 687440 99999 CRADOCK SF -32.167 25.616999999999997 926.0 19941004 20200624 687470 99999 FORT BEAUFORT SF -32.783 26.633000000000003 455.0 19970701 20200624 687520 99999 BHISHO SF FABE -32.897 27.279 594.4 19870514 20200624 687523 99999 BISHO SF -32.9 27.283 594.0 19911002 19960122 687540 99999 DOHNE SF -32.516999999999996 27.467 900.0 19730101 20200624 687680 99999 MBASHE SF -32.233000000000004 28.916999999999998 37.0 19730101 19750203 688110 99999 GEELBEK SF -33.2 18.117 7.0 20040501 20200624 688130 99999 ROBBEN ISLAND SF -33.8 18.367 3.0 20041005 20200624 688140 99999 DASSEN ISLAND SF -33.433 18.083 8.0 19980301 20120919 688150 99999 LANGEBAAN SF -33.083 18.017 6.0 19970701 20200624 688160 99999 CAPE TOWN INTL SF FACT -33.965 18.602 46.0 19490101 20200624 688170 99999 CAPE TOWN - PORTNET SF -33.9 18.433 2.0 19980301 20200624 688180 99999 TOUWS RIVER SF -33.35 20.05 782.0 19490101 20060104 688183 99999 PRINCE ALBERT ROAD SF FAPC -33.217 22.033 0.0 19890212 19890222 688190 99999 MOLTENO RESERVIOR SF -33.933 18.417 97.0 20131210 20200624 688210 99999 WORCESTER SF -33.617 19.467 270.0 19980301 20200624 688230 99999 PRINS ALBERT SF -33.183 22.017 544.0 19970703 20200624 688250 99999 LADISMITH SF -33.5 21.283 538.0 20131210 20200624 688260 99999 OUDTSHOORN SF FAOH -33.607 22.189 324.0 19730101 20180328 688270 99999 YSTERPLANT(SAAFB) SF -33.9 18.5 16.0 20040224 20200624 688280 99999 GEORGE SF FAGG -34.006 22.379 197.5 19490101 20200624 688320 99999 WILLOWMORE SF -33.283 23.5 842.0 19590912 20200624 688330 99999 JOUBERTINA SF -33.833 23.866999999999997 546.0 20040430 20200624 688350 99999 PATENSIE SF -33.766999999999996 24.816999999999997 85.0 19980301 20200624 688370 99999 NGQURA (COEGA) SF -33.8 25.666999999999998 46.0 20131210 20200624 688390 99999 UITENHAGE SF -33.7 25.433000000000003 157.0 19970701 20200624 688400 99999 SOMERSET SF -33.05 25.717 506.0 20131210 20200624 688410 99999 ADDO ELEPHANT PARK SF -33.45 25.75 506.0 20131210 20200624 688420 99999 PORT ELIZABETH INTL SF FAPE -33.985 25.616999999999997 68.9 19490101 20200624 688430 99999 PORT ALFRED AIRPORT SF -33.567 26.883000000000003 84.0 20070228 20200624 688450 99999 BIRD ISLAND SF -33.833 26.283 3.0 20131211 20180310 688470 99999 PORT ALFRED SF -33.6 26.883000000000003 37.0 19970701 20051225 688490 99999 GRAHAMSTOWN SF -33.283 26.5 642.0 19980301 20200624 688580 99999 EAST LONDON SF FAEL -33.036 27.826 132.6 19490101 20200624 689020 99999 TRISTAN DA CUNHA SH FATC -37.05 -12.317 23.0 19490101 20200622 689060 99999 GOUGH ISLAND SH FAGE -40.35 -9.883 54.0 19551120 20200624 689110 99999 STRAND SF -34.15 18.85 10.0 20040525 20200624 689120 99999 SLANGKOP SF -34.15 18.317 8.0 19980301 20200624 689140 99999 SIMONSTOWN SF -34.2 18.433 293.0 19490101 19500625 689150 99999 CAPE POINT (AUTO) SF -34.35 18.5 225.0 20041102 20060608 689160 99999 CAPE POINT SF -34.35 18.5 238.0 19730101 20200624 689180 99999 HERMANUS SF -34.433 19.217 14.0 19980301 20200624 689200 99999 CAPE AGULHAS SF -34.833 20.017 14.0 19490101 20200624 689203 99999 BREDASDORP SF FABR -34.533 20.033 50.0 19891024 20200425 689210 99999 STRUISBAAI SF -34.8 20.067 4.0 19980301 20200624 689230 99999 TIGERHOEK SF -34.15 19.9 151.0 20040726 20200624 689250 99999 ELGIN EXP FARM SF -34.139 19.023 311.0 19980301 20200624 689260 99999 RIVERSDALE SF -34.083 21.25 116.0 19730101 20200624 689263 99999 OVERBERG SF FAOB -34.555 20.250999999999998 15.8 19901019 20200624 689270 99999 STILBAAI SF -34.367 21.383000000000003 103.0 20040303 20200624 689280 99999 MOSSEL BAY (LGT-H) SF FAMO -34.183 22.15 59.0 19490101 20200624 689290 99999 HUMANSDORP SF -34.016999999999996 24.783 40.0 20040611 20060609 689310 99999 PLETTENBERG BAY SF FAPG -34.09 23.328000000000003 141.7 19980408 20200624 689330 99999 TSITSIKAMMA SF -34.033 23.9 5.0 20040727 20200624 689350 99999 KNYSNA SF -34.05 23.083000000000002 54.0 19980301 20200624 689380 99999 CAPE ST. FRANCIS SF -34.2 24.833000000000002 7.0 19730101 20060809 689390 99999 CAPE ST FRANCIS SF -34.217 24.85 7.0 20040625 20200624 689550 99999 19870519 19870519 689920 99999 BOUVET ISLAND BV -54.433 3.283 42.0 19790107 20070311 689940 99999 MARION ISLAND SF FAME -46.883 37.867 22.0 19490101 20200624 689945 99999 BISHO & SF FABE -32.9 27.283 594.0 19880201 19910627 689990 99999 CT-AWS SF -33.967 18.6 46.0 20041102 20200624 689993 99999 BOGUS SOUTH AFRICAN SF FAVF 19890116 19900518 690014 99999 C STN WHITE SANDS US NM 32.35 -106.367 1224.0 19870101 19910611 690020 93218 JOLON HUNTER LIGGETT MIL RES US CA KHGT 36.0 -121.23299999999999 317.0 19640715 19970401 690020 99999 JOLON HUNTER LIGGETT MIL RES US CA KHGT 36.0 -121.23299999999999 317.0 20030702 20030801 690070 93217 FRITZSCHE AAF US CA KOAR 36.683 -121.76700000000001 43.0 19600404 19930831 690080 99999 TARIN KOWT AF CA KQA7 32.6 65.87 1380.0 20030616 20030624 690086 99999 AFWA ASSIGNED 0.0 0.0 0.0 20120101 20150118 690090 99999 HURLBURT FLD/EXERCIS US FL 30.433000000000003 -86.71700000000001 3.0 20081010 20081017 690100 99999 KOON-IN RANGE KS RKSN 37.033 126.75 15.0 19891127 20020320 690110 99999 SELFRIDGE ANGB/TRAIN US MI 42.608000000000004 -82.835 177.0 19430614 19920507 690136 99999 20030518 20030521 690140 93101 EL TORO MCAS US CA KNZJ 33.667 -117.73299999999999 116.7 19890101 19990630 690150 93121 TWENTY NINE PALMS US CA KNXP 34.3 -116.167 625.1 19900102 20200625 690150 99999 TWENTYNINE PALMS US CA KNXP 34.3 -116.167 626.0 19891115 19891229 690160 93114 FOB DWYER AF CA KNTK 33.7 -117.833 16.5 19891115 20001101 690160 99999 FOB DWYER AF CA 31.1 64.083 725.0 20011124 20011124 690170 99999 IND SPRNG RANGE 63 US NV KL63 36.533 -115.56700000000001 972.0 19800514 20081231 690174 99999 INDIAN SPRINGS RANGE US NV L63 36.533 -115.56700000000001 972.0 19780823 19800430 690186 99999 SAN JOSE DEL GUAVIA CO KQB7 2.5669999999999997 -72.633 184.0 20080101 20080623 690190 13910 ABILENE DYESS AFB US TX KDYS 32.433 -99.85 545.3 19431201 20091231 690190 99999 DYESS AFB/ABILENE US TX 32.417 -99.85 545.0 20000103 20041230 690200 99999 GOVERNOR HYDE US NC 35.25 -76.167 2.0 19800418 19810304 690210 99999 ALLIGATOR BRIDGE US NC 35.9 -76.0 2.0 19800418 19840929 690220 99999 ALBEMARLE BRIDGE US NC 35.983000000000004 -76.5 2.0 19800418 19840929 690230 24255 WHIDBEY ISLAND NAS US WA KNUW 48.35 -122.667 14.3 19891201 20090602 690236 99999 20030618 20030812 690240 99999 PACIFIC BEACH US WA KNIX 47.217 -124.2 18.0 19800603 19851031 690250 99999 KITTY HAWK SCHOOL US NC 36.1 -75.75 3.0 19800922 19810223 690260 99999 CHEBOYGAN US MI 45.65 -84.46700000000001 176.0 19800611 20011023 690266 99999 20030518 20030810 690276 99999 20030523 20030628 690280 99999 PORT ISABEL (CGS) US TX 26.066999999999997 -97.167 5.0 19820627 19831116 690290 99999 PORT ARANSAS US TX 27.833000000000002 -97.06700000000001 2.0 19820625 20041129 690300 99999 AFWA ASSIGNED 0.0 0.0 0.0 19820625 20011003 690310 03125 YUMA PROVING GROUND US AZ 32.833 -114.4 98.8 19870701 19900420 690320 99999 BLAINE HARBOR MUNI US WA WA09 48.983000000000004 -122.73299999999999 21.0 19920416 19940303 690330 99999 HOOD CANAL BRIDGE US OR K4S2 45.667 -121.53299999999999 192.0 19910307 20080106 690500 99999 FORT CHAFFEE US AR KQCU 35.167 -94.2 143.0 19830119 19830119 690514 99999 BAYJI IZ KQBJ 34.983000000000004 43.483000000000004 138.0 19910622 19960916 690524 99999 2 CWSS TMQ-53 US FL 30.416999999999998 -86.667 9.0 19910315 20020516 690534 99999 19960321 20010701 690544 99999 19910315 20010329 690554 99999 19910315 20010506 690564 99999 AFWA ASSIGNED 0.0 0.0 106.0 19910315 19910403 690574 99999 19910215 19910412 690584 99999 LZ BULL / EXERCISE US CA 33.067 -115.06700000000001 230.1 19990602 20010606 690604 99999 19970813 19970813 690614 99999 19991201 20010615 690674 99999 19910504 20010724 690704 99999 19930105 19930105 690714 99999 19911222 19960211 690724 99999 19920527 19970907 690764 99999 AFWA ASSIGNED 0.0 0.0 0.0 20010217 20010615 690794 99999 19990531 20010707 690804 99999 19950810 20001025 690814 99999 FOB GAMBERI AF 34.53 70.35 657.2 20010923 20011025 690824 99999 19941214 20011022 690826 99999 20030518 20030628 690844 99999 19910710 19910710 690854 99999 20011104 20011105 690864 99999 AFWA ASSIGNED 0.0 0.0 0.0 19940307 20030816 690874 99999 19990312 20020331 690884 99999 19961021 19971216 690904 99999 19930121 20011209 690914 99999 19990825 20030816 690924 99999 AFWA ASSIGNED 0.0 0.0 0.0 19910209 20000413 690934 99999 19910217 19930206 690944 99999 AFWA ASSIGNED 0.0 0.0 0.0 19910316 19940415 690954 99999 19910312 20030615 690964 99999 AFWA ASSIGNED 0.0 0.0 0.0 19910217 19991027 690974 99999 AFWA ASSIGNED 0.0 0.0 0.0 19910312 20010627 690976 99999 20030518 20030628 690984 99999 19910316 20000314 690994 99999 19910316 20010903 691000 99999 MAIMANEH AIRFLD/PRT AF KQMH 35.93 64.76 831.0 20080101 20081231 691004 99999 19910209 19990621 691006 99999 20030524 20030627 691014 99999 19910209 19990615 691024 99999 AFWA ASSIGNED 0.0 0.0 0.0 19910209 19990618 691034 99999 19910209 20000210 691044 99999 AFWA ASSIGNED 0.0 0.0 57.0 19840130 20030609 691054 99999 19930913 19991229 691064 99999 BASTION AF KQBH 31.85 64.2 899.0 19840716 19971103 691084 99999 OUAGADOUGOU UV 12.35 -1.5 306.3 19821204 19990418 691094 99999 19840329 20020502 691104 99999 19770325 20010417 691106 99999 20030518 20030814 691114 99999 19750415 20010501 691124 99999 19750529 20010404 691134 99999 COS ECHO IZ KQAD 31.983 44.933 14.0 19771024 20080930 691144 99999 AFWA ASSIGNED 0.0 0.0 0.0 19750528 20001025 691154 99999 19770325 20001120 691164 99999 REDSTONE ARSENAL US AL 34.683 -86.68299999999999 209.0 19771026 20010323 691174 99999 ABERDEEN PVNG GRND US MD 39.467 -76.167 18.0 19361001 20030816 691184 99999 19750524 20000829 691194 99999 AHMED AL JABER KU 28.933000000000003 47.783 124.7 19771022 20081231 691204 99999 19770511 20020517 691214 99999 AFWA ASSIGNED CA KQAL 19781020 20021218 691224 99999 AFWA ASSIGNED US CA KQAM 19781028 20040730 691234 99999 19781028 20020508 691244 99999 19811208 20010626 691254 99999 AFWA ASSIGNED NE KQBO 19910514 20031101 691264 99999 19750120 20030815 691274 99999 19920324 20010509 691284 99999 BAGRAM AIRFIELD AF 34.933 69.25 1492.0 19870405 20030628 691294 99999 BERBERA SO 10.482999999999999 44.933 43.9 19750501 19960611 691304 99999 AFWA ASSIGNED 0.0 0.0 0.0 19750501 20080912 691314 99999 19770413 19930524 691324 99999 FORT BRAGG / TEST US NC 35.15 -78.9 80.8 19951030 20001215 691334 99999 HILL/WENDOVER R GWC US UT KQSL 41.05 -113.06700000000001 1299.0 19910521 20030816 691344 99999 BASRAH IZ 30.566999999999997 47.766999999999996 2.1 19780408 19980615 691354 99999 19780919 19951219 691364 99999 AFWA ASSIGNED 0.0 0.0 0.0 19780323 19990306 691374 99999 19780926 20030816 691384 99999 19780923 20030816 691394 99999 19790112 19991101 691404 99999 DAEGU - EXERCISE KS 35.9 128.667 35.4 19850424 20020121 691414 99999 SPEED BAG AIRFIELD US CA 33.266999999999996 -115.417 93.0 19850424 19971123 691424 99999 19860420 20030522 691434 99999 DIKHIL DJ 11.117 42.367 490.9 19860420 20000217 691444 99999 19910131 20000227 691454 99999 19921207 19990806 691464 99999 DRAUGHON RANGE JA 40.869 141.378 5.2 19550310 20041231 691474 99999 AFWA ASSIGNED 0.0 0.0 128.0 19911204 19960429 691484 99999 FAIRCHILD AFB / EXERCISE US WA 47.617 -117.667 750.4 19840709 19950502 691490 99999 19970402 20010207 691494 99999 19840317 19970413 691504 99999 19840709 19971010 691514 99999 19840915 19970613 691524 99999 19820705 19970626 691534 99999 KIGALI RW -1.933 30.083000000000002 1467.0 19810610 19910410 691540 99999 19970402 19980408 691544 99999 19840318 19970407 691554 99999 19871204 19910413 691564 99999 19840918 19970614 691574 99999 19850120 20020218 691584 99999 19841105 20001218 691594 99999 AFWA ASSIGNED 0.0 0.0 0.0 19850306 19971222 691604 99999 19840624 19990324 691614 99999 19850118 19981201 691624 99999 MAZAR-E SHARIF AF KQKP 36.71 67.21 378.0 19840917 19991202 691634 99999 19840118 20020130 691644 99999 19850307 19981117 691654 99999 19860122 19970519 691664 99999 19840324 19970813 691674 99999 19850307 20030816 691684 99999 DIRKOU (8347) NG 18.967 12.967 389.8 19850303 20020325 691694 99999 19850121 20010318 691704 99999 19821014 20001226 691710 99999 19990119 20000506 691714 99999 19790306 19950930 691724 99999 19790508 19900723 691734 99999 BAGHDAD IZ 33.25 44.233000000000004 34.0 19780421 20081231 691740 99999 19960321 20001122 691744 99999 19850731 19960316 691750 99999 19990315 20030816 691754 99999 19860313 19880913 691764 99999 CLARK INTL RP 15.183 120.56700000000001 148.0 19850311 20030611 691774 99999 AFWA ASSIGNED 0.0 0.0 0.0 19870923 19930225 691784 99999 FOB LEATHERNECK AF KQLE 31.9 64.183 890.0 19910802 20011209 691794 99999 19940916 19990302 691804 99999 CAMP BLANDING US FL KQLG 29.967 -81.98299999999999 59.0 19860119 19980202 691810 99999 TUZLA BK KQLH 44.533 18.717 19960221 20030610 691814 99999 19850727 19960317 691824 99999 19840915 20001107 691834 99999 19850729 19981219 691844 99999 19860417 19990911 691854 99999 VILLAMOR RP 14.517000000000001 121.01700000000001 23.0 19830314 20001020 691864 99999 19860120 19951207 691874 99999 19910208 20030816 691884 99999 19911122 20020713 691894 99999 LAIKIPIA AIR BASE KE -0.067 36.867 1905.0 19910509 20001218 691904 99999 AFWA ASSIGNED 0.0 0.0 0.0 19840917 19900123 691914 99999 19871107 19981118 691924 99999 19840917 19990424 691934 99999 AFWA ASSIGNED 0.0 0.0 0.0 19861102 19880228 691944 99999 19860119 20020110 691954 99999 19850307 19950630 691964 99999 19840917 19900531 691974 99999 19861102 19961024 691984 99999 AFWA ASSIGNED 0.0 0.0 0.0 19840917 20010507 691994 99999 19870916 19960828 692004 99999 EDWIN ANDREWS AB RP 6.933 122.06700000000001 10.1 19770313 20010822 692014 99999 EMBAKASI KE -1.3 36.917 1632.0 19780301 19990817 692024 99999 19770224 20000714 692034 99999 19760205 19930818 692044 99999 19780302 20030816 692054 99999 FOB NAWBAHAR AF KQEF 32.8 67.633 1989.0 19770910 19980504 692064 99999 19770118 20011022 692074 99999 JINBURYONG (TMQ-53P) KS 38.2 128.533 97.8 19770912 19911107 692084 99999 INJE/SINNAM (TMQ-53P) KS 37.967 128.083 196.0 19790910 20000820 692094 99999 BANGSAN (TMQ-53P) KS 38.117 128.033 221.0 19800715 19920819 692104 99999 19770501 20020324 692114 99999 GAPYONG (TMQ-53P) KS 37.867 127.51700000000001 56.1 19770910 20010511 692124 99999 19770901 20030623 692134 99999 DAEGWALLYEONG (TMQ-53P) KS 37.683 128.767 841.9 19770215 20010326 692144 99999 19770912 20030623 692154 99999 GWANGJUUP (TMQ-53P) KS 37.383 127.3 74.1 19790130 20010525 692164 99999 MUNSAN (TMQ-53P) KS 37.883 126.76700000000001 34.8 19780915 20080511 692174 99999 GIMHWA (TMQ-53P) KS 38.25 127.417 203.9 19780304 20030522 692184 99999 DAESAN (TMQ-53P) KS 36.983000000000004 126.46700000000001 39.9 19761207 19990421 692194 99999 YEONGJU (TMQ-53P) KS 36.867 128.55 215.8 19770910 19930825 692204 99999 19770314 20011020 692214 99999 GONGJU (TMQ-53P) KS 36.5 127.2 32.9 19800304 19980311 692224 99999 SANGJU (TMQ-53P) KS 36.417 128.15 91.7 19800305 20010604 692234 99999 GUMI (TMQ-53P) KS 36.117 128.36700000000002 43.0 19790915 20040218 692244 99999 GEUMSAN (TMQ-53P) KS 36.117 127.48299999999999 101.8 19800206 19971208 692254 99999 EVENES / EXERCISE NO 68.483 16.683 25.0 19770506 20081231 692264 99999 19750916 19990301 692274 99999 19790912 19991219 692284 99999 BAKWA AF KQBK 32.25 62.95 2720.0 19910125 19981112 692294 99999 AFWA ASSIGNED 0.0 0.0 0.0 19771025 20020213 692304 99999 AFWA ASSIGNED 0.0 0.0 0.0 19791021 20011220 692314 99999 AL UDEID AB / TEST QA 25.15 51.333 35.7 19781022 20081231 692324 99999 AFWA ASSIGNED 0.0 0.0 0.0 19781022 19990519 692334 99999 ESKAN VILLAGE SA 24.566999999999997 46.85 634.9 19781022 19990210 692344 99999 19780412 20000301 692354 99999 19901015 20010214 692364 99999 FALLON NAS US NV KQAV 39.417 -118.7 1199.0 19781027 20020501 692374 99999 AFWA ASSIGNED 0.0 0.0 0.0 19830809 20011223 692384 99999 19781025 20020525 692394 99999 CAMP ARIFJAN KU 28.9 48.18 45.7 19801122 19980428 692404 99999 AGADEZ (8350) NG 16.983 7.983 492.0 19781022 20011225 692414 99999 AFWA ASSIGNED 0.0 0.0 0.0 19831112 20010310 692434 99999 19831017 19831017 692444 99999 19891102 19940117 692454 99999 19890514 20020525 692464 99999 AFWA ASSIGNED 0.0 0.0 0.0 19840403 20030628 692474 99999 19901120 19940425 692484 99999 AFWA ASSIGNED 0.0 0.0 0.0 19901129 19901130 692494 99999 SUPERIOR VALLEY G R US CA KQCK 35.333 -117.1 961.0 19950401 19991210 692504 99999 AFWA ASSIGNED 0.0 0.0 0.0 19780105 19890120 692514 99999 AFWA ASSIGNED 0.0 0.0 0.0 19870426 19920514 692524 99999 FOB CHAPMAN AF 33.339 69.955 1150.6 19890916 20000313 692534 99999 FORT CAMPBELL / TEST US KY 36.667 87.5 114.0 19870427 19910405 692544 99999 AFWA ASSIGNED 0.0 0.0 0.0 19851206 19910323 692554 99999 Q WEST IRAQ IZ KQCO 35.766999999999996 43.117 229.0 19840326 20081231 692564 99999 19840327 19930207 692574 99999 FOB DELTA IZ KQCQ 32.482 45.766999999999996 30.0 19870224 19920513 692584 99999 CREECH AFB TMOS-P US NV KQCR 36.583 -115.667 955.0 19831201 19910314 692594 99999 19831202 20030626 692604 99999 19831203 19960310 692614 99999 19910209 19991207 692624 99999 SPRIGGS PAYNE AIRPORT / MONROVIA LI 6.2829999999999995 -10.767000000000001 7.6 19910217 19991123 692634 99999 MUSTANG RAMP AF 31.517 65.85 1018.0 19930619 20001116 692644 99999 MUSCATATUCK TRNG CTR US IN KQMT 39.05 -85.617 247.0 19970724 19970724 692654 99999 19910312 19991208 692664 99999 19990519 19991206 692674 99999 19910316 19991228 692684 99999 19910209 19991212 692694 99999 FOB MIAMI NTC/EXERCI US CA KQMY 35.283 -116.35 570.0 19910209 20020125 692704 99999 MPRC-FT STEWART US GA KQRC 32.033 -81.667 18.0 19850125 19980530 692714 99999 19840823 20001015 692724 99999 19850202 19970211 692734 99999 19861104 19941108 692744 99999 19850519 19850523 692754 99999 2 CWSS TMQ-53 US FL 30.416999999999998 -86.667 11.0 19840922 19950830 692764 99999 2 CWSS TMQ-53 US FL 30.416999999999998 -86.667 10.0 19840925 19850205 692774 99999 AFWA ASSIGNED 0.0 0.0 0.0 19841105 19990522 692784 99999 KING SALMON US AK KQRV 58.667 -156.65 14.0 19841127 20001205 692794 99999 19841211 19910205 692804 99999 AFWA ASSIGNED 0.0 0.0 0.0 19850131 19910207 692814 99999 SHANK APRT AF OASH 33.917 69.067 2016.0 19850121 20000404 692824 99999 19851205 19950218 692834 99999 CAMP SPANN AF TX KQSP 36.65 66.983 408.0 19851214 19851214 692844 99999 AFWA ASSIGNED 0.0 0.0 0.0 19870125 20001108 692854 99999 AFWA ASSIGNED 0.0 0.0 0.0 19890201 19890201 692864 99999 20001017 20020427 692874 99999 SIALKOT PK KQST 32.5 74.533 255.0 19890201 19981105 692884 99999 AFWA ASSIGNED 0.0 0.0 0.0 19910209 19991124 692894 99999 AVIANO AFB / TEST IT 46.03 12.36 127.4 19991203 20001024 692904 99999 AFWA ASSIGNED 0.0 0.0 0.0 19910209 20010404 692914 99999 AFWA ASSIGNED 0.0 0.0 0.0 19910209 19991216 692924 99999 AFWA ASSIGNED 0.0 0.0 0.0 19910312 20000414 692934 99999 19910312 20000415 692944 99999 19910209 20001207 692964 99999 19910217 19910217 692974 99999 19910215 19910316 692984 99999 POSTOJNA AIRFIELD SI 45.75 14.2 533.1 19910217 19910217 692994 99999 19910209 19910316 693004 99999 19950814 19981207 693014 99999 19921224 20020328 693044 99999 AL FALLUJAH IZ KQMA 33.317 43.883 47.0 19940629 20081204 693054 99999 19941102 20010919 693064 99999 AFWA ASSIGNED IT KQGB 19890203 20040106 693074 99999 19830819 19900301 693084 99999 19830815 19970805 693094 99999 19830901 19910522 693104 99999 19910227 19910927 693114 99999 19910115 19960114 693120 99999 19970916 19991224 693124 99999 19831029 19951229 693134 99999 19840905 19960517 693144 99999 KANDAHAR RUNWAY AF 31.5 65.85 1008.0 19890405 20030816 693154 99999 19840525 19930210 693164 99999 19850804 19910812 693174 99999 19870205 19990427 693184 99999 19870205 20000106 693194 99999 19870205 19990427 693204 99999 AFWA ASSIGNED 0.0 0.0 0.0 19870204 19940619 693214 99999 19890312 19980527 693224 99999 19870812 20020521 693234 99999 AFWA ASSIGNED 0.0 0.0 0.0 19840715 20030815 693244 99999 19901015 19980703 693254 99999 2 CWSS FMQ-22 US FL 30.416999999999998 -86.667 8.0 19830811 20030816 693264 99999 19850730 19930722 693274 99999 19841202 19990711 693284 99999 19840910 19940519 693294 99999 19841205 20030612 693304 99999 19841202 19990406 693314 99999 19840910 19941010 693324 99999 19840524 19910228 693334 99999 19840908 20000903 693344 99999 19910420 19920228 693354 99999 19840905 20000914 693364 99999 19890908 20020411 693374 99999 19901001 20020130 693384 99999 BALAD IZ KQTO 33.95 44.367 49.0 19901020 20081231 693394 99999 20000105 20001107 693404 99999 CAMP STANLEY TMQ-53P KS 37.717 127.1 64.9 19820331 20020406 693414 99999 MIRYANG (TMQ-53P) KS 35.65 128.75 47.9 19820604 19970219 693424 99999 19801110 20010517 693434 99999 19820604 19830919 693454 99999 19980526 20001028 693464 99999 19911013 20001021 693474 99999 19910314 20001028 693494 99999 20001207 20001207 693504 99999 19941221 19941221 693514 99999 19820201 20020513 693524 99999 AFWA ASSIGNED KS KQFM 19820506 20041109 693534 99999 USAG YONGSAN TMQ-53P KS 37.516999999999996 126.98299999999999 12.2 19820517 20020406 693544 99999 19810915 20020328 693554 99999 19810921 19920722 693564 99999 CAMP RED CLOUD KS 37.751999999999995 127.02600000000001 64.6 19830113 20020326 693574 99999 19810311 19980530 693584 99999 USAG WALKER TMQ-53P KS 35.833 128.583 75.0 19820916 20030522 693594 99999 YANGSU-RI KS 37.6 127.35 29.9 19810225 19840724 693604 99999 GWANGJEOK KS 37.817 126.98299999999999 77.1 19820909 19971106 693614 99999 SACHANG-RI KS 38.067 127.51700000000001 159.1 19890308 19910320 693624 99999 HONGCHON KS 37.683 127.883 246.9 19890314 19911113 693634 99999 BURON KS 37.2 127.75 95.1 19860318 19910316 693644 99999 19810311 19860724 693654 99999 NTC MOBILE US CA 0.0 0.0 0.0 19810221 20001019 693664 99999 COTTBUS DREWITZ GM EDCD 51.888999999999996 14.532 83.5 19810115 19901214 693674 99999 19920811 19920811 693714 99999 20020212 20020212 693724 99999 19991214 20010925 693734 99999 19960901 20020108 693754 99999 19930213 20010710 693764 99999 20010620 20010620 693774 99999 APIAY AIR BASE / CONTINGENCY CO 4.0760000000000005 -73.564 376.4 20080101 20190402 693784 99999 19940413 20000622 693794 99999 19960830 20020402 693804 99999 ROBERTS INTL AIRPORT / MONROVIA LI 6.233 -10.367 9.4 20020413 20020413 693814 99999 19980528 19980528 693824 99999 20020307 20020509 693840 99999 BOW DRILL CA 44.0 -59.333 0.0 19840619 19850723 693850 99999 GLOMAR HIGH ISLAND CA 47.167 -62.833 0.0 19850210 19850502 693860 99999 DRURY CREEK CA 62.2 -134.38299999999998 609.0 19790907 19801224 693870 99999 CARMACKS CA YK CEX4 62.117 -136.183 539.0 19791030 20020417 693880 99999 KLONDIKE CA 64.45 -138.217 991.0 19790914 19881130 693900 99999 SHELDON LAKE CA 62.617 -131.267 902.0 19790914 19790914 693910 99999 TUCHITUA CA 60.917 -129.25 759.0 19791109 19801203 693920 99999 WHITEFISH CA 77.2 -106.7 0.0 19791017 19891111 693940 99999 DUNDAS PENINSULA CA 74.5 -113.383 0.0 19790720 19850411 693960 99999 CAPE HERSHEL CA 78.667 -74.5 0.0 19790721 19790814 693980 99999 BATHURST ISLAND & CA 75.717 -98.417 0.0 19790721 19790829 694010 99999 ROSS RIVER CA 61.933 -132.5 733.0 19781019 19800905 694020 99999 20020311 20020311 694030 99999 DRAKE POINT CA 76.467 -108.76700000000001 12.0 19781013 19790518 694070 99999 ATLIN CA 59.583 -133.667 716.0 19781026 19801202 694080 99999 CASSIAR CA 59.266999999999996 -129.8 1097.0 19781017 19800422 694150 99999 RICHARDSON POINT CA 75.55 -105.43299999999999 0.0 19790630 19790630 694160 99999 20020428 20020428 694170 99999 STOKES RANGE CA 76.333 -113.21700000000001 411.0 19781013 19781115 694180 99999 CAPE ALLISON CA 77.833 -100.26700000000001 0.0 19790501 19790601 694190 99999 20020504 20020504 694220 99999 20020515 20020515 694230 99999 JOHNSONS CROSSING CA 19781013 19860406 694240 99999 20011025 20011025 694270 99999 20020408 20020408 694280 99999 ROWAN GORILLA 1 CA 44.3 -58.0 41.0 19870512 19910626 694300 99999 EAGLE RANGE & US UT 41.05 -113.06700000000001 1292.0 19800423 19910626 694504 99999 19791221 19961029 694514 99999 19791220 19980326 694524 99999 19791226 19930622 694534 99999 19791221 19961029 694544 99999 19791221 19930522 694554 99999 19791221 19961029 694564 99999 19791221 20030628 694574 99999 19791221 19980318 694584 99999 19821027 19860907 694594 99999 COP CURRY AF KQYJ 32.516999999999996 68.867 1863.0 19821019 19950911 694604 99999 YUKON TEST AREA US AK 64.721 -146.529 534.9 19831011 19871010 694614 99999 19821123 19871228 694615 99999 FOB ROBINSON AF KQYM 32.016999999999996 64.833 913.0 19841012 19961029 694616 99999 19841015 19910619 694634 99999 19910827 19930527 695013 99999 19970208 19970208 695023 99999 HORN ISLAND (HID) AS KQXC -10.583 142.3 19420804 20030816 695033 99999 20010217 20030609 695314 99999 ATSUGI (NPMOD) JA 35.45 139.45 63.0 20000315 20040606 695334 99999 N'DJAMENA CD 12.123 15.039000000000001 304.8 20000517 20081219 695354 99999 AFWA ASSIGNED US MS KQNF 20020212 20020331 695364 99999 AFWA ASSIGNED US VA KQNG 20010627 20081015 695374 99999 19991213 20020709 695384 99999 19981215 20020307 695414 99999 RED PASS LAKE / NTC US CA 35.266999999999996 -116.367 683.1 20010319 20080611 695419 99999 ERBIL IZ 36.133 43.583 408.0 20070102 20090327 695424 99999 AFWA ASSIGNED US CA KQNM 20011101 20020820 695444 99999 19961018 20000328 695454 99999 19961109 20000208 695464 99999 20000514 20001025 695474 99999 AFWA ASSIGNED 0.0 0.0 0.0 19980917 19991203 695484 99999 19980729 19991020 695494 99999 19980716 20011119 695504 99999 19980528 20020523 695524 99999 19970325 19991209 696014 99999 19870327 19980326 696024 99999 19860325 19920330 696034 99999 19850820 19980331 696044 99999 SENDAI JA KQJD 38.133 140.917 5.0 19850319 19900909 696054 99999 YAMAGATA JA KQJE 38.417 140.36700000000002 108.0 19880711 19930525 696064 99999 HANAMAKI JA KQJF 39.433 141.13299999999998 91.0 19840522 19980425 696074 99999 19850320 19910626 696084 99999 19910521 19970225 696094 99999 19880325 19880406 696104 99999 19850319 19980604 696114 99999 19870401 19980604 696124 99999 19971019 20030522 696134 99999 AFWA ASSIGNED 0.0 0.0 0.0 19901201 19971030 696144 99999 19970915 19971124 696154 99999 19870507 19901020 696164 99999 19900807 19900807 696174 99999 20011212 20030816 696204 99999 19850325 19950913 696224 99999 19970530 19970530 696264 99999 19960927 19980305 696274 99999 19870413 19990606 696284 99999 19870410 19941116 696294 99999 19901110 19981016 696304 99999 19870503 19931118 696314 99999 19910302 20010606 696324 99999 19860317 19990627 696334 99999 ORO GRANDE - EXERCISE US NM 32.417 -105.993 1237.8 19910304 19990625 696344 99999 19900515 19970829 696354 99999 19901018 19940802 696364 99999 19901014 19940215 696374 99999 FOB NORMANDY IZ KQOK 34.05 45.0 80.0 19870515 19921124 696384 99999 FOB WAR HORSE IZ KQOL 33.75 44.6 46.0 19910101 19951019 696394 99999 19880416 19980911 696404 99999 FOB MCHENRY IZ KQON 35.3 43.833 191.0 19900819 19940419 696414 99999 19900816 20030816 696424 99999 19870430 20001018 696434 99999 19901001 19940618 696444 99999 19900915 19970813 696454 99999 AUX 2 / EXERCISE US AZ 32.533 -114.51700000000001 82.0 19840426 19920829 696464 99999 TACTS AIRFIELD / EXERCISE US AZ 32.5 -114.15 248.1 19900809 19960709 696474 99999 19940803 20000217 696484 99999 19891205 20011013 696494 99999 FOB SHINWAR AF KQOW 34.183 70.817 653.0 19910217 20000216 696514 99999 19850607 20000217 696524 99999 19891101 20011004 696534 99999 19910101 19921008 696544 99999 19901206 19980928 696554 99999 19840904 20030608 696564 99999 19840904 19910314 696574 99999 19890720 19910314 696584 99999 19901215 19980907 696594 99999 19910114 19980909 696604 99999 19901215 20000111 696614 99999 19910124 19910313 696624 99999 19901217 19910310 696634 99999 19901225 20030816 696644 99999 19890929 20030816 696654 99999 19910126 20030816 696664 99999 AFWA ASSIGNED 0.0 0.0 0.0 19841120 20020313 696674 99999 19910102 20001013 696684 99999 19970909 19990717 696694 99999 MORON AB SP KQQQ 37.167 -5.617000000000001 19840828 20010222 696704 99999 AFWA ASSIGNED 0.0 0.0 0.0 19891128 20000217 696714 99999 AFWA ASSIGNED 0.0 0.0 0.0 19910304 20000217 696724 99999 19900808 20020315 696744 99999 AFWA ASSIGNED KQRG 20020115 20020219 696754 99999 CAMP LEMONNIER DJ 11.547 43.159 11.0 19960807 20041231 696764 99999 AFWA ASSIGNED KQRI 20020108 20020225 696774 99999 AFWA ASSIGNED KQRJ 20011219 20020225 696784 99999 19980329 19980329 696790 99999 19970313 20010502 696794 99999 19910102 19970322 696804 99999 19971010 20030816 696814 99999 19970330 20030626 696824 99999 KISENYI UG 0.067 32.45 1152.8 20000217 20010222 696834 99999 19970311 20011019 696854 99999 AFWA ASSIGNED 0.0 0.0 0.0 19980923 20000512 696864 99999 19990412 20020525 696874 99999 19900605 20020415 696884 99999 19980220 19980220 696890 99999 20020501 20030816 696894 99999 19971208 20020430 696904 99999 19850909 20011128 696914 99999 19850924 20020508 696924 99999 AFWA ASSIGNED 0.0 0.0 0.0 19891221 19981011 696934 99999 19850320 20011216 696944 99999 19900112 20010509 696954 99999 19940727 20000304 696964 99999 19891127 19940802 696974 99999 19990328 19990328 696984 99999 19860816 19951214 696994 99999 19850927 19970214 697004 99999 19930611 19960920 697014 99999 19940923 19990717 697024 99999 19931014 20010830 697034 99999 19940623 20010807 697040 99999 19970406 20030602 697044 99999 19861003 19970422 697054 99999 TACLOBAN RP 11.232999999999999 125.03299999999999 3.0 19840823 19991227 697064 99999 19840823 19991129 697074 99999 19850327 20010119 697084 99999 19850327 20000118 697094 99999 FOB BOSTIC AF KQVE 35.217 71.517 1042.0 19850423 19931109 697104 99999 MANDA BAY KE -2.15 40.9 15.2 19850423 19920822 697114 99999 19901220 19991117 697124 99999 19910530 19940210 697134 99999 ILOILO RP 10.717 122.53299999999999 8.0 19840322 20020525 697144 99999 19900622 19951101 697174 99999 MACTAN CEBU INTL RP 10.317 123.95 9.0 19920727 19920727 697184 99999 19920727 19931108 697194 99999 ORMOC RP 11.067 124.56700000000001 25.0 19870517 20080609 697204 99999 VARPALOTA TRAINING AREA / EXERCISE HU 47.133 17.9 228.6 19910624 19920726 697214 99999 19920726 19920726 697224 99999 AFWA ASSIGNED 0.0 0.0 0.0 19910122 19920726 697234 99999 AFWA ASSIGNED 0.0 0.0 0.0 19870320 19920726 697244 99999 19930610 19930610 697254 99999 20010926 20010926 697264 99999 20010926 20030619 697284 99999 BAGRAM AF 34.944 69.259 1492.0 20010615 20030816 697294 99999 AFWA ASSIGNED 0.0 0.0 0.0 19991009 19991102 697304 99999 FOB LASHKAR GAH AF KQSC 31.6 64.367 786.0 20011205 20030816 697314 99999 19890911 20030521 697324 99999 19840210 20010322 697330 99999 19960801 19990212 697334 99999 19860427 19920122 697344 99999 19891017 20001022 697354 99999 19950705 19951102 697364 99999 19860304 19981108 697374 99999 19970207 20010403 697384 99999 19890915 20030816 697394 99999 20010202 20030816 697404 99999 19961213 19961220 697444 99999 19850131 19980901 697454 99999 19860501 19910314 697464 99999 AFWA ASSIGNED 0.0 0.0 0.0 19850319 20030816 697474 99999 19900223 19910313 697484 99999 AL UDEID QA 25.116999999999997 51.317 39.6 19850205 20030816 697494 99999 19850918 19900611 697504 99999 19850330 19950119 697514 99999 AFWA ASSIGNED 0.0 0.0 0.0 19850320 19970922 697524 99999 19901224 20020426 697534 99999 FORT IRWIN US CA KQIW 35.283 -116.617 322.0 19850218 20080201 697544 99999 19840812 20020524 697554 99999 19850409 19920627 697560 99999 19970402 20030816 697564 99999 STOVAL AIRFIELD / EXERCISE US AZ 32.733000000000004 -113.633 117.0 19830901 19970418 697574 99999 AFWA ASSIGNED 0.0 0.0 0.0 20010125 20010517 697594 99999 KABUL SOCCER FIELD AF 34.53 69.19 1805.3 19950515 20020123 697614 99999 20020707 20020713 697644 99999 20030518 20030628 697654 99999 COB SPEICHER IZ KQSL 34.667 43.516999999999996 139.0 20020509 20081231 697674 99999 FOB SHUKVANI AF 32.1 64.8 993.7 19991013 19991013 697704 99999 19950130 19990407 697714 99999 ABECHE CD 13.85 20.85 555.4 19910501 19971215 697724 99999 FOB TODD AF KQTD 35.6 63.3 472.0 19941214 19991007 697734 99999 19960606 20010709 697744 99999 TIFNIT MO 30.316999999999997 -9.417 76.2 19970304 20011105 697754 99999 19931031 19931031 697774 99999 TAJI IZ 33.516999999999996 44.266999999999996 36.9 19960530 20081231 697834 99999 19941215 19950505 697874 99999 19960426 19960426 697884 99999 FOB DIAMONDBACK IZ KQTU 36.3 43.15 216.0 19910614 20081231 697894 99999 19930711 20010223 697904 99999 20030608 20030613 697924 99999 KIRKUK IZ KQTX 35.467 44.35 323.0 20030518 20081231 697944 99999 19920717 19920717 697954 99999 19961203 20010619 697984 99999 19990909 19991109 698004 99999 19840623 20001119 698014 99999 19870330 19910317 698024 99999 19840830 19911111 698034 99999 19831103 19981107 698044 99999 19881214 19951021 698054 99999 19831103 19910314 698064 99999 19880420 20020502 698074 99999 GUIUAN RP 11.033 125.75 6.4 19840907 19990228 698084 99999 ALI AL SALEM KU 29.33 47.516999999999996 144.0 19850804 20030816 698094 99999 AFWA ASSIGNED KQGW 19860302 19991117 698104 99999 AL DHAFRA AE 24.25 54.55 23.0 19840417 20030816 698114 99999 METMFR 29 PALMS US CA KQGY 34.3 -116.15 626.0 19840216 19980618 698124 99999 19840216 19990422 698134 99999 19990911 19991221 698144 99999 20030526 20030526 698264 99999 CAMP UDAIRI KU 29.7 47.433 131.1 20030518 20030816 698324 99999 BOGUE FIELD MCALF US NC KQWT 34.683 -77.033 19960409 19960901 698354 99999 19961006 19961006 698374 99999 20001206 20010719 698384 99999 19941220 20010914 698394 99999 20010320 20010410 698414 99999 319 MISSILE SQ US CO KQXG 40.5 -103.833 1880.0 20010320 20010411 698444 99999 AFWA ASSIGNED 0.0 0.0 0.0 20030518 20081231 698464 99999 19911205 19911205 698584 99999 19911005 20030602 698594 99999 20030518 20030816 698674 99999 FOB VICTORY/STONE AF 34.117 62.217 1112.5 20080108 20080225 698684 99999 FOB JUSTICE IZ KQYV 33.633 44.583 64.0 20080128 20080217 698689 99999 MARANDUA AB CO SKUA 5.524 -68.686 86.9 20070202 20071007 698704 99999 AFWA ASSIGNED CO KQYX 4.217 -74.633 895.0 20080628 20080716 698714 99999 19941031 19941031 698724 99999 19910725 19961229 699404 99999 FT SHERMAN (ROCOB) PM 9.333 -79.983 19800423 19810612 699604 03145 YUMA MCAS US AZ KNYL 32.65 -114.617 64.9 19870701 20091231 700001 26492 PORTAGE GLACIER US AK PATO 60.785 -148.839 31.4 20060101 20200625 700001 99999 PORTAGE GLACIER US AK PATO 60.783 -148.833 29.0 20040510 20051231 700197 26558 SELAWIK US AK PASK 66.6 -159.986 7.6 20060101 20200625 700197 99999 SELAWIK US AK PASK 66.617 -160.0 8.0 19940818 20051231 700260 27502 W POST-WILL ROGERS MEMORIAL AIRPORT US AK PABR 71.283 -156.782 9.5 19450101 20200625 700264 99999 SSDC US AK 71.317 -155.217 0.0 19920807 19920807 700265 99999 BARROW W POST-W ROGERS ARPT US AK 71.333 -156.63299999999998 4.0 19750228 19780130 700271 27506 BARROW POINT BARROW US AK KPBA 71.333 -156.65 6.1 19740318 19750302 700300 27503 WAINWRIGHT AIRPORT US AK PAWI 70.639 -159.995 9.1 19991102 20200625 700300 27508 WAINWRIGHT (DEW) US AK PAWI 70.617 -159.85 27.0 19730101 19991231 700300 99999 WAINWRIGHT (DEW) US AK PAWI 70.617 -159.85 27.0 20000101 20041231 700365 99999 SAGWON US AK SAG 69.367 -148.7 198.0 20130106 20130106 700450 27512 LONELY US AK LNI 70.917 -153.25 9.1 19730101 19890925 700450 99999 LONELY (DEW) US AK 70.917 -153.233 12.0 20020505 20060125 700630 27403 OLIKTOK POW 2 US AK POLI 70.5 -149.88299999999998 4.9 19730101 19990929 700630 99999 OLIKTOK LRRS US AK POLI 70.5 -149.88 5.0 20030811 20030811 700631 25715 ATKA AIRPORT US AK PAAK 52.22 -174.206 17.1 20060101 20130430 700631 99999 ATKA US AK PAKA 57.067 -135.36700000000002 15.0 20040713 20051231 700632 26645 BUCKLAND AIRPORT US AK PABL 65.983 -161.13299999999998 9.1 20060101 20200625 700632 99999 BUCKLAND US AK PABL 65.983 -161.15 9.0 20040713 20051231 700633 99999 BEAUFORT SEA US AK 0.0 0.0 -999.0 20130103 20130425 700634 27408 UGNU-KUPRAUK AIRPORT US AK PAKU 70.331 -149.59799999999998 20.4 20060101 20200625 700634 99999 UGNU-KUPARUK AIRPORT US AK PAKU 70.317 -149.583 20.0 19810220 20051231 700635 26465 GALBRAITH LAKE AIRPORT US AK PAGB 68.479 -149.49 812.6 20060105 20200504 700635 99999 GALBRAITH LAKE US AK PAGB 68.483 -149.483 814.0 19750108 20051229 700636 27405 PRUDHOE BAY US AK PAUD 70.25 -148.333 14.0 19730101 19990614 700637 27406 DEADHORSE AIRPORT US AK PASC 70.192 -148.477 18.6 19730101 20200625 700638 99999 FALSE PASS US AK PAKF 54.85 -163.417 6.0 19730101 20190801 700639 99999 HAPPY VALLEY US AK 69.167 -148.817 297.0 19740616 19780111 700860 27401 BARTER ISLAND AIRPORT US AK PABA 70.134 -143.577 0.6 19471001 20200625 700860 99999 BARTER ISLAND US AK PABA 70.133 -143.63299999999998 15.0 20000102 20041231 700863 99999 BARTER ISLAND LRRS US AK PBTI 70.134 -143.577 1.5 19901104 19910621 700865 99999 BARTER ISLAND(AWOS) US AK 70.133 -143.583 2.0 19731207 19961009 700866 99999 CHALLENGE ISLAND US AK 70.233 -146.5 -999.0 19750109 19810328 700867 99999 FRANKLIN BLUFFS US AK 69.717 -148.683 108.0 19750108 19770816 700868 99999 ATIGUN US AK 68.183 -149.417 1032.0 19750112 19750401 700869 99999 CHANDALAR SHELF US AK 5CD 68.067 -149.583 982.0 19750109 19780923 701040 26631 CAPE LISBURNE LRRS AIRPORT US AK PALU 68.867 -166.13299999999998 4.9 20060101 20200625 701040 99999 CAPE LISBURNE AFS US AK PALU 68.883 -166.13299999999998 3.0 19520829 20051231 701043 26623 POINT HOPE AIRPORT US AK PAPO 68.35 -166.8 4.0 20060101 20200625 701043 99999 POINT HOPE AIRPORT US AK PAPO 68.35 -166.8 4.0 19431001 20051231 701045 26649 RED DOG AIRPORT US AK PADG 68.031 -162.903 296.9 20060103 20200625 701045 99999 RED DOG US AK PADG 68.067 -162.833 297.0 19980226 20051230 701046 26418 CENTRAL AIRPORT US AK PACE 65.567 -144.765 280.4 20020902 20130210 701160 26618 WALES US AK 65.617 -168.05 5.0 19430701 19771221 701160 99999 WALES US 65.617 -168.05 5.0 20040701 20040701 701170 26634 TIN CITY LRRS AIRPORT US AK PATC 65.563 -167.921 82.6 20060101 20200625 701170 99999 TIN CITY AFS US AK PATC 65.567 -167.917 83.0 19530504 20051231 701175 99999 US AK 19740604 19740628 701190 99999 PORT CLARENCE CGS US AK PAPC 65.25399999999999 -166.859 3.0 19730101 20200530 701195 26625 SHISHMAREF/NEW AIRPORT US AK PASH 66.25 -166.08900000000003 2.1 20060101 20200227 701195 99999 SHISHMAREF US AK PASH 66.25 -166.083 4.0 19831104 20051231 701196 00102 BOB BARKER MEMORIAL AIRPORT US AK PAIK 66.983 -160.433 51.2 20080822 20200625 701196 99999 BOB BAKER MEM US AK PAIK 66.976 -160.437 50.6 19831222 19850630 701210 26624 POINT LAY LRRS AIRPORT US AK PPIZ 69.733 -163.005 7.6 20060101 20200625 701210 26638 POINT LAY US AK PPIZ 69.817 -162.917 6.0 19730101 19991231 701210 99999 POINT LAY US AK PPIZ 69.817 -162.917 6.0 20000101 20051231 701213 26638 POINT LAY LIZ 2 US AK PIZ 69.733 -163.017 6.1 19920318 19960630 701213 99999 POINT LAY(DEW/AWOS) US AK 69.733 -163.017 6.0 19901121 19910803 701330 26616 RALPH WIEN MEMORIAL AIRPORT US AK PAOT 66.867 -162.63299999999998 9.1 19730101 20200625 701331 99999 DEERING US AK 66.067 -162.75 5.0 19840402 19850612 701333 26643 DEERING AIRPORT US AK PADE 66.069 -162.764 6.4 19990102 20200625 701333 99999 DEERING US AK PADE 66.083 -162.75 6.0 19980111 19981229 701334 99999 KOTZEBUE US AK 66.883 -162.6 3.0 19960801 19961009 701335 26648 NOATAK AIRPORT US AK PAWN 67.566 -162.975 26.8 20060101 20200625 701335 99999 NOATAK US AK PAWN 67.55 -162.967 27.0 19950708 20051231 701337 00103 WALES AIRPORT US AK PAIW 65.617 -168.1 7.0 20090122 20200625 701338 99999 CHEVAK AIRPORT US AK PAVA 61.533 -165.583 22.9 20090210 20200624 701486 26642 KIVALINA AIRPORT US AK PAVL 67.732 -164.548 3.1 20060101 20200625 701486 99999 KIVALINA US AK PAVL 67.733 -164.55 4.0 19990114 20051231 701620 26508 UMIAT US AK PAUM 69.367 -152.13299999999998 85.0 19460101 20130411 701620 99999 UMIAT US PAUM 69.367 -152.13299999999998 85.0 20000101 20041126 701625 26542 ANAKTUVUK PASS AIRPORT US AK PAKP 68.167 -151.767 640.1 20060101 20200624 701625 99999 ANAKTUVUK PASS US AK PAKP 68.133 -151.733 641.0 19800911 20051231 701718 26551 AMBLER AIRPORT US AK PAFM 67.1 -157.85 88.1 20060101 20200625 701718 99999 AMBLER US AK PAFM 67.1 -157.85 102.0 19880105 20051231 701719 00490 SHUNGNAK AIRPORT US AK PAGH 66.888 -157.162 62.8 20091210 20200625 701719 99999 SHUNGNAK US AK PAGH 66.888 -157.162 60.0 19850208 19891011 701730 26535 INDIAN MOUNTAIN LRRS ARPT US AK PAIM 66.0 -153.7 388.9 20050101 20200625 701730 99999 INDIAN MOUNTAIN AFS US AK PAIM 66.0 -153.7 389.0 19510801 20041231 701740 26533 BETTLES AIRPORT US AK PABT 66.917 -151.515 193.2 19450101 20200625 701745 26480 CHANDALAR LAKE AIRPORT US AK PALR 67.51100000000001 -148.493 577.6 20060101 20141009 701745 99999 CHANDALAR LAKE US AK PALR 67.5 -148.483 585.0 19730624 20051231 701746 99999 DIETRICK (PRIVATE) US AK 67.683 -149.733 447.0 19730825 19750729 701747 26467 MERRILL PASS WEST US AK PAER 61.25 -153.82 358.0 19730825 19750729 701747 26554 MERRILL PASS WEST US AK PAER 61.266999999999996 -153.8 356.6 20050101 20140615 701748 99999 PROSPECT CREEK AIRPORT US AK PAPR 66.817 -150.65 335.0 19730825 20200530 701749 99999 WISEMAN ARPT US AK 67.4 -150.11700000000002 360.0 19940819 20020803 701780 26529 RALPH M CALHOUN MEML ARPT US AK PATA 65.175 -152.107 67.7 19430601 20200625 701790 99999 FIVE MILE CAMP US AK 65.933 -149.833 155.0 19771103 19850531 701791 99999 MANLEY HOT SPRINGS US AK 65.0 -150.65 85.0 19431204 19891013 701793 26524 MANLEY HOT SPRINGS US AK PAML 64.999 -150.638 82.9 20060101 20140501 701793 99999 MANLEY HOT SPRINGS US AK PAML 65.0 -150.65 81.0 19900724 20051231 701795 99999 FIVE MILE CAMP US AK 65.933 -149.833 155.0 19730825 19960625 701940 26413 FORT YUKON AIRPORT US AK PFYU 66.567 -145.267 135.6 19730101 20200625 701940 99999 FORT YUKON US AK PFYU 66.567 -145.267 135.0 20000102 20031231 701945 46405 ARCTIC VILLAGE AIRPORT US AK PARC 68.115 -145.579 637.6 20060101 20200625 701945 99999 ARCTIC VILLAGE US AK PARC 68.117 -145.567 638.0 19950708 20051231 701970 99999 CENTRAL US AK 65.483 -144.667 252.0 20021018 20071231 701975 26422 EAGLE AIRPORT US AK PAEG 64.777 -141.148 276.8 20060101 20200625 701975 99999 EAGLE AIRPORT US AK PAEG 64.783 -141.15 268.0 19980408 20051231 701995 26628 CAPE DARBY REMOT COM OUTLT US AK PAGL 64.55 -163.007 7.6 20050101 20200625 701995 99999 GOLOVIN AIRPORT US AK PAGL 64.54 -163.04 8.0 19990114 20041231 702000 26617 NOME AIRPORT US AK PAOM 64.51100000000001 -165.44 4.0 19400101 20200625 702004 99999 WHITE MOUNTAIN US AK PAWM 64.689 -163.41299999999998 81.4 20111201 20200624 702005 26647 ST MARY'S AIRPORT US AK PASM 62.062 -163.3 95.1 20060101 20200625 702005 99999 ST MARYS US AK PASM 62.05 -163.3 95.0 19790408 20051231 702006 26502 KALTAG AIRPORT US AK PAKV 64.327 -158.74200000000002 55.2 20060101 20200625 702006 99999 KALTAG AIRPORT US AK PAKV 64.316 -158.73 54.0 19990114 20051231 702031 26620 MOSES POINT US AK 64.7 -162.05 6.1 19430608 19790128 702035 26704 SAVOONGA AIRPORT US AK PASA 63.687 -170.493 16.8 20060108 20200625 702035 99999 SAVOONGA US AK PASA 63.683 -170.483 16.0 19870629 20051201 702040 26703 GAMBELL AIRPORT US AK PAGM 63.766999999999996 -171.733 8.5 19870603 20200625 702040 99999 GAMBELL (AWOS) US AK PAGM 63.766999999999996 -171.733 8.0 20000101 20031231 702060 26632 NORTHEAST CAPE US AK KOHC 63.317 -168.967 9.1 19520729 19690819 702070 26627 UNALAKLEET AIRPORT US AK PAUN 63.883 -160.8 5.5 19430601 20200625 702070 99999 UNALAKLEET US AK PAUN 63.883 -160.8 6.0 20000101 20031231 702075 26644 ANVIK AIRPORT US AK PANV 62.65 -160.183 26.8 20060101 20200621 702075 99999 ANVIK US AK PANV 62.65 -160.183 94.0 19950210 20051231 702084 26650 EMMONAK US AK PAEM 62.785 -164.49099999999999 4.3 20060101 20200322 702084 99999 EMMONAK US AK PAEM 62.783 -164.483 4.0 19440412 20051231 702091 99999 MOUNTAIN VILLAGE US AK 62.083 -163.717 50.0 19441018 19450927 702093 99999 ANDREAFSKY/ST MARYS CA SMA 62.067 -163.3 95.0 19850208 19891011 702120 26633 CAPE ROMANZOFF AFS US AK PACZ 61.783 -166.033 146.0 19530401 19991231 702120 26646 CAPE ROMANZOF LRRS ARPT US AK PACZ 61.783 -166.033 146.0 20060101 20200625 702120 99999 CAPE ROMANZOFF AFS US AK PACZ 61.783 -166.033 146.0 20000101 20051231 702180 99999 NUNIVAK US 60.0 -166.0 -999.9 19440101 19730227 702185 26622 MEKORYUK AIRPORT US AK PAMY 60.383 -166.2 13.7 20060105 20200625 702185 99999 MEKORYUK US AK PAMY 60.367 -166.267 15.0 19831104 20051129 702186 26651 HOOPER BAY AIRPORT US AK PAHP 61.523999999999994 -166.14700000000002 5.5 20060101 20200625 702186 99999 HOOPER BAY US AK PAHP 61.516999999999996 -166.13299999999998 5.0 19841105 20051231 702190 26615 BETHEL AIRPORT US AK PABE 60.785 -161.829 31.1 19450101 20200625 702195 99999 NAPAKIAK US AK PANA 60.683 -161.983 5.2 19940830 20200624 702220 26501 GALENA AIRPORT US AK PAGA 64.737 -156.934 46.6 20060101 20200625 702220 99999 GALENA A. US AK PAGA 64.733 -156.933 49.0 19420917 20051231 702223 26602 KOYUK AIRPORT US AK PAKK 64.935 -161.155 33.5 20060101 20200625 702223 99999 KOYUK AIRPORT US AK PAKK 64.933 -161.167 37.0 19760503 20051231 702224 99999 EAGLE AIRPORT US AK 64.783 -141.15 268.0 19810619 19950512 702225 99999 HUSLIA US AK PAHS 65.7 -156.38299999999998 55.0 19940103 20050817 702310 26510 MCGRATH AIRPORT US AK PAMC 62.957 -155.61 101.5 19730101 20200625 702312 26519 FAREWELL LAKE US AK PAFK 62.54 -153.61700000000002 321.0 19970402 19991231 702312 26555 FAREWELL LAKE SEAPLANE BASE US AK PAFK 62.543 -153.623 3207.7 20060101 20140419 702312 99999 FAREWELL LAKE US AK PAFK 62.54 -153.61700000000002 321.0 20000101 20051231 702315 26536 TATALINA LRRS AIRPORT US AK PATL 62.894 -155.976 293.8 20060101 20200624 702315 99999 TATALINA LRRS US AK PATL 62.883 -155.967 294.0 19520401 20051231 702320 26516 ANIAK AIRPORT US AK PANI 61.582 -159.543 25.9 19730101 20200625 702320 99999 ANIAK US AK PANI 61.583 -159.533 26.0 20000101 20031231 702325 26443 WASILLA AIRPORT US AK PAWS 61.571999999999996 -149.541 107.9 20040702 20200625 702325 99999 WASILLA US AK PAWS 61.571999999999996 -149.54 108.0 19980226 20041231 702350 26534 SPARREVOHN LRRS AIRPORT US AK PASV 61.1 -155.583 484.0 20060101 20200625 702350 99999 SPARREVOHN AFS US AK PASV 61.1 -155.567 484.0 19510711 20051231 702460 26512 MINCHUMINA US AK PAMH 63.886 -152.30200000000002 206.7 19730101 20200625 702460 99999 MINCHUMINA US AK PAMH 63.9 -152.267 214.0 20000101 20041230 702480 99999 FAREWELL/INTERMEDIATE FIELD US 62.516999999999996 -153.88299999999998 458.0 19730101 19840605 702483 99999 FAREWELL LAKE US AK PAFW 62.533 -153.61700000000002 323.0 19850130 19960425 702490 26526 PUNTILLA LAKE US AK PAPT 62.091 -152.735 566.3 20060101 20200625 702490 99999 PUNTILLA US AK PAPT 62.1 -152.75 560.0 19730101 20051231 702495 26547 HAYES RIVER AIRPORT US AK PAHZ 61.983000000000004 -152.083 305.1 20060101 20110127 702495 99999 HAYES RIVER AIRPORT US AK PAHZ 61.98 -152.08 305.0 19730101 20051231 702510 26528 TALKEETNA AIRPORT US AK PATK 62.32 -150.095 106.7 19730101 20200625 702520 99999 TALKEETNA AK US AK 62.3 -150.417 151.0 20050213 20050213 702550 26514 SKWENTNA AIRPORT US AK PASW 61.977 -151.217 45.7 19730101 20161001 702550 99999 SKWENTNA US AK PASW 61.967 -151.183 45.0 20000101 20041231 702590 26523 KENAI MUNICIPAL AIRPORT US AK PAEN 60.58 -151.239 27.7 19730101 20200625 702595 26559 SOLDOTNA AIRPORT US AK PASX 60.476000000000006 -151.034 34.4 20060101 20200625 702595 99999 SOLDOTNA US AK PASX 60.467 -151.033 34.0 19830502 20051231 702600 26435 NENANA MUNICIPAL AIRPORT US AK PANN 64.55 -149.072 109.7 19430706 20200625 702600 99999 NENANA/MUN. US AK PANN 64.55 -149.083 110.0 20000101 20031231 702605 99999 CLEAR US AK PACL 64.301 -149.12 168.2 19471010 19471130 702606 96401 CHULITNA US AK PAEC 62.826 -149.907 426.7 20060101 20200624 702606 99999 CHULITNA AIRPORT US AK PAEC 62.883 -149.833 381.0 19781130 20051231 702607 25378 HOONAH SEAPLANE BASE US AK PAOH 58.096000000000004 -135.409 0.0 20060101 20200625 702607 99999 HOONAH SEAPLANE BASE US AK PAOH 58.12 -135.417 6.0 19781124 20051231 702610 26411 FAIRBANKS INTERNATIONAL US AK PAFA 64.804 -147.876 131.7 19460101 20200625 702615 26498 WAINWRIGHT AAF AIRPORT US AK PAFB 64.83800000000001 -147.614 138.4 20060103 20200625 702615 99999 WAINWRIGHT AAF US AK PAFB 64.833 -147.61700000000002 140.0 19410206 20051230 702616 99999 OLD MAN US AK 66.45 -150.583 389.0 19750108 19761123 702625 00104 NIKOLAI AIRPORT US AK PAFS 63.016999999999996 -154.36700000000002 126.2 20061024 20200625 702625 99999 NIKOLAI US AK PAFS 63.02 -154.36 126.0 20080101 20081231 702626 99999 PILOT POINT US AK PAPN 57.58 -157.58 17.0 20061024 20200409 702627 26561 RUBY AIRPORT US AK PARY 64.727 -155.47 199.0 20061001 20200603 702628 00105 MARSHALL DON HUNTER SR AIRPORT US AK PADM 61.867 -162.033 31.1 20061024 20200625 702628 99999 MARSHALL DON HUNTER SR US AK PADM 61.864 -162.026 31.4 20080101 20180103 702629 99999 CAPE DECISION CG HELIPORT US AK 56.0 -134.13299999999998 10.0 20080915 20110608 702640 26414 SUMMIT US AK PAST 63.331 -149.127 734.3 19730101 19840107 702645 46403 MCKINLEY NATIONAL PARK AIRPORT US AK PAIN 63.733000000000004 -148.917 524.3 20060101 20200625 702645 99999 MCKINLEY NATIONAL PK US AK PAIN 63.733000000000004 -148.917 524.0 19751202 20051231 702646 99999 MT MCKINLEY NATL PK US AK 63.65 -148.8 625.0 19760116 19760427 702647 26499 HEALY RIVER AIRPORT US AK PAHV 63.86600000000001 -148.969 3945.3 20060101 20120608 702647 99999 HEALY RIVER AIRPORT US AK PAHV 63.87 -148.97 394.0 19761221 20051231 702648 46406 CANTWELL AIRPORT US AK PATW 63.391000000000005 -148.95600000000002 667.5 20060102 20110827 702648 99999 CANTWELL CANTWELL US AK PATW 63.4 -148.95 668.0 19831103 20051205 702650 26407 EIELSON AFB AIRPORT US AK PAEI 64.683 -147.083 166.7 20060102 20200625 702650 99999 FAIRBANKS/EIELSON A US AK PAEI 64.65 -147.067 167.0 19441111 20051231 702653 99999 EIELSON AFB & US AK 64.65 -147.067 167.0 19750814 19750814 702660 99999 FORT GREELY AK US AK 63.967 -145.7 398.0 19440626 19900628 702670 26415 ALLEN ARMY AIRFIELD US AK PABI 63.994 -145.721 389.2 19451015 20200625 702673 99999 BIG DELTA ARCTIC WX US AK 64.0 -145.717 389.0 19800303 19841204 702674 99999 CIRCLE CITY AIRPORT US AK 65.833 -144.067 182.0 19790507 20091019 702675 26484 PAXSON AIRPORT US AK PAXK 63.032 -145.498 823.0 20060101 20101003 702675 99999 PAXSON US AK PAXK 63.033 -145.5 809.0 19740419 20051231 702677 99999 ISABELL PASS CAMP US AK Z32 63.083 -145.5 978.0 19750929 19761202 702680 99999 GLENNALLEN AK US AK 62.1 -145.967 573.0 19750401 19900504 702685 27518 ATQASUK EDWARD BURNELL SR. MEMORIAL AIRPORT US AK PATQ 70.467 -157.436 29.3 20060501 20200625 702686 00106 KIPNUK AIRPORT US AK PAKI 60.9 -161.233 9.1 20060501 20200625 702686 99999 AKIAK US AK PAKI 60.903 -161.231 9.1 20080101 20081231 702695 96402 JONESVILLE MINE AIRPORT US AK PAJV 61.714 -148.909 167.6 20060101 20111102 702695 99999 SUTTON US AK PAJV 61.717 -148.88299999999998 265.0 19920416 20051231 702696 99999 LAZY MTN/WOLVERINE US AK 61.633 -149.033 236.0 19780315 20040214 702697 00107 NEW STUYAHOK AIRPORT US AK PANW 59.45 -157.333 92.1 20061010 20200622 702697 99999 NEW STUYAHOK US AK PANW 59.45 -157.33 92.0 20080101 20180322 702700 00489 BRYANT ARMY AIRFIELD HELIPORT US AK PAFR 61.266000000000005 -149.653 118.3 20130415 20200625 702700 99999 FT. RICHARDSON/BRYANT AHP AK US PAFR 61.266999999999996 -149.65 115.0 19731201 20180520 702710 26425 GULKANA AIRPORT US AK PAGK 62.159 -145.459 476.1 19450101 20200625 702711 26439 SHEEP MOUNTAIN AIRPORT US AK PASP 61.812 -147.507 853.4 20050101 20111101 702711 99999 SHEEP MOUNTAIN US AK PASP 61.817 -147.55 799.0 19970203 20041231 702715 46407 SKELTON AIRPORT US AK PAZK 61.949 -147.16899999999998 1002.5 20060101 20200625 702715 99999 EUREKA SKELTON AIR US AK PAZK 61.933 -147.167 1002.0 19950708 20051231 702716 99999 TAHNETA PASS US AK 5GN 61.817 -147.55 900.0 19730102 19960104 702717 99999 SELAWIK US AK PALK 66.6 -159.986 7.6 19730101 20160930 702719 99999 SNOWSHOE LAKE US AK 62.033 -142.667 735.0 19750917 19761207 702720 26401 ELMENDORF AFB AIRPORT US AK PAED 61.253 -149.79399999999998 64.6 20060101 20200625 702720 99999 ANCHORAGE/ELMENDORF US AK PAED 61.25 -149.8 59.0 19410310 20051231 702725 26491 LAKE HOOD SEAPLANE BASE US AK PALH 61.178000000000004 -149.966 27.4 20020101 20200625 702725 99999 ANCHORAGE LAKE HOOD US AK PALH 61.183 -149.967 22.0 19730104 20011231 702730 26451 TED STEVENS ANCHORAGE INTL US AK PANC 61.169 -150.028 36.6 19730101 20200625 702735 26409 MERRILL FIELD AIRPORT US AK PAMR 61.217 -149.855 42.1 19450101 20200625 702735 99999 MERRILL FLD US AK PAMR 61.2 -149.833 42.0 20000101 20031231 702736 99999 FT RICHARDSON/BRYN& US AK 61.266999999999996 -149.65 115.0 19760625 19830721 702740 25331 PALMER MUNICIPAL AIRPORT US AK PAAQ 61.596000000000004 -149.092 70.1 19990101 20200625 702740 99999 PALMER US AK PAAQ 61.595 -149.089 74.0 19730101 19981231 702745 26560 WILLOW AIRPORT US AK PAUO 61.748000000000005 -150.054 62.5 20060101 20111101 702745 99999 WILLOW AIRPORT US AK PAUO 61.754 -150.05200000000002 67.0 19910207 20051231 702746 26497 BIRCHWOOD AIRPORT US AK PABV 61.416000000000004 -149.507 29.3 20060101 20200625 702746 99999 BIRCHWOOD US AK PABV 61.417 -149.5 29.0 19940103 20051231 702750 26442 NATIONAL WEATHER SERVICE OFFICE US AK PAVW 61.13 -146.352 29.0 19730101 20140401 702754 99999 VALDEZ US AK 61.133 -146.25 37.0 19960815 19961009 702755 46404 MCCARTHY AIRPORT US AK PAMX 61.437 -142.904 466.7 20060101 20140901 702755 99999 MCCARTHY US AK PAMX 61.433 -142.933 455.0 19740421 20051231 702756 26479 VALDEZ PIONEER FIELD AIRPORT US AK PAVD 61.132 -146.244 18.3 20060101 20200625 702756 99999 VALDEZ PIONEER FIEL US AK PAVD 61.133 -146.25 36.0 19750501 20051231 702757 26444 WHITTIER AIRPORT US AK PAWR 60.783 -148.733 11.9 20060101 20120520 702757 99999 WHITTIER US AK PAWR 60.766999999999996 -148.683 9.0 19750501 20051231 702758 27517 ALPINE AIRSTRIP US AK PALP 70.344 -150.945 5.5 20060101 20200625 702758 99999 DEADHORSE ALPINE AIR US AK PALP 70.333 -150.933 5.0 20040608 20051231 702759 99999 KOROR PS PTKR 7.332999999999999 134.483 30.0 20040608 20081231 702770 26438 SEWARD AIRPORT US AK PAWD 60.128 -149.417 6.7 20060101 20200625 702770 99999 SEWARD US AK PAWD 60.117 -149.45 18.0 19450101 20051231 702790 26417 CAPE HINCHINBROOK US AK 60.233000000000004 -146.65 56.0 19740101 19800622 702795 99999 HINCHINBROOK US AK 60.4 -146.083 110.0 19730101 19740529 702910 26412 NORTHWAY AIRPORT US AK PAOR 62.961999999999996 -141.988 522.1 19450101 20200625 702913 46402 DEVILS MOUNTAIN LODGE AIRPORT US AK PABN 62.402 -142.995 877.8 20060101 20141001 702913 99999 NABESNA/DEVIL MTN US AK PABN 62.4 -143.0 878.0 19920416 20051231 702915 26486 DUFFY'S TAVERN AIRPORT US AK PADT 62.708999999999996 -143.981 668.1 20060101 20110701 702915 99999 SLANA AIRPORT US AK PADT 62.7 -143.983 730.0 19740904 20051231 702923 26440 TANACROSS US AK TSG 63.383 -143.333 472.0 19440522 19500901 702924 99999 TOK US AK PATJ 63.317 -142.717 509.0 19771006 19850729 702960 26410 M.K.(MUDHOLE) SMITH ARPT US AK PACV 60.489 -145.451 9.5 19420611 20200625 702965 99999 JOHNSTONE POINT US AK 60.483000000000004 -146.6 14.0 19750401 19820729 702980 26445 YAKATAGA US AK PACY 60.083 -142.5 11.0 19730315 19990706 702980 99999 YAKATAGA US PACY 60.083 -142.5 11.0 20010706 20020605 702986 26557 BIG RIVER LAKE US AK PALV 60.81399999999999 -152.297 18.3 20060101 20190808 702986 99999 BIG RIVER LAKE US AK PALV 60.817 -152.3 12.0 19780823 20051231 702987 99999 NIGHTMUTE US AK 60.467 -164.7 4.0 19840911 19850509 703050 25623 CAPE HEWENHAM LRRS AIRPORT US AK PAEH 58.65 -162.067 164.9 20060101 20200625 703050 99999 CAPE NEWENHAM AFS US AK PAEH 58.65 -162.067 161.0 19530726 20051231 703051 26521 HOLY CROSS AIRPORT US AK PAHC 62.183 -159.767 6.1 20060101 20200625 703051 99999 HOLY CROSS US AK PAHC 62.183 -159.783 21.0 20050929 20051231 703052 26652 KALSKAG AIRPORT US AK PALG 61.536 -160.341 16.8 20060117 20200322 703052 99999 KALSKAG US AK PALG 61.533 -160.333 17.0 20050929 20051130 703053 26654 RUSSIAN MISSION AIRPORT US AK PARS 61.775 -161.319 15.5 20060101 20200625 703053 99999 RUSSIAN MISSION US AK PARS 61.766999999999996 -161.317 15.0 19760512 20051231 703054 00108 SCAMMON BAY AIRPORT US AK PACM 61.85 -165.567 4.3 20050929 20200625 703054 99999 SCAMMON BAY US AK PACM 61.845 -165.571 4.3 20080101 20081231 703055 00109 MANOKOTAK AIRPORT US AK PAMB 58.983000000000004 -159.05 15.9 20050929 20200625 703055 99999 MANOKOTAK US AK PAMB 58.99 -159.05 16.0 20080101 20180322 703056 26635 MOUNTAIN VILLAGE AIRPORT US AK PAMO 62.095 -163.68200000000002 102.7 20060101 20200625 703056 99999 MOUNTAIN VILLAGE US AK PAMO 62.1 -163.683 15.0 20050929 20051231 703057 26653 TOKSOOK BAY AIRPORT US AK PAOO 60.541000000000004 -165.08700000000002 18.0 20060101 20200625 703057 99999 TOOKSOK BAY US AK PAOO 60.533 -165.083 21.0 20050929 20051231 703058 00110 NELSON LAGOON AIRPORT US AK PAOU 56.016999999999996 -161.167 4.3 20050930 20200625 703058 99999 NELSON LAGOON US AK PAOU 56.01 -161.16 4.0 20080101 20180514 703059 99999 KING COVE US AK PAVC 55.17 -162.27 47.0 20050930 20200624 703061 25521 IGIUGIG AIRPORT US AK PAIG 59.324 -155.90200000000002 27.4 20060101 20200625 703061 99999 IGIUGIG US AK PAIG 59.3 -155.9 27.0 20050929 20051231 703080 25713 ST PAUL ISLAND AIRPORT US AK PASN 57.155 -170.222 10.7 19431105 20200625 703160 25624 COLD BAY AIRPORT US AK PACD 55.221000000000004 -162.732 23.8 19420304 20200625 703165 25617 SAND POINT AIRPORT US AK PASD 55.318999999999996 -160.52100000000002 6.4 20050101 20200625 703165 99999 SAND POINT US AK 55.333 -160.5 6.0 19730107 20041231 703210 25513 DILLINGHAM AIRPORT US AK PADL 59.05 -158.517 26.2 20060101 20200625 703210 99999 DILLINGHAM MUNI US AK PADL 59.05 -158.517 29.0 19730101 20051231 703260 25503 KING SALMON AIRPORT US AK PAKN 58.683 -156.656 20.4 19420110 20200625 703263 99999 KING SALMON US AK 58.683 -156.683 17.0 19801002 19960630 703330 25508 PORT HEIDEN AIRPORT US AK PAPH 56.958999999999996 -158.632 26.8 20060101 20200625 703330 99999 PORT HEIDEN US AK PAPH 56.95 -158.61700000000002 29.0 19420803 20051231 703333 25518 CHIGNIK AIRPORT US AK PAJC 56.31100000000001 -158.373 5.5 20060101 20200625 703333 99999 CHIGNIK AIRPORT US AK PAJC 56.31 -158.36700000000002 6.0 19980226 20051231 703334 25519 EGEGIK AIRPORT US AK PAII 58.185 -157.386 28.0 20060101 20200625 703334 99999 EGEGIK(AWOS) US AK PAII 58.417 -157.36700000000002 28.0 19930520 20051231 703335 99999 SOUTH NAKNEK ARPT US AK PFWS 58.7 -157.0 49.4 19940818 20200624 703400 25506 ILIAMNA AIRPORT US AK PAIL 59.748999999999995 -154.909 43.6 19730101 20200625 703406 26546 PORT ALSWORTH AIRPORT US AK PALJ 60.20399999999999 -154.316 79.3 20050101 20200625 703406 99999 PORT ALSWORTH AIR US AK PALJ 60.2 -154.317 85.0 19730101 20041231 703407 26553 SLEETMUTE AIRPORT US AK PASL 61.717 -157.15 54.3 20060101 20200625 703407 99999 SLEETMUTE US AK PASL 61.717 -157.15 54.0 19940314 20051231 703410 25507 HOMER AIRPORT US AK PAHO 59.641999999999996 -151.491 19.5 19730101 20200625 703430 25402 MIDDLETON ISLAND METEOROLOGY RADAR SITE US AK PAMD 59.433 -146.333 30.5 19450101 20200625 703430 25403 MIDDLETON ISLAND US AK PAMD 59.433 -146.333 14.0 19771101 19991231 703430 99999 MIDDLETON ISLAND US AK PAMD 59.433 -146.333 14.0 20000101 20041231 703431 25402 MIDDLETON ISLAND AUT US AK PAMD 59.433 -146.333 14.0 19730105 19771121 703500 25501 KODIAK AIRPORT US AK PADQ 57.751000000000005 -152.486 24.4 19450101 20200625 703570 99999 SITKINAK(USCG) US AK 56.55 -154.13299999999998 17.0 19730104 19790105 703600 99999 CAPE SAINT ELIAS US AK 59.8 -144.6 18.0 19730101 19810424 703604 99999 HOMER US AK 59.633 -151.467 26.0 19790316 20081231 703605 25604 PLATINUM AIRPORT US AK PAPM 59.011 -161.82 4.6 20060323 20200625 703605 99999 PLATINUM US AK PAPM 59.0 -161.817 5.0 19421001 20050927 703606 25629 TOGIAK AIRPORT US AK PATG 59.067 -160.36700000000002 6.1 20060101 20200625 703606 99999 TOGIAK US AK PATG 59.05 -160.38299999999998 6.0 19891201 20051231 703610 25339 YAKUTAT AIRPORT US AK PAYA 59.512 -139.671 10.1 19410501 20200625 703615 99999 OCEAN CAPE (CGS) US AK 59.516999999999996 -139.767 3.0 19770610 19770610 703620 25335 SKAGWAY AIRPORT US AK PAGY 59.456 -135.32399999999998 6.1 19431001 20200625 703621 25516 SELDOVIA AIRPORT US AK PASO 59.443000000000005 -151.702 8.8 20060101 20200625 703621 99999 SELDOVIA ARPT US AK PASO 59.45 -151.7 9.0 19980316 20051231 703625 99999 HAINES BOAT HARBOR US AK 59.233000000000004 -135.433 10.0 19730719 19960429 703626 25323 HAINES US AK PAHN 59.243 -135.509 4.6 19960613 20200625 703627 99999 PEDRO BAY US AK 59.783 -154.13299999999998 14.0 20040702 20040928 703640 99999 ELDRED ROCK US AK 58.967 -135.217 10.0 19730101 20010718 703644 27515 NUIQSUT AIRPORT US AK PAQT 70.212 -151.002 17.4 20060101 20200625 703644 99999 NUIQSUT US AK PAQT 70.2 -151.0 12.0 19990114 20051231 703650 25316 CAPE SPENCER US AK KCSP 58.2 -136.63299999999998 27.1 19730101 19891011 703655 26552 HUSLIA AIRPORT US AK PAHL 65.69800000000001 -156.351 54.9 20060101 20200618 703655 99999 HUSLIA US AK PAHL 65.7 -156.63299999999998 65.0 20041228 20051231 703656 99999 QUINHAGAK AIRPORT US AK PAQH 59.75 -161.833 13.0 20140211 20200624 703670 25322 GUSTAVUS US AK PAGS 58.411 -135.709 12.2 19760801 20200625 703670 99999 GUSTAVUS US AK PAGS 58.425 -135.707 10.0 20000101 20041231 703675 99999 SISTERS ISLAND US AK SSR 58.167 -135.25 11.0 19730101 19840701 703710 25333 SITKA ROCKY GUTIERREZ ARPT US AK PASI 57.048 -135.365 4.3 19730101 20200625 703715 99999 BIORKA ISLAND SAWRS US AK 56.85 -135.533 15.0 19730101 19780829 703724 99999 WILLOW WEST US AK 61.75 -150.05 63.4 19771203 19910124 703810 25309 JUNEAU INTERNATIONAL US AK PAJN 58.357 -134.564 4.9 19730101 20200625 703815 99999 PT. RETREAT (AMOS) US AK 58.4 -134.95 15.0 19730101 19891011 703816 99999 FUNTER BAY SEAPLANE US AK 58.25 -134.9 0.0 19740428 19960630 703817 25357 ELFIN COVE SEAPLANE BASE US AK PAEL 58.192 -136.344 6.1 20060101 20200625 703817 99999 ELFIN COVE SEAPLANE US AK PAEL 58.2 -136.35 0.0 19741219 20051231 703830 25310 ANGOON SEAPLANE BASE US AK PAGN 57.498999999999995 -134.586 8.5 19730101 20200625 703835 25628 ST. GEORGE AIRPORT US AK PAPB 56.6 -169.565 38.1 20060101 20200625 703835 99999 ST GEORGE US AK PAPB 56.567 -169.65 38.0 19980226 20051231 703850 99999 FIVE FINGER LIGHT US 57.266999999999996 -133.61700000000002 11.0 19730101 20020524 703855 25369 KAKE AIRPORT US AK PAFE 56.967 -133.9 52.4 20060101 20200625 703855 99999 KAKE US AK PAFE 56.95 -133.9 52.0 19730101 20051231 703860 25329 JAMES A JOHNSON AIRPORT US AK PAPG 56.806000000000004 -132.937 32.6 19730101 20200625 703860 99999 PETERSBURG US AK PAPG 56.817 -132.967 0.0 20000101 20041231 703863 99999 FREDERICKS POINT US AK 56.8 -132.817 3.0 19850618 19850618 703865 99999 LEVEL ISLAND US AK 56.467 -133.1 30.0 19730901 19780329 703870 25338 WRANGELL AIRPORT US AK PAWG 56.473 -132.387 17.1 20060101 20200625 703870 99999 WRANGELL US AK PAWG 56.483999999999995 -132.37 13.0 19730101 20051231 703880 25315 CAPE DECISION US AK KCDE 56.0 -134.13299999999998 14.9 19730101 19891011 703880 99999 CAPE DECISION(AMOS) US AK CDE 56.0 -134.13299999999998 14.9 20001201 20041123 703884 25376 HYDABURG SEAPLANE BASE US AK PAHY 55.206 -132.828 0.0 20060101 20200619 703884 99999 HYDABURG SEAPLANE BA US AK PAHY 55.2 -132.833 0.0 19781205 20051231 703885 99999 CAPE POLE SEAPLANE US AK Z27 55.967 -133.8 1.0 19740318 19780801 703886 25348 PORT ALEXANDER SPB US AK PAAP 56.247 -134.645 3.7 20060101 20151117 703886 99999 PORT ALEXANDER US AK PAAP 56.247 -134.65 0.0 19790507 20051231 703888 00111 SHAKTOOLIK AIRPORT US AK PFSH 64.37 -161.224 7.0 20101101 20200625 703888 99999 SHAKTOOLIK AIRPORT US AK PFSH 64.37100000000001 -161.224 7.0 20180107 20180322 703891 99999 ELIM AIRPORT US AK PFEL 64.617 -162.267 49.0 20130731 20200624 703894 25367 KLAWOCK AIRPORT US AK PAKW 55.58 -133.075 3.7 20000101 20200625 703894 99999 KLAWOCK US AK PAKW 55.567 -133.067 24.0 19801015 19991231 703920 25317 CRAIG SEAPLANE US AK CGA 55.483000000000004 -133.15 0.0 19730102 19740129 703920 99999 CRAIG SEAPLANE US AK 55.483000000000004 -133.15 0.0 20020425 20020425 703921 99999 US AK 19740301 19740331 703925 00112 KOLIGANEK AIRPORT US AK PAJZ 59.733000000000004 -157.267 82.3 20070521 20200625 703925 99999 KOLIGANEK US AK PAJZ 59.73 -157.26 82.0 20080101 20180322 703926 99999 AKHIOK US AK PAKH 56.933 -154.183 13.0 20070521 20200624 703930 99999 20010921 20040521 703950 25325 KETCHIKAN INTL AIRPORT US AK PAKT 55.35 -131.65 24.4 19730101 20200625 703980 25308 ANNETTE ISLAND AIRPORT US AK PANT 55.038999999999994 -131.579 33.2 19410714 20191001 703985 25377 METLAKATLA SEAPLANE BASE US AK PAMM 55.131 -131.578 0.0 20060101 20200625 703985 99999 METLAKATLA SEAPLANE US AK PAMM 55.133 -131.583 0.0 19980226 20051231 704090 45709 ATTU US AK 52.833 173.183 21.0 19430607 19871020 704140 45715 EARECKSON AIR STATION AIRPORT US AK PASY 52.717 174.1 37.2 20050101 20200625 704140 99999 EARECKSON AS US AK PASY 52.717 174.1 31.0 19430621 20041231 704540 25704 ADAK NAS US AK PADK 51.883 -176.65 5.2 19421030 20200625 704540 99999 ADAK (NAS) US AK PADK 51.883 -176.65 5.0 20000101 20031231 704545 99999 AMCHITKA ISLAND US AK 51.383 179.267 69.0 19430131 19931001 704820 25626 NIKOLSKI US AK 52.95 -168.85 21.0 19420910 19940514 704851 99999 UMNAK (FORT GLEN) US AK 53.367 -167.9 39.0 19420226 19501123 704890 25616 DUTCH HARBOR AIRPORT US AK PADU 53.895 -166.543 3.1 20081124 20200625 704890 99999 DUTCH HARBOR US AK PADU 53.9 -166.55 4.0 19460101 20081123 704891 99999 NORTH ROCK HARBOR US AK 53.883 -166.533 4.0 19760801 19761018 704895 99999 CAPE SARICHEF ARPT US AK 54.6 -164.933 9.0 19730104 19800802 704896 25625 PORT MOLLER US AK KPML 56.0 -160.517 321.0 19590626 19740306 704897 25515 DRIFTWOOD BAY US AK KDFB 53.967 -166.85 395.9 19730207 19731224 704898 00113 ROBERT (BOB) CURTIS MEMORIAL AIRPORT US AK PFNO 66.818 -161.02200000000002 17.1 20110525 20200625 704898 99999 REBERT (BOB) CURTIS MEMORIAL ARPT US AK PFNO 66.818 -161.02200000000002 16.8 19730103 19910124 710010 99999 BURWASH CA CYDB 61.371 -139.041 806.8 20050101 20200624 710011 99999 CALLAGHAN VALLEY (SKI JUMP TOP CA CVOW 50.133 -123.117 936.0 20070228 20100413 710020 99999 CHURCHILL FALLS CA CZUM 53.567 -64.1 439.5 20050101 20200624 710021 99999 CALLAGHAN VALLEY(SKI JUMP BOTTOM) CA 50.133 -123.117 860.0 20090101 20100623 710030 99999 LA GRANDE 4 CA 53.75 -73.683 306.3 20080101 20170314 710031 99999 CALLAGHAN VALLEY(BIATHALON) CA CVOY 50.15 -123.117 870.0 20070306 20100708 710040 99999 CYPRESS BOWL FREESTYLE CA CVOZ 49.4 -123.2 969.0 20070301 20100623 710050 99999 ALBERT HALL AGCM CA 53.1 -111.167 658.0 20071124 20200624 710060 99999 ALLIANCE AGCM CA 52.3 -111.76700000000001 737.0 20071124 20200624 710070 99999 BARONS AGCM CA 50.016999999999996 -113.21700000000001 967.0 20071124 20200624 710080 99999 BASSANO AGCM CA 50.883 -112.45 807.0 20071124 20200624 710090 99999 BEISEKER AGCM CA 51.367 -113.35 896.0 20071124 20200624 710100 99999 BELLSHILL AGCM CA CPBL 52.583 -111.46700000000001 721.0 20071016 20200624 710110 99999 BIG VALLEY AGCM CA 51.983000000000004 -112.8 870.0 20071124 20200624 710120 99999 CADOGAN AGCM CA 52.333 -110.5 690.0 20071124 20200624 710130 99999 CRAIGMYLE AGCM CA 51.766999999999996 -112.25 845.0 20071124 20200624 710140 99999 DELBURNE AGCM CA 52.183 -113.18299999999999 889.0 20080401 20200624 710150 99999 MILK RIVER RIDGE RESEVOIR CA CPRR 49.283 -112.53299999999999 1305.0 20090801 20200624 710160 99999 BULLHORN HEADWATERS CA CPBH 49.15 -113.55 1326.0 20071124 20200624 710170 99999 STEFANSSON ISLAND NU CA CXSE 73.75 -105.28299999999999 11.0 20040831 20200624 710180 99999 RESOLUTE CS CA CXRB 74.717 -94.98299999999999 30.0 20040803 20200624 710190 99999 ST LEONARD CS NB CA CWIY 47.15 -67.817 245.0 20030617 20170205 710200 99999 YOHIN NWT CA CXYH 61.233000000000004 -123.73299999999999 204.0 20030330 20200624 710205 99999 WEKWEETI CA CYWE 64.183 -114.083 368.0 20121115 20200624 710210 99999 DEADMEN VALLEY NWT CA CXDK 61.25 -124.46700000000001 283.0 20040713 20200624 710220 99999 PRINCE RUPERT CA 54.283 -130.433 35.0 20040831 20200624 710230 99999 JIMMY LAKE CA CWHN 54.92 -109.95 658.0 20030330 20200624 710240 99999 FORT VERMILION CA CXFV 58.383 -116.03299999999999 289.0 20030617 20200624 710260 99999 MEDICINE HAT RCS CA CXMW 50.033 -110.71700000000001 715.0 20030330 20200624 710267 99999 MAPLE PLAINS CA 46.3 -63.583 46.0 20050217 20200527 710268 99999 HOWICK CA 45.167 -73.867 42.0 20040921 20070614 710269 99999 ILE CHARRON QUE. CA CWVZ 45.58 -73.5 12.0 20050217 20071015 710270 99999 INGONISH BEACH CS CA CXIB 46.667 -60.4 8.0 20030617 20200624 710280 99999 TATLAYOKO LAKE RCS BC CA CXTL 51.667 -124.4 875.0 20030617 20200624 710290 99999 HOLMAN CS CA CXHI 70.75 -117.8 30.0 20030617 20200624 710300 99999 GRAND MANAN SAR CS CA 44.7 -66.8 78.0 20030617 20200624 710310 99999 DISCOVERY ISLAND CA CWDR 48.42 -123.23 15.0 19921008 20200624 710320 99999 PRINCETON CS BC CA CWPR 49.467 -120.5 700.0 19921216 20200624 710323 99999 NANAKWA SHOALS CA 53.817 -128.833 0.0 19860916 19880702 710324 99999 WHISTLER CA CWAE 50.117 -122.95 658.0 19990114 20041231 710325 99999 NOOTKA LIGHTSTATION CA CWCV 49.6 -126.62 16.0 19990114 20111209 710326 99999 ADDENBROKE ISLAND CA CWCZ 51.6 -127.87 21.0 19990114 20011213 710327 99999 EGG ISLAND CA CWEM 51.25 -127.83 14.0 19990114 20011214 710328 99999 CAPE SCOTT CA CWES 50.78 -128.43 72.0 19990114 20011214 710329 99999 IVORY ISLAND CA CWJG 52.27 -128.4 10.0 19990114 20011213 710330 99999 KEY LAKE SK CA 57.25 -105.6 513.9 20110919 20200624 710331 99999 CHROME ISLAND CA 49.467 -124.68299999999999 11.0 20110622 20110706 710333 99999 TORONTO WEATHER CEN CA 43.783 -79.467 187.0 19860916 19880131 710334 99999 SIKANNI CHIEF B. C. CA CWKS 57.25 -122.72 937.0 19990114 20030515 710335 99999 GREEN ISLAND LIGHT STATION - HEL CA CWNJ 54.57 -130.7 12.0 19990114 20011213 710336 99999 TETSA RIVER CA CWTH 58.65 -124.23 804.0 19990114 20030515 710337 99999 TRIPLE IL LH CA 54.3 -130.88299999999998 21.0 19990115 20011213 710338 99999 BONILLA ISLAND CA CWVB 53.5 -130.63 16.0 19990115 20011213 710339 99999 MUNCHO LAKE CA CWWQ 58.92 -125.77 835.0 19990114 20030515 710340 99999 TRIAL ISLAND CA 48.4 -123.3 23.0 20040709 20040722 710344 99999 HOLBERG B. C. CA CWXH 50.63 -128.12 568.0 19990122 20011120 710345 99999 BOAT BLUFF CA CWZM 52.65 -128.52 11.0 19990114 20011213 710347 99999 CALGARY SPRINGBANK CA CYBW 51.1 -114.367 1200.0 19990114 20031021 710348 99999 CHETWYND CA CYCQ 55.687 -121.62700000000001 609.6 19990114 20200624 710349 99999 MAKKOVIK CA CYFT 55.083 -59.183 71.0 19990114 20200624 710350 99999 LINDEN AGCM CA 51.617 -113.65 914.0 20080109 20200624 710351 99999 MONT TREMBLANT INTL INC CA CYFJ 46.409 -74.78 252.1 19420904 20041124 710352 99999 ST-GEDEON CA CWIU 48.48 -71.78 103.0 20050315 20061222 710354 99999 GOLDEN CA CYGE 51.299 -116.98200000000001 784.9 19990114 20200624 710355 99999 FORT LIARD CA CYJF 60.233000000000004 -123.48299999999999 215.0 19990114 20200624 710356 99999 EKATI CA CYOA 64.7 -110.617 469.0 19990114 20200327 710358 99999 DELINE CA CYWJ 65.211 -123.436 218.0 19990114 20200624 710359 99999 LAC MEMPHREMAGOG CA CWTT 45.27 -72.17 209.0 20040921 20200624 710360 99999 DAUPHIN BARKER CA CYDN 51.101000000000006 -100.053 304.2 20030617 20200624 710361 99999 RUISSEAU CRANBERRY CA 45.117 -73.667 59.0 20040921 20070614 710362 99999 ROUGEMONT CA 45.4 -73.05 54.0 20050428 20060601 710363 99999 PIEDMONT CA 45.867 -74.083 175.0 20040921 20060718 710364 99999 L'ARTIFICE CA 45.067 -73.817 61.0 20040923 20070614 710365 99999 BEAUHARNOIS CA 45.317 -73.9 22.0 20040921 20060718 710366 99999 COVEY HILL CA 45.0 -73.883 262.0 20040921 20070614 710367 99999 GRANBY CA CMGB 45.367 -72.767 86.0 20040921 20190627 710369 99999 KELP REEFS CA CWZO 48.55 -123.23299999999999 0.0 20070801 20140922 710370 99999 POINT ATKINSON CA CWSB 49.33 -123.265 35.0 20030617 20200624 710371 99999 RUSSELTOWN CA 46.2 -72.45 55.0 20040921 20070614 710372 99999 SAINT-CELESTIN CA 46.2 -72.45 55.0 20040921 20070614 710373 99999 SAINT-CHRYSOSME CA 45.117 -73.767 55.0 20040921 20060702 710374 99999 SAINT-CONSTANT CA 45.317 -73.567 39.0 20040921 20060727 710375 99999 SAINT-MICHEL-DE-NAPIERVILLE CA CMSX 45.18 -73.62 59.0 20040921 20060812 710376 99999 FLIN FLON CA CYFO 54.678000000000004 -101.682 303.9 20050101 20200624 710377 99999 GILLAM CA CWGX 56.37 -94.7 145.0 20050215 20200624 710378 99999 SAINT-SABINE CA 45.217 -73.017 49.0 20041005 20061218 710380 99999 DOAKTOWN AUTO RCS CA 46.6 -66.017 44.5 20040914 20200624 710390 99999 CARMACKS CS CA CXCK 62.117 -136.2 543.0 20030617 20200624 710400 99999 LATERRIERE QUE CA CXLT 48.3 -71.117 163.0 19930408 20200624 710410 99999 PORT HAWKESBURY CA CYPD 45.657 -61.368 114.9 20070227 20200624 710415 99999 LUNENBURG CA CXLB 44.37 -64.3 4.0 20050217 20200624 710416 99999 ST-HENRI CA CWIA 48.65 -71.85 103.0 20041019 20091021 710420 99999 DELTA BURNS BOG CA CVBB 49.133 -123.0 3.0 20010916 20200624 710430 99999 NORMAN WELLS CA CYVQ 65.281 -126.79899999999999 72.2 19450101 20200624 710435 99999 FORT GOOD HOPE CA CYGH 66.241 -128.651 81.7 19340101 20200624 710440 99999 OLD CROW YT CA CZOC 67.567 -139.833 251.0 19960501 20200624 710445 99999 THUNDER BAY CA ON CZTB 48.367 -89.333 198.0 20040831 20041231 710450 99999 TESLIN (AUT) YT CA CWZW 60.167 -132.733 705.0 19430901 20200624 710455 99999 TESLIN CA CYZW 60.173 -132.743 705.0 19770701 20200624 710460 99999 KOMAKUK BEACH CA CWKM 69.62 -140.2 13.0 19981224 20180628 710470 99999 MANNWILLE AGCM CA 53.45 -111.25 656.0 20080401 20200624 710480 99999 ACADIA VALLEY CA CPAC 51.05 -110.31700000000001 735.0 19950423 20200624 710481 99999 VIRGINIA FALLS CA CWFV 61.63 -125.8 610.0 20050101 20061122 710490 99999 WAGER BAY (AUT) MAN CA CXWB 65.867 -89.43299999999999 18.0 19940101 20200624 710500 99999 PUNTZI MOUNTAIN (AUT) BC CA CWPU 52.1 -124.133 910.0 19770701 20200624 710501 99999 KLEENA KLEENE CA 51.983000000000004 -124.98299999999999 899.0 19570106 19590331 710505 99999 PUNTZI MTN AUT CA 52.117 -124.083 -999.0 19770701 19830322 710510 99999 MANYBERRIES AGCM CA 49.367 -110.68299999999999 927.0 19551102 20200624 710513 27201 SACHS HARBOUR A CA NT CYSY 72.0 -125.26700000000001 86.0 19930101 20200624 710513 99999 SACHS HARBOUR CA CYSY 72.0 -125.26700000000001 85.6 19870305 20041231 710514 99999 MARATHON CA CYSP 48.755 -86.344 315.5 20071025 20200624 710520 99999 STORM HILLS CA CWVH 68.9 -133.93 261.0 20030921 20180617 710530 99999 CLINTON POINT CA CWXK 69.583 -120.8 101.0 19770701 19930812 710531 99999 19570701 19630731 710533 99999 CAPE BATHURST CA 0.0 0.0 -999.0 19870410 19870430 710534 99999 CLINTON POINT CA YUH 69.583 -120.75 98.0 19790131 19790131 710550 99999 COLVILLE LAKE NWT CA CWFX 67.021 -126.12299999999999 259.0 19930701 20200624 710560 99999 FORT CHIPEWYAN RCS CA CPCH 58.766999999999996 -111.117 238.0 19930701 20200624 710561 99999 CLUT LAKE(AUT) CA CWCX 65.6 -117.76700000000001 185.0 19571003 20050505 710563 99999 DAWSON CREEK CA 55.733000000000004 -120.18299999999999 671.0 19430501 20200624 710564 99999 DEASE LAKE CA 58.417 -130.033 813.0 20040901 20081231 710565 99999 PRIMROSE LAKE DND CA CWIQ 54.75 -110.05 702.0 20070628 20131017 710570 99999 MOSSLEIGH AGCM CA 50.667 -113.333 965.0 20080721 20200624 710580 99999 KEATS POINT NWT CA CWKP 69.667 -121.667 330.0 20040923 20180709 710590 99999 CROKER RIVER CA CWXR 69.27 -119.22 69.0 19981224 20180721 710600 99999 NORDEGG CS ALTA CA CXND 52.467 -116.06700000000001 1362.0 19840101 20200624 710603 99999 CAMSELL RIVER(MARS) CA WOA 65.617 -118.117 230.0 19831103 19840118 710610 99999 BARRHEAD CS CA CXBD 54.1 -114.45 648.0 19770708 20200624 710613 99999 PORT RADIUM CA 66.1 -117.93299999999999 213.0 19380905 19480101 710614 99999 INDIN RIVER (MAPS) CA 64.383 -115.01700000000001 478.0 19910418 19930615 710620 99999 VIOLET GROVE CS ALTA CA CXVG 53.15 -115.117 903.0 19770701 20200624 710621 99999 19590105 19620831 710624 99999 CONTWOYTO CA 65.483 -110.367 451.0 19790131 19790131 710630 99999 OTTAWA CDA RCS ONT CA 45.383 -75.717 79.0 19770701 20200624 710633 99999 FORT RESOLUTION CA CYFR 61.181000000000004 -113.69 160.3 19340101 20200624 710635 99999 BOW DRILL II CA WDE 47.1 -48.2 -999.0 19850130 19860718 710636 99999 BOW DRILL I CA 46.5 -48.4 37.0 19850130 19860220 710637 99999 BOGUS CANADIAN CA VERR 0.0 0.0 -999.0 19850208 19861009 710638 99999 BOGUS CANADIAN CA VSBC 0.0 0.0 -999.0 19850130 19850731 710639 99999 DEVILS HEAD (AUTO) CA 0.0 0.0 -999.0 19850208 19850909 710640 99999 CAPE PEEL WEST CA CWPX 69.03 -107.82 165.0 19981224 20200525 710650 99999 MYRNAM AGCM CA 53.717 -111.117 580.0 20080401 20200624 710660 99999 HIGH LEVEL CA CYOJ 58.621 -117.165 338.3 19770701 20200624 710670 99999 NEW SERPTA AGCM CA 53.266999999999996 -113.167 765.0 20080401 20200624 710680 99999 PEACE RIVER CA CYPE 56.227 -117.447 570.9 19590109 20200624 710685 99999 HIGH PRAIRIE ARPT CA ZHP 55.417 -116.5 0.0 19830723 19890721 710690 99999 SLAVE LAKE CA CYZH 55.293 -114.777 583.4 19550702 20200624 710691 99999 WAGNER CA 55.35 -114.98299999999999 584.0 19430521 19460116 710700 99999 PAKOWKI LAKE AGCM CA 49.217 -111.133 915.0 20080401 20200624 710702 99999 JOHNSON POINT CA CYUN 72.767 -118.5 9.0 19780422 19791025 710710 99999 JENNY LIND ISL ARPT CA CYUQ 68.65 -101.73299999999999 18.0 19770701 20051001 710713 99999 ROCK RIVER (MAPS) CA 66.783 -136.333 610.0 19891023 19910611 710720 99999 THUNDER BAY CA 48.367 -89.31700000000001 199.0 19480513 20200624 710721 99999 MOULD BAY AIRPORT CA CYMD 76.233 -119.31700000000001 12.0 20050609 20060109 710725 99999 MOULD BAY CAMP CA 76.233 -119.31700000000001 12.0 19940318 19970310 710730 99999 QUEENSTOWN CA CPQU 50.6 -112.8 941.0 19550702 20200624 710731 99999 CLUFF LAKE AUTO CA CXXX 58.383 -109.51700000000001 339.0 20050101 20050718 710733 99999 FORT RELIANCE NWT CA 62.717 -109.18299999999999 168.0 19910204 19930615 710734 99999 RANKIN INLET AUT CA YRT 62.817 -93.167 32.0 19781108 19810131 710735 99999 WHALE COVE AIRPORT CA CYXN 62.233000000000004 -92.6 20.0 19781205 20200624 710736 99999 FORT RELIANCE & CA 62.717 -109.167 160.0 19790131 19790131 710740 99999 ISACHSEN (AUT) NU CA CWIC 78.783 -103.55 58.0 19480503 20200624 710750 99999 COLLINS BAY SASK CA CWWC 58.183 -103.7 492.0 19770701 20200624 710751 99999 EMBARRAS CA 58.2 -111.383 236.0 19550702 19620921 710754 99999 COLLINS BAY (AUTO8) CA 58.183 -103.68299999999999 490.0 19790131 19790131 710760 99999 URANIUM CITY (AUT) CA CWDC 59.567 -108.48299999999999 318.0 19620501 20200624 710763 99999 URANIUM CITY(MARS) CA 59.567 -108.48299999999999 318.0 19880303 19910124 710764 99999 BEARTOOTH ISL(MAPS) CA 59.217 -109.7 238.0 19900907 19930615 710770 99999 BUFFALO NARROWS (AUT) SASK CA CWVT 55.833 -108.43299999999999 440.0 19770701 20200624 710774 99999 BUFFALO NARROWS CA CYVT 55.842 -108.41799999999999 440.1 19790131 20200624 710780 99999 LYNN LAKE CA CYYL 56.864 -101.07600000000001 356.6 19770701 20200624 710790 99999 THOMPSON CA CYTH 55.801 -97.86399999999999 222.2 19671108 20200624 710800 99999 MACKAR INLET CA CWUU 68.3 -85.667 395.0 19571101 20050529 710804 99999 MACKAR INLET CA YUU 68.3 -85.68299999999999 399.0 19790131 19791027 710810 99999 HALL BEACH CA CYUX 68.77600000000001 -81.244 8.2 19570801 20200624 710814 99999 IGLOOLIK AIRPORT CA CYGT 69.367 -81.817 51.0 19791219 20200624 710820 99999 ALERT UA CA CWLT 82.5 -62.333 31.0 19500601 20041231 710823 99999 ALERT CA CYLT 82.51799999999999 -62.281000000000006 30.5 19870305 20200624 710824 99999 ALERT (READAC) CA ZLR 82.5 -62.35 66.0 19880513 19921210 710830 99999 RANKIN INLET CA CYRT 62.81100000000001 -92.116 28.7 19810206 20200624 710840 99999 HAT ISLAND CA CWIL 68.32 -100.08 36.0 19981224 20200624 710850 99999 PINCHER CREEK CA CZPC 49.516999999999996 -114.0 1190.0 19930701 20200624 710851 99999 ELLICE RIVER AUTOMATED REPORTING CA CWEV 67.7 -104.47 42.0 20050927 20050927 710860 99999 FT. PROVIDENCE NWT CA 61.667 -117.25 159.0 20041101 20050619 710870 99999 FORT PROVIDENCE NWT CA CWID 61.317 -117.6 162.0 19930615 20200624 710871 99999 BIRD CA 56.5 -94.2 87.0 19571001 19630731 710880 99999 ROWLEY ISLAND CA CWRX 69.07 -79.07 41.0 19981224 20200624 710881 99999 AXEL HEIBERG ISLAND CA 78.2 -89.71700000000001 61.0 19610820 19611130 710890 99999 RIBSTONE SOUTH AGCM CA 52.583 -110.35 644.0 20080401 20200624 710900 99999 CLYDE RIVER CA CYCY 70.486 -68.517 26.5 19770701 20200624 710901 99999 19421116 19630731 710903 99999 CYLDE AIRPORT & CA 70.5 -68.5 26.0 19880201 19910122 710910 99999 LONGSTAFF BLUFF CA CWLX 68.88 -75.13 162.0 19571202 20170902 710914 99999 LONGSTAFF BLF ARPT CA CYUV 68.933 -75.283 14.0 19790131 19910630 710920 99999 DEWAR LAKES CA CWUW 68.65 -71.17 518.0 19770701 20200421 710921 99999 19580202 19630731 710924 99999 DEWAR LAKES CA YUW 68.65 -71.233 515.0 19790131 19820919 710930 99999 CAPE HOOPER CA CWUP 68.467 -66.783 390.0 19570801 20180704 710933 99999 PANGIRTUNG (AUTOB) CA 66.15 -65.733 23.0 19901018 19930701 710934 99999 PANGNIRTUNG CA CYXP 66.145 -65.714 22.9 19340101 20200624 710935 99999 CAPE HOOPER & CA YUZ 68.433 -66.783 396.0 19790131 19790821 710940 99999 CAPE DYER CA CWFD 66.65 -61.383 725.0 19551208 20200115 710944 99999 REPULSE BAY CA CYUT 66.521 -86.225 24.4 19781205 20200624 710950 99999 POND INLET CA CYIO 72.683 -77.967 55.2 19340101 20200624 710951 99999 ROWLEY ISLAND CA 69.083 -79.033 59.0 19590207 19630731 710960 99999 BROUGHTON ISLAND CA CWVD 67.53 -63.78 584.0 19600402 20180619 710964 99999 QIKIQTARJUAQ CA CYVM 67.546 -64.031 6.4 19790131 20200624 710970 99999 BREVOORT ISLAND CA CWOB 63.33 -64.15 367.0 19600428 20200624 710980 99999 SANDY LAKE CA CZSJ 53.067 -93.35 290.0 19770701 20200624 710981 99999 19550702 19630731 710983 99999 KILLINEK (MAPS) CA 60.417 -64.85 31.0 19900724 20051220 710990 99999 FORT SEVERN CA CYER 56.016999999999996 -87.68299999999999 16.0 20061030 20200624 711000 99999 TRIPLE ISLAND LIGHT CA CWTI 54.3 -130.88299999999998 21.0 19770701 20041212 711010 99999 SANDSPIT AWOS BC CA CVZP 53.25 -131.8 6.0 19480101 20200624 711014 99999 ROSE SPIT (AUT) CA WRO 54.2 -131.65 0.0 19840914 19840921 711015 99999 SANDSPIT 'A' (AUTO) CA CZZP 53.25 -131.833 6.0 19941007 19950602 711020 99999 RIVERCOURSE AGCM CA 53.016999999999996 -110.1 669.0 19770701 20200624 711024 99999 ETHELDA BAY CA YTC 53.05 -129.683 6.0 19790131 19790615 711030 99999 QUESNEL CA CYQZ 53.026 -122.51 545.3 19550702 20200624 711033 99999 QUESNEL AUT CA CWQZ 53.03 -122.52 545.0 19890616 19940920 711034 99999 BOWRON LAKE LODGE CA 53.25 -121.417 914.0 19910108 19910207 711040 99999 WILLIAMS LAKE CA CYWL 52.183 -122.054 940.3 19440701 20200624 711046 99999 HORSEFLY RIVER (AUT) CA CWFR 52.0 -121.0 846.0 19930701 20011002 711050 99999 ROLLING HILLS AGCM CA CPRH 50.25 -111.7 645.0 19830301 20200624 711051 99999 19550702 19630731 711054 99999 SPRING ISLAND CA 50.0 -127.417 9.0 19770701 19860809 711055 99999 PINE ISLAND (MAPS) CA WPI 50.333 -127.96700000000001 4.0 19800905 19830322 711060 94234 TOFINO AIRPORT CA BC CYAZ 49.083 -125.76700000000001 24.0 19581202 20200624 711060 99999 TOFINO CA CYAZ 49.082 -125.773 24.4 20000101 20041231 711064 99999 QUATSINO LIGHTSTATION CA CWIF 50.43 -128.03 21.0 19990104 20011214 711070 25342 CAPE ST JAMES CS CA BC CWZV 51.933 -131.0 92.0 19770701 19930114 711070 99999 CAPE ST JAMES CS BC CA CWZV 51.933 -131.0 92.0 20010705 20200624 711071 99999 19550703 19630731 711073 99999 SCUDDER POINT CA CWZD 52.45 -131.23 5.0 19910411 19960604 711074 99999 HOSKINS INLET(MAPS) CA WZK 52.533 -131.55 8.0 19790131 19950501 711080 99999 ABBOTSFORD CA CYXX 49.025 -122.363 59.4 19550702 20200624 711090 99999 PORT HARDY CA CYZT 50.681000000000004 -127.367 21.6 19550705 20200624 711100 99999 ST LAWRENCE CA CADS 46.917 -55.383 49.0 19550702 20200624 711110 99999 SANDSPIT CA 53.25 -131.8 6.0 19770701 20170607 711111 99999 DOG CREEK CA 51.633 -122.25 1027.0 19550702 19601130 711120 99999 RICHMOND OPERATION CENTRE CA 49.167 -123.06700000000001 16.0 19801001 20180705 711121 99999 ASHCROFT CA 50.7 -121.31700000000001 488.0 19550702 19630731 711122 99999 AMPHITRITE POINT CA CWAN 48.917 -125.55 27.0 20050404 20050404 711130 99999 AGASSIZ CS CA CWZA 49.25 -121.76700000000001 19.0 19770704 20200624 711131 99999 PACHENA POINT CA 48.717 -125.1 46.0 19550702 19581114 711133 99999 WHISTLER ALTA LAKE& CA CWAE 50.133 -122.95 658.0 19880318 19970328 711134 99999 ENTRANCE ISL.(CS) CA 49.217 -123.8 5.0 19920408 19950414 711140 99999 HOPE (AUT) BC CA CVPE 49.367 -121.48299999999999 39.0 19550702 20200624 711143 99999 HOPE (READAC) CA ZHE 49.367 -121.5 41.0 19910611 19921210 711145 99999 HOPE CA WHE 49.367 -121.48299999999999 38.0 19770701 19910522 711146 99999 OSOYOOS (AUTO8) CA 49.033 -119.43299999999999 283.0 19900724 19950414 711147 99999 SUMMERLAND CDA(AUT) CA 49.567 -119.65 454.0 19930724 19950414 711150 99999 VERNON AUTO CA CWJV 50.217 -119.18299999999999 482.0 19770701 20200624 711153 99999 VERNON (AUTO8) CA CWJV 50.233000000000004 -119.28299999999999 555.0 19910801 19950605 711160 99999 ONEFOUR CDA ALTA CA CWOE 49.117 -110.46700000000001 935.0 19910801 20200624 711170 99999 MOBILE UPPER AIR STATION CA CEWO 40.0 -50.0 76.1 20030226 20040607 711180 99999 WAINWRIGHT CFB AIRFIELD 21 ALTA CA CZWN 52.817 -111.1 686.0 20010916 20200624 711190 99999 EDMONTON STONY PLAIN ALTA CA CWSE 53.55 -114.11 766.0 19940314 20050412 711200 99999 COLD LAKE CA CYOD 54.405 -110.279 541.0 19550702 20200624 711210 99999 EDMONTON/NAMAO(MIL) CA CYED 53.667 -113.46700000000001 688.0 19441010 20200624 711220 99999 BANFF CS CA CWZG 51.2 -115.55 1397.0 19550702 20200624 711224 99999 BANFF CA 51.183 -115.56700000000001 1384.0 19790131 19790131 711225 99999 YOHO PARK CA 51.45 -116.333 1615.0 19921216 19950414 711226 99999 BANFF (MARS) CA 51.2 -115.55 1396.0 19811112 20081231 711228 99999 BOW VALLEY (AUTOB) CA 51.083 -115.06700000000001 1298.0 19910801 19930330 711230 99999 EDMONTON INTL CA CYEG 53.31 -113.58 723.3 19601114 20200624 711233 99999 EDMONTON VILLENEUVE CA CZVL 53.668 -113.854 687.3 19850102 20200624 711234 99999 NAKISKA RIDGETOP CA 50.95 -115.18299999999999 1914.0 19910827 19941122 711240 99999 EDMONTON STONY PLAIN CS ALTA CA 53.55 -114.1 766.0 19820901 20130430 711241 99999 19550702 19580813 711250 99999 MEADOW LAKE A CA CYLJ 54.125 -108.523 480.4 19770701 20200624 711253 99999 MEADOW LAKE (AUTO8) CA CWLJ 54.133 -108.53299999999999 480.0 19891017 20200624 711260 99999 STONY PLAIN CA 53.55 -114.1 766.0 19770701 20031007 711270 99999 EDMONTON STONY PLAIN CS CA CXPS 53.55 -114.117 766.0 19770705 20200624 711275 99999 JIMMY LAKE AWOS CA 54.9 -109.96700000000001 637.0 19920122 20041209 711279 99999 PRIMROSE LAKE 2 CA CWOU 54.78 -110.07 606.0 20050129 20050304 711280 99999 SUFFIELD CA 50.266999999999996 -111.18299999999999 770.0 19910321 20031128 711284 99999 VAUXHALL LDA CA 50.05 -112.133 779.0 19920807 19930330 711290 99999 KINDERSLEY CA CYKY 51.518 -109.181 694.0 19580701 20200624 711294 99999 KINDERSLEY ARPT & CA 51.467 -109.167 683.0 19790131 19910124 711300 99999 NIPAWIN AIRPORT CA CYBU 53.333 -104.0 374.0 19770701 20200624 711303 99999 NIPAWIN (AUTO8) CA WBU 53.333 -104.0 373.0 19881224 19950605 711310 99999 EASTEND CYPRESS (AUT) SASK CA CWEH 49.433 -108.98299999999999 1080.0 19770701 20200624 711320 99999 STONY RAPIDS ARPT CA CYSF 59.25 -105.833 250.0 19860725 20200624 711321 99999 CRANBERRY PORTAGE CA 54.617 -101.35 306.0 19571001 19630731 711330 99999 SPIRITWOOD WEST SASK CA CWSR 53.367 -107.55 584.0 19920501 20200624 711340 99999 BEARTOOTH ISLAND CA CWTF 59.22 -109.7 238.0 19930701 20170406 711350 99999 ROCKGLEN (AUT) SASK CA CWKO 49.167 -105.98299999999999 917.0 19770701 20200624 711360 99999 BRANDON RCS CA 49.9 -99.95 409.4 20040924 20200624 711361 99999 VANGCOY UPPER-AIR CA 52.016999999999996 -107.03299999999999 510.0 20050303 20050303 711362 99999 WHISTLER MTN TIMING FLATS CA 50.1 -122.98299999999999 805.0 20090227 20100322 711370 99999 VAL MARIE SOUTHEAST CA CWVN 49.067 -107.583 796.0 19911208 20200624 711380 99999 YORKTON MUNI CA CYQV 51.265 -102.462 498.3 19550702 20200624 711390 99999 CYPRESS HILLS PARK SASK CA CWVP 49.65 -109.51700000000001 1271.0 19920505 20200624 711400 99999 BRANDON MUNI CA CYBR 49.917 -99.95 409.3 19770701 20200624 711405 99999 BEAUSEJOUR (MAN) CA 50.067 -96.51700000000001 274.0 19770701 19900530 711406 99999 BEAUSEJOUR CA YBS 50.067 -96.51700000000001 274.0 19790131 19790131 711410 99999 GATESHEAD ISLAND CA CNGH 70.633 -100.26700000000001 20.0 19770701 20200624 711415 99999 FISHER BRANCH(AUTO) CA 51.083 -97.55 253.0 19860301 19860425 711420 99999 SWIFT CURRENT AIRPORT CA CYYN 50.3 -107.68299999999999 816.9 19961101 20200624 711429 99999 HUNTERS POINT MARINE CA CWHH 53.03 -100.93 256.0 20050101 20051011 711430 99999 BACHELORS ISLAND MARINE MAN CA CWBL 51.75 -99.9 256.0 19770701 20121105 711440 99999 OAKPOINT MARINE MAN CA CWOJ 50.498999999999995 -98.037 249.6 20010916 20200624 711450 99999 ISLAND LAKE AIRPORT CA CYIV 53.85 -94.65 236.0 19770701 20200621 711454 99999 ISLAND LAKE CA WIV 53.867 -94.667 238.0 19790131 19860509 711460 99999 CANDLE LAKE CA 53.733000000000004 -105.26700000000001 503.0 20020601 20051002 711461 99999 NEEPAWA CA 50.233000000000004 -99.5 388.0 19550702 19621029 711470 99999 CARMAN U OF M CS MAN CA CWNK 49.5 -98.03299999999999 268.0 19961101 20200624 711471 99999 19550902 19630731 711480 99999 PILOT MOUND (AUT) CA CWPO 49.183 -98.9 471.0 19571204 20200624 711490 99999 MC CREARY CA CWOO 50.717 -99.53299999999999 351.0 20010916 20200624 711500 99999 SHOAL LAKE CS MAN CA CWUT 50.45 -100.6 561.0 19930520 20200624 711510 99999 KENORA RCS CA 49.783 -94.367 413.0 19940103 20200624 711520 99999 BURGEO NL CA CABF 47.617 -57.617 11.0 20050101 20200624 711530 99999 CARDSTON ALTA CA CWFJ 49.2 -113.28299999999999 1136.0 19941201 20200624 711540 99999 WATERTON PARK GATE CA CWGM 49.133 -113.81700000000001 1289.0 19940706 20200624 711550 99999 EDMONTON INTERNATIONAL CS ALTA CA CXEG 53.3 -113.6 715.0 20010916 20200624 711560 99999 EDSON CLIMATE CA CZZJ 53.583 -116.46700000000001 927.0 20010716 20200624 711570 99999 EDMONTON MUNICIPAL CR10 ALTA CA CXEC 53.567 -113.51700000000001 671.0 20010916 20200624 711580 99999 BERENS RIVER CS MAN CA CWCF 52.35 -97.03299999999999 222.0 20010916 20200624 711590 99999 STEPHENVILLE RCS CA 48.567 -58.567 58.0 20090122 20200624 711600 99999 FORT RELIANCE (AUT) NWT CA CWFZ 62.7 -109.15 168.0 19930701 20200624 711610 99999 BROCKVILLE CLIMATE CA CTBO 44.633 -75.733 120.0 19930701 20200624 711611 99999 INDIN RIVER CA CWIE 64.343 -115.01700000000001 478.0 20050401 20050401 711620 99999 INNER WHALEBACKS NWT CA CWBJ 61.917 -113.71700000000001 165.0 19930701 20200624 711630 99999 WHATI NT CA CWMT 63.133 -117.25 271.0 19940307 20200624 711640 99999 LITTLE CHICAGO NWT CA CWLG 67.167 -130.217 63.0 19930701 20200624 711650 99999 REA LAKES CA CWYH 64.117 -117.333 223.3 19940308 20200624 711660 99999 TROUT LAKE NWT CA CWTE 60.433 -121.23299999999999 498.0 19940308 20200624 711670 99999 EDSON CA 53.567 -116.45 926.0 19940301 20200624 711680 99999 SIOUX FALLS CLIMATE US SD 43.733000000000004 -96.633 481.5 19941001 20200624 711681 99999 POWDER LAKE CA CWMP 61.967 -108.617 485.0 20090101 20090228 711700 99999 CARBERRY CS CA CWZE 49.9 -99.35 384.0 19940901 20200624 711710 99999 VINELAND STATION RCS ONT CA CXVN 43.183 -79.4 79.0 20040510 20200624 711720 99999 PARRY SOUND CCG ONT CA CXPC 45.333 -80.033 176.0 20040803 20200624 711740 99999 ARVIAT CA CYEK 61.093999999999994 -94.071 9.8 20050101 20200624 711750 99999 WHISTLER CA 50.133 -122.95 658.0 20050126 20200624 711760 99999 CAPE KAKKIVIAK CA CWKW 59.98 -64.17 551.0 19960221 20180629 711770 99999 CAPE KIGLAPAIT CA CWYK 57.13 -61.48 834.0 19981224 20171003 711780 99999 BONAVISTA RCS CA CAVA 48.667 -53.117 26.0 20050101 20200624 711790 99999 TUKIALIK BAY CA CWTU 54.72 -58.35 683.0 19981224 20180803 711800 99999 WRECKHOUSE CA CAWR 47.7 -59.3 32.0 19920601 20200624 711810 99999 WINTERLAND NFLD CA CXWT 47.133 -55.317 29.0 20010916 20181116 711811 99999 LABRADOR CSTL CA 54.766999999999996 -58.45 10.0 19550702 19611231 711820 99999 CHURCHILL FALLS CA 53.55 -64.1 440.0 19770701 20081231 711830 99999 MONTREAL/PIERRE ELLIOTT TRUDEAU INTL QU CA CWTQ 45.467 -73.733 32.0 19910118 20200624 711835 99999 LITTLE MECATINA RIVER (AUT) CA CWFU 52.23 -61.32 321.0 19920408 19960103 711840 99999 VARENNES QUE CA CWHM 45.717 -73.383 18.0 19940804 20161025 711850 99999 DANIELS HARBOUR NFLD CA CWDH 50.233000000000004 -57.583 19.0 19550702 20180526 711854 99999 DANIEL'S HARBOUR CA WDX 50.233000000000004 -57.583 24.0 19790131 19950605 711855 99999 FEROLLE PT. (MAPS) CA 51.016999999999996 -57.1 8.0 19860301 20081231 711860 99999 CAP- ROUGE QUE CA CWQM 48.367 -70.533 7.0 19940121 20181116 711870 99999 HOPE CA 49.367 -121.5 39.0 19770701 20170605 711880 99999 GASPE CA CYGP 48.775 -64.479 32.9 19770914 20200624 711881 99999 MANICOUGAN CA 50.65 -68.833 406.0 19611027 19630731 711890 99999 POINTE CLAVEAU QUE CA CWQV 48.266999999999996 -70.117 4.0 19770701 20200624 711891 99999 RIVIERE AU RENARD CA 49.016999999999996 -64.4 39.0 19580819 19630731 711895 99999 GASPE CA 48.766999999999996 -64.483 33.0 19770701 19770913 711896 99999 MINGAN CA 50.283 -64.15 22.0 19430101 19831205 711900 99999 POINTE DE L'ISLET QUE CA 48.133 -69.7 7.0 20010731 20200624 711910 99999 FUNDY PARK CS CA CAFY 45.6 -64.95 43.0 20030620 20190523 711920 99999 QUESNEL CA 53.016999999999996 -122.5 545.0 20100604 20200624 711930 99999 TIMMINS CLIMATE CA 48.55 -81.383 294.0 19770701 20200624 711940 99999 MOBILE UA STATION ATLANTIC CA 40.0 -50.0 0.0 19770701 20041231 711944 99999 BURGEO 2 CA CWBF 47.62 -57.62 11.0 19911119 20041231 711945 99999 SAINT LOUIS CA 45.867 -73.0 31.0 20050628 20070614 711950 99999 SAINT ALBANS CA 47.867 -55.85 1.0 19770701 19830709 711960 99999 PEMBROKE CLIMATE CA 45.867 -77.25 162.0 19591117 20200624 711965 99999 GRATES COVE(AUTO) CA WVW -48.167 -52.933 18.0 19920106 19950605 711966 99999 POOLS ISLAND CA CWYI 49.117 -53.583 10.0 19920106 20200624 711970 99999 PORT AUX BASQUES CA CWZB 47.567 -59.15 40.0 19770701 20170914 711971 99999 ST ANDREWS CA 47.766999999999996 -59.333 11.0 19550702 19630731 711974 99999 PORT BASQUES(AUTO) CA CWOF 47.567 -59.183 40.0 19911119 19950605 711980 99999 LAC SAINT- PIERRE QUE CA CWBS 46.183 -72.917 16.0 20010702 20191105 711990 99999 WATSON LAKE (AUT) YT CA CXQH 60.117 -128.817 690.0 20050218 20200624 712000 99999 VICTORIA GONZALES CS BC CA CWLM 48.4 -123.31700000000001 70.0 19550702 20200624 712003 99999 VICTORIA (AUTO8) CA 48.417 -123.31700000000001 67.0 19811126 19910124 712004 99999 SHERINGHAM PT (AUT) CA 48.383 -123.917 0.0 19920621 19950414 712010 99999 VANCOUVER HARBOUR CS BC CA CWHC 49.283 -123.117 3.0 19800301 20200624 712013 99999 VANCOUVER INTL CA WHC 49.183 -123.167 3.0 19880105 19881208 712020 99999 ROSALIND AGCM CA CPRL 52.783 -112.43299999999999 712.0 19800301 20200624 712023 99999 VICTORIA MARINE CA 48.367 -123.75 32.0 19880105 20060611 712024 99999 RACE ROCKS CA 48.3 -123.53299999999999 5.0 19930527 19950414 712025 99999 WEST VAN CYPRESS CA 49.35 -123.18299999999999 161.0 19930112 19950414 712026 99999 ESQUIMALT METOC CA CWPF 48.433 -123.43299999999999 12.0 19940103 19950605 712027 99999 VICTORIA HARTLAND CS CA 48.53 -123.47 154.0 19950423 20120611 712030 99999 KELOWNA CA CYLW 49.956 -119.37799999999999 429.5 19930408 20200624 712035 99999 KELOWNA APT CA 49.95 -119.383 429.0 19831222 19930208 712040 99999 MANKOTA CA 49.1 -107.01700000000001 830.0 20010903 20200624 712043 99999 MERRY ISLAND LIGHTSTATION CA CWMR 49.47 -123.92 6.0 19990104 20011214 712045 99999 SAND HEADS (LS) CA CWVF 49.1 -123.3 1.0 19920106 19950605 712050 99999 CAMPBELL RIVER CA 49.95 -125.26700000000001 106.0 19800301 20051005 712060 99999 BELLA COOLA CA CYBD 52.388000000000005 -126.596 35.7 19830707 20200624 712063 99999 BELLA COOLA ARPT & CA 52.383 -126.583 35.0 19880105 19930309 712070 99999 SQUAMISH BC CA CWSK 49.783 -123.167 52.0 19820624 20200624 712073 99999 SQUAMISH (AUTO8) CA 49.783 -123.167 52.0 19880105 19930309 712079 99999 SQUAMISH CA CYSE 49.783 -123.167 52.0 20100104 20100403 712080 99999 BIG TROUT LAKE CA COTL 53.817 -89.9 224.1 19930527 20200624 712081 99999 POWELL RIVER CA CYPW 49.833999999999996 -124.5 129.5 20050101 20200624 712085 99999 POWELL RIVER ARPT & CA 49.817 -124.5 120.0 19831222 19930309 712090 99999 SANDHEADS CS CA CWVF 49.1 -123.3 11.0 20010705 20200624 712110 99999 HOWE SOUND - PAM ROC CA CWAS 49.483000000000004 -123.3 5.0 19961101 20200624 712120 99999 FORET MONTMORENCY RCS QUE CA CMFM 47.317 -71.133 673.0 20041005 20200624 712130 99999 EARLTON CLIMATE CA 47.683 -79.833 243.4 20081201 20200624 712140 99999 BODO AGDM ALTA CA CXBA 52.117 -110.1 687.0 20040824 20200624 712150 99999 OSOYOOS CS BC CA CWYY 49.033 -119.43299999999999 283.0 19950423 20200624 712160 99999 NAKUSP CS BC CA CWNP 50.266999999999996 -117.81700000000001 512.1 19950423 20200624 712170 99999 CHAMPION AGDM ALTA CA CXCP 50.266999999999996 -113.35 1006.0 20021212 20200624 712180 99999 SALMON ARM CS BC CA CWSL 50.7 -119.28299999999999 351.0 19950423 20200624 712190 99999 HOLLAND ROCK BC CA CWHL 54.167 -130.35 5.0 20010705 20200624 712200 99999 LUCY ISLAND LIGHTSTATION CA CWLC 54.29600000000001 -130.609 22.6 20010705 20200624 712210 99999 CLEARDALE AGDM ALTA CA CXCD 56.3 -119.73299999999999 630.0 20040713 20200624 712220 99999 DEASE LAKE (AUT) CA CWKX 58.433 -130.033 802.0 19930829 20200624 712230 99999 CONSORT AGDM ALTA CA CXCS 51.933 -110.7 772.0 20040824 20200624 712240 99999 DEL BONITA AGDM ALTA CA CXDB 49.05 -112.81700000000001 1310.0 20040824 20200624 712250 99999 FOREMOST AGDM ALTA CA CXFM 49.483000000000004 -111.48299999999999 881.0 20040824 20200624 712260 99999 HIGH PRAIRIE AGDM ALTA CA CXHP 55.383 -116.46700000000001 602.0 20040824 20200624 712270 99999 HOLDEN AGDM ALTA CA CXHD 53.183 -112.23299999999999 688.0 20040713 20200624 712280 99999 KILLAM AGDM ALTA CA CXKM 52.833 -111.867 675.0 20040824 20200624 712290 99999 MANNING AGDM ALTA CA CXMG 56.967 -117.45 457.0 20040824 20200624 712300 99999 BEAVERLODGE RCS ALTA CA CWBM 55.2 -119.4 745.0 19960816 20200624 712310 99999 BOW ISLAND CA CWXL 49.733000000000004 -111.45 817.0 19940201 20200624 712320 99999 BOW VALLEY ALTA CA CWXA 51.083 -115.06700000000001 1298.0 19930607 20200624 712330 99999 BRETON PLOTS ALTA CA CWOV 53.083 -114.43299999999999 852.0 20041005 20200624 712340 99999 CLARESHOLM CA CWDK 50.0 -113.633 1009.0 19940201 20200624 712350 99999 COP UPPER ALTA CA CWDU 51.067 -114.21700000000001 1235.0 19930607 20200212 712360 99999 CROWSNEST ALTA CA CWRT 49.617 -114.48299999999999 1303.0 19930607 20200624 712370 99999 DRUMHELLER EAST ALTA CA CWDZ 51.433 -112.667 678.0 20010916 20200624 712380 99999 ELK ISLAND NAT PARK ALTA CA CWFE 53.683 -112.867 713.7 19930701 20200624 712390 99999 CYORESS RIVER RCS CA 49.55 -99.06700000000001 374.0 19931015 20200624 712400 99999 ESTHER 1 ALTA CA CWGY 51.667 -110.2 707.0 19930607 20200624 712410 99999 HIGHVALE ALTA CA CWHA 53.45 -114.46700000000001 747.0 19930701 20060822 712420 99999 LACOMBE CDA 2 ALTA CA CWQQ 52.45 -113.75 860.0 19930607 20200624 712430 99999 LETHBRIDGE CDA CA CWQL 49.7 -112.76700000000001 910.0 19941201 20200624 712440 99999 MILK RIVER ALTA CA CWRY 49.133 -112.05 1050.0 19930908 20200624 712450 99999 NAKISKA RIDGETOP ALTA CA CWNR 50.933 -115.18299999999999 2543.0 19940303 20200624 712460 99999 RED EARTH ALTA CA CWRD 56.533 -115.26700000000001 546.0 19930701 20200624 712470 99999 MEDICINE HAT CA 50.016999999999996 -110.71700000000001 717.0 19930701 20020501 712480 99999 SUNDRE A ALTA CA CWAV 51.766999999999996 -114.68299999999999 1114.0 19930607 20200624 712490 99999 THREE HILLS CA CWHI 51.768 -113.206 857.0 19930607 20200624 712500 99999 ST JOHNS WEST CLIMATE CA CAJW 47.516999999999996 -52.783 110.0 19940103 20200624 712510 99999 VAUXHALL CDA CS ALTA CA CWVO 50.05 -112.133 779.0 19930607 20200624 712520 99999 WILLOW CREEK 1 ALTA CA CWWO 53.383 -118.333 1402.0 19940414 20200624 712530 99999 GARDEN RIVER ALTA CA CWGF 58.7 -113.867 241.0 19950423 20200624 712540 99999 CAMROSE ALTA CA CWRV 53.033 -112.81700000000001 739.0 19940101 20200624 712550 99999 MILDRED LAKE ALTA CA CWMX 57.033 -111.55 310.0 19940101 20200624 712560 99999 WHITECOURT ALTA CA CXZU 54.15 -115.78299999999999 785.0 20010916 20160421 712570 99999 MORRIN AGDM ALTA CA CXMO 51.65 -112.667 836.0 20040824 20200624 712580 99999 OLDS AGDM ALTA CA CXOL 51.75 -114.06700000000001 1046.0 20040824 20200624 712590 99999 POLLOCKVILLE AGDM ALTA CA CXPL 51.117 -111.7 750.0 20040824 20200624 712600 99999 SAULT STE MARIE CA CYAM 46.485 -84.509 192.0 19860425 20200624 712603 99999 SAULT STE MARIE & CA 46.483000000000004 -84.5 188.0 19880105 19930309 712610 99999 GODERICH ONT CA CWGD 43.766999999999996 -81.717 214.0 19811026 20200624 712625 99999 NIAGARA DISTRICT CA CYSN 43.192 -79.172 97.8 19831222 20200624 712630 99999 HAMILTON CA CYHM 43.174 -79.935 237.7 19930520 20200624 712635 99999 RAWDON CA 46.016999999999996 -73.817 210.0 19831222 20070614 712640 99999 SHEARWATER RCS CA 44.633 -63.516999999999996 24.0 20080702 20200624 712643 99999 BUTTONVILLE MUNI CA CYKZ 43.861999999999995 -79.37 198.1 19860620 20190103 712650 99999 TORONTO CITY CENTRE CA CYTZ 43.617 -79.383 76.5 19790507 20200624 712654 99999 TORONTO ISL (MARS) CA 43.633 -79.4 77.0 19790604 19870611 712670 99999 LETHBRIDGE CA CYQL 49.633 -112.8 929.0 20050101 20200624 712680 99999 SMITHERS AIRPORT AUTO CA 54.817 -127.18299999999999 517.6 20040824 20200624 712690 99999 SCHULER AGDM ALTA CA CXSC 50.3 -110.083 800.0 20040824 20200624 712700 99999 COLLINGWOOD ONT CA CWCO 44.5 -80.217 180.0 19941201 20200624 712710 99999 ATHABASCA AGCM CA 54.633 -113.383 635.0 19941201 20200624 712720 99999 TADOULE LAKE CA CYBQ 58.7 -98.5 281.0 19941201 20200513 712729 99999 BEAUSOLEIL CA CWPB 44.85 -79.87 183.0 20050101 20070828 712730 99999 LOON LAKE CA 54.016999999999996 -109.133 545.6 19941201 20200624 712735 99999 BELLE RIVER CA CWDD 42.3 -82.7 184.0 20050101 20050307 712740 99999 SMOKY LAKE AGDM ALTA CA CXSL 54.266999999999996 -112.48299999999999 680.0 20040913 20200624 712750 99999 ST. PAUL AGDM ALTA CA CXSP 54.0 -111.26700000000001 649.0 20040713 20200624 712760 99999 TWO HILLS AGDM ALTA CA CXTH 53.617 -111.667 678.0 20040824 20200624 712770 99999 VALLEYVIEW AGDM ALTA CA CXVW 55.083 -117.18299999999999 698.0 20041005 20200624 712780 99999 VERMILLION AGDM ALTA CA CXVM 53.333 -110.867 623.0 20040824 20200624 712790 99999 SEPT-ILES QUE CA CXZV 50.217 -66.25 53.0 20040824 20200624 712810 99999 GRENADIER ISLAND ONT CA CWGH 44.417 -75.85 82.0 19941201 20200624 712820 99999 LAGOON CITY ONT CA CWGL 44.533 -79.217 221.0 19941201 20200624 712830 99999 BROWNVALE AGCM CA CPBN 56.117 -117.883 748.0 19941201 20200624 712840 99999 BUSBY AGCM CA CPBB 53.917 -113.917 714.0 19941201 20200624 712850 99999 ABEE AGDM ALTA CA CXAF 54.283 -112.96700000000001 664.0 20040824 20200624 712860 99999 ANDREW AGDM ALTA CA CXAG 53.917 -112.26700000000001 625.0 20040824 20200624 712870 99999 ATMORE AGDM ALTA CA CXAJ 54.766999999999996 -112.81700000000001 574.0 20040824 20200624 712880 99999 CAMBRIDGE BAY GSN NU CA CXCM 69.1 -105.133 19.0 20040803 20200624 712890 99999 STETTLER AGDM ALTA CA CXAK 52.333 -112.583 795.0 20040713 20200624 712900 99999 MACKENZIE CA 55.283 -123.133 690.0 19941001 20170628 712910 99999 CAMERON FALLS (AUT) ONT CA CXCA 49.15 -88.333 233.0 20030617 20200624 712920 99999 YORKTON CA 51.266999999999996 -102.46700000000001 498.0 20030617 20200624 712929 99999 CYPRUS LAKE CS CA CXCY 45.233000000000004 -81.533 190.0 20050101 20090414 712930 99999 HALL BEACH CA 68.783 -81.25 9.1 20090120 20200624 712940 99999 BANCROFT AUTO ONT CA CWRK 45.067 -77.867 331.0 20010916 20200624 712950 99999 EAR FALLS (AUT) CA CXEA 50.633 -93.21700000000001 363.0 20030617 20200624 712960 99999 EGBERT CS ONT CA CXET 44.233000000000004 -79.783 251.0 20040824 20200624 712970 99999 HAMILTON RBG CS ONT CA CXHM 43.283 -79.9 102.0 20040803 20200624 712980 99999 HARROW CDA AUTO CA CXHA 42.033 -82.9 191.0 20030617 20200624 712990 99999 KAPUSKASING CDA ON ONT CA CXKA 49.4 -82.43299999999999 218.0 20030617 20200624 713000 99999 KEMPTVILLE CS ONT CA CXKE 45.0 -75.633 99.0 20040824 20200624 713010 99999 KIRKLAND LAKE CS ONT CA CXKI 48.15 -80.0 324.0 20040921 20200624 713020 99999 PRINCE GEORGE AIRPORT AUTO CA 53.883 -122.667 680.0 20091127 20200624 713030 99999 POINT PELEE CS ONT CA CXPT 41.933 -82.51700000000001 177.0 20040824 20200624 713040 99999 BEAVER MINES CA 49.467 -114.18299999999999 1257.0 20040824 20200624 713041 99999 MOOSE CREEK CA CTCK 45.25 -74.967 85.0 20050101 20200624 713050 99999 FORT CHIPEWYAN CA 58.766999999999996 -111.117 238.0 20040921 20131031 713059 99999 RIGUAD 2 CA CMRI 45.467 -74.283 30.0 20050101 20060802 713060 99999 INUKJUAK ARPT CA CYPH 58.467 -78.083 25.0 20040824 20200624 713069 99999 SAINT POLYCARPE CA CMPL 45.3 -74.3 56.0 20050101 20070614 713070 99999 RIDGETOWN RCS ONT CA CXRG 42.45 -81.883 206.0 20040510 20200624 713080 99999 TRACADIE NS NS CA CXTD 45.6 -61.667 67.0 20040713 20200624 713090 99999 MOOSONEE RCS ONT CA CXZC 51.283 -80.617 9.0 20040921 20200624 713100 99999 ST. PETERS PEI CA CZSP 46.45 -62.567 30.0 20040608 20200624 713110 99999 NAPPAN AUTO NS CA CXNP 45.75 -64.233 20.0 20040921 20200624 713120 99999 NIPAWIN SASK CA CWBU 53.333 -104.0 372.0 20040608 20200624 713130 99999 HAVRE ST PIERRE CA CYGV 50.283 -63.6 37.8 19941201 20200624 713140 99999 BARRIE-ORO CA CXBI 44.48 -79.55 289.0 20040921 20200624 713150 99999 CHARLO AUTO NB CA CZCR 47.983000000000004 -66.333 42.0 20040803 20200624 713160 99999 LACLABICHE CLIMATE ALTA CA 54.766999999999996 -112.01700000000001 567.0 20040608 20200624 713170 99999 DEBERT CA CZDB 45.417 -63.467 38.0 20040921 20200624 713180 99999 CORONATION CLIMATE ALTA CA CWCT 52.067 -111.43299999999999 791.0 20040803 20200624 713190 99999 CHARLEVOIX (MRX) CA CWIS 47.283 -70.633 723.0 19971201 20200624 713200 99999 HALL BEACH CLIMATE NU CA CXUX 68.767 -81.233 8.0 20050201 20200624 713210 99999 IQALUIT CLIMATE NU CA CXFB 63.75 -68.55 34.0 20050201 20200624 713220 99999 ARVIAT CLIMATE NU CA CXAR 61.1 -94.06700000000001 10.0 20050201 20200624 713230 99999 BEAUCEVILLE QUE CA CWHV 46.2 -70.783 229.0 19940728 20200624 713240 99999 OSBORNE HEAD DND CA CAOS 44.617 -63.417 30.0 20071016 20200624 713250 99999 BEDFORD RANGE CA CABR 44.75 -63.667 10.0 20090801 20200624 713260 99999 HALIFAX KOOTENAY CA 44.583 -63.55 52.0 20130501 20200624 713270 99999 HALIFAX WINDSOR PARK CA CAHW 44.65 -63.617 51.0 20070423 20200624 713280 99999 HALIFAX DOCKYARD CA 44.65 -63.58 4.0 20130501 20200624 713290 99999 BEDFORD BASIN CA 44.7 -63.633 4.0 20071016 20200521 713310 99999 ISLAND FALLS (AUT) SASK CA CPIF 55.533 -102.35 297.0 20041109 20200624 713315 99999 CONFEDERATION BRIDGE CA CXBP 46.23 -63.73 54.0 20050201 20061031 713320 99999 KUGLUKTUK CLIMO CA CNCO 67.82 -115.12 23.0 20041109 20200624 713325 99999 GRIEF POINT CA CWKA 49.8 -124.53 10.0 20050517 20140922 713330 99999 LAUZON (AUT) CA CWLU 46.83 -71.17 20.0 20041109 20071127 713335 99999 ILE AUX GRUES CA CWIG 47.07 -70.53 18.0 20050517 20140922 713340 99999 TADOULE LAKE CS MAN CA CXBQ 58.7 -98.5 262.0 20030617 20200623 713350 99999 SAGLEK BAY CA CWZZ 58.333 -62.583 501.0 20040824 20200624 713360 99999 GRATES COVE CA 48.167 -52.933 46.0 20040921 20200120 713370 99999 LA SCIE NFLD CA CWAG 49.917 -55.667 194.0 20040824 20200624 713380 99999 QIKIQTARJUAQ A NU CA 67.533 -64.017 6.0 20040803 20200624 713390 99999 MARYS HARBOUR CA 52.3 -55.833 12.0 20040803 20200624 713400 99999 DAPP AGDM ALTA CA CXDP 54.317 -113.95 614.0 20040824 20200624 713407 99999 SLEETMUTE US AK SLQ 61.717 -157.15 54.0 19940103 19940404 713410 99999 BROCKET AGDM ALTA CA CXBR 49.617 -113.81700000000001 1073.0 20040510 20200624 713420 99999 OYEN AGDM ALTA CA CXOY 51.383 -110.35 767.0 20040928 20200624 713430 99999 WRENTHAM AGDM ALTA CA CXWM 49.5 -112.117 944.0 20040824 20200624 713440 99999 HUSSAR AGDM ALTA CA CXHR 51.183 -112.5 971.0 20040510 20200624 713450 99999 MASINASIN AGDM CA CXMN 49.133 -111.65 948.0 20040824 20200624 713460 99999 BARNWELL AGDM ALTA CA CXBW 49.8 -112.3 824.0 20040510 20200624 713470 99999 FAIRVIEW AGDM ALTA CA CXFR 56.067 -118.43299999999999 655.0 20040518 20200624 713480 99999 PEORIA AGDM ALTA CA CXPA 55.617 -118.28299999999999 621.0 20040510 20200624 713490 99999 RICH LAKE AGDM ALTA CA CXRL 54.5 -111.7 585.0 20040510 20200624 713500 99999 HARRINGTON CDA CS PEI CA CAHR 46.35 -63.167 53.0 20041005 20200624 713510 99999 OLIVER AGDM ALTA CA CZOL 53.65 -113.35 665.0 20040510 20200624 713520 99999 ELORA RCS ONT CA CZEL 43.65 -80.417 376.0 20040608 20200624 713530 99999 PRENTISS ALBERTA ALTA CA CZPS 52.433 -113.6 965.0 20040608 20200624 713540 99999 MUNDARE AGDM ALTA CA CZMU 53.567 -112.3 683.0 20040921 20200624 713550 99999 ALERT CLIMATE NU CA CZLT 82.5 -62.333 65.0 20040803 20200624 713560 99999 BAKER LAKE CLIMATE NU CA CXBL 64.317 -96.0 51.0 20040921 20200624 713570 99999 QIKIQTARJUAQ CLIMATE CA CZVM 67.55 -64.03 6.0 20050507 20200624 713580 99999 CLYDE RIVER CLIMATE NU CA CZCY 70.483 -68.517 27.0 20050201 20200624 713590 99999 DEWBERRY AGCM CA 53.667 -110.583 616.0 20080401 20200624 713600 99999 EDGERTON AGCM CA 52.766999999999996 -110.417 649.0 20071124 20200624 713610 99999 HAY RIVER CLIMATE NWT CA CZHY 60.833 -115.76700000000001 164.0 20040803 20200624 713620 99999 FORT SMITH CLIMATE NWT CA CZSM 60.016999999999996 -111.917 203.0 20040803 20200624 713630 99999 GJOA HAVEN CLIMATE NU CA CZHK 68.633 -95.85 42.0 20040608 20200624 713640 99999 INUVIK CLIMATE NWT CA CZEV 68.317 -133.517 103.0 20040608 20200624 713650 99999 FORT SIMPSON CLIMATE NWT CA CZFS 61.75 -121.23299999999999 168.0 20040608 20200624 713660 99999 CAPE DORSET A CA 64.233 -76.533 48.2 20040608 20041231 713670 99999 CORMACK RCS CA 49.317 -57.4 817.0 20040824 20200624 713671 99999 WINCHESTER CA CTWN 45.05 -75.333 75.0 20050101 20070614 713680 99999 WATERLOO CA CYKF 43.461000000000006 -80.37899999999999 321.3 19930520 20200624 713681 99999 WATERLOO WELL & CA 43.45 -80.383 314.0 19770701 19900206 713683 99999 WATERLOO WELL & CA 43.45 -80.383 314.0 19900208 19930308 713690 99999 SLAVE LAKE CA 55.3 -114.78299999999999 583.0 20040913 20200624 713697 99999 LIVERPOOL AIRPORT CA 44.233000000000004 -64.85 96.0 19891023 19900517 713700 99999 SHAWINIGAN CS QUE CA CXSH 46.55 -72.733 110.0 20010904 20200624 713710 99999 MONTREAL/ST HUBERT CA CYHU 45.516999999999996 -73.417 27.4 19550702 20200624 713713 99999 SAINT HUBERT ARPT & CA 45.516999999999996 -73.417 27.0 19880105 19930309 713715 99999 ST LAMBERT CA 45.5 -73.52 7.0 19940317 19950419 713720 99999 L'ACADIE QUE CA CWIZ 45.283 -73.333 44.0 19920505 20200624 713721 99999 MONTREAL-EST CA CWPQ 45.63 -73.55 50.0 19550702 20071231 713725 99999 VALLEYFIELD (ECLUSE) CA CWVE 45.23 -74.1 46.0 19930802 19930824 713730 99999 FRELIGHSBURG QUE CA CWFQ 45.05 -72.85 152.0 19920505 20200624 713740 99999 CAPE WHITTLE QUE CA CWQW 50.15 -60.05 7.0 19940103 20200624 713750 99999 ILE AUX PERROQUETS QUE CA CWQR 50.217 -64.2 9.0 19940108 20200624 713760 99999 ST JOVITE QUE CA CWJT 46.067 -74.55 239.0 19930320 20200624 713770 99999 STE ANNE DE BELLEVUE 1 QUE CA CWVQ 45.417 -73.917 39.0 19940201 20200624 713780 99999 LA TUQUE QUE CA CWDQ 47.4 -72.783 169.0 19930701 20200624 713790 99999 NORMANDIN QUE CA CWOD 48.833 -72.533 137.0 19940201 20200624 713800 99999 CRESTOMERE AGCM CA 52.717 -113.9 855.0 20080721 20200624 713810 99999 MISTOOK QUE CA CWIX 48.583 -71.7 113.0 19941201 20200624 713820 99999 PARC DES LAURENTIDES QUE CA CWPD 47.55 -71.217 791.0 19940201 20200624 713830 99999 BONNARD 1 QUE CA CWKD 50.717 -71.0 498.0 19930112 20200624 713840 99999 CAP TOURMENTE QUE CA CWTN 47.067 -70.767 6.0 19940201 20200624 713850 99999 ILE BICQUETTE QUE CA CWQO 48.4 -68.883 7.0 19940103 20190120 713860 99999 AMQUI QUE CA CWZS 48.467 -67.433 166.0 20010916 20190708 713870 99999 ONATCHIWAY QUE CA CWXC 48.883 -71.017 304.0 20010916 20200624 713880 99999 LA BAIE CA CWUX 48.3 -70.917 152.0 20010916 20200624 713890 99999 DESCHAMBAULT CS QUE CA CWHQ 46.683 -71.967 61.0 20010802 20200624 713900 99999 POINTE NOIRE CS QUE CA CWIP 50.15 -66.433 24.0 20010916 20200624 713910 99999 HIGH FALLS QC CA CXHF 45.833 -75.633 195.0 20010916 20200624 713920 99999 STE FOY (U. LAVAL) QUE CA CWJB 46.78 -71.283 91.0 19971201 20200624 713930 99999 CALGARY INTL CS CA 51.1 -114.0 1081.0 20040921 20200624 713931 99999 ALEXANDRIA CA CTAL 45.317 -74.6 77.0 20050101 20060524 713950 99999 HALIFAX INTL CA CYHZ 44.881 -63.50899999999999 145.4 19600701 20200624 713951 99999 HALIFAX INTL CA 44.883 -63.516999999999996 145.0 19770701 19790821 713953 99999 HALIFAX INTL ARPT & CA 44.883 -63.516999999999996 145.0 19490101 19930309 713955 99999 BEDFORD CA CWAZ 44.717 -63.683 33.0 19950423 19950605 713960 99999 HALIFAX METOC CA 44.667 -63.583 10.0 19991029 19991029 713970 99999 GREENWOOD CA CYZX 44.983999999999995 -64.917 28.0 19550702 20200624 713975 99999 BOW DRILL III CA 47.2 -55.1 0.0 19860117 19890517 713980 99999 MOOSONEE CA 51.283 -80.6 9.0 19770701 20200624 713981 99999 19550702 19630731 713985 99999 CHATHAM BROWNBURG CA 45.617 -74.417 75.0 19770701 20060718 713989 99999 TRURO CA CWUR 45.367 -63.266999999999996 40.0 20050101 20050429 713990 99999 SEDALIA AGCM CA CPSA 51.583 -110.75 755.0 19800701 20200624 713993 99999 ROWAN GORILLA III CA CWXO 43.88 -60.55 44.0 19910207 19960602 713995 99999 BACCARO POINT CA CWCP 43.45 -65.467 13.0 19930115 19950605 714000 99999 BADGER (AUT) NFLD CA CWDI 48.967 -56.067 103.0 19811001 20200622 714010 99999 WARFIELD RCS CA CXWF 49.117 -117.73299999999999 566.9 20040823 20200624 714015 99999 STAR BROOK CA WHU 48.583 -57.233000000000004 290.0 19930701 19960103 714020 99999 TWILLINGATE (AUT) NFLD CA CWDO 49.683 -54.8 92.0 19850910 20200624 714030 99999 BEAVER ISLAND (AUT) NS CA CWBV 44.817 -62.333 16.0 19850829 20200624 714040 99999 EGG ISLAND ALTA CA CXEL 58.967 -110.43299999999999 215.0 20030330 20200624 714050 99999 SHONTS AGCM CA 53.333 -112.53299999999999 679.0 19860101 20200624 714060 99999 FEROLLE POINT (AUT) NFLD CA CWXI 51.016999999999996 -57.1 6.0 19850830 20200624 714070 99999 KUGAARUK CLIMATE CA CNBB 68.533 -89.8 16.0 20050201 20200624 714080 99999 SAGONA ISLAND NFLD CA CWZN 47.367 -55.783 60.0 19850814 20200624 714090 99999 ETZICOM AGCM CA 49.55 -111.05 845.0 20080401 20200624 714100 99999 NORWAY HOUSE ARPT CA CYNE 53.967 -97.833 223.0 19770607 20200624 714109 99999 AMHERST CA CWAH 45.85 -64.267 23.0 20050101 20050504 714110 99999 WESTERN HEAD NS CA CWWE 43.983000000000004 -64.667 10.0 19770613 20200624 714120 99999 EAST POINT (AUT) PEI CA CWEP 46.45 -61.983000000000004 8.0 19780801 20200522 714130 99999 SPONDIN AGCM CA 51.817 -111.68299999999999 804.0 19820102 20200624 714133 99999 GRAND ETANG (AUTO8) CA WZQ 46.533 -61.083 17.0 19910801 19950605 714140 99999 DUPRE AGCM CA CPDU 54.367 -110.867 556.0 19880622 20200624 714141 99999 POINT ESCUMINAC CA CWPJ 47.067 -64.8 4.0 20050324 20051008 714150 99999 CARIBOU POINT (AUT) NS CA CWBK 45.766999999999996 -62.683 2.0 19850811 20200624 714160 99999 FOURCHU HEAD (MAPS) CA 45.717 -60.233000000000004 10.0 19861016 20020119 714163 99999 SAINT PAUL ISLAND CA 47.233000000000004 -60.133 15.0 19860604 19880502 714164 99999 FOURCHU HEAD(MAPS)& CA 45.717 -60.233000000000004 10.0 19880105 19910124 714170 99999 ENGLEE (AUT) CA CWDA 50.72 -56.12 30.0 19850117 20200624 714180 99999 ST PAUL ISLAND (AUT) NS CA CWEF 47.217 -60.133 27.0 19870601 20200624 714190 99999 HART ISLAND (AUT) NS CA CWRN 45.35 -60.983000000000004 8.0 19850522 20200624 714210 99999 LAC EON QUE CA CWEO 51.867 -63.283 589.0 19800319 20200624 714220 99999 SUTTON JUNC (MARS) CA WXF 45.15 -72.583 237.0 19810601 19870727 714230 99999 HEATH POINT QUE CA CWHP 49.083 -61.7 7.0 19850102 20200624 714233 99999 HEATH POINT (MAPS)& CA 49.083 -61.7 7.0 19880105 19880326 714240 99999 ILE D'ORLEANS CA CWER 47.0 -70.817 4.0 19850701 20200624 714243 99999 ILE D`ORLEANS(AUT) CA 47.0 -70.817 5.0 19880105 19881011 714250 99999 CAP MADELEINE QUE CA CWSF 49.25 -65.317 29.0 19851106 20200624 714253 99999 CAP MADELEINE(MAPS) CA 49.25 -65.333 29.0 19880105 19881011 714260 99999 ILE ROUGE QUE CA CWAF 48.067 -69.55 6.0 19840921 20200624 714263 99999 ILE ROUGE (MAPS) & CA YRI 47.766999999999996 -69.583 130.0 19880105 19930309 714270 99999 POINTE DES MONTS QUE CA CWTG 49.317 -67.381 5.9 19851210 20200624 714280 99999 CAP CHAT QUE CA CWSG 49.1 -66.65 5.0 19850910 20200624 714283 99999 CAP CHAT (MAPS) & CA 49.083 -66.733 35.0 19880105 19881011 714290 99999 CAP D'ESPOIR QUE CA CWRZ 48.417 -64.317 15.0 19850915 20200624 714300 99999 POINT PETRE (AUT) ONT CA CWQP 43.833 -77.15 79.0 19770611 20200624 714310 99999 COBOURG (AUT) ONT CA CWNC 43.95 -78.167 78.0 19770611 20200624 714320 99999 PORT WELLER (AUT) ONT CA CWWZ 43.25 -79.217 79.0 19770611 20200624 714323 99999 WASAGA BEACH(AUTO8) CA 44.516999999999996 -80.017 182.0 19910204 19910924 714324 99999 COLLINGWOOD (AUT8)& CA 44.5 -80.217 180.0 19930829 19941220 714325 99999 BEAUSOLEIL ISL AUT& CA 44.85 -79.867 183.0 19921022 19950104 714330 99999 CARIBOU ISLAND (AUT) ONT CA CWCI 47.333 -85.833 187.0 19800301 20200624 714335 99999 BANCROFT AUTO8 CA 45.067 -77.867 331.0 20000613 20081231 714340 99999 PEAWANUCK (AUT) CA CWWN 54.983000000000004 -85.43299999999999 53.0 19811007 20200624 714350 99999 UPSALA (AUT) ONT CA CWDV 49.033 -90.46700000000001 489.0 19811026 20200624 714360 99999 PETERBOROUGH CA CYPQ 44.23 -78.363 191.4 19801011 20200624 714370 99999 BURLINGTON PIERS (AUT) ONT CA CWWB 43.3 -79.8 77.0 19910501 20200624 714375 99999 BURLINGTON PIERS & CA 43.3 -79.8 78.0 19840621 19910515 714380 99999 WESTERN ISLAND (AUT) ONT CA CWMZ 45.033 -80.367 191.0 19840607 20200624 714390 99999 COVE ISLAND (AUT) ONT CA CWWX 45.333 -81.733 181.0 19850910 20200624 714393 99999 ARNES (AUTO8) CA CWRE 50.8 -96.883 221.0 19881014 19950605 714400 99999 STANDARD AGCM CA CPSD 51.233000000000004 -112.98299999999999 901.0 19770611 20200624 714410 99999 GRETNA (AUT) MAN CA CWGN 49.016999999999996 -97.55 253.0 19811026 20200624 714420 99999 FISHER BRANCH (AUT) MAN CA CWSZ 51.083 -97.55 253.0 19851201 20200624 714430 99999 SWAN RIVER (AUT) MAN CA CWEQ 52.117 -101.23299999999999 335.0 19880105 20200624 714440 99999 WASAGAMING MAN CA CWWP 50.65 -99.93299999999999 627.0 19910920 20200624 714450 99999 GEORGE ISLAND (AUT) MAN CA CWWS 52.817 -97.6 223.0 19840921 20200624 714453 99999 GEORGE ISL (MAPS) & CA 52.8 -97.617 223.0 19880105 19880326 714460 99999 SWIFT CURRENT CDA SASK CA CWVC 50.266999999999996 -107.73299999999999 825.0 19910108 20200624 714470 99999 MELITA MAN CA CWEI 49.283 -100.98299999999999 446.0 19900724 20200624 714480 99999 PINAWA MAN CA CWEA 50.167 -96.05 268.0 19910611 20200624 714490 99999 SPRAGUE CA CWSU 49.016999999999996 -95.6 329.0 20010916 20200624 714500 99999 ELBOW CS SASK CA CWOK 51.133 -106.583 595.0 19810101 20200624 714503 99999 ELBOW (MARS) & CA WFJ 51.133 -106.583 594.0 19831222 19901012 714510 99999 SOUTHEND SASK CA CWJH 56.333 -103.28299999999999 344.0 19900724 20200624 714520 99999 WEYBURN SASK CA CWWF 49.7 -103.8 589.0 19900111 20200624 714530 99999 MAPLE CREEK SASK CA CWMQ 49.9 -109.46700000000001 767.0 19900314 20200624 714540 99999 WASKESIU LAKE SASK CA CWLV 53.917 -106.06700000000001 569.0 19900208 20200624 714550 99999 LUCKY LAKE SASK CA CWLE 50.95 -107.15 665.0 19910108 20200624 714560 99999 MELFORT SASK CA CWFF 52.817 -104.6 490.0 19910108 20200624 714570 99999 BROOKS ALTA CA CWBO 50.55 -111.85 747.0 19910801 20200624 714580 99999 VEGREVILLE ALTA CA CWVI 53.516999999999996 -112.1 639.0 19910801 20200624 714590 99999 LEADER AIRPORT SASK CA CWJX 50.9 -109.5 676.0 19910822 20200624 714600 99999 KILLARNEY (AUT) ONT CA CWBE 45.967 -81.483 196.0 19850910 20200624 714610 99999 EAGLESHAM AGCM CA CPEL 55.8 -117.883 563.0 19840921 20200624 714620 99999 GREAT DUCK ISLAND CA CWNL 45.633 -82.96700000000001 183.0 19850208 20200624 714630 99999 PORT COLBORNE (AUT) ONT CA CWPC 42.867 -79.25 184.0 19860102 20200624 714640 99999 LONG POINT (AUT) CA CWPS 42.55 -80.05 175.0 19860109 20191016 714650 99999 ERIEAU (AUT) ONT CA CWAJ 42.25 -81.9 178.0 19860117 20200624 714660 99999 SOUTHEAST SHOAL (AUT) ONT CA CWNB 41.833 -82.46700000000001 195.0 19851201 20161216 714670 99999 SACHS HARBOUR CLIMATE NWT CA CWSY 72.0 -125.26700000000001 88.0 20050201 20200624 714673 99999 MITCHELL'S BAY CA 42.467 -82.417 186.0 19861120 19880520 714680 99999 KATATOTA ISLAND CA CWKK 49.72 -88.33 260.0 19921008 20200604 714700 99999 LUPIN CS CS CA CWIJ 65.75 -111.25 488.0 20050119 20200624 714710 99999 DAWSON CREEK LWIS CA 55.733000000000004 -120.167 655.0 20080101 20081231 714720 99999 KINDAKUN ROCKS (AUT) BC CA CWQS 53.3 -132.767 14.0 19801001 20200624 714724 99999 MASSET AIRPORT CA CZMT 54.03 -132.13 7.0 20061024 20200624 714725 99999 MASSET A CA 54.016999999999996 -132.11700000000002 5.0 19920122 19921201 714730 99999 SATURNA ISLAND CS CA CWEZ 48.783 -123.03299999999999 24.0 19800914 20200624 714735 99999 VICTORIA HARBOUR CA CYWH 48.42 -123.33 5.0 19921008 20200624 714740 99999 CLINTON CA CWCL 51.15 -121.5 1057.0 19810601 20170320 714750 99999 PORT ALBERNI (AUT) BC CA CWQC 49.317 -124.917 76.0 19810201 20200624 714755 99999 PORT ALBERNI ARPT CA 49.266999999999996 -124.833 2.0 19831222 19950331 714760 99999 GREY ISLET (AUT) CA CWEK 54.567 -130.683 8.0 19880307 20200624 714764 99999 BONILLA ISLAND CA WWL 55.5 -130.63299999999998 17.0 19850701 19860320 714765 99999 GREY ISLET (MAPS) & CA 54.583 -130.7 13.0 19841025 19880326 714770 99999 ROSE SPIT (AUT) BC CA CWRO 54.15 -131.65 7.0 19860425 20200624 714773 99999 ROSE SPIT (MAPS) & CA 54.167 -131.667 7.0 19880105 19880502 714775 99999 ROSE SPIT (MAPS) & CA 54.167 -131.667 7.0 19841025 19860413 714780 99999 SARTINE ISLAND (AUT) CA CWFG 50.817 -128.9 111.0 19850130 20200611 714790 99999 SOLANDER ISLAND (AUT) BC CA CWRU 50.1 -127.93299999999999 99.0 19850102 20200622 714795 99999 WOSS CA 50.217 -126.617 122.0 19910108 19910206 714800 99999 NORMAN WELLS CLIMATE CA CNVQ 65.28 -126.75 94.0 20050201 20200624 714810 99999 EVANSBURG2 AGCM AB CA CPNB 53.573 -115.124 819.0 19860916 20200624 714813 99999 HELMCKEN ISL(MAPS)& CA 50.4 -125.867 19.0 19880105 19880225 714820 99999 CATHEDRAL POINT (AUT) BC CA CWME 52.183 -127.46700000000001 31.0 19850422 20200624 714823 99999 CATHEDRAL PT(MAPS)& CA 52.183 -127.46700000000001 25.0 19880105 19880326 714830 99999 FORT ASSINIBOINE AGCM CA CPFB 54.4 -114.76700000000001 676.0 19870710 20200624 714833 99999 MALAHAT (AUTO8) CA 48.583 -123.583 275.0 19910321 19950414 714835 99999 BIG CREEK(AUTO) CA CWBG 51.25 -123.083 1670.0 19920106 19950523 714840 99999 BONILLA ISLAND (AUT) BC CA CWWL 53.5 -130.63299999999998 15.0 19860331 20200624 714844 99999 CUMSHEWA ISL (MAPS) CA 53.033 -131.6 17.0 19880105 20080928 714850 99999 HERBERT ISLAND CA CWLP 50.933 -127.65 1605.0 19850102 20200624 714860 99999 JASPER WARDEN ALTA CA CWJW 52.933 -118.03299999999999 1020.0 19910801 20200624 714870 99999 ASSINIBOIA AIRPORT SASK CA CWJI 49.733000000000004 -105.93299999999999 726.0 19910911 20200624 714880 99999 KEY LAKE A CA CYKJ 57.25 -105.6 514.0 19940121 20200624 714890 99999 SCOTT CDA CA 52.367 -108.833 660.0 20010916 20200624 714900 99999 ROBERTSON LAKE (AUT) NU CA CWTD 65.083 -102.417 244.0 19800301 20200624 714910 99999 FORT GOOD HOPE CS CA 66.233 -128.65 82.0 20010916 20200624 714920 99999 TUKTUT NOGAIT NWT CA CXTN 69.183 -122.35 522.0 20010916 20200624 714930 99999 PARRSBORO CA CAPR 45.417 -64.35 30.9 20050101 20200624 714940 99999 THETFORD MINES RCS CA CMTH 46.05 -71.267 430.0 20070807 20200624 714950 99999 NEIR AGDM CA 51.367 -114.083 1145.0 20040921 20200624 714960 99999 SASKATOON RCS CA 52.167 -106.71700000000001 504.0 19810706 20200624 714963 99999 LUPIN ARPT (SAWR) CA CYWO 65.767 -111.25 494.0 19820624 20061031 714970 99999 FORT LIARD NWT CA CWJL 60.233000000000004 -123.46700000000001 213.0 19920219 20200624 714980 99999 GLEICHEN AGCM CA CPGI 50.933 -112.93299999999999 907.0 19901104 20200624 714990 99999 KEY LAKE CA 57.25 -105.617 514.0 19910812 20200624 714999 99999 DUBAWNT LAKE CA CWJZ 63.233000000000004 -101.76700000000001 237.0 20050101 20100731 715000 99999 GLENEVIS AGCM CA 53.817 -114.53299999999999 670.0 19860205 20200624 715010 99999 HERSCHEL ISLAND YT CA CWJN 69.567 -138.917 1.0 19861016 20200624 715020 99999 PELLY ISLAND NWT CA CWND 69.617 -135.433 17.0 19861101 20200624 715030 99999 DELINE CS NWT CA CXDE 65.217 -123.43299999999999 213.0 19861101 20200624 715040 99999 THORSBY AGCM CA 53.217 -113.9 754.0 19880105 20200624 715050 99999 HAINES JUNCTION CA CWHT 60.766999999999996 -137.583 595.0 19911106 20200624 715060 99999 ROCK RIVER CA CWRR 66.983 -136.217 731.0 19910611 20200624 715070 99999 HAWK HILLS AGCM CA CPHW 57.25 -117.28299999999999 455.0 19910812 20200624 715080 99999 TORONTO CITY ONT CA 43.667 -79.4 113.0 20040803 20200624 715090 99999 LETHBRIDGE DEMO FARM AGDM ALTA CA CPQL 49.683 -112.75 903.0 20040921 20200624 715100 99999 ROSETOWN EAST SASK CA CWRJ 51.567 -107.917 586.0 19910911 20200624 715110 99999 WATROUS EAST SASK CA CWIW 51.667 -105.4 526.0 19910801 20200624 715120 99999 LONGUE POINTE DE MINGAN QUE CA CWBT 50.271 -64.226 11.0 19940201 20200624 715130 99999 NATASHQUAN A CA CYNA 50.183 -61.783 11.9 19951101 20200624 715131 99999 SASKATOON KERNEN FARM CA CWCD 52.15 -106.55 510.0 20050101 20060225 715140 99999 REGINA RCS SASK CA CWDJ 50.433 -104.667 577.0 19960301 20200624 715150 99999 INDIAN HEAD CDA SASK CA CWBD 50.55 -103.65 579.0 20010916 20200624 715160 99999 CORONACH SPC SASK CA CWAQ 49.05 -105.48299999999999 756.0 19960501 20200624 715170 99999 BLOOD TRIBE AGDM ALTA CA CPBT 49.567 -113.05 980.0 20040921 20200624 715180 99999 ENCHANT AGDM ALTA CA CPEH 50.183 -112.43299999999999 801.0 20040921 20200624 715190 99999 BOW ISLAND IRRIGATION AGDM CA CPXL 49.867 -111.383 799.0 20040921 20200624 715200 99999 LAC BENOIT QUE CA CWDE 51.533 -71.117 549.0 19961101 20200624 715210 99999 MANOUANE EST QUE CA CWDP 50.65 -70.517 497.0 19941003 20200624 715220 99999 CHUTES DES PASSES QUE CA CWDT 49.833 -71.167 398.0 19940901 20200624 715230 99999 CHAMOUCHOUANE QUE CA CWEE 49.266999999999996 -73.35 304.0 19941028 20200624 715240 99999 L'ASSOMPTION QUE CA CWEW 45.8 -73.433 21.0 19941001 20200624 715250 99999 SEVEN PERSONS AGDM ALTA CA CPSV 49.917 -110.917 766.0 20041005 20200624 715260 99999 STRATHMORE AGDM ALTA CA CPST 51.033 -113.28299999999999 967.0 20041005 20200624 715270 99999 DRYDEN RGNL CA CYHD 49.832 -92.744 412.7 19620101 20200624 715274 99999 SIMCOE (MARS) & CA 42.85 -80.267 239.0 19770827 19910124 715275 99999 LONG POINT (MAPS) & CA 42.567 -80.05 175.0 19860101 19860425 715280 99999 IRON SPRINGS AGDM ALTA CA CPIR 49.9 -112.73299999999999 858.0 20040921 20200624 715290 99999 LUTSELK'E CS NWT CA CXLU 62.417 -110.667 179.0 20030618 20170716 715320 99999 MUSKOKA AWOS ONT CA CZQA 44.967 -79.3 282.0 20050122 20200624 715330 99999 BELLA COOLA AIRPORT CA CVBD 52.383 -126.75 35.7 20030617 20200624 715340 99999 BORDEN CA CYBN 44.25 -79.917 223.0 20030617 20200624 715350 99999 FINCASTLE AGDM ALTA CA CPFI 49.8 -112.03299999999999 833.0 20040921 20200624 715360 99999 RAYMOND AGDM ALTA CA CPRY 49.483000000000004 -112.68299999999999 937.0 20040805 20200624 715370 99999 ROSEMARY AGDM CA CPRO 50.82 -112.05 714.0 20040804 20200624 715380 99999 WINDSOR CA CYQG 42.276 -82.956 189.6 19550702 20200624 715390 99999 MOOSE JAW CS SASK CA CZMJ 50.317 -105.55 577.0 20010916 20200624 715400 99999 HESPERO AGCM CA 52.3 -114.48299999999999 965.0 20080721 20200624 715410 99999 JEAN COTE AGCM CA 55.9 -117.117 638.0 20080721 20200624 715420 99999 LA CRETE AGCM CA 58.167 -116.333 323.0 20080721 20200624 715430 99999 LA GLACE AGCM CA CPLG 55.417 -119.25 760.0 20080822 20200624 715440 99999 LEGAL AGCM CA 54.0 -113.46700000000001 680.0 20080721 20200624 715450 99999 RADWAY AGCM CA 53.983000000000004 -112.867 625.0 20080721 20200624 715460 99999 RYCROFT AGCM CA CPRF 55.766999999999996 -118.667 575.0 20080721 20200624 715470 99999 SAVANNA AGCM CA CPSW 56.067 -119.333 703.0 20080721 20200624 715480 99999 ST LINA AGCM CA 54.266999999999996 -111.45 619.0 20080721 20200624 715490 99999 TAWATINAW AGCM CA 54.283 -113.51700000000001 611.0 20080721 20200624 715500 99999 DAUPHIN CS MAN CA CWZT 51.1 -100.05 305.0 19961101 20200624 715510 99999 OUTLOOK PFRA SASK CA CWYE 51.483000000000004 -107.05 541.0 19961101 20200624 715520 99999 VICTORIA BEACH (AUT) MAN CA CWII 50.7 -96.56700000000001 220.0 19960801 20200624 715530 99999 ROBLIN MAN CA CWXB 51.183 -101.367 540.0 20010803 20200624 715540 99999 POINTE-AU-PERE (INRS) CA 48.516999999999996 -68.467 5.0 20010916 20200624 715550 99999 STAVELY AAFC CA CWXN 50.183 -113.883 1364.0 20010916 20200624 715560 99999 LAST MOUNTAIN CS CA CWXG 51.417 -105.25 497.0 20010916 20200624 715570 99999 MERRITT CA 50.1 -120.76700000000001 591.0 19970401 20200624 715580 99999 ST ANTHONY NFLD CA CWDW 51.383 -56.1 29.0 20030617 20200624 715590 99999 ESTEVAN CA CPJM 49.217 -102.96700000000001 580.6 20111128 20200624 715600 99999 EMERSON AUT MAN CA 49.0 -97.23299999999999 242.0 20010916 20200624 715620 99999 CYPRESS BOWL SNOWBOARD CA 49.383 -123.2 1180.0 20100129 20100805 715630 99999 DELTA MARCH CS CA CZUG 50.183 -98.383 248.0 20010916 20110518 715640 99999 MORDEN CDA CS MAN CA CXMD 49.183 -98.083 298.0 20010916 20200624 715650 99999 LEEDALE AGDM CA CNLD 52.55 -114.47 947.0 20050322 20200624 715660 99999 TOMAHAWK AGDM CA CNTK 53.43 -114.72 814.0 20050322 20200624 715670 99999 LINDBERGH AGDM CA CNLB 53.95 -110.58 630.0 20050322 20200624 715680 99999 FANNY ISLAND CA CXFA 50.45 -125.98299999999999 8.0 20030617 20200624 715690 99999 BRATT'S LAKE UA SASK CA CXBK 50.2 -104.7 580.0 20010916 20200624 715700 99999 GREAT FALL CLIMO CA CPGF 50.522 -95.977 253.0 20050218 20200624 715710 99999 SPIRIT RIVER AUTO STATION ALTA CA CXSR 55.683 -119.23299999999999 1015.0 20010916 20180321 715720 99999 KELSEY DAM CS MAN CA CZKD 56.033 -96.5 183.0 20030617 20200624 715730 99999 DELHI CS ONT CA CXDI 42.867 -80.55 232.0 20010916 20200624 715740 99999 BATHURST CA CZBF 47.63 -65.73899999999999 58.8 20040803 20200624 715750 99999 CAPE DORSET CLIMATE CA CNCD 64.23 -76.53 50.0 20050507 20200624 715760 99999 POND INLET CLIMO CA CNDT 72.7 -77.95 65.0 20040803 20200624 715770 99999 GIMLI HARBOUR CS MAN CA CXGH 50.617 -96.96700000000001 217.0 20010916 20200624 715780 99999 BEAUPORT QUE CA CXBO 46.833 -71.183 10.0 20030617 20200624 715790 99999 WINNIPEG THE FORKS MAN CA CXWN 49.883 -97.133 230.0 20010916 20200624 715800 99999 TALOYOAK A NU CA 69.533 -93.56700000000001 28.0 20030617 20200624 715810 99999 ALGONQUIN PARK EAST GATE CA CTNK 45.533 -78.267 397.0 20050201 20200624 715820 99999 BELLA BELLA CAMPBELL CA CBBC 52.183 -128.15 43.0 20030330 20200624 715830 99999 QAVVIK LAKE NWT CA 68.25 -122.1 548.0 20010916 20110311 715840 99999 HAVRE ST PIERRE CA 50.266999999999996 -63.6 37.0 20030617 20200624 715850 99999 FORT MCMURRAY CS ALTA CA CXMM 56.65 -111.21700000000001 369.0 20010825 20200624 715860 99999 LA RONGE RCS SASK CA CXOX 55.15 -105.26700000000001 379.0 20010829 20200624 715870 99999 SANDY LAKE A CA 53.067 -93.35 289.9 20010701 20200624 715880 99999 ROCKY HARBOUR CS NFLD CA CXRH 49.567 -57.867 68.0 20010916 20200624 715890 99999 TERRA NOVA NAT PARK CS NFLD CA CXTP 48.55 -53.967 107.0 20010702 20200624 715900 99999 EDMUNSTON CA CERM 47.42 -68.32 154.0 20040810 20200624 715901 99999 MALAY FALLS CA CXMY 44.98 -62.48 40.0 20050217 20200624 715910 99999 MCNABS ISLAND (AUT) CA CXMI 44.6 -63.53 15.0 20040831 20181129 715920 99999 ARCTIC BAY CS CA CXAT 73.0 -85.01700000000001 10.0 20030617 20200624 715925 99999 ARTIC BAY CA CYAB 73.0 -85.03299999999999 22.0 20110113 20200624 715930 99999 PRAIRIE RIVER ALTA CA CXPV 58.617 -111.667 212.0 20040405 20091007 715970 99999 GJOA HAVEN CA CYHK 68.63600000000001 -95.85 46.3 20030617 20200624 715971 99999 GRAND ETANG CA CWZQ 46.55 -61.05 13.0 20050101 20200624 715980 99999 BAS CARAQUET NB CA CWXS 47.8 -64.833 5.0 20030617 20200624 715990 99999 KEJIMKUJIK 1 NS CA CWKG 44.417 -65.2 165.0 19970501 20200624 716000 99999 SABLE ISLAND NS CA CESA 43.917 -60.0 5.0 19550702 20171024 716004 99999 SABLE ISLAND CA 43.933 -60.0 4.0 19790131 20170629 716005 99999 SABLE ISLAND (MAN) CA 43.917 -59.917 4.0 19920823 19940720 716010 99999 SHEARWATER CA CYAW 44.64 -63.498999999999995 50.9 19540101 20200624 716013 99999 DIGBY CA CYID 44.54600000000001 -65.789 152.1 19900111 19960602 716015 99999 SHEARWATER JETTY CA CWZU 44.63 -63.52 6.0 19860110 20200408 716016 99999 SHEARWATER AUTO CA CWAW 44.63 -63.5 53.0 19850111 20100624 716021 99999 19550702 19630731 716030 99999 YARMOUTH CA CYQI 43.827 -66.08800000000001 43.0 19490101 20200624 716033 99999 BRIER ISLAND(AUT) CA WVU 44.283 -66.333 16.0 19920408 19950605 716040 99999 NORTH MOUNTAIN CS CA CXNM 46.817 -60.667 439.0 19820101 20200624 716041 99999 EDDY POINT CA 45.516999999999996 -61.25 66.0 19550702 19630731 716050 99999 PORT MELLON CA CVOM 49.516999999999996 -123.48299999999999 123.0 20030617 20200624 716053 99999 PORT HAWKESBURY CA 45.65 -61.367 118.0 19870618 19960601 716055 99999 CAPE GEORGE (AUTO8) CA 45.867 -61.9 120.0 19940818 19950606 716060 99999 KAPUSKASING CA 49.4 -82.45 218.0 20040831 20081231 716070 99999 ST.STEPHEN (AUT) CA CWSS 45.217 -67.25 26.0 19820101 20191219 716080 99999 VANCOUVER SEA ISLAND CCG CA CVVR 49.183 -123.18299999999999 2.1 19820102 20200624 716090 99999 SAINT JOHN CA CYSJ 45.317 -65.883 108.8 19550702 20200624 716094 99999 POINT LEPREAU CA CWPE 45.067 -66.467 1.0 19911106 19950605 716100 99999 SHERBROOKE CA CYSC 45.43899999999999 -71.691 241.4 19620501 20200624 716110 99999 LENOXVILLE QUE CA CWQH 45.367 -71.817 181.0 19960301 20200624 716120 99999 MCTAVISH QUE CA CWTA 45.5 -73.567 73.0 19941201 20200624 716140 99999 STE CLOTHILDE QUE CA CWIT 45.167 -73.667 53.0 19911101 20200624 716150 99999 BRITT (AUT) CA CWBI 45.8 -80.53 190.0 20170228 20170315 716160 99999 LEMIEUX QUE CA CMLU 46.3 -72.05 97.0 19911106 20200624 716170 99999 JONQUIERE QUE CA CWJO 48.417 -71.133 128.0 19920106 20200624 716180 99999 CHURCHILL CA CYYQ 58.739 -94.066 29.3 19940211 20200624 716189 99999 MONT-ORFORD CA CWHY 45.317 -72.25 851.0 20050101 20070504 716190 99999 NEW CARLISLE 1 QUE CA CWOC 48.012 -65.332 46.4 19940201 20200624 716200 99999 KINGSTON CA CYGK 44.225 -76.597 93.0 19820101 20200624 716204 99999 KINGSTON (MARS) CA 44.217 -76.6 93.0 19820101 19880830 716205 99999 SAINT LIN LAURENTID CA 45.85 -73.7 50.0 20050114 20070614 716210 99999 TRENTON CA CYTR 44.117 -77.533 86.3 19550703 20200624 716215 99999 HARRINGTON CA CMHN 45.8 -74.63 168.0 20050114 20061201 716220 99999 LONDON CS ONT CA CWSN 43.033 -81.15 278.0 20040803 20200624 716225 99999 LOCHABER CA 45.633 -75.2 105.0 20050114 20070614 716230 99999 LONDON CA CYXU 43.036 -81.154 278.0 19550702 20200624 716235 99999 SAINT ANDRE AVELIN CA 45.8 -75.067 195.0 20050114 20130425 716240 99999 LESTER B PEARSON INTL CA CYYZ 43.677 -79.631 173.4 19500101 20200624 716245 99999 COTE-STE-CATHERINE CA CWCS 45.42 -73.57 17.0 19820103 19820804 716246 99999 HAMILTON CA 43.167 -79.933 239.0 19820101 19831206 716248 99999 ST CATHARINES CA 43.183 -79.183 98.0 19820101 19831205 716249 99999 TORONTO HEADLAND (AUT) CA 43.37 -79.21 87.0 19880513 19941220 716250 99999 PETAWAWA CA CYWA 45.952 -77.319 130.1 19780101 20200624 716251 99999 TRENT HILLS CA 44.317 -77.633 139.0 19550702 19630731 716260 99999 MCGILL RADAR CA CWMN 45.42 -73.93 63.0 19990403 20061122 716261 99999 DARLINGTON CA 43.867 -78.783 93.0 19770701 19801121 716266 99999 COBOURG CA WNC 43.95 -78.167 78.0 19770701 19800809 716268 99999 PT PETRE CA 43.833 -77.15 81.0 19770701 19800625 716269 99999 PORT WELLER (AUT) CA 43.25 -79.22 79.0 19770701 19830405 716270 94792 MONTREAL/TRUDEAU INT CA QC CYUL 45.467 -73.733 36.0 19550101 20200624 716270 99999 PIERRE ELLIOTT TRUDEAU INTL CA CYUL 45.467 -73.733 36.0 20000101 20041231 716275 99999 ST HUBERT CA 45.516999999999996 -73.417 27.0 19540101 19860403 716276 99999 SUTTON JUNCTION/AUT CA WXF 45.15 -72.583 237.0 19770701 19810621 716278 99999 KUUJJUARAPIK ARPT CA CYGW 55.283 -77.75 10.0 19770701 20200624 716279 99999 GATINEAU CA CYND 45.522 -75.564 64.3 19800423 20200624 716280 99999 OTTAWA MACDONALD CARTIER INTL CA CYOW 45.323 -75.669 114.0 19500101 20200624 716285 99999 OTTAWA STOLPORT CA 45.467 -75.65 58.0 19921022 19941220 716290 99999 FORT ROSS CA CNFR 72.017 -94.2 10.0 19801015 20200624 716291 99999 KILLALOE/BONNECHERE CA 45.667 -77.6 181.0 19550702 19630731 716293 99999 PETERBOROUGH ARPT CA 44.233000000000004 -78.367 191.0 19880105 19930308 716300 99999 MUSKOKA CA CYQA 44.975 -79.303 281.9 19550702 20200624 716303 99999 EGBERT (MAPS) CA CWET 44.233000000000004 -79.783 251.0 19910207 19930831 716305 99999 LAGOON CITY & CA 44.533 -79.217 221.0 19930202 19941220 716310 99999 MOUNT FOREST (AUT) ONT CA CWLS 43.983000000000004 -80.75 415.0 19620101 20200624 716313 99999 NORTH BAY (READAC) CA 46.367 -79.417 370.0 19910611 19910626 716314 99999 MT FOREST CA 43.983000000000004 -80.75 415.0 19791101 19910204 716315 99999 GODERICH CA 43.766999999999996 -81.7 213.0 19770701 19801031 716316 99999 GODERICH (AUTO8) CA 43.766999999999996 -81.7 213.0 19811124 19830405 716320 99999 LYNN LAKE RCS CA CPLE 56.85 -101.06700000000001 354.0 19770701 20200624 716321 99999 CENTRALIA HURON CA 43.3 -81.517 253.0 19550702 19630731 716330 99999 WIARTON A CA CYVV 44.75 -81.1 222.2 19500101 20200624 716333 99999 WIARTON (READAC) CA CZVV 44.75 -81.117 223.0 19910611 19950728 716340 99999 RED PINES CA CARP 47.433 -65.583 124.0 19930520 20200624 716341 99999 SARNIA CA 43.0 -82.3 181.0 19770701 19800605 716344 99999 SARNIA AIRPORT & CA 43.0 -82.3 181.0 19800611 19930308 716353 99999 GREAT BEND (MAPS) CA 43.333 -81.733 190.0 19861120 19871204 716360 99999 CAMPSIE AUTO CA CPZC 54.131 -111.678 647.0 20140404 20200624 716363 99999 BELLE RIVER CA 42.3 -82.7 184.0 19861120 19941220 716370 99999 RANFURLY AUTO CA 53.417 -111.73299999999999 687.0 20140404 20200624 716373 99999 OLIPHANT\ONT CA 44.733000000000004 -81.283 182.0 19861205 19941220 716380 99999 SECHELT CA CVOU 49.45 -123.7 86.0 20030917 20200624 716390 99999 TORONTO BUTTONVILLE A ONT CA 43.867 -79.367 198.0 20040824 20190103 716400 99999 LAKE SUPERIOR PROVINCIAL PARK CA 47.717 -84.81700000000001 400.6 20140404 20200624 716420 99999 CHAPLEAU CA CYLD 47.82 -83.34700000000001 446.5 19961101 20200624 716440 99999 KELOWNA UBCO CA 49.933 -119.4 456.0 20140404 20200624 716445 99999 FREDERICTON AQUATIC CENTRE C/S CA CWZF 45.97 -66.65 8.0 20050524 20151104 716600 99999 CRANBROOK AIRPORT AUTO CA 49.617 -115.78299999999999 929.7 20140404 20200624 716630 99999 WASECA RCS CA 53.133 -109.4 640.0 20140404 20200624 716650 99999 NAIN CA CWFP 56.55 -61.68 8.0 20050101 20200624 716660 99999 BUCTOUCHE CDA CS CA CABT 46.42 -64.77 36.0 20050724 20200624 716670 99999 THUNDER BAY CS CA CZTB 48.37 -89.32 199.0 20050101 20200624 716680 99999 FREDERICKTON CDA CS CA CAFC 45.92 -66.6 35.0 20050724 20200624 716690 99999 PEKISKO CA CNPK 50.367 -114.417 1415.0 20050524 20200624 716700 99999 KOUCHIBOUGUAC CS CA CAKC 46.77 -65.0 34.0 20050628 20200624 716710 99999 KENTVILLE CDA CA CXKT 45.07 -64.48 49.0 20050101 20200624 716720 99999 PETERBOROUGH TRENT U CA CTPQ 44.35 -78.3 216.0 20050724 20200624 716730 99999 FERINTOSH AGCM CA 52.75 -112.85 795.0 20080401 20200624 716740 99999 FORESTBURG AGCM CA 52.55 -112.117 721.0 20071124 20200624 716750 99999 BIG TROUT LAKE CA CYTL 53.833 -89.867 224.0 19941116 20200624 716780 99999 MUSKRAT DAM CA 53.433 -91.76700000000001 277.7 20121116 20200624 716790 99999 OOTSA LAKESKINS LAKE CA CVSL 53.77 -125.98 861.0 20051017 20200624 716800 99999 LOWER CARP LAKE NWT CA CXLC 63.6 -113.85 373.0 20010916 20181004 716810 99999 ASHCROFT CA CVAS 50.7 -121.26700000000001 327.0 20030405 20200624 716820 99999 LINDBURG LANDING NWT CA CXLL 61.117 -122.85 183.0 20010916 20200624 716830 99999 TRAIL VALLEY NWT CA CXTV 68.75 -133.5 85.0 20040713 20200624 716840 99999 TIMISKAMING RGNL / EARLTON CA CYXR 47.7 -79.85 243.2 20060101 20200624 716841 99999 WHISTLER MOUNTAIN HIGH LEVEL CA CVOA 50.083 -122.95 1640.0 20050724 20100623 716850 99999 REVELSTOKE CA CVRA 50.967 -118.18299999999999 445.0 20080101 20130905 716851 99999 WHISTLER MOUNTAIN HIGH LEVEL R CA CVOH 50.067 -122.95 1690.0 20060403 20100810 716860 99999 DEASE LAKE CA CYDL 58.417 -130.033 802.8 20050101 20200624 716861 99999 WHISTLER MT LOW LVL CA CVOB 50.083 -122.98299999999999 933.0 20050724 20100811 716870 99999 WHISTLER-NESTERS CA CVOC 50.133 -122.95 659.0 20050101 20200624 716880 99999 CALLAGHAN VALLEY CA CVOD 50.15 -123.117 884.0 20050405 20200624 716890 99999 FORT MCMURRAY AIRPORT CA CYMM 56.65 -111.21700000000001 369.1 20050101 20200624 716891 99999 CYPRESS BOWL NORTH CA CVOE 49.4 -123.2 953.0 20070228 20100617 716900 99999 TEEPEE CREEK AGCM CA CPTC 55.35 -118.4 670.0 20080721 20200624 716910 99999 BAIE COMEAU CA CYBC 49.133 -68.2 21.6 20040928 20200624 716920 99999 MARTICOT ISLAND CA CWTM 47.333 -54.583 22.0 20050921 20180722 716930 99999 CYPRESS BOWL SOUTH CA CVOG 49.383 -123.2 886.0 20070401 20100331 716940 99999 BEATRICE CLIMATE CA CTBT 45.133 -79.4 297.0 20051102 20200624 716950 99999 THE PAS CLIMATE CA CPQD 53.967 -101.1 274.0 20051027 20200624 716960 99999 CHURCHILL CLIMATE CA CPYQ 58.72 -94.07 29.0 20060201 20200624 716970 99999 OSHAWA CA CYOO 43.923 -78.895 139.9 20080101 20200624 716971 99999 LANSDOWNE HOUSE LWIS CA CYLH 52.2 -87.93 254.0 20061024 20200624 716990 99999 POINT LEPREAU CS CA CWPE 45.067 -66.45 6.0 20040921 20200624 717000 99999 FREDERICTON CA CYFC 45.867 -66.533 20.7 19550702 20200624 717010 99999 GAGETOWN (CAN-MIL) CA CYCX 45.833 -66.433 51.0 19770704 20200624 717020 99999 SUMMERSIDE CA CWSD 46.433 -63.833 12.0 19500101 20200624 717024 99999 NORTH POINT (AUTO8) CA 47.083 -64.0 15.0 19911106 19950605 717030 99999 ST LEONARD CA CYSL 47.15 -67.833 241.7 19850319 20140630 717040 99999 SARNIA CA CYZR 43.0 -82.31700000000001 181.1 20040321 20200624 717041 99999 CAPE NORTH CA 47.016999999999996 -60.45 47.0 19581002 19590228 717050 99999 GREATER MONCTON INTL CA CYQM 46.111999999999995 -64.679 70.7 19420101 20200624 717055 99999 PT. ESCUMINAC(MAPS) CA 47.067 -64.8 5.0 19860117 19880722 717060 99999 CHARLOTTETOWN CA CYYG 46.283 -63.133 48.8 19550702 20200624 717063 99999 SUMMERSIDE CA CYSU 46.441 -63.833999999999996 17.1 19910911 20130430 717070 99999 SYDNEY A CA CYQY 46.167 -60.05 61.9 19420101 20200624 717075 99999 INVERNESS (AMOS) CA WVE 46.233000000000004 -61.3 41.0 19770701 19830429 717080 99999 QUEBEC JEAN LESAGE INTL CA CYQB 46.791000000000004 -71.393 74.4 20050104 20200624 717081 99999 19550702 19560731 717090 99999 ILES DE LA MADELEINE A CA CYGR 47.417 -61.783 10.7 19770701 20200624 717091 99999 19550702 19630731 717093 99999 ILES DE LA MADELEIN CA 47.433 -61.766999999999996 8.0 19911101 19930701 717094 99999 ILES DE LA MADELEIN CA 47.417 -61.783 10.0 19781205 19870513 717100 99999 ILES DE LA MADELEINE QUE CA CWGR 47.417 -61.766999999999996 8.0 19930701 20200624 717101 99999 COPPER LAKE CA 45.383 -61.967 96.0 19550702 19620228 717110 99999 CHARLO CA NB CYCL 47.983000000000004 -66.333 40.0 19770701 20031102 717111 99999 LAC MEGANTIC CA 45.583 -70.867 415.0 19550702 19620430 717115 99999 ST LEONARD AUTO8 CA 47.15 -67.817 49.0 19950911 20041109 717120 99999 ST ANICET 1 QUE CA CWCB 45.117 -74.283 49.0 19940201 20200624 717130 99999 LA POCATIERE QUE CA CWST 47.35 -70.017 31.0 19960301 20200624 717134 99999 CHARLEVOIX CA CYML 47.598 -70.22399999999999 297.8 19830801 20180610 717140 99999 QUEBEC/JEAN LESAGE INTL QUE CA CWQB 46.783 -71.383 74.0 19550702 20200624 717144 99999 VILLEROY RADAR CA 46.45 -71.917 0.0 19911018 19911126 717145 99999 TROIS RIVIERES CA CWRQ 46.38 -72.62 11.0 19770824 19771104 717146 99999 NICOLET (AUTOB) CA 46.217 -72.65 10.0 19910320 19910611 717150 99999 RIVIERE DU LOUP QUE CA CWNH 47.8 -69.533 147.0 19770701 20200624 717154 99999 RIVIERE DU LOUP & CA 47.8 -69.55 149.0 19790131 19790207 717155 99999 RIVIERE DU LOUP & CA 47.8 -69.55 149.0 19811124 19830501 717160 99999 VALCARTIER AIRPORT CA CYOY 46.9 -71.5 168.0 19781030 20200624 717161 99999 CAMPBELLTON CA 48.0 -66.667 8.0 19550702 19630731 717170 99999 MIRAMICHI A CA 47.0 -65.45 33.0 19540101 20041231 717173 99999 BATHURST CA 47.617 -65.75 59.0 19910204 20081231 717174 99999 CHATHAM (AUTO8) CA 47.0 -65.467 34.0 19850405 20050810 717175 99999 BAS CARAQUET CA CWXS 47.8 -64.833 5.0 19930724 19950605 717180 99999 MONT JOLI A CA CYYY 48.6 -68.217 52.4 19550702 20200624 717190 99999 MISCOU ISLAND (AUT) CA CWMI 48.016999999999996 -64.5 4.0 19770701 20200624 717200 99999 POWELL RIVER CA CVOP 49.833 -124.48299999999999 125.0 19770701 20200624 717210 99999 MANIWAKI AIRPORT CA CWMJ 46.266999999999996 -76.0 200.0 19930801 20200624 717220 99999 MANIWAKI UA CA CWMW 46.3 -76.0 189.0 19550702 20060307 717230 99999 NICOLET QUE CA CWNQ 46.217 -72.65 8.0 19910611 20200624 717234 99999 LA TUQUE A CA YLQ 47.4 -72.783 167.0 19850702 19851227 717240 99999 TROIS RIVIERES QUE CA CWTY 46.35 -72.5 6.0 19911106 20200624 717250 99999 VAL D OR CA CYVO 48.053000000000004 -77.783 337.4 19550702 20200624 717255 99999 ROUYN NORANDA CA CYUY 48.206 -78.836 301.1 19770701 20200624 717260 99999 PARENT QUE CA CWPK 47.917 -74.617 445.0 19550702 20200624 717263 99999 KANGIQSUJUAQ ARPT CA 61.583 -71.933 151.0 19900314 19910204 717270 99999 BAGOTVILLE CA CYBG 48.331 -70.99600000000001 159.1 19500102 20200624 717280 99999 ROBERVAL A CA CYRJ 48.516999999999996 -72.267 178.6 19571011 20200624 717300 99999 SUDBURY CA CYSB 46.625 -80.79899999999999 347.8 19550702 20200624 717310 99999 NORTH BAY CA CYYB 46.364 -79.423 370.3 19500101 20200624 717313 99999 NORTH BAY (READAC) CA CZNB 46.367 -79.417 364.0 19910711 19930805 717320 99999 BARRAGE TEMISCAMINGUE CA CWBA 46.717 -79.1 181.0 20010705 20200624 717330 99999 SUDBURY CLIMATE CA 46.633 -80.8 348.0 19550702 20200624 717334 99999 ELLIOT LAKE MUNI CA CYEL 46.351000000000006 -82.561 331.3 19780111 20120402 717340 99999 ROUYN QUE CA CWUY 48.233000000000004 -79.033 318.0 19920505 20200624 717350 99999 EARLTON CA 47.7 -79.85 243.0 19550702 20081231 717355 99999 NIPISSING CA 46.317 -79.483 0.0 19880725 19941220 717360 99999 PINCHER CREEK CLIMATE CA CPCK 49.516999999999996 -114.0 1190.0 19921216 20200624 717361 99999 ROQUEMAURE CA CWGQ 48.633 -79.45 269.0 20050112 20060204 717365 99999 RAWSON LAKE (AUT) CA CTRA 49.65 -93.71700000000001 435.0 20090923 20200624 717366 99999 ROYAL ISLAND (AUT) CA 49.467 -94.76700000000001 329.0 20070628 20190415 717367 99999 NORTHEAST MARGAREE (AUT) CA CWNS 46.367 -60.983000000000004 46.0 20101115 20200624 717370 99999 SAINT-MICHEL-DES-SAINTS CA CMMY 46.817 -74.1 430.0 20030617 20200624 717371 99999 BROADVIEW CA 50.383 -102.68299999999999 602.0 20050317 20050811 717374 99999 CHAPLEAU ARPT(SAWR) CA CYLD 47.65 -83.35 448.0 19780814 19980510 717375 99999 SAULT STE MARIE & CA 46.483000000000004 -84.5 188.0 19770701 19860403 717380 99999 WAWA CA CYXZ 47.967 -84.787 287.1 19770701 20200624 717381 99999 WHITE RIVER CA CYWR 48.6 -85.28299999999999 374.0 19550702 19630731 717385 99999 WAWA AUT CA CWXZ 47.967 -84.78299999999999 287.0 19921022 20150708 717386 99999 CORNER BROOK CA CWKB 48.933 -57.917 152.0 20090801 20200624 717390 99999 TIMMINS VICTOR POWER A CA CYTS 48.57 -81.377 294.7 19550702 20200624 717393 99999 WELCOME ISL (AUTO8) CA WEC 48.367 -89.117 209.0 19890908 19950605 717410 99999 KAMLOOPS AUTO CA CZKA 50.7 -120.45 345.0 20061010 20200624 717420 99999 GANDER AIRPORT CS CA CXGD 48.93 -54.57 151.0 20050724 20200624 717430 99999 RIVIERE AUX FEUILLES CA CMRF 57.92 -72.98 171.0 20060403 20200624 717440 99999 MIRAMICHI RCS CA CACQ 47.016999999999996 -65.467 33.0 20060101 20200624 717460 99999 SARNIA CLIMATE CA CTZR 43.0 -82.3 181.0 20060201 20200624 717470 99999 ATIKOKAN (AUT) ONT CA CWCH 48.75 -91.617 389.0 20010916 20200624 717480 99999 GIMLI CLIMATE CA CPGH 50.633 -97.05 230.0 19770701 20200624 717483 99999 ATIKOKAN (AUT) & CA 48.766999999999996 -91.633 429.0 19881208 19901101 717485 99999 BIG THUNDER CA WQU 48.283 -89.383 299.0 19950210 19950320 717490 99999 THUNDER BAY A CA CYQT 48.367 -89.333 199.0 19550702 20200624 717493 99999 TERRACE BAY CA CYTJ 48.813 -87.09899999999999 289.6 19820806 20200624 717495 99999 UPSALA (AUT) CA 49.03 -90.47 489.0 19770701 19950421 717496 99999 PUKASKWA PARK CA CWCJ 48.6 -86.3 206.0 19930520 19960604 717500 54802 PUKASKWA CA ON CWCJ 48.583 -86.3 208.0 20050101 20200624 717500 99999 PUKASKWA (AUT) ONT CA CWCJ 48.583 -86.28299999999999 208.0 19961101 20041231 717510 99999 WELCOME ISLAND (AUT) CA CWEC 48.367 -89.117 211.0 19961101 20200624 717520 99999 WELLAND PELHAM CA CTWL 42.97 -79.33 178.0 20060201 20200624 717530 99999 UPPER STEWIACKE RCS CA CAOH 45.23 -63.05 24.0 20060201 20200624 717540 99999 NORTH BATTLEFORD RCS CA CPQW 52.77 -108.25 548.0 20060201 20200624 717545 99999 SAINT DENIS DE KARM CA 47.516999999999996 -69.883 14.0 20060403 20060718 717550 99999 MUSKRAT DAM A CA CZMD 53.43 -91.77 278.0 20060726 20200624 717560 99999 BLACKCOMB BASE SLIDING CENTER CA 50.1 -122.93299999999999 937.0 20080322 20180514 717570 99999 BELLA BELLA CA 52.15 -128.15 43.0 20080101 20081231 717580 99999 SYDNEY RCS CA CAQY 46.17 -60.05 63.0 20060201 20200624 717600 99999 BIG CREEK (AUT) CA CWBG 51.27 -123.1 1670.0 19961101 20110928 717610 99999 VILNA AGCM CA CPVI 54.133 -111.917 645.0 20010717 20200624 717620 99999 ISKUT RIVER (AUT) CA CWIO 56.73 -131.67 15.0 19961101 20050307 717630 99999 NECHAKO RIVER CA 53.683 -124.833 715.0 19961101 20020115 717650 99999 LYTTON RCS CA 50.217 -121.583 225.0 20061010 20200624 717660 99999 QUALICUM BEACH AIRPORT CA 49.333 -124.4 58.0 20080322 20200624 717670 99999 TOBERMORY RCS CA CTTR 45.233000000000004 -81.633 214.0 20070228 20200624 717680 99999 SUMMERLAND CS BC CA CWUS 49.567 -119.65 454.2 19950423 20200624 717690 99999 BALLENAS ISLAND BC CA CWGB 49.35 -124.15 13.0 19950423 20200226 717700 99999 CRESTON CAMPBELL SCIENTIFIC BC CA CWJR 49.083 -116.5 646.0 19950423 20200624 717710 99999 CUMSHEWA ISLAND BC CA CWZL 53.033 -131.6 17.0 20010916 20200624 717720 99999 ENTRANCE ISLAND CS BC CA CWEL 49.217 -123.8 5.0 19950423 20200624 717730 99999 WHITEHORSE AUTO CA CVXY 60.717 -135.083 707.0 20050728 20200624 717740 99999 MALAHAT BC CA CWKH 48.567 -123.51700000000001 366.0 19950423 20200624 717750 99999 PITT MEADOWS CAMPBELL SCIENTIFIC BC CA CWMM 49.2 -122.68299999999999 5.0 19950423 20200624 717760 99999 NELSON BC CA CWNM 49.483000000000004 -117.3 534.9 19950423 20200624 717770 99999 PEMBERTON AIRPORT BC CA CWGP 50.3 -122.73299999999999 204.0 19950423 20200624 717775 99999 PEMBERTON AIRPORT (WIND)PEMBERTON AIRPORT (WIND) CA CWPN 50.3 -122.73299999999999 203.0 20101115 20140922 717780 99999 RACE ROCKS CAMPBELL SCIENTIFIC BC CA CWQK 48.3 -123.53299999999999 3.0 19950423 20200624 717790 99999 QUESNEL AIRPORT AUTO CA 53.033 -122.5 545.0 20050722 20200624 717800 99999 SHERINGHAM POINT BC CA CWSP 48.383 -123.917 22.0 19950423 20200624 717810 99999 SISTERS ISLAND BC CA CWGT 49.483000000000004 -124.43299999999999 20.0 19950423 20200624 717820 99999 SPARWOOD CS BC CA CWGW 49.75 -114.883 1138.0 19950423 20200624 717830 99999 VICTORIA UNIVERSITY CS CA CWYJ 48.45 -123.3 60.0 19950423 20200624 717840 99999 WEST VANCOUVER (AUT) CA CWWA 49.35 -123.2 168.0 19950423 20200624 717850 99999 WHITE ROCK CAMPBELL SCIENTIFIC BC CA CWWK 49.016999999999996 -122.76700000000001 13.0 19950423 20200624 717860 99999 YOHO PARK BC CA CWYL 51.45 -116.35 1602.0 19960501 20200624 717870 99999 MECHANIC SETTLEMENT RCS CA CAMS 45.7 -65.167 403.0 20080101 20200624 717880 99999 GRASSY LAKE CA CPGL 49.867 -111.73299999999999 783.0 20070605 20200624 717890 99999 FORT MACLEOD AGCM CA 49.783 -113.383 978.0 20080401 20200624 717910 99999 GILT EDGE NORTH AGCM CA 53.067 -110.617 647.0 20071124 20200624 717920 99999 HALKIRK AGCM CA 52.117 -112.167 843.0 20080401 20200624 717930 99999 HEMARUKA AGCM CA 51.783 -111.21700000000001 780.0 20080401 20200624 717940 99999 HUGHENDEN AGCM CA 52.567 -110.78299999999999 703.0 20080721 20200624 717950 99999 IRVINE AGCM CA 49.983000000000004 -110.26700000000001 795.0 20080401 20200624 717960 99999 KESSLER AGCM CA 52.283 -111.1 720.0 20080721 20200624 717970 99999 KITSCOPTY AGCM CA 53.35 -110.417 664.0 20080401 20200624 717980 99999 ESQUIMALT HARBOUR CA CWPF 48.43 -123.43 3.0 20030617 20200624 717990 99999 VICTORIA INTL CA CYYJ 48.647 -123.426 19.2 19550702 20200624 717994 99999 VICTORIA UNIV CA 48.45 -123.3 60.0 19930520 19950414 717995 99999 VICTORIA MARINE RAD CA 48.367 -123.75 31.0 19770701 19800227 718000 99999 CAPE RACE (AUT) NFLD CA CWRA 46.65 -53.067 27.0 19550702 20200117 718004 99999 ST SHOTTS (AUT) CA CWFH 46.72 -53.48 143.0 19930330 19960103 718009 99999 KELLIGREWS CA 47.5 -53.016999999999996 3.0 19900302 19900317 718010 99999 ST JOHNS INTL CA CYYT 47.619 -52.751999999999995 140.5 19410929 20200624 718020 99999 ST JOHN'S WEST CA 47.516999999999996 -52.783 112.0 19770701 20041231 718021 99999 GRAND BANK CA 47.1 -55.766999999999996 8.0 19550702 19630731 718030 99999 GANDER INTL CA CYQX 48.937 -54.568000000000005 151.2 19410630 20200624 718040 99999 SAGLEK CA 58.333 -62.583 501.0 19890114 20081231 718041 99999 BUCHANS CA 48.85 -56.833 276.0 19550702 19630731 718043 99999 SAGLEK AIRPORT CA YSV 58.467 -62.65 83.0 19930204 19930902 718045 99999 BADGER CA 48.967 -56.067 105.0 19770701 19830501 718050 99999 ST PIERRE SB LFVP 46.763000000000005 -56.176 8.2 19770701 20200624 718059 99999 BOGUS CANADIAN CA 0.0 0.0 -999.0 19850208 19850723 718060 99999 LA SCIE CA 49.917 -55.667 194.0 19840701 20081231 718061 99999 19550702 19630731 718064 99999 CONNE RIVER (AUT) CA CWFY 48.17 -55.48 183.0 19920505 19960103 718070 99999 ARGENTIA (AUT) CA CWAR 47.3 -53.983000000000004 19.0 19450301 20170803 718073 99999 ARGENTIA (MARS) CA 47.3 -54.0 16.0 19870219 19910204 718080 99999 BLANC SABLON A CA CYBX 51.45 -57.183 36.9 19770701 20200624 718084 99999 BLANC SABLON ARPT & CA 51.433 -57.217 19.0 19820901 19830510 718090 99999 DEER LAKE A CA CYDF 49.217 -57.4 21.9 19770701 20200624 718091 99999 BELLE ISLE CA 51.883 -55.383 130.0 19550702 19630731 718100 99999 PORT MENIER QUE CA CWBY 49.833 -64.283 55.0 19600719 20200624 718103 99999 PORT MENIER CA CYPN 49.836000000000006 -64.289 50.9 19810820 19921201 718104 99999 PORT MENIER (MARS)& CA YPN 49.85 -64.45 31.0 19790131 19790723 718105 99999 HAVRE ST-PIERRE CA 50.25 -63.6 6.0 19770701 19941220 718110 99999 SEPT ILES CA CYZV 50.217 -66.267 54.9 19550702 20200624 718113 99999 NEMISCAU ARPT(SAWR) CA CYHH 51.7 -76.117 244.0 19811124 20151030 718120 99999 ARVIAT A CA 61.1 -94.06700000000001 10.0 20010705 20081231 718121 99999 LAKE EON CA 51.867 -63.283 593.0 19550802 19630731 718130 99999 NATASHQUAN A CA CMNT 50.183 -61.8 11.0 19550702 20200624 718134 99999 NATASHQUAN AIRPORT CA 50.183 -61.783 11.0 19840118 19900919 718140 99999 CHEVERY QUE CA CWDM 50.45 -59.633 8.0 19550702 20200624 718141 99999 HARRINGTON HARBOUR CA 50.533 -59.5 3.0 19770701 19781101 718150 99999 STEPHENVILLE A CA CYJT 48.533 -58.55 25.0 19411015 20200624 718160 99999 GOOSE BAY CA CYYR 53.317 -60.417 48.8 19420321 20200624 718170 99999 MARYS HARBOUR CA CYMH 52.3 -55.833 12.0 19571001 20200624 718171 99999 BATTLE HARBOUR CA WBF 52.25 -55.6 5.0 19770701 19831103 718173 99999 MARY'S HARBOUR CA 52.3 -55.817 12.0 19900724 20081231 718174 99999 19790131 19790628 718175 99999 QUAKER HAT (MAPS) CA 54.733000000000004 -57.35 38.0 19811130 19880105 718180 99999 CARTWRIGHT CA CWCA 53.717 -57.033 14.0 19550702 20200624 718184 99999 CARTWRIGHT (MAN) CA CYCA 53.683 -57.033 12.0 19790131 20200624 718190 99999 ST.ANTHONY CA CYAY 51.4 -56.067 32.9 19550702 20200624 718193 99999 MAKKOVIK AIRPORT CA CYFT 55.083 -59.183 71.0 19860125 19970304 718194 99999 ST ANTHONY CA 51.383 -56.083 34.0 19770803 20040908 718195 99999 WELCOME ISL (AUTO8) CA WEC 48.367 -89.117 209.0 19881014 19890731 718200 99999 KINGSTON CLIMATE CA CTKG 44.217 -76.6 93.0 19961001 20200624 718201 99999 BARRAGE ANGLIERS CA CWRC 47.55 -79.23 267.0 19550702 20071016 718210 99999 MATAGAMI A CA CGMG 49.75 -77.8 281.3 19770701 20200624 718211 99999 19550702 19600229 718213 99999 MATAGAMI (READAC) CA 49.766999999999996 -77.833 281.0 19910801 19921210 718220 99999 CHAPAIS CA CYMT 49.772 -74.528 387.1 19770701 20200624 718223 99999 CHIBOUGAMAU CA 49.766999999999996 -74.55 387.0 19920807 19921210 718230 99999 LA GRANDE IV UA CA CGAH 53.75 -73.683 306.0 19851205 20200624 718233 99999 LA GRANDE IV READAC CA 53.75 -73.683 307.0 19910921 19921130 718240 99999 CHAPAIS QUE CA CWUK 49.817 -74.967 381.0 20040824 20200624 718241 99999 GAGNON CA YGA 51.95 -68.133 566.0 19771006 19851010 718250 99999 WABUSH CA CYWK 52.922 -66.86399999999999 551.1 19601102 20200624 718260 99999 PANGNIRTUNG NU CA CWXP 66.15 -65.717 23.0 19770701 20200624 718261 99999 SNITCHQUON CA 53.2 -70.9 572.0 19550702 19630731 718264 99999 PANGNIRTUNG CA YNI 53.2 -70.9 537.0 19790131 19790410 718270 99999 LA GRANDE RIVIERE CA CYGL 53.625 -77.704 194.8 19770701 20200624 718274 99999 OPINACA CA 52.217 -76.6 208.0 19781205 19790822 718275 99999 LA GRANDE III(SAWR) CA CYAD 53.567 -76.2 233.0 19781205 20151030 718276 99999 LA GRANDE IV ARPT CA 53.0 -73.383 283.0 19781205 19860413 718280 99999 SCHEFFERVILLE A CA CYKL 54.8 -66.8 520.9 19550702 20200624 718284 99999 CANIAPISCAU AIRPORT CA 54.833 -69.867 509.0 19781205 19821020 718290 99999 BAIE COMEAU QUE CA CWFW 49.25 -68.133 130.0 19960301 20200624 718300 99999 ST. ANTHONY LWIS CA 51.383 -56.083 33.0 20030330 20090903 718310 99999 KAPUSKASING CA CYYU 49.413999999999994 -82.46799999999999 226.5 19500101 20200624 718320 99999 NAGAGAMI (AUT) ONT CA CWNZ 49.733000000000004 -84.15 264.0 19820101 20200624 718330 99999 GUELPH TURFGRASS CA CTGT 43.55 -80.217 325.0 20070228 20200624 718331 99999 PAGWA RIVER CA 50.033 -85.26700000000001 189.0 19550702 19630731 718340 99999 GERALDTON GREENSTONE REGIONAL CA CYGQ 49.778 -86.939 348.7 19820101 20200624 718344 99999 GERALDTON AIRPORT & CA 49.7 -86.95 331.0 19820101 19830401 718345 99999 EKWAN RIVER (AUTO8) CA WED 53.817 -84.917 96.0 19940830 19950425 718350 99999 PICKLE LAKE (AUT) CA CWPL 51.45 -90.21700000000001 391.0 19910801 20200624 718355 99999 MOOSONEE (SAWR) CA 51.266999999999996 -80.65 10.0 19820101 19910204 718360 99999 MOOSONEE AWOS CA CYMO 51.283 -80.6 9.1 19820101 20200624 718364 99999 EASTMAIN RIVER ARPT CA CZEM 52.233000000000004 -78.517 8.0 19851106 19970224 718365 99999 MOOSONEE A CA 51.283 -80.6 9.0 19550702 19960603 718366 99999 ONAKAWANA (AUT) CA 50.6 -81.42 42.0 19940818 19940916 718370 99999 ST MARY RESEVOIR CA CPMR 49.367 -113.117 1128.0 20070806 20200624 718390 99999 BULLHORN COULEE RESEVOIR CA CPBR 49.3 -113.367 1115.0 20090801 20200624 718400 99999 DEERWOOD RCS MAN CA CXDW 49.4 -98.31700000000001 341.0 20041114 20200624 718401 99999 NAKINA CA 50.183 -86.7 325.0 19550702 19630731 718410 99999 ARMSTRONG (AUT) ONT CA CWYW 50.283 -88.9 323.0 19500101 20200624 718414 99999 ARMSTRONG (MARS) CA YYW 50.283 -88.9 322.0 19820101 19830721 718420 99999 SIOUX LOOKOUT AIRPORT CA CYXL 50.117 -91.9 383.4 19550702 20200624 718423 99999 HOLMAN CA 70.75 -117.8 30.0 20040831 20081231 718424 99999 HAMILTON RBG CA 43.283 -79.9 102.0 20040810 20041013 718425 99999 DRYDEN RGNL CA ON CYHD 49.833 -92.73299999999999 413.0 19820101 20081231 718426 99999 DELHI CA 42.867 -80.55 232.0 20040510 20081231 718427 99999 HARROW ON CA 42.033 -82.9 191.0 20040510 20081231 718428 99999 BERENS RIVER CA CYBV 52.35 -97.03299999999999 222.0 20040518 20200624 718429 99999 CHESTERFIELD INLET CA CYCS 63.333 -90.71700000000001 11.0 20040510 20200624 718430 99999 WINNIPEG UA MAN CA CXWI 49.8 -97.133 227.0 20030617 20130430 718431 99999 KANGIQSUJUAQ CA CYKG 61.583 -71.933 151.0 19550702 20200624 718432 99999 AKULIVIK CA CYKO 60.818999999999996 -78.149 22.9 20040518 20200624 718433 99999 AUPALUKA CA CYLA 59.297 -69.983 36.9 20040518 20200624 718434 99999 LUTSEL KE CA CYLK 62.42 -110.67 179.0 20040510 20200624 718435 99999 KANGIKSUALUJJUAQ CA CYLU 58.717 -65.983 60.0 20040518 20200624 718436 99999 DE WEMINDJI CA CYNC 53.016999999999996 -78.833 15.0 20040510 20200619 718437 99999 RAE LAKES CA CYRA 64.117 -117.367 213.0 20040525 20200624 718438 99999 SUFFIELD CA CYSD 50.266999999999996 -111.18299999999999 770.0 20040512 20150331 718440 99999 BIG TROUT LAKE READAC CA 53.817 -89.9 222.0 19911201 20131212 718441 99999 CAPE PARRY CA 70.1 -124.71700000000001 87.0 20040510 20081231 718442 99999 SALLUIT CA CYZG 62.178999999999995 -75.667 232.0 20040713 20200624 718443 99999 EASTMAIN RIVER CA CZEM 52.233000000000004 -78.517 7.0 20040713 20200619 718450 99999 PICKLE LAKE A CA CYPL 51.45 -90.2 386.2 19551027 20200624 718454 99999 PICKLE LAKE CA 51.433 -90.21700000000001 396.0 19921008 20081231 718455 99999 PICKLE LAKE ARPT CA 51.45 -90.2 385.9 19900125 19910107 718460 99999 LANSDOWNE HOUSE (AUT) ONT CA CWLF 52.183 -87.93299999999999 253.0 19550702 20200624 718463 99999 LANSDOWNE HOUSE & CA 52.233000000000004 -87.883 255.0 19890810 19910204 718470 99999 DRYDEN A ONT CA 49.833 -92.75 413.0 20010912 20041231 718480 99999 TRAVERS AGCM CA CPTR 50.3 -112.867 955.0 19550702 20200624 718490 99999 WINNIPEG 'A' CS MAN CA 49.917 -97.23299999999999 239.0 20010916 20200624 718500 99999 KENORA A CA CYQK 49.783 -94.367 406.0 19550704 20200624 718510 99999 SOUTHPORT CA CYPG 49.903 -98.274 269.7 19550702 20200624 718515 99999 PORTAGE SOUTHPORT CA CWPG 49.9 -98.26700000000001 273.0 19950101 20200624 718520 99999 WINNIPEG INTL CA CYWG 49.91 -97.24 238.7 19550702 20200624 718525 99999 GRETNA CA 49.033 -97.56700000000001 252.0 19820101 19950605 718527 99999 WINNEPEG CA WKT 49.917 -97.23299999999999 239.0 19880319 19891109 718530 99999 SHILO CA CWLO 49.783 -99.633 373.0 19930802 20130703 718531 99999 MACDONALD CA 50.083 -98.45 255.0 19550702 19590515 718533 99999 WASAGA BEACH(AUTO8) CA 51.1 -100.05 305.0 19870320 19910204 718534 99999 PINAWA (AUTO8) CA 50.183 -96.81700000000001 268.0 19881223 19910611 718535 99999 SPRAGUE (AUTO8) CA 49.016999999999996 -95.6 329.0 19881223 19950605 718540 99999 RED LAKE CA CYRL 51.067 -93.79299999999999 385.6 19551102 20200624 718544 99999 RED LAKE(AUT) CA WDJ 51.083 -93.8 383.0 19921216 19940621 718550 99999 DAUPHIN AIRPORT CA 51.1 -100.05 305.0 19550702 20081231 718553 99999 DAUPHIN (AUTOB) CA 51.1 -100.05 305.0 19910109 19910315 718560 99999 GIMLI INDUSTRIAL CA 50.617 -97.03299999999999 232.0 19500101 20170310 718564 99999 GIMLI (MAN) CA 50.633 -97.05 230.0 19790131 19790604 718565 99999 HECLA AMOS CA 51.167 -96.667 230.0 19770701 19790201 718570 99999 TULLIBY LAKE AGCM CA CPTU 53.65 -110.06700000000001 596.0 20040120 20200623 718571 99999 WABOWDEN CA 54.917 -98.633 233.0 19550702 19870331 718575 99999 FLIN FLON CA 54.667 -101.68299999999999 312.0 19430319 20081231 718576 99999 FLIN FLON (AUTO8) CA 54.683 -101.7 304.0 19881209 19950605 718580 99999 GRAND RAPIDS (AUT) CA CWJD 53.183 -99.26700000000001 223.0 19770701 20200624 718590 99999 BERENS RIVER CA 52.35 -97.03299999999999 222.0 19850618 20081231 718593 99999 MELITA (AUTO8) CA 49.283 -100.98299999999999 455.0 19881223 19900530 718600 99999 SPRINGBANK A CA CYBW 51.1 -114.367 1200.0 20030330 20200624 718601 99999 RIVERS CA CYYI 50.016999999999996 -100.31700000000001 473.0 19550702 19831031 718610 99999 BROADVIEW SASK CA CWIK 50.368 -102.571 599.8 19550702 20200624 718614 99999 BROADVIEW & CA YDR 50.383 -102.583 599.0 19790131 19790604 718620 99999 ESTEVAN A CA CYEN 49.217 -102.96700000000001 580.6 19550702 20200624 718630 99999 REGINA INTL CA CYQR 50.433 -104.667 577.3 19550702 20200624 718640 99999 MOOSE JAW AIR VICE MARSHAL C M MCEWEN CA CYMJ 50.33 -105.559 576.7 19550702 20200624 718650 99999 WYNYARD (AUT) SASK CA CWOY 51.766999999999996 -104.2 560.0 19550702 20200624 718654 99999 WYNYARD (MARS) CA 51.766999999999996 -104.21700000000001 561.0 19790131 20041209 718660 99999 SASKATOON J G DIEFENBAKER INTL CA CYXE 52.167 -106.7 503.8 19550702 20200624 718663 99999 SOUTHEND (AUTO8) CA 56.333 -103.28299999999999 344.0 19890309 19900530 718665 99999 ELBOW CA 51.133 -106.583 594.0 19770701 19830501 718670 99999 THE PAS AIRPORT CA CYQD 53.967 -101.1 270.4 19421218 20200624 718680 99999 HUDSON BAY SASK CA CZHB 52.817 -102.31700000000001 358.0 19430319 20200624 718684 99999 HUDSON BAY (MARS) CA WHB 52.817 -102.31700000000001 358.0 19790217 19890727 718690 99999 PRINCE ALBERT GLASS FIELD CA CYPA 53.214 -105.67299999999999 428.2 19550702 20200624 718700 99999 SWIFT CURRENT ARPT CA 50.3 -107.68299999999999 817.0 19550702 20081231 718703 99999 SWIFT (MARS) CA WYN 50.266999999999996 -107.73299999999999 826.0 19821205 19860912 718710 99999 LLOYDMINSTER CA CYLL 53.309 -110.073 668.4 19831201 20200624 718711 99999 VERMILION CA YVG 53.35 -110.833 619.0 19550702 19831205 718720 99999 SVARTEVAEG CA CNSG 81.167 -91.81700000000001 72.0 19550702 20200624 718724 99999 ESTHER 1 CA 51.667 -110.2 707.0 19921008 19930330 718730 99999 CORONATION CA CYCT 52.075 -111.445 791.0 19550702 20050830 718735 99999 CORONATION (AUT) CA 52.067 -111.46700000000001 791.0 19770701 20081231 718736 99999 DRUMHELLER EAST CA 51.433 -112.667 678.0 19910801 20081231 718737 99999 BOW ISLAND CA 49.617 -111.45 838.0 19940103 19940314 718740 99999 BATHURST INLET CA CNBI 66.833 -108.01700000000001 5.0 19550702 20200624 718743 99999 MILK RIVER CA 49.133 -112.05 1050.0 19910801 19930330 718750 99999 PINCHER CREEK CA 49.516999999999996 -114.0 1190.0 19421201 20081231 718753 99999 PINCHER CREEK (AUT) CA 49.5 -113.95 1154.0 19910711 19910908 718754 99999 PINCHER CREEK (AUT) CA 49.5 -113.95 1154.0 19791115 19820403 718755 99999 PINCHER CREEK CA 49.516999999999996 -114.0 1220.0 19811124 20081231 718756 99999 CLARESHOLM (AUTO8) CA 50.0 -113.633 1012.0 19920219 19940314 718760 99999 NORTH BATTLEFORD CA CYQW 52.769 -108.244 548.3 19400101 20200624 718765 99999 LLOYDMINSTER A CA 53.3 -110.0 648.0 19820501 19831205 718770 99999 CALGARY INTL CA CYYC 51.114 -114.02 1084.2 19550702 20200624 718775 99999 GOLDEN ARPT CA CYGE 51.3 -116.96700000000001 787.0 19770701 19970224 718776 99999 CALGARY/SPRINGBANK CA CYBW 51.1 -114.383 1200.0 19771013 19970310 718777 99999 SUNDRE ARPT (AUTOB) CA WAV 51.766999999999996 -114.68299999999999 1114.0 19910801 19940621 718778 99999 COP UPPER CA 51.083 -114.21700000000001 1235.0 19920807 19930330 718780 99999 RED DEER REGIONAL CA CYQF 52.183 -113.9 904.6 19550702 20200624 718783 99999 THREE HILLS CA 51.7 -113.21700000000001 907.0 19921216 19930330 718784 99999 LACOMBE CDA CA 52.45 -113.75 874.0 19921216 19930330 718790 99999 EDMONTON CITY CENTRE CA CYXD 53.573 -113.521 670.6 19500101 20150401 718793 99999 SPARWOOD (AUTO8) & CA 49.75 -114.9 1137.0 19921216 19950414 718794 99999 SPARWOOD / ELK VALLEY CA CWSW 49.75 -114.88 1138.0 19800423 20200624 718795 99999 CROWSNEST CA 49.633 -114.48299999999999 1303.0 19920807 19930330 718800 99999 CRANBROOK A CA CYXC 49.617 -115.78299999999999 939.4 19770701 20200624 718801 99999 WASA CA 49.733000000000004 -115.78299999999999 920.0 19550702 19630731 718810 99999 EDSON CA CYET 53.57899999999999 -116.465 926.9 19600202 20200624 718813 99999 EDSON (READAC) CA ZET 53.583 -116.48299999999999 925.0 19910822 19921210 718814 99999 COAL VALLEY CA 53.083 -116.81700000000001 1426.0 19800611 19830613 718820 99999 REVELSTOKE A CA 50.967 -118.18299999999999 445.0 19550702 20200624 718823 99999 REVELSTOKE (AUTOB) CA 50.967 -118.2 443.0 19890616 19921210 718830 99999 BLUE RIVER CA CYCP 52.117 -119.28299999999999 682.8 19770701 20200624 718831 99999 ROSSLAND CA 49.15 -117.917 2348.0 19550703 19630731 718834 99999 BLUE RIVER CS CA CWSV 52.13 -119.28 683.0 19800216 20200624 718835 99999 NELSON (AUTO8) & CA 49.5 -117.3 535.0 19921216 19950414 718840 99999 CASTLEGAR CA CYCG 49.29600000000001 -117.633 495.0 19770701 20200624 718841 99999 CRESCENT VALLEY CA 49.45 -117.56700000000001 610.0 19550702 19630731 718843 99999 NAKUSP (AUTO8) & CA 50.266999999999996 -117.81700000000001 512.0 19910204 19950414 718844 99999 CRESTON (AUTO8) & CA 49.083 -116.5 569.0 19930520 19950414 718850 99999 GLENWOOD CA CPCR 49.333 -113.51700000000001 1074.0 20071124 20200624 718851 99999 CARMI CA 49.5 -119.083 1245.0 19550702 19630131 718860 99999 YORKTON CA 51.266999999999996 -102.46700000000001 498.4 19550702 20200624 718863 99999 SALMON ARM AUTO8 & CA 50.7 -119.28299999999999 351.0 19901104 19950414 718864 99999 PRINCETON CA CYDC 49.468 -120.51100000000001 700.4 19781012 20200624 718870 99999 KAMLOOPS CA CYKA 50.702 -120.444 345.3 19550702 20200624 718880 99999 VIKING AGCM CA CPVA 53.183 -111.73299999999999 711.0 19550702 20200624 718881 99999 JASPER ALTA. CA CWJA 52.88 -118.07 1061.0 20050422 20051013 718884 99999 WAINWRIGHT (AUTO8) CA 52.817 -111.083 684.0 19790131 20081231 718890 99999 PENTICTON CA CYYF 49.463 -119.602 344.1 19550702 20200624 718895 99999 KELOWNA UA CA 49.93 -119.4 456.0 19770701 19831205 718900 99999 NANAIMO CA CYCD 49.052 -123.87 28.3 19550702 20200624 718903 99999 PAM ROCKS CA WAS 49.483000000000004 -123.28299999999999 0.0 19870612 19950605 718904 99999 SISTERS IL AUTO8 & CA 49.483000000000004 -124.43299999999999 0.0 19921008 19950414 718905 99999 BALLENAS IL AUTO8 & CA 49.35 -124.167 0.0 19770701 19950414 718910 99999 LYTTON CA CWLY 50.23 -121.58 229.0 19550702 20200624 718913 99999 LYTTON CA 50.233000000000004 -121.583 258.0 19890616 19910529 718914 99999 LYTTON (READAC) CA YLY 50.233000000000004 -121.583 255.0 19790131 19910916 718915 99999 HOPE SLIDE CA CWKV 49.28 -121.23 674.0 19770701 20030515 718916 99999 CAPE MUDGE CA CWAD 50.0 -125.2 5.0 19770701 20011214 718917 99999 108 MILE HOUSE CA WOF 51.733000000000004 -121.333 953.0 19920807 19950414 718918 99999 PEMBERTON CA CYPS 50.303000000000004 -122.738 204.2 20100104 20100403 718920 99999 VANCOUVER INTL CA CYVR 49.193999999999996 -123.184 4.3 19550702 20200624 718925 99999 VANCOUVER HARBOUR CA 49.3 -123.117 5.0 19770701 19800227 718926 99999 VANCOUVER HARBOUR & CA YHC 49.3 -123.117 5.0 19790131 19790604 718930 99999 COMOX CA CYQQ 49.711000000000006 -124.887 25.6 19540101 20200624 718935 99999 POWELL RIVER CA 49.817 -124.5 120.0 19770701 19831205 718936 99999 CAMPBELL RIVER CA CYBL 49.951 -125.271 105.5 19770701 20200624 718937 99999 CHATHAM POINT CA CWFM 50.33 -125.43 23.0 19770701 20011213 718940 99999 ESTEVAN POINT CS BC CA CWEB 49.383 -126.55 7.0 19550702 20200624 718944 99999 ESTEVAN POINT (MAN) CA YEP 49.383 -126.55 7.0 19790131 19831205 718950 99999 WETASKIWIN AGCM CA CPWT 52.967 -113.43299999999999 774.0 19770701 20200624 718951 99999 BULL HARBOUR CA 50.917 -127.95 0.0 19550702 19630731 718955 25237 HOLBERG CA WHJ 50.65 -128.05 579.0 19770701 19900317 718956 99999 EGG ISLAND CA 51.25 -127.833 14.0 19770701 19781122 718960 99999 PRINCE GEORGE CA CYXS 53.888999999999996 -122.679 691.0 19550702 20200624 718964 99999 WASKAGANISH AIRPORT CA CYKQ 51.483000000000004 -78.75 23.0 19960401 20200624 718965 99999 DRYAD POINT CA CWAU 52.18 -128.12 4.0 19990103 20011213 718970 99999 MCINNES ISLAND BC CA CWMS 52.25 -128.717 26.0 19770701 20200319 718980 99999 PRINCE RUPERT CA CYPR 54.283 -130.45 35.4 19550702 20200624 718985 99999 BONILLA ISLAND & CA WVB 53.5 -130.63299999999998 18.0 19770702 19781126 718990 25343 LANGARA CA BC CWJU 54.25 -133.05 41.0 19770701 20200624 718990 99999 LANGARA CA CWJU 54.25 -133.05 41.0 20000101 20041231 718994 99999 FORT ST. JAMES ARPT CA YJM 54.417 -124.25 716.0 19880318 19890505 719000 99999 HOPEDALE (AUT) NFLD CA CWHO 55.45 -60.217 12.0 19550702 20200624 719004 99999 HOPEDALE (MAPS) CA YHO 55.45 -60.233000000000004 10.0 19790131 19791006 719010 99999 BORDER (AUT) CA CWTB 55.33 -63.22 479.0 19770701 20050723 719015 99999 SAGLEK CA 58.467 -62.65 82.0 19890624 19890720 719020 99999 NAIN AIRPORT CA CYDP 56.55 -61.683 7.0 19840921 20200624 719023 99999 NAIN CA CWFP 56.55 -61.7 7.0 19920823 20041231 719025 99999 KILLINEK (MAPS) & CA 60.417 -64.85 31.0 19860801 19900530 719030 99999 LANGARA ISLAND CS BC CA 54.25 -133.05 41.0 20010916 20200624 719031 99999 RESOLUTION ISLAND CA 61.583 -64.65 366.0 19340801 19630731 719035 99999 QUAQTAQ CA CYHA 61.04600000000001 -69.618 32.0 20050104 20200624 719040 99999 WIMBORBE AGCM CA CPWB 51.933 -113.583 940.0 19770701 20200624 719041 99999 CAPE HOPES ADVANCE CA 61.083 -69.55 73.0 19550702 19630731 719043 99999 KANGIRSUK A CA CYAS 60.033 -70.0 123.0 19880621 20200624 719044 99999 KANGIQSUJUAQ ARPT CA CYKG 61.583 -71.933 151.0 19910207 19970224 719045 99999 APALUK CA YLA 59.3 -69.6 35.0 19921008 19950605 719050 99999 MONTREAL INTL MIRABEL CA CYMX 45.683 -74.033 82.3 19560101 20200624 719053 99999 UMIUJAQ CA CYMU 56.533 -76.517 71.0 19930225 20200624 719060 99999 KUUJJUAQ A CA CYVP 58.1 -68.417 39.3 19411105 20200624 719063 99999 KANGIQSUALUJJUAQ CA YKB 58.717 -66.0 58.0 19900424 19950516 719064 99999 TASIUJAQ A CA CYTQ 58.667 -69.95 31.0 19920505 20200624 719065 99999 KANGIKSUALUJJUAQ A CA CYLU 58.717 -65.983 60.0 19940830 19970224 719070 99999 INUKJUAK A UA CA CWPH 58.467 -78.083 25.0 19340101 20200624 719073 99999 INUKJUAK ARPT(SAWR) CA 58.467 -78.083 25.0 19880725 20081231 719074 99999 IVUJIVIK CA CYIK 62.417 -77.925 38.4 19880621 20200624 719075 99999 SALLIUT ARPT (SAWR) CA CYZG 62.183 -75.667 226.0 19890616 19960602 719076 99999 AKULIVIK AIRPORT CA CYKO 60.817 -78.15 9.0 19910711 19970304 719077 99999 PUVIRNITUQ CA CYPX 60.051 -77.28699999999999 22.6 19930225 20200624 719080 99999 PRINCE GEORGE UA BC CA 53.9 -122.78299999999999 601.0 20010707 20060105 719081 99999 NOTTINGHAM ISLAND CA 63.117 -77.933 16.0 19340101 19630731 719083 99999 NUELTIN LAKE CA 60.5 -99.0 335.0 19390918 19410901 719090 99999 IQALUIT CA CYFB 63.756 -68.556 33.5 19420301 20200624 719094 99999 KIMMIRUT A NWT CA CYLC 62.85 -69.883 53.0 19340101 20200615 719100 99999 CAPE DORSET A CA 64.233 -76.533 48.0 19770701 20200624 719101 99999 WINISK CA 55.233000000000004 -85.117 13.0 19590102 19630731 719104 99999 SANIKILUAQ AIRPORT CA 56.533 -79.25 32.0 19781205 20200624 719110 99999 SHEPHERD BAY A CA CYUS 68.817 -93.43299999999999 43.0 19770701 20200624 719111 99999 19471015 19560831 719120 99999 GILLAM AIRPORT CA CYGX 56.35 -94.71700000000001 145.0 19430325 20200624 719123 99999 GILLAM (AUTOB) CA 56.367 -94.7 145.0 19881209 19950605 719124 99999 BROCHET CA ZBT 57.883 -101.68299999999999 346.0 19911101 19921210 719130 99999 CHURCHILL A UA MAN CA 58.733000000000004 -94.05 29.0 19430101 20120515 719140 99999 SATURNA / CAPMON CS CA CVTS 48.766999999999996 -123.117 178.0 19770701 20200624 719141 99999 SPENCE BAY AIRPORT& CA 69.55 -93.583 26.0 19830725 19900206 719143 99999 NANISIVIK CA CYSR 72.982 -84.61399999999999 641.9 19880105 20110113 719144 99999 SPENCE BAY AIRPORT& CA WYH 69.55 -93.583 26.0 19810310 19830426 719145 99999 TALOYOAK CA CYYH 69.547 -93.57700000000001 28.0 19550702 20200624 719150 99999 CORAL HARBOUR CA CYZS 64.193 -83.359 64.0 19430301 20200624 719154 99999 PELLE BAY CA 68.433 -89.6 90.0 19810220 19870513 719155 99999 CARVEL RADAR CA 53.57 -114.15 0.0 19810220 19840608 719156 99999 GJOA HAVEN CA 68.633 -95.85 48.0 19840824 20081231 719160 99999 THOMSEN RIVER CA CWYF 73.233 -119.53299999999999 42.0 19500101 20200624 719164 99999 CHESTERFIELD INLET& CA CYCS 63.333 -90.71700000000001 6.0 19340101 19970309 719165 99999 YANKEE (AUT) CA 80.7 -81.0 1053.0 19880513 19890215 719170 99999 EUREKA CA CWEU 79.983 -85.93299999999999 10.0 19470501 20200624 719174 99999 EUREKA CA NT CYEU 79.983 -85.8 78.0 19920427 19940714 719175 99999 SKULL POINT (AUT) CA 80.0 -86.43 37.0 19880513 19890215 719176 99999 WHISKEY (AUT) CA CWKU 81.03 -76.95 829.0 19880513 19890215 719180 99999 CAM FOUR CA CWRF 68.433 -89.71700000000001 324.5 19770723 20190908 719181 99999 ARCTIC BAY & CA YAB 73.033 -85.15 1.0 19400101 19630731 719190 99999 PELLY BAY CA CWKE 68.433 -89.71700000000001 326.0 19770701 20050722 719191 99999 19571002 19630731 719194 99999 KUGAARUK CA CYBB 68.53399999999999 -89.80799999999999 17.1 19790131 20200624 719195 99999 GRANT (AUT) CA CWWM 82.5 -65.08 1242.0 19850303 19890215 719200 99999 BACCARO PT CA CWCP 43.45 -65.467 5.0 19770701 20200624 719201 99999 CREE LAKE METEOROLOGICAL AERONAU CA CWFN 57.35 -107.13 495.0 19550702 19630731 719203 99999 CRAIG HARBOR CA 76.2 -81.017 4.0 19400101 19400801 719204 99999 CREE LAKE (MAPS) CA YFN 57.35 -107.133 499.0 19790131 19790604 719210 99999 SCHEFFERVILLE A CA 54.8 -66.8 520.9 19771128 20170314 719211 99999 BROCHET CA CYBT 57.883 -101.667 344.0 19550702 19630731 719214 99999 BROCHET CA 57.883 -101.68299999999999 346.0 19781013 19800531 719220 99999 LA RONGE CA CYVC 55.151 -105.262 378.6 19770701 20200624 719221 99999 BATHURST INLET CA 66.85 -108.01700000000001 13.0 19590102 19620815 719230 99999 ENNADAI LAKE (AUT) NU CA CWJC 61.117 -100.883 353.0 19550702 20200624 719234 99999 ENNADI LAKE CA 61.133 -100.917 323.0 19790131 19790604 719240 99999 RESOLUTE BAY CA CYRB 74.717 -94.969 65.5 19471011 20200624 719245 99999 REA POINT CA 75.35 -105.71700000000001 15.0 19770701 19871223 719246 99999 GRISE FIORD AIRPORT CA CWGZ 76.417 -82.9 45.0 19781116 20200624 719248 99999 MALLOCH DOME (AUT) CA CWCN 78.22 -101.05 12.0 19811124 19831004 719249 99999 BLACK TOP RIDGE (AUT) CA 80.0 -85.42 619.0 19880513 19890215 719250 99999 CAMBRIDGE BAY CA CYCB 69.108 -105.13799999999999 27.4 19341001 20200624 719260 99999 BAKER LAKE CA CYBK 64.29899999999999 -96.07799999999999 18.0 19460201 20200624 719264 99999 ARVIAT CA 61.1 -94.06700000000001 10.0 19430310 20041109 719265 99999 BAKER LAKE AIRPORT CA 64.3 -96.0 11.0 19790131 19860413 719270 99999 NORTH COWICHAN CA 48.817 -123.71700000000001 60.0 19570802 20200624 719271 99999 GLADMAN POINT ARPT CA 68.667 -97.8 14.0 20050603 20050726 719280 99999 ROCKY MTN HOUSE (AUT) ALTA CA CWRM 52.417 -114.9 988.0 19550702 20200624 719284 99999 ROCKY MOUNTAIN HOUSE CA CYRM 52.43 -114.904 988.8 19790604 20130430 719290 99999 BYRON BAY AIRPORT CA CYUK 68.75 -109.06700000000001 92.0 19570801 20020224 719300 99999 WHITECOURT A CA CYZU 54.15 -115.78299999999999 782.0 19550702 20200624 719303 99999 DEVON ISLAND CA 74.5 -83.5 0.0 19451016 19480101 719310 99999 POOLS ISLAND CA CWLB 49.1 -53.567 19.0 19550702 20200624 719320 99999 FORT MCMURRAY AWOS ARPT CA 56.65 -111.21700000000001 369.0 19430201 20081231 719323 99999 RED EARTH CA 56.533 -115.26700000000001 546.0 19920219 19930615 719330 99999 FORT ST JAMES AUTO CA CVFS 54.45 -124.28299999999999 685.5 19770701 20200624 719331 99999 KEG RIVER CA 57.783 -117.833 427.0 19550702 19630731 719333 99999 SOUSA CRK(AVT) CA 58.583 -118.5 373.0 19910108 19930615 719334 99999 FORT CHIPEWYAN AUTOMATED REPORTI CA 58.77 -111.13 232.0 19910801 19931014 719340 99999 FORT SMITH CA CYSM 60.02 -111.962 204.5 19340101 20200624 719350 99999 HAY RIVER A CA CYHY 60.833 -115.78299999999999 165.5 19340101 20200624 719353 99999 19430301 19480101 719360 99999 YELLOWKNIFE CA CYZF 62.463 -114.44 205.7 19420701 20200624 719365 99999 MT ARTHUR (AUT) CA 81.33 -74.77 1336.0 19880513 19890215 719370 99999 LADY FRANKLIN POINT CA CYUJ 68.5 -113.21700000000001 21.0 19770701 20050619 719371 99999 19420901 19610129 719373 99999 FRANCES LAKE CA 61.283 -129.4 739.0 19411001 19480101 719380 99999 KUGLUKTUK CA CYCO 67.817 -115.14399999999999 22.6 19340101 20200624 719390 26114 CAPE YOUNG AIRPORT CA NU CYUI 68.933 -116.917 16.0 19770701 20050322 719390 99999 CAPE YOUNG AIRPORT CA CYUI 68.933 -116.917 16.0 20041121 20041121 719391 99999 BEATTON RIVER CA 57.383 -121.383 840.0 19550702 19630731 719400 99999 GRANDE PRAIRIE CA CYQU 55.18 -118.885 669.0 19550702 20200624 719403 99999 CHETWYND AIRPORT CA CYCQ 55.7 -121.633 629.0 19821111 19970310 719410 99999 VAL D'OR CA 48.05 -77.767 337.0 19770701 20170315 719421 99999 FAIRVIEW & CA 56.083 -118.43299999999999 655.0 19550702 19630731 719430 99999 FORT ST JOHN CA CYXJ 56.238 -120.74 694.9 19420701 20200624 719440 99999 MACKENZIE A CA 55.3 -123.133 690.0 19770701 20200624 719445 99999 INGENIKA POINT CA 56.8 -124.9 680.0 19990104 20050208 719446 99999 PINK MOUNTAIN 2 CA CWCG 57.033 -122.53299999999999 1067.0 19861016 19950501 719450 99999 FORT NELSON CA CYYE 58.833 -122.6 381.9 19420220 20200624 719455 99999 LONG POND CA CWWU 47.516999999999996 -52.983000000000004 13.0 19770701 20200624 719456 99999 MUNCHO LAKE CA 58.917 -125.76700000000001 835.0 19430916 19450818 719457 99999 FORT LIARD CA 60.233000000000004 -123.46700000000001 214.0 19770701 19781229 719458 99999 FORT LIARD AIRPORT CA CYJF 60.233000000000004 -123.46700000000001 213.0 19831201 19970224 719460 99999 FORT SIMPSON CA CYFS 61.76 -121.23700000000001 169.2 19340101 20200624 719463 99999 INNER WHALEBACKS CA 61.917 -113.71700000000001 165.0 19880901 19930615 719465 99999 WRIGLEY CA CYWY 63.208999999999996 -123.43700000000001 149.0 19430601 20200624 719467 99999 FORT PROVIDENCE CA 61.317 -117.6 162.0 19430204 19461201 719468 99999 FORT FRANKLIN ARPT CA CYWJ 65.183 -123.417 0.0 19880421 19970224 719470 99999 MATAGAMI CA CYNM 49.762 -77.803 279.8 20050101 20200624 719471 99999 SMITH RIVER CA 59.9 -126.43299999999999 673.0 19550702 19630731 719472 99999 MOUNT WASHINGTON CA 50.25 -125.47 1474.0 20090101 20100929 719480 27202 CAPE PARRY CA NT CZCP 70.167 -124.7 87.0 19570101 20200624 719480 99999 CAPE PARRY A CA CZCP 70.167 -124.71700000000001 87.0 20000101 20041231 719485 99999 PAULATUK CA CYPC 69.361 -124.059 5.5 19830725 20200624 719490 99999 FARO (AUT) YT CA CWUM 62.233000000000004 -133.35 717.0 19770701 20200624 719491 99999 WHITCOURT CA 54.133 -115.78299999999999 802.0 19400101 20081231 719492 99999 SAINT-ROCK-DES-AULNAIES CA CMSR 47.28 -70.17 48.0 20050228 20061103 719493 99999 FARO CA CZFA 62.208 -133.376 716.6 19840203 20200624 719494 99999 HOLMAN CA CYHI 70.763 -117.806 35.7 19500101 20200624 719495 99999 FARO (MARS) CA 62.233000000000004 -133.36700000000002 694.0 19800423 19810624 719500 99999 SMITHERS CA CYYD 54.825 -127.18299999999999 521.8 19550702 20200624 719510 99999 TERRACE CA CYXT 54.468999999999994 -128.576 217.3 19550702 20200624 719520 25272 BURNS LAKE CAMPBELL CA BC CWPZ 54.383 -125.95 714.0 20050101 20200624 719520 99999 BURNS LAKE CAMPBELL SCIENTIFIC BC CA CWPZ 54.383 -125.95 713.0 19770701 20041231 719523 99999 LUCY ISL (LGT-H) CA WLC 54.3 -130.6 27.0 19900724 19960523 719524 99999 BURNS LAKE & CA 54.233000000000004 -125.76700000000001 704.0 19790131 19910611 719525 99999 BURNS LAKE CA 54.233000000000004 -125.76700000000001 704.0 19921008 19950605 719530 99999 WATSON LAKE CA CYQH 60.11600000000001 -128.82299999999998 687.3 19420401 20200624 719531 99999 19381001 19630731 719540 26394 FLIN FLON CA MB CWFO 54.683 -101.68299999999999 304.0 19950101 20200624 719540 99999 FLON FLON CA CWFO 54.683 -101.68299999999999 303.9 20000101 20041231 719550 99999 STEWART CA CZST 55.933 -129.983 7.3 19770701 20200624 719560 99999 GORE BAY CLIMATE CA CTZE 45.883 -82.56700000000001 188.0 19770701 20200624 719561 99999 NICHOLSON PENINSUL CA CWRP 69.93 -128.97 89.0 20050114 20050810 719564 99999 NICHOLSON PENINSUL& CA 69.9 -128.967 98.0 19790131 19790131 719570 99999 INUVIK MIKE ZUBKO CA CYEV 68.304 -133.483 68.3 19581113 20200624 719573 99999 LITTLE CHICAGO CA 67.2 -130.217 63.0 19910911 19930615 719574 99999 FORT MCPHERSON CA CZFM 67.408 -134.861 35.4 19781205 20200624 719575 99999 AKLAVIK CA CYKD 68.223 -135.006 6.4 19781205 20200624 719576 99999 FORT NORMAN AIRPORT CA CZFN 64.917 -125.56700000000001 98.0 19340101 20200624 719580 99999 DEASE LAKE CA CWDL 58.433 -130.017 807.0 19440916 20121115 719584 99999 DEASE LAKE CA YDL 58.417 -130.0 815.0 19790131 19790604 719590 26394 CHETICAMP CS CA NS CXCH 46.633 -60.933 44.0 19570701 19930630 719590 99999 CHETICAMP CS CA CXCH 46.633 -60.933 44.0 20030625 20181116 719594 99999 TUKTOYAKTUK CA YTW 69.45 -133.0 18.0 19790131 19810417 719595 99999 TUKTOYAKTUK CA CYUB 69.433 -133.026 4.6 19770701 20200624 719596 99999 NIPTERK BASE CA CWNI 69.62 -135.33 10.0 19890223 19890505 719600 99999 LIVERPOOL BAY CA CWLI 69.6 -130.9 102.0 19960221 20200624 719620 99999 FORT FRANCES RCS CA CTAG 48.65 -93.43299999999999 342.0 20080429 20200624 719630 99999 HANBURY RIVER NWT CA CWQY 63.6 -105.133 317.0 19930607 20190902 719640 99999 WHITEHORSE INTL CA CYXY 60.71 -135.067 706.2 19401001 20200624 719644 99999 FARO A CA 62.217 -133.36700000000002 717.0 19811124 19840118 719645 99999 ROSS RIVER AIRPORT CA CYDM 61.967 -132.433 705.0 19440112 19941231 719650 99999 MAYO CA CYMA 63.61600000000001 -135.868 503.8 19340101 20200624 719660 99999 DAWSON CITY CA CYDA 64.043 -139.128 370.3 19340101 20200624 719664 99999 DAWSON CA CWON 64.05 -139.13 370.0 19880226 20200624 719665 99999 OLD CROW CA CYOC 67.571 -139.839 251.2 19770701 20200624 719670 99999 SAINT GERMAIN DE GRANTHAM CA CMSI 45.817 -72.533 85.0 19440128 20200624 719671 99999 BURWASH (AUTO8) CA CWDB 61.367 -139.05 806.0 20050112 20050220 719674 99999 BURWASH CA 61.367 -139.033 827.0 19881107 20081231 719675 99999 BEAVER CREEK ARPT CA CYXQ 62.417 -140.86700000000002 649.0 19430820 20200624 719676 99999 HAINES JUNCTION CA 60.783 -137.55 655.0 19431101 19850524 719677 99999 HAINES JUNCTION CA 60.766999999999996 -137.583 599.0 19790131 19790818 719680 99999 SHINGLE POINT CA CYUA 68.95 -137.22 56.0 19770701 20200624 719681 99999 19340101 19601114 719690 26463 KOMAKUK BEACH ARPT CA YT CYAJ 69.583 -140.183 7.0 19770701 19930630 719691 99999 SNAG CA 62.367 -140.4 587.0 19430822 19630731 719700 99999 MEADOW LAKE CA 54.133 -108.51700000000001 481.0 20071124 20200624 719710 99999 GRISE FIORD CLIMATE CA 76.417 -82.9 45.0 20080401 20200624 719720 99999 RESOLUTION ISLAND CA CWRH 61.58 -64.65 369.0 19981224 20180721 719730 99999 CORNER BROOK CA 48.933 -57.917 152.0 20080401 20200624 719740 99999 AULVIK NATIONAL PARK CA CWSQ 74.13 -119.98 32.0 19961101 20180809 719750 99999 CAPE MERCY CA CWYM 64.95 -63.58 583.0 19960221 20180804 719760 99999 PARC NATIONAL DES PINGUALUIT CA 61.3 -73.667 503.0 19950827 20200624 719770 99999 MARGARET LAKE CA CWZR 68.8 -140.85 568.0 19950423 20200624 719780 99999 IVVAVIK NAT. PARK YT CA CWOI 69.15 -140.15 244.0 19950901 20200624 719790 99999 HENDRICKSON CREEK CA CWPA 53.8 -118.45 1448.0 19950901 20200624 719800 99999 RABBIT KETTLE NWT CA CWQF 61.95 -127.2 618.0 19951001 20200624 719810 99999 AZURE CA 50.5 -114.0 1143.0 19941201 20200624 719820 99999 BLACK DIAMOND CA 50.7 -114.15 1156.0 19950901 20200624 719821 99999 HALDANE RIVER CA CWNW 67.07 -121.1 243.0 20050212 20070307 719830 99999 REA POINT NU CA CZRP 75.367 -105.71700000000001 15.0 19950430 20200313 719840 99999 PAULATUK NWT CA CZPK 69.35 -124.06700000000001 6.0 19940901 20200624 719850 99999 TUKTOYAKTUK NWT CA 69.433 -133.017 5.0 19940901 20200624 719860 99999 ATLEE CA 50.8 -111.0 795.0 19951001 20200624 719861 99999 ST CHARLES CREEK CA CWMV 64.75 -124.21700000000001 341.0 20050224 20070515 719870 99999 NORTH POINT PEI CA CWNE 47.05 -63.983000000000004 8.0 20030330 20200624 719880 99999 BRIER ISLAND CA CWVU 44.283 -66.35 16.0 20030617 20200624 719890 99999 MOULD BAY CS NWT CA CWAY 76.233 -119.333 2.0 20010916 20200624 719900 99999 MACMILLAN PASS CA CWNV 63.25 -130.033 1379.0 20030617 20200624 719964 99999 SEDCO 706 CA WVFN 0.0 0.0 21.0 19831103 19850813 719974 99999 HOSKINS ISLET CA 52.53 -131.55 8.0 19831103 19860329 719984 99999 WEST VENTURE CA LFXV 0.0 0.0 20.0 19831130 20140125 719990 99999 LILLOOET CA 50.683 -121.93299999999999 235.0 20040928 20200624 719994 99999 SEDCO 710 CA CWQJ 46.5 -48.5 0.0 19831104 19900626 720000 99999 BOGUS AMERICAN US 19830803 20020521 720021 99999 BOOTHVILLE HELIPORT US LA 29.35 -89.43 1.0 20040224 20130430 720046 99999 NEWHALL US CA K3A6 34.37 -118.57 427.0 20040224 20110905 720048 99999 EUGENE ISLAND 330 US LA 28.08 -92.7 0.0 20040316 20090801 720059 99999 VALLE US AZ K40G 35.650999999999996 -112.148 1828.5 20040408 20040614 720110 53983 LLANO MUNICIPAL AIRPORT US TX KAQO 30.784000000000002 -98.662 335.9 20050101 20200625 720110 99999 LLANO MUNI US TX KAQO 30.784000000000002 -98.662 336.0 20040806 20041231 720113 54829 OAKLAND/TROY AIRPORT US MI KVLL 42.543 -83.178 218.2 20050101 20200625 720113 99999 OAKLAND TROY US MI KVLL 42.543 -83.178 222.0 20041230 20041231 720120 63837 HILTON HEAD AIRPORT US SC KHXD 32.217 -80.7 7.3 20060101 20200625 720120 99999 HILTON HEAD US SC KHXD 32.217 -80.7 6.0 20040904 20051231 720122 00114 STARR BROWNING AIRSTRIP US MT K8S0 48.6 -113.117 1419.2 20140731 20150930 720122 99999 BROWNING STARR-BROWNING AIRSTRI US 48.6 -113.11 1419.0 20041030 20041030 720129 99999 AUSTIN ARPT US NV KTMT 39.468 -117.197 1748.1 20170510 20200624 720137 04867 MORS MUNI-J.R. WSBRN FD AP US IL KC09 41.425 -88.419 178.0 20060101 20200625 720137 99999 MORRIS MUNI J R WAS US IL KC09 41.433 -88.417 178.0 20040224 20051231 720141 04868 MARSHALL CO US IL KC75 41.019 -89.38600000000001 173.1 20060101 20130430 720141 99999 MARSHALL CO US IL 41.019 -89.38600000000001 173.1 20040224 20051231 720150 99999 COMANCHE COMANCHE COUNTY-CITY A US 31.92 -98.6 423.0 20040803 20040930 720151 03049 ALPINE-CASPARIS MUNI ARPT US TX KE38 30.383000000000003 -103.68299999999999 1375.6 20060101 20200625 720151 99999 ALPINE CASPARIS MUNI US TX KE38 30.384 -103.684 1376.0 20040426 20051231 720159 99999 HIGH ISLAND 264C US LA KH08 28.467 -93.73299999999999 30.0 20040414 20130510 720160 63884 KEE FLD US WV KI16 37.601 -81.559 543.5 20060101 20130501 720160 99999 KEE FLD US WV 37.6 -81.559 543.5 20040803 20051231 720165 99999 WARNER SPRINGS GLIDERPORT US CA 34.264 -116.854 2056.8 20070307 20130430 720168 99999 COVINGTON MUNI US TN KM04 35.583 -89.587 85.3 20170427 20200624 720169 00116 WASHINGTON REGIONAL AIRPORT US MO KFYG 38.583 -91.0 149.1 20120209 20200625 720169 99999 WASHINGTON REGIONAL AIRPORT US MO KFYG 38.583 -91.0 148.7 20180104 20180520 720170 63851 METROPOLIS MUNICIPAL AIRPORT US IL KM30 37.186 -88.751 117.0 20060101 20200626 720170 99999 METROPOLIS MUNICIPAL US IL KM30 37.186 -88.751 117.0 20040803 20051231 720171 99999 WILLIAM L WHITEHURST FLD US TN KM08 35.214 -89.04299999999999 152.1 20160804 20200624 720172 53996 MENA INTERMOUNTAIN MUNICIPAL AIRPORT US AR KMEZ 34.545 -94.20299999999999 328.9 20060101 20200625 720172 99999 MENA INTERMOUNTAIN US AR KMEZ 34.545 -94.20299999999999 329.0 20041103 20051231 720175 53919 MONTCELO MUNI/ELLIS FLD AP US AR KLLQ 33.635999999999996 -91.756 88.4 20050101 20200625 720175 99999 MONTICELLO US AR KLLQ 33.633 -91.75 84.0 20180101 20180514 720193 00117 LONNIE POOL FIELD WEAVERVILLE AIRPORT US CA KO54 40.747 -122.92200000000001 716.3 20101030 20200625 720193 99999 LONNIE POOL FLD / WEAVERVILLE AIRPORT US CA KO54 40.747 -122.92200000000001 716.0 20180225 20180410 720198 54813 MUNISING LAKESHORE US MI KP53 46.417 -86.65 186.5 20060101 20200625 720198 99999 MUNISING LAKESHORE O US MI KP53 46.417 -86.65 187.0 20041028 20051231 720202 00118 TILLAMOOK AIRPORT US OR KTMK 45.417 -123.81700000000001 11.3 20050103 20200625 720202 99999 TILLAMOOK AWS US OR KTMK 45.417 -123.81700000000001 11.0 20040429 20180514 720254 00119 CHEHALIS CENTRALIA AIRPORT US WA KCLS 46.683 -122.98299999999999 54.3 20070216 20200625 720254 99999 CHEHALIS CENTRALIA US WA KCLS 46.677 -122.98299999999999 53.6 20080101 20180514 720255 99999 MIAMI MUNI US OK KMIO 36.909 -94.88799999999999 246.3 20190828 20200623 720257 63835 EARLY COUNTY AIRPORT US GA KBIJ 31.397 -84.895 65.2 20060101 20200625 720257 99999 EARLY CO US GA KBIJ 31.4 -84.9 65.0 20040525 20051231 720258 04997 ISEDOR IVERSON AIRPORT US MN KHZX 46.619 -93.31 374.3 20060101 20200625 720258 99999 ISEDOR IVERSON US MN KHZX 46.617 -93.31700000000001 374.0 20040525 20051231 720259 63844 MACON CO US NC K1A5 35.223 -83.419 615.7 20060101 20130501 720259 99999 MACON CO US NC 35.223 -83.419 615.7 20040525 20051231 720261 53976 BRIDGEPORT MUNICIPAL ARPT US TX KXBP 33.175 -97.82799999999999 259.4 20060101 20200625 720261 99999 BRIDGEPORT MUNI US TX KXBP 33.183 -97.833 260.0 20040525 20051231 720262 94076 MC ELROY AFLD US CO K20V 40.054 -106.369 2258.9 20060101 20130430 720262 99999 MC ELROY AFLD US CO 40.054 -106.369 2258.9 20040525 20051231 720263 63834 ELBERT CO-PATZ FLD AIRPORT US GA K27A 34.095 -82.816 183.8 20050101 20190913 720263 99999 ELBERT CO PATZ FLD US GA 34.095 -82.816 183.8 20040525 20180322 720264 63827 TAZEWELL COUNTY AIRPORT US VA K6V3 37.064 -81.798 808.3 20060101 20130430 720264 99999 TAZEWELL COUNTY ARPT US VA KJFZ 37.067 -81.8 808.0 20040525 20051231 720265 63833 THOMAS C RUSSELL FLD ARPT US AL KALX 32.915 -85.963 209.1 20060101 20200626 720265 99999 THOMAS C RUSSELL FLD US AL KALX 32.917 -85.96700000000001 209.0 20040525 20051231 720266 54809 WARSAW MUNICIPAL AIRPORT US IN KASW 41.275 -85.84 259.1 20060101 20200626 720266 99999 WARSAW MUNICIPAL US IN KASW 41.266999999999996 -85.833 259.0 20040525 20051231 720267 23224 AUBURN MUNICIPAL AIRPORT US CA KAUN 38.955 -121.08200000000001 466.7 20060101 20200625 720267 99999 AUBURN MUNICIPAL US CA KAUN 38.955 -121.08200000000001 468.0 20040525 20051231 720268 53882 DCATR CO INDUS AIRPK ARPT US GA KBGE 30.983 -84.633 43.0 20060101 20200625 720268 99999 DECATUR CO INDUSTRI US GA KBGE 30.967 -84.633 43.0 20040525 20051231 720269 12982 BROOKS COUNTY AIRPORT US TX KBKS 27.206999999999997 -98.12100000000001 34.1 20060101 20200516 720269 99999 BROOKS CO US TX KBKS 27.2 -98.117 34.0 20040525 20051231 720271 03044 BIG SRNG MCMHN-WRKLE ARPT US TX KBPG 32.213 -101.521 784.3 20060101 20200625 720271 99999 BIG SPRING MCMAHON US TX KBPG 32.217 -101.51700000000001 784.0 20040525 20051231 720272 94282 SKAGIT REGIONAL AIRPORT US WA KBVS 48.467 -122.417 42.7 20060101 20200625 720272 99999 SKAGIT RGNL US WA KBVS 48.467 -122.417 44.0 20040525 20051231 720273 12981 BAY CITY MUNICIPAL AIRPORT US TX KBYY 28.973000000000003 -95.863 13.7 20060101 20200626 720273 99999 BAY CITY MUNI US TX KBYY 28.967 -95.867 14.0 20040525 20051231 720274 93799 COLUMBUS CO MUNICIPAL ARPT US NC KCPC 34.273 -78.715 29.9 20060101 20200625 720274 99999 COLUMBUS CO MUNI US NC KCPC 34.266999999999996 -78.717 30.0 20040525 20051231 720275 04872 TOLEDO SUBURBAN AIRPORT US MI KDUH 41.736000000000004 -83.655 203.9 20060101 20200625 720275 99999 LAMBERTVILLE US MI KDUH 41.733000000000004 -83.65 204.0 20040525 20051231 720276 12983 EDINBURG INTL AIRPORT US TX KEBG 26.441999999999997 -98.12899999999999 24.4 20060101 20200625 720276 99999 EDINBURG INTL US TX KEBG 26.441999999999997 -98.12200000000001 23.0 20040525 20051231 720277 63843 SHELBY MUNICIPAL AIRPORT US NC KEHO 35.256 -81.601 258.2 20060101 20200625 720277 99999 SHELBY MUNI US NC KEHO 35.256 -81.601 258.0 20040525 20051231 720278 03704 EMPORIA-GRENVLE RGNL ARPT US VA KEMV 36.687 -77.483 38.7 20060101 20200625 720278 99999 EMPORIA GREENSVILLE US VA KEMV 36.687 -77.483 39.0 20040525 20051231 720279 03705 CURTIS L BROWN JR FLD ARPT US NC KEYF 34.602 -78.578 40.5 20060101 20200625 720279 99999 C L BROWN JR FLD US NC KEYF 34.6 -78.583 41.0 20040525 20051231 720281 53969 WILBARGER CO US TX KF05 34.226 -99.28399999999999 385.6 20060101 20130430 720281 99999 WILBARGER CO US TX 34.226 -99.28399999999999 385.6 20040525 20051231 720282 03736 FIRST FLIGHT AIRPORT US NC KFFA 36.018 -75.671 4.0 20060101 20200625 720282 99999 FIRST FLIGHT US NC KFFA 36.018 -75.671 4.0 20040525 20051231 720283 04927 FILLMORE COUNTY AIRPORT US MN KFKA 43.677 -92.18 388.9 20060101 20200625 720283 99999 FILLMORE CO US MN KFKA 43.677 -92.18 389.0 20040525 20051231 720284 04877 FITCH H BEACH AIRPORT US MI KFPK 42.574 -84.811 267.6 20060101 20200625 720284 99999 CHARLOTTE US MI KFPK 42.567 -84.81700000000001 271.0 20040525 20051231 720285 03734 MIDDLE PENINSULA REGIONAL AIRPORT US VA KFYJ 37.521 -76.765 7.3 20060101 20200625 720285 99999 MIDDLE PENINSULA RGN US VA KFYJ 37.516999999999996 -76.767 7.0 20040525 20051231 720286 53977 GRANBURY MUNICIPAL ARPT US TX KGDJ 32.444 -97.81700000000001 237.1 20060101 20200625 720286 99999 GRANBURY MUNI US TX KGDJ 32.45 -97.81700000000001 237.0 20040525 20051231 720287 53967 GRAYSON COUNTY AIRPORT US TX KGYI 33.714 -96.67399999999999 228.3 20060101 20200625 720287 99999 GRAYSON CO US TX KGYI 33.714 -96.67399999999999 228.0 20040525 20051231 720288 03711 HENDERSON-OXFORD AIRPORT US NC KHNZ 36.361 -78.529 160.6 20060101 20200625 720288 99999 HENDERSON OXFORD US NC KHNZ 36.367 -78.533 161.0 20040525 20051231 720289 63836 THOMSON-MCDUFFIE CO ARPT US GA KHQU 33.53 -82.516 151.8 20050101 20200626 720289 99999 THOMSON MCDUFFIE CO US GA KHQU 33.533 -82.51700000000001 152.0 20040525 20041231 720291 53970 MESQUITE METROPOLITAN ARPT US TX KHQZ 32.747 -96.531 136.3 20060101 20200625 720291 99999 MESQUITE METRO US TX KHQZ 32.75 -96.53299999999999 136.0 20040525 20051231 720293 04989 INDEPENDENCE MUNICIPAL APT US IA KIIB 42.453 -91.948 298.1 20060101 20200625 720293 99999 INDEPENDENCE MUNI US IA KIIB 42.45 -91.95 298.0 20040525 20051231 720294 53898 WASHINGTON-WILKES CO ARPT US GA KIIY 33.78 -82.816 196.6 20061028 20200626 720294 99999 WASHINGTON WILKES CO US GA KIIY 33.783 -82.81700000000001 197.0 20040525 20040831 720295 53972 HILLSBORO MUNICIPAL ARPT US TX KINJ 32.084 -97.09700000000001 208.8 20060101 20200625 720295 99999 HILLSBORO MUNI US TX KINJ 32.083 -97.1 209.0 20040525 20051231 720296 53945 JASPER COUNTY-BELL FLD APT US TX KJAS 30.886 -94.035 64.9 20060101 20200625 720296 99999 JASPER CO BELL FLD US TX KJAS 30.886 -94.035 65.0 20040525 20051231 720297 03730 WILLIAMSBURG-JAMESTOWN APT US VA KJGG 37.239000000000004 -76.71600000000001 14.9 20060101 20200625 720297 99999 WILLIAMSBURG US VA KJGG 37.233000000000004 -76.717 15.0 20040525 20051231 720298 53971 CHEROKEE COUNTY AIRPORT US TX KJSO 31.869 -95.21799999999999 206.4 20060101 20200625 720298 99999 JACKSONVILLE US TX KJSO 31.866999999999997 -95.21700000000001 206.0 20040525 20051231 720299 53966 MID-WAY REGIONAL AIRPORT US TX KJWY 32.455999999999996 -96.913 228.3 20060101 20200625 720299 99999 MIDLOTHIAN/WAXAHATC US TX KJWY 32.45 -96.917 217.0 20040525 20051231 720300 99999 WARNER-ROBINS(NEXRAD) US GA KJGX 32.683 -83.35 159.0 20051224 20051224 720301 63846 PLANTATION AIRPARK US GA KJYL 32.646 -81.596 57.3 20060101 20200625 720301 99999 PLANTATION AIRPARK US GA KJYL 32.645 -81.596 57.0 20040525 20051231 720302 53963 CRKVIL-RED RIVER CO ARPT US TX KLBR 33.593 -95.064 134.1 20060101 20170326 720302 99999 CLARKSVILLE RED RIVE US TX KLBR 33.593 -96.064 134.0 20040525 20051231 720303 53973 HEARNE MUNICIPAL AIRPORT US TX KLHB 30.872 -96.62200000000001 86.9 20060101 20200625 720303 99999 HEARNE MUNI US TX KLHB 30.866999999999997 -96.617 87.0 20040525 20051231 720304 64752 WINGS FIELD AIRPORT US PA KLOM 40.1 -75.267 92.1 20050101 20200625 720304 99999 WINGS FLD US PA KLOM 40.133 -75.267 92.0 20040525 20041231 720305 53964 DECATUR MUNICIPAL AIRPORT US TX KLUD 33.254 -97.581 319.1 20060101 20200625 720305 99999 DECATUR MUNI US TX KLUD 33.25 -97.583 319.0 20040525 20051231 720306 53879 LEE'S SUMMIT MUNICIPAL APT US MO KLXT 38.96 -94.37100000000001 303.9 20060101 20200625 720306 99999 LEE'S SUMMIT US MO KLXT 38.955999999999996 -94.37299999999999 306.0 20040525 20051231 720307 63804 MADISON CO EXECUTIVE ARPT US AL KMDQ 34.861 -86.557 230.1 20060101 20200625 720307 99999 HUNTSVILLE US AL KMDQ 34.861 -86.557 230.0 20040525 20051231 720308 04992 MILLARD AIRPORT US NE KMLE 41.196000000000005 -96.11200000000001 319.7 20060101 20200625 720308 99999 MILLARD US NE KMLE 41.196000000000005 -96.11200000000001 320.0 20040525 20051231 720309 04947 MOUNT PLEASANT MUNI ARPT US IA KMPZ 40.946999999999996 -91.51100000000001 223.7 20060101 20200625 720309 99999 MT PLEASANT MUNI US IA KMPZ 40.95 -91.51700000000001 224.0 20040525 20051231 720311 53962 MOUNT PLEASANT RGNL ARPT US TX KOSA 33.096 -94.961 110.6 20060101 20200625 720311 99999 MT PLEASANT US TX KOSA 33.1 -94.96700000000001 111.0 20040525 20051231 720312 04964 PELLA MUNICIPAL AIRPORT US IA KPEA 41.4 -92.946 269.8 20060101 20200625 720312 99999 PELLA MUNI US IA KPEA 41.4 -92.95 270.0 20040525 20051231 720313 03052 PERRY LEFORS FIELD AIRPORT US TX KPPA 35.613 -100.99600000000001 989.1 20060101 20200625 720313 99999 PERRY LEFORS FLD US NM KPPA 35.617 -100.98299999999999 989.0 20040525 20051231 720314 93983 PALESTINE MUNICIPAL ARPT US TX KPSN 31.78 -95.706 128.9 20060101 20200625 720314 99999 PALESTINE MUNI US TX KPSN 31.783 -95.7 129.0 20040525 20051231 720315 03045 PERRYTON OCHILTREE CO ARPT US TX KPYX 36.414 -100.75 889.4 20060101 20200625 720315 99999 PERRYTON OCHILTREE US TX KPYX 36.417 -100.75 889.0 20040525 20051231 720316 12984 NUECES COUNTY ARIPORT US TX KRBO 27.779 -97.691 24.1 20060101 20200625 720316 99999 UECES CO US TX KRBO 27.783 -97.68299999999999 24.0 20040716 20051231 720317 03735 STAFFORD REGIONAL AIRPORT US VA KRMN 38.398 -77.456 64.6 20060101 20200625 720317 99999 STAFFORD RGNL US VA KRMN 38.4 -77.45 64.0 20040525 20051231 720318 53965 GRAHAM MUNICIPAL AIRPORT US TX KRPH 33.11 -98.555 342.3 20060101 20200625 720318 99999 GRAHAM MUNI US TX KRPH 33.11 -98.555 342.0 20040525 20051231 720319 63841 ROBINSON MUNICIPAL AIRPORT US IL KRSV 39.016 -87.65 140.8 20060101 20200625 720319 99999 ROBINSON MUNI US IL KRSV 39.016999999999996 -87.65 141.0 20040525 20051231 720320 53981 CLEBURNE MUNICIPAL AIRPORT US TX KCPT 32.354 -97.434 260.3 20060101 20200625 720320 99999 CLEBURNE MUNI US TX KCPT 32.35 -97.43299999999999 260.0 20040803 20051231 720321 04893 CHEBOYGAN COUNTY AIRPORT US MI KSLH 45.653999999999996 -84.51899999999999 193.6 20060101 20200625 720321 99999 CHEBOYGAN CO US MI KSLH 45.65 -84.51700000000001 195.0 20040525 20051231 720322 04129 SANDPOINT AIRPORT US ID KSZT 48.299 -116.56 648.3 20060101 20200625 720322 99999 SANDPOINT US ID KSZT 48.3 -116.56700000000001 650.0 20040525 20051231 720323 93947 GILLESPIE CO US TX KT82 30.243000000000002 -98.91 516.6 20060101 20200625 720323 99999 GILLESPIE CO US TX 30.243000000000002 -98.90899999999999 516.6 20040525 20051231 720324 64753 QUAKERTOWN AIRPORT US PA KUKT 40.435 -75.382 160.3 20060101 20200625 720324 99999 QUAKERTOWN US PA KUKT 40.433 -75.383 160.0 20040525 20051231 720326 04981 VINTON VETERANS MEMORIAL AIRPARK AIRPORT US IA KVTI 42.218999999999994 -92.02600000000001 257.6 20060101 20200605 720326 99999 VINTON VETERANS MEM US IA KVTI 42.217 -92.03299999999999 258.0 20040525 20051231 720327 04995 MENOMONIE MUNICIPAL AIRPORT-SCORE FIELD US WI KLUM 44.891999999999996 -91.868 272.8 20060101 20200626 720327 99999 MENOMONIE AFLD US WI KLUM 44.883 -91.867 273.0 20040525 20051231 720328 63832 UPSHUR COUNTY RGNL AIRPORT US WV KW22 39.0 -80.274 498.4 20060101 20200626 720328 99999 UPSHUR CO RGNL US WV KW22 39.0 -80.267 498.0 20040525 20051231 720329 99999 CABLE US CA KCCB 34.111999999999995 -117.68799999999999 438.6 20171207 20200624 720330 63853 MOUNT CARMEL MUNICIPAL AIRPORT US IL KAJG 38.607 -87.727 161.2 20060101 20200625 720330 99999 MT CARMEL MUNI US IL KAJG 38.6 -87.73299999999999 131.0 20040803 20051231 720331 99999 KENNETT MEM US MO KTKX 36.226 -90.037 79.9 20151210 20200624 720333 53175 CORONA MUNICIPAL AIRPORT US CA KAJO 33.898 -117.602 162.5 20060907 20200625 720333 99999 CORONA MUNI US CA KAJO 33.9 -117.6 162.0 20080101 20180303 720334 93764 GAITHERSBURG MONTGOMERY COUNTY AIR PARK US MD KGAI 39.167 -77.167 164.3 20071017 20200625 720334 99999 MONTGOMERY CO AIRPARK US MD KGAI 39.168 -77.166 164.3 20080101 20081231 720339 00121 RYAN FIELD AIRPORT US AZ KRYN 32.15 -111.167 737.0 20071115 20200624 720339 99999 RYAN FLD US AZ KRYN 32.141999999999996 -111.175 736.7 20080101 20180514 720340 54818 FRANKFORT DOW MEMORIAL FIELD AIRPORT US MI KFKS 44.626000000000005 -86.20100000000001 192.6 20060101 20200625 720340 99999 FRANKLIN DOW MEM FLD US MI KFKS 44.625 -86.20100000000001 193.0 20040824 20051231 720342 53947 WATONGA AIRPORT US OK KJWG 35.864000000000004 -98.421 471.8 20060101 20200625 720342 99999 WATONGA RGNL US OK KJWG 35.867 -98.421 472.0 20041109 20051231 720343 54852 WAUPACA MUNICIPAL AIRPORT US WI KPCZ 44.333 -89.02 251.8 20060101 20200625 720343 99999 WAUPACA MUNI US WI KPCZ 44.333 -89.01700000000001 252.0 20041109 20051231 720344 54920 CHEROKEE MUNICIPAL AIRPORT/ US IA KCKP 42.732 -95.556 373.7 20060101 20200625 720344 99999 CHEROKEE MUNI US IA KCKP 42.733000000000004 -95.55 374.0 20050406 20051231 720345 94086 RALPH WENZ FIELD AIRPORT US WY KPNA 42.79600000000001 -109.807 2159.8 20060101 20200625 720345 99999 RALPH WENZ FLD US WY KPNA 42.8 -109.8 2160.0 20041109 20051231 720346 53991 ALLEN PARISH AIRPORT US LA KACP 30.75 -92.68799999999999 32.6 20050408 20200625 720347 63877 GREENE COUNTY REGIONAL AIRPORT US GA K3J7 33.598 -83.139 206.4 20060101 20200626 720347 99999 GREENE COUNTY RGNL US GA K3J7 33.6 -83.133 206.0 20050427 20051231 720348 63886 BALDWIN COUNTY AIRPORT US GA KMLJ 33.154 -83.241 117.0 20060101 20200626 720348 99999 BALDWIN CO US GA KMLJ 33.154 -83.241 117.0 20050427 20051231 720351 54919 OSKALOOSA MUNICIPAL AIRPORT US IA KOOA 41.226000000000006 -92.491 256.0 20060101 20200625 720351 99999 OSKALOOSA MUNI US IA KOOA 41.233000000000004 -92.5 256.0 20050507 20051231 720352 99999 MISSISSIPPI CANYON US LA KCYD 28.17 -89.22 1.0 20050507 20200624 720353 63875 MIDDLESBORO-BELL COUNTY AIRPORT US KY K1A6 36.611 -83.738 351.7 20060101 20200625 720353 99999 MIDDLESBORO BELL CO US KY K1A6 36.617 -83.73299999999999 352.0 20050524 20051231 720354 63901 ALTUS/QUARTZ MOUNTAIN REGIONAL AIRPORT US OK KAXS 34.699 -99.338 436.8 20050524 20200625 720355 03732 GREATER CUMBERLAND REGIONAL AIRPORT US MD KCBE 39.6 -78.767 236.2 20060428 20200625 720355 99999 GREATER CUMBERLAND US MD KCBE 39.617 -78.767 236.0 20050524 20050524 720356 13999 CLINTON REGIONAL AIRPORT US OK KCLK 35.538000000000004 -98.93299999999999 492.6 20050611 20200625 720357 53993 CUSHING MUNICIPAL AIRPORT US OK KCUH 35.95 -96.773 279.2 20060101 20200625 720357 99999 CUSHING MUNI US OK KCUH 35.95 -96.76700000000001 279.0 20050611 20051231 720358 53999 EL RENO REGIONAL AIRPORT US OK KRQO 35.473 -98.006 431.9 20050817 20200625 720359 23902 SEMINOLE MUNICIPAL AIRPORT US OK KSRE 35.275 -96.675 312.1 20050611 20200625 720361 63870 FLORALA MUNI US AL K0J4 31.043000000000003 -86.31200000000001 95.7 20060511 20200506 720362 63874 MAC CRENSHAW MEMORIAL AIRPORT US AL KPRN 31.846 -86.611 137.5 20060901 20200625 720363 63872 WEEDON FIELD AIRPORT US AL KEUF 31.951 -85.12899999999999 86.9 20060901 20190304 720365 24267 BROOKINGS AIRPORT US OR KBOK 42.074 -124.29 139.9 20050802 20200625 720365 99999 BROOKINGS AIRPORT US OR KBOK 42.074 -124.29 140.0 20050729 20180520 720366 63879 BRAXTON CO US WV K48I 38.687 -80.652 388.6 20060101 20090815 720366 99999 BRAXTON CO US WV 38.687 -80.652 387.1 20050801 20051231 720367 54927 PAYNESVILLE MUNICIPAL AP US MN KPEX 45.372 -94.74600000000001 359.7 20050812 20200625 720367 99999 PAYNESVILLE MUNI US MN KPEX 45.372 -94.74700000000001 359.7 20080101 20180211 720368 54924 SLAYTON MUNICIPAL AIRPORT US MN KDVP 43.986999999999995 -95.78299999999999 494.7 20050811 20200625 720369 04135 DRIGGS-REED MEMORIAL AIRPORT US ID KDIJ 43.743 -111.098 1898.6 20061024 20200625 720371 54850 HREE RIVERS MUNICIPAL DR HAINES AIRPORT US MI KHAI 41.96 -85.59299999999999 251.2 20061024 20200625 720373 92824 PLANT CITY MUNICIPAL AIRPORT US FL KPCM 28.0 -82.164 46.9 20061024 20200625 720374 92825 PETER O KNIGHT AIRPORT US FL KTPF 27.916 -82.449 2.4 20061024 20200625 720375 54844 DRUMMOND ISLAND AIRPORT US MI KDRM 46.007 -83.743 202.7 20060831 20200625 720376 63880 THE ALBERTVILLE MUNI ARPT-THOMAS J BRUMLIK FLD US AL K8A0 34.229 -86.256 314.6 20060403 20200625 720377 13917 NEWPORT MUNI US AR KM19 35.633 -91.167 0.0 20060501 20200625 720377 99999 NEWPORT MUNI US AR KM19 35.638000000000005 -91.176 72.8 20080101 20180322 720378 00122 NEW CASTLE MUNICIPAL AIRPORT US PA KUCP 41.033 -80.417 327.1 20060501 20200625 720378 99999 NEW CASTLE MUNI US PA KUCP 41.025 -80.413 326.7 20080101 20180501 720379 63882 WAYNE COUNTY AIRPORT US KY KEKQ 36.855 -84.85600000000001 293.5 20060501 20200626 720381 63885 JACK EDWARDS AIRPORT US AL KJKA 30.291 -87.67200000000001 4.9 20060501 20200625 720382 00123 ST MICHAEL AIRPORT US AK PAMK 63.49 -162.11 28.0 20060501 20200625 720382 99999 ST MICHAEL US AK PAMK 63.49 -162.11 28.0 20080101 20180513 720383 53847 WHITING FIELD NAVAL AIR STATION-SOUTH US FL KNDZ 30.704 -87.023 54.3 20070116 20200625 720384 00124 BAY BRIDGE AIRPORT US MD KW29 38.967 -76.333 5.2 20070401 20200625 720384 99999 STEVENSVILLE US MD KW29 38.967 -76.333 5.0 20080101 20180103 720385 00419 BERTHOUD PASS US CO K0CO 39.8 -105.766 4113.3 20070401 20200625 720385 99999 BERTHOUD PASS US CO K0CO 39.8 -105.76700000000001 4113.0 20080101 20180520 720386 00125 WILLMAR MUNICIPAL AIRPORT JOHN L RICE FIELD US MN KBDH 45.117 -95.133 344.1 20070724 20200625 720386 99999 WILLMAR MUNI US MN KBDH 45.117 -95.133 343.0 20050101 20180322 720387 99999 HOBBS US NM KHBB 32.766999999999996 -103.21700000000001 1130.0 20070401 20120227 720388 00469 PIERCE COUNTY AIRPORT THUN FIELD US WA KPLU 47.104 -122.287 164.3 20070401 20200625 720388 99999 PUYALLUP THUN FIELD US WA KPLU 47.1 -122.28299999999999 164.0 20080101 20180514 720389 99999 ST MARY'S RGNL / LEONARD TOWN US MD 38.317 -76.55 43.3 20070521 20130430 720391 00127 BEEVILLE MUNICIPAL AIRPORT US TX KBEA 28.35 -97.71700000000001 82.3 20070625 20200625 720391 99999 BEEVILLE MUNI US TX KBEA 28.35 -97.71700000000001 82.0 20080101 20180514 720392 00128 HOMERVILLE AIRPORT US GA KHOE 31.055999999999997 -82.76700000000001 57.3 20070521 20200624 720392 99999 HOMERVILLE US GA KHOE 31.055999999999997 -82.774 56.7 20080101 20180514 720393 00129 HEREFORD MUNICIPAL AIRPORT US TX KHRX 34.85 -102.333 1153.1 20070521 20200625 720393 99999 HEREFORD MUNI US TX KHRX 34.858000000000004 -102.32600000000001 1153.7 20080101 20180514 720394 00428 DEXTER B FLORENCE MEMORIAL FIELD AIRPORT US AR KADF 34.1 -93.066 55.8 20130501 20200625 720394 99999 DEXTER B FLORENCE MEM FLD US AR KADF 34.1 -93.066 55.5 20080101 20180514 720395 00130 PLEASANTON MUNICIPAL AIRPORT US TX KPEZ 28.95 -98.51700000000001 131.1 20070521 20200625 720395 99999 PLEASANTON MUNI US TX KPEZ 28.954 -98.52 131.1 20080101 20180514 720396 99999 TP MCCAMPBELL US TX 27.913 -97.212 5.5 20070521 20070717 720397 00131 OHIO UNIVERSITY AIRPORT SNYDER FIELD US OH KUNI 39.217 -82.23299999999999 233.2 20070521 20200625 720397 99999 OHIO UNIVERSITY SNYDER FLD US OH KUNI 39.211 -82.23100000000001 233.5 20080101 20180501 720398 99999 WAUTOMA MUNI US WI 44.042 -89.304 261.8 20070521 20130425 720399 99999 CAMP BLANDING AAF US FL K2CB 29.951999999999998 -81.98 59.7 20080602 20141003 720401 00133 CLINTON MUNICIPAL AIRPORT US AR KCCA 35.6 -92.45 157.3 20070628 20200625 720401 99999 CLINTON MUNI US AR KCCA 35.6 -92.45 157.0 20080101 20180514 720402 99999 SKYHAVEN US MO K9K4 38.784 -93.803 242.3 20070628 20080106 720403 99999 KICKAPOO DOWNTOWN AIRPARK US TX KT47 33.858000000000004 -98.49 304.2 20070628 20071015 720404 00134 KICKAPOO DOWNTOWN AIRPORT US TX KCWC 33.85 -98.48299999999999 304.2 20071114 20200625 720404 99999 KICKAPOO DOWNTOWN AIRPORT US TX KCWC 33.85 -98.48299999999999 304.0 20080101 20081231 720405 00436 BLAIR MUNICIPAL AIRPORT US NE KBTA 41.412 -96.109 395.9 20090101 20200625 720405 99999 BLAIR MUNI AIRPORT US NE KBTA 41.417 -96.117 403.9 20080107 20180430 720406 00135 GNOSS FIELD AIRPORT US CA KDVO 38.15 -122.55 1.2 20140731 20200625 720406 99999 GNOSS FIELD AIRPORT US CA KDVO 38.15 -122.55 0.6 20071114 20140730 720407 00462 OCEAN COUNTY AIRPORT US NJ KMJX 39.928000000000004 -74.292 25.0 20071114 20200625 720407 99999 ROBERT J MILLER AIRPARK US NJ KMJX 39.933 -74.3 25.0 20080101 20180520 720408 00136 CHESTER COUNTY GO CARLSON AIRPORT US PA KMQS 39.983000000000004 -75.867 201.2 20071203 20200625 720408 99999 COATESVILLE/CARLSON AIRPORT US PA KMQS 39.983000000000004 -75.867 201.0 20080101 20180514 720409 99999 BLAIRSVILLE AIRPORT US GA KDZJ 34.85 -83.98299999999999 582.0 20080101 20200624 720411 00137 ANGEL FIRE AIRPORT US NM KAXX 36.422 -105.29 2554.2 20090101 20200625 720411 99999 ANGEL FIRE US NM KAXX 36.417 -105.29 2554.2 20080107 20180514 720412 54943 PERRY MUNICIPAL AIRPORT US IA KPRO 41.828 -94.16 308.8 20090101 20200625 720412 99999 PERRY MUNI US IA KPRO 41.828 -94.16 309.0 20080115 20180520 720413 00138 POSEY FIELD AIRPORT US AL K1M4 34.266999999999996 -87.6 284.1 20090101 20200625 720413 99999 HALEYVIILLE / POSEY FIELD US AL K1M4 34.266999999999996 -87.6 284.0 20080229 20180514 720414 00139 KNOX COUNTY AIRPORT US OH K4I3 40.333 -82.51700000000001 363.0 20090101 20200626 720414 99999 KNOX COUNTY US OH K4I3 40.333 -82.51700000000001 363.0 20080229 20180520 720415 00140 FREMONT MUNICIPAL AIRPORT US MI KFFX 43.433 -86.0 253.3 20090101 20200625 720415 99999 FREMONT MUNI US MI KFFX 43.433 -86.0 253.0 20080229 20180514 720417 99999 JOHNSON (STANTON CO MUNI) US KS K2K3 37.583 -101.73299999999999 1013.5 20160302 20200624 720422 03037 SHALTZ FIELD AIRPORT US KS KCBK 39.428000000000004 -101.046 971.1 20120403 20200625 720424 99999 CAMP RED DEVIL US CO K1PW 38.5 -104.917 1816.9 20131119 20131119 720425 99999 HUGOTON MUNI US KS KHQG 37.163000000000004 -101.37100000000001 954.9 20151020 20200624 720426 00141 INDEPENDENT MUNICIPAL AIRPORT US KS KIDP 37.158 -95.77799999999999 251.2 20100604 20200625 720426 99999 INDEPENDENCE MUNICIPAL AIRPORT US KS KIDP 37.158 -95.77799999999999 251.5 20180101 20180514 720431 99999 LARNED PAWNEE CO US KS KLQR 38.209 -99.086 613.0 20170615 20180828 720433 99999 NORTON MUNI US KS KNRN 39.85 -99.895 726.3 20181017 20181017 720434 99999 OAKLEY MUNI US KS KOEL 39.11 -100.816 928.1 20190425 20200624 720436 00142 ATKINSON MUNICIPAL AIRPORT US KS KPTS 37.45 -94.73299999999999 290.2 20100113 20200625 720436 99999 ATKINSON MUNI US KS KPTS 37.449 -94.73100000000001 289.6 20180106 20180322 720437 00143 CHEYENNE COUNTY MUNICIPAL AIRPORT US KS KSYF 39.766999999999996 -101.8 1040.3 20120423 20200625 720437 99999 CHEYENNE CO MUNI US KS KSYF 39.760999999999996 -101.796 1039.7 20180101 20180514 720438 99999 SCOTT CITY MUNI US KS KTQK 38.474000000000004 -100.885 903.1 20190429 20200624 720439 99999 ULYSSES US KS KULS 37.604 -101.374 934.8 20180524 20200624 720443 99999 MADISONVILLE MUNI US KY 37.355 -87.4 133.8 20111021 20130430 720445 99999 CAMPBELLVILLE / TAYLOR CO US KY KAAS 37.358000000000004 -85.309 280.7 20180719 20200624 720446 99999 SAMUELS FLD / BARDSTOWN US KY KBRY 37.814 -85.5 203.9 20171207 20200624 720447 00437 KYLE OAKLEY FIELD AIRPORT US KY KCEY 36.665 -88.37299999999999 176.2 20101109 20200625 720448 00144 STUART POWELL FIELD AIRPORT US KY KDVK 37.578 -84.77 312.1 20090101 20200625 720448 99999 STUART POWELL FLD US KY KDVK 37.578 -84.77 311.5 20080325 20180514 720449 99999 ASHLAND RGNL US KY KDWU 38.555 -82.738 166.4 20140813 20200624 720451 99999 ADDINGTON FLD US KY KEKX 37.686 -85.925 236.2 20161110 20200624 720452 99999 FLEMING/MASON AIRPORT US KY KFGX 38.542 -83.743 278.3 20140307 20200624 720455 00145 MADISON AIRPORT US KY KI39 37.633 -84.333 305.1 20101216 20200624 720455 99999 MADISON / RICHMOND US KY 37.631 -84.33200000000001 304.8 20180101 20180514 720456 00146 MOUNT STERLING MONTGOMERY COUNTY AIRPORT US KY KIOB 38.067 -83.98299999999999 311.2 20120531 20200625 720456 99999 MT STERLING MONTGOMERY CO US KY KIOB 38.058 -83.98 310.6 20180101 20180514 720457 99999 WENDELL H FORD ARPT US KY KCPF 37.387 -83.262 383.0 20200430 20200624 720458 00476 BIG SANDY REGIONAL AIRPORT US KY KSJS 37.751 -82.637 372.5 20120531 20200625 720458 99999 BLUEBIRD US OK 35.403 -96.83200000000001 313.9 20180101 20180514 720464 99999 PIKE CO HATCHER FLD US KY KPBX 37.562 -82.566 449.0 20140923 20200624 720465 99999 WILLIAMSBURG (WHITLEY CO ARPT) US KY KBYL 36.8 -84.2 358.8 20160302 20200624 720466 99999 SUPERDOME HELIPORT US LA KVSH 29.95 -90.083 15.2 20120726 20150128 720467 00148 GEORGE R CARR MEMORIAL AIR FIELD US LA KBXA 30.816999999999997 -89.867 36.6 20120824 20200625 720467 99999 GEORGE R CARR MEM AIR FLD US LA KBXA 30.814 -89.865 36.3 20180107 20180514 720468 00466 ST LANDRY PARISH AIRPORT AHART FIELD US LA KOPL 30.558000000000003 -92.09899999999999 23.2 20130502 20200625 720472 99999 STEVEN A BEAN MUNI US ME K8B0 44.992 -70.665 556.3 20170116 20200624 720475 99999 NORTHWEST MISSOURI RGNL US MO KEVU 40.353 -94.915 350.5 20170105 20200624 720476 00455 HANNIBAL REGIONAL AIRPORT US MO KHAE 39.725 -91.444 234.7 20121115 20200625 720477 99999 FLOYD W JONES LEBANON US MO KLBO 37.648 -92.652 402.6 20170630 20200624 720478 99999 LAWRENCE SMITH MEM US MO KLRY 38.611 -94.34200000000001 278.9 20161216 20200624 720479 00149 MONETT MUNICIPAL AIRPORT US MO KHFJ 36.9 -94.01700000000001 401.1 20090201 20200625 720479 99999 MONETT MUNI US MO KHFJ 36.9 -94.01700000000001 401.0 20180106 20180322 720481 03817 MALDEN FAA AIRPORT US MO KMAW 36.6 -89.98299999999999 92.1 20190516 20200430 720481 99999 MALDEN MUNI US MO KMAW 36.601 -89.992 89.9 20160517 20200624 720482 99999 OMAR N BRADLEY US MO KMBY 39.464 -92.427 264.3 20170924 20200624 720483 99999 MARSHALL MEM MUNI US MO KMHL 39.096 -93.20299999999999 237.4 20141202 20200624 720484 99999 MEXICO MEM US MO KMYJ 39.158 -91.818 250.9 20160426 20200624 720487 99999 WARSAW MUNI US MO KRAW 38.347 -93.345 285.3 20170908 20200624 720488 99999 SIKESTON MEM MUNI US MO KSIK 36.899 -89.56200000000001 96.0 20150128 20200624 720491 00150 GWINNER ROGER MELROE FIELD AIRPORT US ND KGWR 46.217 -97.633 386.2 20140701 20200625 720491 99999 GWINNER ROGER MELROE FLD US ND KGWR 46.218999999999994 -97.64299999999999 385.9 20101227 20180430 720492 00151 CALEDONIA COUNTY AIRPORT US VT KCDA 44.567 -72.017 362.1 20090101 20200625 720492 99999 CALEDONIA COUNTY AIRPORT US VT KCDA 44.567 -72.017 362.0 20080422 20081231 720493 54758 NEWPORT AP US VT KEFK 44.883 -72.233 278.9 20090101 20200614 720493 99999 NEWPORT STATE US VT KEFK 44.888999999999996 -72.229 283.5 20080423 20180514 720494 00152 FRANKLIN COUNTY STATE AIRPORT US VT KFSO 44.933 -73.1 70.1 20080401 20200625 720498 00153 CHESTERFIELD COUNTY AIRPORT US VA KFCI 37.4 -77.517 72.2 20100517 20200625 720498 99999 CHESTERFIELD AIRPORT US VA KFCI 37.4 -77.517 72.2 20180207 20180514 720499 00154 HAMPTON ROADS EXECUTIVE AIRPORT US VA KPVG 36.783 -76.45 7.0 20110503 20200626 720499 99999 HAMPTON ROADS EXECUTIVE AIRPORT US VA KPVG 36.78 -76.449 7.0 20180101 20180520 720501 00155 TAPPAHANNOCK ESSEX COUNTY AIRPORT US VA KXSA 37.85 -76.883 41.2 20090101 20200625 720501 99999 ESSEX CO AIRPORT US VA KXSA 37.85 -76.883 41.0 20080401 20180514 720504 99999 TALLADEGA MUNI US AL KASN 33.57 -86.051 160.9 20120106 20200624 720505 00156 WALKER COUNTY AIRPORT BEVILL FIELD US AL KJFX 33.902 -87.314 147.2 20110207 20200625 720505 99999 WALKER CO BEVILL FLD US AL KJFX 33.902 -87.314 146.9 20180101 20180520 720507 99999 BESSEMER AIPORT US AL KEKY 33.313 -86.926 213.1 20160714 20200624 720508 99999 MERKEL FLD SYLACAUGA MUNI US AL KSCD 33.172 -86.306 173.4 20140114 20200624 720516 99999 AFTON MUNI US WY KAFO 42.711000000000006 -110.94200000000001 1896.2 20131113 20200624 720517 24165 KEMMERER MUNICIPAL AIRPORT US WY KEMM 41.824 -110.557 2220.5 20130627 20200625 720518 00449 FORT BRIDGER AIRPORT US WY KFBR 41.393 -110.406 2145.5 20130801 20190521 720518 99999 FORT BRIDGER AIRPORT US WY KFBR 41.391999999999996 -110.10700000000001 2144.0 20120720 20120720 720519 99999 POWELL MUNI US WY KPOY 44.867 -108.79299999999999 1552.0 20140707 20200624 720521 00475 SHIVELY FIELD AIRPORT US WY KSAA 41.443999999999996 -106.82799999999999 2138.5 20130502 20200625 720521 99999 SHIVELY FLD US WY KSAA 41.445 -106.824 2137.3 20180101 20180514 720522 00443 DUBOIS MUNICIPAL AIRPORT US WY KDUB 43.548 -109.69 2224.1 20130514 20200625 720522 99999 DUBOIS MUNI AIRPORT US WY KDUB 43.548 -109.69 2224.1 20180101 20180514 720524 99999 FREMONT CO AIRPORT US CO 38.428000000000004 -105.10600000000001 1657.8 20120713 20130430 720528 03064 CENTRAL COLORADO REGIONAL AP US CO KAEJ 38.698 -106.07 2421.9 20100401 20200625 720529 00429 HOPKINS FIELD AIRPORT US CO KAIB 38.239000000000004 -108.56299999999999 1810.5 20121206 20200504 720529 99999 HOPKINS FIELD US CO KAIB 38.233000000000004 -108.56700000000001 1811.0 20080704 20080704 720531 00158 BLAKE FIELD AIRPORT US CO KAJZ 38.783 -108.06700000000001 1583.1 20120209 20200625 720531 99999 BLAKE FIELD / DELTA US CO KAJZ 38.783 -108.06700000000001 1583.0 20180101 20180514 720532 00159 HARRIET ALEXANDER FIELD AIRPORT US CO KANK 38.533 -106.05 2294.2 20091121 20200625 720532 99999 HARRIET- ALEXANDER FIELD US CO KANK 38.533 -106.05 2294.0 20180101 20180514 720533 00160 BOULDER MUNICIPAL AIRPORT US CO KBDU 40.033 -105.21700000000001 1612.1 20100201 20200625 720533 99999 BOULDER MUNICIPAL AIRPORT US CO KBDU 40.039 -105.226 1612.0 20180105 20180322 720534 00161 ERIE MUNICIPAL AIRPORT US CO KEIK 40.016999999999996 -105.05 1564.2 20140701 20200625 720534 99999 ERIE MUNI US CO KEIK 40.016999999999996 -105.05 1564.0 20100218 20140630 720535 00162 FORT MORGAN MUNICIPAL AIRPORT US CO KFMM 40.333 -103.8 1393.2 20120726 20200625 720535 99999 FORT MORGAN MUNI US CO KFMM 40.334 -103.804 1392.3 20180101 20180515 720536 99999 GRANBY GRAND CO US CO KGNB 40.09 -105.917 2500.3 20170703 20200624 720537 00163 HOLYOKE AIRPORT US CO KHEQ 40.567 -102.26700000000001 1137.2 20101129 20200625 720537 99999 HOLYOKE US CO KHEQ 40.569 -102.273 1136.9 20180107 20180322 720538 00164 VANCE BRAND AIRPORT US CO KLMO 40.167 -105.167 1541.1 20101202 20200626 720538 99999 VANCE BRAND AIRPORT US CO KLMO 40.167 -105.167 1541.0 20180101 20180515 720539 00165 STEVENS FIELD AIRPORT US CO KPSO 37.283 -107.05 2335.1 20091001 20200625 720539 99999 STEVENS FIELD US CO KPSO 37.283 -107.05 2335.0 20180101 20180515 720541 53806 OXFORD UNIV US MS KUOX 34.383 -89.55 137.8 20090101 20200626 720541 99999 UNIVERSITY OXFORD US MS KUOX 34.383 -89.53299999999999 138.0 20080530 20180515 720542 00166 LAGO VISTA RUSTY ALLEN AIRPORT US TX KRYW 30.5 -97.96700000000001 375.2 20090101 20200625 720542 99999 LARGO VISTA / RUSTY ALLEN AIRPORT US TX KRYW 30.5 -97.96700000000001 375.0 20080825 20180322 720543 00167 DE KALB COUNTY AIRPORT US IN KGWB 41.3 -85.06700000000001 268.2 20090101 20200626 720543 99999 AUBURN / DE KALB CO US IN KGWB 41.306999999999995 -85.064 268.2 20080612 20180514 720544 00168 STERLING MUNICIPAL AIRPORT US CO KSTK 40.617 -103.26700000000001 1231.1 20101129 20200625 720544 99999 STERLING MUNI US CO KSTK 40.615 -103.265 1230.8 20180128 20180515 720545 00169 CHESTER AIRPORT US CT KSNC 41.38399999999999 -72.506 127.1 20090101 20200625 720545 99999 CHESTER AIRPORT US CT KSNC 41.38399999999999 -72.506 126.8 20080817 20180322 720546 99999 EUREKA US NV 39.604 -116.005 1814.8 20120209 20130430 720549 00171 CARSON AIRPORT US NV KCXP 39.183 -119.73299999999999 1432.3 20100714 20200625 720549 99999 CARSON CITY AIRPORT US NV KCXP 39.192 -119.734 1431.6 20180129 20180211 720551 99999 MINDEN TAHOE AIRPORT US NV KMEV 39.0 -119.751 1440.5 20140523 20200624 720553 99999 PORT AUTH DOWNTN MANHATTAN WALL ST HEL US NY KJRB 40.701 -74.009 2.1 20160720 20200624 720558 03977 ELK CITY MUNICIPAL AP US OK KELK 35.433 -99.4 610.2 20140530 20200625 720558 99999 ELK CITY MUNI US OK KELK 35.431 -99.39399999999999 610.2 20180101 20180515 720559 00172 STAN STAMPER MUNICIPAL AIRPORT US OK KHHW 34.033 -95.53299999999999 174.0 20120202 20190613 720559 99999 STAN STAMPER MUNI US OK KHHW 34.035 -95.542 174.0 20180107 20180322 720561 00467 WILLIAM R POUGE MUNICIPAL AIRPORT US OK KOWP 36.175 -96.152 272.2 20130822 20200625 720561 99999 WILLIAM R POGUE MUNI US OK KOWP 36.167 -96.15 272.0 20180102 20180515 720562 99999 RANGE OP 13 / YAKIMA TRAINING CENTER US WA K1QW 46.8 -120.167 928.0 20080530 20170920 720565 99999 HEBER CITY MUNICIPAL AIRPORT US UT K36U 40.482 -111.429 1718.2 20100412 20200624 720567 24180 BRIGHAM CITY AIRPORT US UT KBMC 41.552 -112.06200000000001 1288.1 20140724 20200625 720569 99999 KANAB MUNI US UT KKNB 37.010999999999996 -112.531 1483.8 20130813 20200624 720572 99999 BOLINDER FIELD TOOELE VALLEY US UT KTVY 40.611999999999995 -112.351 1316.1 20150506 20200624 720575 00173 INDIANAPOLIS EXECUTIVE AIRPORT US IN KTYQ 40.031 -86.251 281.0 20140101 20200625 720575 99999 INDIANAPOLIS EXECUTIVE US IN KTYQ 40.031 -86.251 281.0 20080721 20131231 720576 00174 UNIVERSITY AIRPORT US CA KEDU 38.533 -121.78299999999999 21.0 20090102 20200625 720576 99999 DAVIS US CA KEDU 38.533 -121.78299999999999 21.0 20080721 20180514 720577 00175 RUSK COUNTY AIRPORT US TX KRFI 32.15 -94.85 135.0 20090109 20200625 720577 99999 HENDERSON/RUSK COUNTY AIRPORT US TX KRFI 32.15 -94.85 134.7 20080721 20180515 720578 00176 STEPHENS COUNTY AIRPORT US TX KBKD 32.717 -98.89200000000001 391.1 20090101 20200625 720578 99999 STEPHENS CO US TX KBKD 32.719 -98.891 391.4 20080721 20180514 720579 99999 CASTROVILLE MUNI US TX KT89 29.342 -98.851 235.0 20080825 20130430 720581 00178 LINDEN AIRPORT US NJ KLDJ 40.617 -74.25 7.0 20170101 20200625 720581 99999 LINDEN US NJ KLDJ 40.617 -74.245 7.0 20080721 20161231 720582 99999 TODD FLD US MN 45.898999999999994 -94.874 406.3 20080721 20130430 720583 99999 LAKE ELMO US MN 44.997 -92.85600000000001 284.1 20080721 20130430 720584 00181 ZAPATA COUNTY AIRPORT US TX KAPY 26.967 -99.25 129.2 20090101 20200625 720584 99999 ZAPATA US TX KAPY 26.967 -99.25 129.0 20080721 20180515 720585 99999 ELBOW LAKE MUNI US MN 45.986000000000004 -95.992 367.0 20080721 20130430 720586 00183 PLATTEVILLE MUNICIPAL AIRPORT US WI KPVB 42.683 -90.45 312.1 20090101 20200625 720586 99999 PLATTEVILLE MUNI US WI KPVB 42.68899999999999 -90.444 312.1 20080825 20180515 720587 00184 ABBEVILLE CHRIS CRUSTA MEMORIAL AIRPORT US LA KIYA 29.976 -92.084 15.2 20090101 20200625 720587 99999 CHRIS CRUSTA MEMORIAL AIRPORT / ABBEVILLE US LA KIYA 29.976 -92.084 4.6 20080825 20180515 720588 99999 OXFORD US MS 34.383 -89.53299999999999 136.0 20080825 20081231 720589 00185 SHAWANO MUNICIPAL AIRPORT US WI KEZS 44.783 -88.55 248.1 20090201 20200625 720589 99999 SHAWANO US WI KEZS 44.783 -88.55 248.0 20080915 20180322 720592 00186 H L SONNY CALLAHAN AIRPORT US AL KCQF 30.46 -87.87700000000001 28.0 20090101 20200625 720592 99999 FAIRHOPE/SONNY CALLAHAN AIRPORT US AL KCQF 30.461 -87.87700000000001 27.7 20081022 20180515 720593 00187 STARKE COUNTY AIRPORT US IN KOXI 41.333 -86.667 208.2 20090101 20200625 720593 99999 KNOX/STARKE CO US IN KOXI 41.333 -86.667 208.5 20081022 20180410 720594 00188 HOUSTON DUNN HELISTOP US TX KMCJ 29.717 -95.383 69.2 20090101 20200626 720594 99999 HOUSTON/DUNN HELISTOP US TX KMCJ 29.717 -95.383 69.0 20081022 20180521 720596 00189 NEWBERRY COUNTY AIRPORT US SC KEOE 34.3 -81.633 173.1 20090105 20200626 720596 99999 NEWBERRY US SC KEOE 34.3 -81.633 173.0 20180101 20180514 720597 00190 LAURENS COUNTY AIRPORT US SC KLUX 34.5 -81.95 212.1 20090105 20200626 720597 99999 LAURENS US SC KLUX 34.5 -81.95 212.0 20180101 20180515 720598 00191 BERKELEY COUNTY AIRPORT US SC KMKS 33.183 -80.033 22.3 20090105 20200625 720598 99999 MONCKS CORNER US SC KMKS 33.183 -80.033 22.0 20180104 20180322 720599 00192 CHESTER CATAWBA REGIONAL AIRPORT US SC KDCM 34.783 -81.2 200.3 20090105 20200625 720599 99999 CHESTER US SC KDCM 34.783 -81.2 200.0 20180129 20180207 720601 00193 AIKEN MUNICIPAL AIRPORT US SC KAIK 33.65 -81.683 161.2 20090105 20200626 720601 99999 AIKEN MUNI US SC KAIK 33.649 -81.685 160.9 20180101 20180515 720602 00194 BARNWELL REGIONAL AIRPORT US SC KBNL 33.25 -81.383 75.3 20090105 20200626 720602 99999 BARNWELL CO US SC KBNL 33.258 -81.388 75.0 20180101 20180515 720603 00195 WOODWARD FIELD AIRPORT US SC KCDN 34.283 -80.567 92.1 20090105 20200625 720603 99999 CAMDEN/WOODWARD FLD US SC KCDN 34.283 -80.567 92.0 20180102 20180410 720604 00196 WILLIAMSBURG REGIONAL AIRPORT US SC KCKI 33.717 -79.85 20.1 20090105 20200625 720605 00197 CHERAW MUNICIPAL LYNCH BELLINGER FIELD US SC KCQW 34.717 -79.95 73.2 20090105 20200626 720605 99999 CHERAW US SC KCQW 34.717 -79.95 73.0 20180101 20180515 720606 00198 CHARLESTON EXECUTIVE AIRPORT US SC KJZI 32.701 -80.003 5.2 20130101 20200625 720606 99999 CHARLESTON EXECUTIVE US SC KJZI 32.701 -80.003 5.2 20090105 20180322 720607 00199 LANCASTER COUNTY MC WHIRTER FIELD AIRPORT US SC KLKR 34.717 -80.85 148.1 20090105 20200625 720607 99999 LANCASTER CO MC WHIRTER FLD US SC KLKR 34.723 -80.855 148.1 20180101 20180515 720608 00200 MARION COUNTY AIRPORT US SC KMAO 34.181 -79.335 28.0 20090105 20200625 720608 99999 MARION CO US SC KMAO 34.181 -79.335 28.0 20180108 20180514 720609 00201 LOWCOUNTRY REGIONAL AIRPORT US SC KRBW 32.917 -80.633 31.1 20130101 20200626 720609 99999 WALTERBORO/LOWCOUNTRY RGNL US SC KRBW 32.921 -80.641 29.9 20090105 20121231 720611 00202 SUMTER AIRPORT US SC KSMS 34.0 -80.367 55.2 20090105 20200626 720611 99999 SUMTER US SC KSMS 34.0 -80.367 55.5 20180126 20180515 720612 00203 BEAUFORT COUNTY AIRPORT US SC KARW 32.412 -80.634 38.1 20090120 20200625 720612 99999 BEAUFORT US SC KARW 32.4 -80.633 3.0 20180104 20180322 720613 00204 CONWAY HORRY COUNTY AIRPORT US SC KHYW 33.828 -79.122 10.1 20090510 20200625 720613 99999 CONWAY HORRY CO US SC KHYW 33.829 -79.122 10.4 20180101 20180520 720614 00205 LINCOLN REGIONAL AIRPORT KARL HARDER FIELD US CA KLHM 38.909 -121.351 37.2 20090510 20200625 720615 00206 COLUMBIA AIRPORT US CA KO22 38.033 -120.417 646.2 20090120 20200625 720615 99999 COLUMBIA US CA 38.03 -120.415 645.6 20180104 20180515 720616 00207 BRANSON AIRPORT US MO KBBG 36.533 -93.2 397.2 20090201 20200625 720616 99999 BRANSON AIRPORT US MO KBBG 36.533 -93.2 397.0 20180101 20180515 720617 00208 HOUSTON EXECUTIVE AIRPORT US TX KTME 29.8 -95.9 51.2 20090204 20200626 720617 99999 HUSTON/EXECUTIVE US KTME 29.8 -95.9 50.6 20180128 20180207 720619 99999 FRANCIS E WARREN AFB HELIPORT US WY KFEW 41.133 -104.867 1877.6 20090423 20200624 720622 99999 BOWIE MUNI US TX 33.602 -97.77600000000001 335.6 20090320 20130430 720623 99999 ELIZABETHTON MUNI US TN 36.371 -82.17299999999999 485.5 20090325 20130430 720624 00211 MADISON MUNICIPAL AIRPORT US SD KMDS 44.016000000000005 -97.086 523.0 20090312 20200625 720624 99999 MADISON MUNI US SD KMDS 44.016000000000005 -97.086 523.3 20180102 20180514 720625 00212 BLACKWELL TONKAWA MUNICIPAL AIRPORT US OK KBKN 36.75 -97.35 314.3 20090312 20200626 720625 99999 BLACKWELL TONKAWA MUNI US OK KBKN 36.75 -97.35 314.0 20180101 20180515 720626 00213 PAMPA MESA VISTA AIRPORT US TX KBPC 35.883 -101.03299999999999 845.2 20090326 20200625 720626 99999 PAMPA M VISTA US TX KBPC 35.883 -101.03299999999999 845.0 20090313 20180520 720627 00214 STIGLER REGIONAL AIRPORT US OK KGZL 35.283 -95.1 183.2 20090312 20200625 720627 99999 STIGLER RGNL US OK KGZL 35.283 -95.1 183.0 20180301 20180514 720628 00215 CLARENCE E PAGE MUNICIPAL AIRPORT US OK KRCE 35.483000000000004 -97.81700000000001 413.0 20090326 20200625 720628 99999 OKLAHOMA CITY/PAGE US OK KRCE 35.483000000000004 -97.81700000000001 413.0 20090312 20180515 720629 00216 JACK BARSTOW AIRPORT US MI KIKW 43.663000000000004 -84.26100000000001 194.2 20090406 20200625 720629 99999 JACK BARSTOW US MI KIKW 43.663000000000004 -84.26100000000001 193.5 20180101 20180515 720631 00217 MARLBORO COUNTY JETPORT H E AVENT FIELD US SC KBBP 34.617 -79.733 45.1 20090420 20200625 720631 99999 MARLBORO CO JETPORT H E AVENT US SC KBBP 34.622 -79.734 44.8 20090403 20180515 720632 00218 SUMMERVILLE AIRPORT US SC KDYB 33.063 -80.279 17.1 20090404 20200626 720632 99999 SUMMERVILLE US SC KDYB 33.063 -80.279 17.1 20180101 20180515 720633 00219 HARTSVILLE REGIONAL AIRPORT US SC KHVS 34.4 -80.117 111.3 20090403 20200625 720633 99999 HARTSVILLE RGNL US SC KHVS 34.403 -80.119 110.9 20180101 20180514 720634 00220 FAIRFIELD COUNTY AIRPORT US SC KFDW 34.315 -81.109 176.2 20090421 20200626 720634 99999 FAIRFIELD CO/WINNSBORO US SC KFDW 34.315 -81.109 175.9 20180107 20180322 720635 00221 H A CLARK MEMORIAL FIELD AIRPORT US AZ KCMR 35.3 -112.2 2035.2 20090508 20200625 720635 99999 H A CLARK MEM FLD US AZ KCMR 35.302 -112.194 2035.5 20180101 20180514 720636 00222 CLINTON MEMORIAL AIRPORT US MO KGLY 38.35 -93.68299999999999 251.2 20090511 20200526 720636 99999 CLINTON MEM US MO KGLY 38.357 -93.684 250.5 20090508 20180515 720637 00223 HOUSTON SOUTHWEST AIRPORT US TX KAXH 29.5 -95.477 21.0 20090601 20200626 720637 99999 HOUSTON SOUTHWEST AIRPORT US TX KAXH 29.506 -95.477 20.7 20180101 20180515 720638 00224 BEND MUNICIPAL AIRPORT US OR KBDN 44.095 -121.2 1055.2 20090524 20200625 720638 99999 BEND MUNI AIRPORT US OR KBDN 44.095 -121.2 1054.6 20180101 20180515 720639 00225 HORSESHOE BAY RESORT AIRPORT US TX KDZB 30.533 -98.367 333.2 20090605 20200625 720641 99999 SCHRIEVER AFB US CO KSHM 38.8 -104.51700000000001 1899.5 20121018 20180217 720642 99999 CHEYENNE MTN AS US CO KCWN 38.75 -104.85 2114.0 20121120 20200624 720643 54940 FOREST CITY MUNICIPAL AIRPORT US IA KFXY 43.235 -93.624 374.6 20090714 20200626 720643 99999 FOREST CITY MUNI US IA KFXY 43.233000000000004 -93.78299999999999 375.0 20090702 20180515 720644 00226 BUCKEYE MUNICIPAL AIRPORT US AZ KBXK 33.417 -112.68299999999999 311.2 20130101 20200625 720644 99999 BUCKEYE MUNI US AZ KBXK 33.42 -112.686 311.2 20090708 20121231 720645 00227 PLACERVILLE AIRPORT US CA KPVF 38.717 -120.75 787.3 20090711 20200625 720645 99999 PLACERVILLE US CA KPVF 38.724000000000004 -120.75299999999999 787.3 20180104 20180322 720646 00228 HALF MOON BAY AIRPORT US CA KHAF 37.513000000000005 -122.501 20.1 20090717 20200625 720647 00229 LAMPASAS AIRPORT US TX KLZZ 31.105999999999998 -98.196 370.0 20090719 20200625 720648 00230 AUSTIN EXECUTIVE AIRPORT US TX KEDC 30.395 -97.56700000000001 188.1 20090722 20200625 720648 99999 AUSTIN EXECUTIVE US TX KEDC 30.395 -97.56700000000001 187.5 20180101 20180514 720649 00231 HALIFAX NORTHAMPTON REGIONAL AIRPORT US NC KIXA 36.33 -77.635 44.2 20090722 20200625 720649 99999 HALIFAX-NORTHAMPTON REGIONAL US NC KIXA 36.33 -77.635 44.2 20180104 20180416 720651 00232 UNION COUNTY AIRPORT US OH KMRT 40.225 -83.352 311.2 20090721 20200625 720652 00433 BRIDGEPORT SONORA JUNCTION US CA KBAN 38.356 -119.51899999999999 2057.1 20090827 20200625 720652 99999 USMC MTN WARFARE TRAINING CENTER US CA KBAN 38.35 -119.51700000000001 2067.2 20090813 20180515 720654 99999 CORNING MUNI US AR 36.404 -90.648 89.3 20090701 20130430 720655 00235 CRYSTAL RIVER AIRPORT US FL KCGC 28.866999999999997 -82.56700000000001 3.1 20090812 20200626 720655 99999 CRYSTAL RIVER US FL KCGC 28.866999999999997 -82.571 2.7 20180107 20180322 720656 99999 MIDDLETON MUNI MOREY FLD US WI 43.114 -89.53200000000001 282.9 20091104 20130430 720657 99999 HINCKLEY/FIELD OF DREAMS AIRPORT US MN 46.023 -92.895 311.0 20091111 20130430 720658 99999 SAUK CENTRE MUNI US MN 45.707 -94.93299999999999 379.2 20091111 20130430 720659 00239 OZONA MUNICIPAL AIRPORT US TX KOZA 30.735 -101.20299999999999 726.0 20091118 20200625 720659 99999 OZONA MUNI US TX KOZA 30.735 -101.20299999999999 725.7 20180101 20180514 720661 99999 IONIA CO US MI 42.938 -85.061 249.3 20091203 20130430 720663 99999 VIROQUA MUNI US WI 43.57899999999999 -90.913 393.8 20091216 20130430 720664 00242 INDEPENDENCE OIL PLATFORM US LA KIPN 28.083000000000002 -87.98299999999999 224.0 20091229 20160616 720664 99999 OIL PLATFORM/INDEPENDENCE US LA KIPN 28.083000000000002 -87.98299999999999 223.7 20091217 20091228 720665 00243 MAGNOLIA OIL PLATFORM US LA KGBK 27.2 -92.2 224.0 20091229 20200626 720665 99999 OIL PLATFORM/MAGNOLIA US LA KGBK 27.2 -92.2 223.7 20091217 20180515 720666 00244 SHIP SHOAL OIL PLATFORM US LA KSPR 28.6 -91.2 224.0 20091229 20200222 720666 99999 OIL PLATFORM/SHIP SHOAL US LA KSPR 28.6 -91.2 223.7 20091217 20180515 720667 99999 OIL PLATFORM/INNOVATOR US MS KMYT 28.217 -89.617 223.7 20091217 20140203 720668 00246 EAST BREAKS OIL PLATFORM US TX KEMK 27.816999999999997 -94.31700000000001 224.0 20091229 20200626 720668 99999 OIL PLATFORM/EAST BREAKS US TX KEMK 27.816999999999997 -94.31700000000001 223.7 20091217 20180520 720669 00247 GUNNISON OIL PLATFORM US TX KGUL 27.3 -93.53299999999999 224.0 20091229 20200626 720669 99999 OIL PLATFORM/GUNNISON US TX KGUL 27.3 -93.53299999999999 223.7 20091217 20180528 720671 00248 JESUP WAYNE COUNTY AIRPORT US GA KJES 31.554000000000002 -81.883 33.2 20100112 20200625 720671 99999 JESUP WAYNE CO US GA KJES 31.554000000000002 -81.883 32.9 20100111 20180520 720672 00485 FLAGLER COUNTY EXECUTIVE AIRPORT US FL KFIN 29.467 -81.206 10.1 20091103 20200625 720674 00249 WEST GEORGIA REGIONAL AIRPORT O V GRAY FIELD US GA KCTJ 33.633 -85.15 354.2 20100129 20200626 720674 99999 WEST GEORGIA RGNL O V GRAY FLD US GA KCTJ 33.631 -85.152 353.9 20180101 20180515 720675 99999 INDIAN SPRINGS RANGE 63 US NV KL63 36.53 -115.57 972.0 20050103 20111230 720681 99999 CALAVERAS CO MAURY RASMUSSEN FLD US CA KCPU 38.146 -120.648 403.9 20160526 20200624 720684 99999 PHIFER AFLD US WY KEAN 42.05 -104.93299999999999 1455.1 20160331 20200624 720687 99999 HEMET RYAN US CA KHMT 33.733000000000004 -117.01700000000001 460.9 20191121 20200624 720699 03724 CARROLL CO RGNL/JJACK B POAGE FIELD AIRPORT US MD KDMW 39.608000000000004 -77.008 240.5 20110101 20200625 720699 99999 CARROLL CO RGNL JAC US MD KDMW 39.608000000000004 -77.008 240.0 20100218 20101231 720701 54942 OSCEOLA MUNICIPAL AIRPORT US IA KI75 41.052 -93.689 339.9 20100304 20200625 720701 99999 OSCEOLA MUNI US IA KI75 41.05 -93.68299999999999 338.0 20100218 20180520 720705 99999 JAMES A RHODES US OH KI43 38.981 -82.57799999999999 221.3 20190502 20200624 720709 99999 PUTNAM COUNTY AIRPORT US OH KOWX 41.036 -83.98200000000001 232.6 20160909 20200624 720712 00250 HENRY TIFT MYERS AIRPORT US GA KTMA 31.429000000000002 -83.48899999999999 108.2 20100804 20200625 720712 99999 HENRY TIFT MYERS AIRPORT US KTMA 31.429000000000002 -83.48899999999999 108.2 20180101 20180515 720713 00251 DARKE COUNTY AIRPORT US OH KVES 40.204 -84.53200000000001 307.2 20100308 20200625 720713 99999 DARKE COUNTY AIRPORT US OH KVES 40.204 -84.53200000000001 306.9 20180101 20180305 720714 00252 PAULDING NORTHWEST ATLANTA AIRPORT US GA KPUJ 33.912 -84.941 393.2 20100425 20200626 720714 99999 PAULDING COUNTY AIRPORT US GA KPUJ 33.912 -84.941 393.0 20180107 20180522 720716 99999 LURAY CAVERNS US VA KW45 38.667 -78.501 274.9 20111001 20130430 720717 00442 WEST DELTA 27A US MS KDLP 29.116999999999997 -89.55 36.3 20100503 20200625 720717 99999 WEST DELTA OIL PLATFORM US MS KDLP 29.116999999999997 -89.55 224.0 20100430 20180520 720718 00253 MISSISSIPPI CANYON 311 A US LA KMDJ 28.643 -89.794 224.0 20100503 20200626 720718 99999 MISSISSIPPI CANYON OIL PLATFORM US LA KMDJ 28.65 -89.8 224.0 20100430 20180520 720719 00254 EAST CAMERON 278 OIL PLATFORM US LA KEHC 28.433000000000003 -92.883 224.0 20100503 20180920 720719 99999 EAST CAMERON OIL PLATFORM US LA KEHC 28.433000000000003 -92.883 224.0 20100430 20180520 720721 00255 SABINE OIL PLATFORM US LA KVBS 29.483 -93.633 224.0 20100503 20190301 720721 99999 SABINE OIL PLATFORM US LA KVBS 29.483 -93.633 224.0 20100430 20180520 720722 00256 SOUTH MARSH 268 OIL PLATFORM US LA KSCF 29.116999999999997 -91.867 224.0 20100503 20200617 720722 99999 S MARSH OIL PLATFORM US LA KSCF 29.116999999999997 -91.867 224.0 20100430 20180514 720723 00257 VERMILLION 26 OIL PLATFORM US LA KVNP 29.467 -92.367 224.0 20100503 20130425 720723 99999 VERMILLION OIL PLATFORM US LA KVNP 29.467 -92.367 224.0 20100430 20100502 720724 99999 BELEN RGNL ARPT US NM KBRG 34.646 -106.836 1584.8 20100503 20200624 720725 00434 BRAZOS 133B US TX KBBF 28.058000000000003 -95.87200000000001 0.0 20100507 20200626 720725 99999 BRAZOS 133 US TX KBBF 27.835 -96.01100000000001 0.0 20100504 20180515 720726 00259 GALVESTON 424 OIL PLATFORM US TX KGVX 28.576999999999998 -94.977 0.3 20100507 20160304 720726 99999 GALVESTON 424 US TX KGVX 28.576999999999998 -94.977 0.0 20100504 20100506 720727 00260 HIGH ISLAND 376 US TX KHQI 27.962 -93.671 0.3 20100507 20200626 720727 99999 HIGH ISLAND 376 US TX KHQI 27.962 -93.671 0.0 20100504 20180520 720729 00435 BRAZOS 451 OILP US TX KBQX 28.5 -95.71600000000001 34.1 20100518 20200626 720729 99999 BRAZOS 451 US TX KBQX 28.5 -95.71700000000001 0.0 20100513 20180520 720731 00261 MUSTANG ISLAND 31 US TX KMIU 27.283 -96.73299999999999 0.3 20100518 20131023 720731 99999 MUSTANG ISLAND 31 US TX KMIU 27.283 -96.73299999999999 0.0 20100513 20100517 720732 99999 MUSTANG ISLAND A85A US TX KMZG 27.733 -96.18299999999999 9.0 20100513 20200416 720733 99999 BOERNE STAGE FLD US TX 29.724 -98.695 422.1 20100511 20130430 720734 00264 NAMPA MUNICIPAL AIRPORT US ID KMAN 43.581 -116.523 773.3 20100514 20200625 720735 73805 NORTHWEST FLORIDA BEACHES INTL ARPT US FL KECP 30.349 -85.788 17.4 20110301 20200625 720735 99999 NW PANAMA CITY INTL US FL KECP 30.358 -85.79899999999999 21.0 20100523 20110228 720736 00265 FULTON COUNTY AIRPORT US IN KRCR 41.066 -86.182 241.1 20100607 20200625 720736 99999 FULTON CO US IN KRCR 41.066 -86.182 240.8 20180103 20180515 720737 00266 CARRINGTON MUNICIPAL AIRPORT US ND K46D 47.451 -99.15100000000001 490.1 20100610 20200625 720737 99999 CARRINGTON MUNI US ND K46D 47.451 -99.15100000000001 489.8 20180207 20180303 720738 00267 THOMASVILLE REGIONAL AIRPORT US GA KTVI 30.901999999999997 -83.881 80.2 20100610 20200626 720738 99999 THOMASVILLE RGNL US GA KTVI 30.901999999999997 -83.881 80.5 20180101 20180515 720739 00268 MINDEN AIRPORT US LA KMNE 32.646 -93.29799999999999 85.0 20110501 20200625 720739 99999 MINDEN-WEBSTER AIRPORT US LA KMNE 32.646 -93.29799999999999 84.7 20180102 20180514 720741 00269 BOULDER MUNICIPAL AIRPORT US NV KBVU 35.946999999999996 -114.861 671.2 20100624 20200625 720741 99999 BOULDER CITY MUNI US NV KBVU 35.946999999999996 -114.861 671.0 20180101 20180515 720742 00270 FAITH RANCH AIRPORT US TX KFTN 28.209 -100.01899999999999 236.2 20100630 20200624 720742 99999 FAITH RANCH AIRPORT US TX KFTN 28.209 -100.01899999999999 235.6 20100618 20180520 720743 00418 SOUTH PADRE ISLAND HELIPORT US TX KSPL 26.066999999999997 -97.15 4.3 20100630 20170103 720743 99999 S PADRE ISLAND HELIPORT US TX KSPL 26.070999999999998 -97.15700000000001 3.0 20100618 20100629 720744 00271 PICKENS COUNTY AIRPORT US SC KLQK 34.817 -82.7 309.1 20100721 20200626 720744 99999 PICKENS CO AIRPORT US SC KLQK 34.81 -82.70299999999999 308.8 20100719 20180322 720745 00272 BOOMVANG SPUR OIL PLATFORM US KVAF 27.35 -94.633 101.2 20100727 20200626 720745 99999 BOOMVANG HELIPORT / OIL PLATFORM US KVAF 27.35 -94.633 101.0 20100722 20180520 720747 99999 ELK MOUNTAIN US WY KEHY 41.733000000000004 -106.46700000000001 2225.0 20100914 20200624 720749 24255 WHIDBEY ISLAND NAS US WA KNUW 48.35 -122.667 14.3 20050101 20200625 720753 99999 KEN JERNSTEDT US OR 45.672 -121.536 192.3 20060112 20070516 720759 99999 RAVALLI CO US MT K6S5 46.251000000000005 -114.125 1110.1 20190410 20200624 720768 00274 LEE COUNTY AIRPORT US VA K0VG 36.654 -83.21799999999999 430.1 20100921 20200625 720768 99999 LEE CO US VA K0VG 36.654 -83.21799999999999 430.1 20180101 20180515 720769 00275 GEORGE M BRYAN AIRPORT US MS KSTF 33.433 -88.84899999999999 101.2 20130101 20200626 720769 99999 GEORGE M BRYAN US MS KSTF 33.433 -88.84899999999999 101.2 20100923 20121231 720771 00276 COLEMAN MUNICIPAL AIRPORT US TX KCOM 31.840999999999998 -99.404 517.3 20100930 20200625 720771 99999 COLEMAN MUNI US TX KCOM 31.840999999999998 -99.404 517.2 20180106 20180515 720772 99999 MORIARTY AIRPORT US NM 34.986 -106.009 1889.5 20101013 20130430 720773 99999 COURTLAND AIRPORT US AL 34.659 -87.34899999999999 179.2 20101018 20130430 720775 99999 ELLINGTON US TN KLUG 35.507 -86.804 218.5 20180403 20200624 720776 99999 HESLER NOBLE FLD US MS KLUL 31.673000000000002 -89.17200000000001 72.5 20121118 20200624 720777 99999 LAWRENCEVILLE BRUNSWICK MUNI US VA KLVL 36.773 -77.794 100.3 20140625 20200624 720779 00461 MEXIA LIMESTONE COUNTY AIRPORT US TX KLXY 31.641 -96.514 166.1 20130829 20200625 720779 99999 MEXIA LIMESTONE CO US TX KLXY 31.64 -96.515 165.8 20180109 20180211 720781 99999 LYONS RICE CO MUNI US KS KLYO 38.343 -98.227 515.4 20180719 20200624 720787 00278 JOHN BELL WILLIAMS AIRPORT US MS KJVW 32.304 -90.411 75.3 20110402 20200625 720787 99999 JOHN BELL WILLIAMS AIRPORT US MS KJVW 32.304 -90.411 75.3 20180102 20180103 720806 99999 PANOLA CO SHARPE FLD US TX K4F2 32.176 -94.29899999999999 75.6 20190920 20200624 720815 99999 PUTNAM CO US IN K4I7 39.63 -86.814 256.6 20140313 20170222 720835 99999 MADELINE ISLAND US WI K4R5 46.788999999999994 -90.759 197.8 20161111 20200624 720839 00279 RENO STEAD AIRPORT US NV KRTS 39.667 -119.876 1540.2 20110921 20200625 720839 99999 RENO / STEAD AIRPORT US NV KRTS 39.668 -119.876 1539.2 20180101 20180515 720852 00280 MEADOW LAKE AIRPORT US CO KFLY 38.946 -104.57 2095.2 20101201 20200625 720852 99999 MEADOW LAKE AIRPORT US CO KFLY 38.946 -104.57 2095.2 20180110 20180515 720853 00281 ROLLA MUNICIPAL AIRPORT US ND K06D 48.88399999999999 -99.62100000000001 555.0 20101118 20200625 720853 99999 ROLLA MUNI US ND K06D 48.88399999999999 -99.62100000000001 555.3 20180104 20180322 720854 00282 BEACH AIRPORT US ND K20U 46.925 -103.98200000000001 840.0 20101118 20200625 720854 99999 BEACH US ND K20U 46.925 -103.98200000000001 840.0 20180101 20180515 720855 00283 CAVALIER MUNICIPAL AIRPORT US ND K2C8 48.784 -97.632 272.2 20101118 20200625 720855 99999 CAVALIER MUNI US ND K2C8 48.784 -97.632 271.9 20180101 20180515 720856 00284 SCOTTSBORO MUNICIPAL AIRPORT WORD FIELD US AL K4A6 34.689 -86.006 198.1 20101130 20200625 720856 99999 SCOTTSBORO MUNI WORD FLD US AL K4A6 34.689 -86.006 198.1 20180101 20180430 720858 00285 CANDO MUNICIPAL AIRPORT US ND K9D7 48.48 -99.236 450.2 20101118 20200625 720859 00286 BLACK RIVER FALLS AREA AIRPORT US WI KBCK 44.251000000000005 -90.855 255.1 20101118 20200626 720861 00287 CROSBY MUNICIPAL AIRPORT US ND KD50 48.928999999999995 -103.29700000000001 594.1 20101118 20200625 720861 99999 CROSBY MUNI US ND KD50 48.928999999999995 -103.29700000000001 594.4 20180101 20180515 720862 99999 ROBERTSON FLD US ND 48.753 -98.39299999999999 490.1 20101118 20130430 720863 00289 TIOGA MUNICIPAL AIRPORT US ND KD60 48.381 -102.898 691.0 20101118 20200625 720863 99999 TIOGA MUNI US ND KD60 48.381 -102.898 690.7 20180102 20180322 720864 00290 TARBORO EDGECOMBE AIRPORT US NC KETC 35.937 -77.547 16.2 20101122 20200625 720865 00291 HUTSON FIELD AIRPORT US ND KGAF 48.405 -97.37100000000001 251.2 20101118 20200625 720865 99999 HUTSON FLD US ND KGAF 48.405 -97.37100000000001 251.2 20180101 20180515 720866 00292 MERCER COUNTY REGIONAL AIRPORT US ND KHZE 47.29 -101.581 553.2 20101118 20200625 720866 99999 MERCER CO RGNL US ND KHZE 47.29 -101.581 552.6 20180101 20180515 720867 00293 RUGBY MUNICIPAL AIRPORT US ND KRUG 48.39 -100.024 472.1 20101210 20200625 720867 99999 RUGBY MUNI US ND KRUG 48.39 -100.024 471.8 20101118 20180417 720868 00294 WATFORD CITY MUNICIPAL AIRPORT US ND KS25 47.79600000000001 -103.25399999999999 643.1 20101210 20200625 720868 99999 WATFORD CITY MUNI US ND KS25 47.79600000000001 -103.25399999999999 642.8 20101118 20180520 720869 00295 JESSE VIERTEL MEMORIAL AIRPORT US MO KVER 38.946999999999996 -92.68299999999999 218.2 20101203 20200625 720869 99999 JESSE VIERTEL MEM US MO KVER 38.946999999999996 -92.68299999999999 217.9 20180102 20180515 720871 00296 MANDAN MUNICIPAL AIRPORT US ND KY19 46.768 -100.89399999999999 593.1 20101118 20200625 720871 99999 MANDAN MUNI US ND KY19 46.768 -100.89399999999999 592.5 20180128 20180207 720887 00297 MANITOWISH WATERS AIRPORT US WI KD25 46.117 -89.883 491.0 20111215 20200626 720887 99999 MANITOWISH WATERS US WI KD25 46.122 -89.882 490.7 20180101 20180515 720895 99999 GLEN ULLIN REGIONAL US ND KD57 46.813 -101.86 636.7 20131016 20200624 720897 99999 MONROE WALTON CO US GA KD73 33.782 -83.693 264.3 20170817 20200624 720902 00298 DUPONT LAPEER AIRPORT US MI KD95 43.067 -83.26700000000001 254.2 20130101 20200625 720902 99999 DUPONT LAPEER US MI KD95 43.067 -83.272 254.2 20120124 20121231 720903 00441 DAVIESS COUNTY AIRPORT US IN KDCY 38.7 -87.13 143.3 20130826 20200625 720903 99999 DAVIESS CO US IN KDCY 38.7 -87.13 144.2 20180101 20180515 720904 00299 DELAND MUNICIPAL AIRPORT SIDNEY H TAYLOR FIELD US FL KDED 29.066999999999997 -81.283 24.1 20120209 20200625 720904 99999 DELAND MUNI SIDNEY H TAYLOR FLD US FL KDED 29.066999999999997 -81.28399999999999 24.1 20180101 20180515 720907 99999 CAMPBELL CO US TN KJAU 36.335 -84.162 359.7 20150608 20200624 720909 00300 STANLEY MUNICIPAL AIRPORT US ND K08D 48.301 -102.406 684.3 20101207 20200626 720909 99999 STANLEY MUNI US ND K08D 48.301 -102.406 684.3 20180101 20180515 720911 00301 BARNES COUNTY MUNICIPAL AIRPORT US ND KBAC 46.942 -98.01799999999999 427.0 20101215 20200625 720911 99999 BARNES CO MUNI US ND KBAC 46.941 -98.01799999999999 426.7 20180105 20180322 720912 00302 VIOSCA KNOLL 768 OIL PLATFORM US AL KVOA 29.233 -87.78299999999999 53.0 20110112 20200625 720912 99999 VIOSCA KNOLL 768 US AL KVOA 29.233 -87.78299999999999 53.0 20110105 20180207 720913 00303 SALSA US LA KGHB 27.833000000000002 -91.98299999999999 30.2 20110113 20200626 720913 99999 GARDEN BANKS 172 US LA KGHB 27.833000000000002 -91.98299999999999 30.0 20101103 20180517 720914 00304 EUGENE ISLAND OIL PLATFORM US LA KEIR 28.633000000000003 -91.48299999999999 28.0 20110113 20200625 720914 99999 EUGENE I 2150ILP US LA KEIR 28.633000000000003 -91.48299999999999 28.0 20101101 20180515 720915 00305 EAST CAMERON 47 OIL PLATFORM US LA KCMB 29.433000000000003 -92.98299999999999 29.3 20110113 20120803 720915 99999 E CAMERON 47JP US LA KCMB 29.433000000000003 -92.98299999999999 29.0 20101101 20110112 720916 00453 GREEN CANYON 338 US LA KGRY 27.63 -90.45 58.2 20110113 20200626 720916 99999 GREEN CANYON 338 US LA KGRY 27.633000000000003 -90.45 58.0 20101105 20180517 720917 00306 HIGH ISLAND 179 OIL PLATFORM US TX KXIH 29.183000000000003 -94.51700000000001 75.3 20110113 20200328 720917 99999 HIGH ISLAND 179A US LA KXIH 29.183000000000003 -94.51700000000001 75.0 20101122 20180520 720918 00307 MAIN PASS 140B US LA KMIS 29.296 -88.84200000000001 25.0 20110113 20200622 720918 99999 MISSION US SD KMIS 43.033 -100.617 789.0 20110105 20180520 720919 00308 NORTH PADRE ISLAND US TX KOPM 26.833000000000002 -96.93299999999999 25.3 20110113 20141031 720919 99999 N PADRE 975 US TX KOPM 26.833000000000002 -96.93299999999999 25.0 20101101 20110112 720921 00309 WEST CAMERON 368 A OIL PLATFORM US TX KCRH 28.916999999999998 -93.3 34.1 20110113 20151014 720921 99999 W CAMERON 368A US TX KCRH 28.916999999999998 -93.3 34.0 20101101 20110112 720922 99999 ST GEORGE MUNI US UT KDXZ 37.036 -113.51 879.0 20110113 20111214 720923 00310 BOUNDARY COUNTY AIRPORT US ID K65S 48.726000000000006 -116.295 711.1 20110118 20200625 720923 99999 BOUNDARY CO US ID K65S 48.726000000000006 -116.295 711.1 20180104 20180322 720924 00311 ROSCOE TURNER AIRPORT US MS KCRX 34.915 -88.604 130.2 20110125 20200625 720924 99999 ROSCOE TURNER AIRPORT US MS KCRX 34.915 -88.604 129.5 20110118 20180520 720925 00312 ATLANTIS OIL PLATFORM US LA KATP 27.2 -90.03299999999999 50.3 20110310 20200625 720925 99999 ATLANTIS US LA KATP 27.2 -90.03299999999999 50.0 20110104 20180524 720926 00313 BEAUMONT MUNICIPAL AIRPORT US TX KBMT 30.070999999999998 -94.21600000000001 10.1 20110310 20200625 720926 99999 BEAUMONT MUNI US TX KBMT 30.070999999999998 -94.21600000000001 9.8 20180207 20180515 720927 00314 FLETCHER FIELD AIRPORT US MS KCKM 34.3 -90.512 53.0 20110311 20200626 720927 99999 FLETCHER FLD US MS KCKM 34.3 -90.512 52.7 20180101 20180515 720928 00315 DELAWARE MUNICIPAL JIM MOORE FIELD AIRPORT US OH KDLZ 40.28 -83.115 288.0 20110315 20200625 720928 99999 DELAWARE MUNI US OH KDLZ 40.28 -83.115 288.0 20180206 20180303 720929 00316 CUMERLAND MUNICIPAL AIRPORT US WI KUBE 45.506 -91.98100000000001 378.3 20110309 20200625 720929 99999 CUMBERLAND MUNI US WI KUBE 45.506 -91.98100000000001 378.3 20180101 20180515 720932 00317 BROOKHAVEN LINCOLN COUNTY AIRPORT US MS K1R7 31.605999999999998 -90.40899999999999 149.1 20110402 20200625 720933 00318 LINTON MUNICIPAL AIRPORT US ND K7L2 46.218 -100.245 542.2 20110513 20200625 720933 99999 LINTON MUNI US ND K7L2 46.218 -100.245 541.9 20180207 20180303 720934 99999 WRAY MUNI US CO 40.1 -102.241 1120.7 20110512 20130430 720935 99999 PETALUMA MUNI US CA 38.258 -122.60600000000001 26.5 20110517 20130430 720936 99999 ALWOOD NDB US NC KAQE 35.707 -77.372 9.0 20110618 20110618 720939 99999 OAKES MUNI US ND 46.173 -98.08 406.9 20110513 20130430 720941 99999 HARVEY MUNI US ND 47.791000000000004 -99.932 489.2 20110516 20130430 720942 00323 WAHOO MUNICIPAL AIRPORT US NE KAHQ 41.233000000000004 -96.6 373.1 20110517 20200625 720942 99999 WAHOO MUNI US NE KAHQ 41.24100000000001 -96.594 373.1 20180101 20180515 720943 00431 HARRISON COUNTY AIRPORT US TX KASL 32.521 -94.30799999999999 108.8 20110518 20200625 720944 00324 BELLEFONTAINE REGIONAL AIRPORT US OH KEDJ 40.367 -83.81700000000001 342.3 20110512 20200625 720944 99999 BELLEFONTAINE RGNL US OH KEDJ 40.372 -83.819 342.3 20180101 20180515 720945 99999 QUINCY MUNI ARPT US FL 30.6 -84.55 20.9 20110521 20130430 720946 00326 FERNANDINA BEACH MUNICIPAL AIRPORT US FL KFHB 30.616999999999997 -81.467 5.2 20110512 20200625 720946 99999 FERNANDINA BEACH MUNI US FL KFHB 30.612 -81.461 4.9 20180111 20180515 720947 99999 COOPERSTOWN MUNI US ND 47.423 -98.10600000000001 434.0 20110601 20130430 720948 00328 JIMMY CARTER REGIONAL AIRPORT US GA KACJ 32.11 -84.189 142.7 20110711 20200625 720948 99999 SOUTHER FLD US GA KACJ 32.111 -84.189 143.6 20180101 20180516 720949 00329 CAMDENTON MEMORIAL AIRPORT US MO KH21 37.974000000000004 -92.691 324.0 20110630 20200624 720949 99999 CAMDENTON MEM US MO KH21 37.974000000000004 -92.691 323.7 20180102 20180515 720951 00330 EAST GEORGIA REGIONAL AIRPORT US GA KSBO 32.609 -82.37 100.3 20110704 20200626 720951 99999 EMANUEL CO US GA KSBO 32.609 -82.37 100.0 20180101 20180516 720952 99999 GRAY BUTTE FLD US CA KGXA 34.564 -117.675 920.5 20110825 20200624 720953 00331 MAIN PASS 289 C OIL PLATFORM US LA KVKY 29.248 -88.441 115.2 20110824 20200625 720953 99999 MAIN PASS 289C OIL PLATFORM US LA KVKY 29.248 -88.441 115.0 20110512 20180515 720954 00456 ALAMINOS CANYON US TX KHHV 26.933000000000003 -94.68299999999999 25.3 20110824 20200626 720954 99999 ALAMINOS CANYON 25 OIL PLATFORM US KHHV 26.939 -94.689 90.0 20110724 20180515 720955 99999 SOUTH TIMBALLER 301B OIL PLATFORM US KSTZ 28.16 -90.666 89.0 20110825 20130409 720956 00332 VERMILION 331 OIL PLATFORM US KVQT 28.27 -92.264 90.2 20110825 20200503 720956 99999 VERMILLON 331A US KVQT 28.27 -92.264 90.0 20110610 20180515 720957 00333 PORT FORCHON HELIPORT US LA KXPY 29.116999999999997 -90.2 30.2 20111001 20200625 720957 99999 FOURCHON HELIPORT US LA KXPY 29.123 -90.20200000000001 30.0 20180129 20180515 720958 99999 TUCKER GUTHRIE MEM US KY 36.859 -83.35799999999999 472.7 20111021 20130430 720959 99999 BUTLER MUNI US GA 32.568000000000005 -84.251 203.3 20111021 20121031 720961 00336 LOGANSPORT CASS COUNTY AIRPORT US IN KGGP 40.711 -86.375 225.3 20111028 20200625 720961 99999 LOGANSPORT CASS CO US IN KGGP 40.711 -86.375 224.9 20180101 20180515 720962 00337 HEART OF GEORGIA REGIONAL AIRPORT US GA KEZM 32.214 -83.12799999999999 93.3 20111102 20200626 720962 99999 HEART OF GEORGIA RGNL US GA KEZM 32.214 -83.12799999999999 92.7 20111021 20180520 720963 99999 MCGREGOR RANGE BASE CAMP US NM KM63 32.079 -106.15299999999999 1246.0 20100429 20190106 720964 00338 TYNDALL DRONE RUNWAY US FL KTDR 30.033 -85.53299999999999 5.2 20120125 20200625 720964 99999 TYNDALL DRONE RUNWAY US FL KTDR 30.033 -85.53299999999999 4.6 20180129 20180207 720965 13910 DYESS AIR FORCE BASE US TX KDYS 32.433 -99.85 545.0 20050103 20200625 720965 99999 DYESS AFB/ABILENE US TX KDYS 32.417 -99.85 545.0 20180101 20180404 720966 00339 GRIFFIN SPALDING COUNTY AIRPORT US GA K6A2 33.227 -84.275 292.3 20111118 20200625 720966 99999 GRIFFIN SPALDING CO US GA K6A2 33.227 -84.275 292.0 20180208 20180303 720967 00457 FALSE RIVER REGIONAL AIRPORT US LA KHZR 30.718000000000004 -91.479 12.2 20111221 20200625 720967 99999 FALSE RIVER RGNL US LA KHZR 30.718000000000004 -91.479 11.9 20180106 20180516 720968 00340 SILER CITY MUNICIPAL AIRPORT US NC K5W8 35.704 -79.50399999999999 187.2 20111215 20200624 720969 00341 TEN SLEEP US WY KJPD 44.15 -107.167 2741.1 20120130 20121213 720969 99999 TEN SLEEP US WY KJPD 44.15 -107.167 2741.0 20111201 20120129 720971 00342 SOUTH PASS US WY KFWZ 42.516999999999996 -108.78299999999999 2588.1 20120130 20200625 720971 99999 SOUTH PASS US WY KFWZ 42.516999999999996 -108.78299999999999 2588.0 20111201 20180520 720972 99999 ST MARY HOSPITAL HELIPORT US MN 44.016999999999996 -92.48299999999999 355.0 20111201 20200624 720974 00344 WINCHESTER MUNICIPAL AIRPORT US TN KBGF 35.178000000000004 -86.066 298.1 20120209 20200625 720974 99999 WINCHESTER MUNI US TN KBGF 35.178000000000004 -86.066 298.4 20180105 20180516 720975 99999 HAGLER AAF / CAMP SHELBY MISSISSIPPI USA US MS KSLJ 31.174 -89.191 85.3 20110512 20160616 720976 00345 LORDSBURG MUNICIPAL AIRPORT US NM KLSB 32.333 -108.691 1304.2 20120215 20180226 720977 99999 ALPHA (BURNS) US WY 41.333 -104.26700000000001 1667.3 20130226 20200606 720978 99999 BRAVO (PINE BLUFFS) US NE 41.516999999999996 -104.0 1607.2 20130226 20200624 720979 99999 CHARLIE (GERING) US NE 41.583 -103.667 1371.0 20130226 20200624 720981 99999 DELTA (KIMBALL) US NE 41.367 -103.8 1546.0 20130731 20200601 720982 99999 ECHO (PINE BLUFFS) US NE 41.117 -103.98299999999999 1609.3 20131218 20200605 720983 99999 FOXTROT (DIX) US NE 41.367 -103.48299999999999 1453.0 20141215 20200624 720984 99999 GOLF (SIDNEY) US NE 41.217 -103.1 1333.5 20140514 20200624 720985 99999 HOTEL (GURLEY) US NE 41.317 -102.833 1262.8 20130816 20200624 720986 99999 INDIA (SIDNEY) US NE 41.05 -102.867 1293.0 20130828 20200624 720987 99999 JULIET (PEETZ) US CO K1JW 40.967 -103.2 1380.1 20130829 20200624 720988 99999 KILO (DIX) US NE K1KW 41.133 -103.48299999999999 1439.3 20141215 20200624 720989 99999 LIMA (GROVER) US CO K1LW 40.917 -103.7 1518.8 20141215 20200204 720991 99999 MIKE (HAXTUN) US CO K1MW 40.7 -103.48299999999999 1336.2 20120702 20200624 720992 99999 NOVEMBER (GROVER) US CO K1NW 40.633 -103.833 1459.1 20141215 20200624 720993 99999 OSCAR (GROVER) US CO K1OW 40.883 -104.0 1649.0 20130226 20200624 720994 99999 ALPHA (RAYNESFORD) US MT K1AM 47.283 -110.8 1219.2 20131025 20200624 720995 99999 BRAVO (GEYSER) US MT K1BM 47.283 -110.367 1234.4 20120920 20200624 720996 99999 CHARLIE (STANFORD) US MT K1CM 47.1 -110.167 1336.6 20120601 20200624 720997 99999 DELTA (DENTON) US MT K1DM 47.383 -109.81700000000001 1093.3 20131025 20200624 720998 99999 ECHO (WINIFRED) US MT K1EM 47.45 -109.417 1116.5 20120717 20200618 720999 99999 FOXTROT (AUGUSTA) US MT K1FM 47.6 -112.31700000000001 1343.3 20120614 20200624 721001 99999 GOLF (SIMMS) US MT K1GM 47.333 -112.1 1310.6 20131025 20200624 721002 99999 HOTEL (FAIRFIELD) US MT K1HM 47.7 -111.95 1178.7 20130625 20200624 721003 99999 INDIA (ULM) US MT K1IM 47.317 -111.46700000000001 1108.0 20120920 20200624 721004 99999 JULIE (POWER) US MT K1JM 47.75 -111.55 1152.1 20120504 20200624 721005 99999 KILO (HARLOWTOWN) US MT K1KM 46.45 -109.8 1329.8 20120921 20200624 721006 99999 LIMA (JUDITH GAP) US MT K1LM 46.7 -109.73299999999999 1414.3 20120607 20200624 721007 99999 MIKE (MOORE) US MT K1MM 47.016999999999996 -109.633 1256.1 20120614 20200624 721008 99999 NOVEMBER (GRASS RANGE) US MT K1NM 47.067 -109.03299999999999 1161.3 20120619 20200624 721009 99999 OSCAR (ROY) US MT K1OM 47.333 -108.93299999999999 1086.0 20131025 20200624 721011 99999 ALPHA (BALFOUR) US ND 47.967 -100.581 482.8 20141125 20200624 721012 99999 BRAVO (VELVA) US ND 47.909 -100.927 588.6 20121030 20200624 721013 99999 CHARLIE (RUSO) US ND 47.714 -101.01 598.6 20120926 20200624 721014 99999 DELTA (MAX) US ND 47.795 -101.29899999999999 631.6 20121031 20200624 721015 99999 ECHO (RYDER) US ND 47.751000000000005 -101.67399999999999 640.7 20121101 20200624 721016 99999 FOXTROT (RYDER 2) US ND 47.896 -101.67399999999999 619.4 20120821 20200624 721017 99999 GOLF (PLAZA) US ND 48.12 -101.96 643.7 20121024 20200624 721018 99999 HOTEL (PARSHALL) US ND 47.974 -102.223 578.2 20120821 20200624 721019 99999 INDIA (PALERMO) US ND 48.345 -102.304 678.2 20120823 20200624 721021 99999 JULIET (DONNYBROOK) US ND 48.412 -101.89200000000001 670.3 20121002 20200624 721022 99999 KILO (DONNYBROOK 2) US ND 48.551 -102.12 693.4 20120927 20191115 721023 99999 LIMA (BOWBELLS) US ND 48.788999999999994 -102.26899999999999 601.1 20121023 20180912 721024 99999 MIKE (KENMARE) US ND 48.673 -101.882 569.4 20120925 20200624 721025 99999 NOVEMBER (MOHALL) US ND 48.76 -101.59200000000001 516.0 20121023 20200624 721026 99999 OSCAR (ANTLER) US ND 48.825 -101.28299999999999 466.3 20120926 20200624 721027 99999 TRINITY CENTER US CA 40.983000000000004 -122.694 728.5 20120302 20130430 721028 99999 MIDDLEBURY STATE AIRPORT US VT 43.985 -73.095 149.4 20120227 20200624 721029 00347 LA PORTE MUNICIPAL AIRPORT US IN KPPO 41.571999999999996 -86.735 247.2 20120402 20200625 721029 99999 LA PORTE MUNI US IN KPPO 41.571999999999996 -86.735 247.5 20180101 20180109 721031 00348 TULLAHOMA REGIONAL AIRPORT WILLIAM NORTHERN FIELD US TN KTHA 35.38 -86.24600000000001 330.1 20120408 20200625 721031 99999 TULLAHOMA RGNL WM NORTHERN FLD US TN KTHA 35.38 -86.24600000000001 329.8 20180101 20180515 721032 99999 ANDREWS CO US TX 32.330999999999996 -102.53 967.4 20120417 20130430 721033 00350 FITZGERALD MUNICIPAL AIRPORT US GA KFZG 31.684 -83.27 111.3 20120620 20200625 721033 99999 FITZGERALD MUNI US GA KFZG 31.684 -83.27 111.3 20180101 20180515 721034 00351 CAMERON MUNICIPAL AIRPORT US TX KT35 30.879 -96.971 123.1 20120501 20200625 721035 00352 HAZLEHURST AIRPORT US GA KAZE 31.885 -82.647 78.0 20120705 20200625 721035 99999 HAZLEHURST US GA KAZE 31.885 -82.647 77.7 20180101 20180516 721036 00353 BOYSEN THERMOPOL US WY KTBX 43.467 -108.389 2225.0 20120806 20200625 721036 99999 BOYSEN US WY KTBX 43.467 -108.238 2225.0 20120503 20120713 721037 99999 KITTY HAWK ONE HELIPORT US NC 36.071999999999996 -75.694 3.0 20120503 20180724 721038 99999 JORDAN FLD ARPT US NC 35.238 -79.99600000000001 182.9 20120503 20200323 721041 99999 MARCO ISLAND US FL KMKY 25.995 -81.673 1.5 20120726 20200624 721042 00486 ZEPHYRHILLS MUNICIPAL AIRPORT US FL KZPH 28.228 -82.156 27.4 20120813 20200625 721042 99999 ZEPHYRHILLS MUNI US FL KZPH 28.228 -82.156 27.4 20180103 20180515 721043 99999 ATHENS MUNI US TX KF44 32.164 -95.82799999999999 135.3 20120813 20200624 721044 00448 RALPH M HALL ROCKWALL MUNICIPAL AIRPORT US TX KF46 32.931 -96.435 175.3 20120813 20200625 721044 99999 ROCKWALL MUNI US TX KF46 32.931 -96.435 175.0 20180101 20180516 721045 00354 MIDWEST NATIONAL AIR CENTER AIRPORT US MO KGPH 39.332 -94.31 237.1 20120821 20200625 721045 99999 MIDWEST NAT AIR CENTER AIRPORT US MO KGPH 39.333 -94.31 236.8 20120818 20180515 721046 00460 LOUISIANA REGIONAL AIRPORT US LA KREG 30.173000000000002 -90.941 4.6 20190101 20200625 721046 99999 LOUISIANA RGNL ARPT / GONZALES US LA KREG 30.166999999999998 -90.93299999999999 4.3 20120829 20181231 721048 00471 PRESIDIO LELY INTERNATIONAL AIRPORT US TX KPRS 29.634 -104.361 896.1 20130731 20200625 721048 99999 PRESIDIO LELY INTL ARPT US TX KPRS 29.634 -104.36200000000001 893.7 20180101 20180516 722003 54930 STANTON AIRFIELD US MN KSYN 44.476000000000006 -93.016 280.4 20060101 20200625 722003 99999 STANTON AIRFIELD US MN KSYN 44.483000000000004 -93.01700000000001 280.0 19880106 20051231 722004 54922 HARRY STERN AIRPORT US ND KBWP 46.244 -96.60700000000001 295.1 20060101 20200625 722004 99999 HARRY STERN US ND KBWP 46.25 -96.6 295.0 20050719 20051231 722005 99999 COFFEY CO US KS KUKL 38.302 -95.725 357.5 20050427 20200624 722006 54926 QUENTIN AANENSON FIELD AIRPORT US MN KLYV 43.621 -96.21600000000001 436.2 20060101 20200625 722006 99999 LUVERNE QUENTIN AANE US MN KLYV 43.617 -96.21700000000001 436.0 20050208 20051231 722007 54828 TUSCOLA AREA AIRPORT US MI KCFS 43.458999999999996 -83.446 213.7 20050201 20200625 722008 12995 MUSTANG BEACH AIRPORT US TX KRAS 27.811999999999998 -97.089 1.5 20060101 20200626 722008 99999 MUSTANG BEACH US TX KRAS 27.833000000000002 -97.06700000000001 2.0 20050217 20051231 722010 12836 KEY WEST INTERNATIONAL AIRPORT US FL KEYW 24.557 -81.755 0.3 19730101 20200625 722011 92813 KISSIMMEE GATEWAY AIRPORT US FL KISM 28.29 -81.437 25.0 20060101 20200625 722011 99999 KISSIMMEE GATEWAY US FL KISM 28.29 -81.437 25.0 20020423 20051231 722012 92817 THE VILLAGES US FL KVVG 28.95 -81.96700000000001 27.1 20050101 20180215 722012 99999 THE VILLAGES US FL KVVG 28.967 -81.96700000000001 27.0 20020423 20041231 722013 99999 KEY WEST / BOCA CHICA(NEXRAD) US FL KBYX 24.6 -81.7 3.0 19880105 19880704 722014 12818 HERNANDO COUNTY AIRPORT US FL KBKV 28.474 -82.454 23.5 20060101 20200626 722014 99999 HERNANDO CO US FL KBKV 28.474 -82.455 23.0 19990114 20051231 722015 12850 KEY WEST NAS US FL KNQX 24.583000000000002 -81.683 1.8 19730101 20200625 722016 12896 THE FL KEYS MARATHON ARPT US FL KMTH 24.726 -81.05199999999999 2.4 20060101 20200625 722016 99999 FLORIDA KEYS MARATHO US FL KMTH 24.733 -81.05 2.0 19880318 20051231 722017 12876 WINTER HAVEN US FL KGIF 28.061999999999998 -81.75399999999999 44.5 20060101 20100801 722017 99999 WINTER HAVEN US FL KGIF 28.05 -81.75 44.0 19990114 20010516 722018 99999 CLOVIS(NEXRAD) US NM KFDX 34.633 -103.633 1417.0 20000101 20010516 722019 99999 ISLAMORADA COAST GUARD STATION US FL 24.95 -80.58 1.0 19750916 19920422 722020 12839 MIAMI INTERNATIONAL AIRPORT US FL KMIA 25.788 -80.317 8.8 19730101 20200625 722021 92816 VANDENBERG AIRPORT US FL KVDF 28.014 -82.345 6.7 20050101 20200626 722021 99999 VANDENBERG US FL KVDF 28.017 -82.35 7.0 20020424 20041231 722022 12803 BOCA RATON AIRPORT US FL KBCT 26.378 -80.108 4.0 20060101 20200625 722022 99999 BOCA RATON US FL KBCT 26.378 -80.108 4.0 20020423 20051231 722024 12882 OPA LOCKA AIRPORT US FL KOPF 25.906999999999996 -80.28 3.1 20060101 20200625 722024 99999 OPA LOCKA US FL KOPF 25.9 -80.283 2.0 19621028 20051231 722025 12849 FORT LAUDERDALE HOL US FL KFLL 26.072 -80.154 3.4 19730101 20100731 722026 12826 HOMESTEAD AFB AIRPORT US FL KHST 25.483 -80.383 1.5 19430201 20200625 722026 99999 HOMESTEAD ARB US FL KHST 25.483 -80.383 2.0 20000101 20041231 722027 99999 MIAMI BEACH COAST GUARD STATION US FL 25.77 -80.13 1.0 19830713 19840103 722028 99999 FOWEY ROCKS COAST GUARD STATION US FL 25.58 -80.1 1.0 19800419 19860831 722029 12888 KENDALL-TAMIAMI EXEC ARPT US FL KTMB 25.648000000000003 -80.433 3.1 20060101 20200625 722029 99999 KENDALL TAMIAMI EXEC US FL KTMB 25.65 -80.433 2.0 19760620 20051231 722030 12844 PALM BEACH INTERNATIONAL AIRPORT US FL KPBI 26.685 -80.09899999999999 5.8 19430206 20200625 722031 63839 FOLSOM FIELD AP US AL K3A1 34.269 -86.85799999999999 293.5 20060101 20200625 722031 99999 FOLSOM FLD US AL K3A1 34.266999999999996 -86.85 295.0 19730101 20041231 722032 54916 WASECA MUNICIPAL AIRPORT US MN KACQ 44.074 -93.553 343.2 20060101 20200625 722032 99999 WASECA MUNI US MN KACQ 44.067 -93.55 343.0 20040713 20051231 722033 04999 GRANITE FALLS MUNI ARPT/LENZEN-ROE MEMORIAL FIELD US MN KGDB 44.753 -95.556 319.1 20060101 20200625 722033 99999 GRANITE FALLS MUNI US MN KGDB 44.75 -95.55 319.0 20040525 20051231 722034 12812 CHARLOTTE COUNTY AIRPORT US FL KPGD 26.916999999999998 -81.991 7.6 20060101 20200625 722034 99999 CHARLOTTE CO US FL KPGD 26.92 -81.98299999999999 8.0 19990114 20051231 722035 99999 CLEWISTON US FL 26.75 -80.95 6.0 19730101 19780511 722036 99999 LAKE WORTH INLET US FL 26.77 -80.05 1.0 19750911 19871013 722037 92809 NORTH PERRY AIRPORT US FL KHWO 25.999000000000002 -80.241 2.7 20060101 20200625 722037 99999 NORTH PERRY US FL KHWO 26.0 -80.233 3.0 19990904 20051231 722038 12897 NAPLES MUNICIPAL AIRPORT US FL KAPF 26.155 -81.775 2.7 19990101 20200625 722038 99999 NAPLES MUNI US FL KAPF 26.153000000000002 -81.775 2.0 19431229 19981231 722039 12885 FT LAUDER EXECUTIVE ARPT US FL KFXE 26.197 -80.171 4.3 20060101 20200625 722039 99999 FORT LAUDERDALE EXEC US FL KFXE 26.2 -80.167 4.0 19840908 20051231 722040 12838 MELBOURNE INTL AP US FL KMLB 28.101 -80.64399999999999 8.2 19741113 20200625 722040 99999 MELBOURNE REGIONAL US FL KMLB 28.1 -80.65 11.0 20000101 20031231 722041 12993 SOUTH LAFOURCHE AIRPORT US LA KGAO 29.445 -90.26100000000001 0.3 20060119 20200625 722041 99999 SOUTH LAFORCHE US LA KGAO 29.45 -90.26700000000001 0.0 19730101 20051105 722042 53978 WOOD COUNTY AIRPORT MINEOLA US TX KJDD 32.742 -95.49600000000001 132.3 20060101 20200625 722042 99999 WOOD CO US TX KJDD 32.741 -95.49600000000001 132.0 20040525 20051231 722043 03738 ROCKINGHAM AIRPORT US NC KRCZ 34.891 -79.759 109.1 20050101 20051231 722043 99999 ROCKINGHAM ROCKINGHAM-HAMLET AI US 34.89 -79.76 109.0 20040525 20060412 722044 53930 ADA MUNICIPAL AIRPORT US OK KADH 34.804 -96.671 309.7 20060101 20200625 722044 99999 ADA MUNI US OK KADH 34.8 -96.667 310.0 20040319 20051231 722045 12843 VERO BEACH MUNI US FL KVRB 27.653000000000002 -80.243 8.5 19730101 20100801 722046 12898 SPACE COAST REGIONAL AIRPORT US FL KTIX 28.517 -80.8 10.7 20060101 20200625 722046 99999 SPACE COAST RGNL US FL KTIX 28.517 -80.8 10.0 19730420 20051231 722047 99999 FORT PIERCE COAST GUARD STATION US FL 27.47 -80.3 1.0 19750916 19900121 722048 99999 JUPITER INLET COAST GUARD STATIO US 27.03 -80.12 1.0 19760228 19780914 722049 92805 POMPANO BEACH AIRPARK ARPT US FL KPMP 26.25 -80.108 6.4 20060101 20200625 722049 99999 POMPANO BEACH AIRPAR US FL KPMP 26.25 -80.117 6.0 19880621 20051231 722050 12815 ORLANDO INTERNATIONAL AIRPORT US FL KMCO 28.434 -81.325 27.4 19520507 20200625 722051 12841 ATOKA MUNI US OK KORL 28.545 -81.333 34.1 19410616 19900206 722051 53932 ATOKA MUNICIPAL AIRPORT US OK KAQR 34.398 -96.148 179.8 20050101 20200625 722051 99999 ATOKA MUNI US OK KAQR 34.398 -96.148 180.0 20040713 20041231 722052 53933 ALVA REGIONAL AIRPORT US OK KAVK 36.773 -98.67 449.3 20060101 20200625 722052 99999 ALVA RGNL US OK KAVK 36.766999999999996 -98.667 449.0 20040713 20051231 722053 12841 EXECUTIVE AIRPORT US FL KORL 28.545 -81.333 32.9 19900208 20200625 722053 99999 EXECUTIVE US FL KORL 28.55 -81.333 34.0 20000101 20031231 722054 53959 WEST MEMPHIS MUNICIPAL APT US AR KAWM 35.135 -90.234 65.2 20050101 20200626 722054 99999 WEST MEMPHIS MUNI US AR KAWM 35.135 -90.234 65.0 20040319 20041231 722055 12861 OCALA INTERNATIONAL AIRPORT-JIM TAYLOR FIELD US FL KOCF 29.166999999999998 -82.23299999999999 26.5 20060101 20200625 722055 99999 OCALA INTL J TAYLOR US FL KOCF 29.166999999999998 -82.21700000000001 27.0 19440107 20051231 722056 12834 DAYTONA BEACH INTL US FL KDAB 29.183000000000003 -81.048 12.5 19730101 20100801 722057 12854 ORLANDO SANFORD AIRPORT US FL KSFB 28.78 -81.244 16.8 19730101 20200625 722057 99999 ORLANDO SANFORD US FL KSFB 28.767 -81.233 17.0 20000101 20031231 722058 99999 PONCE DE LEON INLET US FL 29.07 -80.92 3.0 19750911 19830324 722059 04866 BURLINGTON MUNICIPAL ARPT US WI KBUU 42.69 -88.304 237.4 20060101 20200625 722059 99999 BURLINGTON MUNI US WI KBUU 42.683 -88.3 237.0 19450801 20051231 722060 13889 JACKSONVILLE INTERNATIONAL AIRPORT US FL KJAX 30.495 -81.694 7.9 19480101 20200625 722061 03038 COPPER MOUNTAIN US CO KCCU 39.467 -106.15 3680.2 20060101 20200625 722061 99999 COPPER MOUNTAIN RE US CO KCCU 39.467 -106.15 3680.0 20040713 20051231 722062 63842 DOUGLAS MUNICIPAL AIRPORT US GA KDQH 31.476999999999997 -82.861 78.3 20060101 20200625 722062 99999 DOUGLAS MUNI US GA KDQH 31.478 -82.86 78.0 20040510 20051231 722064 99999 PORT RICHEY (ASOS) US FL 28.35 -82.617 12.0 19961220 19990111 722065 93837 JACKSONVILLE NAS US FL KNIP 30.233 -81.667 6.1 19730101 20200625 722066 03853 MAYPORT NAF US FL KNRB 30.4 -81.417 4.9 19730101 20200625 722067 63823 CECIL FIELD AIRPORT US FL KVQQ 30.219 -81.876 24.7 20060101 20200626 722067 93832 CECIL FLD US FL KNZC 30.217 -81.883 24.4 19730101 19991231 722067 99999 CECIL FLD US FL KVQQ 30.219 -81.877 25.0 20011113 20051231 722068 53860 JACKSONVILLE/CRAIG US FL KCRG 30.336 -81.515 12.5 20040101 20100801 722068 99999 JACKSONVILLE/CRAIG US FL 30.333000000000002 -81.517 12.0 19740822 20031231 722069 53853 DESTIN-FT.WALTON BEACH APT US FL KDTS 30.4 -86.47200000000001 6.7 20060101 20200625 722069 99999 DESTIN FT. WALTON US FL KDTS 30.4 -86.471 7.0 19970902 20051231 722070 03822 SAVANNAH/HILTON HEAD INTL AIRPORT US GA KSAV 32.131 -81.202 14.0 19480101 20200625 722071 53935 CHICKASHA MUNICIPAL ARPT US OK KCHK 35.096 -97.96600000000001 350.5 20060101 20200626 722071 99999 CHICKASHA MUNI US OK KCHK 35.1 -97.96700000000001 351.0 20041228 20051231 722072 03894 CLARKSVILLE US TN KCKV 36.624 -87.419 167.6 20060101 20100801 722072 99999 CLARKSVILLE US TN 36.617 -87.417 165.0 20040608 20041231 722073 03727 SAMPSON COUNTY AIRPORT US NC KCTZ 34.976 -78.36399999999999 45.1 20060101 20200625 722073 99999 SAMPSON CO US NC KCTZ 34.983000000000004 -78.367 45.0 20040713 20051231 722074 63840 CARMI MINICIPAL AIRPORT US IL KCUL 38.089 -88.12299999999999 118.3 20060101 20200625 722074 99999 CARMI MUNI US IL KCUL 38.083 -88.117 118.0 20040713 20051231 722075 04871 DE KALB TAYLOR MUNI ARPT US IL KDKB 41.931999999999995 -88.708 278.9 20060101 20200625 722075 99999 DE KALB TAYLOR MUNI US IL KDKB 41.93 -88.71 279.0 19730101 20051231 722076 94891 VERMILION COUNTY AIRPORT US IL KDNV 40.2 -87.6 202.4 20060101 20200625 722076 99999 VERMILION CO US IL KDNV 40.199 -87.596 212.0 19730101 20051231 722077 99999 TYBEE COAST GUARD STATION US GA 32.02 -80.85 2.0 19750911 19871030 722078 53938 HALLIBURTON FIELD AIRPORT US OK KDUC 34.471 -97.95100000000001 339.2 20060101 20200625 722078 99999 HALLIBURTON FLD US OK KDUC 34.471 -97.96 339.0 20040713 20051231 722079 53888 DAVIDSON COUNTY AIRPORT US NC KEXX 35.781 -80.304 223.4 20060101 20200625 722079 99999 DAVIDSON CO US NC KEXX 35.783 -80.3 223.0 19920226 20051231 722080 13880 CHARLESTON AFB/INTERNATIONAL AIRPORT US SC KCHS 32.899 -80.041 12.2 19450101 20200625 722081 13730 FREDERICK MUNICIPAL ARPT US MD KFDK 39.417 -77.383 92.4 20050101 20200625 722081 99999 FREDERICK AIRPORT US MD KFDK 39.417 -77.367 92.0 20040713 20041231 722082 04876 ALBERTUS AIRPORT US IL KFEP 42.246 -89.58200000000001 261.8 20060101 20200625 722082 99999 ALBERTUS US IL KFEP 42.246 -89.58200000000001 262.0 20040713 20051231 722083 99999 CHARLESTON AFB US SC 32.9 -80.05 14.0 19951004 19951005 722085 93831 BEAUFORT MCAS US SC KNBC 32.483000000000004 -80.717 11.3 19450401 20200626 722086 13758 CHARLESTON NAS US SC KNAO 32.85 -79.95 1.0 19730201 19800730 722086 99999 CHARLESTON NS US SC KNAO 32.86 -79.95 1.0 20000129 20020625 722088 99999 FOLLY BEACH LONG RANGE NAVIGATIO US 32.68 -79.88 3.0 19750916 19840916 722089 94959 GALESBURG MUNICIPAL ARPT US IL KGBG 40.933 -90.43299999999999 232.9 20060101 20200625 722089 99999 GALESBURG MUNI US IL KGBG 40.933 -90.43299999999999 233.0 20040713 20051231 722090 03875 WRIGHT AAF AIRPORT US GA KLHW 31.883000000000003 -81.567 13.7 20060103 20200625 722090 99999 FT STEWART/WRIGHT US GA KLHW 31.883000000000003 -81.567 14.0 19670201 20051230 722091 53940 CLAREMORE REGIONAL AIRPORT US OK KGCM 36.294000000000004 -95.479 221.0 20060101 20200625 722091 99999 CLAREMORE RGNL US OK KGCM 36.3 -95.48299999999999 223.0 20040713 20051231 722092 53941 GROVE MUNICIPAL AIRPORT US OK KGMJ 36.605 -94.738 253.9 20060101 20200625 722092 99999 GROVE MUNI US OK KGMJ 36.6 -94.73299999999999 253.0 20040713 20051231 722093 04878 GRAYLING ARMY AIRFIELD US MI KGOV 44.68 -84.729 350.2 20060101 20200625 722093 99999 GRAYLING AAF US MI KGOV 44.68 -84.729 353.0 19861101 20051231 722094 53984 GRAND PRAIRIE MUNICIPAL AIRPORT US TX KGPM 32.699 -97.04700000000001 179.5 20060101 20200625 722094 99999 GRAND PRAIRIE MUNI US TX KGPM 32.7 -97.05 180.0 19850130 20051231 722095 03030 GUYMON MUNICIPAL AIRPORT US OK KGUY 36.681999999999995 -101.505 951.9 20060101 20200625 722095 99999 GUYMON MUNI US OK KGUY 36.685 -101.5 952.0 20040319 20051231 722096 53127 HENDERSON EXECUTIVE ARPT US NV KHND 35.976 -115.133 749.2 20060101 20200625 722096 99999 HENDERSON EXECUTIVE US NV KHND 35.967 -115.134 760.0 20040713 20051231 722097 04936 HARLAN MUNICIPAL AIRPORT US IA KHNR 41.583999999999996 -95.339 375.2 20060101 20200625 722097 99999 HARLAN MUNI US IA KHNR 41.583 -95.333 375.0 20040713 20051231 722098 64761 EAST HAMPTON AIRPORT US NY KHTO 40.96 -72.252 17.1 20060101 20200625 722098 99999 EAST HAMPTON US NY KHTO 40.967 -72.25 17.0 20040713 20051231 722099 53936 CHANDLER MUNICIPAL AIRPORT US OK KCQB 35.724000000000004 -96.82 299.9 20060101 20200625 722099 99999 CHANDLER RGNL US OK KCQB 35.717 -96.81700000000001 300.0 20040713 20051231 722100 99999 TAMPA BAY AREA FL. US FL KTBW 27.7 -82.4 14.8 19760220 20060401 722101 03039 WOLF CREEK PASS AWOS-3 AIRPORT US CO KCPW 37.45 -106.8 3593.9 20060101 20200625 722101 99999 PAGOSA SPRINGS WOL US CO KCPW 37.45 -106.8 3584.0 19730101 20051231 722102 99999 CLEBURNE CLEBURNE MUNICIPAL AIR US 32.35 -97.43 260.0 20040525 20040617 722103 12895 ST LUCIE COUNTY INTL ARPT US FL KFPR 27.498 -80.377 7.3 20060101 20200625 722103 99999 ST LUCIE CO INTL US FL KFPR 27.483 -80.367 7.0 19880114 20051231 722104 92806 ALBERT WHITTED AIRPORT US FL KSPG 27.765 -82.62799999999999 2.4 19860101 20200625 722104 99999 ALBERT WHITTED US FL KSPG 27.767 -82.633 2.0 20000101 20031231 722105 99999 FT. MYERS BEACH COAST GUARD STAT US 26.45 -81.95 1.0 19750916 19840209 722106 12835 PAGE FIELD AIRPORT US FL KFMY 26.585 -81.861 4.6 19430101 20200625 722107 03056 GAINES COUNTY AIRPORT US TX KGNC 32.675 -102.654 1010.4 20060101 20200625 722107 99999 GAINES CO US TX KGNC 32.674 -102.65299999999999 1010.0 20040517 20051231 722108 12894 SW FLORIDA INTN AIRPORT US FL KRSW 26.535999999999998 -81.755 9.5 20060101 20200625 722108 99999 SOUTHWEST FLORIDA I US FL KRSW 26.533 -81.75 9.0 19830723 20051231 722109 00355 CHEROKEE COUNTY AIRPORT US GA KCNI 34.317 -84.417 372.2 20050101 20200626 722109 99999 CHEROKEE COUNTY AIRPORT US GA KCNI 34.3 -84.417 372.0 20040525 20041231 722110 12842 TAMPA INTERNATIONAL AIRPORT US FL KTPA 27.962 -82.54 5.8 19400801 20200625 722111 63847 ISBELL FLD US AL K4A9 34.474000000000004 -85.721 267.3 20080101 20091231 722111 99999 ISBELL FLD US AL 34.474000000000004 -85.721 267.3 20040525 20041231 722112 53982 FOX STEPHENS FIELD - GILMER MINICIPAL AIRPORT US TX KJXI 32.699 -94.949 126.5 20060101 20200626 722112 99999 FOX STEPHENS FLD US TX KJXI 32.698 -94.949 126.0 20040525 20051231 722113 53979 GIDDINGS-LEE COUNTY AIRPORT US TX KGYB 30.169 -96.98 147.8 20050101 20200625 722113 99999 GIDDINGS LEE CO US TX KGYB 30.166999999999998 -96.98299999999999 148.0 20040525 20041231 722114 54901 BUFFALO MUNICIPAL AIRPORT US MN KCFE 45.159 -93.84299999999999 294.7 20050101 20200625 722114 99999 BUFFALO MUNI ARPT US MN KCFE 45.167 -93.833 295.0 20040525 20041231 722115 12871 SARASOTA/BRADENTON INTL AP US FL KSRQ 27.401 -82.559 8.5 20060101 20200625 722115 99999 SARASOTA BRADENTON US FL KSRQ 27.383000000000003 -82.55 9.0 19730101 20051231 722116 12873 ST PETE-CLWTR INTL AIRPORT US FL KPIE 27.910999999999998 -82.68799999999999 3.4 20060101 20200625 722116 99999 ST PETERSBURG CLEAR US FL KPIE 27.9 -82.68299999999999 3.0 19730101 20051231 722117 99999 EGMONT KEY COAST GUARD STATION US FL 27.6 -82.77 1.0 19750918 19840108 722118 00482 VENICE MUNICIPAL AIRPORT US FL KVNC 27.072 -82.44 5.8 20110203 20200625 722118 99999 VENICE MUNI US FL KVNC 27.072 -82.44 5.5 19440127 20180516 722119 12883 LAKELAND LINDER REGIONAL AIRPORT US FL KLAL 28.0 -82.05 43.3 20060101 20200625 722119 99999 LAKELAND LINDER RGN US FL KLAL 27.983 -82.01700000000001 43.0 19420801 20051231 722120 12833 CROSS CITY AIRPORT US FL KCTY 29.633000000000003 -83.105 11.6 19431219 20200625 722121 99999 CURRITUCK CURRITUCK COUNTY AIRP US 36.4 -76.02 5.0 20040525 20040805 722122 03050 WINSTON FIELD AIRPORT US TX KSNK 32.693000000000005 -100.95100000000001 740.7 20060101 20200625 722122 99999 WINSTON FLD US TX KSNK 32.7 -100.95 741.0 20040525 20051231 722123 12809 BARTOW MUNICIPAL AIRPORT US FL KBOW 27.95 -81.783 38.1 20050101 20200625 722123 99999 BARTOW MUNI US FL KBOW 27.95 -81.783 38.0 19900208 20041231 722124 04998 HEBRON MUNICIPAL AIRPORT US NE KHJH 40.149 -97.587 449.0 20060101 20200625 722124 99999 HEBRON MUNI US NE KHJH 40.15 -97.583 447.0 20040525 20051231 722125 04829 SAGNAW CO H.W. BROWNE ARPT US MI KHYX 43.433 -83.867 182.9 20060101 20200625 722125 99999 SAGINAW CO H W BROWN US MI KHYX 43.433 -83.867 183.0 20040525 20051231 722126 04879 LANSING MUNICIPAL AP US IL KIGQ 41.54 -87.53200000000001 187.8 20060101 20200625 722126 99999 LANSING MUNI US IL KIGQ 41.533 -87.53299999999999 189.0 20040525 20051231 722127 04880 GREATER KANKAKEE AIRPORT US IL KIKK 41.121 -87.846 191.7 20060101 20200625 722127 99999 GREATER KANKAKEE US IL KIKK 41.067 -87.833 192.0 20040525 20051231 722128 53899 LICONTN-LINCOLN CO RGNL AP US NC KIPJ 35.483000000000004 -81.161 266.7 20060101 20200625 722128 99999 LINCOLNTON LINCOLN US NC KIPJ 35.483000000000004 -81.167 267.0 20040525 20051231 722129 04939 MOORHEAD MUNICIPAL AIRPORT US MN KJKJ 46.839 -96.663 279.5 20060101 20200625 722129 99999 MOORHEAD MUNI US MN KJKJ 46.839 -96.664 280.0 20040525 20051231 722130 13861 WAYCROSS-WARE CO. AIRPORT US GA KAYS 31.25 -82.4 43.3 19421201 20200625 722130 99999 WAYCROSS/WARE CO. US GA KAYS 31.25 -82.4 46.0 20001004 20031231 722131 03713 JOHNSTON COUNTY AIRPORT US NC KJNX 35.541 -78.39 50.3 20060101 20200625 722131 99999 JOHNSTON CO US NC KJNX 35.541 -78.39 50.0 20040525 20051231 722132 63801 CONCORD REGIONAL AIRPORT US NC KJQF 35.39 -80.707 214.9 20060101 20200625 722132 99999 CONCORD RGNL US NC KJQF 35.383 -80.7 215.0 20040525 20051231 722133 53946 SALLISAW MUNICIPAL AIRPORT US OK KJSV 35.438 -94.803 160.9 20060101 20200625 722133 99999 SALLISAW MUNI US OK KJSV 35.438 -94.803 161.0 20040525 20051231 722134 63822 VIDALIA REGIONAL AIRPORT US GA KVDI 32.193000000000005 -82.37200000000001 83.5 20060101 20200626 722134 99999 VIDALIA RGNL US GA KVDI 32.2 -82.367 84.0 20010705 20051231 722135 13870 ALMA/BACON CO. US GA KAMG 31.535999999999998 -82.507 62.8 19730101 20100801 722136 53883 BRUNSWICK GOLDEN ISLES APT US GA KBQK 31.259 -81.46600000000001 7.9 20060101 20200625 722136 99999 BRUNSWICK GOLDEN IS US GA KBQK 31.25 -81.467 8.0 19730101 20051231 722137 13878 MALCOLM MC KINNON AIRPORT US GA KSSI 31.151999999999997 -81.391 4.9 19730101 20200625 722138 13835 BAY SAINT LOUIS US MS KHSA 30.366999999999997 -89.45 7.0 19420501 19890214 722138 63852 STENNIS INTERNATIONAL AIRPORT US MS KHSA 30.368000000000002 -89.455 7.0 20050101 20200625 722138 99999 BAY SAINT LOUIS US MS KHSA 30.366999999999997 -89.45 7.0 20040517 20041231 722139 99999 SAINT SIMON ISLAND COAST GUARD S US 31.13 -81.37 1.0 19750911 19830111 722140 93805 TALLAHASSEE REGIONAL AIRPORT US FL KTLH 30.393 -84.353 16.8 19420501 20200625 722141 03731 FRANKLIN COUNTY AIRPORT US NC KLHZ 36.023 -78.33 112.5 20050101 20200625 722141 99999 FRANKLIN CO US NC KLHZ 36.023 -78.33 112.0 20040525 20041231 722142 04114 CHALLIS AIRPORT US ID KLLJ 44.523 -114.215 1546.0 20050101 20200625 722142 99999 CHALLIS US ID KLLJ 44.516999999999996 -114.21799999999999 1546.0 20040525 20081231 722143 53975 LANCASTER AIRPORT US TX KLNC 32.579 -96.719 152.7 20060101 20200625 722143 99999 LANCASTER US TX KLNC 32.583 -96.71700000000001 153.0 20040525 20051231 722144 04945 MAPLE LAKE MUNICIPAL ARPT US MN KMGG 45.236000000000004 -93.986 313.3 20060101 20200625 722144 99999 MAPLE LAKE MUNICIPAL US MN KMGG 45.24 -93.99 313.0 20040525 20051231 722145 04884 HARBOR SPRINGS AIRPORT US MI KMGN 45.426 -84.913 206.4 20060101 20200625 722145 99999 HARBOR SPRINGS US MI KMGN 45.426 -84.913 209.0 19760801 20051231 722146 12816 GAINESVILLE RGNL US FL KGNV 29.691999999999997 -82.27600000000001 50.3 19431101 20100801 722147 53817 MOULTRIE MUNICIPAL AIRPORT US GA KMGR 31.083000000000002 -83.8 86.3 20050101 20200625 722147 99999 MOULTRIE MUNI US GA KMGR 31.085 -83.803 90.0 20040525 20041231 722148 63824 STANLEY COUNTY AIRPORT US NC KVUJ 35.417 -80.15100000000001 185.6 20060101 20200625 722148 99999 STANLY CO US NC KVUJ 35.417 -80.15 186.0 20040525 20051231 722149 04899 ILLINOIS VALLEY RGNL-WALTER DUNCAN FLD ARPT US IL KVYS 41.352 -89.15299999999999 199.3 20060101 20200625 722149 99999 ILLINOIS VALLEY RGNL US IL KVYS 41.35 -89.15 199.0 20040525 20051231 722150 99999 PEACHTREE CITY US GA 33.356 -84.56700000000001 244.9 19990428 20060212 722151 14794 WESTERLY STATE AIRPORT US RI KWST 41.35 -71.79899999999999 24.7 20060101 20200625 722151 99999 WESTERLY US RI KWST 41.35 -71.803 24.0 20040525 20051231 722152 53957 WEST WOODWARD AIRPORT US OK KWWR 36.437 -99.521 666.9 20050101 20200625 722153 99999 GREEN CANYON 184 US LA 27.767 -91.51700000000001 0.0 20040525 20060911 722154 53885 DALTON MUNICIPAL AIRPORT US GA KDNN 34.722 -84.869 216.4 20060101 20200626 722154 99999 DALTON US GA KDNN 34.722 -84.869 216.0 19990114 20051231 722155 03040 MONUMENT HILL AWOS-3 ARPT US CO KMNH 39.217 -104.633 2151.9 20060101 20200625 722155 99999 ELBERT MTN MONUMENT US CO KMNH 39.217 -104.633 2125.0 20040525 20051231 722156 53873 CARTERSVILLE AIRPORT US GA KVPC 34.123000000000005 -84.84899999999999 232.6 20060101 20200626 722156 99999 CARTERSVILLE US GA KVPC 34.117 -84.85 231.0 20010705 20051231 722157 04949 MACOMB MUNICIPAL AIRPORT US IL KMQB 40.52 -90.652 215.5 20060101 20200625 722157 99999 MACOMB MUNI US IL KMQB 40.516999999999996 -90.65 215.0 20040525 20051231 722158 99999 ANNAPOLIS UNITED STATES NAVAL ACADEMY US MD KNAK 38.99 -76.48 2.0 20040525 20200624 722159 12980 MID VALLEY AIRPORT US TX KT65 26.178 -97.973 21.3 20060101 20200624 722159 99999 MID VALLEY ARPT / WESLACO US TX KTXW 26.179000000000002 -97.97399999999999 21.0 20040525 20051231 722160 13869 SW GEORGIA REGIONAL ARPT US GA KABY 31.535999999999998 -84.194 57.9 19730101 20200625 722160 99999 ALBANY MUNICIPAL US GA KABY 31.533 -84.18299999999999 59.0 20000101 20031231 722162 26554 MERRILL PASS WEST US AK PAER 61.266999999999996 -153.8 356.6 20060101 20140616 722162 99999 MERRILL PASS WEST US AK 61.25 -153.817 358.0 20040525 20041231 722163 99999 PROSPECT CREEK US AK 66.817 -150.65 335.0 20040601 20081223 722164 53949 OKMULGEE MUNICIPAL AIRPORT US OK KOKM 35.668 -95.949 219.5 20060101 20200625 722164 99999 OKMULGEE RGNL US OK KOKM 35.667 -95.95 219.0 20040525 20051231 722165 13815 OLIVE BRANCH US MS KOLV 34.983000000000004 -89.78299999999999 123.0 19411013 19740415 722165 63808 OLIVE BRANCH AIRPORT US MS KOLV 34.979 -89.787 122.5 20050101 20200626 722165 99999 OLIVE BRANCH US MS KOLV 34.983000000000004 -89.78299999999999 123.0 20040517 20041231 722166 93845 VALDOSTA REGIONAL AIRPORT US GA KVLD 30.783 -83.277 60.4 19480101 20200625 722166 99999 VALDOSTA RGNL US GA KVLD 30.783 -83.26700000000001 62.0 20000101 20031231 722167 03718 ORANGE COUNTY AIRPORT US VA KOMH 38.247 -78.046 143.0 20060101 20200625 722167 99999 ORANGE CO US VA KOMH 38.25 -78.05 142.0 19420401 20051231 722168 04960 OLIVIA REGIONAL AIRPORT US MN KOVL 44.778999999999996 -95.03299999999999 328.0 20060101 20200625 722168 99999 OLIVIA RGNL US MN KOVL 44.783 -95.03299999999999 328.0 20040525 20051231 722169 03058 PECOS MUNICIPAL AIRPORT US TX KPEQ 31.383000000000003 -103.51100000000001 796.4 20060101 20200625 722169 99999 PECOS MUNICIPAL AIR US TX KPEQ 31.383000000000003 -103.5 796.0 20040525 20051231 722170 03813 MIDDLE GEORGIA REGIONAL AIRPORT US GA KMCN 32.685 -83.65299999999999 104.6 19411020 20200626 722171 04889 PONTIAC MUNICIPAL AIRPORT US IL KPNT 40.924 -88.625 200.9 20060101 20200625 722171 99999 PONTIAC MUNI US IL KPNT 40.917 -88.617 203.0 20040525 20051231 722172 63810 EDGAR COUNTY AIRPORT US IL KPRG 39.7 -87.669 199.3 20060101 20200625 722172 99999 EDGAR CO US IL KPRG 39.7 -87.667 199.0 20040525 20051231 722173 53951 PAULS VALLEY MUNI AIRPORT US OK KPVJ 34.711 -97.223 295.1 20060101 20200625 722173 99999 PAULS VALLEY MUNI US OK KPVJ 34.717 -97.21700000000001 295.0 20040525 20051231 722174 23097 HALE COUNTY AIRPORT US TX KPVW 34.167 -101.71700000000001 1028.4 20060101 20200625 722174 99999 HALE CO US TX KPVW 34.167 -101.71700000000001 1028.0 20040525 20051231 722175 13860 ROBINS AFB AIRPORT US GA KWRB 32.633 -83.6 89.6 19420807 20200626 722175 99999 ROBINS AFB US GA KWRB 32.633 -83.6 90.0 20000101 20041231 722176 53884 NEWNAN COWETA COUNTY ARPT US GA KCCO 33.312 -84.77 295.7 20060101 20200626 722176 99999 NEWNAN COWETA CO US GA KCCO 33.317 -84.76700000000001 296.0 19990114 20051231 722177 63811 ANDREWS-MURPHY AIRPORT US NC KRHP 35.195 -83.865 516.9 20060101 20200625 722177 99999 ANDREWS MURPHY US NC KRHP 35.2 -83.867 517.0 20040525 20051231 722178 53953 ROBERT S KERR AIRPORT US OK KRKR 35.021 -94.62100000000001 137.5 20060101 20200625 722178 99999 ROBERT S KERR US OK KRKR 35.016999999999996 -94.617 137.0 20040525 20051231 722179 04968 NEW RICHMOND MUNICIPAL APT US WI KRNH 45.15 -92.53299999999999 303.6 20060101 20200625 722179 99999 NEW RICHMOND RGNL US WI KRNH 45.15 -92.53299999999999 304.0 20040525 20051231 722180 03820 AUGUSTA REGIONAL AT BUSH FIELD AP US GA KAGS 33.364000000000004 -81.963 40.2 19480101 20200626 722181 13837 DANIEL FIELD AIRPORT US GA KDNL 33.467 -82.039 128.9 20060101 20200626 722181 99999 DANIEL FIELD US GA KDNL 33.467 -82.039 129.0 19970123 20051231 722182 04890 ROCHELLE MUNI ARPT-KORITZ FIELD AIRPORT US IL KRPJ 41.893 -89.07799999999999 238.1 20060101 20200625 722182 99999 ROCHELLE MUNI KORIT US IL KRPJ 41.9 -89.083 238.0 20040525 20051231 722183 04972 BURNETT COUNTY AIRPORT US WI KRZN 45.823 -92.37299999999999 301.5 20060101 20200625 722183 99999 BURNETT CO US WI KRZN 45.817 -92.367 301.0 20040525 20051231 722184 99999 PLAINS / PETERSON FIELD US GA 32.08 -84.37 160.0 19771221 19810122 722185 53838 LEE GILMER MEMORIAL ARPT US GA KGVL 34.272 -83.83 388.6 20060101 20200626 722185 99999 LEE GILMER MEM US GA KGVL 34.266999999999996 -83.833 389.0 19970718 20051231 722186 04892 BEAVER ISLAND AIRPORT US MI KSJX 45.68899999999999 -85.566 203.0 20060101 20200625 722186 99999 BEAVER ISLAND US MI KSJX 45.7 -85.56700000000001 204.0 20040525 20051231 722187 93911 SHAWNEE MUNICIPAL AIRPORT US OK KSNL 35.357 -96.943 327.1 20060101 20200625 722187 99999 SHAWNEE RGNL US OK KSNL 35.35 -96.95 327.0 20040525 20051231 722188 53985 SEARCY MUNICIPAL AIRPORT US AR KSRC 35.211999999999996 -91.73700000000001 80.5 20060101 20200625 722188 99999 SEARCY MUNI US AR KSRC 35.211 -91.738 80.0 20040525 20051231 722189 92815 WITHAM FIELD AIRPORT US FL KSUA 27.182 -80.221 5.5 20060101 20200625 722189 99999 WITHAM FLD US FL KSUA 27.183000000000003 -80.217 5.0 20040525 20051231 722190 13874 HARTSFIELD-JACKSON ATLANTA INTL AP US GA KATL 33.63 -84.44200000000001 307.9 19730101 20200626 722191 03721 BRUNSWICK COUNTY AIRPORT US NC KSUT 33.929 -78.075 7.6 20050101 20200625 722191 99999 BRUNSWICK CO US NC KSUT 33.933 -78.067 8.0 20040525 20041231 722192 23033 AVENGER FIELD AIRPORT US TX KSWW 32.473 -100.46600000000001 725.4 20060101 20200625 722192 99999 AVENGER FLD US TX KSWW 32.467 -100.46700000000001 725.0 20040525 20051231 722193 03722 PERSON COUNTY AIRPORT US NC KTDF 36.285 -78.984 185.6 20060101 20200625 722193 99999 PERSON CO US NC KTDF 36.283 -78.983 186.0 20040525 20051231 722194 04896 RANTOUL NATL AVN CNTR-F ELLIOTT FIELD AIRPORT US IL KTIP 40.293 -88.14200000000001 224.6 20060101 20200625 722194 99999 RANTOUL NATL AVIATIO US IL KTIP 40.3 -88.15 225.0 20040525 20051231 722195 03888 FULTON CO-BROWN FLD ARPT US GA KFTY 33.779 -84.521 256.0 20060101 20200626 722195 99999 FULTON CO ARPT BROW US GA KFTY 33.766999999999996 -84.51700000000001 256.0 19730101 20051231 722196 53863 DEKALB-PEACHTREE AIRPORT US GA KPDK 33.875 -84.302 305.4 20060101 20200626 722196 99999 DEKALB PEACHTREE US GA KPDK 33.867 -84.3 306.0 19810801 20051231 722197 53819 PCHTRE CTY-FALCON FLD ARPT US GA KFFC 33.355 -84.56700000000001 243.2 20060101 20200626 722197 99999 PEACHTREE CITY FALCO US GA KFFC 33.357 -84.572 246.0 19960201 20051231 722198 63819 BOONE US NC KTNB 36.2 -81.65 910.4 20020902 20200625 722198 99999 BOONE WATAUGA HOSPTL US NC KTNB 36.2 -81.65 959.0 20040525 20041231 722199 53956 TAHLEQUAH MUNICIPAL ARPT US OK KTQH 35.929 -95.00399999999999 266.1 20060101 20200625 722199 99999 TAHLEQUAH MUNI US OK KTQH 35.933 -95.0 266.0 20040525 20051231 722200 12832 APALACHICOLA MUNI AIRPORT US FL KAAF 29.733 -85.03299999999999 5.8 19450101 20200625 722200 99999 APALACHICOLA MUNI US FL KAAF 29.733 -85.03299999999999 6.0 20000101 20031231 722201 03723 SANFORD-LEE COUNTY RGNL ARPT US NC KTTA 35.582 -79.101 75.3 20060101 20200626 722201 99999 SANFORD US NC KTTA 35.584 -79.101 75.0 20040525 20051231 722202 12985 GARNER FIELD AIRPORT US TX KUVA 29.211 -99.744 287.1 20060101 20200625 722202 99999 GARNER FLD US TX KUVA 29.217 -99.75 287.0 20040525 20051231 722203 03041 MONARCH PASS AWOS-3 ARPT US CO KMYP 38.483000000000004 -106.31700000000001 3667.1 20060101 20200625 722203 99999 SALIDA MTN MONARCH P US CO KMYP 38.483000000000004 -106.31700000000001 3667.0 20040525 20051231 722204 04996 TRI-TOWNSHIP AIRPORT US IL KSFY 42.04600000000001 -90.10799999999999 187.8 20060101 20200626 722204 99999 TRI TOWNSHIP US IL KSFY 42.05 -90.1 188.0 20040525 20051231 722205 99999 THEDFORD(NEXRAD) US NE KLNX 41.95 -100.583 905.0 20061120 20061120 722208 04224 ORCAS ISLAND AIRPORT US WA KORS 48.708 -122.911 9.5 20060101 20200625 722208 99999 EASTSOUND ORCAS ISLA US WA KORS 48.717 -122.917 9.0 20040803 20051231 722209 12986 CALHOUN COUNTY AIRPORT US TX KPKV 28.654 -96.681 9.1 20060101 20200626 722209 99999 CALHOUN CO US TX KPKV 28.65 -96.68299999999999 9.0 20040803 20051231 722210 13858 EGLIN AFB AIRPORT US FL KVPS 30.483 -86.51700000000001 26.5 19380910 20200625 722210 99999 VALPARAISO/EGLIN AF US FL KVPS 30.483 -86.51700000000001 29.0 19720101 20041231 722211 94087 THOMAS COUNTY AIRPORT US NE KTIF 41.964 -100.569 888.2 20060101 20200625 722211 99999 THOMAS COUNTY US NE KTIF 41.967 -100.56700000000001 892.0 20040904 20051231 722212 92814 ST AUGUSTINE AIRPORT US FL KSGJ 29.959 -81.34 3.1 20060101 20200625 722212 99999 ST AUGUSTINE US FL KSGJ 29.967 -81.333 3.0 19970123 20051231 722213 12819 LEESBURG REGIONAL AIRPORT US FL KLEE 28.820999999999998 -81.81 23.5 20060101 20200625 722213 99999 LEESBURG RGNL US FL KLEE 28.823 -81.809 23.0 19970123 20051231 722214 03070 MOORE COUNTY AIRPORT US TX KDUX 35.858000000000004 -102.01299999999999 1129.3 20060101 20200625 722214 99999 MOORE CO US TX KDUX 35.858000000000004 -102.01299999999999 1129.0 20040824 20051231 722215 13884 BOB SIKES AIRPORT US FL KCEW 30.78 -86.523 57.9 19730101 20200625 722216 99999 NORTH AF AUX US SC KXNO 33.615 -81.084 97.8 20071024 20200624 722217 63881 W H `BUD` BARRON AIRPORT US GA KDBN 32.564 -82.985 94.2 20060101 20200626 722217 99999 W H BUD BARRON US GA KDBN 32.564 -82.985 94.0 20050628 20051231 722218 00356 CAMBRIDGE DORCHESTER AIRPORT US MD KCGE 38.533 -76.033 6.1 20061003 20200625 722218 99999 CAMBRIDGE DORCHESTER US MD KCGE 38.539 -76.03 5.8 20080101 20180516 722219 99999 SHELL AHP US AL KSXS 31.363000000000003 -85.84899999999999 121.9 20131211 20200624 722220 99999 PENSACOLA FL US 30.483 -87.18299999999999 38.0 20010908 20200624 722221 00444 DIXON AIRPORT US WY KDWX 41.037 -107.493 1996.1 20130731 20200625 722223 13899 PENSACOLA REGIONAL AIRPORT US FL KPNS 30.478 -87.18700000000001 34.1 19900228 20200625 722224 53862 PERRY FOLEY US FL K40J 30.072 -83.574 13.7 20060101 20130501 722224 99999 PERRY FOLEY US FL 30.069000000000003 -83.581 13.7 19980514 20051231 722225 03855 PENSACOLA NAS US FL KNPA 30.35 -87.31700000000001 8.5 19450201 20200625 722226 93841 WHITING FIELD NAVAL AIR STATION NORTH US FL KNSE 30.717 -87.01700000000001 60.7 19730101 20200625 722227 03815 PENSACOLA SAUFLEY NAS US FL 30.483 -87.35 28.0 19730102 19751231 722228 99999 SANTA ROSA COAST GUARD STATION US FL 30.32 -87.25 2.0 19750916 19790818 722230 13894 MOBILE REGIONAL AIRPORT US AL KMOB 30.688000000000002 -88.24600000000001 65.5 19730101 20200625 722231 00357 HAMILTON MUNICIPAL AIRPORT US TX KMNZ 31.666 -98.149 396.2 20090101 20200625 722231 99999 HAMILTON MUNI US TX KMNZ 31.666 -98.149 395.9 20080227 20180516 722235 13838 MOBILE DOWNTOWN AIRPORT US AL KBFM 30.625999999999998 -88.068 7.9 19420701 20200625 722235 99999 MOBILE DOWNTOWN US AL KBFM 30.616999999999997 -88.06700000000001 8.0 20000101 20031231 722236 99999 MOBILE POINT COAST GUARD STATION US AL 30.23 -88.03 1.0 19750916 19771211 722237 99999 PASCAGOULA COAST GUARD STATION US MS 30.37 -88.57 8.0 19750916 19790724 722238 63873 HANCHEY ARMY HELIPORT (FORT RUCKER) US AL KHEY 31.35 -85.667 96.6 20060901 20200625 722238 99999 HANCHEY AHP US AL KHEY 31.35 -85.65 97.0 19791207 19791207 722239 53861 LOWE ARMY HELIPORT (FORT RUCKER) US AL KLOR 31.355999999999998 -85.751 74.4 20080717 20200625 722239 99999 LOWE AHP US AL KLOR 31.35 -85.75 74.0 19890714 19980401 722240 99999 CAPE SAN BLAS FL. US FL 29.683000000000003 -85.367 2.0 19780823 20040527 722241 54925 WAYNE MUNICIPAL AIRPORT US NE KLCG 42.242 -96.98299999999999 434.0 20060101 20200625 722241 99999 WAYNE MUNI US NE KLCG 42.25 -96.98299999999999 436.0 20050722 20051231 722242 99999 GALLIANO HELIPORT US LA K2GL 29.4 -90.3 2.0 20050101 20080626 722243 03738 RICHMOND COUNTY AIRPORT US NC KRCZ 34.891 -79.759 109.1 20061024 20200625 722244 00358 COLLEGE PARK AP US MD KCGS 38.981 -76.922 15.2 20061025 20200625 722244 99999 COLLEGE PARK US MD KCGS 38.981 -76.922 14.6 19761215 19810408 722245 03882 PANAMA CITY-BAY CO. INT AP US FL KPFN 30.212 -85.68299999999999 6.4 20060101 20100603 722245 99999 PANAMA CITY BAY CO US FL KPFN 30.2 -85.68299999999999 6.0 19730101 20051231 722246 03844 EGLIN AF AUX NR 3 D US FL KEGI 30.65 -86.51700000000001 58.0 19490908 20200624 722246 99999 DUKE FLD US FL KEGI 30.65 -86.523 59.4 20000103 20041231 722247 54785 SOMERSET AIRPORT US NJ KSMQ 40.624 -74.669 32.0 20060101 20200625 722247 99999 SOMERSET US NJ KSMQ 40.633 -74.667 32.0 20050208 20051231 722248 00359 SOUTHLAND FIELD AIRPORT US LA KUXL 30.131 -93.376 3.1 20061024 20200625 722249 63887 HOOK FIELD MUNICIPAL AIRPORT US OH KMWO 39.531 -84.395 198.1 20061024 20200625 722250 13829 LAWSON AAF AIRPORT US GA KLSF 32.35 -85.0 70.7 19390501 20200625 722250 99999 FORT BENNING US GA KLSF 32.333 -85.0 71.0 20000101 20041231 722251 53958 RUSTON REGIONAL AIRPORT US LA KRSN 32.514 -92.588 94.8 20060425 20200625 722252 54923 MYERS FIELD AIRPORT US MN KCNB 44.729 -96.266 363.6 20061018 20200625 722253 53992 MOREHOUSE MEMORIAL AIRPORT US LA KBQP 32.756 -91.881 50.9 20061018 20200625 722255 93842 COLUMBUS METRO AIRPORT US GA KCSG 32.516 -84.94200000000001 119.5 19480101 20200626 722256 64774 MARSHFIELD MUNICIPAL AIRPORT - GEORGE HARLOW FIELD US MA KGHG 42.098 -70.672 3.4 20051219 20200625 722260 13895 MONTGOMERY RGNL (DANNELLY FD) AP US AL KMGM 32.3 -86.40799999999999 61.6 19730101 20200625 722261 00360 OKEECHOBEE COUNTY AIRPORT US FL KOBE 27.267 -80.85 10.1 20070116 20200625 722261 99999 OKEECHOBEE CO US FL KOBE 27.263 -80.85 10.4 20080101 20180516 722265 13821 MAXWELL AFB AIRPORT US AL KMXF 32.383 -86.35 52.1 19351001 20200625 722265 99999 MAXWELL AFB US AL KMXF 32.383 -86.367 52.0 20000102 20041229 722266 13850 CRAIG FLD US AL KSEM 32.35 -86.98299999999999 51.0 19410701 19770831 722266 99999 CRAIG FLD US AL KSEM 32.344 -86.988 50.6 20140109 20200619 722267 03878 TROY MUNICIPAL AIRPORT US AL KTOI 31.861 -86.012 121.0 19730108 20200625 722267 99999 TROY MUNI US AL KTOI 31.866999999999997 -86.01700000000001 121.0 20000103 20031231 722268 13839 DOTHAN REGIONAL AIRPORT US AL KDHN 31.316999999999997 -85.45 114.0 20060101 20200625 722268 93843 DOTHAN RGNL US AL KDHN 31.316999999999997 -85.45 122.0 19411216 19991231 722268 99999 DOTHAN RGNL US AL KDHN 31.316999999999997 -85.45 122.0 20000101 20051231 722269 03850 CAIRNS ARMY AIRFIELD (FORT RUCKER) US AL KOZR 31.267 -85.71700000000001 91.7 19541019 20200625 722269 99999 CAIRNS AAF US AL KOZR 31.267 -85.7 92.0 20000101 20041231 722270 13864 DOBBINS AIR RESERVE BASE AIRPORT US GA KMGE 33.917 -84.51700000000001 325.5 19460901 20200626 722270 99999 MARIETTA/DOBBINS AF US GA KMGE 33.917 -84.51700000000001 326.0 20000101 20041231 722273 99999 ATLANTA (NAVRES) US GA 33.917 -84.51700000000001 326.0 20030712 20030712 722274 54939 CENTERVILLE MUNICIPAL AIRPORT US IA KTVK 40.684 -92.90100000000001 311.8 20090510 20200625 722274 99999 CENTERVILLE MUNI US IA KTVK 40.684 -92.90100000000001 313.0 20180129 20180515 722275 53843 ANDALUSIA-OPP MUNICIPAL AIRPORT US AL K79J 31.309 -86.39399999999999 94.5 20060103 20200625 722275 99999 ANDALUSIA OPP US AL K79J 31.309 -86.39399999999999 94.5 19730101 20051230 722276 53820 MIDDLETON FIELD AIRPORT US AL KGZH 31.416 -87.044 78.6 20060101 20200625 722276 99999 MIDDLETON FLD US AL KGZH 31.416999999999998 -87.05 79.0 19931115 20051231 722279 53852 PRYOR FIELD REGIONAL ARPT US AL KDCU 34.653 -86.945 180.4 20060101 20200625 722279 99999 PRYOR FLD RGNL US AL KDCU 34.653 -86.945 180.0 19990114 20051231 722280 13876 BIRMINGHAM INTERNATIONAL AIRPORT US AL KBHM 33.566 -86.745 187.5 19420801 20200625 722284 03892 ABRN-OPLKA R G PITTS ARPT US AL KAUO 32.616 -85.43299999999999 236.5 20060101 20200626 722284 99999 AUBURN OPELIKA ROBE US AL KAUO 32.616 -85.43299999999999 237.0 19920507 20051231 722285 03896 GADSDEN MUNICIPAL AIRPORT US AL KGAD 33.967 -86.083 173.4 20060101 20200625 722285 99999 GADSDEN MUNI US AL KGAD 33.967 -86.083 173.0 19730101 20051231 722286 93806 TUSCALOOSA MUNICIPAL ARPT US AL KTCL 33.211999999999996 -87.616 45.7 19730101 20200625 722286 99999 TUSCALOOSA RGNL US AL KTCL 33.217 -87.6 52.0 20000101 20031231 722287 13871 ANNISTON METROPOLITAN ARPT US AL KANB 33.586999999999996 -85.85600000000001 181.1 19730101 20200625 722288 99999 AUBURN UNIV. (AMOS) US AL KAUB 32.6 -85.5 198.0 19910822 19960330 722290 03881 NWS METEOROLOGICAL OBSY US AL KCKL 32.9 -87.25 138.1 19760325 20051008 722290 99999 CENTREVILLE US AL KCKL 32.9 -87.25 140.0 20020826 20020826 722291 00470 PLATTSMOUTH MUNICIPAL AIRPORT US NE KPMV 40.948 -95.917 367.3 20061121 20200625 722291 99999 PLATTSMOUTH MUNI US NE KPMV 40.95 -95.91799999999999 366.4 20080101 20180515 722293 99999 CAMERON US LA KCVW 29.784000000000002 -93.3 5.0 19810918 20190416 722294 99999 GRAND CHENIER (LITTLE PECAN ISLAND ARPT) US LA K3L4 29.8 -92.804 2.0 19870117 20190830 722295 99999 SOUTH TIMBALIER US LA KS58 28.533 -90.583 1.0 19870117 20110407 722296 99999 SHIP SHOAL 198G US LA 28.5 -91.2 2.0 19870118 19921128 722297 99999 MISSISSIPPI CANYON 778 US LA 28.15 -93.35 43.0 19870228 20130430 722298 99999 VERMILLION AREA US LA KVRX 28.583000000000002 -92.45 1.0 19870118 19880730 722300 53864 SHELBY COUNTY AIRPORT US AL KEET 33.178000000000004 -86.78200000000001 172.2 20020101 20200625 722300 99999 BIRMINGHAM US AL KEET 33.183 -86.78299999999999 175.0 19981223 20011231 722303 99999 HIGH ISLAND US LA 28.13 -94.4 30.0 19870117 19930920 722304 99999 MISSISSIPPI CANYON US LA 28.78 -89.05 18.0 19870117 19900827 722305 99999 VENICE HELIPORT US LA 29.12 -89.2 80.0 19870122 19881109 722306 99999 EUGENE ISLAND US LA 28.47 -91.78 30.0 19870118 19920127 722307 99999 MARATHON-VENICE US LA K5LA 29.285999999999998 -89.36399999999999 1.5 19870117 20160915 722308 99999 FOURCHON (SAWRS) US LA K9F2 29.1 -90.2 2.0 19870118 20161103 722309 00432 GRAND ISLE SAWRS US LA KAXO 29.25 -89.96600000000001 2.1 20050103 20161103 722309 99999 GRAND ISLE (SAWRS) US LA KAXO 29.25 -89.96700000000001 2.0 19870117 20041230 722310 12916 LOUIS ARMSTRONG NEW ORLEANS INTL AP US LA KMSY 29.997 -90.27799999999999 1.2 19451001 20200625 722312 03908 HAMMOND MUNICIPAL AIRPORT US LA KHDC 30.521 -90.41799999999999 13.4 20060101 20200625 722312 99999 HAMMOND US LA KHDC 30.517 -90.417 14.0 20020423 20051231 722314 03934 NEW IBERIA/ACADIANA US LA KARA 30.033 -91.883 7.0 19810724 19991231 722314 53915 ACADIANA REGIONAL AIRPORT US LA KARA 30.038 -91.884 7.3 20060101 20200625 722314 99999 NEW IBERIA/ACADIANA US LA KARA 30.033 -91.883 7.0 20000101 20051231 722315 53917 LAKEFRONT AIRPORT US LA KNEW 30.049 -90.029 2.7 19420901 20200625 722315 99999 LAKEFRONT US LA KNEW 30.033 -90.01700000000001 2.0 20000101 20031231 722316 12958 NEW ORLEANS NAS US LA KNBG 29.816999999999997 -90.01700000000001 0.6 19730101 20200625 722317 13970 BATON ROUGE METRO R US LA KBTR 30.537 -91.147 23.2 19420101 20101115 722319 53943 NATCHITOCHES REGIONAL ARPT US LA KIER 31.736 -93.09899999999999 36.9 20060101 20200625 722319 99999 NATCHITOCHES RGNL US LA KIER 31.733 -93.1 37.0 20020423 20051231 722320 12884 BATON ROUGE METRO R US LA KBVE 29.333000000000002 -89.40799999999999 0.3 19730101 20101115 722320 13970 BATON ROUGE METRO RYAN FIELD AIRPORT US LA KBTR 30.537 -91.147 19.5 20101115 20200625 722322 00361 GLASGOW MUNICIPAL AIRPORT US KY KGLW 37.033 -85.95 218.2 20050101 20200625 722322 99999 GLASGOW MUNI US KY KGLW 37.032 -85.954 217.9 20041123 20180516 722323 00362 GATESVILLE MUNICIPAL AIRPORT US TX KGOP 31.416999999999998 -97.8 276.2 20050101 20200625 722323 99999 CITY COUNTY US TX KGOP 31.421 -97.79700000000001 275.8 20041123 20180520 722324 03071 MIDLAND AIRPARK US TX KMDD 32.036 -102.101 854.4 20060101 20200625 722324 99999 MIDLAND AIRPARK US TX KMDD 32.037 -102.101 854.0 20041123 20051231 722325 99999 SOUTHWEST PASS COAST GUARD STATI US 28.92 -89.43 1.0 19750916 19860610 722326 99999 GRAND ISLE COAST GUARD STATION US LA 29.27 -89.95 2.0 19750916 19820903 722327 99999 LEEVILLE US LA 29.22 -90.23 2.0 19780331 19850727 722328 99999 AMELIA / LAKE PALOURD US LA K7R3 29.7 -91.1 2.0 19780403 20161103 722329 12936 HARRY P WILLIAMS MEMO ARPT US LA KPTN 29.717 -91.333 2.7 20060101 20200625 722329 99999 HARRY P WILLIAMS MEM US LA KPTN 29.717 -91.333 3.0 19840910 20051231 722330 53865 SLIDELL AIRPORT US LA KASD 30.343000000000004 -89.822 8.2 20050101 20200625 722330 99999 SLIDELL/MUN. LA US LA KASD 30.333000000000002 -89.81700000000001 11.0 20010213 20180516 722331 54941 IOWA FALLS MUNICIPAL AIRPORT US IA KIFA 42.471000000000004 -93.20700000000001 346.6 20071016 20200625 722331 99999 IOWA FALLS MUNI US IA KIFA 42.467 -93.26700000000001 347.0 20080101 20180520 722332 54953 TOMAHAWK REGIONAL AIRPORT US WI KTKV 45.468999999999994 -89.806 452.9 20060101 20200625 722332 99999 TOMAHAWK RGNL US WI KTKV 45.468999999999994 -89.806 453.0 20041109 20051231 722333 03069 SAGUACHE MUNICIPAL AIRPORT US CO K04V 38.097 -106.169 2385.4 20060101 20200625 722333 99999 SAGUACHE MUNCICIPAL US CO K04V 38.1 -106.167 2385.0 20041005 20051231 722334 03976 BEAUREGARD REGIONAL AIRPORT US LA KDRI 30.833000000000002 -93.333 62.2 20060101 20200625 722334 99999 DE RIDDER US LA KDRI 30.833000000000002 -93.333 62.0 20041228 20051231 722335 99999 WEST CAMERON US LA 28.33 -93.02 24.0 19761102 19830609 722336 99999 BOOTHVILLE US LA KBVE 29.33 -89.4 1.0 19770312 20191202 722337 99999 EAST ADDITION B323 US TX 28.22 -93.75 26.0 19800612 19931012 722338 12994 JIM HOGG COUNTY AIRPORT US TX KHBV 27.349 -98.73700000000001 202.1 20060101 20200625 722338 99999 JIM HOGG CO US TX KHBV 27.35 -98.73299999999999 202.0 20040824 20051231 722339 99999 PHI OIL PLATFORM US LA K4C0 29.783 -93.18299999999999 1.0 20041005 20110829 722340 13865 KEY FIELD AIRPORT US MS KMEI 32.335 -88.744 89.6 19420301 20200625 722341 92822 ORMOND BEACH MUNICIPAL AIRPORT US FL KOMN 29.296 -81.113 8.8 20060101 20200625 722341 99999 ORMOND BEACH MUNI US FL KOMN 29.3 -81.117 9.0 20041005 20051231 722342 54931 TRACY MUNICIPAL AIRPORT US MN KTKC 44.248999999999995 -95.60700000000001 408.4 20060101 20200626 722342 99999 TRACY MUNI US MN KTKC 44.25 -95.6 408.0 20041109 20051231 722343 54826 SOUTH HAVEN AREA REGIONAL AIRPORT US MI KLWA 42.351000000000006 -86.256 203.0 20060101 20200625 722343 99999 SOUTH HAVEN AREA RGN US MI KLWA 42.351000000000006 -86.256 203.0 20041124 20051231 722344 99999 LOUISVILLE WINSTON CO US MS KLMS 33.146 -89.06200000000001 175.3 19810220 19821217 722345 03866 MERIDIAN NAS/MC CAIN FD AP US MS KNMM 32.55 -88.56700000000001 82.6 19730101 20200626 722346 54824 OWOSSO COMMUNITY AIRPORT US MI KRNP 42.993 -84.139 224.3 20050101 20200625 722346 99999 OWOSSO COMMUNITY US MI KRNP 42.983000000000004 -84.133 224.0 19430324 20041231 722347 13833 HAGLER AAF US MS KHBG 31.281999999999996 -89.25299999999999 46.0 20050101 20100731 722347 99999 HATTIESBURG MUNI US MS 31.267 -89.25 46.0 19420820 20041231 722348 53808 HATTIESBURG-LAUREL RGNL AP US MS KPIB 31.467 -89.333 89.3 20060101 20200626 722348 99999 HATTIESBURG LAUREL US MS KPIB 31.467 -89.333 91.0 19781220 20051231 722349 99999 PICAYUNE MUNI US MS KMJD 30.487 -89.65100000000001 17.1 20200624 20200624 722350 03940 JACKSON INTERNATIONAL AIRPORT US MS KJAN 32.321 -90.07799999999999 100.6 19420901 20200625 722351 12953 WHARTON REGIONAL AIRPORT US TX KARM 29.266 -96.008 30.5 20060101 20200626 722351 99999 WHARTON RGNL US TX KARM 29.254 -96.154 31.0 20041130 20051231 722354 13927 HAWKINS FIELD AIRPORT US MS KHKS 32.336999999999996 -90.221 104.2 20050101 20200625 722354 99999 HAWKINS FLD US MS KHKS 32.333 -90.21700000000001 104.0 20010705 20041231 722355 93999 VICKSBURG MUNICIPAL AIRPORT US MS KVKS 32.233000000000004 -90.93299999999999 31.4 20130319 20200626 722356 13939 MID DELTA RGNL US MS KGLH 33.483000000000004 -90.985 39.3 19420120 20100731 722356 99999 GREENVILLE MUNI US MS 33.483000000000004 -90.98299999999999 40.0 20000101 20031231 722357 03961 HRDY-ANRES FD NTCHZ-ADAMS COUNTY AIRPORT US MS KHEZ 31.616999999999997 -91.28299999999999 82.9 20060101 20200625 722357 99999 NATCHEZ/HARDY(AWOS) US MS KHEZ 31.616999999999997 -91.3 83.0 19730102 20051231 722358 93919 MCOM/PIKE CO/J E LWS FD AP US MS KMCB 31.183000000000003 -90.471 125.9 19730101 20200625 722359 13978 GREENWOOD LEFLORE US MS KGWO 33.496 -90.087 40.5 19430205 20100731 722361 92808 NEW SMYRNA BEACH MUNICIPAL AIRPORT US FL KEVB 29.054000000000002 -80.94800000000001 3.1 20060101 20200625 722361 99999 NEW SMYRNA BEACH MUN US FL KEVB 29.055999999999997 -80.94800000000001 3.0 20041130 20051231 722362 93937 SULPHUR SPRINGS MUNICIPAL AIRPORT US TX KSLR 33.167 -95.617 149.1 20060101 20200626 722362 99999 SULPHER SPRINGS MUNI US TX KSLR 33.167 -95.617 149.0 20050104 20051231 722363 23098 EDWARDS COUNTY AIRPORT US TX KECU 29.947 -100.17299999999999 723.0 20060101 20200625 722363 99999 EDWARDS CO US TX KECU 29.947 -100.17399999999999 723.0 20050104 20051231 722364 23903 TUNICA MUNICIPAL AIRPORT US MS KUTA 34.681 -90.34700000000001 59.1 20050104 20200626 722365 99999 MAIN PASS B68 US LA 29.67 -88.88 1.0 19761102 19830609 722366 53865 SLIDELL LA WSO/WSR US LA KASD 30.343000000000004 -89.822 8.2 20080101 20091231 722366 99999 SLIDELL WSFO US LA 30.34 -89.83 37.3 19990114 20041231 722367 00363 SKYHAVEN AIRPORT US MO KRCM 38.783 -93.8 243.2 20071016 20200625 722367 99999 WARRENSBURG US MO KRCM 38.783 -93.8 243.0 20080101 20180516 722368 00364 THOMAS P STAFFORD AIRPORT US OK KOJA 35.55 -98.667 489.2 20071114 20200625 722368 99999 THOMAS P STAFFORD US OK KOJA 35.55 -98.667 489.2 20080318 20180516 722369 00365 T P MC CAMPBELL AIRPORT US TX KTFP 27.916999999999998 -97.2 5.2 20071016 20200625 722369 99999 INGLESIDE US TX KTFP 27.916999999999998 -97.2 5.0 20080101 20180515 722375 99999 VERMILION B131 US LA 29.07 -92.18 1.0 19761206 19830609 722383 99999 WEST CAMERON B56 US LA 37C 0.0 0.0 -999.0 19890227 19940912 722384 99999 HIGH ISLAND A572C US LA 27.95 -93.98 30.0 19890228 19930422 722385 99999 VERMILION B215 US LA 28.7 -92.32 1.0 19761102 19800930 722386 99999 SHIP SHOAL B113 US LA 0.0 0.0 -999.0 19880105 19910114 722387 99999 SOUTH MARSH B161 US LA 0.0 0.0 -999.0 19880303 19880502 722388 99999 GREEN CANYON B18 US LA 0.0 0.0 -999.0 19880421 19910125 722390 03931 POLK ARMY AIRFIELD US LA KPOE 31.05 -93.18299999999999 100.6 19620903 20200625 722390 99999 FORT POLK (ARMY) US LA KPOE 31.033 -93.03299999999999 110.0 20000101 20041231 722393 99999 HIGH ISLAND A489B US LA 28.2 -94.2 0.0 19880105 19930330 722394 99999 SHIP SHOAL B224A US LA 28.5 -91.3 32.0 19870713 20050217 722395 99999 GRAND ISLE B95 US LA 28.5 -90.12 1.0 19761102 19830609 722396 99999 EUGENE ISLAND US LA 28.25 -91.833 1.0 19770827 19830609 722397 99999 SHIP SHOAL PLATFORM US LA 28.68 -91.22 18.0 19780401 19851230 722398 99999 SOUTH MARSH ISLAND US LA 28.3 -91.98 1.0 19840607 20030304 722399 99999 ZAPATA-YORKTOWNTLAT US 27.416999999999998 -94.417 17.0 19850201 20110816 722400 03937 LAKE CHARLES REGIONAL AIRPORT US LA KLCH 30.125 -93.228 2.7 19420502 20200625 722403 12968 SALT POINT US LA KP92 29.561999999999998 -91.52600000000001 1.2 20060413 20200625 722403 99999 SALT POINT US LA KP92 29.56 -91.53299999999999 0.0 19850208 20050923 722404 13941 CHENNAULT INTERNATIONAL AP US LA KCWF 30.21 -93.14299999999999 5.2 19880105 20200626 722404 99999 CHENAULT AIRPARK US LA KCWF 30.217 -93.15 5.0 20000101 20031231 722405 13976 LAFAYETTE REGIONAL AIRPORT US LA KLFT 30.205 -91.988 11.6 19451001 20200625 722406 12927 HOUMA-TERREBONNE AIRPORT US LA KHUM 29.566 -90.66 2.7 20050101 20200625 722406 99999 HOUMA-TERREBONNE US LA KHUM 29.566999999999997 -90.66 3.0 19551027 20041231 722407 99999 CALCASIEU COAST GUARD STATION US LA 29.78 -93.35 1.0 19750916 19820912 722408 99999 INTRACOASTAL CITY US LA K7R4 29.767 -92.117 5.0 19760101 20150407 722409 99999 TENNECO PLATFORM US LA 28.0 -93.0 15.0 19760901 19871012 722410 12917 SOUTHEAST TEXAS REGIONAL AIRPORT US TX KBPT 29.951 -94.021 4.9 19730101 20200625 722413 99999 FREEPORT SUPPLEMENTARY AVIATION US KFOQ 29.0 -95.32 2.0 19870117 19890610 722414 99999 SABINE PASS US TX 29.7 -93.95 5.0 19810904 19840113 722415 99999 SABINE PASS COAST GUARD STATION US TX 29.73 -93.87 1.0 19750916 19860720 722416 12971 NEW BRAUNFELS MUNICIPAL AP US TX KBAZ 29.709 -98.046 196.6 19990317 20200625 722417 99999 WILMETTE (CGS) US IL 42.067 -87.68299999999999 183.0 19870501 19910207 722418 99999 CALUMET (CGS) US IL 63G 41.717 -87.53299999999999 180.0 19870501 19900810 722420 12923 SCHOLES INTL AT GLSTON APT US TX KGLS 29.273000000000003 -94.859 1.5 19930101 20200625 722420 99999 GALVESTON US TX KGLS 29.3 -94.8 16.0 19730101 20031231 722422 12923 SCHOLES INTL AT GLSTON APT US TX KGLS 29.273000000000003 -94.859 2.7 19730101 19900109 722423 12923 GALVESTON SCHOLES FIELD US TX KGLS 29.273000000000003 -94.859 2.7 19431101 19631001 722423 99999 GALVESTON US TX 29.267 -94.867 2.0 19900111 19910204 722425 99999 GALVESTON COAST GUARD STATION US TX 29.33 -94.77 1.0 19770712 19790704 722426 99999 FREEPORT (SAWRS) US TX 28.983 -95.31700000000001 2.0 19880105 19900701 722427 12975 CLOVER FIELD AIRPORT US TX KLVJ 29.519000000000002 -95.242 13.4 20060101 20200625 722427 99999 PEARLAND RGNL US TX KLVJ 29.517 -95.25 13.0 20010706 20051231 722429 53910 HOOKS MEMORIAL AIRPT US TX KDWH 30.068 -95.556 46.3 20060101 20200625 722429 99999 HOUSTON/D.W. HOOKS US TX KDWH 30.066999999999997 -95.55 46.0 19860916 20051231 722430 12960 G BUSH INTERCONTINENTAL AP/HOUSTON AP US TX KIAH 29.98 -95.36 29.0 19730101 20200625 722433 99999 WEST HOUSTON US TX KIWS 29.818 -95.67299999999999 33.8 19850130 19851129 722435 12918 WILLIAM P HOBBY US TX KHOU 29.638 -95.28200000000001 14.3 19730101 20100731 722435 99999 WILLIAM P HOBBY US TX 29.633000000000003 -95.26700000000001 14.0 19460728 19700101 722436 12906 ELLINGTON FIELD AIRPORT US TX KEFD 29.616999999999997 -95.167 9.8 19410701 20200625 722436 99999 HOUSTON/ELLINGTON US TX KEFD 29.6 -95.167 10.0 20000101 20041231 722437 99999 FREEPORT COAST GUARD STATION US TX 28.95 -95.3 2.0 19750916 19860616 722439 99999 SOUTH BRAZOS A70 US TX 28.02 -95.87 23.0 19840101 19920805 722440 12918 WILLIAM P. HOBBY AIRPORT US TX KHOU 29.638 -95.28200000000001 13.4 20050101 20200625 722444 53902 MONTGOMERY COUNTY AIRPORT US TX KCXO 30.357 -95.414 74.7 20060101 20200626 722444 99999 MONTGOMERY CO US TX KCXO 30.35 -95.417 75.0 19990114 20051231 722445 03904 EASTERWOOD FLD US TX KCLL 30.589000000000002 -96.365 100.0 19730101 20100801 722446 93987 ANGELINA COUNTY AIRPORT US TX KLFK 31.236 -94.75399999999999 87.8 19730101 20200625 722447 03901 LONGVIEW US TX KGGG 32.385 -94.712 113.7 19730101 19910131 722447 53903 HUNTSVILLE MUNICIPAL ARPT US TX KUTS 30.744 -95.586 111.6 20060101 20200626 722447 99999 HUNTSVILLE US TX KUTS 30.733 -95.583 111.0 19990114 20051231 722448 13972 TYLER POUNDS REGIONAL ARPT US TX KTYR 32.354 -95.40299999999999 165.8 19730101 20200625 722448 99999 TYLER POUNDS RGNL US TX KTYR 32.35 -95.4 166.0 19460726 19991231 722453 99999 SABINE PASS US TX 29.7 -93.95 3.0 19860916 20101209 722469 53912 CAMPBELL FLD-CORSICANA MU US TX KCRS 32.031 -96.399 136.6 20060101 20200625 722469 99999 C DAVID CAMPBELL FLD US TX KCRS 32.033 -96.4 137.0 19990114 20051231 722470 03901 EAST TEXAS REGIONAL ARPT US TX KGGG 32.385 -94.712 111.3 19910204 20200625 722470 99999 LONGVIEW US TX KGGG 32.35 -94.65 124.0 19771017 19771017 722479 53907 ARLINGTON MUNICIPAL AIRPORT US TX KGKY 32.664 -97.094 192.0 20060101 20200625 722479 99999 ARLINGTON MUNI US TX KGKY 32.667 -97.1 191.0 19990317 20051231 722480 13957 SHREVEPORT REGIONAL AIRPORT US LA KSHV 32.446999999999996 -93.824 77.4 19730101 20200625 722484 53905 SHREVEPORT DOWNTOWN ARPT US LA KDTN 32.543 -93.745 54.6 20000101 20200625 722484 99999 SHREVEPORT DOWNTOWN US LA KDTN 32.54 -93.745 55.0 19810904 19991231 722485 13944 BARKSDALE AIR FORCE BASE US LA KBAD 32.5 -93.667 50.6 19370301 20200625 722485 99999 BARKSDALE AFB US LA KBAD 32.5 -93.65 51.0 20000102 20041231 722486 13942 MONROE REGIONAL AIRPORT US LA KMLU 32.516 -92.041 24.1 19421001 20200625 722487 13935 ESLER REGIONAL AIRPORT US LA KESF 31.395 -92.291 36.0 19410701 20200625 722488 03996 VICKSBURG/TALLULAH RGNL AP US LA KTVR 32.35 -91.02799999999999 26.2 20050101 20200626 722488 99999 VICKSBURG\TALLULAH US LA KTVR 32.35 -91.03299999999999 26.0 19970718 20041231 722489 53911 TERRELL MUNICIPAL AIRPORT US TX KTRL 32.71 -96.26700000000001 144.8 20060101 20200625 722489 99999 TERRELL MUNI US TX KTRL 32.717 -96.26700000000001 144.0 19990114 20051231 722499 53948 A L MANGHAM JR RGNL ARPT US TX KOCH 31.578000000000003 -94.709 108.2 20060101 20200626 722499 99999 A L MANGHAM JR RGNL US TX KOCH 31.578000000000003 -94.71 108.0 19920226 20051231 722500 12919 BROWNSVILLE/S PADRE ISLAND INTL AP US TX KBRO 25.914 -97.42299999999999 7.3 19470101 20200625 722503 99999 VERMILLION US TX 28.583000000000002 -92.46700000000001 38.0 19870403 19910203 722505 12904 VALLEY INTERNATIONAL ARPT US TX KHRL 26.228 -97.654 10.4 19420301 20200625 722505 99999 VALLEY INTL US TX KHRL 26.217 -97.65 11.0 20000101 20031231 722506 12959 MC ALLEN MILLER INTL ARPT US TX KMFE 26.184 -98.25399999999999 30.5 19730101 20200625 722507 99999 CHARLES R JOHNSON US TX 26.563000000000002 -97.43799999999999 3.0 19770803 19770803 722508 12957 PORT ISABEL-CAMERON CO APT US TX KPIL 26.166 -97.346 5.8 20050101 20200625 722508 99999 PORT ISABEL CAMERON US TX KPIL 26.166999999999998 -97.35 6.0 19751003 20041231 722510 12924 CORPUS CHRISTI INTERNATIONAL AIRPORT US TX KCRP 27.774 -97.512 13.4 19460801 20200625 722515 12926 CORPUS CHRISTI NAS US TX KNGP 27.683000000000003 -97.28299999999999 5.5 19730101 20200625 722516 12928 KINGSVILLE NAS US TX KNQI 27.5 -97.81700000000001 15.2 19730101 20200625 722517 12932 ALICE INTERNATIONAL ARPT US TX KALI 27.741 -98.025 52.7 19460801 20200625 722517 99999 ALICE INTL US TX KALI 27.733 -98.01700000000001 54.0 20000101 20031231 722518 12974 NAVAL AUXILIARY LANDING FD US TX KNOG 27.9 -98.05 78.3 20110301 20200625 722518 99999 ORANGE GROVE NALF US TX KNOG 27.9 -98.05 78.0 19730608 20050224 722519 99999 PORT ARANSAS COAST GUARD STATION US TX 27.83 -97.07 1.0 19750916 19860624 722520 12907 LAREDO INTERNATIONAL AIRPORT US TX KLRD 27.533 -99.46700000000001 150.6 20081124 20200625 722520 12920 LAREDO INTL AIRPORT US TX KLRD 27.55 -99.46700000000001 155.0 19650301 19991231 722520 99999 LAREDO INTL AIRPORT US TX KLRD 27.55 -99.46700000000001 155.0 19430101 20081123 722521 99999 LAREDO INTL US TX 27.616999999999997 -99.51700000000001 164.0 19760824 19790727 722523 12970 STINSON MINICIPAL AIRPORT US TX KSSF 29.339000000000002 -98.47200000000001 174.0 19990101 20200625 722523 99999 STINSON MUNI US TX KSSF 29.333000000000002 -98.46700000000001 176.0 19880105 19981231 722524 12972 ARANSAS COUNTY AIRPORT US TX KRKP 28.084 -97.046 6.7 20060101 20200626 722524 99999 ARANSAS CO US TX KRKP 28.083000000000002 -97.05 7.0 19840101 20051231 722525 12920 LAREDO AIR FORCE BASE US TX KLRD 27.544 -99.461 154.8 19460806 19650315 722525 99999 LAREDO INTL ARPT US TX 27.616999999999997 -99.51700000000001 164.0 19730101 19750828 722526 12947 COTULLA-LA SALLE CO ARPT US TX KCOT 28.456999999999997 -99.21799999999999 145.1 19730101 20200625 722527 12976 BRAZORIA COUNTY AIRPORT US TX KLBX 29.11 -95.462 7.6 20060101 20200625 722527 99999 BRAZORIA CO US TX KLBX 29.116999999999997 -95.46700000000001 8.0 19890714 20051231 722530 12921 SAN ANTONIO INTERNATIONAL AIRPORT US TX KSAT 29.544 -98.484 240.5 19460814 20200625 722533 12962 HONDO MUNICIPAL AIRPORT US TX KHDO 29.36 -99.17399999999999 280.4 19420915 20200625 722535 12909 LACKLAND AIR FORCE BASE (KELLY FIELD ANNEX) US TX KSKF 29.383000000000003 -98.583 210.3 19370707 20200625 722535 99999 LACKLAND AFB KELLY US TX KSKF 29.383000000000003 -98.583 211.0 19730101 20041231 722536 12911 RANDOLPH AFB AIRPORT US TX KRND 29.533 -98.262 221.9 19380401 20200625 722536 99999 RANDOLPH AFB US TX KRND 29.517 -98.26700000000001 232.0 20000102 20041230 722537 12961 KRVL MUNI/LUIS SHRER FD AP US TX KERV 29.983 -99.083 492.9 20060101 20200625 722537 99999 KERRVILLE MUNI US TX KERV 29.976999999999997 -99.086 493.0 19730101 20051231 722539 12979 SAN MARCOS MUNICIPAL ARPT US TX KHYI 29.891 -97.86399999999999 182.0 20060101 20200625 722539 99999 SAN MARCOS MUNI US TX KHYI 29.9 -97.867 182.0 19980201 20051231 722540 13904 AUSTIN-BERGSTROM INTL AIRPORT US TX KAUS 30.183000000000003 -97.68 146.3 19990524 20200625 722540 13958 AUSTIN/MUELLER MUNI US TX KATT 30.320999999999998 -97.76 200.6 19730101 19990523 722541 53914 MC KINNEY MUNICIPAL ARPT US TX KTKI 33.19 -96.59100000000001 178.6 20060101 20200625 722541 99999 COLLIN CO RGNL US TX KTKI 33.183 -96.583 178.0 19970123 20051231 722542 03999 BURNET MUNICIPAL CRADOCK FIELD AIRPORT US TX KBMQ 30.741 -98.235 392.6 20060101 20200625 722542 99999 BURNET MUNI KATE CR US TX KBMQ 30.733 -98.23299999999999 391.0 19970123 20051231 722543 12977 SUGAR LAND REGIONAL ARPT US TX KSGR 29.622 -95.65700000000001 25.6 20060101 20200626 722543 99999 SUGER LAND RGNL US TX KSGR 29.616999999999997 -95.65 25.0 19970123 20051231 722544 13958 AUSTIN-CAMP MABRY US TX KATT 30.320999999999998 -97.76 204.2 19990602 20200625 722545 13904 BERGSTROM AFB/AUSTI US TX KAUS 30.183000000000003 -97.68 150.9 19930104 19990523 722545 99999 BERGSTROM AFB/AUSTI US TX KBSM 30.2 -97.68299999999999 165.0 19421017 19921231 722546 12910 SAN MARCOS (AWOS) US TX KRJO 29.9 -97.867 182.0 19920408 19960627 722547 53942 GEORGETOWN MUNICIPAL ARPT US TX KGTU 30.679000000000002 -97.679 239.9 20060101 20200625 722547 99999 GEORGETOWN MUNI US TX KGTU 30.683000000000003 -97.68299999999999 241.0 19920409 20051231 722550 12912 VICTORIA REGIONAL AIRPORT US TX KVCT 28.861 -96.93 35.1 19411104 20200625 722552 93929 GAINESVILLE MUNICIPAL ARPT US TX KGLE 33.650999999999996 -97.197 255.7 20060101 20200625 722552 99999 GAINESVILLE MUNI US TX KGLE 33.650999999999996 -97.197 258.0 20020430 20051231 722553 53928 BRENHAM MUNI US TX K11R 30.219 -96.374 93.9 20060101 20130501 722553 99999 BRENHAM MUNI US TX 30.219 -96.374 93.9 20020423 20051231 722554 12978 FAYETTE RGNL AIR CTR US TX K3T5 29.908 -96.95 98.8 20060101 20130501 722554 99999 FAYETTE RGNL AIR CNTR US TX 29.908 -96.95 98.8 20020423 20051231 722555 12935 PALACIOS MUNICIPAL AIRPORT US TX KPSX 28.725 -96.25399999999999 3.7 19460801 20200626 722556 12925 CHASE NAVAL AIR STATION US TX KNIR 28.366999999999997 -97.667 20.1 19730101 19921001 722557 99999 PORT OCONNOR (CGS) US TX 8R9 28.433000000000003 -96.43299999999999 3.0 19750916 19860721 722560 13959 WACO REGIONAL AIRPORT US TX KACT 31.619 -97.228 152.4 19420514 20200625 722561 99999 TSTC WACO US TX KCNW 31.638 -97.074 143.3 20070605 20200624 722563 53952 MC GREGOR EXECUTIVE ARPT US TX KPWG 31.485 -97.316 180.4 20060101 20200625 722563 99999 MC GREGOR EXECUTIVE US TX KPWG 31.483 -97.31700000000001 180.0 19920408 20051231 722570 03933 HOOD AAF AIRPORT US TX KHLR 31.133000000000003 -97.71700000000001 281.6 19601101 20200625 722570 99999 FT HOOD AAF/KILLEEN US TX KHLR 31.1 -97.71700000000001 282.0 20000104 20041231 722572 03933 FORT HOOD US TX KHLR 31.133000000000003 -97.71700000000001 266.7 19730102 19771202 722575 03972 KILLEEN MUNICIPAL AIRPORT US TX KILE 31.083000000000002 -97.68299999999999 256.3 20060101 20200625 722575 99999 KILLEEN MUNI (AWOS) US TX KILE 31.083000000000002 -97.68299999999999 258.0 19460515 20051231 722576 03902 ROBERT GRAY AFF AIRPORT US TX KGRK 31.066999999999997 -97.833 309.4 19500926 20200625 722576 99999 ROBERT GRAY AAF US TX KGRK 31.066999999999997 -97.833 309.0 20000101 20041231 722577 93984 DRAUGHON-MILLER CNTRL TX RGNL ARPT US TX KTPL 31.15 -97.417 207.9 20060101 20200625 722577 99999 DRAUGHON MILLER CEN US TX KTPL 31.15 -97.4 208.0 19450102 20051231 722580 13960 DALLAS LOVE FIELD AIRPORT US TX KDAL 32.852 -96.85600000000001 134.1 19460726 20200625 722581 13960 DALLAS LOVE FIELD US TX KDAL 32.852 -96.85600000000001 148.7 19850531 19900208 722583 13960 DALLAS LOVE FLD US TX KDAL 32.852 -96.85600000000001 148.7 19900208 20100731 722585 93901 NAVAL AIR STATION OPERATIONS US TX KNBE 32.733000000000004 -96.96700000000001 150.0 19410805 19980103 722586 99999 DEL RIO(NEXRAD) US TX KDFX 29.267 -100.28299999999999 345.0 19420114 19710529 722587 93955 COX FIELD AIRPORT US TX KPRX 33.633 -95.45 166.7 20060101 20200625 722587 99999 COX FLD US TX KPRX 33.633 -95.45 167.0 19440518 20051231 722588 13926 MAJORS AIRPORT US TX KGVT 33.068000000000005 -96.065 163.1 20060101 20200625 722588 99999 MAJORS US TX KGVT 33.067 -96.06700000000001 163.0 19420911 20051231 722589 03991 DENTON MUNICIPAL AIRPORT US TX KDTO 33.205999999999996 -97.199 195.7 20060101 20200625 722589 99999 DENTON MUNI US TX KDTO 33.201 -97.198 196.0 19980208 20051231 722590 03927 DALLAS/FT WORTH INTERNATIONAL AP US TX KDFW 32.898 -97.01899999999999 170.7 19730101 20200625 722592 99999 ANCHORAGE(WFO) US AK 61.15 -149.983 40.0 20140924 20200624 722593 03985 FORT WORTH SPINKS AIRPORT US TX KFWS 32.565 -97.30799999999999 213.4 20060101 20200625 722593 99999 FORT WORTH SPINKS US TX KFWS 32.567 -97.3 213.0 20011216 20051231 722594 53909 FORT WORTH ALLIANCE ARPT US TX KAFW 32.973 -97.318 208.8 20060101 20200625 722594 99999 FORT WORTH ALLIANCE US TX KAFW 32.983000000000004 -97.31700000000001 220.0 19910108 20051231 722595 13911 FORT WORTH NAVAL AIR STATION JRB/CARSWELL FIELD US TX KNFW 32.766999999999996 -97.45 185.3 19421201 20200625 722596 13961 FORT WORTH MEACHAM US TX KFTW 32.819 -97.361 215.2 19460801 20100731 722597 93985 MINERAL WELLS AIRPORT US TX KMWL 32.782 -98.06 283.5 19480310 20200625 722598 03970 ADDISON AIRPORT US TX KADS 32.969 -96.836 196.3 20060101 20200625 722598 99999 ADDISON US TX KADS 32.967 -96.833 196.0 19740201 20051231 722599 03971 DALLAS EXECUTIVE AIRPORT US TX KRBD 32.681 -96.868 200.6 20060101 20200625 722599 99999 DALLAS EXECUTIVE US TX KRBD 32.683 -96.867 201.0 19840713 20051231 722600 03969 CLARK FIELD MUNI AIRPORT US TX KSEP 32.215 -98.178 402.6 19840101 20200625 722600 99999 STEPHENVILLE/CLARK US TX KSEP 32.217 -98.18299999999999 402.0 20030402 20031231 722610 22004 DEL RIO INTL US TX KDRT 29.366999999999997 -100.917 315.0 19460809 19510430 722610 22010 DEL RIO INTERNATIONAL AIRPORT US TX KDRT 29.378 -100.927 304.5 19510501 20200625 722615 22001 LAUGHLIN AFB AIRPORT US TX KDLF 29.366999999999997 -100.78299999999999 329.8 19430217 20200625 722615 99999 LAUGHLIN AFB US TX KDLF 29.366999999999997 -100.78299999999999 330.0 20000101 20041222 722616 03032 TERRELL COUNTY AIRPORT US TX K6R6 30.048000000000002 -102.213 707.8 20060101 20200625 722616 99999 TERRELL CO US TX K6R6 30.046 -102.213 708.0 20010705 20051231 722618 23091 FORT STOCKTON-PECOS CO APT US TX KFST 30.912 -102.917 917.5 20050101 20200625 722618 99999 FORT STOCKTON PECOS US TX KFST 30.916999999999998 -102.917 918.0 19980201 20180516 722620 23055 GUADALUPE PASS AMOS US TX KGDP 31.831 -104.809 1663.0 19770827 20200625 722626 93035 MARFA AP US TX KMRF 30.371 -104.01700000000001 1478.0 19730101 19770802 722626 99999 MARFA AP US TX KMRF 30.371 -104.01700000000001 1478.0 20020520 20020525 722630 23034 SAN ANGELO REGIONAL/MATHS FIELD AP US TX KSJT 31.351999999999997 -100.495 584.0 19480215 20200625 722635 13973 JUNCTION US TX KJCT 30.511 -99.766 533.1 19730101 19770802 722636 93042 DALHART MUNICIPAL US TX KDHT 36.016999999999996 -102.55 1217.4 19421101 20100731 722637 93046 HEMPHILL COUNTY AIRPORT US TX KHHF 35.9 -100.4 730.3 20060101 20200625 722637 99999 HEMPHILL CO US TX KHHF 35.9 -100.4 730.0 19810707 20051231 722640 93035 MARFA MUNICIPAL AIRPORT US TX KMRF 30.371 -104.01700000000001 1478.0 19361201 20200625 722640 99999 MARFA MUNICIPAL US TX KMRF 30.366999999999997 -104.01700000000001 1481.0 20000101 20031231 722648 03031 ODESSA-SCHLEMEYER FLD ARPT US TX KODO 31.921 -102.387 914.7 20060101 20200625 722648 99999 ODESSA SCHLEMEYER FL US TX KODO 31.916999999999998 -102.383 916.0 20010705 20051231 722650 23023 MIDLAND INTERNATIONAL AIRPORT US TX KMAF 31.948 -102.209 872.3 19480201 20200625 722654 23091 FT STOCKTON\PECOS US TX KFST 30.912 -102.917 917.4 20080101 20091231 722654 99999 FT STOCKTON\PECOS US TX KFST 30.916999999999998 -102.917 19970718 19970818 722655 23005 WEBB AFB US TX KBGS 32.217 -101.51700000000001 780.9 19420927 19770902 722656 23040 WINKLER COUNTY AIRPORT US TX KINK 31.78 -103.20200000000001 855.6 19460801 20200625 722657 23041 BIG SPRING US TX KHCA 32.233000000000004 -101.5 783.9 19470101 19741130 722658 99999 SANDERSON (RAMOS) US TX 30.166999999999998 -102.417 908.0 19750421 19770507 722660 13962 ABILENE REGIONAL AIRPORT US TX KABI 32.411 -99.682 545.6 19460801 20200625 722665 13910 ABILENE DYESS AFB US TX KDYS 32.433 -99.85 545.3 19730101 19881231 722666 93943 BROWNWOOD REGIONAL AIRPORT US TX KBWD 31.8 -98.95 419.7 20060101 20200625 722666 99999 BROWNWOOD MUNICIPAL US TX KBWD 31.8 -98.95 423.0 19440901 20051231 722670 23042 LUBBOCK INTERNATIONAL AIRPORT US TX KLBB 33.666 -101.823 991.8 19450810 20200625 722673 99999 SHERMAN-DENISON US TX 33.72 -96.67 228.0 19820920 20030515 722675 23021 REESE AFB/LUBBOCK US TX KREE 33.6 -102.05 1017.0 19420301 19970411 722676 03035 ARTESIA MUNICIPAL AIRPORT US NM KATS 32.853 -104.46799999999999 1079.3 20060101 20200625 722676 99999 ARTESIA MUNI US NM KATS 32.85 -104.46700000000001 1079.0 19730101 20051231 722677 03027 CLINES CORNERS US NM KCQC 35.003 -105.663 2159.8 20060101 20200625 722677 99999 CLINES CORNERS US NM KCQC 35.0 -105.667 2160.0 19990114 20051231 722678 23052 RATON MUNI/CREWS FIELD APT US NM KRTN 36.741 -104.50200000000001 1935.2 19980902 20200625 722678 99999 RATON MUNI CREWS FLD US NM KRTN 36.733000000000004 -104.5 1936.0 20001104 20031231 722680 23009 ROSWELL INTERNATIONAL AIR CENTER AP US NM KROW 33.308 -104.508 1112.2 19420713 20200625 722682 99999 SOUTH MARSH 268A US LA KSRN 29.12 -91.87 0.0 19730101 20100519 722683 93083 SIERRA BLANCA RGNL AIRPORT US NM KSRR 33.45 -105.51700000000001 2075.7 20060101 20200625 722683 99999 SIERRA BLANCA RGNL US NM KSRR 33.467 -105.53299999999999 2077.0 19880421 20051231 722684 99999 RUIDOSO US NM 33.35 -105.667 2106.0 19820101 19880703 722685 99999 CORONA / LINCOLN US NM K4CR 34.1 -105.667 1981.0 19730101 20120930 722686 23008 CANNON AFB AIRPORT US NM KCVS 34.383 -103.31700000000001 1309.1 19430125 20200625 722686 99999 CANNON AFB US NM KCVS 34.383 -103.31700000000001 1309.0 20000101 20041231 722687 93033 CAVERN CITY AIR TRML ARPT US NM KCNM 32.334 -104.258 985.1 19420910 20200625 722688 93034 LEA COUNTY REGIONAL AIRPORT US NM KHOB 32.693000000000005 -103.213 1114.0 19421101 20200625 722688 99999 LEA CO RGNL US NM KHOB 32.683 -103.21700000000001 1116.0 20000101 20041231 722689 23077 CLOVIS MUNICIPAL AIRPORT US NM KCVN 34.433 -103.083 1285.0 20060101 20200625 722689 99999 CLOVIS MUNI US NM KCVN 34.433 -103.083 1285.0 19800908 20051231 722690 99999 WHITE SANDS NM. US NM 32.383 -106.48299999999999 1244.0 19800101 19980731 722691 00366 CLAXTON EVANS COUNTY AIRPORT US GA KCWV 32.2 -81.87 34.1 20090101 20200625 722691 99999 CLAXTON EVANS CO US GA KCWV 32.195 -81.87 34.1 20080107 20180515 722692 00367 WARRENTON FAUQUIER AIRPORT US VA KHWY 38.586 -77.711 103.0 20090101 20200625 722692 99999 WARRENTON US VA KHWY 38.583 -77.717 102.7 20080115 20180515 722693 93097 ALAMOGORDO-WHITE SANDS RGL AIRPORT US NM KALM 32.84 -105.991 1280.2 20060101 20200625 722693 99999 ALAMOGORDO WHITE SA US NM KALM 32.833 -105.98299999999999 1280.0 19870117 20051231 722695 93041 LAS CRUCES INTL AIRPORT US NM KLRU 32.283 -106.917 1357.6 20060101 20200625 722695 99999 LAS CRUCES INTL US NM KLRU 32.283 -106.917 1358.0 19470818 20051231 722696 99999 HOLLOMAN AFB US NM 32.85 -106.1 1248.0 19420902 19811110 722697 99999 NORTHROP STRIP/ALAM US NM 32.95 -106.417 1324.0 19810114 19811114 722700 23044 EL PASO INTERNATIONAL AIRPORT US TX KELP 31.811 -106.376 1194.2 19410401 20200625 722704 99999 BIGGS AAF / FT BLISS TEXAS USA US TX KBIF 31.85 -106.38 1203.4 20100614 20200624 722707 23055 GUADALUPE PASS US TX KGDP 31.831 -104.809 1663.0 19730101 19770802 722710 93045 TRH OR CONSEQCES MUNI ARPT US NM KTCS 33.236999999999995 -107.26799999999999 1478.3 19780301 20200625 722710 99999 TRUTH OR CONSEQUENC US NM KTCS 33.233000000000004 -107.26700000000001 1481.0 20000101 20031231 722720 93026 BISBEE DOUGLAS INTL ARPT US AZ KDUG 31.458000000000002 -109.60600000000001 1251.2 20100801 20200624 722720 93063 BISBEE DOUGLAS INTL US AZ KSVC 32.633 -108.167 1659.9 19730101 20100801 722720 99999 BISBEE DOUGLAS INTL US AZ KDUG 31.467 -109.6 1251.0 20000101 20031231 722721 93063 GRANT COUNTY AIRPORT US NM KSVC 32.633 -108.167 1637.7 20050101 20200625 722725 23078 DEMING MUNICIPAL AIRPORT US NM KDMN 32.262 -107.721 1310.9 20060101 20200625 722725 99999 DEMING MUNI US NM KDMN 32.25 -107.71700000000001 1315.0 19421029 20051231 722726 93045 NOGALES (AMOS) US AZ KTCS 33.236999999999995 -107.26799999999999 1480.7 19730101 19780228 722726 99999 NOGALES AUTOMATIC METEOROLOGICAL US AZ 31.42 -110.85 1198.0 19881208 19990728 722728 03196 NOGALES INTERNATIONAL ARPT US AZ KOLS 31.421 -110.846 1198.5 20060101 20200625 722728 99999 NOGALES INTL US AZ KOLS 31.416999999999998 -110.85 1205.0 20010705 20051231 722730 03124 SIERRA VISTA MUNICIPAL-LIBBY AAF AIRPORT US AZ KFHU 31.588 -110.344 1438.4 19541011 20200625 722730 99999 FORT HUACHUCA US AZ KFHU 31.583000000000002 -110.333 1428.0 20000103 20041231 722733 99999 LUKEVILLE US AZ 31.88 -112.82 511.0 19850208 19880826 722735 93026 BISBEE DOUGLAS INTL US AZ KDUG 31.458000000000002 -109.60600000000001 1250.0 19421116 20100801 722740 23160 TUCSON INTERNATIONAL AIRPORT US AZ KTUS 32.131 -110.955 776.9 19730101 20200625 722743 99999 TUCSON NEXRAD US AZ EMX 31.883000000000003 -110.617 1586.0 19991115 20021202 722745 23109 DAVIS-MONTHAN AFB AIRPORT US AZ KDMA 32.167 -110.883 824.2 19410717 20200625 722745 99999 DAVIS MONTHAN AFB US AZ KDMA 32.167 -110.883 824.0 20000101 20041231 722746 99999 SAFFORD MUNICIPAL US AZ 32.85 -109.633 968.0 19730101 19730601 722747 93084 SAFFORD REGIONAL AIRPORT US AZ KSAD 32.855 -109.635 968.0 20060101 20200625 722747 99999 SAFFORD RGNL US AZ KSAD 32.85 -109.633 968.0 19780911 20051231 722748 03914 CASA GRANDE MUNICIPAL ARPT US AZ KCGZ 32.95 -111.76700000000001 445.6 20060101 20200625 722748 99999 CASA GRANDE MUNI US AZ KCGZ 32.95 -111.76700000000001 446.0 19920412 20051231 722749 53128 CHANDLER MUNICIPAL AIRPORT US AZ KCHD 33.269 -111.81299999999999 378.9 20060101 20200625 722749 99999 CHANDLER MUNI US AZ KCHD 33.266999999999996 -111.81700000000001 379.0 19990114 20051231 722764 03029 WINDOW ROCK AIRPORT US AZ KRQE 35.658 -109.061 2054.1 20060101 20200625 722764 99999 WINDOW ROCK US AZ KRQE 35.65 -109.06700000000001 2055.0 19990323 20051231 722780 23183 PHOENIX SKY HARBOR INTL AIRPORT US AZ KPHX 33.428000000000004 -112.00399999999999 337.4 19730101 20200625 722781 99999 HENRY CO US TN KPHT 36.338 -88.383 176.8 20140530 20200624 722783 03185 FALCON FIELD AIRPORT US AZ KFFZ 33.467 -111.73299999999999 420.6 20060101 20200625 722783 99999 MESA/FALCON FIELD US AZ KFFZ 33.467 -111.73299999999999 424.0 19880105 20051231 722784 03184 PHOENIX DEER VALLEY ARPT US AZ KDVT 33.688 -112.08200000000001 443.5 20060101 20200625 722784 99999 PHOENIX DEER VALLEY US AZ KDVT 33.688 -112.083 450.0 19870629 20051231 722785 23111 LUKE AFB AIRPORT US AZ KLUF 33.55 -112.367 330.7 19411201 20200625 722785 99999 LUKE AFB US AZ KLUF 33.533 -112.383 331.0 20000103 20041229 722786 23104 WILLIAMS GATEWAY AIRPORT US AZ KIWA 33.3 -111.667 421.2 19420301 20200625 722786 99999 WILLIAMS GATEWAY US AZ KIWA 33.3 -111.65 421.0 20000101 20031231 722787 53126 GLENDALE MUNICIPAL AIRPORT US AZ KGEU 33.527 -112.295 324.9 20060101 20200625 722787 99999 GLENDALE MUNI US AZ KGEU 33.527 -112.295 325.0 19990114 20051231 722788 03186 PHOENIX GOODYEAR AIRPORT US AZ KGYR 33.417 -112.383 295.1 20060101 20200625 722788 99999 PHOENIX GOODYEAR US AZ KGYR 33.417 -112.383 295.0 19870603 20051231 722789 03192 SCOTTSDALE AIRPORT US AZ KSDL 33.623000000000005 -111.911 449.0 20060101 20200625 722789 99999 SCOTTSDALE US AZ KSDL 33.623000000000005 -111.911 460.0 19870629 20051231 722800 23195 YUMA MARINE CORPS AIR STATION/YUMA INTL AIRPORT US AZ KYUM 32.667 -114.6 62.8 19420116 20070105 722800 99999 YUMA INTL AIRPORT US AZ KYUM 32.65 -114.6 63.0 20000103 20041231 722801 99999 YUMA MCAS YUMA INTL US AZ 32.65 -114.6 65.0 20040713 20041231 722805 03145 YUMA MCAS US AZ KNYL 32.65 -114.617 64.9 19770127 19870630 722806 99999 AJO MUNI US AZ KP01 32.45 -112.867 444.4 19420115 19460120 722810 23199 NAF US CA KNJK 32.817 -115.68299999999999 -12.8 19840413 20200625 722813 53146 PIONEER AIRFIELD US AZ KALK 31.607 -110.428 1453.3 20080807 20200625 722817 03068 ELLICOTT-B AFA US CO KABH 38.766999999999996 -104.3 1837.9 20060501 20200625 722819 53989 MULTI PURPOSE RANGE US KS KAMM 39.294000000000004 -96.926 385.3 20060601 20170110 722820 03949 PEASON RIDGE US LA KAQV 31.4 -93.28299999999999 111.3 20060101 20200626 722820 99999 PEASON RIDGE FT POLK US LA KAQV 31.37 -93.16 111.0 20050302 20051231 722821 53988 FULLERTON LANDING STRIP US LA KBKB 31.022 -92.911 94.5 20060101 20200625 722821 99999 FULLERTON LANDING ST US LA KBKB 31.022 -92.11 94.0 20050303 20051231 722822 63903 DIRT STRIP EAST OF FORT POLK US LA KDNK 31.114 -92.96600000000001 114.0 20050303 20130503 722823 03749 CAMP DAVID US MD KRSP 39.645 -77.468 561.4 20060501 20200625 722823 99999 CAMP DAVID US MD KRSP 39.65 -77.467 561.4 20040921 20041124 722825 53145 TONOPAH TEST RANGE #74 US NV KBJN 37.617 -116.264 1755.7 20060101 20150201 722825 99999 TONOPAH RANGE #74 N US NV KBJN 37.617 -116.26700000000001 1756.0 20040921 20051231 722826 93762 SITE R US PA KRYT 39.733000000000004 -77.433 274.9 20060501 20171114 722826 99999 SITE R US PA KRYT 39.733000000000004 -77.433 274.9 20041027 20041124 722857 00368 WALHALLA MUNICIPAL AIRPORT US ND K96D 48.941 -97.90299999999999 290.2 20101118 20200625 722857 99999 WALHALLA MUNI US ND K96D 48.941 -97.90299999999999 290.5 20180514 20180515 722859 99999 DANA POINT US CA 33.45 -117.68 15.0 19840607 19960630 722860 23119 MARCH AIR RESERVE BASE US CA KRIV 33.9 -117.25 468.2 19330101 20200625 722860 99999 RIVERSIDE/MARCH AFB US CA KRIV 33.9 -117.25 468.0 20000101 20041231 722864 99999 BIG BEAR CITY ARPT US CA 34.266999999999996 -116.85 2057.0 19801202 19840614 722865 93180 ONTARIO US CA KONT 34.067 -117.65 303.9 19421215 19991231 722865 99999 ONTARIO US CA KONT 34.067 -117.65 303.9 20000101 20010516 722866 23122 SAN BERNARDINO INTERNATIONAL AIRPORT US CA KSBD 34.095 -117.235 353.3 19430106 19931030 722866 99999 SAN BERNARDINO INTL US CA KSBD 34.095 -117.235 353.3 20090112 20200624 722867 23156 BEAUMONT US CA KBUO 33.933 -116.96700000000001 692.0 19730101 19991231 722867 99999 BEAUMONT US CA KBUO 33.933 -116.96700000000001 692.0 20000101 20010901 722868 93138 PALM SPRINGS INTL AIRPORT US CA KPSP 33.821999999999996 -116.50399999999999 124.7 20060101 20200625 722868 99999 PALM SPRINGS INTL US CA KPSP 33.833 -116.5 145.0 19430510 20051231 722869 03171 RIVERSIDE MUNICIPAL ARPT US CA KRAL 33.952 -117.439 245.2 20060101 20200625 722869 99999 RIVERSIDE MUNI US CA KRAL 33.95 -117.43299999999999 249.0 19770116 20051231 722874 93134 DOWNTOWN L.A./USC CAMPUS US CA KCQT 34.024 -118.291 54.6 20000101 20200625 722880 23152 BURBANK-GLENDALE-PASA ARPT US CA KBUR 34.201 -118.35799999999999 236.2 19430601 20200625 722880 99999 BURBANK/GLENDALE US CA KBUR 34.2 -118.35 236.0 20000101 20031231 722883 99999 HERMOSA BEACH PIER US CA 33.87 -118.4 8.0 19770827 19960630 722884 99999 SANTA MONICA PIER US CA 34.0 -118.5 2.0 19770827 19960630 722885 93197 SANTA MONICA MUNI AIRPORT US CA KSMO 34.016 -118.45100000000001 53.0 20060101 20200625 722885 99999 SANTA MONICA MUNI US CA KSMO 34.016999999999996 -118.45 53.0 19730101 20051231 722886 23130 VAN NUYS AIRPORT US CA KVNY 34.21 -118.48899999999999 234.7 19421211 20200625 722886 99999 VAN NUYS US CA KVNY 34.21 -118.49 244.0 20000101 20031231 722887 03180 BRACKETT FIELD AIRPORT US CA KPOC 34.1 -117.78299999999999 308.2 20060101 20200625 722887 99999 BRACKETT FLD US CA KPOC 34.083 -117.78299999999999 308.0 19780306 20051231 722888 99999 NORTH CENTRAL LOWER US MI 44.9 -84.71700000000001 446.0 19770108 19960714 722889 99999 APPLE VALLEY US CA KAPV 34.575 -117.186 933.3 19730622 19730622 722890 93136 MOUNT WILSON US CA KMWS 34.233000000000004 -118.06700000000001 1739.2 19500101 20150513 722890 99999 MOUNT WILSON US CA KMWS 34.233000000000004 -118.06700000000001 1739.0 20000103 20030601 722895 23243 LOMPOC AIRPORT US CA KLPC 34.667 -120.46700000000001 26.8 20060101 20200625 722895 99999 LOMPOC US CA KLPC 34.667 -120.46700000000001 27.0 19920409 20051231 722897 93206 SAN LUIS CO REGIONAL ARPT US CA KSBP 35.236999999999995 -120.641 61.0 20060101 20200625 722897 99999 SAN LUIS CO RGNL US CA KSBP 35.233000000000004 -120.633 65.0 19730227 20051231 722898 99999 ANACAPA ISLAND US CA 34.02 -119.37 42.0 19780407 19870919 722899 03179 CHINO AIRPORT US CA KCNO 33.975 -117.63600000000001 198.1 20060101 20200625 722899 99999 CHINO US CA KCNO 33.967 -117.633 199.0 19770705 20051231 722900 23188 SAN DIEGO INTERNATIONAL AIRPORT US CA KSAN 32.734 -117.18299999999999 4.6 19420101 20200625 722901 99999 SAN DIEGO/MONTGOMER US CA 32.817 -117.133 129.0 19730101 19900206 722903 03131 MONTGOMERY FIELD AIRPORT US CA KMYF 32.816 -117.139 127.1 20060101 20200625 722903 99999 MONTGOMERY FLD US CA KMYF 32.816 -117.14 130.0 19900208 20051231 722904 03178 BROWN FIELD MUNICIPAL ARPT US CA KSDM 32.571999999999996 -116.979 157.0 20060101 20200625 722904 23196 BROWN FLD MUNI US CA KSDM 32.567 -116.96700000000001 160.0 19780429 19991231 722904 99999 BROWN FLD MUNI US CA KSDM 32.567 -116.96700000000001 160.0 20000101 20051231 722905 99999 POINT LOMA / CABRILLO US CA 32.67 -117.48 111.0 19760130 19960630 722906 93112 NORTH ISLAND NAS US CA KNZY 32.7 -117.2 7.9 19450401 20200625 722907 53143 GILLESPIE FIELD AIRPORT US CA KSEE 32.826 -116.973 118.0 20060101 20200625 722907 99999 GILLESPIE FLD US CA KSEE 32.833 -116.96700000000001 118.0 19730101 20051231 722908 99999 EL TORO(USMC) US CA 33.667 -117.73299999999999 117.0 19730101 19890112 722909 93115 NAVAL AUXILIARY LANDING FD US CA KNRS 32.567 -117.117 7.3 19730101 20200625 722910 93116 SAN NICOLAS ISLAND NAVAL OUTLYING FIELD US CA KNSI 33.24 -119.458 153.0 19430616 20200625 722910 99999 SAN NICHOLAS ISLAND US CA KNSI 33.25 -119.45 174.0 20000103 20041229 722913 99999 MARINA DEL REY US CA 33.97 -118.43 8.0 19771005 19960630 722914 99999 MISSION BEACH US CA 32.77 -117.23 2.0 19780823 19960701 722915 93114 TUSTIN MCAF US CA KNTK 33.7 -117.833 16.5 19760101 19891130 722916 99999 MALIBU BEACH US CA 34.03 -118.68 139.0 19780823 19820702 722917 99999 LONG BEACH US CA 33.77 -118.17 3.0 19780823 19820427 722919 99999 SOLANA BEACH US CA 32.98 -117.27 5.0 19831106 19960630 722920 23191 CATALINA AIRPORT US CA KAVX 33.405 -118.416 488.3 19430612 20200625 722920 99999 AVALON/CATALINA US CA KAVX 33.4 -118.417 488.0 20000613 20031231 722923 99999 CAMP PENDLETON MCAS US CA 33.3 -117.35 19.0 19770317 19780206 722924 99999 SANTA CATALINA ISLAND US CA 33.33 -118.33 3.0 19770827 19960630 722925 93117 NALF/F. SHERMAN FLD ARPT US CA KNUC 33.023 -118.588 55.5 19430610 20200625 722925 99999 SAN CLEMENTE ISLAND US CA KNUC 33.016999999999996 -118.583 56.0 20000103 20031231 722926 03154 MARINE CORPS AIR STATION US CA KNFG 33.3 -117.35 22.9 19730102 20200625 722927 03177 MCCLELLAN-PALOMAR AIRPORT US CA KCRQ 33.128 -117.279 100.0 20060101 20200625 722927 99999 MC CLELLAN PALOMAR US CA KCRQ 33.128 -117.28 101.0 19730101 20051231 722928 00369 MCOLF CAMP PENDLETON RED BEACH AIRPORT US CA KNXF 33.286 -117.456 27.1 20091029 20200616 722928 99999 MCOLF CAMP PENDLETON (RED BEACH) AIRPORT US CA KNXF 33.286 -117.456 27.0 19750916 20180514 722929 99999 OCEANSIDE HARBOR US CA 33.22 -117.4 9.0 19770827 19960630 722930 93107 SAN DIEGO/MIRAMAR N US CA KNKX 32.867 -117.133 145.7 19890101 20050331 722931 93107 MARINE CORPS AIR STATION US CA KNKX 32.867 -117.133 145.4 20050401 20200625 722931 99999 MIRAMAR MCAS US CA KNKX 32.867 -117.15 146.0 20040713 20050331 722933 99999 SAN CLEMENTE US CA 33.42 -117.62 3.0 19810506 19960630 722934 53121 OCEANSIDE MUNICIPAL ARPT US CA KOKB 33.219 -117.34899999999999 8.5 20060101 20200625 722934 99999 OCEANSIDE MUNI US CA KOKB 33.217 -117.35 9.0 19831104 20051231 722935 99999 EL CAPITAN BEACH US CA 34.467 -120.03299999999999 27.0 19880107 19960630 722950 23174 LOS ANGELES INTERNATIONAL AIRPORT US CA KLAX 33.938 -118.389 29.6 19440101 20200625 722953 03183 MOJAVE AIRPORT US CA KMHV 35.067 -118.15 849.5 20060102 20200625 722953 99999 MOJAVE US CA KMHV 35.059 -118.152 851.0 19860916 20051231 722954 99999 ZUMA BEACH US CA 34.02 -118.82 6.0 19770827 19960630 722955 03122 TORRANCE AIRPORT US CA KTOA 33.802 -118.34200000000001 27.4 19440601 19991231 722955 03174 ZAMPERINI FIELD AIRPORT US CA KTOA 33.803000000000004 -118.34 29.6 20060101 20200625 722955 99999 ZAMPERINI FLD US CA KTOA 33.803000000000004 -118.34 31.4 20000101 20051231 722956 03167 NRTHORP FLD/HATHRN MUNI AP US CA KHHR 33.923 -118.334 19.2 20060101 20200625 722956 99999 JACK NORTHROP FLD H US CA KHHR 33.917 -118.333 20.0 19730101 20051231 722957 99999 LONG BEACH US CA 32.75 -118.417 24.0 19761129 19880105 722958 99999 CABRILLO BEACH US CA 33.72 -118.28 8.0 19760130 19960630 722959 99999 SCRIPPS PIER / LA JOL US CA 32.87 -117.25 4.0 19780823 19900321 722970 23129 LONG BEACH / DAUGHERTY FIELD / AIRPORT US CA KLGB 33.812 -118.146 9.5 19430101 20200625 722972 63878 LITCHFIELD MUNICIPAL AIRPORT US IL K3LF 39.163000000000004 -89.675 210.3 20060101 20200625 722972 99999 LITCHFIELD MUNI US IL K3LF 39.167 -89.667 210.0 20040921 20051231 722973 99999 NEWPORT BEACH US CA 33.6 -117.88 3.0 19770827 19960701 722974 99999 LONG BEACH US CA K5L8 33.766999999999996 -118.167 3.0 19770208 19891127 722975 53141 LOS ALAMITOS AAF AIRPORT US CA KSLI 33.79 -118.052 10.7 20060101 20200625 722975 93106 LOS ALAMITOS AAF US CA KSLI 33.783 -118.05 11.0 19820907 19991231 722975 99999 LOS ALAMITOS AAF US CA KSLI 33.783 -118.05 11.0 20000101 20051231 722976 03166 FULLERTON MUNICIPAL ARPT US CA KFUL 33.872 -117.979 29.3 20060101 20200625 722976 99999 FULLERTON MUNICIPAL US CA KFUL 33.867 -117.98299999999999 29.0 19730101 20051231 722977 93184 J. WAYNE APT-ORANGE CO APT US CA KSNA 33.68 -117.866 16.5 19400617 20200625 722977 99999 JOHN WAYNE ARPT ORA US CA KSNA 33.667 -117.867 17.0 20000101 20031231 722978 99999 HUNTINGTON BEACH US CA 33.65 -118.0 35.0 19730101 19960630 722979 03157 LONG BEACH NAVAL STN US CA NWF 33.75 -118.23299999999999 4.3 19730102 19731228 722983 99999 POINT VINCENTE US CA 33.73 -118.4 5.0 19880106 19880309 722984 99999 HUNTINGTON B. OIL US CA 33.57 -118.13 36.0 19870403 19880309 722985 99999 LONGBEACH RADIO US CA 33.75 -118.333 5.0 19750916 19800207 722986 99999 TERMINAL ISLAND US CA 33.73 -118.27 10.0 19770827 19860529 723010 03810 HICKORY REGIONAL AIRPORT US NC KHKY 35.742 -81.382 358.1 20050101 20200625 723011 13748 WILMINGTON NEW HANOVER COUNTY US NC KILM 34.268 -77.9 11.6 19420601 19900228 723013 13748 WILMINGTON INTL US NC KILM 34.268 -77.9 11.6 19900228 20091231 723015 99999 SOUTH PORT / OAK ISLAND COAST GU US 33.88 -78.02 1.0 19750916 19910108 723016 99999 WRIGHTSVILLE BEACH US NC 34.18 -77.82 3.0 19750916 19910403 723020 13748 WILMINGTON INTERNATIONAL AIRPORT US NC KILM 34.268 -77.9 10.1 20050101 20200625 723020 99999 WILMINGTON INTL US NC KILM 34.266999999999996 -77.9 10.0 20010705 20180516 723030 13714 POPE AFB AIRPORT US NC KPOB 35.174 -79.009 66.5 19370703 20200626 723030 99999 POPE FIELD US NC KPOB 35.167 -79.033 66.0 20000101 20041231 723034 93747 MACKALL AAF AIRPORT US NC KHFF 35.033 -79.5 114.6 20060103 20200625 723034 99999 MACKALL AAF US NC KHFF 35.033 -79.5 115.0 19790507 20051231 723035 93740 FAYETT RGNL/GRANNIS FLD AP US NC KFAY 34.991 -78.88 56.7 20060101 20200625 723035 99999 FAYETTEVILLE RGNL G US NC KFAY 34.983000000000004 -78.883 58.0 19730101 20051231 723037 93765 MICHAEL J SMITH FLD ARPT US NC KMRH 34.733000000000004 -76.657 2.4 20060101 20200625 723037 99999 MICHAEL J SMITH FLD US NC KMRH 34.733000000000004 -76.667 3.0 20010705 20051231 723040 93729 CAPE HATTERAS US NC KHSE 35.233000000000004 -75.622 3.4 19730101 19951231 723040 99999 CAPE HATTERAS NC. US KHAT 35.266999999999996 -75.55 3.0 19960322 20060803 723044 99999 ERWIN HARNETT COUNTY AIRPORT US NC 35.38 -78.73 60.0 19990114 19990715 723045 99999 OREGON INLET COAST GUARD STATION US NC 35.77 -75.52 1.0 19750916 19860515 723046 13766 DARE COUNTY REGIONAL AIRPORT US NC KMQI 35.917 -75.7 4.0 20050101 20200625 723046 99999 DARE CO RGNL US NC KMQI 35.917 -75.7 4.0 19850715 20041231 723047 99999 ORACOKE COAST GUARD STATION US NC 35.12 -75.98 2.0 19750916 19860515 723048 99999 ANDREWS ANDREWS-MURPHY AIRPORT US NC 35.19 -83.86 518.0 19990114 20010517 723050 99999 NEWPORT US NC KMHX 34.766999999999996 -76.867 10.8 19960516 20041008 723055 63816 STATESVILLE MUNICIPAL ARPT US NC KSVH 35.765 -80.957 294.1 20060101 20200625 723055 99999 STATESVILLE RGNL US NC KSVH 35.766999999999996 -80.95 295.0 20010705 20051231 723060 13722 RALEIGH-DURHAM INTERNATIONAL AP US NC KRDU 35.891999999999996 -78.782 126.8 19451101 20200625 723062 99999 USMC BOMB RANGE BT-11 US NC KNBT 35.016999999999996 -76.467 5.2 20090903 20200624 723065 13783 PITT-GREENVILLE AIRPORT US NC KPGV 35.633 -77.383 7.6 20050101 20200625 723065 99999 PITT GREENVILLE US NC KPGV 35.635 -77.383 8.0 19730101 20041231 723066 13713 SEYMOUR-JOHNSON AFB AIRPORT US NC KGSB 35.344 -77.965 33.2 19430601 20200625 723066 99999 SEYMOUR JOHNSON AFB US NC KGSB 35.333 -77.95 34.0 20000101 20041231 723067 93726 KINSTON REGIONAL JETPORT AT STALLING FIELD US NC KISO 35.317 -77.633 28.7 19730608 20200625 723067 99999 KINSTON RGNL JETPORT US NC KISO 35.332 -77.609 29.0 20000101 20041231 723068 93759 ROCKY MOUNT-WILSON RGN APT US NC KRWI 35.855 -77.893 48.8 20060101 20200625 723068 99999 ROCKY MOUNT WILSON US NC KRWI 35.85 -77.883 48.0 19730620 20051231 723069 93753 ALBERT J ELLIS AIRPORT US NC KOAJ 34.833 -77.617 29.3 20060101 20200625 723069 99999 JACKSONVILLE (AWOS) US NC KOAJ 34.833 -77.617 29.0 19761225 20051231 723070 13786 ELZ CTY CG/AIR STN RGNL AP US NC KECG 36.260999999999996 -76.175 4.0 20050101 20200625 723074 03703 NORTHEASTERN REGIONAL ARPT US NC KEDE 36.028 -76.567 6.1 20060101 20200625 723074 99999 NORTHEASTERN RGNL US NC KEDE 36.029 -76.57 6.0 19990114 20051231 723075 13769 OCEANA NAS US VA KNTU 36.817 -76.033 7.0 19730101 20200625 723076 99999 CAPE HENRY COAST GUARD LIGHT STA US 36.93 -76.0 1.0 19750916 19841220 723077 99999 NORFOLK / CHESAPEAK US VA 36.9 -75.72 23.0 19750916 19840107 723078 99999 MARKS MUNI US VA 36.596 -78.56 128.3 19890918 19900206 723079 93796 TRI-COUNTY AIRPORT US NC KASJ 36.298 -77.171 20.7 20060101 20200625 723079 99999 TRI CO US NC KASJ 36.3 -77.167 21.0 19990114 20051231 723080 13737 NORFOLK INTERNATIONAL AIRPORT US VA KORF 36.903 -76.192 9.1 19730101 20200625 723082 99999 WEST CAMERON 560 US LA 28.15 -93.35 0.0 20040825 20050409 723083 13763 FRANKLIN MUNICIPAL-JOHN BEVERLY ROSE AIRPORT US VA KFKN 36.698 -76.903 12.5 19941016 20200625 723083 99999 FRANKLIN MUNI JB ROS US VA KFKN 36.698 -76.904 12.0 20000101 20031231 723084 93775 HANOVER CO MUNICIPAL ARPT US VA KOFP 37.708 -77.434 62.5 20050101 20200625 723084 99999 HANOVER CO MUNI US VA KOFP 37.709 -77.437 63.0 19860620 20180516 723085 13750 NORFOLK NAS US VA KNGU 36.937 -76.289 5.2 19730101 20200625 723086 93741 NWPT NEWS/WIMBURG INTL APT US VA KPHF 37.132 -76.493 12.8 20000101 20200625 723086 99999 NEWPORT NEWS WILLIA US VA KPHF 37.133 -76.483 13.0 19730101 19991231 723087 93735 FELKER ARMY AIRFIELD US VA KFAF 37.133 -76.6 3.7 19601101 20200625 723087 99999 FELKER AAF US VA KFAF 37.133 -76.609 4.0 20000103 20041230 723088 99999 MILFORD HAVEN COAST GUARD STATIO US 37.48 -76.32 1.0 19750916 19910113 723089 13755 CHINCOTEAGUE US VA K0W8 37.933 -75.383 2.0 19821019 19960630 723090 13754 CHERRY POINT MCAS US NC KNKT 34.9 -76.883 8.8 19730101 20200625 723094 99999 SWANSBORO / BOGUE US NC 34.65 -77.1 2.0 19790507 19910403 723095 93719 CRAVEN COUNTY REG AIRPORT US NC KEWN 35.068000000000005 -77.048 5.8 19730101 20200625 723096 93727 JACKSONVILLE US NC KNCA 34.708 -77.44 7.9 19730101 20200625 723097 93743 BOGUE FIELD MARINE CORPS AUXILIARY FIELD US NC KNJM 34.683 -77.033 6.4 19870504 20200625 723098 93798 CULPEPER REGIONAL AIRPORT US VA KCJR 38.527 -77.859 96.3 20060101 20200625 723098 99999 CULPEPER RGNL US VA KCJR 38.533 -77.867 96.0 19730623 20051231 723099 99999 CAPE LOOKOUT COAST GUARD STATION US NC 34.6 -76.53 4.0 19750916 19830107 723100 13883 COLUMBIA METROPOLITAN AIRPORT US SC KCAE 33.942 -81.118 68.6 19420424 20200626 723104 53867 COLUMBIA OWENS DOWNTOWN AP US SC KCUB 33.971 -80.99600000000001 64.6 20060101 20200625 723104 99999 COLUMBIA OWENS APT US SC KCUB 33.967 -80.983 59.0 19790513 20051231 723105 03858 MCENTIRE AIR NATIONAL GUARD STATION US SC KMMT 33.967 -80.8 77.4 20050103 20200625 723105 93833 MC ENTIRE JNGB US SC KMMT 33.921 -80.801 77.0 19590206 19991231 723105 99999 MC ENTIRE JNGB US SC KMMT 33.921 -80.801 77.0 20000103 20041230 723106 13744 FLORENCE REGIONAL AIRPORT US SC KFLO 34.188 -79.73100000000001 44.5 19730101 20200625 723107 00371 SANTEE COOPER REGIONAL AIRPORT US SC KMNI 33.586999999999996 -80.209 31.1 20090101 20200625 723107 99999 SANTEE COOPER RGNL US SC KMNI 33.586999999999996 -80.209 31.4 20081208 20180226 723108 13776 LUMBERTON MUNICIPAL ARPT US NC KLBT 34.608000000000004 -79.059 36.9 19980902 20200624 723108 99999 LUMBERTON MUNI US NC KLBT 34.61 -79.059 38.0 20000101 20031231 723109 93782 LAURINBURG-MAXTON AIRPORT US NC KMEB 34.792 -79.366 67.1 20060101 20200625 723109 99999 MAXTON US NC KMEB 34.783 -79.367 67.0 19990114 20051231 723110 13873 ATHENS/BEN EPPS AIRPORT US GA KAHN 33.948 -83.32799999999999 239.3 19730101 20200626 723114 03715 LOUISA CO/FREEMAN FLD ARPT US VA KLKU 38.01 -77.97 150.3 20060101 20200625 723114 99999 LOUISA CO FREEMAN FL US VA KLKU 38.016999999999996 -77.967 150.0 19990114 20051231 723115 53854 ORANGEBURG MUNICIPAL ARPT US SC KOGB 33.461999999999996 -80.858 60.1 20060101 20200626 723115 99999 ORANGEBURG MUNI US SC KOGB 33.45 -80.867 59.0 19990114 20051231 723116 03742 DARLINGTON COUNTY JETPORT AIRPORT US SC KUDG 34.466 -79.89 58.5 20060101 20200625 723116 99999 DARLINGTON CO JETPOR US SC KUDG 34.45 -79.883 59.0 19990114 20051231 723117 53871 RK HL/YORK CO/BRYNT FD APT US SC KUZA 34.986999999999995 -81.058 203.9 20060101 20200626 723117 99999 ROCK HILL YORK CO US SC KUZA 34.983000000000004 -81.05 203.0 20010811 20051231 723118 53850 OCCONEE COUNTY RGNL ARPT US SC KCEU 34.672 -82.88600000000001 271.6 20060101 20200626 723118 99999 OCONEE CO RGNL US SC KCEU 34.667 -82.883 272.0 20010811 20051231 723119 13886 GREENVILLE DOWNTOWN ARPT US SC KGMU 34.846 -82.346 319.4 19420908 20200626 723119 99999 GREENVILLE DOWNTOWN US SC KGMU 34.85 -82.35 319.0 20000101 20031231 723120 03870 GREENVILLE-SPARTANBURG INTL AIRPORT US SC KGSP 34.906 -82.213 291.1 19730101 20200625 723122 63889 DONALDSON CENTER AIRPORT US SC KGYH 34.758 -82.376 291.1 20060101 20200626 723122 99999 GREENVILLE US SC KGYH 34.75 -82.367 291.0 20050611 20051231 723123 14886 Kings Land O' Lakes Airport US WI KLNL 46.15 -89.21700000000001 519.4 20060101 20200625 723123 99999 KINGS LAND O LAKES US WI KLNL 46.15 -89.21700000000001 519.0 20050315 20051231 723124 53874 GREENWOOD COUNTY AIRPORT US SC KGRD 34.249 -82.15899999999999 192.3 20060101 20200626 723124 99999 GREENWOOD CO US SC KGRD 34.249 -82.167 192.0 20010811 20051231 723125 93846 ANDERSON RGNL US SC KAND 34.498000000000005 -82.71 235.6 19730101 20100801 723126 93804 SPARTANBURG DOWNTOWN MEMORIAL AIRPORT US SC KSPA 34.917 -81.95 244.1 19730101 19820320 723126 99999 SPARTANBURG DOWNTOWN MEM US SC KSPA 34.916 -81.95700000000001 244.1 20090420 20200624 723139 93729 BILLY MITCHELL AIRPORT US NC KHSE 35.233000000000004 -75.622 3.4 19960101 20200626 723140 13881 CHARLOTTE/DOUGLAS INTERNATIONAL AP US NC KCLT 35.224000000000004 -80.955 221.9 19410722 20200626 723143 03720 MOORE COUNTY AIRPORT US NC KSOP 35.236999999999995 -79.391 140.5 20060101 20200625 723143 99999 MOORE CO US NC KSOP 35.233000000000004 -79.383 141.0 19920226 20051231 723144 53890 RURFTON CO-MARCHMAN FLD AP US NC KFQD 35.428000000000004 -81.935 328.6 20060101 20200625 723144 99999 RUTHERFORDTON US NC KFQD 35.433 -81.93299999999999 329.0 19990114 20051231 723145 03810 HICKORY RGNL US NC KHKY 35.743 -81.382 362.1 19730101 20100801 723146 53892 ASHE COUNTY AIRPORT US NC KGEV 36.431999999999995 -81.419 969.3 20060101 20200625 723146 99999 ASHE CO US NC KGEV 36.433 -81.417 969.0 19990114 20051231 723147 53870 GASTONIA MUNICIPAL AIRPORT US NC KAKH 35.196999999999996 -81.156 242.9 20060101 20200625 723147 99999 GASTONIA MUNI US NC KAKH 35.2 -81.15 243.0 20010811 20051231 723148 63859 MORGANTON-LENOIR AIRPORT US NC KMRN 35.821 -81.611 387.1 20060101 20200625 723148 99999 FOOTHILLS RGNL US NC KMRN 35.817 -81.617 387.0 20010811 20051231 723150 03812 ASHEVILLE REGIONAL AIRPORT US NC KAVL 35.431999999999995 -82.538 645.3 19730101 20200625 723155 99999 HOT SPRINGS (AWRS) US NC 35.9 -82.81700000000001 451.0 19730101 19840331 723156 63812 ROWAN COUNTY AIRPORT US NC KRUQ 35.646 -80.52 235.6 20050101 20200625 723156 99999 ROWAN COUNTY ARPT US NC KRUQ 35.65 -80.517 236.0 20020219 20041231 723160 13870 BACON COUNTY AIRPORT US GA KAMG 31.535999999999998 -82.507 58.8 20050101 20200625 723165 63821 WILKES COUNTY AIRPORT US NC KUKF 36.223 -81.098 396.2 20060101 20200626 723165 99999 WILKES CO US NC KUKF 36.217 -81.1 397.0 20010811 20051231 723170 13723 PIEDMONT TRIAD INTERNATIONAL AIRPORT US NC KGSO 36.097 -79.943 271.3 19451101 20200625 723171 53144 NORTH AUXILIARY AIRFIELD EDWARDS AFB US CA K9L2 34.988 -117.865 695.9 20060101 20200625 723171 99999 EDWARDS AF AUX NORTH BASE US CA K9L2 34.991 -117.863 700.7 20050712 20051231 723174 93783 BURLINGTON ALAMANCE RGL AP US NC KBUY 36.047 -79.477 188.1 20060101 20200625 723174 99999 BURLINGTON ALAMANCE US NC KBUY 36.05 -79.467 188.0 20010811 20051231 723177 63807 MOUNT AIRY/SURRY CO ARPT US NC KMWK 36.46 -80.553 380.1 20060101 20200625 723177 99999 MT AIRY SURRY CO US NC KMWK 36.467 -80.55 380.0 20010811 20051231 723180 99999 BLACKSBURG US VA 37.2 -80.4 641.9 19960101 20050403 723181 13877 BRISTOL TRI CITY AIRPORT US TN KTRI 36.473 -82.404 464.8 19730101 19900228 723183 13877 TRI CITIES RGNL US TN KTRI 36.473 -82.404 464.8 19900228 20100801 723190 93846 ANDERSON REGIONAL AIRPORT US SC KAND 34.498000000000005 -82.71 231.7 20050101 20200626 723191 93807 WINSTON-SALEM REYNOLDS AP US NC KINT 36.134 -80.222 295.7 19850531 19900206 723193 93807 SMITH REYNOLDS AIRPORT US NC KINT 36.134 -80.222 295.7 19900208 20200625 723193 99999 SMITH REYNOLDS US NC KINT 36.133 -80.217 295.0 20000101 20031231 723194 53872 MONROE AIRPORT US NC KEQY 35.016999999999996 -80.62100000000001 207.0 20060101 20200625 723194 99999 MONROE AIRPORT US NC KEQY 35.019 -80.62 207.0 20010811 20051231 723200 93801 RICHARD B RUSSELL AIRPORT US GA KRMG 34.348 -85.161 194.8 19780101 20200625 723200 99999 ROME/RUSSELL(RAMOS) US GA KRMG 34.35 -85.167 196.0 20000101 20031231 723213 99999 PUERTO ESCONDIDO US 19860507 19880531 723230 03856 HUNTSVILLE INTL/C.T.JONES FIELD AIRPORT US AL KHSV 34.644 -86.787 190.2 19730101 20200625 723231 63883 REDSTONE ARMY AIRFIELD US AL KHUA 34.679 -86.685 208.8 20060103 20200625 723231 99999 REDSTONE AAF US AL KHUA 34.683 -86.68299999999999 209.0 20040804 20051230 723235 13896 NORTH WEST ALABAMA REGIONAL AIRPORT US AL KMSL 34.744 -87.6 164.6 19730101 20200625 723240 13882 LOVELL FIELD AIRPORT US TN KCHA 35.034 -85.2 204.2 19730101 20200626 723244 99999 DALLAS BAY SKY PARK US TN KCQN 35.188 -85.178 210.3 19801205 19900801 723245 99999 MONTEAGLE US TN MGL 35.25 -85.85 586.0 19730101 19990823 723246 53868 OAK RIDGE US TN KOQT 36.024 -84.238 277.4 19990102 20100801 723249 00463 MAURY COUNTY AIRPORT US TN KMRC 35.554 -87.179 207.9 20130309 20200626 723249 99999 MAURY CO US TN KMRC 35.554 -87.179 207.6 20180101 20180514 723250 03847 CROSSVILLE MEMORIAL -WHITSON FIELD APT US TN KCSV 35.951 -85.081 569.1 20050101 20200626 723260 13891 MC GHEE TYSON AIRPORT US TN KTYS 35.818000000000005 -83.986 293.2 19480101 20200625 723263 99999 FAYETTEVILLE/KELSO US TN 35.133 -86.55 198.0 19881208 19891112 723264 99999 KNOXVILLE DOWNTOWN ISLAND US TN KDKX 35.964 -83.874 253.9 19790507 20200624 723265 03847 CROSSVILLE MEM WHIT US TN KCSV 35.951 -85.081 570.0 19730101 20100801 723270 13897 NASHVILLE INTERNATIONAL AIRPORT US TN KBNA 36.119 -86.689 182.9 19510101 20200625 723271 99999 JOHN C TUNE US TN KJWN 36.181999999999995 -86.887 150.9 20151210 20200624 723273 13827 SMYRNA AIRPORT US TN KMQY 36.009 -86.52 165.5 20060101 20200626 723273 99999 SMYRNA US TN KMQY 36.0 -86.51700000000001 166.0 19420816 20051231 723274 00372 UPPER CUMBERLAND REGIONAL AIRPORT US TN KSRB 36.056 -85.531 312.1 20120604 20200625 723274 99999 UPPER CUMBERLAND RGNL US TN KSRB 36.056 -85.531 312.4 19810220 20180514 723275 99999 CLARKSVILLE/OUTLAW US TN CKV 36.617 -87.417 168.0 19730418 19810915 723280 03894 OUTLAW FIELD AIRPORT US TN KCKV 36.624 -87.419 170.7 20050101 20200625 723284 93839 MILLINGTON MUNICIPAL AIRPORT US TN KNQA 35.35 -89.867 97.5 20050101 20200625 723284 99999 MILLINGTON MUNI ARP US TN KNQA 35.35 -89.867 98.0 20010811 20041231 723290 03849 CAPE GIRARDEAU RGNL US MO KLOZ 37.086999999999996 -84.07700000000001 369.1 19730101 19850531 723290 03935 CAPE GIRARDEAU RGNL ARPT US MO KCGI 37.225 -89.571 102.4 20100801 20200625 723291 03849 LONDON-CORBIN AP US KY KLOZ 37.086999999999996 -84.07700000000001 369.1 19850531 19900206 723293 03849 LONDON-CORBIN AP US KY KLOZ 37.086999999999996 -84.07700000000001 369.1 19900208 19910220 723300 03975 POPLAR BUFF MUNICIAL ARPT US MO KPOF 36.773 -90.325 99.7 20060101 20200625 723300 99999 POPLAR BLUFF(AMOS) US MO KPOF 36.766999999999996 -90.46700000000001 146.0 19770828 20051231 723301 93862 TUPELO C D LEMONS ARPT US MS KTUP 34.262 -88.771 110.0 19730101 19900228 723303 93862 TUPELO C D LEMONS ARPT US MS KTUP 34.262 -88.771 110.0 19900208 19910228 723305 99999 OXFORD UNIVERSITY US MS 34.383 -89.53299999999999 137.0 19730112 19850311 723306 13825 COLUMBUS AFB AIRPORT US MS KCBM 33.65 -88.45 66.8 19420301 20200626 723306 99999 COLUMBUS AFB US MS KCBM 33.65 -88.45 66.0 20000101 20041227 723307 53893 GOLDEN TRIANGLE RGNL APT US MS KGTR 33.45 -88.583 80.5 20060101 20200626 723307 99999 GOLDEN TRIANGLE RGNL US MS KGTR 33.45 -88.583 80.0 19770102 20051231 723320 93862 TUPELO REGIONAL AIRPORT US MS KTUP 34.262 -88.771 110.0 19910301 20200626 723340 13893 MEMPHIS INTERNATIONAL AIRPORT US TN KMEM 35.056 -89.98700000000001 77.4 19461001 20200625 723345 93839 MEMPHIS NAS US TN KNQA 35.35 -89.867 97.5 19730101 19960429 723346 03811 MCKELLAR-SIPES RGNL ARPT US TN KMKL 35.593 -88.917 132.0 19730101 20200626 723347 03809 DYERSBURG MUNICIPAL ARPT US TN KDYR 36.0 -89.40899999999999 91.4 19430412 20200625 723347 99999 DYERSBURG MUNI US TN KDYR 36.0 -89.4 103.0 20000101 20031231 723348 99999 ABILENE(NEXRAD) US TX KDYX 32.533 -99.25 462.0 19770501 19810812 723350 13877 TRI-CITIES REGIONAL TN/VA AIRPORT US TN KTRI 36.48 -82.399 456.3 20050101 20200625 723400 03952 NORTH LITTLE ROCK AIRPORT US AR KLZK 34.835 -92.26 171.6 20060101 20200624 723400 99999 LITTLE ROCK WSFO US AR KLZK 34.833 -92.25 173.0 19730101 20051231 723401 13963 LITTLE ROCK ADAMS FIELD US AR KLIT 34.727 -92.23899999999999 78.3 19750101 19900228 723403 13963 ADAMS FIELD AIRPORT US AR KLIT 34.727 -92.23899999999999 78.6 19900228 20200625 723405 03930 LITTLE ROCK AFB AIRPORT US AR KLRF 34.917 -92.15 94.8 19560101 20200625 723405 99999 LITTLE ROCK AFB US AR KLRF 34.917 -92.15 95.0 20000102 20041231 723406 93991 WALNUT RIDGE REGIONAL ARPT US AR KARG 36.125 -90.92399999999999 83.2 20050101 20200625 723406 99999 WALNUT RIDGE RGNL US AR KARG 36.125 -90.925 83.0 19421010 20041231 723407 03953 JONESBORO MUNICIPAL ARPT US AR KJBR 35.830999999999996 -90.646 79.9 20060101 20200625 723407 99999 JONESBORO MUNI US AR KJBR 35.833 -90.633 80.0 19730101 20051231 723408 13814 ARKANSAS INTERNATIONAL AIRPORT US AR KBYH 35.967 -89.95 77.4 19420901 20200624 723408 99999 ARKANSAS INTL US AR KBYH 35.967 -89.93299999999999 77.0 20000103 20041230 723409 53869 BLYTHEVILLE MUNI AIRPORT US AR KHKA 35.94 -89.831 77.7 20060101 20200625 723409 99999 BLYTHEVILLE MUNI US AR KHKA 35.933 -89.833 78.0 20010811 20051231 723410 99999 PAGE OK. US 34.683 -94.617 883.0 19771026 19950611 723415 03962 MEMORIAL FIELD AIRPORT US AR KHOT 34.29 -93.06 163.1 20060101 20200625 723415 99999 MEMORIAL FLD US AR KHOT 34.467 -93.083 165.0 19730101 20051231 723416 13925 STUTTGART MUNICIPAL ARPT US AR KSGT 34.6 -91.574 68.3 20060101 20200625 723416 99999 STUTTGART MUNI US AR KSGT 34.6 -91.56700000000001 68.0 19910911 20051231 723417 93988 GRIDER FIELD AIRPORT US AR KPBF 34.18 -91.934 63.1 19730101 20200625 723417 99999 GRIDER FLD US AR KPBF 34.167 -91.93299999999999 63.0 20000101 20031231 723418 13977 TEXARKANA REGIONAL AIRPORT-WEBB FIELD US AR KTXK 33.455999999999996 -93.988 110.0 19460729 20200625 723419 93992 S. AR RGNL AT GDWIN FLD AP US AR KELD 33.221 -92.814 76.8 19730101 20200625 723424 53919 MONTICELLO MUNI US AR KLLQ 33.635999999999996 -91.756 82.3 20050101 20091231 723424 99999 MONTICELLO MUNI US AR 33.567 -91.71700000000001 36.0 19990103 20041231 723425 00373 HARRELL FIELD AIRPORT US AR KCDH 33.617 -92.76700000000001 40.2 20070501 20200626 723425 99999 HARRELL FLD US AR KCDH 33.623000000000005 -92.76299999999999 39.6 19840320 20180516 723429 53920 MUNICIPAL AIRPORT US AR KRUE 35.258 -93.095 122.8 20060101 20200625 723429 99999 RUSSELLVILLE RGNL US AR KRUE 35.266999999999996 -93.1 123.0 20010811 20051231 723434 03973 SPRINGDALE MUNICIPAL ARPT US AR KASG 36.167 -94.117 412.4 20060101 20200625 723434 99999 SPRINGDALE MUNI US AR KASG 36.183 -94.117 412.0 19850703 20051231 723435 53921 MOUNT IDA US AR KMWT 34.547 -93.57799999999999 214.0 20050101 20200625 723435 99999 MOUNT IDA US AR KMWT 34.55 -93.583 214.0 19990426 20041231 723436 53922 NW ARKANSAS REGIONAL ARPT US AR KXNA 36.283 -94.3 392.3 20060101 20200625 723436 99999 NW ARKANSAS RGNL US AR KXNA 36.282 -94.307 392.0 20020201 20051231 723439 53918 OZARK REGIONAL AIRPORT US AR KBPK 36.369 -92.47 282.9 20060101 20200625 723439 99999 OZARK RGNL US AR KBPK 36.369 -92.471 283.0 19990103 20051231 723440 13964 FORT SMITH REGIONAL AIRPORT US AR KFSM 35.333 -94.363 136.9 19470101 20200625 723441 54921 ALBION MUNICIPAL AIRPORT US NE KBVN 41.73 -98.054 548.3 20060101 20200625 723441 99999 ALBION MUNI US NE KBVN 41.733000000000004 -98.05 550.0 20040824 20051231 723443 53955 SMITH FIELD AIRPORT US AR KSLG 36.191 -94.491 363.6 20060101 20200625 723443 99999 SMITH FLD US AR KSLG 36.2 -94.48299999999999 364.0 19920408 20051231 723444 03978 BENTONVILLE MUNI/LOUIS M THADEN FIELD AIRPORT US AR KVBT 36.35 -94.21700000000001 395.0 20060101 20200625 723444 99999 BENTONVILLE MUNI THA US AR KVBT 36.346 -94.219 395.0 19920408 20051231 723445 93993 DRAKE FIELD AIRPORT US AR KFYV 36.01 -94.169 381.3 19730101 20200625 723445 99999 DRAKE FLD US AR KFYV 36.0 -94.167 381.0 20000101 20031231 723446 13971 BOONE CO US AR KHRO 36.266999999999996 -93.15700000000001 422.1 19460801 20100731 723447 03918 MARION COUNTY RGNL AIRPORT US AR KFLP 36.291 -92.59 219.2 20050101 20200625 723447 99999 FLIPPIN (AWOS) US AR KFLP 36.3 -92.46700000000001 350.0 19920409 20041231 723448 53934 BATESVILLE REGIONAL ARPT US AR KBVX 35.726 -91.647 141.1 20060101 20200625 723448 99999 BATESVILLE RGNL US AR KBVX 35.726 -91.647 141.0 19920409 20051231 723449 53954 ROGERS MUNI-CARTER FLD APT US AR KROG 36.372 -94.10700000000001 412.4 20060101 20200625 723449 99999 ROGERS MUNI CARTER F US AR KROG 36.372 -94.10700000000001 414.0 19920506 20051231 723450 13971 BOONE COUNTY AIRPORT US AR KHRO 36.266999999999996 -93.15700000000001 418.8 20050101 20200625 723480 99999 WEST PLAINS MO US 36.733000000000004 -91.85 308.0 19730101 19960808 723484 53901 WEST PLAINS MUNICIPAL ARPT US MO KUNO 36.878 -91.90299999999999 372.8 20060101 20200625 723484 99999 WEST PLAINS MUNI US MO KUNO 36.883 -91.9 374.0 20010811 20051231 723485 99999 POPLAR BLUFF(AMOS)& US MO 36.766999999999996 -90.46700000000001 116.0 19760820 19770728 723489 03935 CAPE GIRARDEAU RGNL US MO KCGI 37.225 -89.571 107.3 19730101 20100801 723490 99999 MONETTE US MO 36.917 -94.01700000000001 437.0 19730101 20130430 723493 99999 WAPPAPELLO US MO 36.933 -90.28299999999999 101.0 19880810 19881202 723495 13987 JOPLIN REGIONAL AIRPORT US MO KJLN 37.152 -94.495 296.3 19730101 20200625 723510 13966 SHEPPARD AFB/WICHITA FALLS MUNI AP US TX KSPS 33.979 -98.493 310.0 19420413 20200625 723513 99999 SHEPPARD AFB US TX KSHP 33.967 -98.48299999999999 310.6 19870731 20200511 723520 13902 ALTUS AFB AIRPORT US OK KLTS 34.65 -99.26700000000001 421.2 19430201 20200625 723520 99999 ALTUS AFB US OK KLTS 34.65 -99.26700000000001 420.0 20000103 20041230 723525 93986 HOBART MUNICIPAL AIRPORT US OK KHBR 34.989000000000004 -99.053 474.3 19730101 20200625 723526 03932 CLINTON-SHERMAN AIRPORT US OK KCSM 35.357 -99.204 585.8 20060101 20200625 723526 99999 CLINTON-SHERMAN US OK KCSM 35.333 -99.2 586.0 19580818 20051231 723527 13975 GAGE/SHATTUCK US OK KGAG 36.297 -99.76899999999999 671.2 19460801 20100709 723528 03981 FREDERICK MUNICIPAL AIRPT US OK KFDR 34.344 -98.98299999999999 382.5 20060101 20200625 723528 99999 FREDERICK MUNI US OK KFDR 34.352 -98.984 383.0 19980514 20051231 723529 53929 ARDMORE DOWNTOWN EXE US OK K1F0 34.147 -97.12299999999999 257.3 20060101 20130430 723529 99999 ARDMORE DOWNTOWN EXECUTIVE US OK 34.147 -97.12299999999999 257.3 19990114 20051231 723530 13967 WILL ROGERS WORLD AIRPORT US OK KOKC 35.389 -97.601 391.7 19411214 20200625 723535 13909 VANCE AIR FORCE BASE US OK KEND 36.333 -97.917 398.1 20060103 20200625 723535 99999 VANCE AFB US OK KEND 36.333 -97.917 398.0 19420101 20051222 723536 53986 ENID WOODRING REGIONAL AIRPORT US OK KWDG 36.383 -97.8 355.7 20060101 20200625 723536 99999 ENID WOODRING RGNL US OK KWDG 36.383 -97.78299999999999 356.0 19790131 20051231 723537 53913 GUTHRIE MUNICIPAL AIRPORT US OK KGOK 35.852 -97.414 325.5 20060101 20200625 723537 99999 GUTHRIE MUNI US OK KGOK 35.85 -97.417 326.0 19990114 20051231 723540 13919 TINKER AFB AIRPORT US OK KTIK 35.417 -97.383 393.5 19421214 20200625 723540 99999 TINKER AFB US OK KTIK 35.417 -97.383 397.0 20000101 20041231 723544 03954 WILEY POST AIRPORT US OK KPWA 35.534 -97.647 395.3 20060101 20200625 723544 99999 OKLAHOMA CITY/WILEY US OK KPWA 35.533 -97.65 396.0 19801023 20051231 723545 03965 STILLWATER REGIONAL ARPT US OK KSWO 36.162 -97.089 299.9 20060101 20200625 723545 99999 STILLWATER RGNL US OK KSWO 36.15 -97.083 305.0 19730103 20051231 723546 13969 PONCA CITY MUNI US OK KPNC 36.736999999999995 -97.102 304.2 19460801 20100731 723550 13945 HENRY POST AAF AIRPORT US OK KFSI 34.65 -98.4 362.4 19390901 20200625 723550 99999 FORT SILL US OK KFSI 34.6 -98.4 360.0 20000104 20041231 723555 93940 ARDMORE MUNICIPAL AIRPORT US OK KADM 34.3 -97.01700000000001 221.0 20060101 20200626 723555 99999 ARDMORE MUNICIPAL US OK KADM 34.3 -97.01700000000001 232.0 19430301 20051231 723556 93953 DAVIS FIELD AIRPORT US OK KMKO 35.657 -95.361 185.9 20060101 20200626 723556 99999 MUSKOGEE/DAVIS FLD US OK KMKO 35.65 -95.367 186.0 19370911 20051231 723560 13968 TULSA INTERNATIONAL AIRPORT US OK KTUL 36.199 -95.887 198.1 19470101 20200625 723564 53908 RICHARD LLOYD JONES JR APT US OK KRVS 36.039 -95.984 194.5 20060101 20200625 723564 99999 RICHARD LLOYD JONES US OK KRVS 36.033 -95.98299999999999 194.0 19801015 20051231 723565 03959 BARTLESVILLE MUNICIPAL AIRPORT US OK KBVO 36.768 -96.02600000000001 217.9 20060101 20200625 723565 99999 BARTLESVILLE MUNI US OK KBVO 36.766999999999996 -96.01700000000001 217.0 19730101 20051231 723566 93950 MC ALESTER REGIONAL ARPT US OK KMLC 34.882 -95.78299999999999 234.7 19530701 20200625 723567 99999 TULSA WSO/(INOLA) US OK 36.18 -95.56 223.7 19770506 19770728 723570 03948 UNIVERSITY OF OKLAHOMA WESTHEIMER AIRPORT US OK KOUN 35.25 -97.46700000000001 360.3 20060101 20200625 723570 99999 NORMAN/MAX WESTHEIM US OK KOUN 35.233000000000004 -97.45 345.0 20000210 20051231 723575 03950 LAWTON-FORT SILL RGNL ARPT US OK KLAW 34.558 -98.417 325.8 20050101 20200625 723575 99999 LAWTON MUNICIPAL US OK KLAW 34.567 -98.417 338.0 19850130 20041231 723600 23051 CLAYTON MUNICIPAL AIRPARK AIRPORT US NM KCAO 36.449 -103.154 1511.8 19770827 20200625 723601 23007 CHILDRESS MUNICIPAL AP US TX KCDS 34.427 -100.28299999999999 595.0 19430215 19800901 723604 23007 CHILDRESS MUNICIPAL US TX KCDS 34.427 -100.28299999999999 595.0 19800910 20100731 723620 93040 SOCORRO MUNICIPAL AP US NM KONM 34.067 -106.9 1485.9 20070608 20200625 723620 99999 SOCORRO MUNI US NM KONM 34.022 -106.90299999999999 1485.9 19730101 20180514 723625 93057 GRANTS-MILAN MUNI AIRPORT US NM KGNT 35.165 -107.902 1987.3 19480101 20200625 723625 99999 GRANTS MILAN MUNI US NM KGNT 35.167 -107.9 1992.0 20000101 20031231 723626 03737 CURRITUCK COUNTY AIRPORT US NC KONX 36.399 -76.016 4.9 20050101 20200625 723626 93044 CURRITUCK CO US NC KONX 36.4 -76.017 5.0 19730101 19730108 723626 99999 CURRITUCK CO US NC KONX 36.4 -76.017 5.0 20040831 20041231 723627 23081 GALLUP MUNICIPAL AIRPORT US NM KGUP 35.514 -108.794 1972.4 19730101 20200625 723628 93942 CURTIS FIELD AIRPORT US TX KBBD 31.178 -99.324 556.9 20060101 20200625 723628 99999 BRADY/CURTIS FIELD US TX KBBD 31.183000000000003 -99.31700000000001 557.0 20050831 20051231 723629 53998 ORANGE COUNTY AIRPORT US TX KORG 30.069000000000003 -93.804 4.0 20060101 20200626 723629 99999 ORANGE CO US TX KORG 30.069000000000003 -93.801 4.0 20050831 20051231 723630 23047 AMARILLO RICK HUSBAND INTL AIRPORT US TX KAMA 35.23 -101.704 1098.5 19430301 20200625 723635 03024 HUTCHINSON COUNTY AIRPORT US TX KBGD 35.695 -101.395 930.9 20060101 20200625 723635 99999 HUTCHINSON CO US TX KBGD 35.7 -101.4 931.0 19990103 20051231 723640 99999 DONA ANA COUNTY INTL JETPORT ARPT/SANTA TERESA US NM KDNA 31.88 -106.70299999999999 1253.6 19950911 20200514 723647 03034 DOUBLE EAGLE II AIRPORT US NM KAEG 35.145 -106.795 1779.1 20060101 20200625 723647 99999 DOUBLE EAGLE II US NM KAEG 35.15 -106.8 1779.0 20010811 20051231 723650 23050 ALBUQUERQUE INTL SUNPORT AIRPORT US NM KABQ 35.042 -106.616 1618.5 19410701 20200625 723653 99999 ALBUQUERQUE RADAR US NM KZAB 35.167 -106.56700000000001 1621.0 20100512 20100512 723654 93091 LOS ALAMOS AIRPORT US NM KLAM 35.883 -106.28299999999999 2185.7 20060101 20200625 723654 99999 LOS ALAMOS US NM KLAM 35.879 -106.26899999999999 2186.0 19800228 20051231 723655 99999 MORIARTY US NM 34.98 -106.05 1890.0 19730101 20090331 723656 23049 SANTA FE MUNICIPAL AIRPORT US NM KSAF 35.617 -106.089 1933.7 19460801 20200625 723656 99999 SANTA FE CO. MUNI US NM KSAF 35.617 -106.083 1935.0 20000101 20031231 723657 03014 TORREON US NM K4SL 35.799 -107.181 2105.9 20060101 20130226 723657 99999 TORREON US NM K4SL 35.8 -107.18 2106.0 19730101 20051231 723658 23090 FOUR CORNERS REGIONAL ARPT US NM KFMN 36.744 -108.229 1674.9 19730101 20200625 723658 99999 FOUR CORNERS RGNL US NM KFMN 36.733000000000004 -108.21700000000001 1678.0 20000101 20031231 723659 99999 TAOS US NM KE23 36.383 -105.6 2126.0 19730101 19950720 723660 23007 CHILDRESS MUNICIPAL ARPT US TX KCDS 34.427 -100.28299999999999 594.7 20050101 20200625 723663 03012 TAOS REGIONAL AIRPORT US NM KSKX 36.45 -105.667 2161.3 20060101 20200625 723663 99999 TAOS MUNI APT(AWOS) US NM KSKX 36.45 -105.667 2161.0 19880319 20051231 723671 23051 CLAYTON MUNICIPAL AIRPARK US NM KCAO 36.449 -103.154 1515.5 19730101 19770831 723675 93092 CHAMA AWRS US NM KE33 36.9 -106.583 2393.0 20060101 20120930 723675 99999 CHAMA AWRS US NM KE33 36.883 -106.56700000000001 2393.0 19840607 20051231 723676 23048 TUCUMCARI MUNICIPAL ARPT US NM KTCC 35.181999999999995 -103.603 1239.0 19460801 20200625 723676 99999 TUCUMCARI MUNI US NM KTCC 35.183 -103.6 1239.0 20000101 20031231 723677 23054 LAS VEGAS MUNICIPAL ARPT US NM KLVS 35.654 -105.14200000000001 2095.2 19460801 20200625 723678 23052 RATON MUNICIPAL CREWS FIELD A US NM KRTN 36.741 -104.50200000000001 1935.2 19730101 19810402 723700 93167 KINGMAN AIRPORT US AZ KIGM 35.258 -113.93299999999999 1042.4 19990101 20200625 723700 99999 KINGMAN US AZ KIGM 35.259 -113.95 1051.0 19430329 19981231 723710 03162 PAGE MUNICIPAL AIRPORT US AZ KPGA 36.926 -111.448 1313.7 20060101 20200625 723710 99999 PAGE MUNI (AMOS) US AZ KPGA 36.933 -111.45 1304.0 19770827 20051231 723721 23184 PRESCOTT MUNICIPAL AP US AZ KPRC 34.652 -112.421 1539.8 19730101 19900228 723723 23184 ERNEST A. LOVE FIELD ARPT US AZ KPRC 34.652 -112.421 1536.8 19900228 20200625 723740 23194 WINSLOW-LINDBERGH REGIONAL AIRPORT US AZ KINW 35.028 -110.721 1489.3 19730101 20200625 723745 00374 PAYSON AIRPORT US AZ KPAN 34.257 -111.339 1572.2 20100115 20200625 723745 93139 PAYSON US AZ KPAN 34.257 -111.339 1572.0 19730101 20180516 723746 99999 SHOW LOW MUNICIPAL US AZ 34.25 -110.03299999999999 1943.0 19730102 19850125 723747 03101 SHOW LOW MUNICIPAL AIRPORT US AZ KSOW 34.264 -110.008 1954.1 20060101 20200625 723747 99999 SHOW LOW RGNL US AZ KSOW 34.266999999999996 -110.0 1955.0 19850117 20051231 723750 03103 FLAGSTAFF PULLIAM AIRPORT US AZ KFLG 35.144 -111.666 2134.5 20050101 20200625 723750 99999 FLAGSTAFF AIRPORT US AZ KFLG 35.133 -111.667 2135.0 19730101 20041231 723751 99999 US 19760305 19770213 723754 93027 ST JOHNS INDUS AIRPK ARPT US AZ KSJN 34.518 -109.37899999999999 1747.4 20060101 20200625 723754 99999 ST JOHNS INDUSTRIAL US AZ KSJN 34.516999999999996 -109.383 1748.0 19901022 20051231 723755 03103 FLAGSTAFF PULLIAM ARPT US AZ KFLG 35.144 -111.666 2139.1 19480101 20041231 723756 00375 SEDONA AIRPORT US AZ KSEZ 34.85 -111.78299999999999 1471.3 20090302 20200625 723756 99999 SEDONA US AZ KSEZ 34.849000000000004 -111.788 1471.3 19920408 20180515 723757 99999 FLAGSTAFF NEXRAD US AZ FSX 34.567 -111.2 2291.0 20001130 20021021 723758 54928 RUSK COUNTY AIRPORT US WI KRCX 45.497 -91.001 377.3 20090617 20200626 723758 99999 RUSK COUNTY US WI KRCX 45.5 -91.0 377.0 20050719 20090616 723759 53990 MC CURTAIN COUNTY REGIONAL AIRPORT US OK K4O4 33.909 -94.859 143.9 20060101 20200625 723759 99999 MC CURTAIN CO RGNL US OK K4O4 33.909 -94.859 144.0 20050722 20051231 723760 99999 FLAGSTAFF US AZ 35.217 -111.81700000000001 2181.6 19981002 20200624 723761 23901 CALDWELL MUNICIPAL AIRPORT US TX KRWV 30.516 -96.704 119.2 20060101 20200625 723761 99999 CALDWELL MUNI US TX KRWV 30.517 -96.7 119.0 20050607 20051231 723762 93244 SANTA YNEZ AIRPORT US CA KIZA 34.607 -120.07600000000001 204.5 20060105 20200625 723762 99999 SANTA YNEZ US CA KIZA 34.606 -120.07600000000001 205.0 20050430 20051222 723780 99999 US 19730101 19760305 723781 99999 GRAND CANYON PARK US AZ 35.95 -112.15 2014.0 19760309 19900206 723783 03195 GRAND CANYON NATL PARK APT US AZ KGCN 35.946 -112.155 2013.5 20060101 20200625 723783 99999 GRAND CANYON NATL P US AZ KGCN 35.95 -112.133 2014.0 19900208 20051231 723785 99999 PAGE MUNI (AMOS) & US AZ 36.933 -111.45 1314.0 19730102 19770802 723786 99999 KINGMAN (AMOS) & US AZ 35.25 -113.93299999999999 1033.0 19730101 19770802 723787 99999 LAKE HAVASU (AWOS) US AZ 34.467 -111.76700000000001 147.0 19730420 19940508 723788 53135 LAUGHLIN/BULLHEAD INTERNATIONAL AIRPORT US AZ KIFP 35.157 -114.559 211.8 20060101 20200625 723788 99999 LAUGHLIN BULLHEAD IN US AZ KIFP 35.15 -114.56700000000001 212.0 19910419 20051231 723800 99999 US 19730101 19750814 723801 99999 US 19750814 19770213 723805 23179 NEEDLES AIRPORT US CA KEED 34.768 -114.619 271.3 19770217 20200625 723810 23114 EDWARDS AIR FORCE BASE US CA KEDW 34.9 -117.867 704.4 19411201 20200625 723810 99999 EDWARDS AFB US CA KEDW 34.933 -117.9 705.0 20000101 20041231 723814 93121 TWENTYNINE PALMS NAAS US CA KNXP 34.3 -116.167 695.9 19770711 19891127 723815 23161 BARSTOW-DAGGETT AIRPORT US CA KDAG 34.854 -116.786 584.3 19490101 20200625 723816 03159 GENERAL WILLIAM J. FOX AIRFIELD AIRPORT US CA KWJF 34.741 -118.212 712.6 19740601 20200625 723820 23182 PDLE PRODN FLT/TST AF PLT US CA KPMD 34.629 -118.084 769.2 19730101 20200625 723820 99999 PALMDALE PRODUCTION US CA KPMD 34.633 -118.083 774.0 20000101 20031231 723825 23131 SOUTHERN CALIFORNIA LOGISTICS AIRPORT US CA KVCV 34.583 -117.383 879.4 19420101 20200625 723825 99999 S CALIF LOGISTICS US CA KVCV 34.6 -117.383 879.0 20041230 20041231 723826 93194 INYOKERN AIRPORT US CA KIYK 35.667 -117.833 748.9 20060101 20131104 723826 99999 INYOKERN US CA KIYK 35.659 -117.83 748.0 19730621 20051231 723830 23187 SANDBERG US CA KSDB 34.744 -118.72399999999999 1374.7 19730101 20200625 723840 23155 MEADOWS FIELD AIRPORT US CA KBFL 35.434 -119.054 149.1 19411001 20200625 723850 03133 YUCCA FLATS TEST S T US NV 36.95 -116.05 1196.9 19730101 19790514 723860 23169 MCCARRAN INTERNATIONAL AIRPORT US NV KLAS 36.071999999999996 -115.163 664.5 19730101 20200625 723870 03160 DESERT ROCK AIRPORT US NV KDRA 36.621 -116.02799999999999 984.5 19780515 20200625 723874 99999 BICYCLE LAKE FORT IRWIN AAF(N US CA 35.283 -116.617 716.0 19791111 19831205 723884 93218 JOLON HUNTER LIGGETT MIL RES US CA 36.0 -121.23299999999999 317.0 19880105 19891127 723890 93193 FRESNO YOSEMITE INTERNATIONAL AIRPORT US CA KFAT 36.78 -119.719 101.5 19411204 20200625 723894 03181 MAMMOTH YOSEMITE AIRPORT US CA KMMH 37.633 -118.85 2172.6 20060103 20200625 723894 99999 MAMMOTH YOSEMITE US CA KMMH 37.624 -118.838 2173.0 19840331 20051217 723895 23149 PORTERVILLE MUNICIPAL ARPT US CA KPTV 36.029 -119.06299999999999 134.7 20060101 20200625 723895 99999 PORTERVILLE MUNI US CA KPTV 36.033 -119.06700000000001 135.0 19920129 20051231 723896 93144 VISALIA MUNICIPAL AIRPORT US CA KVIS 36.317 -119.4 89.9 20060101 20200625 723896 99999 VISALIA MUNI US CA KVIS 36.317 -119.4 90.0 19730118 20051231 723897 23167 FRESNO CHANDLER DOWNTOWN AP US CA KFCH 36.733000000000004 -119.81700000000001 84.1 19950423 19970923 723897 99999 FRESNO CHANDLER EXECUTIVE US CA KFCH 36.732 -119.82 84.7 20150717 20200514 723898 53119 HANFORD MUNICIPAL AIRPORT US CA KHJO 36.319 -119.62899999999999 75.9 20060101 20200625 723898 99999 HANFORD MUNI US CA KHJO 36.317 -119.633 74.0 19981005 20051231 723900 93226 SAN SIMEON/PT. PIED US CA K87Q 35.666 -121.285 21.0 19990101 20050607 723900 99999 POINT PIEDRAS BLANCA US CA 35.67 -121.28 17.0 19430607 19981231 723910 93111 POINT MUGU US CA KNTD 34.117 -119.117 4.0 19730101 20200625 723914 93218 JOLON HUNTER LIGGETT MIL RES US CA 36.0 -121.23299999999999 317.0 19790315 19880105 723915 99999 SANTA CRUZ ISLAND US CA KSZN 34.02 -119.75 10.0 19730103 19800617 723920 99999 SANTA PAULA US CA 34.35 -119.06700000000001 75.0 19730207 19760305 723921 99999 POINT ARGUELLO(CGS) US CA 34.567 -120.667 2.0 19760309 19861124 723923 99999 SANTA BARBARA HARBOR US CA 34.4 -119.7 8.0 19770827 19960701 723924 99999 VENTURA HARBOR US CA 34.25 -119.25 7.0 19770827 19960701 723925 23190 SANTA BARBARA MUNICIPAL AIRPORT US CA KSBA 34.426 -119.84299999999999 2.7 19730101 20200625 723926 23136 CAMARILLO AIRPORT US CA KCMA 34.217 -119.083 23.5 20050101 20200625 723926 99999 CAMARILLO US CA KCMA 34.217 -119.1 23.0 19730101 20041231 723927 93110 OXNARD AIRPORT US CA KOXR 34.201 -119.20700000000001 11.0 19440401 20200625 723927 99999 OXNARD US CA KOXR 34.201 -119.20700000000001 14.0 20000101 20031231 723928 99999 SANTA PAULA ARPT US CA KSZP 34.35 -119.083 78.9 19841106 19841106 723929 99999 OXNARD / CHANNEL ISLAND US CA 34.17 -119.22 2.0 19760130 19960701 723930 93214 VANDENBERG AFB US CA KVBG 34.717 -120.56700000000001 112.5 20060101 20200625 723930 99999 VANDENBERG AFB US CA KVBG 34.75 -120.56700000000001 121.0 19510703 20051231 723935 99999 VANDENBERG RANGE US CA KXVW 34.717 -120.56700000000001 100.0 19950505 20020308 723940 23273 SANTA MARIA PUB/CAPT G A HANCOCK AP US CA KSMX 34.899 -120.449 73.8 19730101 20200625 723960 99999 US 19730101 19760210 723961 99999 PT.PIEDRAS BLANCA US CA 35.667 -121.28299999999999 10.0 19760730 19770728 723965 93209 PASO ROBLES MUNICIPAL ARPT US CA KPRB 35.67 -120.62799999999999 246.9 19411201 20200625 723980 93720 SALBRY-OCN CTY WICO RGNL AP US MD KSBY 38.341 -75.513 14.3 20050101 20200625 723990 14711 HARRISBURG INTERNATIONAL AIRPORT US PA KMDT 40.196 -76.77199999999999 95.1 20050101 20200625 724006 03701 CHESAPEAKE REGIONAL ARPT US VA KCPK 36.666 -76.321 6.1 20060101 20200625 724006 99999 CHESAPEAKE RGNL US VA KCPK 36.667 -76.317 6.0 20010811 20051231 724007 03719 SUFFOLK MUNICIPAL AIRPORT US VA KSFQ 36.681999999999995 -76.602 22.0 20050101 20200625 724007 99999 SUFFOLK EXECUTIVE US VA KSFQ 36.683 -76.6 22.0 19990114 20041231 724008 93781 HALIFAX COUNTY AIRPORT US NC KRZZ 36.439 -77.71 78.0 20060101 20090625 724008 99999 HALIFAX CO US NC KRZZ 36.433 -77.717 78.0 19990114 20051231 724010 13740 RICHMOND INTERNATIONAL AIRPORT US VA KRIC 37.512 -77.32300000000001 50.0 19420924 20200625 724014 93714 DINWIDDIE COUNTY AIRPORT US VA KPTB 37.183 -77.5 58.8 20060101 20200625 724014 99999 DINWIDDIE CO US VA KPTB 37.183 -77.5 59.0 19920807 20051231 724015 13726 BLACKSTONE FAA AIRPORT US VA KBKT 37.083 -77.95 19430601 19430701 724015 99999 ALLEN C PERKINSON BLACKSTONE AAF / FT PICKETT VIRGINIA USA US VA KBKT 37.074 -77.958 133.8 20030922 20200623 724016 93736 CHARLOTTESVILLE ALBEMARLE ARPT US VA KCHO 38.137 -78.455 195.1 19730101 20200625 724016 99999 CHARLOTTESVILLE ALB US VA KCHO 38.133 -78.45 195.0 20000101 20031231 724017 03707 FARMVILLE REGIONAL AIRPORT US VA KFVX 37.358000000000004 -78.438 127.1 20060101 20200625 724017 99999 FARMVILLE RGNL US VA KFVX 37.35 -78.433 127.0 19940718 20051231 724019 93773 WAKEFIELD MUNICIPAL ARPT US VA KAKQ 36.983000000000004 -77.001 33.8 20060101 20200625 724019 99999 WAKEFIELD MUNI US VA KAKQ 36.983000000000004 -77.0 34.0 19971210 20040121 724020 93739 WALLOPS FLIGHT FACILITY AIRPORT US VA KWAL 37.937 -75.46600000000001 14.0 19730101 20200625 724020 99999 WALLOPS ISL STN US VA KWAL 37.933 -75.483 12.0 19800101 19850311 724024 93739 WALLOPS ISLAND UAU US VA KWAL 37.937 -75.471 14.6 19791231 19910228 724025 99999 WEIRWOOD / KELLAM FIELD US VA 37.47 -75.88 12.0 19850814 19870813 724026 03716 ACCOMACK COUNTY AIRPORT US VA KMFV 37.647 -75.76100000000001 14.3 20060101 20200625 724026 99999 ACCOMACK CO US VA KMFV 37.647 -75.76100000000001 14.0 19750916 20051231 724027 99999 PARRAMORE BEACH US VA 37.53 -75.62 1.0 19750916 19940630 724028 99999 CAPE CHARLES COAST GUARD STATION US VA 37.25 -76.0 2.0 19790507 19910113 724029 93775 RICHMOND (ASOS) US VA KOFP 37.708 -77.434 62.5 20080101 20091231 724029 99999 RICHMOND (ASOS) US VA 37.7 -77.433 63.0 19970318 19970318 724030 93738 WASHINGTON DULLES INTERNATIONAL AP US VA KIAD 38.935 -77.447 88.4 19730101 20200625 724033 03706 SHANNON AIRPORT US VA KEZF 38.266999999999996 -77.449 25.9 20060101 20200625 724033 99999 SHANNON US VA KEZF 38.266999999999996 -77.45 26.0 19941016 20051231 724035 13773 QUANTICO MCAF US VA KNYG 38.504 -77.305 3.1 19730101 20200625 724036 03710 MANSAS RGNL/H P DAVS FD AP US VA KHEF 38.721 -77.515 58.5 20060101 20200625 724036 99999 MANASSAS RGNL DAVIS US VA KHEF 38.721 -77.515 59.0 19920408 20051231 724037 93728 DAVISON AAF AIRPORT US VA KDAA 38.717 -77.183 22.3 19570201 20200625 724037 99999 DAVISON AAF US VA KDAA 38.717 -77.183 22.0 20000101 20041231 724040 13721 NAVAL AIR STATION US MD KNHK 38.3 -76.417 11.9 19450301 20200625 724043 03756 EASTON/NEWNAM FIELD AIRPORT US MD KESN 38.804 -76.069 22.0 20060428 20200625 724043 99999 EASTON/NEWMAN/FLD US MD KESN 38.8 -76.067 22.0 19960229 20050524 724045 93720 SALISBURY OCEAN CIT US MD KSBY 38.341 -75.51 18.3 19730101 20100731 724046 99999 INDIAN RIVER COAST GUARD STATION US DE 38.62 -75.07 1.0 19750716 19920316 724047 99999 THOMAS POINT COAST GUARD STATION US MD 38.9 -76.43 1.0 19750916 19860903 724048 99999 COVE POINT COAST GUARD LIGHT STA US 38.38 -76.38 1.0 19750916 19860902 724049 99999 SMITH POINT / SUNNYBANK US VA 37.88 -76.18 1.0 19760130 19770110 724050 13743 RONALD REAGAN WASHINGTON NATL AP US VA KDCA 38.847 -77.035 3.1 19360901 20200625 724053 03717 WINCHESTER REGIONAL ARPT US VA KOKV 39.143 -78.14399999999999 221.6 20060101 20200625 724053 99999 WINCHESTER RGNL US VA KOKV 39.15 -78.15 222.0 19950101 20051231 724055 03714 LESSBURG EXECUTIVE AIRPORT US VA KJYO 39.078 -77.558 118.6 20060101 20200625 724055 99999 LEESBURG EXECUTIVE US VA KJYO 39.078 -77.558 119.0 19950101 20051231 724056 63805 MOUNTIAN EMPIRE AIRPORT US VA KMKJ 36.895 -81.35 780.0 20060101 20200625 724056 99999 MOUNTAIN EMPIRE US VA KMKJ 36.895 -81.35 780.0 19950423 20051231 724057 13701 PHILLIPS ARMY AIRFIELD US MD KAPG 39.472 -76.17 17.4 20060103 20200625 724057 99999 PHILLIPS AAF US MD KAPG 39.467 -76.167 17.0 19770701 20051228 724058 53818 VIRGINIA HIGHLANDS AIRPORT US VA KVJI 36.683 -82.03299999999999 630.9 20060101 20200625 724058 99999 VIRGINIA HIGHLANDS US VA KVJI 36.683 -82.03299999999999 636.0 19840607 20051231 724060 93721 BALTIMORE-WASHINGTON INTL AIRPORT US MD KBWI 39.173 -76.684 47.6 19450101 20200625 724064 99999 FORT RITCHIE/SITE R US MD 39.733000000000004 -77.433 275.0 19610911 20010612 724065 93733 TIPTON AIRPORT US MD KFME 39.083 -76.767 46.0 19591113 19890929 724065 99999 TIPTON US MD KFME 39.085 -76.759 45.7 20050519 20200624 724066 93706 HGRTWN RGNL-R.HNSON FLD AP US MD KHGR 39.705999999999996 -77.73 214.9 20060101 20200625 724066 99999 HAGERSTOWN RGNL RIC US MD KHGR 39.7 -77.717 215.0 19730122 20051231 724067 93744 MARTIN STATE AIRPORT US MD KMTN 39.333 -76.417 6.4 20060101 20200625 724067 99999 MARTIN STATE US MD KMTN 39.317 -76.4 7.0 19700701 20051231 724069 99999 STILLPOND COAST GUARD STATION US MD 39.33 -76.1 8.0 19750916 19890803 724070 93730 ATLANTIC CITY INTERNATIONAL AIRPORT US NJ KACY 39.452 -74.567 18.3 19470101 20200625 724074 93780 SOUTH JERSEY REGIONAL ARPT US NJ KVAY 39.941 -74.84100000000001 14.9 20060101 20200625 724074 99999 SOUTH JERSEY RGNL US NJ KVAY 39.95 -74.85 16.0 19950105 20051231 724075 13735 MILLVILLE MUNICIPAL ARPT US NJ KMIV 39.366 -75.078 18.3 19730101 20200625 724076 13724 ATLANTIC CITY (CGS) US NJ ATLN 39.379 -74.42399999999999 3.4 19750915 19910215 724077 54779 AEROFLEX-ANDOVER AIRPORT US NJ K12N 41.00899999999999 -74.736 176.8 20060101 20200625 724077 99999 AEROFLEX ANDOVER US NJ K12N 41.016999999999996 -74.733 178.0 19990426 20051231 724080 13739 PHILADELPHIA INTERNATIONAL AIRPORT US PA KPHL 39.873000000000005 -75.227 3.1 19730101 20200625 724083 99999 DOVER(NEXRAD) US DE KDOX 38.833 -75.433 15.0 19820625 19821121 724084 04739 MONMOUTH EXECUTIVE US NJ KBLM 40.183 -74.117 48.0 19830421 19991231 724084 54760 MONMOUTH EXECUTIVE AIRPORT US NJ KBLM 40.183 -74.133 48.5 20060101 20200625 724084 99999 MONMOUTH EXECUTIVE US NJ KBLM 40.183 -74.117 48.0 20000101 20051231 724085 94732 NE PHILADELPHIA AIRPORT US PA KPNE 40.079 -75.013 32.0 19730101 20200625 724085 99999 NORTHEAST PHILADELPH US PA KPNE 40.082 -75.01100000000001 37.0 20000101 20031231 724086 14793 WILLOW GROVE NAS US PA KNXX 40.2 -75.15 110.0 19730101 20110412 724087 99999 MANASQUAN INL COAST GUARD STATIO US 40.1 -74.02 1.0 19431101 19960409 724088 13707 DOVER AFB AIRPORT US DE KDOV 39.133 -75.467 8.5 19421201 20200625 724088 99999 DOVER AFB US DE KDOV 39.117 -75.467 9.0 20000101 20041231 724089 13781 WILMINGTON NEW CAST US DE KILG 39.673 -75.601 24.4 19420801 20100731 724090 14780 NAES/MAXFIELD FIELD US NJ KNEL 40.033 -74.35 30.8 19730101 20200625 724093 13764 SUSSEX COUNTY AIRPORT US DE KGED 38.69 -75.363 14.0 20060101 20200625 724093 99999 SUSSEX CO US DE KGED 38.683 -75.367 15.0 19870202 20051231 724094 54743 ESSEX COUNTY AIRPORT US NJ KCDW 40.876 -74.283 52.7 20060101 20200625 724094 99999 ESSEX CO US NJ KCDW 40.883 -74.283 53.0 19810805 20051231 724095 14792 TRENTON MERCER AIRPORT US NJ KTTN 40.277 -74.816 57.9 19730101 20200625 724095 99999 TRENTON MERCER US NJ KTTN 40.266999999999996 -74.8 65.0 20000101 20031231 724096 14706 MCGUIRE AFB AIRPORT US NJ KWRI 40.016999999999996 -74.6 39.9 19420801 20200625 724096 99999 MC GUIRE AFB US NJ KWRI 40.016999999999996 -74.583 40.0 20000101 20041231 724097 54738 MORRISTOWN MUNICIPAL AIRPORT US NJ KMMU 40.8 -74.417 57.0 20060101 20200625 724097 99999 MORRISTOWN MUNI US NJ KMMU 40.8 -74.417 57.0 19810112 20051231 724098 99999 AMBROSE / FT. TILDEN US NY 40.45 -73.82 1.0 19750915 19870430 724099 99999 SANDY HOOK COAST GUARD STATION US NJ 40.47 -74.02 5.0 19750911 19960627 724100 13733 LYNCHBURG RGNL/PRESTON GLENN FLD AP US VA KLYH 37.321 -79.207 286.5 19730101 20200626 724104 99999 SOMERSET ARPT ASOS US NJ KSMQ 40.633 -74.667 32.0 19990114 20041209 724105 93760 SHENANDOAH VALLEY RGNL ART US VA KSHD 38.264 -78.896 366.1 20060101 20200625 724105 99999 SHENANDOAH VALLEY RG US VA KSHD 38.266999999999996 -78.9 366.0 19730101 20051231 724106 13728 DANVILLE REGIONAL AIRPORT US VA KDAN 36.573 -79.335 174.0 19730101 20200625 724106 99999 DANVILLE RGNL US VA KDAN 36.567 -79.333 174.0 20000101 20031231 724107 53895 TWIN COUNTY AIRPORT US VA KHLX 36.766 -80.82300000000001 820.8 20060101 20200625 724107 99999 TWIN COUNTY US VA KHLX 36.766999999999996 -80.817 821.0 19950101 20051231 724110 13741 ROANOKE REGIONAL/WOODRUM FIELD AP US VA KROA 37.317 -79.97399999999999 358.1 19730101 20200625 724113 53881 VIRGINIA TECH AIRPORT US VA KBCB 37.208 -80.408 649.8 20060101 20200625 724113 99999 VIRGINIA TECH ARPT US VA KBCB 37.208 -80.408 650.0 19941016 20051231 724115 93757 INGALLS FIELD AIRPORT US VA KHSP 37.95 -79.817 1156.1 20060101 20200625 724115 99999 INGALLS FLD US VA KHSP 37.95 -79.833 1156.0 19730101 20051231 724116 13868 NEW RIVER VALLEY AIRPORT US VA KPSK 37.133 -80.683 641.6 19940818 20200625 724116 99999 DUBLIN/NEW RIV VLLY US VA KPSK 37.133 -80.683 642.0 20000101 20031231 724117 63802 LONESOME PINE AIRPORT US VA KLNP 36.988 -82.53 818.1 20060101 20200625 724117 99999 LONESOME PINE US VA KLNP 36.983000000000004 -82.53299999999999 818.0 19800227 20051231 724118 93797 MCKNBRG-BRUNWICK RGNL ARPT US VA KAVC 36.688 -78.054 134.7 20060101 20200625 724118 99999 MECKLENBURG BRUNSWI US VA KAVC 36.683 -78.05 135.0 19970123 20051231 724120 03872 RALEIGH COUNTY MEMORIAL AIRPORT US WV KBKW 37.784 -81.123 766.3 19730101 20200626 724125 03859 MERCER COUNTY AIRPORT US WV KBLF 37.298 -81.204 870.5 20000101 20200625 724125 99999 MERCER CO US WV KBLF 37.296 -81.208 871.0 19730101 19991231 724126 99999 WHITE SULPHUR SPRNG US WV KSSU 37.766999999999996 -80.333 549.0 19730101 19861008 724127 53801 GREENBRIER VALLEY ARIPORT US WV KLWB 37.867 -80.4 701.7 20060101 20200625 724127 99999 GREENBRIER VALLEY US WV KLWB 37.858000000000004 -80.399 702.0 19730101 20051231 724130 99999 US 19730101 19760304 724131 99999 PIKEVILLE (RAMOS) US KY 5I3 37.483000000000004 -82.51700000000001 209.0 19760305 19900206 724133 99999 PIKEVILLE REMOTE AUTOMATIC METEO US 37.48 -82.52 446.0 19900208 19920729 724140 13866 YEAGER AIRPORT US WV KCRW 38.379 -81.59 277.4 19730101 20200625 724165 03725 GRANT CO US WV KW99 38.994 -79.14399999999999 292.6 20060101 20130501 724165 99999 GRANT CO US WV 38.983000000000004 -79.15 293.5 20010811 20051231 724170 13729 ELKINS-RAND CO-J.RAND FIELD AIRPORT US WV KEKN 38.89 -79.855 597.7 19730101 20200625 724175 03802 HARRISON/MARION RGNL ARPT US WV KCKB 39.296 -80.229 366.7 20060101 20200625 724175 99999 HARRISON MARION RGN US WV KCKB 39.283 -80.217 371.0 19730101 20051231 724176 13736 MGTN RGNL-W L B HART FD AP US WV KMGW 39.643 -79.916 378.0 19730101 20200625 724177 13734 ETRN WV RGNL/SHPHERD FD AP US WV KMRB 39.404 -77.945 162.8 19730101 20200625 724180 13781 NEW CASTLE COUNTY AIRPORT US DE KILG 39.674 -75.60600000000001 24.1 20050101 20200625 724190 03889 JULIAN CARROLL AIRPORT US KY KJKL 37.591 -83.314 416.1 20050101 20200626 724200 14891 MANSFIELD LAHM REGIONAL AIRPORT US OH KMFD 40.82 -82.51799999999999 393.2 20050101 20200625 724210 93814 CINCINNATI/NORTHERN KENTUCKY INTL AP US KY KCVG 39.044000000000004 -84.67200000000001 269.1 19730101 20200625 724220 93820 BLUE GRASS AIRPORT US KY KLEX 38.041 -84.60600000000001 298.7 19730101 20200625 724230 93821 LOUISVILLE INTL-STANDIFORD FIELD AP US KY KSDF 38.181 -85.73899999999999 148.7 19730101 20200625 724233 53841 CAPITAL CITY AIRPORT US KY KFFT 38.185 -84.90299999999999 245.1 20060101 20200625 724233 99999 CAPITAL CITY ARPT US KY KFFT 38.183 -84.9 245.0 19970123 20051231 724235 13810 BOWMAN FIELD AIRPORT US KY KLOU 38.228 -85.664 164.6 19411101 20200625 724235 99999 BOWMAN FLD US KY KLOU 38.217 -85.65 166.0 20000101 20031231 724236 03889 JACKSON CARROLL ARPT US KY KJKL 37.591 -83.314 413.6 19730102 20100801 724237 53803 OWENSBORO-DAVIESS COUNTY AIRPORT US KY KOWB 37.75 -87.167 122.8 20060101 20200625 724237 99999 OWENSBORO DAVIESS C US KY KOWB 37.733000000000004 -87.167 124.0 19730101 20051231 724238 53886 HENDERSON CITY-COUNTY ARPT US KY KEHR 37.8 -87.68299999999999 118.0 20060101 20200625 724238 99999 HENDERSON CITY CO US KY KEHR 37.8 -87.68299999999999 118.0 19921008 20051231 724240 13807 GODMAN AAF AIRPORT US KY KFTK 37.9 -85.96700000000001 230.1 19450301 20200625 724240 99999 FORT KNOX/GODMAN US KY KFTK 37.9 -85.96700000000001 230.0 20000101 20041231 724243 03849 LDON-CRBN APT-MGEE FLD APT US KY KLOZ 37.086999999999996 -84.07700000000001 362.1 19910321 20200626 724250 03860 TRI-STATE/M.J.FERGUS US WV KHTS 38.365 -82.555 251.2 19730101 20200625 724270 03804 OAK RIDGE US TN KPKB 39.2 -81.27 263.3 19730101 19850531 724270 53868 OAK RIDGE US TN KOQT 36.023 -84.234 274.3 20100801 20200625 724270 99999 OAK RIDGE US TN KOQT 36.016999999999996 -84.21700000000001 279.0 20020503 20100731 724271 03804 PARKERSBURG WOOD COUNTY AP US WV KPKB 39.2 -81.27 263.3 19850531 19900206 724273 03804 MID-OHIO VALLEY REGIONAL AIRPORT US WV KPKB 39.34 -81.444 253.3 19900208 20200625 724275 14894 WHEELING OHIO COUNTY ARPT US WV KHLG 40.176 -80.64699999999999 359.4 19730101 20200625 724275 99999 WHEELING OHIO CO US WV KHLG 40.167 -80.65 364.0 20000101 20031231 724276 53859 DAYTON-WRIGHT BROTHERS APT US OH KMGY 39.594 -84.226 293.2 20060101 20200625 724276 99999 DAYTON WRIGHT BROTHE US OH KMGY 39.589 -84.225 292.0 19990114 20051231 724280 14821 PORT COLUMBUS INTERNATIONAL AIRPORT US OH KCMH 39.991 -82.87700000000001 248.7 19450401 20200625 724284 63825 BOLTON FIELD AIRPORT US OH KTZR 39.9 -83.133 275.8 20060101 20200625 724284 99999 BOLTON FLD US OH KTZR 39.9 -83.133 276.0 19810807 20051231 724285 13812 RICKENBACKER INTL AIRPORT US OH KLCK 39.817 -82.93299999999999 226.8 19420801 20200625 724285 99999 RICKENBACKER INTL US OH KLCK 39.8 -82.917 227.0 19930101 20041231 724286 93824 ZANESVILLE MUNICIPAL ARPT US OH KZZV 39.944 -81.892 268.2 19730101 20200625 724287 04848 METCALF FIELD AIRPORT US OH KTDZ 41.563 -83.476 189.6 20060101 20200625 724287 99999 METCALF FLD US OH KTDZ 41.567 -83.48299999999999 190.0 19980514 20051231 724288 04804 OHIO STATE UNIVERSITY ARPT US OH KOSU 40.078 -83.07799999999999 275.8 20060101 20200625 724288 99999 OHIO STATE UNIVERSI US OH KOSU 40.067 -83.06700000000001 276.0 19730622 20051231 724289 99999 TOLEDO COAST GUARD STATION US OH 41.7 -83.45 180.0 19760926 19960701 724290 93815 J.M.COX DAYTON INTERNATIONAL AIRPORT US OH KDAY 39.906 -84.219 305.7 19730101 20200625 724293 00376 MOUNT WERNER US CO K3MW 40.46 -106.76 3241.2 20050322 20140721 724293 99999 MOUNT WERNER US CO K3MW 40.46 -106.76 3241.0 20080101 20081231 724294 53844 FAIRFIELD COUNTY AIRPORT US OH KLHQ 39.756 -82.65700000000001 264.9 20060101 20200625 724294 99999 FAIRFIELD CO US OH KLHQ 39.75 -82.65 265.0 19970123 20051231 724295 03867 SPRINGFIELD BECKLEY US OH KSGH 39.833 -83.833 320.0 19730103 19991229 724295 63888 SPRINGFIELD-BECKLEY MUNICIPAL AIRPORT US OH KSGH 39.84 -83.84 320.3 20060103 20200625 724295 99999 SPRINGFIELD BECKLEY US OH KSGH 39.833 -83.833 320.0 20000103 20051229 724296 13841 AIRBORNE AIRPARK AIRPORT US OH KILN 39.431 -83.777 325.2 19430801 20200625 724296 99999 AIRBORNE AIRPARK US OH KILN 39.433 -83.8 328.0 20000101 20031231 724297 93812 CINA MUNI APT/LUKN FD APT US OH KLUK 39.103 -84.419 149.4 19730101 20200626 724298 04850 LIMA ALLEN COUNTY AIRPORT US OH KAOH 40.708 -84.027 297.2 20060101 20200625 724298 99999 LIMA ALLEN CO US OH KAOH 40.707 -84.027 297.0 19980514 20051231 724303 14813 AKRON FULTON INTL AIRPORT US OH KAKR 41.038000000000004 -81.464 318.2 19990502 20200625 724303 99999 AKRON FULTON INTL US OH KAKR 41.033 -81.467 325.0 20000101 20031231 724320 93817 EVANSVILLE REGIONAL AIRPORT US IN KEVV 38.044000000000004 -87.521 121.9 19730101 20200625 724325 99999 RACEWAY US IN 38.049 -87.381 122.0 19860203 19890829 724330 03879 SALEM-LECKRONE AIRPORT US IL KSLO 38.65 -88.96700000000001 173.7 20060101 20200625 724330 99999 SALEM-LECKRONE US IL KSLO 38.65 -88.96700000000001 174.0 19730101 20051231 724335 93894 MOUNT VERNON AIRPORT US IL KMVN 38.323 -88.85799999999999 146.3 20060101 20200626 724335 99999 MOUNT VERNON US IL KMVN 38.317 -88.867 146.0 19730101 20051231 724336 93810 SOUTHERN ILLINOIS AIRPORT US IL KMDH 37.78 -89.25 123.8 20060101 20200625 724336 99999 SOUTHERN ILLINOIS US IL KMDH 37.766999999999996 -89.25 125.0 19730101 20051231 724337 03838 VANDALIA FAA AIRPORT US IL KVLA 38.983000000000004 -89.167 19730101 19730515 724338 13802 SCOTT AIR FORCE BASE/MIDAMERICA AIRPORT US IL KBLV 38.55 -89.85 139.9 19380101 20200625 724338 99999 SCOTT AFB MIDAMERIC US IL KBLV 38.533 -89.833 140.0 20000101 20041231 724339 03865 WILLIAMSON COUNTY RGNL APT US IL KMWA 37.75 -89.0 140.2 20060101 20200625 724339 99999 WILLIAMSON CO RGNL US IL KMWA 37.75 -89.01700000000001 144.0 19760116 20051231 724340 13994 LAMBERT-ST LOUIS INTERNATIONAL AP US MO KSTL 38.753 -90.374 161.9 19730101 20200625 724343 99999 ST LOUIS NEXRAD US MO 36.7 -90.68299999999999 220.0 20000817 20020424 724345 03966 SPIRIT OF ST LOUIS AIRPORT US MO KSUS 38.657 -90.656 140.8 19730101 20200625 724347 53904 ST CHARLES CO SMARTT ARPT US MO KSET 38.929 -90.428 132.9 20060101 20200625 724347 99999 ST CHARLES CO SMARTT US MO KSET 38.933 -90.43299999999999 133.0 20010811 20051231 724350 03816 BARKLEY REGIONAL AIRPORT US KY KPAH 37.056 -88.774 125.9 19890101 20200625 724354 63815 SOMERSET-PULASKI CO-J.T. WILSON FIELD AIRPORT US KY KSME 37.054 -84.615 282.6 20060101 20200626 724354 99999 SOMERSET PULASKI CO US KY KSME 37.053000000000004 -84.616 283.0 19920807 20051231 724356 53866 SHELBYVILLE MINUCIPAL ARPT US IN KGEZ 39.578 -85.803 245.1 20060101 20200625 724356 99999 SHELBYVILLE MUNI US IN KGEZ 39.583 -85.8 245.0 20010811 20051231 724360 13803 COLUMBUS BAKALAR US IN KBAK 39.266999999999996 -85.9 199.9 19840816 19840823 724361 13803 COLUMBUS BAKALAR US IN KBAK 39.266999999999996 -85.9 199.9 19430501 19900206 724363 13803 COLUMBUS MUNICIPAL AIRPORT US IN KBAK 39.266999999999996 -85.9 200.0 19900208 20200625 724363 99999 COLUMBUS MUNI US IN KBAK 39.25 -85.883 200.0 20000102 20041231 724365 53896 HUNTINGBURG AIRPORT US IN KHNB 38.249 -86.954 161.2 20060101 20200625 724365 99999 HUNTINGBURG US IN KHNB 38.25 -86.95 161.0 19940103 20051231 724370 93823 TERRE HAUTE HULMAN REGIONAL A US IN HUF 39.45 -87.3 175.3 19480101 19850531 724370 99999 TERRE HAUTE HULMAN REGIONAL A US IN HUF 39.45 -87.3 175.3 20011208 20030504 724371 93823 TERRE HAUTE HULMAN REGIONAL A US IN 39.45 -87.3 175.3 19850531 19900206 724373 03868 TER HUTE INTL-HULMAN FD AP US IN KHUF 39.452 -87.309 175.3 20050101 20200625 724373 93823 TERRE HAUTE INTL HU US IN KHUF 39.45 -87.3 180.0 19900208 19991231 724373 99999 TERRE HAUTE INTL HU US IN KHUF 39.45 -87.3 180.0 20000101 20041231 724375 03893 MONROE COUNTY AIRPORT US IN KBMG 39.133 -86.617 257.3 20060101 20200625 724375 99999 MONROE CO US IN KBMG 39.133 -86.617 258.0 19730101 20051231 724380 93819 INDIANAPOLIS INTERNATIONAL AIRPORT US IN KIND 39.725 -86.28200000000001 241.1 19421006 20200625 724384 53842 EAGLE CREEK AIRPARK ARPT US IN KEYE 39.825 -86.296 250.9 20060101 20200625 724384 99999 EAGLE CREEK AIRPARK US IN KEYE 39.830999999999996 -86.294 251.0 19990114 20051231 724385 04828 ANRSN MUNI DRNGTON FLD AP US IN KAID 40.117 -85.617 274.3 20060101 20200625 724385 99999 ANDERSON MUNI DARLIN US IN KAID 40.117 -85.617 280.0 19840816 20051231 724386 14835 PURDUE UNIVERSITY AIRPORT US IN KLAF 40.412 -86.93700000000001 182.6 19730101 20200625 724387 54807 KOKOMO MUNICIPAL AIRPORT US IN KOKK 40.528 -86.059 253.0 20060101 20200625 724387 99999 KOKOMO MUNI US IN KOKK 40.533 -86.06700000000001 253.0 19940728 20051231 724388 14829 GOSHEN MUNICIPAL AIRPORT US IN KGSH 41.533 -85.78299999999999 253.0 19961002 20200626 724388 99999 GOSHEN MUNI US IN KGSH 41.533 -85.8 252.0 20000101 20031231 724389 12991 SHIP SHOAL 207A US LA KGSM 28.517 -90.96700000000001 32.3 20061020 20100513 724389 99999 SHIP SHOAL 207A US LA KGSM 28.53 -90.98 1.0 20040904 20050920 724390 93822 ABRAHAM LINCOLN CAPITAL AIRPORT US IL KSPI 39.845 -89.684 181.1 19730101 20200625 724394 99999 ALTON US IL 38.883 -90.05 166.0 19840225 19840229 724395 03958 ST LOUIS REGIONAL AIRPORT US IL KALN 38.883 -90.05 165.5 20060101 20200625 724395 99999 ST LOUIS RGNL US IL KALN 38.883 -90.03299999999999 166.0 19730101 20051231 724396 93989 QUINCY RGNL BALDWIN US IL KUIN 39.937 -91.19200000000001 233.5 19730101 20100801 724397 54831 CENTRAL ILLINOIS REGIONAL AIRPORT US IL KBMI 40.483000000000004 -88.95 263.7 20060101 20200625 724397 99999 CENTRAL ILLINOIS RG US IL KBMI 40.467 -88.917 265.0 19760402 20051231 724398 99999 WEST PLAINS US IL 36.883 -91.9 374.0 19760402 20010516 724400 13995 SPRINGFIELD-BRANSON REGIONAL AIRPORT US MO KSGF 37.24 -93.39 384.7 19730101 20200625 724420 13997 ROLLA NATIONAL AIRPORT US MO KVIH 38.132 -91.765 338.3 20050101 20200625 724430 93989 QUINCY RGNL-BLDWN FLD ARPT US IL KUIN 39.937 -91.19200000000001 234.4 20050101 20200625 724450 03945 COLUMBIA REGIONAL AIRPORT US MO KCOU 38.817 -92.21799999999999 272.2 19730101 20200625 724453 03994 SEDALIA MEMORIAL AIRPORT US MO KDMO 38.704 -93.18299999999999 274.3 20060101 20200625 724453 99999 SEDALIA MEMORIAL US MO KDMO 38.707 -93.176 277.0 19970123 20051231 724454 93996 FARMINGTON REGIONAL ARPT US MO KFAM 37.760999999999996 -90.428 288.7 19950210 20200625 724454 99999 FARMINGTON RGNL US MO KFAM 37.760999999999996 -90.429 289.0 20000101 20031231 724455 14938 KIRKSVILLE REGIONAL ARPT US MO KIRK 40.097 -92.54299999999999 294.4 19730101 20200625 724455 99999 KIRKSVILLE RGNL US MO KIRK 40.083 -92.53299999999999 294.0 20000101 20031231 724456 13997 ROLLA/VICHY AIRPORT US MO KVIH 38.131 -91.76799999999999 346.6 19730101 20100801 724457 03938 WAYNESVILLE REGIONAL AIRPORT AT FORNEY FIELD US MO KTBN 37.75 -92.15 353.3 19630320 20200625 724457 99999 WAYNESVILLE RGNL AR US MO KTBN 37.733000000000004 -92.133 353.0 20000101 20041231 724458 03963 JEFFERSON CITY MEMO ARPT US MO KJEF 38.591 -92.156 174.7 20060101 20200625 724458 99999 JEFFERSON CITY MEM US MO KJEF 38.583 -92.15 167.0 19731129 20051231 724459 53931 LEE C FINE MEMORIAL ARPT US MO KAIZ 38.096 -92.553 264.9 20060101 20200625 724459 99999 LEE C FINE MEM US MO KAIZ 38.1 -92.55 265.0 19850423 20051231 724460 03947 KANSAS CITY INTERNATIONAL AIRPORT US MO KMCI 39.297 -94.73100000000001 306.3 19730101 20200625 724461 13988 KANSAS CITY DOWNTOWN AP US MO KMKC 39.121 -94.59700000000001 228.6 19480101 19900206 724462 03073 CROCKETT HOUSTON COUNTY AP US TX KDKR 31.307 -95.404 106.1 20050611 20200516 724462 99999 HOUSTON CO US TX KDKR 31.307 -95.404 106.1 20080103 20081230 724463 13988 C.R. WHEELER DOWNTOWN ARPT US MO KMKC 39.121 -94.59700000000001 226.2 19900208 20200625 724463 99999 CHARLES B WHEELER D US MO KMKC 39.117 -94.583 231.0 20000101 20031231 724464 53916 AGRICULTURAL SCIENCE CENTER US MO KCDJ 39.823 -93.579 234.4 20060101 20200625 724464 99999 CHILLICOTHE AGRI-SC US MO KCDJ 39.817 -93.583 234.0 19990114 20051231 724466 03929 RICHARD GEBAUR US MO KGVW 38.844 -94.56 321.9 19540327 20041231 724466 99999 RICHARDS-GEBAUR AP US MO KGVW 38.85 -94.55 333.0 20000101 20000110 724467 13930 WHITEMAN AFB AIRPORT US MO KSZL 38.717 -93.55 265.2 19421201 20200625 724467 99999 WHITEMAN AFB US MO KSZL 38.717 -93.55 265.0 20000101 20041231 724468 03967 JOHNSON CO EXECUTIVE ARPT US KS KOJC 38.85 -94.73899999999999 326.1 20060101 20200625 724468 99999 JOHNSON CO EXECUTIVE US KS KOJC 38.85 -94.73299999999999 334.0 19730101 20051231 724475 93909 NEW CENTURY AIRCENTER ARPT US KS KIXD 38.832 -94.89 331.3 19781124 20200626 724475 99999 JOHNSON CO. INDUSTR US KS KIXD 38.833 -94.883 331.0 20000101 20031231 724490 13993 ROSECRANS MEMORIAL AIRPORT US MO KSTJ 39.774 -94.92299999999999 249.3 19440301 20200625 724490 99999 ST. JOSEPH/ROSE-CRA US MO KSTJ 39.766999999999996 -94.917 249.0 20000101 20031231 724500 03928 WICHITA EISENHOWER NATIONAL US KS KICT 37.648 -97.43 402.6 19730101 20200625 724502 13932 STROTHER FIELD AIRPORT US KS KWLD 37.168 -97.037 350.5 20060101 20200625 724502 99999 STROTHER FLD US KS KWLD 37.167 -97.03299999999999 354.0 19970123 20051231 724503 99999 SPENCER US ID 44.35 -112.18 1793.0 19970123 20041224 724504 03974 COLONEL JAMES JABARA ARPT US KS KAAO 37.746 -97.221 433.1 20060101 20200625 724504 99999 COL JAMES JABARA US KS KAAO 37.75 -97.21700000000001 433.0 19870710 20051231 724505 03923 MCCONNELL AFB AIRPORT US KS KIAB 37.617 -97.26700000000001 417.9 19531201 20200625 724505 99999 MC CONNELL AFB US KS KIAB 37.617 -97.26700000000001 418.0 20000103 20041231 724506 13986 HUTCHINSON MUNICIPAL ARPT US KS KHUT 38.065 -97.861 470.3 19450201 20200625 724506 99999 HUTCHINSON MUNI US KS KHUT 38.067 -97.85 470.0 20000101 20031231 724507 13981 CHANUTE MARTIN JOHNSON APT US KS KCNU 37.67 -95.484 300.2 19730101 20200625 724508 03997 LAWRENCE MUNICIPAL AIRPORT US KS KLWC 39.008 -95.212 253.6 20060101 20200626 724508 99999 LAWRENCE MUNI US KS KLWC 39.010999999999996 -95.21700000000001 254.0 19970123 20051231 724509 53939 NEWTON-CITY-COUNTY AIRPORT US KS KEWK 38.068000000000005 -97.275 467.0 20060101 20200625 724509 99999 NEWTON CITY CO US KS KEWK 38.058 -97.26700000000001 467.0 19920408 20051231 724510 13985 DODGE CITY REGIONAL AIRPORT US KS KDDC 37.769 -99.96799999999999 787.0 19430419 20200626 724515 23064 GARDEN CITY REGIONAL ARPT US KS KGCK 37.927 -100.725 878.4 19430201 20200626 724515 99999 GARDEN CITY RGNL US KS KGCK 37.917 -100.71700000000001 881.0 20000101 20031231 724516 23020 LIBERAL MUNICIPAL AIRPORT US KS KLBL 37.05 -100.96700000000001 875.7 20060101 20200625 724516 99999 LIBERAL MUNI US KS KLBL 37.033 -100.95 879.0 19430618 20051231 724517 13940 GREAT BEND MUNICIPAL ARPT US KS KGBD 38.35 -98.867 573.0 20060101 20200625 724517 99999 GREAT BEND MUNI US KS KGBD 38.35 -98.867 575.0 19430801 20051231 724518 03968 HAYS REGIONAL AIRPORT US KS KHYS 38.85 -99.26700000000001 609.0 20060101 20200626 724518 99999 HAYS RGNL US KS KHYS 38.842 -99.273 609.0 19800825 20051231 724519 93967 COFFEYVILLE MUNICIPAL ARPT US KS KCFV 37.091 -95.566 229.2 20060101 20200625 724519 99999 COFFEYVILLE MUNI US KS KCFV 37.1 -95.56700000000001 230.0 19970123 20051231 724520 03957 MEDICINE LODGE US KS KP28 37.284 -98.553 467.9 19780310 20200625 724530 13969 PONCA CITY REGIONAL ARPT US OK KPNC 36.736999999999995 -97.102 304.8 20050101 20200625 724550 13947 MARSHALL ARMY AIRFIELD US KS KFRI 39.05 -96.76700000000001 324.6 19380817 20200625 724550 99999 FT RILEY/MARSHALL A US KS KFRI 39.1 -96.76700000000001 320.0 20000103 20041006 724555 03936 MANHATTAN REGIONAL AIRPORT US KS KMHK 39.135 -96.679 321.9 20060101 20200625 724555 99999 MANHATTAN RGNL US KS KMHK 39.133 -96.667 322.0 19730101 20051231 724556 13989 EMPORIA MUNICIPAL AIRPORT US KS KEMP 38.329 -96.195 364.5 19730101 20200625 724556 99999 EMPORIA MUNI US KS KEMP 38.332 -96.191 368.0 20000101 20031231 724560 13996 PHILIP BILLARD MUNICIPAL AIRPORT US KS KTOP 39.073 -95.626 267.0 19730101 20200626 724565 13920 FORBES FIELD AIRPORT US KS KFOE 38.95 -95.664 325.2 19421001 20200625 724565 99999 FORBES FLD US KS KFOE 38.95 -95.65 329.0 20000101 20031231 724567 13921 SHERMAN AAF US KS KFLV 39.367 -94.917 235.0 19370203 19981001 724580 13984 BLOSSER MUNICIPAL AIRPORT US KS KCNK 39.551 -97.65100000000001 447.8 19730101 20200625 724585 93997 RUSSELL MUNICIPAL AIRPORT US KS KRSL 38.876 -98.809 568.2 19430201 20200625 724586 03919 SALINA MUNICIPAL AIRPORT US KS KSLN 38.8 -97.65 386.8 19730101 20200625 724586 13922 SALINA MUNI US KS KSLN 38.783 -97.65 393.0 19421101 19650601 724600 99999 ELKHART / ELKHART-MORTON COUNTY US 37.0 -101.88 1102.0 19771006 20050504 724604 93076 ELKHART-MORTON CO AIRPORT US KS KEHA 37.0 -101.883 1104.0 20060101 20200625 724604 99999 ELKHART MORTON CO US KS KEHA 37.001 -101.88 1104.0 19920505 20051231 724620 23061 SAN LUIS VALLEY REGIONAL AIRPORT US CO KALS 37.439 -105.861 2296.1 19730101 20200625 724625 93005 DURA-LA PLATA CO AIRPORT US CO KDRO 37.143 -107.76 2033.0 20060101 20200625 724625 99999 DURANGO-LA PLATA CO US CO KDRO 37.14 -107.76 2038.0 19730101 20051231 724626 99999 DURANGO AVIATION WEATHER REPORTI US 37.28 -107.87 2012.0 19730101 19910215 724627 03011 TELLURIDE REGIONAL AIRPORT US CO KTEX 37.95 -107.9 2770.9 20060101 20200625 724627 99999 TELLURIDE RGNL US CO KTEX 37.95 -107.917 2767.0 19870213 20051231 724630 99999 LAMAR US CO 38.083 -102.617 1103.0 19741113 20040306 724631 99999 US 19730101 19741024 724635 23067 LA JUNTA MUNICIPAL AIRPORT US CO KLHX 38.049 -103.51299999999999 1278.3 19421101 20200625 724636 03013 LAMAR MUNICIPAL AIRPORT US CO KLAA 38.07 -102.68799999999999 1129.0 20060101 20200625 724636 99999 LAMAR MUNI US CO KLAA 38.07 -102.68799999999999 1130.0 19951128 20051231 724640 93058 PUEBLO MEMORIAL AIRPORT US CO KPUB 38.289 -104.506 1441.4 19421001 20200625 724645 23070 PERRY STOKES AIRPORT US CO KTAD 37.262 -104.338 1749.9 19730101 20200625 724646 03028 COMANCHE NATIONAL GRASSLAND US CO KSPD 37.283 -102.61399999999999 1335.9 20060101 20200625 724646 99999 SPRINGFIELD COMANCHE US CO KSPD 37.283 -102.617 1335.0 19990114 20051231 724650 23065 RENNER FIELD/GOODLAND MINI AIRPORT US KS KGLD 39.367 -101.693 1114.4 19730101 20200625 724655 93990 HILL CITY MUNICIPAL ARPT US KS KHLC 39.376 -99.83 666.9 19730101 20200625 724660 93037 CITY OF COLORADO SPRINGS MUNICIPAL AP US CO KCOS 38.81 -104.68799999999999 1884.0 19420901 20200625 724663 99999 PETERSON AFB US CO 38.817 -104.73299999999999 1876.0 19420901 19480401 724665 93010 LIMON MUNICIPAL AIRPORT US CO KLIC 39.275 -103.666 1638.0 19730101 20200625 724665 99999 LIMON MUNI US CO KLIC 39.266999999999996 -103.667 1635.0 20000101 20031231 724666 93067 CENTENNIAL AIRPORT US CO KAPA 39.57 -104.84899999999999 1793.1 20060101 20200625 724666 99999 CENTENNIAL US CO KAPA 39.57 -104.84899999999999 1793.0 19801204 20051231 724670 03017 DENVER INTL AP US CO KDEN 39.833 -104.65799999999999 1655.4 19741113 19940529 724671 99999 LEADVILLE/LAKE CO. US CO LXV 39.25 -106.3 3096.0 19480103 19900206 724673 93009 LEADVILLE/LAKE COUNTY APT US CO KLXV 39.229 -106.31700000000001 3027.3 20060101 20200625 724673 99999 LAKE CO US CO KLXV 39.22 -106.31700000000001 3026.0 19900208 20051231 724674 94050 MEEKER AIRPORT US CO KEEO 40.044000000000004 -107.889 1940.4 20060101 20200625 724674 99999 MEEKER US CO KEEO 40.049 -107.88600000000001 1957.0 19781031 20051231 724675 23063 EAGLE CO REGIONAL AIRPORT US CO KEGE 39.65 -106.917 1980.3 19730101 20200625 724675 99999 EAGLE CO RGNL US CO KEGE 39.633 -106.917 1993.0 20000101 20031231 724676 93073 ASPEN-PITKIN COUNTY ARPT US CO KASE 39.23 -106.87100000000001 2353.1 20060101 20200625 724676 99999 ASPEN PITKIN CO SARD US CO KASE 39.223 -106.869 2384.0 19730101 20051231 724677 93007 GUNSN-CRSTED BUTTE RGL APT US CO KGUC 38.533 -106.93299999999999 2336.6 20020902 20200625 724677 99999 GUNNISON CO. (AWOS) US CO KGUC 38.534 -106.93299999999999 2339.0 19730101 20041231 724678 94033 STEAMBOAT SPRINGS/BOB ADAMS FIELD AIRPORT US CO KSBS 40.516999999999996 -106.867 2096.7 20110214 20200625 724678 99999 STEAMBOAT SPRINGS B US CO KSBS 40.516 -106.866 2096.0 19840607 20040402 724679 99999 WINTER PARK RESORT US CO 39.88 -105.77 2771.0 19860501 19930715 724680 94015 BUTTS AAF AIRPORT US CO KFCS 38.678000000000004 -104.757 1779.4 19660915 20200625 724680 99999 FORT CARSON/BUTTS US CO KFCS 38.7 -104.76700000000001 1789.0 20000104 20041230 724684 99999 SALIDA US CO 38.516999999999996 -106.01700000000001 2186.0 19870403 19920707 724685 99999 SALIDA/ALEXANDER US CO 0V2 38.533 -106.05 2282.0 19730101 19860910 724686 99999 GUNNISON AVIATION WEATHER REPORT US 38.6 -106.92 2380.0 19730101 19910211 724689 03026 KIT CARSON COUNTY AIRPORT US CO KITR 39.245 -102.28399999999999 1277.7 20060101 20200625 724689 99999 KIT CARSON COUNTY US CO KITR 39.25 -102.28299999999999 1286.0 19990114 20051231 724690 23062 DENVER WSFO US CO KDNR 39.75 -104.867 1612.0 19400515 19950301 724690 99999 DENVER/STAPLETON INT US CO KDNR 39.75 -104.867 1611.9 20021121 20021121 724694 00450 FRONT RANGE AIRPORT US CO KFTG 39.784 -104.538 1680.4 20051203 20200130 724694 99999 FRONT RANGE US CO KFTG 39.785 -104.54299999999999 1680.1 20080101 20180516 724695 23036 BUCKLEY AIR FORCE BASE US CO KBKF 39.717 -104.75 1726.1 19440301 20200625 724695 99999 BUCKLEY AFB US CO KBKF 39.7 -104.75 1726.0 20000101 20041231 724696 99999 FRASER US CO 39.95 -105.833 2609.0 19730101 19740624 724697 99999 FORT COLLINS DOWNTOWN US CO 40.588 -105.042 1505.4 19730101 19940901 724698 24015 COLORADO PLAINS RGNL ARPT US CO KAKO 40.167 -103.21700000000001 1421.3 19730101 20200625 724698 99999 COLORADO PLAINS RGNL US CO KAKO 40.183 -103.21700000000001 1437.0 20000101 20031231 724699 03065 ATCT ROCKY MOUNTAIN METRO US CO KBJC 39.9 -105.117 1705.4 20060101 20200625 724699 99999 BROOMFIELD/JEFFCO US CO KBJC 39.917 -105.117 1728.0 19810801 20051231 724700 93141 CARBON COUNTY AIRPORT US UT KPUC 39.609 -110.755 1804.7 20060101 20200625 724700 99999 PRICE/CARBON COUNTY US UT KPUC 39.617 -110.75 1799.0 19770827 20051231 724720 99999 BLANDING US UT 37.617 -109.46700000000001 1840.0 19730101 20200623 724721 93025 BLANDING US UT 37.617 -109.46700000000001 184.1 19750814 19900206 724723 93025 BLANDING MUNI US UT K4BL 37.583 -109.48299999999999 1789.0 19900208 20080612 724723 99999 BLANDING MUNI US UT 37.583 -109.48299999999999 1789.0 20000101 20041231 724725 99999 TOOELE US UT 40.32 -112.3 1628.0 19510625 20020930 724733 23170 HANKSVILLE US UT KHVE 38.417 -110.7 1355.1 20140724 20200625 724735 23170 HANKSVILLE US UT KHVE 38.371 -110.715 1354.5 19730101 20121001 724735 99999 HANKSVILLE US UT K4HV 38.37 -110.72 1314.0 20000101 20041231 724736 99999 BULLFROG MARINA US UT 37.5 -110.7 1110.0 19730101 19960319 724737 00377 INVERNESS AIRPORT US FL KINF 28.816999999999997 -82.31700000000001 15.2 20090812 20200625 724737 99999 INVERNESS MUNI AIRPORT US FL KINF 28.804000000000002 -82.318 20.0 20180101 20180516 724739 99999 CARRABELLE THOMPSON US FL 29.842 -84.70100000000001 6.1 20061010 20061012 724741 99999 LA BELLE MUNI US FL 26.744 -81.433 5.5 20061010 20061023 724742 99999 VANDENBERG US FL KX16 28.02 -82.35 7.0 20061010 20061012 724743 99999 PHILLIPS PLATFORM US AL KRAM 29.05 -88.08 10.0 20050628 20111107 724750 23176 MILFORD MUNICIPAL AIRPORT US UT KMLF 38.417 -113.01700000000001 1536.2 20050101 20200624 724750 99999 MILFORD MUNICIPAL US UT KMLF 38.417 -113.01700000000001 1536.0 19730101 20180515 724751 99999 US 19760305 19770213 724754 23186 ST GEORGE MUNICIPAL ARPT US UT KSGU 37.1 -113.6 894.9 20060101 20200625 724754 99999 ST GEORGE MUNI US UT KSGU 37.091 -113.59299999999999 896.0 19800701 20051231 724755 93129 CEDAR CITY REGIONAL ARPT US UT KCDC 37.709 -113.094 1702.6 19730101 20200625 724756 23159 BRYCE CANYON AIRPORT US UT KBCE 37.705999999999996 -112.146 2312.2 19730101 20200625 724756 99999 BRYCE CANYON US UT KBCE 37.7 -112.145 2313.0 20000101 20031231 724757 23176 MILFORD MUNICIPAL AP US UT KMLF 38.417 -113.01700000000001 1534.1 19770101 19830430 724760 23066 GRAND JUNCTION REGIONAL AIRPORT US CO KGJT 39.134 -108.54 1480.7 19730101 20200625 724765 93013 MONTROSE REGIONAL AIRPORT US CO KMTJ 38.506 -107.899 1743.5 20060101 20200625 724765 99999 MONTROSE RGNL US CO KMTJ 38.516999999999996 -107.89399999999999 1755.0 19730101 20051231 724766 99999 MONTROSE US CO 38.5 -107.883 1752.0 19730101 19901011 724767 93069 CORTEZ MUNICIPAL AIRPORT US CO KCEZ 37.306999999999995 -108.626 1801.4 20060101 20200625 724767 99999 CORTEZ MUNI US CO KCEZ 37.3 -108.633 1804.0 19730101 20051231 724768 24051 GREELEY-WELD COUNTY ARPT US CO KGXY 40.436 -104.632 1431.7 20060101 20200625 724768 99999 GREELEY WELD CO US CO KGXY 40.437 -104.633 1432.0 19880105 20051231 724769 94035 FORT COLLINS LOVELAND AP US CO KFNL 40.45 -105.01700000000001 1528.6 20060101 20200625 724769 99999 FORT COLLINS (AWOS) US CO KFNL 40.45 -105.01700000000001 1529.0 19860501 20051231 724770 03170 EUREKA US NV KP68 39.601 -116.006 1809.3 20100801 20200625 724770 99999 EUREKA (RAMOS) US NV KP68 39.6 -116.0 1811.0 19730101 20100731 724771 99999 GREEN RIVER RANGE US UT 39.0 -110.15 1241.0 19750814 19900219 724773 93132 GREEN RIVER RANGE US UT KU28 39.0 -110.15 1255.8 20060102 20090501 724773 99999 GREEN RIVER RANGE US UT 39.0 -110.17 1241.0 19900314 20051221 724776 93075 CANYONLANDS FIELD AIRPORT US UT KCNY 38.75 -109.76299999999999 1389.9 20060101 20200625 724776 99999 CANYONLANDS FLD US UT KCNY 38.75 -109.75 1388.0 19730301 20051231 724795 99999 DELTA US UT KU24 39.33 -112.58 1414.0 19730101 20121001 724796 94128 LOGAN-CACHE AIRPORT US UT KLGU 41.787 -111.853 1357.6 19990101 20200625 724796 99999 LOGAN CACHE US UT KLGU 41.783 -111.85 1358.0 19811111 19981231 724797 23176 MILFORD MUNI BRISCOE US UT KMLF 38.417 -113.01700000000001 1534.1 19970101 20200625 724800 23157 BISHOP AIRPORT US CA KBIH 37.371 -118.35799999999999 1250.3 19430116 20200625 724810 23203 CASTLE AFB US CA KMER 37.383 -120.56700000000001 58.2 19420101 20200625 724810 99999 CASTLE US CA KMER 37.38 -120.568 57.6 20011031 20011115 724815 23257 MRCD MUNI/MACREADY FLD APT US CA KMCE 37.285 -120.51299999999999 46.3 20060101 20200625 724815 99999 MERCED MUNI MACREADY US CA KMCE 37.285 -120.514 48.0 19831001 20051231 724828 93241 NUT TREE AIRPORT US CA KVCB 38.378 -121.958 33.2 20060101 20200625 724828 99999 NUT TREE US CA KVCB 38.383 -121.96700000000001 35.0 20010811 20051231 724830 23232 SACRAMENTO EXECUTIVE AIRPORT US CA KSAC 38.507 -121.495 4.6 19730101 20200625 724833 23206 SACRAMENTO MATHER AIRPORT US CA KMHR 38.567 -121.3 30.2 20020902 20200625 724833 99999 SACRAMENTO MATHER FL US CA KMHR 38.555 -121.29700000000001 30.0 19880304 20031231 724834 99999 POINT CABRILLO US CA 39.35 -123.82 20.0 19810906 19871007 724835 23206 MATHER FIELD US CA KMHR 38.567 -121.3 29.3 19410901 19930515 724836 23208 SACRAMENTO MCCLELLAN AFB US CA KMCC 38.667 -121.4 23.5 19391109 20200625 724836 99999 MC CLELLAN AFLD US CA KMCC 38.668 -121.40100000000001 22.9 20000101 20031204 724837 93216 BEALE AIR FORCE BASE US CA KBAB 39.133 -121.43299999999999 34.4 19590701 20200625 724837 99999 BEALE AFB US CA KBAB 39.133 -121.43299999999999 34.0 20000103 20041231 724838 93205 YUBA COUNTRY AIRPORT US CA KMYV 39.102 -121.568 18.9 20060101 20200625 724838 99999 YUBA CO US CA KMYV 39.1 -121.56700000000001 19.0 19430811 20051231 724839 93225 SACRAMENTO INTL AIRPORT US CA KSMF 38.696 -121.59 7.0 19730101 20200625 724839 99999 SACRAMENTO INTL US CA KSMF 38.683 -121.583 8.0 20000101 20031231 724844 99999 TONOPAH TEST RANGE US NV KTNX 37.799 -116.781 1691.3 19820816 20021016 724845 99999 WELLS US NV 41.12 -114.97 1722.0 19990114 20061212 724846 53123 NORTH LAS VEGAS AIRPORT US NV KVGT 36.211999999999996 -115.196 671.5 20060101 20200625 724846 99999 NORTH LAS VEGAS US NV KVGT 36.211 -115.194 672.0 19990114 20051231 724850 99999 US 19730101 19750814 724851 99999 US 19750814 19770213 724855 23153 TONOPAH AIRPORT US NV KTPH 38.051 -117.09 1644.4 19421001 20200625 724856 99999 HAWTHORNE INDUSTRIAL US NV KHTH 38.544000000000004 -118.634 1284.7 19831103 20200624 724860 23154 ELY AIRPORT/YELLAND FIELD/AIRPORT US NV KELY 39.295 -114.84700000000001 1908.7 19730101 20200625 724870 03163 CALIENTE (AMOS) US NV KP38 37.611999999999995 -114.52600000000001 1332.9 20120123 20120123 724870 99999 CALIENTE NV. US 37.617 -114.51700000000001 1335.0 19770122 20041125 724880 23185 RENO/TAHOE INTERNATIONAL AIRPORT US NV KRNO 39.484 -119.771 1344.2 19430105 20200625 724885 93102 FALLON NAS US NV KNFL 39.417 -118.71700000000001 1199.1 19730101 20200625 724915 23245 MONTEREY PENINSULA US CA KMRY 36.583 -121.833 78.0 19730101 19991231 724915 23259 MONTEREY PENINSULA AIRPORT US CA KMRY 36.588 -121.845 50.3 20060101 20200625 724915 99999 MONTEREY PENINSULA US CA 36.583 -121.833 80.0 20000101 20051231 724916 93217 FRITZSCHE AAF US CA KOAR 36.683 -121.76700000000001 19730102 19901229 724917 23233 SALINAS MUNI US CA KSNS 36.664 -121.60799999999999 23.5 19410805 20100801 724918 99999 CASTROVILLE / MOSS US CA 36.8 -121.8 5.0 19760130 19800516 724920 23237 STOCKTON METROPOLITAN AIRPORT US CA KSCK 37.889 -121.226 7.9 19410103 20200625 724925 23240 CROWS LANDING US CA KNRC 37.4 -121.133 56.7 19730102 19940309 724926 23258 MDSTO CTY-CO H SHAM FD APT US CA KMOD 37.624 -120.95100000000001 22.3 19730101 20200625 724927 23285 LIVERMORE MUNICIPAL ARPT US CA KLVK 37.693000000000005 -121.814 119.8 20000101 20200625 724927 99999 LIVERMORE MUNICIPAL US CA KLVK 37.7 -121.81700000000001 121.0 19730625 19991231 724930 23230 METRO OAKLAND INTL AIRPORT US CA KOAK 37.721 -122.221 1.8 19430101 20200625 724930 99999 OAKLAND/METROP. OAK US CA KOAK 37.75 -122.21700000000001 4.0 20000101 20031231 724935 93228 HAYWARD AIR TERM US CA KHWD 37.654 -122.115 14.3 20000101 20100731 724935 99999 HAYWARD AIR TERM US CA 37.667 -122.117 14.0 19730101 19991231 724936 23254 CONCORD/BUCHANAN US CA KCCR 37.992 -122.055 18.3 19730101 20100731 724937 23289 PALO ALTO AIRPORT OF SANTA CLARA COUNTY US CA KPAO 37.467 -122.117 2.1 20060101 20200624 724937 99999 PALO ALTO ARPT OF SA US CA KPAO 37.461 -122.115 1.0 19841101 20051231 724938 93231 SAN CARLOS AIRPORT US CA KSQL 37.516999999999996 -122.25 1.5 20060101 20200625 724938 99999 SAN CARLOS US CA KSQL 37.512 -122.25 2.0 19830701 20051231 724939 99999 DAVIS POINT AVIATION WEATHER REP US 38.05 -122.27 18.0 19760130 19960701 724940 23234 SAN FRANCISCO INTERNATIONAL AIRPORT US CA KSFO 37.62 -122.365 2.4 19730101 20200625 724943 99999 TREASURE ISLAND US CA 37.8 -122.37 8.0 19820711 19960627 724945 23293 N Y. MINETA SN JO INTL APT US CA KSJC 37.359 -121.92399999999999 15.5 19730101 20200625 724946 93232 REID-HILLVIEW AIRPORT OF SANTA CLARA COUNTY US CA KRHV 37.333 -121.81700000000001 40.5 20060101 20200625 724946 99999 REID HILLVIEW OF SAN US CA KRHV 37.333 -121.81700000000001 41.0 19800409 20051231 724947 99999 PILLAR PT / EL GRANDA US CA 37.5 -122.5 40.0 19760130 19960701 724950 23250 CONCORD/BUCHANAN US CA KCCR 37.983000000000004 -122.05 12.0 19760131 19960630 724950 23254 BUCHANAN FIELD AIRPORT US CA KCCR 37.992 -122.055 5.5 20100801 20200625 724953 99999 RIO NIDO US CA 38.516999999999996 -122.917 -999.0 19891111 19900303 724955 93227 NAPA COUNTY AIRPORT US CA KAPC 38.21 -122.285 4.3 20000101 20200625 724955 99999 NAPA CO US CA KAPC 38.213 -122.281 11.0 19730101 19991231 724956 23211 HAMILTON AAF US CA KSRF 38.067 -122.5 1.0 19390301 19760709 724957 23213 SONOMA COUNTY AIRPORT US CA KSTS 38.504 -122.81 34.8 20000101 20200625 724957 99999 C M SCHULZ SONOMA CO US CA KSTS 38.516999999999996 -122.81700000000001 38.0 19430404 19991231 724958 99999 PORT CHICAGO US CA 38.03 -122.03 12.0 19750916 19960607 724959 99999 POINT REYES COAST GUARD STATION US CA 38.0 -123.02 87.0 19780404 19921020 724970 99999 CHICO CALIFORNIA MAP US CA CIC 39.783 -121.85 69.0 19420506 19760305 724971 99999 CHICO MUNICIPAL & US CA 39.783 -121.85 73.0 19760305 19900219 724973 93203 CHICO MUNICIPAL AIRPORT US CA KCIC 39.8 -121.85 82.9 20060101 20200625 724973 99999 CHICO MUNI US CA KCIC 39.8 -121.867 73.0 19900314 20051231 724975 93809 CAIRO REGIONAL AIRPORT US IL KCIR 37.064 -89.219 97.8 20060101 20200625 724975 99999 CAIRO RGNL US IL KCIR 37.067 -89.21700000000001 98.0 20040904 20051231 724988 94704 DANSVILLE MUNICIPAL ARPT US NY KDSV 42.571000000000005 -77.71300000000001 208.8 20010102 20200625 724988 99999 DANSVILLE MUNI US NY KDSV 42.571000000000005 -77.71300000000001 202.0 20010811 20031231 724990 99999 US 19730101 19760305 724991 99999 POINT ARENA (CGS) US CA 89Q 38.95 -123.73299999999999 18.0 19760309 19840928 724995 99999 BODEGA BAY COAST GUARD LIGHT STA US 38.32 -123.05 3.0 19750916 19960701 725010 99999 UPTON US NY 40.85 -72.85 26.2 19990503 20050927 725014 54780 MONTAUK AIRPORT US NY KMTP 41.073 -71.923 2.1 20060101 20200625 725014 99999 MONTAUK US NY KMTP 41.083 -71.917 2.0 19990114 20051231 725015 04789 ORANGE COUNTY AIRPORT US NY KMGJ 41.50899999999999 -74.265 111.3 20060101 20200625 725015 99999 ORANGE CO US NY KMGJ 41.51 -74.26 111.0 19990114 20051231 725016 54790 BROOKHAVEN AIRPORT US NY KHWV 40.821999999999996 -72.869 25.0 20060101 20200625 725016 99999 BROOKHAVEN US NY KHWV 40.817 -72.867 25.0 20010828 20051231 725020 14734 NEWARK LIBERTY INTERNATIONAL AP US NJ KEWR 40.683 -74.169 2.1 19730101 20200625 725021 99999 CLEVELAND MUNI US TX 30.355999999999998 -95.008 45.7 20091020 20130430 725023 00474 CLEVELAND MUNICIPAL AIRPORT US MS KRNV 33.861 -90.758 42.7 20130318 20200625 725023 99999 CLEVELAND MUNI US MS KRNV 33.760999999999996 -90.758 42.7 19870629 20180515 725024 99999 WILDWOOD US NJ 39.0 -74.82 2.0 19780301 19790714 725025 94741 TETERBORO AIRPORT US NJ KTEB 40.85 -74.061 2.7 19730101 20200625 725025 99999 TETERBORO US NJ KTEB 40.85 -74.05 3.0 20000101 20031231 725026 99999 BRONX / EXECUTION COAST GUARD ST US 40.88 -73.73 8.0 19750915 19791127 725027 54788 MERIDEN MARKHAM MUNI ARPT US CT KMMK 41.51 -72.828 31.4 20060101 20200625 725027 99999 MERIDEN MARKHAM MUNI US CT KMMK 41.50899999999999 -72.829 31.0 19750911 20051231 725028 99999 BAY SHORE / FIRE ISLAND US NY 40.63 -73.27 5.0 19750915 19920802 725029 64707 WATERBURY-OXFORD AIRPORT US CT KOXC 41.483000000000004 -73.133 221.3 20060101 20200625 725029 99999 WATERBURY OXFORD US CT KOXC 41.479 -73.135 221.0 19920226 20051231 725030 14732 LA GUARDIA AIRPORT US NY KLGA 40.779 -73.88 3.4 19730101 20200625 725033 94728 NYC CENTRAL PARK US NY KNYC 40.779 -73.969 47.5 19431201 20100817 725034 99999 CALVERTON/GRUMMAN US NY KCTO 40.917 -72.783 23.0 19820927 19910109 725035 04781 LONG ISLAND MAC ART US NY KISP 40.794000000000004 -73.102 30.2 19730101 20100731 725036 14757 DUTCHESS COUNTY AIRPORT US NY KPOU 41.626000000000005 -73.882 50.6 19730101 20200625 725036 99999 DUTCHESS CO US NY KPOU 41.617 -73.883 50.0 20000101 20031231 725037 94745 WESTCHESTER COUNTY AIRPORT US NY KHPN 41.062 -73.705 111.9 19730101 20200625 725038 14714 STEWART INTERNATIONAL AIRPORT US NY KSWF 41.5 -74.1 149.7 19420802 20200625 725038 99999 STEWART INTL US NY KSWF 41.5 -74.1 150.0 20000101 20041231 725039 99999 EATONS NECK COAST GUARD STATION US NY 40.95 -73.4 1.0 19750911 19960701 725040 94702 IGOR I SIKORSKY MEMORIAL AIRPORT US CT KBDR 41.163999999999994 -73.127 1.5 19421208 20200625 725045 14758 TWEED-NEW HAVEN AIRPORT US CT KHVN 41.263999999999996 -72.887 0.9 19730101 20200625 725045 99999 TWEED NEW HAVEN US CT KHVN 41.25 -72.883 4.0 20000101 20031231 725046 14707 GROTON-NEW LONDON AIRPORT US CT KGON 41.328 -72.04899999999999 3.1 19430118 20200625 725046 99999 GROTON NEW LONDON US CT KGON 41.317 -72.033 3.0 20000101 20031231 725047 99999 NEW LONDON LEDGE COAST GUARD STA US CT 41.3 -72.08 8.0 19750911 19870427 725048 99999 FAULKNER ISLAND COAST GUARD LIGH US CT 41.22 -72.67 15.0 19750911 19820308 725049 99999 LITTLE GULF ISLAND LIGHT STATION US CT 41.2 -72.1 6.0 19750911 19780910 725050 04781 LONG ISLAND MAC ARTHUR AIRPORT US NY KISP 40.794000000000004 -73.102 25.6 20050101 20200625 725051 99999 US 19730101 19761022 725053 94728 CENTRAL PARK US NY KNYC 40.779 -73.969 42.7 20050101 20200625 725054 64710 NORTH CENTRAL STATE ARPT US RI KSFZ 41.92100000000001 -71.491 134.4 20060101 20200625 725054 99999 NORTH CENTRAL STATE US CT KSFZ 41.92100000000001 -71.483 134.0 19910824 20051231 725055 99999 CHATHAM COAST GUARD STATION US MA 41.67 -69.95 1.0 19750911 19960630 725056 99999 POINT JUDITH (CGS) US RI 41.35 -71.467 2.0 19470201 19950318 725057 99999 BRANT POINT COAST GUARD STATION US MA 41.28 -70.08 8.0 19750911 19960701 725058 94793 BLOCK ISLAND STATE AIRPORT US RI KBID 41.168 -71.578 32.0 19900101 20200625 725058 99999 BLOCK ISLAND US RI KBID 41.167 -71.567 33.0 19761023 20031231 725059 14702 LAURENCE G HANSCOM FLD APT US MA KBED 42.47 -71.289 40.5 20060101 20200625 725059 99999 LAURENCE G HANSCOM US MA 42.467 -71.283 42.0 19780211 20051231 725060 14704 OTIS ANGB AIRPORT US MA KFMH 41.65 -70.517 39.6 20060101 20100921 725060 14756 NANTUCKET MEMORIAL AIRPORT US MA KACK 41.253 -70.061 14.6 20120801 20200625 725060 94728 NEW YORK CENTRAL PARK US NY KNYC 40.779 -73.969 47.5 20100817 20120801 725061 14704 OTIS ANGB AIRPORT US MA KFMH 41.65 -70.517 39.6 20100921 20200625 725061 14756 NANTUCKET MEMORIAL AIRPORT US MA KACK 41.253 -70.061 14.3 19730101 19900219 725063 14756 NANTUCKET MEM US MA KACK 41.253 -70.061 14.3 19900314 20120801 725063 99999 NANTUCKET MEM US MA 41.25 -70.05 15.0 20000101 20031231 725064 54769 PLYMOUTH MUNICIPAL AIRPORT US MA KPYM 41.91 -70.729 45.4 20060101 20200625 725064 99999 PLYMOUTH MUNICIPAL US MA KPYM 41.909 -70.729 45.0 19850226 20051231 725065 94726 NEW BEDFORD RGNL AIRPORT US MA KEWB 41.676 -70.958 24.4 20060101 20200625 725065 99999 NEW BEDFORD RGNL US MA KEWB 41.667 -70.95 24.0 19730101 20051231 725066 94724 MARTHAS VINEYARD AIRPORT US MA KMVY 41.393 -70.615 20.7 20060101 20200625 725066 99999 MARTHAS VINEYARD US MA KMVY 41.4 -70.617 20.0 19730101 20051231 725067 94720 BRNSBL MUNI-BMAN/POL FD AP US MA KHYA 41.669 -70.28 16.8 20060101 20200625 725067 99999 BARNSTABLE MUNI BOA US MA KHYA 41.667 -70.267 17.0 19730101 20051231 725068 54777 TAUNTON MUNICIPAL AIRPORT US MA KTAN 41.876000000000005 -71.021 13.1 20060101 20200626 725068 99999 TAUNTON MUNI US MA KTAN 41.867 -71.017 13.0 19421002 20051231 725069 94624 CHATHAM MUNICIPAL AIRPORT US MA KCQX 41.688 -69.993 20.7 20060101 20200625 725069 99999 CHATHAM MUNI US MA KCQX 41.683 -69.983 21.0 19750911 20051231 725070 14765 THEODORE F GREEN STATE AIRPORT US RI KPVD 41.723 -71.433 16.8 19420801 20200625 725073 64708 PROVINCETOWN MUNI AIRPORT US MA KPVC 42.071999999999996 -70.221 2.4 20060101 20200625 725073 99999 PROVINCETOWN MUNI US MA KPVC 42.067 -70.217 3.0 19880424 20051231 725074 54752 QUONSET STATE AIRPORT US RI KOQU 41.597 -71.41199999999999 5.8 20060103 20200625 725074 99999 QUONSET STATE US RI KOQU 41.583 -71.417 5.0 19850920 20051231 725075 54768 HARRIMAN-AND-WEST AIRPORT US MA KAQW 42.696999999999996 -73.17 195.1 20060101 20200625 725075 99999 HARRIMAN AND WEST US MA KAQW 42.696000000000005 -73.17 199.0 19730101 20051231 725076 99999 MERRIMAC RIVER COAST GUARD STATI US 42.82 -70.87 1.0 19750911 19831011 725077 99999 BUZZARDS BAY COAST GUARD LIGHT S US 41.38 -71.03 1.0 19750911 19810813 725078 99999 CASTLE HILL COAST GUARD STATION US RI 41.45 -71.35 15.0 19890616 19960701 725079 14787 NEWPORT STATE AIRPORT US RI KUUU 41.533 -71.283 52.4 20060101 20200625 725079 99999 NEWPORT US RI KUUU 41.532 -71.282 52.0 19750911 20051231 725080 14740 BRADLEY INTERNATIONAL AIRPORT US CT KBDL 41.938 -72.682 53.3 19410912 20200625 725084 54767 WINDHAM AIRPORT US CT KIJD 41.742 -72.184 75.3 20060101 20200625 725084 99999 WINDHAM AIRPORT US CT KIJD 41.75 -72.184 75.0 19961220 20051231 725085 54756 ORANGE MUNICIPAL AIRPORT US MA KORE 42.57 -72.291 169.2 19960702 20200626 725085 99999 ORANGE MUNI US MA KORE 42.567 -72.283 169.0 20000101 20031231 725086 54734 DANBURY MUNICIPAL AIRPORT US CT KDXR 41.371 -73.483 139.3 20060101 20200625 725086 99999 DANBURY MUNI ARPT US CT KDXR 41.372 -73.482 140.0 19730622 20051231 725087 14752 HARTFORD-BRAINARD AIRPORT US CT KHFD 41.736000000000004 -72.65100000000001 5.8 19740101 20200625 725087 99999 HARTFORD BRAINARD US CT KHFD 41.733000000000004 -72.65 5.0 20000101 20031231 725088 54733 BEVERLY MUNICIPAL AIRPORT US MA KBVY 42.583999999999996 -70.918 32.9 20060101 20200625 725088 99999 BEVERLY MUNI US MA KBVY 42.583 -70.917 33.0 19740220 20051231 725089 99999 NEW HAVEN COAST GUARD STATION US CT 41.27 -72.9 3.0 19750911 19960701 725090 14739 GEN E L LOGAN INTERNATIONAL AIRPORT US MA KBOS 42.361000000000004 -71.01 3.7 19431121 20200625 725094 99999 MARSHFIELD AIRPORT US MA 42.1 -70.683 3.0 19900725 19960117 725095 94746 WORCESTER RGNL US MA KORH 42.271 -71.873 310.0 19730101 20100731 725096 99999 ISLE OF SHOALS COAST GUARD STATI US 42.97 -70.62 1.0 19750911 19861022 725097 14790 NAVAL AIR STATION US MA KNZW 42.15 -70.933 49.1 19730101 19960928 725098 54704 NORWOOD MEMORIAL AIRPORT US MA KOWD 42.191 -71.17399999999999 15.2 20060101 20200626 725098 99999 NORWOOD MEM US MA KOWD 42.183 -71.167 15.0 19730101 20051231 725099 99999 GLOUCESTER COAST GUARD STATION US MA 42.58 -70.67 1.0 19750911 19960701 725100 94746 WORCESTER REGIONAL AIRPORT US MA KORH 42.271 -71.873 304.8 20050101 20200625 725101 14712 READING SPAATZ FIELD US PA KRDG 40.367 -75.967 107.6 19430608 19900219 725103 14712 RDNG RGNL/C A SPAATZ FD AP US PA KRDG 40.373000000000005 -75.959 104.9 19900314 20200625 725103 99999 READING RGNL CARL A US PA KRDG 40.367 -75.967 105.0 20000101 20031231 725104 04843 PORT MEADVILLE AIRPORT US PA KGKJ 41.626000000000005 -80.215 426.7 20060101 20200625 725104 99999 PORT MEADVILLE US PA KGKJ 41.633 -80.217 427.0 19990114 20051231 725105 14770 PENN VALLEY AIRPORT US PA KSEG 40.821 -76.86399999999999 135.3 19970902 20200625 725105 99999 PENN VALLEY US PA KSEG 40.817 -76.867 137.0 20000101 20031231 725107 04780 FITCHBURG MUNICIPAL ARP US MA KFIT 42.552 -71.756 106.1 19971002 20200625 725107 99999 FITCHBURG MUNI US MA KFIT 42.553999999999995 -71.759 106.0 20000101 20031231 725109 54782 POTTSTOWN LIMERICK AIRPORT US PA KPTW 40.238 -75.555 87.8 20060101 20200625 725109 99999 POTTSTOWN LIMERICK US PA KPTW 40.233000000000004 -75.55 94.0 20010811 20051231 725110 14751 HARRISBURG CAPITAL CITY ARPT US PA KCXY 40.217 -76.851 105.8 19730101 19850531 725111 14751 HARRISBURG CAPITAL CITY ARPT US PA KCXY 40.217 -76.851 105.8 19480101 19900228 725111 99999 HARRISBURG CAPITAL CITY ARPT US PA 40.217 -76.85 107.0 19740101 19841231 725113 54786 DOYLESTOWN AIRPORT US PA KDYL 40.33 -75.123 120.1 20060101 20200625 725113 99999 DOYLESTOWN US PA KDYL 40.333 -75.122 120.0 19990831 20051231 725114 93778 YORK AIRPORT US PA KTHV 39.918 -76.874 148.1 20060101 20200625 725114 99999 YORK US PA KTHV 39.917 -76.867 146.0 19980514 20051231 725115 14711 HARRISBURG INTL US PA KMDT 40.196 -76.77199999999999 95.1 19350201 20100731 725116 54737 LANCASTER AIRPORT US PA KLNS 40.12 -76.294 122.8 20060101 20200625 725116 99999 LANCASTER US PA KLNS 40.117 -76.283 123.0 19730701 20051231 725117 04827 WASHINGTON COUNTY AIRPORT US PA KAFJ 40.133 -80.283 361.2 20060101 20200625 725117 99999 WASHINGTON CO US PA KAFJ 40.133 -80.283 361.0 19890309 20051231 725118 14751 CAPITAL CITY AIRPORT US PA KCXY 40.217 -76.851 103.6 19900301 20200625 725118 99999 HARRISBURG/CAPITAL US PA KCXY 40.217 -76.85 106.0 20000101 20031231 725119 54792 CLEARFIELD-LAWRENCE ARPT US PA KFIG 41.047 -78.41199999999999 462.1 20060101 20200625 725119 99999 CLEARFIELD LAWRENCE US PA KFIG 41.049 -78.413 462.0 20010811 20051231 725120 14761 PHILIPSBURG AIRPORT US PA KPSB 40.9 -78.083 593.8 19730101 19850531 725120 99999 PHILIPSBURG AIRPORT US PA 40.867 -78.067 594.0 20040906 20051031 725121 14761 BURLIGTON/COLCHE US VT KPSB 40.9 -78.083 593.8 19850531 19860827 725124 64705 BTLR CO/K W SCHOLTER FD AP US PA KBTP 40.777 -79.95 380.1 20060101 20200625 725124 99999 BUTLER CO SCHOLTER F US PA KBTP 40.777 -79.95 380.0 19920226 20051231 725125 04787 DU BOIS-JEFFERSON CO ARPT US PA KDUJ 41.178999999999995 -78.893 550.2 19730101 20200625 725125 99999 DU BOIS JEFFERSON C US PA KDUJ 41.167 -78.9 554.0 20000101 20031231 725126 14736 ALTOONA-BLAIR COUNTY ARPT US PA KAOO 40.296 -78.32 451.1 19730101 20200625 725127 04726 J MURTHA JTWN-CMBRA CO APT US PA KJST 40.316 -78.834 696.2 19730101 20200625 725127 99999 JOHN MURTHA JOHNSTO US PA KJST 40.317 -78.833 696.0 20000101 20031231 725128 54739 UNIVERSITY PARK AIRPORT US PA KUNV 40.85 -77.85 377.7 20050101 20200625 725128 99999 UNIVERSITY PARK US PA KUNV 40.85 -77.85 378.0 19800625 20041231 725130 14777 WILKES-BARRE/SCRANTON INTL AIRPORT US PA KAVP 41.333999999999996 -75.727 283.5 19730101 20200625 725135 14754 TOBYHANNA US PA 7TB 41.183 -75.417 594.4 19730101 19841001 725140 14778 WILLIAMSPORT REGIONAL AIRPORT US PA KIPT 41.243 -76.922 158.5 19730101 20200625 725144 54723 MUIR ARMY AIRFIELD (FORT INDIANTOWN GAP) US PA KMUI 40.433 -76.567 148.7 20060103 20200625 725144 99999 MUIR AAF US PA KMUI 40.433 -76.567 149.0 19780828 20051230 725145 54746 SULLIVAN COUNTY INTL ARPT US NY KMSV 41.701 -74.795 427.6 20060101 20200625 725145 99999 SULLIVAN CO INTL US NY KMSV 41.7 -74.8 428.0 19810212 20051231 725146 54773 OSWEGO COUNTY AIRPORT US NY KFZY 43.35 -76.385 144.8 20060101 20200625 725146 99999 OSWEGO CO US NY KFZY 43.35 -76.383 145.0 19990114 20051231 725150 04725 GREATER BINGHAMTON/E A LINK FIELD AP US NY KBGM 42.207 -75.98 486.2 19730101 20200625 725155 94761 ITHACA TOMPKINS REGIONAL AIRPORT US NY KITH 42.483000000000004 -76.467 335.0 20060101 20200625 725155 99999 ITHACA TOMPKINS RGNL US NY KITH 42.49100000000001 -76.467 335.0 19730101 20051231 725156 14748 ELMIRA/CORNING RGNL ARPT US NY KELM 42.159 -76.892 291.1 19730101 20200625 725156 99999 ELMIRA CORNING RGNL US NY KELM 42.15 -76.883 291.0 20000101 20031231 725157 54757 MUNI ARPT TARANTINE FLD AP US NY KELZ 42.108999999999995 -77.992 647.4 20060101 20200625 725157 99999 WELLSVILLE MUNI US NY KELZ 42.11 -77.99 647.0 19780614 20051231 725160 99999 BENNINGTON STATE US VT 42.883 -73.25 252.0 20030805 20030805 725165 94737 RUTLAND STATE AIRPORT US VT KRUT 43.533 -72.95 239.0 20060101 20200625 725165 99999 RUTLAND STATE US VT KRUT 43.516999999999996 -72.95 240.0 19730102 20051231 725170 14737 LEHIGH VALLEY INTERNATIONAL AIRPORT US PA KABE 40.65 -75.44800000000001 118.9 19730101 20200625 725171 99999 ALLENTOWN QUEEN CITY MUNI US PA KJVU 40.567 -75.483 122.0 20080825 20130430 725172 13762 NAVAL AUXILIARY LANDING FIELD US VA KNFE 36.695 -76.13600000000001 4.9 20070601 20200626 725175 64706 INDIANA COUNTY/JIMMY STEWART FIELD/AIRPORT US PA KIDI 40.633 -79.1 428.2 20060101 20200625 725175 99999 INDIANA CO US PA KIDI 40.633 -79.10600000000001 428.0 19990103 20051231 725180 14735 ALBANY INTERNATIONAL AIRPORT US NY KALB 42.747 -73.79899999999999 85.3 19460101 20200625 725184 99999 ALBANY (NEXRAD) US NY CXX 44.516999999999996 -73.167 131.0 20020422 20020422 725185 14750 FLOYD BENNETT MEM US NY KGFL 43.35 -73.617 101.5 19730101 20100801 725186 99999 OGDENSBURG INTL US NY KOGS 44.681999999999995 -75.46600000000001 90.5 19770502 20200624 725187 94733 CLINTON COUNTY AIRPORT US NY KPLB 44.687 -73.523 113.4 20060101 20070524 725187 99999 CLINTON CO US NY KPLB 44.683 -73.517 113.0 19780823 20051231 725188 99999 CAPE VINCENT MARINE AVIATION REP US 44.12 -76.33 75.0 19800227 19810501 725190 14771 SYRACUSE HANCOCK INTERNATIONAL AP US NY KSYR 43.111000000000004 -76.104 125.9 19421001 20200625 725194 54778 PENN YAN AIRPORT US NY KPEO 42.643 -77.056 275.2 20060101 20200625 725194 99999 PENN YAN US NY KPEO 42.633 -77.05 302.0 19990114 20051231 725195 99999 OSWEGO COAST GUARD STATION US NY 43.47 -76.52 78.0 19760926 19960701 725196 14717 GRIFFISS AIRPARK US NY KRME 43.233999999999995 -75.407 154.0 19420701 19980923 725196 64775 GRIFFIS AIRFIELD US NY KRME 43.233999999999995 -75.41199999999999 158.2 20070102 20200625 725197 94794 ONEIDA COUNTY AIRPORT US NY KUCA 43.145 -75.384 216.7 19730101 20070118 725198 99999 MILLBROOK/SKY ACRES US NY K44N 41.7 -73.733 213.0 19890714 19960214 725200 94823 PITTSBURGH INTERNATIONAL AIRPORT US PA KPIT 40.485 -80.214 366.7 19450201 20200625 725203 99999 MIFFLIN CO US PA KRVL 40.677 -77.627 249.6 20180719 20200624 725204 04813 BEAVER COUNTY AIRPORT US PA KBVI 40.766999999999996 -80.4 381.6 20060102 20200625 725204 99999 BEAVER CO US PA KBVI 40.766999999999996 -80.383 382.0 19840331 20051231 725205 14762 ALLEGHENY COUNTY AIRPORT US PA KAGC 40.355 -79.922 380.4 19730101 20200625 725205 99999 ALLEGHENY CO US PA KAGC 40.35 -79.917 382.0 20000101 20031231 725206 99999 PITTSBURGH WSFO US PA 40.53 -80.22 381.3 19730101 19780127 725207 54735 ARNOLD PALMER REGIONAL APT US PA KLBE 40.283 -79.4 365.5 20060101 20200625 725207 99999 ARNOLD PALMER RGNL US PA KLBE 40.266999999999996 -79.4 361.0 19730102 20051231 725208 04855 MARION MUNICIPAL AIRPORT US OH KMNN 40.616 -83.064 303.0 20060101 20200625 725208 99999 MARION MUNI US OH KMNN 40.616 -83.06299999999999 303.0 19990426 20051231 725210 14895 AKRON-CANTON REGIONAL AIRPORT US OH KCAK 40.918 -81.444 369.7 19730101 20200625 725214 04849 LORAIN COUNTY RGNL AIRPORT US OH KLPR 41.346000000000004 -82.179 242.0 20060101 20200625 725214 99999 LORAIN CO RGNL US OH KLPR 41.35 -82.18299999999999 242.0 19980428 20051231 725215 99999 LORAIN COAST GUARD STATION US OH 41.47 -82.18 176.0 19760926 19960701 725216 04842 WAYNE COUNTY AIRPORT US OH KBJJ 40.873000000000005 -81.887 346.6 20060101 20200625 725216 99999 WAYNE CO US OH KBJJ 40.867 -81.883 346.0 19990114 20051231 725217 53855 BUTLER CO. REGIONAL ARPT US OH KHAO 39.364000000000004 -84.525 193.2 20060101 20200625 725217 99999 BUTLER CO RGNL US OH KHAO 39.363 -84.521 193.0 19990114 20051231 725218 99999 MARION US PA 40.617 -83.06700000000001 303.0 19990114 19990204 725220 14750 FLOYD BENNETT MEMO AIRPORT US NY KGFL 43.338 -73.61 97.8 20050101 20200625 725224 04852 HARRY CLEVER FIELD AIRPORT US OH KPHD 40.472 -81.42399999999999 272.8 20060101 20200625 725224 99999 HARRY CLEVER FLD US OH KPHD 40.467 -81.417 272.0 19990114 20051231 725229 04858 NEWARK-HEATH AIRPORT US OH KVTA 40.023 -82.463 269.4 20060101 20200626 725229 99999 NEWARK HEATH US OH KVTA 40.025 -82.462 269.0 20010811 20051231 725230 94704 DANSVILLE/MUNICIPAL US NY KDSV 42.571000000000005 -77.71300000000001 201.8 19730101 19850131 725230 99999 DANSVILLE MUNICIPAL US NY 42.567 -77.717 209.0 20020418 20041014 725235 04720 CHAUTAUQUA CO/JAMESTOWN AP US NY KJHW 42.15 -79.25 525.2 20060101 20200625 725235 99999 CHATAUQUA CO JAMESTO US NY KJHW 42.153 -79.258 525.0 19730101 20051231 725240 14820 CLEVELAND-HOPKINS INTERNATIONAL AP US OH KCLE 41.406000000000006 -81.852 238.1 19730101 20200625 725243 99999 CLEVELAND (LGT-H) US OH 41.483000000000004 -81.7 182.0 19890908 19940915 725244 99999 WILLOUGHBY LOST NATION MUNI US OH KLNN 41.684 -81.39 190.8 19831103 20200624 725245 04853 CLEVELAND BURKE LAKEFNT AP US OH KBKL 41.518 -81.684 178.0 20060101 20200625 725245 99999 BURKE LAKEFRONT US OH KBKL 41.516999999999996 -81.683 178.0 19730101 20051231 725246 14891 MANSFIELD LAHM RGNL US OH KMFD 40.82 -82.51799999999999 399.9 19490101 20100731 725247 04805 CUYAHOGA COUNTY AIRPORT US OH KCGF 41.567 -81.483 267.9 20060101 20200625 725247 99999 CUYAHOGA CO US OH KCGF 41.567 -81.483 268.0 19730101 20051231 725248 99999 CLEVELAND HARBOR COAST GUARD STA US 41.5 -81.72 181.0 19770920 19841001 725249 99999 MARBLEHEAD COAST GUARD STATION US OH 41.55 -82.73 196.0 19760926 19960701 725250 14852 YOUNGSTOWN-WARREN REGIONAL AIRPORT US OH KYNG 41.255 -80.67399999999999 355.7 19480101 20200625 725253 00380 PORTAGE COUNTY AIRPORT US OH KPOV 41.217 -81.25 365.2 20090318 20200625 725253 99999 RAVENNA/PORTAGE COUNTY AIRPORT US OH KPOV 41.21 -81.252 364.8 19900724 20180520 725254 04851 DEFIANCE MEMORIAL AIRPORT US OH KDFI 41.338 -84.429 215.5 20060101 20200625 725254 99999 DEFIANCE MEMORIAL US OH KDFI 41.338 -84.429 215.0 19980514 20051231 725255 99999 ASHTABULA COAST GUARD STATION US OH 41.92 -80.8 178.0 19760926 19960701 725256 04857 ASHTABULA COUNTY AIRPORT US OH KHZY 41.778 -80.696 281.6 20060101 20200625 725256 99999 ASHTABULA CO US OH KHZY 41.783 -80.7 282.0 20010811 20051231 725257 99999 JENNINGS US LA 30.243000000000002 -92.67299999999999 7.0 20120531 20130430 725258 00382 TOCCOA RG LETOURNEAU FIELD AIRPORT US GA KTOC 34.594 -83.296 303.3 20120607 20200626 725258 99999 TOCCOA RG LETOURNEAU FLD US GA KTOC 34.594 -83.296 303.0 20180101 20180516 725260 14860 ERIE INTL/T. RIDGE FIELD AIRPORT US PA KERI 42.08 -80.182 222.2 19730101 20200625 725264 99999 SAINT MARYS MUNI US PA 8G5 41.433 -78.583 0.0 19850531 19870323 725265 99999 ERIE COAST GUARD STATION US PA 42.12 -80.08 175.0 19430701 19880308 725266 04751 BRADFORD REGIONAL AIRPORT US PA KBFD 41.8 -78.633 652.9 19730101 20200625 725267 94868 VENANGO REGIONAL AIRPORT US PA KFKL 41.383 -79.867 469.4 19730101 20200625 725267 99999 VENANGO RGNL US PA KFKL 41.378 -79.86 469.0 20000101 20031231 725270 99999 SIMCOE (MARS) & CA 42.85 -80.267 239.0 19730101 19770630 725280 14733 BUFFALO NIAGARA INTERNATIONAL AP US NY KBUF 42.941 -78.736 218.2 19420201 20200625 725283 00465 CATTARAUGUS COUNTY OLEAN AIRPORT US NY KOLE 42.24100000000001 -78.37100000000001 651.1 20120423 20200625 725283 99999 CATTARAUGUS CO OLEAN US NY KOLE 42.24100000000001 -78.37100000000001 650.7 19870813 20180515 725285 99999 BUFFALO COAST GUARD STATION US NY 42.88 -78.88 180.0 19760926 19960701 725287 04724 NIAGARA FALLS INTL AIRPORT US NY KIAG 43.108000000000004 -78.938 178.3 19510612 20200625 725287 99999 NIAGARA FALLS INTL US NY KIAG 43.1 -78.933 180.0 20000101 20031231 725288 99999 NIAGARA COAST GUARD STATION US NY 43.27 -79.07 82.0 19760926 19960701 725290 14768 GREATER ROCHESTER INTERNATIONAL AP US NY KROC 43.117 -77.67699999999999 164.3 19730101 20200625 725291 99999 RIDGELY AIRPARK US MD KRJD 38.97 -75.866 19.5 20070521 20090701 725292 14976 GRINNELL REGIONAL AIRPORT US IA KGGI 41.717 -92.7 307.2 20060831 20200625 725293 99999 GARRETT CO US MD 39.58 -79.339 894.0 20070521 20130430 725294 00383 ANSON COUNTY AIRPORT JEFF CLOUD FIELD US NC KAFP 35.016999999999996 -80.083 91.1 20070521 20200625 725294 99999 WADESBORO ANSON CO US NC KAFP 35.021 -80.077 90.8 20080101 20180516 725295 99999 ROCHESTER COAST GUARD LIGHT STAT US 43.25 -77.6 82.0 19760926 19960701 725296 99999 BOWMAN MUNI US ND KBPP 46.187 -103.428 901.6 20070521 20100603 725300 94846 CHICAGO O'HARE INTERNATIONAL AIRPORT US IL KORD 41.96 -87.932 201.8 19461001 20200625 725305 94892 DUPAGE AIRPORT US IL KDPA 41.913999999999994 -88.24600000000001 229.8 20060101 20200625 725305 99999 DUPAGE US IL KDPA 41.908 -88.249 231.0 19730101 20051231 725306 14855 GLENVIEW NAS US IL KNBU 42.083 -87.833 199.0 19730101 19950301 725306 99999 GLENVIEW NAS US IL KNBU 42.083 -87.81700000000001 199.0 20050905 20050905 725307 99999 WILMETTE (MARINES)& US IL K62G 42.067 -87.68299999999999 223.0 19760212 19960214 725310 14806 RANTOUL/CHANUTE AFB US IL 40.3 -88.15 228.0 19360701 19710528 725310 99999 RANTOUL US IL 40.3 -88.15 228.0 20020228 20041006 725314 03960 ST LOUIS DOWNTOWN AIRPORT US IL KCPS 38.571 -90.15700000000001 125.9 20060101 20200625 725314 99999 CAHOKIA/ST. LOUIS US IL KCPS 38.567 -90.15 126.0 19781219 20051231 725315 94870 UNIVERSI OF IL WILLARD APT US IL KCMI 40.04 -88.27799999999999 229.8 20060101 20200625 725315 99999 UNIV OF ILLINOIS WI US IL KCMI 40.033 -88.26700000000001 230.0 19730101 20051231 725316 03887 DECATUR AIRPORT US IL KDEC 39.834 -88.866 205.7 20060101 20200625 725316 99999 DECATUR US IL KDEC 39.833 -88.867 208.0 19730101 20051231 725317 53802 COLES COUNTY MEMO AIRPORT US IL KMTO 39.478 -88.28 219.8 20060101 20200625 725317 99999 COLES CO MEM US IL KMTO 39.483000000000004 -88.28299999999999 220.0 19730103 20051231 725320 14842 GREATER PEORIA REGIONAL AIRPORT US IL KPIA 40.668 -89.684 198.1 19730101 20200625 725323 99999 GALESBURG MUNICIPAL US IL GBG 40.933 -90.43299999999999 245.0 19810904 19950814 725325 14816 BRADFORD/RINKENBERG US IL KBDF 41.233000000000004 -89.617 247.0 19730101 19751214 725325 99999 BRADFORD/RINKENBERG US IL KBDF 41.233000000000004 -89.617 247.0 20011226 20011226 725326 04894 WHITESIDE CO ARPT-JOS H BITTOR F FLD ARPT US IL KSQI 41.743 -89.676 197.2 20060101 20200625 725326 99999 STERLING ROCKFALLS US IL KSQI 41.743 -89.68299999999999 197.0 19910711 20051231 725327 04846 PORTER COUNTY MUNICIPAL AIRPORT US IN KVPZ 41.453 -87.006 234.7 20060101 20200625 725327 99999 PORTER CO MUNI US IN KVPZ 41.45 -87.0 241.0 19990114 20051231 725330 14827 FORT WAYNE INTERNATIONAL AIRPORT US IN KFWA 40.971000000000004 -85.206 241.1 19411101 20200625 725334 99999 PERU/GRISSOM RWY 23 US IN 40.65 -86.15 247.0 19850414 19860410 725335 94833 GRISSOM AFB AIRPORT US IN KGUS 40.65 -86.15 247.5 20060101 20200625 725335 99999 GRISSOM ARB US IN KGUS 40.65 -86.15 247.0 19450201 20051231 725336 94895 DELAWARE CO-JOHNSON FD APT US IN KMIE 40.234 -85.39399999999999 285.6 20060101 20200625 725336 99999 DELAWARE CO JOHNSON US IN KMIE 40.233000000000004 -85.383 286.0 19730101 20051231 725337 04807 GARY/CHICAGO AIRPORT US IN KGYY 41.617 -87.417 180.1 20060101 20200625 725337 99999 GARY CHICAGO US IN KGYY 41.617 -87.4 180.0 19810126 20051231 725339 99999 CHIGAGO-WAUKEE ARPT US IL KPWK 42.117 -87.9 197.0 20010811 20020621 725340 14819 CHICAGO MIDWAY INTL ARPT US IL KMDW 41.786 -87.75200000000001 186.5 19730101 20200625 725342 13809 LRNCVLL-VINCNES INTL ARPT US IL KLWV 38.764 -87.60600000000001 130.8 20060101 20200625 725342 99999 LAWRENCEVILLE VINCEN US IL KLWV 38.764 -87.605 131.0 19970123 20051230 725344 99999 CHICAGO / CALUMET COAST GUARD ST US 41.72 -87.53 180.0 19940303 19960630 725345 14834 JOLIET REGIONAL AIRPORT US IL KJOT 41.5 -88.167 177.4 20020902 20200625 725345 99999 JOLIET RGNL US IL KJOT 41.518 -88.176 177.0 20010412 20031231 725346 94866 CHICAGO/MEIGS US IL KCGX 41.867 -87.6 181.0 19730101 20080618 725346 99999 CHICAGO/MEIGS US IL KCGX 41.867 -87.6 181.0 20000101 20030409 725347 14880 WAUKEGAN REGIONAL AIRPORT US IL KUGN 42.417 -87.867 221.6 20060101 20200625 725347 99999 CHICAGO/WAUKEGAN US IL KUGN 42.417 -87.867 222.0 19890421 20051231 725348 04831 LEWIS UNIVERSITY AIRPORT US IL KLOT 41.604 -88.085 201.2 20060101 20200625 725348 99999 LEWIS UNIVERSITY US IL KLOT 41.6 -88.1 207.0 20010412 20051231 725349 99999 AFWA ASSIGNED 0.0 0.0 0.0 19970101 20041231 725350 14848 SOUTH BEND REGIONAL AIRPORT US IN KSBN 41.707 -86.316 235.6 19730101 20200625 725354 04806 ELKHART MUNICIPAL AIRPORT US IN KEKM 41.717 -85.98299999999999 237.1 20060102 20200625 725354 99999 ELKHART MUNI US IN KEKM 41.717 -86.0 237.0 19810722 20051231 725360 94830 TOLEDO EXPRESS AIRPORT US OH KTOL 41.586999999999996 -83.806 205.4 19730101 20200625 725366 14825 FINDLAY AIRPORT US OH KFDY 41.013999999999996 -83.669 243.8 19730101 20200625 725370 94847 DETROIT METRO WAYNE COUNTY AIRPORT US MI KDTW 42.231 -83.331 192.3 19420801 20200625 725373 54819 GROSSE ILE MUNICIPAL AIRPORT US MI KONZ 42.099 -83.161 178.9 20060101 20200625 725373 99999 GROSSE ILE MUNI US MI KONZ 42.1 -83.167 180.0 19970718 20051231 725374 94889 ANN ARBOR MUNICIPAL ARPT US MI KARB 42.223 -83.744 255.7 20060101 20200626 725374 99999 ANN ARBOR MUNICIPAL US MI KARB 42.223 -87.74600000000001 256.0 19781205 20051231 725375 14822 DETROIT CITY AIRPORT US MI KDET 42.409 -83.01 190.8 19730101 20200625 725376 14853 WILLOW RUN AIRPORT US MI KYIP 42.233000000000004 -83.53299999999999 236.8 19730101 20200625 725376 99999 WILLOW RUN US MI KYIP 42.233000000000004 -83.51700000000001 218.0 20000101 20031231 725377 14804 SELFRIDGE AIR NATIONAL GUARD BASE US MI KMTC 42.608000000000004 -82.818 176.8 19370101 20200625 725377 99999 SELFRIDGE ANGB US MI KMTC 42.6 -82.833 177.0 20000101 20041231 725378 04887 LIVINGSTON COUNTY AIRPORT US MI KOZW 42.629 -83.984 287.7 20060101 20200625 725378 99999 LIVINGSTON CO US MI KOZW 42.633 -83.98299999999999 293.0 19760926 20051231 725380 99999 WINDSOR AIRPORT CA 42.266999999999996 -82.96700000000001 190.0 19730101 19770807 725383 54827 KIRSCH MUNICIPAL AIRPORT US MI KIRS 41.817 -85.43299999999999 281.9 20060101 20200626 725383 99999 KIRSCH MUNI US MI KIRS 41.817 -85.439 282.0 19970123 20051231 725384 04888 ST CLAIR COUNTY INTL ARPT US MI KPHN 42.911 -82.529 195.1 20060101 20200626 725384 99999 ST CLAIR CO INTL US MI KPHN 42.917 -82.53299999999999 198.0 19940718 20051231 725385 99999 BELLE ISLE COAST GUARD STATION US MI 42.33 -82.97 177.0 19760926 19960701 725386 94898 HARBOR BEACH US MI KP58 44.022 -82.79299999999999 179.8 20060101 20200625 725386 99999 PORT HOPE US MI KP58 44.016999999999996 -82.78299999999999 179.0 19781128 20051231 725387 94899 COPPER HARBOR US MI KP59 47.467 -87.883 190.8 20060101 20200625 725387 99999 COPPER HARBOR US MI KP59 47.467 -87.883 190.0 19781128 20051231 725390 14836 CAPITAL CITY AIRPORT US MI KLAN 42.776 -84.6 261.8 19730101 20200626 725394 04839 TULIP CITY AIRPORT US MI KBIV 42.746 -86.09700000000001 210.0 20060101 20200625 725394 99999 TULIP CITY US MI KBIV 42.75 -86.1 213.0 19820616 20051231 725395 14833 JAKSON CO-RYNOLDS FLD ARPT US MI KJXN 42.266999999999996 -84.46700000000001 304.2 19730101 20200625 725396 14815 W K KELLOGG AIRPORT US MI KBTL 42.308 -85.251 282.9 19421001 20200625 725396 99999 W K KELLOGG US MI KBTL 42.3 -85.25 290.0 20000101 20031231 725397 99999 BATH US MI 42.85 -84.48 261.0 19900907 19960701 725400 99999 SPICKARD US MO 40.25 -93.72 271.0 19771006 20030720 725404 04847 ADRIAN LENAWEE COUNTY ARPT US MI KADG 41.868 -84.079 242.6 20060101 20200625 725404 99999 LENAWEE CO US MI KADG 41.867 -84.083 244.0 19990114 20051231 725405 54816 GRATIOT COMMUNITY AIRPORT US MI KAMN 43.321999999999996 -84.68799999999999 227.7 20060101 20200626 725405 99999 GRATIOT COMMUNITY US MI KAMN 43.317 -84.68299999999999 230.0 19990114 20051231 725406 54817 HURON COUNTY MEMORIAL AIRPORT US MI KBAX 43.78 -82.986 233.5 20060101 20200625 725406 99999 HURON CO MEM US MI KBAX 43.783 -82.98299999999999 233.0 19990114 20051231 725407 04854 OTSEGO COUNTY AIRPORT US MI KGLR 45.013000000000005 -84.70100000000001 406.9 20060101 20200625 725407 99999 GAYLORD RGNL US MI KGLR 45.016999999999996 -84.7 405.0 19990114 20051231 725408 04881 SCHOOLCRAFT COUNTY AIRPORT US MI KISQ 45.983000000000004 -86.18299999999999 209.1 20060101 20200625 725408 99999 SCHOOLCRAFT CO US MI KISQ 45.967 -86.167 209.0 19990114 20051231 725409 04882 HILLSDALE MUNICIPAL ARPT US MI KJYM 41.92100000000001 -84.586 360.3 20060101 20200625 725409 99999 HILLSDALE MUNICIPAL US MI KJYM 41.92100000000001 -84.586 360.0 19990114 20051231 725414 04886 BRANCH COUNTY MEMO AIRPORT US MI KOEB 41.933 -85.053 292.3 20060101 20200625 725414 99999 BRANCH CO MEM US MI KOEB 41.933 -85.05 292.0 19990114 20051231 725415 54821 BROOKS FIELD AIRPORT US MI KRMY 42.251000000000005 -84.956 286.8 20060101 20200625 725415 99999 BROOKS FLD US MI KRMY 42.25 -84.95 287.0 19990114 20051231 725416 14864 ROBEN-HOOD ARPT US MI KRQB 43.717 -85.5 282.9 20060101 20200625 725416 99999 ROBEN HOOD US MI KRQB 43.717 -85.5 302.0 19990114 20051231 725417 54822 MASON JEWETT FIELD AIRPORT US MI KTEW 42.566 -84.43299999999999 281.0 20060101 20200625 725417 99999 MASON JEWETT FLD US MI KTEW 42.567 -84.417 280.0 19990114 20051231 725418 54823 CUSTER AIRPORT US MI KTTF 41.94 -83.435 186.5 20060101 20200625 725418 99999 CUSTER US MI KTTF 41.933 -83.43299999999999 188.0 19990114 20051231 725420 14931 SE IOWA REGIONAL AIRPORT US IA KBRL 40.783 -91.125 210.9 20050101 20200625 725424 04885 MOUNT PLEASANT MUNI ARPT US MI KMOP 43.622 -84.73700000000001 230.1 20060101 20200626 725424 99999 MOUNT PLEASANT MUNI US MI KMOP 43.617 -84.73299999999999 230.0 20010811 20051231 725430 94822 GREATER ROCKFORD AIRPORT US IL KRFD 42.193000000000005 -89.09299999999999 222.5 19730101 20200625 725434 54789 POCONO MTNS MUNI AIRPORT US PA KMPO 41.138999999999996 -75.37899999999999 584.0 20060101 20200625 725434 99999 POCONO MOUNTAINS MUN US PA KMPO 41.133 -75.383 584.0 20010811 20051231 725440 14923 QUAD CITY INTERNATIONAL AIRPORT US IL KMLI 41.465 -90.523 180.4 19730101 20200625 725450 14990 THE EASTERN IOWA AIRPORT US IA KCID 41.883 -91.71700000000001 264.6 19730101 20200625 725453 14930 ATLANTIC MUNICIPAL AIRPORT US IA KAIO 41.407 -95.04700000000001 360.3 20060101 20200625 725453 99999 ATLANTIC MUNI US IA KAIO 41.4 -95.05 360.0 19950423 20051231 725454 04903 WASHINGTON MUNICIPAL ARPT US IA KAWG 41.276 -91.67299999999999 229.8 20060101 20200625 725454 99999 WASHINGTON MUNI US IA KAWG 41.283 -91.667 230.0 19950423 20051231 725455 14931 SOUTHEAST IOWA RGNL US IA KBRL 40.783 -91.125 214.0 19730101 20100731 725456 04921 KEOKUK MUNICIPAL AIRPORT US IA KEOK 40.46 -91.428 204.5 20060101 20200625 725456 99999 KEOKUK MUNI US IA KEOK 40.46 -91.428 205.0 19950212 20051231 725457 04904 ALGONA MUNICIPAL AIRPORT US IA KAXA 43.078 -94.272 371.6 20060101 20200625 725457 99999 ALGONA US IA KAXA 43.078 -94.272 372.0 19950430 20051231 725458 04907 CLARION MUNICIPAL AIRPORT US IA KCAV 42.742 -93.759 354.2 20060101 20200625 725458 99999 CLARION MUNI US IA KCAV 42.75 -93.76700000000001 354.0 19950423 20051231 725460 14933 DES MOINES INTERNATIONAL AIRPORT US IA KDSM 41.534 -93.65299999999999 291.7 19730101 20200625 725461 94988 MARSHALLTOWN MUNICIPAL APT US IA KMIW 42.111000000000004 -92.916 296.9 20060101 20200625 725461 99999 MARSHALL TOWN MUNI US IA KMIW 42.113 -92.91799999999999 297.0 19970123 20051231 725462 14937 IOWA CITY MUNICIPAL ARPT US IA KIOW 41.633 -91.54299999999999 198.1 19970101 20200625 725462 99999 IOWA CITY MUNI US IA KIOW 41.638999999999996 -91.54700000000001 204.0 20000101 20031231 725463 14966 CHARLES CITY MUNICIPAL APT US IA KCCY 43.073 -92.611 342.9 20060101 20200625 725463 99999 CHARLES CITY MUNI US IA KCCY 43.067 -92.617 343.0 19950423 20051231 725464 04977 NEWTON MUNICIPAL AIRPORT US IA KTNU 41.674 -93.022 290.5 20060101 20200626 725464 99999 NEWTON MUNI US IA KTNU 41.667 -93.01700000000001 290.0 19950212 20051231 725465 14950 OTTUMWA INDUSTRIAL AIRPORT US IA KOTM 41.108000000000004 -92.447 256.6 19730101 20200625 725466 04938 ANKENY REGIONAL AIRPORT US IA KIKV 41.691 -93.566 277.4 20060101 20200625 725466 99999 ANKENY REGIONAL ARP US IA KIKV 41.683 -93.55 277.0 19730101 20051231 725467 04973 SHENANDOAH MUNICIPAL ARPT US IA KSDA 40.751 -95.413 296.0 20060101 20200625 725467 99999 SHENANDOAH MUNI US IA KSDA 40.75 -95.417 296.0 19950212 20051231 725468 04910 ARTHUR N. NEU AIRPORT US IA KCIN 42.04600000000001 -94.789 367.0 20060101 20200625 725468 99999 ARTHUR N NEU US IA KCIN 42.05 -94.78299999999999 367.0 19950423 20051231 725469 04913 CHARITON MUNICIPAL AIRPORT US IA KCNC 41.019 -93.359 320.0 20060101 20200625 725469 99999 CHARITON MUNI US IA KCNC 41.016999999999996 -93.367 320.0 19950423 20051231 725470 94908 DUBUQUE REGIONAL AIRPORT US IA KDBQ 42.398 -90.704 321.9 19730101 20200625 725472 94989 AMES MUNICIPAL AIRPORT US IA KAMW 41.99100000000001 -93.619 291.1 20060101 20200625 725472 99999 AMES MUNI US IA KAMW 42.0 -93.617 291.0 19970123 20051231 725473 94979 CLINTON MUNICIPAL AIRPORT US IA KCWI 41.833 -90.333 213.4 20060101 20200625 725473 99999 CLINTON MUNI US IA KCWI 41.833 -90.333 216.0 19880105 20051231 725474 04915 CRESTON MUNICIPAL AIRPORT US IA KCSQ 41.007 -94.363 394.4 20060101 20200625 725474 99999 CRESTON MUNI US IA KCSQ 41.016999999999996 -94.367 396.0 19950423 20051231 725475 04953 MONTICELLO REGIONAL ARPT US IA KMXO 42.224 -91.166 258.8 20060101 20200625 725475 99999 MONTICELLO RGNL US IA KMXO 42.217 -91.167 254.0 19950212 20051231 725476 04916 DECORAH MUNICIPAL AIRPORT US IA KDEH 43.275 -91.73899999999999 352.7 20060101 20200625 725476 99999 DECORAH MUNI US IA KDEH 43.276 -91.73899999999999 353.0 19950430 20051231 725477 04917 DENISON MUNICIPAL AIRPORT US IA KDNS 41.986000000000004 -95.381 388.9 20060101 20200625 725477 99999 DENISON MUNICIPAL US IA KDNS 41.986000000000004 -95.38 389.0 19950423 20051231 725478 04920 WEBSTER CITY MUNI AIRPORT US IA KEBS 42.43600000000001 -93.869 341.7 20060101 20200625 725478 99999 WEBSTER CITY MUNI US IA KEBS 42.437 -93.869 342.0 19950423 20051231 725479 04937 SCHENCK FIELD AIRPORT US IA KICL 40.722 -95.02600000000001 302.4 20060101 20200625 725479 99999 SCHENCK FLD US IA KICL 40.717 -95.03299999999999 302.0 19950423 20051231 725480 94910 WATERLOO MUNICIPAL AIRPORT US IA KALO 42.553999999999995 -92.40100000000001 264.6 19600301 20200625 725483 04930 FORT MADISON MUNICIPAL APT US IA KFSW 40.659 -91.32700000000001 220.7 20060103 20200623 725483 99999 FORT MADISON MUNI US IA KFSW 40.667 -91.333 221.0 19950423 20051231 725484 04942 LE MARS MUNICIPAL AIRPORT US IA KLRJ 42.778 -96.194 364.5 20060101 20200625 725484 99999 LE MARS MUNI US IA KLRJ 42.783 -96.2 365.0 19950423 20051231 725485 14940 MASON CITY MUNICIPAL ARPT US IA KMCW 43.153999999999996 -93.32700000000001 373.4 19730101 20200625 725486 04906 BOONE MUNICIPAL AIRPORT US IA KBNW 42.049 -93.848 353.6 20060101 20200625 725486 99999 BOONE MUNI US IA KBNW 42.05 -93.85 354.0 19730101 20051231 725487 04950 MUSCATINE MUNICIPIAL ARPT US IA KMUT 41.367 -91.15 166.7 20060101 20200625 725487 99999 MUSCATINE MUNI US IA KMUT 41.367 -91.15 167.0 19950423 20051231 725488 04955 OELWEIN MUNICIPAL AIRPORT US IA KOLZ 42.681000000000004 -91.97399999999999 328.0 20060101 20200625 725488 99999 OELWEIN MUNI US IA KOLZ 42.683 -91.96700000000001 328.0 19950423 20051231 725489 04959 ORANGE CITY MUNICIPAL ARPT US IA KORC 42.99 -96.06299999999999 431.0 20060101 20190301 725489 99999 ORANGE CITY MUNI US IA KORC 42.983000000000004 -96.06700000000001 431.0 19950423 20051231 725490 94933 FORT DODGE REGIONAL APRT US IA KFOD 42.55 -94.18299999999999 352.4 20060101 20200625 725490 99999 FORT DODGE (AWOS) US IA KFOD 42.55 -94.18299999999999 355.0 19780310 20051231 725493 04962 KNOXVILLE MUNICIPAL ARPT US IA KOXV 41.299 -93.11399999999999 282.2 20060101 20200622 725493 99999 KNOXVILLE US IA KOXV 41.299 -93.11399999999999 283.0 19950423 20051231 725494 04966 RED OAK MUNICIPAL AIRPORT US IA KRDK 41.01 -95.26 318.2 20060101 20200625 725494 99999 RED OAK MUNI US IA KRDK 41.016999999999996 -95.26700000000001 318.0 19950423 20051231 725495 04975 SHELDON MUNICIPAL AIRPORT US IA KSHL 43.208 -95.833 432.5 20060101 20200625 725495 99999 SHELDON MUNI US IA KSHL 43.217 -95.833 433.0 19950423 20051231 725496 04976 STORM LAKE MUNICIPAL ARPT US IA KSLB 42.597 -95.241 453.5 20060101 20200625 725496 99999 STORM LAKE MUNI US IA KSLB 42.6 -95.23299999999999 454.0 19950423 20051231 725497 04908 COUNCIL BLUFFS MUNI ARPT US IA KCBF 41.25899999999999 -95.76 381.9 20060101 20200625 725497 99999 COUNCIL BLUFFS MUNI US IA KCBF 41.266999999999996 -95.76700000000001 382.0 19950708 20051231 725498 94998 AUDUBON COUNTY AIRPORT US IA KADU 41.7 -94.917 392.3 20060101 20200625 725498 99999 AUDUBON CO US IA KADU 41.7 -94.917 392.0 19970718 20051231 725499 94991 LAMONI MUNICIPAL AIRPORT US IA KLWD 40.631 -93.90100000000001 346.0 20060101 20200625 725499 99999 LAMONI MUNI AIRPORT US IA KLWD 40.633 -93.9 344.0 19990323 20051231 725500 14942 EPPLEY AIRFIELD AIRPORT US NE KOMA 41.31 -95.899 299.3 19740419 20200625 725510 14939 LINCOLN MUNICIPAL AIRPORT US NE KLNK 40.851 -96.74799999999999 362.7 19421001 20200626 725512 14989 YORK MUNICIPAL AIRPORT US NE KJYR 40.894 -97.626 507.2 20060101 20200625 725512 99999 YORK MUNI US NE KJYR 40.897 -97.62299999999999 509.0 20040510 20051231 725513 04901 ARRA MUNI-AL POTTER FLD AP US NE KAUH 40.893 -97.99700000000001 548.3 20060101 20200625 725513 99999 AURORA MUNI AL POTT US NE KAUH 40.9 -97.98299999999999 550.0 19980408 20051231 725514 03757 WEBSTER NAVAL OUTLYING FIELD US MD KNUI 38.141999999999996 -76.429 6.4 20060822 20200625 725515 94947 BEATRICE MUNICIPAL AIRPORT US NE KBIE 40.301 -96.75399999999999 403.6 20060101 20200626 725515 99999 BEATRICE MUNI US NE KBIE 40.3 -96.75 404.0 19730101 20051231 725520 14935 CENTRAL NEBRASKA REGIONAL AIRPORT US NE KGRI 40.961000000000006 -98.314 560.8 19440301 20200625 725524 94958 EVELYN SHARP FIELD AIRPORT US NE KODX 41.623000000000005 -98.948 629.1 20060101 20200625 725524 99999 EVELYN SHARP FLD US NE KODX 41.617 -98.95 631.0 19810806 20051231 725525 94949 HASTINGS MUNICIPAL AIRPORT US NE KHSI 40.601 -98.426 597.7 20060101 20200625 725525 99999 HASTINGS MUNI US NE KHSI 40.605 -98.428 598.0 19730101 20051231 725526 14905 KEARNEY MUNICIPAL AIRPORT US NE KEAR 40.733000000000004 -99.0 649.2 20060101 20200625 725526 99999 KEARNEY MUNI US NE KEAR 40.717 -99.0 649.0 19430312 20051231 725527 94978 TEKAMAH MUNICIPAL AIRPORT US NE KTQE 41.763999999999996 -96.178 313.3 20060101 20200625 725527 99999 TEKAMAH MUNI US NE KTQE 41.766999999999996 -96.18299999999999 313.0 19951107 20051231 725528 99999 CRAM FLD US NE KBUB 41.777 -99.15 665.1 19810121 19810429 725530 94918 OMAHA US NE 41.367 -96.01700000000001 405.7 19730101 19950916 725530 99999 OMAHA NE. US 41.367 -96.01700000000001 406.0 20011029 20050906 725532 14942 OMAHA EPPLEY AIRFIELD US NE KOMA 41.31 -95.899 299.3 19730101 19740217 725533 94957 BRENNER FIELD AIRPORT US NE KFNB 40.08 -95.59200000000001 298.7 20000101 20200625 725533 99999 FALLS CITY/BRENNER US NE KFNB 40.083 -95.6 300.0 19810904 19991231 725540 14949 OFFUTT AFB AIRPORT US NE KOFF 41.117 -95.917 319.1 19480112 20200625 725540 99999 OFFUTT AFB US NE KOFF 41.117 -95.9 321.0 20000101 20041231 725541 04993 NEBRASKA CITY MUNI AIRPORT US NE KAFK 40.606 -95.86399999999999 351.4 20060101 20200625 725541 99999 NEBRASKA CITY MUNI US NE KAFK 40.6 -95.867 354.0 20040510 20051231 725550 99999 US 19730101 19760305 725551 99999 BURWELL MUNI US NE K20 41.783 -99.15 664.0 19760305 19801101 725555 94946 BROKEN BOW MUNICIPAL ARPT US NE KBBW 41.433 -99.633 771.1 20060101 20200625 725555 99999 BROKEN BOW MUNI US NE KBBW 41.433 -99.65 776.0 19730101 20051231 725556 94975 AINSWORTH MUNICIPAL ARPT US NE KANW 42.577 -100.001 787.6 20060101 20200625 725556 99999 AINSWORTH MUNICIPAL US NE KANW 42.57899999999999 -100.0 789.0 19430203 20051231 725560 14941 KARL STEFAN MEMORIAL AIRPORT US NE KOFK 41.986000000000004 -97.435 472.7 19730101 20200625 725564 04924 FREMONT MUNICIPAL AIRPORT US NE KFET 41.449 -96.52 366.7 20060101 20200625 725564 99999 FREMONT MUNI US NE KFET 41.449 -96.52 367.0 19951107 20051231 725565 94951 COLUMBUS MUNICIPAL AIRPORT US NE KOLU 41.433 -97.35 441.1 20060101 20200625 725565 99999 COLUMBUS MUNI US NE KOLU 41.45 -97.333 440.0 19730101 20051231 725566 04957 THE O'NEILL MUNI-JOHN L BAKER FIELD AIRPORT US NE KONL 42.47 -98.68799999999999 619.1 20060101 20200625 725566 99999 THE ONEILL MUNI J BA US NE KONL 42.47 -98.68799999999999 619.0 19530804 20051231 725570 14943 SIOUX GATEWAY/COL BUD DAY FIELD AP US IA KSUX 42.391000000000005 -96.37899999999999 333.8 19421001 20200625 725580 99999 VALLEY US NE KOAX 41.317 -96.35 351.5 20000216 20050420 725610 24030 SIDNEY MUNICIPAL AIRPORT US NE KSNY 41.099 -102.986 1309.4 19770827 20200625 725610 99999 SIDNEY MUNI (AMOS) US NE KSNY 41.1 -102.98299999999999 1312.0 20000101 20031231 725620 24023 NORTH PLATTE RGNL AP LEE BIRD FD AP US NE KLBF 41.121 -100.669 846.7 19730101 20200625 725621 94063 SEARLE FIELD AIRPORT US NE KOGA 41.119 -101.76799999999999 990.6 20060101 20200625 725621 99999 SEARLE FLD US NE KOGA 41.117 -101.76700000000001 999.0 19970123 20051231 725624 14994 JIM KELLY FIELD AIRPORT US NE KLXN 40.789 -99.771 733.0 20050101 20200625 725624 99999 JIM KELLY FLD US NE KLXN 40.791 -99.777 735.0 19970123 20041231 725625 94040 MC COOK MUNICIPAL AIRPORT US NE KMCK 40.205999999999996 -100.59100000000001 771.1 20060101 20200625 725625 99999 MCCOOK RGNL US NE KMCK 40.2 -100.583 782.0 19730101 20051231 725626 24091 IMPERIAL MUNICIPAL AIRPORT US NE KIML 40.51 -101.62 996.1 19730401 20200625 725626 99999 IMPERIAL MUNI US NE KIML 40.509 -101.62100000000001 997.0 20000101 20031231 725627 99999 MULLEN / HOOKER COUNTY US NE KMHN 42.05 -101.07 994.0 19730101 19951209 725628 04935 BREWSTER FIELD AIRPORT US NE KHDE 40.45 -99.339 702.3 20060101 20200625 725628 99999 BREWSTER FLD US NE KHDE 40.45 -99.333 704.0 19730101 20051231 725630 24030 SIDNEY MUNICIPAL AP US NE KSNY 41.099 -102.986 1312.5 19730101 19770819 725634 99999 COZAD MUNI US NE KCZD 40.869 -100.00399999999999 762.6 19851106 19910405 725635 24044 ALLIANCE MUNICIPAL AIRPORT US NE KAIA 42.056999999999995 -102.802 1197.6 20060101 20200625 725635 99999 ALLIANCE MUNI US NE KAIA 42.05 -102.8 1198.0 19421122 20051231 725636 24017 CHADRON MUNICIPAL AIRPORT US NE KCDR 42.836999999999996 -103.098 1004.0 19730101 20200625 725636 99999 CHADRON MUNI US NE KCDR 42.833 -103.1 1005.0 20000101 20031231 725637 99999 GORDON MUNI US NE KGRN 42.806000000000004 -102.175 1085.7 19740101 20200624 725640 24018 CHEYENNE AIRPORT US WY KCYS 41.158 -104.807 1863.2 19480101 20200625 725643 99999 ARLINGTON EXIT I-80 US WY KARL 41.583 -106.2 2388.0 19750803 20080928 725644 99999 PUMPKIN VINE US WY KPUM 41.05 -105.46 2438.0 20030319 20040218 725645 24022 LARAMIE REGIONAL AIRPORT US WY KLAR 41.317 -105.68299999999999 2214.7 19730101 20200625 725646 99999 VEDAUWOO US WY KVDW 41.15 -105.4 2524.0 20030319 20080928 725647 99999 WHITAKER US WY KWTR 41.68 -105.45 1888.0 20020905 20031226 725648 99999 SIBLEY PEAK US WY KSIB 42.433 -105.03299999999999 1490.0 20020905 20041030 725649 99999 WHEATLAND US WY KBRX 41.95 -104.95 1509.0 20020905 20041027 725650 03017 DENVER INTERNATIONAL AIRPORT US CO KDEN 39.833 -104.65799999999999 1650.2 19940718 20200625 725660 24028 WESTERN NE REGIONAL/HEILIG FIELD AP US NE KBFF 41.871 -103.59299999999999 1202.4 19430113 20200625 725665 94073 KMBAL MUNI/R E ARRAJ FD AP US NE KIBM 41.18899999999999 -103.671 1491.7 20060101 20200625 725665 99999 KIMBALL MUNI R E ARR US NE KIBM 41.18 -103.67 1501.0 20030512 20051231 725670 24032 MILLER FIELD AIRPORT US NE KVTN 42.878 -100.55 789.4 19480101 20200625 725680 99999 DOUGLAS AIRPORT US WY 42.8 -105.383 1502.0 19730101 19760305 725681 24019 DOUGLAS US WY 4DG 42.75 -105.383 1466.1 19760305 19770227 725685 24019 DOUGLAS US WY K4DG 42.75 -105.383 1477.0 19770301 19950101 725686 94057 CONVERSE COUNTY AIRPORT US WY KDGW 42.79600000000001 -105.38 1504.5 20060101 20200625 725686 99999 CONVERSE CO US WY KDGW 42.797 -105.38600000000001 1503.0 19990114 20051231 725690 24089 NATRONA COUNTY INTERNATIONAL AP US WY KCPR 42.898 -106.47399999999999 1620.9 19400101 20200625 725700 24046 CRAIG-MOFFAT AIRPORT US CO KCAG 40.493 -107.524 1886.7 20060101 20200625 725700 99999 CRAIG-MOFFAT US CO KCAG 40.5 -107.53299999999999 1915.0 19770827 20051231 725705 94030 VERNAL AIRPORT US UT KVEL 40.443000000000005 -109.51299999999999 1606.3 20060101 20200625 725705 99999 VERNAL US UT KVEL 40.441 -109.51 1609.0 19730101 20051231 725706 99999 PRICE/CARBON(RAMOS) US UT 39.617 -110.75 1796.0 19730101 19770802 725707 99999 VERNAL US UT 40.47 -109.53 1612.0 19730620 19820730 725708 99999 ROOSEVELT & US UT U67 40.3 -109.98299999999999 1556.0 19730101 19850401 725710 94025 YAMPA VALLEY AIRPORT US CO KHDN 40.481 -107.21799999999999 2011.7 20050101 20200625 725711 99999 US 19730101 19741024 725715 94025 HAYDEN/YAMPA (AWOS) US CO KHDN 40.481 -107.21799999999999 2012.3 20060101 20100331 725715 99999 HAYDEN/YAMPA (AWOS) US CO 40.483000000000004 -107.21700000000001 2012.0 19730101 20041231 725716 99999 RIFLE AVIATION WEATHER REPORTING US CO 39.53 -107.8 1622.0 19730101 19960630 725717 03016 GARFIELD CO REGIONAL ARPT US CO KRIL 39.528 -107.72 1683.1 20060101 20200625 725717 99999 GARFIELD CO RGNL US CO KRIL 39.533 -107.73299999999999 1690.0 19870609 20051231 725720 24127 SALT LAKE CITY INTERNATIONAL AIRPORT US UT KSLC 40.778 -111.969 1287.8 19411101 20200625 725723 99999 SALT LAKE CITY US UT KZLC 40.783 -111.95 1288.0 19760520 19760607 725724 24174 PROVO MUNICIPAL AIRPORT US UT KPVU 40.219 -111.723 1370.7 20060101 20200625 725724 99999 PROVO MUNI US UT KPVU 40.219 -111.723 1371.0 19800529 20051231 725740 24027 ROCK SPRINGS ARPT US WY KRKS 41.593999999999994 -109.053 2055.9 19730101 19850531 725741 24027 ROCK SPRINGS ARPT US WY KRKS 41.593999999999994 -109.053 2055.9 19850531 19900228 725743 99999 ROCK SPRINGS VORTAC US WY 41.583 -109.01700000000001 2070.0 19881208 19901206 725744 24027 RCK SRINGS-SWETWTER CO APT US WY KRKS 41.595 -109.053 2055.0 19900301 20200625 725745 24057 RAWLINS MUNICIPAL US WY KRWL 41.8 -107.2 2055.3 19730101 20100731 725750 24126 OGDEN-HINCKLEY AIRPORT US UT KOGD 41.196000000000005 -112.01100000000001 1362.5 19730101 20200625 725750 99999 OGDEN-HINCKLEY MUNI US UT KOGD 41.2 -112.01700000000001 1362.0 20000101 20031231 725753 99999 EAGLE RANGE US UT KU16 41.05 -113.07 1292.0 19910711 20200621 725755 24101 HILL AFB AIRPORT US UT KHIF 41.117 -111.96700000000001 1459.7 19411001 20200625 725755 99999 HILL AFB US UT KHIF 41.117 -111.96700000000001 1460.0 20000101 20041231 725760 24021 HUNT FIELD AIRPORT US WY KLND 42.815 -108.726 1704.4 19730101 20200625 725763 94053 TORRINGTON MUNICIPAL ARPT US WY KTOR 42.06100000000001 -104.15799999999999 1279.9 20060101 20200625 725763 99999 TORRINGTON MUNI US WY KTOR 42.067 -104.15 1282.0 20010811 20051231 725765 24061 RIVERTON REGIONAL US WY KRIW 43.06399999999999 -108.459 1684.0 19730101 20070401 725765 99999 RIVERTON REGIONAL US WY 43.067 -108.46700000000001 1699.0 20000101 20031231 725770 99999 US 19730101 19750701 725771 99999 726710 US WY 42.533 -110.117 2079.0 19760405 19780314 725775 04111 EVAN-UINTA CO BURNS FLD AP US WY KEVW 41.273 -111.031 2183.3 19730101 20200625 725775 99999 EVANSTON UINTA CO BU US WY KEVW 41.266999999999996 -111.03299999999999 2175.0 20000101 20031231 725776 24166 JACKSON HOLE AIRPORT US WY KJAC 43.6 -110.73299999999999 1956.5 20060101 20200625 725776 99999 JACKSON HOLE US WY KJAC 43.6 -110.73299999999999 1966.0 19730101 20051231 725780 24156 POCATELLO REGIONAL AIRPORT US ID KPIH 42.92 -112.571 1357.0 19430101 20200625 725784 04109 ELK CITY US ID KP69 46.144 -115.596 451.1 20060101 20200625 725784 99999 LOWELL US ID KP69 46.133 -115.6 480.0 19830802 20051231 725785 24145 IDAHO FALLS REGIONAL ARPT US ID KIDA 43.519 -112.064 1442.6 19730101 20200625 725786 24151 MALAD CITY AIRPORT US ID KMLD 42.188 -112.24799999999999 1384.7 19730101 20200622 725786 99999 MALAD CITY US ID KMLD 42.167 -112.29700000000001 1373.0 20000101 20041231 725787 24158 STREVELL US ID K4SV 42.016999999999996 -113.25 1612.0 19730101 19840913 725788 94182 MC CALL US ID KMYL 44.888999999999996 -116.102 1530.1 20080101 20091231 725788 99999 MC CALL US ID 44.883 -116.1 1531.0 19831103 19951108 725800 99999 US 19730101 19760305 725801 99999 US 19760305 19770213 725805 24172 DERBY FIELD AIRPORT US NV KLOL 40.068000000000005 -118.569 1189.3 19770101 20200625 725810 24193 WENDOVER AIRPORT US UT KENV 40.721 -114.036 1291.4 19420801 20200625 725810 99999 WENDOVER/AF. AUX. F US UT KENV 40.733000000000004 -114.03299999999999 1292.0 20000101 20031231 725814 99999 DUGWAY PRVG GROUND US UT 40.2 -112.93299999999999 1326.0 19770804 19891127 725816 99999 DUGWAY PG UTAH/MICHALES AAF US UT DPG 40.183 -112.93299999999999 1326.0 19430614 19760630 725820 99999 ELKO US NV 40.85 -115.73299999999999 1594.5 19730101 20000213 725821 99999 US 19760305 19770213 725824 03170 EUREKA (RAMOS) US NV KP68 39.601 -116.006 1809.3 20060101 20100731 725824 99999 EUREKA (RAMOS) US NV 39.516999999999996 -115.96700000000001 1993.0 19790510 20041231 725825 24121 ELKO REGIONAL AIRPORT US NV KEKO 40.829 -115.789 1533.1 19770101 20200625 725826 99999 AUSTIN US NV 39.5 -117.08 2014.0 19730101 20030501 725827 94190 WILD HORSE RESERVOIR US NV KAWH 41.636 -115.801 1901.7 20060102 20070701 725827 99999 WILDHORSE RES/ELKO US NV KAWH 41.667 -115.78299999999999 1902.0 19870629 20051227 725830 24128 WINNEMUCCA MUNICIPAL AIRPORT US NV KWMC 40.902 -117.80799999999999 1309.4 19730101 20200625 725835 24119 BATTLE MOUNTAIN AIRPORT US NV KBAM 40.611999999999995 -116.89200000000001 1373.1 19730101 20200625 725835 99999 BATTLE MOUNTAIN US NV KBAM 40.6 -116.867 1381.0 20000101 20041231 725837 99999 SUSANVILLE MUNI US CA KSVE 40.376 -120.573 1264.6 19770301 20200624 725840 99999 US 19730101 19760305 725841 99999 SUSANVILLE MUNI US CA SVE 40.383 -120.56700000000001 1264.0 19760305 19770227 725845 23225 BLUE CANYON - NYACK ARPT US CA KBLU 39.277 -120.71 1608.1 19730101 20200625 725846 93201 TRUCKEE-TAHOE AIRPORT US CA KTRK 39.32 -120.139 1798.3 20060101 20200625 725846 99999 TRUCKEE-TAHOE US CA KTRK 39.32 -120.133 1798.0 19730101 20051231 725847 93230 LAKE TAHOE AIRPORT US CA KTVL 38.898 -119.995 1924.5 20000101 20200625 725847 99999 LAKE TAHOE US CA KTVL 38.883 -120.0 1909.0 19730101 19991231 725848 99999 SHELTER COVE US CA 40.02 -124.07 21.0 19730101 20070628 725850 93228 HAYWARD EXECUTIVE AIRPORT US CA KHWD 37.654 -122.115 13.1 20100801 20200625 725860 99999 GOODING MUNICIPAL US ID 42.917 -114.76700000000001 1137.0 19730101 20051215 725861 24142 GOODING MUNICIPAL ARPT US ID GNG 42.917 -114.76700000000001 1127.2 19760305 19820531 725864 94182 MCCALL MUNICIPAL AIRPORT US ID KMYL 44.888999999999996 -116.102 1528.0 20050101 20200625 725865 94161 FRIEDMAN MEMORIAL AIRPORT US ID KSUN 43.5 -114.3 1617.3 20060101 20200625 725865 99999 FRIEDMAN MEM US ID KSUN 43.5 -114.3 1622.0 19730101 20051231 725866 94178 JSIN FLD-MAGIC VLY RGN APT US ID KTWF 42.482 -114.48700000000001 1265.2 20060101 20200625 725866 99999 JOSLIN FLD MAGIC VA US ID KTWF 42.483000000000004 -114.48299999999999 1265.0 19730101 20051231 725867 24133 BURLEY MUNICIPAL AIRPORT US ID KBYI 42.542 -113.766 1266.1 19730101 20200625 725868 94184 ALLEN H TIGERT AIRPORT US ID KU78 42.65 -111.583 1779.7 20060101 20120928 725868 99999 ALLEN H TIGERT US ID KU78 42.633 -111.583 1780.0 19840111 20051231 725869 94186 MALTA US ID K77M 42.302 -113.335 1375.0 19850208 20100731 725869 99999 MALTA US ID K77M 42.32 -113.33 1375.0 20000101 20041231 725870 99999 US 19730103 19750514 725871 99999 US 19750515 19770211 725875 99999 OWYHEE US NV KOWY 41.953 -116.18799999999999 1638.0 19770301 19850619 725890 99999 US 19730101 19760305 725891 99999 LAKEVIEW US OR 42.183 -120.35 1455.0 19760305 19770227 725895 94236 KLAMATH FALLS AIRPORT US OR KLMT 42.147 -121.72399999999999 1244.8 19590901 20200625 725895 99999 KLAMATH FALLS US OR KLMT 42.15 -121.73299999999999 1248.0 20000101 20031231 725896 99999 LAKEVIEW US OR 42.22 -120.35 1455.0 19770301 19971001 725900 99999 FORT BRAGG US CA 39.4 -123.82 19.0 19430607 20031207 725905 23275 UKIAH MUNICIPAL AIRPORT US CA KUKI 39.126 -123.20100000000001 183.2 19730101 20200625 725905 99999 UKIAH MUNI US CA KUKI 39.117 -123.2 187.0 20000101 20031231 725910 24216 RED BLUFF MUNICIPAL ARPT US CA KRBL 40.152 -122.25399999999999 107.6 19730101 20200625 725915 24257 REDDING MUNICIPAL ARPT US CA KRDD 40.518 -122.29899999999999 153.0 19440901 19910331 725920 24257 REDDING MUNICIPAL AIRPORT US CA KRDD 40.518 -122.29899999999999 151.5 19910331 20200625 725930 23233 SALINAS MUNICIPAL AIRPORT US CA KSNS 36.664 -121.60799999999999 22.6 20050101 20200625 725939 99999 COUNCIL BLUFFS US IA 41.266999999999996 -95.76700000000001 382.0 19950423 19950531 725940 24213 WOODLEY ISLAND (NEW 10/94) US CA KEKA 40.81 -124.16 6.1 20060101 20200625 725940 99999 EUREKA US CA KEKA 40.8 -124.167 18.0 19480101 20051231 725945 24283 ARCATA AIRPORT US CA KACV 40.978 -124.109 61.0 19730101 20200625 725946 24286 JACK MCNAMARA FIELD ARPT US CA KCEC 41.78 -124.23700000000001 17.4 19730101 20200625 725946 99999 JACK MC NAMARA FLD US CA KCEC 41.766999999999996 -124.23299999999999 17.0 20000101 20031231 725947 99999 SAMOA / HUMBOLDT BAY US CA 40.77 -124.23 2.0 19750916 19960619 725948 99999 TRINIDAD HEAD COAST GUARD LIGHT US 41.05 -124.15 58.0 19760130 19960701 725949 99999 ST GEORGE REEF COAST GUARD LIGHT US CA 41.83 -124.4 45.0 19791223 19791223 725950 99999 ALTURAS US CA 41.5 -120.53299999999999 1341.0 19730101 19760305 725951 99999 US 19760305 19770213 725955 24259 SISKIYOU COUNTY AIRPORT US CA KSIY 41.781000000000006 -122.46799999999999 808.0 19500101 20200625 725955 99999 SISKIYOU CO US CA KSIY 41.783 -122.46700000000001 807.0 20000101 20031231 725956 24212 BURNEY US CA KBNY 40.883 -121.667 957.0 19730101 19860817 725956 99999 BURNEY US CA 40.883 -121.667 957.0 20041109 20041109 725957 24215 MOUNT SHASTA US CA KMHS 41.333 -122.333 1077.5 19770101 20200625 725957 99999 MOUNT SHASTA US CA KMHS 41.317 -122.31700000000001 1077.0 20000101 20031231 725958 94299 ALTURAS MUNICIPAL AIRPORT US CA KAAT 41.49100000000001 -120.564 1333.5 20060101 20200625 725958 99999 ALTURAS MUNI US CA KAAT 41.483000000000004 -120.56700000000001 1333.0 19831104 20051231 725959 99999 MONTAGUE US CA K1O5 41.733000000000004 -122.55 770.0 19480101 19960312 725970 24225 ROGUE VALLEY INTL-MEDFORD AIRPORT US OR KMFR 42.375 -122.87700000000001 400.2 19730101 20200625 725975 24235 SEXTON SUMMIT US OR KSXT 42.6 -123.36399999999999 1168.0 19730101 20200625 725976 94285 LAKE COUNTY AIRPORT US OR KLKV 42.167 -120.4 1441.1 20060101 20200625 725976 99999 LAKE CO US OR KLKV 42.167 -120.4 1443.0 19910829 20051231 725980 99999 US 19730101 19760305 725981 99999 US 19760305 19770213 725985 24267 BROOKINGS US OR KBOK 42.074 -124.29 139.9 19770225 20200625 725985 99999 BROOKINGS US OR 42.05 -124.28 24.0 20000101 20020417 725990 99999 US 19730101 19741201 725995 99999 CAPE BLANCO COAST GUARD STATION US OR 42.83 -124.57 57.0 19750911 19811004 726000 99999 SABLE ISLAND & CA 43.933 -60.016999999999996 2.0 19730101 19770630 726010 99999 SHEARWATER(CAN-MIL) CA 44.633 -63.5 51.0 19730101 19770810 726020 99999 US 19730101 19760405 726021 99999 US 19760407 19770125 726025 99999 WESTERN HEAD (MARS) CA 44.633 -63.5 51.0 19770125 19770630 726030 99999 YARMOUTH AIRPORT CA 43.833 -66.083 48.0 19730101 19770630 726035 99999 MOUNT DESSERT (CGS) US ME 43.967 -68.133 1.0 19750911 19800911 726036 99999 ROCKLAND LS (CGS) US ME 43.833 -68.833 1.0 19750911 19900530 726037 99999 CAPE NEDDICK COAST GUARD LIGHT S US 43.17 -70.6 12.0 19750911 19871119 726040 99999 FRANCONIA NH US 44.217 -71.75 287.0 19730101 20060410 726050 14745 CONCORD MUNICIPAL AIRPORT US NH KCON 43.205 -71.503 104.6 19730101 20200625 726054 99999 BOSTON / HULL COAST GUARD LIGHT US 42.32 -70.88 0.0 19770827 19951018 726055 04743 PEASE INTERNATIONAL TRADEPORT AIRPORT US NH KPSM 43.083 -70.817 30.5 20060101 20200625 726055 99999 PEASE INTL TRADEPOR US NH KPSM 43.083 -70.817 31.0 19560409 20051231 726056 54791 SKYHAVEN AIRPORT US NH KDAW 43.278 -70.922 98.5 20060101 20200625 726056 99999 SKYHAVEN US NH KDAW 43.284 -70.929 98.0 20010811 20051231 726058 99999 NEW CASTLES COAST GUARD LIGHT ST US 43.12 -70.48 1.0 19750911 19830516 726059 99999 PORTSMOUTH HARBOR US NH 43.07 -70.72 1.0 19750911 19940630 726060 14764 PORTLAND INTERNATIONAL JETPORT AP US ME KPWM 43.641999999999996 -70.304 13.7 19730101 20200625 726064 64709 SANFORD REGIONAL AIRPORT US ME KSFM 43.394 -70.708 74.4 20060101 20200625 726064 99999 SANFORD RGNL US ME KSFM 43.4 -70.7 74.0 19450301 20051231 726065 99999 GOAT ISLAND REMOTE AUTOMATIC MET US 43.33 -70.4 12.0 19750911 19891026 726066 99999 HALFWAY ROCK COAST GUARD LIGHT S US 43.65 -70.03 1.0 19750803 19810623 726067 99999 SCITUATE COAST GUARD STATION US MA 42.2 -70.72 1.0 19750911 19960401 726068 99999 RACE POINT COAST GUARD STATION US MA 42.05 -70.18 1.0 19750911 19960701 726069 99999 SANDWICH COAST GUARD STATION US MA 41.78 -70.5 1.0 19750911 19960701 726070 14606 BANGOR INTERNATIONAL ARPT US ME KBGR 44.798 -68.819 45.1 20100801 20200626 726070 99999 BANGOR INTL US ME KBGR 44.8 -68.817 60.0 19730101 20100731 726071 14606 BANGOR AIRPORT US ME KBGR 44.798 -68.819 58.5 19411201 19900228 726073 14615 WATERVILLE ROBERT LAFLEUR ARPT US ME KWVL 44.533 -69.667 94.5 20060101 20200625 726073 99999 WATERVILLE R LAFLEUR US ME KWVL 44.533 -69.683 101.0 19880105 20051231 726074 99999 GREENVILLE (AMOS) US ME 45.45 -69.55 427.0 19810310 19910304 726076 99999 HERON NECK COAST GUARD LIGHT STA US 44.03 -68.87 1.0 19750808 19811218 726077 14616 HANCOCK CO-BAR HARBOR ARPT US ME KBHB 44.45 -68.367 26.8 20060101 20200625 726077 99999 HANCOCK CO BAR HARBO US ME KBHB 44.45 -68.367 25.0 19421102 20051231 726078 99999 EGG ROCK LIGHT STATION US ME 44.35 -68.13 12.0 19750911 19761023 726079 94601 KNOX COUNTY REGIONAL ARPT US ME KRKD 44.067 -69.1 14.3 20060101 20200626 726079 99999 KNOX CO RGNL US ME KRKD 44.067 -69.1 17.0 19770427 20051231 726080 14608 EASTPORT US ME KEPM 44.917 -67.0 23.0 19730101 20050604 726080 99999 EASTPORT MUNI US ME KEPM 44.91 -67.013 13.7 20010106 20041015 726083 04836 NRN AROOSTOOK REGIONAL APT US ME KFVE 47.286 -68.313 301.1 20060101 20200625 726083 99999 NORTHERN AROOSTOOK US ME KFVE 47.285 -68.313 301.0 19880105 20051231 726084 99999 WEST JONESPORT COAST GUARD STATI US 44.53 -67.62 5.0 19850130 19960701 726085 99999 WEST QUODDY HEAD COAST GUARD LIG US 44.8 -66.95 1.0 19750911 19880531 726086 99999 LIBBY ISLAND (CGS) US ME 44.567 -67.367 1.0 19760630 19830224 726087 99999 PORTLAND HEAD COAST GUARD LIGHT US 43.62 -70.2 23.0 19780211 19890523 726088 14606 BANGOR INTL US ME KBGR 44.798 -68.819 58.5 19900301 20100731 726090 99999 SAINT JOHN AIRPORT CA 45.317 -65.883 93.0 19730101 19770801 726100 99999 SHERBROOKE AIRPORT CA 45.433 -71.683 239.0 19730101 19770630 726110 99999 US 19730101 19760305 726111 94765 LEBANON MUNICIPAL AP US NH KLEB 43.626000000000005 -72.305 173.7 19760305 19770227 726114 54771 MORRISVILLE-STOWE ST ARPT US VT KMVL 44.534 -72.61399999999999 223.1 20060101 20200625 726114 99999 MORRISVILLE STOWE ST US VT KMVL 44.533 -72.617 223.0 19970123 20051231 726115 54740 HARTNESS ST (SPNGFLD) ARPT US VT KVSF 43.343999999999994 -72.518 176.2 20060101 20200625 726115 99999 HARTNESS STATE US VT KVSF 43.35 -72.517 176.0 19730924 20051231 726116 94765 LEBANON MUNICIPAL AIRPORT US NH KLEB 43.626000000000005 -72.305 182.3 19930101 20200625 726116 99999 LEBANON MUNI US NH KLEB 43.617 -72.3 184.0 19770301 20031231 726120 99999 NEWPORT US VT 44.93 -72.2 233.0 19730101 20010621 726130 14755 MT. WASHINGTON OBSERVATORY US NH KMWN 44.27 -71.303 1911.7 20060101 20200624 726130 99999 MOUNT WASHINGTON US NH KMWN 44.266999999999996 -71.3 1910.0 19730101 20051231 726134 54728 WHITEFIELD (ASOS) US NH KHIE 44.368 -71.545 327.4 20080101 20091231 726134 99999 WHITEFIELD (ASOS) US NH KHIE 44.35 -71.55 319.0 19960628 19960628 726140 54742 ST. JOHNSBURY(AMOS) US VT K1V4 44.42 -72.01899999999999 212.4 19730101 20200625 726145 94705 EDWARD F KNAPP STATE ARPT US VT KMPV 44.20399999999999 -72.562 343.2 19730101 20200625 726150 99999 WOLFEBORO/LAKES RGN US NH 43.583 -71.267 177.0 19730101 19780926 726155 54736 LACONIA MUNICIPAL AIRPORT US NH KLCI 43.567 -71.433 166.1 20060101 20200625 726155 99999 LACONIA MUNI US NH KLCI 43.567 -71.417 166.0 19730101 20051231 726156 99999 WOOD ISLAND LIGHT STATION US ME 43.45 -70.32 9.0 19781128 19861118 726157 99999 OWL'S HEAD LIGHT STATION US ME 44.08 -69.03 15.0 19781128 19890303 726160 94700 BERLIN MUNICIPAL AIRPORT US NH KBML 44.576 -71.179 353.0 20060101 20200625 726160 99999 BERLIN MUNICIPAL US NH KBML 44.583 -71.183 353.0 19730101 20051231 726163 54770 JAFFREY MINI-SLVR RNCH APT US NH KAFN 42.805 -72.00399999999999 317.0 20060101 20200625 726163 99999 JAFFREY ARPT SILVER US NH KAFN 42.8 -72.0 317.0 19970313 20051231 726164 54728 MT WASHINGTON RGNL AIRPORT US NH KHIE 44.368 -71.545 327.4 20050101 20200625 726164 99999 MT WASHINGTON RGNL US NH KHIE 44.368 -71.544 327.0 19990114 20180516 726165 94721 DILLANT-HOPKINS AIRPORT US NH KEEN 42.9 -72.267 146.6 20060101 20200626 726165 99999 DILLANT HOPKINS US NH KEEN 42.9 -72.267 149.0 19730104 20051231 726166 54781 W. H. MORSE STATE AIRPORT US VT KDDH 42.891000000000005 -73.247 251.8 20060101 20200625 726166 99999 WILLIAM H MORSE STATE US VT 42.891000000000005 -73.24600000000001 252.1 20010811 20051231 726170 14742 BURLINGTON INTERNATIONAL AIRPORT US VT KBTV 44.468 -73.15 100.6 19480101 20200625 726180 99999 RUMFORD ME. US 44.533 -70.533 205.0 19730101 20070201 726183 54772 EASTERN SLOPES RGNL ARPT US ME KIZG 43.99100000000001 -70.94800000000001 135.6 20060101 20200626 726183 99999 EASTERN SLOPES RGNL US ME KIZG 43.99100000000001 -70.94800000000001 138.0 19970123 20051231 726184 94709 AUBURN/LEWISTON MUNI ARPT US ME KLEW 44.05 -70.283 87.8 20060101 20200626 726184 99999 AUBURN LEWISTON MUNI US ME KLEW 44.05 -70.283 88.0 19880310 20051231 726185 14605 AUGUSTA STATE AIRPORT US ME KAUG 44.316 -69.797 107.0 19730101 20200626 726186 99999 GREAT DUCK ISLAND COAST GUARD LI US 44.15 -68.25 1.0 19750911 19861215 726187 99999 ROCKLAND COAST GUARD STATION US ME 44.1 -69.1 1.0 19750911 19960701 726188 99999 BEAR ISLAND COAST GUARD STATION US ME 44.28 -68.27 12.0 19750916 19801006 726189 99999 SOUTHWEST HARBOR US ME 44.27 -68.32 5.0 19870320 19960701 726190 94626 MAINE FOREST SERVICE US ME KGNR 45.461999999999996 -69.595 427.0 20060101 20200625 726190 99999 GREENVILLE US ME KGNR 45.467 -69.583 316.0 19770827 20051231 726191 99999 GREENVILLE (AMOS) & US ME 45.467 -69.583 427.0 19730101 19770802 726196 14610 MILLINOCKET MUNICIPAL ARPT US ME KMLT 45.648 -68.693 123.8 19430301 20200625 726196 99999 MILLINOCKET MUNI US ME KMLT 45.65 -68.683 124.0 20000101 20031231 726200 99999 KINGSTON ARPT (MAN) CA 44.217 -76.6 93.0 19730101 19770630 726210 99999 TRENTON (CAN-MIL) CA 44.117 -77.533 86.0 19730101 19770630 726221 94725 MASSENA AP US NY KMSS 44.93600000000001 -74.846 65.2 19730101 19900228 726223 94725 MASSENA INTL/RCHARDS FD AP US NY KMSS 44.93600000000001 -74.846 65.2 19900301 20200626 726225 04742 PLATTSBURGH INTL US NY KPBG 44.651 -73.468 71.0 19560115 19950927 726225 64776 PLATTSBURGH INTERNATIONAL AIRPORT US NY KPBG 44.65 -73.467 71.3 20070618 20200625 726226 99999 LA CROSSE(WFO) US WI KARX 43.817 -91.2 200.0 19420101 19800314 726227 94790 WATERTOWN INTL AIRPORT US NY KART 43.989 -76.02600000000001 96.9 19490501 20200625 726228 94740 ADIRONDACK REGIONAL ARPT US NY KSLK 44.385 -74.207 506.9 20060101 20200625 726228 99999 ADIRONDACK RGNL US NY KSLK 44.383 -74.2 507.0 19730101 20051231 726230 99999 LONDON AIRPORT CA 43.033 -81.15 278.0 19730101 19770630 726240 99999 TORONTO/PEARSON CA 43.683 -79.633 173.0 19730101 19770630 726245 99999 COTE-STE-CATH MOT CA 43.75 -79.483 198.0 19730101 19770630 726246 99999 HAMILTON AIRPORT & CA 43.167 -79.933 239.0 19730101 19770630 726247 99999 TORONTO IL ARPT AUT CA 43.633 -79.4 81.0 19730101 19770630 726248 99999 ST. CATHARINES ARPT CA 43.183 -79.183 98.0 19730101 19770630 726250 99999 PETAWAWA A ONT CA 45.95 -77.317 130.0 19730101 19770630 726260 99999 US 19730101 19750514 726261 99999 DARLINGTON & CA 44.233000000000004 -78.35 190.0 19750601 19770630 726266 99999 COBOURG CA 43.95 -78.167 78.0 19750807 19770630 726268 99999 POINT PETRE (MARS) CA 43.833 -77.15 81.0 19750905 19770630 726269 99999 PORT WELLER (MARS)& CA 43.25 -79.2 80.0 19750807 19770630 726270 94792 MONTREAL DORVAL INTL AP CA 45.467 -73.75 36.0 19730101 19770630 726275 99999 SAINT HUBERT ARPT & CA 45.516999999999996 -73.417 27.0 19730101 19770630 726276 99999 SUTTON JUNCTION/AUT CA 45.15 -72.583 237.0 19730108 19770630 726278 99999 MONTREAL/MIRABEL CA 45.683 -74.033 82.0 19751101 19770630 726280 99999 OTTAWA INTL AIRPORT CA 45.317 -75.667 114.0 19730101 19770630 726284 94836 SAWYER INTERNATIONAL APT US MI KSAW 46.35 -87.4 372.2 20060101 20200625 726284 99999 SAWYER INTL US MI KSAW 46.35 -87.383 372.0 20010811 20051231 726300 99999 EGBERT CA CXET 44.233000000000004 -79.783 251.0 19730101 20040820 726310 99999 MOUNT FOREST(MARS)& CA 43.983000000000004 -80.75 412.0 19730101 19770806 726315 99999 GODERICH CA 43.766999999999996 -81.7 213.0 19730102 19770630 726320 99999 WHITE LAKE US MI 42.683 -83.46700000000001 321.3 19770101 20020131 726330 99999 WIARTON AIRPORT CA 44.75 -81.1 222.0 19730101 19770630 726340 99999 GAYLORD US MI KAPX 44.9 -84.71700000000001 448.4 19730101 20010502 726341 99999 SARNIA CA 43.0 -82.3 181.0 19750501 19770630 726350 94860 GERALD R FORD INTERNATIONAL AIRPORT US MI KGRR 42.883 -85.524 244.8 19730101 20200625 726355 94871 SW MICHIGAN REGIONAL ARPT US MI KBEH 42.126000000000005 -86.428 196.0 20060101 20200625 726355 99999 SOUTHWEST MICHIGAN US MI KBEH 42.133 -86.43299999999999 196.0 19730101 20051231 726356 99999 SAINT JOSEPH COAST GUARD STATION US MI 42.12 -86.48 176.0 19770126 19960701 726357 94815 KLMAZO/BTL CREEK INTL ARPT US MI KAZO 42.235 -85.552 264.6 20060101 20200625 726357 99999 KALAMAZOO BATTLE CR US MI KAZO 42.233000000000004 -85.55 266.0 19730101 20051231 726358 00384 MICHIGAN CITY MUNICIPAL AIRPORT PHILLIPS FIELD US IN KMGC 41.703 -86.821 200.3 20120110 20200625 726358 99999 MICHIGAN CITY MUNICIPAL AIRPORT US IN KMGC 41.703 -86.821 199.6 19770126 20180516 726360 14840 MUSKEGON COUNTY AIRPORT US MI KMKG 43.17100000000001 -86.23700000000001 190.5 19730101 20200626 726364 04883 MASON COUNTY AIRPORT US MI KLDM 43.963 -86.40799999999999 195.1 20050101 20200625 726364 99999 MASON CO US MI KLDM 43.967 -86.4 197.0 20010811 20041231 726365 99999 LUDINGTON COAST GUARD STATION US MI 43.95 -86.47 182.0 19770126 19960630 726366 99999 MUSKEGON COAST GUARD STATION US MI 43.23 -86.33 182.0 19770126 19890803 726367 99999 POINT BETSIE / FRANKFORT US MI 44.62 -86.2 183.0 19770126 19850813 726370 14826 BISHOP INTERNATIONAL AIRPORT US MI KFNT 42.967 -83.749 234.7 19730101 20200626 726375 94817 OAKLAND CO. INTNL AIRPORT US MI KPTK 42.665 -83.41799999999999 297.5 20060101 20200625 726375 99999 OAKLAND CO INTL US MI KPTK 42.667 -83.417 299.0 19730101 20051231 726376 99999 PORT HURON COAST GUARD STATION US MI 43.0 -82.42 177.0 19770126 19960701 726377 99999 SAGINAW RIVER COAST GUARD STATIO US 43.63 -83.85 177.0 19760926 19960701 726378 99999 SHELBY US AL KMBX 33.167 -86.76700000000001 178.0 19760513 19760513 726379 14845 MBS INTERNATIONAL AIRPORT US MI KMBS 43.533 -84.08 201.2 19730101 20200625 726380 94814 ROSCOMMON COUNTY AIRPORT US MI KHTL 44.358999999999995 -84.67399999999999 350.8 19730101 20200625 726381 99999 HYTOP(NEXRAD) US AL KHTX 34.933 -86.083 536.0 19840403 19870704 726384 14817 WEXFORD COUNTY AIRPORT US MI KCAD 44.283 -85.417 397.8 19900724 20200625 726384 99999 WEXFORD CO US MI KCAD 44.283 -85.417 398.0 20000101 20031231 726385 94894 MANISTEE CO-BLACKER ARPT US MI KMBL 44.266999999999996 -86.25 189.3 20060101 20200626 726385 99999 MANISTEE CO BLACKER US MI KMBL 44.272 -86.24700000000001 189.0 19730101 20051231 726386 99999 FRANKFORT COAST GUARD STATION US MI 44.63 -86.25 174.0 19770126 19960630 726387 14850 CHERRY CAPITAL AIRPORT US MI KTVC 44.74100000000001 -85.583 188.4 19730101 20200625 726388 99999 LANSING SHOAL LS US MI 45.9 -85.56700000000001 177.0 19800613 19850919 726389 99999 NORTH MANITOU SHOAL US MI 45.02 -85.95 177.0 19760926 19800622 726390 94849 ALPENA COUNTY REGIONAL AIRPORT US MI KAPN 45.071999999999996 -83.564 208.5 19730101 20200625 726391 00385 BALD MOUNTAIN COTTONWOOD PASS US CO K7BM 38.783 -106.21700000000001 2995.3 20050611 20200625 726391 99999 COTTONWOOD PASS US CO K7BM 38.78 -106.22 2995.0 20080101 20180520 726392 00424 SUNLIGHT US CO K5SM 39.433 -107.383 3232.1 20050611 20200625 726392 99999 SUNLIGHT MTN US CO K5SM 39.43 -107.38 3232.0 20080129 20180520 726393 99999 ALPENA NEXRAD US MI APX 44.917 -84.71700000000001 476.0 19990111 19990111 726394 04874 LUCE COUNTY AIRPORT US MI KERY 46.31100000000001 -85.45700000000001 281.3 20060101 20200625 726394 99999 LUCE CO US MI KERY 46.31100000000001 -85.45700000000001 265.0 19810811 20051231 726395 14808 OSCODA-WURTSMITH AIRPORT US MI KOSC 44.45 -83.4 192.9 19430701 20200625 726395 99999 OSCODA WURTSMITH US MI KOSC 44.45 -83.4 193.0 20000101 20031231 726396 00422 WILKERSON PASS US CO K4BM 39.05 -105.516 3438.1 20050611 20200625 726396 99999 WILKERSON PASS US CO K4BM 39.05 -105.51 3438.0 19760926 20180515 726397 99999 TAWAS POINT COAST GUARD STATION US MI 44.25 -83.43 178.0 19760926 19960701 726398 99999 THUNDER BAY ISLAND US MI 45.07 -83.55 178.0 19760926 19801107 726399 99999 MANISTIQUE US MI 45.95 -86.23 178.0 19760116 20040920 726400 14839 GENERAL MITCHELL INTERNATIONAL AP US WI KMKE 42.955 -87.904 204.2 19480101 20200625 726403 99999 MILWAUKEE WSFO US WI 42.97 -88.55 307.1 20010904 20110810 726404 04865 LKLND/NOBL F LEE MEM FD AP US WI KARV 45.928000000000004 -89.73100000000001 496.8 20060101 20200625 726404 99999 LAKELAND NOBLE F LE US WI KARV 45.933 -89.73299999999999 497.0 19891023 20051231 726405 94869 LAWRENCE J TIMMERMAN AIRPORT US WI KMWC 43.108999999999995 -88.031 223.7 19730101 20200625 726405 99999 LAWRENCE J TIMMERMAN US WI KMWC 43.117 -88.03299999999999 227.0 20000101 20041231 726406 99999 KENOSHA COAST GUARD STATION US WI 42.58 -87.75 223.0 19760926 19960701 726407 99999 MILWAUKEE COAST GUARD LIGHT STAT US 43.02 -87.95 179.0 19760926 19960701 726408 99999 SHEBOYGAN COAST GUARD STATION US WI 43.75 -87.7 1.0 19760926 19960701 726409 04897 WAUKESHA COUNTY AIRPORT US WI KUES 43.041000000000004 -88.23700000000001 277.7 20060101 20200625 726409 99999 WAUKESHA CO US WI KUES 43.041000000000004 -88.23700000000001 278.0 19880222 20051231 726410 14837 DANE CO REGIONAL-TRUAX FIELD AIRPORT US WI KMSN 43.141000000000005 -89.345 264.0 19480101 20200625 726413 04875 WEST BEND MUNICIPAL ARPT US WI KETB 43.417 -88.133 269.4 20060101 20200626 726413 99999 WEST BEND MUNI US WI KETB 43.422 -88.12799999999999 270.0 20010811 20051231 726414 04873 MONROE MUNICIPAL AIRPORT US WI KEFT 42.615 -89.59100000000001 330.7 20060101 20200625 726414 99999 MONROE MUNI US WI KEFT 42.615 -89.59 331.0 20010811 20051231 726415 94854 ROCK COUNTY AIRPORT US WI KJVL 42.617 -89.03299999999999 246.3 20060101 20200625 726415 99999 SOUTHERN WISC RGNL US WI KJVL 42.62 -89.042 246.0 19730101 20051231 726416 14921 TRI-COUNTY REGIONAL ARPT US WI KLNR 43.211999999999996 -90.181 218.5 19730101 20200625 726416 99999 TRI CO RGNL US WI KLNR 43.217 -90.18299999999999 219.0 20000101 20031231 726417 54911 TAYLOR COUNTY AIRPORT US WI KMDZ 45.101000000000006 -90.303 448.1 20060101 20200625 726417 99999 TAYLOR CO US WI KMDZ 45.101000000000006 -90.303 448.0 19990114 20051231 726418 54912 L.O. SIMENSTAD MUNICIPAL AIRPORT US WI KOEO 45.308 -92.69 275.2 20060101 20200625 726418 99999 L O SIMENSTAD MUNI US WI KOEO 45.317 -92.7 275.0 19990114 20051231 726419 94929 JOHN F KENNEDY MEMO ARPT US WI KASX 46.549 -90.919 251.8 20060101 20200625 726419 99999 J F KENNEDY MEMORIAL US WI KASX 46.55 -90.917 252.0 20010811 20051231 726424 94818 JOHN H BATTEN AIRPORT US WI KRAC 42.761 -87.814 205.4 20060101 20200625 726424 99999 JOHN H BATTEN US WI KRAC 42.761 -87.815 205.0 19990114 20051231 726425 04841 SHEBOYGAN CO MEMO AIRPORT US WI KSBM 43.769 -87.851 227.4 20060101 20200625 726425 99999 SHEBOYGAN CO MEM US WI KSBM 43.766999999999996 -87.85 230.0 19990114 20051231 726426 04895 STEVENS POINT MUNI ARPT US WI KSTE 44.55 -89.53299999999999 338.3 20060101 20200625 726426 99999 STEVENS POINT MUNI US WI KSTE 44.55 -89.53299999999999 338.0 19990114 20051231 726427 54908 RICHARD I BONG AIRPORT US WI KSUW 46.68899999999999 -92.094 205.4 20060101 20200625 726427 99999 RICHARD I BONG US WI KSUW 46.683 -92.1 205.0 19990114 20051231 726430 14920 LA CROSSE MUNICIPAL AIRPORT US WI KLSE 43.879 -91.25299999999999 198.7 19480101 20200625 726435 14991 CHIPPEWA VALLEY RGNL ARPT US WI KEAU 44.867 -91.488 269.8 19730101 20200626 726436 94930 VOLK FIELD AIRPORT US WI KVOK 43.933 -90.26700000000001 278.0 19611001 20200625 726436 99999 VOLK FLD US WI KVOK 43.933 -90.25 278.0 20000103 20041231 726437 94940 SPARTA/FORT MC COY AIRPORT US WI KCMY 43.967 -90.73299999999999 252.7 20060101 20200626 726437 99999 SPART FORT MC COY US WI KCMY 43.967 -90.73299999999999 255.0 19790621 20051231 726438 94994 BOSCOBEL AIRPORT US WI KOVS 43.156000000000006 -90.678 204.8 20060101 20200626 726438 99999 BOSCOBEL US WI KOVS 43.167 -90.68299999999999 205.0 20010811 20051231 726440 14925 ROCHESTER INTERNATIONAL AIRPORT US MN KRST 43.903999999999996 -92.492 397.5 19730101 20200625 726444 04963 PRAIRIE DU CHIEN MUNI ARPT US WI KPDC 43.019 -91.124 201.5 20060101 20200626 726444 99999 PRAIRIE DU CHIEN MUN US WI KPDC 43.016999999999996 -91.117 201.0 20010811 20051231 726449 04891 MERRILL MUNICIPAL AIRPORT US WI KRRL 45.199 -89.711 401.4 20060101 20200626 726449 99999 MERRILL MUNI US WI KRRL 45.2 -89.71700000000001 402.0 20010811 20051231 726450 14898 AUSTIN STRAUBEL INTERNATIONAL AP US WI KGRB 44.479 -88.137 209.4 19500101 20200625 726452 04826 ALEXANDER FD S WOOD CO APT US WI KISW 44.358999999999995 -89.837 310.6 20060101 20200625 726452 99999 ALEXANDER FLD SOUTH US WI KISW 44.367 -89.833 311.0 19970123 20051231 726454 99999 TWO RIVERS COAST GUARD STATION US WI 44.13 -87.55 176.0 19780823 19960630 726455 94897 MANITOWOC COUNTY AIRPORT US WI KMTW 44.133 -87.667 198.4 20060101 20200625 726455 99999 MANITOWOC CO US WI KMTW 44.133 -87.68299999999999 198.0 19730101 20051231 726456 94855 WHITTMAN REGIONAL AIRPORT US WI KOSH 43.983999999999995 -88.557 238.4 20060101 20200625 726456 99999 WITTMAN RGNL US WI KOSH 43.983000000000004 -88.55 246.0 19730101 20051231 726457 04825 OUTAGAMIE CO RGNL AIRPORT US WI KATW 44.266999999999996 -88.51700000000001 279.5 20060101 20200625 726457 99999 OUTAGAMIE CO RGNL US WI KATW 44.25 -88.51700000000001 280.0 19800910 20051231 726458 04824 DOOR CO CHERRYLAND AIRPORT US WI KSUE 44.85 -87.417 220.7 20060101 20200625 726458 99999 DOOR CO CHERRYLAND US WI KSUE 44.85 -87.417 221.0 19810121 20051231 726459 99999 STURGEON BAY US WI 44.78 -87.32 176.0 19810806 19960701 726460 14897 WAUSAU MUNICIPAL ARPT US WI KAUW 44.928999999999995 -89.62799999999999 364.5 19730101 19850531 726461 14897 WAUSAU MUNICIPAL ARPT US WI KAUW 44.928999999999995 -89.62799999999999 364.5 19850531 19900219 726463 14897 WAUSAU DOWNTOWN AIRPORT US WI KAUW 44.928999999999995 -89.62799999999999 365.8 19900314 20200625 726464 54834 WATERTOWN MUNICIPAL AIRPORT US WI KRYV 43.167 -88.71700000000001 249.9 20060101 20200625 726464 99999 WATERTOWN MUNI US WI KRYV 43.167 -88.71700000000001 254.0 19950423 20051231 726465 94890 CENTRAL WISCONSIN AIRPORT US WI KCWA 44.783 -89.667 389.2 20060101 20200626 726465 99999 CENTRAL WISCONSIN US WI KCWA 44.783 -89.667 389.0 19730101 20051231 726466 54917 APPLETON MUNICIPAL AIRPORT US MN KAQP 45.228 -96.007 310.9 20060101 20200625 726466 99999 APPLETON MUNI ARPT US MN KAQP 45.23 -96.0 310.0 19791227 20051231 726467 54909 RICE LAKE REGIONAL-CARL'S FIELD AIRPORT US WI KRPD 45.419 -91.773 336.8 20060101 20200626 726467 99999 RICE LAKE RGNL CARLS US WI KRPD 45.417 -91.76700000000001 337.0 19870629 20051231 726468 54913 PRICE COUNTY AIRPORT US WI KPBH 45.708999999999996 -90.402 456.3 20060101 20200626 726468 99999 PRICE CO US WI KPBH 45.717 -90.4 456.0 19880111 20051231 726480 94853 DELTA COUNTY AIRPORT US MI KESC 45.733000000000004 -87.083 181.1 20060101 20200625 726480 99999 DELTA CO US MI KESC 45.723 -87.094 186.0 19730101 20051231 726482 99999 ESCANABA (AWOS) US MI 45.717 -87.1 186.0 19480101 19900109 726483 99999 ESCANABA/DELTA CO. US MI 45.717 -87.1 186.0 19900111 19910304 726487 94896 MEONE-MARINETTE TWIN CO AP US MI KMNM 45.117 -87.633 190.5 20050101 20200625 726487 99999 MENOMINEE MARINETTE US MI KMNM 45.126999999999995 -87.63799999999999 191.0 19730101 20041231 726498 04925 FAIRFIELD MUNICIPAL ARPT US IA KFFL 41.053000000000004 -91.979 243.5 20060101 20200625 726498 99999 FAIRFIELD MUNI US IA KFFL 41.053000000000004 -91.979 244.0 19950423 20051231 726499 94971 ESTHERVILLE MUNI AIRPORT US IA KEST 43.401 -94.74700000000001 401.4 20060101 20200625 726499 99999 ESTHERVILLE MUNI US IA KEST 43.407 -94.74600000000001 401.0 19870629 20051231 726500 14972 SPENCER MUNICIPAL AIRPORT US IA KSPW 43.163999999999994 -95.20200000000001 407.8 20060101 20200625 726500 99999 SPENCER US IA KSPW 43.167 -95.15 408.0 19730101 20051231 726502 54832 CLINTONVILLE MUNICIPAL AIRPORT US WI KCLI 44.614 -88.73100000000001 250.6 20060101 20200625 726502 99999 CLINTONVILLE MUNI US WI KCLI 44.617 -88.73299999999999 251.0 19970123 20051231 726503 54833 BARABOO WISCONSIN DELLS AIRPORT US WI KDLL 43.522 -89.774 297.5 20060101 20200625 726503 99999 BARABOO WISC DELLS US WI KDLL 43.522 -89.771 297.0 19970123 20051231 726504 54838 EAGLE RIVER UNION AIRPORT US WI KEGV 45.931999999999995 -89.26899999999999 500.5 20060101 20200625 726504 99999 EAGLE RIVER UNION US WI KEGV 45.931999999999995 -89.26899999999999 500.0 19970123 20051231 726505 04845 KENOSHA REGIONAL AIRPORT US WI KENW 42.595 -87.93799999999999 226.5 20060101 20200625 726505 99999 KENOSHA RGNL US WI KENW 42.583 -87.917 226.0 19970123 20051231 726506 04840 FOND DU LAC COUNTY AIRPORT US WI KFLD 43.769 -88.491 246.0 19990101 20200625 726506 99999 FOND DU LAC CO US WI KFLD 43.771 -88.488 246.0 19970123 19981231 726507 54907 IOWA COUNTY AIRPORT US WI KMRJ 42.887 -90.236 356.9 20060101 20200625 726507 99999 IOWA CO US WI KMRJ 42.883 -90.23299999999999 357.0 19970123 20051231 726508 94973 SAWYER COUNTY AIRPORT US WI KHYR 46.026 -91.444 367.0 20060101 20200625 726508 99999 SAWYER CO US WI KHYR 46.033 -91.45 371.0 19970123 20051231 726509 04898 DODGE COUNTY AIRPORT US WI KUNU 43.426 -88.70299999999999 285.3 20060101 20200625 726509 99999 DODGE CO US WI KUNU 43.433 -88.7 285.0 19970123 20051231 726510 14944 JOE FOSS FIELD AIRPORT US SD KFSD 43.578 -96.75399999999999 435.3 19421001 20200625 726513 99999 SIOUX FALLS NEXRAD US SD UDX 44.133 -102.833 954.0 19990408 19990408 726514 94032 CUSTER COUNTY AIRPORT US SD KCUT 43.733000000000004 -103.611 1690.1 20050101 20200625 726514 99999 CUSTER COUNTY US SD KCUT 43.733000000000004 -103.617 1707.0 19850522 20041231 726515 94902 BROOKINGS MUNICIPAL ARPT US SD KBKX 44.3 -96.8 502.3 20060101 20200625 726515 99999 BROOKINGS RGNL US SD KBKX 44.3 -96.81700000000001 502.0 19730101 20051231 726516 24024 PHILIP AIRPORT US SD KPHP 44.051 -101.601 672.4 19980702 20200625 726516 99999 PHILIP US SD KPHP 44.05 -101.6 673.0 20000101 20031231 726517 94039 PINE RIDGE AIRPORT US SD KIEN 43.021 -102.51799999999999 1015.3 20060101 20200625 726517 99999 PINE RIDGE US SD KIEN 43.016999999999996 -102.51700000000001 1016.0 19990114 20051231 726518 94990 WINNER REGIONAL AIRPORT US SD KICR 43.391000000000005 -99.84200000000001 619.4 20060101 20200625 726518 99999 WINNER US SD KICR 43.383 -99.85 619.0 19990114 20051231 726519 94993 SISSETON MUNICIPAL AIRPORT US SD K8D3 45.669 -96.991 353.9 20060101 20200625 726519 99999 SISSETON MUNI ARPT US SD K8D3 45.667 -97.0 354.0 20010811 20051231 726520 99999 PICKSTOWN SD. US 43.067 -98.53299999999999 453.0 19730101 19991128 726525 94911 CHAN GURNEY MUNICIPAL ARPT US SD KYKN 42.879 -97.36399999999999 357.2 20060101 20200625 726525 99999 CHAN GURNEY MUNI US SD KYKN 42.917 -97.383 398.0 19730101 20051231 726530 94943 CHAMBERLAIN MUNI AIRPORT US SD K9V9 43.766999999999996 -99.318 519.1 20060101 20200625 726530 99999 CHAMBERLAIN (AMOS) US SD K9V9 43.8 -99.31700000000001 530.0 19780310 20051231 726539 94056 FAITH MUNICIPAL AIRPORT US SD KD07 45.032 -102.01899999999999 786.4 20060101 20200625 726539 99999 FAITH MUNI US SD KD07 45.033 -102.01700000000001 787.0 19990114 20051231 726540 14936 HURON REGIONAL AIRPORT US SD KHON 44.398 -98.223 390.1 19730101 20200625 726543 99999 GLENWOOD US MN 45.65 -95.38 423.0 19930112 19950202 726544 04958 ORR REGIONAL AIRPORT US MN KORB 48.016000000000005 -92.85600000000001 399.6 20060101 20200625 726544 99999 ORR RGNL US MN KORB 48.016999999999996 -92.85 400.0 19930112 20051231 726545 94950 MITCHELL MUNICIPAL AIRPORT US SD KMHE 43.773999999999994 -98.038 396.2 20060101 20200625 726545 99999 MITCHELL MUNI US SD KMHE 43.775 -98.039 397.0 19730101 20051231 726546 14946 WATERTOWN MUNICIPAL ARPT US SD KATY 44.905 -97.149 532.8 19480101 20200625 726547 04931 GLENWOOD MUNICIPAL AIRPORT US MN KGHW 45.644 -95.32 424.6 20060101 20200625 726547 99999 GLENWOOD MUNI US MN KGHW 45.65 -95.31700000000001 425.0 19740809 20051231 726548 04971 WARROAD INTL-SWEDE CARLSON FLD ARPT US MN KRRT 48.941 -95.348 327.4 20060101 20200625 726548 99999 WARROAD INTL US MN KRRT 48.933 -95.333 327.0 19970123 20051231 726549 54905 COOK MUNICIPAL AIRPORT US MN KCQM 47.821999999999996 -92.689 404.5 20060101 20200625 726549 99999 COOK MUNI US MN KCQM 47.817 -92.68299999999999 404.0 19970718 20051231 726550 14926 ST CLOUD REGIONAL AIRPORT US MN KSTC 45.543 -94.051 310.3 19730101 20200625 726553 04951 MONTIVIDEO-CHIPPEWA CO APT US MN KMVE 44.968999999999994 -95.71 315.2 20060101 20200625 726553 99999 MONTEVIDEO CHIPPEWA US MN KMVE 44.968999999999994 -95.71700000000001 315.0 19880402 20051231 726554 54906 ST JAMES MUNICIPAL AIRPORT US MN KJYG 43.986000000000004 -94.55799999999999 325.2 20060101 20200625 726554 99999 ST JAMES MUNI US MN KJYG 43.986000000000004 -94.55799999999999 325.0 19860127 20051231 726555 94938 BRAINERD LAKES RGNL ARPT US MN KBRD 46.405 -94.131 372.2 20060101 20200625 726555 99999 BRAINERD LAKES RGNL US MN KBRD 46.4 -94.133 374.0 19730101 20051231 726556 14992 REDWOOD FALLS MUNI AIRPORT US MN KRWF 44.548 -95.08 311.2 20000101 20200625 726556 99999 REDWOOD FALLS MUNI US MN KRWF 44.55 -95.083 312.0 19491111 19991231 726557 14910 CHANDLER FIELD AIRPORT US MN KAXN 45.868 -95.39399999999999 431.6 19730101 20200625 726558 04914 CLOQUET CARLTON CO AIRPORT US MN KCOQ 46.703 -92.50399999999999 389.8 20060101 20200625 726558 99999 CLOQUET CARLTON CO US MN KCOQ 46.7 -92.5 390.0 19920804 20051231 726559 94976 SW MN RGNL MRSHL/RYAN FIELD AIRPORT US MN KMML 44.45 -95.81700000000001 359.4 20060101 20200625 726559 99999 SW MINNESOTA RGNL US MN KMML 44.451 -95.822 360.0 19840331 20051231 726560 24025 PIERRE REGIONAL AIRPORT US SD KPIR 44.381 -100.286 531.0 20100801 20200625 726560 94966 PIERRE RGNL US SD KFFM 46.283 -96.15 360.9 20060101 20100801 726560 99999 PIERRE RGNL US SD KPIR 44.383 -100.28299999999999 531.0 19840331 20051231 726561 94997 WADENA MUNICIPAL AIRPORT US MN KADC 46.446999999999996 -95.212 417.6 20060101 20200625 726561 99999 WADENA US MN KADC 46.45 -95.21700000000001 417.0 20020423 20051231 726562 04943 AIRLAKE AIRPORT US MN KLVN 44.628 -93.228 292.6 20060101 20200625 726562 99999 AIRLAKE US MN KLVN 44.629 -93.228 293.0 19970123 20051231 726563 94969 FARIBAULT MUNICIPAL ARPT US MN KFBL 44.333 -93.31700000000001 323.1 20060101 20200625 726563 99999 FARIBAULT MUNI US MN KFBL 44.325 -93.311 323.0 19861016 20051231 726564 04967 RED WING REGIONAL AIRPORT US MN KRGK 44.589 -92.485 237.7 20060101 20200625 726564 99999 RED WING RGNL US MN KRGK 44.583 -92.48299999999999 238.0 19911106 20051231 726565 04948 MORRIS MUNICIPAL AIRPORT US MN KMOX 45.566 -95.96799999999999 344.4 20060101 20200625 726565 99999 MORRIS MUNI US MN KMOX 45.567 -95.96700000000001 347.0 19911106 20051231 726566 04965 PIPESTONE MUNICIPAL ARPT US MN KPQN 43.983000000000004 -96.3 529.1 20060101 20200625 726566 99999 PIPESTONE MUNI US MN KPQN 43.983000000000004 -96.3 529.0 19911106 20051231 726567 04980 NEW ULM MUNICIPAL AIRPORT US MN KULM 44.318999999999996 -94.50200000000001 308.2 20060101 20200625 726567 99999 NEW ULM MUNI US MN KULM 44.317 -94.5 308.0 19911118 20051231 726568 04961 OWATONNA DEGNER RGNL ARPT US MN KOWA 44.123000000000005 -93.26100000000001 349.3 20060101 20200625 726568 99999 OWATONNA DEGNER RGNL US MN KOWA 44.117 -93.26700000000001 349.0 19920804 20051231 726569 04933 HTCHSON MUNI-BUTLR FLD APT US MN KHCD 44.858999999999995 -94.382 323.1 20060101 20200625 726569 99999 HUTCHINSON MUNI BUTL US MN KHCD 44.867 -94.383 323.0 19920804 20051231 726572 94966 FERGUS FALLS MUNICIPAL AIRPORT-EINAR MICKELSON FLD US MN KFFM 46.283 -96.15 360.6 20050101 20200625 726573 99999 AIRLAKE US MN 44.633 -93.23299999999999 292.0 19930112 19960815 726574 94985 MARSHFIELD MUNICIPAL ARPT US WI KMFI 44.638000000000005 -90.18799999999999 382.5 20060101 20200625 726574 99999 MARSHFIELD MUNI US WI KMFI 44.637 -90.189 389.0 19920807 20051231 726575 94960 CRYSTAL AIRPORT US MN KMIC 45.062 -93.351 262.4 20060101 20200625 726575 99999 CRYSTAL US MN KMIC 45.062 -93.354 265.0 19831103 20051231 726576 14928 WILLMAR RCO US MN KILL 45.117 -95.083 344.1 19901120 20090514 726576 99999 WILLMAR MUNI JOHN L RICE FLD US MN KILL 45.11600000000001 -95.089 343.5 20000101 20031231 726577 94974 ANOKA CO-BLNE AP(JNS FD) AP US MN KANE 45.15 -93.21700000000001 278.0 20060101 20200625 726577 99999 ANOKA CO BLAINE US MN KANE 45.15 -93.21700000000001 278.0 19901022 20051231 726578 04944 LITL FALS/MRSON CO-LNBRG FIELD AIRPORT US MN KLXL 45.949 -94.34700000000001 342.0 20060101 20200625 726578 99999 LITTLE FALLS MORRISO US MN KLXL 45.949 -94.34700000000001 342.0 19920804 20051231 726579 94963 FLYING CLOUD AIRPORT US MN KFCM 44.832 -93.471 276.5 20060101 20200625 726579 99999 FLYING CLOUD US MN KFCM 44.817 -93.45 276.0 19831103 20051231 726580 14922 MINNEAPOLIS-ST PAUL INTERNATIONAL AP US MN KMSP 44.883 -93.229 265.8 19450101 20200625 726583 04941 LITCHFIELD MUNICIPAL ARPT US MN KLJF 45.147 -94.507 347.5 20060101 20200625 726583 99999 LITCHFIELD MUNI US MN KLJF 45.1 -94.5 347.0 19850422 20051231 726584 14927 ST PAUL DWTWN HOLMAN FD AP US MN KSTP 44.931999999999995 -93.056 213.4 19831103 20200625 726584 99999 ST PAUL DOWNTOWN HO US MN KSTP 44.933 -93.05 215.0 20000101 20031231 726585 14954 MANKATO MUNICIPAL AIRPORT US MN KMKT 44.217 -93.917 311.2 20060101 20200625 726585 99999 MANKATA RGNL ARPT US MN KMKT 44.223 -93.919 311.0 19730101 20051231 726586 94948 FAIRMONT MUNICIPAL AIRPORT US MN KFRM 43.65 -94.417 353.9 20060101 20200624 726586 99999 FAIRMONT MUNI(AWOS) US MN KFRM 43.65 -94.417 354.0 19730101 20051231 726587 94927 WORTHINGTON MUNICIPAL ARPT US MN KOTG 43.645 -95.58 478.5 20060101 20200625 726587 99999 WORTHINGTON MUNI US MN KOTG 43.65 -95.583 480.0 19730101 20051231 726588 04956 WIOA MUNI-MAX CONRAD FD AP US MN KONA 44.077 -91.708 200.0 20060101 20200625 726588 99999 WINONA MUNI CONRAD F US MN KONA 44.083 -91.7 200.0 19911118 20051231 726589 94968 ALBERT LEA MUNICIPAL ARPT US MN KAEL 43.683 -93.367 383.7 20060101 20200625 726589 99999 ALBERT LEA (AWOS) US MN KAEL 43.683 -93.367 383.0 19860331 20051231 726590 14929 ABERDEEN REGIONAL AIRPORT US SD KABR 45.443000000000005 -98.413 395.3 19730101 20200625 726593 04946 JACKSON MUNICIPAL AIRPORT US MN KMJQ 43.65 -94.986 440.7 20060101 20200625 726593 99999 JACKSON MUNI US MN KMJQ 43.65 -94.98700000000001 441.0 19980201 20051231 726596 04978 DODGE CENTER ARPT US MN KTOB 44.018 -92.831 397.8 20060101 20200625 726596 99999 DODGE CENTER US MN KTOB 44.016999999999996 -92.833 398.0 20010811 20051231 726603 04974 SOUTH ST PAUL MUNI-RICHARD E FLEMING FLD ARPT US MN KSGS 44.857 -93.03299999999999 249.9 20060101 20200625 726603 99999 SOUTH ST PAUL MUNI US MN KSGS 44.85 -93.03299999999999 250.0 19950101 20051231 726605 00386 BLACK HILLS AIRPORT CLYDE ICE FIELD US SD KSPF 44.483000000000004 -103.78299999999999 1198.2 20050624 20200625 726605 99999 BLACK HILLS CLYDE ICE FLD US SD KSPF 44.48 -103.78299999999999 1198.2 19900727 20180322 726606 99999 BELLE FOURCHE MUNI US SD KEFC 44.733999999999995 -103.86200000000001 972.3 19921024 20040521 726610 99999 REDIG SD. US 45.266999999999996 -103.53299999999999 925.0 19770827 19890410 726620 24090 RAPID CITY REGIONAL AIRPORT US SD KRAP 44.04600000000001 -103.054 963.2 19730101 20200625 726625 24006 ELLSWORTH AIR FORCE BASE US SD KRCA 44.15 -103.1 999.1 19390201 20200625 726625 99999 ELLSWORTH AFB US SD KRCA 44.133 -103.1 999.0 20000101 20041231 726626 04864 LANGLADE COUNTY AIRPORT US WI KAIG 45.153999999999996 -89.111 463.9 20060101 20200626 726626 99999 LANGLADE CO US WI KAIG 45.15 -89.117 464.0 19730101 20051231 726627 94037 BUFFALO US SD K2WX 45.604 -103.546 915.6 19990101 20200625 726627 99999 BUFFALO US SD K2WX 45.6 -103.55 915.0 19740809 19981231 726630 99999 MOORCROFT US WY 4MC 44.266999999999996 -104.95 1303.0 19730101 19760503 726650 94023 GILLETTE-CAMPBELL CO. ARPT US WY KGCC 44.339 -105.542 1327.1 20060101 20200626 726650 99999 GILLETTE/GILLETTE-C US WY KGCC 44.349 -105.539 1230.0 19770828 20051231 726654 94054 JOHNSON COUNTY AIRPORT US WY KBYG 44.381 -106.721 1513.9 20060101 20200625 726654 99999 JOHNSON CO US WY KBYG 44.383 -106.71700000000001 1514.0 19990426 20051231 726655 99999 GILLETTE (AMOS) US WY 44.35 -105.53299999999999 1329.0 19761110 19770802 726656 99999 BANGOR CGS US WA 47.733000000000004 -122.71700000000001 0.0 19850118 19850130 726657 99999 WEST JONESPORT CGS& US ME 44.516999999999996 -67.6 0.0 19850118 19850130 726660 24029 SHERIDAN COUNTY AIRPORT US WY KSHR 44.769 -106.969 1202.4 19730101 20200625 726662 99999 US 19760820 19760920 726664 94173 YELLOWSTONE US WY KP60 44.544 -110.421 2388.1 19790322 20200625 726665 24062 WORLAND MUNICIPAL AIRPORT US WY KWRL 43.966 -107.95100000000001 1271.6 20000101 20200625 726665 99999 WORLAND MUNI US WY KWRL 43.967 -107.95 1288.0 19730101 19991231 726666 99999 CODY MUNI (AWOS) & US WY 44.516999999999996 -109.01700000000001 1551.0 19730101 19770802 726667 24048 SOUTH BIG HORN COUNTY ARPT US WY KGEY 44.516999999999996 -108.08200000000001 1198.8 20060101 20200625 726667 99999 SOUTH BIG HORN CO US WY KGEY 44.516999999999996 -108.083 1199.0 19800616 20051231 726670 99999 US 19730101 19760305 726671 99999 BROADUS & US MT 45.433 -105.4 922.0 19760305 19900219 726673 99999 BROADUS & US MT K4BQ 45.433 -105.4 922.0 19900314 19951206 726675 24037 MILES CITY MUNICIPAL ARPT US MT KMLS 46.427 -105.883 802.8 19730101 19830531 726676 24087 DAWSON COMMUNITY AIRPORT US MT KGDV 47.133 -104.8 748.9 20060101 20200625 726676 99999 DAWSON COMMUNITY US MT KGDV 47.133 -104.8 749.0 19730101 20051231 726679 04969 RUSH CITY REGIONAL AIRPORT US MN KROS 45.698 -92.95299999999999 281.3 20060101 20200625 726679 99999 RUSH CITY RGNL US MN KROS 45.7 -92.95 281.0 20010811 20051231 726680 99999 MOBRIDGE US SD 45.55 -100.417 522.0 19730101 19760305 726681 99999 MOBRIDGE US SD Y26 45.533 -100.43299999999999 508.0 19760305 19770227 726682 54914 PRINCETON MUNICIPAL AIRPORT US MN KPNM 45.56 -93.60799999999999 298.4 20060101 20200625 726682 99999 PRINCETON MUNI US MN KPNM 45.56 -93.60799999999999 298.0 19970313 20051231 726685 94052 MOBRIDGE MUNICIPAL AIRPORT US SD KMBG 45.54600000000001 -100.40799999999999 522.7 20060101 20200625 726685 99999 MOBRIDGE MUNI US SD KMBG 45.547 -100.40799999999999 523.0 19770301 20051231 726686 24025 PIERRE RGNL US SD KPIR 44.381 -100.286 526.1 19440301 20100731 726690 24057 RAWLINS MUNI/HARVEY FIELD ARPT US WY KRWL 41.8 -107.2 2053.1 20100801 20200625 726690 99999 RAWLINS MUNICIPAL US WY KRWL 41.8 -107.2 2065.0 19730101 20100731 726691 99999 LEMMON US SD Y22 45.933 -102.167 791.0 19760305 19770227 726695 99999 LEMMON MUNI US SD KLEM 45.919 -102.10600000000001 783.6 19770301 20010827 726700 24045 YELLOWSTONE REGIONAL ARPT US WY KCOD 44.516999999999996 -109.01700000000001 1552.0 20060101 20200625 726700 99999 CODY MUNI (AWOS) US WY KCOD 44.516999999999996 -109.01700000000001 1553.0 19770827 20051231 726704 99999 BUFFALO US WY 44.383 -106.71700000000001 1514.0 19990114 19990204 726710 24164 BIG PINEY-MARBLETON ARPT US WY KBPI 42.583999999999996 -110.10799999999999 2124.5 19990101 20200625 726710 99999 BIG PINEY (AMOS) US WY KBPI 42.567 -110.1 2124.0 19780310 19981231 726720 24061 RIVERTON REGIONAL AIRPORT US WY KRIW 43.06399999999999 -108.459 1659.6 20070401 20200625 726720 99999 RIVERTON US WY KRIW 43.06399999999999 -108.46 1684.0 20050101 20070331 726760 99999 US 19730101 19750813 726761 99999 WEST YELLOWSTONE & US MT 44.65 -111.1 2031.0 19750814 19900219 726763 24198 WEATHER SERVICE OFFICE US MT KWEY 44.65 -111.1 2030.9 20060103 20071019 726763 99999 WEST YELLOWSTONE US MT KWEY 44.65 -111.1 2031.0 19900314 20051222 726764 94163 YELLOWSTONE AIRPORT US MT KWYS 44.683 -111.117 2026.6 20060608 20200625 726764 99999 YELLOWSTONE US MT KWYS 44.683 -111.117 2025.0 19910801 20051007 726765 99999 WEST YELLOWSTONE & US MT 44.683 -111.117 2025.0 19730601 19900930 726766 99999 MONIDA US MT 44.567 -112.31700000000001 2068.0 19430313 19920323 726770 24033 BILLINGS LOGAN INTERNATIONAL AIRPORT US MT KBIL 45.806999999999995 -108.542 1091.5 19350501 20200625 726774 99999 HAMILTON/RAVALLI CO US MT 46.25 -114.15 1110.0 19880905 20030428 726775 99999 HARLOWTON US MT 46.43 -109.83 1268.0 19730101 20051101 726776 24036 LEWISTOWN MUNICIPAL ARPT US MT KLWT 47.049 -109.458 1263.4 19420401 20200625 726777 94055 BAKER MUNICIPAL AIRPORT US MT KBHK 46.358000000000004 -104.25 905.6 20060101 20200625 726777 99999 BAKER MUNI US MT KBHK 46.35 -104.26700000000001 906.0 19980514 20051231 726785 24135 BERT MOONEY US MT KBTM 45.965 -112.501 1686.5 19770301 20100801 726790 99999 US 19730101 19760305 726791 24135 BUTTE SILVER BOW CO ARPT US MT KBTM 45.965 -112.501 1686.5 19760305 19770227 726795 24161 WHITEHALL US MT HIA 45.867 -111.96700000000001 1303.9 19730101 19780101 726796 24138 DILLON AIRPORT US MT KDLN 45.258 -112.554 1591.7 19730101 20100801 726797 24132 GALLATIN FIELD AIRPORT US MT KBZN 45.788000000000004 -111.161 1349.4 19730101 20200625 726798 24150 MISSION FIELD AIRPORT US MT KLVM 45.698 -110.441 1415.2 19730101 20200625 726799 99999 DILLON SAWRS US MT 45.25 -112.55 1537.0 19730701 19740507 726809 99999 BOISE NEXRAD US ID 43.5 -116.23299999999999 958.0 19990416 20010710 726810 24131 BOISE AIR TERMINAL/GOWEN FD AIRPORT US ID KBOI 43.567 -116.241 857.7 19310101 20200625 726813 94195 CALDWELL INDUSTRIAL ARPT US ID KEUL 43.65 -116.633 740.4 20060101 20200625 726813 99999 CALDWELL (AWOS) US ID KEUL 43.633 -116.633 740.0 19920409 20051231 726815 24106 MOUNTAIN HOME AFB AIRPORT US ID KMUO 43.05 -115.867 913.2 19320101 20200625 726815 99999 MOUNTAIN HOME AFB US ID KMUO 43.05 -115.867 913.0 20000101 20041231 726816 04110 JEROME COUNTY AIRPORT US ID KJER 42.727 -114.456 1233.8 20060101 20200625 726816 99999 JEROME CO US ID KJER 42.727 -114.45700000000001 1235.0 19990114 20051231 726817 24154 MULLAN PASS US ID KMLP 47.457 -115.645 1837.3 19960702 20200625 726817 99999 MULLAN PASS VOR US ID KMLP 47.45 -115.667 1829.0 20000101 20031231 726818 94194 REXBURG-MADISON COUNTY APT US ID KRXE 43.832 -111.80799999999999 1481.9 19990102 20200625 726824 04112 STANLEY RANGER STATION US ID KSNT 44.17100000000001 -114.927 1979.7 19990102 20200625 726830 94185 BURNS MUNICIPAL AIRPORT US OR KBNO 43.595 -118.956 1261.9 19730101 20200625 726830 99999 BURNS MUNI (AMOS) US OR KBNO 43.583 -118.95 1271.0 19810101 19901231 726834 99999 CHETCO RIVER COAST GUARD STATION US OR 42.15 -124.27 6.0 19771108 19910105 726835 24230 ROBERTS FLD US OR KRDM 44.256 -121.139 940.0 19420101 20100801 726836 04201 SCAPPOOSE INDUS AIRPK ARPT US OR KSPB 45.773 -122.861 16.8 20060101 20200625 726836 99999 SCAPPOOSE INDUSTRIAL US OR KSPB 45.773 -122.867 18.0 19780711 20051231 726837 24162 ONTARIO MUNICIPAL AIRPORT US OR KONO 44.021 -117.01299999999999 668.4 19730101 20200625 726837 99999 ONTARIA MUNI US OR KONO 44.016999999999996 -117.01700000000001 668.0 20000101 20031231 726838 94185 BURNS MUNICIPAL ARPT US OR KBNO 43.595 -118.956 1271.0 19801231 19901231 726839 94196 JOHN DAY STATE ARPT US OR K5J0 44.403999999999996 -118.963 1126.8 20060102 20061122 726839 99999 JOHN DAY STATE ARPT US OR 44.4 -118.96700000000001 1127.0 19900517 19950716 726860 99999 US 19730101 19760304 726861 99999 SALMON US ID SMN 45.117 -113.883 1232.0 19760305 19770225 726865 24196 LEMHI COUNTY AIRPORT US ID KSMN 45.117 -113.883 1232.6 20060101 20200625 726865 99999 LEMHI CO US ID KSMN 45.117 -113.883 1232.0 19770301 20051231 726866 99999 SALMON US ID 45.18 -113.9 1210.0 19810906 19971231 726870 99999 US 19730101 19760305 726871 99999 GRANGEVILLE & US ID 45.95 -116.133 1009.0 19760305 19900219 726873 00452 IDAHO COUNTY AIRPORT US ID KGIC 45.943000000000005 -116.12299999999999 1010.1 20110325 20200625 726873 99999 IDAHO COUNTY AIRPORT US ID KGIC 45.943000000000005 -116.12299999999999 1010.1 19900322 20180515 726874 99999 ROME AUTOMATIC METEOROLOGICAL OB US 42.9 -117.65 1162.0 19810909 19980427 726875 94107 ROME STATE AIRPORT US OR KREO 42.591 -117.86399999999999 1234.4 19980302 20200625 726875 99999 ROME STATE US OR KREO 42.583 -117.883 1235.0 20000101 20031231 726876 00387 GRANT COUNTY REGIONAL AIRPORT OGILVIE FIELD US OR KGCD 44.4 -118.96700000000001 1127.2 20050103 20200625 726876 99999 GRANT RGNL OGILVIE FLD US OR KGCD 44.4 -118.96700000000001 1126.8 19990114 20180322 726880 24155 EASTERN OR REGIONAL AT PENDLETON AP US OR KPDT 45.698 -118.855 452.9 19420101 20200625 726881 94273 MC MINNVILLE MUNICIPAL APT US OR KMMV 45.195 -123.134 48.5 20060101 20200625 726881 99999 MC MINNVILLE MUNI US OR KMMV 45.183 -123.133 50.0 19970201 20051231 726883 04113 HERMISTON MUNICIPAL ARPT US OR KHRI 45.826 -119.26100000000001 195.4 20060101 20200625 726883 99999 HERMISTON MUNI US OR KHRI 45.828 -119.259 196.0 19980514 20051231 726884 24148 LA GRANDE/UNION COUNTY APT US OR KLGD 45.283 -118.0 826.9 19880506 20200625 726884 99999 LA GRANDE UNION CO US OR KLGD 45.283 -118.0 828.0 20000101 20031231 726885 24152 MEACHAM US OR KMEH 45.511 -118.425 1134.8 19730101 20200625 726886 24130 BAKER CITY MUNICIPAL ARPT US OR KBKE 44.843 -117.809 1024.4 19730101 20200625 726887 99999 SUNRIVER US OR KS21 43.876000000000005 -121.45299999999999 1269.2 19800514 20200624 726901 24231 ROSEBURG US OR KRBG 43.239 -123.355 155.1 19730101 19800430 726904 24231 ROSEBURG REGIONAL AIRPORT US OR KRBG 43.239 -123.355 160.0 19800514 20200625 726904 99999 ROSEBURG RGNL US OR KRBG 43.233000000000004 -123.35 161.0 20000101 20031231 726910 99999 US 19730101 19760305 726911 99999 US 19760305 19770213 726915 99999 COOS BAY COAST GUARD STATION US OR 43.35 -124.33 23.0 19750911 19870805 726916 99999 UMPQUA RIVER COAST GUARD STATION US OR 43.68 -124.17 41.0 19750813 19910105 726917 24284 NORTH BEND MUNICIPAL ARPT US OR KOTH 43.413000000000004 -124.244 5.2 19770101 20200625 726917 99999 NORTH BEND MUNI US OR KOTH 43.417 -124.23299999999999 5.0 20000101 20031231 726920 24230 ROBERTS FIELD AIRPORT US OR KRDM 44.256 -121.139 927.5 20050101 20200625 726930 24221 MAHLON SWEET FIELD AIRPORT US OR KEUG 44.128 -123.221 107.6 19730101 20200625 726940 24232 MCNARY FIELD AIRPORT US OR KSLE 44.905 -123.001 62.5 19730101 20200625 726945 24202 CORVALLIS MUNICIPAL APRT US OR KCVO 44.5 -123.28299999999999 76.2 20060101 20200625 726945 99999 CORVALLIS MUNI US OR KCVO 44.483000000000004 -123.28299999999999 75.0 19430421 20051231 726950 24285 NEWPORT MUNICIPAL AIRPORT US OR KONP 44.583 -124.05 37.2 20110301 20200625 726950 99999 NEWPORT MUNI US OR KONP 44.58 -124.05799999999999 49.0 19730101 20110228 726951 99999 NEWPORT US OR JNW 44.633 -124.05 48.0 19760305 19770227 726954 99999 NEWPORT US OR 44.583 -124.06700000000001 48.0 19901022 20011231 726955 99999 SIUSLAW RIVER COAST GUARD STATIO US 44.0 -124.12 12.0 19750916 19910105 726956 99999 YAQUINA BAY COAST GUARD STATION US OR 44.62 -124.05 1.0 19750916 19910105 726957 99999 PACIFIC CITY STATE US OR 45.2 -123.96700000000001 2.0 19901023 19921118 726958 24285 NEWPORT MUNICIPAL US OR KONP 44.583 -124.05 48.8 19770301 20110301 726958 99999 NEWPORT MUNICIPAL US OR 44.583 -124.05 48.0 20000101 20031231 726959 94281 AURORA STATE AIRPORT US OR KUAO 45.248999999999995 -122.76899999999999 59.7 20060101 20200625 726959 99999 AURORA STATE US OR KUAO 45.25 -122.76700000000001 61.0 19801015 20051231 726963 99999 TILLAMOOK US OR S47 45.417 -123.81700000000001 11.0 19920828 19950607 726980 24229 PORTLAND INTERNATIONAL AIRPORT US OR KPDX 45.596000000000004 -122.609 5.8 19360501 20200625 726985 24242 PORTLAND-TROUTDALE AIRPORT US OR KTTD 45.551 -122.40899999999999 8.8 20060101 20200625 726985 99999 PORTLAND TROUTDALE US OR KTTD 45.55 -122.4 12.0 19480101 20051231 726986 94261 PORTLAND-HILLSBORO AIRPORT US OR KHIO 45.541000000000004 -122.949 62.2 20060101 20200625 726986 99999 PORTLAND/HILLSBORO US OR KHIO 45.533 -122.95 62.0 19730101 20051231 726987 94204 CASCADE LOCKS STATE AIRPORT US OR KCZK 45.683 -121.883 46.0 20060101 20131001 726987 99999 CASCADE LOCKS STATE US OR KCZK 45.667 -121.883 46.0 19730101 20051231 726988 24219 MUNICIPAL AIRPORT US WA KDLS 45.619 -121.166 71.6 19730101 20200625 726989 99999 TILLAMOOK BAY COAST GUARD STATIO US 45.57 -123.92 15.0 19750911 19901117 727000 99999 FREDERICTON AIRPORT CA 45.867 -66.533 20.0 19730101 19770702 727010 99999 GAGETOWN (CAN-MIL) CA 45.833 -66.433 51.0 19750602 19770630 727020 99999 SUMMERSIDE(CAN-MIL) CA 46.433 -63.833 24.0 19730101 19770727 727031 99999 HOULTON INTL ARPT & US ME 46.133 -67.783 150.0 19730101 19900219 727033 14609 INTERNATIONAL AIRPORT US ME KHUL 46.119 -67.793 145.1 20000101 20200626 727033 99999 HOULTON INTL US ME KHUL 46.117 -67.8 149.0 19420617 19991231 727050 99999 MONCTON AIRPORT CA 46.117 -64.683 71.0 19730101 19770712 727060 99999 CHARLOTTETOWN ARPT CA 46.283 -63.133 55.0 19730101 19770703 727070 99999 SYDNEY AIRPORT CA 46.167 -60.05 62.0 19730101 19770630 727075 99999 INVERNESS (MARS) CA 46.233000000000004 -61.3 41.0 19730101 19770630 727090 99999 ILES DE LA MADELEIN CA 47.383 -61.867 57.0 19730101 19770630 727100 99999 US 19730101 19740730 727110 99999 CHARLO AIRPORT CA 48.0 -66.333 37.0 19730101 19770630 727119 94605 CLAYTON LAKE US ME K40B 46.617 -69.533 314.2 20060101 20200625 727119 99999 CLAYTON LAKE US ME K40B 46.617 -69.517 314.0 19850208 20051231 727120 14607 CARIBOU MUNICIPAL AIRPORT US ME KCAR 46.871 -68.017 190.2 19730101 20200625 727125 14623 LORING AFB/LIMESTON US ME KLIZ 46.95 -67.883 227.0 19500801 19940304 727130 14604 NERN MAINE RGNL ARPT AT PRESQUE IS AIRPORT US ME KPQI 46.683 -68.05 162.8 19411101 20200625 727130 99999 PRESQUE ISLE (AWOS) US ME KPQI 46.683 -68.05 146.0 20000101 20031231 727135 94623 WISCASSET AIRPORT US ME KIWI 43.964 -69.712 20.7 20060101 20200626 727135 99999 WISCASSET US ME KIWI 43.961000000000006 -69.71300000000001 21.0 19950913 20051231 727140 99999 QUEBEC AIRPORT CA 46.8 -71.383 72.0 19730101 19770630 727145 99999 TROIS RIVIERES CA 46.35 -72.683 60.0 19730101 19770630 727150 99999 RIVIERE DU LOUP & CA 47.8 -69.55 149.0 19730101 19770630 727170 99999 CHATHAM CA 47.016999999999996 -65.45 33.0 19730101 19770630 727180 99999 MONT JOLI AIRPORT CA 48.6 -68.2 52.0 19730101 19770630 727190 99999 MISCOU ISL (MARS) CA 48.016999999999996 -64.5 4.0 19730101 19770630 727200 99999 STE AGATHE DES MONT CA 46.05 -74.283 395.0 19730101 19770630 727220 99999 MANIWAKI CA 46.367 -75.983 168.0 19730101 19770803 727250 99999 VAL DOR CA YVO 48.05 -77.783 337.0 19730101 19770630 727255 99999 ROUYN AIRPORT CA 48.2 -78.833 301.0 19730101 19770630 727260 99999 PARENT (MARS) CA 47.917 -74.617 439.0 19730101 19770728 727270 99999 BAGOTVILLE(CAN-MIL) CA 48.333 -71.0 159.0 19730101 19770630 727280 99999 ROBERVAL AIRPORT CA 48.516999999999996 -72.267 179.0 19730101 19770630 727300 99999 SUDBURY AIRPORT CA 46.617 -80.8 341.0 19730101 19770630 727310 99999 NORTH BAY AIRPORT CA 46.367 -79.417 370.0 19730101 19770630 727320 99999 BRITT CA 45.8 -80.533 192.0 19761117 19770217 727330 99999 GORE BAY AIRPORT CA 45.883 -82.56700000000001 193.0 19730101 19770630 727340 14847 SAULT STE MARIE MUNI/SASN FIELD AP US MI KANJ 46.479 -84.35700000000001 220.1 19730101 20200625 727344 04869 CHIPPEWA COUNTY INTL ARPT US MI KCIU 46.25 -84.46700000000001 243.5 20060101 20200625 727344 99999 CHIPPEWA CO INTL US MI KCIU 46.25 -84.46700000000001 244.0 19780319 20051231 727345 14847 SAULT STE MARIE US MI KANJ 46.479 -84.35700000000001 220.7 19480101 19721231 727345 99999 SAULT STE MARIE US MI 46.483000000000004 -84.367 218.0 19730101 19910908 727346 99999 SAULT STE. MARIE COAST GUARD STA US 46.5 -84.33 176.0 19760926 19960701 727347 14841 PELLSTON REGIONAL ARPT OF EMMET COUNTY ARPT US MI KPLN 45.56399999999999 -84.79299999999999 214.9 19730101 20200625 727348 99999 SAINT IGNACE US MI 45.85 -84.72 176.0 19760926 19960701 727349 99999 WHITEFISH POINT LS US MI 46.766999999999996 -84.95 183.0 19811106 19811106 727350 99999 EARLTON AIRPORT CA 47.7 -79.85 244.0 19730101 19770704 727370 99999 US 19730101 19760331 727375 99999 SAULT STE MARIE & CA 46.483000000000004 -84.5 188.0 19730101 19770630 727376 99999 GRAND MARAIS COAST GUARD STATION US MI 46.67 -85.98 183.0 19760926 19820803 727377 99999 WHITEFISH POINT US MI 46.766999999999996 -84.96700000000001 186.0 19770917 19811020 727380 99999 WAWA AIRPORT CA 47.967 -84.78299999999999 287.0 19730101 19770630 727390 99999 TIMMINS AIRPORT CA 48.567 -81.367 295.0 19730101 19770630 727410 99999 PARK FALLS MUNI US WI KPKF 45.955 -90.42399999999999 457.2 19730101 20010203 727415 04803 RHINELANDER-ONEIDA CO ARPT US WI KRHI 45.631 -89.48200000000001 495.0 20060101 20200625 727415 99999 RHINELANDER ONEIDA US WI KRHI 45.633 -89.46700000000001 495.0 19730101 20051231 727416 99999 DEVILS ISLAND LIGHT STATION US WI 47.08 -90.73 192.0 19760926 19870526 727417 54825 PRESQUE ISLE COUNTY AIRPORT US MI KPZQ 45.407 -83.81299999999999 204.2 20060101 20200626 727417 99999 PRESQUE ISLE CO US MI KPZQ 45.4 -83.81700000000001 204.0 20041230 20051231 727430 94850 MARQUETTE MICHIGAN COUNTY AP (WFO) US MI KMQT 46.531000000000006 -87.54899999999999 431.3 19730101 20200624 727430 99999 MARQUETTE CO. ARPT US MI KMQT 46.533 -87.55 434.0 20040105 20040105 727431 99999 MARQUETTE US MI MQT 46.533 -87.56700000000001 434.0 19850531 19850626 727434 04870 CHARLEVOIX MUNICIPAL ARPT US MI KCVX 45.305 -85.275 196.9 20060101 20200625 727434 99999 CHARLEVOIX MUNI US MI KCVX 45.3 -85.26700000000001 204.0 20020423 20051231 727435 54820 MACKINAC ISLAND AIRPORT US MI KMCD 45.865 -84.637 225.6 20060101 20200625 727435 99999 MACKINACK ISLAND US MI KMCD 45.865 -84.637 226.0 19561008 20051231 727436 04863 ANTRIM COUNTY AIRPORT US MI KACB 44.986000000000004 -85.20299999999999 189.0 20060101 20200625 727436 99999 ANTRIM CO US MI KACB 44.983000000000004 -85.2 190.0 19730101 20051231 727437 94893 FORD AIRPORT US MI KIMT 45.818000000000005 -88.11399999999999 342.0 20060101 20200625 727437 99999 FORD US MI KIMT 45.817 -88.117 360.0 19730101 20051231 727438 99999 MARQUETTE COAST GUARD LIGHT STAT US 46.55 -87.38 203.0 19760926 19960701 727439 99999 MANITOU ISLAND(CGS) US MI 47.417 -87.583 186.0 19760926 19771209 727440 14858 HOUGHTON COUNTY MEMO ARPT US MI KCMX 47.169 -88.48899999999999 333.8 19730101 20200625 727444 04979 RICHARD B HELGESON AIRPORT US MN KTWM 47.049 -91.745 329.2 20060101 20200625 727444 99999 RICHARD B HELGESON US MN KTWM 47.05 -91.75 329.0 19920807 20051231 727445 94926 GOGEBIC-IRON COUNTY ARPT US MI KIWD 46.533 -90.133 374.9 20060101 20200626 727445 99999 GOCEBIC IRON CO US MI KIWD 46.527 -90.131 375.0 19730101 20051231 727446 99999 TWO HARBORS(AWOS) US MN 47.1 -91.75 328.0 19760926 19810622 727447 99999 EAGLE HARBOR COAST GUARD LIGHT S US 47.47 -88.17 186.0 19760926 19830324 727448 99999 PORTAGE COAST GUARD STATION US MI 47.23 -88.63 190.0 19760926 19910303 727449 04954 MOOSE LAKE CARLTON CO ARPT US MN KMZH 46.419 -92.804 328.0 20060101 20200625 727449 99999 MOOSE LAKE CARLTON C US MN KMZH 46.417 -92.8 328.0 19760926 20051231 727450 14913 DULUTH INTERNATIONAL AIRPORT US MN KDLH 46.836999999999996 -92.18299999999999 436.8 19480101 20200625 727452 04912 CRKSTN MUNI KRKWOD FLD APT US MN KCKN 47.842 -96.62100000000001 274.0 20060101 20200625 727452 99999 CROOKSTON MUNI KIRKW US MN KCKN 47.85 -96.617 274.0 19850920 20051231 727453 94967 PK RPDS MUNI-KONSHOK FD AP US MN KPKD 46.901 -95.068 437.1 19900111 20200626 727454 04911 GRAND MARAIS/COOK CO ARPT US MN KCKC 47.838 -90.383 548.0 20060101 20200625 727454 99999 GRAND MARAIS COOK CO US MN KCKC 47.833 -90.383 548.0 19970313 20051231 727455 94931 CHISHOLM-HIBBING AIRPORT US MN KHIB 47.386 -92.839 412.1 19730101 20200625 727456 04919 SKY HARBOR AIRPORT US MN KDYT 46.722 -92.04299999999999 185.9 20060101 20200625 727456 99999 SKY HARBOR US MN KDYT 46.722 -92.04299999999999 186.0 19760926 20051231 727457 94962 DETRT LKS-WETHING FLD ARPT US MN KDTL 46.833 -95.883 425.8 20060101 20200625 727457 99999 DETROIT LAKES WETHIN US MN KDTL 46.825 -95.88600000000001 426.0 19780203 20051231 727458 94919 GRAND RAPIDS/ITASCA CO-G NEWSTROM FIELD ARPT US MN KGPZ 47.211000000000006 -93.51 413.0 20060101 20200625 727458 99999 GRAND RAPIDS ITASCA US MN KGPZ 47.217 -93.51700000000001 413.0 19831103 20051231 727459 94964 ELY MUNICIPAL AIRPORT US MN KELO 47.817 -91.833 443.8 20060101 20200625 727459 99999 ELY MUNI US MN KELO 47.817 -91.833 443.0 19831103 20051231 727466 04918 MDSON-LAC QUI PARLE CO APT US MN KDXX 44.986000000000004 -96.04299999999999 329.8 20060101 20200625 727466 99999 LAC QUI PARLE CO US MN KDXX 44.986000000000004 -96.178 330.0 19990114 20051231 727467 04926 FLAG ISLAND US MN KFGN 49.318000000000005 -94.90299999999999 329.2 20060101 20200625 727467 99999 FLAG ISLAND US MN KFGN 49.317 -94.9 329.0 19990114 20051231 727468 04928 BIGFORK MUNICIPAL AIRPORT US MN KFOZ 47.783 -93.65 411.2 20060101 20200625 727468 99999 BIGFORK US MN KFOZ 47.783 -93.65 411.0 19990114 20051231 727469 94992 GRAND MARAIS US MN KGNA 47.747 -90.344 185.9 20060101 20200625 727469 99999 GRAND MARIAS US MN KGNA 47.833 -90.383 186.0 19990114 20051231 727470 14918 FALLS INTERNATIONAL AIRPORT US MN KINL 48.56100000000001 -93.398 360.6 19730101 20200625 727473 94977 SCOTTS SPB US MN KCDD 48.266999999999996 -92.48299999999999 341.1 20060101 20200625 727473 99999 CRANE LAKE SEAPLANE US MN KCDD 48.266999999999996 -92.48299999999999 341.0 19910108 20051231 727474 04923 EVELETH-VIRGINIA MUNI ARPT US MN KEVM 47.424 -92.49799999999999 420.3 20060101 20200625 727474 99999 EVELETH VIRGINIA MUN US MN KEVM 47.425 -92.49799999999999 420.0 19920804 20051231 727475 04940 MORA MUNICIPAL AIRPORT US MN KJMR 45.886 -93.272 308.5 20060101 20200625 727475 99999 MORA MUNI US MN KJMR 45.886 -93.272 308.0 19760820 20051231 727476 94961 BAUDETTE INTERNATIONAL APT US MN KBDE 48.717 -94.6 329.8 19831104 20200625 727477 04970 ROSEAU MUNI/RUDY BILLBERG FLD ARPT US MN KROX 48.856 -95.697 322.8 20060101 20200625 727477 99999 ROSEAU MUNI BILLBERG US MN KROX 48.85 -95.7 323.0 19900924 20051231 727478 04934 HALLOCK MUNICIPAL AIRPORT US MN KHCO 48.753 -96.943 249.6 20060101 20200625 727478 99999 HALLOCK MUNI US MN KHCO 48.75 -96.95 250.0 19920807 20051231 727480 99999 ATIKOKAN (AUT) & CA 48.75 -91.617 391.0 19730101 19770630 727486 04983 WASKISH MUNICIPAL AIRPORT US MN KVWU 48.153999999999996 -94.51700000000001 360.0 20060101 20200625 727486 99999 WASKISH MUNI AIRPT US MN KVWU 48.15 -94.51700000000001 360.0 20010811 20051231 727490 99999 THUNDER BAY AIRPORT CA 48.367 -89.31700000000001 199.0 19730101 19770630 727495 99999 ROYAL ISLAND CA 49.033 -90.46700000000001 489.0 19730101 19770630 727497 04984 LONGVILLE MUNICIPAL ARPT US MN KXVG 46.99 -94.204 406.6 20060101 20200626 727497 99999 LONGVILLE MUNI US MN KXVG 46.983000000000004 -94.2 407.0 20010811 20051231 727500 99999 PEQUOT LAKE MN US 46.6 -94.31700000000001 390.0 19760901 20040727 727503 04909 CAMBRIDGE MUNICIPAL ARPT US MN KCBG 45.559 -93.265 288.0 20060101 20200625 727503 99999 CAMBRIDGE MUNI US MN KCBG 45.55 -93.26700000000001 288.0 19920807 20051231 727504 94999 ATKN MUNI-S KURTZ FLD ARPT US MN KAIT 46.548 -93.677 367.0 20060101 20200626 727504 99999 AITKIN MUNI KURTZ FL US MN KAIT 46.55 -93.68299999999999 367.0 19920807 20051231 727505 04929 FOSSTON MUNICIPAL AIRPORT US MN KFSE 47.593 -95.775 389.2 20060101 20200625 727505 99999 FOSSTON MUNI US MN KFSE 47.6 -95.76700000000001 389.0 19920807 20051231 727506 04952 WINDOM MUNICIPAL AIRPORT US MN KMWM 43.913000000000004 -95.109 429.8 20060101 20200625 727506 99999 WINDOM MUNI US MN KMWM 43.917 -95.117 430.0 19990114 20051231 727507 54904 BENSON MUNICIPAL AIRPORT US MN KBBB 45.332 -95.65100000000001 316.7 20060101 20200625 727507 99999 BENSON MUNI US MN KBBB 45.333 -95.65 317.0 19940718 20051231 727508 54915 PINE RIVER REGIONAL AIRPORT US MN KPWC 46.725 -94.382 394.7 20060101 20200626 727508 99999 PINE RIVER RGNL US MN KPWC 46.717 -94.383 395.0 19990114 20051231 727511 99999 WALDRON FLD NOLF US TX KNWL 27.635 -97.31200000000001 7.6 20180821 20180821 727514 54910 STAPLES MUNICIPAL AIRPORT US MN KSAZ 46.381 -94.806 392.3 20060101 20200625 727514 99999 STAPLES MUNI US MN KSAZ 46.383 -94.8 392.0 19990114 20051231 727515 04982 ORTHONVILLE MUNI-MARTINSON FIELD AIRPORT US MN KVVV 45.306000000000004 -96.42399999999999 335.3 20060101 20200625 727515 99999 ORTONVILLE MUNI MART US MN KVVV 45.3 -96.417 335.0 19990114 20051231 727517 04932 GLENCOE MUNICIPAL AIRPORT US MN KGYL 44.756 -94.081 302.4 20060101 20200625 727517 99999 GLENCOE MUNI US MN KGYL 44.75 -94.083 302.0 20010811 20051231 727530 14914 HECTOR INTERNATIONAL AIRPORT US ND KFAR 46.925 -96.811 274.3 19480101 20200625 727533 04922 WHEATON MUNICIPAL AIRPORT US MN KETH 45.78 -96.545 312.4 20060101 20200625 727533 99999 WHEATON MUNI US MN KETH 45.78 -96.544 312.0 19920807 20051231 727534 99999 LIDGERWOOD REMOTE AUTOMATIC METE US 46.1 -97.15 351.0 19790322 20010827 727535 14919 JAMESTOWN REGIONAL AIRPORT US ND KJMS 46.926 -98.669 455.4 19730101 20200625 727550 14958 BEMIDJI-BELTRAMI CO ARPT US MN KBJI 47.5 -94.93299999999999 424.3 20060101 20200625 727550 99999 BEMIDJI MUNICIPAL US MN KBJI 47.5 -94.93299999999999 420.0 19730101 20051231 727554 99999 GRAND MARAIS US MN 47.75 -90.34 185.0 19781205 20101223 727555 94956 THIEF RIVER FALLS RGNL APT US MN KTVF 48.067 -96.18299999999999 339.9 20060101 20200625 727555 99999 THIEF RIVER FALLS RG US MN KTVF 48.066 -96.185 340.0 19730101 20051231 727556 04905 SILVER BAY MUNICIPAL ARPT US MN KBFW 47.248999999999995 -91.416 331.9 20060101 20200625 727556 99999 SILVER BAY MUNI US MN KBFW 47.25 -91.417 332.0 19920807 20051231 727560 99999 WARROAD MN US 48.933 -95.35 328.0 19780310 19930909 727564 99999 WARROAD INTL SWEDE CARLSON FIELD US MN KRAD 48.941 -95.348 336.0 19920807 19951115 727566 04902 AUSTIN MUNICIPAL AIRPORT US MN KAUM 43.665 -92.93299999999999 375.8 20060101 20200625 727566 99999 AUSTIN MUNI US MN KAUM 43.667 -92.93299999999999 376.0 19920807 20051231 727570 14916 GRAND FORKS INTERNATIONAL AIRPORT US ND KGFK 47.943000000000005 -97.184 256.6 20100801 20200625 727570 99999 GRAND FORKS INTL US ND KGFK 47.933 -97.167 257.0 19480101 20100731 727572 99999 DEVILS LAKE(AWOS) US ND 48.117 -98.9 443.0 19730101 19900109 727573 94928 DEVILS LAKE MUNI AIRPORT US ND KDVL 48.117 -98.9 439.2 20060101 20200625 727573 99999 DEVILS LAKE MUNI US ND KDVL 48.114 -98.90899999999999 443.0 19900111 20051231 727575 94925 GRAND FORKS AFB AIRPORT US ND KRDR 47.967 -97.4 278.3 19590303 20200625 727575 99999 GRAND FORKS AFB US ND KRDR 47.95 -97.4 278.0 20000101 20041231 727576 14916 GRAND FORKS INTL US ND KGFK 47.943000000000005 -97.184 253.6 19730101 20100801 727577 99999 GRAND FORKS NEXRAD US ND MVX 47.533 -97.333 329.0 19741118 19750926 727580 99999 DEVILS LAKE US ND 48.1 -98.87 439.0 19770827 19920518 727584 94038 HETTINGER MUNICIPAL ARPT US ND KHEI 46.013999999999996 -102.655 824.5 20060101 20200625 727584 99999 HETTINGER MUNI US ND KHEI 46.016999999999996 -102.65 824.0 19990114 20051231 727630 24012 DICKINSON THEODORE ROOSEVELT RGNL ARPT US ND KDIK 46.799 -102.79700000000001 786.4 20050101 20200625 727640 24011 BISMARCK MUNICIPAL AIRPORT US ND KBIS 46.783 -100.757 503.2 19360701 20200625 727645 24012 DICKINSON MUNI US ND KDIK 46.799 -102.79700000000001 787.3 19730101 20100801 727650 99999 ROSEGLEN US ND 47.75 -101.83 624.0 19770828 20040907 727670 94014 SLOULIN FIELD INTERNATIONAL AIRPORT US ND KISN 48.174 -103.637 579.7 19730101 20200107 727675 94011 MINOT AFB AIRPORT US ND KMIB 48.417 -101.35 508.1 19591001 20200626 727675 99999 MINOT AFB US ND KMIB 48.417 -101.35 508.0 20000101 20041231 727676 24013 MINOT INTERNATIONAL ARPT US ND KMOT 48.255 -101.273 507.5 19730101 20200626 727677 94041 GARRISON US ND KN60 47.646 -101.439 582.8 20060101 20200625 727677 99999 GARRISON US ND KN60 47.65 -101.44 582.0 19760820 20051231 727680 94008 WOKAL FIELD/GLASGOW INTL AIRPORT US MT KGGW 48.214 -106.62100000000001 696.5 19421210 20200625 727684 94051 JORDAN AIRPORT US MT KJDN 47.326 -106.948 811.4 20060101 20200625 727684 99999 JORDAN US MT KJDN 47.32899999999999 -106.95299999999999 811.0 19790322 20051231 727685 99999 GLASGOW INDUSTRIAL US MT 07MT 48.42100000000001 -106.52799999999999 841.9 19730702 19760528 727686 94017 L M CLAYTON AIRPORT US MT KOLF 48.093999999999994 -105.574 605.3 20060101 20200625 727686 99999 L M CLAYTON US MT KOLF 48.1 -105.583 605.0 19730419 20051231 727687 94028 SIDNEY-RICHLAND MUNI ARPT US MT KSDY 47.717 -104.18299999999999 603.5 20060101 20200625 727687 99999 SIDNEY-RICHLAND MUNI US MT KSDY 47.707 -104.193 605.0 19730104 20051231 727690 24137 CUT BANK MUNICIPAL AIRPORT US MT KCTB 48.603 -112.375 1169.8 20050101 20200625 727700 24138 DILLON AIRPORT US MT KDLN 45.258 -112.554 1585.0 20050101 20200625 727720 24144 HELENA REGIONAL AIRPORT US MT KHLN 46.606 -111.964 1166.8 19730101 20200625 727725 99999 ELLISTON US MT 46.567 -112.43299999999999 1547.0 19730102 19770701 727730 24153 MISSOULA INTERNATIONAL AIRPORT US MT KMSO 46.92100000000001 -114.09299999999999 972.9 19730101 20200625 727735 24139 DRUMMOND US MT K3DU 46.638000000000005 -113.176 0.0 19730101 20120930 727735 99999 DRUMMOND US MT K3DU 46.67 -113.15 1202.0 20000101 20041231 727740 24135 BERT MOONEY AIRPORT US MT KBTM 45.965 -112.501 1678.2 20050101 20200625 727750 24143 GREAT FALLS INTERNATIONAL AIRPORT US MT KGTF 47.473 -111.382 1116.8 19730101 20200625 727755 24112 MALMSTROM AFHP HELIPORT US MT KGFA 47.516999999999996 -111.18299999999999 1058.3 19421201 20200625 727755 99999 MALMSTROM AFHP US MT KGFA 47.5 -111.18299999999999 1058.0 20020110 20041231 727760 99999 GREAT FALLS US MT 47.45 -111.383 1130.5 19940921 20200624 727770 94012 HAVRE CITY-COUNTY AIRPORT US MT KHVR 48.543 -109.76299999999999 787.9 19730101 20200625 727790 24146 GLACIER PARK INTERNATIONAL AIRPORT US MT KGPI 48.303999999999995 -114.264 901.3 19730101 20200625 727795 99999 THOMPSON FALLS US MT 47.6 -115.37 725.0 19730101 20021031 727796 24137 CUT BANK MUNI US MT KCTB 48.603 -112.375 1169.8 19421201 20100801 727810 24243 YAKIMA AIR TERMINAL/MCALSR FIELD AP US WA KYKM 46.568000000000005 -120.54299999999999 324.3 19730101 20200625 727813 99999 VAGABOND AAF / YAKIMA TRAINING CENTER WASHINGTON USA US WA KFCT 46.667 -120.454 417.6 20030617 20081110 727815 24237 STAMPASS PASS FLTWO US WA KSMP 47.277 -121.337 1206.7 19730101 20200625 727825 94239 PANGBORN MEMORIAL AIRPORT US WA KEAT 47.398 -120.20100000000001 374.6 20000101 20200625 727825 99999 PANGBORN MEM US WA KEAT 47.398999999999994 -120.20700000000001 381.0 19730101 19991231 727826 24141 EPHRATA MUNICIPAL US WA KEPH 47.308 -119.515 383.7 19420101 20100801 727827 24110 GRANT COUNTY INTL AIRPORT US WA KMWH 47.208 -119.319 364.5 19430610 20200625 727827 99999 MOSES LAKE/GRANT CO US WA KMWH 47.2 -119.31700000000001 361.0 20000101 20031231 727830 24149 LEWISTON-NEZ PERCE COUNTY AIRPORT US ID KLWS 46.375 -117.016 437.7 19730101 20200625 727833 04114 CHALLIS (AMOS) US ID KLLJ 44.523 -114.215 1536.2 19990102 20091231 727833 99999 CHALLIS CHALLIS AIRPORT US ID 44.52 -114.22 1534.0 19810912 19981008 727834 24136 COEUR D'ALENE AIR TERM APT US ID KCOE 47.766999999999996 -116.81700000000001 703.2 20060101 20200625 727834 99999 COEUR D ALENE AIR TE US ID KCOE 47.766999999999996 -116.81700000000001 707.0 19480101 20051231 727836 99999 MULLAN AVIATION WEATHER REPORTIN US 47.47 -115.8 1011.0 19730101 19960630 727840 94187 HANFORD AIRPORT US WA KHMS 46.567 -119.6 223.1 20060101 20130326 727840 99999 HANFORD US WA KHMS 46.567 -119.6 223.0 19730101 20051231 727845 24163 TRI-CITIES AIRPORT US WA KPSC 46.266999999999996 -119.117 124.1 19730101 20200625 727845 99999 TRI CITIES US WA KPSC 46.266999999999996 -119.117 124.0 20000101 20031231 727846 24160 WALLA WALLA REGIONAL ARPT US WA KALW 46.095 -118.287 355.4 19410901 20200625 727850 24157 SPOKANE INTERNATIONAL AIRPORT US WA KGEG 47.622 -117.52799999999999 717.2 19410811 20200625 727854 94119 DEER PARK ARPT US WA KDEW 47.974 -117.428 672.4 20060101 20100801 727854 99999 DEER PARK ARPT US WA 47.967 -117.417 672.0 20010811 20041231 727855 24114 FAIRCHILD AIR FORCE BASE US WA KSKA 47.633 -117.65 750.1 19400401 20200625 727855 99999 FAIRCHILD AFB US WA KSKA 47.617 -117.65 750.0 20000101 20041231 727856 94176 FELTS FIELD AIRPORT US WA KSFF 47.683 -117.321 595.3 20060101 20200625 727856 99999 FELTS FLD US WA KSFF 47.683 -117.31700000000001 595.0 19730101 20051231 727857 94129 PULLMAN/MOSCOW RGNL ARPT US WA KPUW 46.744 -117.109 777.5 20060101 20200625 727857 99999 PULLMAN MOSCOW RGNL US WA KPUW 46.75 -117.117 778.0 19730101 20051231 727860 99999 SPOKANE US WA 47.681000000000004 -117.62700000000001 729.1 20041004 20041004 727861 99999 SPOKANE NEXRAD US WA OTX 47.683 117.633 745.0 20000827 20000827 727870 94119 DEER PARK AIRPORT US WA KDEW 47.974 -117.429 667.8 20100801 20200625 727870 99999 DEER PARK US WA KDEW 47.967 -117.427 674.0 19730101 20100731 727871 99999 COLVILLE MUNICIPAL US WA 48.55 -117.883 572.0 19760305 19880404 727873 99999 COLVILLE MUNICIPAL US WA 48.55 -117.88 572.0 19890908 20040426 727883 24220 BOWERS FIELD AIRPORT US WA KELN 47.034 -120.53 538.3 19880106 20200625 727883 99999 BOWERS FLD US WA KELN 47.033 -120.531 537.0 20000101 20031231 727884 99999 RICHLAND AIRPORT US WA KRLD 46.306000000000004 -119.304 120.1 19810203 20200624 727885 94266 WILLIAM R FAIRCHILD INT AP US WA KCLM 48.12 -123.49799999999999 87.8 20060101 20200625 727885 99999 WILLIAM R FAIRCHILD US WA KCLM 48.117 -123.5 89.0 19810211 20051231 727890 94197 OMAK AIRPORT US WA KOMK 48.464 -119.51700000000001 396.2 20060101 20200625 727890 99999 OMAK US WA KOMK 48.417 -119.53299999999999 382.0 19730101 20051231 727900 24141 EPHRATA MUNICIPAL AIRPORT US WA KEPH 47.308 -119.515 381.6 20050101 20200625 727910 94224 ASTORIA REGIONAL AIRPORT US OR KAST 46.157 -123.883 2.7 19730101 20200625 727915 99999 CAPE DISAPPOINTMENT US WA 46.28 -124.05 55.0 19750911 19901117 727916 99999 GRAYS HARBOR COAST GUARD STATION US WA 46.92 -124.1 6.0 19750916 19901117 727917 99999 PACIFIC BEACH NF US WA NIX 47.217 -124.2 18.0 19780124 19870521 727918 94298 PEARSON FIELD AIRPORT US WA KVUO 45.621 -122.65700000000001 9.1 20060101 20200625 727918 99999 PEARSON FLD US WA KVUO 45.617 -122.65 8.0 19980201 20051231 727920 24227 OLYMPIA AIRPORT US WA KOLM 46.973 -122.90299999999999 57.3 19730101 20200625 727923 94225 BOWERMAN AIRPORT US WA KHQM 46.973 -123.93 3.7 19910108 20200625 727924 24223 KELSO-LONGVIEW AIRPORT US WA KKLS 46.117 -122.89399999999999 6.1 19900208 20200625 727924 99999 KELSO LONGVIEW US WA KKLS 46.118 -122.898 6.0 20000101 20031231 727925 94227 SANDERSON FIELD AIRPORT US WA KSHN 47.238 -123.141 82.6 19990101 20200625 727925 99999 SANDERSON FLD US WA KSHN 47.233000000000004 -123.15 83.0 19730102 19981231 727926 24241 TOLEDO-WINLOCK ED CARLSON MEMORIAL FIELD AIRPORT US WA KTDO 46.483000000000004 -122.81700000000001 115.5 20060101 20071001 727926 99999 ED CARLSON MEM FLD US WA KTDO 46.483000000000004 -122.8 114.0 19730101 20051231 727927 94225 HOQUIAM AP US WA KHQM 46.973 -123.93 4.6 19730101 19901218 727928 94263 BREMERTON NATIONAL AIRPORT US WA KPWT 47.483000000000004 -122.76700000000001 135.3 20060101 20200625 727928 99999 BREMERTON NATIONAL US WA KPWT 47.483000000000004 -122.75 135.0 19730101 20051231 727929 99999 WILLAPA HARBOR US WA 46.698 -123.823 4.0 19750916 19791001 727930 24233 SEATTLE-TACOMA INTERNATIONAL AIRPORT US WA KSEA 47.443999999999996 -122.314 112.8 19480101 20200625 727933 99999 AUBURN US WA KZSE 47.283 -122.18299999999999 99.0 19760607 19760607 727934 94248 RENTON MUNICIPAL AIRPORT US WA KRNT 47.493 -122.214 8.8 20060101 20200625 727934 99999 RENTON MUNI US WA KRNT 47.493 -122.21600000000001 10.0 19800216 20051231 727935 24234 BOEING FLD/KING CO INTL AP US WA KBFI 47.53 -122.301 5.5 19431001 20200625 727935 99999 BOEING FLD KING CO US WA KBFI 47.516999999999996 -122.3 6.0 20000101 20031231 727937 24222 SNOHOMISH CO (PAINE FD) AP US WA KPAE 47.908 -122.28 184.7 20060101 20200625 727937 99999 SNOHOMISH CO US WA KPAE 47.9 -122.28299999999999 185.0 19411001 20051231 727938 94274 TACOMA NARROWS AIRPORT US WA KTIW 47.268 -122.57600000000001 89.0 20060101 20200625 727938 99999 TACOMA NARROWS US WA KTIW 47.266999999999996 -122.56700000000001 91.0 19730101 20051231 727939 99999 ALKI POINT COAST GUARD LIGHT STA US 47.52 -122.42 1.0 19750911 19901206 727945 04205 ARLINGTON MUNICIPAL ARPT US WA KAWO 48.161 -122.15899999999999 41.8 20060101 20200625 727945 99999 ARLINGTON MUNI US WA KAWO 48.161 -122.15899999999999 42.0 19960221 20051231 727964 99999 OAK HARBOR US WA KOKH 48.25 -122.667 59.0 19810310 20081231 727965 99999 ARLINGTON (AWOS) US WA 48.167 -122.15 42.0 19810703 19941103 727970 94240 QUILLAYUTE AIRPORT US WA KUIL 47.938 -124.555 56.4 19730101 20200625 727973 99999 BANGOR CGS US WA NMI 47.733000000000004 -122.71700000000001 0.0 19850130 19880106 727974 99999 DESTRUCTION ISLAND US WA 47.67 -124.48 24.0 19790507 19860320 727975 24255 WHIDBEY ISLAND NAS US WA KNUW 48.35 -122.667 14.3 19730101 19891130 727976 24217 BELLINGHAM INTL AIRPORT US WA KBLI 48.794 -122.537 45.4 19480101 20200625 727977 99999 QUILLAYUTE RIVER COAST GUARD LIG US 47.9 -124.63 1.0 19750911 19901128 727978 24240 CAPE FLATTERY(CGLS) US WA K93S 48.383 -124.73299999999999 26.0 19750911 19860320 727979 99999 POINT WILSON COAST GUARD LIGHT S US 48.12 -122.75 1.0 19750911 19950327 727984 99999 NEAH BAY US WA 8S7 48.367 -124.6 3.0 19790507 19950929 727985 94276 FRIDAY HARBOR AIRPORT US WA KFHR 48.522 -123.023 33.2 20060101 20200625 727985 99999 FRIDAY HARBOR US WA KFHR 48.522 -123.024 34.0 19881014 20051231 727990 99999 VICTORIA INTL ARPT CA 48.65 -123.43299999999999 19.0 19730101 19770630 727995 99999 VICTORIA MARINE RAD CA 48.367 -123.75 31.0 19730101 19770630 727996 99999 NEW DUNGENESS COAST GUARD STATIO US 48.17 -123.1 12.0 19750911 19940221 728000 99999 CAPE RACE (MARS) CA 46.65 -53.067 27.0 19761101 19770120 728010 99999 ST JOHNS/TORBAY CA YYT 47.617 -52.75 141.0 19730101 19770630 728020 99999 SAINT LAWRENCE CA 46.883 -55.417 33.0 19730101 19770809 728030 99999 GANDER INTL AIRPORT CA 48.95 -54.567 150.0 19730101 19770815 728040 99999 SAGLEK (BAY) CA 49.217 -57.4 22.0 19730101 19770727 728045 99999 BADGER (MARS) CA 48.967 -56.067 105.0 19730101 19770630 728050 99999 ST. PIERRE CA 46.766999999999996 -56.167 3.0 19730101 19770819 728070 99999 ARGENTIA (MARS) CA YAR 47.283 -54.0 16.0 19730101 19770730 728080 99999 BLANC SABLON ARPT & CA 51.433 -57.217 19.0 19730101 19770802 728100 99999 PORT MENIER (MARS)& CA 49.85 -64.45 31.0 19730101 19770727 728105 99999 HAVRE ST PIERRE & CA 50.25 -63.6 6.0 19730101 19770630 728110 99999 SEPT-ILES AIRPORT CA 50.217 -66.267 55.0 19730101 19770804 728120 99999 LAKE EON CA 51.85 -63.283 593.0 19730101 19770720 728130 99999 NATASHQUAN AIRPORT CA 50.183 -61.8 11.0 19730101 19770630 728140 99999 CHEVERY (MARS) CA 50.533 -59.5 3.0 19730101 19770804 728150 99999 STEPHENVILLE ARPT CA 48.533 -58.55 26.0 19730101 19770730 728155 99999 STAR BROOK CA 48.583 -57.233000000000004 290.0 19920408 19930701 728160 99999 GOOSE BAY AIRPORT CA 53.317 -60.417 46.0 19730101 19770730 728170 99999 BATTLE HARBOUR CA UBF 52.25 -55.6 5.0 19730101 19770630 728180 99999 CARTWRIGHT CA 53.7 -57.033 1.0 19730101 19770804 728190 99999 SAINT ANTHONY CA 51.367 -55.633 105.0 19730101 19770817 728210 99999 MATAGAMI AIRPORT & CA 49.766999999999996 -77.8 277.0 19731213 19770630 728220 99999 CHIBOUGAMAU-CHAPAIS CA 49.817 -74.417 402.0 19730101 19770804 728225 99999 MATAGAMI AIRPORT & CA 49.766999999999996 -77.8 277.0 19730608 19731209 728240 99999 US 19730101 19750514 728241 99999 GAGNON CA 51.95 -68.133 566.0 19750515 19770531 728250 99999 WABUSH LAKE AIRPORT CA 52.933 -66.867 548.0 19730101 19770817 728260 99999 PANGNIRTUNG CA 53.2 -70.9 537.0 19730101 19770804 728270 99999 LA GRANDE RIVIERE CA 53.633 -77.7 191.0 19761007 19770630 728280 99999 SCHEFFERVILLE ARPT CA 54.8 -66.817 522.0 19730101 19770804 728310 99999 KAPUSKASING AIRPORT CA 49.417 -82.46700000000001 227.0 19730101 19770630 728340 99999 GERALDTON AIRPORT & CA 49.7 -86.95 331.0 19730101 19770630 728360 99999 MOOSONEE (SAWR) & CA 51.266999999999996 -80.65 9.0 19730101 19770711 728410 99999 ARMSTRONG (MARS) CA 50.283 -88.9 322.0 19730101 19770630 728420 99999 SIOUX LOOKOUT ARPT CA 50.117 -91.9 390.0 19730101 19770630 728425 99999 DRYDEN AIRPORT CA 49.833 -92.75 411.0 19730101 19770630 728450 99999 PICKLE LAKE CA 51.467 -90.2 367.0 19730102 19770630 728460 99999 LANSDOWNE HOUSE & CA 52.233000000000004 -87.883 255.0 19730101 19770630 728480 99999 BIG TROUT LAKE CA 53.833 -89.867 218.0 19730101 19770626 728500 99999 KENORA AIRPORT CA 49.8 -94.367 411.0 19730101 19770630 728510 99999 PORTAGE SOUTHPORT A CA 49.9 -98.26700000000001 270.0 19730101 19770630 728520 99999 WINNIPEG INTL ARPT CA 49.9 -97.23299999999999 239.0 19730101 19770630 728525 99999 VICTORIA BEACH(AUT) CA 49.033 -97.56700000000001 252.0 19730101 19770630 728526 99999 SAINT ANDREWS CA 50.05 -97.03299999999999 231.0 19760407 19770630 728530 99999 SHILO CA 49.817 -99.65 381.0 19750724 19750930 728540 99999 RED LAKE AIRPORT CA 51.067 -93.81700000000001 380.0 19730101 19770630 728550 99999 DAUPHIN AIRPORT CA 51.1 -100.05 305.0 19730101 19770630 728560 99999 GIMLI CA 50.617 -96.98299999999999 230.0 19730101 19770630 728565 99999 HECLA AMOS CA 51.167 -96.667 230.0 19750807 19770630 728575 99999 FLIN FLON AIRPORT CA 54.683 -101.68299999999999 304.0 19730101 19770630 728580 99999 GRAND RAPIDS (MARS) CA 53.183 -99.26700000000001 221.0 19730101 19770630 728610 99999 BROADVIEW & CA 50.383 -102.583 599.0 19730101 19770630 728620 99999 ESTEVAN AIRPORT CA 49.067 -103.0 571.0 19730101 19770630 728630 99999 REGINA AIRPORT CA 50.433 -104.667 577.0 19730101 19770630 728640 99999 MOOSE JAW (CAN-MIL) CA 50.333 -105.55 577.0 19730101 19770630 728645 99999 US 19761117 19770125 728650 99999 WYNYARD CA 51.766999999999996 -104.2 560.0 19730101 19770630 728660 99999 SASKATOON AIRPORT CA 52.167 -106.68299999999999 500.0 19730101 19770630 728665 99999 ELBOW (MARS) & CA 51.133 -106.583 594.0 19730101 19770630 728670 99999 THE PAS AIRPORT CA 53.967 -101.1 270.0 19730101 19770630 728680 99999 HUDSON BAY CA 52.867 -102.4 372.0 19730101 19770630 728690 99999 PRINCE ALBERT ARPT CA 53.217 -105.68299999999999 428.0 19730101 19770630 728700 99999 SWIFT CURRENT ARPT CA 50.283 -107.68299999999999 817.0 19730101 19770726 728710 99999 LLOYDMINSTER ARPT CA 53.35 -110.833 34.0 19730101 19770630 728720 99999 MEDICINE HAT ARPT CA 50.016999999999996 -110.71700000000001 717.0 19730101 19770630 728730 99999 CORONATION (MARS) & CA 52.1 -111.45 797.0 19730101 19770630 728735 99999 CORONATION(AUT) CA 52.1 -111.45 797.0 19770608 19770630 728740 99999 LETHBRIDGE AIRPORT CA 49.633 -112.8 929.0 19730101 19770630 728750 99999 PINCHER CREEK (AUT) CA 49.5 -113.95 1154.0 19730101 19770630 728760 99999 NORTH BATTLEFORD CA 52.766999999999996 -108.25 548.0 19730101 19770630 728770 99999 CALGARY INTNL ARPT CA 51.1 -114.01700000000001 1084.0 19730101 19770630 728775 99999 GOLDEN ARPT CA 51.3 -116.96700000000001 787.0 19730102 19770630 728780 99999 RED DEER AIRPORT CA 52.183 -113.9 905.0 19730101 19770630 728790 99999 EDMONTON MUNICIPAL CA 53.567 -113.51700000000001 671.0 19730101 19770630 728800 99999 CRANBROOK AIRPORT CA 49.6 -115.78299999999999 939.0 19730101 19770630 728810 99999 EDSON AIRPORT CA 53.583 -116.45 921.0 19730101 19770630 728820 99999 REVELSTOKE AIRPORT CA 50.967 -118.18299999999999 443.0 19730101 19770817 728830 99999 BLUE RIVER (MAN) CA 52.117 -119.3 683.0 19730101 19770630 728840 99999 CASTLEGAR AIRPORT CA 49.3 -117.633 495.0 19730101 19770630 728860 99999 PRINCETON ARPT & CA 49.467 -120.51700000000001 700.0 19730101 19770630 728870 99999 KAMLOOPS AIRPORT CA 50.7 -120.45 346.0 19730101 19770630 728880 99999 JASPER CA 52.883 -118.06700000000001 1064.0 19730101 19770630 728885 99999 JASPER-HINTON ARPT CA 53.317 -117.75 1227.0 19730111 19730630 728890 99999 PENTICTON AIRPORT CA 49.467 -119.6 344.0 19730101 19770630 728895 99999 KELOWNA APT CA 49.95 -119.383 429.0 19730101 19770630 728900 99999 NANAIMO AIRPORT CA 49.05 -123.867 30.0 19730101 19770630 728905 99999 BALLENAS IL AUTO8 & CA 49.25 -124.833 1.0 19730101 19770630 728910 99999 LYTTON (READAC) CA 50.233000000000004 -121.583 255.0 19730101 19770630 728915 99999 HOPE SLIDE CA 49.266999999999996 -121.21700000000001 678.0 19730101 19770630 728916 99999 CAPE MUDGE (LGT-H) CA 51.15 -121.5 1055.0 19730101 19770630 728920 99999 VANCOUVER INTL CA 49.183 -123.167 3.0 19730101 19770630 728925 99999 VANCOUVER HARBOUR & CA 49.3 -123.117 5.0 19760212 19770630 728930 99999 COMOX (CAN-MIL) CA 49.717 -124.9 24.0 19730101 19770630 728935 99999 POWELL RIVER ARPT & CA 49.817 -124.5 120.0 19730101 19770630 728936 99999 CAMPBELL RIVER ARPT CA 49.95 -125.26700000000001 105.0 19730101 19770630 728937 99999 CHATHAM POINT (LH) CA 50.333 -125.43299999999999 20.0 19730101 19770630 728940 99999 ESTEVAN PT. (MARS) CA 49.383 -126.53299999999999 5.0 19730101 19770630 728950 99999 BULL HARBOUR (DEAD) CA 50.917 -127.95 4.0 19730101 19770630 728955 25237 HOLBERG CA 50.65 -128.0 617.0 19730101 19770630 728956 99999 EGG ISLAND CA 51.25 -127.833 12.0 19760401 19770630 728960 99999 PRINCE GEORGE ARPT CA 53.883 -122.667 691.0 19730101 19770630 728970 99999 MCINNES ISLAND CA 52.266999999999996 -128.717 25.0 19730101 19770630 728980 99999 PRINCE RUPERT ARPT CA 54.3 -130.433 34.0 19730101 19770630 728985 99999 BONILLA ISLAND & CA 53.5 -130.63299999999998 18.0 19730101 19770419 728990 25343 LANGARA CA 54.25 -133.05 34.0 19730101 19770723 729000 99999 HOPEDALE (MAPS) CA 55.45 -60.233000000000004 10.0 19730101 19770804 729010 99999 BORDER (MAPS) CA 55.333 -63.217 486.0 19730101 19770630 729020 99999 US 19730719 19740919 729030 99999 US 19730101 19750904 729040 99999 QUAQTAQ AIRPORT CA 61.067 -69.683 27.0 19730101 19770804 729050 99999 KUUJJUARAPIK ARPT CA 55.283 -77.767 18.0 19730101 19770810 729060 99999 KUUJJUAQ AIRPORT CA 58.1 -68.417 31.0 19730101 19770630 729070 99999 INUKJUAK CA 58.45 -78.117 5.0 19730101 19770630 729080 99999 US 19730313 19740918 729085 99999 DECEPTION BAY CA 62.117 -74.617 30.0 19730104 19740102 729090 99999 IQALUIT CA 63.75 -68.55 34.0 19730101 19770819 729100 99999 CAPE DORSET AIRPORT CA 64.217 -76.533 9.0 19730101 19770804 729110 99999 SHEPHERD BAY ARPT CA 68.817 -93.43299999999999 51.0 19730608 19770630 729120 99999 GILLAM AIRPORT CA 56.35 -94.7 144.0 19730101 19770630 729130 99999 CHURCHILL AIRPORT CA 58.75 -94.06700000000001 30.0 19730101 19770804 729140 99999 NANISIVIK CA 72.967 -84.383 639.0 19750305 19770630 729150 99999 CORAL HARBOUR ARPT CA 64.2 -83.367 64.0 19730101 19770804 729160 99999 CHESTERFIELD INLET& CA 63.333 -90.71700000000001 6.0 19730101 19770804 729170 99999 EUREKA CA 80.0 -85.93299999999999 9.0 19730101 19770804 729180 99999 PELLY BAY 1 CA 73.033 -85.15 1.0 19730101 19770523 729190 99999 PELLY BAY CA 68.433 -89.71700000000001 323.0 19730101 19770630 729200 99999 CREE LAKE (MAPS) CA 57.35 -107.133 499.0 19730101 19770730 729210 99999 BROCHET & CA 57.883 -101.667 344.0 19730101 19770331 729220 99999 LA RONGE AIRPORT CA 55.1 -105.3 372.0 19730101 19770630 729230 99999 ENNADAI LAKE (MAPS) CA 61.133 -100.917 323.0 19730101 19770630 729240 99999 RESOLUTE AIRPORT CA 74.717 -94.98299999999999 67.0 19730101 19770701 729245 99999 REA POINT CA 75.35 -105.71700000000001 1.0 19730101 19770630 729250 99999 CAMBRIDGE BAY ARPT CA 69.1 -105.117 27.0 19730101 19770819 729260 99999 BAKER LAKE AIRPORT CA 64.3 -96.0 11.0 19730101 19770630 729270 99999 GLADMAN POINT ARPT CA 68.667 -97.8 23.0 19730101 19770817 729280 99999 ROCKY MTN HOUSE CA 52.383 -114.917 1001.0 19730101 19770630 729290 99999 BYRON BAY AIRPORT CA 68.75 -109.06700000000001 109.0 19730101 19770802 729300 99999 WHITECOURT AIRPORT CA 54.133 -115.667 740.0 19730101 19770630 729310 99999 LAC LA BICHE (MARS) CA 54.766999999999996 -112.01700000000001 568.0 19730101 19770630 729320 99999 FORT MCMURRAY ARPT CA 56.65 -111.21700000000001 369.0 19730101 19770630 729330 99999 FORT CHIPEWYAN ARPT CA 58.766999999999996 -111.117 232.0 19730101 19770630 729340 99999 FORT SMITH AIRPORT CA 60.016999999999996 -111.96700000000001 203.0 19730101 19770630 729350 99999 HAY RIVER AIRPORT CA 60.85 -115.76700000000001 166.0 19730101 19770727 729360 99999 YELLOWKNIFE AIRPORT CA 62.467 -114.45 205.0 19730101 19770630 729365 99999 MOUNT ARTHUR (AUT) CA WNG 62.4 -110.73299999999999 165.0 19730711 19730711 729370 99999 LADY FRANKLIN POINT CA 68.5 -113.21700000000001 21.0 19730608 19770811 729380 99999 COPPERMINE AIRPORT CA 67.833 -115.117 7.0 19730101 19770803 729385 99999 PORT RADIUM CA 66.083 -118.03299999999999 191.0 19730101 19760128 729390 26114 CAPE YOUNG AIRPORT CA 68.933 -116.917 18.0 19730620 19770630 729400 99999 GRANDE PRAIRE ARPT CA 55.183 -118.883 669.0 19730101 19770630 729410 99999 GERMANSEN LANDING CA 55.783 -124.7 746.0 19730101 19770818 729416 99999 US 19730918 19730918 729430 99999 FORT ST. JOHN ARPT CA 56.233000000000004 -120.73299999999999 695.0 19730101 19770630 729440 99999 MACKENZIE AIRPORT CA 55.3 -123.133 700.0 19730101 19770630 729450 99999 FORT NELSON AIRPORT CA 58.833 -122.583 382.0 19730101 19770630 729455 99999 LIARD RIVER CA 59.45 -126.15 427.0 19730109 19770630 729456 99999 MUNCHO LAKE CA 58.917 -125.76700000000001 840.0 19730616 19740329 729457 99999 FORT LIARD CA 60.233000000000004 -123.46700000000001 213.0 19730830 19770628 729460 99999 FORT SIMPSON ARPT CA 61.75 -121.23299999999999 177.0 19730101 19770630 729465 99999 WRIGLEY AIRPORT CA 63.2 -123.417 150.0 19730101 19770630 729466 99999 FT PROVIDENCE CA 61.333 -117.667 159.0 19731003 19731018 729480 27202 CAPE PARRY AIRPORT CA 70.167 -124.68299999999999 17.0 19730101 19770630 729490 99999 FARO (MARS) CA 62.233000000000004 -133.36700000000002 694.0 19750109 19770630 729500 99999 SMITHERS AIRPORT CA 54.817 -127.18299999999999 523.0 19730101 19770630 729510 99999 TERRACE AIRPORT CA 54.467 -128.583 217.0 19730101 19770630 729520 99999 BURNS LAKE & CA 54.233000000000004 -125.76700000000001 704.0 19730101 19770630 729530 99999 WATSON LAKE AIRPORT CA 60.117 -128.817 689.0 19730101 19770630 729550 99999 STEWART AIRPORT CA 55.933 -129.983 8.0 19750109 19770630 729560 99999 NICHOLSON PENINSUL& CA 69.9 -128.967 98.0 19730901 19770630 729570 99999 INUVIK AIRPORT CA 68.3 -133.483 68.0 19730101 19770630 729580 99999 DEASE LAKE CA 58.417 -130.0 815.0 19730101 19770630 729590 26394 TUKTOYAKTUK CA 69.45 -133.0 18.0 19730101 19770630 729595 99999 TUKTOYAKTUK & CA 69.433 -133.033 1.0 19730224 19770630 729640 99999 WHITEHORSE AIRPORT CA 60.717 -135.067 702.0 19730101 19770630 729650 99999 MAYO AIRPORT CA 63.617 -135.86700000000002 504.0 19730101 19770630 729660 99999 DAWSON AIRPORT CA 64.05 -139.13299999999998 369.0 19730101 19770630 729665 99999 OLD CROW AIRPORT CA 67.567 -139.833 253.0 19730106 19770630 729670 99999 BURWASH (AUTO8) CA 61.367 -139.05 786.0 19730101 19770630 729675 99999 BEAVER CREEK ARPT CA 62.383 -140.88299999999998 663.0 19730101 19770630 729676 99999 HAINES JUNCTION CA 60.766999999999996 -137.583 599.0 19740101 19770630 729680 99999 SHINGLE POINT ARPT CA 68.95 -137.217 53.0 19730809 19770630 729690 26463 KOMAKUK BEACH ARPT CA 69.583 -140.183 1.0 19730801 19770630 731010 99999 SYNOP82 REG1 KTS US 0.0 0.0 -999.0 20010823 20010823 732010 99999 SYNOP82 REG2 KTS US 0.0 0.0 -999.0 20010818 20010918 732020 99999 SYNOP82 REG2 MPS US 0.0 0.0 -999.0 20010815 20010927 734010 99999 SYNOP82 REG4 KTS US 0.0 0.0 -999.0 20010819 20010827 734020 99999 SYNOP82 REG4 KTS US 0.0 0.0 -999.0 20010823 20010826 735020 99999 SYNOP82 REG5 KTS US 0.0 0.0 -999.0 20010923 20021017 736010 99999 SYNOP82 REG6 KTS US 0.0 0.0 -999.0 20010818 20010917 736020 99999 SYNOP82 REG6 MPS US 0.0 0.0 -999.0 20010816 20010925 740001 54793 SUSSEX AIRPORT US NJ KFWN 41.199 -74.626 125.0 20060101 20200625 740001 99999 SUSSEX US NJ KFWN 41.2 -74.623 128.0 20040510 20051231 740002 03042 LA VETA PASS AWOS-3 ARPT US CO KVTP 37.5 -105.167 3114.1 20060101 20200625 740002 99999 LA VETA MOUNTAIN PAS US CO KVTP 37.5 -105.167 3114.0 20040510 20051231 740020 99999 ABERDEEN PROVING GROUNDS US MD 39.5 -76.167 5.0 19991031 19991031 740030 24103 MICHAEL AAF AIRPORT US UT KDPG 40.183 -112.93299999999999 1325.6 20060103 20200624 740030 99999 DUGWAY PROVING GROU US UT KDPG 40.167 -112.93299999999999 1325.0 19430614 20051230 740035 03145 YUMA MCAS US AZ KNYL 32.65 -114.617 64.9 20050101 20200625 740035 99999 YUMA MCAS US AZ KNYL 32.616 -114.6 65.0 20180101 20180516 740114 99999 PACIFIC BUOY US CA 39.2 -124.0 -999.0 19820311 19850426 740124 99999 PACIFIC BUOY US CA 38.2 -123.3 -999.0 19820107 19850426 740134 99999 ENVIRONM BUOY 46012 US 37.4 -122.7 0.0 19820107 19850426 740144 99999 PACIFIC BUOY US CA 34.9 -120.9 -999.0 19820107 19850426 740154 99999 PACIFIC BUOY US CA 40.8 -124.5 -999.0 19820625 19850426 740164 99999 PACIFIC BUOY US CA 37.8 -122.7 -999.0 19821019 19850426 740174 99999 PACIFIC BUOY US CA 35.8 -121.7 -999.0 19850118 19850123 740184 99999 PACIFIC BUOY US CA 40.4 -124.5 -999.0 19850118 19850426 740194 99999 PACIFIC BUOY US CA 41.8 -124.4 -999.0 19850629 19870701 740204 99999 ENVIRONM BUOY 46038 US 41.9 -122.4 3.0 19861016 19870518 740355 99999 KING POINT (MAPS) & CA 62.233000000000004 -133.36700000000002 694.0 19730101 19741231 740430 99999 NORMAN WELLS ARPT CA 65.283 -126.8 73.0 19430319 19770630 740435 99999 FORT GOOD HOPE ARPT CA 66.267 -128.63299999999998 53.0 19730101 19770630 740450 99999 TESLIN ARPT (AUT) CA 60.167 -132.75 705.0 19730101 19770630 740455 99999 TESLIN (MARS) CA 60.183 -132.75 701.0 19760723 19770217 740500 99999 PUNTZI MTN (MARS) CA 52.117 -124.083 911.0 19730101 19770630 740505 99999 PUNTZI MTN (MAN) CA 52.117 -124.083 0.0 19770608 19770630 740510 99999 SACHS HARBOUR(MAPS) CA 71.983 -125.28299999999999 83.0 19730101 19770630 740530 99999 CLINTON POINT CA 69.583 -120.75 98.0 19730101 19770711 740561 99999 DAWSON CREEK & CA 55.75 -120.18299999999999 655.0 19730101 19770630 740610 99999 PORT RADIUM CA 66.083 -117.93299999999999 438.0 19770101 19770626 740620 99999 BERNARD HARBOUR CA 65.483 -110.367 451.0 19730101 19770630 740630 99999 FORT RESOLUTION CA 61.183 -113.68299999999999 164.0 19430301 19770630 740660 99999 HIGH LEVEL AIRPORT CA 58.617 -117.167 338.0 19730101 19770630 740680 99999 PEACE RIVER AIRPORT CA 56.233000000000004 -117.43299999999999 571.0 19431222 19770630 740690 99999 SLAVE LAKE AIRPORT CA 55.3 -114.78299999999999 581.0 19730101 19770630 740700 99999 US 19730101 19760512 740710 99999 JENNY LIND ISL ARPT CA 68.65 -101.73299999999999 18.0 19731115 19770630 740720 99999 MOULD BAY AIRPORT CA 76.233 -119.333 18.0 19500101 19770630 740730 99999 FORT RELIANCE & CA 62.717 -109.167 160.0 19730101 19770630 740740 99999 ISACHSEN (MAPS) CA 78.783 -103.53299999999999 27.0 19500101 19770630 740750 99999 COLLINS BAY (AUTO8) CA 58.183 -103.68299999999999 490.0 19730104 19770630 740760 99999 URANIUM CITY(MARS)& CA 59.567 -108.48299999999999 318.0 19730104 19770630 740770 99999 BUFFALO NARROWS AUT CA 55.85 -108.46700000000001 421.0 19730101 19770630 740780 99999 LYNN LAKE AIRPORT CA 56.867 -101.06700000000001 357.0 19730101 19770630 740790 99999 THOMPSON AIRPORT CA 55.8 -97.867 222.0 19730101 19770630 740800 99999 MACKAR INLET CA 68.3 -85.68299999999999 399.0 19730101 19770802 740810 99999 HALL BEACH AIRPORT CA 68.783 -81.25 8.0 19730101 19770630 740820 99999 ALERT CA 82.5 -62.333 67.0 19510101 19770630 740900 99999 CYLDE AIRPORT & CA 70.45 -68.55 2.0 19450501 19770630 740910 99999 LONGSTAFF BLUFF CA 68.95 -75.3 159.0 19730101 19770630 740920 99999 DEWAR LAKES CA 68.65 -71.233 515.0 19730101 19770707 740930 99999 CAPE HOOPER & CA 68.433 -66.783 396.0 19730101 19770731 740940 99999 CAPE DYER AIRPORT CA 66.583 -61.617 393.0 19730101 19770809 740950 99999 POND INLET AIRPORT CA 72.667 -78.0 59.0 19750109 19770630 740960 99999 BROUGHTON ISLAND CA 67.55 -63.783 579.0 19730101 19770630 740970 99999 US 19730101 19751224 740980 99999 KILLINEK (MAPS) & CA 60.417 -64.85 38.0 19751003 19770630 741000 99999 TRIPLE ISLAND CA 54.3 -130.88299999999998 14.0 19730101 19770729 741010 99999 SANDSPIT AIRPORT CA 53.25 -131.817 6.0 19730101 19770630 741020 99999 ETHELDA BAY CA 53.05 -129.683 6.0 19730101 19770630 741030 99999 QUESNEL AIRPORT CA 53.033 -122.51700000000001 545.0 19730101 19770630 741040 99999 WILLIAMS LAKE ARPT CA 52.183 -122.06700000000001 940.0 19610101 19770630 741050 99999 PINE ISLAND (MAPS) CA 50.0 -127.417 9.0 19730101 19770630 741060 94234 TOFINO CA 49.083 -125.76700000000001 20.0 19730101 19770630 741070 25342 CAPE ST JAMES CA 51.933 -131.017 89.0 19730101 19770630 741080 99999 ABBOTSFORD AIRPORT CA 49.016999999999996 -122.367 58.0 19570101 19770630 741090 99999 PORT HARDY AIRPORT CA 50.683 -127.367 23.0 19730101 19770630 741100 99999 ALERT BAY CA 50.583 -126.93299999999999 50.0 19730101 19770630 741110 99999 CAPE SCOTT CA 50.783 -128.433 72.0 19730101 19770630 741130 99999 AGASSIZ (AUTO) CA 50.15 -122.95 668.0 19730101 19770630 741140 99999 HOPE AIRPORT (MAN) CA 49.367 -121.5 39.0 19730101 19770630 741145 99999 HOPE (AUTOB) CA 49.367 -121.48299999999999 38.0 19751204 19770630 741150 99999 VERNON (AUTO8) CA 50.233000000000004 -119.28299999999999 555.0 19730101 19770630 741200 99999 COLD LAKE (CAN-MIL) CA 54.417 -110.28299999999999 541.0 19570101 19770630 741210 99999 EDMONTON/NAMAO(MIL) CA 53.667 -113.46700000000001 688.0 19730101 19770630 741220 99999 BANFF CA 51.183 -115.56700000000001 1384.0 19730101 19770630 741230 99999 EDMONTON INTL ARPT CA 53.317 -113.583 723.0 19730101 19770630 741250 99999 MEADOW LAKE AIRPORT CA 54.117 -108.43299999999999 482.0 19730101 19770630 741260 99999 BROOKS CA 50.55 -111.9 755.0 19730101 19770816 741270 99999 PRIMROSE LAKE 2 CA 54.917 -109.96700000000001 625.0 19750401 19770630 741290 99999 KINDERSLEY ARPT & CA 51.467 -109.167 683.0 19730101 19770630 741300 99999 NIPAWIN AIRPORT CA 53.333 -104.0 374.0 19730921 19770630 741310 99999 EASTEND CYPRESS AUT CA 49.433 -108.98299999999999 1079.0 19770101 19770630 741350 99999 ROCKGLEN (MARS) CA 49.167 -105.96700000000001 915.0 19730101 19770630 741380 99999 YORKTON AIRPORT CA 51.266999999999996 -102.46700000000001 498.0 19730101 19770630 741400 99999 BRANDON AIRPORT CA 49.917 -99.95 409.0 19730101 19770630 741405 99999 BEAUSEJOUR CA 50.067 -96.51700000000001 274.0 19750401 19770630 741410 99999 NORWAY HOUSE ARPT CA 53.967 -97.833 224.0 19730314 19770630 741415 99999 IDA (AUTO) CA 51.667 -98.75 265.0 19750401 19770630 741430 99999 BACHELORS IL (AUT) CA 51.033 -95.667 256.0 19730101 19770630 741450 99999 ISLAND LAKE AIRPORT CA 53.867 -94.667 238.0 19730101 19770630 741480 99999 PILOT MOUND (MARS) CA 49.2 -98.883 474.0 19730101 19770630 741820 99999 CHURCHILL FALLS CA 53.55 -64.1 440.0 19730101 19770630 741830 99999 US 19761023 19770124 741850 99999 DANIELS HARBOUR CA YDH 50.233000000000004 -57.583 24.0 19730101 19770630 741870 99999 BAIE COMEAU AIRPORT CA 49.133 -68.2 53.0 19730101 19770630 741890 99999 PUINTE CLAVEAU CA 49.016999999999996 -64.4 39.0 19730101 19770814 741895 99999 GASPE AIRPORT & CA 48.766999999999996 -64.483 33.0 19730101 19770630 741930 99999 COMFORT COVE CA 49.266999999999996 -54.883 96.0 19730101 19770630 741940 99999 BUGEO CA 47.617 -57.617 11.0 19730101 19770630 741950 99999 SAINT ALBANS CA 47.867 -55.85 1.0 19730101 19770630 741960 99999 BONAVISTA CA 48.7 -53.083 21.0 19730101 19770630 741970 99999 PORT-AUX-BASQUES CA 47.567 -59.167 7.0 19730101 19770630 742000 99999 VICTORIA (AUTO8) CA 48.417 -123.31700000000001 67.0 19730101 19770630 742004 99999 BURROWS ISLAND US WA 48.08 -122.1 18.0 19790507 19870609 742005 99999 PATOS ISLAND (CGS) US WA 48.733000000000004 -122.96700000000001 1.0 19760209 19810711 742006 99999 BURLINGTON / MT VERN US WA 48.47 -122.42 43.0 19850618 20000104 742010 24228 PORT ANGELES WB AP US WA KNOW 48.138999999999996 -123.40299999999999 19730101 19901128 742010 99999 PORT ANGELES CGAS US WA KNOW 48.141000000000005 -123.414 4.0 20060619 20200624 742015 99999 SMITH ISLAND COAST GUARD LIGHT S US 48.32 -122.85 1.0 19750911 19860320 742016 99999 FRIDAY HARBOR US WA S19 48.5 -123.0 37.0 19760130 19880812 742060 24207 MCCHORD AFB AIRPORT US WA KTCM 47.15 -122.48299999999999 98.2 19400722 20200625 742060 99999 MC CHORD FIELD US WA KTCM 47.133 -122.48299999999999 98.0 20000101 20041231 742065 99999 POINT NO POINT COAST GUARD STATI US 47.92 -122.53 1.0 19750911 19950326 742066 99999 MULKITEO (CGS) US WA 47.95 -122.3 1.0 19781102 19781102 742070 24201 GRAY AAF US WA KGRF 47.083 -122.583 92.0 19390401 20101231 742070 99999 FORT LEWIS/GRAY AAF US WA 47.133 -122.6 87.0 20000101 20040908 742071 24201 GRAY AFF AIRPORT US WA KGRF 47.083 -122.583 91.4 20110101 20200625 742071 99999 GRAY AAF US WA 47.083 -122.583 92.0 20040713 20101231 742075 99999 POINT ROBINSON COAST GUARD LIGHT US WA 47.38 -122.37 0.0 19750911 19950326 742076 99999 WEST POINT COAST GUARD LIGHT STA US 47.67 -122.43 4.0 19750911 19860320 742077 03763 ROCKINGHAM COUNTY NC SHILOH AIRPORT US NC KSIF 36.437 -79.851 211.2 20061024 20200626 742078 64773 PLYMOUTH MUNICIPAL AIRPORT US NH K1P1 43.778999999999996 -71.75399999999999 153.9 20061012 20200626 742079 63876 MASON COUNTY AIRPORT US WV K3I2 38.915 -82.09899999999999 196.0 20061012 20200625 742300 24037 FRANK WILEY FIELD AIRPORT US MT KMLS 46.427 -105.883 799.8 19830531 20200625 742513 53937 EAKER FIELD AIRPORT US OK KDUA 33.942 -96.39399999999999 212.8 20060101 20200625 742513 99999 EAKER FLD US OK KDUA 33.942 -96.395 213.0 20020430 20051231 743312 53925 J.L. HELMS SEVIER CO ARPT US AR KDEQ 34.05 -94.40100000000001 108.2 20040101 20200625 743312 99999 J L HELMS SEVIER CO US AR KDEQ 34.047 -94.399 108.0 20020430 20031231 743680 99999 US 19730101 19750514 743681 99999 WATERLOO-WELLINGTON CA 43.45 -80.383 314.0 19750515 19770630 743700 14715 WHEELER-SACK AAF AIRPORT US NY KGTB 44.05 -75.733 209.7 20060101 20200625 743700 99999 FORT DRUM/WHEELER-S US NY KGTB 44.05 -75.733 207.0 19420101 20051231 743895 99999 US 19761023 19761231 743905 99999 AMHERST MET ST CA WAH 45.833 -64.2 0.0 19761023 19770217 743920 14611 NAVAL AIR STATION US ME KNHZ 43.9 -69.933 21.3 19520101 20100208 743925 99999 THE CUCKOLDS (CGS) US ME 43.783 -69.65 1.0 19760609 19840317 743926 99999 MONHEGAN / MANANA ISLAND US ME 43.77 -69.33 1.0 19750911 19881004 743927 99999 SEGUIN ISLAND COAST GUARD LIGHT US 43.67 -69.77 1.0 19750911 19851030 743941 99999 GRENIER AFB US NH 42.933 -71.433 71.0 19410922 19680624 743945 14710 MANCHESTER AIRPORT US NH KMHT 42.93 -71.436 67.4 19730101 20200625 743945 99999 MANCHESTER US NH KMHT 42.933 -71.433 81.0 20000101 20031231 743946 54754 BOIRE FIELD AIRPORT US NH KASH 42.783 -71.517 61.0 20060101 20200625 743946 99999 BOIRE FLD US NH KASH 42.783 -71.517 61.0 19830427 20051231 743950 99999 US 19730101 19750514 743951 99999 HALIFAX INTL & CA 44.883 -63.516999999999996 145.0 19750515 19770630 743970 99999 GREENWOOD (CAN-MIL) CA 44.983000000000004 -64.917 28.0 19540101 19770630 743980 99999 TRURO (MARS) & CA WTQ 45.367 -63.266999999999996 39.0 19730101 19770630 743985 99999 TRURO (MARS) & CA 45.367 -63.266999999999996 39.0 19770608 19770629 744104 14763 PITTSFIELD MUNICIPAL AP US MA KPSF 42.427 -73.289 363.9 20060101 20200625 744104 99999 PITTSFIELD MUNI US MA KPSF 42.433 -73.3 364.0 20010811 20051231 744130 99999 SAYLOR CREEK GUNNERY RANGE ID. US 42.533 -115.7 1108.0 19700302 19700826 744200 99999 ROOSEVELT UT US 40.3 -109.98299999999999 1556.0 19850423 19970303 744214 94852 MARION MUNICIPAL AP US IN KMZZ 40.483000000000004 -85.68299999999999 263.0 20100114 20200625 744214 99999 MARION MUNI US IN KMZZ 40.49 -85.68 261.8 19810805 20180516 744450 99999 NELIGH NE. US NE 42.2 -97.8 524.0 20050215 20051128 744550 94982 DAVENPORT MUNICIPAL AIRPT US IA KDVN 41.614 -90.59100000000001 228.6 19960702 20200625 744600 99999 MARSEILLES IL US 41.367 -88.68299999999999 225.0 19780310 20071128 744650 99999 DUNNE CRIB IL. US 41.783 -87.53299999999999 -999.9 19430927 19760130 744652 53897 HARRISBURG-RALEIGH AIRPORT US IL KHSB 37.811 -88.54899999999999 120.7 20060101 20200625 744652 99999 HARRISBURG RALEIGH US IL KHSB 37.817 -88.55 121.0 20020603 20051231 744653 63814 SPARTA COMMUNITY-HUNTER FIELD AIRPORT US IL KSAR 38.149 -89.699 164.0 20060101 20200625 744653 99999 SPARTA COMMUNITY HUN US IL KSAR 38.15 -89.7 164.0 20020603 20051231 744655 04808 AURORA MUNICIPAL AIRPORT US IL KARR 41.77 -88.48100000000001 216.4 20060101 20200625 744655 99999 AURORA MUNICIPAL US IL KARR 41.766999999999996 -88.46700000000001 217.0 19831103 20051231 744656 53891 FAIRFIELD MUNICIPAL ARPT US IL KFWC 38.379 -88.413 132.9 20060101 20200625 744656 99999 FAIRFIELD MUNI US IL KFWC 38.383 -88.417 133.0 20020603 20051231 744657 53887 CENTRALIA MUNICIPAL ARPT US IL KENL 38.515 -89.09200000000001 162.8 20060101 20200625 744657 99999 CENTRALIA MUNI US IL KENL 38.515 -89.09100000000001 163.0 20020603 20051231 744658 53889 FLORA MUNICIPAL AIRPORT US IL KFOA 38.665 -88.45299999999999 143.9 20060101 20200625 744658 99999 FLORA US IL KFOA 38.667 -88.45 144.0 20020603 20051231 744659 53822 OLNEY-NOBLE AIRPORT US IL KOLY 38.722 -88.176 146.9 20060101 20200625 744659 99999 OLNEY NOBLE US IL KOLY 38.717 -88.18299999999999 147.0 20020603 20051231 744660 00388 JASPER COUNTY AIRPORT US IN KRZL 40.817 -87.05 212.1 20110516 20200625 744660 99999 WOLCOTT IN. US IN KRZL 40.817 -87.05 212.0 20180102 20180103 744661 99999 EFFINGHAM CO MEM US IL 39.07 -88.53399999999999 178.9 20020603 20130430 744662 63817 TAYLORVILLE MINICIPAL ARPT US IL KTAZ 39.534 -89.32799999999999 189.6 20060101 20200625 744662 99999 TAYLORVILLE MUNI US IL KTAZ 39.533 -89.333 190.0 20020603 20051231 744663 53950 PITTSFIELD-PENSTON MUNI AP US IL KPPQ 39.639 -90.77799999999999 216.4 20060101 20200625 744663 99999 PITTSFIELD PENSTONE US IL KPPQ 39.633 -90.78299999999999 216.0 20020603 20051231 744665 04838 PALWAUKEE MUNICIPAL ARPT US IL KPWK 42.121 -87.905 193.9 20060101 20200625 744665 99999 PALWAUKEE MUNI US IL KPWK 42.117 -87.9 197.0 19950708 20051231 744666 53944 JACKSONVILLE MUNICIPAL AIRPORT US IL KIJX 39.78 -90.238 190.2 20060101 20200625 744666 99999 JACKSONVILLE MUNI US IL KIJX 39.766999999999996 -90.23299999999999 190.0 20020603 20051231 744667 99999 RAY S MILLER AAF / CAMP RIPLEY MINNESOTA USA US MN KRYM 46.091 -94.361 350.5 20120713 20200624 744672 04862 LOGAN COUNTY AIRPORT US IL KAAA 40.158 -89.335 182.0 20060101 20200625 744672 99999 LOGAN CO US IL KAAA 40.167 -89.333 182.0 20020603 20051231 744680 99999 JEFFERSON PROVING GROUND MADISON US IN 38.833 -85.417 265.0 19920221 19950531 744714 99999 SMITHVILLE/WOOSTER US OH KSLW 40.883 -81.833 357.0 19850522 19940630 744830 99999 WILMINGTON VT. US 42.883 -72.883 482.0 19730101 19840529 744840 99999 WEST DOVER VT. US 42.933 -72.867 595.0 19730102 19770114 744859 99999 FREEPORT US NY 40.65 -73.583 9.0 19850522 19850531 744860 94789 JOHN F KENNEDY INTERNATIONAL AIRPORT US NY KJFK 40.639 -73.764 3.4 19730101 20200625 744864 54787 REPUBLIC AIRPORT US NY KFRG 40.734 -73.417 24.7 20060101 20200625 744864 99999 REPUBLIC US NY KFRG 40.717 -73.4 25.0 19430412 20051231 744865 14719 FRANCIS S GABRESKI AP US NY KFOK 40.844 -72.632 20.4 19430718 20200625 744865 99999 WESTHAMPTON BEACH US NY KFOK 40.85 -72.617 20.0 20000101 20031231 744900 14702 BEDFORD HANSCOM FIELD US MA KBED 42.47 -71.289 40.5 19430205 19921231 744900 99999 BEDFORD/HANSCOM AFB US MA 42.467 -71.283 41.0 19930101 19990204 744904 94723 LAWRENCE MUNICIPAL AIRPORT US MA KLWM 42.717 -71.124 45.4 20060101 20200625 744904 99999 LAWRENCE MUNI US MA KLWM 42.717 -71.117 45.0 19790122 20051231 744905 04779 FORT DEVENS/AYER US MA KAYE 42.567 -71.6 82.0 19601021 19930201 744907 14753 EAST MILTON US MA KMQE 42.211999999999996 -71.11399999999999 193.5 20000101 20200624 744910 14703 WESTOVER AFB/METROPOLITAN AIRPORT US MA KCEF 42.2 -72.533 73.5 19410401 20200625 744910 99999 CHICOPEE FALLS/WEST US MA KCEF 42.2 -72.533 75.0 20000101 20041231 744915 14775 BARNES MUNICIPAL AIRPORT US MA KBAF 42.158 -72.71600000000001 82.6 19730105 20200625 744915 99999 BARNES MUNI US MA KBAF 42.15 -72.717 83.0 20000101 20031231 744916 99999 PITTSFIELD MUNI US MA PSF 42.433 -73.3 364.0 19730122 19900118 744925 99999 CROWS LANDING CALIFORNIA NAAS US CA NRC 37.4 -121.1 50.0 19450301 19460601 744940 99999 CHATHAM US MA KCHH 41.667 -69.967 15.5 19730101 19950321 744975 99999 SHORT BEACH COAST GUARD STATION US NY 40.58 -73.55 1.0 19750915 19881024 744976 99999 NTPD AIR OPS HELIPORT US NY 40.6 -73.9 4.9 19750915 19960510 744989 14747 CHAUTAUQUA CO/DUNKIRK ARPT US NY KDKK 42.493 -79.27199999999999 203.0 19970102 20200625 744989 99999 CHAUTAUQUA CO DUNKIR US NY KDKK 42.493 -79.27199999999999 211.0 20000101 20031231 744994 04741 SCHENECTADY COUNTY AIRPORT US NY KSCH 42.85 -73.95 115.2 19810421 20200625 744994 99999 SCHENECTADY CO US NY KSCH 42.85 -73.917 115.0 20000101 20031231 745000 99999 SHERIDAN CA US 39.0 -121.333 60.0 20020226 20020226 745039 99999 GOLDEN GATE BRIDGE US CA KGGB 37.817 -122.46700000000001 81.0 19850522 19960701 745040 99999 PILAR POINT AFS CA. US 37.5 -122.5 49.0 19990704 19991029 745045 99999 POINT BONITA COAST GUARD LIGHT S US 37.8 -122.52 1.0 19750916 19960701 745046 93242 MADERA MUNICIPAL AIRPORT US CA KMAE 36.988 -120.111 77.1 20060101 20200625 745046 99999 MADERA MUNI US CA KMAE 36.986999999999995 -120.113 77.0 19990114 20051231 745048 93210 OROVILLE MUNICIPAL AIRPORT US CA KOVE 39.49 -121.618 57.9 20060101 20200625 745048 99999 OROVILLE MUNI US CA KOVE 39.483000000000004 -121.617 59.0 19990114 20051231 745054 99999 POINT SUR US CA 36.3 -121.883 34.0 19800227 20020802 745055 99999 POINT PINOS COAST GUARD LIGHT ST US 36.63 -121.93 6.0 19750916 19960701 745056 53120 RAMONA AIRPORT US CA KRNM 33.038000000000004 -116.916 424.6 20060101 20200625 745056 99999 RAMONA US CA KRNM 33.039 -116.915 425.0 19990114 20051231 745057 53130 WHITMAN AIRPORT US CA KWHP 34.259 -118.413 305.7 20060101 20200625 745057 99999 WHITEMAN US CA KWHP 34.266999999999996 -118.417 306.0 19990114 20051231 745058 23277 WATSONVILLE MUNICIPAL ARPT US CA KWVI 36.936 -121.789 48.8 20060101 20200625 745058 99999 WATSONVILLE MUNI US CA KWVI 36.933 -121.78299999999999 50.0 19990114 20051231 745060 23239 ALAMEDA(USN) US CA KNGZ 37.733000000000004 -122.31700000000001 4.0 19730101 19970102 745065 99999 POINT BLUNT COAST GUARD LIGHT ST US 37.85 -122.42 73.0 19750916 19960701 745090 23244 MOFFETT FEDERAL AIRFIELD US CA KNUQ 37.406 -122.04799999999999 11.9 19730101 20200625 745090 99999 MOUNTAIN VIEW /SUNN US CA KNUQ 37.417 -122.05 12.0 20000323 20031226 745095 99999 SANTA CRUZ HARBOR US CA 36.97 -122.0 1.0 19760130 19960701 745096 99999 PIGEON POINT COAST GUARD LIGHT S US 37.18 -122.4 1.0 19430609 19960701 745097 99999 SAN FRANCISCO PBS US CA 37.75 -122.7 5.0 19760130 19960701 745160 23202 TRAVIS AIR FORCE BASE US CA KSUU 38.266999999999996 -121.93299999999999 18.9 19430811 20200625 745160 99999 FAIRFIELD/TRAVIS AF US CA KSUU 38.266999999999996 -121.95 22.0 20000101 20041231 745165 99999 RIO VISTA COAST GUARD LIGHT STAT US 38.15 -121.7 1.0 19750916 19960701 745200 23176 MILFORD MUNICIPAL AP US UT KMLF 38.417 -113.01700000000001 1534.1 19830501 19850531 745201 23176 MILFORD MUNICIPAL AP US UT KMLF 38.417 -113.01700000000001 1534.1 19850601 19890501 745310 93065 USAF ACADEMY AIRSTRIP AIRPORT US CO KAFF 38.967 -104.81700000000001 2003.2 19671127 20200625 745310 99999 AIR FORCE ACADEMY US CO KAFF 38.967 -104.81700000000001 1999.0 20000103 20041230 745430 93978 PRATT INDUSTRIAL AIRPORT US KS KPTT 37.702 -98.74700000000001 595.0 20060101 20200625 745430 99999 PRATT MUNICIPAL US KS KPTT 37.7 -98.75 595.0 19430801 20051231 745431 03998 TRI-CITY AIRPORT US KS KPPF 37.328 -95.50399999999999 264.9 20060101 20200625 745431 99999 TRI CITY US KS KPPF 37.333 -95.5 274.0 19961020 20051231 745700 13840 WRIGHT-PATTERSON AFB AIRPORT US OH KFFO 39.833 -84.05 250.9 19360501 20200625 745700 99999 DAYTON/WRIGHT-PATTE US OH KFFO 39.833 -84.05 251.0 20000101 20041231 745900 99999 BARNEGAT COAST GUARD STATION US NJ 39.77 -74.1 6.0 19760105 19820501 745940 13705 ANDREWS AIR FORCE BASE AIRPORT US MD KADW 38.817 -76.867 86.0 19430619 20200625 745940 99999 ANDREWS AFB/CAMP SP US MD KADW 38.817 -76.85 88.0 20000101 20041231 745944 93784 BALTIMORE DOWNTOWN US MD KDMH 39.281 -76.611 6.1 19990102 20200625 745945 99999 ANNAPOLIS COAST GUARD STATION US MD 38.92 -76.47 8.0 19750916 19830215 745946 93786 OCEAN CITY MUNICIPAL ARTP US MD KOXB 38.308 -75.124 3.7 20060101 20200625 745946 99999 OCEAN CITY MUNI US MD KOXB 38.317 -75.117 3.0 19991208 20051231 745950 99999 OCEAN CITY US MD 38.33 -75.08 4.0 19730101 19960629 745960 99999 FIVE FATHOM (LS) US NJ 38.783 -74.583 5.0 19780614 19780614 745965 13756 CAPE MAY (CGS) US NJ KN91 38.95 -74.883 2.0 19750915 19960127 745966 03726 CAPE MAY COUNTY AIRPORT US NJ KWWD 39.008 -74.908 7.0 20060101 20200625 745966 99999 CAPE MAY CO US NJ KWWD 39.0 -74.9 7.0 19920621 20051231 745980 13702 LANGLEY AFB AIRPORT US VA KLFI 37.083 -76.36 3.1 19361001 20200625 745980 99999 LANGLEY AFB/HAMPTON US VA KLFI 37.083 -76.35 6.0 20000101 20041231 745985 63806 BLUE RIDGE AIRPORT US VA KMTV 36.631 -80.018 286.8 20060101 20200625 745985 99999 BLUE RIDGE US VA KMTV 36.633 -80.017 287.0 19950708 20051231 746060 99999 SOUTH VANDENBERG AFB US CA 34.65 -120.56700000000001 112.0 19990822 19990822 746061 99999 VANDENBERG BOAT HOU US CA 34.55 -120.617 26.0 19660808 19690305 746110 03182 BICYCLE LAKE FORT IRWIN AAF US CA KBYS 35.283 -116.633 75.6 20050814 20200625 746110 99999 BICYCLE LAKE AAF US CA KBYS 35.281 -116.63 716.3 19840109 20180520 746120 93104 CHINA LAKE US CA KNID 35.688 -117.693 679.7 19730101 20200625 746140 23112 NELLIS AFB AIRPORT US NV KLSV 36.25 -115.03299999999999 570.0 20050101 20200625 746140 99999 INDIAN SPRINGS GUNNERY RANGE US NV 36.533 -115.9 951.9 20000613 20180522 746141 23141 INDIAN SPRING AUX AIRFIELD US NV KINS 36.583 -115.68299999999999 954.9 20050103 20200625 746141 99999 INDIAN SPRINGS AF A US NV 36.583 -115.667 955.0 20040713 20180529 746180 03147 CUDDLEBACK GUNNERY US CA K4CB 35.266999999999996 -117.43299999999999 864.0 19770118 19820910 746180 99999 CUDDLEBACK GUNNERY RANGE CA. US 35.266999999999996 -117.43299999999999 864.0 20020603 20020603 746190 99999 SUPERIOR VALLEY GUNNERY RANGE US CA 36.33 -117.1 962.0 19820806 19920617 746300 99999 STALLION AAF NM US NM 33.817 -106.667 1506.0 19610301 19780728 746375 99999 CLINES CORNER US NM 34.933 -105.583 2109.0 19850207 19981013 746380 93064 MELROSE GUNNERY RAN US NM K4MR 34.3 -103.8 1326.0 19630701 19730629 746380 99999 MELROSE GUNNERY RANGE US NM K4MR 34.295 -103.786 1326.0 20101213 20200624 746410 13975 GAGE AIRPORT US OK KGAG 36.297 -99.76899999999999 667.8 20100709 20200625 746410 99999 GAGE US OK KGAG 36.283 -99.76700000000001 669.0 19431201 20100708 746710 13806 CAMPBELL AAF AIRPORT US KY KHOP 36.667 -87.48299999999999 174.7 19430715 20200625 746710 99999 FORT CAMPBELL (AAF) US KY KHOP 36.667 -87.5 174.0 20000101 20041231 746715 03816 PADUCAH BARKLEY FIELD US KY KPAH 37.056 -88.774 125.9 19730101 19881231 746716 93808 BOW GRN-WARREN CO. RGNL AP US KY KBWG 36.965 -86.42399999999999 160.9 19730101 20200625 746720 99999 SABRE AHP US TN KEOD 36.568000000000005 -87.48100000000001 181.1 20010815 20200624 746925 03741 WARREN FIELD AIRPORT US NC KOCW 35.57 -77.05 11.6 20060101 20200625 746925 99999 WARREN FLD US NC KOCW 35.567 -77.05 12.0 20010811 20051231 746929 03702 DUPLIN COUNTY AIRPORT US NC KDPL 35.0 -77.982 41.8 20060101 20200625 746929 99999 DUPLIN CO US NC KDPL 35.0 -77.982 42.0 20010811 20051231 746930 93737 SIMMONS AAF AIRPORT US NC KFBG 35.133 -78.933 74.4 19610701 20200625 746930 99999 FORT BRAGG/SIMMONS US NC KFBG 35.133 -78.933 74.0 20000103 20041231 746934 99999 ASHEBORO ASHEBORO MUNICIPAL AIR US 35.65 -79.9 205.0 19990114 19990715 746935 03709 ASHEBORO MUNICIPAL AIRPORT US NC KHBI 35.654 -79.895 205.1 20060101 20200625 746935 99999 ASHEBORO RGNL US NC KHBI 35.65 -79.9 205.0 20010811 20051231 746936 03712 HARNETT COUNTY AIRPORT US NC KHRJ 35.379 -78.734 60.4 20060101 20200625 746936 99999 HARTNETT COUNTY US NC KHRJ 35.383 -78.733 61.0 20010811 20051231 746939 93785 HORACE WILLIAMS AIRPORT US NC KIGX 35.933 -79.064 156.1 20060101 20180515 746939 99999 HORACE WILLIAMS US NC KIGX 35.933 -79.067 156.0 20010811 20051231 746940 03708 GOLDSBORO-WAYNE MUNI ARPT US NC KGWW 35.46 -77.965 40.8 20060101 20200625 746940 99999 GOLDSBORO WAYNE MUNI US NC KGWW 35.467 -77.967 41.0 20020829 20051231 746941 00389 MONROE COUNTY AIRPORT US MS KM40 33.873000000000005 -88.49 69.2 20120110 20200626 746941 13786 MONROE CO US MS KECG 36.260999999999996 -76.175 4.0 19490101 19900219 746941 99999 MONROE CO US MS KM40 33.874 -88.49 68.9 20180109 20180524 746943 13786 ELIZABETH CITY CGAS US NC KECG 36.260999999999996 -76.175 4.0 19900314 20100801 746943 99999 ELIZABETH CITY CGAS US NC 36.25 -76.167 4.0 19981223 19981231 746950 99999 DARE COUNTY GUNNERY RANGE NC. US 35.667 -75.9 3.0 19660502 20130430 746960 99999 DIAMOND SHOALS COAST GUARD STATI US 35.15 -75.3 1.0 19750916 19840929 746990 99999 FRYING PAN SHOALS NC. US 33.483000000000004 -77.583 0.0 19750916 19830309 747020 23110 NAVAL AIR STATION US CA KNLC 36.333 -119.95 70.7 19610701 20200625 747040 03102 ONTARIO INTERNATIONAL ARPT US CA KONT 34.056 -117.6 289.3 20050101 20200625 747040 99999 ONTARIO INTL ARPT US CA KONT 34.05 -117.56700000000001 287.0 19770705 20041231 747041 99999 EL MONTE EMSU US CA 34.083 -118.03299999999999 91.1 19850531 19900219 747043 03165 EL MONTE AIRPORT US CA KEMT 34.083 -118.03299999999999 90.2 20060101 20200625 747043 99999 EL MONTE US CA KEMT 34.086 -118.035 90.0 19900314 20051231 747185 03144 IMPERIAL COUNTY AIRPORT US CA KIPL 32.834 -115.579 -17.7 20060101 20200625 747185 99999 IMPERIAL CO US CA KIPL 32.834 -115.579 -16.0 19730101 20051231 747186 03164 CAMPO US CA KCZZ 32.626 -116.46799999999999 805.0 20060101 20200625 747186 99999 CAMPO US CA KCZZ 32.633 -116.46700000000001 807.0 19730101 20051231 747187 03104 DESERT RESORTS RGNL ARPT US CA KTRM 33.626999999999995 -116.15899999999999 -36.0 19430712 20200625 747188 23158 BLYTHE AIRPORT US CA KBLH 33.619 -114.714 120.4 19420613 20200625 747240 03148 GILA BEND AF AUX AIRPORT US AZ KGBN 32.883 -112.71700000000001 257.9 20050224 20191204 747240 23168 GILA BEND AF AUX US AZ KGXF 32.883 -112.71700000000001 269.0 19481101 19991231 747240 99999 GILA BEND AF AUX US AZ KGXF 32.883 -112.71700000000001 269.0 20000103 20041230 747255 99999 PAYSON US AZ 34.266999999999996 -111.35 1571.0 19950708 19960701 747300 99999 SANDERSON TX. US 30.166999999999998 -102.417 865.0 19780510 19991004 747320 23002 HOLLOMAN AFB AIRPORT US NM KHMN 32.85 -106.1 1267.4 20060103 20200625 747320 99999 HOLLOMAN AFB US NM KHMN 32.85 -106.1 1248.0 19420901 20051229 747330 99999 NORTHRUP LANDING STRIP US NM 33.9 -106.4 1193.0 19820318 19940818 747335 03059 SONORA MUNICIPAL AIRPORT US TX KSOA 30.586 -100.649 652.3 20060101 20200625 747335 99999 SONORA MUNI US TX KSOA 30.583000000000002 -100.65 652.0 20040824 20051231 747340 99999 WHITE SANDS MISSILE RANGE SITE NO.39 US 32.633 -106.4 1204.0 19470801 19861231 747350 99999 JAYTON TX. US TX 33.016999999999996 -100.98299999999999 707.0 20070126 20070126 747355 53997 COMANCHE COUNTY-CITY AIRPORT US TX KMKN 31.916999999999998 -98.6 423.1 20060101 20200625 747355 99999 COMANCHE CO CITY US TX KMKN 31.916999999999998 -98.6 423.0 20041123 20051231 747360 93042 MUNICIPAL AIRPORT US TX KDHT 36.016999999999996 -102.55 1216.2 20050101 20200625 747390 13961 FT WORTH MEACHAM INTL ARPT US TX KFTW 32.819 -97.361 209.4 20050101 20200625 747400 13973 KIMBLE COUNTY AIRPORT US TX KJCT 30.511 -99.766 533.1 19770827 20200625 747460 03904 EASTERWOOD FIELD AIRPORT US TX KCLL 30.589000000000002 -96.365 93.0 20050101 20200625 747540 13934 ALEXANDRIA INT US LA KAEX 31.316999999999997 -92.55 27.0 19430901 19991231 747540 93915 ALEXANDRIA INTL AIRPORT US LA KAEX 31.335 -92.559 25.6 20060101 20200626 747540 99999 ALEXANDRIA INT US LA KAEX 31.316999999999997 -92.55 27.0 20000101 20051231 747550 99999 CLAIBORNE RANGE LA. (AFS) US LA 31.133000000000003 -92.56700000000001 67.0 19630701 19910315 747560 12816 GAINESVILLE REGIONAL AIRPORT US FL KGNV 29.691999999999997 -82.27600000000001 37.5 20050101 20200625 747570 93874 GULFPORT-BILOXI INTL ARPT US MS KGPT 30.412 -89.081 12.8 20050101 20200625 747580 13978 GREENWOOD-LEFLORE AIRPORT US MS KGWO 33.496 -90.087 40.5 20050101 20200626 747590 13833 BOBBY L CHAIN MUNI AIRPORT US MS KHBG 31.281999999999996 -89.25299999999999 46.0 20050101 20200625 747680 13939 MID DELTA REGIONAL AIRPORT US MS KGLH 33.483000000000004 -90.985 39.0 20050101 20200625 747681 99999 STENNIS SPACE CENTER MS US MS 30.372 -89.61 21.3 20180515 20200604 747685 93874 GULFPORT BILOXI INT US MS KGPT 30.412 -89.081 8.5 20050101 20100731 747685 99999 GULFPORT BILOXI INT US MS 30.4 -89.06700000000001 9.0 19730101 20041231 747686 13820 KEESLER AIR FORCE BASE US MS KBIX 30.416999999999998 -88.917 10.1 19420509 20200625 747686 99999 KEESLER AFB US MS KBIX 30.416999999999998 -88.917 10.0 20000103 20041231 747688 53858 TRENT LOTT INTL AIRPORT US MS KPQL 30.464000000000002 -88.53200000000001 5.5 20040101 20200625 747688 99999 TRENT LOTT INTL US MS KPQL 30.467 -88.53299999999999 5.0 19680903 20031231 747750 13846 TYNDALL AFB AIRPORT US FL KPAM 30.066999999999997 -85.583 5.2 19420319 20200625 747750 99999 TYNDALL AFB US FL KPAM 30.066999999999997 -85.583 5.0 20000101 20041230 747756 99999 CAPE SAN BLAS COAST GUARD STATIO US 29.68 -85.37 2.0 19780619 19810811 747760 03818 MARIANNA MUNICIPAL AIRPORT US FL KMAI 30.836 -85.184 34.4 19970602 20200625 747760 99999 MARIANNA MUNI US FL KMAI 30.938000000000002 -85.182 34.0 20010811 20041231 747761 99999 TRI CO US FL 30.846 -85.601 25.9 20110713 20200624 747770 03852 HURLBURT FIELD AIRPORT US FL KHRT 30.416999999999998 -86.68299999999999 11.6 19550705 20200625 747770 99999 HURLBURT FIELD (AF) US FL KHRT 30.416999999999998 -86.68299999999999 11.0 20000101 20041231 747780 99999 EGLIN AFB RANGE NO.52 US FL 30.566999999999997 -86.31700000000001 48.0 19820723 20191128 747804 13824 HUNTER ARMY AIRFIELD US GA KSVN 32.016999999999996 -81.133 12.5 20060101 20200625 747804 99999 HUNTER AAF US GA KSVN 32.009 -81.146 13.0 19440301 20051231 747805 63818 STATESBORO-BULLOCK CO ARPT US GA KTBR 32.483000000000004 -81.737 57.0 20060101 20200625 747805 99999 STATESBORO BULLOCH US GA KTBR 32.482 -81.733 57.0 20020423 20051231 747806 63809 THOMASTON-UPSON CO AIRPORT US GA KOPN 32.955 -84.264 242.6 20060101 20200626 747806 99999 THOMASTON UPSON CO US GA KOPN 32.95 -84.26700000000001 243.0 20020423 20051231 747807 03821 LAGRANGE-CALLAWAY AIRPORT US GA KLGC 33.016999999999996 -85.06700000000001 207.9 20060101 20200626 747807 99999 LAGRANGE CALLAWAY US GA KLGC 33.016999999999996 -85.06700000000001 211.0 20020423 20051231 747808 63803 GWINNETT CO-BRISCOE FD APT US GA KLZU 33.98 -83.963 323.4 20060101 20200626 747808 99999 GWINNETT COUNTY ARPT US GA KLZU 33.978 -83.962 323.0 20020430 20051231 747809 03832 WINDER-BORROW AIRPORT US GA KWDR 33.983000000000004 -83.66799999999999 287.4 20060101 20200626 747809 99999 WINDER BARROW US GA KWDR 33.983000000000004 -83.667 287.0 20020430 20051231 747810 13857 MOODY AFB AIRPORT US GA KVAD 30.967 -83.2 71.0 20060103 20200625 747810 99999 MOODY AFB/VALDOSTA US GA KVAD 30.967 -83.2 71.0 19420401 20051230 747812 63813 COBB CO-MC COLLUM FLD ARPT US GA KRYY 34.013000000000005 -84.59899999999999 317.0 20060101 20200626 747812 99999 COBB CO MCCOLLUM FLD US GA KRYY 34.013000000000005 -84.59899999999999 317.0 20020430 20051231 747820 53860 CRAIG MUNICIPAL AIRPORT US FL KCRG 30.336 -81.515 12.5 20050101 20200625 747830 12849 FT LAUD/HOLLYWOOD INTL APT US FL KFLL 26.079 -80.16199999999999 3.4 20050101 20200625 747870 12834 DAYTONA BEACH INTERNATIONAL AIRPORT US FL KDAB 29.183000000000003 -81.048 9.5 20050101 20200625 747880 12810 MAC DILL AFB AIRPORT US FL KMCF 27.85 -82.51700000000001 4.3 19410501 20200626 747880 99999 MACDILL AFB/TAMPA US FL KMCF 27.85 -82.5 4.0 20000101 20041231 747900 13849 SHAW AIR FORCE BASE US SC KSSC 33.967 -80.467 73.5 19411222 20200625 747900 99999 SHAW AFB/SUMTER US SC KSSC 33.967 -80.483 73.0 20000103 20041231 747910 13717 MYRTLE BEACH INTL AIRPORT US SC KMYR 33.683 -78.933 7.6 19421101 20200625 747910 99999 MYRTLE BEACH CIV US SC KMYR 33.683 -78.933 8.0 20000101 20031231 747915 93718 GRAND STRAND AIRPORT US SC KCRE 33.816 -78.72 9.8 19730101 20200626 747915 99999 NORTH MYRTLE BEACH US SC KCRE 33.817 -78.717 10.0 20000101 20031231 747916 99999 GEORGETOWN COAST GUARD LIGHT STA US 33.22 -79.18 8.0 19750911 19850920 747917 00390 MT PLEASANT REGIONAL AIRPORT FASION FIELD US SC KLRO 32.9 -79.783 4.3 20090101 20200625 747917 99999 MOUNT PLEASANT US SC KLRO 32.9 -79.783 3.7 20081208 20180515 747918 00391 GEORGETOWN COUNTY AIRPORT US SC KGGE 33.317 -79.317 12.2 20090510 20200625 747918 99999 GEORGETOWN CO US SC KGGE 33.312 -79.32 11.9 20180101 20180522 747920 99999 POINSETT RANGE SUMPTER US SC 33.85 -80.48 68.0 19700615 19880923 747930 12843 VERO BEACH MUNICIPAL AIRPORT US FL KVRB 27.651 -80.42 8.5 20100801 20200625 747930 99999 VERO BEACH MUNI US FL KVRB 27.65 -80.417 12.0 20010811 20100731 747931 12876 WINTER HAVEN'S GILBERT APT US FL KGIF 28.061999999999998 -81.75399999999999 44.5 20050101 20200625 747940 12868 COCOA BEACH CAPE KENNEDY AFS US FL KXMR 28.483 -80.567 3.1 19500801 20200626 747940 99999 CAPE CANAVERAL AFS SKID STRIP US FL KXMR 28.468000000000004 -80.567 3.0 20020116 20180501 747945 99999 NASA SHUTTLE FCLTY US FL KSC 28.616999999999997 -80.7 3.0 19780317 19930617 747946 12886 KENNEDY SPACE CENTER US FL KTTS 28.616999999999997 -80.683 3.1 20060101 20200625 747946 99999 NASA SHUTTLE LANDING US FL KTTS 28.615 -80.694 3.0 19930701 20051231 747950 12867 PATRICK AFB AIRPORT US FL KCOF 28.233 -80.6 2.4 19450301 20200625 747950 99999 PATRICK AFB/COCOA B US FL KCOF 28.233 -80.6 3.0 20000102 20041231 747960 12804 AVON PARK GUNNERY R US FL KAGR 27.65 -81.333 20.0 19431201 19930929 747960 99999 AVON PARK GUNNERY RANGE US FL KAGR 27.65 -81.33 20.0 20180515 20200624 747985 99999 DRY TORTUGAS (CGS) US FL 24.633000000000003 -82.917 1.0 19750916 19870705 747986 99999 MARATHON COAST GUARD STATION US FL 24.72 -81.12 1.0 19750916 19841015 747994 99999 BUTTE LA ROSE US LA KBCG 30.116999999999997 -91.55 10.0 19850701 19850706 749000 99999 ARNOLD AFB US TN KAYX 35.393 -86.086 324.6 19430101 19690801 749001 99999 RAF SPILSBURY UK 53.167 0.16699999999999998 11.0 19431001 19460531 749002 99999 ATTLEBOROUGH UK 52.5 0.95 32.0 19430901 19450831 749003 99999 DEENETHORPE UK 52.5 -0.6 105.0 19440701 19450630 749005 99999 TIBENHAM AIRFIELD UK 52.457 1.162 52.0 19440701 20200624 749006 99999 HEMINGSTONE UK 52.133 1.1 58.0 19440601 19450630 749007 99999 RAF HOME-ON-SPALDING UK 53.8 -0.75 4.0 19410901 19451031 749008 99999 STURGATE AIRFIELD UK EGCS 53.381 -0.685 21.0 19430901 19570613 749009 99999 RAF BLYTON UK 53.467 -0.7 240.0 19430301 19430630 749010 99999 LAGUNA AAF US 32.85 -114.4 152.0 19470708 19470814 749011 99999 LA GRANGE GA/GALLOWAY APT FAA US GA GA33 33.016 -85.066 216.0 19530701 19550101 749012 99999 EGLIN TEST SITE C5 US FL 30.666999999999998 -86.367 73.0 19490915 19491029 749013 99999 EGLIN TEST SITE C3 US FL 30.583000000000002 -86.45 48.0 19490920 19551229 749014 99999 EGLIN SITE B6 US FL 30.616999999999997 -86.73299999999999 42.0 19490919 19491028 749015 99999 RICHMOND MUNI US IN 39.766999999999996 -84.833 348.0 19471107 19520401 749016 99999 LOMETTA AIRSTRIP US TX 31.25 -98.5 411.0 19520312 19520409 749017 99999 LONGHORN AUX STRIP US TX 31.366999999999997 -97.71700000000001 233.0 19520312 19520409 749018 99999 JOHNSON CITY US TX 30.25 -98.617 461.0 19631223 19690121 749019 99999 DEMPSEY ARMY HELI US TX 32.8 -98.26700000000001 354.0 19680103 19710327 749020 99999 LAC MEGANTIC CA CYXG 45.583 -70.867 415.0 19500101 19590101 749021 99999 STIRLING ONTARIO DOT CA CYQC 44.316 -77.633 139.0 19500101 19590101 749022 99999 BELMAR NJ/SIG CORPS EVANS LAB US NJ BLM 40.183 -74.066 26.0 19550101 19610801 749023 99999 FISHERMANS LAKE LI 6.75 -11.25 0.0 19430701 19450504 749024 99999 OYAPOCK BR SBVE 3.867 -51.817 0.0 19431007 19451021 749025 99999 CHAME PM 8.6 -79.917 37.0 19420714 19461024 749026 99999 REY ISLAND PM MPYI 8.232999999999999 -78.9 24.0 19430715 19470801 749027 99999 LA MITRA PM 8.85 -79.783 94.0 19420408 19451019 749028 99999 LA JOYA PM 9.133 -79.233 48.0 19420716 19450927 749029 99999 CALZADA LARGA PM MP23 9.166 -79.545 120.1 19420708 19441101 749030 99999 MANDINGA PM 9.45 -79.083 5.0 19430726 19440413 749031 99999 SAN JOSE ISLAND PM 8.25 -79.133 82.0 19440601 19480101 749032 99999 LAKE GATUN PM 9.117 -79.783 79.0 19450501 19460131 749033 99999 FINCA FAYORITA CS 9.517000000000001 -82.65 10.0 19431001 19440605 749034 99999 POCRI AIRFIELD PM MPCI 7.733 -80.133 14.0 19430615 19471223 749035 99999 AGUADULCE PM 8.25 -80.567 46.0 19420330 19460125 749036 99999 PARRITA CS MRPR 9.517000000000001 -84.333 6.0 19441001 19470731 749037 99999 BISSAU PU 11.867 -15.633 38.0 19430201 19430403 749038 99999 LOS MOLINOS RQ 18.483 -66.467 13.0 19430101 19431201 749039 99999 CAYEY RQ 18.117 -66.15 396.0 19430222 19430630 749040 99999 TOCO TD 10.833 -60.933 41.0 19420709 19421001 749041 99999 CHICKLAND TD 10.4 -61.4 19.0 19450715 19450927 749042 99999 ANTONIO RIVERA RODRIGUEZ RQ TJVQ 18.135 -65.494 14.9 19500224 19500312 749043 99999 EXUMA BF 23.5 -75.75 19.0 19450623 19451024 749044 99999 BOCA RATON FLORIDA AAF US FL BCT 26.366 -80.1 5.0 19421201 19471130 749045 99999 SEBRING RGNL US FL KSEF 27.456 -81.342 19.2 19420401 20200624 749046 99999 PUNTA GORDA FLORIDA AAF US FL PGD 26.916 -81.98299999999999 9.0 19440104 19450919 749047 99999 KISSIMMEE FLORIDA AAF US FL ISM 28.283 -81.416 25.0 19440301 19450811 749048 00415 KEYSTONE AIRPARK US FL K42J 29.845 -82.04799999999999 60.1 20110312 20200626 749048 99999 KEYSTONE AIRPARK US FL K42J 29.845 -82.04799999999999 59.7 19431210 20180516 749049 99999 BROOKSVILLE FLORIDA AAF US FL BKV 28.483 -82.449 23.0 19431207 19440314 749050 99999 LEESBURG FLORIDA AAF US FL LEE 28.8 -81.8 23.0 19431221 19440312 749051 99999 DUNELLON US FL 29.066999999999997 -82.367 20.0 19431205 19440313 749053 99999 WILLISTON MUNI US FL 29.35 -82.46700000000001 22.0 19431207 19440322 749054 99999 BUSHNELL FIELD US FL 28.683000000000003 -82.083 27.0 19440515 19450901 749055 99999 MOORE FIELD US TX 26.4 -98.35 62.0 19420301 19451111 749056 99999 SAN MARCOS TX/EDWARD GARY AFB US TX SRO 29.883000000000003 -97.866 178.0 19430220 19560816 749057 99999 ALOE AAF US TX 28.767 -97.117 34.0 19440608 19450910 749058 99999 BROOKS AFB US TX 29.35 -98.45 182.0 19480122 19600622 749059 99999 FES MOROCCO/FES RAS ELMA FLD MO GFEZ 34.083 -4.916 401.0 19430108 19430731 749060 99999 GUERCIF MO 34.233000000000004 -3.4330000000000003 390.0 19430302 19430524 749061 99999 DEROUA MO 33.4 -7.5329999999999995 185.0 19430201 19430501 749062 99999 PORT LYAUTEY MOROCCO/CRAW FLD MO 34.3 -6.582999999999999 13.0 19421210 19430930 749063 99999 IJJOUKAK MO 31.0 -8.133 1202.0 19440901 19450614 749064 99999 TOUAHAR MO GMFT 34.2 -4.183 564.0 19430429 19460228 749065 99999 BOULHAUT MO 33.617 -7.117000000000001 171.0 19511218 19570313 749066 99999 LITTLE SOUND BD 32.266999999999996 -64.85 13.0 19450401 19631001 749067 99999 CONNELLSVILLE US PA 39.95 -79.65 383.0 19411020 19460131 749068 99999 MAXTON NC/LAURINBURG MAXTON US NC MEB 34.8 -79.366 69.0 19421204 19510902 749069 99999 CAMP DAVIS AAF US NC 34.5 -77.567 21.0 19431201 19450820 749070 99999 FREDERICK MD/CAMP DETRICK US MD FDK 39.433 -77.449 100.0 19460801 19550429 749071 99999 EDENTON NORTH CAROLINA MCALF US NC EDE 36.016 -76.566 6.0 19450318 19581016 749072 99999 WEEKSVILLE NAS US NC 36.233000000000004 -76.133 7.0 19450201 19570628 749073 99999 GUNTER ANNEX US AL 32.4 -86.25 67.0 19411222 19460101 749074 99999 FREEMAN MUNI US IN 38.933 -85.917 176.0 19430118 19461031 749075 99999 LAWERENCEVILLE IL US IL LMV 38.766 -87.6 131.0 19430111 19460201 749076 99999 MADISON AAF US IN 38.833 -85.417 268.0 19411103 19450907 749077 99999 STURGIS MUNI US KY KTWT 37.541 -87.95200000000001 113.4 19440306 19450916 749078 99999 BAINBRIDGE/AAF GA US GA BGE 30.983 -84.633 40.0 19420917 19450108 749079 99999 GRENADA US MS 33.783 -89.8 63.0 19430812 19451114 749080 99999 COURTLAND US AL 34.65 -87.333 176.0 19430201 19450701 749081 99999 AUGUSTA/DANIEL FIELD GA US GA DNL 33.466 -82.03299999999999 134.0 19420703 19430602 749082 99999 HENDERSONVILLE AAF US NC 35.433 -82.48299999999999 661.0 19430801 19460131 749083 99999 LEBANON US TN 36.183 -86.3 159.0 19440209 19440301 749084 99999 PERRY FLORIDA AAF US FL PRF 30.066 -83.583 15.0 19440416 19450930 749085 99999 HARRIS NECK AAF US GA 31.633000000000003 -81.267 6.0 19440501 19441214 749086 99999 MALDEN MISSOURI AAF US MO MAW 36.6 -89.98299999999999 91.0 19441201 19450322 749087 99999 MARIANNA FLORIDA AAF US FL MAI 30.833000000000002 -85.2 33.0 19421201 19451116 749088 99999 THOMASVILLE GEORGIA AAF US GA TVI 30.9 -83.85 74.0 19440216 19451010 749089 99999 TUSKEGEE/SHARPE FLD US AL 32.5 -85.76700000000001 76.0 19420419 19461004 749090 99999 WALTERBORO MUNI US SC 32.917 -80.65 29.0 19420928 19451102 749091 99999 VARISCO AIRFIELD US TX 30.666999999999998 -96.55 84.0 19430315 19580612 749092 99999 COFFEYVILLE KANSAS AAF US KS CFV 37.1 -95.583 227.0 19421202 19451017 749093 99999 FREDERICK OKLAHOMA AAF US OK FDR 34.366 -99.0 377.0 19430423 19451031 749094 99999 HERINGTON MUNI US KS 38.7 -96.81700000000001 455.0 19430601 19451001 749095 99999 NEWPORT ARKANSAS AAF US AR EWP 35.633 -91.166 74.0 19430101 19440726 749096 99999 STUTTGART ARKANSAS AAF US AR SGT 34.6 -91.583 68.0 19421101 19451211 749097 99999 WINFIELD KS/STROTNER FLD US KS WLD 37.166 -97.03299999999999 350.0 19421216 19450814 749098 99999 DE RIDDER LOUISIANA AAB US LA DRI 30.833000000000002 -93.366 61.0 19430117 19450324 749099 99999 INDEPENDENCE KANSAS AAF US KS IDP 37.166 -95.766 250.0 19430504 19471017 749100 99999 HOPE ARKANSAS AAF US AR IDP 33.733000000000004 -93.666 108.0 19450207 19451102 749102 99999 WESLEYVILLE DFS CA 49.15 -53.583 26.0 19431112 19451201 749103 99999 CAMPBELLTON CENTER CA 48.0 -66.683 5.0 19500101 19590101 749105 99999 MITCHEL FIELD US NY 40.733000000000004 -73.6 38.0 19370101 19610416 749108 99999 ELIZABETH AAF US NY 41.266999999999996 -72.017 15.0 19440501 19460101 749109 99999 EATONTOWN US NJ 40.3 -74.05 16.0 19471001 19481101 749110 99999 BRUNING AAF US NE 40.333 -97.417 471.0 19430101 19450101 749111 99999 HARVARD AAF US NE 40.65 -98.083 554.0 19430807 19460117 749112 99999 FAIRMONT AAF US NE 40.583 -97.56700000000001 500.0 19421218 19451031 749113 99999 ATLANTIC IOWA CAA US IA AIO 41.45 -95.066 353.0 19480601 19510101 749114 99999 RAF MOLESWORTH UK 52.383 -0.41700000000000004 74.0 19540301 19570531 749115 99999 RAF GROVE UK 51.617 -1.45 83.0 19450321 19451120 749116 99999 WARTON AERODROME UK 53.75 -2.883 11.0 19450205 19450809 749117 99999 PENKETH UK 53.383 -2.65 27.0 19450101 19590430 749118 99999 CAPE HARRISON NEWFOUNDLAND DO CA 54.766000000000005 -58.45 10.0 19431101 19500901 749119 99999 HEBRON CA 58.217 -62.583 8.0 19431101 19460123 749120 99999 QUEBEC ISLE CA 51.833 -62.883 524.0 19431023 19480918 749121 99999 INDIAN HOUSE LAKE CA 56.233000000000004 -64.733 311.0 19440901 19490814 749122 99999 CARIBOU EAST CA 59.367 -97.383 271.0 19430420 19450715 749123 99999 WABOWDEN MANITOBA DOT CA CYWB 54.916000000000004 -98.633 233.0 19430320 19450715 749124 99999 VIK IC 63.417 -18.9 30.0 19440301 19451224 749125 99999 GRUND IC 65.533 -18.067 35.0 19430510 19440122 749126 99999 KEFLAVIK /MEEKS FLD WBAS IC 63.95 -22.616 59.0 19470501 19510901 749127 99999 IKATEQ GL BIKA 65.933 -36.683 56.0 19421101 19471018 749128 99999 PANORAMANUNATAKKER GL 68.25 -36.5 2925.0 19560418 19560824 749129 99999 TREKANTNUNATTAKER GL 69.383 -35.917 2759.0 19560413 19560825 749130 99999 VALKYRIERNE GL 63.183 -41.333 91.0 19421205 19480920 749132 99999 SIMIUTAQ GL 60.683 -46.533 62.0 19420505 19570701 749133 99999 NANATAQ GL 65.067 -40.233000000000004 361.0 19440916 19451001 749134 99999 ICE CAP 559 GREENLAND GL 0.0 0.0 0.0 19440707 19440801 749135 99999 KOKLAPPERNE GL 65.333 -40.3 361.0 19421003 19440915 749136 99999 SNOWMAN GREENLAND GL 0.0 0.0 0.0 19470826 19470912 749137 99999 MINT JULEP GL 66.283 -47.766999999999996 829.0 19530527 19530821 749138 99999 ICE CAP GL 68.067 -42.333 593.0 19560412 19560823 749139 99999 ICE CAP SITE 2 GL 69.55 -43.167 2559.0 19560403 19560824 749140 99999 UNGUSIVIK GL 66.033 -53.567 13.0 19420916 19480809 749141 99999 MARRAK POINT GL BMKA 63.433 -51.183 41.0 19430119 19480929 749142 99999 PADLOPING ISLAND CA 67.1 -62.35 40.0 19411128 19530901 749143 99999 TAVANI CA 62.033 -93.06700000000001 0.0 19430506 19430824 749145 99999 ICE CAP SITE 3 GL 70.617 -36.167 3140.0 19560422 19560825 749146 99999 THULE STE 2 GL 76.533 -68.333 308.0 19520523 19520820 749147 99999 THULE GREENLAND/ORIGINAL SITE GL BGTL 76.5 -68.833 59.0 19510901 19511026 749148 99999 ICE CAP SITE 4 GL 78.133 -71.617 0.0 19530720 19561111 749149 99999 THULE SITE B GL 76.0 -56.083 1650.0 19530707 19570701 749150 99999 THULE GREENLAND/ALPHA GL 0.0 0.0 1356.0 19530729 19530903 749151 99999 THULE GREENLAND/NUNA LAKE GL 0.0 0.0 594.0 19530703 19530907 749152 99999 THULE MILE60 SIERRA GL 77.233 -62.333 1704.0 19530710 19540830 749153 99999 BAKER ISLAND FQ 0.217 -176.467 3.0 19431018 19451001 749154 99999 SOUTH POINT BEACH US HI 18.917 -155.683 12.0 19400129 19411223 749155 99999 RADAR BASE US TX 28.866999999999997 -100.51700000000001 70.0 19421008 19450515 749158 99999 FORT SUMNER MUNI US NM 34.483000000000004 -104.21700000000001 1263.0 19430101 19451116 749159 99999 PAMPA AAF US TX 35.533 -100.75 955.0 19430102 19451001 749160 99999 PECOS TEXAS AAF US TX PEQ 31.4 -103.516 95.0 19420910 19450530 749161 99999 PYOTE AFB US TX 31.517 -103.133 798.0 19430118 19460315 749162 99999 SWEETWATER TX/AVENGER FLD US TX SWW 32.466 -100.46600000000001 727.0 19450201 19451111 749163 99999 RODEO US NM 31.933000000000003 -108.98299999999999 1255.0 19460801 19540106 749164 99999 ELEPHANT BUTTE US NM 33.233000000000004 -107.01700000000001 1478.0 19460801 19500525 749165 99999 COLUMBUS MUNI US NM 31.833000000000002 -107.65 1223.0 19460801 19550101 749166 99999 DESERT CENTER AAF US CA 33.75 -115.333 165.0 19430601 19440305 749167 99999 PINAL AIRPARK US AZ KMZJ 32.510999999999996 -111.32799999999999 576.7 19420912 19550701 749168 99999 RICE AAF US CA 34.067 -114.833 269.0 19430601 19440302 749169 99999 PASADENA US CA 34.133 -118.133 231.0 19431115 19441011 749170 99999 GARDNER AAF US CA 35.117 -119.3 133.0 19411201 19450221 749171 00479 TEHACHAPI MUNICIPAL AIRPORT US CA KTSP 35.135 -118.439 1219.5 20091209 20200625 749171 99999 TEHACHAPI MUNI US CA KTSP 35.135 -118.439 1219.5 19421113 20180515 749173 99999 COOLIDGE MUNI US AZ KP08 32.936 -111.427 479.8 19440711 20200402 749174 99999 PORTERVILLE CALIFORNIA AAF US CA PTV 36.033 -119.066 132.0 19450721 19451012 749175 99999 GOAT ROCK BEACH US CA 38.433 -123.133 72.0 19430607 19450526 749177 99999 SANTA ROSA ISLAND US CA 33.933 -120.117 455.0 19430611 19440301 749178 99999 MORRO BAY US CA 35.367 -120.85 20.0 19461001 19470101 749179 00392 HOLLISTER MUNICIPAL AIRPORT US CA KCVH 36.9 -121.417 72.2 20090201 20200625 749179 99999 HOLLISTER MUNI US CA KCVH 36.9 -121.417 70.1 19450301 20180516 749180 99999 VERNALIS NAVAL AUX US CA 37.6 -121.3 59.0 19450401 19460116 749181 99999 WATSONVILLE CALIFORNIA NAAS US CA WVI 36.933 -121.78299999999999 44.0 19450301 19451015 749182 99999 JUDITH GAP US MT 46.7 -109.75 1416.0 19440715 19451101 749183 99999 FORT BENTON US MT 47.85 -110.65 880.0 19440226 19451101 749184 99999 CITY COUNTY AIRPORT US OR 44.667 -121.167 744.0 19430501 19440517 749185 99999 ARLINGTON WASHINGTON NAS US WA S88 48.199 -122.18299999999999 41.0 19450401 19451201 749186 99999 ISLAND FALLS SASKATCHEWAN DOT CA 55.533 -102.35 299.0 19430315 19450702 749187 99999 EMBARRAS ALBERTA DOT APT CA 58.199 -111.383 236.0 19430108 19441124 749188 99999 JARVIE WEST CA 54.467 -114.1 624.0 19430517 19450818 749189 99999 VALLEY VIEW ALBERTA CA 55.083 -117.25 738.0 19440222 19450818 749190 99999 TRIANGLE SOUTHWEST CA 55.317 -116.98299999999999 610.0 19431021 19440101 749191 99999 WONOWON SOUTHEAST CA 56.7 -121.75 905.0 19430708 19450818 749192 99999 SKOOKS LANDING CA 59.65 -127.06700000000001 507.0 19430801 19450818 749193 99999 SUMMIT LAKE CA 58.65 -124.65 1281.0 19430921 19450818 749194 99999 TROUT LIARD BRITISH COLUMBIA CA 59.383 -126.116 422.0 19430607 19450818 749195 99999 TRUTCH NORTHEAST CA 57.75 -122.9 857.0 19430720 19450818 749196 99999 TAKLA LANDING CA 55.467 -125.95 692.0 19441005 19450818 749197 99999 NELSON FORKS CA 59.5 -124.0 243.0 19450309 19450617 749198 99999 FRASER NORTHEAST CA 59.766999999999996 -134.983 884.0 19431201 19460131 749199 99999 GALBRAITH EAST CA 59.5 -131.767 1021.0 19450304 19450818 749200 99999 CHUGINADAK ISLAND SW US AK 52.833 -169.833 24.0 19430701 19440611 749203 99999 KAVALGA ISLAND US AK 51.55 -178.8 15.0 19430228 19440816 749204 99999 FINCH POINT US AK 52.383 -172.417 19.0 19430401 19450923 749205 99999 ATKA ALASKA US AK ATK 52.216 -174.2 11.0 19440208 19491119 749206 99999 MILLS LAKE SOUTH CA 61.25 -118.633 148.0 19440123 19440814 749207 99999 SAWMILL BAY CA 65.733 -118.917 171.0 19480201 19480901 749208 99999 TROUT LAKE N W T CA 60.266000000000005 -121.8 503.0 19440401 19451001 749210 99999 FISH LAKE CA 60.633 -132.05 867.0 19430420 19450818 749211 99999 LITTLE TESLIN LAKE CA 60.5 -133.4 782.0 19420901 19430401 749212 99999 SWIFT RIVER CA 60.0 -131.183 880.0 19431006 19460327 749214 99999 SQUANGA LAKE SW CA 60.417 -133.76 872.0 19430822 19440704 749215 99999 RANCHERIA EAST CA 60.083 -130.167 846.0 19430824 19450818 749216 99999 CAR FERRY ROSS RIVER CA 62.183 -131.75 819.0 19440813 19450331 749218 99999 KILAGMIOTAK SE CA 69.283 -133.933 28.0 19480501 19481001 749219 99999 KALTAG ALASKA US AK KAL 64.3 -158.716 48.0 19430701 19450927 749220 99999 EMERALD ISLAND SW US AK 64.9 -154.667 56.0 19430713 19460701 749221 99999 FIRE ISLAND US AK 61.15 -150.233 15.0 19480128 19480411 749222 99999 WISEMAN ALASKA WB US AK WSM 67.433 -150.216 393.0 19450101 19480701 749224 99999 KOYUK ALASKA US AK KKA 64.866 -161.1 13.0 19430501 19450914 749225 99999 QUARTZCREEK/KOUGAROK US AK 65.533 -164.2 76.0 19430914 19431101 749226 99999 BREVIG AIRPORT NE US AK 65.45 -165.767 36.0 19440401 19450825 749228 99999 LAVA LAKE US AK 65.583 -163.833 170.0 19450401 19451122 749229 99999 HUGGINS ISLAND US AK 65.9 -154.667 56.0 19460101 19460925 749230 00393 TELLER AIRPORT US AK PATE 65.233 -166.35 89.0 20090201 20200625 749230 99999 TELLER AIRPORT US AK PATE 65.233 -166.35 90.0 19430801 20180515 749231 99999 ST. MATTHEW ISLAND US AK 60.35 -172.7 29.0 19421008 19451014 749233 99999 DEKEMHARE ER 15.033 39.05 1970.0 19430331 19431223 749234 99999 GUSKHARA SOUTHEAST IN 23.467 87.78299999999999 41.0 19431201 19441215 749235 99999 CHAKULIA IN 22.45 86.7 131.0 19421101 19450430 749238 99999 RANIGANJ EAST IN 23.616999999999997 87.2 86.0 19430531 19451229 749239 99999 SHERGHATI NORTHEAST IN 24.6 84.883 149.0 19431130 19440418 749240 99999 MALANDIGHI NORTHWEST IN 23.633000000000003 87.35 94.0 19431231 19441228 749241 99999 KHARAGPUR SOUTHEAST IN 22.3 87.333 41.0 19440103 19450903 749242 99999 BANKADAHA WEST IN 22.967 87.3 79.0 19440229 19450921 749243 99999 PANDAVESWAR SW IN 23.717 87.28299999999999 87.0 19450108 19450930 749244 99999 DOOM-DOOMA IN 27.566999999999997 95.56700000000001 130.0 19430331 19451015 749246 99999 BANSBERA NORTHEAST IN 26.8 92.617 98.0 19431130 19451018 749247 99999 JHANZI WEST IN 26.85 94.43299999999999 92.0 19431231 19440219 749249 99999 HAILAKANDI NORTHWEST IN 24.717 92.53299999999999 25.0 19440216 19440520 749250 99999 MORAN SOUTHWEST IN 27.15 94.9 100.0 19440220 19450228 749251 99999 SADIYA IN 27.85 95.667 130.0 19431231 19440430 749252 99999 DERGAON IN 26.717 93.95 91.0 19440131 19450531 749253 99999 TANAI AIRPORT BM VYTN 26.366999999999997 96.73299999999999 210.3 19440404 19440531 749254 99999 GUMSHEN SOUTHEAST BM 26.55 97.55 1053.0 19440429 19441006 749255 99999 HPAUCHYE SOUTHEAST BM 26.066999999999997 96.71700000000001 246.0 19440521 19450220 749256 99999 SHINGBWIYANG BM 26.683000000000003 96.21700000000001 208.0 19440531 19450831 749257 99999 TINGRING BM 25.8 96.65 187.0 19440602 19450910 749258 99999 SAHMAW BM 25.233 96.78299999999999 179.0 19441031 19450430 749259 99999 MANGSHI CH 24.45 98.583 922.0 19441231 19450828 749260 99999 DHOPACHARI NW BG 22.25 92.083 4.0 19450210 19450430 749261 99999 BAHE BM 23.383000000000003 96.56700000000001 126.0 19450131 19450228 749262 99999 PYINCHAUNG WEST BM 21.4 94.633 125.0 19450211 19450331 749263 99999 KUTKAI NORTHWEST BM 23.467 97.917 1372.0 19450301 19450331 749264 99999 KYI-EIK BM 21.633000000000003 96.03299999999999 77.0 19450401 19450422 749265 99999 KUAKATA SOUTHEAST BG 21.783 90.15 3.0 19450415 19450531 749267 99999 VILLACIDRO SOUTHEAST IT 39.433 8.75 81.0 19431210 19440930 749268 99999 BLIDA ALGERIA AG 36.499 2.8160000000000003 170.0 19430101 19431115 749269 99999 HASSI MESSAOUD NE AG 32.1 6.45 136.0 19430201 19430602 749270 99999 JEDEIDA NORTHWEST TS 36.867 9.9 19.0 19430708 19431026 749271 99999 LE KHROUB ALGERIA AG 36.3 6.7 559.0 19441205 19450131 749272 99999 EL BATHANE WEST TS 36.8 9.883 49.0 19430731 19431026 749273 99999 EL GUERRAH AG 36.133 6.617000000000001 770.0 19430206 19430930 749274 99999 DAWWAR AWLAD GANA NW TS 35.833 8.817 596.0 19430416 19430520 749275 99999 BORJ EL AMRI AIRPORT TS 36.717 9.933 32.0 19430702 19431203 749276 99999 MDAOUROUCH WEST AG 36.133 7.817 932.0 19430414 19430629 749277 99999 MECHTA BOU RZAM S AG 36.083 5.8 923.0 19430813 19431128 749278 99999 ER ROMRI SOUTHWEST AG 35.683 0.183 100.0 19430120 19430630 749279 99999 KASSERINE EAST TS 35.167 8.917 622.0 19430331 19430414 749280 99999 MECHTA MEHBOUB SE AG 36.2 5.9670000000000005 859.0 19430307 19430831 749282 99999 TELERGHMA AG 36.117 6.35 754.0 19430115 19440630 749284 99999 DEPIENNE SOUTHEAST TS 36.45 10.05 136.0 19430228 19431209 749286 99999 LA MARSA TS 36.883 10.333 57.0 19430628 19431130 749287 99999 TUNIS-CARTHAGE EAST TS 36.85 10.25 6.0 19430831 19430930 749288 99999 MAAFRINE SOUTHEAST TS 36.633 10.1 53.0 19430831 19431130 749289 99999 EL DJEM TS 35.333 10.667 110.0 19430815 19430827 749290 99999 AL ASHHAB SOUTHWEST LY 31.866999999999997 24.6 157.0 19431130 19440223 749292 99999 DOW RUD WEST IR 33.467 49.05 1408.0 19431026 19451209 749293 99999 HAMADAN IRAN/CAMP PARKS IR 34.849000000000004 48.533 1727.0 19440928 19450814 749294 99999 DOLOMIEU FR 45.6 5.5 762.0 19440906 19440918 749295 99999 MOBILE UNIT 2 ITALY IT 0.0 19440531 19450131 749297 99999 MASSERIA EPITAFFIO IT 40.95 16.1 437.0 19440318 19450530 749298 99999 PRESENZANO IT 41.367 14.067 198.0 19440301 19440331 749299 99999 TORREMAGGIORE IT 41.683 15.333 170.0 19440618 19450528 749300 99999 MEZZOMONTE IT 41.25 13.083 450.0 19440602 19440606 749301 99999 ANSEDONIA NW IT 42.433 11.267000000000001 19.0 19440622 19440719 749302 99999 GAUDIANO EAST IT 41.1 15.933 226.0 19440702 19450430 749303 99999 CASTELLO GARAGNONE S IT 40.95 16.233 435.0 19441101 19450430 749304 99999 TORTORELLA ITALY/MU 18 IT 0.0 19450331 19450522 749306 99999 SANGA SANGA RP RPMN 5.047 119.743 4.6 19450426 19450809 749307 99999 A.B.WON PAT AIRPORT PS 6.9 134.15 6.0 19441015 19450610 749308 99999 PULAU FANI ID 1.083 131.267 2.0 19441129 19450210 749309 99999 BLACKHORSE BASE VM 10.817 107.21700000000001 250.0 19661231 19690906 749310 99999 PLEI DJERENG /THREE TANGO VM 13.966 107.65 290.0 19661220 19670320 749311 99999 DUC CO FSB VM 13.833 107.68299999999999 402.0 19670331 19671023 749312 99999 EA HLEO VM 13.217 108.23299999999999 610.0 19671112 19671210 749313 99999 DAK TO VM 14.667 107.8 602.0 19671101 19690116 749314 99999 DUC AN VM 15.617 108.4 35.0 19671201 19680229 749315 99999 GUIUAN PHILIPPINES RP 11.033 125.71600000000001 8.0 19450116 19450822 749316 99999 SAIPAN MARIANA IS/KOBLER RM 15.116 145.7 32.0 19450131 19711231 749318 99999 RONGERIK ATOLL RM 11.3 167.483 3.0 19480310 19540301 749319 99999 RONGELAP RM 11.15 166.85 2.0 19580317 19580710 749320 99999 WOTHO RM 10.167 166.0 4.0 19580324 19580710 749321 99999 YANG-CHIEH CH 25.5 103.083 1955.0 19430217 19451031 749322 99999 YUN-NAN-I CH 25.416999999999998 100.73299999999999 1967.0 19430108 19451018 749323 99999 XIQIAO CH 25.0 103.583 1849.0 19440630 19451113 749324 99999 ZHE-SHANG EAST CH 23.75 106.083 162.0 19450123 19450831 749325 99999 LO-PING CH 24.95 104.35 1550.0 19450615 19451009 749327 99999 HSUPU CHINA AAB CH 27.866 110.566 152.0 19450731 19450831 749329 99999 XINGANG CH 29.75 116.133 30.0 19460721 19461002 749330 99999 KADENA SOUTHEAST JA 26.333000000000002 127.78299999999999 75.0 19450430 19460120 749331 99999 KADENA NORTHWEST JA 26.383000000000003 127.75 76.0 19510531 19540223 749333 99999 URASOE-SHI JA 26.25 127.7 25.0 19450725 19450930 749334 99999 OKINAWA RYUKYU IS/BOLO FLD JA 26.4 127.71600000000001 27.0 19450812 19450831 749335 99999 HAMA SOUTH JA 26.5 127.2 9.0 19450630 19450814 749336 99999 CHING-SHUI-PU NORTH CH 30.25 104.03299999999999 481.0 19431231 19461031 749337 99999 LIULIN SOUTHWEST CH 36.516999999999996 109.45 1196.0 19440831 19460331 749338 99999 AO-CHIA-CHANG NORTH CH 31.116999999999997 104.0 500.0 19450131 19450831 749339 99999 QIONGLAI NORTHEAST CH 30.45 103.53299999999999 539.0 19450131 19450228 749340 99999 GUANBA NORTH CH 30.583000000000002 107.833 501.0 19450228 19460430 749341 99999 ERH-LANG-PA NORTH CH 32.967 107.2 518.0 19450228 19451006 749342 99999 SIAN CHINA CH RSIA 34.25 108.916 416.0 19450314 19451031 749344 99999 LANCHOW CHINA CH RLHW 36.0 103.75 1543.0 19451031 19461231 749345 99999 HUA-CHIAO SOUTHEAST CH 30.416999999999998 103.917 486.0 19460430 19460831 749346 99999 LENG-CHI NORTHWEST CH 32.417 111.5 110.0 19450206 19450228 749347 99999 HSIA-KUAN SOUTHEAST CH 32.083 118.75 25.0 19450907 19481119 749348 99999 HANKOW CHINA CH 30.583000000000002 114.25 37.0 19450930 19480228 749350 99999 HANGCHOW CHINA CH 30.233 120.166 8.0 19451022 19460430 749351 99999 CHA-YIN-LU SOUTHWEST CH 31.316999999999997 121.5 6.0 19451031 19470331 749352 99999 PUSAN KOREA/PUSAN WEST AB KS 35.183 128.933 4.0 19500819 19531030 749355 99999 SOKCHORI KOREA KS 38.433 127.3 335.0 19510724 19520921 749356 99999 KAJU-DONG KS 37.8 124.68299999999999 203.0 19510509 19510915 749357 99999 HONGCHON KOREA KS 37.7 127.866 151.0 19510406 19510908 749358 99999 SOCHEONG-DO KS 37.766999999999996 124.73299999999999 0.0 19510323 19510509 749359 99999 SOKSA-RI KS 37.633 128.567 681.0 19510321 19510419 749360 99999 JUNMUJIN KS 37.883 128.817 6.0 19510416 19510517 749361 99999 CHONAN KOREA KS 36.816 127.25 48.0 19510131 19510204 749362 99999 P621 HELIPORT KS 36.2 127.083 6.0 19510607 19510724 749363 99999 R605 KS 37.15 128.25 82.0 19510324 19510404 749364 99999 YONPO AFLD KN 39.783 127.53299999999999 3.0 19501112 19501205 749365 99999 SEOUL-MULLAEDONG KS 37.516999999999996 126.9 12.0 19510321 19510430 749366 99999 YANGYANG KOREA KS 38.066 128.616 6.0 19510602 19510606 749367 99999 R239 KS 38.2 127.2 153.0 19520721 19521203 749368 99999 CHO DO KN 38.55 124.81700000000001 67.0 19520919 19530729 749369 99999 YO DO KN 39.233000000000004 127.617 69.0 19521228 19530612 749370 99999 R238 KS 38.167 127.1 87.0 19530501 19541003 749371 99999 R231 KS 38.033 127.367 159.0 19530501 19561010 749372 99999 R237 KS 38.133 127.3 156.0 19530430 19541004 749373 99999 R313 KS 38.133 127.68299999999999 145.0 19530430 19550329 749374 99999 KUMSAN TEAM 831 KN 38.367 127.617 283.0 19530430 19540219 749375 99999 SOHUI RI TEAM 842 KS 38.333 128.167 320.0 19530501 19530731 749376 99999 P434 HELIPORT KS 38.317 128.517 18.0 19520921 19541107 749378 99999 C316 HELIPORT KS 38.167 127.43299999999999 205.0 19531028 19540408 749379 99999 BANGMI KS 37.867 126.81700000000001 6.0 19531018 19540815 749380 99999 C 330 HELIPORT KS RK80 38.133 127.66799999999999 121.9 19531029 19540407 749383 99999 G 404 KS RK13 38.088 127.98700000000001 199.6 19531019 19540817 749385 99999 KAP YONG TEAM 824 KS 37.833 127.51700000000001 77.0 19541112 19561010 749386 99999 SOSAN KS 36.783 126.45 27.0 19540630 19551224 749388 99999 CHANGGAI GAP KS 36.083 129.567 21.0 19580515 19700930 749390 99999 OTA JA 36.266999999999996 139.417 27.0 19571027 19580430 749391 99999 RIPSAW RANGE JA 40.867 141.36700000000002 2.0 19690815 19710312 749392 99999 KISKA ISLAND US AK 51.983000000000004 177.55 91.0 19430905 19451020 749393 99999 COOPER ISLANDS WEST US AK 52.917 173.167 14.0 19430812 19431031 749394 99999 AMCHITKA ISLAND N US AK 51.65 178.667 307.0 19430422 19431008 749395 99999 BULDIR ISLAND US AK 52.175 175.967 15.0 19431016 19450814 749396 99999 SEMISOPOCHNOI ISLAND US AK 51.917 179.583 30.0 19440229 19440930 749399 99999 IGARAPE-ACU NORTH BR -1.067 -47.617 57.0 19450514 19450920 749400 99999 BOCAIUVA SOUTHEAST BR -17.2 -43.667 828.0 19470406 19470523 749401 99999 LEONE BAY AQ -14.367 -170.783 21.0 19620511 19620729 749402 99999 KAMERI ID -0.95 134.817 5.0 19440705 19450131 749403 99999 SANSAPOR ID -0.5 132.083 0.0 19440812 19450303 749404 99999 MAR NORTH ID -0.35 132.183 4.0 19450312 19450920 749405 99999 DEBOIN MISSION PP -8.067 148.167 107.0 19430418 19440310 749406 99999 NADZAB NEW GUINEA PP AYNZ -6.566 146.733 107.0 19430930 19450810 749407 99999 UKARUMPA PP -6.067 145.917 394.0 19431018 19440917 749408 99999 FORE SOUTH PP -5.667000000000001 145.3 131.0 19431207 19440506 749409 99999 PAIPA SOUTHWEST PP -5.75 145.667 305.0 19431110 19441031 749410 99999 TSILE TSILE PP -6.867000000000001 146.35 150.0 19430831 19431013 749411 99999 KORUNIAT SOUTH PP -2.0 147.35 4.0 19440315 19451016 749413 99999 EMIRAU ISLAND NORTH PP -1.65 149.967 33.0 19440531 19450817 749414 99999 LOS NEGROS ADMRTY IS/MOMOTE S PP -2.05 147.433 8.0 19470331 19480225 749415 99999 WATALUM MISSION PP -9.232999999999999 150.25 0.0 19430511 19430531 749416 99999 GUASAPA SOUTHWEST PP -9.2 152.95 7.0 19430731 19450209 749417 99999 KIRIWINA I TOBRIAND IS/S STRI PP -8.482999999999999 151.05 33.0 19430725 19431030 749419 99999 TOROKINA FLD BOUGAINVILLE IS BP -6.25 155.116 3.0 19440229 19440408 749420 99999 STIRLING ISLAND BP -7.417000000000001 155.583 23.0 19440204 19450126 749422 99999 BOUGAINVILLE AAF BP -6.233 155.11700000000002 40.0 19440408 19450927 749423 99999 BANIKA AAF BP -9.067 159.233 18.0 19440716 19450918 749425 99999 SOPANITOGHA SOUTH BP -9.433 160.183 7.0 19430731 19450519 749429 99999 NUKUFETAU SOUTHEAST TV -8.067 178.38299999999998 2.0 19431216 19440125 749430 99999 AIDELAIDE RIVER SE AS -13.3 131.13299999999998 131.0 19430228 19440821 749432 99999 BATCHELOR FIELD AUSTRALIA AS -13.049000000000001 131.066 107.0 19421231 19430610 749438 99999 IRON RANGE AUSTRALIA AS -12.7 143.3 18.0 19420917 19440930 749439 99999 MAREEBA AS/HOEVETT FIELD AS -17.05 145.4 443.0 19420630 19440630 749440 99999 REID EAST AS -19.767 146.85 122.0 19421012 19430405 749441 99999 TOWNSVILLE AUSTRALIA/GARBUTT AS ABTL -19.249000000000002 146.749 6.0 19421231 19450913 749442 99999 WOODSTOCK AS -19.634 146.858 60.1 19430204 19430930 749443 99999 JACKY JACKY AUSTRALIA/HIGGINS AS -10.933 142.483 14.0 19440930 19441231 749444 99999 FALL RIVER NEW GUINEA/GURNEY PP -10.315999999999999 150.333 27.0 19420801 19450731 749445 99999 ESPIRITU SANTO NH -15.5 167.25 9.0 19421231 19470131 749446 99999 MELE EAST NH -17.683 168.3 20.0 19430228 19441014 749447 99999 SAVU SAU FJ -16.633 178.533 79.0 19430630 19440229 749455 99999 LAKE BUCHANAN WEST AS -21.416999999999998 145.233 396.0 19420921 19421004 749459 99999 DALBY SOUTHEAST AS -27.25 151.417 413.0 19431231 19441211 749462 99999 OUA TOM SOUTHWEST NC -21.816999999999997 165.86700000000002 37.0 19430402 19431229 749463 99999 TARBEVILLE SOUTHEAST NC -21.267 164.917 14.0 19421031 19451115 749467 99999 NORTH PARRAMATTA AS -33.8 151.0 19.0 19420831 19420923 749471 99999 MOBILE WEATHER UNIT NO 01 10 MO 0.0 0.0 0.0 19450401 19450430 749473 99999 SUNSPOT SOLAR OBSV US NM 32.8 -105.81700000000001 2810.0 19480601 19480701 749475 99999 WHITE SANDS NORTH US NM 32.883 -106.35 1206.0 19630402 19741026 749476 99999 HOLTVILLE NAVAL AUX US CA 32.833 -115.26700000000001 17.0 19450301 19460301 749477 99999 SALTON SEA US CA 33.417 -115.833 0.0 19660101 19700101 749479 99999 VANDENBERG CA/SUDDEN RANCH AF US CA 34.583 -120.633 100.0 19690305 19690731 749483 00394 JACKSON COUNTY AIRPORT US GA K19A 34.147 -83.561 290.2 20110927 20200625 749483 99999 JACKSON CO US GA 34.174 -83.561 289.9 19450201 20180516 749484 00395 SOUTH COUNTY AIRPORT OF SANTA CLARA COUNTY US CA KE16 37.082 -121.59700000000001 86.3 20111001 20200609 749484 99999 LORING INTL US ME 46.95 -67.88600000000001 227.4 19450501 20180303 749485 00396 ROHNERVILLE AIRPORT US CA KFOT 40.554 -124.133 119.2 20110921 20200625 749486 00397 NEVADA COUNTY AIR PARK US CA KGOO 39.224000000000004 -121.00299999999999 961.0 20110921 20200620 749486 99999 NEVADA CO AIR PARK US CA KGOO 39.224000000000004 -121.00299999999999 960.7 20180104 20180519 749487 99999 SHAWNEE OKLAHOMA NAS US OK -35.35 -96.949 329.0 19450301 19450601 749488 99999 PALESTINE TEXAS WBO US TX 31.75 -95.666 155.0 19480101 19490301 749495 99999 TWENTYNINE PALMS E US CA 34.133 -116.03299999999999 600.0 19420701 19430403 749496 99999 MOGUL US GA 32.833 -83.56700000000001 141.0 19480101 19481201 749497 99999 SALE MOROCCO AAB MO -34.05 -6.766 75.0 19430801 19430827 749498 99999 TANAPAG CQ 15.217 145.75 11.0 19450630 19510531 749499 99999 CERIGNOLA IT 41.266999999999996 15.917 123.0 19431204 19450624 749500 99999 US ARMY POSITION IT 41.233000000000004 15.8 167.0 19440831 19441130 749501 99999 SAN MARCOS EVANGELIS IT 41.033 14.333 40.0 19440910 19470508 749502 99999 FINOCCHIO IT 41.867 12.667 20.0 19440615 19441215 749503 99999 MIGLIACCIARO FR 42.0 9.4 18.0 19441020 19450407 749504 99999 RIONE TRIESTE IT 40.867 14.467 81.0 19440128 19440206 749505 99999 MASSERIA TORRETTA IT 41.183 15.767000000000001 223.0 19440630 19450131 749506 99999 FANDETTA IT 41.417 15.65 69.0 19440630 19450531 749507 99999 PONTEDERA IT 43.65 10.617 11.0 19441130 19450430 749508 99999 VADA EAST IT 43.35 10.482999999999999 14.0 19440901 19440930 749509 99999 HARMON AB GQ 13.517000000000001 144.817 54.0 19450630 19490927 749510 99999 MASSERIA TRENTANGELI IT 41.0 15.867 389.0 19441103 19450424 749511 99999 FIRENZE CENTER IT 43.766999999999996 11.25 67.0 19441001 19450922 749512 99999 MASSERIA FIGURELLA IT 41.6 15.3 97.0 19441031 19450531 749513 99999 LIVORNO IT 43.533 10.25 0.0 19441002 19450430 749514 99999 MASSERIA IL TORO IT 41.3 15.833 91.0 19440726 19450525 749515 99999 ROME ITALY/CIAMPINO AB IT 41.8 12.6 129.0 19441216 19470731 749516 99999 BROOKS BROOK/STP6 US -60.483000000000004 -133.45 804.0 19430801 19450601 749517 99999 NORTH FIELD CQ 15.267000000000001 145.817 47.0 19450731 19450831 749518 99999 CASTELLANA IT 40.917 14.433 27.0 19440321 19450831 749519 99999 SAN GIOVANNI FONTE IT 41.233000000000004 15.8 167.0 19440911 19450524 749520 99999 SOSSENHEIM GM 50.133 8.583 130.0 19460831 19470214 749521 99999 SAN SEVERO IT 41.7 15.433 50.0 19431231 19450524 749522 99999 MASSERIA CANTONE IT 41.55 15.55 62.0 19441018 19450114 749523 99999 LUCERA IT 41.5 15.333 125.0 19440204 19450524 749524 99999 KAGMAN POINT CQ 15.167 145.783 72.0 19450630 19450829 749525 99999 MASSERIA CATENACCIO IT 41.283 15.467 154.0 19440430 19450430 749526 99999 TRE CONI IT 41.75 12.683 374.0 19440607 19440621 749527 99999 VILLA MANZARI IT 41.283 15.717 124.0 19450203 19450519 749528 99999 TORRETTO ITALY IT 41.183 15.765999999999998 223.0 19440901 19450527 749529 99999 OROTE POINT GQ 13.433 144.63299999999998 30.0 19440816 19441031 749530 99999 PRUNELLI CORSICA IT 42.0 9.383 163.0 19440422 19441019 749531 99999 VALCACCIA FR 42.033 9.367 56.0 19440215 19440531 749532 99999 REVINCO FR 42.567 9.45 49.0 19440708 19450518 749533 99999 ORTALE FR 42.6 9.45 16.0 19440806 19440927 749534 99999 FRATTAMAGGIORE ITALY IT 40.883 14.283 43.0 19440229 19440531 749535 99999 QUERCIOLO FR 42.483000000000004 9.5 23.0 19440923 19441227 749536 99999 CASA DALFONSO IT 41.717 15.367 38.0 19431231 19450430 749537 99999 CALETTA IT 43.4 10.4 0.0 19450122 19450521 749538 99999 OBERPFAFFENHOFEN GERMANY AD GM 48.083 11.265999999999998 580.0 19460814 19490731 749539 99999 SERUMI ID -1.2329999999999999 136.2 23.0 19440630 19441001 749540 99999 SALAMAUA PP -7.05 147.05 3.0 19430930 19440123 749541 99999 BROOKS BROOK/STP6 US -60.483000000000004 -133.45 804.0 19450501 19450818 760011 99999 TIJUANA MX 32.533 -116.98299999999999 152.0 19730101 19900219 760013 99999 GENERAL ABELARDO L RODRIGUEZ INTL MX MMTJ 32.541 -116.97 149.0 19900314 20200624 760014 99999 TIJUANA MX 32.55 -117.0 153.0 19940119 19940824 760051 99999 MEXICALI MX 32.633 -115.21700000000001 22.0 19730101 19900219 760053 99999 GENERAL RODOLFO SANCHEZ TABOADA INTL MX MMML 32.631 -115.242 22.6 19900314 20200624 760054 99999 MEXICALI MX 32.633 -115.26700000000001 22.0 19940103 19940824 760400 99999 EJIDO NUEVO LEON BC. MX 32.4 -115.18299999999999 11.0 19911114 20200624 760500 99999 ENSENADA BC MX 31.666999999999998 -116.56700000000001 10.0 19490601 20200312 760550 99999 SAN FELIPE BCN MX 31.033 -114.85 15.0 19810601 20200624 760610 99999 PUERTO PENASCO SON. MX 31.3 -113.55 62.0 19490201 20200624 760620 99999 PUERTO PENASCO MX 31.333000000000002 -113.55 3.0 20050430 20050430 760751 99999 CIUDAD INTL MX 31.633000000000003 -106.43299999999999 1167.0 19730101 19900219 760753 99999 ABRAHAM GONZALEZ INTL MX MMCS 31.636 -106.429 1189.9 19900314 20200624 760754 99999 GENERAL DIV P A ANGEL H CORZO MOLINA MX MMTB 16.74 -93.17299999999999 581.9 19940108 20160526 760801 99999 NOGALES-IN-SONORA MX NOG 31.233 -110.98299999999999 1222.0 19730101 19771215 761130 99999 ALTAR SON. MX 30.717 -111.833 398.0 19490201 20200624 761180 99999 PILARES DE NACOZARI SON. MX 30.366999999999997 -109.68299999999999 1041.0 19490201 20030601 761220 99999 NUEVA CASAS GRANDES CHIH. MX 30.366999999999997 -107.95 1487.0 19490301 20200624 761300 99999 VILLA AHUMADA MX 30.616999999999997 -106.51700000000001 1181.0 19490109 19740709 761510 99999 ISLA GUADALUPE MX 29.17 -118.32 23.0 19490101 20021220 761600 99999 GENERAL IGNACIO P GARCIA INTL MX MMHO 29.096 -111.04799999999999 191.1 19490402 20200624 761601 99999 HERMOSILLO MX 29.066999999999997 -110.98299999999999 211.0 19940103 19940824 761610 99999 HERMOSILLO INTL & MX 29.083000000000002 -110.95 211.0 19730101 19880105 761613 99999 HERMOSILLO INTL MX 29.1 -111.05 187.0 19880105 19910806 762055 99999 SANTA ROSALIA MX 27.3 -112.28299999999999 103.0 19730101 19760806 762200 99999 TEMOSACHIC CHIH. MX 28.95 -107.81700000000001 1932.0 19490101 20200624 762250 99999 CHIHUAHUA CHIH. MX 28.633000000000003 -106.083 1433.0 19520301 20200624 762252 99999 CHIHUAHUA INTL & MX 28.7 -105.96700000000001 1354.0 19730101 19900109 762253 99999 GENERAL R FIERRO VILLALOBOS INTL MX MMCU 28.703000000000003 -105.965 1360.0 19900111 20200624 762254 99999 CHIHUAHUA MX 28.7 -105.98299999999999 1360.0 19940116 19940824 762430 99999 PIEDRAS NEGRAS INTL MX MMPG 28.627 -100.535 274.6 19730103 20200624 762530 99999 CIUDAD OBREGON INTL MX MMCN 27.393 -109.833 62.5 19790701 20200624 762533 99999 SANTA ROSALIA MX 27.316999999999997 -112.31700000000001 75.0 19940131 19940824 762550 99999 GUAYMAS-IN-SONORA MX 27.916999999999998 -110.883 4.0 19520301 19790402 762552 99999 19730101 19731231 762555 99999 GENERAL JOSE MARIA YANEZ INTL MX MMGM 27.969 -110.925 18.0 19750617 20200624 762556 99999 GUAYMAS INTL APT MX 27.967 -110.95 27.0 19940108 19940824 762560 99999 EMPALME SON. MX 27.95 -110.76700000000001 12.0 19770101 20200624 762580 99999 CIUDAD OBREGON SON MX 27.483 -109.917 38.0 19730101 20200624 762582 99999 19730101 19770208 762800 99999 SIERRA MOJADA MX 27.283 -103.667 1398.0 19490101 19511130 762861 99999 NUEVO LAREDO MX 27.433000000000003 -99.56700000000001 141.0 19730101 19900219 762863 99999 QUETZALCOATL INTL MX MMNL 27.444000000000003 -99.57 147.5 19900314 20200624 762864 99999 NUEVO LAREDO INTL MX 27.433000000000003 -99.583 148.0 19940116 19940824 763050 99999 LORETO INTL MX MMLT 25.989 -111.348 10.4 19801018 20200624 763110 99999 CHOIX SIN. MX 26.733 -108.28299999999999 238.0 19760317 20200624 763230 99999 HIDALGO DEL PARRAL CHIH. MX 26.933000000000003 -105.667 1661.0 19780301 20200624 763340 99999 TULANCINGO MX 20.083 -98.367 2181.0 20010817 20110622 763420 99999 MONCLOVA INTL MX MMMV 26.956 -101.47 568.1 19490108 20200624 763425 99999 MULEGE MX MMMG 26.906999999999996 -111.96799999999999 42.7 19730622 20101016 763490 99999 CAMARGO MX 26.316999999999997 -98.833 68.0 19490701 19520101 763501 99999 REYNOSA INTL MX 26.017 -98.23299999999999 39.0 19730101 19900219 763503 99999 GENERAL LUCIO BLANCO INTL MX MMRX 26.009 -98.229 42.4 19900314 20200624 763504 99999 REYNOSA INTL ARPT MX 26.017 -98.25 39.0 19940108 19940824 763610 99999 LOS MOCHIS (CITY) MX 25.8 -109.117 17.0 19730101 19750630 763615 99999 VALLE DEL FUERTE INTL MX MMLM 25.685 -109.081 4.9 19750701 20200624 763616 99999 LOS MOCHIS APT MX 25.683000000000003 -109.1 4.0 19940307 19940824 763730 99999 TEPEHUANES DGO. MX 25.35 -105.75 1967.0 19821001 20200624 763810 99999 LERDO-IN-DURANGO MX 25.533 -103.51700000000001 1140.0 19730112 19770224 763820 99999 TORREON INTL MX MMTC 25.568 -103.411 1124.1 19490101 20200624 763821 99999 TORREJON MX 25.533 -103.46700000000001 1124.0 19940108 19940824 763822 99999 19730101 19731231 763825 99999 TORREON AIRPORT & MX 25.533 -103.45 1150.0 19750618 19910320 763900 99999 SALTILLO COAH. MX 25.366999999999997 -101.01700000000001 1790.0 19730101 20200624 763930 99999 MONTERREY N.L. MX 25.733 -100.3 515.0 19730101 20200624 763940 99999 DEL NORTE INTL MX MMAN 25.866 -100.23700000000001 449.9 19730101 20200624 763943 99999 GENERAL MARIANO ESCOBEDO INTL MX MMMY 25.778000000000002 -100.10700000000001 389.5 19900601 20200624 763944 99999 MONTERREY/ESCOBEDO MX 25.767 -100.1 387.0 19870320 19940630 763990 99999 MATAMOROS (CITY) MX 25.866999999999997 -97.51700000000001 12.0 19730103 19780202 763991 99999 MATAMOROS INTL MX 25.767 -97.53299999999999 7.0 19730101 19900219 763993 99999 GENERAL SERVANDO CANALES INTL MX MMMA 25.77 -97.525 7.6 19900314 20200624 763994 99999 MATAMOROS INTL MX 25.767 -97.55 8.0 19940108 19940824 764010 99999 PUERTO CORTES MX 22.467 -111.53299999999999 5.0 19490212 20121002 764015 99999 LORETO & MX 26.0 -111.367 6.0 19730101 19910320 764020 99999 CIUDAD CONSTITUCION BCS MX 25.0 -111.633 48.0 19801011 20200624 764050 99999 LA PAZ BCS MX 24.166999999999998 -110.3 18.0 19520807 20200624 764054 99999 LA PAZ MX 24.066999999999997 -110.383 21.0 19940103 19940824 764055 99999 GENERAL MANUEL MARQUEZ DE LEON INTL MX MMLP 24.073 -110.36200000000001 21.0 19750618 20200624 764056 99999 LOS CABOS INTL MX MMSD 23.151999999999997 -109.721 114.0 19910321 20200624 764057 99999 SAN JOSE DEL CABO MX 23.15 -109.71700000000001 109.0 19940601 19940824 764120 99999 CULIACAN INTL MX MMCL 24.765 -107.475 32.9 19730101 20200624 764121 99999 CULIACAN MX 24.816999999999997 -107.43299999999999 39.0 19940108 19940824 764125 99999 CULIACAN (CITY) & MX 24.816999999999997 -107.4 53.0 19750618 19910806 764230 99999 DURANGO DGO. MX 24.05 -104.6 1872.0 19730101 20200624 764232 99999 19730101 19731231 764235 99999 DURANGO INTL MX MMDO 24.124000000000002 -104.52799999999999 1860.5 19750618 20200624 764236 99999 DURANGO APT MX 24.133000000000003 -104.55 1857.0 19940108 19940824 764580 99999 COLONIA JUAN CARRASCO MAZATLAN SIN. MX 23.2 -106.417 4.0 19730102 20200624 764590 99999 19730101 19750331 764591 99999 MAZATLAN/G.BUELNA I MX 23.15 -106.25 5.0 19750401 19900219 764593 99999 GENERAL RAFAEL BUELNA INTL MX MMMZ 23.160999999999998 -106.266 11.6 19900501 20200624 764594 99999 MAZATLAN/G. RAFAEL MX 23.166999999999998 -106.28299999999999 10.0 19900314 19940630 764710 99999 SOMBRERETE ZAC. MX 23.633000000000003 -103.65 2351.0 19780401 20200624 764900 99999 ISLA PEREZ MX 22.383000000000003 -89.68299999999999 1.5 19730919 20200624 764910 99999 CIUDAD VICTORIA TAMPS. MX 23.733 -99.133 355.0 19490101 20200624 764915 99999 GENERAL PEDRO JOSE MENDEZ INTL MX MMCV 23.704 -98.95700000000001 232.0 19750618 20200624 764916 99999 CIUDAD VICTORIA APT MX 23.717 -98.98299999999999 238.0 19940119 19940824 764990 99999 SOTO LA MARINA TAMPS. MX 23.767 -98.2 21.0 19491101 20200624 765180 99999 HUEJUCAR MX 22.383000000000003 -103.367 1932.0 19730110 19780302 765190 99999 COLOTLAN JAL. MX 22.1 -103.26700000000001 1673.0 19760401 20200624 765250 99999 ZACATECAS ZAC. (LA BUFA ZAC.) MX 22.783 -102.56700000000001 2612.0 19730109 20200612 765254 99999 ZACATECAS MX 22.9 -102.71700000000001 2140.0 19940103 19940824 765255 99999 GENERAL LEOBARDO C RUIZ INTL MX MMZC 22.897 -102.68700000000001 2176.6 19840908 20200624 765260 99999 ZACATECAS ZAC. MX 22.75 -102.5 -999.9 20051211 20140416 765390 99999 PONCIANO ARRIAGA INTL MX MMSP 22.254 -100.931 1839.5 19730101 20200624 765395 99999 SAN LUIS POTOSI MX 22.166999999999998 -101.0 1903.0 19940103 19940824 765411 99999 TAMUIN/VILLA TAMUIN MX 22.05 -98.8 50.0 19730101 19770216 765430 99999 TAMUIN S.L.P. MX 22.0 -98.76700000000001 104.0 19750814 20160419 765480 99999 TAMPICO TAMPS MX 22.2 -97.85 25.0 19730101 20200624 765490 99999 TAMPICO MX 22.283 -97.85 15.0 19730101 19750331 765491 99999 TAMPICO/GEN FJ MINA MX 22.283 -97.85 24.0 19750401 19900219 765493 99999 GENERAL FRANCISCO JAVIER MINA INTL MX MMTM 22.296 -97.866 24.4 19900503 20200624 765494 99999 TAMPICO INTL ARPT MX 22.283 -97.883 24.0 19900315 19940630 765510 99999 ISLAS MARIAS NAY MX 21.616999999999997 -106.55 2.0 19730103 20170621 765560 99999 TEPIC MX MMEP 21.419 -104.84299999999999 920.5 19730112 20200624 765563 99999 TEPIC MX 21.517 -104.917 922.0 19940306 19940824 765700 99999 ISLA LOBOS MX 21.467 -97.2 5.0 19790402 19800920 765710 99999 JESUS TERAN INTL MX MMAS 21.705 -102.318 1862.9 19730101 20200624 765713 99999 AGUASCALIENTES MX 21.883000000000003 -102.31700000000001 1885.0 19940124 19940824 765730 99999 LAGOS DE MORENO JAL. MX 21.35 -101.917 1942.0 19730109 20200624 765750 99999 LEON/SAN CARLOS MX 21.066999999999997 -101.53299999999999 1829.0 19730102 20130205 765752 99999 LEON/SAN CARLOS MX 21.066999999999997 -101.55 1829.0 19730101 19900109 765754 99999 LEON/SAN CARLOS MX LEN 21.066999999999997 -101.55 1829.0 19900111 19900316 765770 99999 GUANAJUATO GTO. MX 21.0 -101.28299999999999 1999.0 19730101 20200624 765773 99999 GUANAJUATO INTL MX MMLO 20.983 -101.48299999999999 1815.4 19900724 20200624 765774 99999 DEL BAJIO/LEON MX 21.0 -101.5 1819.0 19940306 19940824 765800 99999 CAYO ARENAS MX 22.133000000000003 -91.4 3.0 19730101 19830711 765801 99999 CAYO ARENAS MX 22.133000000000003 -91.4 3.0 20171116 20200624 765810 99999 RIO VERDE S.L.P. MX 21.933000000000003 -99.98299999999999 983.0 19730101 20200624 765820 99999 GUTIERREZ ZAMORA MX 20.467 -97.083 20.0 19730103 19760108 765825 99999 POZA RICA/AIRPORT MX PZA 20.5 -97.46700000000001 62.0 19730719 19840701 765850 99999 MATLAPA S.L.P. MX 21.316999999999997 -98.81700000000001 132.0 19790701 20200624 765900 99999 CANCUN AIRPORT MX 21.017 -86.867 5.0 19790112 19790112 765905 99999 CANCUN INTL MX 21.017 -86.867 5.0 19730721 19940630 765906 99999 CANCUN INTL MX 21.033 -86.867 6.0 19900501 20081231 765930 99999 PROGRESO YUC. MX 21.3 -89.65 2.0 19730103 20200624 765950 99999 CANCUN INTL MX MMUN 21.037 -86.87700000000001 6.1 19990315 20200624 765990 99999 ISLA MUJERES MX 21.2 -86.71700000000001 7.0 19730104 19750711 766010 99999 PUERTO VALLARTA MX 20.683000000000003 -105.25 6.0 19800611 19880105 766011 99999 PUERTO VALLARTA MX PVR 20.683000000000003 -105.25 6.0 19730101 19800605 766013 99999 LICENCIADO GUSTAVO DIAZ ORDAZ INTL MX MMPR 20.68 -105.25399999999999 7.0 19900501 20200624 766014 99999 PUERTO VALLARTA MX 20.666999999999998 -105.26700000000001 6.0 19880105 19940630 766015 99999 ZAPOPAN MX MMZP 20.756 -103.465 1625.5 19960331 20160526 766110 99999 19490308 19511130 766120 99999 GUADALAJARA JAL. MX 20.666999999999998 -103.383 1551.0 19730101 20200624 766123 99999 GUADALAJARA INTL MX 20.517 -103.333 1528.0 19900314 19940630 766127 99999 TAJIN MX MMPA 20.603 -97.461 151.5 19990114 20200624 766130 99999 GUADALAJARA MX 20.6 -103.383 1526.0 19730101 19800128 766131 99999 GUADALAJARA INTL & MX 20.517 -103.31700000000001 1526.0 19750401 19900219 766133 99999 DON MIGUEL HIDALGO Y COSTILLA INTL MX MMGL 20.522 -103.311 1528.9 19900501 20200624 766134 99999 SAN JOSE DEL CABO & MX 22.666999999999998 -102.55 0.0 19771005 19910320 766250 99999 QUERETARO INTERCONTINENTAL MX MMQT 20.616999999999997 -100.186 1919.0 19730101 20200624 766320 99999 PACHUCA HGO. MX 20.133 -98.75 2435.0 19730101 20200624 766340 99999 TULANCINGO HGO. MX MMTL 20.083 -98.367 2181.0 19730106 20200624 766342 99999 TULANCINGO MX 20.083 -98.367 2181.0 19730101 19900109 766343 99999 TULANCINGO MX 20.083 -98.367 2181.0 19900111 19910320 766390 99999 19730101 19740429 766400 99999 TUXPAN.VER. MX 20.95 -97.4 28.0 19730101 20200624 766405 99999 AZCATLAN MX 20.283 -97.71700000000001 364.0 19730801 19740909 766420 99999 TRIANGULOS REEFS MX 20.967 -92.31700000000001 2.0 19730101 20120113 766421 99999 NAUTLA (RBN) MX 20.2 -96.76700000000001 3.0 19750701 19780311 766430 99999 CAYO ARCAS (ISLAND) MX 20.217 -91.96700000000001 3.0 20020122 20191106 766440 99999 LICENCIADO MANUEL CRESCENCIO REJON INT MX MMMD 20.936999999999998 -89.65799999999999 11.6 19730101 20200624 766443 99999 MERIDA/LICENCIADO MX 20.933000000000003 -89.667 10.0 19900501 19940927 766450 99999 19730101 19730410 766470 99999 VALLADOLID YUC. MX 20.683000000000003 -88.2 27.0 19730103 20200624 766480 99999 COZUMEL INTL MX MMCZ 20.522 -86.926 9.1 19730103 20200624 766483 99999 COZUMEL MX 20.517 -86.93299999999999 5.0 19900314 19910320 766490 99999 COZUMEL (FAM) Q ROC MX 20.517 -86.93299999999999 4.0 19730101 19980630 766491 99999 COZUMEL INTL ARPT & MX 20.517 -86.95 3.0 19750401 19900219 766493 99999 COZUMEL INTL MX 20.517 -86.917 5.0 19900508 20081231 766534 99999 PLAYA DE ORO INTL MX MMZO 19.145 -104.559 9.1 19780420 20200624 766535 99999 MANZANILLO MX 19.15 -104.583 8.0 19940108 19940824 766540 99999 MANZANILLO COL. MX 19.05 -104.31700000000001 3.0 19730102 20200624 766545 99999 MANZANILLO INTL & MX 19.15 -104.56700000000001 5.0 19730101 19810218 766546 99999 LICENCIADO Y GEN IGNACIO LOPEZ RAYON MX MMPN 19.397000000000002 -102.039 1602.6 19730101 20200624 766547 99999 URUAPAN/GEN RAYON MX 19.4 -102.05 1593.0 19730103 19940824 766560 99999 CIUDAD GUZMAN JAL. MX 19.717 -103.46700000000001 1515.0 19730804 20200624 766580 99999 COLIMA MX MMIA 19.277 -103.57700000000001 751.9 19730101 20200624 766581 99999 COLIMA & MX 19.233 -103.73299999999999 494.0 19881223 19890125 766583 99999 COLIMA MX MMIA 19.267 -103.6 723.0 19940306 19940823 766585 99999 COLIMA ARPT MX IMA 19.217 -103.71700000000001 457.0 19730101 19760925 766620 99999 ZAMORA MICH. MX 19.983 -102.31700000000001 1562.0 19740808 20200624 766650 99999 MORELIA MICH. MX 19.7 -101.18299999999999 1913.0 19730103 20200624 766655 99999 GENERAL FRANCISCO J MUJICA INTL MX MMMM 19.85 -101.02600000000001 1838.9 19730101 20200624 766656 99999 MORELIA NEW MX 19.85 -101.05 1833.0 19940108 19940824 766700 99999 FES CUAUTITLAN MX 19.683 -99.18299999999999 2251.0 20070228 20080910 766714 99999 NAME\LOCATION UNKN MX 0.0 0.0 -999.0 19830707 19840630 766724 99999 NAME0LOCATION UNKN MX ZCL 19840320 19840630 766750 99999 TOLUCA MEX. MX 19.283 -99.68299999999999 2720.0 19730101 20200624 766753 99999 LICENCIADO ADOLFO LOPEZ MATEOS INTL MX MMTO 19.337 -99.566 2580.4 19870320 20200624 766754 99999 TOLUCA/JOSE MARIA MX 19.35 -99.583 2576.0 19940127 19940824 766790 99999 AEROP INTERNACIONAL MEXICO D F MX 19.433 -99.133 2235.0 19730101 20130430 766792 99999 19730101 19731231 766793 99999 LICENCIADO BENITO JUAREZ INTL MX MMMX 19.436 -99.072 2229.9 19850719 20200624 766800 99999 MEXICO (CENTRAL) D.F. MX 19.4 -99.18299999999999 2303.0 19730101 20200624 766810 99999 GEOGRAFIA UNAM MX 19.317 -99.18299999999999 2278.0 20070503 20200329 766830 99999 TLAXCALA TLAX. MX 19.317 -98.25 2248.0 19730130 20200624 766850 99999 HERMANOS SERDAN INTL MX MMPB 19.158 -98.37100000000001 2243.6 19730102 20200624 766855 99999 PUEBLA MX 19.033 -98.21700000000001 2166.0 19940623 19940824 766870 99999 JALAPA VER. MX 19.55 -96.917 1389.0 19730101 20200624 766875 99999 LENCERO MX MMJA 19.475 -96.79799999999999 953.1 19750703 19770215 766890 99999 CAYO ARCAS MX 20.217 -92.01700000000001 3.0 19750109 19840702 766900 99999 TRIANGULOS REEFS & MX 20.95 -92.26700000000001 0.0 19730101 19820913 766910 99999 VERACRUZ/GEN JARA MX 19.2 -96.133 14.0 19730101 19940630 766913 99999 GENERAL HERIBERTO JARA INTL MX MMVR 19.146 -96.18700000000001 27.4 19900501 20200624 766920 99999 HACIENDA YLANG YLANG VERACRUZ VER. MX 19.15 -96.117 16.0 19730101 20200624 766950 99999 INGENIERO ALBERTO ACUNA ONGAY INTL MX MMCP 19.817 -90.5 10.4 19730101 20200624 766953 99999 CAMPECHE/IGNACIO MX 19.833 -90.5 10.0 19900314 19940824 766960 99999 19730101 19750630 766961 99999 CAMPECHE/IGNACIO & MX 19.833 -90.51700000000001 9.0 19750618 19900219 766980 99999 FELIPE CARRILLO PUERTO Q ROO MX 19.567 -88.05 10.0 19810101 20200624 767130 99999 CUIDAD DEL CARMEN MX 18.63 -91.83 2.0 20100313 20110118 767230 99999 ISLA SOCORRO COL. MX 18.717 -110.95 35.0 19730101 20090823 767260 99999 GENERAL MARIANO MATAMOROS MX MMCB 18.835 -99.262 1303.6 19801001 20200624 767270 99999 ZACATEPEC MOR MX 18.7 -99.167 995.8 19730104 20200624 767370 99999 ORIZABA VER. MX 18.85 -97.1 1259.0 19730103 20200624 767375 99999 TEHUACAN MX MMHC 18.497 -97.42 1679.1 19730101 19770824 767380 99999 CORDOBA-IN-VERACRUZ MX 18.9 -96.93299999999999 882.7 19730102 20200624 767383 99999 MINATITLAN MX MMMT 18.102999999999998 -94.581 11.0 19940314 20200624 767410 99999 COATZACOALCOS VER MX 18.183 -94.5 16.0 19730103 20200624 767430 99999 VILLAHERMOSA TAB. MX 17.983 -92.93299999999999 16.0 19750814 20200620 767433 99999 C P A CARLOS ROVIROSA INTL MX MMVA 17.983 -92.81700000000001 14.0 19900314 20200624 767434 99999 VILLAHERMOSA MX 18.0 -92.833 13.0 19940630 19940824 767441 99999 VILLAHERMOSA & MX 18.017 -92.95 33.0 19730101 19900219 767460 99999 VILLAHERMOSA MX 18.0 -92.883 -999.0 20020622 20020622 767473 99999 CIUDAD DEL CARMEN MX MMCE 18.65 -91.78299999999999 3.0 19880129 19880303 767490 99999 CIUDAD DEL CARMEN MX 18.65 -91.78299999999999 3.0 19730101 19880105 767493 99999 CIUDAD DEL CARMEN INTL MX MMCE 18.654 -91.79899999999999 3.0 19880303 20200624 767494 99999 CIUDAD DEL CAR MX 18.65 -91.833 2.0 19940108 19940824 767500 99999 CHETUMAL INTL MX MMCM 18.505 -88.32700000000001 11.9 19730101 20200624 767501 99999 CHICHEN ITZA INTL MX MMCT 20.641 -88.446 31.1 20040510 20200427 767502 99999 IXTEPEC MX MMIT 16.449 -95.094 50.0 19730101 20160526 767503 99999 CABO SAN LUCAS MX MMSL 22.948 -109.939 210.0 19940628 20200624 767510 99999 CHETUMAL Q ROO (FAM) MX 19.0 -86.31700000000001 13.0 19901120 20200623 767581 99999 ZIHUATANEJO MX ZIH 17.65 -101.45 6.0 19730101 19800605 767584 99999 IXTAPA ZIHUATANEJO INTL MX MMZH 17.602 -101.461 7.9 19800611 20200624 767585 99999 IXTAPA-ZIHUATANEJO MX 17.6 -101.48299999999999 6.0 19940116 19940824 767620 99999 CHILPANCINGO RO. MX 17.55 -99.5 1265.0 19730101 20200624 767730 99999 HUAJUAPAN DE LEON OAX MX 17.789 -97.772 1606.0 19790501 20200624 767750 99999 OAXACA OAX. MX 17.05 -96.71700000000001 1518.0 19500401 20200624 767755 99999 XOXOCOTLAN INTL MX MMOX 17.0 -96.73299999999999 1520.6 19750618 20200622 767756 99999 OAXACA/XOXOCOTLAN MX 16.967 -96.75 1528.0 19940305 19940824 767810 99999 COATZACOALCOS & MX MTT 18.15 -94.417 14.0 19730101 19850401 767981 99999 TEQUESQUITENGO MX TEQ 18.617 -99.25 99.0 19730101 19811215 768050 99999 ACAPULCO GRO MX 16.75 -99.75 3.0 19730101 20200624 768053 99999 ACAPULCO/G. ALVAREZ MX 16.75 -99.75 5.0 19900501 19940927 768055 99999 PINOTEPA NATL MX 16.35 -98.06700000000001 76.0 19730102 19770126 768056 99999 GENERAL JUAN N ALVAREZ INTL MX MMAA 16.757 -99.75399999999999 4.0 19750618 20200624 768230 99999 SAN PEDRO POCHUTALA MX 15.732999999999999 -96.46700000000001 152.0 20080921 20080921 768235 99999 POCHUTALA MX PTL 15.732999999999999 -96.46700000000001 152.0 19730103 19760620 768300 99999 IXTEPEC MX 16.467 -95.1 61.0 19730101 19771201 768330 99999 SALINA CRUZ OAX. MX 16.167 -95.18299999999999 11.0 19730102 20200624 768400 99999 ARRIAGA CHIS. MX 16.233 -93.9 48.0 19730404 20200624 768420 99999 TUXTLA GUTIERREZ MX 16.75 -93.117 536.0 19730105 19760821 768430 99999 TUXTLA GUTIERREZ CHIS. MX MMTB 16.75 -93.133 576.0 19730101 20200624 768433 99999 TUXTLA GUTIERREZ MX 16.75 -93.133 528.0 19940630 19940824 768435 99999 PALIZADA MX 18.25 -92.083 15.0 19741208 19940920 768450 99999 SN. CRISTOBAL LAS CASAS CHIS. MX 16.75 -92.633 2116.0 19730102 20200624 768480 99999 COMITAN CHIS. MX 16.25 -92.133 1646.0 19730102 20200624 768485 99999 BAHIAS DE HUATULCO INTL MX MMBT 15.775 -96.26299999999999 141.4 19880725 20200624 768486 99999 BAHIAS DE HUATULCO MX 15.783 -96.28299999999999 143.0 19940124 19940824 768550 99999 PUERTO ANGEL OAX. MX 15.683 -96.48299999999999 46.0 19500516 20200624 768556 99999 PUERTO ESCONDIDO INTL MX MMPS 15.877 -97.089 89.6 19880810 20200624 768557 99999 PUERTO ESCONDIDO MX 15.867 -97.1 88.0 19940225 19940824 768560 99999 PUERTO ANGEL OAX. MX 15.667 -96.5 -999.9 19750816 20200624 769030 99999 TAPACHULA CHIS MX 14.917 -92.25 118.0 19730101 20200624 769040 99999 TAPACHULA/AIRPORT MX 14.883 -92.3 110.0 19730101 19880104 769043 99999 TAPACHULA INTL MX MMTP 14.794 -92.37 29.6 19880105 20200624 769045 99999 TAPACHULA INTL ARPT MX 14.8 -92.367 29.0 19931231 19940927 769995 99999 LAZARO CARDENAS MX MMLC 18.002 -102.221 11.9 19730219 19770209 769996 99999 19730401 19740131 769997 99999 PASTEJE MX 19.684 -99.77600000000001 2580.0 19730101 19761028 769998 99999 19730703 19730825 780160 13601 NAVAL ATLANTIC METEROLOGY & OCEANOGRAPHY FACILITY BD TXKF 32.367 -64.683 5.5 19411201 20200624 780160 99999 L F WADE INTL ARPT BD TXKF 32.363 -64.679 4.0 20000101 20041231 780610 99999 WEST END INTL ARPT BF MYGW 26.7 -78.967 4.0 19730101 20190125 780620 99999 GRAND BAHAMA INTL BF MYGF 26.559 -78.696 2.1 19730101 20200624 780630 99999 GRAND BAHAMA BF 26.666999999999998 -78.333 2.0 20040709 20181212 780631 99999 GRAND BAHAMA AUX AF BF MYGM 26.616999999999997 -78.367 2.0 19760101 19810507 780660 99999 GREEN TURTLE CAY ABACO BF 26.75 -77.333 15.0 19730101 20050820 780690 99999 SOUTH BIMINI BINIMI BF 25.7 -79.25 3.0 20090422 20090422 780700 99999 SOUTH BIMINI BF MYBS 25.7 -79.265 3.0 19730101 20180911 780730 99999 NASSAU INTL BF MYNN 25.039 -77.46600000000001 4.9 19730101 20200624 780750 99999 NORTH ELEUTHERA ELEUTHERA BF MYEH 25.483 -76.667 4.0 20070625 20080802 780760 99999 COFFIN HILLS/ELEUTH BF 25.267 -76.3 29.0 20011004 20180316 780770 99999 DUNMORE TOWN HARBOUR IS. ELEUTHERA BF 25.5 -76.633 16.0 19730101 19990818 780810 99999 NASSAU BF 25.083000000000002 -77.367 3.0 20080408 20100401 780830 99999 ANDROSTOWN BF 24.7 -77.767 3.0 20011017 20180710 780850 99999 MANGROVE CAY BF 24.25 -77.65 2.0 19730101 19781030 780860 99999 KEMP'S BAY ANDROS BF 24.083000000000002 -77.55 4.0 19780901 20060111 780870 99999 THE BIGHT CAT ISLAND BF 24.283 -75.417 3.0 19730101 20030902 780880 12716 COCKBURN/SAN SALVAD BF MYSM 24.05 -74.533 7.0 19730101 20200624 780880 99999 SAN SALVADOR BF MYSM 24.063000000000002 -74.524 7.3 20010624 20020424 780910 99999 MOSS TOWN EXUMA BF 23.55 -75.867 3.0 20090422 20090422 780920 99999 GEORGE TOWN BF MYEG 23.467 -75.782 1.5 19730101 20120614 780930 99999 EXUMA INTL BF MYEF 23.563000000000002 -75.878 2.7 20040928 20080619 780940 99999 DEADMAN'S CAY LONG ISLAND BF 23.1 -74.967 9.0 20090421 20090422 780950 99999 CLARENCE TOWN LONG ISLAND BF 23.1 -74.967 9.0 19730101 20180211 781010 99999 DUNCAN TOWN RAGGED ISLAND BF 22.2 -75.733 13.0 19730101 20040428 781030 99999 COLONEL HILL CROOKED ISLAND BF 22.75 -74.233 29.0 19730101 19810227 781040 99999 CHURCH GROVE CROOKED ISLAND BF 22.75 -74.233 29.0 19810101 20020224 781090 99999 ABRAHAM'S BAY MAYAGUANA BF 22.366999999999997 -72.967 3.0 19440605 20050218 781180 12714 TURKS ISLAND TK MBGT 21.45 -71.15 10.0 19440117 19810605 781180 99999 TURKS ISLAND TK MBGT 21.45 -71.15 10.0 20070724 20200624 781200 99999 MATTHEW TOWN INAGUA BF 20.95 -73.65 3.0 20070226 20070227 781210 99999 MATTHEW TOWN BF MYIG 20.975 -73.667 2.4 19730101 20010512 782210 99999 RAFAEL CABRERA CU MUNG 21.835 -82.78399999999999 24.1 19730101 20200617 782215 99999 PLAYA BARACOA CU MUPB 23.033 -82.579 31.1 20070722 20200522 782240 99999 JOSE MARTI INTL CU MUHA 22.989 -82.40899999999999 64.0 19390101 20200624 782250 99999 CASABLANCA CU 23.15 -82.35 51.0 20080721 20100810 782290 99999 JUAN GUALBERTO GOMEZ INTL CU MUVR 23.034000000000002 -81.435 64.0 19730101 20200624 782300 99999 JOVELLANOS CU 22.8 -81.183 25.0 20080721 20121020 782390 99999 CAYO COCO CU 22.533 -78.367 10.0 20080721 20200620 782430 99999 EL YABU CU 22.467 -79.983 116.0 20080721 20200624 782440 99999 JAIME GONZALEZ CU MUCF 22.15 -80.414 31.1 19390101 20200624 782550 99999 IGNACIO AGRAMONTE INTL CU MUCM 21.42 -77.848 125.9 19500101 20200624 782560 99999 MANZANILLO ORIENTE CU MUMZ 20.333 -77.117 60.0 19791207 20200617 782561 99999 JARDINES DEL REY CU MUCC 22.461 -78.328 4.0 20040713 20200624 782570 99999 LAS TUNAS CU 20.95 -76.95 106.0 20080801 20080906 782590 99999 MANZANILLO CU 20.183 -77.15 10.0 20050701 20131008 782591 99999 BAYAMO CU 20.4 -76.617 61.0 19791201 19900219 782593 99999 CARLOS MANUEL DE CESPEDES CU MUBY 20.396 -76.62100000000001 61.9 19300501 20200421 782623 99999 FRANK PAIS INTL CU MUHG 20.785999999999998 -76.315 110.0 19920408 20200624 782624 99999 MANAGUA CU MUMG 22.97 -82.275 114.9 20051218 20190625 782640 99999 ANTONIO MACEO INTL CU MUCU 19.97 -75.835 75.9 19390101 20200624 782650 99999 CABO LURECIA CU 21.066999999999997 -75.617 4.0 20080721 20180623 782670 99999 MARIANA GRAJALES CU MUGT 20.085 -75.158 17.1 19730101 20180813 782680 99999 GUSTAVO RIZO CU MUBA 20.365 -74.506 7.9 19390101 20140924 782684 99999 ORESTES ACOSTA CU MUMO 20.654 -74.922 4.9 19800427 20180813 782700 99999 GUARO CU 20.666999999999998 -75.783 20.0 20080906 20080906 782800 99999 ANTILLA CU 20.833000000000002 -75.717 3.0 19370715 20100313 783100 99999 CABO SAN ANTONIO PINAR DEL RIO CU 21.866999999999997 -84.95 8.0 19490122 20161011 783110 99999 LA BAJADA PINAR DEL RIO CU 21.916999999999998 -84.46700000000001 4.0 19780601 19900331 783120 99999 SANTA LUCIA PINAR DEL RIO CU 22.666999999999998 -83.96700000000001 24.0 20020909 20160113 783130 99999 ISABEL RUBIO PINAR DEL RIO CU 22.166999999999998 -84.1 28.0 19740419 20160113 783134 12857 SAN JULIAN CU MUSJ 22.066999999999997 -84.15 17.1 19361201 19810907 783140 99999 SAN JUAN Y MARTINEZ PINAR DEL RIO CU 22.283 -83.833 30.0 19761001 20160113 783150 99999 PINAR DEL RIO CU 22.416999999999998 -83.68299999999999 37.0 19730101 20161011 783160 99999 LA PALMA PINAR DEL RIO CU 22.767 -83.55 47.0 19761101 20160113 783170 99999 PASO REAL DE SAN DIEGO PINAR DEL RIO CU 22.55 -83.3 44.0 19730101 20160113 783180 99999 BAHIA HONDA PINAR DEL RIO CU 22.916999999999998 -83.167 3.0 19761101 20161011 783190 99999 ARTEMISA LA HABANA CU 22.8 -82.75 42.0 20020618 20160113 783200 99999 GUIRA DE MELENA LA HABANA CU 22.783 -82.51700000000001 10.0 19760302 20160113 783210 99999 LA FE ISLA DE LA JUVENTUD CU 21.733 -82.76700000000001 32.0 19730101 20160113 783220 99999 BATABANO LA HABANA CU 22.717 -82.28299999999999 7.0 20020610 20161011 783230 99999 GUINES LA HABANA CU 22.85 -82.03299999999999 55.0 19730101 20160113 783240 99999 PUNTA DEL ESTE ISLA DE LA JUVENTUD CU 21.55 -82.53299999999999 10.0 19790908 20161011 783250 99999 CASA BLANCA LA HABANA CU 23.166999999999998 -82.35 50.0 19490101 20161011 783260 99999 MATANZAS CU 23.017 -81.517 46.0 19730101 20160113 783270 99999 UNION DE REYES MATANZAS CU 22.767 -81.533 30.0 19790908 20160113 783280 99999 SAN ANTONIO DE LOS BANOS CU MUSA 22.872 -82.509 50.0 20040705 20200421 783284 99999 SAN ANTONIO BANOS CU MUSA 22.883000000000003 -82.5 50.0 19430411 19460516 783290 99999 INDIO HATUEY MATANZAS CU 22.816999999999997 -81.0 19.0 19930718 20160113 783300 99999 JOVELLANOS MATANZAS CU 22.783 -81.183 25.0 20020306 20160113 783310 99999 JAGUEY GRANDE MATANZAS CU 22.633000000000003 -81.267 5.0 20041007 20160113 783320 99999 COLON MATANZAS CU 22.683000000000003 -80.933 35.0 19730101 20160113 783330 99999 PLAYA GIRON MATANZAS CU 22.066999999999997 -81.033 5.0 19730227 20161011 783334 99999 VILO ACUNA INTL CU MUCL 21.616 -81.546 3.0 19830520 20200624 783350 99999 AGUADA DE PASAJEROS CIENFUEGOS CU 22.383000000000003 -80.85 27.0 19730101 20160113 783360 99999 PICO SAN JUAN CIENFUEGOS CU 21.916999999999998 -80.167 1140.0 19990831 19990831 783370 99999 TRINIDAD SANCTI SPIRITUS CU 21.783 -79.983 54.0 19741026 20160113 783380 99999 SAGUA LA GRANDE VILLA CLARA CU 22.816999999999997 -80.083 22.0 19730101 20160113 783390 99999 CAYO COCO CIEGO DE AVILA CU 22.517 -78.45 2.0 19730101 20160113 783400 99999 BAINOA LA HABANA CU 23.033 -81.917 80.0 20041007 20160113 783410 99999 EL JIBARO SANCTI SPIRITUS CU 21.717 -79.217 30.0 20041007 20160113 783420 99999 TOPES DE COLLANTES SANCTI SPIRITUS CU 21.916999999999998 -80.017 771.0 19750328 20160113 783430 99999 EL YABU VILLA CLARA CU 22.433000000000003 -79.983 116.0 20041007 20160113 783440 99999 CANTARRANA CIENFUEGOS CU 21.916999999999998 -80.167 42.0 19490101 20161011 783450 99999 JUCARO CIEGO DE AVILA CU 21.616999999999997 -78.85 1.0 19761001 20161011 783460 99999 MAXIMO GOMEZ CU MUCA 22.026999999999997 -78.79 102.1 19730101 20160113 783465 99999 ABEL SANTAMARIA CU MUSC 22.491999999999997 -79.944 103.0 20050723 20200624 783470 99999 CAMILO CIENFUEGOS CIEGO DE AVILA CU 22.15 -78.75 16.0 19730501 20160113 783480 99999 CAIBARIEN VILLA CLARA CU 22.517 -79.45 6.0 19730101 20161011 783490 99999 SANCTI SPIRITUS SANCTI SPIRITUS CU 21.933000000000003 -79.45 97.0 19730107 20161011 783500 99999 FLORIDA CAMAGUEY CU 21.517 -78.233 58.0 19730101 20160113 783510 99999 SANTA CRUZ DEL SUR CAMAGUEY CU 20.717 -78.0 2.0 19730101 20161011 783520 99999 ESMERALDA CAMAGUEY CU 21.85 -78.117 31.0 19780105 20160113 783530 99999 NUEVITAS CAMAGUEY CU 21.533 -77.25 4.0 19330102 20161011 783540 99999 PALO SECO CAMAGUEY CU 21.133000000000003 -77.317 96.0 19761001 20160113 783550 99999 CAMAGUEY CAMAGUEY CU 21.4 -77.85 122.0 19420701 20161011 783570 99999 HERMANOS AMEIJEIRAS CU MUVT 20.988000000000003 -76.936 100.0 19761101 20161011 783580 99999 PUERTO PADRE LAS TUNAS CU 21.2 -76.617 13.0 19730101 20161011 783590 99999 MANSANILLO GRANMA CU 20.333 -77.133 10.0 20000325 20160113 783600 99999 CABO CRUZ GRANMA CU 19.85 -77.233 10.0 19730101 20161011 783610 99999 JUCARITO GRANMA CU 20.666999999999998 -76.9 12.0 20041007 20160113 783620 99999 LA JIQUIMA HOLGUIN CU 20.933000000000003 -76.533 105.0 19730719 20160113 783630 99999 CONTRAMAESTRE SANTIAGO DE CUBA CU 20.283 -76.25 100.0 19780201 20161011 783640 99999 UNIVERSIDAD SANTIAGO DE CUBA CU 20.05 -75.817 38.0 19730904 20160113 783650 99999 PUNTA LUCRECIA HOLGUIN CU 21.066999999999997 -75.617 4.0 19740716 20161010 783660 99999 GRAN PIEDRA SANTIAGO DE CUBA CU 20.033 -75.633 1226.0 19730101 20160113 783670 11706 GUANTANAMO BAY NAVAL AIR STATION CU MUGM 19.9 -75.15 39.9 19450401 20200625 783680 99999 GUANTANAMO GUANTANAMO CU 20.133 -75.233 55.0 19730620 20160113 783690 99999 PUNTA DE MAISI GUANTANAMO CU 20.25 -74.15 10.0 19490222 20161011 783700 99999 GUARO HOLGUIN CU 20.666999999999998 -75.783 20.0 20041007 20160113 783710 99999 PINARES DE MAYARI HOLGUIN CU 20.483 -75.8 646.0 20041007 20160113 783730 99999 SANTIAGO DE LAS VEGAS CIUDAD HABANA CU 22.967 -82.383 78.0 20041007 20160113 783740 99999 TAPASTE LA HABANA CU 23.017 -82.133 120.0 20041007 20160113 783750 99999 MELENA DEL SUR LA HABANA CU 22.767 -82.133 25.0 20041007 20160113 783760 99999 BAUTA LA HABANA CU 22.967 -82.53299999999999 65.0 20041007 20160113 783770 99999 VEGUITAS GRANMA CU 20.317 -76.883 30.0 20041007 20160113 783780 99999 VELASCO HOLGUIN CU 21.083000000000002 -76.3 35.0 20040729 20160113 783790 99999 LOMA EL MANEY GRANMA CU 19.917 -77.417 900.0 19991129 20160402 783830 99999 CAYMAN BRAC CJ 19.683 -79.883 6.0 19730101 20170504 783840 11813 OWEN ROBERTS AIRPORT CJ MWCR 19.3 -81.367 3.1 19730101 20200624 783840 99999 OWEN ROBERTS AIRPOR CJ MWCR 19.283 -81.35 3.0 20000101 20041231 783841 99999 GERRARD SMITH INTL CJ MWCB 19.687 -79.883 2.4 20040930 20200624 783842 99999 MARCOS A GELABERT I PM 8.967 -79.55 10.0 20050208 20200624 783870 99999 NEGRIL POINT JM 18.25 -78.367 10.0 20010902 20180426 783880 99999 SANGSTER INTL JM MKJS 18.504 -77.913 1.2 19730101 20200624 783970 99999 NORMAN MANLEY INTL JM MKJP 17.936 -76.788 3.0 19411222 20200624 783990 99999 MORANT POINT JM 17.917 -76.183 2.0 19730101 19791022 784090 99999 CAP HAITIEN INTL HA MTCH 19.733 -72.195 3.0 19430801 20200624 784370 99999 PORT-AU-PRINCE (DAMIEN) HA 18.6 -72.283 15.0 19861221 19980303 784390 99999 TOUSSAINT LOUVERTURE INTL HA MTPP 18.58 -72.293 37.2 19370101 20200624 784395 99999 CAMP CANARGUS HA 18.567 -72.317 38.0 19960827 20100630 784510 99999 MONTE CRISTI DR 19.883 -71.65 2.0 20070724 20200622 784570 99999 GREGORIO LUPERON INTL DR MDPP 19.758 -70.57 4.6 19440101 20200624 784575 99999 SAMANA DR MDCY 19.267 -69.75 4.0 20070807 20200624 784580 99999 PUERTO PLATA DR 19.75 -70.55 5.0 19921001 20200624 784600 99999 CIBAO INTL DR MDST 19.406 -70.605 172.2 19730102 20200624 784640 99999 CABRERA DR 19.633 -69.883 14.0 19760710 20200531 784645 99999 COTUI/SAN MIGUEL DR 19.05 -70.15 -999.0 19841119 19880330 784660 99999 ARROYO BARRIL DR 19.2 -69.45 42.0 20021105 20200608 784670 99999 SABANA DE LA MAR DR 19.05 -69.383 10.0 19570901 20200624 784730 99999 BAYAGUANA DR 18.75 -69.633 76.0 20031102 20200622 784780 99999 CABO ENGANO DR 18.617 -69.317 2.0 19550801 20070928 784785 99999 CASA DE CAMPO INTL DR MDLR 18.451 -68.91199999999999 73.2 19991024 20200624 784786 99999 PUNTA CANA DR 18.883 -71.35 0.0 19871006 19880317 784790 99999 PUNTA CANA INTL DR MDPC 18.567 -68.363 14.3 19921001 20200624 784800 99999 JIMANI DR 18.333 -71.85 56.0 20010819 20200507 784820 99999 MARIA MONTEZ INTL DR MDBH 18.250999999999998 -71.12 3.0 19730103 20200624 784840 99999 HERRERA INTL DR MDHE 18.47 -69.969 60.4 19440412 20200623 784850 99999 LAS AMERICAS INTL DR MDSD 18.43 -69.669 18.0 19730102 20200624 784860 99999 SANTO DOMINGO DR 18.433 -69.883 14.0 19431101 20200624 784865 99999 DR JOAQUIN BALAGUER INTL DR MDJB 18.573 -69.986 29.9 20061010 20200624 784880 99999 DE LA ROMANA INTNAL DR 18.45 -68.92 94.0 20060201 20200624 785010 11807 ISLAS DEL CISNE HO MHIC 17.4 -83.93299999999999 11.0 19730101 20060516 785010 99999 ISLAS DEL CISNE HO MHIC 17.407 -83.93299999999999 2.0 20010502 20020812 785140 11603 RAFAEL HERNANDEZ AIRPORT US PR TJBQ 18.498 -67.12899999999999 66.5 20060101 20200625 785140 99999 AQUADILLA/BORINQUEN RQ TJBQ 18.5 -67.133 72.0 19400311 20051231 785141 99999 TRUJILLO HO 15.933 -85.93299999999999 3.0 20040706 20081231 785145 11653 EUGENIO MARIA DE HOSTOS AIRPORT US PR TJMZ 18.254 -67.149 11.6 20050101 20170810 785145 99999 EUGENIO MARIA DE HO RQ TJMZ 18.25 -67.15 9.0 19421101 20041231 785201 99999 PONCE/MERCEDITA RQ 18.017 -66.567 9.0 19410401 19900219 785203 00398 MERCEDITA AIRPORT RQ TJPS 18.0 -66.55 9.1 20050101 20180831 785203 99999 MERCEDITA RQ TJPS 18.008 -66.563 8.8 19900314 20180519 785205 99999 PLAYA PORT PONCE RQ X69 17.967 -66.617 3.0 19790608 19830902 785260 11641 LUIS MUNOZ MARIN INTERNATIONAL AP RQ PR TJSJ 18.433 -66.01100000000001 2.7 20050101 20200625 785260 99999 SAN JUAN INTL ARPT RQ TJSJ 18.417 -66.0 4.0 19410617 20180515 785263 11641 LUIS MUNOZ MARIN IN RQ PR TJSJ 18.433 -66.01100000000001 2.4 19960101 20091231 785265 00494 FERNANDO LUIS RIBAS DOMINICCI AIRPORT US PR TJIG 18.457 -66.098 3.1 20110223 20200625 785265 99999 FERNANDO LUIS RIBAS DOMINICCI RQ TJIG 18.457 -66.098 3.0 20180102 20180103 785350 11630 NAVAL STATION ROOSEVELT ROADS CEIBA US PR TJNR 18.255 -65.641 10.1 19730101 20200625 785355 99999 CAPE SAN JUAN(CGLS) RQ X93 18.383 -65.617 22.0 19760514 19840115 785356 99999 PT TUNA/MAUNABO RQ X92 17.983 -65.883 22.0 19760514 19861201 785359 99999 SAINT THOMAS (CGS) VQ X70 18.333 -64.917 2.0 19800611 19811002 785430 11640 CYRIL E KING AIRPORT US VI TIST 18.336 -64.98 6.1 19730101 20200625 785433 99999 POINT SALIMAS GJ 12.0 -61.783 12.0 19850405 19910806 785434 99999 BEEF ISLAND VQ 18.45 -64.55 5.0 19800611 19860729 785450 99999 HAM BLUFF LIGHT ST. CROIX RQ 17.767 -64.883 21.0 20041005 20041005 785470 11624 CHRISTIANSTED/ALEX. VQ VI TISX 17.7 -64.813 16.8 19410901 20101231 785474 99999 ANGUILLA VQ 18.2 -63.05 29.0 19920804 19940311 785500 99999 TERRANCE B LETTSOME INTL VI TUPJ 18.445 -64.543 4.6 19810801 20200624 785510 11624 HENRY E ROHLSEN AIRPORT US VI TISX 17.7 -64.813 18.6 20110101 20200625 785510 99999 CHRISTIANSTED HENRY VQ TISX 17.7 -64.783 13.0 20050101 20101231 785830 99999 PHILIP S W GOLDSON INTL BH MZBZ 17.539 -88.30799999999999 4.6 19590503 20200624 785840 99999 BELIZE/LANDIVAR BH 17.517 -88.2 1.0 19510102 20150401 785880 99999 HALF MOON CAYE BH 17.183 -87.5 -999.9 19940201 20121018 785960 99999 HUNTING CAYE BH 16.1 -88.25 -999.9 19940301 20000122 786150 99999 FLORES/SANTA ELENA GT MGFL 16.917 -89.883 115.0 19730101 20200609 786250 99999 POPTUN GT 16.317 -89.417 500.0 19730102 20100727 786260 99999 20030921 20030921 786270 99999 HUEHUETENANGO GT MGHT 15.317 -91.46700000000001 1901.0 19730102 20200624 786290 99999 QUETZALTENANGO GT 14.817 -91.5 950.0 19871002 20140302 786310 99999 COBAN GT MGCB 15.469000000000001 -90.40700000000001 1322.5 19831105 20200624 786311 99999 MUNDO MAYA INTL GT MGTK 16.914 -89.866 130.1 20040510 20180514 786350 99999 LA LIBERTAD GT 16.783 -90.133 180.0 19510101 19541218 786370 99999 PUERTO BARRIOS GT MGPB 15.731 -88.584 10.1 19430711 20200624 786372 99999 ESQUIPULAS GT MGES 14.57 -89.35 965.0 20051113 20200624 786374 99999 CHAMPERICO GT MGCP 14.3 -91.9 11.0 20090512 20191104 786375 99999 PASO CABALLOS GT MGPC 17.267 -90.25 61.0 20110330 20130915 786376 99999 MUNDO MAYA INTL ARPT GT MGMM 16.9 -89.867 117.7 20110922 20200624 786390 99999 RETALHULEU GT MGRT 14.520999999999999 -91.697 199.9 19730101 20200624 786400 99999 GUATEMALA (OBSERVATORIO NACIONAL) GT 14.583 -90.51700000000001 1502.0 20011026 20011026 786410 99999 LA AURORA GT MGGT 14.583 -90.527 1509.4 19420205 20200624 786445 99999 ZACAPA GT MGZA 14.967 -89.53299999999999 190.8 19840921 20200624 786470 99999 SAN JOSE GT MGSJ 13.936 -90.836 8.8 19420813 20200624 786475 99999 QUEZALTENANGO GT MGQZ 14.866 -91.50200000000001 2431.0 19841012 20200624 786490 99999 LA FRAGUA/ZACAPA GT 14.95 -89.53299999999999 470.0 19850307 19890505 786500 99999 ACAJUTLA/SONSONATE ES MSAC 13.567 -89.833 15.0 19620401 20200624 786520 99999 LOS ANDES ES 13.883 -89.65 1770.0 20130918 20130918 786550 99999 SANTA ANA/EL PALMAR ES MSSA 13.97 -89.53 660.0 19770304 20200624 786620 99999 SAN SALVADOR ES 13.717 -89.2 689.0 20040420 20070920 786630 99999 ILOPANGO INTL ES MSSS 13.699000000000002 -89.12 616.0 19510101 20200622 786634 99999 EL SALVADOR INTL ES 13.433 -89.05 30.0 19800423 19870114 786660 99999 EL SALVADOR INTL ES MSLP 13.440999999999999 -89.056 30.8 19870116 20200624 786700 99999 SAN MIGUEL/PAPALON ES MSSM 13.43 -88.12 80.0 19840109 20200624 786720 99999 LA UNION/CPI ES MSLU 13.317 -87.78299999999999 28.0 20021118 20200624 787000 99999 AMAPALA/LOS PELONAS HO MHAM 13.283 -87.667 5.0 19570701 20200529 787001 99999 AMAPALA/LOS PELONAS HO 13.3 -87.633 5.0 19810606 19831102 787010 99999 LA LAGUNA AIRPORT - GUANAJA HO MHNJ 16.445 -85.90700000000001 14.9 19570701 20160801 787013 99999 GUANAJA ISLAND HO 16.467 -86.06700000000001 2.0 19890616 20180524 787014 99999 MAPULACA AIRPORT HO MHLP 14.033 -88.633 51.8 20110626 20140623 787030 99999 JUAN MANUEL GALVEZ INTL HO MHRO 16.317 -86.523 5.5 19900105 20200623 787040 99999 TRUJILLO HONDURAS HO MHTR 15.93 -85.93 3.0 20050101 20200624 787050 99999 GOLOSON INTL HO MHLC 15.742 -86.853 14.9 19730214 20200624 787060 99999 TELA HO MHTE 15.776 -87.476 2.1 19510101 20200624 787070 99999 YORO HO MHYR 15.167 -87.117 670.0 19830812 20200624 787080 99999 LA MESA INTL HO MHLM 15.453 -87.92399999999999 27.7 19570701 20200624 787094 99999 YORO HO 15.133 -87.133 0.0 19830418 19830622 787110 99999 PUERTO LEMPIRA HO MHPL 15.261 -83.781 8.0 19610316 20200624 787140 99999 CATACAMAS HO MHCA 14.9 -85.93299999999999 442.0 19570701 20200624 787170 99999 SANTA ROSA DE COPAN HO MHSR 14.783 -88.78299999999999 1079.0 19570701 20200624 787180 99999 NUEVA OCOTEPEQUE HO MHNO 14.433 -89.2 626.0 19890401 20200624 787185 99999 CORONEL ENRIQUE SOT HO MHSC 14.383 -87.617 628.0 20080319 20080612 787190 99999 LA ESPERANZA HO MHLE 14.333 -88.167 1100.0 19890601 20200624 787200 99999 TONCONTIN INTL HO MHTG 14.061 -87.21700000000001 1004.0 19510101 20200624 787210 99999 SOTO CANO AB HO MHSC 14.382 -87.62100000000001 628.2 20050101 20200624 787240 99999 CHOLUTECA HO MHCH 13.3 -87.18299999999999 48.0 19630703 20200624 787250 99999 CABO GRACIAS A DIOS HO 15.0 -83.167 4.0 19510101 19541231 787300 99999 PUERTO CABEZAS NU MNPC 14.047 -83.387 15.8 19500614 20200624 787310 99999 NANDAIME NU 11.717 -86.05 95.0 20041008 20050907 787320 99999 MASATEPE NU 11.9 -86.15 150.0 20070226 20130802 787330 99999 RIVAS NU MNRS 11.417 -85.833 53.0 19750618 20200624 787340 99999 JINOTEGA NU MNJG 13.083 -85.98299999999999 985.0 19820801 20200624 787350 99999 JUIGALPA NU MNJU 12.1 -85.367 90.0 19730702 20200623 787353 99999 LEON NU MNLN 12.427999999999999 -86.902 100.0 19821019 19830822 787360 99999 POSOLTEGA NU 12.55 -86.98299999999999 80.0 20061106 20061106 787390 99999 CHINANDEGA NU MNCH 12.633 -87.133 53.0 19750618 20200624 787410 99999 MANAGUA INTL NU MNMG 12.140999999999998 -86.16799999999999 59.1 19421001 20200624 787421 99999 PROVIDENCIALES TK MBPV 21.774 -72.266 4.6 20040713 20200624 787440 99999 SAN CARLOS NU 11.133 -84.78299999999999 40.0 20040724 20170911 787450 99999 BLUEFIELDS NU MNBL 11.991 -83.774 6.1 19490301 20200624 787550 99999 NICOYA CS MRNC 10.15 -85.45 120.0 19730501 20030918 787600 99999 PUNTARENAS CS 9.967 -84.833 3.0 19490102 20160123 787605 99999 SAN JOSE/LA SABANA CS 9.933 -84.1 1132.0 19420409 19740821 787606 99999 PASO CANOAS CS 8.967 -83.53299999999999 10.0 19731204 19801112 787613 99999 CHACARITA CS MRCH 9.984 -84.772 2.1 19860918 20020227 787620 99999 JUAN SANTAMARIA INTL CS MROC 9.994 -84.209 920.8 19550704 20200624 787625 99999 TOBIAS BOLANOS INTL CS 9.95 -84.133 1019.0 19760305 20081231 787630 99999 AGROPECURARIA CS MRPT 9.97 -84.82 3.0 19490109 20051103 787640 99999 TOBIAS BOLANOS INTL CS MRPV 9.957 -84.14 994.0 20050101 20200624 787670 99999 LIMON INTL CS MRLM 9.958 -83.022 2.1 19490101 20200624 787720 99999 PALMAR SUR CS MRPM 8.951 -83.469 14.9 19801008 20110511 787740 99999 DANIEL ODUBER QUIROS INTL CS MRLB 10.593 -85.544 82.3 19780111 20200624 787804 99999 SAVANAH GA/HUNTER FLD US GA SVN -32.133 -81.2 13.0 19480101 19481201 787830 99999 ENRIQUE ADOLFO JIMENEZ PM MPEJ 9.357000000000001 -79.867 7.6 19510101 20200526 787833 99999 ENRIQUE ADOLFO JIME PM MPCF 9.367 -79.867 8.0 19820624 19950920 787834 99999 AUGUSTO VERGARA PM MPNU 7.832999999999999 -80.283 21.0 19880303 19910926 787835 99999 EL PORVENIR EAST PM 9.55 -78.95 2.0 19730620 19740429 787838 99999 CAPTAIN MANUEL NINO PM MPCH 9.467 -82.51700000000001 5.0 19730102 19950920 787880 99999 EL PORVENIR PM MPVR 9.567 -78.95 2.0 19441221 20180503 787885 99999 PUERTO OBALDIA PM MPOA 8.667 -77.417 1.0 19750716 20160501 787920 99999 TOCUMEN INTL PM MPTO 9.071 -79.383 41.1 19730101 20200624 787930 99999 ENRIQUE MALEK INTL PM MPDA 8.391 -82.435 27.1 19350101 20200624 787935 99999 BOCAS DEL TORO INTL PM MPBO 9.341000000000001 -82.251 3.0 19730102 20200624 787940 99999 COLON PM 9.35 -79.867 8.0 20080104 20080731 787945 99999 CAP MANUEL NINO INTL PM MPCH 9.459 -82.51700000000001 5.8 20050331 20190828 787950 99999 RUBEN CANTU PM MPSA 8.086 -80.945 82.9 19740101 20200529 787955 99999 PANAMA PACIFICO PM MPPA 8.917 -79.6 13.0 20061010 20200624 787956 99999 ALONSO VALDERRAMA / CHITRE PM MPCE 7.9879999999999995 -80.41 10.1 20080118 20200622 787957 99999 COCLE/CAP SCARLETT MARTINEZ ARPT/RIO HATO PM MPSM 8.383 -80.133 858.9 20051002 20200624 788010 99999 FT SHERMAN (ROCOB) PM MPFS 9.333 -79.983 52.0 19730102 20060102 788060 99999 HOWARD PM MPHO 8.917 -79.6 13.0 19411001 20040315 788064 99999 HOWARD AFB PM MPHO 8.917 -79.6 16.0 19800420 19800809 788065 99999 CHIVA-CHIVA PM 9.033 -79.6 27.0 19830516 19851008 788067 99999 MARCOS A. GELABERT PM MPMG 8.982999999999999 -79.517 13.0 19730102 20010921 788071 99999 ALBROOK AFB/BALBOA PM MPLB 8.967 -79.55 9.0 19361001 19710314 788075 99999 TOCUMEN/GEN. OMAR PM 9.083 -79.367 41.0 19730601 19730630 788076 99999 CAP RAMON XATRUCH PM MPLP 8.407 -78.142 9.0 19730102 19950920 788077 99999 SANTIAGO PM 8.083 -80.95 83.0 19730102 19740429 788078 99999 RIO HATO PM MPRH 8.367 -80.117 32.0 19390117 19891219 788079 99999 JAQUE PM MPJE 7.517 -78.15 9.0 19430813 20160501 788250 99999 CLIPPERTON 10.3 -109.21700000000001 -999.9 20050319 20160303 788460 99999 ANGUILLA AV 18.2 -63.05 29.0 19870302 20200624 788461 99999 WALLBLAKE AV TQPF 18.205 -63.055 38.7 20040713 20200624 788550 99999 ROSEAU DO TDPR 15.3 -61.4 72.0 20050316 20170429 788564 99999 BLACKBURNE/PLYMOUTH MH TRPM 16.75 -62.167 12.0 19810904 19970625 788570 99999 BASSETERRE SC 17.283 -62.733000000000004 9.0 19490101 19960607 788580 99999 ROBERT L BRADSHAW SC TKPK 17.311 -62.718999999999994 51.8 19730101 20200624 788590 99999 VANCE WINKWORTH AMORY INTL SC TKPN 17.206 -62.59 4.3 19811101 20200624 788610 99999 COOLIDGE FIELD ANTIGUA (AUX.AFB) AC 17.117 -61.783 10.0 19411101 20070818 788620 99999 V C BIRD INTL AC TAPA 17.137 -61.793 18.9 19730101 20200624 788625 99999 JOHN A OSBORNE AIRPORT MH TRPG 16.783 -62.193000000000005 168.0 20091009 20200617 788660 00399 PRINCESS JULIANA INTERNATIONAL AIRPORT NN TNCM 18.046 -63.115 4.3 20050101 20200625 788660 99999 PRINCESS JULIANA INTL NT TNCM 18.041 -63.108999999999995 4.3 19580101 20081231 788730 00400 F D ROOSEVELT AIRPORT NL TNCE 17.498 -62.98 40.2 20050222 20200625 788730 99999 F D ROOSEVELT NT TNCE 17.496 -62.979 39.3 19510205 20180515 788900 99999 LA DESIRADE GP 16.333 -61.0 33.0 19510101 20101003 788910 99999 LE MOULE RADAR GP 16.317 -61.35 25.0 20040531 20050412 788940 99999 GUSTAVIA/ST.BARTHEL GP TFFJ 17.9 -62.85 52.0 19510101 20060614 788970 00401 POINTE A PITRE INTERNATIONAL AIRPORT GP TFFR 16.267 -61.6 8.2 20050101 20200625 788970 99999 LE RAIZET GP TFFR 16.265 -61.532 11.0 19500701 20180515 789043 99999 BOGUS DOMINICAN DO 19880105 19880812 789050 00402 MELVILLE HALL AIRPORT DO TDPD 15.533 -61.3 14.0 20050101 20200624 789050 99999 MELVILLE HALL DO TDPD 15.547 -61.3 22.3 19730810 20180520 789060 00403 CANEFIELD AIRPORT DO TDCF 15.333 -61.383 5.2 20050101 20200624 789060 99999 CANEFIELD DO TDCF 15.337 -61.391999999999996 4.0 19860602 20180515 789070 99999 ROSEAU DO TDPR 15.3 -61.4 72.0 19730101 20021224 789220 99999 TRINITE CARAVELLE MB 14.767000000000001 -60.883 34.0 19730901 20200109 789240 99999 LE DIAMANT RADAR MB 14.5 -61.016999999999996 377.0 20040928 20041109 789250 00404 MARTINIQUE CESAIRE INTERNATIONAL AIRPORT MB TFFF 14.6 -61.0 7.0 20050101 20200625 789250 99999 LE LAMENTIN MB TFFF 14.591 -61.003 4.9 19510601 20081231 789460 99999 CASTRIES ST 14.033 -61.016999999999996 55.0 19490101 20011123 789470 00405 GEORGE F L CHARLES AIRPORT ST TLPC 14.017000000000001 -61.0 2.1 20050101 20200625 789470 99999 GEORGE F L CHARLES ST TLPC 14.02 -60.993 6.7 19730108 20180520 789480 00406 HEWANORRA INTERNATIONAL AIRPORT ST TLPL 13.75 -60.95 10.1 20050101 20200625 789480 99999 HEWANORRA INTL ST TLPL 13.732999999999999 -60.953 4.3 19410808 20180520 789490 99999 J F MITCHELL VC TVSB 12.988 -61.262 4.6 20060530 20141023 789495 99999 UNION ISLAND VC TVSU 13.083 -61.0 3.0 20070402 20120225 789500 99999 CANOUAN VC TVSC 12.699000000000002 -61.342 3.4 20091205 20190202 789505 99999 MUSTIQUE VC TVSM 12.888 -61.18 2.4 20070702 20190804 789510 00407 E T JOSHUA AIRPORT VC TVSV 13.133 -61.2 13.1 20050101 20191214 789510 99999 E T JOSHUA VC TVSV 13.144 -61.211000000000006 20.1 19750808 20180316 789530 99999 19490101 19541201 789540 00408 GRANTLEY ADAMS INTERNATIONAL AIRPORT BB TBPB 13.067 -59.483000000000004 52.1 20050101 20200625 789540 99999 GRANTLEY ADAMS INTL BB TBPB 13.075 -59.492 51.5 19430917 20180520 789543 99999 BRIDGETOWN (CITY) BB TBPO 13.1 -59.617 50.0 19850402 20001214 789550 99999 CARIBBEAN METEOROLOGICAL INSTITUTE BB 13.15 -59.617 113.0 19730201 20040914 789560 99999 PEARLS AIRPORT GJ 12.15 -61.617 6.0 19730103 20050807 789580 00409 MAURICE BISHOP INTERNATIONAL AIRPORT GJ TGPY 12.0 -61.783 7.0 20050103 20200625 789580 99999 POINT SALINES INTL GJ TGPY 12.004000000000001 -61.786 12.5 19850701 20180515 789613 00410 ARTHUR NAPOLEON RAYMOND ROBINSON INTERNATIONAL AIRPORT TD TTCP 11.15 -60.833 12.2 20050101 20200625 789613 99999 CROWN POINT TD 11.15 -60.833 11.0 19880105 20081231 789620 99999 CROWN POINT AIRPORT TOBAGO TD TTPT 11.15 -60.833 6.0 19730101 20081231 789700 11634 PIARCO INTL AP TD TTPP 10.583 -61.35 12.2 20050101 20200625 789700 99999 PIARCO TD TTPP 10.595 -61.336999999999996 17.7 19410715 20180515 789820 00411 QUEEN BEATRIX INTERNATIONAL AIRPORT AA TNCA 12.5 -70.017 18.3 20050101 20200625 789820 99999 REINA BEATRIX INTL AA TNCA 12.501 -70.015 18.3 19421009 20081231 789880 00412 HATO INTERNATIONAL AIRPORT UC TNCC 12.2 -68.967 9.1 20050101 20200625 789880 99999 HATO NT TNCC 12.189 -68.96 8.8 19420901 20081231 789900 00413 FLAMINGO INTERNATIONAL AIRPORT NL TNCB 12.15 -68.283 7.0 20050101 20200625 789900 99999 FLAMINGO NT TNCB 12.130999999999998 -68.26899999999999 6.1 19610426 20081231 789940 99999 BOGUS CARIBBEAN 19850824 20040922 800000 99999 BOGUS COLOMBIAN CO 0.0 0.0 -999.0 19830601 20030202 800010 99999 GUSTAVO ROJAS PINILLA CO SKSP 12.584000000000001 -81.711 5.8 19650101 20200624 800011 99999 EDUARDO FALLA SOLANO CO SKSV 2.1519999999999997 -74.766 280.4 20080504 20171018 800020 99999 EL EMBRUJO CO SKPV 13.357000000000001 -81.358 3.0 19781226 20200624 800050 99999 CAYOS ALBURQUERQUE? CO 0.0 0.0 -999.0 19830701 20010911 800070 99999 CAYOS E-SE(?) CO 0.0 0.0 -999.0 19830702 20020606 800080 99999 SANTA MARTA(?) CO 0.0 0.0 -999.0 19830701 20040509 800090 99999 SIMON BOLIVAR CO SKSM 11.12 -74.23100000000001 6.7 19520606 20200624 800220 99999 RAFAEL NUNEZ CO SKCG 10.442 -75.513 1.2 19490324 20200624 800280 99999 ERNESTO CORTISSOZ CO SKBQ 10.89 -74.781 29.9 19410501 20200624 800350 99999 ALMIRANTE PADILLA CO SKRH 11.526 -72.926 13.1 19730101 20200624 800360 99999 ALFONSO LOPEZ PUMAREJO CO SKVP 10.435 -73.25 147.2 19681004 20200624 800440 99999 COROZAL/LAS BRUJAS CO 9.333 -75.283 81.0 19500101 20120313 800480 99999 BARACOA CO SKMG 9.285 -74.846 54.3 19651120 19850103 800620 99999 TURBO/GONZALO MEJIA CO 8.117 -76.733 1.0 19490103 19840511 800630 99999 LOS GARZONES CO SKMR 8.824 -75.82600000000001 11.0 19500101 20200624 800700 99999 SAN MARC S CO 9.65 -74.833 41.1 19490412 19750702 800740 99999 EL BANCO/LAS FLORES CO 9.067 -73.983 34.0 19670508 19890921 800770 99999 OCANA/AGUAS CLARAS CO 8.317 -73.367 1435.0 19730201 20120313 800810 99999 ALTO CURICHE CO 7.05 -76.35 301.1 19670701 19690611 800840 99999 ANTONIO ROLDAN BETANCOURT CO SKLC 7.812 -76.71600000000001 14.0 19800327 20200624 800880 99999 ZARAGOZA CO 7.4670000000000005 -74.883 79.0 19500104 19521231 800890 99999 OTU CO SKOT 7.01 -74.715 609.6 19500101 20100806 800910 99999 YARIGUIES CO SKEJ 7.024 -73.807 125.6 19500101 20200624 800930 99999 BUCARAHALGA CO 7.1 -72.8 938.8 19500102 19750409 800940 99999 PALONEGRO CO SKBG 7.127000000000001 -73.185 1187.8 19750401 20200624 800970 99999 CAMILO DAZA CO SKCC 7.928 -72.512 334.1 19500101 20200624 800990 99999 SANTIAGO PEREZ CO SKUC 7.069 -70.737 128.0 19500101 20200624 801000 99999 BAHIA SOLANO / JOSE MUTIS CO 6.183 -77.4 24.0 19810101 20060323 801005 99999 MELGAR AB CO SKME 4.216 -74.635 313.3 20140424 20140923 801100 99999 OLAYA HERRERA CO SKMD 6.22 -75.59100000000001 1505.7 19490105 20200624 801103 99999 BAHIA SOLAND CHOCO CO MCBS 6.183 -77.4 24.0 19820707 19840226 801120 99999 JOSE MARIA CORDOVA CO SKRG 6.165 -75.423 2142.1 19851201 20200624 801140 99999 ANALEI CO 6.917000000000001 -74.933 1392.9 19500101 19521231 801320 99999 TAME/TAME CO 6.45 -71.75 350.0 19800301 20111011 801390 99999 PUERTO CARRENO CO SKPC 6.185 -67.493 53.9 19790409 20200624 801430 99999 CONDOTO/MANDINGA CO 5.083 -76.7 72.0 20020526 20020526 801440 99999 EL CARANO CO SKUI 5.691 -76.641 62.2 19490103 20200624 801480 99999 LA PLATA SOUTHEAST CO 5.033 -75.667 1030.0 19730101 19740517 801481 99999 MANIZALES/LA NUBIA& CO SKMZ 5.033 -75.467 2080.0 19820102 19830702 801490 99999 LA NUBIA CO SKMZ 5.03 -75.465 2094.3 19680104 20200624 801540 99999 MARIQUITA CO SKQU 5.2170000000000005 -74.883 467.0 20100619 20200312 801560 99999 PALANQUERO/GERMAN O CO MCPQ 5.483 -74.65 172.0 19630105 19810508 801580 99999 PERICO SOUTH CO 5.25 -74.733 183.0 19500104 20200329 801750 99999 TRINIDAD/TRINIDAD CO 5.433 -71.65 217.0 19800312 19830327 801753 99999 TRINIDAD CO 5.433 -71.667 198.0 19820625 19831025 801755 99999 RIONEGRO/JOSE MARI& CO 19860110 19861130 802030 99999 TULUA/FARFAN CO 4.1 -76.233 955.0 19500322 19810123 802090 99999 CANTAGU CO 4.7669999999999995 -74.067 900.1 19490103 19500804 802100 99999 MATECANA CO SKPE 4.813 -75.74 1346.0 19500101 20200624 802110 99999 EL EDEN CO SKAR 4.453 -75.766 1216.2 19500101 20200624 802130 99999 EL PASO/LA LINEA CO MCEP 4.5169999999999995 -75.517 3264.0 19630103 19801031 802140 99999 PERALES CO SKIB 4.422 -75.133 949.1 19730101 20200624 802190 99999 GIRARDOT/SANTIAGO VILLA CO 4.283 -74.8 286.0 19630103 20130220 802220 99999 ELDORADO INTL CO SKBO 4.702 -74.14699999999999 2548.4 19410301 20200624 802222 99999 JOSE CELESTINO MUTIS CO SKBS 6.202999999999999 -77.395 24.4 20080504 20190802 802223 99999 GUAYMARAL CO SKGY 4.812 -74.065 2557.3 20080504 20200304 802225 99999 LOS COLONIZADORES CO SKSA 6.95 -71.85 213.0 20080504 20191203 802226 99999 EL YOPAL CO SKYP 5.319 -72.384 313.3 20080504 20200313 802227 99999 SANTA ANA CO SKGO 4.758 -75.956 908.0 20100619 20200312 802340 99999 VANGUARDIA CO SKVV 4.168 -73.61399999999999 424.9 19500101 20200624 802410 99999 LAS GAVIOTAS CO 4.55 -70.917 171.0 19730518 20120115 802520 99999 GERARDO TOBAR LOPEZ CO SKBU 3.82 -76.99 14.6 19330103 20190914 802590 99999 ALFONSO BONILLA ARAGON INTL CO SKCL 3.543 -76.382 963.8 19490103 20200624 803000 99999 GUAPI CO 2.583 -77.9 54.0 19800301 20130404 803080 99999 GUILLERMO LEON VALENCIA CO SKPP 2.454 -76.609 1733.4 19490513 20200127 803150 99999 BENITO SALAS CO SKNV 2.95 -75.294 446.2 19640909 20200624 803180 99999 SAN VICENTE DEL CAGUAN. CO 2.15 -74.8 300.0 19800301 19840508 803220 99999 JORGE E GONZALEZ TORRES CO SKSJ 2.58 -72.639 184.4 19800803 20191203 803360 99999 TUMACO/LA FLORIDA CO 1.817 -78.75 3.0 19360916 20130131 803370 99999 TUMACO * CO 1.85 -78.767 -999.9 19741008 20021029 803390 99999 LA PINTADA SOUTHWEST CO 5.733 -75.617 915.0 19390401 19420831 803410 99999 DOS RIOS CO 1.95 -76.817 584.6 19380601 19521011 803420 99999 ANTONIO NARINO CO SKPS 1.393 -77.291 1813.9 19610102 20200624 803460 99999 PITALITO CO 1.867 -76.05 1320.0 19800401 20030901 803540 99999 FLORENCIA/CAPITOLIO CO SKFL 1.6 -75.533 244.0 19661201 20200313 803610 99999 FABIO ALBERTO LEON BENTLEY CO SKMU 1.254 -70.234 207.3 19500104 20191203 803700 99999 SAN LUIS CO SKIP 0.862 -77.672 2976.4 19490103 20200624 803720 99999 TRES DE MAYO CO SKAS 0.505 -76.501 248.4 19730101 20190802 803770 99999 20011116 20030625 803850 99999 PUERTO LEGUIZAMO CO -0.2 -74.767 147.0 19810101 19820504 803980 99999 ALFREDO VASQUEZ COBO CO SKLT -4.1930000000000005 -69.943 84.4 19670601 20200624 804000 99999 ISLA DE AVES (BASE CIENTIFICA NAVAL S. B) VE 15.7 -63.633 8.0 19800502 20200624 804020 99999 BOGUS VENEZUELAN VE 19490101 20011224 804025 99999 CAPITAN MANUEL RIOS GUARICO AIRBASE VE SVCZ 9.372 -66.923 160.0 20040908 20180807 804030 99999 JOSE LEONARDO CHIRINOS VE SVCR 11.415 -69.681 15.8 19500106 20181113 804043 99999 JOSEFA CAMEJO VE SVJC 11.780999999999999 -70.15100000000001 22.9 19900424 20191022 804050 99999 LA ORCHILA VE SVLO 11.809000000000001 -66.179 1.5 19590101 20200624 804070 99999 LA CHINITA INTL VE SVMC 10.558 -71.72800000000001 71.6 19500101 20200316 804100 99999 BARQUISIMETO INTL VE SVBM 10.043 -69.359 622.4 19500106 20200624 804103 99999 SUB TENIENTE NESTOR ARIAS VE SVSP 10.279000000000002 -68.755 232.0 19900724 20170810 804105 99999 CANAIMA VE SVCN 6.232 -62.854 442.0 20110326 20150910 804120 99999 GENERAL BARTOLOME SALOM INTL VE SVPC 10.481 -68.07300000000001 9.8 19620801 20191224 804130 99999 MARISCAL SUCRE VE SVBS 10.25 -67.649 407.8 19500101 20200624 804143 99999 OSCAR MACHADO ZULOAGA VE SVCS 10.287 -66.816 653.8 19900424 20200325 804150 99999 SIMON BOLIVAR INTL VE SVMI 10.603 -66.991 71.6 19730101 20200624 804160 99999 GENERALISIMO FRANCISCO DE MIRANDA AB VE SVFM 10.485 -66.844 856.0 19730206 20200624 804165 99999 CARACAS/LA CARLOTA& VE 10.5 -66.883 835.0 19760201 19830322 804173 99999 METROPOLITANO VE SVMP 10.133 -66.788 175.0 19900424 20070220 804190 99999 GENERAL JOSE ANTONIO ANZOATEGUI INTL VE SVBC 10.107000000000001 -64.689 7.9 19730207 20200624 804200 99999 ANTONIO JOSE DE SUCRE VE SVCU 10.45 -64.13 4.3 19840701 20190624 804203 99999 HIGUEROTE VE SVHG 10.462 -66.093 3.0 19900724 20090629 804210 99999 PORLAMAR (AEROPUERTO INT DEL CARIBE) VE 10.917 -63.967 24.0 19750807 20200624 804214 99999 DEL CARIBE INTL GEN SANTIAGO MARINO VE SVMG 10.913 -63.967 22.6 19800514 20200624 804215 99999 19750917 19751030 804223 99999 GENERAL JOSE FRANCISCO BERMUDEZ VE SVCP 10.66 -63.262 10.1 19900424 20131030 804230 99999 GUIRIA VE SVGI 10.574000000000002 -62.313 12.8 19730212 20180922 804233 99999 ZIM VALENCIA VE 10.15 -67.933 430.0 19900424 19900911 804235 99999 EL LIBERTADOR AB VE SVBL 10.183 -67.557 442.0 20120204 20120204 804250 99999 MENE GRANDE VE SVMN 9.817 -70.933 28.0 19730206 20181114 804255 99999 BOGUS VENEZUELAN VE MVSD 0.0 0.0 -999.0 19841118 19841119 804260 99999 DR ANTONIO NICOLAS BRICENO VE SVVL 9.34 -70.584 627.9 19821001 20181206 804270 99999 OSWALDO GUEVARA MUJICA VE SVAC 9.552999999999999 -69.238 195.1 19730226 20181112 804280 99999 GUANARE VE SVGU 9.027000000000001 -69.755 184.7 19730319 20200624 804310 99999 SAN JUAN DE LOS MORROS VE SVJM 9.907 -67.38 427.9 19861201 20200624 804320 99999 CARRIZAL VE 9.417 -66.917 160.0 19810601 20180505 804333 99999 VALLE DE LA PASCUA VE 9.232999999999999 -66.0 125.0 19900424 19910304 804340 99999 VALLE DE LA PASCUA VE SVVP 9.222000000000001 -65.994 125.0 19910321 20181007 804350 99999 MATURIN VE SVMT 9.749 -63.153 68.3 19730206 20181204 804370 99999 EL VIGIA VE 8.633 -71.65 103.0 19920901 20181127 804380 99999 ALBERTO CARNEVALLI VE SVMD 8.582 -71.161 1526.1 19730206 20181206 804400 99999 BARINAS VE SVBI 8.62 -70.221 203.0 19881101 20181201 804403 99999 JUAN PABLO PEREZ ALFONSO VE SVVG 8.624 -71.673 69.2 19900424 20200622 804413 99999 SAN TOME VE SVST 8.945 -64.15100000000001 262.4 19900424 20150929 804420 99999 CALABOZO VE SVCL 8.925 -67.417 100.0 19900918 20180207 804440 99999 CIUDAD BOLIVAR VE SVCB 8.122 -63.537 60.0 19730212 20181111 804453 99999 LA FRIA VE SVLF 8.238999999999999 -72.271 93.0 19900424 20200530 804463 99999 GENERAL MANUEL CARLOS PIAR VE SVPR 8.289 -62.76 143.9 19900424 20160405 804470 99999 SAN ANTONIO DEL TACHIRA VE SVSA 7.841 -72.44 399.9 19730212 20191022 804480 99999 GUASDUALITO VE SVGD 7.211 -70.756 129.8 19740301 20181206 804500 99999 SAN FERNANDO DE APURE VE SVSR 7.882999999999999 -67.444 46.9 19730207 20191221 804530 99999 TUMEREMO VE SVTM 7.249 -61.528999999999996 104.9 19730207 20141112 804570 99999 CASIQUE ARAMARE VE SVPA 5.62 -67.60600000000001 74.7 19730212 20200624 804620 99999 SANTA ELENA DE UAIREN VE SVSE 4.555 -61.145 895.8 19730226 20181029 804625 99999 19730512 19740303 804653 99999 PARAMILLO VE SVPM 7.801 -72.203 1010.1 19900424 20170920 804720 99999 ARTURO MICHELENA INTL VE SVVA 10.15 -67.928 430.1 19900913 20200624 804750 99999 MAYOR BUENAVENTURA VIVAS VE SVSO 7.565 -72.035 330.1 19820703 20180912 804760 99999 LA CANADA VE 10.517000000000001 -71.65 26.0 19831005 20161005 804763 99999 BARINAS & VE 8.617 -70.217 203.0 19900724 19900911 804773 99999 SANTA BARBARA DEL ZULIA VE SVSZ 8.974 -71.943 9.8 19900424 20160608 804780 99999 TEMBLADOR (PRIVATE) VE SVTR 9.017000000000001 -62.617 30.0 19821101 20151201 804790 99999 PALMICHAL VE 10.3 -68.233 1000.0 19920201 20150707 810010 99999 GEORGETOWN GY SYGT 6.8 -58.15 2.0 19410818 20200624 810020 10502 TIMEHRI/CHEDDI JAGA GY SYCJ 6.5 -58.25 30.0 19730101 20200624 810020 99999 CHEDDI JAGAN INTL GY SYCJ 6.499 -58.254 29.0 20000101 20041231 810025 99999 OGLE GY SYGO 6.8 -58.1 1.0 20041124 20081125 810030 99999 EUGENE F CORREIA INTL GY SYEC 6.817 -58.117 0.6 20050101 20200624 810050 99999 KAMARANG GY 5.882999999999999 -60.5 494.0 19730101 20200204 810060 99999 LETHEM GY 3.367 -59.8 82.0 19730101 20200623 810100 99999 EBINI GY 5.567 -57.783 29.0 19730402 20170928 810580 99999 NEW AMSTERDAM GY 6.25 -57.3 1.0 19860803 20200624 810800 99999 KAIETEUR ARPT GY SYKA 5.183 -59.5 456.9 19780901 20180919 811000 99999 MABARUMA GY 8.2 -59.783 50.0 19730101 20200623 812000 99999 ZORG EN HOOP NS SMZO 5.811 -55.191 10.0 19730410 20200624 812020 99999 NICKERIE NS SMNI 5.95 -57.03 2.0 19730416 20200624 812050 99999 CORONIE NS 5.85 -56.317 3.0 19730617 19790824 812060 99999 MOENGO NS 5.617000000000001 -54.4 12.0 19791105 19791119 812080 99999 ALBINA NS SMBN 5.5 -54.05 3.0 19740809 19810709 812090 99999 STOELMANSEILAND NS 4.35 -54.417 52.0 19730617 20191219 812250 99999 JOHAN A PENGEL INTL NS SMJP 5.452999999999999 -55.188 18.0 19420901 20200624 812253 99999 JOHAN A PENGEL INTL NS 5.45 -55.183 18.0 19910418 20081231 812500 99999 TAFELBERG NS 3.783 -56.15 323.0 19730730 20120212 812510 99999 SIPALIWINI NS 2.033 -56.117 265.0 19730512 20130611 812520 99999 KAYSERBERG NS 3.1 -56.483000000000004 210.0 20030216 20040117 812530 99999 COEROENI NS 3.367 -57.333 165.0 19730617 19861124 812540 99999 PALOEMUE/VINCEAT NS 3.35 -55.45 151.0 19810310 19840122 812600 99999 KABALEBO NS 4.4 -57.217 80.0 19780103 19861106 814010 99999 ST LAURENT DU MARON FG SOOM 5.5 -54.033 9.0 19730101 20200624 814020 99999 PORTAL FG 5.417000000000001 -54.103 8.0 19800514 19840525 814030 99999 KOUROU FG 5.2 -52.75 8.0 19790402 20050821 814050 99999 ROCHAMBEAU FG SOCA 4.82 -52.36 7.9 19430601 20200624 814080 99999 SAINT GEORGES FG SOOG 3.883 -51.8 7.0 19730102 20200614 814150 99999 MARIPASOULA FG SOOA 3.633 -54.033 106.0 19730103 20190918 814200 99999 20030624 20030624 816090 99999 OIAPOQUE BR 3.8139999999999996 -51.863 20.5 20160704 20190701 816150 99999 BOA VISTA BR 2.805 -60.647 95.5 20160704 20200624 816280 99999 TARTARUGALZINHO BR 1.4969999999999999 -50.917 22.5 20161021 20180405 816480 99999 BARCELOS BR -0.983 -62.917 18.5 20161104 20200107 816580 99999 SOURE BR -0.8170000000000001 -48.516999999999996 12.5 20160704 20200219 816600 99999 SALINOPOLIS BR -0.617 -47.35 22.5 20160704 20200608 816800 99999 BELEM BR -1.4169999999999998 -48.433 25.5 20160704 20200624 816820 99999 CASTANHAL BR -1.3 -47.95 66.5 20160704 20200624 816850 99999 BRAGANCA BR -1.05 -46.783 34.5 20160704 20200624 816870 99999 TURIACU BR -1.6669999999999998 -45.367 42.5 20160704 20200324 816990 99999 PRESIDENTE FIGUEIREDO BR -2.056 -60.026 93.5 20160704 20200624 817000 99999 RIO URUBU BR -2.4330000000000003 -59.567 60.5 20160704 20200624 817020 99999 URUCARA BR -2.533 -57.75 18.5 20160704 20200131 817030 99999 PARINTINS BR -2.639 -56.756 36.5 20160704 20200325 817100 99999 CAMETA BR -2.25 -49.5 23.5 20160704 20191204 817110 99999 TOME-ACU BR -2.6 -48.367 39.5 20160704 20191203 817150 99999 SAO LUIS BR -2.533 -44.217 57.5 20160704 20200624 817160 99999 SANTANA BR -2.267 -43.617 9.5 20160704 20190506 817170 99999 PREGUICAS BR -2.593 -42.707 1.6 20140410 20200320 817290 99999 PREGUICAS BR -3.3 -60.633 20.5 20160704 20200325 817300 99999 MANAUS BR -3.133 -59.95 68.5 20160704 20200624 817320 99999 AUTAZES BR -3.583 -59.129 29.5 20160704 20200624 817330 99999 ITACOATIARA BR -3.133 -58.483000000000004 38.5 20160704 20200325 817340 99999 MAUES BR -3.4 -57.667 36.5 20160704 20200325 817370 99999 PLACAS BR -3.867 -54.217 97.5 20160704 20200308 817390 99999 MEDICILANDIA BR -3.517 -52.967 252.5 20160704 20200624 817420 99999 PACAJA BR -3.85 -50.633 109.5 20160704 20191204 817430 99999 TUCURUI BR -3.8169999999999997 -49.683 149.5 20160712 20200622 817450 99999 PARAGOMINAS BR -3.017 -47.35 102.5 20160704 20200624 817490 99999 CHAPADINHA BR -3.75 -43.35 92.5 20160704 20200409 817510 99999 ESPERANTINA BR -3.9 -42.266999999999996 66.5 20160704 20181116 817520 99999 PARNAIBA BR -3.0669999999999997 -41.783 58.5 20160704 20200624 817540 99999 SOBRAL BR -3.75 -40.35 65.5 20160704 20200624 817550 99999 ACARAU BR -3.117 -40.083 77.5 20160704 20200220 817560 99999 ITAPIPOCA BR -3.483 -39.583 103.5 20160704 20191213 817580 99999 FORTALEZA BR -3.8 -38.533 42.5 20160704 20200624 817700 99999 COARI BR -4.1 -63.15 44.5 20160704 20200113 817740 99999 SAO GONCALO BR -6.836 -38.311 235.5 20160704 20200624 817780 99999 ITAITUBA BR -4.283 -56.0 14.5 20160704 20200624 817840 99999 NOVO REPARTIMENTO BR -4.25 -49.933 114.5 20160712 20200624 817860 99999 RONDON DO PARA BR -4.783 -48.067 222.5 20160704 20200624 817880 99999 BURITICUPU BR -4.317 -46.45 176.5 20160704 20200425 817900 99999 BACABAL BR -4.25 -44.8 29.5 20160704 20191204 817920 99999 CAXIAS BR -4.817 -43.35 77.5 20160705 20200222 817940 99999 PIRIPIRI BR -4.283 -41.8 162.5 20160918 20200624 817970 99999 GUARAMIRANGA BR -4.2669999999999995 -38.933 871.5 20160704 20200302 817980 99999 JUAGUARUANA BR -4.783 -37.783 13.5 20160704 20191204 818200 99999 MARABA BR -5.167000000000001 -49.383 117.5 20160704 20200624 818210 99999 ARAGUATINS BR -5.65 -48.117 118.5 20160704 20200623 818220 99999 IMPERATRIZ BR -5.55 -47.467 127.5 20160704 20200624 818230 99999 GRAJAU BR -5.817 -46.167 231.5 20160704 20200624 818250 99999 BARRA DO CORDA BR -5.5 -45.233000000000004 154.5 20160704 20200624 818270 99999 TERESINA BR -5.033 -42.8 75.9 20160704 20200622 818280 99999 SAO PEDRO DO PIAUI BR -5.917000000000001 -42.717 288.5 20160704 20191020 818290 99999 CASTELO DO PIAUI BR -5.35 -41.516999999999996 287.5 20160704 20191109 818300 99999 CRATEUS BR -5.186 -40.672 292.5 20160705 20200624 818310 99999 QUIXERAMOBIM BR -5.167000000000001 -39.283 219.5 20160704 20200329 818320 99999 MORADA NOVA BR -5.132999999999999 -38.35 45.1 20130405 20200624 818330 99999 JAGUARIBE BR -5.905 -38.628 185.5 20160704 20200624 818340 99999 MOSSORO BR -5.083 -37.367 37.5 20160730 20200402 818350 99999 APODI BR -5.627000000000001 -37.832 151.5 20160731 20200624 818360 99999 APODI BR -5.117 -36.717 5.5 20160704 20200624 818380 99999 CALCANHAR BR -5.167000000000001 -35.483000000000004 18.5 20160704 20190113 818390 99999 NATAL BR -5.832999999999999 -35.2 66.5 20160704 20200624 818460 99999 ALVORADA DO GURGUEIA BR -8.45 -43.867 271.5 20160704 20191204 818470 99999 CANTO DO BURITI BR -8.117 -42.983000000000004 309.5 20160704 20191204 818480 99999 SAO JOAO DO PIAUI BR -8.365 -42.251000000000005 236.5 20110926 20200522 818600 99999 SERRA DE CARAJAS BR -6.082999999999999 -50.15 720.5 20160704 20191115 818630 99999 ESTREITO BR -6.65 -47.417 181.5 20160704 20200624 818660 99999 COLINAS BR -6.0329999999999995 -44.233000000000004 180.5 20160704 20200624 818680 99999 FLORIANO BR -6.767 -43.016999999999996 124.8 20160704 20200412 818690 99999 OEIRAS BR -6.9670000000000005 -42.15 157.5 20160704 20200506 818700 99999 VALENCA DO PIAUI BR -6.4 -41.733000000000004 302.5 20160704 20200624 818720 99999 TAUA BR -6.017 -40.283 416.5 20160704 20200624 818730 99999 IGUATU BR -6.4 -39.266999999999996 234.5 20160704 20200624 818750 99999 CAICO BR -6.4670000000000005 -37.083 171.5 20160704 20200624 818760 99999 SANTA CRUZ BR -6.233 -36.033 238.5 20160704 20191204 818770 99999 AREIA BR -6.9670000000000005 -35.683 576.1 20160704 20200624 818780 99999 CAMARATUBA BR -6.617000000000001 -35.133 137.5 20160704 20191117 818880 99999 LABREA BR -7.267 -64.783 65.5 20160704 20200624 818900 99999 HUMAITA BR -7.55 -63.067 73.5 20160916 20200624 818930 99999 APUI BR -7.2 -59.883 169.5 20160704 20200624 819000 99999 ARAGUAINA BR -7.267 -48.2 227.5 20160704 20200519 819010 99999 CAROLINA BR -7.332999999999999 -47.467 193.5 20160704 20200624 819030 99999 BALSAS BR -7.45 -46.033 225.5 20160704 20200523 819050 99999 URUCUI BR -7.4670000000000005 -44.35 394.5 20160704 20200624 819080 99999 PICOS BR -7.071000000000001 -41.403999999999996 234.5 20160704 20200624 819090 99999 CAMPOS SALES BR -7.082999999999999 -40.367 573.5 20140410 20200316 819100 99999 OURICURI BR -7.5329999999999995 -40.033 465.5 20160704 20200624 819110 99999 BARBALHA BR -7.3 -39.266999999999996 410.5 20160704 20200624 819120 99999 SERRA TALHADA BR -7.95 -38.3 462.5 20160704 20200624 819130 99999 PATOS BR -7.082999999999999 -37.266999999999996 282.0 20160704 20200624 819140 99999 MONTEIRO BR -7.9 -37.117 606.5 20160704 20200624 819150 99999 CABACEIRAS BR -7.483 -36.283 437.5 20160704 20200624 819160 99999 CAMPNA GRANDE BR -7.233 -35.9 549.5 20160704 20200624 819170 99999 SURUBIM BR -7.85 -35.783 419.5 20160704 20200624 819180 99999 JOAO PESSOA BR -7.15 -34.85 45.5 20160704 20200624 819210 99999 PORTO WALTER BR -8.267000000000001 -72.75 205.5 20160704 20200519 819220 99999 MARECHAL THAUMATURGO BR -8.95 -72.78699999999999 231.5 20160705 20191204 819240 99999 FEIJO BR -8.142000000000001 -70.343 164.5 20160924 20200624 819270 99999 BOCA DO ACRE BR -8.777000000000001 -67.332 112.5 20160707 20200122 819320 99999 PORTO VELHO BR -8.8 -63.85 99.5 20160704 20190921 819400 99999 CONCEICAO DO ARAGUAIA BR -8.283 -49.266999999999996 181.5 20160704 20191204 819410 99999 PEDRO AFONSO BR -8.967 -48.183 190.5 20160704 20200624 819500 99999 PAULISTANA BR -8.133 -41.15 375.5 20120111 20200624 819510 99999 CABROBO BR -8.5 -39.317 343.5 20160704 20200624 819530 99999 ARCO VERDE BR -8.433 -37.083 682.0 20160704 20200624 819540 99999 IBIMIRIM BR -8.517000000000001 -37.717 449.5 20160704 20200624 819550 99999 GARANHUS BR -8.9 -36.5 823.5 20160704 20200624 819560 99999 CARUARU BR -8.232999999999999 -35.983000000000004 551.5 20160704 20200624 819570 99999 PALMARES BR -8.667 -35.567 181.5 20160704 20200624 819580 99999 RECIFE BR -8.05 -34.95 11.5 20160704 20200624 819630 99999 PARQUE ESTADUAL CHANDLESS BR -9.367 -69.933 207.5 20160704 20191204 819650 99999 RIO BRANCO BR -9.95 -68.167 221.5 20160925 20200312 819700 99999 ARIQUEMES BR -9.95 -62.967 141.5 20160704 20200531 819750 99999 COTRIGUACU BR -9.9 -58.567 262.5 20160704 20200405 819760 99999 APIACAS BR -9.567 -57.4 221.5 20160704 20200624 819770 99999 ALTA FLORESTA BR -10.067 -56.75 295.5 20160704 20200624 819780 99999 CARLINDA BR -9.967 -55.833 301.5 20160704 20200624 819790 99999 GUARANTA DO NORTE BR -9.95 -54.883 321.5 20160704 20191204 819820 99999 SANTANA DO ARAGUAIA BR -9.333 -50.35 169.5 20161008 20200624 819850 99999 ALTO PARNAIBA BR -9.1 -45.933 282.5 20160704 20200624 819860 99999 GILBUES BR -9.867 -45.35 426.5 20160704 20200620 819870 99999 BOM JESUS DO PIAUI BR -9.083 -44.333 298.5 20160704 20200624 819880 99999 CARACOL BR -9.283 -43.317 524.5 20160704 20200624 819890 99999 SAO RAIMUNDO NONATO BR -9.033 -42.7 403.5 20160704 20200512 819900 99999 REMANSO BR -9.617 -42.083 402.5 20160704 20200624 819910 99999 PETROLINA BR -9.383 -40.8 370.5 20160705 20200624 819920 99999 UAUA BR -9.833 -39.5 454.5 20160704 20200624 819930 99999 PAULO AFONSO BR -9.367 -38.217 254.2 20160704 20180129 819940 99999 PAO DE ACUCAR BR -9.767000000000001 -37.45 20.5 20160704 20200624 819950 99999 PALMEIRA DOS INDIOS BR -9.417 -36.617 276.5 20160704 20200624 819960 99999 ARAPIRACA BR -9.8 -36.617 242.5 20150830 20190618 819970 99999 SAO LUIS DO QU BR -9.283 -35.567 20.5 20160704 20200624 819980 99999 MACEIO BR -9.55 -35.766999999999996 66.0 20160704 20200425 820140 99999 NORMANDIA BR 3.5 -60.167 700.0 19930821 19940707 820170 99999 OIAPOQUE BR SBOI 3.855 -51.797 19.2 19380603 20200624 820220 99999 BOA VISTA BR SBBV 2.846 -60.69 84.1 19730101 20200624 820240 99999 BOA VISTA BR 2.8169999999999997 -60.65 90.0 19740610 20070925 820260 99999 TIRIOS BR 2.224 -55.946999999999996 325.0 19840403 20081112 820300 99999 AMAPA BR SBAM 2.0669999999999997 -50.85 10.0 19430601 20120202 820305 99999 MARILIA BR SBML -22.197 -49.926 646.8 20071016 20200320 820306 99999 SANTO ANGELO BR SBNM -28.281999999999996 -54.169 321.9 20071016 20200624 820420 99999 CARACARAI BR 1.8330000000000002 -61.133 95.0 19890208 20200624 820670 99999 IAUARETE BR SBYA 0.608 -69.186 105.2 19730101 20151106 820910 99999 MONTE DOURADO BR SBMD -0.89 -52.602 206.3 20061026 20200214 820940 99999 PONTA DO CEU BR 0.767 -50.1 4.0 19801005 19960517 820960 99999 CANIVETE BR 0.517 -50.417 3.0 20040919 20200619 820980 99999 MACAPA BR SBMQ 0.051 -51.071999999999996 17.1 19730101 20200624 820990 99999 MACAPA-AEROPORTO BR 0.05 -51.067 16.0 19430901 20070925 821000 99999 PARI-CACHOEIRA BR -0.16699999999999998 -69.967 115.0 19820105 20150605 821030 99999 TARACUA BR 0.067 -68.233 105.0 20040709 20040709 821060 99999 SAO GABRIEL DA CACH BR -0.133 -67.083 90.0 19730101 20081231 821070 99999 SAO GABRIEL DA CACHOEIRA AERO BR SBUA -0.11699999999999999 -66.967 79.0 20050101 20200624 821080 99999 HOTEL TRANSAMERICA BR SBTC -15.355 -38.999 6.1 19730101 20200401 821110 99999 EDUARDO GOMES INTL BR SBEG -3.0389999999999997 -60.05 80.5 19770501 20200624 821130 99999 BARCELOS BR SWBC -0.981 -62.92 34.1 19730101 20200624 821410 99999 SOURE BR -0.7170000000000001 -48.55 11.0 19381101 20200624 821430 99999 SALINOPOLIS BR -0.617 -47.383 14.0 19810201 20200624 821450 99999 TRACUATEUA (BRAGANCA) BR -1.083 -46.933 36.0 19900112 20200624 821780 99999 OBIDOS BR -1.9169999999999998 -55.516999999999996 37.0 19891117 20070925 821810 99999 MONTE ALEGRE BR -2.0 -54.083 146.0 19891114 20200624 821840 99999 PORTO DE MOZ BR SBMZ -1.733 -52.233000000000004 16.0 19730101 20200624 821880 99999 BREVES BR -1.6669999999999998 -50.483000000000004 15.0 19891201 20071219 821910 99999 BELEM BR -1.45 -48.467 10.0 19310104 20070925 821930 99999 VAL DE CANS INTL BR SBBE -1.379 -48.476000000000006 16.5 19421001 20200624 821980 99999 TURIACU BR -1.7169999999999999 -45.4 44.0 19761101 20200624 822000 99999 IPIRANGA(?) BR -2.983 -69.583 0.0 19830701 19841101 822120 99999 FONTE BOA BR -2.533 -66.167 56.0 19740610 20200321 822400 99999 PARINTINS BR -2.633 -56.733000000000004 29.0 19730101 20160805 822440 99999 SANTAREM BR SBSN -2.4219999999999997 -54.793 60.4 19730101 20200624 822460 99999 BELTERRA BR -2.633 -54.95 176.0 19740610 20200624 822630 99999 CAMETA BR -2.25 -49.5 24.0 19891114 20070925 822770 99999 FAROL SANTANA BR -2.267 -43.617 8.0 19801024 20040723 822800 99999 SAO LUIZ BR -2.533 -44.3 51.0 19310202 20070925 822810 99999 MARECHAL CUNHA MACHADO INTL BR SBSL -2.585 -44.233999999999995 54.3 19430501 20200624 822870 99999 PARNAIBA BR -3.083 -41.783 22.0 19760404 20180930 822880 99999 PARNAIBA PREFEITO DR JOAO SILVA FILHO BR SBPB -2.8939999999999997 -41.732 4.9 19430512 20200624 822940 99999 ARACHU BR -2.883 -40.133 16.0 19891201 20070417 823030 99999 S.PAULO DE OLIVENCA BR -3.467 -68.95 94.0 20010911 20010912 823170 99999 TEFE BR SBTF -3.383 -64.72399999999999 56.1 19730101 20200624 823260 99999 CODAJAS BR -3.833 -62.083 49.0 19891117 20190606 823310 99999 MANAUS BR -3.133 -60.016999999999996 72.0 19330806 20070925 823320 99999 PONTA PELADA BR SBMN -3.1460000000000004 -59.986000000000004 81.4 19730101 20200624 823360 99999 ITACOATIARA BR SBIC -3.127 -58.481 43.3 19730101 20200624 823365 99999 MONTE DOURADO BR -0.883 -52.6 206.0 20081030 20081231 823366 99999 TOCANTINS BR SBPJ -10.292 -48.357 235.9 20050903 20200624 823530 99999 ALTAMIRA BR SBHT -3.2539999999999996 -52.254 112.2 19730101 20200624 823600 99999 TUCURUI AERO BR -3.767 -49.717 253.0 19931113 20130518 823610 99999 TUCURUI BR SBTU -3.786 -49.72 253.0 19861004 20200624 823760 99999 ZE DOCA BR -3.717 -45.533 46.0 19900330 20070925 823820 99999 CHAPADINHA BR -3.733 -43.35 104.0 20020311 20070925 823920 99999 SOBRAL BR -3.7 -40.35 83.0 19310104 20200322 823970 99999 FORTALEZA BR -3.767 -38.6 26.0 19310104 20070925 823980 99999 PINTO MARTINS INTL BR SBFZ -3.7760000000000002 -38.533 25.0 19360824 20200624 824000 99999 FERNANDO DE NORONHA BR SBFN -3.855 -32.423 58.8 19310101 20200624 824100 99999 BENJAMIN CONSTANT BR SBBC -4.383 -70.033 65.0 19730101 20200624 824110 99999 TABATINGA BR SBTT -4.256 -69.936 85.0 19790606 20200624 824180 99999 CARAUARI BR SBUI -4.95 -66.9 66.0 19730101 20051011 824250 99999 COARI BR -4.083 -63.133 46.0 19740610 20160805 824440 99999 ITAITUBA BR SBIH -4.242 -56.001000000000005 33.5 19921001 20200624 824450 99999 ITAITUBA BR -4.2669999999999995 -55.983000000000004 45.0 19881103 20200624 824600 99999 BACABAL BR -4.25 -44.783 25.0 19890801 20200624 824760 99999 CAXIAS BR -4.867 -43.35 103.0 19380913 20200509 824800 99999 PIRIPIRI BR -4.2669999999999995 -41.783 161.0 19950101 20070925 824870 99999 GUARAMIRANGA BR -4.283 -39.0 870.0 19380203 20070417 824930 99999 JAGUARUANA BR -4.783 -37.766999999999996 12.0 19911101 20070925 825330 99999 MANICORE BR SBMY -5.811 -61.278 53.0 19740215 20200624 825620 99999 MARABA BR SBMA -5.369 -49.138000000000005 108.8 19730101 20200624 825640 99999 PREFEITO RENATO MOREIRA BR SBIZ -5.531000000000001 -47.46 131.4 19770601 20200624 825650 99999 IMPERATRIZ BR -5.5329999999999995 -47.45 131.0 19910927 20070925 825660 99999 IMPERATRIZ BR -5.5329999999999995 -47.5 123.0 19860701 20020410 825670 99999 CARAJAS BR SBCJ -6.117999999999999 -50.003 621.2 20050101 20200624 825680 99999 GRAJAU BR -5.8 -46.45 163.0 19380913 20031119 825710 99999 BARRA DO CORDA BR -5.5 -45.266999999999996 153.0 19310303 20200624 825780 99999 TERESINA BR -5.083 -42.817 74.0 19770201 20070925 825790 99999 SENADOR PETRONIO PORTELLA BR SBTE -5.06 -42.823 66.8 19310104 20200624 825830 99999 CRATEUS BR -5.167000000000001 -40.667 299.0 19730102 20180430 825860 99999 QUIXERAMOBIM BR -5.2 -39.3 212.0 19310104 20200624 825880 99999 MORADA NOVA BR -5.083 -38.383 44.0 19900107 19900309 825900 99999 APODI BR -5.65 -37.8 65.0 19900105 20070417 825910 99999 DIX SEPT ROSADO BR SBMS -5.202000000000001 -37.364000000000004 23.5 19730101 20200624 825940 99999 MACAU BR -5.117 -36.633 6.0 19730222 20180801 825950 99999 CALCANHAR BR -5.167000000000001 -35.483000000000004 14.0 19810205 20200619 825960 99999 CEARA-MIRIM BR -5.65 -35.417 61.0 19760404 20070925 825980 99999 NATAL BR -5.767 -35.2 45.0 19310104 20190912 825990 99999 AUGUSTO SEVERO BR SBNT -5.9110000000000005 -35.248000000000005 51.5 19430801 20200624 825991 99999 MINISTRO VICTOR KONDER INTL BR SBNF -26.88 -48.651 5.5 20050502 20200624 826100 99999 EIRUNEPE BR -6.667000000000001 -69.867 104.0 19730101 20200624 826400 99999 JACAREACANGA BR SBEK -6.233 -57.777 98.8 19730101 20200624 826590 99999 ARAGUAINA BR -7.2 -48.2 228.0 19891201 20100428 826680 99999 SAO FELIX DO XINGU BR -6.632999999999999 -51.983000000000004 150.0 19740610 19970109 826780 99999 FLORIANO BR -6.767 -43.016999999999996 127.0 19730101 20200320 826830 99999 TAUA BR -6.0 -40.417 399.0 19891201 20200624 826843 99999 CARAJAS/MARABA BR SBCJ -6.117000000000001 -50.0 618.0 19870117 19890215 826860 99999 IGUATU BR -6.367000000000001 -39.3 217.0 19310104 20070925 826890 99999 SAO GONCALO BR -6.75 -38.217 233.0 19891117 20070417 826900 99999 SERIDO / CAICO BR -6.4670000000000005 -37.083 170.0 19380913 19440331 826910 99999 FLORANIA BR -6.117000000000001 -36.817 324.0 19891201 20070417 826930 99999 CRUZETA BR -6.433 -36.583 226.0 19891117 20070925 827040 99999 CRUZEIRO DO SUL BR SBCZ -7.6 -72.76899999999999 194.2 19740201 20200624 827230 99999 LABREA BR -7.25 -64.833 60.0 19730101 20200624 827410 99999 ALTO TAPAJOS BR -7.35 -57.516999999999996 140.0 19730101 19771015 827530 99999 OURICURI BR -7.9 -40.05 459.0 19910823 20070925 827600 99999 BALSAS BR -7.05 -42.067 251.0 19951013 20011119 827640 99999 CAROLINA BR SBCI -7.32 -47.458999999999996 172.2 19380719 20200624 827641 99999 CARAJAS BR -6.117000000000001 -50.0 637.0 20040729 20081231 827650 99999 CAROLINA BR -7.332999999999999 -47.467 193.0 19730101 20200624 827680 99999 BALSAS / MARANHAO BR SNBS -7.517 -46.05 283.0 20010916 20070925 827710 99999 URUCUI BR -7.233 -44.55 187.0 19900320 19900320 827770 99999 CAMPOS SALES BR -7.0 -40.383 583.0 19891117 20070417 827800 99999 PICOS BR -7.067 -41.483000000000004 208.0 19891117 20200321 827840 99999 BARBALHA BR -7.317 -39.3 409.0 19740611 20200624 827890 99999 TRIUNFO BR -7.85 -38.133 1020.0 19900323 20180331 827910 99999 PATOS BR -7.017 -37.266999999999996 249.0 19860701 20200320 827920 99999 MONTEIRO BR -7.882999999999999 -37.067 599.0 19950201 20070925 827940 99999 MANAIRA BR -7.55 -34.817 15.0 19310104 19360714 827950 99999 PRESIDENTE JOAO SUASSUNA BR SBKG -7.27 -35.896 501.7 19310108 20200624 827960 99999 CAMPINAGRANDE BR -7.267 -35.883 500.0 19930101 20070925 827970 99999 SURUBIM BR -7.832999999999999 -35.717 418.0 19380503 20070925 827980 99999 JOAO PESSOA BR -7.1 -34.867 7.0 19310104 20200624 827981 99999 LAURO CARNEIRO DE LOYOLA BR SBJV -26.224 -48.797 4.6 20060625 20200624 828070 99999 TARAUACA BR -8.167 -70.767 190.0 19740610 20081231 828080 99999 TARAUACA BR SBTK -8.155 -70.783 196.9 20050101 20200624 828160 99999 BOCA DO ACRE BR SBBA -8.75 -67.4 119.0 19730101 19850715 828240 99999 GOVERNADOR JORGE TEIXEIRA DE OLIVEIRA BR SBPV -8.709 -63.902 89.6 19821101 20200624 828250 99999 PORTO VELHO BR -8.767000000000001 -63.917 95.0 19730101 20070925 828610 99999 CONCEICAO DO ARAGUAIA BR SBAA -8.347999999999999 -49.302 199.0 19730101 20200624 828630 99999 PEDRO AFONSO BR -8.967 -48.183 187.0 19890901 20200624 828790 99999 S.JOAO DO PIAUI BR -8.35 -42.25 235.0 19950401 20200624 828820 99999 PAULISTANA BR -8.133 -41.133 375.0 19910726 20070925 828860 99999 CABROBO BR -8.517000000000001 -39.333 341.0 19900105 20070417 828930 99999 GARANHUNS BR -8.883 -36.516999999999996 823.0 19310104 20200624 828950 99999 CARUARU BR -8.283 -35.967 529.0 20020912 20181222 828960 99999 PESQUEIRA SOUTHWEST BR -8.4 -36.766999999999996 705.0 19310108 19400301 828981 99999 RECIFE BRAZIL/IBURA FLD BR SBRF -8.116 -34.916 9.0 19430801 19460801 828990 99999 GUARARAPES GILBERTO FREYRE INTL BR SBRF -8.126 -34.924 10.1 19310104 20200624 829000 99999 RECIFE BR -8.05 -34.917 7.0 19730101 20070925 829150 99999 RIO BRANCO BR -9.967 -67.8 160.0 19380111 20200404 829170 99999 PRESIDENTE MEDICI BR SBRB -9.869 -67.89399999999999 193.2 19830702 20200624 829270 99999 COTRIGUACU * BR -9.917 -58.266999999999996 -999.9 19891117 20010306 829300 99999 CACHIMBO BR SBCC -9.334 -54.965 537.1 19610101 20200624 829650 99999 ALTA FLORESTA BR SBAT -9.866 -56.106 288.6 19880601 20200624 829654 99999 CACHIMBO BR -9.333 -54.967 551.0 19920626 20081231 829700 99999 ALTO PARNAIBA * BR -9.117 -45.95 -999.9 20010916 20070925 829750 99999 BOM JESUS DO PIAUI BR -9.067 -44.367 331.0 19740610 20070417 829760 99999 CARACOL BR -9.283 -43.333 523.0 19900323 20070925 829790 99999 REMANSO BR -9.633 -42.1 401.0 19360824 20200624 829830 99999 PETROLINA BR -9.383 -40.483000000000004 370.0 19730101 20200624 829840 99999 SENADOR NILO COELHO BR SBPL -9.362 -40.569 385.0 19430401 20200624 829860 99999 PAULO AFONSO BR SBUF -9.401 -38.251 269.1 19730501 20200624 829890 99999 AGUA BRANCA BR -9.283 -37.9 608.0 19360824 20070417 829900 99999 PAO DE ACUCAR BR -9.75 -37.433 20.0 19310104 20070417 829910 99999 PILAR EAST BR -9.583 -35.9 131.0 19380913 19440331 829920 99999 PALMEIRO DOS INDIOS BR -9.45 -36.7 275.0 19940401 20070925 829930 99999 ZUMBI DOS PALMARES BR SBMO -9.511000000000001 -35.792 118.0 19730101 20200624 829940 99999 MACEIO BR -9.667 -35.7 65.0 19310105 20060331 829960 99999 PORTO DE PEDRAS BR -9.183 -35.433 51.0 20130522 20131009 830100 99999 BRASILEIA BR -11.017000000000001 -68.733 260.0 20011014 20011014 830320 99999 LAMBARI BR -21.95 -45.317 879.0 20140614 20140614 830330 99999 PALMAS BR -10.183 -48.3 281.0 19940401 20100428 830360 99999 SAO SEBASTIAO BR -23.8 -45.4 5.0 19380913 19901218 830580 99999 SAO ROQUE/S. PAULO BR -23.517 -47.117 -999.9 19900506 19900829 830630 99999 PORTO NACIONAL BR SBPN -10.719000000000001 -48.4 265.2 19730101 20151111 830640 99999 PORTO NACIONAL BR -10.717 -48.583 239.0 19380205 20200624 830650 99999 PALMAS AERO BR -10.283 -48.35 236.0 20050628 20150305 830660 99999 SAO SEBASTIAO BR -23.8 -45.417 5.0 19790312 19900727 830750 99999 GUARULHOS BR SBGR -23.432 -46.47 749.5 20050101 20200624 830760 99999 IBIPETUBA BR -11.017000000000001 -44.516999999999996 450.0 19891117 20130630 830880 99999 SENAR DO BOMFMI BR -10.467 -40.183 558.0 19891117 20100428 830900 99999 MONTE SANTO BR -10.433 -39.3 464.0 19970901 20191121 830920 99999 FOZ DO SAO FRANCISCO BR -10.65 -36.167 11.0 19380913 19410930 830950 99999 SANTA MARIA BR SBAR -10.984000000000002 -37.07 7.0 19830401 20200624 830960 99999 ARACAJU BR -10.917 -37.05 5.0 19310104 20200624 830970 99999 PROPRIA BR -10.2 -36.867 19.0 19310104 20100428 831000 99999 SAN PEDRO BR -11.417 -61.583 305.0 19830701 19840930 831110 99999 RIO/JACAREPAGUA BR -22.983 -43.367 3.0 19770601 20200624 831170 99999 ILHA RASA BR -23.066999999999997 -43.15 75.0 20151014 20200624 831560 99999 SANTA ISABEL MORRO BR -11.567 -50.667 197.0 19730101 19901017 831790 99999 BARRA BR -11.083 -43.167 402.0 19900425 20200331 831820 99999 IRECE BR -11.3 -41.867 747.0 19740613 20100914 831840 99999 MORRO DO CHAPEU BR -11.217 -41.217 1005.0 19891117 20120102 831860 99999 JACOBINA BR -11.183 -40.467 485.0 19891117 20200323 831900 99999 SERRINHA BR -11.633 -38.967 359.0 20000330 20100428 831920 99999 CIPO * BR -11.083 -38.516999999999996 464.0 19891117 20200323 831950 99999 ITABAIANINHA BR -11.117 -37.817 208.0 19900501 20160904 832000 99999 FT PRINCIPE BEIRA BR -12.417 -64.383 180.0 19830701 19860928 832080 99999 VILHENA BR SBVH -12.694 -60.098 615.1 19730101 20200624 832140 99999 MATUPA * BR -10.25 -54.917 -999.9 19891117 20100914 832200 99999 RIO XINGU BR -12.0 -53.4 300.0 19730101 19820128 832210 99999 FEIRA DE SANTANA BR -12.183 -38.967 231.0 19940401 20100428 832220 99999 CRUZ DAS ALMAS BR -12.667 -39.083 227.0 20020311 20070925 832280 99999 PEIXE BR -12.05 -48.533 250.0 19890901 20200624 832290 99999 SALVADOR BR -13.017000000000001 -38.516999999999996 51.0 19310101 20100428 832310 99999 PARANA BR -12.55 -47.833 275.0 19900312 19970716 832315 99999 CHAPADA DIAMANTINA BR SBLE -12.482000000000001 -41.277 510.8 20101108 20200602 832350 99999 TAGUATINGA BR -12.4 -46.433 604.0 19890901 20200624 832360 99999 BARREIRAS BR -12.15 -45.0 439.0 19730102 20200624 832420 99999 LENCOIS BR -12.567 -41.383 439.0 19730809 20200624 832440 99999 ITABERABA BR -12.55 -40.433 249.0 19730128 20180825 832480 99999 DEPUTADO LUIS EDUARDO MAGALHAES BR SBSV -12.911 -38.330999999999996 19.5 19430809 20200624 832490 99999 ALAGOINHAS BR -12.283 -38.55 132.0 19900507 20100428 832620 99999 19380503 19390729 832640 99999 GLEBA CELESTE BR -12.2 -56.5 415.0 19740610 20161108 832700 99999 CANARANA BR -13.5 -52.5 430.0 19891117 20200624 832860 99999 CORRENTINA BR -13.467 -44.766999999999996 587.0 19900119 20100428 832880 99999 BOM JESUS DA LAPA BR SBLP -13.262 -43.408 443.2 19730101 20200624 832890 99999 BOM JESUS DA LAPA AEROPORTO BR -13.267000000000001 -43.417 441.0 19430401 20070925 832920 99999 ITUACU BR -13.817 -41.3 533.0 19900301 20100428 832950 99999 ITIRUCU (JAGUAQUARA) BR -13.367 -39.95 756.0 19900815 20100428 833020 99999 ALCOMAT * BR -14.25 -59.25 -999.9 19891117 20050730 833090 99999 DIAMANTINO BR -14.4 -56.45 286.0 19730101 20200624 833190 99999 NOVA XAVANTINA BR SBXV -14.7 -52.35 315.0 19730101 20200624 833320 99999 POSSE BR -14.1 -46.367 826.0 19890901 20200624 833340 99999 FORMOSO BR -14.933 -46.25 840.0 19900103 20070417 833380 99999 ESPINOSA * BR -14.967 -42.817 -999.9 19891117 20070925 833390 99999 CAETITE BR -14.05 -42.617 882.0 19310105 20190801 833440 99999 VITORIA DA CONQUISTA BR SBQV -14.863 -40.863 913.8 19740623 20200323 833470 99999 19740706 19740718 833480 99999 ILHEUS BR -14.8 -39.067 60.0 19310101 19980826 833490 99999 ILHEUS BR SBIL -14.815999999999999 -39.033 4.6 19830401 20200624 833520 99999 BOGUS BRAZILIAN BR 19880601 19891024 833580 99999 POXOREO (POXOREU) BR -15.833 -54.383 450.0 19790201 20200624 833590 99999 BARRA DO GARCAS BR SBBW -15.860999999999999 -52.388999999999996 349.6 19861101 20200624 833610 99999 CUIABA BR -15.55 -56.117 151.0 19310101 20070925 833620 99999 MARECHAL RONDON BR SBCY -15.652999999999999 -56.117 188.1 19730101 20200624 833640 99999 PADRE RICARDO REMETTER BR -15.783 -56.067 141.0 19891117 20070925 833650 99999 SANGRADOURO BR -15.633 -53.9 555.0 19740720 20041014 833680 99999 ARAGARCAS BR -15.9 -52.233000000000004 345.0 19730101 20200624 833700 99999 PRIMAVERA DO LESTE E BR -15.633 -53.917 480.0 19380801 19440330 833740 99999 GOIAS BR -15.917 -50.133 512.0 19310101 20171002 833750 99999 GAMA BR SBGA -16.05 -48.05 -999.9 19900313 19930217 833760 99999 PIRENOPOLIS BR -15.85 -48.967 730.0 19360824 20100428 833770 99999 BRASILIA BR -15.783 -47.933 1159.0 19730101 20070925 833780 99999 PRESIDENTE JUSCELINO KUBITSCHEK BR SBBR -15.863 -47.913000000000004 1060.4 19610101 20200624 833790 99999 FORMOSA BR -15.533 -47.333 912.0 19380403 20100428 833830 99999 BURITIS BR -15.617 -46.417 600.0 19891109 20040811 833840 99999 ARINOS BR -15.9 -46.05 519.0 19891117 20200624 833860 99999 JANUARIA BR -15.433 -44.367 474.0 19310101 20200624 833880 99999 MONTE AZUL BR -15.083 -42.75 603.0 19891117 20160101 833890 99999 MOCAMBINHO BR -15.05 -44.016999999999996 452.0 19891117 20070925 833930 99999 PEDRA AZUL BR -16.0 -41.283 649.0 19740720 20200624 833950 99999 JANAUBA BR -15.783 -43.3 516.0 19891117 20070925 833980 99999 CANAVIEIRAS BR -15.667 -38.95 5.0 19840107 20160905 834050 99999 CACERES BR -16.05 -57.683 118.0 19380201 20161108 834080 99999 CARINHANHA BR -14.167 -43.917 556.0 19891117 20191120 834100 99999 RONDONOPOLIS BR -16.45 -54.567 284.0 19930101 20070417 834190 99999 BASE AEREA BR SBAN -16.229 -48.964 1136.3 19770204 20200624 834230 99999 GOIANIA BR -16.667 -49.25 741.0 19380510 20200624 834240 99999 SANTA GENOVEVA BR SBGO -16.632 -49.221000000000004 746.8 19730101 20200624 834270 99999 LUZIANIA EAST BR -16.267 -47.883 910.0 19380403 19440331 834280 99999 UNAI BR -16.367 -46.55 460.0 19891201 20020713 834370 99999 MARIO RIBEIRO BR SBMK -16.707 -43.818999999999996 667.8 19360824 20200624 834410 99999 SALINAS BR -16.183 -42.283 472.0 19891117 20070925 834420 99999 ARACUAI BR -16.867 -42.067 284.0 19891117 20200624 834460 99999 GUARATINGUETA BR -16.733 -39.55 195.0 20020203 20100428 834600 99999 PORTO SEGURO BR SBPS -16.439 -39.080999999999996 51.2 20070717 20200624 834640 99999 JATAI * BR -17.883 -51.717 -999.9 20010916 20100428 834700 99999 RIO VERDE BR -17.917 -50.917 727.0 19740720 20200624 834790 99999 PARACATU BR -17.217 -46.867 711.0 19380503 20200624 834810 99999 JOAO PINHEIRO BR -17.7 -46.167 760.0 19891117 20141112 834830 99999 PIRAPORA BR -17.333 -44.95 505.0 19360824 20190930 834880 99999 ITAMARANDIBA BR -17.85 -42.85 1097.0 19891117 20070925 834920 99999 TEOFILO OTONI BR -17.85 -41.516999999999996 356.0 19310101 20080928 834970 99999 CARAVELAS BR SBCV -17.652 -39.253 11.0 19610101 20171018 834980 99999 CARAVELAS BR -17.733 -39.25 3.0 19320501 20200624 834990 99999 ABROLHOS BR -17.967 -38.7 38.0 19790112 20200619 835120 99999 COXIM BR -18.5 -54.766999999999996 287.0 19891117 19970524 835130 99999 NHUMIRIM BR -18.983 -56.65 89.0 19891201 20011009 835140 99999 CAPINOPOLIS BR -18.683 -49.567 621.0 19891118 20110718 835220 99999 IPAMERI BR -17.717 -48.167 752.0 19890901 20100428 835240 99999 19361001 19440331 835250 99999 UBERLANDIA AERO BR SBUL -18.883 -48.22 943.0 20050502 20200624 835253 99999 UBERLANDIA BR -18.883 -48.217 967.0 19910827 20081231 835260 99999 CATALAO BR -18.183 -47.95 840.0 19310101 20200624 835310 99999 PATOS DE MINAS BR -18.6 -46.516999999999996 940.0 19891117 20180601 835360 99999 CURVELO BR -18.767 -44.433 616.0 19900314 19950608 835380 99999 DIAMANTINA BR -18.25 -43.6 1297.0 19360824 20200301 835430 99999 GOVERNADOR VALADARES BR -18.85 -41.933 277.0 19891117 20070417 835500 99999 SAO MATEUS BR -18.7 -39.85 25.0 19360824 20200624 835520 99999 CORUMBA INTL BR SBCR -19.012 -57.673 140.5 19310101 20200624 835540 99999 CORUMBA (AEROPORTO) BR -19.0 -57.667 141.0 19770601 20071030 835650 99999 PARANAIBA BR -19.7 -51.183 331.0 19891117 20200624 835660 99999 CONFINS (AERO) BR -19.617 -43.967 827.0 20000828 20200624 835700 99999 POMPEU BR -19.217 -45.0 691.0 19891117 20070925 835740 99999 FRUTAL BR -20.033 -48.933 543.0 19970901 20130527 835760 99999 UBERABA BR SBUR -19.765 -47.965 809.2 19730101 20200624 835770 99999 UBERABA BR -19.75 -47.917 743.0 19360824 20110718 835790 99999 ARAXA BR -19.567 -46.933 1004.0 19380913 20200624 835810 99999 FLORESTAL BR -19.883 -44.417 753.0 19730313 19740503 835820 99999 BAMBUI BR -20.0 -45.983000000000004 661.0 19891201 20180405 835830 99999 PAMPULHA CARLOS DRUMMOND DE ANDRADE BR SBBH -19.851 -43.951 789.1 19510101 20200624 835860 99999 SETE LAGOAS BR -19.467 -44.25 732.0 19891117 20110718 835870 99999 TANCREDO NEVES INTL BR SBCF -19.634 -43.968999999999994 827.5 19310101 20200624 835880 99999 LAGOA SANTA AIRPORT BR SBLS -19.65 -43.883 852.0 19730101 20200624 835890 99999 CONCEICAO DO MATO DENTRO BR -19.033 -43.433 675.0 19891118 20070925 835920 99999 CARATINGA BR -19.8 -42.15 609.0 19360830 20200624 835950 99999 AIMORES BR -19.483 -41.067 83.0 19891117 20140709 835970 99999 LINHARES BR -19.4 -40.067 28.0 19891201 20090313 835990 99999 MOELA BR -24.05 -46.266999999999996 100.0 20100915 20180716 836050 99999 BOGUS BRAZILIAN BR 19891117 20010926 836080 99999 ANASTACIO BR -20.467 -55.8 156.0 19310102 19400301 836110 99999 CAMPO GRANDE BR -20.45 -54.617 530.0 19740913 20070925 836120 99999 CAMPO GRANDE BR SBCG -20.469 -54.673 558.7 19360824 20200624 836150 99999 AGUA CLARA BR -20.45 -52.883 365.0 19891117 20040423 836170 99999 URUBUPUNGA BR SBUP -20.776999999999997 -51.565 356.3 19730101 20071107 836180 99999 TRES LAGOAS BR -20.783 -51.7 313.0 19380804 20080928 836230 99999 VOTUPORANGA BR -20.417 -49.983000000000004 503.0 19880513 20200624 836250 99999 BARRETO BR -20.633000000000003 -48.567 0.0 19931007 20040914 836300 99999 FRANCA BR -20.55 -47.433 1026.0 19730104 20200624 836310 99999 S SEBASTIAO DO OARAISO BR -20.916999999999998 -47.117 820.0 20160704 20191204 836340 99999 FURNAS/PRIVATE BR -20.7 -46.333 735.0 19730101 19820609 836390 99999 CAPARAO BR -20.517 -41.867 843.0 19900714 20070925 836420 99999 VICOSA BR -20.75 -42.85 690.0 19360824 20070925 836440 99999 POCOS DE CALDAS BR SBPC -21.843000000000004 -46.568000000000005 1260.3 20050502 20200624 836460 99999 CACHOEIRO ITAPEMIRIM BR -20.85 -41.1 77.0 19310101 20040114 836480 99999 VITORIA BR -20.317 -40.333 36.0 19310101 20170419 836490 99999 GOIABEIRAS BR SBVT -20.258 -40.286 3.4 19730101 20200624 836500 99999 TRINDADE (ILHA) BR -20.5 -29.316999999999997 5.0 19430401 20200624 836520 99999 LEITE LOPES BR SBRP -21.134 -47.773999999999994 549.2 20050306 20200624 836540 99999 PORTO MURTINHO BR -21.717 -57.883 98.0 19891117 19901007 836590 99999 DOURADOS BR -22.233 -54.817 452.0 19891107 20011224 836600 99999 MARAMBAIA BR -23.05 -43.6 16.0 19840501 20000601 836630 99999 PONTA DA ARMACAO BR -22.883000000000003 -43.033 2.0 19790901 19840828 836690 99999 SAO SIMAO BR -21.483 -47.55 617.0 19880513 20100428 836710 99999 CAMPO FONTENELLE BR SBYS -21.985 -47.335 599.8 19730101 20200624 836720 99999 ARACATUBA BR -21.2 -50.433 397.0 20070717 20130430 836723 99999 PORTO SEGURO BR -16.433 -39.067 51.0 20080101 20081231 836724 99999 CARLOS PRATES BR SBPR -19.909000000000002 -43.99100000000001 927.8 20070717 20200624 836725 99999 ARARAQUARA BR SBAQ -21.811999999999998 -48.133 711.4 20070717 20200331 836726 99999 CASCAVEL BR SBCA -25.0 -53.501000000000005 753.8 20070717 20200624 836727 99999 CRICIUM/FORQUILHINHA BR SBCM -28.733 -49.417 28.3 20070717 20170719 836728 99999 GUAJARA MIRIM BR SBGM -10.786 -65.285 145.7 20070717 20200624 836729 99999 TANCREDO THOMAS DE FARIA BR SBGU -25.386999999999997 -51.52 1065.0 20070717 20150729 836740 99999 LINS BR -21.666999999999998 -49.75 426.0 20020415 20020415 836760 99999 CATANDUVA BR -21.133000000000003 -48.967 536.0 19880423 20200624 836790 99999 19310101 19440331 836793 99999 LEITE LOPES BR -21.133000000000003 -47.766999999999996 563.0 19920807 20081231 836810 99999 CALDAS BR -21.916999999999998 -46.383 1150.0 19310101 20130430 836820 99999 MUZAMBINHO BR -21.366999999999997 -46.516999999999996 1052.0 19360824 19400229 836830 99999 MACHADO BR -21.666999999999998 -45.917 873.0 19891117 20070925 836840 99999 CAMBUQUIRA BR -21.85 -45.3 960.0 19310101 19440331 836850 99999 ITAOCARA SOUTHEAST BR -21.816999999999997 -42.016999999999996 609.0 19360824 19400301 836860 99999 POCO FUNDO SOUTH BR -21.816999999999997 -45.95 917.0 19360824 19440321 836870 99999 LAVRAS BR -21.233 -45.0 919.0 19360824 20200624 836880 99999 SAO JOAO DEL REI BR -21.3 -44.266999999999996 991.0 19360824 19440331 836890 99999 MAJOR BRIGADEIRO DOORGAL BORGES BR SBBQ -21.267 -43.761 1114.7 19730101 20200624 836920 99999 FRANCISCO DE ASSIS BR SBJF -21.791999999999998 -43.387 911.0 19310101 20200624 836950 99999 ITAPERUNA BR -21.2 -41.883 123.0 19891110 20200624 836970 99999 19310101 19360724 836980 99999 BARTOLOMEU LISANDRO BR SBCP -21.698 -41.302 17.4 19310101 20200624 836990 99999 19360824 19400301 836993 99999 MACAE BR -22.333000000000002 -41.766999999999996 3.0 19900207 20081231 837000 99999 SAO TOME BR -22.05 -41.05 4.0 19790112 20200619 837020 99999 PONTA PORA BR -22.533 -55.7 650.0 19730101 20160201 837030 99999 PONTA PORA BR SBPP -22.55 -55.703 657.1 19730101 20200624 837040 99999 IVINHEMA BR -22.316999999999997 -53.933 369.0 19891117 20140615 837080 99999 GUARATINGUETA BR SBGW -22.791999999999998 -45.205 536.8 19770504 20200624 837085 99999 AIRPORT ESTADUAL ARTHUR SIQUEIRA BR SBBP -22.983 -46.533 880.2 20120622 20120622 837086 99999 JUNDIAI AIRPORT BR SBJD -23.183000000000003 -46.933 757.3 20120709 20161008 837140 99999 CAMPOS DO JORDAO BR -22.733 -45.583 1579.0 19880513 20100428 837160 99999 PRESIDENTE PRUDENTE BR SBDN -22.175 -51.425 450.2 19730101 20200624 837180 99999 CORDEIRO BR -22.033 -42.367 485.0 19890209 20200624 837190 99999 CABO FRIO BR -22.983 -42.033 7.0 19730101 19971105 837210 99999 VIRACOPOS BR SBKP -23.006999999999998 -47.135 661.4 19510120 20200624 837220 99999 BAURU BR SBBU -22.345 -49.053999999999995 617.2 19730101 20200624 837260 99999 SAO CARLOS BR SBSA -22.017 -47.883 856.0 19310101 20200323 837290 99999 CAMPINAS BR -22.9 -47.083 669.0 19310101 19810925 837320 99999 OURO FINO BR -22.283 -46.55 925.0 19360824 19901113 837360 99999 SAO LOURENCO BR -22.1 -45.016999999999996 900.0 19310101 20070925 837380 99999 RESENDE BR SBRS -22.483 -44.467 440.0 19310101 20200323 837390 99999 VOLTA REDONDA BR -22.483 -44.083 374.0 19730101 19870713 837410 99999 SANTA CRUZ BR SBSC -22.932 -43.718999999999994 3.0 19730101 20200624 837420 99999 VASSOURAS BR -22.4 -43.667 437.0 19360824 19900625 837430 99999 RIO DE JANEIRO BR -22.916999999999998 -43.167 5.0 19310101 20160925 837440 99999 ILHA RASA BR -23.066999999999997 -43.15 75.0 19790112 20010830 837450 99999 NOVA FRIBURGO BR -22.283 -42.533 856.0 19310101 20020129 837460 99999 GALEAO ANTONIO CARLOS JOBIM BR SBGL -22.809 -43.244 8.5 19310101 20200624 837470 99999 19310101 19440331 837480 99999 CAMPO DELIO JARDIM DE MATTOS BR SBAF -22.875 -43.385 33.5 19510101 20200624 837490 99999 MACAE AERO BR -22.333000000000002 -41.75 2.0 19360112 20041231 837500 99999 PETROPOLIS BR -22.517 -43.183 850.0 19320715 19440331 837550 99999 SANTOS DUMONT BR SBRJ -22.91 -43.163000000000004 3.4 19380913 20200624 837590 99999 SAO PEDRO DA ALDEIA BR SBES -22.813000000000002 -42.093 18.6 19730101 20200624 837660 99999 LONDRINA BR -23.383000000000003 -51.183 566.0 19730101 20200624 837670 99999 REGIONAL DE MARINGA SILVIO NAME JUNIOR BR SBMG -23.476 -52.016000000000005 545.0 19891117 20200624 837680 99999 LONDRINA BR SBLO -23.334 -51.13 569.1 19730101 20200624 837690 99999 JACAREZINHO BR -23.15 -49.967 471.0 19940503 19951231 837730 99999 AVARE BR -23.1 -48.917 793.0 19360824 20070925 837740 99999 ITAPEVA BR -23.95 -48.883 647.0 19310101 19970609 837750 99999 GUAIRA BR -24.083000000000002 -54.25 230.0 19730101 19970823 837753 99999 GUARULHOS BR -23.433000000000003 -46.467 768.0 19880621 20081231 837780 99999 CABO FRIO BR SBCB -22.921999999999997 -42.074 4.3 19730101 20200624 837790 99999 MARTE BR SBMT -23.509 -46.638000000000005 721.8 19730101 20200624 837800 99999 CONGONHAS BR SBSP -23.627 -46.655 801.9 19310101 20200624 837810 99999 SAO PAULO BR -23.5 -46.617 792.0 19730101 20100428 837820 99999 SANTOS BR -23.933000000000003 -46.317 14.0 19310101 20040311 837830 99999 CAMPO MOURAO BR -24.05 -52.367 616.0 19891117 20100914 837840 99999 TAUBATE BR SBTA -23.017 -45.567 577.0 19360824 20200624 837860 99999 UBATUBA BR -23.45 -45.067 8.0 19891117 20070417 837870 99999 MOELA BR -24.05 -46.266999999999996 101.0 19790112 20020113 837880 99999 ANGRA DOS REIS BR -23.017 -44.317 2.0 19310101 19951026 838000 99999 BOGUS BRAZILIAN BR 19861025 20031122 838090 99999 SAO JOSE DOS CAMPOS BR SBSJ -23.233 -45.833 625.0 19730101 19780813 838093 99999 PROFESSOR URBANO ERNESTO STUMPF BR SBSJ -23.229 -45.861999999999995 646.2 19900207 20200624 838110 99999 IVAI BR -24.4 -50.833 808.0 19360824 20200624 838130 99999 CASTRO BR -24.783 -50.0 1009.0 19360829 20070925 838140 99999 JAGUARIAIVA BR -24.25 -49.7 923.0 19380621 20190725 838180 99999 BASE AEREA DE SANTOS BR SBST -23.925 -46.288000000000004 3.0 19730101 20200624 838210 99999 IGUAPE BR -24.717 -47.55 3.0 19970910 20091218 838250 99999 ILHA DO MEL BR -25.483 -48.317 4.0 20101228 20200619 838260 99999 FOZ-DO-IGUACU(DEAD) BR -25.533 -54.6 226.0 19740730 19820525 838270 99999 CATARATAS INTL BR SBFI -25.596 -54.486999999999995 239.9 19530301 20200624 838280 99999 TOLEDO BR -24.733 -53.733000000000004 550.0 19900519 19970914 838290 99999 SAO JOSE DOS CAMPOS AERO BR -23.217 -45.867 646.0 19770501 20071030 838310 99999 S.MIGUEL IGUACU BR -25.333000000000002 -54.25 290.0 19810601 19941111 838340 99999 GUARAPUAVA BR -25.4 -51.467 609.0 19310101 20030206 838345 99999 EMBRAER UNIDADE GAVIAO PEIXOTO BR SBGP -21.774 -48.405 609.0 20130125 20130125 838360 99999 IRATI BR -25.467 -50.633 837.0 19771216 20200624 838370 99999 PONTA GROSSA BR -25.1 -50.167 868.0 19360824 20011108 838400 99999 AFONSO PENA BR SBCT -25.528000000000002 -49.176 910.7 19610101 20200624 838420 99999 BACACHERI BR SBBI -25.405 -49.232 931.8 19310101 20200624 838440 99999 PARANAGUA BR SBPG -25.517 -48.516999999999996 5.0 19310101 20200620 838510 99999 SOROCABA BR -23.483 -47.433 645.0 19891118 20100428 838570 99999 TREMEMBE BR -23.967 -45.55 547.0 19360824 19950727 838600 99999 PALMAS BR -26.483 -51.983000000000004 1090.0 19310101 19991202 838620 99999 19310814 19440331 838640 99999 PORTO UNIAO BR -26.233 -51.067 778.0 19900901 19970425 838670 99999 RIO NEGRO BR -26.1 -49.8 824.0 19360824 20040128 838690 99999 IRINEOPOLIS BR -26.25 -50.8 783.0 19380407 19400301 838710 99999 19360826 19440331 838720 99999 INDAIAL BR -26.9 -49.217 68.0 19891201 20070925 838740 99999 SAO FRANCISCO DO SUL BR -26.25 -48.65 72.0 19310101 20050829 838810 99999 IRAI BR -27.183000000000003 -53.233000000000004 247.0 19730101 20180801 838830 99999 CHAPECO BR SBCH -27.116999999999997 -52.617 679.0 19891117 20200624 838850 99999 BELA VISTA DE GOIAS BR -16.967 -48.95 152.0 19310814 19391125 838870 99999 CAMPOS NOVOS BR -27.4 -51.2 947.0 19310101 20170801 838890 99999 IMARIBO BR -27.2 -50.95 982.0 19841001 19900831 838910 99999 LAGES BR -27.816999999999997 -50.333 937.0 19310101 20070925 838930 99999 PARAIBA DO SUL SW BR -22.233 -43.333 377.0 19310101 19320407 838950 99999 ARVOREDO BR -27.3 -48.35 20.0 19790115 20030304 838970 99999 FLORIANOPOLIS BR -27.583000000000002 -48.567 2.0 19310101 20070925 838990 99999 HERCILIO LUZ BR SBFL -27.67 -48.547 6.1 19730101 20200624 839070 99999 SAO LUIZ GONZAGA BR -28.4 -55.016999999999996 245.0 19310101 20200505 839120 99999 CRUZ ALTA BR -28.633000000000003 -53.6 464.0 19891117 20070925 839140 99999 LAURO KURTZ BR SBPF -28.244 -52.327 724.2 19360824 20200624 839160 99999 LAGOA VERMELHA BR -28.416999999999998 -51.583 806.0 19880917 20070417 839180 99999 VACARIA BR -28.55 -50.867 955.0 19900305 20031226 839190 99999 BOM JESUS BR -28.666999999999998 -50.433 1048.0 19820701 20200624 839200 99999 S. JOAQUIM BR -28.283 -49.917 1402.0 19891117 20070925 839230 99999 URUSSANGA BR -28.517 -49.317 49.0 19360903 19400301 839240 99999 LAGUNA BR -28.483 -48.8 31.0 19360826 19901009 839250 99999 SANTA MARTA BR -28.6 -48.817 45.0 19400309 20200624 839260 99999 NAVEGANTES AERO BR -26.866999999999997 -48.633 5.0 19360904 19440331 839270 99999 URUGUAIANA BR -29.75 -57.083 62.0 19740612 20190402 839280 99999 RUBEM BERTA BR SBUG -29.781999999999996 -57.038000000000004 78.0 19310102 20200515 839310 99999 ALEGRETE BR -29.683000000000003 -55.516999999999996 121.0 19360824 19900124 839360 99999 SANTA MARIA BR -29.7 -53.7 95.0 19740730 20200624 839370 99999 SANTA MARIA BR SBSM -29.711 -53.688 87.5 19360829 20200624 839420 99999 CAXIAS DO SUL BR SBCX -29.166999999999998 -51.2 759.0 19891117 20200624 839480 99999 TORRES BR -29.333000000000002 -49.733000000000004 31.0 19730101 20200505 839520 99999 CANOAS BR -29.933000000000003 -51.133 8.0 19840601 20071030 839530 99999 SANTANA DO LIVRAMENTO BR -30.883000000000003 -55.533 231.0 19891122 20070925 839640 99999 ENCRUZILHADA DO SUL BR -30.533 -52.516999999999996 428.0 19730101 20200624 839670 99999 CANOAS BR SBCO -29.945999999999998 -51.144 7.9 19310101 20200624 839700 99999 MOSTARDAS BR -31.25 -50.9 5.0 19790112 20200624 839710 99999 SALGADO FILHO BR SBPA -29.994 -51.17100000000001 3.4 19730101 20200624 839730 99999 SANTANA DO IPANEMA E BR -9.367 -37.2 429.0 19310101 19310926 839750 99999 GENERAL CARNEIRO BR -15.717 -52.75 416.0 19330802 19380731 839800 99999 BAGE BR -31.333000000000002 -54.1 242.0 19360824 20200624 839810 99999 COMANDANTE GUSTAVO KRAEMER BR SBBG -31.391 -54.111999999999995 182.9 19610101 20200624 839820 99999 BOGUS BRAZILIAN BR 19890401 19891030 839850 99999 PELOTAS BR SBPK -31.718000000000004 -52.328 18.0 19730101 20200624 839950 99999 RIO GRANDE BR -32.016999999999996 -52.083 2.0 19310107 20190815 839970 99999 ST.VITORIA DO PALMAR BR -33.516999999999996 -53.35 24.0 19310101 20200624 839980 99999 CHUI BR -33.75 -53.367 13.0 19790112 20200205 839985 99999 ITAITUBA BR -4.25 -56.0 34.0 19870629 19920930 839995 99999 MONTE DOURADO BR SBMD -0.883 -52.6 200.0 19870629 19880509 840010 99999 SEYMOUR EC SEGS -0.45399999999999996 -90.266 63.1 19420801 20200624 840050 99999 LOS PERALES EC -0.6 -80.4 3.0 20040824 20040824 840051 99999 SEBASTIAN EC SESB -2.642 -77.157 274.3 20110628 20110628 840052 99999 SAN CARLOS ORIENTE EC SESS -2.056 -77.157 518.2 20110627 20110627 840060 99999 RIO AMAZONAS EC -1.5 -78.067 1043.0 20050917 20200624 840070 99999 SAN CRISTOBAL EC -0.433 -90.26700000000001 16.0 19741127 19771103 840080 99999 SAN CRISTOBAL EC SEST -0.917 -89.617 18.9 19730616 20200624 840090 99999 PUERTO VILLAMIL EC -1.0 -91.083 6.0 20031001 20081106 840100 99999 SAN CRISTOBAL AEROPUERTO EC -0.9 -89.617 18.0 20100901 20200623 840120 99999 MANTA/ELOY ALFARO EC -0.95 -80.7 6.0 19730101 19771025 840122 99999 BAHIA DE CARAQUEZ EC -0.583 -80.4 3.0 19730101 19740203 840130 99999 ESMERALDAS LAS PALMAS EC 0.9329999999999999 -79.667 -999.9 20040605 20060310 840150 99999 CHONE EC -0.7 -80.117 69.0 20020514 20020514 840180 99999 ESMERALDAS AEROPUERTO (TACHINA) EC SEES 0.9670000000000001 -79.617 7.0 19730101 20081106 840250 99999 LAGO AGRIO EC -0.083 -76.867 299.0 20050226 20200624 840260 99999 GENERAL RIVADENEIRA EC -0.983 -79.633 10.0 20040902 20200624 840270 99999 TENIENTE CORONEL LUIS A MANTILLA EC SETU 0.81 -77.708 2941.0 19380902 20200624 840320 99999 TULCAN EC 0.8170000000000001 -77.7 2950.0 20110402 20110611 840340 99999 LAGO AGRIO EC SELA 0.1 -76.883 351.0 19751104 19771103 840350 99999 EL ANGEL EC 0.617 -77.933 3000.0 20010921 20170508 840360 99999 SAN GABRIEL EC 0.6 -77.817 2860.0 20030404 20200624 840430 99999 ATAHUALPA EC SEIB 0.33799999999999997 -78.13600000000001 2226.3 19800401 20181101 840450 99999 INGUINCHO EC SEAS 0.25 -78.733 3185.0 19380603 20200624 840480 99999 LATACUNGA/COTOPAXI& EC -0.917 -78.6 2784.0 19381201 19420831 840500 99999 LA CONCORDIA EC 0.017 -79.367 360.0 20030404 20200624 840510 99999 OTAVALO EC 0.217 -78.25 2550.0 19730101 20090414 840515 99999 SAN CRISTOBAL ISL & EC -0.433 -90.26700000000001 16.0 19730620 19730728 840560 99999 TOMALON EC 0.033 -78.233 2790.0 20020924 20200624 840630 99999 NUEVA LOJA AEROPUER EC SELA 0.1 -76.883 297.0 19771101 20081106 840690 99999 SANTO DOMINGO LOS COLORADOS EC SESD -0.248 -79.214 522.4 19800728 20200623 840710 99999 MARISCAL SUCRE INTL EC SEQU -0.141 -78.488 2812.7 19770701 20200315 840720 99999 INAQUITO EC -0.16699999999999998 -78.483 2812.0 20030404 20200316 840725 99999 MARISCAL SUCRE INTERNATIONAL AIRPORT EC SEQM -0.11699999999999999 -78.367 2400.0 20130219 20200624 840750 99999 LIMONCOCHA EC -0.4 -76.6 221.0 20130222 20200624 840760 99999 LA TOLA EC -0.217 -78.367 2480.0 20031001 20200624 840880 99999 IZOBAMBA EC -0.35 -78.55 3058.0 20010921 20200624 840990 99999 COCA EC SECP -0.45 -76.95 300.0 20010921 20160602 841000 99999 FRANCISCO DE ORELLANA EC SECO -0.46299999999999997 -76.987 254.2 20050917 20200624 841010 99999 SAN VICENTE AEROPUERTO EC SEBC -0.583 -80.417 3.0 19771001 20180605 841020 99999 CHONE EC SECH -0.7170000000000001 -80.133 69.0 20060306 20180228 841050 99999 PUERTO ILA EC -0.467 -79.333 260.0 20100901 20200624 841110 99999 PORTOVIEJO/REALES EC -1.033 -80.467 44.0 19420413 19771101 841115 99999 PORTOVIEJO/REALES EC -1.033 -80.467 44.0 19741127 19840207 841170 99999 ELOY ALFARO INTL EC SEMT -0.95 -80.683 14.6 19770701 20200624 841200 99999 SAN JUAN LA MANA EC -0.9 -78.6 223.0 19750122 20120801 841230 99999 COTOPAXI INTL EC SELT -0.907 -78.616 2805.7 19800420 20200624 841290 99999 GUAYAQUIL/SIMON BOL EC -2.15 -79.883 4.0 19330801 19771024 841310 99999 TIPUTINI EC SETI -0.7829999999999999 -75.517 220.0 19790401 20020315 841320 99999 NUEVO ROCAFUERTE EC -0.917 -75.417 265.0 20010921 20200624 841350 99999 PORTOVIEJO EC -1.033 -80.45 60.0 20010921 20200511 841370 99999 REALES TAMARINDOS EC SEPV -1.042 -80.472 39.6 19771001 20111208 841380 99999 CUENCA EC -1.133 -78.967 2539.9 19410601 19420831 841390 99999 CUENCA/MARISCAL LA. EC -2.883 -78.967 2532.0 19420401 20140910 841400 99999 PICHILINGUE EC -1.1 -79.483 120.0 20010921 20200623 841420 99999 CORAZON EC -1.133 -79.083 1478.0 20080721 20190201 841430 99999 RUMIPAMBA EC -1.0170000000000001 -78.583 2628.0 20050917 20200624 841470 99999 CHACHOAN EC SEAM -1.212 -78.575 2591.4 19800401 20200624 841490 99999 TENA AEROPUERTO EC -0.983 -77.817 520.0 20080721 20111101 841600 99999 QUEROCHACA EC -1.35 -78.6 2940.0 20010921 20200624 841630 99999 SHELL MERA AEROPUERTO EC SEPA -1.5 -78.05 1054.0 19790224 20081106 841760 99999 CHIMBORAZO EC SERB -1.653 -78.656 2789.2 19800401 20200624 841770 99999 GUASLAN EC -1.75 -78.667 2729.0 20080721 20090330 841790 99999 PUYO EC -1.5 -77.9 960.0 20080503 20200623 841890 99999 CHILLANES EC -1.983 -79.067 2330.0 20080504 20090413 841900 99999 BABAHOYA EC -1.883 -79.517 11.0 20080721 20170321 841980 99999 MONTALVO EC SEMO -2.0669999999999997 -76.976 292.6 20020621 20031106 842000 99999 GENERAL ULPIANO PAEZ EC SESA -2.205 -80.98899999999999 5.5 19770701 20200624 842020 99999 MILAGRO EC -2.117 -79.6 13.0 19990405 20200624 842030 99999 SIMON BOLIVAR INTL EC SEGU -2.157 -79.884 5.8 19770701 20200624 842040 99999 GUAYAQUIL-INAMHI EC -2.15 -79.883 5.0 20050917 20170224 842044 99999 PATUCA EC SEPC -2.752 -78.264 542.8 19970423 19990618 842051 99999 MACARA/J.M.VELASCOI EC -4.383 -79.967 430.0 19730102 19741218 842140 99999 LA TRONCAL EC -2.367 -79.367 465.0 20090201 20090414 842170 99999 CORONEL E CARVAJAL EC SEMC -2.299 -78.12100000000001 1052.2 20030527 20200624 842190 99999 SUCUA EC SESC -2.483 -78.183 949.0 20100928 20100928 842200 99999 TAISHA EC -2.383 -77.467 510.0 20010906 20060331 842260 99999 CANAR EC -2.55 -78.933 3083.0 19730101 20200624 842290 99999 LAS PALMAS EC -2.717 -78.617 2400.0 20080721 20090414 842350 99999 PAUTE EC -2.767 -78.75 2289.0 19730101 20180214 842355 99999 LOJA/CAMILO PONCE EC -4.0 -79.367 1238.0 19730101 19901114 842390 99999 MARISCAL LAMAR EC SECU -2.889 -78.984 2531.7 19770701 20200624 842400 99999 GUALACEO EC -2.883 -78.767 2360.0 20080721 20090414 842480 99999 GENERAL MANUEL SERRANO EC SEMH -3.2689999999999997 -79.962 3.4 19771001 20100219 842520 99999 SANTA ROSA AEROPUERTO EC -3.4330000000000003 -79.983 7.0 20160516 20160519 842530 99999 GUALAQUIZA EC SEGZ -3.423 -78.567 804.7 20020216 20151005 842550 99999 MACARA/J.M.VELASCOI EC -4.383 -79.933 430.0 19730102 19771103 842570 99999 ZARUMA EC -3.7 -79.617 1279.0 20080721 20090414 842590 99999 SARAGURO EC -3.7 -79.3 2359.0 20080721 20090414 842650 99999 CATAMAYO/CAMILO PONCE ENRIQUEZ ARPT EC SECA -4.0 -79.367 1236.9 19770701 20200624 842700 99999 LOJA/LA ARGELIA EC -4.033 -79.2 2160.0 20010921 20200624 842780 99999 CARIAMANGA EC -4.333 -79.617 1407.0 20080721 20110813 842790 99999 JOSE MARIA VELASCO IBARRA EC SEMA -4.378 -79.941 459.6 19771001 20140115 843010 99999 GUEPPI PE -0.11699999999999999 -75.25 300.0 19810724 19820131 843100 99999 ESTRECHO PE -2.583 -72.75 0.0 19811009 19811009 843310 99999 ALFEREZ VLADIMIR SARA BAUER PE SPAS -2.7960000000000003 -76.467 221.9 19810724 19810827 843470 99999 HUAMBOS PE -6.45 -78.967 2200.0 20011217 20011217 843700 99999 PEDRO CANGA PE SPME -3.553 -80.381 35.1 19740315 20200624 843770 99999 CORONEL FRANCISCO SECADA VIGNETTA INTL PE SPQT -3.785 -73.309 93.3 19730101 20200624 843900 99999 CAPITAN MONTES PE SPYL -4.577 -81.25399999999999 86.0 19330209 20200624 843903 99999 CIRO ALEGRIA PE SPAC -4.567 -77.917 168.0 19821016 19840905 844000 99999 PAITA PE SPIT -5.117 -81.117 27.0 19830802 19890326 844010 99999 CAPITAN FAP GUILLERMO CONCHA IBERICO PE SPUR -5.206 -80.616 35.4 19570701 20200624 844050 99999 HUANCABAMBA PE SPAB -5.233 -79.45 1552.0 20020809 20020809 844100 99999 JAEN PE SPJE -5.582999999999999 -78.767 755.0 20110211 20200524 844160 99999 PIURA GRUP7 PE -5.183 -80.6 52.0 20040814 20050511 844250 99999 MOISES BENZAQUEN RENGIFO PE SPMS -5.894 -76.118 178.9 19490114 20200624 844350 99999 MOYOBAMBA PE SPBB -6.0329999999999995 -76.967 833.0 19600101 20011008 844355 99999 RIOJA PE -6.05 -77.15 792.0 19800423 19920404 844400 99999 JUAN SIMONS VELA PE SPJA -6.068 -77.16 825.1 19940401 20200318 844440 99999 CHACHAPOYAS PE SPPY -6.202000000000001 -77.85600000000001 2539.9 19600101 20200624 844520 99999 CAPT JOSE A QUINONES GONZALES INTL PE SPHI -6.787000000000001 -79.828 29.6 19330102 20200624 844550 99999 CADETE GUILLERMO DEL CASTILLO PAREDES PE SPST -6.5089999999999995 -76.373 274.3 19500104 20200616 844720 99999 GEN FAP ARMANDO REVOREDO IGLESIAS PE SPJR -7.138999999999999 -78.48899999999999 2676.4 19570701 20200624 844740 99999 JUANJUI PE SPJI -7.169 -76.729 349.9 19501028 20200318 845010 99999 CAPITAN CARLOS MARTINEZ DE PINILLOS PE SPRU -8.081 -79.109 32.3 19490102 20200510 845050 99999 SANTIAGO DE CHUCO PE -8.133 -78.167 3129.0 19870628 19880214 845150 99999 CAP FAP DAVID ABENZUR RENGIFO INTL PE SPCL -8.378 -74.574 156.4 19490102 20200624 845310 99999 TENIENTE JAIME A DE MONTREUIL MORALES PE SPEO -9.15 -78.524 21.0 19600702 20200620 845340 99999 TINGO MARIA PE SPGM -9.133 -75.95 665.0 19490222 20200624 845420 99999 COMANDANTE FAP GERMAN ARIAS GRAZIANI PE SPHZ -9.347000000000001 -77.598 2749.9 19730101 20200624 845600 99999 PUERTO ESPERANZA PE SPEP -9.767999999999999 -70.706 221.0 19811231 19820515 845640 99999 ALFEREZ FAP D F FERNANDINI PE SPNC -9.879 -76.205 1850.1 19600307 20200624 845645 99999 HUANUCO/ALFEREZ FAP PE -9.9 -76.233 1859.0 19740218 19740318 845720 99999 PARAMONGA PE -10.667 -77.833 46.0 19600705 20191202 845800 99999 MAZAMARI PE SPMF -11.333 -74.55 685.0 20090922 20200507 845805 99999 ECHARATE PE SPWT -11.85 -72.933 384.0 20120101 20130110 845820 99999 PARANONGA PE -9.333 -76.183 14.9 19490101 19531112 845930 99999 ATALAYA PE SPAY -10.729000000000001 -73.767 228.9 19570701 20200531 846000 99999 MATUCANA PE -11.839 -76.378 2417.0 20190610 20200624 846030 99999 LA MERCED PE -11.083 -75.283 801.0 19570701 19661230 846130 99999 LA OROYA PE -11.482999999999999 -75.9 3632.0 19600701 19661231 846230 99999 JAUJA PE -11.783 -75.467 3322.0 19570701 19661231 846231 99999 FRANCISCO CARLE PE SPJJ -11.783 -75.473 3363.2 20010925 20200528 846280 99999 JORGE CHAVEZ INTL PE SPJC -12.022 -77.11399999999999 34.4 19601106 20200624 846285 99999 LAS PALMAS PE -12.15 -77.0 78.0 20030924 20030924 846300 99999 HUAYAO PE -12.033 -75.317 3350.0 19600808 20040902 846310 99999 LINATAKBC PE -11.9 -76.967 155.1 19360826 19641231 846330 99999 HUANCAYO PE -12.067 -75.233 3350.0 19600701 19661231 846580 99999 PADRE ALDAMIZ PE SPTU -12.614 -69.229 200.9 19471108 20200624 846655 99999 PATRIA PE SPIR -13.033 -71.267 678.0 19730804 19740122 846730 99999 CORONEL FAP ALFREDO MENDIVIL DUARTE PE SPHO -13.155 -74.204 2717.9 19660104 20200624 846770 99999 QUINCEMIL PE SPIL -13.267000000000001 -70.667 634.0 19600101 19881114 846860 99999 TENIENTE ALEJANDRO VELASCO ASTETE INTL PE SPZO -13.536 -71.939 3310.1 19490303 20200624 846865 99999 ANDAHUAYLAS PE -13.7 -73.35 3444.0 19741112 19940405 846880 99999 ANDAHUAYLAS PE SPHY -13.706 -73.35 3444.2 19940401 20200604 846910 99999 PISCO INTL PE SPSO -13.745 -76.22 11.9 19350415 20200624 847050 99999 PUQUIO PE -14.7 -74.133 3213.0 19810801 20020621 847200 99999 MARIA REICHE NEUMAN PE SPZA -14.854000000000001 -74.962 566.9 20010915 20200606 847210 99999 SAN JUAN DE MARCONA PE SPJN -15.383 -75.167 60.0 19570701 20020225 847310 99999 PUERTO DE LOMAS NW PE -15.533 -74.917 10.0 19490102 19531231 847350 99999 JULIACA PE SPJL -15.467 -70.158 3825.8 19610308 20200621 847461 99999 SESQUICENTENARIO PE -15.825999999999999 -70.012 3812.0 20190610 20200624 847465 99999 CARAVELI PE SPVL -15.767000000000001 -73.417 1833.0 19730802 19740730 847520 99999 RODRIGUEZ BALLON PE SPQU -16.340999999999998 -71.583 2561.8 19420101 20200624 847570 99999 OCONA PE -16.433 -73.1 0.0 19810708 19810708 847600 99999 MAZO CRUZ PE -16.733 -69.717 4045.0 19810724 19810829 847610 99999 MOLLENDO PE SPDO -17.033 -72.017 13.0 20020209 20200624 847615 99999 CESAR TORKE PODESTA PE SPEQ -17.179000000000002 -70.931 1365.5 19840713 19841003 847710 99999 ILO PE -17.7 -71.35 9.0 20011007 20011007 847730 99999 ILO PE SPLO -17.695 -71.344 21.9 20010915 20200620 847750 99999 PUNTA COLES PE -17.7 -71.383 50.0 19810701 19810907 847820 99999 CORONEL CARLOS CIRIANI SANTA ROSA INTL PE SPTN -18.053 -70.27600000000001 468.8 19570701 20200624 847826 99999 PLAYA POINT PONCE PE X69 17.967 -66.617 0.0 19790508 19790517 847920 99999 RUTEROS EAST CI -18.65 -70.233 780.0 19491016 19531231 850330 99999 GUAYARAMERIN BL SLGY -10.817 -65.35 130.0 19430202 20110610 850335 99999 GUAYARAMERIN INTERNATIONAL BL SLGM -10.533 -65.233 140.0 20110327 20200624 850410 99999 HEROES DEL ACRE BL SLCO -11.04 -68.783 271.9 19430201 20200624 850430 99999 RIBERALTA BL SLRI -11.017000000000001 -66.117 135.0 19430301 20200624 851040 99999 SAN JOAQUIN BL SLJO -13.067 -64.667 140.0 19421102 20200624 851090 99999 SAN RAMON BL SLRA -13.3 -64.7 140.0 19830401 20200624 851140 99999 MAGDALENA BL SLMG -13.333 -64.15 141.0 19730103 20200618 851160 99999 BAURES BL -13.75 -65.433 143.9 20120102 20200321 851175 99999 SANTA ANA BL SLSA -13.767000000000001 -65.45 220.0 19730120 19750224 851230 99999 SANTA ANA DEL YACUMA BL SLSA -13.762 -65.435 143.9 19870102 20200624 851390 99999 SANTA ROSA BL SLSR -14.067 -66.783 224.9 20100112 20200621 851400 99999 REYES BL SLRY -14.3 -67.367 280.0 19730103 20200528 851410 99999 RURRENABAQUE BL SLRQ -14.482999999999999 -67.483 202.0 19451010 20200620 851510 99999 APOLO BL SLAP -14.732999999999999 -68.417 1415.0 19421001 20200321 851515 99999 BAURES BL SLBU -13.583 -63.583 385.0 20091004 20200206 851520 99999 SAN BORJA/CAPT GERM BL SLSB -14.867 -66.75 194.0 19730101 20200624 851530 99999 SAN IGNACIO DE MOXO BL SLSM -14.967 -65.633 241.0 19730103 20200608 851540 99999 TTE AV JORGE HENRICH ARAUZ BL SLTR -14.819 -64.918 155.1 19430101 20200624 851710 99999 TIPUANI BL SLTP -15.533 -68.0 560.0 19870510 19870803 851750 99999 ASCENCION GUARAYOS BL SLAS -15.717 -63.1 247.0 19460902 20200611 851950 99999 SAN JAVIER BL SLJV -16.267 -62.467 520.0 19750620 20200616 851960 99999 CONCEPCION BL SLCP -16.25 -62.1 497.0 19420801 20200624 852000 99999 LAJA BL -16.517 -68.3 3959.0 19830701 19891012 852001 99999 LAJA BL -16.517 -68.3 3959.1 20180719 20190426 852010 99999 EL ALTO INTL BL SLLP -16.512999999999998 -68.192 4061.5 19360401 20200624 852030 99999 OVEJUYO BL -16.517 -68.05 4320.0 19520901 19601231 852050 99999 TODOS SANTOS BL SLTS -16.767 -65.183 335.0 19790319 19790410 852070 99999 SAN IGNACIO VELASCO BL SLSI -16.367 -60.95 413.0 19430101 20200611 852100 99999 SAN MATIAS BL SLTI -16.333 -58.383 124.0 19860802 20200430 852150 99999 BOGUS BOLIVIAN BL 19881113 20021208 852224 99999 SANTIAGO BL SLTG 0.0 0.0 -999.0 19850831 19891215 852230 99999 JORGE WILSTERMAN BL SLCB -17.421 -66.17699999999999 2548.1 19420201 20200624 852300 99999 CHARANA BL SLCN -17.583 -69.45 4057.0 19380101 20080129 852420 99999 JUAN MENDOZA BL SLOR -17.963 -67.07600000000001 3702.1 19380301 20200623 852440 99999 VIRU VIRU INTL BL SLVR -17.645 -63.135 373.4 19840701 20200624 852450 99999 EL TROMPILLO BL SLET -17.812 -63.17100000000001 417.9 19421001 20200620 852470 99999 SAN JOSE BL SLJE -17.833 -60.75 284.0 19420801 20200321 852640 99999 VALLEGRANDE BL SLVG -18.467 -64.1 1998.0 19420701 20200321 852680 99999 ROBORE (CIV/MIL) BL SLRB -18.317 -59.75 284.0 19430101 20200623 852830 99999 JUANA AZURDUY DE PADILLA BL SLSU -19.007 -65.289 2903.8 19440301 20160513 852890 99999 TTE DE AV SALVADOR OGAYA G BL SLPS -18.975 -57.821000000000005 133.8 19420601 20200623 852930 99999 CAPITAN NICOLAS ROJAS BL SLPO -19.543 -65.72399999999999 3935.9 19471101 20200331 853000 99999 RIO MULATOS BL -19.7 -66.783 3815.0 19830701 19850106 853005 99999 LA INDIA BL 0.0 0.0 -999.0 19840911 19840911 853120 99999 MONTEAGUDO BL SLAG -19.783 -63.917 992.0 19901005 20200619 853150 99999 CAMIRI BL SLCA -20.05 -63.567 792.0 19460117 20200424 853220 99999 UYUNI BL -20.583000000000002 -66.8 3670.0 19380106 19500603 853450 99999 TCNL RAFAEL PABON BL SLVM -21.255 -63.406000000000006 398.1 19800501 20200621 853640 99999 CAPITAN ORIEL LEA PLAZA BL SLTJ -21.555999999999997 -64.70100000000001 1854.4 19440401 20200620 853645 99999 COLLPANI BL 0.0 0.0 -999.0 19850129 19850129 853650 99999 YACUIBA BL SLYA -21.961 -63.652 645.0 19440601 20200612 853730 99999 VILLAZON ARPT BL SLVZ -22.116999999999997 -65.55 335.3 19380101 20180102 853940 99999 BERMEJO BL -22.767 -64.317 381.0 19860304 20191004 854050 99999 CHINCHORRO CI -18.467 -70.317 29.0 19491201 20171201 854060 99999 CHACALLUTA CI SCAR -18.349 -70.339 50.9 19350414 20200624 854100 99999 CHORRILLOS CI -26.467 -69.433 3200.0 19350501 19430130 854170 99999 IQUIQUE CI -20.533 -70.183 52.0 19350103 20170614 854180 99999 DIEGO ARACENA INTL CI SCDA -20.535 -70.181 47.2 19730101 20200624 854320 99999 CALAMA CI -22.5 -68.9 2320.0 19370324 20200624 854420 99999 CERRO MORENO INTL CI SCFA -23.444000000000003 -70.445 138.7 19350101 20200624 854425 99999 CALAMA/EL LOA & CI SCCF -22.433000000000003 -68.917 2270.0 19730313 19900401 854480 99999 LA SERENA CI -29.916999999999998 -71.2 146.0 19491201 19551231 854520 99999 ISLA SAN FELIX CI SCFX -26.294 -80.096 50.3 20080301 20200513 854590 99999 CANAL BAJO CARLOS HOTT SIEBERT CI SCJO -40.611 -73.061 57.0 20040904 20200624 854591 99999 AD MELINKA CI SCMK -43.894 -73.74 11.0 20091031 20190719 854595 99999 DESIERTO DE ATACAMA CI SCAT -27.261 -70.779 204.2 20060710 20200624 854600 99999 CHANARAL CI SCRA -26.333000000000002 -70.607 29.6 19630101 20021018 854640 99999 EL JUNCAL CI -32.85 -70.15 2251.0 19350121 20200515 854660 99999 CALDERA CI -27.066999999999997 -70.8 55.0 19350103 19541224 854670 99999 DESIERTO DE ATACMA CI -27.25 -70.77 204.0 20050724 20200624 854680 99999 HANGOA-ROA CI -27.15 -109.417 20.0 19490207 19531231 854690 99999 MATAVERI INTL CI SCIP -27.165 -109.42200000000001 69.2 19570630 20200624 854700 99999 CHAMONATE CI SCHA -27.296 -70.414 298.0 19350104 20090916 854705 99999 COPIAPO/CHAMONATE & CI SCHA -27.35 -70.333 370.0 19730313 19900329 854800 99999 BOGUS CHILEAN CI 19890112 20031026 854860 99999 VALLENAR CI SCLL -28.596 -70.756 525.8 19360514 20111031 854880 99999 LA FLORIDA CI SCSE -29.916 -71.2 146.6 19350102 20200624 854990 99999 LA SERNA CI -28.083000000000002 -70.75 32.0 19491201 19551223 855000 99999 COQUIMBO/PT TORTUGA CI -29.95 -71.367 25.0 19350101 19900401 855001 99999 COQUIMBO PT TORTUGA CI -29.95 -71.367 25.0 20170726 20190909 855080 99999 OVALLE/TUQUI CI SCOV -30.566999999999997 -71.183 305.0 19350102 19840511 855410 99999 EL CRISTO/RENDENTOR CI -32.833 -70.083 3830.0 19340101 19420831 855420 99999 PORTILLO CI -32.833 -70.133 2888.0 19811103 19820310 855430 99999 QUINTERO CI SCER -32.79 -71.52199999999999 3.7 19350101 20110330 855450 99999 CARACOLES CI -32.8 -70.083 3851.0 19491201 19551231 855480 99999 LOS ANDES CI -32.817 -70.6 816.0 19350501 19520130 855560 99999 BOGUS CHILEAN CI 19890203 20041108 855580 99999 PUNTA ANGELES CI -33.033 -71.633 41.0 19350101 20200620 855600 99999 19750807 19750919 855610 99999 VINA DEL MAR CI SCRD -33.05 -71.583 342.0 19730219 20190617 855620 99999 EL BELLOTO(CAFB) CI -33.05 -71.417 123.0 19730101 20020204 855740 99999 ARTURO MERINO BENITEZ INTL CI SCEL -33.393 -70.786 474.0 19730101 20200624 855770 99999 QUINTA NORMAL CI -33.433 -70.683 520.0 19350101 20200624 855780 99999 INFIERNILLO CI -33.167 -70.283 4300.0 19350813 19351029 855790 99999 LOS CERRILLOS AR SCTI -33.493 -70.69800000000001 524.0 19630101 20060207 855800 99999 EULOGIO SANCHEZ CI SCTB -33.455999999999996 -70.547 648.9 19370316 20171104 855810 99999 EL BOSQUE(CAFB) CI -33.567 -70.683 573.0 19630101 19900801 855850 99999 JUAN FERNANDEZ CI SCIR -33.633 -78.833 29.0 19350101 20200624 855860 99999 SANTO DOMINGO CI SCSN -33.65 -71.617 75.0 19730102 20200624 856040 99999 SEWELL CI -34.083 -70.367 2155.0 19630103 19750831 856050 99999 PARRON CI -34.233000000000004 -70.667 692.0 19730102 19750811 856080 99999 DE LA INDEPENDENCIA CI -34.167 -70.767 441.0 19730101 19900610 856200 99999 TALCA CI -35.417 -71.65 97.0 19350311 19470110 856210 99999 SAN FERNANDO CI -34.583 -71.0 302.0 19380505 19521209 856290 99999 CURICO/GEN FREIRE CI SCIC -34.967 -71.217 242.0 19350101 20200624 856300 99999 CURICO CI -33.016999999999996 -70.75 210.9 19491202 19551231 856310 99999 ROBLEDAL NORTHWEST CI -35.016999999999996 -70.5 2156.0 19400501 20171201 856400 99999 CONSTITUCION/QUIVOL CI -35.3 -72.4 14.0 19350102 20021212 856480 99999 BOGUS CHILEAN CI 19860102 20041108 856570 99999 LINARES CI SCLN -35.85 -71.55 156.0 19350103 19741214 856720 99999 GENERAL BERNARDO O HIGGINS CI SCCH -36.582 -72.031 150.9 19380602 20200624 856725 99999 19750227 19750425 856770 99999 PUNTA TUMBES (LH) CI -36.617 -73.1 100.0 19730102 19880919 856790 99999 BOGUS CHILEAN CI 19860501 20040718 856800 99999 BOGUS CHILEAN CI -35.283 -72.883 84.1 19350101 19551231 856820 99999 CARRIEL SUR INTL CI SCIE -36.773 -73.063 7.9 19730101 20200624 856830 99999 CONCEPCION CI -36.817 -73.033 10.0 19570701 19681231 856840 99999 CONCEPCION CI -35.167 -72.95 14.9 19350101 19551231 857030 99999 MARIA DOLORES CI SCGE -37.402 -72.425 114.0 19350813 20200624 857040 99999 LOS ANGELES CHILI CI -36.533 -71.65 130.1 19491202 19551231 857250 99999 VICTORIA CI -38.233000000000004 -72.35 350.0 19730101 19741101 857270 99999 TRAIGUEN CI -38.25 -72.683 248.0 19350102 19541223 857320 99999 ISLA MOCHA CI -38.367 -73.9 23.0 19350101 19900323 857321 99999 ISLA MOCHA CI -38.36 -73.9 23.0 20171102 20200513 857420 99999 TENUCO CI -38.25 -71.417 114.0 19491201 19551231 857430 99999 MAQUEHUE CI SCTC -38.766999999999996 -72.637 92.7 19350102 20200624 857440 99999 ARAUCANIA CI -38.933 -72.65 45.0 19350102 19490329 857490 99999 PUERTO DOMINQUEZ CI -37.1 -72.767 4.9 19491201 19530911 857571 99999 PUCON CI SCPC -39.293 -71.916 260.0 20091221 20160429 857580 99999 LONCOCHE CI -39.35 -72.633 111.0 19730101 19850228 857660 99999 PICHOY CI SCVD -39.65 -73.086 18.0 19730101 20200624 857670 99999 CAUCAU CI -39.783 -73.217 13.0 19431113 19681231 857820 99999 OSORNO CI -40.6 -73.05 58.0 19730101 20200624 857825 99999 MOCOPULLI ARPT CI SCPQ -42.333 -73.717 160.0 20130202 20200624 857990 99999 EL TEPUAL INTL CI SCTE -41.43899999999999 -73.094 89.6 19350102 20200624 858000 99999 PUERTO MONTT CI -40.533 -71.067 3.0 19491201 19581231 858010 99999 PUERTO MONTT/LA CH CI -41.467 -72.817 5.0 20020615 20020615 858120 99999 BOGUS CHILEAN CI 19841103 20040718 858180 99999 ANCUD/PUPELDE CI SCAC -41.9 -73.8 114.0 19630102 20090702 858190 99999 ANCUD/PUPELDE & CI -41.9 -73.8 11.0 19730206 19740214 858200 99999 SEGUNDO CORRAL ALTO CI -42.083 -71.867 366.0 19630128 19900405 858203 99999 SEGUNDO CORRAL ALTO CI SCSR -42.083 -71.933 0.0 19841018 19900405 858250 99999 CASTRO/GAMBOA CI -42.483000000000004 -73.767 44.0 19730101 20020101 858300 99999 CHAITEN CI -42.917 -72.7 4.0 19630211 20080505 858310 99999 QUELLON CI -43.117 -73.633 4.0 19570630 20040905 858320 99999 FUTALEUFU CI SCFT -43.2 -71.817 350.0 19730101 20200624 858325 99999 GUARDIAMARINA ZANARTU CI SCGZ -54.933 -67.633 26.8 20090420 20180809 858326 99999 QUELLON CI SCON -43.117 -73.633 4.0 20091031 20171104 858327 99999 DE LA INDEPENDENCIA CI SCRG -34.167 -70.783 440.7 20091031 20170925 858340 99999 ISLA HUAFO CI -43.567 -74.833 45.0 19350101 20200620 858360 99999 ALTO PALENA CI SCAP -43.617 -71.817 280.0 19630102 20171104 858450 99999 RIO CISNES CI -44.55 -71.4 700.0 19630101 19731216 858610 99999 AYSEN CI -48.6 -71.3 10.1 19491201 19551231 858620 99999 PUERTO AYSAN CI SCAS -45.4 -72.7 10.0 19350101 20190829 858640 99999 TENIENTE VIDAL CI SCCY -45.593999999999994 -72.10600000000001 310.9 19630101 20200624 858740 99999 BALMACEDA CI SCBA -45.916000000000004 -71.689 524.9 19730101 20200624 858860 99999 CHILE CHICO CI SCCC -46.583 -71.687 326.1 19630101 20200624 858890 99999 FARO RAPER CI -46.8 -75.633 46.0 19630102 20200620 858920 99999 COCHRANE CI SCHR -47.244 -72.58800000000001 196.0 19630101 20200624 858960 99999 ISLOTES EVANGELISTAS CI -52.383 -75.117 56.0 19360603 20200620 859070 99999 PUERTO EDEN CI -49.133 -74.45 6.0 19630102 19730430 859150 99999 CERRO GUIDO CI -50.95 -72.417 152.0 19630102 19681231 859200 99999 19350424 19430331 859210 99999 TENIENTE JULIO GALLARDO CI SCNT -51.67100000000001 -72.528 66.1 19840115 20200624 859211 99999 EL LOA CI SCCF -22.498 -68.904 2299.1 20040706 20200624 859212 99999 VINA DEL MAR CI SCVM -32.95 -71.479 140.5 20091031 20200624 859300 99999 ISLOTES EVANGELISTAS CI -52.4 -75.1 52.0 19370528 20200620 859310 99999 PUNTA DUNGENESS CI -52.4 -68.433 18.0 19730101 19900730 859311 99999 PUNTA DUNGENESS CI -52.4 -68.43 18.0 20170723 20190901 859340 99999 CARLOS IBANEZ DEL CAMPO INTL CI SCCI -53.003 -70.855 42.4 19350101 20200624 859350 99999 DESTACAMENTO CI -53.15 -70.9 8.0 19350813 19900403 859351 99999 PUNTA ARENAS CI -53.15 -70.9 8.0 20171102 20200620 859360 99999 PORVENIR/CAPT FUE CI -53.25 -70.333 30.0 19590101 19640328 859363 99999 CAPITAN FUENTES MARTINEZ CI SCFM -53.254 -70.319 31.7 19860507 20171104 859370 99999 BOGUS CHILEAN CI 19350102 19890526 859410 99999 PUNTA ARENAS EAST CI -53.15 -70.883 8.0 19491201 19581231 859670 99999 PUERTO WILLIAMS CI -54.933 -67.633 23.0 19370303 20040718 859680 99999 PUERTO WILLIAMS CI -54.933 -67.617 26.8 19491201 20200624 859690 99999 CALETA PERON CI -54.933 -68.533 0.0 19840102 19900511 859691 99999 CALETA PERON CI -54.933 -68.533 0.0 20171118 20181013 859700 99999 ISLA HORNOS CI -55.95 -67.283 11.0 19840115 20190901 859720 99999 ISLA DIEGO RAMIREZ CI -56.475 -68.73 11.0 19630102 20190909 859840 99999 FREI CHI-BASE CI -62.25 -58.933 10.0 19730101 19850808 859860 99999 PRAT CHI-BASE CI -62.5 -59.683 5.0 19491201 19850908 859871 99999 GABRIEL DE CASTILLA AY -62.983000000000004 -60.683 12.0 20190103 20200313 859880 99999 BERNARDO O`HIGGINS CI -63.317 -57.9 10.0 19491201 19850630 859950 99999 VIDELA AY -64.817 -62.867 10.0 19520404 19840101 860040 99999 MAYOR LAGERENZA PA -19.917 -60.766999999999996 61.0 19790806 19900203 860110 99999 ADRIAN JARA PA -19.533 -59.367 150.0 19730719 20130223 860170 99999 NUEVA ASUNCION PA SGNA -20.717 -61.917 315.0 19730102 20030227 860330 99999 BAHIA NEGRA PA SGBN -20.233 -58.167 96.0 19570701 20200624 860335 99999 CARLOS MIGUEL GIMENEZ PA SGPI -26.881 -58.318000000000005 75.9 20090511 20200611 860336 99999 DR AUGUSTO ROBERTO FUSTER INTL PA SGPJ -22.642 -55.83 570.9 20090511 20200611 860337 99999 SILVIO PETTIROSSI INTL PA SGAJ -25.24 -57.519 89.0 20090511 20120715 860380 99999 LA PATRIA PA -21.333000000000002 -61.5 190.0 19860625 20050911 860650 99999 PELAYO PRAT GILL PA SGPG -22.55 -61.55 220.0 19730102 20140710 860680 99999 DR LUIS MARIA ARGANA INTL PA SGME -22.045 -60.622 168.6 19490315 20200624 860700 99999 FILADELFIA PA -22.366999999999997 -60.05 139.0 20040817 20050612 860860 99999 PUERTO CASADO PA SGLV -22.283 -57.933 87.0 19490401 20200624 860880 99999 PUERTO PINASCO BR -21.267 -56.183 79.9 19600202 19640413 860970 99999 PEDRO JUAN CABALLERO PA -23.633000000000003 -55.833 563.0 19590913 20200624 861070 99999 FORTINGRAL DIAZ PA -23.566999999999997 -60.567 155.0 19751003 19780819 861250 99999 POZO COLORADO PA -23.383000000000003 -58.9 100.0 19730102 19781105 861280 99999 POZO COLORADO PA SGPC -23.5 -58.783 99.0 20010901 20200624 861340 99999 TENIENTE COL CARMELO PERALTA PA SGCO -23.441999999999997 -57.427 77.1 19590215 20200624 861350 99999 PASO BARRETO PA -23.05 -56.983000000000004 95.0 19730102 19840518 861700 99999 GRAL. BRUGUEZ PA -24.75 -58.833 86.0 20010915 20200624 861840 99999 PUERTO ANTEQUERA PA -24.1 -57.167 64.0 19761001 19880607 861850 99999 SAN PEDRO PA SGSP -24.066999999999997 -57.083 80.0 20010915 20200624 861920 99999 SAN ESTANISLAO PA -24.666999999999998 -56.433 192.0 19750401 20200624 862000 99999 IGATIMI PA -24.133000000000003 -55.65 202.0 19830701 19870223 862100 99999 SALTOS DEL GUAIRA PA SGGR -24.033 -54.35 265.0 19790404 20200624 862170 99999 ASUNCION CIUDAD PA -24.717 -56.35 116.1 19490315 19640415 862180 99999 SILVIO PETTIROSSI INTL PA SGAS -25.24 -57.519 89.0 19490101 20200624 862182 99999 AEROPUERTO GUARANY PA SGES -25.45 -54.85 19960321 19960410 862183 99999 GUARANI INTL PA -25.45 -54.833 264.0 19960403 20200624 862200 99999 CAACUPE PA -25.4 -57.1 228.0 20051005 20051005 862210 99999 PARAGUARI PA -25.633000000000003 -57.133 116.0 20080721 20200624 862230 99999 CARAPEGUA PA -25.8 -57.217 116.0 19730102 20071218 862280 99999 PONTE DA FRONTEIRA AR -25.583000000000002 -54.55 125.0 19590101 19640415 862330 99999 VILLARRICA PA SGVR -25.767 -56.433 161.0 19590101 20200624 862340 99999 CORONEL OVIEDO PA -25.467 -56.4 163.0 20000330 20200624 862400 99999 QUIINDY PA -25.967 -57.217 181.0 20050405 20050806 862460 99999 AEROPUERTO INT. GUARANI PA -25.45 -54.833 236.0 20010915 20081231 862470 99999 VIVERO FORESTAL PA -25.517 -54.783 200.0 20021119 20031222 862480 99999 CIUDAD DEL ESTE PA -25.533 -54.6 196.0 19730104 20081014 862510 99999 QUYQUYHAT PA -26.217 -56.983000000000004 101.2 20120101 20200624 862550 99999 PILAR PA -26.85 -58.317 56.0 19590211 20200624 862600 99999 SAN JUAN BAUTISTA PA SGSJ -26.666999999999998 -57.15 126.0 19570701 20200624 862680 99999 CAAZAPA PA -26.183000000000003 -56.367 140.0 20000331 20200624 862750 99999 PASTOREO ITAPUA PA -26.916999999999998 -55.667 205.0 19750625 20040924 862850 99999 CAPITAN MEZA PA -26.833000000000002 -55.333 263.0 20000330 20200624 862880 99999 ITA-CORA PA -27.217 -58.266999999999996 -999.9 20010816 20031115 862940 99999 CAPT MIRANDA PA -27.2 -55.783 223.0 20010131 20010131 862960 99999 YASI-RETA PA -27.4 -56.45 86.0 19730102 19840217 862970 99999 ENCARNACION PA SGEN -27.316999999999997 -55.833 91.0 19490401 20200624 863150 99999 BELLA UNION UY -30.267 -57.583 53.0 19811101 20161006 863300 99999 ARTIGAS INTL UY SUAG -30.401 -56.508 128.0 19490102 20200624 863500 99999 PRESIDENTE GENERAL DON OSCAR D GESTIDO UY SURV -30.975 -55.476000000000006 223.0 19490101 20200624 863600 99999 NUEVA HESPERIDES INTL UY SUSO -31.433000000000003 -57.983000000000004 57.0 19490101 20200624 863700 99999 TACUAREMBO UY SUTB -31.749000000000002 -55.926 138.0 19790601 20180905 864250 99999 PAYSANDU UY -32.367 -58.05 52.0 19490102 19780315 864300 99999 TYDEO LARRE BORGES INTL UY SUPU -32.365 -58.06100000000001 55.0 19730101 20200624 864400 99999 CERRO LARGO UY SUMO -32.338 -54.217 114.0 19490101 20200624 864500 99999 YOUNG UY -32.683 -57.633 80.0 19780801 20200624 864600 99999 PASO DE LOS TOROS UY -32.8 -56.516999999999996 75.0 19501010 20200313 864805 99999 CAPT CURBELO UY -34.867 -55.1 30.0 19730102 19740210 864900 99999 MERCEDES/RICARDO DE UY SUME -33.25 -58.067 22.0 19490101 20200624 865000 99999 TREINTA Y TRES UY SUTR -33.217 -54.383 46.0 19490101 20200624 865300 99999 SANTA BERNARDINA INTL UY SUDU -33.359 -56.498999999999995 93.0 19490101 20200624 865450 99999 FLORIDA UY -34.083 -56.233000000000004 68.0 19950401 20200624 865500 99999 SAN JOSE UY -34.35 -56.717 41.0 19491103 19531224 865501 99999 AEROCLUB MARAGATO UY -34.352 -56.75 72.0 20190610 20200624 865550 99999 MINAS UY -34.333 -55.217 133.0 19490102 19531230 865600 99999 LAGUNA DE LOS PATOS INTL UY SUCA -34.455999999999996 -57.771 21.0 19490101 20200624 865650 99999 ROCHA UY -34.483000000000004 -54.3 18.0 19490101 20200624 865750 99999 ANGEL S ADAMI UY SUAA -34.789 -56.265 53.0 19750401 20200624 865800 99999 CARRASCO INTL UY SUMU -34.838 -56.031000000000006 32.0 19490101 20200624 865820 99999 CAPT CURBELO UY -34.867 -55.1 30.0 19740429 19780715 865823 99999 CAPITAN CORBETA C A CURBELO INTL UY SULS -34.855 -55.093999999999994 29.0 19901018 20200624 865850 99999 PRADO UY -34.85 -56.2 16.0 19310102 20200624 865860 99999 LAGUNA DEL SAUCE UY -34.867 -55.1 35.0 20010915 20200624 865950 99999 PUNTA DEL ESTE UY -34.967 -54.95 24.1 19490101 20200624 865955 99999 EL JAGUEL INTL UY SUPE -34.914 -54.92100000000001 21.0 19751118 20031120 866060 99999 CONFRESA BR -10.65 -51.567 238.5 20160704 20171203 866070 99999 PALMAS BR -10.183 -48.3 281.5 20160704 20200624 866090 99999 BURITIRAMA BR -10.717 -43.65 503.5 20160704 20200517 866100 99999 DELFINO BR -10.45 -41.2 638.5 20160704 20200624 866110 99999 SENHOR DO BONFIM BR -10.45 -40.15 549.5 20160721 20200624 866120 99999 QUEIMADAS BR -10.982999999999999 -39.617 316.5 20160704 20200624 866130 99999 EUCLIDES DA CUNHA BR -10.533 -39.0 433.5 20160709 20200624 866140 99999 POCO VERDE BR -10.732999999999999 -38.1 363.5 20160704 20200624 866150 99999 CARIRA BR -10.4 -37.75 309.5 20160704 20200624 866160 99999 ARACAJU BR -10.95 -37.05 6.2 20160704 20200624 866180 99999 BREJO GRANDE BR -10.467 -36.483000000000004 11.5 20160706 20200624 866190 99999 CORURIPE BR -10.133 -36.283 75.5 20160704 20200624 866200 99999 EPITACIOLANDIA BR -11.017000000000001 -68.733 218.5 20160704 20200426 866220 99999 CACOAL BR -11.45 -61.433 211.5 20160704 20200624 866240 99999 JUINA BR -11.383 -58.783 375.5 20160704 20200624 866250 99999 JUARA BR -11.283 -57.533 261.5 20160704 20200624 866260 99999 SINOP BR -11.982999999999999 -55.567 372.5 20160704 20200624 866280 99999 SAO FELIX DO ARAGUAIA BR -11.617 -50.733000000000004 219.5 20160704 20200624 866290 99999 FORMOSO DO ARAGUAIA BR -11.883 -49.6 221.5 20160704 20200624 866300 99999 GURUPI BR -11.75 -49.05 288.5 20160704 20200623 866320 99999 DIANOPOLIS BR -11.6 -46.85 733.5 20160704 20200624 866330 99999 SANTA RITA DE CASSIA BR -11.017000000000001 -44.533 451.5 20160704 20191213 866340 99999 BARRA BR -11.083 -43.133 404.5 20160704 20200624 866350 99999 IRECE BR -11.333 -41.867 756.5 20160704 20200624 866360 99999 JACOBINA BR -11.2 -40.467 454.5 20160704 20200624 866370 99999 SERRINHA BR -11.667 -39.016999999999996 340.5 20160704 20200624 866380 99999 ITABAIANINHA BR -11.267000000000001 -37.8 209.5 20160704 20200331 866390 99999 CONDE BR -11.817 -37.617 15.5 20160704 20200624 866420 99999 VILHENA BR -12.732999999999999 -60.15 591.5 20160704 20200624 866430 99999 NOVO MUNDO BR -12.517000000000001 -58.233000000000004 432.5 20160704 20200624 866450 99999 SORRISO BR -12.55 -55.717 381.5 20160704 20200624 866470 99999 QUERENCIA BR -12.633 -52.217 383.5 20160704 20200624 866490 99999 PEIXE BR -12.017000000000001 -48.55 243.5 20160704 20200325 866500 99999 PARANA BR -12.617 -47.983000000000004 276.5 20160704 20200624 866510 99999 LUIS EDUARDO MAGALHAES BR -12.15 -45.817 755.5 20160704 20200624 866520 99999 BARREIRAS BR -12.15 -45.0 471.9 20160704 20200624 866530 99999 IBOTIRAMA BR -12.2 -43.217 431.5 20160704 20200624 866540 99999 LENCOIS BR -12.567 -41.383 440.5 20160704 20200624 866550 99999 MACAJUBA BR -12.117 -40.35 381.5 20160704 20200624 866560 99999 ITABERABA BR -12.517000000000001 -40.283 251.4 20160704 20200624 866570 99999 CRUZ DAS ALMAS BR -12.667 -39.15 227.4 20160704 20200624 866580 99999 FEIRA DE SANTANA BR -12.2 -38.967 232.5 20160704 20200624 866610 99999 COMODORO BR -13.717 -59.766999999999996 592.5 20160704 20200624 866620 99999 CAMPO NOVO DOS PARECIS BR -13.783 -57.833 571.5 20160704 20200624 866630 99999 NOVA MARINGA BR -13.033 -57.1 354.5 20160704 20200624 866640 99999 SAO JOSE DO RIO CLARO BR -13.45 -56.667 351.5 20110213 20200624 866650 99999 NOVA UBIRATA BR -13.417 -54.75 519.5 20160704 20191204 866660 99999 GAUCHA DO NORTE BR -13.183 -53.25 380.5 20160704 20200624 866700 99999 MONTE ALEGRE DE GOIAS BR -13.25 -46.883 1254.5 20160704 20191203 866710 99999 CORRENTINA BR -13.333 -44.617 550.5 20160911 20200624 866720 99999 BOM JESUS DA LAPA BR -13.267000000000001 -43.417 441.5 20160704 20200624 866730 99999 PIATA BR -13.15 -41.766999999999996 1291.5 20160704 20191204 866740 99999 ITIRUCU BR -13.533 -40.117 757.1 20160704 20200624 866750 99999 AMARGOSA BR -13.017000000000001 -39.617 408.5 20160704 20200624 866770 99999 MARAU BR -13.907 -38.972 11.5 20160704 20200624 866780 99999 SALVADOR BR -13.0 -38.5 52.9 20160704 20200624 866820 99999 TANGARA DA SERRA BR -14.65 -57.433 323.0 20160704 20200624 866840 99999 PARANATINGA BR -14.417 -54.033 475.5 20160704 20200224 866850 99999 SANTO ANTONIO DO LESTE BR -14.933 -53.883 649.5 20160704 20191204 866860 99999 AGUA BOA BR -14.017000000000001 -52.217 433.5 20160704 20200624 866890 99999 ITAPACI BR -14.982999999999999 -49.533 523.5 20160704 20200624 866900 99999 NIQUELANDIA BR -14.467 -48.45 584.5 20160704 20180507 866910 99999 ALTO PARAISO DE GOIAS BR -14.133 -47.516999999999996 1261.5 20160704 20200624 866920 99999 POSSE BR -14.083 -46.367 835.5 20160704 20200624 866930 99999 MONTALVANIA BR -14.4 -44.4 513.5 20160704 20200624 866940 99999 GUANAMBI BR -14.2 -42.75 552.5 20160704 20200624 866950 99999 ESPINOSA BR -14.917 -42.8 571.5 20160704 20190719 866960 99999 BRUMADO BR -14.183 -41.667 471.5 20160704 20200624 866970 99999 VITORIA DA CONQUISTA BR -14.883 -40.8 874.0 20160704 20200624 866980 99999 IPIAU BR -14.167 -39.7 126.5 20160704 20200624 866990 99999 ILHEUS BR -14.65 -39.167 79.5 20160704 20190617 867010 99999 VILA BELA DA S TRINDADE BR -15.067 -59.867 223.5 20160704 20191204 867020 99999 PONTES E LACERDA BR -15.25 -59.35 257.5 20160704 20191204 867030 99999 SALTO DO CEU BR -15.125 -58.128 304.5 20160704 20200624 867040 99999 PORTO ESTRELA BR -15.325 -57.226000000000006 146.5 20160704 20200624 867050 99999 CUIABA BR -15.617 -56.1 152.8 20160704 20200325 867070 99999 CAMPO VERDE BR -15.533 -55.133 750.5 20160829 20200624 867090 99999 ARAGARCAS BR -15.9 -52.25 348.5 20160704 20200624 867120 99999 GOIAS BR -15.933 -50.133 513.5 20160704 20200624 867125 99999 CALDAS NOVAS AIRPORT BR SBCN -17.733 -48.6 684.9 20140211 20140211 867130 99999 GOIANESIA BR -15.217 -48.983000000000004 668.5 20160704 20200624 867140 99999 FACULDADE DA TERRA BR -15.9 -48.117 1153.5 20160704 20191204 867150 99999 BRASILIA BR -15.783 -47.933 1161.0 20160704 20200624 867160 99999 AGUAS EMENDADAS BR -15.6 -47.633 1201.5 20160704 20200624 867180 99999 BURITIS BR -15.517000000000001 -46.433 895.5 20160704 20200624 867190 99999 CHAPADA GAUCHA BR -15.3 -45.617 881.5 20160704 20200624 867200 99999 MOCAMBINHO BR -15.083 -44.016999999999996 461.5 20160704 20200624 867210 99999 RIO PARDO DE MINAS BR -15.717 -42.433 854.5 20160704 20200624 867220 99999 AGUAS VERMELHAS BR -15.75 -41.45 751.5 20160704 20200624 867230 99999 ITAPETINGA BR -15.25 -40.233000000000004 270.5 20160704 20200624 867280 99999 RONDONOPOLIS BR -16.45 -54.567 285.5 20160704 20200624 867290 99999 GUIRATINGA BR -16.35 -53.766999999999996 527.5 20160704 20200624 867300 99999 CAIPONIA BR -16.967 -51.817 738.5 20160704 20191204 867320 99999 PARAUNA BR -16.963 -50.425 679.5 20160704 20200624 867340 99999 GOIANIA BR -16.65 -49.217 771.5 20160704 20200624 867350 99999 SILVANIA BR -16.683 -48.617 950.5 20160704 20200624 867360 99999 LUZIANIA BR -16.267 -47.967 959.5 20160704 20200624 867370 99999 CRISTALINA BR -16.783 -47.617 1203.5 20160704 20200624 867380 99999 UNAI BR -16.55 -46.883 632.5 20160704 20200529 867390 99999 SAO ROMAO BR -16.367 -45.117 461.5 20160704 20200329 867400 99999 MONTES CLAROS BR -16.717 -43.867 647.8 20160704 20200624 867410 99999 SALINAS BR -16.167 -42.317 496.5 20160704 20200624 867420 99999 ITAOBIM BR -16.583 -41.483000000000004 267.5 20160704 20200624 867430 99999 ALMENARA BR -16.167 -40.683 209.5 20160704 20200624 867440 99999 BELMONTE BR -16.083 -39.217 89.5 20160704 20200624 867450 99999 PORTO SEGURO BR -16.383 -39.183 86.5 20160704 20200624 867480 99999 ITIQUIRA BR -17.183 -54.5 586.5 20160704 20191123 867500 99999 ALTO TAQUARI BR -17.817 -53.283 876.5 20160704 20200624 867510 99999 MINEIROS BR -17.567 -52.6 707.5 20160704 20200624 867520 99999 JATAI BR -17.917 -51.717 583.5 20160728 20200624 867530 99999 RIO VERDE BR -17.783 -50.967 783.5 20160704 20200525 867550 99999 MORRINHOS BR -17.717 -49.1 772.9 20160704 20200624 867560 99999 PIRES DO RIO BR -17.3 -48.283 753.5 20160704 20200624 867570 99999 GUARDA-MOR BR -17.567 -47.2 1001.5 20160704 20200624 867580 99999 JOAO PINHEIRO BR -17.783 -46.117 871.5 20160704 20200624 867590 99999 PIRAPORA BR -17.25 -44.833 504.5 20160704 20200624 867610 99999 CAPELINHA BR -17.7 -42.383 933.5 20160912 20200624 867620 99999 TEOFILO OTONI BR -17.9 -41.516999999999996 476.5 20160704 20200624 867630 99999 SERRA DOS AIMORES BR -17.8 -40.25 209.5 20160704 20200624 867640 99999 CARAVELAS BR -17.733 -39.25 4.4 20160704 20200503 867650 99999 ABROLHOS BR -17.967 -38.7 26.5 20160704 20200624 867670 99999 CORUMBA BR -19.0 -57.633 127.5 20160704 20200624 867680 99999 NHUMIRIM BR -18.983 -56.617 105.5 20160704 20200510 867700 99999 COXIM BR -18.517 -54.733000000000004 253.5 20190516 20200624 867720 99999 CHAPADAO DO SUL BR -18.8 -52.6 819.5 20160826 20200222 867730 99999 SAO SIMAO BR -18.967 -50.633 490.0 20160704 20200624 867740 99999 ITUMBIARA BR -18.417 -49.2 489.5 20160704 20200624 867750 99999 ITUIUTABA BR -18.95 -49.533 561.5 20160704 20200105 867760 99999 UBERLANDIA BR -18.917 -48.25 870.5 20160704 20200624 867770 99999 CATALAO BR -18.15 -47.933 891.5 20160707 20200624 867780 99999 PATROCINIO BR -19.0 -46.983000000000004 964.5 20160704 20200624 867790 99999 TRES MARIAS BR -18.2 -45.467 922.5 20160911 20200430 867800 99999 CURVELO BR -18.75 -44.45 671.5 20160704 20200624 867810 99999 DIAMANTINA BR -18.233 -43.65 1357.5 20160704 20200624 867820 99999 GUANHAES BR -18.783 -42.95 861.5 20160704 20200624 867830 99999 GOVERNADOR VALADARES BR -18.783 -41.983000000000004 264.5 20160704 20200624 867840 99999 MANTENA BR -18.783 -40.983000000000004 271.5 20160704 20200624 867850 99999 NOVA VENECIA BR -18.7 -40.383 155.5 20160704 20200624 867860 99999 SAO MATEUS BR -18.717 -39.85 40.5 20160704 20200624 867890 99999 SAO GABRIEL DO OESTE BR -19.417 -54.55 648.5 20160704 20200624 867910 99999 CASSILANDIA BR -19.117 -51.717 517.5 20160704 20200624 867920 99999 PARANAIBA BR -19.7 -51.183 425.5 20160704 20200214 867930 99999 CAPINA VERDE BR -19.533 -49.533 548.5 20160704 20191204 867940 99999 CONCEICAO DAS ALAGOAS BR -19.986 -48.153 569.5 20160704 20200624 867950 99999 SACRAMENTO BR -19.883 -47.433 913.5 20160704 20200624 867960 99999 ARAXA BR -19.6 -46.933 1021.5 20160704 20200624 867980 99999 FLORESTAL BR -19.883 -44.417 743.5 20160704 20200624 868000 99999 BELO HORIZONTE - PAMPULHA BR -19.883 -43.967 870.5 20160704 20191204 868010 99999 TIMOTEO BR -19.583 -42.633 334.5 20160704 20200624 868020 99999 CARATINGA BR -19.733 -42.133 616.5 20160704 20200320 868030 99999 AIMORES BR -19.5 -41.067 194.5 20160704 20200511 868040 99999 SANTA TEREZA BR -19.983 -40.583 989.5 20160704 20191204 868050 99999 LINHARES BR -19.35 -40.067 41.5 20160704 20200624 868070 99999 MIRANDA BR -20.4 -56.433 141.5 20160704 20200624 868080 99999 AQUIDAUANA BR -20.483 -55.783 156.5 20160704 20200624 868090 99999 SIDROLANDIA BR -20.983 -54.967 465.5 20160704 20200624 868100 99999 CAMPO GRANDE BR -20.45 -54.617 531.5 20160704 20200624 868120 99999 AGUA CLARA BR -20.417 -52.883 339.5 20160704 20200624 868130 99999 TRES LAGOAS BR -20.783 -51.7 314.5 20160704 20191226 868140 99999 JALES BR -20.167 -50.6 458.5 20160704 20200624 868150 99999 VOTUPORANGA BR -20.417 -49.967 487.5 20160704 20200624 868160 99999 BARRETOS BR -20.566999999999997 -48.55 534.5 20160704 20200624 868170 99999 ITUVERAVA BR -20.359 -47.775 601.5 20160704 20200624 868180 99999 FRANCA BR -20.583000000000002 -47.383 1027.5 20160704 20200624 868190 99999 PASSOS BR -20.75 -46.633 785.5 20160704 20200607 868200 99999 FORMIGA BR -20.45 -45.45 879.5 20160704 20200624 868210 99999 IBIRITE (ROLA MOCA) BR -20.033 -44.016999999999996 1209.5 20160704 20191204 868230 99999 OURO BRANCO BR -20.55 -43.75 1062.5 20160704 20200624 868240 99999 VICOSA BR -20.767 -42.867 713.7 20160704 20200624 868250 99999 MANHUACU BR -20.267 -42.183 837.5 20160704 20200624 868280 99999 ALEGRE BR -20.75 -41.483000000000004 139.5 20160704 20200416 868290 99999 ALFREDO CHAVES BR -20.633000000000003 -40.733000000000004 36.5 20160704 20200606 868300 99999 VITORIA BR -20.317 -40.317 10.5 20160704 20200622 868330 99999 PORTO MURTINHO BR -21.7 -57.55 86.5 20160704 20200624 868340 99999 MARACAJU BR -21.616999999999997 -55.183 403.0 20160704 20191211 868360 99999 RIO BRILHANTE BR -21.783 -54.533 330.5 20160704 20200624 868380 99999 VALPARAISO BR -21.316999999999997 -50.933 375.5 20160704 20200624 868390 99999 JOSE BONIFACIO BR -21.083000000000002 -49.917 406.5 20160704 20200518 868400 99999 LINS BR -21.666999999999998 -49.733000000000004 461.0 20160704 20200511 868410 99999 ARIRANHA BR -21.133000000000003 -48.833 526.5 20160704 20200624 868420 99999 PRADOPOLIS BR -21.338 -48.114 545.5 20160704 20200624 868430 99999 IBITINGA BR -21.855999999999998 -48.8 493.5 20160704 20200624 868440 99999 CASA BRANCA BR -21.783 -47.083 731.5 20160704 20200624 868450 99999 SAO CARLOS BR -21.983 -47.883 864.5 20160704 20200624 868460 99999 CALDAS BR -21.916999999999998 -46.383 1151.5 20160704 20200624 868480 99999 VARGINHA BR -21.566999999999997 -45.4 926.5 20160704 20200624 868490 99999 SAO JOAO DEL-REI BR -21.1 -44.25 992.5 20160704 20200624 868500 99999 BARBACENA BR -21.217 -43.766999999999996 1156.5 20160704 20200624 868510 99999 JUIZ DE FORA BR -21.767 -43.367 951.5 20160704 20200624 868520 99999 MURIAE BR -21.1 -42.383 271.5 20160704 20200624 868530 99999 PRESIDENTE KENNEDY BR -21.1 -41.033 81.5 20160704 20200614 868540 99999 CAMBUCI BR -21.583000000000002 -41.95 36.5 20160704 20200624 868550 99999 CAMPOS BR -21.717 -41.35 26.5 20160704 20200624 868570 99999 PONTA PORA BR -22.533 -55.533 651.5 20160704 20200624 868580 99999 DOURADOS BR -22.2 -54.917 470.5 20160704 20200624 868590 99999 JUTI BR -22.85 -54.6 380.5 20160704 20200624 868600 99999 IVINHEMA BR -22.3 -53.817 374.8 20160704 20200624 868610 99999 DIAMANTE DO NORTE BR -22.633000000000003 -52.883 363.5 20160704 20200624 868620 99999 PARANAPOEMA BR -22.65 -52.133 312.5 20160704 20200624 868630 99999 PRESIDENTE PRUDENTE BR -22.116999999999997 -51.4 437.1 20160704 20200624 868640 99999 RANCHARIA BR -22.366999999999997 -50.967 351.5 20160704 20200624 868650 99999 BAURU BR -22.316999999999997 -49.067 551.5 20160704 20200624 868660 99999 OURINHOS BR -22.95 -49.9 449.5 20160704 20200624 868670 99999 BARRA BONITA BR -22.467 -48.55 544.5 20160704 20200624 868680 99999 PIRACICABA BR -22.7 -47.45 572.5 20160905 20200624 868690 99999 ITAPIRA BR -22.416999999999998 -46.8 634.5 20160704 20200516 868700 99999 MONTE VERDE BR -22.866999999999997 -46.05 661.5 20160704 20200624 868710 99999 MARIA DA FE BR -22.316999999999997 -45.367 1277.5 20160704 20200624 868720 99999 CAMPOS DO JORDAO BR -22.75 -45.6 1581.5 20160704 20200624 868730 99999 PASSA QUATRO BR -22.4 -44.967 1041.5 20160704 20200624 868740 99999 RESENDE BR -22.451 -44.445 453.5 20160704 20200624 868760 99999 PICO DO COUTO BR -22.467 -43.283 1778.5 20160704 20191204 868770 99999 XEREM BR -22.583000000000002 -43.266999999999996 34.5 20160704 20191204 868780 99999 SEROPEDICA-ECOLOGIA AGRICOLA BR -22.8 -43.683 35.5 20160704 20191120 868790 99999 RIO DE JANEIRO-VILA MILITAR BR -22.861 -43.411 46.5 20160704 20191204 868870 99999 RIO DE JANEIRO-FORTE DE COPACABANA BR -22.983 -43.183 46.5 20160704 20191204 868880 99999 TERESOPOLIS BR -22.449 -42.986999999999995 981.5 20160704 20191204 868890 99999 NOVA FRIBURGO BR -22.333000000000002 -42.677 1047.5 20160704 20200624 868900 99999 SAO TOME BR -22.041999999999998 -41.052 5.5 20130109 20191204 868905 99999 ALBACORA P25 OIL PLATFORM BR SBLB -22.1 -39.917 10.1 20130109 20200624 868910 99999 MACAE BR SBME -22.343000000000004 -41.766000000000005 2.4 20050502 20200624 868920 99999 ARRAIAL DO CABO BR -22.976 -42.021 5.5 20160704 20200624 868940 99999 AMAMBAI BR -23.0 -55.333 432.5 20160704 20200624 868950 99999 SETE QUEDAS BR -23.967 -55.023999999999994 403.5 20160704 20200624 868960 99999 ITAQUIRAI BR -23.45 -54.183 337.5 20160704 20200624 868970 99999 ICARAIMA BR -23.39 -53.66 386.5 20160704 20200624 868980 99999 CIDADE GAUCHA BR -23.359 -52.931999999999995 382.5 20160704 20200624 868990 99999 MARINGA BR -23.405 -51.933 543.5 20160704 20200624 869010 99999 NOVA FATIMA BR -23.416999999999998 -50.583 669.5 20160704 20200624 869020 99999 IBAITI BR -23.767 -50.183 931.5 20160704 20191204 869030 99999 JOAQUIM TAVORA BR -23.505 -49.946000000000005 523.5 20160704 20200624 869040 99999 AVARE BR -23.1 -48.95 726.5 20160704 20200624 869050 99999 ITAPEVA BR -23.983 -48.883 708.5 20160704 20200624 869060 99999 SAO MIGUEL ARCANJO BR -23.85 -48.167 645.5 20160704 20191204 869070 99999 SOROCABA BR -23.433000000000003 -47.583 610.5 20160704 20200624 869100 99999 SAO PAULO-MIRANTE DE SANTANA BR -23.496 -46.62 793.6 20160704 20191204 869110 99999 TAUBATE BR -23.041999999999998 -45.52 572.5 20160704 20200624 869120 99999 SAO LUIS DO PARAITINGA BR -23.233 -45.417 875.5 20160704 20191204 869130 99999 PARATI BR -23.223000000000003 -44.727 5.5 20160704 20200624 869140 99999 RIO DE JANEIRO-MARAMBAIA BR -23.05 -43.6 11.2 20160704 20191204 869160 99999 MARECHAL CANDIDO RONDON BR -24.533 -54.016999999999996 393.5 20160704 20191204 869170 99999 GOIOERE BR -24.183000000000003 -53.033 469.5 20160704 20200624 869190 99999 NOVA TEBAS BR -24.433000000000003 -51.967 655.5 20160704 20200624 869210 99999 CASTRO BR -24.783 -49.983000000000004 1008.9 20160704 20200325 869220 99999 BARRA DO TURVO BR -24.967 -48.417 668.5 20160704 20191116 869230 99999 IGUAPE BR -24.666999999999998 -47.55 4.5 20160704 20200624 869250 99999 FOZ DO IGUACU BR -25.6 -54.483000000000004 232.5 20160704 20200624 869260 99999 PLANALTO BR -25.717 -53.75 347.5 20160704 20200624 869270 99999 DOIS VIZINHOS BR -25.7 -53.1 521.5 20160704 20200624 869290 99999 INACIO MARTINS BR -25.566999999999997 -51.083 1261.5 20160704 20200624 869300 99999 IVAI BR -25.017 -50.85 809.5 20160704 20200624 869330 99999 CURITIBA BR -25.449 -49.23 925.0 20160704 20200325 869340 99999 MORRETES BR -25.517 -48.817 60.5 20160704 20200624 869350 99999 ILHA DO MEL BR -25.494 -48.326 2.5 20160704 20180202 869360 99999 DIONISIO CERQUEIRA BR -26.283 -53.633 811.5 20160704 20200624 869370 99999 SAO MIGUEL DO OESTE BR -26.783 -53.5 666.5 20160704 20191203 869380 99999 NOVO HORIZONTE BR -26.4 -52.85 961.5 20160704 20200424 869390 99999 CLEVELANDIA BR -26.416999999999998 -52.35 981.5 20160704 20200624 869400 99999 XANXERE BR -26.933000000000003 -52.4 890.5 20160704 20200624 869410 99999 GEN CARNEIRO BR -26.4 -51.35 1019.5 20160704 20200624 869420 99999 MAJOR VIEIRA BR -26.4 -50.367 809.5 20160704 20200624 869430 99999 CACADOR BR -26.816999999999997 -50.833 953.5 20160704 20200624 869440 99999 RIO DO CAMPO BR -26.933000000000003 -50.15 593.5 20160704 20200624 869450 99999 RIO NEGRINHO BR -26.25 -49.583 870.5 20160704 20200624 869460 99999 INDAIAL BR -26.916999999999998 -49.266999999999996 88.2 20160704 20200624 869470 99999 ITAPOA BR -26.083000000000002 -48.65 3.5 20160704 20200624 869480 99999 ITAJAI BR -26.951 -48.762 19.5 20160704 20200624 869500 99999 SANTA ROSA BR -27.883000000000003 -54.483000000000004 277.5 20160706 20200624 869510 99999 FREDERICO WESTPHALEN BR -27.396 -53.428999999999995 491.5 20160704 20200622 869520 99999 SANTO AUGUSTO BR -27.85 -53.783 551.5 20160704 20200325 869530 99999 PALMEIRA DAS MISSOES BR -27.916999999999998 -53.317 643.5 20160704 20200624 869540 99999 ERECHIM BR -27.666999999999998 -52.3 766.5 20160708 20200624 869550 99999 JOACABA BR -27.169 -51.559 777.5 20160704 20200624 869560 99999 CURITIBANOS BR -27.283 -50.6 983.5 20160704 20200624 869570 99999 ITUPORANGA BR -27.418000000000003 -49.647 485.5 20160704 20200624 869580 99999 FLORIANOPOLIS-SAO JOSE BR -27.6 -48.617 3.3 20160704 20191204 869600 99999 SAO BORJA BR -28.65 -56.016999999999996 84.5 20160704 20200624 869610 99999 SAO LUIZ GONZAGA BR -28.416999999999998 -54.967 246.5 20160705 20200624 869620 99999 CRUZ ALTA BR -28.6 -53.667 433.5 20160704 20200325 869630 99999 PASSO FUNDO BR -28.229 -52.403999999999996 685.5 20160704 20200624 869640 99999 SOLEDADE BR -28.854 -52.542 668.5 20160704 20200624 869650 99999 LAGOA VERMELHA BR -28.221999999999998 -51.512 843.5 20160704 20200624 869660 99999 VACARIA BR -28.514 -50.883 987.5 20160704 20200624 869670 99999 SAO JOSE DOS AUSENTES BR -28.750999999999998 -50.058 1245.5 20160704 20200624 869680 99999 URUBICI BR -28.125999999999998 -49.479 1811.5 20160704 20191204 869690 99999 SAO JOAQUIM BR -28.283 -49.933 1411.5 20160704 20200624 869700 99999 URUSSANGA BR -28.533 -49.317 49.5 20160704 20200624 869710 99999 ARARANGUA BR -28.933000000000003 -49.5 13.5 20160704 20200624 869720 99999 SANTA MARTA BR -28.6 -48.817 54.0 20160704 20200624 869730 99999 URUGUAIANA BR -29.85 -57.083 63.8 20160728 20200624 869750 99999 ALEGRETE BR -29.717 -55.533 122.5 20160704 20200624 869760 99999 SANTIAGO BR -29.183000000000003 -54.883 395.5 20160704 20200624 869770 99999 SANTA MARIA BR -29.7 -53.7 96.5 20160704 20200624 869780 99999 RIO PARDO BR -29.866999999999997 -52.383 112.5 20160704 20200624 869790 99999 BENTO GONCALVES BR -29.166999999999998 -51.535 641.5 20160704 20200624 869800 99999 CANELA BR -29.369 -50.828 831.5 20160704 20200624 869810 99999 TORRES BR -29.35 -49.733000000000004 6.2 20160704 20200610 869820 99999 QUARAI BR -30.369 -56.437 125.5 20160704 20200624 869830 99999 SANTANA DO LIVRAMENTO BR -30.833000000000002 -55.6 329.5 20160805 20200624 869840 99999 SAO GABRIEL BR -30.340999999999998 -54.31100000000001 127.5 20160704 20200624 869850 99999 DOM PEDRITO BR -30.983 -54.817 171.5 20160727 20200624 869860 99999 CACAPAVA DO SUL BR -30.548000000000002 -53.468 451.5 20160704 20200624 869880 99999 PORTO ALEGRE BR -30.05 -51.167 48.5 20160704 20200624 869890 99999 CAMAQUA BR -30.811 -51.835 109.5 20160704 20200624 869900 99999 TRAMANDAI BR -30.01 -50.135 2.5 20160704 20200624 869920 99999 BAGE BR -31.348000000000003 -54.013000000000005 231.5 20160727 20200624 869930 99999 CANGUCU BR -31.406 -52.701 465.5 20160704 20200515 869940 99999 MOSTARDAS BR -31.248 -50.906000000000006 11.5 20160704 20200606 869950 99999 RIO GRANDE BR -32.033 -52.1 4.0 20160725 20200624 869960 99999 JAGUARAO BR -32.554 -53.376000000000005 48.5 20160704 20200624 869980 99999 CHUI BR -33.742 -53.371 27.5 20160704 20200624 870070 99999 LA QUIACA AR SASQ -22.151 -65.578 3479.0 19390201 20200624 870160 99999 ORAN AR SASO -23.153000000000002 -64.329 356.0 19600101 20200624 870210 99999 TABACALO AR -23.25 -64.3 307.0 19400301 19420831 870220 99999 GENERAL ENRIQUE MOSCONI TARTAGAL AR SAST -22.62 -63.794 449.0 19730101 20200624 870221 99999 RECONQUISTA AR SATR -29.21 -59.68 49.1 20040713 20200624 870320 99999 LA CASUALIDAD AR -25.217 -68.217 4040.0 19730102 19731016 870460 99999 JUJUY AR SASJ -24.393 -65.098 920.2 19730101 20200624 870470 99999 SALTA AR SASA -24.855999999999998 -65.486 1246.0 19390201 20200624 870475 99999 VAQUEROS SOUTH AR -24.75 -65.433 1261.0 19740419 19741010 870520 99999 ROSARIO DE LA FRO & AR -25.783 -64.983 779.0 19730102 19781031 870650 99999 RIVADAVIA AR SASR -24.166999999999998 -62.9 205.0 19390201 20200624 870780 99999 ALFEREZ ARMANDO RODRIGUEZ AR SATK -24.721 -60.549 129.8 19570630 20200624 870970 99999 CATARATAS DEL IGUAZU AR SARI -25.737 -54.473 279.2 19390102 20200624 871160 99999 TUCUMAN OBSERVATORY AR -26.8 -65.2 481.0 20030304 20030430 871200 99999 TUCUMAN/TENIENTE BE AR -26.833000000000002 -65.2 422.0 19390201 20030203 871210 99999 TENIENTE BENJAMIN MATIENZO AR SANT -26.840999999999998 -65.105 455.7 19811101 20200624 871270 99999 RIO HONDO/LAS TERMA AR -27.45 -64.883 281.0 19730101 19780401 871271 99999 TERMAS DE RIO HONDO ARPT AR SANR -27.5 -64.933 280.1 20161017 20200220 871290 99999 SANTIAGO DEL ESTERO AR SANE -27.766 -64.31 199.9 19390201 20200624 871460 99999 VILLA ANGELA AR -27.566999999999997 -60.733000000000004 75.0 19740821 19900621 871480 99999 PRESIDENCIA ROQUE SAENZ PENA AERO AR -26.733 -60.483000000000004 91.0 20010916 20200624 871490 99999 PRESIDENCIA ROQUE SAENZ PENA AR SARS -26.756999999999998 -60.493 93.6 19390201 20091206 871550 99999 RESISTENCIA AR SARE -27.45 -59.056000000000004 52.7 19590101 20200624 871570 99999 RESISTENCIA EAST AR -27.45 -58.967 52.0 19390201 19660710 871610 99999 FORMOSA NORTH PA -26.15 -58.183 65.0 19390201 19450930 871620 99999 FORMOSA AR SARF -26.213 -58.228 59.1 19730101 20200624 871630 99999 BERNARDO DE IRIGOYE AR SATI -26.25 -53.817 815.0 20020311 20170302 871660 99999 CORRIENTES AR SARC -27.445999999999998 -58.762 61.9 19730101 20200624 871710 99999 GENERAL PAZ AR -27.75 -57.633 74.0 19730102 20040804 871730 99999 ITUZAINGO AR -27.583000000000002 -56.667 72.0 19831201 20170302 871780 99999 POSADAS AR SARP -27.386 -55.971000000000004 131.1 19390101 20200624 871870 99999 OBERA AR -27.483 -55.133 303.0 19770510 20170302 871960 99999 ANDALGALA AR -27.583000000000002 -66.317 1068.0 19400910 19450930 872000 99999 FRIAS AR -28.633000000000003 -65.117 330.0 19400701 19420831 872110 99999 TINOGASTA AR SANI -28.038 -67.58 1209.4 19730101 20170302 872130 99999 CHILECITO AERO AR -29.233 -67.433 945.0 19840612 20170302 872140 99999 CHILECITO AR SANO -29.224 -67.439 950.1 19740517 20030320 872170 99999 LA RIOJA AR SANL -29.381999999999998 -66.796 437.7 19390201 20200624 872200 99999 CATAMARCA(OLD SITE) AR -28.45 -65.767 537.0 19730101 19740618 872220 99999 CATAMARCA AR SANC -28.596 -65.752 463.9 19730701 20200624 872440 99999 VILLA MARIA DEL RIO AR SACV -29.9 -63.683 341.0 19730101 20200624 872570 99999 CERES AR SANW -29.883000000000003 -61.95 88.0 19390202 20200624 872700 99999 RECONQUISTA AERO AR -29.183000000000003 -59.7 48.0 19730101 20200624 872730 99999 GOYA AIRPORT AR -29.1 -59.217 38.0 19730101 20040803 872731 99999 GOYA AIRPORT AR SATG -29.116999999999997 -59.217 39.0 19800506 19800607 872733 99999 GOYA & AR SATG -29.1 -59.217 38.0 19390201 19450930 872810 99999 VILLA MERCEDES/AAFB AR -29.217 -58.083 107.0 19730113 19730927 872814 99999 MERCEDES (RCE) AR SATM -29.217 -58.1 107.0 19800606 19840821 872860 99999 CURUZU CUATIA AR SATU -29.771 -57.979 70.1 19730101 20100916 872890 99999 PASO DE LOS LIBRES AR SARL -29.689 -57.152 70.1 19390201 20200624 873050 99999 JACHAL AR SAMJ -30.25 -68.75 1165.0 19730101 20200624 873110 99999 SAN JUAN AR SANU -31.570999999999998 -68.418 597.1 19730101 20200624 873120 99999 SAN JUAN SOUTH AR -31.583000000000002 -68.533 630.0 19390201 19661029 873200 99999 CHAMICAL AERO AR -30.366999999999997 -66.283 467.0 19730102 20200624 873205 99999 CHAMICAL AR SACT -30.345 -66.294 458.1 19940719 20001101 873220 99999 CHEPES AR SACP -31.333000000000002 -66.6 658.0 19730101 20170302 873280 99999 VILLA DOLORES AR SAOD -31.945 -65.146 583.7 19730101 20200624 873290 99999 VALLE DEL CONLARA AR SAOS -32.385 -65.187 616.0 20040803 20190531 873360 99999 LA CUMBRE AR -31.0 -64.533 1138.0 19740813 19750513 873440 99999 AMBROSIO L V TARAVELLA AR SACO -31.324 -64.208 488.9 19390201 20200624 873450 99999 CORDOBA OBSERVATORIO AR -31.4 -64.183 426.0 20080915 20180503 873470 99999 ESCUELA DE AVIACION MILITAR AR SACE -31.445 -64.283 502.0 20010927 20200624 873490 99999 PILAR OBSERVATORIO AR SACI -31.666999999999998 -63.883 338.0 19730101 20200624 873590 99999 RAFAELA INTA AR -31.183000000000003 -61.55 100.0 19730102 19791226 873710 99999 SAUCE VIEJO AR SAAV -31.712 -60.812 17.1 19730101 20200624 873740 99999 GENERAL URQUIZA AR SAAP -31.795 -60.48 74.1 19390201 20200624 873850 99999 VILLAGUAY AR SAAU -31.85 -59.083 43.0 19730101 20031122 873870 99999 SAUCE AR -30.083000000000002 -58.766999999999996 68.0 19730102 19900606 873930 99999 MONTE CASEROS AR SARM -30.272 -57.64 53.0 19650307 20200624 873950 99999 COMODORO PIERRESTEGUI AR SAAC -31.296999999999997 -57.997 34.1 19390201 20200624 874000 99999 CRISTO REDENTOR AR SAMC -32.833 -70.083 3829.0 19570630 19860507 874020 99999 PUENTE DAL INCA AR -32.817 -69.9 2726.0 19730102 19781007 874050 99999 USPALLATA AR SAMU -32.6 -69.333 1844.0 19730101 20200624 874120 99999 SAN CARLOS AR SAMS -33.766999999999996 -69.033 940.0 19730101 20200624 874125 99999 20040727 20041209 874160 99999 SAN MARTIN AR SAMI -33.083 -68.417 653.0 19730101 20200624 874180 99999 EL PLUMERILLO AR SAME -32.832 -68.793 704.1 19390201 20200624 874185 99999 19730101 19741023 874200 99999 MENDOZA OBSERVATORIO AR -32.883 -68.85 827.0 19730101 20200624 874270 99999 LA PAZ AR SAMP -33.467 -67.55 504.0 19730102 19761112 874360 99999 SAN LUIS AR SAOU -33.273 -66.35600000000001 709.9 19570630 20200624 874440 99999 SANTA ROSA DE CONLARA AR -32.383 -65.183 615.0 20070621 20170302 874480 99999 VILLA REYNOLDS AR SAOR -33.73 -65.387 484.9 19390201 20200624 874500 99999 EMBALSE RIO TERCERO AR -32.183 -64.383 547.0 19730104 19840728 874530 99999 RIO CUARTO AREA DE MATERIAL AR SAOC -33.085 -64.26100000000001 420.9 19730101 20200624 874600 99999 19740824 19741109 874670 99999 MARCOS JUAREZ AR SAOM -32.684 -62.158 110.0 19730101 20200624 874680 99999 VENADO TUERTO AERO AR -33.667 -61.967 112.0 19890501 20170302 874700 99999 EL TREBOL AR -32.5 -61.667 96.0 20030729 20200624 874780 99999 VICTORIA AR -32.617 -60.183 29.0 19730101 19770326 874800 99999 ROSARIO AR SAAR -32.904 -60.785 25.9 19390201 20200624 874970 99999 GUALEGUAYCHU AR SAAG -33.01 -58.613 22.9 19650307 20200624 874980 99999 MAZARUCA AR SAAM -33.583 -59.266999999999996 4.0 19730101 19840124 875000 99999 BOGUS ARGENTINEAN AR 0.0 0.0 -999.0 19390601 20011224 875020 99999 VALLE HERMOSA AR -35.15 -70.2 2293.0 19750305 19750505 875060 99999 MALARGUE AR SAMM -35.494 -69.574 1430.1 19390202 20200624 875090 99999 SAN RAFAEL AR SAMR -34.588 -68.403 752.9 19730101 20200624 875120 99999 COLONIA ALVEAR AR -35.0 -67.65 464.0 19730105 19800125 875320 99999 GENERAL PICO AR SAZG -35.696 -63.758 139.9 19390201 20200624 875340 99999 LABOULAYE AR SAOL -34.135 -63.361999999999995 136.9 19570630 20200624 875440 99999 COMODORO P ZANNI AR SAZP -35.845 -61.858000000000004 85.0 19730101 20200624 875480 99999 JUNIN AR SAAJ -34.546 -60.931000000000004 79.9 19390201 20200624 875485 99999 19740302 19740729 875486 99999 19740331 19740331 875500 99999 NUEVE DE JULIO AR -35.45 -60.883 76.0 19730104 20090429 875530 99999 SAN FERNANDO AR SADF -34.453 -58.59 3.0 20020201 20200624 875630 99999 LAS FLORES AR -36.067 -59.1 38.0 19730102 20200624 875680 99999 DON TORCUATO AR SADD -34.501 -58.604 5.0 19730101 20051208 875690 99999 SAN MIGUEL AR -34.55 -58.733000000000004 26.0 19730101 20170302 875710 99999 EL PALOMAR AR SADP -34.61 -58.613 18.0 19730101 20200624 875720 99999 MARIANO MORENO(AAFB) AR -34.567 -58.783 28.0 19730702 20011208 875740 99999 MORON(AAFB) AR -34.683 -58.65 30.0 19340102 20100126 875760 99999 MINISTRO PISTARINI AR SAEZ -34.821999999999996 -58.536 20.4 19570630 20200624 875800 99999 ISLA MARTIN GARCIA AR -34.183 -58.266999999999996 36.0 19730101 19910221 875820 99999 AEROPARQUE JORGE NEWBERY AR SABE -34.559 -58.416000000000004 5.5 19730101 20200624 875850 99999 BUENOS AIRES (OBS) AR SABA -34.583 -58.483000000000004 25.0 19310101 20200624 875890 99999 PONTON INTERSECTION AR -34.667 -57.983000000000004 11.0 19740925 19800120 875930 99999 LA PLATA AR SADL -34.972 -57.895 21.9 19730101 20200624 875960 99999 PUNTA INDIO B.A. AR -35.367 -57.283 16.0 19570630 20200624 875970 99999 19740604 19740731 875980 99999 FARO PONTON RECALAD AR -35.167 -56.25 11.0 19730101 19951226 876160 99999 VICTORICA AR -36.217 -65.433 312.0 19390201 20040629 876190 99999 GENERAL ACHA AR -37.367 -64.583 219.0 19750426 20040311 876230 99999 SANTA ROSA AR SAZR -36.588 -64.27600000000001 192.0 19570630 20200624 876370 99999 CORONEL SUAREZ AERO AR -37.433 -61.883 233.0 19390201 20200624 876390 99999 BOLIVAR AR SAZI -36.187 -61.076 93.9 19730101 20151206 876400 99999 BOLIVAR AERO AR -36.2 -61.067 94.0 19890401 20200624 876410 99999 AZUL AERO AR -36.833 -59.883 146.0 19970101 20200624 876420 99999 AZUL AIRPORT AR SAZA -36.75 -59.833 132.0 19570630 20200618 876430 99999 OLAVARRIA AERO AR -36.883 -60.217 165.0 19871002 20200624 876450 99999 TANDIL AR SAZT -37.236999999999995 -59.228 175.0 19730101 20200624 876460 99999 LOPEZ/JUAREZ AR -37.533 -59.567 232.0 19730101 19800118 876480 99999 DOLORES AIRPORT AR SAZD -36.35 -57.733000000000004 9.0 19390306 20200624 876490 99999 BENITO JUAREZ AR -37.717 -59.783 207.0 19810101 20200624 876570 99999 20031130 20031130 876580 99999 SANTA TERESITA AERO AR -36.55 -56.683 3.0 19920901 20090429 876630 99999 VILLA GESELL AR SAZV -37.235 -57.028999999999996 9.8 19761001 20100301 876730 99999 PUELCHES AR -38.133 -65.917 231.0 19730125 19740620 876790 99999 PIGUE AIRPORT AR SAZE -37.6 -62.383 304.0 19730101 20200624 876880 99999 TRES ARROYOS AR SAZH -38.387 -60.33 121.9 19730101 20200624 876920 99999 MAR DEL PLATA AR SAZM -37.934 -57.573 21.6 19390201 20200624 876960 99999 MAR DEL PLATA ANB AR -38.05 -57.55 4.0 19730501 19740815 877150 99999 PRESIDENTE PERON AR SAZN -38.949 -68.156 272.8 19390201 20200624 877330 99999 19390201 19450930 877360 99999 RIO COLORADO AR SAZQ -39.016999999999996 -64.083 79.0 19730102 20090429 877430 99999 FARO EL RINCON AR -39.383 -62.016999999999996 6.0 19740629 19740706 877480 99999 COMANDANTE ESPORA AR -38.733000000000004 -62.167 74.0 19740610 20000302 877500 99999 COMANDANTE ESPORA AR SAZB -38.725 -62.169 75.0 19390410 20200624 877580 99999 NECOCHEA AIRPORT AR -38.483000000000004 -58.833 32.0 19730101 19901130 877590 99999 ZAPALA AR -38.9 -70.05 1015.0 19390201 19450930 877610 99999 AVIADOR C CAMPOS AR SAZY -40.075 -71.137 783.0 19810601 20200612 877630 99999 CATEDRAL 2000 AR -41.25 -71.617 1955.0 19570630 20040311 877650 99999 SAN CARLOS DE BARILOCHE AR SAZS -41.151 -71.158 846.1 19390201 20200624 877680 99999 PIEDRA DEL AGUILA AR SAVA -40.033 -70.05 466.0 19730102 19771216 877681 99999 PIEDRA DEL AGUILA AR SAVA -40.033 -70.05 466.0 20051123 20051123 877740 99999 MAQUINCHAO AR -41.25 -68.733 888.0 19570630 20200624 877744 99999 EL BOLSON AR SAVB -41.967 -71.517 330.0 19800319 19840927 877750 99999 NAME AND LOC UNKN AR 0.0 0.0 -999.0 19760602 19800315 877840 99999 SAN ANTONIO OESTE AERO AR SAVO -40.783 -65.1 20.0 19390201 20200624 877895 99999 EL TEHUELCHE AR SAVY -42.75899999999999 -65.10300000000001 129.8 20040913 20200402 877900 99999 PATAGONES -39.217 -61.016999999999996 39.9 19390201 19670412 877910 99999 GOBERNADOR CASTELLO AR SAVV -40.869 -63.0 6.1 19730101 20200624 878000 99999 EL BOLSON AR SAVB -41.943000000000005 -71.532 344.7 19830701 20200624 878030 99999 ESQUEL AR SAVE -42.908 -71.139 798.9 19570630 20200624 878034 99999 EL MAITEN AR SAVD -42.033 -71.167 720.0 19800320 19840927 878070 99999 JOSE DE SAN MARTIN AR -44.05 -70.433 720.0 19390201 20030828 878074 99999 JOSE SN MARTIN(JSM) AR -44.033 -70.467 800.0 19800310 19840828 878140 99999 PASO DE INDIOS AR SAVP -43.817 -68.883 460.0 19730921 20140823 878230 99999 P.MADRYN AERO AR -42.733000000000004 -65.067 136.0 20080314 20170302 878250 99999 GOLFO NUEVO (ARG-NA AR -42.766999999999996 -65.033 6.0 19730519 19810114 878280 99999 ALMIRANTE ZAR AR SAVT -43.211000000000006 -65.27 43.0 19390202 20200624 878520 99999 PERITO MORENO ARPT AR SAWP -46.516999999999996 -71.017 429.0 19390218 20200624 878523 99999 EL DORADO (ELD) AR -46.583 -70.017 201.0 19800506 19840712 878524 99999 RIO MAYO (RMY) AR SAWM -45.717 -70.233 545.0 19800310 19840921 878525 99999 ALTO RIO SENGUERR AR SAVR -45.016999999999996 -70.817 697.0 19800424 19840927 878526 99999 SARMIENTO LAGO MUSTER ARPT AR SAVM -45.575 -69.077 271.0 19800826 20180712 878527 99999 PERITO MORENO (PTM) AR -46.533 -71.0 430.0 19800423 19840827 878600 99999 COMODORO RIVADAVIA AR SAVC -45.785 -67.46600000000001 57.9 19570630 20200624 878690 99999 NAME AND LOC UNKN AR 0.0 0.0 -999.0 19741206 19750624 878710 99999 CAMARONES AR -44.766999999999996 -65.7 34.0 19730621 19751121 878800 99999 GOBERNADOR GREGORES AR SAWR -48.783 -70.167 356.0 19730101 20170302 878900 99999 STANLEY-IN-MALVINAS FK -51.7 -57.867 51.0 19740720 20020210 878960 99999 PUERTO DESEADO AR SAWD -47.735 -65.904 81.1 19390201 20200624 879030 99999 LAGO ARGENTINO ARPT AR SAWA -50.333 -72.3 220.0 19390201 20040719 879035 99999 EL CALAFATE AR SAWC -50.28 -72.053 203.9 20020202 20200622 879040 99999 EL CALAFATE AERO AR -50.266999999999996 -72.05 199.0 20030330 20200624 879090 99999 SAN JULIAN AR SAWJ -49.306999999999995 -67.803 57.9 19730101 20200624 879120 99999 SANTA CRUZ AR SAWU -50.016999999999996 -68.579 110.9 19390201 20191017 879170 99999 EL TURBIO AIRPORT AR -51.6 -72.217 273.0 19790102 19790122 879174 99999 EL TURBIO / AIRPORT AR SAWT -51.6 -72.217 273.0 19800319 20200219 879250 99999 RIO GALLEGOS AR SAWG -51.608999999999995 -69.313 18.6 19590107 20200624 879260 99999 RIO GALLEGOS/ARG-NA AR -51.633 -69.217 20.0 19570630 20021119 879280 99999 FARO CABO VIRGENES AR -52.333 -68.35 24.0 19390201 20050828 879290 99999 BOGUS ARGENTINEAN AR 19840504 20010816 879340 99999 RIO GRANDE AR SAWE -53.778 -67.749 19.8 19730101 20200624 879360 99999 TOLHUIN AR -54.7 -67.25 105.0 19780520 20090608 879380 99999 USHUAIA MALVINAS ARGENTINAS AR SAWH -54.843 -68.296 21.6 19390201 20200624 879460 99999 BOGUS ARGENTINEAN AR 19840501 19840510 879490 99999 PUERTO PARRY AR -54.8 -64.367 8.0 19810126 19810909 879520 99999 19740720 19740929 879580 99999 19740807 19740929 880220 99999 19740613 19740929 888700 99999 MOUNT BYRON FK -51.417 -60.567 480.0 20140513 20200624 888780 99999 PEBBLE ISLAND UK -51.317 -59.6 16.0 19920301 20200624 888800 99999 WEST POINT ISLAND FK -51.35 -60.683 26.0 19530410 20011105 888810 99999 MOUNT KENT FK -51.667 -58.1 458.0 20140513 20200624 888820 99999 WEDDELL ISLAND FK -51.9 -60.9 7.0 19530101 20060607 888830 99999 WEDDELL ISLAND FK -51.9 -60.917 17.0 19910712 20200624 888840 99999 FOX BAY FK -51.937 -60.062 34.0 19530101 20200624 888860 99999 PEBBLE I FLAKLAND IS FK -50.7 -58.4 19530101 19570831 888880 99999 DARWIN FK -51.817 -58.967 4.0 19530201 20030730 888890 99999 MOUNT PLEASANT FK EGYP -51.823 -58.446999999999996 74.4 19850606 20200624 888900 99999 STANLEY FK -51.7 -57.867 51.0 19490101 20011121 888910 99999 STANLEY FK SFAL -51.68600000000001 -57.778 22.9 19840605 20200624 888920 99999 STANLEY FK -51.683 -57.867 10.0 20070822 20090117 888940 99999 MOUNT ALICE FK -52.15 -60.6 361.0 20140513 20200624 888970 99999 SEA LION ISLAND UK -52.433 -59.083 15.0 19910507 20200624 889000 99999 BIRD ISLAND SX -54.0 -38.05 2.0 20030330 20200624 889020 99999 GRYTVIKEN/FLAT BLUF SX -54.266999999999996 -36.5 10.0 19880601 20011105 889030 99999 GRYTVIKEN SX -54.283 -36.5 3.0 19490101 20200624 889250 99999 SIGNY ISLAND UK -60.717 -45.6 7.0 19490126 19850630 889340 99999 ADMIRALTY BAY AY -62.067 -58.4 9.0 19490111 19580630 889380 99999 DECEPTION IS S SMET IS -61.016999999999996 -59.433 7.9 19490101 19580630 889400 99999 HOPE BAY ANTARCTICA AY -62.6 -55.016999999999996 19520501 19580630 889420 99999 CAPE CRYSTAL AY -63.516999999999996 -57.383 0.0 19550608 19560925 889460 99999 CORBETA URUGUAY DN UK -59.45 -27.267 15.0 19790401 19840522 889490 99999 PORT LOCKROY AY -64.817 -63.5 10.0 19490105 19531130 889520 99999 ARGENTINE ISLAND UK -65.25 -64.267 9.0 19490101 19850827 889560 99999 ADELAIDE ISLANDS EST AY -66.883 -66.95 0.0 19560701 19580630 889580 99999 ADELAIDE ISLAND UK -67.767 -67.917 13.0 19730101 19770115 889590 99999 ADELAIDE ISLANDS SE AY -67.65 -67.233 939.0 19550901 19580630 889610 99999 STONINGTON BRI-BASE UK -68.183 -67.017 14.0 19490101 19831128 889620 99999 FOSSIL BLUFF UK -71.333 -68.35 55.0 19730101 19850802 889630 99999 BASE ESPERANZA AY -63.4 -56.983000000000004 24.0 19730101 20200624 889650 99999 MELCHIOR S OFKNEY IS ARG N BASE AY -63.683 -61.033 7.9 19490501 19531231 889670 99999 BELGRANO 1 ARG-BASE AR -77.967 -38.8 32.0 19730101 19801212 889680 99999 BASE ORCADAS AR -60.733000000000004 -44.733000000000004 8.0 19490501 20200624 889700 99999 MATIENZO ARG-BASE AR -64.967 -60.05 32.0 19731008 19870328 889710 99999 BROWN ARG-BASE AR -64.883 -62.883 1.0 19730518 19840412 889740 99999 DECEPTION ISLAND AR -62.983000000000004 -60.567 8.0 19490501 19800310 889810 99999 ZAVODOVSKI IS. UK -56.283 -27.583000000000002 113.0 19950207 19990106 889860 99999 SOUTH THULE IS. UK -59.45 -27.316999999999997 268.0 19950207 20130802 890010 99999 SANAE SAF-BASE AY -70.3 -2.35 62.0 19730101 19970129 890020 99999 NEUMAYER AY -70.667 -8.25 50.0 19811101 20200624 890030 99999 HALVFARRYGGEN (EP11) AY -71.15 -6.683 694.0 20080331 20200624 890040 99999 S.A.N.A.E. AWS AY -71.7 -2.8 817.0 19970101 20200624 890090 90001 AMUNDSEN-SCOTT AY NZSP -90.0 0.0 2830.0 19570109 20200624 890090 99999 AMUNDSEN-SCOTT AY NZSP -90.0 0.0 2835.0 20000101 20041231 890130 99999 BALDRICK AWS AY -82.76700000000001 -13.05 1968.0 20080229 20200624 890140 99999 NORDENSKIOLD BASE AY -73.05 -13.383 497.0 19940301 20200604 890160 99999 WASA EPS AY -73.117 -13.15 363.0 20080115 20141201 890180 99999 ZVEA EP6 AY ZVEA -74.483 -11.517000000000001 1160.0 20070919 20131022 890200 99999 BRUNT AWS AY -75.58 -26.17 10.0 20060710 20121111 890220 99999 HALLEY AY -75.61 -26.272 30.0 19560615 20200624 890240 99999 NAVY OPERATED(AMOS) AY -77.517 -23.733 1545.0 19910924 19960929 890270 99999 PRINCESS ELISABETH AY -71.95 23.35 1397.0 19570301 19571225 890340 99999 BASE BELGRANO II AY -77.867 -34.617 256.0 19560601 20200624 890420 99999 SIGNY ISLAND AY -60.717 -45.6 6.0 19850704 19951231 890430 99999 N.CENTRAL ANTARCTICA AY -77.7 -41.1 42.0 19570318 19580630 890440 99999 DRUZHNAYA AY -77.567 -40.217 35.0 19760202 19960404 890450 99999 BELGRANO 3 ARG-BASE AY -77.9 -45.983000000000004 243.0 19810601 19990130 890490 99999 AGO-2 AY -85.667 -46.383 1860.0 20080606 20110816 890500 99999 BELLINGSHAUSEN AWS AY -62.183 -58.883 14.0 19730101 20200624 890510 99999 PETREL ARG-BASE AY -63.467 -56.283 20.0 19730101 19781130 890520 99999 ARCTOWSKI AY -62.167 -58.467 2.0 19780919 19900415 890530 99999 BASE CARLINI AY -62.233000000000004 -58.633 11.0 19800208 20200624 890540 99999 DINAMET-URUGUAY AY -62.183 -58.85 17.0 19850301 20161211 890550 99999 BASE MARAMBIO (CENTRO MET. ANTARTICO) AY -64.233 -56.717 208.0 19730101 20200624 890560 99999 CENTRO MET. ANTARTICO PDTE. EDUARDO FREI AY SCRM -62.183 -58.983000000000004 48.0 19850408 20200624 890570 99999 BASE ARTURO PRAT AY -62.5 -59.683 5.0 19470802 20200624 890580 99999 GREAT WALL AY -62.217 -58.967 10.0 19851101 20200624 890590 99999 BASE BERNARDO O'HIGGINS AY -63.317 -56.683 10.0 19850701 20200624 890600 99999 PRIMAVERA ARG-BASE AY -64.15 -60.95 50.0 19770524 20011106 890610 89061 PALMER STATION AY -64.766 -64.083 8.0 19760601 20200625 890610 99999 PALMER STATION AY -64.767 -64.083 8.0 20010123 20041231 890620 99999 ROTHERA AY -67.567 -68.117 33.0 19770201 20200624 890630 99999 VERNADSKY AY -65.25 -64.267 11.0 19850528 20200624 890640 99999 JUAN CARLOS I AWS AY -62.667 -60.383 12.0 19890103 20200620 890650 99999 FOSSIL BLUFF AY -71.317 -68.283 69.0 19850906 20200624 890660 99999 BASE SAN MARTIN AY -68.117 -67.133 7.0 19761001 20200624 890810 99999 PATRIOT HILLS AWS AY -80.3 -81.333 905.0 20080303 20100125 890830 57801 SIPLE STATION AY -75.917 -83.917 914.0 19730204 19900404 890870 99999 THIEL MTNS AWS AY -85.2 -87.883 1634.0 20090113 20160218 891080 99999 HENRY AY -89.0 -1.0170000000000001 2755.0 19940601 20200624 891250 68201 BYRD USA BASE AY -80.017 -119.53299999999999 1515.0 19730101 19960208 891320 99999 RUSSKAJA AY -74.767 -136.8 141.5 19800401 20170415 891750 99999 BROCKTON AY -78.8 -174.667 15.0 20030224 20190112 892080 99999 UNIV. WI ID 8987 (CLEAN AIR) AY -90.0 0.0 2835.0 19900501 20060830 892140 99999 DRESCHER AY -72.87 -19.03 20.0 20010702 20031231 892500 99999 KING GEORGE ISLAND AY -62.083 -58.4 267.0 20010711 20041024 892510 99999 KING SEJONG AY -62.217 -58.75 11.0 19910201 20200624 892520 99999 COMANDANTE FERRAZ AY -62.083 -58.383 18.0 20080314 20110205 892530 99999 JOINVILLE ISLAND AY -63.183 -55.4 75.0 20070423 20130725 892570 99999 UNIV. WI ID 8925 (LIMBERT AWS) AY -75.867 -59.15 40.0 19980301 20200624 892580 99999 FILCHNER AY -77.083 -51.217 20.0 20080918 20080918 892590 99999 FICHNER-RONNE SCHELFICE AY -83.167 -59.583 165.0 20110620 20110620 892610 99999 UNIV. WI ID 8947 (RACER ROCK) AY -64.067 -61.617 17.0 19910924 20060830 892620 99999 UNIV. WI ID 8926 (LARSEN ICE SHELF) AY -67.017 -61.467 45.0 19900501 20200624 892640 99999 UNIV. WI ID 8920 (URANUS) AY -71.433 -68.933 780.0 19900501 20060625 892660 99999 UNIV. WI ID 8902 (BUTLER ISLAND) AY -72.2 -60.167 115.0 19900501 20200624 892680 99999 NAVY OPERATED(AMOS) AY -75.017 -62.533 25.0 19900501 20080228 892690 99999 BONAPARTE POINT AY -64.783 -64.067 8.0 19960506 20160221 892720 99999 UNIV. WI ID 8917 (SKI-BLU) AY -74.8 -71.483 1589.0 19970101 20200624 892840 99999 SIPLE AY -75.917 -83.917 1054.0 19900501 19961115 893140 99999 THERESA AY -84.6 -115.81700000000001 1463.0 19970101 20200624 893240 99999 BYRD STATION AY -80.0 -119.4 1530.0 19900501 20200624 893270 99999 MOUNT SIPLE AY -73.2 -127.05 230.0 19940601 20191016 893290 99999 HARRY AY -83.0 -121.383 945.0 20070605 20200624 893320 99999 ELIZABETH AY -82.617 -137.083 549.0 19970301 20200624 893450 99999 SIPLE DOME AY -81.65 -148.783 620.0 19970601 20200624 893710 99999 UNIV. WI ID 8983 (SCOTT ISLAND) AY -67.367 -179.967 30.0 19900501 19991208 893740 99999 MARTHA II AY -78.35 -173.36700000000002 18.0 19900501 20041020 893760 99999 GILL AY -79.983 -178.6 55.0 19970101 20200624 893770 99999 LETTAU AY -82.51700000000001 -174.45 55.0 19900501 20200624 894540 99999 AY 19870511 19870511 895040 99999 TROLL IN ANTARKTIS AY -72.017 2.533 1277.0 19940801 20200624 895070 99999 KOHNEN / EP9 AY -75.0 0.0 2892.0 20070822 20200624 895100 99999 DAKSHIN GANGOTRI AY -70.133 12.0 27.0 19870301 19900414 895120 99999 NOVOLAZAREVSKAJA AY -70.767 11.833 119.0 19730101 20200624 895140 99999 MAITRI AY -70.767 11.75 -999.9 19900201 20200624 895240 99999 ASUKA JAPAN-BASE AY -71.533 24.133000000000003 931.0 19870301 20121212 895280 99999 AGO-3 AY -82.76700000000001 28.583000000000002 2912.0 20010707 20130515 895320 99999 SYOWA AY -69.0 39.583 21.0 19730101 20200624 895360 99999 PLATEAU STATION B EP12 AY -78.65 35.633 3620.0 20150709 20160909 895420 99999 MOLODEZNAJA AY -67.667 45.85 50.0 19730101 20200621 895440 99999 MIZUHO AY -70.7 44.333 2230.0 19771126 19861010 895580 99999 POLE OF INACCESSIBILITY EP13 AY -82.117 55.033 3730.0 20150709 20160909 895640 99999 MAWSON AY -67.6 62.867 16.0 19850701 20200624 895650 99999 RUMDOODLE AIRFIELD AY -67.717 62.8 430.0 20010811 20080327 895670 99999 DOVERS AY -70.233 65.85 1100.0 19890101 19931202 895680 99999 DAVIS LGB 35 AWS AY -76.05 65.017 2342.0 19960201 20080702 895700 99999 DAVIS (WHOOP WHOOP) AY -68.467 78.817 546.5 20110826 20200205 895710 99999 DAVIS AY -68.583 77.967 23.0 19730101 20200624 895720 99999 RAUER PLATEAU AIRFI AY -68.85 78.033 363.0 20010914 20050429 895730 99999 ZHONGSHAN AY -69.367 76.367 18.0 19900308 20200624 895740 99999 PROGRESS AY -69.383 76.383 64.0 19880401 20200624 895750 99999 DRUZHNAJA-4 AY -69.75 73.7 46.0 20100202 20200624 895760 99999 DAVIS (LGB 69) AY -70.833 77.067 1850.0 20030211 20090312 895770 99999 DOME PLATEAU DOME A AY -80.37 77.37 4084.0 19960201 20200624 895780 99999 DOME PLATEAU EAGLE AY -76.42 77.02 2830.0 20050303 20200624 895860 99999 MOUNT BROWN AY -69.117 85.98299999999999 2078.0 20040224 20111010 895920 99999 MIRNYJ AY -66.55 93.01700000000001 40.0 19730101 20200624 895980 99999 AGO-4 AY -82.01700000000001 96.76700000000001 3565.0 20130221 20200624 896000 99999 EDGEWORTH DAVID AY -66.25 100.6 6.0 20160503 20190430 896010 99999 OAZIC BANGERA AY -66.267 100.75 42.0 20140314 20200624 896060 99999 VOSTOK AY -78.45 106.867 3488.0 19730101 20200624 896100 99999 CAPE POINSETT AY -65.85 113.06700000000001 90.0 20040608 20180518 896110 99999 CASEY AY -66.283 110.53299999999999 42.0 19730101 20200624 896120 99999 CASEY SKIWAY AY -66.283 110.8 390.0 20010811 20080424 896140 99999 CASEY (UPPER PETERSON RUNWAY) AY -66.7 111.5 727.0 20030211 20200608 896150 99999 WILKINS RUNWAY EAST AY YWKS -66.683 111.53299999999999 755.0 20071016 20191009 896180 99999 CASEY (HALFWAY) AY -66.667 112.01700000000001 1074.0 20030211 20070112 896200 99999 EAST LAW DOME AWS AY -66.733 114.499 910.0 20050723 20140131 896250 99999 CONCORDIA AY -75.1 123.4 3233.0 20060207 20200624 896270 99999 AGO-5 AY -77.233 123.51700000000001 3084.0 20010730 20010924 896280 99999 AGO-1 AY -83.867 129.61700000000002 2865.0 20080605 20121218 896370 99999 AGO-6 AY -69.517 130.017 2560.0 20010812 20030825 896420 99999 DUMONT D'URVILLE AY -66.667 140.017 43.0 19850701 20200624 896430 99999 PORT MARTIN AY -66.817 141.38299999999998 39.0 19910924 20190212 896440 99999 STILLWELL ISLANDS(A AY -66.95 143.933 52.0 20041017 20120202 896460 99999 SITRY POINT AY -71.65 148.65 2094.0 20100310 20190507 896480 99999 MID POINT AY -75.533 145.86700000000002 2509.0 20060207 20200527 896570 99999 LENINGRADSKAYA AY -69.5 159.38299999999998 291.0 19730101 20161225 896590 99999 PRIESTLEY GLACIER AY -73.633 160.65 1924.0 20060207 20200624 896600 99999 YOUNG ISLAND AY -66.283 162.333 30.0 19910924 20010909 896610 99999 CAPE PHILLIPS AY -73.517 169.75 568.0 19950403 20200624 896620 99999 BASE BAIA TERRA NOVA AY -74.7 164.1 92.0 19950403 20200624 896630 99999 LAKE VANDA NZL-BASE AY -77.533 161.667 15.0 19730101 19970516 896640 87601 NSFA MCMURDO SOUND AY NZCM -77.883 166.733 24.1 20020901 20200624 896640 99999 MCMURDO AY NZCM -77.85 166.667 24.0 19730101 20041231 896650 99999 SCOTT BASE AY -77.85 166.75 94.0 20080201 20080201 896660 99999 CAPE ROSS AY -76.717 162.967 150.0 19950403 20200624 896670 99999 PEGASUS NORTH AY -77.95 166.5 10.0 19900501 20200514 896680 00414 PEGASUS FIELD AY NZPG -77.95 166.517 5.2 20050102 20170116 896680 99999 MCMURDO STATION PEGASUS FIELD AY NZPG -77.96300000000001 166.525 5.5 20010819 20081229 896690 99999 MCMURDO STATION ICE RUNWAY AY NZIR -77.854 166.46900000000002 0.3 20011001 20131129 896700 99999 WILLIAMS FIELD AY -77.867 167.05700000000002 20.7 20011207 20081231 896710 99999 SOUTH POLE STATION AY -89.98299999999999 0.0 2835.0 19730101 20081231 896740 99999 WILLIAMS FIELD AY NZWD -77.867 167.05700000000002 20.7 19801106 20200217 897050 99999 AGO-A81 AY -81.5 3.733 2410.0 19950701 19960612 897340 99999 DOME FUJI AY -77.317 39.7 3810.0 19970101 20200624 897440 99999 RELAY STAT AY -74.017 43.05 3353.0 19970101 20200624 897570 99999 MAWSON (LGB 20 AWS) AY -73.833 55.667 2741.0 19930801 20060428 897580 99999 MAWSON (LGB10 AWS) AY -71.3 59.217 2620.0 19960201 20060508 897620 99999 MAWSON (LGB 00 GE 03 AWS) AY -68.65 61.117 1830.0 19930801 20090815 897670 99999 G3 AY -70.9 69.867 84.0 20010811 20200624 897680 99999 MINNA BLUFF AY -78.55 166.65 920.0 19941207 20190116 897690 99999 LINDA AY -78.467 168.38299999999998 50.0 19940605 20200624 897740 99999 DAVIS (LGB 59 AWS) AY -73.45 76.783 2537.0 19960201 20040626 897990 99999 NICO AY -89.0 89.667 2935.0 19940601 20200624 898030 99999 CASEY (TRAVERSE GF08) AY -68.5 102.18299999999999 2123.0 19930801 20070711 898050 99999 CASEY (GC 46 AWS) AY -74.133 109.833 3070.0 19930801 20010430 898070 99999 SNYDER ROCKS AY -66.55 107.75 42.0 19960901 20190515 898090 99999 CASEY SKIWAY SOUTH AY -66.283 110.76700000000001 375.0 20050101 20200219 898100 99999 CASEY AIRSTRIP(AWS) AY -66.283 110.78299999999999 390.0 19930801 20020122 898110 99999 LAW DOME SUMMIT AY -66.733 112.833 1368.0 19930801 20200609 898120 99999 AO28 AWS SOUTH OF LAW DOME AY -68.4 112.21700000000001 1622.0 20010811 20060602 898130 99999 CASEY (TRAVERSE GC41) AY -71.6 111.26700000000001 2761.0 19930801 20051117 898140 99999 CASEY BALAENA ISLAN AY -66.017 111.083 8.0 19950101 20040910 898150 99999 HAUPT NUNATAK AY -66.583 110.7 63.0 20040405 20200603 898160 99999 LAW DOME SUMMIT SOUTH AWS AY -66.767 112.81700000000001 1376.0 20010811 20050302 898280 99999 DOME C II AY -75.117 123.367 3250.0 19900501 20200624 898320 99999 D-10 AY -66.717 139.833 243.0 19900501 20200624 898340 99999 D-47 AY -67.4 138.733 1560.0 19900501 20200624 898360 99999 D-85 AY -70.433 134.15 2651.0 19900501 19990727 898470 99999 UNIV. WI ID 8929 (PENGUIN POINT) AY -67.617 146.183 30.0 19970101 20090203 898600 99999 LYNN AY -74.233 160.283 1772.0 19900501 19980104 898610 99999 SANDRA AY -74.483 160.483 1525.0 19900501 19990623 898620 99999 SHRISTI AY -74.7 161.567 1200.0 19900501 19960930 898630 99999 GILL AY -80.033 -178.63299999999998 55.0 19900619 19970828 898640 99999 MANUELA AY -74.95 163.683 80.0 19900501 20200624 898650 99999 WHITLOCK AY -76.133 168.38299999999998 274.0 19900501 20200624 898660 99999 MARBLE POINT AY -77.433 163.75 84.0 19900501 20200624 898670 99999 UNIV. WI ID 8911 AY -77.5 167.15 3700.0 19900501 19910821 898680 99999 SCHWERDTFEGER AY -79.9 169.983 60.0 19900501 20200624 898690 99999 MARILYN AY -79.95 165.11700000000002 75.0 19900513 20200624 898720 99999 FERRELL AY -77.9 170.817 45.0 19900501 20200624 898730 99999 ELAINE AY -83.133 174.167 60.0 19940601 20200624 898790 99999 POSSESSION IS AY -71.883 171.2 30.0 19940601 20200624 899610 99999 STONINGTON AY -68.183 -67.017 14.0 19760303 19780706 899700 99999 AY 19760302 19760319 899710 99999 BROWN ARG-BASE AY -64.867 -62.867 7.0 19810601 19860619 899790 99999 NAME AND LOC UNKN US 0.0 0.0 -999.0 19760601 19760713 910660 22701 HENDERSON FIELD AIRPORT MQ UM PMDY 28.2 -177.38299999999998 5.5 19450401 20200625 910660 99999 MIDWAY ISLAND MQ HI PMDY 28.217 -177.36700000000002 3.0 20000101 20041231 911170 99999 KIPAPA FIELD HAWAII US HI PHHI 21.483 -158.033 256.0 19420617 19450927 911310 99999 MARCUS ISLAND 24.283 153.967 16.8 19510301 19551231 911550 99999 FRENCH FRIGATE SHOALS US 23.866999999999997 -166.283 2.0 19620918 20020519 911580 99999 PRINCEVILLE KAUAI HAWAII US 22.217 -159.45 98.0 19940902 20060321 911610 99999 KOKEE KAUAI HAWAII US 22.15 -159.65 1280.0 19730101 19910519 911620 22501 BARKING SANDS PACIFIC MISSILE RANGE FAC ARPT US HI PHBK 22.033 -159.783 7.0 19420422 20200625 911630 22526 PORT ALLEN ARPT US HI 21.9 -159.6 7.0 19740316 19991231 911630 99999 PORT ALLEN AIRPORT KAUAI HAWAII US 21.9 -159.6 7.0 20000101 20010102 911649 99999 LIHUE KAUAI ISL US HI 21.983 -159.333 31.0 19990114 19990930 911650 22536 LIHUE AIRPORT US HI PHLI 21.984 -159.341 30.5 19730101 20200625 911660 99999 MAKAHUENA POINT KAUAI HAWAII US 21.883000000000003 -159.417 16.0 19730101 19970604 911665 99999 KOLOA (CGS) US HI 21.866999999999997 -159.45 15.0 19400201 19411201 911670 99999 HANAPEPE KAUAI US 21.916999999999998 -159.65 52.0 19741008 19771008 911680 99999 KAPAA KAUAI HAWAII US 22.083000000000002 -159.317 88.0 19740316 19961204 911681 99999 WAIALUA-ON-OAHU US HI 21.583000000000002 -158.11700000000002 5.0 19420617 19451201 911690 99999 WAIALEE OAHU HAWAII US 21.683000000000003 -158.033 10.0 19411002 20000229 911700 22508 WHEELER ARMY AIRFIELD US HI PHHI 21.487 -158.028 257.9 19390601 20200625 911700 99999 WAHIAWA /WHEELER/SC US HI PHHI 21.483 -158.033 255.0 20000103 20041230 911720 99999 LUALUALEI OAHU US 21.433000000000003 -158.13299999999998 35.0 20090519 20090520 911760 22519 KANEOHE MCAS US HI PHNG 21.45 -157.768 7.3 19730101 20200625 911780 22514 KALAELOA ARPT US HI PHNA 21.316999999999997 -158.067 10.1 19730101 19991231 911780 22551 KALAELOA AIRPORT (JOHN RODGERS FIELD) US HI PHJR 21.316999999999997 -158.067 10.1 20060101 20200625 911780 99999 KALAELOA ARPT US HI PHJR 21.316999999999997 -158.067 15.0 20000101 20051231 911800 99999 HICKAM AFB/OAHU US HI 21.333000000000002 -157.95 4.0 19390601 19490801 911803 99999 HICKAM AFB US HI PHIK 21.316 -157.92700000000002 4.0 20010518 20160303 911810 99999 MAKIKI/MANOA/OAHU US HI 21.316999999999997 -157.817 67.0 20020616 20020616 911820 22521 HONOLULU INTERNATIONAL AIRPORT US HI PHNL 21.324 -157.929 2.1 19390601 20200625 911840 99999 WAIMANALO OAHU US 21.333000000000002 -157.717 18.0 19420218 20040930 911860 22534 MOLOKAI AIRPORT US HI PHMK 21.155 -157.096 135.0 20060101 20200625 911860 99999 MOLOKAI (AMOS) US HI PHMK 21.15 -157.1 137.0 19400129 20051231 911880 99999 PUKALANI FIRE STN US HI 20.833000000000002 -156.333 500.0 19740730 19760911 911890 99999 KAANAPALI MAUI HAWAII US 20.916999999999998 -156.683 -999.9 19730101 19860126 911900 22516 KAHULUI AIRPORT US HI PHOG 20.9 -156.429 15.5 19730101 20200625 911903 22516 KAHULUI AIRPORT US HI PHOG 20.9 -156.429 15.2 19450401 19721231 911904 22552 KAPTALUA AIRPORT US HI PHJH 20.963 -156.675 73.2 20060101 20200625 911904 99999 KAPALUA US HI PHJH 20.95 -156.667 78.0 19870326 20051231 911905 22524 LANAI AIRPORT US HI PHNY 20.79 -156.94899999999998 396.2 20060101 20200625 911905 99999 LANAI US HI PHNY 20.783 -156.95 399.0 19730101 20051231 911907 99999 HANA US HI PHHN 20.796 -156.014 23.8 19980201 20060116 911910 99999 KEAWAKAPU BEACH MAUI HAWAII US 20.7 -156.45 3.0 19730101 19820301 911940 99999 KAHOOLAWE HAWAII US 20.55 -156.583 366.0 19730101 19860729 911950 99999 UPOLU POINT (CG) HAWAII HAWAII US 20.25 -155.88299999999998 19.0 19730101 19810523 911961 99999 UPOLU ARPT/HAWAII US HI UPP 20.267 -155.86700000000002 31.0 19400807 19410501 911975 21510 KONA INTL AT KEAHOLE ARPT US HI PHKO 19.736 -156.049 13.1 20060101 20200625 911975 99999 KONA INTL AT KEAHOL US HI PHKO 19.733 -156.033 14.0 19730101 20051231 911976 99999 WAIMEA KOHALA US HI PHMU 20.000999999999998 -155.668 814.1 19410714 20071123 911977 21508 BRADSHAW ARMY AIRFIELD US HI PHSF 19.76 -155.554 1798.3 20060103 20200625 911977 99999 BRADSHAW AAF US HI PHSF 19.75 -155.55 1887.0 19730102 20051230 911978 99999 BRADSHAW AAF US HI 19.767 -155.55 1890.0 19770216 19780222 911990 99999 HAINA HAWAII HAWAII US 20.1 -155.467 140.0 19730101 19840107 912020 99999 ULITHI AWS CAROLINE IS. FM 10.2 139.8 2.0 20040608 20151123 912030 99999 FALALOP ISLAND (CG) ULITHI ATOLL FM 10.033 139.8 5.0 19450630 20200624 912040 99999 ULITHI ULITHI ATOLL CAROLINE IS. FM 10.033 139.8 2.0 19940719 20160124 912113 99999 WEST TINIAN CQ PGTI 15.0 145.63299999999998 82.0 19880106 19920623 912120 41415 GUAM INTERNATIONAL AIRPORT GQ GU PGUM 13.482999999999999 144.8 77.4 19730101 20200625 912170 99999 GUAM/MARIANA IS CQ PGAC 13.55 144.833 111.0 19730101 20010823 912180 41414 ANDERSEN AFB AIRPORT GQ GU PGUA 13.583 144.917 186.5 20050101 20200625 912180 99999 ANDERSEN AFB GQ PGUA 13.567 144.917 162.0 19480501 20041231 912210 41419 ROTA INTERNATIONAL AIRPORT CQ MP PGRO 14.172 145.243 179.2 20050101 20200625 912210 99999 ROTA INTL/ROTA ISL CQ PGRO 14.167 145.25 179.0 19930115 20041231 912213 99999 ROTA INTL/ROTA ISL CQ 14.167 145.233 185.0 19870219 19930111 912220 99999 PAGAN ISLAND AWS MARIANA IS. CQ 18.9 145.6 2.0 19730101 20061012 912310 41420 TINIAN INTERNATIONAL AIRPORT CQ MP PGWT 14.999 145.621 82.6 20050101 20200624 912320 41408 SAIPAN/ISLEY (CGS) CQ PGSN 15.117 145.733 4.0 19440710 19991231 912320 41418 FRANCISCO C. ADA/SAIPAN INTERNATIONAL ARPT CQ MP PGSN 15.117 145.717 65.5 20050101 20200625 912320 99999 SAIPAN/ISLEY (CGS) CQ PGSN 15.117 145.733 4.0 20000101 20041231 912324 99999 SAIPAN (CIVILIAN) CQ PGSF 15.117 145.733 3.0 19801130 19831014 912330 99999 SABANETTAN/TINIAN CQ PGNT 14.967 145.6 80.0 20030507 20030507 912333 41420 WEST TINIAN CQ MP PGWT 14.999 145.621 82.6 20050824 20200625 912333 99999 WEST TINIAN CQ 15.0 145.61700000000002 85.0 19910822 20041231 912340 99999 MAUG AWS MARIANA IS. CQ 20.05 145.217 50.0 20100323 20151125 912450 41606 WAKE ISLAND AIRFLD WQ PC PWAK 19.283 166.65 3.7 19451231 20100731 912450 99999 WAKE ISLAND AIRFLD WQ 19.283 166.65 4.0 20000101 20031231 912460 41606 WAKE ISLAND AIRFIELD WQ UM PWAK 19.283 166.65 7.0 20050101 20200625 912500 99999 ENEWETAK MARSHALL IS RM 11.35 162.35 5.0 19450630 20050204 912510 99999 ENIWETAK ATOLL AWS MARSHALL IS. RM 11.367 162.35 2.0 19910411 20090215 912540 99999 BIKINI ATOLL RM 11.517000000000001 165.55 3.0 19520926 19580727 912580 99999 UTIRIK ATOLL MARSHALL IS. RM 11.232999999999999 169.85 2.0 19580326 20191010 912590 99999 UTIRIK ATOLL AWS MARSHALL IS. RM 11.232999999999999 169.683 3.0 20040927 20160329 912750 21603 JOHNSTON ATOLL AIRPORT JQ UM PJON 16.733 -169.533 3.1 19450401 20041231 912750 99999 JOHNSTON ISLAND JQ PJON 16.733 -169.517 2.0 20000101 20040614 912760 99999 MAJURO MY PMAJ 7.067 171.267 2.0 20060303 20070725 912810 99999 KONA HAWAII IS. HAWAII US 19.65 -156.0 9.0 19730620 19961009 912830 99999 WAIKII HAWAII US 19.867 -155.65 1432.0 20020808 20020808 912834 99999 KAILUA HEIGHTS US HI 19.617 -155.967 -999.0 19801015 19831031 912840 99999 WAIKOLOA MAUKA HAWAII US 19.9 -155.75 480.0 20010930 20010930 912850 21504 HILO INTERNATIONAL AIRPORT US HI PHTO 19.719 -155.053 11.6 19730101 20200625 912853 21504 HILO GENERAL LYMAN ARPT US HI PHTO 19.719 -155.053 11.0 19430415 19451228 912870 99999 CAPE KUMUKAHI HAWAII US 19.517 -154.817 15.0 19940710 20010506 912890 99999 HALEMAUMAU CRATER HAWAII US 19.4 -155.283 1112.0 19730104 20020107 912910 99999 MAUNA LOA STRIP ROAD HAWAII US 19.467 -155.35 1645.0 20010902 20010902 912930 99999 SOUTH KONA HAWAII HAWAII US PHWH 19.1 -155.75 808.0 19731108 19831231 912940 99999 SOUTH POINT HAWAII US 19.0 -155.667 290.0 19930715 20020804 912944 99999 PAHALA-ON-HAWAII US HI 19.2 -155.483 -999.0 19801015 19831201 913140 99999 SONSOROL CAROLINE IS. PS 5.332999999999999 132.38299999999998 3.0 19730101 20140121 913150 99999 EAURIPIK CAROLINE IS. FM 6.683 143.083 3.0 19940227 20020404 913170 99999 WOLEAI ATOLL CAROLINE IS. FM 7.382999999999999 143.917 4.0 19730101 20200624 913200 99999 ONOUN FM 8.583 149.65 0.0 20070611 20200608 913240 99999 PULUWAT ATOLL AWS CAROLINE IS. FM 7.35 149.2 2.0 19730101 20200228 913250 99999 PULUSUK CAROLINE IS. FM 6.7 149.3 3.0 19921224 20150813 913280 99999 ULUI ATOLL (AMOS) FM 8.583 149.65 2.0 19920401 19981005 913290 99999 FANANU ISLAND FM 8.55 151.9 1.0 20040715 20200624 913340 40505 CHUUK INTERNATIONAL AIRPORT FM FM PTKK 7.4670000000000005 151.85 1.5 19451231 20200624 913360 99999 LOSAP ISLAND FM 6.882999999999999 152.717 2.0 20040714 20200624 913380 99999 SATAWAN ATOLL AWS CAROLINE ISLANDS FM 5.332999999999999 153.733 2.0 19730101 20011007 913390 99999 LUKUNOR ATOLL CAROLINE ISLANDS FM 5.5 153.817 3.0 19820101 20200624 913430 99999 OROLUK ATOLL AWS CAROLINE ISLANDS FM 7.632999999999999 155.167 3.0 19730101 20200124 913480 99999 POHNPEI INTL FM PTTP 6.985 158.209 3.0 20050101 20200624 913481 99999 POHNPEI WEATHER CENTER FM 6.9670000000000005 158.217 39.0 20040713 20200624 913500 99999 MWOAKILLO CAROLINE IS FM 6.667000000000001 159.783 2.0 20040715 20200624 913520 99999 PINGELAP ATOLL AWS CAROLINE IS. FM 6.2170000000000005 160.7 4.0 19920904 20050108 913530 99999 PINGELAP ATOLL CAROLINE IS. FM 6.2170000000000005 160.7 4.0 19730101 20200624 913540 99999 UJELANG CAROLINE IS. RM 9.767000000000001 160.983 3.0 19960126 20180427 913550 99999 KOSRAE ATOLL AWS CAROLINE IS. FM PTTK 5.35 162.95 2.0 19920301 20040307 913555 40509 POHNPEI INTERNATIONAL AIRPORT FM FM PTPN 6.983 158.2 2.7 20190627 20200624 913560 00493 KOSRAE FM FM PTSA 5.354 162.953 2.6 20050101 20200624 913560 99999 KOSRAE FM PTSA 5.357 162.958 3.4 19510221 20180520 913640 99999 ROI-NAMUR RM 9.4 167.467 4.0 20161204 20161204 913650 99999 UJAE ATOLL AWS MARSHALL IS. RM 8.9 165.733 2.0 19910325 20020820 913660 40604 BUCHOLZ AAF KWAJALEIN KMR ATOL AP RM MH PKWA 8.732999999999999 167.733 2.1 19440214 20200624 913670 99999 AILINGLAPALAP ATOLL MARSHALL IS. RM 7.267 168.833 3.0 19730101 20200624 913680 99999 AILINGLAPLAP MARSHALL IS. RM 7.267 168.833 2.0 19930209 20150930 913690 99999 JALUIT ATOLL MARSHALL IS. RM 5.917000000000001 169.65 3.0 19730111 20200623 913691 99999 MAJURO ATOLL WEATHER CENTER RM PKMR 7.082999999999999 171.13299999999998 4.0 20040713 20200624 913710 99999 WOTJE ATOLL MARSHALL IS. RM 9.467 170.25 3.0 19730102 20200619 913740 99999 MALEOLAP ATOLL AWS MARSHALL IS. RM 8.9 170.85 3.0 19960812 20040403 913750 99999 MAJURA MARSHALL IS. RM 7.117000000000001 171.35 0.0 19930116 20121206 913760 00492 MARSHALL ISLANDS INTERNATIONAL AIRPORT RM MH PKMJ 7.065 171.27200000000002 1.8 20050101 20200624 913770 99999 MILI ATOLL AWS MARSHALL IS. RM 6.1 171.4 2.0 19910501 19980831 913780 99999 MILI ATOLL MARSHALL IS. RM 6.082999999999999 171.733 4.0 19730101 20200622 913850 99999 PALMYRA ISLAND LQ PLPA 5.882999999999999 -162.05 2.0 19450201 19990804 914080 40309 BABELTHUAP/KOROR AIR PS PC PTKR 7.332999999999999 134.483 33.2 19470630 20091231 914080 40310 BABELTHUAP/KOROR AIRPORT PS PW PTRO 7.367000000000001 134.54399999999998 53.6 20050101 20200625 914081 40309 WEST CAROLINE ISLANDS PACIFIC PS PW PTKR 7.332999999999999 134.483 32.2 20110101 20180731 914081 99999 KOROR PALAU / NWS PS PTKR 7.33 134.483 30.0 20050101 20101231 914100 99999 TOBI ISLAND CAROLINE IS. PS 3.017 131.183 5.0 19730124 20190721 914110 99999 NGULU CAROLINE IS. FM 8.3 137.483 3.0 19930214 19990705 914130 40308 YAP INTERNATIONAL AIRPORT FM FM PTYA 9.482999999999999 138.083 13.4 19480902 20200624 914240 99999 MIDDLE PT(RESEARCH) AS -12.567 131.3 10.0 19961123 20021009 914250 99999 NUKUORO ATOLL CAROLINE IS. FM 3.85 155.017 4.0 19730102 20200624 914340 99999 KAPINGAMARANGI ATOLL CAROLINE IS. FM 1.083 154.767 3.0 19580401 20200624 914420 99999 EBON ATOLL AWS MARSHALL IS. RM 4.6 168.683 3.0 19730130 19980831 914870 99999 FANNING ISLAND KR PLFA 3.85 -159.36700000000002 5.0 19430421 20150621 914900 99999 CHRISTMAS ISLAND KR PLCH 1.986 -157.35 1.5 19411103 20200624 914920 99999 CHRISTMAS ISLAND KT 2.0 -157.4 3.0 20010630 20181104 915020 99999 TARO ISLAND BP -6.7 156.38299999999998 3.0 19751201 20200624 915030 99999 MUNDA BP AGGM -8.328 157.263 3.0 19431130 20200624 915070 99999 AUKI BP -8.783 160.733 11.0 19730101 20200624 915170 99999 HONIARA BP -9.417 159.967 56.0 19491115 20200624 915190 99999 HONIARA/NTF/AWS BP -9.43 159.97 0.0 20050419 20111128 915200 99999 HONIARA INTL BP AGGH -9.427999999999999 160.055 8.5 19430316 20200624 915270 99999 KIRA KIRA BP -10.417 161.917 3.0 19730102 20080127 915300 99999 NAURU NR ANAU -0.5 166.917 6.0 19510101 20091214 915310 99999 NAURU NR -0.531 166.917 0.0 19980301 20130724 915320 99999 NAURU ARC-2 NR -0.517 166.917 7.0 20030210 20130917 915330 99999 BANABA KR -0.9 169.533 66.0 19730101 20151009 915410 99999 SANTA CRUZ ISLAND BP AGGL -10.7 165.8 24.0 19730101 20200624 915500 99999 LINUA AIRPORT AWS (TORRES IS.) NH -13.317 166.61700000000002 5.0 19910701 20191111 915510 99999 SOLA/VANUA LAVA ISL NH NVSC -13.85 167.55 18.0 19481201 20200624 915515 99999 LONGANA AIRPORT NH NVSG -15.3 167.967 51.0 20100901 20200603 915540 99999 SANTO PEKOA INTL NH NVSS -15.501 167.22299999999998 56.1 19730101 20200624 915550 99999 LAMAP/MALEKOULA ISL NH NVSL -16.417 167.8 26.0 19730101 20200405 915570 99999 PORT VILA BAUERFIELD NH NVVV -17.699 168.32 21.3 19850701 20200624 915580 99999 PORT VILA/BAUERFLD NH NVVV -17.75 168.3 18.0 19470831 19900112 915590 99999 POINT VITA/NTF/AWS NH -17.757 168.3 0.0 20050419 20120514 915600 99999 LENAKEL NH NVVK -19.5 169.233 70.0 19990623 19990725 915620 99999 ERROMANGO ISLAND NH -18.783 168.817 198.0 19480501 20200428 915650 99999 TANNA NH NVVW -19.455 169.22400000000002 5.8 19730101 20200624 915680 99999 ANEITYUM NH -20.233 169.767 7.0 19480801 20200624 915700 99999 ILE SURPRISE NC -18.483 163.083 5.0 19730101 20200624 915710 99999 TIEBAGHI RADAR NC -20.46 164.215 595.0 20160112 20181128 915730 99999 ILE ART (BELEP) NC -19.717 163.65 84.0 20010915 20200611 915740 99999 ILE LOOP (CHESTERFIELD) NC -19.967 158.483 4.0 19730812 20200624 915770 99999 KOUMAC NC NWWK -20.546 164.25599999999997 12.8 19430331 20200601 915790 99999 OUVEA NC NWWV -20.641 166.57299999999998 7.0 19730101 20200624 915820 99999 LIFOU NC NWWL -20.775 167.24 28.0 19730101 20200305 915830 99999 POINDIMIE (NLLE-CALEDONIE) NC -20.933000000000003 165.317 13.0 19730101 20200127 915870 99999 MARE NC NWWR -21.482 168.03799999999998 43.0 19730101 20200617 915900 99999 LA TONTOUTA NC NWWW -22.015 166.213 15.8 19421231 20200624 915915 99999 MAGENTA NC NWWM -22.258000000000003 166.47299999999998 3.0 20060710 20101001 915920 99999 NOUMEA NC NWWN -22.267 166.45 72.0 19450831 20200514 915925 99999 TOUHO NC NWWU -20.79 165.25900000000001 3.0 20061010 20200618 915960 99999 ILE DES PINS NC NWWE -22.589000000000002 167.456 96.0 19730101 20200624 915980 99999 MATTHEW (ILOT) NC -22.333000000000002 171.333 27.0 19800301 20200302 916010 99999 BUTARITARI ATOLL KR NGTU 3.033 172.783 1.0 19431207 20200624 916020 99999 TARAWA / BETIO KR NGTT -0.883 169.533 3.0 20040817 20200527 916090 99999 TARAWA/BONRIKI AI KR 1.35 172.917 4.0 20040716 20040716 916100 99999 BONRIKI INTL KR NGTA 1.382 173.14700000000002 2.7 19440227 20200624 916110 99999 TARAWA TIDE AWS KR 1.35 172.933 -999.9 19971001 20110928 916120 99999 BONRIKI AIRPORT KR 1.383 173.15 2.0 20010915 20200624 916230 99999 BERU ISLAND KR NGBR -1.35 176.0 3.0 19730101 20200624 916290 99999 ARORAE ISLAND KR NGTR -2.667 176.833 7.0 19730101 20200624 916310 99999 NANUMEA ISLAND TV NGFO -5.667000000000001 176.13299999999998 3.0 19431112 20200624 916360 99999 NUI TV -7.233 177.15 2.0 19730102 20200624 916420 99999 FUNAFUTI TV -8.5 179.217 -999.9 19971001 20171010 916430 80705 FUNAFUTI INTL ARPT TV NGFU -8.517000000000001 179.217 2.0 19430720 20200624 916430 99999 FUNAFUTI INTL ARPT TV NGFU -8.517000000000001 179.217 2.0 20000101 20041231 916440 99999 FUNAFUTI TV -8.517000000000001 179.233 0.0 19940301 20020426 916480 99999 NIULAKITA TV -10.75 179.5 3.0 19730101 20200624 916500 99999 ROTUMA ISLAND FJ NFNR -12.5 177.05 26.0 19730101 20200624 916520 99999 UDU POINT AWS FJ -16.133 -179.983 63.0 19730101 20200624 916560 99999 LABASA AWS FJ -16.433 179.417 2.0 20040713 20200509 916570 99999 LABASA FJ NFNL -16.467 179.34 15.2 20020909 20200520 916590 99999 NABOUWALU FJ -17.0 178.7 36.0 19730101 20200624 916600 99999 YASAWA-I-RARA AWS FJ -16.7 177.583 50.0 19430731 20200624 916630 99999 SAVUSAVU / AIRPORT FJ NFNS -16.817 179.35 4.0 20030514 20200508 916650 99999 MATEI FJ NFNM -16.683 -179.86700000000002 21.0 20020909 20200526 916690 99999 RAKIRAKI AWS FJ -17.35 178.217 15.0 20010829 20200624 916700 99999 VIWA AWS FJ -17.15 176.9 5.0 19801001 20200624 916760 99999 VANUA BALAVU AWS FJ -17.233 -178.95 52.0 19851209 20200624 916780 99999 LEVUKA FJ -17.683 178.833 3.0 19730101 20030510 916790 99999 LAUTOKA QUEENS WHARF FJ -17.6 177.45 0.0 19980301 20110616 916800 99999 NADI INTL FJ NFFN -17.755 177.44299999999998 18.0 19420413 20200624 916820 99999 SIGATOKA AWS FJ -18.15 177.417 8.0 20010808 20200624 916830 99999 NAUSORI INTL FJ NFNA -18.043 178.55900000000003 5.2 19730101 20200624 916890 99999 SUVA KINGS WHARF FJ -18.133 178.433 0.0 20010706 20120216 916900 99999 LAUTHALA FJ NFLB -18.15 178.45 6.0 19800403 20200615 916910 99999 LAKEMBA ISLAND FJ NFNK -18.233 -178.8 3.0 19730101 20200624 916930 99999 VUNISEA FJ NFKD -19.05 178.167 33.0 19730101 20200624 916970 99999 MATUKU AWS FJ -19.133 179.75 5.0 19730101 20200624 916990 99999 ONO-I-LAU AWS FJ -20.666999999999998 -178.717 28.0 19730101 20200624 917000 99999 CANTON ISLAND CT PCIS -2.767 -171.717 3.0 19420502 19790711 917001 99999 CANTON ISL/TOPHAM CT -2.767 -171.717 3.0 19750414 19750414 917010 99999 KANTON ISLAND KR -2.767 -171.717 2.0 19840101 20200622 917200 99999 ATAFU TL -8.533 -172.517 3.0 19730101 19990928 917230 99999 NUKUNONU AWS TL -9.183 -171.88299999999998 3.0 19901201 20200619 917240 99999 NUKUNONO TL -9.2 -171.917 3.0 19730101 19970204 917270 99999 FENUAFALA/FAKAOFO TL -9.383 -171.267 4.0 19810828 20020929 917280 99999 FAKAOFO ATOLL TL -9.383 -171.25 3.0 19730101 19820516 917350 99999 LE PIU TAI WS -13.45 -172.4 121.0 20120501 20200529 917360 99999 MAOTA INT WS -13.75 -172.25 23.0 20120501 20200511 917370 99999 MT TALU WS -13.533 -172.717 236.0 20130710 20200220 917380 99999 FALEOLO INT EAST WS -13.833 -172.0 10.0 20120501 20200518 917390 99999 FALEOLO INT WEST WS -13.833 -172.017 10.0 20120501 20200515 917400 99999 MANONO WS -13.85 -172.11700000000002 46.0 20140711 20200529 917410 99999 LUFI-LUFI WS -13.883 -171.6 48.0 20120501 20200610 917420 99999 TOGITOGIGA WS -14.033 -171.767 4.0 20120501 20200610 917430 99999 LE MAFA WS -13.95 -171.6 292.0 20120501 20190127 917530 99999 WALLIS WF NLWW -13.238 -176.199 24.1 19430809 20200624 917540 99999 FUTUNA ISL/MAOPOOPO WF NLWF -14.317 -178.11700000000002 36.0 19730101 20200417 917550 99999 AVATA WS -13.482999999999999 -172.767 200.0 19940601 20010102 917560 99999 APIA WHARF WS -13.817 -171.75 -999.9 19980301 20110823 917570 99999 AVAVO WS -13.6 -172.217 11.0 19940601 20171209 917580 99999 FALEOLO ARPT WS -13.817 -171.983 18.0 19940601 20010102 917590 99999 FALEOLO INTL WS NSFA -13.83 -172.00799999999998 17.7 19800701 20200624 917600 99999 ASAU WS -13.5 -172.63299999999998 4.0 19730612 20170315 917620 99999 APIA/UPOLU ISLAND WS NSAP -13.8 -171.783 2.0 19730101 20200624 917630 99999 CAPE TAPAGA WS -14.05 -171.45 46.0 19940902 20010102 917640 99999 CAPE TAPUTAPU AWS AMERICAN SAMOA * AQ -14.333 -170.833 -999.9 19940902 20020914 917650 61705 TAFUNA/PAGO PAGO INTERNATIONAL AP AQ AS NSTU -14.331 -170.71400000000003 3.7 19450801 20200624 917660 99999 CAPE MATATULA AWS AMERICAN SAMOA * AQ -14.317 -170.567 -999.9 19940905 20010724 917680 99999 TA'U AWS AMERICAN SAMOA * AQ -14.183 -169.5 -999.9 19940902 20170317 917720 99999 NIUAFOOU TN -15.567 -175.61700000000002 61.0 19750618 20200624 917760 99999 KEPPEL TN -15.95 -173.767 3.0 19730101 20200624 917790 99999 LUPEPAU'U TN -18.583 -173.967 70.0 19950401 20200624 917800 99999 VAVAU TN -18.65 -173.983 10.0 19730101 19951003 917830 99999 VAVAU INTL TN NFTV -18.585 -173.96200000000002 71.9 20040912 20200624 917840 99999 HAAPAI TN NFTL -19.777 -174.34099999999998 9.4 19730101 20200624 917850 99999 HA'AFEVA TN -19.95 -174.7 4.0 19860601 20030701 917860 99999 NOMUKA TN -20.25 -174.8 36.0 19861203 20030319 917880 99999 NUKUALOFA TN NFTN -21.133000000000003 -175.183 2.0 19430101 19800903 917890 99999 NUKU'ALOFA TN -21.133000000000003 -175.183 -999.9 19971001 20170923 917920 00487 FUA AMOTU TONGA FJ NFTF -21.23 -175.15 38.1 20050101 20200624 917920 99999 FUA AMOTU INTL TN NFTF -21.241 -175.15 38.4 19800301 20180423 918000 99999 PENRHYN ISLAND CW -9.017000000000001 -158.067 2.0 19430801 19960809 918010 99999 PENRHYN CW -9.033 -158.05 1.0 19990508 20100921 918020 99999 PENRHYN AWS CW -9.033 -158.05 1.0 19970201 20200610 918040 99999 RAKAHANGA ATOLL CW -10.05 -161.1 5.0 19730101 19960909 918080 99999 MANIHIKI CW -10.4 -161.05 4.0 19730101 19860224 918090 99999 MANIHIKI (HUMPHREY ISLAND) CW NCMH -10.377 -161.002 1.8 19970401 20200624 918110 99999 PUKAPUKA ARPT CW NCPK -10.915 -165.83900000000003 4.6 19730101 20200624 918120 99999 PUKAPUKA ARPT CW NCPK -10.915 -165.83900000000003 4.6 20010701 20181214 918190 99999 SUWARROW CW -13.232999999999999 -163.083 3.0 19901201 19941116 918220 99999 ALOFI NE -19.067 -169.917 22.0 19730101 20200624 918240 99999 HANAN AIRPORT NE -19.083 -169.933 59.0 20010915 20180424 918260 99999 PALMERSTON * CW -18.067 -163.183 4.0 19730101 19960913 918300 99999 AITUTAKI CW NCAI -18.831 -159.764 4.3 19430801 20200624 918310 99999 AITUTAKI AWS CW -18.833 -159.767 5.0 19970201 20200624 918400 99999 MAUKE ISLAND CW -20.133 -157.35 9.0 19730101 19961216 918410 99999 MAUKE AWS CW -20.167 -157.35 25.0 19970201 20180906 918430 99999 RAROTONGA INTL CW NCRG -21.203000000000003 -159.806 5.8 19730101 20200624 918440 99999 RAROTONGA CW -21.2 -159.783 -999.9 19971001 20180320 918470 99999 MANGAIA ISLAND CW -21.916999999999998 -157.95 15.0 19851201 19961016 918480 99999 MANGAIA CW NCMG -21.896 -157.907 14.0 19970201 20200624 919010 99999 JARVIS ISLAND DQ -0.38299999999999995 -160.017 2.0 20020916 20020916 919020 99999 MALDEN ISLAND (NORPAX) KR -4.05 -155.0 2.0 19620320 19811226 919030 99999 MALDEN ISLAND (UNIV. OF HAWAII) KR -4.05 -155.0 2.0 19740907 19820609 919120 99999 20020602 20020602 919200 99999 TAIOHOE FP -8.917 -140.1 12.0 19740730 19740825 919250 99999 HIVA-OA FP -9.8 -139.033 53.0 19730101 20200624 919280 99999 PUKA-PUKA ATOLL FP NTGP -14.8 -138.817 2.0 19730101 19870610 919290 99999 BORA-BORA FP -16.433 -151.75 3.0 19980301 20200624 919300 99999 BORA BORA FP NTTB -16.444000000000003 -151.751 3.0 19430804 20170112 919310 99999 MOPELIA FP -16.767 -153.95 2.0 19730101 19900728 919360 99999 TAIARAPU-EST FP -17.75 -149.167 2.0 20170510 20200513 919380 99999 TAHITI FAAA FP NTAA -17.554000000000002 -149.607 1.5 19730101 20200624 919410 99999 RANGIROA FP NTTG -14.954 -147.661 3.0 19801001 20110821 919430 99999 TAKAROA FP -14.482999999999999 -145.033 3.0 19730101 20200624 919440 99999 HAO FP NTTO -18.075 -140.946 3.0 19730101 20200624 919450 99999 HEREHERETUE FP -19.9 -144.94899999999998 3.0 19730101 20180304 919480 99999 MANGAREVA FP -23.133000000000003 -134.967 89.0 19730101 20200624 919483 99999 TOTEGEGIE FP NTGJ -23.08 -134.89 2.1 20100427 20100427 919500 99999 RURUTU ISLAND FP -22.433000000000003 -151.36700000000002 3.0 19771116 19960714 919510 99999 RIMATARA FP -22.65 -152.783 4.0 19740801 19830730 919520 99999 MUROROA ATOLL (MIL) FP NTTX -21.816999999999997 -138.8 3.0 19741008 19980520 919530 99999 MARUTEA PF FP -21.483 -135.45 3.0 19740902 20011009 919540 99999 TUBUAI FP NTAT -23.365 -149.524 2.1 19730101 20200624 919550 99999 MATUREI VAVAO FP -21.45 -136.417 2.0 19741017 19820201 919580 99999 RAPA FP -27.616999999999997 -144.333 2.0 19730101 20200624 919600 99999 PITCAIRN PC -25.066999999999997 -130.1 265.0 19730101 19940311 919610 99999 PITCAIRN ISLAND AWS A PC -25.066999999999997 -130.1 265.0 20010822 20100305 919620 99999 PITCAIRN ISLAND AWS B PC -25.066999999999997 -130.1 265.0 20040406 20191127 919640 99999 PITCAIRN ISLAND AWS PC -25.066999999999997 -130.1 265.0 20050208 20200312 920010 99999 KIUNGA W.O. PP -6.082999999999999 141.183 35.0 19970101 20200218 920030 99999 DARU W.O. PP -9.083 143.2 9.0 19970101 20111110 920040 99999 WEWAK INTL PP AYWK -3.5839999999999996 143.66899999999998 5.8 19970101 20190516 920050 99999 MT HAGEN ATS PP -5.832999999999999 144.3 1631.0 20090806 20170321 920060 99999 KOINAMBE PP -5.483 144.6 884.0 20011001 20121031 920100 99999 GOROKA ATS PP -6.067 145.38299999999998 1587.0 20010915 20200610 920140 99999 MADANG PP AYMD -5.207000000000001 145.789 6.1 19970101 20200624 920145 99999 MOUNT HAGEN PP AYMH -5.827000000000001 144.296 1642.3 20010201 20200624 920147 99999 GOROKA PP AYGA -6.082000000000001 145.392 1610.0 20000206 20010312 920148 99999 MOMOTE PP AYMO -2.062 147.424 3.7 20040713 20200624 920220 99999 VANIMO PP -2.7 141.317 3.0 20010915 20200624 920350 99999 PORT MORESBY JACKSONS INTL PP AYPY -9.443 147.22 44.5 19970101 20200624 920360 99999 LOMBRUM MANUS ISLAND PP -2.417 147.38299999999998 1.0 20010911 20130918 920400 99999 BIPI PP -2.017 146.983 4.0 20040714 20100412 920440 99999 MOMOTE W.O. PP -2.05 147.417 4.0 19970101 20200528 920470 99999 NADZAB PP AYNZ -6.57 146.726 72.8 19970101 20200624 920510 99999 ERAVE PP -6.65 143.88299999999998 1036.0 20010917 20030110 920680 99999 AGAUN PP -9.967 149.38299999999998 1005.0 20010916 20130222 920690 99999 KURADA PP -10.05 151.0 3.0 20010915 20090306 920700 99999 SIDEIA PP -10.617 150.667 3.0 20010917 20040505 920720 99999 HOSKINS W.O. PP -5.4670000000000005 150.4 8.0 20010916 20150107 920750 99999 DAMI PP -5.483 150.4 5.0 20070914 20070914 920760 99999 KAVIENG W.O. PP -2.5669999999999997 150.817 4.0 19970101 20200624 920770 99999 GURNEY W.O. PP -10.317 150.333 23.0 20010915 20200624 920800 99999 SALAMO PP -9.667 150.783 15.0 20040505 20061108 920820 99999 NUGURIA PP -3.3169999999999997 154.667 3.0 20010915 20080531 920840 99999 FENI PP -4.0169999999999995 153.667 2.0 20030331 20080520 920870 99999 MISIMA W.O. PP -10.683 152.833 7.0 19970101 20200330 920900 99999 JINJO PP -11.317 154.233 10.0 19990823 20040730 920920 99999 NIMOWA PP -11.3 153.267 3.0 20010915 20090317 921000 99999 TOKUA W.O. PP -4.333 152.36700000000002 13.0 20010915 20200624 921030 99999 BROOSE ISL AWS AUT& AS -14.117 123.53299999999999 5.0 19990922 20010716 921200 99999 DARWIN (CIV/MIL) AS -12.433 130.86700000000002 29.0 19970115 19970204 921240 99999 20020927 20020927 930030 99999 CAPE REINGA NZ -34.433 172.683 189.0 19490101 19900326 930040 99999 CAPE REINGA AWS NZ -34.433 172.683 216.0 19840401 20200624 930110 99999 KAITAIA AERODROME NZ NZKT -35.067 173.283 82.0 19490101 19860614 930120 99999 KAITAIA OBSERVATORY NZ -35.133 173.267 85.0 19850501 19950929 930210 99999 KERIKERI AERO AWS NZ -35.25 173.9 151.0 20200506 20200624 930230 99999 PURERUA NZ -35.117 174.017 84.0 19840215 20200506 930250 99999 CAPE BRETT NZ -35.167 174.333 41.0 19490101 19541231 930570 99999 WHANGAREI AERODROME NZ -35.766999999999996 174.36700000000002 38.0 20200506 20200624 930640 99999 TINOPAI NZ -36.233000000000004 174.25 20.0 19490101 19500731 930690 99999 MOKOHINAU AWS NZ -35.9 175.1 60.0 19940901 20200624 930750 99999 LITTLE BARRIER ISL NZ -36.217 175.05 2.0 20011110 20021203 931100 99999 AUCKLAND AERO AWS NZ -37.0 174.8 7.0 19940801 20200624 931120 99999 WHENUAPAI NZ NZWP -36.788000000000004 174.63 30.5 19591231 20200605 931150 99999 AUCKLAND NZ -36.85 174.767 44.0 19490101 19570930 931190 99999 AUCKLAND INTL NZ NZAA -37.008 174.792 7.0 19651231 20200624 931290 99999 WHITIANGA AERODROME AWS NZ -36.867 175.667 6.0 20060223 20200624 931360 99999 ARDMORE NZ -37.033 174.967 42.0 20020628 20030823 931670 99999 RAGLAN NZ -37.8 174.85 12.0 20041212 20041212 931840 99999 TAURANGA HARBOUR NZ -37.65 176.183 4.0 19730101 19950529 931850 99999 TAURANGA AERODROME NZ -37.667 176.2 5.0 19490101 20030214 931860 99999 TAURANGA NZ NZTG -37.672 176.196 4.0 19900601 20200624 931960 99999 HICKS BAY AWS NZ -37.55 178.3 46.0 19910725 20200624 931980 99999 EAST CAPE (MAN) NZ -37.683 178.55 17.0 19490101 20021108 931990 99999 EAST CAPE (AUT) NZ -37.7 178.55 22.0 19800404 19900817 932010 99999 PORT TAHAROA NZ -38.167 174.7 28.0 20170918 20200624 932450 99999 TAUPO AWS NZ -38.733000000000004 176.067 401.0 19960901 20200624 932460 99999 ROTORUA NZ NZRO -38.109 176.317 285.0 20020707 20020707 932910 99999 GISBORNE AERODROME NZ -38.667 177.983 8.0 19490101 19940530 932920 99999 GISBORNE NZ NZGS -38.663000000000004 177.97799999999998 4.6 19811101 20200624 933050 99999 MAUI A PLATFORM NZ -39.533 173.433 36.6 19780802 20110406 933080 99999 NEW PLYMOUTH AERODR NZ -39.016999999999996 174.183 36.0 19490101 19930403 933090 99999 NEW PLYMOUTH AWS NZ -39.016999999999996 174.183 32.0 19830201 20200624 933210 99999 WAIPIPI IRONSANDS NZ -39.817 174.6 27.0 20030630 20030630 933340 99999 WAIOURU AWS NZ -39.467 175.683 823.0 19790701 20120201 933360 99999 WAIOURU AERODROME NZ -39.45 175.667 823.0 19990421 20020701 933370 99999 WAIOURU NZ -39.467 175.683 823.0 19730101 19890222 933390 99999 WAIOURU AIRSTRIP NZ -39.433 175.65 819.0 20110719 20200624 933469 99999 LONGREACHAMO. AS -23.43 144.28 193.0 19570426 19821031 933720 99999 NAPIER/AIRPORT NZ -39.467 176.86700000000002 5.0 19730101 19930905 933730 99999 NAPIER AERODROME AWS NZ -39.467 176.86700000000002 3.0 19920301 20200624 933740 99999 NAPIER HARBOUR NZ -39.483000000000004 176.917 15.0 19490101 19940321 933930 99999 MAHIA AWS NZ -39.117 177.95 136.0 20190808 20200624 934010 99999 OHAKEA NZ NZOH -40.205999999999996 175.388 50.0 19490101 20200620 934040 99999 PALMERSTON NORTH AWS NZ -40.317 175.6 39.0 19920901 20200624 934170 99999 PARAPARAUMU NZ NZPP -40.905 174.989 6.7 19870901 19950531 934200 99999 PARAPARAUMU AWS NZ -40.9 174.983 7.0 19950801 20200624 934310 99999 OUTLOOK HILL RADAR NZ -41.317 174.65 548.0 20040311 20040311 934340 99999 WELLINGTON NZ -41.283 174.767 127.0 19490101 19890227 934360 00488 WELLINGTON INTL NZ NZWN -41.3 174.8 7.0 20050101 20200624 934360 99999 WELLINGTON INTL NZ NZWN -41.327 174.805 12.5 19591231 20180515 934390 99999 WELLINGTON AERO AWS NZ -41.333 174.8 12.0 19950701 20200624 934410 99999 TAKAPAU PLAINS AWS NZ -40.033 176.267 330.0 20190815 20200624 934710 99999 EAST TARATAHI NZ -41.083 175.61700000000002 93.0 19780215 20020115 934790 99999 NGAWI NZ -41.583 175.233 8.0 20190807 20200624 934980 99999 CASTLEPOINT NZ -40.9 176.2 120.0 19950606 20200624 935150 99999 WESTPORT AERODROME NZ -41.733000000000004 171.567 5.0 19911211 20200624 935160 99999 WESTPORT HARBOUR NZ -41.75 171.6 4.0 19490101 19950530 935260 99999 FAREWELL SPIT NZ -40.55 173.0 3.0 19490101 19841102 935270 99999 FAREWELL SPIT AWS NZ -40.55 173.0 3.0 19790701 20200624 935450 99999 NELSON AERODROME NZ -41.3 173.217 7.0 19490101 19940427 935460 99999 NELSON AERODROME AWS NZ NZNS -41.3 173.2 6.0 19801015 20200624 935570 99999 MOLESWORTH NZ -42.083 173.25 883.0 20020401 20020401 935610 99999 STEPHENS ISLAND NZ -40.667 174.0 187.0 20030111 20030111 935620 99999 STEPHENS ISLAND AWS NZ -40.65 173.983 180.0 20190805 20200624 935730 99999 BELVUE BAY NZ -41.283 173.817 12.0 20050127 20050127 935740 99999 PICTON NZ -41.283 174.0 5.0 19771003 19780502 935770 99999 BLENHEIM AERODROME NZ -41.516999999999996 173.86700000000002 32.0 20020322 20020322 935970 99999 CAPE CAMPBELL AWS NZ -41.717 174.267 32.0 19870301 20200624 935980 99999 CAPE CAMPBELL NZ -41.733000000000004 174.2 5.0 19490101 19861018 936140 99999 HOKITIKA AERODROME NZ -42.717 170.983 44.0 19490101 20200624 936150 99999 HOKITIKA AERODROME AWS NZ -42.717 170.983 40.0 19801015 20081231 936580 99999 CULVERDEN AIRFIELD NZ -42.766999999999996 172.88299999999998 174.0 20020315 20020315 936780 99999 KAIKOURA NZ -42.417 173.7 101.0 19970101 20200623 937080 99999 HAAST NZ NZHT -43.867 169.0 4.0 19491002 19790706 937090 99999 HAAST AWS NZ -43.867 169.0 5.0 19790606 20200624 937130 99999 SOUTH ISLAND NZ -47.98 168.62 0.0 20050507 20120103 937210 99999 MILFORD SOUNDN AWS NZ -44.667 167.917 6.0 20190807 20200624 937380 99999 MT COOK AERODROME AWS NZ -43.766999999999996 170.13299999999998 656.2 20190809 20200624 937470 99999 TARA HILLS NZ -44.516999999999996 169.9 488.0 20170828 20200624 937510 99999 AVIEMORE NZ -44.667 170.35 241.0 19780303 19780805 937550 99999 FAIRLIE NZ -44.1 170.817 300.0 19880104 19890428 937610 99999 HORORATA NZ -43.516999999999996 171.933 196.0 20011027 20011027 937720 99999 TIMARU AERODROME NZ -44.3 171.217 27.0 19921012 20050524 937730 99999 TIMARU AERODROME AWS NZ -44.3 171.233 27.0 19920301 20200624 937750 99999 TIMARU HARBOUR NZ -44.4 171.25 8.0 19490101 19970316 937800 99999 CHRISTCHURCH INTL NZ NZCH -43.489 172.532 37.5 19530707 20200624 937810 99999 CHRISTCHURCH AERO AWS NZ -43.483000000000004 172.517 37.0 19940801 20200624 937830 99999 WIGRAM NZ -43.55 172.55 30.0 19490101 19530706 937920 99999 LE BON BAY AWS NZ -43.733000000000004 173.11700000000002 238.0 20190807 20200624 937960 99999 OAMARU AIRPORT AWS NZ -44.967 171.083 31.0 20020531 20200624 938000 99999 SECRETARY ISLAND AWS NZ -45.217 166.88299999999998 19.0 19940901 20200624 938050 99999 PUYSEGUR POINT AWS NZ -46.15 166.6 44.0 19850109 20200624 938060 99999 PUYSEGUR PT (LGT-H) NZ -46.167 166.63299999999998 41.0 19490102 19890822 938310 99999 QUEENSTOWN AERODROME NZ -45.016999999999996 168.733 358.0 19950606 20200624 938400 99999 CENTRE ISL (LGT-H) NZ -46.467 167.85 61.0 20020809 20020809 938440 99999 INVERCARGILL NZ NZNV -46.412 168.313 1.5 19490101 19950531 938450 99999 INVERCARGILL AIRPORT AWS NZ -46.417 168.333 2.0 19890516 20200624 938630 99999 GORE NZ -46.1 168.933 70.0 19870317 20020117 938870 99999 NUGGET POINT AWS NZ -46.45 169.817 130.0 20121207 20200624 938910 99999 DUNEDIN AERODROME AWS NZ -45.917 170.183 2.0 20030330 20200624 938960 99999 TAIAROA HEAD NZ -45.766999999999996 170.733 76.0 19490101 20020901 939090 99999 SOUTH WEST CAPE AWS NZ -47.266999999999996 167.45 102.0 19910703 20200624 939290 99999 ENDERBY ISLAND AWS NZ -50.483000000000004 166.3 40.0 19920401 20200624 939440 99999 CAMPBELL ISLAND NZ -52.55 169.15 19.0 19490101 19950831 939450 99999 CAMBELL ISLAND AWS NZ -52.55 169.167 19.0 19910725 20170621 939470 99999 CAMBELL ISLAND AWS NZ -52.55 169.15 19.0 19970101 20200624 939840 99999 CHATHAM ISL (RADIO) NZ -43.95 -176.567 49.0 19730101 19861130 939850 99999 CHATHAM ISLAND AERODROME AWS NZ -43.817 -176.483 13.1 20050101 20200624 939860 99999 CHATHAM ISLANDS NZ NZCI -43.81 -176.457 13.1 19490101 19940731 939870 99999 CHATHAM ISLANDS AWS NZ -43.95 -176.567 49.0 19910725 20081231 939940 99999 RAOUL ISLAND AWS NZ -29.25 -177.933 49.5 19891114 20200624 939950 99999 949950 AS -31.533 159.083 46.0 19490101 19541231 939960 99999 949960 AS -29.05 167.933 109.0 19490101 19541231 939970 99999 RAOUL ISLAND KERMADEC ISLANDS NZ NZRN -29.25 -177.933 49.5 19490101 19981109 939980 99999 949980 AS -54.5 158.95 6.0 19520203 19760727 940010 99999 KIUNGA SOUTH PP -6.132999999999999 141.3 35.0 19940501 19970205 940020 99999 AITAPE PP -3.15 142.35 3.0 19440423 19450820 940030 99999 DARU W.O. PP -9.067 143.2 4.0 19910301 19990612 940040 99999 WEWAK W.O. PP -3.5669999999999997 143.63299999999998 5.0 19730514 19970104 940050 99999 MOUNT HAGEN PP -5.817 144.283 1631.0 20040616 20040616 940080 99999 MOREHEAD PP -8.717 141.63299999999998 31.0 20030310 20030310 940120 99999 KEREMA PP -7.95 145.767 6.0 20010915 20020929 940140 99999 MADANG W.O. PP -5.2170000000000005 145.8 4.0 19440823 19970104 940200 99999 MENYAMYA PP -7.167000000000001 146.0 1127.0 20011009 20011009 940220 99999 VANIMO I.P.PDTE. ED PP -2.7 141.317 3.0 20011029 20011029 940270 99999 LAE PP -6.733 147.0 9.0 19430930 20050127 940310 99999 LAKE KUTUBU PP -6.367000000000001 143.3 807.0 20010909 20021018 940320 99999 AIOME PP -5.117 144.75 107.0 20020417 20020417 940350 99999 PORT MORESBY W.O. PP -9.433 147.217 28.0 19421223 19970105 940440 99999 MOMOTE/MANUS ISLAND PP -2.0669999999999997 147.433 4.0 19500331 19970101 940470 99999 NADZAB W.O. PP -6.567 146.717 70.0 19880601 20010422 940481 99999 FINSCHAFEN PP -6.617000000000001 147.85 8.0 19431130 19450930 940500 99999 GIZARUM/UMBOI ISL PP -5.65 147.8 43.0 20011029 20011116 940510 99999 ERAVE PP -6.65 143.88299999999998 1036.0 20010906 20021101 940560 99999 POPONDETTA PP -8.75 148.25 91.0 19421031 19450815 940691 99999 KANDRIAN-ON-NU-BRIT PP -6.2 149.55 91.0 19431231 19440923 940760 99999 KAVIENG W.O. PP -2.5669999999999997 150.817 7.0 19750130 20020702 940820 99999 NUGURIA PP -3.3169999999999997 154.667 3.0 20020124 20020124 940830 99999 NAMATANAI PP -3.667 152.45 42.0 19740110 19740110 940850 99999 RABAUL PP -4.2 152.183 9.0 19460401 19940918 940870 99999 MISIMA W.O. PP -10.7 152.833 6.0 19730101 19970107 940890 99999 PANASESA PP -10.75 151.733 2.0 19750929 19750930 940900 99999 JINJO/ROSSEL ISLAND PP -11.317 154.233 20.0 19930201 19940328 940970 99999 KIETA PP -6.317 155.717 3.0 19741113 19750503 941000 99999 KALUMBURU AS -14.3 126.633 24.0 20010912 20200624 941010 99999 KALUMBURU MISSION AS -14.3 126.65 24.0 19570101 20050325 941020 99999 TROUGHTON ISLAND AS -13.75 126.15 8.0 19730101 20200624 941030 99999 BROWSE ISLAND AWS AS -14.117 123.53299999999999 5.0 19730101 20200624 941049 99999 MITCHELL PLATEAU AS -14.82 125.83 269.0 19820101 19821031 941050 99999 NOONAMAH AIRSTRIP AS -12.617 131.05 17.5 19750729 20200624 941060 99999 NGUKURR AIRPORT AS -14.717 134.75 14.0 20010922 20200624 941080 99999 CROKER ISLAND AIRPORT AS -11.167 132.483 15.5 20140508 20200624 941090 99999 MURGANELLA AIRSTRIP AS -11.55 132.92700000000002 11.5 20140508 20200624 941100 99999 OENPELLI AIRPORT AS -12.333 133.007 9.1 20010914 20200624 941110 99999 PORT KEATS AWS AUT AS -14.232999999999999 129.45 18.0 19730101 20020418 941160 99999 DUM IN MIRRIE AS -12.633 130.36700000000002 4.0 19970102 20200624 941170 99999 MANGO FARM AS -13.732999999999999 130.683 16.0 19810101 20151225 941180 99999 PINE CREEK COUNCIL AS -13.817 131.833 207.0 20010815 20110630 941190 99999 PIRLANGIMPI AS -11.4 130.417 19.0 19730101 20200624 941200 99999 DARWIN INTL AS YPDN -12.415 130.877 31.4 19410131 20200624 941205 99999 DARWIN (CIV/MIL) AS -12.4 130.88299999999998 30.0 19931112 19940824 941210 99999 CHANNEL POINT AS -13.167 130.11700000000002 4.0 19970101 20200623 941220 99999 CAPE FOURCROY AS -11.783 130.017 7.0 19741222 20200624 941230 99999 GUNPOINT AS -12.232999999999999 131.033 15.0 19870625 20020819 941240 99999 MIDDLE PT RESEARCH AS -12.567 131.3 10.0 19961201 19961230 941250 99999 BATCHELOR AERO AS -13.05 131.017 105.0 19941001 20200624 941270 99999 POINT STUART AS -12.232999999999999 131.88299999999998 1.0 19930101 20200221 941280 99999 DOUGLAS RIVER AS -13.833 131.183 44.0 19901024 20200624 941290 99999 CAPE DON AWS AS -11.317 131.767 20.0 19561231 20150821 941300 99999 BRADSHAW AS -14.95 130.8 76.0 20010815 20200624 941310 99999 TINDAL AS YPTN -14.520999999999999 132.378 135.0 19900904 20200624 941320 99999 KATHERINE COUNTRY CLUB AS -14.467 132.267 106.0 19421130 20190322 941325 99999 KATHERINE/TINDAL AS -14.45 132.283 109.0 19940123 19940123 941330 99999 MINJILANG AS -11.15 132.583 24.0 19611231 19910920 941340 99999 BLACK POINT (PORT ESSINGTON) AS -11.15 132.13299999999998 5.0 19900903 20200622 941350 99999 MCCLUER ISLAND AWS AS -11.05 132.983 2.0 19941001 20200624 941370 99999 JABIRU AIRPORT AS -12.667 132.9 28.0 19910203 20200624 941380 99999 OENPELLI AS -12.333 133.05 9.0 19561231 20140505 941390 99999 WARRUWI AS -11.65 133.38299999999998 20.0 19561231 20200624 941400 99999 MILINGIMBI AWS AS -12.117 134.9 16.0 19611231 20200624 941410 99999 CENTRAL ARNHEM PLATEAU AS -13.333 133.083 416.0 20040608 20200624 941420 99999 MANINGRIDA AS -12.05 134.217 16.0 19711231 20070825 941430 99999 BULMAN AWS AS -13.667 134.333 105.0 20040608 20200624 941440 99999 ROPER BAR AS -14.75 134.533 19.0 19730820 20010824 941450 99999 ROPER VALLEY AS -14.917 134.0 70.0 19970501 20021020 941460 99999 ELCHO ISLAND AS -12.033 135.567 30.0 19611231 20050228 941470 99999 CAPE WESSEL AWS AS -11.017000000000001 136.75 19.0 19730101 20200624 941480 99999 NGUKURR AS -14.732999999999999 134.733 34.0 20030330 20130128 941490 99999 ALYANGULA POLICE AS -13.85 136.417 22.0 19611231 20120620 941500 99999 GOVE AIRPORT AS YDGV -12.283 136.817 53.0 19851201 20200624 941510 99999 NORTH EAST ISLAND AS -13.65 136.933 18.0 19731024 20140827 941520 99999 BORROLOOLA AS -16.083 136.3 17.0 19941001 20200624 941530 99999 GROOTE EYLANDT AS YGTE -13.975 136.46 16.2 20010915 20200624 941700 99999 WEIPA AERO AS -12.683 141.917 19.0 19930101 20200624 941710 99999 WEIPA AS YBWP -12.679 141.925 19.2 19590101 20200624 941713 99999 WEIPA ARPT(PRIVATE) AS ABWP -12.683 141.933 19.0 19850531 19870309 941740 99999 HORN ISLAND AS YHID -10.583 142.283 5.0 19970101 20200624 941750 99999 THURSDAY ISLAND AS -10.567 142.217 8.0 19500903 20021222 941820 99999 COCONUT ISLAND AS -10.05 143.067 4.0 19880801 20200624 941830 99999 COEN AIRPORT AS -13.767000000000001 143.11700000000002 160.0 20030330 20200624 941840 99999 COEN AIRPORT AS -13.75 143.11700000000002 162.0 19700101 20030618 941850 99999 COEN CITY AS -13.95 143.2 194.0 19561231 20020423 941860 99999 LOCKHART RIVER AIRPORT AS -12.783 143.3 20.0 19700831 20200624 941870 99999 MUSGRAVE AS -14.783 143.5 82.0 19920501 20120831 941880 99999 CAPE FLATTERY AS -14.967 145.317 19.0 20040608 20200624 942000 99999 MANDORA AS -19.733 120.85 8.0 19620101 20200624 942010 99999 CYGNET BAY AS -16.45 123.0 9.0 19900201 20200624 942020 99999 BIDYADANGA AS -18.683 121.78299999999999 12.0 19570102 20200624 942030 99999 BROOME INTL AS YBRM -17.945 122.23200000000001 17.1 19390810 20200624 942040 99999 CURTIN AERO AS -17.583 123.81700000000001 78.0 19730101 20200624 942050 99999 DERBY AS YPDB -17.3 123.617 8.0 19640101 20020423 942060 99999 FITZROY CROSSING AERO AS -18.183 125.56700000000001 115.0 19900206 20200624 942070 99999 ROWLEY SHOALS AS -17.533 118.95 8.0 19730124 20200624 942080 99999 KURI BAY AS -15.482999999999999 124.51700000000001 17.0 19871207 20120128 942090 99999 FITZROY CROSSING CA AS -18.717 125.96700000000001 202.0 19730101 20031024 942100 99999 ADELE ISLAND AS -15.517000000000001 123.15 5.0 19730921 20200624 942110 99999 MOUNT ELIZABETH AS -16.417 126.1 547.0 19841101 20200624 942120 99999 HALLS CREEK AIRPORT AS -18.233 127.667 424.0 19440101 20200624 942130 99999 WARMUN AS -17.017 128.217 205.0 19620101 20200621 942140 99999 WYNDHAM AS -15.482999999999999 128.11700000000002 16.0 19730101 20150109 942150 99999 DOONGAN AS -15.383 126.31700000000001 386.0 19900206 20200624 942160 99999 KUNUNURRA AS YPKU -15.777999999999999 128.708 44.2 19900201 20200624 942170 99999 ARGYLE AERODROME AS -16.633 128.45 165.0 19941001 20200624 942180 99999 INVERWAY AS -17.85 129.63299999999998 403.0 19900204 20020513 942200 99999 TIMBER CREEK AS -15.65 130.467 23.0 19900201 20150101 942250 99999 DELAMERE WEAPONS RANGE AS -15.75 131.917 222.0 20010815 20200624 942290 99999 WAVE HILL AS -17.383 131.11700000000002 198.0 19900201 20200623 942300 99999 KIDMAN SPRINGS AS -16.117 130.95 100.0 20010915 20120814 942310 99999 LAJAMANU AS -18.333 130.63299999999998 317.0 20010915 20200624 942320 99999 VICTORIA RIVER DOWNS AS -16.4 131.017 90.0 19731231 20200624 942340 99999 DALY WATERS AWS AS -16.25 133.36700000000002 211.0 19471231 20200624 942360 99999 ELLIOTT AS -17.55 133.533 223.0 19800816 20200623 942370 99999 LARRIMAH AS -15.583 133.217 186.0 19730103 20120630 942380 99999 TENNANT CREEK AIRPORT AS YDTC -19.633 134.183 377.0 19690724 20200624 942390 99999 MCARTHUR RIVER MINE AS -16.433 136.067 41.0 19681231 20200624 942420 99999 BRUNETTE DOWNS AS -18.65 135.95 219.0 19561231 20200531 942480 99999 CENTRE ISLAND AS -15.75 136.8 13.0 19730128 20200624 942550 99999 CAMOOWEAL TOWNSHIP AS -19.917 138.11700000000002 232.0 19561231 20200624 942560 99999 MORNINGTON ISLAND AS -16.667 139.167 9.0 19641231 20081231 942570 99999 SWEERS ISLAND AS -17.117 139.6 4.0 20030330 20200623 942580 99999 WOLLOGORANG AS -17.2 137.933 61.0 19900202 20150822 942590 99999 BURKETOWN POST OFFICE AS -17.75 139.55 8.0 19561231 20090630 942600 99999 BURKETOWN AIRPORT AS -17.75 139.533 6.0 20030330 20200624 942610 99999 CENTURY MINE AS -18.75 138.7 127.0 20040608 20200624 942660 99999 NORMANTON AIRPORT AS -17.683 141.067 19.0 19471231 20181116 942670 99999 NORMANTON AS -17.667 141.083 10.0 19561231 20021013 942680 99999 KOWANYAMA AIRPORT AS -15.482999999999999 141.75 11.0 19730111 20200624 942690 99999 CROYDON TOWNSHIP AS -18.2 142.233 119.0 19611231 20140303 942700 99999 TOORAK RESEARCH STATION AS -21.033 141.8 149.0 20030330 20080912 942740 99999 GEORGETOWN AIRPORT AS -18.3 143.533 302.0 20040921 20200624 942750 99999 GEORGETOWN POST OFFICE AS -18.3 143.55 295.0 19570101 20071009 942760 99999 PALMERVILLE AS -16.0 144.067 205.0 19561231 20200624 942770 99999 MOUNT SURPRIZE AS -18.15 144.317 453.0 20011013 20020520 942830 99999 COOKTOWN MISSION AS -15.433 145.183 9.0 19421013 20040722 942840 99999 ARLINGTON REEF AS -16.717 146.11700000000002 8.0 19900201 20200624 942850 99999 LOW ISLES LIGHTHOUSE AS -16.383 145.567 4.0 19670930 20200624 942860 99999 MAREEBA AIRPORT AS -17.067 145.417 476.0 19920501 20021108 942870 99999 CAIRNS INTL AS YBCS -16.886 145.755 3.0 19421231 20200624 942875 99999 CAIRNS AIRPORT AS -16.883 145.767 7.0 19410504 19940824 942880 99999 CAIRNS RACECOURSE AS -16.95 145.75 401.0 19900201 20200624 942881 99999 ATHERTON TREATMENT AS -17.25 145.483 752.0 20050101 20071228 942890 99999 HOLMES REEF AS -16.467 147.86700000000002 8.0 19741229 20200624 942900 99999 FLINDERS REEF AS -17.717 148.45 7.0 19731101 20200624 942910 99999 INNISFAIL AS -17.517 146.033 8.0 19561231 20200624 942920 99999 CARDWELL STONEY CREEK AS -18.3 146.033 7.0 19561231 20200623 942930 99999 LIHOU REEF LIGHTHOUSE AS -17.133 152.15 9.8 20010715 20200624 942932 99999 MINGELA DOTSWOOD A AS -19.633 146.283 281.0 20050101 20050519 942940 99999 TOWNSVILLE AS YBTL -19.253 146.765 5.5 19470101 20200624 942945 99999 TOWNSVILLE(CIV/MIL) AS -19.25 146.767 6.0 19390407 19940824 942950 99999 LUCINDA POINT AWS AS -18.517 146.38299999999998 10.0 19810101 20200624 942960 99999 LIHOU REEF AS -17.117 152.0 9.0 19730101 20130214 942970 99999 CAPE CLEVELAND (LH) AS -19.183 147.0 59.0 20010815 20030106 942979 99999 CAPE CLEVELAND LIGHT HOUSE AS -19.18 147.02 57.6 19561231 19821031 942980 99999 MARION REEF AS -19.083 152.38299999999998 8.0 19730101 20200624 942990 99999 WILLIS ISLAND AS -16.288 149.965 9.0 19471231 20200624 943000 99999 CARNARVON AIRPORT AS -24.888 113.67 4.0 19450109 20200624 943020 99999 LEARMONTH AS YPLM -22.236 114.089 5.8 19750228 20200624 943025 99999 LEARMONTH (CIV/MIL) AS -22.233 114.1 6.0 19931129 19940317 943030 99999 THEVENARD ISLAND AS -21.45 115.01700000000001 6.0 19900308 20200624 943040 99999 BARROW IL (PRIVATE) AS -20.816999999999997 115.383 63.0 19780701 20040701 943050 99999 ONSLOW AS -21.633000000000003 115.117 4.0 19471231 20120719 943060 99999 MARDIE AS -21.183000000000003 115.96700000000001 12.0 19570101 20200624 943070 99999 LEGENDRE ISLAND AS -20.367 116.85 29.0 19930101 20200624 943080 99999 ROEBOURNE AERO AS -20.75 117.15 11.0 19900201 20200624 943090 99999 ROEBOURNE AS -20.783 117.15 13.0 19570101 20150110 943100 99999 BEDOUT ISLAND AS -19.583 119.1 10.0 19941001 20130224 943110 99999 PARDOO STATION AS -20.1 119.583 10.0 19900201 20200624 943120 99999 PORT HEDLAND INTL AS YPPD -20.378 118.626 10.1 19420718 20200624 943130 99999 WITTENOOM AS -22.25 118.333 464.0 19580701 20190831 943140 99999 PANNAWONICA AS -21.633000000000003 116.333 200.0 19900206 20050916 943150 99999 BALGO HILLS ASA AS -20.133 127.98299999999999 421.1 19570101 20060823 943160 99999 PARABURDOO AERO AS -23.166999999999998 117.75 424.0 19900613 20200624 943170 99999 NEWMAN AERO AS -23.416999999999998 119.8 524.0 19730101 20200624 943180 99999 EMU CREEK STATION AS -23.033 115.03299999999999 112.0 19790601 20200524 943190 99999 TELFER AERO AS -21.717 122.21700000000001 292.0 19900206 20180220 943200 99999 BALGO HILLS AS -20.15 127.98299999999999 421.0 19900207 20160219 943210 99999 WULUNGURRU AS -23.267 129.36700000000002 455.0 19900623 20200624 943220 99999 PAPUNYA AS -23.2 131.917 609.0 19750730 20141009 943230 99999 WATARRKA AS -24.3 131.55 613.0 19760202 20200623 943240 99999 YUENDUMU AS -22.25 131.8 668.0 19730212 20191107 943250 99999 ALI CURUNG AS -21.0 134.4 376.0 19900401 20150823 943260 99999 ALICE SPRINGS AS YBAS -23.807 133.90200000000002 545.3 19421216 20200624 943265 99999 ALICE SPRINGS ARPT AS -23.8 133.917 541.0 19401130 19940824 943270 99999 JERVOIS AS -22.95 136.15 329.0 19711231 20200624 943280 99999 TERRITORY GRAPE FARM AS -22.45 133.63299999999998 567.0 19970301 20200624 943290 99999 URANDANGI AS -21.6 138.3 175.0 19561231 20120816 943320 99999 MOUNT ISA AS YBMA -20.664 139.489 341.7 19661130 20200624 943330 99999 BOULIA AIRPORT AS -22.916999999999998 139.9 158.0 19561231 20200624 943340 99999 BEDOURIE POLICE STATION AS -24.366999999999997 139.467 93.0 20030330 20200623 943350 99999 CLONCURRY AIRPORT AS -20.666999999999998 140.5 187.0 19390401 20200624 943360 99999 THE MONUMENT AIRPORT AS -21.8 139.917 289.0 20030330 20200624 943370 99999 JULIA CREEK AS -20.666999999999998 141.733 124.0 19900201 20200624 943380 99999 TREPELL AIRPORT AS -21.833000000000002 140.88299999999998 267.0 20030331 20200624 943390 99999 WINTON POST OFFICE AS -22.383000000000003 143.033 184.0 19561231 20120520 943400 99999 RICHMOND POST OFFICE AS -20.733 143.13299999999998 214.0 19570918 20200331 943410 99999 RICHMOND AS YRMD -20.701999999999998 143.115 206.0 20010907 20200624 943420 99999 WINTON AIRPORT AS -22.366999999999997 143.083 193.0 20030330 20200624 943430 99999 HUGHENDEN AIRPORT AS -20.816999999999997 144.233 316.0 19711231 20200624 943440 99999 URANDANGI AERODROME AS -21.6 138.36700000000002 75.0 20140508 20200624 943450 99999 ISISFORD POST OFFICE AS -24.267 144.433 205.0 19970101 20200623 943460 99999 LONGREACH AERO AS YBLR -23.433000000000003 144.283 192.0 19420801 20200624 943500 99999 BARCALDINE POST OFFICE AS -23.55 145.283 267.0 19611231 20200624 943510 99999 BLACKALL AS -24.416999999999998 145.467 285.0 19561231 20020104 943549 99999 TWINHILLS POST OFFICE AS -21.95 146.95 198.0 19711231 19821031 943550 99999 TAMBO POST OFFICE AS -24.883000000000003 146.25 397.0 19561231 20200623 943560 99999 CHARTERS TOWERS AIRPORT AS -20.033 146.267 292.0 19420531 20200624 943580 99999 MORANBAH WATER TRE AS -22.0 148.033 233.0 19900201 20081231 943590 99999 CLERMONT POST OFFICE AS -22.816999999999997 147.63299999999998 269.0 19620101 20110912 943600 99999 COLLINSVILLE POST OFFICE AS -20.55 147.833 187.0 19561231 20200623 943620 99999 BLACKWATER AS -23.6 148.86700000000002 200.0 19960201 20080714 943630 99999 EMERALD AIRPORT AS -23.566999999999997 148.183 190.0 19561231 20200624 943640 99999 ROLLESTON AS -24.45 148.61700000000002 219.0 19900201 20081230 943650 99999 PROSERPINE WHITSUNDAY COAST AS YBPN -20.495 148.55200000000002 25.0 19890110 20200624 943660 99999 BOWEN AIRPORT AWS AS -20.02 148.21 5.9 19690101 20200624 943670 99999 MACKAY MO AS -21.116999999999997 149.217 33.0 19430515 20200624 943680 99999 HAMILTON ISLAND AIRPORT AS -20.35 148.95 59.0 19900201 20200624 943690 99999 ST LAWRENCE POST OFFICE AS -22.35 149.533 18.0 19561231 20120831 943700 99999 SAMUEL HILL AERO AS -22.733 150.65 32.0 20030330 20200624 943710 99999 CREAL REEF AS -20.533 150.38299999999998 6.0 19900201 20200624 943720 99999 MIDDLE PERCY ISLAND AS -21.666999999999998 150.267 209.0 19561231 20200624 943730 99999 YEPPOON THE ESPLANADE AS -23.133000000000003 150.75 6.0 19941001 20200624 943740 99999 ROCKHAMPTON AS YBRK -23.381999999999998 150.475 10.4 19390331 20200624 943750 99999 BARALABA POST OFFICE AS -24.183000000000003 149.817 94.0 19900201 20120819 943760 99999 THANGOOL AIRPORT AS -24.483 150.567 199.0 19631231 20200624 943770 99999 MONTO AIRPORT AS -24.9 151.1 231.0 19611231 20200623 943780 99999 RUNDLE ISLAND AS -23.533 151.283 20.0 19561231 20200624 943790 99999 GANNET CAY AS -21.967 152.467 8.0 19741203 20200624 943800 99999 GLADSTONE RADAR AS YBGL -23.85 151.267 75.0 19571201 20200624 943810 99999 GLADSTONE AIRPORT AS -23.866999999999997 151.217 17.0 19941001 20200624 943840 99999 SEVENTEEN SEVENTY AS -24.15 151.88299999999998 47.0 19641231 20200623 943860 99999 HERON ISLAND RES STN AS -23.45 151.917 6.0 19810101 20200624 943870 99999 BUNDABERG AERO AS -24.9 152.317 28.0 19561231 20200624 943880 99999 LADY ELLIOT ISLAND AS -24.116999999999997 152.717 4.0 19561231 20200624 943900 99999 SANDY CAPE LIGHTHOUSE AS -24.717 153.2 101.0 19540306 20200623 943930 99999 FREDERICK REEF AS -20.933000000000003 154.4 13.0 19730101 20200624 943940 99999 CATO ISLAND AS -23.25 155.533 7.0 19730101 20200624 943950 99999 CLERMONT AIRPORT AS -22.783 147.61700000000002 272.0 20140508 20200624 943960 99999 ROLLESTON AIRPORT AS YRLL -24.467 148.63299999999998 220.0 20100728 20200624 943970 99999 MORANBAH AS YMRB -22.058000000000003 148.078 234.7 20050101 20200624 943980 99999 BLACKWATER AS YBTR -23.603 148.80700000000002 200.3 20050101 20200624 943990 99999 LOCHINGTON AS -23.933000000000003 147.517 267.0 20101105 20200624 944010 99999 KALBARRI AS -27.717 114.167 7.0 19791101 20200624 944020 99999 DENHAM AS -25.916999999999998 113.51700000000001 10.0 19800801 20200615 944030 99999 GERALDTON AS YGEL -28.796 114.708 36.9 19410818 20200624 944040 99999 PAYNES FIND AS -29.267 117.68299999999999 340.0 19900201 20200624 944050 99999 NORTH ISLAND AS -28.3 113.6 11.0 19861003 20141114 944100 99999 GASCOYNE JUNCTION AS -25.05 115.21700000000001 145.0 19900206 20200623 944110 99999 MULLEWA AS -28.533 115.51700000000001 268.0 19900206 20200624 944140 99999 ENEABBA AS -29.816999999999997 115.26700000000001 100.0 19900206 20170323 944150 99999 CARNAMAH POST OFFICE AS -29.683000000000003 115.883 268.0 19900207 20200624 944160 99999 MORAWA AS -29.217 116.0 274.0 19900206 20050311 944170 99999 MORAWA AIRPORT AS -29.2 116.01700000000001 272.0 19980301 20200624 944220 99999 MURCHISON AS -26.883000000000003 115.95 289.0 19900206 20200624 944230 99999 BOGUS AUSTRALIAN AS 19900602 20020803 944280 99999 MOUNT MAGNET AS -28.05 117.833 426.0 19730101 20050814 944290 99999 MOUNT MAGNET AERO AS -28.116999999999997 117.833 408.0 19980301 20200624 944300 99999 MEEKATHARRA AIRPORT AS YPMR -26.614 118.537 519.0 19471231 20180220 944310 99999 ERRABIDDY AS -25.45 117.117 428.0 19900215 19910418 944390 99999 WILUNA AS -26.583000000000002 120.21700000000001 519.0 19570101 20191204 944400 99999 YEELIRRIE AS -27.283 120.1 488.0 19820101 20171130 944440 99999 BULGA DOWNS AS -28.5 119.75 440.0 19900205 20200624 944450 99999 LAVERTON/YAMARNA AS -28.15 123.65 442.0 19720101 19980322 944460 99999 MENZIES AS -29.683000000000003 121.01700000000001 427.0 19570101 19961213 944470 99999 DIEMALS AS -29.666999999999998 119.26700000000001 434.0 19900201 20020722 944480 99999 LEONORA AS -28.883000000000003 121.333 380.0 19570101 20140501 944490 99999 LAVERTON AERO AS -28.616999999999997 122.417 465.0 19920501 20200624 944500 99999 LEONORA AERO AS -28.883000000000003 121.31700000000001 370.0 20070228 20200624 944510 99999 CARNEGIE (CARNEGIE) AS -25.783 122.96700000000001 449.0 19890701 20200624 944570 99999 WARBURTON AIRFIELD AS -26.133000000000003 126.583 460.0 20010915 20200624 944580 99999 COOBER PEDY (PVT) AS -29.0 134.75 215.0 19900201 19950510 944610 99999 GILES METEOROLOGICAL OFFICE AS -25.033 128.3 599.0 19560801 20200624 944620 99999 YULARA AERO AS YDYL -25.2 130.983 492.0 19711231 20130906 944630 99999 CURTIN SPRINGS AS -25.316999999999997 131.75 491.0 19900202 20200308 944640 99999 ERNABELLA AS -26.283 132.13299999999998 676.0 19611231 19831011 944660 99999 KULGERA AS -25.85 133.3 510.0 19810430 20200511 944740 99999 PUKATJA AS -26.267 132.183 704.0 20010701 20200624 944750 99999 WITJIRA NATIONAL AS -26.066999999999997 135.25 150.0 19980301 20000426 944760 99999 OODNADATTA AIRPORT AS -27.55 135.45 117.0 19390304 20200624 944770 99999 MARLA POLICE STATION AS -27.3 133.61700000000002 324.0 19850808 20150731 944800 99999 MARREE COMPARISON AS -29.65 138.067 51.0 19561231 20150108 944810 99999 MOOMBA (PRIVATE) AS -28.1 140.2 40.0 19721118 19950729 944820 99999 BIRDSVILLE POLICE S AS -25.9 139.35 48.0 19561231 20050315 944850 99999 TIBOOBURRA POST OFFICE AS -29.433000000000003 142.0 184.0 19561231 20150109 944880 99999 WINDORAH POST OFFICE AS -25.416999999999998 142.65 129.0 19720101 20140930 944920 99999 THARGOMINDAH POST O AS -28.0 143.817 130.0 19561231 20050314 944940 99999 QUILPIE AIRPORT AS -26.616999999999997 144.25 198.0 19561231 20140328 944970 99999 WANAARING POST OFFICE AS -29.7 144.15 108.0 19920801 20200623 944980 99999 LIGHTNING RIDGE CENTRAL SCOOL AS -29.433000000000003 147.983 154.0 20010915 20200619 945000 99999 CUNNAMULLA POST OFFICE AS -28.066999999999997 145.683 197.0 19561231 20200623 945100 99999 CHARLEVILLE AS YBCV -26.413 146.263 305.7 19420630 20200624 945110 99999 INJUNE POST OFFICE AS -25.85 148.567 392.0 19900604 20200623 945130 99999 BOLLON MARY ST AS -28.033 147.483 185.0 19561231 20200623 945140 99999 MITCHELL (POST OFFICE) AS -26.483 147.967 338.0 19720101 20200623 945150 99999 ROMA AIRPORT AS -26.55 148.783 304.0 19561231 20200624 945160 99999 SAINT GEORGE AS -28.033 148.583 201.0 19611231 20030119 945170 99999 ST GEORGE AIRPORT AS -28.05 148.6 199.0 20010914 20200624 945200 99999 MUNGINDI POST OFFICE AS -28.983 148.983 160.0 19650101 20200623 945210 99999 SURAT AS -27.15 149.067 246.0 19611231 20200623 945250 99999 TAROOM POST OFFICE AS -25.633000000000003 149.783 200.0 19561231 20200623 945270 99999 MOREE AS -29.467 149.85 212.0 19640325 20020901 945290 99999 MILES POST OFFICE AS -26.65 150.183 307.0 19720103 20050314 945300 99999 GOONDIWINDI AIRPORT AS -28.517 150.317 219.0 19561231 20150730 945410 99999 INVERELL RESEARCH CENTRE AS -29.783 151.083 664.0 19561231 20200624 945420 99999 DALBY AIRPORT AS -27.15 151.267 348.0 19561231 20200624 945430 99999 GAYNDAH POST OFFICE AS -25.633000000000003 151.61700000000002 108.0 19561231 20090630 945440 99999 PINDARI DAM AS -29.4 151.233 462.0 20010915 20200623 945450 99999 BRIAN PASTURES AS -25.65 151.733 120.0 20030330 20071223 945470 99999 MALENY TAMARIND ST AS -26.75 152.85 411.0 20030330 20160601 945480 99999 BAROON POCKET DAM AS -26.717 152.86700000000002 230.0 20010915 20101102 945490 99999 KINGAROY AIRPORT AS YKRY -26.566999999999997 151.833 434.0 19561231 20200624 945500 99999 STANTHORPE LESLIE PARADE AS -28.666999999999998 151.933 787.0 19561231 20200624 945510 99999 TOOWOOMBA AS -27.583000000000002 151.933 676.0 19561231 20120503 945520 99999 OAKEY AS YBOK -27.410999999999998 151.735 406.9 19730430 20200624 945530 99999 APPLETHORPE AS -28.616999999999997 151.95 873.0 19980301 20200624 945550 99999 WARWICK AS -28.2 152.1 476.0 19941001 20200624 945560 99999 TENTERFIELD (FEDERATION PARK) AS -29.05 152.017 838.0 19900201 20200623 945570 99999 JIMNA FORESTRY AS -26.666999999999998 152.467 517.0 20010701 20170307 945580 99999 TOOLARA (KELLY) AS -25.967 152.86700000000002 80.0 20010701 20150221 945620 99999 UNIVERSITY OF QUEENSLAND GATTON AS -27.55 152.333 94.0 20030330 20200624 945640 99999 RAINBOW BEACH AS -25.9 153.083 46.0 19920801 20200623 945650 99999 HERVEY BAY/PIALBA AS -25.3 152.817 17.0 19910101 20100412 945660 99999 GYMPIE AS -26.183000000000003 152.63299999999998 65.0 19720103 20200624 945670 99999 MARYBOROUGH AS -25.517 152.717 11.0 19561231 20200624 945680 99999 BAMAGA INJINOO AS YBAM -10.950999999999999 142.459 10.4 19430228 20200306 945690 99999 SUNSHINE COAST AIRPORT AS YBMC -26.6 153.1 4.0 19941001 20200624 945700 99999 TEWANTIN RSL PARK AS -26.383000000000003 153.033 7.0 19980301 20200624 945710 99999 GRAFTON OLYMPIC POOL AS -29.683000000000003 152.917 9.0 19900201 20150108 945720 99999 LISMORE AIRPORT AWS AS -28.833000000000002 153.26 9.8 20030330 20200624 945730 99999 CASINO AIRPORT AWS AS -28.883000000000003 153.05 22.0 19970101 20200624 945740 99999 CASINO AIRPORT AS -28.883000000000003 153.05 26.0 19900201 20120731 945750 99999 BRISBANE ARCHERFIELD AS YBAF -27.57 153.00799999999998 19.2 19430519 20200624 945760 99999 BRISBANE AS -27.483 153.033 8.0 19501231 20200624 945770 99999 HINZE DAM AS -28.05 153.283 110.0 19970101 20110815 945780 99999 BRISBANE AIRPORT AS YBBN -27.416999999999998 153.067 6.0 19441001 20200624 945785 99999 BRISBANE INTL ARPT AS -27.383000000000003 153.11700000000002 5.0 19491231 19940824 945790 99999 BRISBANE ARPT02 AWS AS -27.383000000000003 153.11700000000002 4.0 19941001 20000206 945800 99999 GOLD COAST SEAWAY AS -27.933000000000003 153.433 3.0 19910101 20200623 945810 99999 SPITFIRE CHANNEL BEACON AS -27.05 153.267 7.0 19920801 20200624 945820 99999 MURWILLUMBAH (BRAY PARK) AS -28.35 153.38299999999998 18.0 19900201 20200624 945830 99999 ALSTONWILLE TROPICAL FRUIT RESEARCH STN AS -28.85 153.45 140.0 20010815 20110630 945840 99999 DOUBLE ISLAND POINT LIGHTHOUSE AS -25.933000000000003 153.183 95.0 19561231 20200624 945850 99999 GLEN INNES AG RESEARCH STN AS -29.7 151.7 1060.0 19900201 20200617 945860 99999 LISMORE (RICHMOND HILL) AS -28.8 153.333 105.0 19561231 20150109 945870 99999 TABULAM AS -28.75 152.45 555.0 19900202 20200623 945880 99999 GLEN INNES AIRPORT AS -29.683000000000003 151.7 1045.0 19980301 20200624 945890 99999 YAMBA PILOT STATION AS -29.433000000000003 153.36700000000002 30.0 19561231 20200624 945910 99999 BANANA BANK NORTH BEACON AS -27.533 153.333 7.0 20200624 20200624 945920 99999 GOLD COAST AS YBCG -28.164 153.505 6.4 19900201 20200624 945930 99999 POINT LOOKOUT AS -27.433000000000003 153.55 50.0 19900201 20200623 945940 99999 CAPE MORETON LIGHTHOUSE AWS AS -27.033 153.467 101.0 19561231 20200624 945950 99999 CAPE BYRON LIGHTHOUSE AS -28.633000000000003 153.63299999999998 98.0 19561231 20070815 945951 99999 AMBERLEY AS YAMB -27.641 152.71200000000002 27.7 20040706 20200624 945952 99999 HAMILTON ISLAND AS YBHM -20.358 148.952 4.6 20040706 20200624 945953 99999 CURTIN AS YCIN -17.581 123.82799999999999 91.4 20040706 20200624 945954 99999 FORREST AS -30.833000000000002 128.11700000000002 160.0 20040706 20081231 945955 99999 GOVE AS YPGV -12.269 136.81799999999998 58.5 20040706 20200624 945956 99999 TELFER AS YTEF -21.715 122.229 295.7 20040706 20200624 945957 99999 TENNANT CREEK AS YTNK -19.634 134.183 376.7 20040706 20200624 945958 99999 TAREE AS YTRE -31.889 152.514 11.6 20040706 20200624 945959 99999 WANGARATTA AS YWGT -36.416 146.30700000000002 153.6 20040706 20200624 945960 99999 BALLINA AIRPORT AWS AS -28.833000000000002 153.55 2.0 19970101 20200624 945970 99999 REDLANDS HRS AS -27.533 153.25 16.0 20070228 20130318 945980 99999 EVANS HEAD RAAF BOMBING RANGE AS -29.183000000000003 153.4 63.0 20010915 20200624 945990 99999 CAPE BYRON AWS AS -28.633000000000003 153.63299999999998 98.0 20030211 20200624 946000 99999 CAPE NATURALISTE AS -33.533 115.01700000000001 110.0 19570101 20200624 946010 99999 CAPE LEEUWIN AS -34.367 115.133 14.0 19570101 20200624 946020 99999 ROTTNEST ISLAND AS -32.016999999999996 115.5 43.0 19900201 20200624 946030 99999 BADGINGARRA RESEARCH STN AS -30.333000000000002 115.53299999999999 275.0 19900206 20200624 946040 99999 BUNBURY AS -33.35 115.65 6.0 19650101 20200624 946050 99999 MANDURAH AS -32.516999999999996 115.71700000000001 4.0 19900201 20200624 946060 99999 GARDEN ISLAND AS -32.217 115.68299999999999 10.0 19900301 20011114 946070 99999 WANNEROO (OCEAN REEF AWS) AS -31.75 115.71700000000001 10.0 20150311 20200624 946080 99999 PERTH METRO AS -31.916999999999998 115.867 25.0 19420101 20200624 946090 99999 JANDAKOT AERO AS YPJT -32.1 115.883 31.0 19900206 20200624 946100 99999 PERTH INTL AS YPPH -31.94 115.96700000000001 20.4 19471231 20200624 946105 99999 PERTH INTL/BELMONT AS -31.933000000000003 115.96700000000001 29.0 19440430 19940320 946110 99999 MOORA AS -30.633000000000003 116.0 203.0 19900206 20040229 946120 99999 PEARCE AS YPEA -31.668000000000003 116.015 45.4 19401101 20200624 946130 99999 WINDY HARBOUR AS -34.833 116.03299999999999 6.0 19900206 19991118 946140 99999 SWANBOURNE AS -31.95 115.76700000000001 41.0 19940301 20200624 946150 99999 GOOSEBERY HILL AS -31.95 116.05 220.0 19950101 20200624 946160 99999 BRIDGETOWN POST OFFICE AS -33.95 116.133 151.0 19570101 20120816 946170 99999 MANJIMUP AS -34.25 116.15 287.0 19900203 20200610 946190 99999 DALWALLINU COMPARISON AS -30.283 116.667 338.0 19570101 20011212 946200 99999 DWELLINGUP AS -32.717 116.05 268.0 19570101 20200624 946210 99999 NORTHAM AS -31.65 116.667 155.0 19900206 20200624 946220 99999 WONGAN HILLS AS -30.9 116.71700000000001 284.0 19900203 20200624 946230 99999 YORK AS -31.9 116.76700000000001 198.0 19900206 20200624 946240 99999 WANDERING COMPARISO AS -32.683 116.667 250.0 19570101 20010916 946250 99999 BROOKTON AS -32.367 117.0 250.0 19900206 20200624 946260 99999 CUNDERDIN AS -31.65 117.25 236.0 19570101 20070301 946270 99999 NARROGIN AS -32.933 117.167 338.0 19720101 20200624 946280 99999 NEWDEGATE RES. STATION AS -33.117 118.833 321.0 19980301 20200624 946290 99999 KATANNING COMPARISON AS -33.683 117.55 311.0 19570101 20120822 946300 99999 MOUNT BARKER AS -34.633 117.633 300.0 19900206 20200624 946310 99999 ROCKY GULLY AS -34.567 117.01700000000001 251.0 19980301 20200624 946320 99999 BENCUBBIN AS -30.816999999999997 117.867 359.0 19570101 20200624 946330 99999 CORRIGIN AS -32.333 117.867 296.0 19570101 20200624 946340 99999 SOUTHERN CROSS AS -31.233 119.333 356.0 19570101 20071130 946350 99999 LAKE GRACE COMPARISON AS -33.117 118.46700000000001 287.0 19640101 20120822 946360 99999 RAVENSTHORPE AS -33.583 120.05 233.0 19620101 20200624 946370 99999 KALGOORLIE BOULDER AS YPKG -30.789 121.462 366.7 19390321 20200624 946380 99999 ESPERANCE AS -33.833 121.89299999999999 27.0 19690628 20200624 946390 99999 NORSEMAN AS -32.2 121.78299999999999 278.0 19570101 20120821 946400 99999 WINDY HARBOUR AS -34.833 116.03299999999999 3.0 20010915 20200624 946410 99999 KATANNING AS -33.683 117.6 321.0 19740801 20200624 946420 99999 BALLADONIA AS -32.45 123.867 149.0 19740401 20200624 946430 99999 BALGAIR AS -31.083000000000002 125.65 163.0 19570101 20190201 946440 99999 RED ROCKS POINT AS -32.2 127.53299999999999 3.0 20010711 20200624 946450 99999 EYRE AS -32.233000000000004 126.3 6.0 19510721 20200624 946460 99999 FORREST AIRPORT AS -30.833000000000002 128.1 160.0 19400708 19990806 946470 99999 EUCLA AS -31.68 128.879 102.3 19570101 20200624 946490 99999 COOK AS -30.616999999999997 130.4 120.0 19561231 19970115 946510 99999 NULLARBOR AS -31.45 130.9 65.0 19900201 20200624 946530 99999 CEDUNA AMO AS YPCD -32.133 133.7 16.0 19390320 20200624 946540 99999 STREAKY BAY AS -32.8 134.217 14.0 19561231 20200623 946550 99999 TARCOOLA AS -30.717 134.583 124.0 19611231 20200624 946560 99999 ELLISTON AS -33.65 134.88299999999998 5.0 19620108 20200623 946570 99999 KYANCUTTA AS -33.133 135.55 58.0 19561231 20200623 946580 99999 COLES POINT AS -34.383 135.36700000000002 29.0 19910401 20170523 946590 99999 WOOMERA AS YPWR -31.144000000000002 136.817 167.0 19490331 20200624 946600 99999 MOUNT IVE AS -32.433 136.067 213.0 19561231 20020317 946610 99999 CLEVE AS -33.7 136.483 194.0 19561231 20200623 946620 99999 CLEVE AERODROME AS -33.717 136.5 176.0 19820508 20200624 946630 99999 WAROOKA AS -34.983000000000004 137.4 54.0 19900201 20200623 946640 99999 WHYALLA AS -33.016999999999996 137.517 15.0 19561231 20010713 946650 99999 MAITLAND AS -34.383 137.667 186.0 19561231 20200623 946660 99999 WARBURTO POINT AS -34.0 137.533 1.0 19730101 20200624 946670 99999 KADINA AS -33.95 137.7 44.0 19561231 20050731 946680 99999 KIMBA AS -33.15 136.417 263.0 19900201 20200623 946690 99999 PORT PIRIE NYRSTAR COMPARISON AS -33.183 138.017 4.0 19561231 20120831 946700 99999 SNOWTOWN AS -33.783 138.217 103.0 19561231 20010630 946710 99999 VIRGINIA AS -34.65 138.533 3.0 19920801 20021130 946720 99999 ADELAIDE INTL AS YPAD -34.945 138.531 6.1 19550215 20200624 946723 99999 ADELAIDE AS APAD -34.95 138.533 6.0 19550215 19900919 946725 99999 ADELAIDE INTL ARPT AS -34.933 138.533 4.0 19931112 19940824 946730 99999 HAWKER AS -31.883000000000003 138.433 316.0 19900201 20200622 946740 99999 PORT LINCOLN AS YPLC -34.605 135.88 11.0 19510102 20200624 946750 99999 KENT TOWN AS -34.917 138.61700000000002 51.0 19541231 20200624 946760 99999 ARKAROOLA AS -30.316999999999997 139.333 318.0 19900308 20200624 946770 99999 HINDMARSH ISLAND AWS AS -35.516999999999996 138.817 10.0 19471231 20200624 946780 99999 MT CRAWFORD AWS AS -34.733000000000004 138.933 525.0 19970101 20200624 946790 99999 YONGALA AS -33.033 138.75 515.0 19561231 20200623 946800 99999 EUDUNDA AS -34.183 139.083 416.0 19771001 20200623 946810 99999 NURIOOTPA VITICULTURAL AS -34.483000000000004 139.0 276.0 19561231 20200624 946820 99999 LOXTON RESEARCH CENTRE AS -34.433 140.6 30.0 19711231 20200624 946830 99999 KUITPO FOREST RESERVE AS -35.167 138.667 365.0 20010701 20200624 946840 99999 YUNTA AIRSTRIP AS -32.567 139.567 300.0 19611231 20200624 946850 99999 KADINA AS -33.97 137.67 42.0 19900201 20200624 946860 99999 FOWLERS GAP AWS AS -31.083000000000002 141.7 182.0 19900308 20200624 946870 99999 RENMARK AS -34.167 140.75 21.0 19570511 20020630 946880 99999 LAMEROO COMPARISON AS -35.333 140.517 100.0 19561231 20150108 946890 99999 BROKEN HILL (PATTON STREET) AS -31.983 141.467 315.0 19730101 20150831 946900 99999 AUSTIN PLAINS AS -35.378 140.53799999999998 110.8 20040921 20200624 946910 99999 BROKEN HILL AIRPORT AWS AS -32.0 141.467 282.0 19900401 20200624 946920 99999 LAKE VICTORIA STORAGE AS -34.05 141.267 43.0 20030330 20200615 946930 99999 MURRIN MURRIN AS YMMI -28.705 121.891 467.9 19460101 20081231 946940 99999 MENINDEE POST OFFICE AS -32.4 142.417 61.0 19650101 20200623 946950 99999 WILCANNIA (REID ST) AS -31.566999999999997 143.36700000000002 75.0 19561231 20150110 946960 99999 BALRANALD AS -34.633 143.55 61.0 19650101 20200623 946970 99999 IVANHOE POST OFFICE AS -32.9 144.283 86.0 19590101 20120814 946980 99999 HAY (MILLER STREET) AS -34.516999999999996 144.85 94.0 19561231 20150109 946990 99999 WHITE CLIFFS AS -30.85 143.083 151.0 19611231 20111229 947000 99999 HILLSTON AIRPORT AS -33.483000000000004 145.517 120.0 19561231 20200623 947010 99999 HAY AWS AS -34.533 144.86700000000002 90.0 19910101 20070902 947020 99999 HAY AIRPORT AWS AS -34.533 144.833 92.0 20071016 20200624 947030 99999 BOURKE AIRPORT AWS AS -30.033 145.95 108.0 19561231 20200624 947040 99999 QUANDIALLA POST OFFICE AS -34.016999999999996 147.783 250.0 19980301 20141230 947050 99999 GRIFFITH AWS AS -34.317 146.067 125.0 19900401 20031001 947060 99999 NARRANDERA GOLF CLUB AS -34.733000000000004 146.567 174.0 19700131 20140925 947070 99999 CONDOBLIN AG RESEARCH STN AS -33.067 147.233 195.0 19650101 20200623 947080 99999 NYNGAN AIRPORT AS -31.55 147.183 173.0 19581231 20191024 947090 99999 WYALONG AS -33.917 147.233 245.0 19900201 20150110 947100 99999 COBAR AIRPORT AWS AS -31.533 145.8 218.0 19941001 20200624 947110 99999 COBAR MO AS -31.483 145.833 263.6 19631231 20200624 947120 99999 YOUNG AIRPORT AS -34.25 148.25 381.0 19900201 20200624 947130 99999 FORBES AS -33.383 148.0 240.0 19561231 19980519 947140 99999 COOTAMUNDRA AIRPORT AS -34.633 148.033 338.0 19561231 20200623 947150 99999 FORBES AIRPORT AS -33.367 147.917 231.0 19741118 20200624 947160 99999 GOULBURN (PROGRESS ST) AS -34.717 149.733 650.0 19780531 20200623 947170 99999 PARKES (MACARTHUR STREET) AS -33.133 148.167 324.0 19561231 20120722 947180 99999 COONAMBLE COMPARISON AS -30.983 148.38299999999998 180.0 19900201 19991111 947190 99999 DUBBO AS YSDU -32.217 148.575 285.0 19561231 20200624 947200 99999 COWRA AIRPORT COMPARISON AS -33.85 148.65 294.0 19691031 20110720 947210 99999 PEAK HILL POST OFFICE AS -32.717 148.183 285.0 19960201 20200623 947220 99999 TEMORA AGRICULTURAL AS -34.4 147.533 270.0 20030330 20050113 947230 99999 WELLINGTON (AGROWPLOW) AS -32.567 148.95 305.0 19641231 20200623 947240 99999 WELLINGTON RESEARCH AS -32.5 148.967 390.0 20030330 20050223 947250 99999 GRENFELL (MANGANESE RD) AS -33.9 148.15 390.0 20010915 20200623 947260 99999 ORANGE AIRPORT COMPARISON AS -33.383 149.11700000000002 951.0 19691231 19970924 947270 99999 MUDGEE AIRPORT AWS AS -32.567 149.61700000000002 472.0 19900201 20200624 947280 99999 COONABARABRAN (NAMOI STREET) AS -31.267 149.267 510.0 19561231 20200623 947290 99999 BATHURST AIRPORT AWS AS -33.417 149.65 745.0 19900201 20200624 947300 99999 BATHURST AGRICULTURAL STATION AS -33.433 149.567 713.0 19561231 20200623 947310 99999 MUDGEE AS -32.583 149.583 454.0 19611231 20020814 947320 99999 GULGONG POST OFFICE AS -32.367 149.533 475.0 19900202 20200622 947330 99999 SINGLETON STP AS -32.583 151.167 45.0 19920801 20190119 947340 99999 NARRABRI WEST AS -30.333000000000002 149.75 212.0 19611231 20020731 947350 99999 TARALGA (P.O.) AS -34.4 149.817 845.0 19561231 20200623 947360 99999 PROSPECT DAM AS -33.817 150.917 61.0 19980301 20180526 947380 99999 SCONE SCS AS -32.067 150.933 216.0 20010916 20181219 947390 99999 JERRYS PLAINS AS -32.483000000000004 150.9 90.0 19561231 20140416 947400 99999 GUNNEDAH SCS AS -31.033 150.267 307.0 20010915 20190628 947410 99999 LITHGOW AS -33.483000000000004 150.13299999999998 950.0 19900201 20200623 947420 99999 GUNNEDAH POOL AS -30.983 150.25 285.0 19650101 20111227 947430 99999 MOUNT BOYCE AS -33.617 150.267 1080.0 19611231 20200624 947440 99999 KATOOMBA (NARROW NECK RD) AS -33.717 150.283 1030.0 19900201 20200623 947460 99999 MOSS VALE AWS AS -34.516999999999996 150.417 679.0 20010816 20200624 947470 99999 BOWRAL (PARRY DRIVE) AS -34.483000000000004 150.4 690.0 19680930 20150109 947480 99999 WOLLONGONG UNIVERSITY AS -34.4 150.88299999999998 25.0 19720331 20080604 947490 99999 BELLAMBI AWS AS -34.383 150.933 10.0 19900504 20200624 947500 99999 NOWRA AS YSNW -34.949 150.537 121.9 19551130 20200624 947520 99999 BADGERY'S CREEK AIRPORT AS -33.9 150.733 82.0 19960201 20200624 947530 99999 RICHMOND AS YSRI -33.601 150.781 20.4 19391130 20200624 947540 99999 NULLO MOUNTAIN AWS AS -32.733000000000004 150.233 1130.0 19900901 20200624 947550 99999 CAMDEN AS YSCN -34.04 150.687 70.1 19421231 20200624 947560 99999 MURRURUNDI POST OFFICE AS -31.767 150.833 466.0 19900201 20191008 947570 99999 CAMBELL TOWN / MOUNT ANNAN AS -34.067 150.767 112.0 20070605 20200624 947580 99999 SCONE AS -32.05 150.86700000000002 208.0 19900201 19940128 947590 99999 TERREY HILLS AWS AS -33.683 151.233 199.0 20041109 20200624 947600 99999 HORSLEY EQUESTRIAN CENTRE AS -33.85 150.85 100.0 20010701 20200624 947610 99999 BARRABA AS -30.383000000000003 150.61700000000002 500.0 19900202 20200623 947620 99999 HOLSWORTHY CONTROL RANGE AS -33.983000000000004 150.917 40.0 19730331 20200624 947630 99999 PENRITH AS -33.717 150.683 25.0 19960201 20200624 947640 99999 PARRAMATTA NORTH AS -33.8 151.017 55.0 19970101 20200623 947650 99999 SYDNEY BANKSTOWN AS YSBK -33.924 150.988 8.8 19680701 20200624 947660 99999 CANTERBURY RACECOURSE AS -33.9 151.11700000000002 3.0 19960201 20200624 947670 99999 SYDNEY INTL AS YSSY -33.946 151.17700000000002 6.4 19430923 20200624 947675 99999 SYDNEY INTL AIRPORT AS -33.95 151.2 3.0 19390331 19940824 947680 99999 SYDNEY (OBSERVATORY HILL) AS -33.85 151.2 40.0 19541231 20200624 947700 99999 NORAH HEAD LIGHTHOU AS -33.283 151.567 24.0 19690710 20041026 947710 99999 CESSNOCK AS -32.8 151.333 62.0 19730531 20120814 947720 99999 GUYRA HOSPITAL AS -30.217 151.683 1332.0 19980301 20200623 947730 99999 ARMIDALE (TREE GROUP NURSERY) AS -30.533 151.667 987.0 19561231 20200623 947740 99999 NEWCASTLE NOBBYS SIGNAL STATION AS -32.917 151.783 33.0 19561231 20200624 947750 99999 TOCAL AWS AS -32.633 151.583 30.0 19960201 20200624 947760 99999 WILLIAMTOWN AS YWLM -32.795 151.834 9.4 19420909 20200624 947770 99999 GOSFORD (NARARA RESEARCH STATION) AS -33.4 151.333 20.0 19980301 20081231 947780 99999 GLEN INNES POST OFFICE AS -29.733 151.733 1062.0 19611231 20120814 947790 99999 PEATS RIDGE WARATAH ROAD AS -33.317 151.25 280.0 19980301 20120814 947800 99999 LITTLE BAY (THE COAST GOLF CLUB) AS -33.983000000000004 151.25 22.0 20010701 20200624 947810 99999 NEWCASTLE UNIVERSITY AS -32.9 151.7 21.0 20010915 20200623 947820 99999 GOSFORD AWS AS -33.433 151.36700000000002 7.0 20050101 20200624 947830 99999 YARRAS MOUNT SEAVIEW AS -31.383000000000003 152.25 155.0 19980301 20200624 947840 99999 TAREE /RADIO STATIO AS -31.9 152.483 7.0 19711231 20050315 947850 99999 KEMPSEY AIRPORT AWS AS -31.066999999999997 152.767 14.0 20030330 20200624 947860 99999 PORT MACQUARIE AIRPORT AWS AS -31.433000000000003 152.85 5.0 19960201 20200624 947870 99999 PORT MACQUARIE AS -31.433000000000003 152.917 9.0 19561231 20031026 947880 99999 KEMPSEY AS -31.083000000000002 152.817 10.0 19900201 20150109 947890 99999 DORRIGO OLD CORAMBA RD AS -30.35 152.717 746.0 19980301 20200623 947900 99999 SMOKY CAPE LIGHTHOUSE AS -30.916999999999998 153.083 120.0 19561231 20200623 947910 99999 COFFS HARBOUR AS YCFS -30.320999999999998 153.116 5.0 19421201 20200624 947920 99999 WOOLBROOK DANGLEMAH ROAD AS -30.967 151.35 910.0 19980301 20200623 948010 99999 ALBANY AS -35.033 117.883 3.0 20030330 20200624 948020 99999 ALBANY AIRPORT AS YPAL -34.941 117.802 69.0 19650411 20200624 948030 99999 ALLENDALE AS -35.783 137.033 23.0 19930101 20020407 948040 99999 NEPTUNE ISLAND AS -35.333 136.11700000000002 32.0 19611231 20200618 948050 99999 CAPE BORDA AS -35.75 136.583 144.0 19611231 20070801 948060 99999 MOUNT BARKER AS -35.067 138.85 360.0 19900201 20200623 948070 99999 PARDANA CFS AWS AS -35.8 137.25 165.0 19561231 20200624 948080 99999 NOARLUNGA AS -35.167 138.5 55.0 20010701 20200624 948090 99999 EDITHBURGH AWS AS -35.117 137.733 7.0 19900201 20200624 948100 99999 STRATHALBYN P. O. AS -35.25 138.88299999999998 70.0 19900201 20160806 948110 99999 SECOND VALLEY FOREST AS -35.567 138.283 342.0 19941001 20200624 948120 99999 ROBE AS -37.167 139.75 4.0 19561231 20200624 948130 99999 THE LIMESTONE AS -36.967 139.717 18.0 19910401 20200624 948140 99999 STRATHALBYN RACECOURSE AS -35.283 138.9 58.0 19980301 20200624 948150 99999 VICTOR HARBOUR P.O. AS -35.55 138.61700000000002 5.0 19900201 20020331 948160 99999 KEITH AS -36.1 140.35 31.0 19611231 20200623 948170 99999 COONAWARRA AS -37.3 140.817 58.0 19980301 20200624 948180 99999 CAPE NORTHUMBERLAND AS -38.05 140.667 6.0 19561231 20050316 948190 99999 NARACOORTE AS -36.95 140.733 58.0 19620228 20010630 948200 99999 NARACOORTE AERODROME AS -36.983000000000004 140.733 50.0 19900201 20200624 948210 99999 MOUNT GAMBIER AERO AS YMMG -37.733000000000004 140.783 69.0 19410831 20200624 948220 99999 CAPE WILLOUGHBY AS -35.85 138.13299999999998 59.0 19670913 20200624 948240 99999 HEYWOOD FORESTRY AS -38.133 141.63299999999998 27.0 19900201 20090328 948250 99999 CASTERTON SHOWGROUNDS AS -37.6 141.417 73.0 19561231 20110207 948260 99999 CAPE NELSON LIGHTHOUSE AS -38.433 141.55 47.0 19561231 20200618 948270 99999 NHILL AERODROME AS -36.317 141.63299999999998 140.0 19500630 20200624 948280 99999 PORTLAND CASHMORE AIRPORT AS -38.317 141.467 82.0 19900201 20200624 948290 99999 HAMILTON AIRPORT AS -37.65 142.067 242.0 19561231 20200624 948300 99999 PORT FAIRY AWS AS -38.4 142.233 10.0 19910601 20200624 948310 99999 OUYEN AS -35.067 142.317 50.0 19561231 20200623 948320 99999 WARRNAMBOOL AIRPORT AS -38.283 142.433 68.0 19561231 20000630 948330 99999 MOUNT WILLIAM AS -37.3 142.6 1150.0 19900202 20200624 948340 99999 ARARAT PRISON AS -37.283 142.983 296.0 19900201 20200624 948350 99999 BEN NEVIS AS -37.233000000000004 143.2 875.0 19920801 20200624 948360 99999 STAWELL AERODROME AS YSWL -37.067 142.733 235.0 19980301 20200624 948370 99999 WARRNAMBOOL AIRPORT NDB AS -38.283 142.45 71.0 20010915 20200624 948380 99999 HOPETOUN AIRPORT AS -35.717 142.35 78.0 20010830 20200624 948390 99999 CHARLTON AS -36.283 143.35 132.0 20040824 20200624 948400 99999 MORTLAKE RACECOURSE AS -38.067 142.767 131.0 19900401 20200624 948410 99999 WARRACKNABEAL AS -36.25 142.4 113.0 19900201 20191026 948420 99999 CAPE OTWAY LIGHTHOUSE AS -38.85 143.517 83.0 19561231 20200624 948430 99999 SWAN HILL AERODROME AS -35.383 143.533 71.0 19591231 20200624 948440 99999 KERANG AS -35.733000000000004 143.917 78.0 19611231 20200624 948450 99999 ELLIMINYT AS -38.383 143.6 248.0 19900201 20000831 948460 99999 AIREYS INLET AS -38.45 144.1 95.0 19910101 20200624 948470 99999 POINT WILSON AS -38.1 144.533 18.0 19941001 20200624 948490 99999 MARYBOROUGH AS -37.05 143.733 249.0 19900201 20200623 948500 99999 KING ISLAND AIRPORT AS -39.883 143.88299999999998 38.0 19960201 20200624 948510 99999 KING ISLAND CURRIE AS -39.933 143.85 24.0 19561231 20011115 948520 99999 BALLARAT AERODROME AS -37.516999999999996 143.783 436.0 19561231 20200624 948530 99999 SOUTH CHANNEL IS. AS -38.3 144.8 5.0 19781215 20020724 948540 99999 AVALON AIRPORT AS -38.033 144.467 11.0 19970101 20200624 948550 99999 BENDIGO AIRPORT AWS AS -36.733000000000004 144.317 209.0 19561231 20200624 948560 99999 GEELONG CITY AS -38.083 144.333 55.0 19900201 19960914 948570 99999 GEELONG RACECOURSE AS -38.167 144.36700000000002 35.0 19881102 20200624 948590 99999 REDESDALE AS -37.016999999999996 144.533 290.0 19941001 20200624 948600 99999 KILMORE GAP AS -37.383 144.967 528.0 19941001 20200624 948610 99999 ECHUCA AERODROME AS -36.15 144.767 97.0 19591231 20200623 948620 99999 YARRAWONGA AS -36.016999999999996 146.033 129.0 19970101 20200624 948630 99999 SHEOAKS AWS AS -37.9 144.11700000000002 237.0 19910101 20200624 948640 99999 MELBOURNE ESSENDON AS YMEN -37.728 144.90200000000002 86.0 19471231 20200624 948650 99999 LAVERTON RAAF AS YMLV -37.867 144.75 20.0 19410824 20200624 948660 99999 MELBOURNE INTL AS YMML -37.673 144.843 132.3 19730101 20200624 948665 99999 MELBOURNE INTL ARPT AS -37.667 144.85 141.0 19700630 19940824 948670 99999 TRAINING ANNEX AS -37.683 144.95 110.0 19900610 19911003 948680 99999 MELBOURNE REGIONAL OFFICE AS -37.817 144.967 32.0 19541231 20150106 948690 99999 DENILIQUIN POST OFF AS -35.55 144.933 93.0 19630430 20030630 948700 99999 MELBOURNE MOORABBIN AS YMMB -37.976 145.102 15.2 19710731 20200624 948710 99999 FRANKSTON AWS AS -38.15 145.11700000000002 6.0 19941001 20200624 948720 99999 FERNY CREEK AS -37.867 145.333 561.0 19941001 20200624 948740 99999 MANGALORE AIRPORT AS -36.883 145.183 141.0 19581231 20200624 948750 99999 SHEPPARTON AIRPORT AS -36.433 145.4 114.0 19980301 20200624 948760 99999 FINLEY AWS AS -35.667 145.61700000000002 110.0 19901205 20031001 948770 99999 TOCUMWAL AIRPORT AS -35.817 145.6 114.0 19420908 20200623 948780 99999 HUNTERS HILL AS -36.217 147.533 981.0 19970101 20200624 948790 99999 CRANBOURNE BOTANIC GARDENS AS -38.133 145.267 85.0 20010815 20200312 948800 99999 NOOJEE (SLIVAR) AS -37.9 145.967 275.0 19811026 20120418 948810 99999 EILDON FIRE TOWER AS -37.217 145.833 638.0 19561231 20200624 948820 99999 LAKE EILDON AS -37.233000000000004 145.917 230.0 19700311 20200623 948830 99999 PHILLIP ISLAND PENGUIN RESERVE AS -38.5 145.15 7.0 20010916 20180215 948840 99999 BENALLA (SHADFORTH STREET) AS -36.55 145.967 170.0 19561231 20200624 948860 99999 POUND CREEK AS -38.633 145.811 3.6 20071016 20200624 948880 99999 DARTMOUTH RESERVOIR AS -36.533 147.5 350.0 20030330 20200611 948890 99999 WANGARATTA AERO AS -36.417 146.3 153.0 19561231 20200624 948900 99999 GUNDAGAI AS -35.05 148.1 250.0 19970101 20200623 948910 99999 LATROBE VALLEY AIRPORT AS -38.217 146.467 56.0 19900201 20200624 948920 99999 RHYLL (AWS) AS -38.45 145.3 14.0 19910101 20200624 948930 99999 WILSONS PROMONTORY LIGHTHOUSE AS -39.117 146.417 97.0 19561231 20200624 948940 99999 MOUNT BULLER AWS AS -37.15 146.433 1707.0 19900201 20200624 948950 99999 BEECHWORTH WOOLSHED AS -36.317 146.667 330.0 19561231 20120430 948955 99999 AVALON AS YMAV -38.039 144.469 10.7 20040713 20200624 948960 99999 ALBURY AS YMAY -36.068000000000005 146.958 164.3 19900201 20200624 948980 99999 CERBERUS AWS AS -38.35 145.167 14.0 19870604 20200624 948990 99999 CORRYONG (PARISH LANE) AS -36.2 147.88299999999998 314.0 19721231 20200323 949000 99999 BLUE ROCK RESERVOIR AS -38.083 146.217 161.0 19750929 20190630 949010 99999 HUME RESERVOIR AS -36.1 147.033 182.0 19641231 20200623 949030 99999 FALLS CREEK AWS AS -36.867 147.267 1767.0 19900201 20200624 949040 99999 MOUNT BEAUTY AS -36.75 147.167 366.0 19900401 20040914 949050 99999 MT HOTHAM AIRPORT AS -37.05 147.333 1293.0 20030330 20200624 949060 99999 MOUNT HOTHAM AS -36.967 147.13299999999998 1849.0 19781028 20200624 949070 99999 EAST SALE AS YMES -38.099000000000004 147.149 7.0 19440101 20200624 949080 99999 OMEO AS -37.1 147.6 690.0 20041109 20200624 949090 99999 BURRINJUCK DAM AS -35.0 148.6 390.0 20010915 20200622 949100 99999 WAGGA WAGGA AS YSWG -35.165 147.466 220.7 19410817 20200624 949110 99999 YANAKIE AS -38.8 146.2 13.9 19561231 20200624 949120 99999 BAIRNSDALE AIRPORT AS -37.883 147.567 50.0 19900201 20200624 949130 99999 GELANTIPY AS -37.217 148.267 756.0 19930201 20200624 949140 99999 COMBIENBAR AS -37.333 149.017 641.0 19941001 20200624 949150 99999 PERISHER VALLEY AWS AS -36.4 148.4 1735.0 19900201 20200624 949160 99999 CABRAMURRA AS -35.933 148.38299999999998 1475.0 19620103 20020807 949170 99999 ORBOST (COMPARISON) AS -37.683 148.45 42.0 19561231 19990321 949180 99999 TUMBARUMBA POST OFFICE AS -35.766999999999996 148.0 645.0 19900201 20200623 949190 99999 KHANCOBAN AS -36.233000000000004 148.13299999999998 340.0 19980301 20200624 949210 99999 COOMA AIRPORT AWS AS -36.3 148.967 931.0 19910101 20200624 949220 99999 TINDBINBILLA NATURE RESERVE AS -35.433 148.95 700.0 19910101 20120825 949230 99999 COOMA VISITORS CENTRE AS YSCM -36.233000000000004 149.11700000000002 778.0 19730930 20200624 949240 99999 HOLT (PINE RIDGE) AS -35.233000000000004 149.0 605.0 20010916 20041024 949250 99999 TUGGERANONG ISABELLA PLAINS AS -35.417 149.1 588.0 19741201 20200624 949260 99999 CANBERRA AS YSCB -35.306999999999995 149.195 574.9 19390228 20200624 949270 99999 BRAIDWOOD RACECOURSE AWS AS -35.433 149.783 666.0 19750930 20200624 949280 99999 BOMBALA (THREEY STREET) AS -36.917 149.233 705.0 19900201 20200622 949290 99999 BOMBALA AWS AS -37.0 149.233 762.0 19900201 20200624 949300 99999 MT NOWA NOWA AS -37.7 148.083 350.0 19980301 20200624 949310 99999 BEGA AS -36.667 149.817 11.0 19900201 20040829 949320 99999 POINT HICKS (LIGHTHOUSE) AS -37.8 149.267 27.0 19660630 20191229 949330 99999 GABO ISLAND LIGHTHOUSE AS -37.567 149.9 15.0 19561231 20200624 949340 99999 GREEN CAPE AWS AS -37.25 150.05 20.0 19920801 20200624 949350 99999 MALLACOOTA AS -37.6 149.733 22.0 19941001 20200624 949370 99999 MORUYA HEADS PILOT STATION AS -35.917 150.15 17.0 19561231 20200624 949380 99999 ULLADULLA AWS AS -35.35 150.483 37.0 19901201 20200624 949390 99999 MONTAGUE ISLAND LIGHHOUSE AS -36.25 150.217 54.0 19611231 20200624 949400 99999 JERVIS BAY AS -35.083 150.8 85.0 19561231 20040630 949410 99999 BATEMANS BAY (CATALINA COUNTRY CLUB) AS -35.733000000000004 150.183 11.0 19920501 20200623 949420 99999 NERRIGA COMPOSITE AS -35.117 150.083 630.0 19980301 20081231 949430 99999 NERRIGA AWS AS -35.117 150.083 625.6 20050101 20200624 949490 99999 HOGAN ISLAND AS -39.217 146.983 117.0 19920301 20200624 949500 99999 MARRAWAH AS -40.917 144.7 108.0 19810101 20200623 949510 99999 DUNALLEY (STROUD POINT) AS -42.9 147.783 12.7 19611231 20200624 949520 99999 SMITHTON AS -40.833 145.1 8.0 19620331 19980613 949530 99999 SMITHTON AERODROME AS -40.833 145.083 9.0 19730101 20200624 949540 99999 CAPE GRIM BAPS AS -40.667 144.683 92.0 19880601 20200624 949550 99999 SHEFFIELD SCHOOL FARM AS -41.383 146.317 295.0 19900401 20200624 949560 99999 STRAHAN AERODROME AS -42.15 145.283 22.0 19760918 20200624 949570 99999 OUSE FIRE STATION AS YMWY -42.483000000000004 146.717 91.0 19900201 20200624 949580 99999 BURNIE (ROUND HILL) AS -41.083 145.95 6.0 19650101 20180226 949590 99999 BUTLERS GORGE AS -42.283 146.283 667.0 19901102 20200624 949600 99999 TUNNAK FIRE STATION AS YMDV -42.45 147.467 462.0 19900201 20200624 949610 99999 DOVER AS -43.317 147.017 16.0 19900401 20200623 949620 99999 MAATSUYKER ISLAND LIGHTHOUSE AS -43.65 146.267 148.0 19561231 20200624 949630 99999 MAYDENA POST OFFICE AS -42.75 146.61700000000002 281.0 19681231 20200624 949640 99999 BUSHY PARK (BUSHY PARK ESTATES) AS -42.717 146.9 27.0 19900201 20200624 949650 99999 LOW HEAD (LGT-H) AS -41.05 146.8 30.0 19561231 19971210 949660 99999 GEEVESTON (FORESTRY CEMETERY RD) AS -43.167 146.917 55.0 19720217 20150731 949670 99999 CAPE BRUNY LIGHTHOUSE AS -43.5 147.15 53.0 19561231 20200624 949680 99999 LAUNCESTON AS YMLT -41.545 147.214 171.3 19390331 20200624 949690 99999 LAUNCESTON (TI TREE BEND) AS -41.417 147.11700000000002 5.0 19900201 20200624 949700 99999 HOBART (ELLERSLIE ROAD) AS -42.883 147.333 51.0 19440101 20200624 949710 99999 MELTON MOWBRAY (NORTH STOCKMAN) AS -42.5 147.2 238.0 19561231 20200623 949720 99999 SCOTTSDALE ( WEST MINSTONE ROAD) AS -41.167 147.483 198.0 19710302 20200624 949730 99999 MOOGARA (UXBRIDGE BACK ROAD AS -42.783 146.9 532.0 19970101 20080630 949740 99999 CAPE SORELL AS -42.2 145.167 20.0 19480504 20200624 949750 99999 HOBART AS YMHB -42.836000000000006 147.51 4.0 19580531 20200624 949760 99999 LAKE ST. CLAIR (NATIONAL PARK) AS -42.117 146.167 750.0 19561231 20200623 949770 99999 HARTZ MOUNTAINS AS -43.2 146.767 830.0 19900201 20200624 949780 99999 PORT ARTHUR /PALMER AS -43.167 147.833 193.0 19900201 20050316 949790 99999 LAKE LEAKE (ELIZABETH RIVER) AS -42.0 147.783 575.0 19750929 20200623 949800 99999 FLINDERS ISLAND AIRPORT AS -40.1 148.0 10.0 19611231 20200624 949810 99999 SWANSEA (FRANCIS ST) AS -42.133 148.067 11.0 19561231 20200623 949820 99999 SAINT HELENS AS -41.317 148.233 5.0 19561231 20010502 949830 99999 LARAPUNA (EDDYSTONE POINT) AS -41.0 148.35 21.0 19601231 20200624 949840 99999 WHITEMARK AS -40.117 148.017 6.0 19631231 19970730 949850 99999 ROSS (THE BOULEVARDS) AS -42.033 147.5 186.0 19720531 20200622 949860 99999 MAWSON AUS-BASE & AS -67.6 62.883 15.0 19730101 19850706 949870 99999 FRIENDLY BEACHES AS -42.0 148.283 56.0 19980301 20200624 949880 99999 DENNES POINT AS -43.067 147.35 6.5 20140508 20200624 949950 99999 LORD HOWE ISLAND AERO AS -31.541999999999998 159.079 7.0 19471231 20200624 949960 99999 NORFOLK ISLAND INTL NF YSNF -29.041999999999998 167.93900000000002 113.1 19471201 20200624 949970 99999 HEARD ISLAND (THE SPIT) AS -53.1 73.717 12.0 19861201 20151118 949980 99999 MACQUARIE ISLAND AS YMMQ -54.498999999999995 158.937 8.3 19730101 20200624 949999 00001 WYNDHAM POST OFFICE AS -15.45 128.12 16.8 19570101 19641231 949999 00002 TROUGHTON ISLAND AS -13.75 126.15 7.9 19570101 19731031 949999 00003 HALLS CREEK POST OFFICE AS -18.23 127.67 409.7 19571130 19731212 949999 00004 KUNUNURRA (KIMBERLEY RESEARCH STATION) AS -15.65 128.7 45.7 19650101 19821031 949999 00005 CAPE LEVEQUE LIGHT HOUSE AS -16.4 122.93 26.0 19650101 19821031 949999 00006 FITZROYCROSSING AS -18.18 125.6 112.0 19570101 19641231 949999 00007 YAMPISOUND (COCKATOO ISLAND) AS -16.08 123.6 13.0 19650101 19820629 949999 00008 DERBY AIRPORT AS -17.37 123.67 12.0 19720417 19811130 949999 00009 CAMBALLIN AS -17.98 124.18 45.0 19730601 19770630 949999 00010 TALGARNOAMO/MO1959-1961 AS -19.28 121.5 21.0 19590831 19631231 949999 00011 KOOLAN ISLAND AS -16.13 123.78 140.0 19820701 19821031 949999 00012 SHAYGAP AS -20.5 120.17 166.0 19730911 19751129 949999 00013 ONSLOWAMO AS -21.67 115.12 4.6 19400731 19750228 949999 00014 VLAMINGHEAD AS -21.82 114.1 65.0 19650101 19670329 949999 00015 DAMPIER (HAMERSLEY IRON) AS -20.65 116.72 20.7 19580903 19691231 949999 00016 DAMPIER (SALT) AS -20.72 116.75 12.0 19691104 19820930 949999 00017 NORTHWEST CAPE (NAVY ALPHA) AS -21.82 114.17 8.0 19711130 19760630 949999 00018 GASCOYNE JUNCTION POLICE STATION AS -25.05 115.22 114.8 19620108 19631231 949999 00019 HAMELINPOOL AS -26.42 114.18 4.0 19570101 19791231 949999 00020 BRICKHOUSE WOOLSHED AS -24.82 113.83 16.8 19660601 19770324 949999 00021 CAPE CUVIER AS -24.22 113.38 46.0 19720628 19750731 949999 00022 COODARDY AS -27.25 117.65 500.0 19580327 19580712 949999 00023 CUE AS -27.43 117.9 454.0 19570101 19631231 949999 00024 MEEKATHARRA POST OFFICE AS -26.6 118.48 511.0 19440101 19500424 949999 00025 MOUNT MAGNET AS -28.07 117.83 427.0 19570101 19751128 949999 00026 MUNDIWINDI AS -23.8 120.25 572.0 19570101 19641231 949999 00027 MURGOO STATION AS -27.37 116.42 304.0 19620101 19821031 949999 00028 YALGOO POST OFFICE AS -28.35 116.68 318.0 19570101 19751128 949999 00029 GERALDTON WATER SUPPLY AS -28.78 114.62 34.0 19410731 19550531 949999 00030 MOORA COMPOSITE AS -30.65 116.0 203.6 19720101 19751130 949999 00031 MULLEWA AS -28.53 115.5 282.9 19570101 19631231 949999 00032 WONGANHILLS RESEARCH STATION AS -30.83 116.72 304.8 19810101 19820930 949999 00033 NORTHAMPTON (NOKANENA) AS -28.35 114.58 150.0 19740214 19820930 949999 00034 PERTH (NEDLANDS) AS -31.9 115.9 19.5 19670501 19740329 949999 00035 ROTTNEST ISLAND AS -32.0 115.5 47.0 19650101 19821031 949999 00036 UPPERSWAN RESEARCH STATION AS -31.77 116.02 15.0 19650101 19820630 949999 00037 LANCELIN AS -31.02 115.33 5.0 19651007 19821031 949999 00038 BENTLEY SOUTH AS -32.0 115.88 19.0 19751001 19820930 949999 00039 ALBANYTOWN AS -35.02 117.88 13.0 19591231 19650901 949999 00040 BUSSELTON POST OFFICE AS -33.65 115.33 4.0 19570101 19631231 949999 00041 DONNYBROOK POST OFFICE AS -33.57 115.82 63.0 19570101 19631231 949999 00042 ESPERANCE POST OFFICE AS -33.85 121.88 4.3 19570101 19690628 949999 00043 MANJIMUP POST OFFICE AS -34.23 116.15 280.1 19570101 19631231 949999 00044 MOUNT BARKER POST OFFICE AS -34.63 117.67 253.0 19570101 19631231 949999 00045 COLLIE POST OFFICE AS -33.37 116.15 190.0 19570101 19631231 949999 00046 ESPERANCE DOWNS RESEARCH STATION AS -33.62 121.8 158.5 19650102 19821031 949999 00047 WOKALUP RESEARCH STATION AS -33.13 115.88 116.0 19720102 19820930 949999 00048 DENMARK (KORDABUPDOWNS) AS -34.93 117.13 190.0 19690731 19700609 949999 00049 ECLIPSEISL. LIGHT HOUSE AS -35.18 117.88 118.0 19570101 19730419 949999 00050 JARRAHWOOD AS -33.8 115.67 130.0 19750801 19821031 949999 00051 FRANKLAND VINEYARDS AS -34.45 116.98 300.0 19751202 19820930 949999 00052 KELLERBERRIN POST OFFICE AS -31.63 117.72 248.1 19570101 19641231 949999 00053 MERREDIN RESEARCH STATION AS -31.52 118.2 317.6 19720501 19821031 949999 00054 YORK POST OFFICE AS -31.88 116.75 175.0 19570102 19641231 949999 00055 MURESK AGRICULTURAL AS -31.75 116.68 166.0 19570101 19811218 949999 00056 BAKERSHILLCSIROYALANBEEE AS -31.75 116.47 305.0 19660101 19821031 949999 00057 GLENLOSSIE FIELD STATION AS -33.82 117.17 329.8 19650101 19650630 949999 00058 KOJONUP POST OFFICE AS -33.83 117.15 304.8 19750501 19821031 949999 00059 LAVERTON AS -28.63 122.4 461.0 19570101 19641231 949999 00060 SALMONGUMS RESEARCH STATION AS -32.98 121.62 249.0 19730601 19821031 949999 00061 TELFER AS -21.72 122.2 303.0 19741101 19820930 949999 00062 MIDDLEPOINT RESEARCH STATION AS -12.58 131.32 10.0 19711231 19821030 949999 00063 SNAKE BAY AS -11.42 130.67 15.0 19650101 19791029 949999 00064 MILTON SPRINGS AS -13.22 131.0 152.0 19701231 19740519 949999 00065 DARWIN UNIVERSITY OFFICE AS -12.47 130.83 40.2 19661231 19731231 949999 00066 GROSE ISLAND AS -12.65 130.37 2.7 19691007 19711231 949999 00067 JABIRU AIRPORT AS -12.67 132.9 25.0 19771031 19821031 949999 00068 YIRRKALA MISSION AS -12.25 136.88 9.1 19611231 19750430 949999 00069 GOVE AIRPORT AS -12.28 136.82 50.0 19681231 19730629 949999 00070 NHULUNBUY (WALLABY BEACH) AS -12.2 136.72 7.0 19790430 19820929 949999 00071 NGUKURR (ROPER RIVER) AS -14.73 134.73 32.9 19611231 19711031 949999 00072 DALYWATERS POLICE STATION AS -16.27 133.38 214.0 19700430 19820630 949999 00073 DALYWATERSAMO AS -16.27 133.38 214.3 19390430 19700430 949999 00074 BULMAN AS -13.67 134.33 192.0 19701104 19710930 949999 00075 BORROLOOLA AS -16.07 136.3 18.0 19561231 19641231 949999 00076 VANDERLINISMIMETS AS -15.83 137.05 3.7 19661231 19730331 949999 00077 HOOKER CREEK AS -18.33 130.63 320.0 19711231 19740628 949999 00078 KEEPRIVERNTA AS -15.42 129.17 21.3 19701211 19740623 949999 00079 DOUGLAS EXPERIMENTAL SITE AS -13.8 131.2 42.8 19671231 19770929 949999 00080 KATHERINEAERO AS -14.45 132.27 110.0 19440101 19730207 949999 00081 DALY RIVER (WOOLIANNA) AS -13.68 130.63 16.0 19711231 19791231 949999 00082 TIPPERARY AS -13.73 131.03 73.0 19690430 19710731 949999 00083 PINE CREEK POST OFFICE AS -13.82 131.83 189.0 19561231 19641231 949999 00084 WONARAH AS -19.9 136.33 242.0 19561231 19641231 949999 00085 TENNANTCRK POST OFFICE AS -19.63 134.18 277.0 19561231 19641231 949999 00086 NEWCASTLE WATERSP.O. AS -17.38 133.4 212.0 19561231 19791231 949999 00087 BARROWCRK POST OFFICE AS -21.53 133.88 512.0 19631231 19821031 949999 00088 FINKE POST OFFICE AS -25.58 134.57 267.0 19561231 19641231 949999 00089 RABBIT FLAT AS -20.22 130.02 339.5 19690820 19821031 949999 00090 LAKE TORRENS AS -31.88 137.72 31.0 19730610 19791231 949999 00091 LEIGH CREEK AERO AS -30.47 138.42 193.0 19520101 19820630 949999 00092 LEIGH CREEK SOUTHAERO AS -30.6 138.43 259.0 19820531 19820930 949999 00093 FOWLERS BAY AS -31.98 132.45 4.9 19570101 19670512 949999 00094 MINNIPA RESEARCH CENTRE AS -32.83 135.15 168.0 19641231 19821031 949999 00095 MARALINGA AS -30.15 131.58 290.0 19550508 19671219 949999 00096 POLDABASIN AS -33.5 135.33 37.0 19711231 19821031 949999 00097 TOD RIVER RESERVOIR EWS AS -34.48 135.85 113.0 19730123 19821030 949999 00098 PORT AUGUSTA POST OFFICE AS -32.5 137.77 6.0 19561231 19690204 949999 00099 PORT AUGUSTA POWER STATION AS -32.53 137.78 8.0 19620630 19821031 949999 00100 BUNDALEER FOREST RESERVE AS AR KM89 34.1 -93.066 0.0 19720103 19820930 949999 00101 CLARE POST OFFICE AS -33.83 138.62 398.0 19561231 19641231 949999 00102 GEORGETOWN POST OFFICE AS -33.37 138.4 273.0 19561231 19631231 949999 00103 PRICE (OCEANSALT) AS -34.3 137.98 18.0 19720103 19820929 949999 00104 ALTHORPE ISLAND LIGHT HOUSE AS -35.37 136.87 89.0 19680525 19811031 949999 00105 TROUBRIDGE SHOAL LIGHT HOUSE AS -35.12 137.83 4.0 19690131 19810120 949999 00106 CAPE DECOUEDIC AS -36.07 136.72 88.7 19671031 19730731 949999 00107 PARNDANA EAST RESEARCH STATION AS -35.8 137.33 156.0 19611231 19821031 949999 00108 ADELAIDE (WEST TERRACE) AS -34.93 138.58 40.0 19541231 19790227 949999 00109 PENFIELD WEAPONS RESEARCH AS -34.73 138.65 26.0 19570131 19790430 949999 00110 ROSEWORTHY AGRICULTURAL AS -34.53 138.68 114.0 19561231 19821031 949999 00111 GLENOSMONDWAITE INSTITUTE AS -34.97 138.63 121.9 19671231 19820929 949999 00112 PARAFIELD PLANT INTRODUCTION AS -34.78 138.63 16.0 19561231 19821030 949999 00113 NORTHFIELD RESEARCH CENTRE AS -34.85 138.65 77.0 19711231 19821030 949999 00114 MALLALAAMO AS -34.42 138.5 44.0 19420120 19531231 949999 00115 KAPUNDA POST OFFICE AS -34.35 138.92 245.0 19561231 19631231 949999 00116 TURRET FIELD RESEARCH CENTRE AS -34.55 138.83 116.0 19611231 19821031 949999 00117 BELAIR (KALYRA) AS -35.0 138.62 304.8 19620101 19631231 949999 00118 MOUNT BARKER POST OFFICE AS -35.07 138.87 330.0 19561231 19631231 949999 00119 MYPONGA POST OFFICE AS -35.4 138.47 226.0 19561231 19631231 949999 00120 STIRLING AS -35.03 138.72 496.2 19561231 19640630 949999 00121 STRATHALBYN POST OFFICE AS -35.27 138.88 71.0 19561231 19631230 949999 00122 LENSWOOD RESEARCH CENTRE AS -34.95 138.82 457.0 19711231 19821030 949999 00123 BERRI IRRIGATION AS -34.28 140.6 65.5 19611231 19631231 949999 00124 WAIKERIE (E&WS) AS -34.18 140.0 30.0 19570101 19720428 949999 00125 BERRI POST OFFICE AS -34.28 140.6 31.7 19611231 19641231 949999 00126 WAIKERIEAERO AS -34.18 140.02 54.9 19700111 19711201 949999 00127 WAIKERIE (GOLDEN HEIGHTS)WAS AS -34.2 139.95 58.0 19720103 19820929 949999 00128 TAILEMBEND AS -35.25 139.45 21.0 19610203 19641231 949999 00129 CALIPHCSIRO AS -34.63 140.25 61.0 19740731 19820929 949999 00130 KYBYBOLITE AS -36.88 140.93 91.0 19711231 19821030 949999 00131 LUCINDALE POST OFFICE AS -36.98 140.37 31.0 19611231 19631231 949999 00132 MOUNT BURR FOREST RESERVE AS -37.57 140.43 64.0 19561231 19820930 949999 00133 CAPE JAFFA LIGHT HOUSE AS -36.95 139.58 14.0 19641231 19730228 949999 00134 KONETTAEWS AS -37.27 140.12 11.0 19701202 19810629 949999 00135 STRUAN RESEARCH CENTRE AS -37.1 140.8 37.0 19740331 19820930 949999 00136 PADTHAWAY (LINDEMANS) AS -36.6 140.48 37.0 19820430 19821031 949999 00137 KARUMBA FLYING BASE AS -17.47 140.83 9.0 19401130 19501231 949999 00138 TOORAKFIELD STATION AS -21.03 141.8 144.0 19680630 19820629 949999 00139 MOUNT ISA POST OFFICE AS -20.73 139.48 357.5 19561231 19641231 949999 00140 MOUNT ISAMINES AS -20.73 139.5 386.6 19641231 19820930 949999 00141 MOUNT SURPRISE AS -18.15 144.32 453.0 19561231 19780910 949999 00142 COOKTOWNAMO AS -15.47 145.25 5.5 19390331 19460617 949999 00143 HERBERTON POST OFFICE AS -17.38 145.38 899.0 19561231 19631231 949999 00144 KAIRI RESEARCH STATION AS -17.2 145.57 715.0 19641231 19820929 949999 00145 MAREEBAQWRC AS -17.0 145.43 335.0 19561231 19820830 949999 00146 PARADA RESEARCH STATION AS -17.15 145.25 484.6 19641231 19760629 949999 00147 KOOMBOOLOOMBADAM AS -17.83 145.6 732.0 19650731 19821030 949999 00148 FITZROY ISLAND AS -16.93 146.0 106.7 19680630 19821031 949999 00149 WALKAMINDPI AS -17.13 145.43 591.0 19680630 19821030 949999 00150 SOUTH JOHNSTON EEXP STATION AS -17.6 146.0 180.0 19730831 19820530 949999 00151 PIN-GINHILL AS -17.53 145.8 39.6 19641231 19661231 949999 00152 TOWNSVILLE (ROSS RIVER) AS -19.3 146.78 19390331 19401031 949999 00153 AYRDPI RESEARCH STATION AS -19.62 147.38 10.0 19641231 19821030 949999 00154 HAYMAN ISLAND AS -20.05 148.88 3.4 19790930 19821031 949999 00155 MACKAY AIRPORT /MO1943-1945 AS -21.17 149.18 6.0 19561231 19591225 949999 00156 MACKAY (TEKOWAI SUGAR EXP.STATION) AS -21.17 149.12 14.0 19681130 19820930 949999 00157 MILLAROO AS -20.07 147.28 44.0 19711231 19820830 949999 00158 THEODORE (BRIGALOWRES.STN.N AS -24.83 149.8 155.0 19680630 19821030 949999 00159 ISISFORD POST OFFICE AS -24.27 144.43 205.0 19561231 19820929 949999 00160 LONGREACH POST OFFICE AS -23.45 144.25 191.4 19561231 19641231 949999 00161 BILOELADPI RESEARCH STATION AS -24.4 150.52 173.0 19661231 19840730 949999 00162 BULBURIN FORESTRY AS -24.53 151.47 602.0 19561231 19631231 949999 00163 KALPOWAR FORESTRY AS -24.7 151.32 339.0 19611231 19631231 949999 00164 THEODOREQWRC AS -24.95 150.08 141.0 19750101 19840430 949999 00165 HERON ISLAND AS -23.45 151.92 5.0 19611231 19791231 949999 00166 BUNDABERGAERO AS -24.9 152.32 31.4 19420208 19710104 949999 00167 NORTH REEF LIGHT HOUSE AS -23.18 151.9 3.0 19641231 19771217 949999 00168 NARAYEN (SPEARGRASS) AS -25.68 150.85 280.0 19700403 19840429 949999 00169 CALOUNDRA SIGNAL STATION AS -26.8 153.15 57.0 19700906 19840630 949999 00170 GATTON (LAWES) AS -27.55 152.33 29.0 19711231 19840429 949999 00171 IMBIL FORESTRY AS -26.47 152.67 105.0 19680101 19840629 949999 00172 SOMERSET DAM AS -27.12 152.55 110.0 19561231 19631231 949999 00173 SOUTHPORT AS -27.95 153.4 21.0 19561231 19631231 949999 00174 MOUNT TAMBORINE AS -27.98 153.2 525.0 19561231 19631231 949999 00175 ARCHER FIELD AIRPORT AS -27.57 153.0 11.0 19390331 19491117 949999 00176 SAMFORDCSIRO AS -27.37 152.88 53.0 19710519 19840430 949999 00177 ORMISTON (REDLANDS)H.R.S. AS -27.53 153.25 11.0 19730228 19840430 949999 00178 COOLANGATTAAERO AS -28.17 153.5 6.0 19611231 19711231 949999 00179 KIRKLEAGH AS -27.03 152.57 104.0 19711231 19840430 949999 00180 MOGGILLVET. RESEARCH FARM AS -27.53 152.92 39.6 19691130 19760129 949999 00181 COOLUMBOWLS CLUB AS -26.53 153.08 10.0 19690603 19811229 949999 00182 GAYNDAH (BRIAN PASTURES) AS -25.65 151.75 107.0 19680630 19840629 949999 00183 GATTONDPI RESEARCH STATION AS -27.53 152.33 95.0 19831130 19840629 949999 00184 JIMBOOMBA (GLEN LOGAN FIELD ST AS -27.83 153.0 20.0 19711231 19840630 949999 00185 WACOLDPI AS -27.58 152.9 17.0 19760930 19791231 949999 00186 WARWICK (HERMITAGE) AS -28.2 152.1 480.0 19641231 19840629 949999 00187 APPLETHORP EGBH RESEARCH STATION AS -28.62 151.95 870.0 19660630 19840531 949999 00188 INGLEWOOD TOBACCO RESEARCH AS -28.5 150.93 265.0 19730331 19840429 949999 00189 ADAVALE POST OFFICE AS -25.92 144.6 229.0 19611231 19631231 949999 00190 FOWLERS GAP RURAL INVESTIGATION AS -31.08 141.7 213.4 19730102 19731224 949999 00191 BROKENHILLP.O. (RLY STATION AS -31.97 141.45 305.0 19590430 19790228 949999 00192 LAKE VICTORIA STORAGE AS -34.05 141.27 42.7 19701231 19840629 949999 00193 BROKENHILLAERO AS -32.0 141.47 287.0 19451231 19670318 949999 00194 WENTWORTH POST OFFICE AS -34.12 141.92 37.0 19561231 19631231 949999 00195 COBAR POST OFFICE AS -31.5 145.8 250.5 19561231 19641231 949999 00196 GOODOOGA POST OFFICE AS -29.12 147.45 137.0 19701231 19811231 949999 00197 EUSTON POST OFFICE AS -34.58 142.73 61.0 19641231 19700130 949999 00198 CONDOBOLIN AGRICULTUAL RESEARCH STATION AS -33.07 147.23 189.0 19740131 19840731 949999 00199 CONDOBOLIN SOIL CONSERVATION AS -33.1 147.15 199.0 19691231 19840530 949999 00200 GILGANDRA POST OFFICE AS -31.72 148.67 27.8 19660102 19751231 949999 00201 TRANGIEAGRIC. RESEARCH STATION AS -31.98 147.95 215.0 19691231 19840629 949999 00202 NARROMINE AIRPORT AS -32.22 148.23 236.5 19700228 19740629 949999 00203 WARREN (AUSCOTT) AS -31.78 147.77 198.0 19681130 19751230 949999 00204 WALGETT POST OFFICE AS -30.02 148.12 133.0 19561231 19840630 949999 00205 MOREE POST OFFICE AS -29.5 149.9 207.3 19561231 19641231 949999 00206 BINGARA POST OFFICE AS -29.87 150.57 296.0 19650101 19751230 949999 00207 PINDARIDAM AS -29.4 151.23 472.0 19710802 19840730 949999 00208 GUNNEDAH SOIL CONSERVATION RESEARCH STATION AS -31.03 150.27 307.0 19641231 19840429 949999 00209 TAMWORTHAMO/MO.FROM1966 AS -31.08 150.85 411.0 19561231 19840731 949999 00210 BUNDARRA POST OFFICE AS -30.18 151.07 656.0 19670102 19691230 949999 00211 GLENINNES AGRICULTURAL RESEARCH STATION AS -29.7 151.7 1060.0 19700607 19840730 949999 00212 INVERELL SOIL CONSERVATION SERVICES AS -29.78 151.08 676.0 19641231 19840629 949999 00213 URBENVILLE STATE FOREST AS -28.47 152.55 365.8 19561231 19631231 949999 00214 TYALGUMCOODGEE STREET AS -28.37 153.22 61.0 19701231 19840630 949999 00215 ALSTONVILLE TROPICAL FRUIT RESEARCH AS -28.85 153.45 152.0 19671231 19840629 949999 00216 BELLINGEN POST OFFICE AS -30.45 152.9 22.9 19561231 19631231 949999 00217 BROOKLANA (BOBO NURSERY) AS -30.25 152.82 1097.3 19650201 19650225 949999 00218 SOUTH SOLITARY ISLAND AS -30.2 153.27 40.0 19680930 19751130 949999 00219 YARRAS (MOUNT SEAVIEW) AS -31.38 152.25 146.0 19711231 19840531 949999 00220 KULNURA (WILLIAM ROAD) AS -33.23 151.2 312.0 19700331 19810831 949999 00221 MUSWELLBROOK COUNCIL AS -32.25 150.88 144.2 19681231 19720630 949999 00222 RATHMINESAMO AS -33.05 151.6 9.0 19401231 19500730 949999 00223 SCONE SOIL CONSERVATION SERVICE AS -32.07 150.93 216.0 19641231 19840531 949999 00224 MARYVILLEHVRF AS -32.92 151.75 8.0 19681231 19840731 949999 00225 PATERSONTOCAL AGRIC AS -32.63 151.58 30.0 19711231 19840630 949999 00226 MAITLAND WEST AERO AS -32.7 151.47 24.7 19691231 19740630 949999 00227 CESSNOCKAERO AS -32.8 151.33 64.0 19710630 19730430 949999 00228 LOSTOCK DAM SITE AS -32.33 151.47 199.9 19711231 19840429 949999 00229 PEATSRIDGE (WARATAH ROAD) AS -33.32 151.25 280.0 19811002 19840531 949999 00230 BATHURST AGRICULTURAL RESEARCH STATION AS -33.43 149.57 713.0 19660103 19821031 949999 00231 COWRA POST OFFICE AS -33.9 148.7 19561231 19700430 949999 00232 COWRA SOIL CONSERVATION SERVICE AS -33.82 148.7 385.9 19641231 19820929 949999 00233 KATOOMBA COMPOSITE AS -33.72 150.3 1030.0 19561231 19631231 949999 00234 ORANGE POST OFFICE AS -33.28 149.1 864.4 19561231 19631231 949999 00235 ORANGE AGRICULTRAL RESEARCH STATION AS -33.33 149.07 929.9 19751231 19821030 949999 00236 BLACKHEATH M.C.A. AS -33.63 150.28 1052.0 19811231 19820131 949999 00237 CANOWINDRA POST OFFICE AS -33.57 148.67 300.0 19650101 19820129 949999 00238 MOLONG POST OFFICE AS -33.1 148.87 529.1 19561231 19631231 949999 00239 WELLINGTON (SCS RESEARCH STATION) AS -32.52 148.97 390.0 19641231 19820929 949999 00240 LUCASHTS (AUST ATOMIC ENERGY) AS -34.05 150.98 140.0 19611231 19821031 949999 00241 RIVERVIEW OBSERVATORY AS -33.83 151.17 22.9 19620326 19631230 949999 00242 HOLDSWORTHY AIR CAVALRY AS -33.95 150.95 19700215 19741130 949999 00243 MARSFIELDMACQUARIEUNI AS -33.78 151.12 46.0 19811231 19820930 949999 00244 PROSPECTDAMSEE AS -33.82 150.92 61.0 19740228 19821031 949999 00245 RICHMOND (HAWKESBURYAGRIC. AS -33.62 150.75 18.3 19711231 19750630 949999 00246 BADGERYS CREEK RESEARCH STATION AS -33.87 150.73 69.0 19711231 19820929 949999 00247 SCHOFIELDSAMO AS -33.77 150.87 19611231 19631231 949999 00248 MOSSVALE POST OFFICE AS -34.55 150.37 686.0 19561231 19760319 949999 00249 PORT KEMBLA SIGNAL STATION AS -34.48 150.92 11.0 19611231 19631231 949999 00250 CAMPBELLTOWN SWIMMING CENTRE AS -34.12 150.82 65.0 19720630 19751231 949999 00251 NAROOMA COMPOSITE AS -36.22 150.12 10.0 19680821 19700518 949999 00252 ULLADULLA AS -35.37 150.48 9.1 19561231 19791031 949999 00253 CANBERRA FORESTRY AS -35.3 149.1 581.0 19611231 19641231 949999 00254 GOULBURN AS -34.75 149.87 701.6 19581231 19701222 949999 00255 COOMA NORTH SMHEC AS -36.22 149.13 839.4 19691231 19710730 949999 00256 GOULBURN AEROCLUB AS -34.82 149.73 642.2 19590101 19730630 949999 00257 COOMA NORTH (GERINGAA VENUE) AS -36.22 149.13 860.0 19710630 19730530 949999 00258 URIARRA FOREST2 AS -35.3 148.92 625.0 19561231 19631231 949999 00259 KIANDRA CHALET AS -35.88 148.5 1395.4 19611231 19670331 949999 00260 SPENCERS CREEK AS -36.43 148.35 1767.8 19680801 19680831 949999 00261 GUTHEGA POWER STATION AS -36.35 148.4 1341.1 19620228 19631231 949999 00262 ALBURY GRAMMAR SCHOOL AS -36.07 146.93 182.9 19681231 19820929 949999 00263 BURRINJUCK DAM AS -35.0 148.6 398.0 19780531 19820929 949999 00264 TEMORA EXPERIMENTAL FARM AS -34.42 147.53 292.0 19671130 19710228 949999 00265 GUNDAGAISHIRE OFFICE AS -35.07 148.1 215.8 19401031 19421231 949999 00266 COOTAMUNDRAAERO AS -34.63 148.05 337.7 19710228 19760731 949999 00267 GUNDAGAI (OTWAYST) AS -35.07 148.1 289.9 19701231 19751030 949999 00268 WAGGAWAGGA EXPERIMENTAL FARM AS -35.05 147.35 219.2 19760731 19820930 949999 00269 GUNDAGAI (RIDGEST) AS -35.08 148.1 232.9 19720831 19720930 949999 00270 COROWA COMPOSITE AS -36.0 146.37 137.0 19561231 19771129 949999 00271 DENILIQUIN (FALKINERMEMORIA AS -35.37 145.05 91.4 19570101 19631231 949999 00272 LEETON BOWLING CLUB AS -34.55 146.42 152.0 19561231 19631231 949999 00273 MATHOURA STATE FOREST AS -35.82 144.9 76.0 19611231 19700205 949999 00274 NARRANDERA POST OFFICE AS -34.75 146.55 153.0 19641231 19821030 949999 00275 WAGGAWAGGA SOIL CONSERVATION SERVICE AS -35.13 147.32 222.0 19410820 19450930 949999 00276 DENILIQUINAMO AS -35.53 144.97 96.0 19440101 19470212 949999 00277 TOCUMWALAMO AS -35.78 145.57 114.0 19420101 19451130 949999 00278 URANQUINTYAMO AS -35.2 147.22 217.3 19611231 19820830 949999 00279 GRIFFITHCSIRO AS -34.32 146.07 127.1 19701231 19751230 949999 00280 MOULAMEIN POST OFFICE AS -35.08 144.03 71.6 19711231 19820930 949999 00281 NARADHAN POST OFFICE AS -33.62 146.33 192.0 19810531 19810630 949999 00282 YENDA POST OFFICE AS -34.25 146.2 129.0 19641231 19751030 949999 00283 MERBEINCSIRO RESEARCH STATION AS -34.17 142.07 56.4 19711231 19821030 949999 00284 WALPEUP RESEARCH AS -35.12 142.0 107.0 19561231 19641231 949999 00285 BEULAH POST OFFICE AS -35.95 142.42 89.0 19561231 19631231 949999 00286 SERVICETON AS -36.37 140.98 118.9 19700115 19821031 949999 00287 LONGERENONG AGRICULTURE COLLEGE AS -36.67 142.3 91.0 19561231 19820228 949999 00288 STARNAUD FORESTRY AS -36.62 143.27 239.0 19641231 19750730 949999 00289 ROCHESTER AS -36.35 144.7 104.9 19641231 19821031 949999 00290 KYABRAM RESEARCH STATION AS -36.33 145.07 104.0 19770630 19820929 949999 00291 NUMURKAH IRRIGATION RESEARCH AS -36.07 145.45 110.0 19731031 19751030 949999 00292 DOOKIEAG. AS -36.38 145.7 183.0 19650103 19720629 949999 00293 SHEPPARTONSRWSC AS -36.38 145.4 113.0 19641231 19821031 949999 00294 TATURAIRRIG RESEARCH INSTITUTE AS -36.43 145.27 114.0 19740731 19821031 949999 00295 WANALTA (DAEN STATION) AS -36.63 144.87 114.0 19711231 19821030 949999 00296 RUTHERGLEN RESEARCH AS -36.08 146.48 168.0 19731231 19821031 949999 00297 STRATHBOGIE AS -36.87 145.73 506.0 19561231 19641231 949999 00298 WODONGA EXPRESS AS -36.12 146.9 152.0 19750109 19820929 949999 00299 DARTMOUTH RESERVOIR AS -36.57 147.62 360.0 19611231 19631231 949999 00300 BOGONG AS -36.8 147.23 731.5 19561231 19631231 949999 00301 WOODS POINT AS -37.58 146.25 685.2 19561231 19700331 949999 00302 BAIRNSDALE POST OFFICE AS -37.82 147.62 18.0 19740331 19791031 949999 00303 TABBERABBERA (THE PINES) AS -37.58 147.37 116.0 19420701 19451130 949999 00304 BAIRNSDALEAERO AS -37.87 147.57 19611231 19631231 949999 00305 WARRAGUL POST OFFICE AS -38.17 145.93 116.0 19561231 19821031 949999 00306 YALLOURNSEC AS -38.18 146.37 155.1 19731231 19821030 949999 00307 MOONDARRA RESERVOIR AS -38.1 146.38 190.0 19741231 19821031 949999 00308 EASTTARWINNO.10 (MIRBOOPA AS -38.52 146.2 240.0 19720430 19741231 949999 00309 EASTTARWINNO.18 AS -38.52 146.25 365.8 19780719 19811025 949999 00310 NOOJEE PEARCE AS -37.88 146.02 261.0 19810731 19820228 949999 00311 DARRIMAN (OMEGA) AS -38.48 146.93 34.0 19641231 19730629 949999 00312 KEW AS -37.82 145.03 60.7 19611231 19631231 949999 00313 MORNINGTON POST OFFICE AS -38.23 145.03 46.0 19730228 19750630 949999 00314 POWELLTOWN AS -37.87 145.75 189.1 19711231 19821030 949999 00315 SCORESBY AS -37.87 145.23 62.0 19561231 19741030 949999 00316 TOORADIN AS -38.17 145.4 3.0 19641231 19820929 949999 00317 MOUNT STLEONARD POTATO FARM AS -37.57 145.5 603.0 19641231 19820629 949999 00318 ASPENDALECSIRO AS -38.03 145.1 6.0 19671130 19751031 949999 00319 FRANKSTONDEPT AGRICULTURE AS -38.12 145.18 27.0 19790831 19821030 949999 00320 BUNDOORA (LATROBE UNIVERSITY) AS -37.72 145.05 90.0 19561231 19631231 949999 00321 BALLAN (FISKVILLE) AS -37.6 144.2 442.0 19711231 19821030 949999 00322 DURDIDWARRAH AS -37.82 144.22 366.0 19561231 19631227 949999 00323 QUEENS CLIFF AS -38.27 144.67 15.2 19721231 19791231 949999 00324 WERRIBEE RESEARCH FARM AS -37.9 144.68 24.0 19651031 19700929 949999 00325 AVALON AIRPORT AS -38.03 144.47 11.0 19741130 19821031 949999 00326 BLACKWOOD ARMSTRONG AS -37.47 144.32 533.0 19730131 19750929 949999 00327 CRESWICK FORESTRY SCHOOL AS -37.43 143.9 452.0 19561231 19631231 949999 00328 KYNETON POST OFFICE AS -37.25 144.45 509.0 19650101 19651230 949999 00329 SEYMOUR AS -37.02 145.15 142.0 19731130 19821031 949999 00330 SPRING CREEK BASIN TWO AS -37.1 145.7 360.0 19611231 19631231 949999 00331 ARARAT POST OFFICE AS -37.28 142.95 332.2 19561231 19641231 949999 00332 LISMORE POST OFFICE AS -37.97 143.35 160.0 19820602 19821031 949999 00333 WARRAMBINENO2 (PARKER) AS -37.88 143.9 238.0 19720229 19820531 949999 00334 WARRAMBINEBASINNO3 AS -37.83 143.88 311.0 19561231 19631231 949999 00335 COLAC AS -38.33 143.6 134.1 19650103 19821030 949999 00336 HAMILTON RESEARCH STATION AS -37.82 142.07 205.0 19730930 19820606 949999 00337 PORTLANDAERO AS -38.38 141.63 38.0 19820607 19820930 949999 00338 PORTLAND (CASHMORE) AS -38.32 141.48 81.0 19690724 19781113 949999 00339 BRIDPORT POST OFFICE AS -41.0 147.4 14.0 19641231 19821031 949999 00340 CRESSY RESEARCH AS -41.72 147.08 150.0 19641231 19821030 949999 00341 ELLIOTT RESEARCH AS -41.08 145.77 152.0 19710414 19821031 949999 00342 PREOLENNA AS -41.08 145.55 251.0 19561231 19821031 949999 00343 QUOIBA AS -41.22 146.35 11.0 19561231 19641231 949999 00344 REDPA AS -40.93 144.83 82.0 19561231 19760229 949999 00345 STANLEY POST OFFICE AS -40.77 145.3 4.9 19730831 19821030 949999 00346 TEWKESBURY RESEARCH AS -41.23 145.7 460.0 19601231 19730331 949999 00347 WYNYARD AIRPORT AS -41.0 145.73 20.0 19561231 19641231 949999 00348 DEVONPORT AS -41.18 146.37 14.0 19601231 19820929 949999 00349 WYNYARDWEST (JACKSON STREET) AS -40.98 145.72 11.0 19681031 19710228 949999 00350 SCOTTSDALE KRAFT FOODS AS -41.15 147.52 199.9 19681231 19821030 949999 00351 FORTHSIDE AGRICULTURAL RESEARCH STATION AS -41.2 146.27 130.0 19610831 19620328 949999 00352 ROWELLA AS -41.18 146.92 20.1 19610831 19620328 949999 00353 SMITHTONAERO AS -40.83 145.08 19810101 19821031 949999 00354 GUNNS PLAINS AS -41.3 145.98 80.0 19710331 19821031 949999 00355 LAKE LEAKE CHALET AS -42.02 147.8 580.0 19440316 19580531 949999 00356 CAMBRIDGEAEROAMO AS -42.83 147.48 10.0 19561231 19820930 949999 00357 HASTINGS CHALET AS -43.42 146.88 40.0 19561231 19631231 949999 00358 RISDON AS -42.83 147.32 31.7 19500201 19500509 949999 00359 ROSNY AS -42.87 147.37 12.2 19641231 19770430 949999 00360 TASMAN LIGHT HOUSE AS -43.25 148.0 239.9 19711231 19720217 949999 00361 GEEVESTON FORESTRY AS -43.17 146.93 59.7 19561231 19631231 949999 00362 BUSHYPARK HOPS RESEARCH AS -42.72 146.88 76.2 19561231 19631230 949999 00363 BRONTEPARK AS -42.13 146.5 675.1 19561231 19631231 949999 00364 BUTLERS GORGE AS -42.28 146.27 666.0 19561231 19631231 949999 00365 SHANNONHEC AS -42.05 146.75 940.0 19561231 19710202 949999 00366 CAPE SORELL LIGHT HOUSE AS -42.2 145.17 22.3 19561231 19631231 949999 00367 WARATAH POST OFFICE AS -41.43 145.52 623.9 19611231 19631231 949999 00368 ZEEHAN POST OFFICE AS -41.88 145.33 172.2 19681231 19820930 949999 00369 SAVAGE RIVER AS -41.5 145.18 352.0 19670330 19691217 949999 00370 STRATHGORDON (THEKNOB) AS -42.73 145.98 304.8 19690911 19770131 951000 99999 NORTHERN ENDEAVOUR AS -10.617 125.98299999999999 37.0 20010705 20120310 951010 99999 TRUSCOTT AS -14.083 126.383 52.0 20040824 20200624 951110 99999 PORT KEATS AIRPORT AS -14.25 129.533 29.0 20010915 20200624 951200 99999 DARWIN AP COMPARISON AS -12.42 130.88 30.0 20041123 20070613 951210 99999 MIDDLE POINT AWS AS -12.6 131.3 15.0 20030330 20200624 951420 99999 MANINGRIDA AERO AS -12.05 134.233 29.0 20040608 20200624 951460 99999 NGAYAWILI AS -12.0 135.567 9.0 20010915 20200624 951809 99999 MORETONTELE GRAPHIC OFFICE AS -12.45 142.63 40.0 19680531 19821030 951810 99999 EDWARD RIV. MISSION AS -14.9 141.6 5.0 19860713 19870707 952040 99999 WEST ROEBUCK AS -17.9 122.31700000000001 32.0 19980301 20200624 952050 99999 DERBY AERO AS -17.367 123.667 7.0 19970101 20200624 952140 99999 WYNDHAM AERO AS -15.5 128.15 4.0 20010815 20200624 952150 99999 KIMBERLEY RES. STATION AS -15.65 128.717 31.0 20030331 20100831 952830 99999 COOKTOWN AIRPORT AS -15.45 145.183 6.0 20010915 20200624 952840 99999 WALKAMIN DPI AS -17.133 145.433 594.0 20010915 20200623 952850 99999 KAIRI RESEARCH STATION AS -17.217 145.567 714.0 20040713 20111024 952860 99999 MAREEBA AIRPORT AWS AS -17.067 145.433 473.0 20010915 20200624 952870 99999 NORMAN REEF AS -16.433 145.983 2.0 19971201 20130925 952880 99999 BOUGAINVILLE REEF AS -15.5 147.11700000000002 13.0 19930101 20200624 952890 99999 GREEN ISLAND AS -16.767 145.967 3.0 19930501 20100616 952900 99999 MOORE REEF AS -16.85 146.233 2.0 19971201 20130916 952910 99999 INGHAM COMPOSITE AS -18.65 146.183 12.0 19970101 20200618 952920 99999 SOUTH JOHNSTONE EXP STN AS -17.6 146.0 19.0 20010715 20200624 952930 99999 WOOLSHED AS -19.417 146.533 559.0 20010915 20200624 952950 99999 AYR DPI RESEARCH STN AS -19.617 147.38299999999998 12.0 19970101 20200624 952960 99999 AYR ALVA BEACH AS -19.45 147.483 8.0 19980301 20200624 952970 99999 HOOK REEF\AWS PO -19.733 149.167 3.0 19971205 20020512 952990 99999 WILLIS ISLAND COIMP AS -16.29 149.96 8.0 20041207 20060914 953030 99999 VARANUS ISLAND AS -20.65 115.56700000000001 24.0 20010915 20200624 953040 99999 BARROW ISLAND AIRPORT AS -20.883000000000003 115.4 7.0 20010915 20200624 953050 99999 ONSLOW AIRPORT AS -21.666999999999998 115.117 11.0 20010915 20200624 953070 99999 KARRATHA AERO AS -20.717 116.76700000000001 6.0 19941001 20200624 953080 99999 KARRATHA (KING BAY) AS -20.616999999999997 116.75 16.0 19910801 20010901 953100 99999 PARABURDOO AS -23.2 117.667 391.0 19810101 20021127 953120 99999 REDMONT AS -21.983 119.0 387.0 19900206 19950825 953139 99999 SANDHILL AS -22.78 119.62 433.7 19810901 19810930 953140 99999 NEWMAN AS -23.35 119.71700000000001 545.0 19831013 19971231 953150 99999 MOUNT PHILLIP AS -24.4 116.3 300.0 19900206 20130224 953160 99999 TOM PRICE AS -22.7 117.76700000000001 746.0 20010916 20110428 953170 99999 MARBLE BAR AS -21.183000000000003 119.75 183.0 20010915 20200624 953180 99999 MOUNT AUGUSTUS AS -24.3 116.917 337.0 20011007 20030912 953220 99999 RABBIT FLAT AS -20.183 130.017 339.0 20010915 20200624 953230 99999 ARLTUNGA AS -23.467 134.683 664.0 20010915 20200624 953510 99999 BLACKALL AIRPORT AS -24.416999999999998 145.433 282.0 20030330 20200624 953620 99999 SPRINGSURE DAME ST AS -24.116999999999997 148.083 345.0 19920801 20200623 953660 99999 TE KOWAI EXP STN AS -21.166999999999998 149.11700000000002 14.0 20030330 20120604 953670 99999 MACKAY AERO AS -21.166999999999998 149.183 6.0 19960201 20170501 953690 99999 ST LAWRENCE AS -22.35 149.517 10.0 20041123 20200624 953700 99999 WILLIAMSON AS -22.47 150.18 28.0 20050722 20200624 953760 99999 BRIGALOW RESEARCH STN AS -24.833000000000002 149.8 168.0 20030330 20110405 954000 99999 THREE RIVERS AS -25.116999999999997 119.15 522.0 19900216 20041101 954020 99999 SHARK BAY AIRPORT AS -25.9 113.583 34.0 20010915 20200624 954450 99999 NAME AND LOC UNKN AS 19740501 19780808 954480 99999 LEINSTER AERO AS -27.85 120.7 498.0 19941001 20200624 954580 99999 COOBER PEDY AIRPORT AS -29.033 134.717 226.0 19970101 20200624 954620 99999 ULURU RANGERS AS -25.366999999999997 131.017 530.0 20010915 20030409 954800 99999 MARREE AERO AS -29.666999999999998 138.067 51.0 20010709 20200624 954810 99999 MOOMBA AIRPORT AS -28.1 140.2 38.0 19960201 20200624 954820 99999 BIRDSVILLE AS YBDV -25.898000000000003 139.34799999999998 47.9 20010915 20200624 954850 99999 TIBOOBURRA AS YTIB -29.451 142.058 178.0 20010915 20200624 954870 99999 BALLERA GAS FIELD AS -27.416999999999998 141.817 115.0 20030330 20200624 954920 99999 THARGOMINDAH AS YTGM -27.986 143.811 132.0 20010705 20200624 955020 99999 DUMONT FRE-BASE AY -66.667 140.017 41.0 19730101 19850630 955120 99999 BREWARRINA HOSPITAL AS -29.95 146.85 115.0 19650101 20200623 955200 99999 COLLARENBRI (ALBERT STREET) AS -29.55 148.583 145.0 19660102 20200623 955270 99999 MOREE AERO AS -29.491 149.846 218.5 19950701 20200624 955290 99999 MILES CONSTANCE STREET AS -26.65 150.183 305.0 20010705 20200624 955330 99999 TEXAS POST OFFICE AS -28.85 151.167 297.0 19921201 20200623 955410 99999 INVERELL (RAGLAN ST) AS -29.783 151.11700000000002 636.0 19980301 20200624 955430 99999 GAYNDAH AIRPORT AS -25.616999999999997 151.61700000000002 112.0 20030330 20200624 955510 99999 TOOWOOMBA AIRPORT AS -27.55 151.917 642.0 19980301 20200624 955550 99999 WARWICK AS -28.217 152.017 477.0 19900201 20100210 955650 99999 HERVEY BAY AIRPORT AS -25.316999999999997 152.88299999999998 15.0 20010915 20200624 955660 99999 BEERBURRUM FOREST STATION AS -26.95 152.967 36.0 20010701 20200624 955700 99999 GRAFTON AIRPORT AS -29.75 153.033 26.0 20070228 20200624 955710 99999 GRAFTON RESEARCH STN AS -29.616999999999997 152.967 26.0 20030330 20200624 955720 99999 NAMBOUR DPI-HILLSIDE AS -26.65 152.933 33.0 19650103 20200624 955730 99999 IGLEVOOD FOREST AS -28.35 150.95 384.0 19920901 20141211 955740 99999 TEWANTIN AS -26.383000000000003 153.033 8.0 19900201 19960306 955750 99999 BEAUDESERT DRUMLEY ST AS -27.967 152.983 48.0 20080429 20200624 955810 99999 LONGAN CITY WATER TREATMENT AS -27.7 153.2 10.0 19970101 20200623 955900 99999 REDCLIFFE AS -27.25 153.1 2.0 19860411 20040204 955910 99999 REDCLIFFE AS -27.217 153.1 13.0 19900201 20200624 956000 99999 JURIEN BAY AS -30.3 115.03299999999999 5.0 19691021 20200624 956010 99999 WONGAN HILLS RES. STATION AS -30.833000000000002 116.73299999999999 305.0 20030331 20131001 956020 99999 BUSSELTON JETTY AS -33.633 115.333 3.0 20010701 20200624 956030 99999 KELLERBERRIN AS -31.616999999999997 117.71700000000001 250.0 20030331 20200618 956040 99999 GOSNELLS CITY AS -32.05 115.98299999999999 10.0 19970101 20200621 956050 99999 FREMANTLE EAST AS -32.05 115.76700000000001 4.0 19910201 19990531 956060 99999 LANCELIN AS -31.017 115.31700000000001 5.0 19900201 20200624 956070 99999 GARDEN ISLAND HSF AS -32.233000000000004 115.68299999999999 6.0 19851128 20200624 956080 99999 MEDINA RESEARCH CENTRE AS -32.217 115.8 14.0 19950101 20180112 956100 99999 KALAMUNDA BICKLEY AS -32.016999999999996 116.133 385.0 19910601 20200624 956110 99999 BUSSELTON AERO AS -33.683 115.4 17.0 19900206 20200624 956120 99999 GINGIN AERO AS -31.467 115.867 75.0 19980301 20200624 956130 99999 PEMBERTON AS -34.45 116.03299999999999 175.0 19570101 20200624 956140 99999 KARNET AS -32.433 116.06700000000001 286.0 19730101 20200624 956150 99999 BEVERLEY AS -32.1 116.917 199.0 20010916 20200624 956160 99999 PINGELLY AS -32.533 117.083 297.0 20010916 20200624 956170 99999 SHANNON AS -34.583 116.35 191.0 19980301 20200624 956180 99999 WAGIN AS -33.3 117.333 256.0 19900206 20200624 956190 99999 KOJUNUP AS -33.833 117.15 305.0 19910101 19980415 956210 99999 COLLIE EAST AS -33.367 116.167 200.0 20030211 20200624 956220 99999 DONNYBROOK AS -33.567 115.81700000000001 63.0 20010916 20200624 956230 99999 JARRAHWOOD AS -33.8 115.65 130.0 20030330 20200624 956240 99999 MERREDIN AS -31.467 118.26700000000001 315.0 19660101 20200624 956250 99999 CUNDERDIN AIRFIELD AS -31.616999999999997 117.21700000000001 217.0 19980301 20200624 956260 99999 NAREMBEEN AS -32.067 118.4 276.0 19900207 20200623 956270 99999 HYDEN COMPOSITE AS -32.45 118.9 299.0 19900206 20200624 956280 99999 ONGERUP AS -33.95 118.48299999999999 288.0 19720101 20200624 956290 99999 DALWALLINU AS -30.283 116.667 326.0 19980301 20200624 956300 99999 BUSSELTON AS -33.65 115.31700000000001 4.0 20010701 20111123 956310 99999 GOOMALLING AS -31.3 116.833 239.0 20030331 20200624 956320 99999 BRIDGETOWN AS -33.95 116.133 179.0 20010818 20200624 956330 99999 SOUTHERN CROSS MT AS -30.383000000000003 120.15 501.0 19980301 20010430 956340 99999 SOUTHERN CROSS AIRFIELD AS -31.233 119.35 348.0 19980301 20200624 956350 99999 HOPETOWN NORTH AS -33.933 120.133 27.0 19980301 20200624 956360 99999 JACUP AS -33.883 119.1 306.0 19941001 20200624 956370 99999 LAKE GRACE AS -33.1 118.46700000000001 286.0 20010915 20200624 956380 99999 ESPERANCE AERO AS -33.683 121.833 144.0 19910501 20200624 956390 99999 SALMON GUMS RES. STN AS -32.983000000000004 121.617 249.0 20010701 20200624 956400 99999 WANDERING AS -32.667 116.667 275.0 20010701 20200624 956410 99999 WITCHCLIFFE AS -34.033 115.1 81.0 20010915 20200624 956420 99999 NORSEMAN AERO AS -32.217 121.75 263.0 20010814 20200624 956430 99999 HARVEY AS -33.083 115.883 40.0 20010916 20140530 956440 99999 MUNGLINUP WEST AS -33.55 120.7 220.0 20030330 20200624 956450 99999 CAIGUNA ASA AS -32.265 125.48899999999999 110.0 19750429 20200624 956460 99999 FORREST AS YFRT -30.833000000000002 128.11700000000002 160.0 19930501 20200624 956470 99999 NORTH WALPOLE AS -34.95 116.71700000000001 74.0 20040706 20200624 956540 99999 WUDINNA AERO AS -33.05 135.45 87.0 20010901 20200624 956550 99999 NONNING AS -32.516999999999996 136.483 200.0 19900201 20121203 956560 99999 GUM VIEW AS -33.516999999999996 135.283 37.0 20010922 20050924 956570 99999 PORT PIRIE AERODROME AS -33.233000000000004 138.0 12.0 20070228 20150109 956580 99999 OLYMPIC DAM AERODROME AS -30.483 136.88299999999998 100.0 20010915 20200624 956590 99999 MINLATON AERO AS -34.75 137.517 32.0 19920801 20200624 956600 99999 ANDAMOOKA AS -30.45 137.167 76.0 19900201 20200623 956610 99999 PORT LINCOLN AERO AS -34.6 135.88299999999998 8.0 19920801 20081231 956620 99999 MINNIPA DPI AS -32.85 135.15 166.0 19980301 20200624 956630 99999 CUMMINS AERO AS YCMM -34.25 135.717 58.0 20071016 20200624 956640 99999 WHYALLA AS YWHA -33.059 137.514 12.5 19920801 20200624 956660 99999 PORT AUGUSTA ARID LANDS AS -32.516999999999996 137.717 14.0 19970101 20200624 956670 99999 CLARE HIGH SCHOOL AS -33.817 138.6 396.0 19941001 20200624 956680 99999 GLUEPOT AS -33.766999999999996 140.11700000000002 55.0 20010915 20200623 956690 99999 PRICE AS -34.3 138.0 7.0 20010916 20200623 956700 99999 RAYVILLE PARK AS -33.783 138.217 109.0 20010914 20200624 956710 99999 ROSEWORTHY AG COLLEGE AS -34.516999999999996 138.683 65.0 20010701 20200624 956720 99999 ADELAIDE AIRPORT OL AS -34.95 138.533 6.0 20041109 20050130 956740 99999 TURRETFIELD RESEARCH CENTRE AS -34.55 138.833 116.0 20030330 20200201 956750 99999 BLACK POLE AS -34.733000000000004 138.467 8.0 20020102 20200624 956760 99999 EDINBURGH AS YPED -34.703 138.621 20.4 19721117 20200624 956770 99999 ADELAIDE PARAFIELD AS YPPF -34.793 138.63299999999998 17.4 19390331 20200624 956780 99999 MOUNT LOFTY AS -34.967 138.7 730.0 19860108 20200624 956870 99999 RENMARK AERO AS -34.2 140.683 32.0 19960201 20200624 956889 99999 WANBI RESEARCH CENTRE AS -34.78 140.28 77.0 19681231 19820930 956920 99999 POONCARIE MAIL AGENCY AS -33.383 142.567 53.0 20030330 20200623 956950 99999 WILCANNIA AERODROME AWS AS -31.517 143.38299999999998 95.0 20010915 20200624 956970 99999 IVANHOE AERODROME AWS AS -32.883 144.317 100.0 20010915 20200624 956990 99999 WHITE CLIFFS AWS AS -30.85 143.07 158.0 20050722 20200624 957030 99999 BOURKE ARPT AS -30.033 145.95 108.0 19970101 19990131 957040 99999 GRIFFITH AIRPORT AWS AS -34.25 146.067 135.0 19700821 20200624 957050 99999 YANCO AGRICULTURAL INSTITUTE AS -34.617 146.433 164.0 20010824 20200624 957060 99999 NARRANDERA AS YNAR -34.702 146.512 144.5 19691231 20200624 957070 99999 LAKE CARGELLIGO AIRPORT AS -33.283 146.36700000000002 169.0 19820630 20200623 957080 99999 CONDOBOLIN AIRPORT AS -33.067 147.217 194.0 19941001 20200624 957090 99999 WEST WYALONG AIRPORT AWS AS -33.933 147.2 258.0 20010915 20200624 957100 99999 TRANGIE RESEARCH STATION AS -31.983 147.95 216.0 20010915 20200624 957119 99999 WEST WYALONG AIRPORT AS -33.93 147.2 262.0 19651231 19840629 957130 99999 BARADINE FORESTRY AS -30.95 149.067 302.0 20030330 20120726 957150 99999 WALGETT AIRPORT AS -30.033 148.11700000000002 134.0 19941001 20200624 957160 99999 GOULBURN AIRPORT AWS AS -34.817 149.733 641.0 19900201 20200624 957170 99999 PARKES AIRPORT AS -33.133 148.233 324.0 19691231 20200624 957180 99999 COONAMBLE AIRPORT AS -30.983 148.38299999999998 182.0 20010915 20200624 957190 99999 DUBBO AIRPORT AWS AS -32.217 148.567 285.0 19970101 20200624 957200 99999 COWRA RESEARCH STN AS -33.817 148.7 386.0 19900201 20110114 957210 99999 COWRA AIRPORT AWS AS -33.85 148.65 297.0 20040824 20200624 957220 99999 TEMORA AIRPORT AS -34.433 147.517 281.0 19750705 20200624 957230 99999 YASS (RURAL FIRE SERVICE) AS -34.817 148.9 520.0 19900201 20180625 957250 99999 ORANGE AGRICULTURAL INSTITUTE AS -33.317 149.083 922.0 20030330 20200623 957260 99999 ORANGE AIRPORT AS -33.383 149.13299999999998 948.0 19980301 20200624 957270 99999 DUNEDOO AS -32.016999999999996 149.38299999999998 388.0 19900202 20200623 957280 99999 COONABARABRAN AIRPORT AWS AS -31.316999999999997 149.267 646.0 20030330 20200624 957340 99999 NARRABRI AIRPORT AWS AS -30.316999999999997 149.817 230.0 20030330 20200624 957350 99999 OBERON-SPRINGBANK AS -33.683 149.833 1190.0 19900201 20200623 957400 99999 GUNNEDAH AIRPORT AWS AS -30.95 150.25 263.0 20030330 20200624 957440 99999 SPRINGWOOD (VALLEY HEIGHTS) AS -33.7 150.567 362.0 20070228 20200623 957460 99999 QUIRINDI AS -31.5 150.667 390.0 19900202 20200616 957470 99999 MURRURUNDI GAP AWS AS -31.733 150.8 730.0 20040608 20200624 957480 99999 WOLLONGONG AIRPORT AS -34.567 150.783 8.0 20010915 20200624 957490 99999 KIAMA (BOMBO HEADLAND) AS -34.65 150.85 16.0 20040510 20200624 957500 99999 LIVERPOOL WHITLAM CENTRE AS -33.933 150.88299999999998 20.0 19810531 20130228 957520 99999 WATTAMOLLA AWS AS -34.133 151.11700000000002 44.0 20101007 20200624 957530 99999 RICHMOND RAAF AS -33.6 150.783 20.0 19970301 20200624 957540 99999 MERRIWA (ROSCOMMON) AS -32.183 150.167 376.0 20071016 20200624 957560 99999 KURNELL AWS AS -34.0 151.2 4.0 20101012 20200624 957580 99999 SCONE AIRPORT AS -32.033 150.833 223.0 19900201 20200624 957620 99999 TAMWORTH AIRPORT AWS AS -31.066999999999997 150.833 396.0 19921201 20081231 957640 99999 RIVERVIEW OBSERVATORY AS -33.833 151.15 40.0 19970101 20150109 957650 99999 SYDNEY OLYMPIC PARK AWS (ARCHERY CENTRE) AS -33.833 151.067 4.0 19960201 20200624 957660 99999 WEDDING CAKE WEST AS -33.83 151.267 6.0 19980301 20061212 957670 99999 LAKE MACQUARIE AWS AS -33.083 151.467 6.0 20080801 20200624 957680 99999 NORTH HEAD AS -33.817 151.3 90.0 19900201 19990831 957700 99999 NORAH HEAD LIGHTHOUSE AS -33.266999999999996 151.567 20.0 19950315 20200624 957710 99999 CESSNOCK AIRPORT AS -32.783 151.333 62.0 19970101 20200624 957720 99999 LOSTOCK DAM SITE AS -32.333 151.45 200.0 20010916 20200623 957730 99999 ARMIDALE AIRPORT AWS AS -30.533 151.61700000000002 1081.0 19970101 20200624 957740 99999 MANGROVE MOUNTAIN AWS AS -33.283 151.217 305.0 19970101 20200624 957750 99999 MAITLAND VISITORS CENTRE AS -32.75 151.567 5.0 20010915 20160707 957780 99999 FORSTER BEACH CARAVAN PARK AS -32.183 152.5 5.0 20010915 20200130 957790 99999 NELSON BAY (NELSON HEAD) AS -32.7 152.15 25.0 20030330 20200329 957840 99999 TAREE AIRPORT AWS AS -31.883000000000003 152.517 9.0 20010915 20200624 958050 99999 CAPE BORDA AWS AS -35.75 136.6 158.0 19750706 20200624 958060 99999 STENHOUSE BAY AS -35.283 136.933 44.0 19980301 20200624 958070 99999 KINGSTONE AERO AS -35.717 137.517 6.0 19970101 20200624 958100 99999 MOUNT CRAWFORD AS -34.7 138.933 395.0 19711231 20010905 958110 99999 ENCOUNTER BAY AS -35.55 138.6 8.0 20030401 20200623 958120 99999 MURRAY BRIDGE AS -35.117 139.267 33.0 19900201 20200623 958130 99999 KAROONDA AS -35.083 139.88299999999998 72.0 20030401 20200623 958140 99999 MENINGIE AS -35.7 139.333 3.0 19900201 20200623 958150 99999 MUNKORA AS -36.1 140.317 28.0 20030401 20200624 958160 99999 ROBE AIRFIELD AS -37.183 139.8 4.0 20040608 20200624 958170 99999 PENOLA AS -37.483000000000004 140.817 65.0 19900201 19940629 958180 99999 PALLAMANA AERODROME AS -35.067 139.233 46.0 20070228 20200624 958220 99999 DARTMOOR AS -37.917 141.267 51.0 20090801 20200624 958230 99999 PADTHAWAY SOUTH AS -36.65 140.517 35.0 20030401 20200624 958250 99999 CASTERTON AS -37.583 141.333 131.0 20050719 20200624 958270 99999 KANAGULK AS -37.117 141.8 189.0 20040824 20200624 958290 99999 NHILL AS -36.333 141.63299999999998 133.0 20040406 20081230 958310 99999 WALPEUP RESEARCH AS -35.117 142.0 105.0 20010915 20200624 958320 99999 EDENHOPE AIRPORT AS -37.016999999999996 141.267 155.0 20050719 20200624 958330 99999 KYABRAM (INST SUSTAINABLE AG) AS -36.333 145.067 104.0 19980302 20200624 958340 99999 HORSHAM POLKEMMET RD AS -36.65 142.067 141.0 19561231 20120407 958350 99999 LONGERENONG AS -36.667 142.3 133.0 19980301 20200624 958360 99999 TATURA INST SUSTAINABLE AG AS -36.433 145.267 114.0 20010701 20200624 958370 99999 RUTHERGLEN RESEARCH AS -36.1 146.5 175.0 19980301 20200624 958380 99999 EDI UPPER VINEYARD AS -36.733000000000004 146.467 365.0 19980301 20200213 958390 99999 HORSHAM AERODROME AS -36.667 142.167 134.0 20010810 20200624 958400 99999 WESTMERE AS -37.7 142.933 227.0 20070228 20200624 958420 99999 DONALD AS -36.383 143.0 118.0 19900201 20010414 958430 99999 STRATHBOGIE AS -36.85 145.733 502.0 20010921 20200623 958450 99999 MT GELLIBRAND AS -38.233000000000004 143.783 262.0 20010918 20200624 958509 99999 NEWBURY AS -37.42 144.28 768.1 19721231 19740831 958530 99999 CASTLEMAINE PRISON AS -37.067 144.233 330.0 19900201 20200623 958540 99999 ELLINBANK DAIRY AS -38.25 145.933 167.0 19980301 20000926 958550 99999 WEEAPROINAH AS -38.633 143.517 492.0 19900201 20120201 958569 99999 LORNEPIERHEAD AS -38.53 143.98 4.0 19691130 19821031 958589 99999 POINTLONSDALE LIGHT HOUSE AS -38.3 144.62 12.0 19611231 19821031 958629 99999 CAPE SCHANCK LIGHT HOUSE AS -38.5 144.88 79.3 19611231 19820929 958640 99999 ST KILDA HARBOUR (RMYS) AS -37.867 144.967 6.0 20110506 20200624 958660 99999 ESSENDON AIRPORT AS -37.733000000000004 144.9 79.0 19390331 20200624 958670 99999 SCORESBY RESEARCH INSTITUTE AS -37.867 145.25 80.0 19980301 20200624 958690 99999 DENILIQUIN AIRPORT AWS AS -35.567 144.95 95.0 20010918 20200624 958710 99999 LEMNOS AS -36.367 145.467 113.0 19900201 19960130 958720 99999 FAWKNER BEACON AS -37.95 144.933 17.0 20010701 20200624 958730 99999 LATROBE UNIVERSITY AS -37.717 145.05 83.0 20040422 20181216 958740 99999 VIEWBANK (ARPNSA) AS -37.733000000000004 145.1 66.0 20010715 20200624 958760 99999 TARRAWARRA AS -37.65 145.433 100.0 19900201 20030918 958810 99999 WONTHAGGI AS -38.6 145.583 42.0 19820805 20200624 958840 99999 OLSENS BRIDGE AS -38.483000000000004 146.317 183.0 19611231 19980225 958900 99999 YARRAM AIRPORT AS -38.567 146.75 18.0 20080429 20200624 958950 99999 COROWA AIRPORT AS -35.983000000000004 146.35 143.0 20010918 20200623 958960 99999 ALBURY AEROPORT AS -36.067 146.95 165.0 19941001 20200624 959010 99999 MT BAW BAW AS -37.833 146.267 1520.0 20010701 20200624 959040 99999 LAKES ENTRANCE AS -37.867 148.0 43.0 19650831 20200623 959060 99999 ADELONG AS -35.317 148.067 333.0 19900201 19950804 959070 99999 KHANCOBAN AS -36.217 148.13299999999998 337.0 19611231 20010515 959080 99999 THREDBO AS -36.5 148.3 1380.0 19940510 20200624 959090 99999 THREDBO AWS AS -36.5 148.283 1368.0 19900701 20200624 959110 99999 WAGGA WAGGA SCS AS -35.133 147.3 213.0 20030401 20040412 959120 99999 CHARLOTTE PASS (KOSCIUSKO CHALET) AS -36.433 148.333 1755.0 19970101 20150224 959130 99999 MT MOORNAPA AS -37.75 147.13299999999998 480.0 19941001 20200624 959160 99999 CABRAMURRA SMHEA AS -35.933 148.38299999999998 1483.0 19980301 20200624 959180 99999 ORBOST AS -37.683 148.467 63.0 20030401 20200624 959250 99999 MOUNT GININI AS -35.533 148.767 1760.0 20040921 20200624 959290 99999 MERIMBULA AIRPORT AS -36.917 149.9 2.0 20010918 20200624 959300 99999 MERIMBULA AIRPORT AS -36.9 149.9 2.0 19690731 19991020 959310 99999 BEGA AWS AS -36.667 149.817 42.0 19920801 20200624 959350 99999 NAROOMA RVCP AS -36.217 150.13299999999998 25.0 19930501 20200624 959360 99999 MELBOURNE (OLYMPIC PARK) AS -37.833 144.983 7.5 19661231 20200624 959370 99999 MORUYA AIRPORT AS -35.9 150.15 4.0 20010918 20200624 959400 99999 PT PERPENDICULAR AWS AS -35.083 150.8 84.0 20030401 20200624 959500 99999 WARATAH AS -41.45 145.517 615.0 19920930 20040330 959510 99999 QUEENSTOWN SOUTH AS -42.083 145.533 129.0 19681231 20021009 959520 99999 MOUNT READ AS -41.85 145.533 1120.0 19980301 20200624 959530 99999 STRATHGORDON VILLAGE AS -42.766999999999996 146.05 322.0 19691218 20151228 959540 99999 CAPE GRIM AS -40.667 144.683 561.0 19900201 20200624 959550 99999 LIAWENEE AS -41.883 146.667 1060.0 19860705 20030621 959560 99999 LUNCHERON HILL FORESTRY AS -41.15 145.15 340.0 19901210 20200624 959570 99999 WYNYARD AIRPORT AS -41.0 145.733 12.0 19910103 20200624 959580 99999 SCOTTS PEAK DAM AS -43.05 146.267 408.0 20010701 20200624 959590 99999 LIAWENEE AWS AS -41.9 146.667 1056.0 20030401 20200624 959600 99999 DEVONPORT AIRPORT AS -41.167 146.417 10.0 19910101 20200624 959610 99999 LOW ROCKY POINT (AWS) AS -42.983000000000004 145.5 35.0 19921001 20200624 959620 99999 WARRA AS -43.067 146.7 495.0 20041123 20200624 959640 99999 LOW HEAD AS -41.05 146.783 4.0 20010918 20200624 959650 99999 DEAL ISLAND AS -39.467 147.3 85.0 19900201 20010630 959660 99999 LAUNCESTON AIRPORT AS -41.55 147.217 168.0 20040824 20200624 959670 99999 CAPE BRUNY (CAPE BRUNY) AS -43.483000000000004 147.15 60.0 20010918 20200624 959680 99999 POWRANNA (TASMANIA FEEDLOT) AS -41.683 147.283 173.0 19920802 20081218 959690 99999 CRESSY RESEARCH STATION AS -41.733000000000004 147.083 150.0 19900401 20200624 959700 99999 TARRALEAH VILLAGE AS -42.3 146.45 585.0 19900401 20120831 959710 99999 GROVE RESEARCH STATION AS -42.983000000000004 147.067 63.0 19561231 20100209 959720 99999 CAMPANIA (KINKORA) AS -42.683 147.417 45.0 19900201 20200624 959730 99999 BRIDPORT (SEA VIEW VILLAS) AS -41.0 147.38299999999998 53.0 19970101 20180228 959740 99999 FINGAL (LEGGE STREET) AS -41.633 147.967 237.0 19900201 20200624 959750 99999 BULL BAY (LAURISTON) AS -43.1 147.36700000000002 46.0 19920801 20140712 959770 99999 GROVE (RESEARCH STATION) AS -42.983000000000004 147.067 65.0 20040824 20200624 959780 99999 LADY BARRON AERO AS -40.2 148.233 12.0 19941001 19960629 959790 99999 MT WELLINGTON AS -42.9 147.233 1260.5 19900501 20200624 959800 99999 SWAN ISLAND LIGHTHO AS -40.733000000000004 148.11700000000002 9.0 19900201 20011022 959810 99999 ST HELENS AERODROME AS -41.333 148.267 49.0 20010918 20200624 959820 99999 STORYS CREEK AWS AS -41.617 147.733 781.0 19900201 19980601 959830 99999 SCAMANDER AS -41.467 148.267 3.0 19740228 20130328 959840 99999 ORFORD AS -42.55 147.86700000000002 15.0 19900201 20200623 959850 99999 SWAN ISLAND AWS AS -40.717 148.11700000000002 15.0 20030401 20200624 959860 99999 TASMAN ISLAND AS -43.233000000000004 148.0 241.0 20030401 20200624 959880 99999 MARIA ISLAND (POINT LESUEUR) AS -42.667 148.017 28.0 20040824 20200624 959890 99999 BICHENO (COUNCIL DEPOT) AS -41.867 148.3 11.0 19650101 20200623 959950 99999 LORD HOWE ISLAND WINDY POINT AS -31.533 159.067 4.0 20120920 20200624 959970 99999 HEARD ISLAND (ATLAS COVE) AS -53.016999999999996 73.4 4.0 19980301 20121220 960010 99999 MAIMUN SALEH ID WIAA 5.874 95.34 113.0 19490101 20200624 960011 99999 SRI AMAN / SIMANGGAN MY WBGY 1.217 111.45 11.0 20040706 20200624 960090 99999 MALIKUS SALEH ID WITM 5.227 96.95 27.4 19770901 20200624 960110 99999 SULTAN ISKANDARMUDA ID WITT 5.524 95.42 19.8 19600201 20200624 960150 99999 MEULABOH/CUT NYAK ID WITC 4.25 96.117 90.0 19810201 20200624 960330 99999 MEDAN/BELAWAN ID 3.8 98.7 3.0 19840501 20200624 960350 99999 POLONIA ID WIMM 3.5580000000000003 98.67200000000001 34.7 19460201 20200624 960390 99999 TEBINGTINGGI ID 3.367 99.117 90.0 19490701 20011108 960450 99999 TAPAK TUAN TEUKU ID 3.467 97.3 75.0 19990402 19990602 960550 99999 PENATANG SIANTAR ID 2.95 99.06700000000001 400.0 20030721 20030721 960650 99999 TARUTUNG ID 2.017 98.95 1076.0 20010827 20020603 960730 99999 PINANG SORE ID WIMS 1.556 98.889 13.1 19530101 20200624 960750 99999 BINAKA ID WIMB 1.166 97.705 6.1 19790601 20200624 960870 99999 BATAM/HANG NADIM ID 1.117 104.117 24.0 19860103 20200624 960910 99999 KIJANG ID WIKN 0.9229999999999999 104.53200000000001 18.0 19570630 20200624 961090 99999 SULTAN SYARIF KASIM II ID WIBB 0.461 101.445 31.1 19560103 20200624 961450 99999 TAREMPA ID 3.2 106.25 3.0 19510101 20200624 961470 99999 RANAI ID WION 3.909 108.38799999999999 2.1 19730109 20200624 961630 99999 TABING ID WIMG -0.875 100.352 2.7 19480101 20200624 961635 99999 MINANGKABAU ID WIPT -0.787 100.281 5.5 20080101 20081231 961710 99999 RENGAT/JAPURA ARPT ID WIBJ -0.35 102.333 18.6 19570630 20200624 961790 99999 DABO ID WIKS -0.479 104.579 30.0 19570630 20200624 961950 99999 SULTAN THAHA ID WIPA -1.6380000000000001 103.64399999999999 25.0 19511113 20200624 962070 99999 KERINCI/DEPATI PARB ID WIPH -2.767 101.367 782.0 19801001 20200624 962210 99999 SULTAN MAHMUD BADARUDDIN II ID WIPP -2.898 104.70100000000001 14.9 19480201 20200624 962215 99999 DEPATI AMIR ID WIPK -2.162 106.139 33.2 20070812 20080426 962370 99999 PANGKALPINANG ID WIKK -2.17 106.13 34.0 19520901 20200624 962490 99999 H AS HANANDJOEDDIN ID WIKD -2.7460000000000004 107.755 51.0 19490106 20200624 962530 99999 FATMAWATI SOEKARNO ID WIPL -3.864 102.339 15.2 19570630 20200624 962730 99999 MENGGALA/ASTRA KSET ID WIAG -4.45 105.18299999999999 19.0 19491201 20050219 962950 99999 RADIN INTEN II ID WIIT -5.242000000000001 105.179 88.0 19730101 20200624 963150 99999 BRUNEI INTL BX WBSB 4.944 114.928 22.3 19810101 20200624 963154 99999 BRUNEI INTL BX 4.95 114.917 22.0 19771108 19820828 963230 99999 KUALA BELAIT BX 4.583 114.2 3.0 19960801 20170120 964130 99999 KUCHING INTL MY WBGG 1.485 110.34700000000001 27.1 19490112 20200624 964210 99999 SIBU MY WBGS 2.262 111.985 37.2 19610831 20200624 964410 99999 BINTULU MY WBGB 3.1239999999999997 113.02 22.6 19490108 20200624 964490 99999 MIRI MY WBGR 4.322 113.98700000000001 18.0 19490111 20200624 964650 99999 LABUAN MY WBKL 5.301 115.25 30.8 19490329 20200624 964710 99999 KOTA KINABALU INTL MY WBKK 5.937 116.051 3.0 19490120 20200624 964770 99999 KUDAT MY WBKT 6.917000000000001 116.833 5.0 19890614 20200624 964810 99999 TAWAU MY WBKW 4.313 118.12200000000001 17.4 19790702 20200624 964910 99999 SANDAKAN MY WBKS 5.901 118.059 14.0 19490112 20200624 965050 99999 LONGBAWAN/JUVAI ID WRLB 3.733 115.68299999999999 550.0 19821001 20200624 965070 99999 BOGUS INDONESIA ID 19930501 19960909 965090 99999 TARAKAN/JUWATA ID WAQQ 3.333 117.56700000000001 6.0 19480101 20200624 965250 99999 TANJUNG SELOR ID WRLG 2.85 117.333 50.0 19881001 20200624 965290 99999 KALIMARAU ID WAQT 2.15 117.43299999999999 17.4 19950801 20200624 965330 99999 SINGKAWANG II ID WIOI 1.083 109.667 38.0 19520114 20050217 965350 99999 PALOH ID 1.767 109.3 15.0 19830401 20200624 965570 99999 NANGAPINOH ID -0.35 111.78299999999999 37.0 19821101 20200624 965590 99999 SUSILO ID WIOS 0.064 111.473 29.9 19510101 20200624 965650 99999 PUTUSSIBAU/PAGSUMA ID 0.883 112.93299999999999 0.0 19990314 20200624 965810 99999 SUPADIO ID WIOO -0.151 109.404 3.0 19480101 20200624 965830 99999 PONTIANAK CQ 0.0 109.333 4.0 19490103 19650930 965950 99999 MUARATEWE/BERINGIN ID WRBM -0.95 114.9 60.0 19510101 20200624 965970 99999 LONGIRAM ID -1.633 114.833 25.0 20020604 20020604 966070 99999 TEMINDUNG ID WRLS -0.485 117.15700000000001 10.0 19790601 20200624 966150 99999 RAHADI USMAN ID WIOK -1.817 109.963 14.0 19801001 20200624 966330 99999 SEPINGGAN ID WALL -1.268 116.89399999999999 3.7 19471101 20200624 966334 99999 ACHMAD YANI ID WARS -6.973 110.375 3.0 20080409 20081224 966335 99999 ADI SUTJIPTO ID WARJ -7.787999999999999 110.432 106.7 20061121 20120924 966336 99999 ADISUMARMO INTL ID WAHQ -7.5 110.75 127.4 20050111 20200624 966450 99999 ISKANDAR ID WRBI -2.705 111.67299999999999 25.0 19520101 20200624 966510 99999 SAMPIT/HAJI HASAN ID -2.517 112.95 27.0 19460101 20020531 966550 99999 TJILIK RIWUT ID WRBP -2.225 113.943 26.0 19771001 20200624 966850 99999 SYAMSUDIN NOOR ID WAOO -3.4419999999999997 114.76299999999999 20.1 19490103 20200624 966950 99999 KOTABARU/SETAGEN ID WRBK -3.4 116.21700000000001 18.0 19460801 20200624 967370 99999 SERANG ID -6.117000000000001 106.133 40.0 19420101 20200624 967390 99999 TANGERANG/BUDIARTO ARPT ID WIRR -6.3 106.56700000000001 46.0 19521101 20200624 967410 99999 JAKARTA/TANJUNG PRIOK ID -6.1 106.867 2.0 19730104 20200624 967429 99999 SOEKARNO HATA INTL ID WIII -6.15 106.71700000000001 0.0 19851201 19900701 967430 99999 JAKARTA/KEMAYORAN ID WIID -6.15 106.85 5.0 19490101 19870330 967450 99999 JAKARTA/OBSERVATORY ID -6.183 106.833 8.0 19420101 20200624 967470 99999 HALIM PERDANAKUSUMA INTL ID WIIH -6.267 106.891 26.0 19460101 20060718 967490 99999 SOEKARNO HATTA INTL ID WIII -6.126 106.656 10.4 19850402 20200624 967495 99999 HALIM PERDANAKUSUMA INTL ID WIHH -6.267 106.891 25.6 20050105 20200624 967510 99999 BOGOR/CITEKO ID -6.7 106.93299999999999 -999.9 19930401 20200624 967530 99999 BOGOR/DERMAGA ID -6.5 106.75 250.0 19730313 20050219 967550 99999 BOGOR/ATANG SANJAYA ID -6.55 106.9 171.0 19500401 20050218 967730 99999 KALIJATI ID WIIK -6.55 107.667 110.0 19510208 20050219 967810 99999 HUSEIN SASTRANEGARA ID WIIB -6.901 107.57600000000001 740.0 19500403 20200624 967815 99999 HUSEIN SASTRANEGARA ID WICC -6.901 107.57600000000001 742.5 20071016 20180904 967830 99999 BANDUNG ID -6.882999999999999 107.6 791.0 19740801 20050219 967910 99999 CIREBON/JATIWANGI ID -6.75 108.26700000000001 50.0 19420101 20200624 967970 99999 TEGAL ID -6.85 109.15 10.0 19510101 20200624 968010 99999 CIBEUREUM ID WIAM -7.346 108.24700000000001 359.0 19420101 20050219 968050 99999 CILACAP ID WAHL -7.733 109.01700000000001 6.0 19510301 20200624 968370 99999 SEMARANG ID -6.9670000000000005 110.417 3.0 19760302 20200624 968390 99999 AHMAD YANI INTL ID WAHS -6.983 110.383 4.0 19490101 20200624 968450 99999 ADI SUMARMO WIRYOKUSUMO ID WRSQ -7.516 110.757 132.0 19610106 20040824 968530 99999 ADI SUTJIPTO ID WIIJ -7.787999999999999 110.432 109.0 19490101 20050219 968570 99999 PACITAN ID -8.2 111.05 1.0 19810501 20050219 968810 99999 ISWAHYUDI ID WIAR -7.6160000000000005 111.434 113.0 19560102 20050218 969250 99999 SANGKAPURA (BAWEAN IS.) ID -5.85 112.633 3.0 19530101 20200624 969330 99999 SURABAYA/PERAK ID WRSP -7.2170000000000005 112.71700000000001 3.0 19490101 20200624 969350 99999 SURABAYA JUANDA ID WRSJ -7.38 112.787 3.0 19640909 20200624 969355 99999 JUANDA ID WARR -7.38 112.787 2.7 20050228 20200112 969370 99999 SURABAYA/GEDANGAN ID WRSS -7.2170000000000005 113.71700000000001 3.0 19801001 20200624 969470 99999 ABDUL RACHMAN SALEH ID WIAS -7.926 112.714 539.0 19491001 20050219 969730 99999 KALIANGET (MADURA IS) ID -7.05 113.96700000000001 3.0 19750918 20200624 969870 99999 BANYUWANGI ID -8.217 114.383 5.0 19560101 20200624 969950 99999 CHRISTMAS ISLAND KT YPXM -10.450999999999999 105.69 279.2 19521001 20200624 969960 99999 COCOS KEELING ISLAND CK YPCC -12.187999999999999 96.834 3.0 19490103 20200624 970080 99999 NAHA ID WAMH 3.6830000000000003 125.52799999999999 4.9 19460601 20200624 970100 99999 ULU SIAU ID 2.667 125.333 50.0 19510101 19621231 970140 99999 SAM RATULANGI ID WAMM 1.5490000000000002 124.926 80.5 19471001 20200624 970160 99999 BITUNG ID 1.433 125.18299999999999 3.0 19790601 20200624 970280 99999 TOLI-TOLI/LALOS ID WAMI 1.0170000000000001 120.8 2.0 19490301 20200624 970480 99999 JALALUDDIN ID WAMG 0.637 122.85 32.0 19510101 20200624 970720 99999 PALU/MUTIARA ID -0.6829999999999999 119.73299999999999 6.0 19460601 20200624 970860 99999 BUBUNG ID WAMW -1.0390000000000001 122.772 17.1 19460701 20200624 970960 99999 KASIGUNCU ID WAMP -1.4169999999999998 120.65799999999999 53.0 19490301 20200624 971000 99999 KOLONDALE ID -2.0 121.31700000000001 2.0 19981225 20020420 971140 99999 SOROAKO ID WAAS -2.529 121.35700000000001 434.0 19990103 20020711 971200 99999 MAJENE ID -2.5 119.0 8.0 19830701 20200624 971260 99999 MASAMBA/ANDI JEMMA ID WAWM -2.55 120.367 50.0 19830701 20200624 971420 99999 KOLAKA/POMALA ID -4.3 121.53299999999999 3.0 20010816 20200624 971460 99999 WOLTER MONGINSIDI ID WAAU -4.082 122.417 51.0 19461101 20200624 971800 99999 HASANUDDIN ID WAAA -5.062 119.554 14.3 19470201 20200624 971820 99999 UJANG PANDANG/PAOTERE ID -5.067 119.55 -999.9 19840901 20200624 971840 99999 PANAKUKANG ID -5.183 119.48299999999999 15.0 19910801 20120426 971920 99999 BAU-BAU/BETO AMBIRI ID WAAB -5.4670000000000005 122.617 2.0 19800501 20200624 971925 99999 BALI INTL ID WADD -8.748 115.167 4.3 20050104 20200624 972200 99999 SINGARADJA ID -8.117 115.1 40.0 19520101 19640430 972300 99999 DENPASAR NGURAH RAI ID WRRR -8.749 115.167 1.0 19490101 20200624 972400 99999 MATARAM-LOMBOK INTL AIRPORT ID WADL -8.75 116.26700000000001 96.0 19621004 20200624 972600 99999 SUMBAWA BESAR ID WRRS -8.488999999999999 117.412 5.0 19620201 20200624 972700 99999 MUHAMMAD SALAHUDDIN ID WRRB -8.54 118.68700000000001 22.0 19820101 20200624 972840 99999 RUTENG/SATAR TACIK ID -8.633 120.45 1170.0 20011108 20200624 972900 99999 ENDEH/IPI ID -8.8 121.6 3.0 20020101 20020609 973000 99999 WAI OTI ID WRKC -8.641 122.23700000000001 3.0 19750701 20200624 973100 99999 LARANTUKA/GEWAYENTA ID WRKL -8.267000000000001 122.96700000000001 9.0 19830502 20200624 973200 99999 ALOR/MALI/KALABAHI ID WRKM -8.217 124.56700000000001 12.0 19460101 20200624 973300 99999 WONRELI ID -8.067 127.2 22.0 19480101 19640531 973400 99999 MAU HAU ID WRRW -9.669 120.302 12.0 19470101 20200624 973720 99999 EL TARI ID WRKK -10.172 123.671 105.0 19461101 20200624 973725 99999 EL TARI ID WATT -10.172 123.671 102.1 20080713 20200624 973780 99999 ROTE/BAA/LEKUNIK ID WRKR -10.732999999999999 123.06700000000001 1.0 19460601 20200624 973785 99999 GEWAYENTANA ID WATL -8.267000000000001 123.0 3.1 20120625 20140905 973800 99999 SABU/TARDAMU ID WRKS -10.5 121.833 26.0 19801001 20200624 973850 99999 OE-CUSSE/TIMOR ISL ID WPOC -9.2 124.367 5.0 19601003 20000229 973880 99999 DILLI/COMORO TT -8.55 126.56700000000001 0.0 19821101 19990902 973900 99999 PRESIDENTE NICOLAU LOBATO INTL TT WPDL -8.547 125.525 7.6 19570630 20110419 973940 99999 VIQUEQUE TT -8.867 126.367 47.0 19611101 19960911 973950 99999 CAKUNG TT WPEC -8.486 126.399 541.6 19601003 19990905 974040 99999 MOROTAI/PITU ID 2.05 129.317 15.0 19440916 19950401 974060 99999 GALELA/GAMARMALAMU ID WAMA 1.817 127.833 8.0 19830502 20200624 974080 99999 TOBELO ID 1.7169999999999999 128.0 2.0 19510101 19641231 974100 99999 KAU ID 1.167 127.883 5.0 20020612 20020612 974280 99999 SAHU SOUTHEAST ID 1.133 127.5 16.0 19510201 19651231 974300 99999 BABULLAH ID WAMT 0.831 127.381 14.9 19510101 20200624 974500 99999 MAPIA ISLAND ID 0.833 134.3 3.0 19441127 19630331 974600 99999 LABUHA/TALIABU ID WAPH -1.617 124.55 3.0 19510101 20200624 975000 99999 SORONG EAST ID -0.867 131.267 27.0 19490106 19531121 975020 99999 JEFMAN ID WASS -0.9259999999999999 131.121 3.0 19570630 20200624 975300 99999 RENDANI ID WASR -0.892 134.049 7.0 19570630 20200624 975600 99999 FRANS KAISIEPO ID WABB -1.19 136.108 14.0 19441104 20200624 975700 99999 SERUI/YENDOSA ID WABO -1.867 136.233 3.0 19770521 20200624 975800 99999 SARMI/ORAI ID WAJI -1.8330000000000002 138.717 3.0 19440517 20200624 976000 99999 SANANA ID WAPN -2.083 126.0 2.0 19510101 20200624 976300 99999 FAK-FAK/TOREA ID WASF -2.883 132.25 130.0 19570630 20200624 976820 99999 NABIRE ID WABI -3.3680000000000003 135.496 6.1 19741202 20200624 976860 99999 WAMENA ID WAJW -4.103 138.957 1549.9 19570630 20200624 976900 99999 SENTANI ID WAJJ -2.577 140.516 88.1 19440531 20200624 976980 99999 JAYAPURA/DOK II ID -2.367 140.717 3.0 19781102 20200624 977000 99999 NAMLEA/BURU ISLAND ID WAPR -3.25 127.083 20.0 19830701 20200624 977220 99999 AMAHAI ID WAPA -3.35 128.88299999999998 10.0 19801001 20200624 977240 99999 PATTIMURA ID WAPP -3.71 128.089 10.1 19490101 20200624 977480 99999 GESER ID -3.8 130.833 3.0 19830201 20200624 977600 99999 KAIMANA ID WASK -3.645 133.696 5.8 19570630 20200624 977800 99999 ENAROTALI ID WABT -3.917 136.36700000000002 1770.0 19570702 20200624 977895 99999 20040713 20040715 977900 99999 NEIRA ID -4.533 129.9 4.0 19860501 20200624 977960 99999 KOKONAO/TIMUKA ID WABN -4.717 136.433 3.0 19570701 20200624 978100 99999 TUAL/DUMATUBUN ID -5.683 132.75 12.0 19570630 20200624 978760 99999 TANAH MERAH ID WAKT -6.1 140.3 16.0 19440424 20200624 979000 99999 SAUMLAKI ID WAPI -7.983 131.3 24.0 19540401 20200624 979800 99999 MOPAH ID WAKK -8.52 140.418 3.0 19421121 20200624 981320 99999 ITBAYAT RP 20.8 121.85 124.0 19730101 20200624 981330 99999 CALAYAN RP 19.267 121.46700000000001 13.0 19490826 20200624 981340 99999 BASCO RADAR RP 20.433 121.96700000000001 167.0 20020201 20200624 981350 99999 BASCO RP RPUO 20.451 121.98 88.7 19490101 20070202 981360 99999 BASCO RADAR RP 20.433 121.95 167.0 19990419 20020513 982220 99999 VIGAN RP RPUQ 17.555 120.35600000000001 4.9 19490101 20200624 982230 99999 LAOAG INTL RP RPLI 18.178 120.53200000000001 7.6 19450331 20200624 982310 99999 APARRI RADAR RP 18.367 121.617 -999.9 19990327 20000512 982320 99999 APARRI RP RPUA 18.367 121.633 3.0 19450804 20200624 982330 99999 TUGUEGARAO RP RPUT 17.637999999999998 121.73100000000001 21.3 19490101 20200624 983210 99999 STO. TOMAS RP 16.35 120.56700000000001 2256.0 19800818 20020803 983220 99999 CROW VALLEY GUNNERY RANGE RP 15.317 120.383 161.0 19750212 20030102 983230 99999 NAULA POINT RP 15.7 119.96700000000001 5.0 19730608 20050615 983240 99999 IBA/LUZON ISLAND RP RPUI 15.333 119.96700000000001 5.0 19490104 20200624 983250 99999 DAGUPAN RP RPUG 16.083 120.35 2.0 19450119 20200624 983260 99999 BASA AB RP RPUF 14.982999999999999 120.48299999999999 46.0 19450419 20030222 983270 99999 CLARK INTL RP RPLC 15.186 120.56 147.5 19450214 20200624 983275 99999 CLARK INTL RP 15.183 120.55 151.0 20001119 20081231 983280 99999 BAGUIO RP RPUB 16.375 120.62 1295.7 19490101 20200624 983290 99999 MUNOZ RP 15.732999999999999 120.93299999999999 76.0 19490101 20041210 983300 99999 CABANATUAN RP 15.467 120.95 32.0 19900901 20190101 983330 99999 BALER RP RPUR 15.73 121.5 32.9 19490101 20051007 983340 99999 BALER RADAR RP 15.75 121.633 178.0 19950402 20200624 983360 99999 CASIGURAN RP 16.267 122.133 4.0 19490101 20200624 984235 99999 MAMBURAO RP RPUM 13.217 120.6 4.0 19841128 19850111 984250 99999 MANILA RP 14.583 120.98299999999999 13.0 19780705 20200624 984260 41231 SUBIC BAY WEATHER RP RPLB 14.8 120.26700000000001 19.0 19450209 20200624 984260 99999 SUBIC BAY INTL RP RPLB 14.794 120.271 19.5 20000101 20041231 984270 99999 TAYABAS RP 14.017000000000001 121.6 158.0 19730101 20200624 984280 41224 SANGLEY POINT RP RPLS 14.5 120.9 4.0 19460930 19991231 984280 99999 SANGLEY POINT AB RP RPLS 14.495 120.904 2.4 20000101 20200624 984290 99999 NINOY AQUINO INTL RP RPLL 14.509 121.02 22.9 19450331 20200624 984295 99999 NICHOLS AB RP RPAF 14.517000000000001 121.01700000000001 23.0 19730620 19850916 984300 99999 SCIENCE GARDEN RP 14.65 121.05 46.0 19450228 20200624 984310 99999 CALAPAN/MINDORO ISL RP RPUK 13.417 121.18299999999999 41.0 19490112 20200624 984320 99999 AMBULONG RP 14.083 121.05 11.0 19490205 20200624 984330 99999 TANAY RP 14.583 121.367 651.0 19490101 20200624 984340 99999 INFANTA RP 14.75 121.65 7.0 19490101 20200624 984350 99999 ALABAT RP 14.1 122.01700000000001 5.0 19730113 20200624 984360 99999 FERNANDO AB RP RPUL 13.955 121.125 371.9 20020601 20020601 984370 99999 SAN FRANCISCO RP 13.367 122.51700000000001 45.0 19490102 20020801 984375 99999 MARINDUQUE RP RPUW 13.360999999999999 121.82600000000001 9.8 19450725 19910314 984380 99999 JOMALIG / QUEZON RP RPLJ 14.7 122.333 -999.9 20020721 20041222 984390 99999 DAET/BAGASBAS RP 14.117 122.95 10.0 19490101 19830309 984400 99999 DAET RP RPUD 14.129000000000001 122.98 3.0 19740201 20200624 984420 99999 PILI RP 13.583 123.26700000000001 35.0 19911201 20081128 984425 99999 NAGA RP RPUN 13.585 123.27 43.3 19840924 19910106 984430 99999 20040826 20040826 984440 99999 LEGAZPI RP RPLP 13.157 123.74600000000001 20.1 19450503 20200624 984460 99999 VIRAC RP RPUV 13.575999999999999 124.206 36.9 19490102 20200624 984470 99999 CATANDUANES RADAR RP 13.654000000000002 124.34100000000001 233.0 19730101 20120228 985241 99999 BUSUANGA RP RPVV 12.120999999999999 120.1 45.1 20161113 20161113 985260 99999 CORON RP 12.217 120.2 60.0 19490121 20200624 985310 99999 SAN JOSE RP RPUH 12.362 121.04700000000001 4.3 19450717 20200624 985360 99999 ROMBLON RP 12.583 122.28299999999999 47.0 19490101 20200624 985361 41231 CUBI POINT NAVAL AIR STATION RP RPMB 14.8 120.26700000000001 18.3 20160517 20160517 985370 99999 KALIBO/AKLAN RP RPVK 11.683 122.383 6.0 20151022 20200506 985375 99999 KALIBO/PANAY ISLAND RP RPVK 11.683 122.367 7.0 19841210 19850111 985380 99999 ROXAS RP RPVR 11.597999999999999 122.75200000000001 3.0 19490126 20200624 985430 99999 MASBATE RP RPVJ 12.369000000000002 123.62899999999999 7.9 19490104 20200624 985450 99999 CALBAYOG/WESTERN RP RPVC 12.067 124.53299999999999 3.0 20101030 20171216 985455 99999 CALBAYOG/SAMAR ISL RP RPVC 12.083 124.55 3.0 19841210 19850111 985460 99999 CATARMAN RP RPVF 12.502 124.63600000000001 1.8 19490101 20200624 985480 99999 CATBALOGAN RP RPVY 11.783 124.883 5.0 19730101 20200624 985500 99999 DANIEL Z ROMUALDEZ RP RPVA 11.228 125.02799999999999 3.0 19441022 20200624 985530 99999 BORONGAN RP RPVW 11.667 125.45 3.0 19590101 20200624 985580 99999 GUIUAN RP RPVG 11.036 125.742 2.1 19740103 20200624 986020 99999 NANSHAN ISLAND RP 10.72 115.82 0.0 19830813 20101103 986180 99999 PUERTO PRINCESA RP RPVP 9.742 118.759 21.6 19450331 20200624 986300 99999 CUYO RP RPLO 10.85 121.0 4.0 19490106 20200624 986370 99999 ILOILO RP RPVI 10.713 122.541 8.2 19450602 20160509 986395 99999 BACOLOD/NEGROS ISL RP RPVB 10.65 122.93299999999999 6.0 19840926 19850111 986420 99999 DUMAGUETE RP RPVD 9.334 123.3 4.6 19490101 20200624 986440 99999 TAGBILARAN RP RPVT 9.664 123.853 11.6 19730101 20200624 986445 99999 MEDILLIN-CEBU RP RPVN 11.16 123.95 15.0 20110404 20170602 986450 99999 LAHUG RP 10.333 123.9 35.0 19490101 19780802 986460 99999 MACTAN CEBU INTL RP RPVM 10.308 123.979 9.4 19650731 20200624 986480 99999 MAASIN RP RPSM 10.133 124.867 72.0 19730727 20200624 986530 99999 SURIGAO RP RPMS 9.783 125.48299999999999 55.0 19490102 20200624 986545 99999 TANDAG RP RPMW 9.072000000000001 126.171 4.9 19841210 19850111 987410 99999 DIPOLOG RP RPMG 8.601 123.334 3.7 19590101 20200624 987420 99999 PAGADIAN RP RPMP 7.827000000000001 123.458 1.5 20200325 20200505 987425 99999 PAGADIAN/MINDANAO RP RPWP 7.832999999999999 123.45 2.0 19840926 19900921 987445 99999 OZAMIS/MISAMIS RP RPWI 8.167 123.85 10.0 19840926 19850111 987450 99999 MALABANG RP RPMM 7.617000000000001 124.059 8.0 20181023 20181023 987455 99999 MALABANG RP RPWM 7.617000000000001 124.05 8.0 19440914 19840926 987460 99999 COTOBATO RP RPMC 7.167000000000001 124.21700000000001 62.0 19490101 20200624 987461 99999 COTABATO/MINDANAO RP RPWC 7.233 124.25 17.0 19840912 19850111 987470 99999 LUMBIA AIRPORT RP 8.417 124.617 188.0 19770401 20200508 987480 99999 CAGAYAN DE ORO RP RPML 8.482999999999999 124.65 6.0 19490101 20191009 987510 99999 MALAYBALAY RP RPMY 8.15 125.133 627.0 19490101 20200624 987520 99999 BUTUAN RP RPME 8.95 125.48299999999999 46.0 19810101 20200624 987530 99999 FRANCISCO BANGOY INTL RP RPMD 7.126 125.646 29.3 19740601 20200624 987540 99999 DAVAO RP 7.067 125.6 19.0 19490101 19751111 987550 99999 HINATUAN RP 8.367 126.333 3.0 19491001 20200624 988300 99999 JOLO RP RPMJ 6.05 121.0 13.0 19490101 19900921 988360 99999 ZAMBOANGA INTL RP RPMZ 6.922000000000001 122.06 10.1 19450312 20200624 988485 99999 ALLAH VALLEY RP RPMA 6.367000000000001 124.751 200.9 19840926 20191215 988510 41231 CUBI POINT NAVAL AIR STATION RP RPMB 14.8 120.26700000000001 18.3 20050101 20200624 988510 99999 GEN. SANTOS RP RPMB 6.05 125.1 133.0 19730101 20180501 990010 99999 CARRIZAL 10.35 -65.017 19600101 19661231 990055 99999 BUOY 32321 / ARGOS 11116 0.0 -94.98299999999999 3.0 20180101 20180425 990056 99999 BUOY 32323 / ARGOS 11120 0.0 -109.9 3.0 20180101 20180425 990058 99999 BUOY 51011 / ARGOS 17652 -0.183 -124.4 3.0 20180101 20180425 990060 99999 BUOY 51311 / ARGOS 6471 0.1 -140.0 3.0 20180101 20180425 990061 99999 BUOY 52079 / ARGOS 3781 0.1 147.0 3.0 19291001 19381001 990062 99999 ENVIRONM BUOY 52081 US 0.0 138.0 0.0 20041227 20041227 990063 99999 BUOY 52085 / ARGOS 7883 0.0 156.0 3.0 20180101 20180425 990065 99999 BUOY 52321 / ARGOS 989 0.0 165.0 3.0 20180101 20180425 990066 99999 ENVIRON BUOY 52303 0.0 170.0 0.0 20041103 20041103 990074 99999 ATLAS BUOY 15002 / JAVA 0.0 -10.0 3.0 20180101 20180425 990075 99999 ENVIRON BUOY 15004 0.0 -23.0 0.0 20041001 20041001 990076 99999 ENVIRON BUOY 31001 0.0 -35.0 0.0 20041110 20041110 990080 99999 MOORED BUOY 43011 12.0 -95.0 0.0 19730102 19960304 990093 99999 ENVIRONM BUOY 52001 US 2.0 165.0 0.0 20180101 20180425 990100 99999 ENVIRONM BUOY 52301 2.0 147.0 0.0 20040909 20041230 990113 99999 ENVIRON BUOY 15005 -2.0 -10.0 0.0 20040923 20040923 990115 99999 ATLAS BUOY / FREVO US 4.0 -38.0 0.0 20041016 20041016 990142 99999 ATLAS BUOY 15006 / VALSE -6.0 -10.0 3.0 20180101 20180326 990154 99999 BUOY 52087 / ARGOS 1132 7.6 136.7 3.0 20180101 20180425 990158 99999 BUOY 32305 / ARGOS 15809 -7.983 -95.26700000000001 3.0 20180101 20180425 990166 99999 BUOY 62094 / M5 SOUTH EAST US 51.65 -6.7 5.0 20080101 20081231 990170 99999 SHIP C7L/LIMA US 57.0 -20.0 0.0 19750716 20020601 990174 99999 BUOY 51028 KR 0.0 -153.91299999999998 0.0 20040907 20081231 990179 99999 NORTH MID GULF 110NM SOUTH OF GRAND ISLE US 27.5 -90.46 0.0 20040907 20041231 990180 99999 SHIP C7M/MIKE US 66.0 2.0 10.0 19730101 20041224 990181 99999 DATA BUOY 46008 US 57.1 -151.7 10.0 20041129 20041227 990200 99999 AMI -RESEARCH VESSE 71.5 19.0 0.0 20160202 20160212 990210 99999 DISCONTINUED 810622 CA C7P 50.0 -145.0 0.0 19730101 19810624 990230 99999 SHIP C7R/ROMEO US 47.0 -17.0 0.0 19750716 20020303 990250 99999 SHIP C7T/TANGO US 29.0 135.017 0.0 19750822 19970607 990900 99999 FORMER MIKE 66.0 2.0 0.0 20160202 20160212 990920 99999 FIXED US 9.2 101.4 0.0 20010123 20130430 991180 99999 RUSSIAN ICE ISLAND US 0.0 0.0 0.0 20011104 20011104 991190 99999 RUSSIAN ICE ISLAND US 0.0 0.0 0.0 20020329 20020329 991200 99999 RUSSIAN ICE ISLAND US 0.0 0.0 0.0 20020516 20020516 992000 99999 DATA BUOY 42037 US 24.5 -81.4 3.0 19950114 19961119 992010 99999 DRIFTING NOMAD BUOY 41001 19771002 20081231 992011 99999 WILMINGTON HARBOR US NC 33.721 -78.015 3.0 20180101 20180425 992012 99999 OREGON INLET US NC 35.75 -75.33 3.0 20180101 20180425 992013 99999 HILO US HI 19.78 -154.97 3.0 20180101 20180425 992014 99999 CAPE CHARLES US VA 37.023 -75.81 3.0 20180101 20180406 992016 99999 RINCON RQ 18.375999999999998 -67.28 3.0 20180209 20180425 992017 99999 RITIDIAN POINT GQ 13.683 144.812 3.0 20180101 20180425 992020 99999 NW HAWAII 170 NM WEST NORTHWEST OF KAUAI US 23.43 -162.21 0.0 19810625 20180425 992022 99999 CARR INLET US WA 47.28 -122.73 3.0 20180118 20180425 992024 99999 WEST INDIES 15.85 -57.467 3.0 20180101 20180425 992025 99999 PAUWELA MAUI US HI 21.019000000000002 -156.42700000000002 3.0 20180101 20180425 992029 99999 BUOY 62170 51.4 2.0 3.0 20180101 20180425 992030 99999 GULF OF AK 88NM SOUTH OF KODIAK AK US 56.3 -148.17 0.0 19760916 20180425 992031 99999 BUOY 63056 59.7 1.6 3.0 20180101 20180425 992032 99999 BUOY 63057 59.2 1.5 3.0 20180101 20180425 992037 99999 BUOY 62149 53.7 1.3 3.0 20180101 20180425 992039 99999 BUOY 62153 57.3 2.0 3.0 20180101 20180425 992040 99999 MID GULF 180 NM SOUTH OF SOUTHWEST PASS US 25.84 -89.66 0.0 19771021 20180425 992041 99999 BUOY 62154 56.4 2.2 3.0 20180101 20180425 992042 99999 BUOY 62155 57.7 0.7 3.0 20180101 20180425 992043 99999 BUOY 64041 60.7 -2.6 3.0 20180101 20180425 992044 99999 BUOY 66021 54.9 13.9 3.0 20180101 20180109 992050 99999 CALIFORNIA - 357NM WEST OF SAN FRANCISCO US 37.98 -130.0 0.0 19771026 20180425 992060 99999 ENVIRONM BUOY 46041 US DB20 47.4 -124.5 3.0 19790914 19970303 992070 99999 HOTEL 200NM EAST OF CAPE MAY NJ US 38.47 -70.56 0.0 19771026 20081231 992080 99999 BUZZARD'S BAY US 41.4 -71.08 12.0 19800120 20041025 992090 99999 MID SUPERIOR 60NM NORTH NORTHEAST HANCOC US 48.07 -87.78 183.0 19790815 20081114 992100 99999 DATA BUOY 44019 US 36.4 -75.2 3.0 19810630 20030724 992110 99999 E SUPERIOR 200NM EAST NORTHEAST OF HANCO US 47.57 -86.55 183.0 19801029 20081114 992120 99999 BILOXI 22 NM SOUTH-SOUTHEAST OF BILOXI US 30.09 -88.77 0.0 19810214 20081231 992130 99999 W SUPERIOR 48NM NORTH OF IRONWOOD MI US 47.35 -89.83 183.0 19820330 20081114 992140 99999 S MICHIGAN 43NM EAST SOUTHEAST OF MILWAU US 42.68 -87.03 176.4 19810715 20081106 992150 99999 S HATTERAS - 250 NM EAST OF CHARLESTON US 32.0 -75.083 0.0 19771004 20180425 992160 99999 OREGON - 275NM WEST OF COOS BAY OR. US 42.58 -130.36 0.0 19780201 20180425 992170 99999 S ALEUTIANS US 51.83 -155.85 3.0 19780101 20020618 992180 99999 N MICHIGAN- HALFWAY BETWEEN NORTH MANITO US 45.33 -86.42 176.4 19791016 20081108 992190 99999 MIDDLE NOMAD CA 50.93 -136.1 3.0 19771112 20180425 992200 99999 SE PAPA - 600NM WEST OF EUREKA CA. US 40.8 -137.48 0.0 19780201 20180406 992210 99999 WASHINGTON 315NM WEST OF ABERDEEN WA US 46.05 -131.02 0.0 19771210 20180425 992220 99999 S HURON 43NM EAST OF OSCODA MI US 44.28 -82.42 177.0 19820419 20081213 992230 99999 N HURON 37NM NORTHEAST OF ALPENA MI. US 45.35 -82.84 177.0 19810913 20081123 992240 99999 W ERIE 28NM NORTHWEST OF CLEVELAND OH US 41.68 -82.4 173.9 19800906 20081205 992250 99999 DATA BUOY 42011 US 29.6 -93.5 3.0 19820701 20011202 992260 99999 MOORED BUOY 21002 US 37.7 134.3 0.0 19821209 20030330 992270 99999 MOORED BUOY 21003 US 34.7 139.5 0.0 19830625 19890309 992280 99999 MOORED BUOY 21004 US 29.0 135.0 1.0 19821209 20000713 992290 99999 ST GEORGES - 8NM WEST NORTHWEST OF CRESC US 41.85 -124.38 0.0 19820914 20180425 992300 99999 MOORED BUOY 22001 28.3 126.0 0.0 19830308 20040216 992310 99999 PT. SAN LUIS CA - 18 NM SOUTH SOUTHWEST US 35.1 -121.01 0.0 19830811 20041121 992320 99999 ENVIRONM BUOY 42008 US 28.7 -95.3 10.0 19820208 19950404 992330 99999 DATA BUOY 42009 US 29.3 -87.5 10.0 19820330 20020510 992340 99999 ENVIRONM BUOY 44002 US 40.1 -73.0 1.0 19780201 20040901 992350 99999 DATA BUOY 44010 US 36.9 -75.7 3.0 19780210 20080113 992360 99999 GEORGES BANK 170 NM EAST OF HYANNIS MA US 41.11 -66.62 0.0 19850312 20180325 992370 99999 COL RIVER BAR - 78NM SOUTH SOUTHWEST OF US 46.144 -124.51 0.0 19841011 20180425 992380 99999 CAPE SAN MARTIN - 55NM WEST NORTHWEST OF US 35.74 -121.89 0.0 19850507 20180425 992390 99999 DATA BUOY 41018 US 15.0 -75.0 3.0 19780306 20011221 992400 99999 DELAWARE BAY 26 NM SOUTHEAST OF CAPE MAY US 38.46 -74.7 0.0 19850312 20180425 992410 99999 MONTEREY - 27NM WEST OF MONTEREY BAY CA US 36.75 -122.42 0.0 19771027 20180425 992420 99999 BOSTON 16 NM EAST OF BOSTON MA US 42.35 -70.69 0.0 19850312 20180425 992430 99999 SW HAWAII 215 NM SOUTH SOUTHWEST OF HILO US 17.14 -157.79 0.0 19780626 20180425 992440 99999 E GULF 260 NM SOUTH OF PANAMA CITY FL US 26.01 -85.91 0.0 19780201 20180425 992450 99999 ENVIRONM BUOY 32301 US -10.0 -105.0 3.0 19780201 19960305 992460 99999 DATA BUOY 46010 US 46.2 -124.2 12.0 19800115 19990123 992470 99999 ENVIRONM BUOY 41021 US 31.9 -80.9 3.0 19820310 19940913 992480 99999 HALF MOON BAY - 24NM SOUTH SOUTHWEST OF US 37.36 -122.88 0.0 19810103 20180425 992490 99999 BODEGA BAY - 48NM NORTH NORTHWEST OF SAN US 38.23 -123.32 0.0 19810717 20180425 992500 99999 PT ARENA - 19NM NORTH OF POINT ARENA CA US 39.22 -123.97 0.0 19820208 20180425 992510 99999 ENVIRONM BUOY 46015 US 62.033 -168.983 3.0 19920305 19950408 992520 99999 DATA BUOY 46016 US 63.3 -170.3 3.0 19821209 19940709 992530 99999 DATA BUOY 51027 US 20.4 -157.1 3.0 19821209 19921105 992540 99999 DATA BUOY 46018 US 60.3 -177.0 3.0 19820312 20030703 992550 99999 DATA BUOY 46019 US 57.2 -170.3 3.0 19821209 19970406 992560 99999 DATA BUOY 46020 US 55.9 -168.0 3.0 19821209 20040926 992570 99999 DATA BUOY 46021 US 57.7 -160.0 3.0 19820712 19940905 992580 99999 PT ARGUELLO - 17NM WEST NORTHWEST OF POI US 34.71 -120.97 0.0 19821209 20081231 992590 99999 ENVIRONM BUOY 46024 US 32.8 -119.5 3.0 19821209 19960314 992600 99999 SANTA MONICA BASIN - 33NM WEST SOUTHWEST US 33.75 -119.08 0.0 19821209 20180425 992610 99999 W HAWAII 205 NM SOUTHWEST OF HONOLULU H US 19.16 -160.74 0.0 19780821 20180425 992620 99999 SE HAWAII 185 NM SOUTHEAST OF HILO HI US 17.52 -152.48 0.0 19850312 20180425 992630 99999 DATA BUOY 44003 US 40.8 -68.5 3.0 19780206 20080830 992640 99999 SAN FRANCISCO - 18NM WEST OF SAN FRANCIS US 37.75 -122.82 0.0 19780429 20180425 992650 99999 BLUNTS REEF US 40.42 -124.53 3.0 19841018 20041209 992660 99999 DATA BUOY 46031 US 55.5 -161.7 3.0 19850312 19950119 992670 99999 ENVIRONM BUOY 62106 US 56.983000000000004 -9.883 0.0 19850312 20080815 992680 99999 DATA BUOY 46033 US 55.8 -159.8 3.0 19850312 19940419 992690 99999 ENVIRONM BUOY 46034 US 55.1 -163.1 3.0 19850312 19950403 992700 99999 BUOY 62107 / SEVENSTONES LIGHTSHIP UK 50.1 -6.1 0.0 19780619 20180425 992710 99999 W GULF 240 NM SOUTH-SOUTHEAST OF SABINE US 25.17 -94.42 0.0 19771002 20180425 992720 99999 DATA BUOY 42015 US 30.1 -88.2 3.0 19780201 19960316 992730 99999 BUOY 41004 / EDISTO - 41 NM SOUTHEAST OF CHARLESTON US 32.5 -79.1 0.0 19790213 20180425 992740 99999 EEL RIVER - 17NM WEST-SOUTHWEST OF EUREK US 40.78 -124.54 0.0 19821209 20180425 992750 99999 DATA BUOY 46043 US 46.9 -124.2 12.0 19871110 20031210 992760 99999 GULF OF MAINE 78 NM EAST OF PORTSMOUTH N US 43.20399999999999 -69.128 0.0 19820208 20180425 992770 99999 ENVIRONM BUOY 44006 US 36.3 -75.4 3.0 19820208 19950201 992780 99999 PORTLAND 12 NM SOUTHEAST OF PORTLAND ME US 43.531000000000006 -70.14399999999999 0.0 19820514 20180425 992790 99999 NANTUCKET 54NM SOUTHEAST OF NANTUCKET US 40.5 -69.43 0.0 19821209 20180425 992800 99999 ENVIRONM BUOY 45009 US 41.1 -82.0 3.0 19861002 20020530 992810 99999 ENVIRONM BOUY 46027 US 41.833 -124.4 3.0 19850404 19970509 992820 99999 BERING SEA 310 NM NORTH OF ADAK AK US 57.05 -177.58 0.0 19860117 20180425 992830 99999 DATA BUOY 51005 US 20.4 -156.1 3.0 19860117 20011029 992840 99999 DATA BUOY 32302 US -18.0 -85.1 3.0 19860616 19950403 992850 99999 WEST ORCA BAY 36NM SOUTH SOUTHWEST OF VA US 60.58 -146.83 0.0 19871118 20180425 992860 99999 MOORED BUOY 62027 49.1 -2.2 3.0 19860804 20180121 992870 99999 ENVIRONM BUOY 62028 US 48.7 -8.9 0.0 19860605 20080907 992880 99999 K1 BUOY UK 48.7 -12.4 0.0 19870319 20180425 992890 99999 ENVIRONM BUOY 62109 US 57.0 0.0 0.0 19870126 20041011 992900 99999 DATA BUOY 62164 UK 57.2 0.5 30.0 19870126 20180425 992910 99999 ENVIRONM BUOY 62026 US 55.3 1.1 0.0 19870126 20030816 992920 99999 ENVIRONM BUOY 23002 US 22.5 -59.5 0.0 19870514 19991120 992930 99999 SOUTH NOMAD CA 48.35 -133.94 3.0 19861001 20180425 992940 99999 DATA BUOY 46038 US 41.9 -124.4 3.0 19870126 19961102 992950 99999 PT.CONCEPTION CA - 50NM WEST OF SANTA B US 34.27 -120.66 0.0 19880208 20081231 992960 99999 SANTA MARIA - 21 NM NORTHWEST OF POINT A US 34.88 -120.87 0.0 19870405 20180425 992970 99999 ENVIRONM BOUY 46039 US 48.2 -123.4 3.0 19880311 19960312 992980 99999 TAIL OF THE BANK CA 43.75 -51.74 3.0 19870624 20081231 992990 99999 DATA BUOY 45010 US 43.0 -87.8 180.0 19870404 20020419 993194 99999 SHIP BLOCK 19 US 0.0 0.0 0.0 19780315 19780315 993711 99999 SEWELLS POINT VA US VA 36.95 -76.33 10.0 20080101 20200624 994006 99999 BIG CARLOS PASS US FL 26.4 -81.88 3.0 20080101 20200624 994007 99999 HONOLULU US HI 21.3 -157.87 3.0 20080101 20200624 994008 99999 FRED HOWARD PARK US FL 28.12 -82.8 6.0 20080101 20200624 994009 99999 ANCLOTE GULF PARK US FL 28.18 -82.78 6.0 20080101 20130423 994010 99999 SOUTHWEST PASS LA US 28.9 -89.43 0.0 19420901 20200624 994011 99999 ASTORIA US OR 46.208 -123.76700000000001 2.0 20080101 20200624 994012 99999 CRESCENT CITY US CA 41.745 -124.18299999999999 4.8 20080101 20200624 994013 99999 CHEERY POINT US WA 48.863 -122.758 5.0 20080101 20200624 994014 99999 SEATTLE US WA 47.605 -122.338 2.0 20080101 20190102 994015 99999 FRIDAY HARBOR US WA 48.547 -123.01 2.0 20080101 20200624 994016 99999 SAN FRANCISCO US CA 37.806999999999995 -122.465 2.0 20080101 20200624 994017 99999 NORTH SPIT US CA 40.766999999999996 -124.21700000000001 2.0 20080101 20200624 994018 99999 LA JOLLA US CA 32.867 -117.258 2.0 20080101 20200624 994019 99999 MONTEREY US CA 36.605 -121.88799999999999 2.0 20080101 20141231 994020 99999 CHESAPEAKE LIGHT VA US VA 36.91 -75.71 0.0 19850501 20141231 994021 99999 NEAH BAY US WA 48.368 -124.617 5.0 20080101 20200624 994022 99999 POINT REYES US CA 37.99 -122.975 2.0 20080101 20200208 994023 99999 PORT SAN LUIS US CA 35.177 -120.76 2.0 20080101 20200624 994024 99999 PORT ANGELES US WA 48.125 -123.44 5.0 20080101 20200624 994025 99999 PORT TOWNSEND US WA 48.111999999999995 -122.758 5.0 20080101 20200624 994026 99999 SOUTH BEACH US OR 44.625 -124.04299999999999 2.0 20080101 20200624 994027 99999 SAN DIEGO US CA 32.713 -117.17299999999999 2.0 20080101 20200624 994028 99999 SANTA MONICA PIER US CA 34.008 -118.5 2.0 20080101 20200624 994029 99999 TOKE POINT US WA 46.708 -123.965 5.0 20080101 20200624 994030 99999 DIAMOND SHLS LT. NC US 35.15 -75.3 0.0 19850501 20030729 994031 99999 PORT ORFORD US OR 42.74 -124.49700000000001 8.0 20080101 20200624 994032 99999 CHARLESTON US OR 43.345 -124.322 2.0 20080101 20200624 994033 99999 ALAMEDA US CA 37.772 -122.29799999999999 2.0 20080101 20200624 994034 99999 PORT CHICAGO US CA 38.056999999999995 -122.038 2.0 20080101 20200624 994035 99999 LOS ANGELES US CA 33.72 -118.272 2.0 20080101 20200624 994036 99999 RICHMOND US CA 37.928000000000004 -122.4 5.6 20080101 20200624 994037 99999 PHILLIPS OILPLATFOR US TX 26.95 -94.68299999999999 10.0 20050419 20100521 994040 99999 FRYING PAN SHOALS NC US 33.49 -77.59 0.0 19850509 20080912 994041 99999 REDWOOD CITY US CA 37.507 -122.2 6.0 20080101 20200624 994042 99999 CHARLOTTE AMALIE VQ 18.33 -64.92 5.0 20080101 20200624 994043 99999 SAN JUAN RQ 18.47 -66.12 5.0 20080101 20200624 994044 99999 ARENA COVE US CA 38.92 -123.7 2.0 20080101 20200624 994045 99999 APPALACHICOLA US FL 29.73 -84.98 2.0 20080313 20200624 994046 99999 NANTUCKET ISLAND US MA 41.28 -70.1 0.0 20080101 20200624 994047 99999 PENSACOLA US FL 30.4 -87.22 3.0 20080101 20200624 994048 99999 TACOMA US WA 47.266999999999996 -122.413 5.0 20080101 20200624 994050 99999 LAKE WORTH FL US 26.61 -80.03 0.0 19850501 20200624 994060 99999 MT DESERT ROCK ME US ME 43.97 -68.13 9.1 19850121 20200624 994061 99999 CHEYBOGAN GLOS WEATHER STATION US MI 45.651 -84.47200000000001 177.7 20100407 20141231 994062 99999 GREEN BAY ENTRANCE LIGHT US WI 44.655 -87.902 176.0 20100523 20100621 994063 99999 PRESQUE ISLE LIGHT GLOS WEATHER STATION US MI 45.356 -83.492 184.4 20100325 20141231 994064 99999 STURGEON POINT LIGHT GLOS WEATHER STATION US MI 44.713 -83.273 184.4 20100325 20141231 994065 99999 TAWAS CITY GLOS WEATHER STATION US MI 44.256 -83.443 171.6 20100325 20200624 994066 99999 WHITEFISH POINT GLOS WEATHER STATION US MI 46.762 -84.96600000000001 185.9 20100325 20200624 994070 99999 DESTRUCTION IS. WA US WA 47.68 -124.49 21.3 19850501 20200624 994080 99999 FIVE FINGER AK US 57.27 -133.63 6.7 19850501 20200624 994081 99999 EAST AMATULI STATION LIGHT AK US 58.92 -151.95 33.2 20040713 20200624 994082 99999 APK - ARIPEKA FL US 28.43 -82.66 0.0 20040713 20200505 994083 99999 NFB - NORTHWEST FLORIDA BAY FL US 25.08 -81.09 0.0 20040713 20141231 994084 99999 PILOT ROCK AK US 59.74 -149.47 24.0 20040713 20200624 994085 99999 PAS -PORT RICHEY FL US 28.28 -82.73 0.0 20040713 20081231 994086 99999 SHP - SHELL POINT FL US 30.06 -84.29 0.0 20040713 20200624 994090 99999 PASSAGE ISLAND MI US MI 48.22 -88.37 195.4 19850528 20200624 994100 99999 AMBROSE LIGHT NY US NY 40.46 -73.83 0.0 19850330 20080728 994110 99999 PORT ARANSAS TX US 27.83 -97.05 0.0 19850501 20200624 994120 99999 POINT ARENA CA US CA 38.96 -123.74 17.4 19850501 20081231 994130 99999 ROCK OF AGES MI US MI 47.87 -89.31 183.5 19850402 20200624 994140 99999 BUZZARDS BAY MA US MA 41.4 -71.03 0.0 19850712 20200624 994150 99999 ST. JOHN'S LIGHT US 30.4 -81.4 30.0 19850501 19910709 994160 99999 CAPE LOOKOUT NC US NC 34.62 -76.52 4.6 19850120 20200624 994170 99999 DEERFIELD BEACH US FL 26.316999999999997 -80.083 2.0 19850116 20020601 994180 99999 SMITH ISLAND WA US 48.32 -122.84 15.2 19850411 20200624 994190 99999 DEVILS ISLAND WI US WI 47.08 -90.73 191.7 19850501 20200624 994200 99999 STANNARD ROCK MI US MI 47.18 -87.22 182.9 19850501 20200624 994210 99999 POINT ARGUELLO CA US 34.58 -120.65 32.3 19430618 20200624 994220 99999 VENICE FL US FL 27.07 -82.45 0.0 19850622 20200624 994230 99999 FOLLY ISLAND SC US 32.68 -79.89 3.0 19850501 20200624 994240 99999 CAPE ARAGO OR US 43.34 -124.38 18.0 19850501 20081231 994250 99999 DUNKIRK NY US 42.49 -79.35 182.9 19850501 20200624 994260 99999 SABINE TX US 29.67 -94.05 0.9 19850501 20200311 994270 99999 ISLE OF SHOALS NH US NH 42.97 -70.62 13.1 19850501 20200624 994280 99999 NEWPORT OR US 44.61 -124.07 9.1 19850501 20200624 994290 99999 GRAND ISLE LA US 29.27 -89.96 1.8 19850501 20041231 994300 99999 TATOOSH ISLAND WA US 48.39 -124.74 30.8 19850501 20141231 994310 99999 ALLIGATOR REEF US 24.9 -80.6 0.0 19850123 20020118 994320 99999 GALLOO ISLAND NY US 43.89 -76.45 105.0 19850501 20020930 994330 99999 SHEBOYGAN WI US 43.75 -87.69 175.9 19850501 20200624 994340 99999 SOUTH BASS ISLAND OH US OH 41.63 -82.84 176.8 19850501 20200624 994350 99999 WEST POINT WA US 47.66 -122.44 3.0 19850501 20200624 994360 99999 CAPE SAN BLAS FL US 29.67 -85.36 1.8 19850501 20040907 994370 99999 MATINICUS ROCK ME US 43.78 -68.86 16.2 19850302 20191002 994380 99999 SAVANNAH LIGHT GA US 31.95 -80.68 30.0 19850517 20020525 994390 99999 SETTLEMENT POINT GBI US 26.7 -79.0 1.5 19851203 20200624 994400 99999 THOMAS POINT MD US 38.9 -76.44 0.0 19851205 20200624 994410 99999 ST. AUGUSTINE FL US 29.86 -81.26 0.0 19870122 20200624 994420 99999 DAUPHIN ISLAND AL US 30.25 -88.07 0.0 19870219 20200624 994430 99999 MOLASSES REEF FL US 25.01 -80.38 0.0 19880929 20190406 994440 99999 MAIN PASS US 29.4 -88.6 10.0 19880929 20010813 994450 99999 SOMBRERO KEY FL US FL 24.63 -81.11 0.0 19880929 20200624 994460 99999 SOUTHERN OPEN SOUND NY US 41.0 -73.1 0.0 19891108 20081231 994470 99999 GARDEN BANKS US 27.8 -93.1 10.0 19900112 19920720 994480 99999 ENEWETAK/MARSHALLS RM 11.367 162.36700000000002 2.0 19900322 19950604 994490 99999 UJAE ATOLL MARSHALL US 8.93 165.75 10.0 19900322 19950530 994500 99999 MILI MARSHALLS IS. US 6.1 172.1 10.0 19901214 19970830 994510 99999 SABINE US TX 29.666999999999998 -94.05 5.0 19900913 20020219 994530 99999 EBON ATOLL CAROLINE US 4.6 168.7 10.0 19900914 20000229 994540 99999 KOSRAE CAROLINE FM 5.36 162.96 10.0 19901018 19920131 994550 99999 ALEXANDRIA BAY NY US 44.33 -75.93 76.2 19950103 20081231 994560 99999 FOWEY ROCKS FL US 25.59 -80.1 0.0 19940901 20200624 994570 99999 SAND KEY FL US 24.46 -81.88 0.0 19941007 20200624 994580 99999 SUPERIOR SHOALS NY US 44.47 -75.8 77.4 19941007 20081231 994590 99999 THOUSAND I. BRDG. NY US NY 44.3 -75.98 75.6 19941007 20081231 994610 99999 DUCK PIER NC US NC 36.18 -75.75 0.0 20020219 20080731 994620 99999 LONG KEY FL US FL 24.84 -80.86 0.0 20020219 20200624 994630 99999 DRY TORTUGAS FL US FL 24.64 -82.86 0.0 20020219 20040813 994640 99999 CEDAR KEY US FL 29.14 -83.03 1.8 20020222 20200624 994650 99999 KEATON BEACH US FL 29.82 -83.59 1.8 20020219 20200624 994660 99999 POTATO POINT US AK 61.06 -146.7 7.0 20020219 20200624 994670 99999 MIDDLE ROCK LIGHT US AK 61.08 -146.66 0.0 20020219 20200624 994680 99999 BLIGH REEF LIGHT US AK 60.84 -146.88 0.0 20020219 20200624 994690 99999 DRIFT RIVER TERMINAL US AK 60.55 -152.14 15.9 20020219 20190407 994700 99999 AUGUSTINE ISLAND US AK 59.38 -153.35 9.1 20020703 20200624 994710 99999 068: BAFFIN BAY; POINT OF ROCKS TX US TX 27.3 -97.42 0.0 20040608 20200624 994720 99999 FLAT ISLAND LIGHT US AK 59.33 -151.99 17.9 20040608 20200624 994730 99999 GALVESTON PLEASURE PIER; GULF OF ME US TX 29.29 -94.79 0.0 20040608 20041214 994740 99999 HOM - HOMOSASSA FL US 28.77 -82.71 0.0 20040608 20081231 994750 99999 NEW LONDON LEDGE - LEDGE LIGHT WEATHER S US CT 41.31 -72.08 20.0 20040608 20200619 994760 99999 WESTERN LAKE PONCHARTRAIN LA US LA 30.31 -90.28 0.0 20040608 20081228 994770 99999 LAKE ST CLAIR MI US MI 42.47 -82.76 178.5 20040608 20081231 994780 99999 LUMCON MARINE CENTER LA US LA 29.25 -90.66 0.0 20040608 20130521 994790 99999 MATAGORDA BAY; PORT O'CONNOR US TX 28.45 -96.4 9.0 20040608 20200624 994800 99999 RINCON DEL SAN JOSE; POTRERO LOPENO US TX 26.8 -97.47 0.0 20040608 20200624 994810 99999 100: RTNS OFFSHORE TX US 27.76 -96.98 0.0 20040729 20041231 994820 99999 TYNDALL AFB TOWER C (N4) FL US 29.41 -84.86 0.0 20040608 20200624 994830 99999 U.S. NAVY TOWER R2 US GA 31.38 -80.57 50.0 20040608 20081221 994840 99999 TAMBOUR BAY LA US 29.19 -90.67 0.0 20040608 20080819 994850 99999 TERREBONNE BAY LA US 29.17 -90.58 0.0 20080606 20080830 994860 99999 U.S. NAVY TOWER R8 US GA 31.633000000000003 -79.917 34.0 20040608 20080415 994870 99999 EGK - EGMONT KEY FL US 27.6 -82.76 0.0 20040803 20131231 994880 99999 ANM - ANNA MARIA FL US 27.54 -82.74 0.0 20040803 20130430 994890 99999 BRIDGEPORT TERMINAL US CT 41.183 -73.183 16.0 20040803 20081231 994900 99999 NORTH MIDDLE SOUND US CT 41.07 -73.13 16.0 20040803 20081231 994910 99999 FAYERWEATHER ISLAND US CT 41.15 -73.17 16.0 20040803 20081231 994920 99999 NORTH CENTRAL SOUND US CT 41.1 -73.15 16.0 20040803 20081231 994930 99999 SOUTH MIDDLE SOUND US NY 41.05 -73.12 16.0 20040803 20081231 994940 99999 OLD FIELD ISLAND NY US 40.97 -73.08 0.0 20040803 20081231 994950 99999 NORTHERN OPEN SOUND CT US CT 41.12 -73.16 16.0 20040803 20081231 994951 99999 SEBASTIAN INLET STATE PARK US FL 27.862 -80.445 10.0 20130401 20200624 994960 99999 PORT JEFFERSON NY US 40.95 -73.07 0.0 20040803 20081230 994970 99999 SOUTH CENTRAL SOUND NY US 41.02 -73.11 0.0 20040803 20081231 994971 99999 BOSTON US MA 42.35 -71.05 0.0 20080101 20200624 994972 99999 ALGOMA CITY MARINA US WI 44.6 -87.43 185.0 20080101 20141231 994973 99999 N PIER DEATHS DOOR US WI 45.28 -86.98 188.0 20080207 20200624 994974 99999 YACHT WORKS SISTER US WI 45.2 -87.12 181.0 20080101 20141231 994975 99999 BEAUFORT NC US NC 34.2 -76.67 10.0 20080101 20200624 994976 99999 GB ENTRANCE LIGHT US WI 44.65 -87.9 201.0 20080101 20081231 994977 99999 GRAND ISLE US LA 29.27 -89.95 10.0 20080111 20200624 994979 99999 GRAVELLY SHOALS US MI 44.02 -83.53 204.0 20080101 20200624 994980 99999 CAPE ELIZABETH- 45NM WEST OF ABERDEEN W US 47.34 -124.75 0.0 20040907 20180425 994990 99999 DATA BUOY 62145 UK 53.1 2.8 30.0 20020409 20180425 995000 99999 MOBILE SOUTH 64 NM SOUTH OF DAUPHIN ISLA US 29.18 -88.21 0.0 20020409 20180425 995003 99999 BUOY 22183 37.73 126.24 3.0 20180101 20180425 995005 99999 BUOY 23016 -1.614 66.794 3.0 20180101 20180425 995007 99999 BUOY 23092 17.862000000000002 89.665 3.0 20180101 20180425 995008 99999 BUOY 41099 14.172 -60.946000000000005 3.0 20180101 20180415 995010 99999 PLATFORM NO. 62126 UK 53.8 -3.6 0.0 19880612 20081231 995014 99999 BUOY 44050 46.7 -56.183 3.0 20180101 20180425 995019 99999 BUOY 46114 36.7 -122.3 3.0 20180101 20180425 995020 99999 PLATFORM NO. 62101 UK 50.6 -2.9330000000000003 0.0 19880915 20041209 995030 99999 PLATFORM NO. 63111 UK 59.5 1.5 0.0 19880812 20041219 995040 99999 PLATFORM NO. 62137 UK 57.6 1.8 0.0 19890311 20081228 995050 99999 PLATFORM NO. 62138 UK 58.4 -0.1 0.0 19890814 19960310 995060 99999 PLATFORM NO. 62116 US 57.7 1.4 0.0 19890510 20180425 995070 99999 PLATFORM NO. 62115 US 58.05 -3.05 0.0 19890504 20180425 995080 99999 PLATFORM NO. 63137 UK 57.8 1.8 0.0 19940409 20020513 995090 99999 PLATFORM NO. 62142 UK 56.8 1.7 0.0 19910830 19980408 995100 99999 PLATFORM NO. 62147 UK 58.0 1.1 0.0 19890213 19960420 995110 99999 PLATFORM NO. 62125 US 53.8 -3.5 0.0 19890317 20081231 995120 99999 PLATFORM NO. 62111 UK 58.1 0.4 0.0 19890814 20081231 995130 99999 PLATFORM NO. 62123 US 56.4 2.2 0.0 19890318 20080712 995140 99999 PLATFORM 62121 UK 53.6 2.8 0.0 19890814 20180306 995150 99999 PLATFORM NO. 62127 UK 53.5 2.2 0.0 19890814 20041230 995160 99999 SEAL ROCKS 55NM SOUTH OF VALDEZ AK US 60.22 -146.83 0.0 19900821 20180425 995170 99999 PLATFORM NO. 63109 US 59.35 1.3 0.0 19900712 20180425 995180 99999 PLATFORM NO. 62141 US 60.38 1.05 0.0 19890814 20180425 995190 99999 PLATFORM NO. 62118 UK 57.7 0.9 0.0 19890814 20081231 995200 99999 ENVIRONM BUOY 62133 US 57.1 1.0 0.0 19890814 20180425 995210 99999 PLATFORM NO. 62129 US 53.05 2.117 0.0 19890814 20180425 995220 99999 PLATFORM 62120 UK 56.4 2.1 0.0 19890815 20180425 995230 99999 PLATFORM NO. 62122 US 56.3 2.01 0.0 19890814 20180425 995240 99999 PLATFORM NO. 62130 UK 53.0 1.7 0.0 19890804 20080213 995250 99999 PLATFORM NO. 63108 UK 60.133 1.7 0.0 19890814 20081231 995260 99999 ENVIRONM BUOY 62138 US 58.3 -1.7 0.0 19891121 20180425 995270 99999 DATA BUOY 63104 UK 61.2 1.6 30.0 19890814 20180425 995280 99999 PLATFORM NO. 63101 UK 61.117 0.9 0.0 19890814 20081231 995290 99999 DATA BUOY 63110 UK 59.5 1.5 30.0 19890814 20180425 995300 99999 PLATFORM NO. 62114 US 58.3 1.0 0.0 19890808 20180425 995310 99999 PLATFORM NO. 63102 UK 61.2 1.1 0.0 19890324 20041217 995320 99999 PLATFORM NO. 62113 UK 58.4 0.3 0.0 19880904 20080913 995330 99999 PLATFORM NO. 62117 US 57.92 0.0 0.0 19890112 20081231 995340 99999 NICKERSON BANK CA 46.44 -53.39 3.0 19880915 20081231 995350 99999 PLATFORM NO. 44172 CA 46.5 -48.4 0.0 19910813 20010912 995360 99999 ENVIRONM BUOY 62162 UK 57.4 -0.5 0.0 19901017 20080219 995370 99999 MOORED BUOY 20106 PO 41.7 -31.9 0.0 19890816 19940928 995380 99999 BUOY 62163 / BRITTANY UK 47.5 -8.5 0.0 19890305 20180425 995390 99999 HALIFAX HARBOR CA 44.5 -63.4 3.0 19890814 20081231 995400 99999 PLATFORM NO. 62150 US 59.5 1.4 0.0 19900921 20180425 995410 99999 MOORED BUOY 45134 CA 42.4 -80.5 3.0 19920315 20020127 995420 99999 PLATFORM NO. 63106 UK 53.5 2.0 0.0 19890416 20081118 995430 99999 PLATFORM NO. 62143 UK 58.3 0.4 0.0 19900405 20081231 995440 99999 DATA BUOY 63105 UK 61.0 1.7 30.0 19880925 20180425 995450 99999 CANAVERAL 20 NM EAST OF CAPE CANAVERAL US 28.519000000000002 -80.166 0.0 19890814 20180425 995460 99999 CANAVERAL EAST 120NM EAST OF CAPE CANAVE US 28.9 -78.55 0.0 19890814 20180425 995470 99999 PENSACOLA - 115NM EAST SOUTHEAST OF PENS US 28.8 -86.06 0.0 19890211 20180425 995480 99999 EAST SCOTIA SLOPE CA 42.26 -62.0 3.0 19890814 20180425 995490 99999 SW GRAND BANKS CA 44.26 -53.62 3.0 19891101 20081231 995500 99999 BANQUREAU BANKS CA 44.26 -57.08 3.0 19890814 20180425 995510 99999 PLATFORM NO. 62560 US 43.0 -79.3 0.0 19890626 20081231 995520 99999 PLATFORM NO. 62561 FR 29.2 -13.4 0.0 19890418 20081231 995530 99999 PLATFORM NO. 62562 FR 48.033 -17.5 0.0 19890404 20041230 995540 99999 PLATFORM NO. 62563 US 55.12 -6.6 0.0 19890125 20041229 995550 99999 PLATFORM NO. 62565 FR 28.1 -15.1 0.0 19890609 20080112 995560 99999 PLATFORM NO. 62566 FR 57.7 -15.0 0.0 19890407 20041230 995570 99999 PLATFORM NO. 62567 US 42.4 -15.2 0.0 19890326 19980203 995580 99999 PLATFORM NO. 62568 FR 30.3 -28.2 0.0 19910921 20041112 995590 99999 PLATFORM NO. 62569 FR 30.4 -11.2 0.0 19890115 20080809 995600 99999 PLATFORM NO. 62570 US 29.0 -14.117 0.0 19891104 19970604 995610 99999 PLATFORM NO. 62572 FR 28.3 -15.2 0.0 19940827 20080312 995620 99999 PLATFORM NO. 62573 FR 28.3 -14.6 0.0 19890103 20040830 995630 99999 ENVIRONM BUOY 62169 UK 58.2 0.033 0.0 19891003 20041231 995640 99999 PLATFORM NO. 62575 FR 27.6 -16.1 0.0 19900728 20031130 995650 99999 PLATFORM NO. 62576 FR 27.3 -18.1 0.0 19890304 20040704 995660 99999 PLATFORM NO. 62578 FR 28.2 -15.1 0.0 19911229 20081210 995670 99999 PLATFORM NO. 62581 FR 30.2 -13.0 0.0 19881221 20041017 995680 99999 PLATFORM NO. 62582 FR 28.2 -15.0 0.0 19910104 20020714 995690 99999 PLATFORM NO. 62584 FR 29.3 -14.2 0.0 19901115 19950401 995700 99999 GASCOGNE BUOY 62001 UK 45.2 -5.0 0.0 19881211 20180425 995710 99999 ENVIRONM BUOY 44231 CA 45.1 -55.8 0.0 19940406 19940406 995720 99999 ENVIRONM BUOY 62102 UK 53.5 -19.4 0.0 19890814 20040703 995730 99999 ENVIRONM BUOY 62112 UK 58.7 1.3 0.0 19890903 20041215 995740 99999 ENVIRONM BUOY 62119 US 57.0 2.0 0.0 19890709 20180425 995750 99999 ENVIRONM BUOY 62128 UK 53.4 2.3 0.0 19890814 20081121 995760 99999 DATA BUOY 62166 UK 57.2 0.5 30.0 19890901 20081231 995770 99999 ENVIRONM BUOY 62414 UK 53.833 2.917 0.0 19890713 20080322 995780 99999 ENVIRONM BUOY 63103 UK 61.1 1.1 0.0 19890721 20081231 995790 99999 ENVIRONM BUOY 62551 24.3 -39.2 0.0 19920216 20081231 995800 99999 ENVIRONM BUOY 62552 24.2 -51.4 0.0 19910512 20081231 995810 99999 ENVIRONM BUOY 62553 22.4 -55.4 0.0 19890728 20081231 995820 99999 ENVIRONM BUOY 62554 SC 17.5 -62.5 0.0 19930824 20081231 995830 99999 ENVIRONM BUOY 62555 31.2 -37.1 0.0 19951220 20081231 995840 99999 ENVIRONM BUOY 62556 US 29.4 -25.92 0.0 19901107 20081229 995850 99999 DATA BUOY 62142 UK 53.0 2.1 30.0 19910730 20081231 995860 99999 ENVIRONM BUOY 62558 25.4 -37.6 0.0 19940801 20081231 995870 99999 DATA BUOY 62052 FR 48.5 -5.6 3.0 19900117 20081231 995880 99999 ENVIRONM BUOY 62590 CF -4.5 11.5 3.0 19890907 20031208 995890 99999 ENVIRONM BUOY 62051 US 53.5 -5.4 0.0 19910716 20081219 995900 99999 MOORED BUOY 44233 CA 44.0 -50.0 0.0 19890723 19960813 995910 99999 W. TAMPA 106NM WEST NORTHWEST OF TAMPA US 28.51 -84.51 0.0 19890808 20081231 995920 99999 BUOY 62103 / CHANNEL LIGHTSHIP UK 49.9 -2.9 0.0 19911214 20180425 995930 99999 ENVIRONM BUOY 62104 US 50.417 0.233 0.0 19900103 20180425 995940 99999 DATA BUOY 62144 UK 53.4 1.7 30.0 19901117 20180425 995950 99999 ENVIRONM BUOY 63115 UK 58.4 -5.6 0.0 19900331 20081231 995960 99999 PRINCE EDWARD PT CA 43.79 -76.87 3.0 19911018 20081123 995970 99999 SLATE ISLAND CA 48.53 -86.95 3.0 19960723 20081031 995980 99999 GEORGIAN BAY CA 45.54 -81.01 180.0 19940404 20081217 995990 99999 PORT STANLEY CA 42.783 -81.367 3.0 19900115 20081121 996000 99999 MOORED BUOY 40503 20.2 -67.4 0.0 19901003 20040906 996010 99999 MOORED BUOY 40605 15.1 -79.9 0.0 19920829 19930927 996020 99999 ENVIRONM BUOY 50806 PO 39.5 -27.7 0.0 19900124 19970530 996030 99999 ENVIRONM BUOY 62136 UK 60.6 1.0 0.0 19900115 20081018 996040 99999 ENVIRONM BUOY 63119 US 56.3 2.1 0.0 19920416 20081231 996050 99999 K2 BUOY 62081 UK 51.0 -13.3 0.0 20011129 20180425 996060 99999 ENVIRONM BUOY 62135 UK 58.7 1.4 0.0 19900305 20081231 996070 99999 DATA BUOY 63113 UK 61.0 1.7 30.0 19930908 20180425 996080 99999 NICE BUOY 61001 FR 43.4 7.8 3.0 19920701 20180425 996090 99999 ENVIRONM BUOY 62146 UK 58.1 1.1 0.0 19920416 20081231 996100 99999 ENVIRONM BUOY 62571 UY -34.6 -54.6 0.0 19891215 19901109 996110 99999 K3 BUOY 62108 UK 53.5 -19.5 0.0 19920416 20081021 996120 99999 K4 BUOY 62105 UK 54.54 -12.36 0.0 19921207 20041231 996130 99999 ENVIRONM BUOY 62550 PO 42.3 -11.2 0.0 19901126 20040510 996140 99999 ENVIRONM BUOY 62583 PO 42.0 -11.3 0.0 19900203 19950516 996150 99999 ENVIRONM BUOY 62586 PO 41.6 -11.5 0.0 19900114 20011119 996160 99999 ENVIRONM BUOY 62587 PO 42.2 -11.2 0.0 19941230 20030530 996170 99999 LION BUOY 61002 FR 42.1 4.7 3.0 19900207 20180425 996180 99999 FREEPORT TX. 60 NM SOUTH OF FREEPORT T US 27.91 -95.36 0.0 19910515 20180425 996190 99999 CORPUS CHRISTI TX. 50NM SOUTHEAST OF CO US 26.95 -96.7 0.0 19920416 20180425 996200 99999 ENVIRONM BUOY 62124 UK 54.6 1.4 0.0 19960226 20030423 996210 99999 NORTH NOMAD CA 53.91 -138.85 3.0 19900917 20180425 996220 99999 FAIRWEATHER GROUNDS 92NM SOUTHEAST OF YA US 58.25 -138.0 0.0 19920416 20180425 996230 99999 ENVIRONM BUOY 64043 FO 61.6 -13.4 0.0 19960802 20041117 996240 99999 ENVIRONM BUOY 62413 UK 60.7 1.0 0.0 20020205 20020205 996250 99999 LA HAVE BANK CA 42.5 -64.02 3.0 19911102 20041231 996260 99999 LAURENTIAN FAN CA 43.0 -58.0 3.0 19900922 20081231 996280 99999 DATA BUOY 44001 US 38.7 -73.6 3.0 20011215 20041229 996290 99999 BUOY 41100 / LESSER ANTILLES FR 15.9 -57.9 3.0 19910101 20081231 996300 99999 VIRGINIA BEACH 64 NM EAST OF VIRGINIA BE US 36.61 -74.84 0.0 19911211 20180425 996310 99999 MOORED BUOY 46046 US 46.3 -124.2 0.0 19930906 20030913 996320 99999 ENVIRONM BUOY 62157 US 58.117 0.11699999999999999 0.0 19901019 20180425 996330 99999 23 NAUTICAL MILES SOUTHWEST OF MONTAUK P US 40.7 -72.0 0.0 19910405 20180425 996340 99999 SE CAPE COD 30NM EAST OF NANTUCKET MA US 41.26 -69.29 0.0 19911003 20180425 996350 99999 ST. AUGUSTINE FL 40NM ENE OF ST AUGUSTI US 30.0 -80.6 0.0 20020626 20081231 996360 99999 DATA BUOY 44023 US 37.5 -74.4 3.0 19930825 20040928 996370 99999 REDONDO BEACH US 33.84 -118.45 3.0 19910503 20021202 996380 99999 ENVIRONM BUOY 63116 UK 57.883 0.033 0.0 19930218 20081231 996390 99999 ENVIRONM BUOY 62148 US 53.6 1.05 0.0 19991229 20180425 996400 99999 SANTA BARB E - 12NM SOUTHWEST OF SAN BAR US 34.24 -119.85 0.0 19931227 20180425 996410 99999 CENTRAL DIXON ENTRANCE BUOY CA 54.38 -132.45 3.0 19920416 20180425 996420 99999 LONG ISLAND 33 NM SOUTH OF ISLIP NY US 40.25 -73.17 0.0 19920416 20180425 996430 99999 MOUNT LOUIS CA 49.54 -65.77 3.0 19920416 20081106 996440 99999 DATA BUOY 63117 UK 58.0 1.1 30.0 19910606 20180425 996450 99999 ENVIRONM BUOY 63118 UK 58.9 -7.5 0.0 19930620 20081222 996460 99999 NORTH HECATE STRAIT CA 53.62 -131.1 3.0 19930727 20180425 996470 99999 SANTA BARBARA W 38 NM WEST OF SANTA BARB US 34.27 -120.45 0.0 19910722 20180425 996480 99999 BUOY 62304 / SANDETTIE LIGHTSHIP UK 51.1 1.8 0.0 20011129 20180425 996490 99999 WEST DIXON ENTRANCE CA 54.16 -134.28 3.0 19960226 20180425 996500 99999 LA PEROUSE BANK CA 48.84 -126.0 3.0 19960311 20180425 996510 99999 WEST MORESBY CA 52.52 -132.68 3.0 19980624 20180128 996520 99999 NANAKWA SHOAL CA 53.83 -128.83 3.0 20011129 20180425 996530 99999 SOUTH HECATE STRAIT CA 52.42 -129.81 3.0 19940113 20180425 996540 99999 WEST SEA OTTER CA 51.37 -128.75 3.0 19930526 20180425 996550 99999 WEST LAKE ONTARIO CA 43.4 -79.45 78.0 19920825 20081126 996560 99999 MOORED BUOY 23051 MU 23.7 58.5 0.0 19940804 19980304 996570 99999 BUOY 62305 / GREENWICH LIGHTSHIP UK 50.4 0.0 0.0 20011129 20180425 996580 99999 ENVIRONM BUOY 63114 UK 61.1 1.083 0.0 19911114 20080220 996590 99999 DATA BUOY 41017 US 35.4 -75.1 3.0 19940131 20021109 996600 99999 ENVIRONM BUOY 55011 AS -40.8 144.3 0.0 19930221 19970403 996610 99999 S ALEUTIANS 380NM SOUTHWEST OF KODIAK A US 52.7 -154.98 0.0 19951220 20180425 996620 99999 EAST DELLWOOD CA 50.87 -129.92 3.0 20011129 20180425 996630 99999 ENVIRONM BUOY 62134 UK 57.2 1.2 0.0 19911002 20081231 996640 99999 ENVIRONM BUOY 62023 US 51.4 -7.92 0.0 19920926 20180425 996650 99999 MOORED BUOY 23052 MU 22.6 59.5 0.0 19931208 19931208 996660 99999 ENVIRONM BUOY 62411 NL 52.2 4.2 0.0 19920116 20011117 996670 99999 ENVIRONM BUOY 62403 NL 53.2 3.2 0.0 19960908 19960908 996680 99999 ENVIRONM BUOY 62415 NL 51.9 3.6 0.0 19960930 19960930 996690 99999 ENVIRONM BUOY 62404 NL 53.8 4.3 0.0 20030809 20041118 996700 99999 ENVIRONM BUOY 62405 NL 53.5 4.2 0.0 19920729 20040426 996710 99999 ENVIRONM BUOY 62425 NL 53.8 5.8 0.0 19990526 20020524 996720 99999 MOORED BUOY 44143 CA 45.9 -50.0 0.0 19940828 20011201 996730 99999 MOORED BUOY 44144 CA 43.8 -60.7 0.0 19920521 20020330 996740 99999 TANNER BANKS - 121NM WEST OF SAN DIEGO US 32.43 -119.53 0.0 20011129 20180425 996750 99999 ENVIRONM BUOY 62090 US 53.12 -11.2 0.0 19960314 20041231 996760 99999 STONEWALL BANKS - 20NM WEST OF NEWPORT US 44.62 -124.53 0.0 19930207 20180425 996770 99999 K5 BUOY 64045 UK 59.1 -11.4 0.0 20011129 20180425 996780 99999 BARREN ISLAND US 59.05 -152.23 3.0 19930912 19951115 996790 99999 ENVIRONM BUOY 62132 US 56.4 2.0 0.0 20011129 20180425 996800 99999 ENVIRONM BUOY 62402 NL 53.5 3.15 0.0 19940907 20080220 996810 99999 HARVEST EXPERIMENT PLATFORM US 34.48 -120.69 3.0 19930830 19990217 996820 99999 ENVIRONM BUOY 62407 US 52.9 4.0 0.0 20011207 20080229 996830 99999 BUOY 62091 / M2 20NM EAST OF LAMBAY US 53.47 5.42 0.0 20020219 20081231 996840 99999 K7 BUOY UK 60.7 -4.5 0.0 20020219 20180425 996850 99999 BUOY 62301 / ABERPORTH (CARDIGAN BAY) UK 52.3 -4.5 0.0 19940420 20081231 996860 99999 BUOY 62303 / TURBOT BANK UK 51.6 -5.1 0.0 20011129 20081231 996870 99999 HALIBUT BANK CA 49.34 -123.73 3.0 19951105 20180425 996880 99999 ENVIRONM BUOY 62151 UK 54.0 0.7 0.0 19940219 20080621 996890 99999 ENVIRONM BUOY 62302 UK 54.1 -3.6 0.0 19930414 20040907 996900 99999 ENVIRONM BUOY 64050 UK 60.1 -4.0 0.0 19950425 20030702 996910 99999 ENVIRONM BUOY 62409 NL 52.7 3.7 0.0 19940119 20040828 996920 99999 DATA BUOY 63112 UK 61.1 1.0 30.0 19970509 20180425 996930 99999 SENTRY SHOAL CA 49.91 -124.99 3.0 19940214 20180425 996940 99999 ENVIRONM BUOY 62152 US 54.2 2.4 0.0 20011129 20081231 996950 99999 ENVIRONM BUOY 62410 US 53.2 3.6 0.0 19960331 20041231 996960 99999 SOUTH BROOKS CA 49.74 -127.93 3.0 19930626 20180425 996970 99999 GALVESTON 22NM EAST OF GALVESTON TX. US 29.25 -94.41 0.0 20011129 20180425 996980 99999 SOUTH MORESBY CA 51.83 -131.22 3.0 19940617 20180425 996990 99999 OLYMPIC NORTHEAST US 31.92 -80.85 3.0 19940908 20020517 997000 99999 OLYMPIC SOUTHWEST US 31.89 -80.86 3.0 20010621 20020526 997001 99999 FLETCHER ICE ISLAND T-3 (ARCTIC) US 6.0 19520401 19550924 997010 99999 BUOY 41008 / GRAYS REEF - 40 NM SOUTHEAST OF SAVANNAH US 31.4 -80.87 0.0 20020409 20180425 997012 99999 BUOY 31003 / SW EXTENSION PIRATA ATLAS BUOY -8.0 -30.0 3.0 20180105 20180424 997020 99999 ENVIRONM BUOY 44145 CA 46.7 -48.7 0.0 20020411 20030118 997030 99999 BUOY 41013 / FRYING PAN SHOALS NC BUOY US 33.48 -77.58 3.0 20080101 20180425 997040 99999 DIAMOND SHOALS US NC 35.06 -75.38 5.0 20080101 20180425 997050 99999 BUOY 41101 / EAST OF MARTINIQUE FR 14.6 -56.2 3.0 20080101 20081231 997060 99999 NA2 - NAVY-2 US 27.16 -82.95 0.0 20080808 20180425 997070 99999 CMP4 - PASCO COUNTY BUOY FL US 28.3 -83.3 0.0 20080101 20081231 997071 99999 URSA-MISS CANYON US 28.2 -89.117 5.0 20180101 20180414 997073 99999 PERDIDO HOST-ALAMINOS CANYON US 26.133000000000003 -94.9 10.0 20180101 20180425 997074 99999 FIRST LANDING US 36.983000000000004 -76.05 3.0 20180101 20180425 997077 99999 SUNSET BEACH NEARSHORE WAVES US NC 33.842 -78.476 3.0 20130513 20200310 997078 99999 LITTLE PORT WALTER US AK 56.388000000000005 -134.637 2.5 20130101 20141231 997079 99999 THUNDER BAY ISLAND US MI 45.035 -83.194 175.9 20130101 20200624 997080 99999 CMP24 - WEST FLORIDA CENTRAL BUOY US 27.5 -83.72 0.0 20080101 20180425 997090 99999 MOORED BUOY 42023 26.05 -83.06700000000001 0.0 20080101 20080719 997110 99999 GA-252 TABS B US 28.99 -94.9 3.0 20080101 20180425 997120 99999 MOORED BUOY 42046 27.517 -94.03299999999999 0.0 20080101 20081231 997130 99999 JONESPORT MAINE US 44.27 -67.31 0.0 20080101 20180425 997140 99999 BUOY A0102 - MASS. BAY/STELLWAGEN US 42.52 -70.57 0.0 20080101 20180425 997150 99999 BUOY B0102 - WESTERN MAINE SHELF US 43.18 -70.43 0.0 20080101 20180425 997160 99999 BUOY C0201 - CASCO BAY US 43.57 -70.06 0.0 20080101 20081231 997170 99999 BUOY E0104 - CENTRAL MAINE SHELF US 43.72 -69.36 0.0 20080103 20180425 997171 99999 SITKA US AK 57.052 -135.342 1.0 20130101 20200624 997172 99999 LAMESHUR BAY ST JOHN VQ 18.317999999999998 -64.72399999999999 1.0 20130101 20200624 997173 99999 KAWAIHAE US HI 20.037 -155.829 1.0 20130101 20200624 997174 99999 CHARLESTON US SC 32.782 -79.925 6.0 20130101 20200624 997175 99999 PORT MOLLER US AK 66.986 -160.57399999999998 12.0 20130101 20141231 997176 99999 HOMER SPIT US AK 59.602 -151.417 15.0 20130101 20200624 997177 99999 ICY BAY US AK 59.923 -141.359 15.0 20130101 20200624 997178 99999 MARMION ISLAND US AK 58.198 -134.257 3.0 20130101 20200624 997179 99999 MARY ISLAND US AK 55.099 -131.18200000000002 4.0 20130101 20200624 997180 99999 BUOY F0103 - WEST PENOBSCOT BAY US 44.06 -69.0 0.0 20080101 20180425 997181 99999 BUOY I0103 - EASTERN MAINE SHELF US 44.11 -68.11 0.0 20080101 20180425 997182 99999 BUOY J0201 - COBSCOOK BAY US 44.89 -67.02 0.0 20080101 20081226 997183 99999 BUOY M0102 - JORDAN BASIN US 43.49 -67.88 0.0 20080101 20180425 997184 99999 SCOTIAN SHELF US ME 43.62 -66.55 4.0 20080204 20081117 997185 99999 CENTRAL LONG ISLAND SOUND US 41.14 -72.66 0.0 20080101 20180425 997186 99999 WESTERN LONG ISLAND SOUND US 40.96 -73.58 0.0 20080101 20180112 997187 99999 POINT SAPIN CA 46.85 -64.64 3.0 20080101 20180425 997189 99999 NE BURGEO BANK CA 47.28 -57.35 3.0 20080127 20081231 997190 99999 LAKE ONTARIO BUOY - 20NM NORTH NORTHEAST US 43.62 -77.41 74.7 20080517 20081125 997191 99999 LAKE WINNIPEG S. BASIN CA 50.79 -96.73 217.0 20080530 20081031 997192 99999 SOUTH GEORGIAN BAY CA 44.94 -80.63 176.0 20080503 20081026 997193 99999 LAKE WINNIPEG NORTH CA 53.2 -98.83 217.0 20080616 20080929 997194 99999 LAKE OF THE WOODS CA 49.7 -94.52 323.0 20080513 20081010 997195 99999 SOUTHERN LAKE HURON CA 43.54 -82.07 176.0 20080419 20081023 997196 99999 LAKE SIMCOE CA 44.5 -79.37 180.0 20080530 20080929 997197 99999 LAKE NIPISSING CA 46.23 -79.72 176.0 20080507 20081103 997198 99999 PORT ORFORD - 16 NM WEST OF PORT ORFORD US 42.75 -124.85 0.0 20080101 20081231 997199 99999 SOUTH SANTA ROSA ISLAND CA US 33.65 -120.2 3.0 20080101 20180425 997200 99999 MOORED BUOY 46072 51.617 -172.017 0.0 20080101 20081231 997201 99999 SHUMAGIN ISLANDS US 53.93 -160.81 3.0 20080101 20180425 997202 99999 ALBATROSS BANKS US 56.05 -152.45 3.0 20080101 20180425 997203 99999 WESTERN PRINCE WILLIAM SOUND US 60.8 -148.28 3.0 20080101 20180407 997204 99999 CAPE SUCKLING 84NM SOUTHEAST OF CORDOVA US 59.69 -143.42 0.0 20080101 20180425 997205 99999 CAPE EDGECUMBE BUOY US 56.59 -136.16 0.0 20080101 20081231 997206 99999 SAN CLEMENTE BASIN US 32.5 -118.0 3.0 20080101 20180425 997207 99999 NEW DUNGENESS WA (HEIN BANK) US 48.33 -123.17 3.0 20080101 20180425 997209 99999 ATLANTIC CITY MARINA NJ US 39.38 -74.42 0.0 20040803 20081231 997210 99999 AVALON NJ US 39.09 -74.72 0.0 20040803 20081231 997211 99999 TAS - TARPON SPRINGS FL US 28.15 -82.75 0.0 20040904 20141231 997212 99999 BRANT BEACH NJ US 39.61 -74.2 0.0 20040803 20081231 997214 99999 PI-745 TABS K US 26.13 -96.31 3.0 20040907 20180425 997215 99999 MOORED BUOY 43110 59.5 -1.5 0.0 20041220 20041220 997216 99999 BUOY N - NORTHEAST CHANNEL US 42.31 -65.93 0.0 20040907 20081231 997217 99999 MOORED BUOY 44546 50.3 -74.2 0.0 20040908 20080304 997218 99999 PORT COLBORNE CA 42.74 -79.35 180.0 20040907 20081120 997219 99999 LAKE ST CLAIR CA 42.43 -82.68 178.0 20040907 20081205 997220 99999 MOORED BUOY 46779 55.417 -15.232999999999999 0.0 20040907 20041210 997224 99999 30NM SOUTHWEST OF MIZEN HEAD EI 51.277 -10.55 2.5 20040907 20081231 997225 99999 DONEGAL BAY EI 55.0 -10.0 4.5 20040907 20081231 997226 99999 MOORED BUOY 62131 58.1 0.1 0.0 20040908 20081231 997227 99999 MOORED BUOY 62140 57.4 1.3 0.0 20041002 20080126 997228 99999 MOORED BUOY 62168 53.417 2.917 0.0 20040908 20081216 997229 99999 MOORED BUOY 62202 52.2 3.8 0.0 20040908 20041230 997230 99999 MOORED BUOY 62206 53.3 2.917 0.0 20040907 20080222 997232 99999 MOORED BUOY 63055 60.6 1.7 0.0 20041002 20081231 997233 99999 MOORED BUOY 64049 UK 57.1 2.2 0.0 20040907 20081231 997234 99999 LAKE WINNIPEG NARROWS CA 51.45 -96.7 217.0 20080613 20081031 997235 99999 ISLE DERNIERES LA / CSI05 US 29.05 -90.53 0.0 20040921 20081231 997236 99999 MARSH ISLAND LA / CSI03 US 29.44 -92.06 0.0 20040922 20200413 997238 99999 SALT POINT LA / CSI14 US 29.52 -91.55 0.0 20040921 20041231 997239 99999 SOUTH TIMBALIER BLOCK 52 LA / CSI06 US 28.87 -90.48 0.0 20040921 20200413 997241 99999 PLATFORM NO. 63106 US 61.016999999999996 1.117 3.0 20080103 20180425 997243 99999 NEAH BAY WA (TRAFFIC SEPARATION LIGHTED US 48.49 -124.73 3.0 20080101 20180425 997246 99999 MOORED BUOY 62159 58.2 0.017 0.0 20080101 20081231 997248 99999 MOORED BUOY 13600 21.9 -44.2 0.0 20180101 20180425 997252 99999 DATA BUOY 62147 UK 57.6 1.7 30.0 20080305 20081103 997253 99999 U.S. NAVY TOWER M2R6 US 31.53 -80.24 0.0 20041109 20081231 997254 99999 9063020 - BUFFALO NY US 42.88 -78.89 178.3 20041122 20200624 997255 99999 9087044 - CALUMET IL US 41.73 -87.54 179.4 20041122 20200624 997256 99999 DESDEMONA SANDS LIGHT OR US 46.23 -123.96 10.0 20041122 20041231 997257 99999 9075099 - DE TOUR VILLAGE MI US 45.99 -83.9 179.6 20041122 20200624 997258 99999 9014098 - FORT GRATIOT MI US 43.01 -82.42 180.1 20041122 20200624 997259 99999 9099090 - GRAND MARAIS MN US 47.75 -90.34 186.2 20041122 20200624 997260 99999 9075014 - HARBOR BEACH MI US 43.85 -82.64 179.2 20041122 20200624 997261 99999 9087023 - LUDINGTON MI US 43.95 -86.44 179.4 20041122 20200624 997262 99999 9099018 - MARQUETTE C.G. MI US 46.55 -87.38 187.5 20041122 20200624 997263 99999 MARSH ISLAND OR US 46.21 -123.62 7.0 20041122 20041231 997264 99999 9052030 - OSWEGO NY US 43.46 -76.51 78.0 20041122 20200624 997265 99999 9099004 - POINT IROQUOIS MI US 46.49 -84.63 186.1 20041122 20200624 997266 99999 9076024 - ROCK CUT MI US 46.27 -84.19 179.6 20041122 20200624 997267 99999 U.S. NAVY TOWER R4 US 30.8 -80.32 0.0 20041122 20041231 997268 99999 9076070 - S.W. PIER MI US 46.5 -84.37 185.7 20041122 20200624 997269 99999 DULUTH US 46.78 -92.09 185.4 20080101 20081231 997270 99999 ATLANTIC CITY US NJ 39.35 -74.42 10.0 20080101 20200624 997271 99999 THE BATTERY US NY 40.701 -74.014 10.0 20080117 20200624 997272 99999 BERGEN POINT US NY 40.639 -74.146 10.0 20080101 20200624 997273 99999 BORDEN FLATS LIGHT US MA 41.7 -71.17 10.0 20080101 20200624 997274 99999 WOODS HOLE US MA 41.52 -70.67 10.0 20080101 20200624 997275 99999 PORTLAND US ME 43.65 -70.25 10.0 20080101 20200624 997276 99999 CAPE MAY US NJ 38.97 -74.97 10.0 20080101 20130430 997277 99999 CONIMUCUT LIGHT US RI 41.72 -71.33 10.0 20080101 20200624 997278 99999 PROVIDENCE US RI 41.8 -71.4 10.0 20080101 20200624 997279 99999 FALL RIVER US MA 41.7 -71.0 10.0 20080101 20200624 997280 99999 KINGS POINT US NY 40.8 -73.77 10.0 20080101 20200624 997281 99999 LEWES US DE 38.78 -75.12 10.0 20080101 20200624 997282 99999 MONTAUK US NY 41.05 -71.97 10.0 20080101 20200624 997283 99999 NEW LONDON US CT 41.35 -72.08 8.5 20080101 20200624 997284 99999 NEW HAVEN US CT 41.28 -72.88 10.0 20080101 20200624 997285 99999 NEWPORT US RI 41.5 -71.32 10.0 20080101 20200624 997286 99999 PHILADELPHIA US PA 39.93 -75.0 20.0 20080101 20200624 997287 99999 EASTPORT US ME 44.9 -66.98 10.0 20080101 20200624 997288 99999 QUONSET POINT US RI 41.58 -71.4 10.0 20080102 20200624 997289 99999 SANDY HOOK US NJ 40.47 -74.0 10.0 20080101 20200624 997290 99999 BRIDGEPORT US CT 41.17 -73.18 10.0 20080101 20200624 997291 99999 FOREST OIL HIGH ISLA US LA 28.12 -93.67 34.0 20080101 20101217 997292 99999 LA JOLLA US CA 32.87 -117.25 20.0 20080101 20200624 997293 99999 MARBLEHEAD US OH 41.55 -82.9 190.0 20080101 20200624 997294 99999 POTTER COVE - PRUDENCE ISLAND US RI 41.637 -71.339 3.0 20080101 20200624 997295 99999 TOLEDO US OH 41.68 -83.4 184.0 20080101 20200624 997296 99999 BALTIMORE MD US MD 39.27 -76.57 10.0 20080101 20200624 997297 99999 CAMBRIDGE MD US MD 38.57 -76.07 6.0 20080101 20200624 997298 99999 CHEASAPEAKE BIO LAB US VA 38.317 -76.45 10.0 20070202 20081002 997299 99999 CHEASAPEAKE BRIDGE US VA 36.97 -76.12 16.0 20080101 20141231 997300 99999 CHEASAPEAKE CITY US MD 39.52 -75.8 10.0 20080101 20200624 997301 99999 FT PALASKI US GA 32.03 -80.9 6.0 20080101 20200624 997302 99999 FRANCIS SCOTT KEY BR US MD 39.22 -76.52 10.0 20080101 20200624 997304 99999 LEWISETTA VA US VA 37.98 -76.47 10.0 20080101 20200624 997305 99999 MONEY POINT VA US VA 36.77 -76.3 10.0 20080101 20200624 997306 99999 SPRINGMAID PIER US SC 33.65 -78.92 10.0 20080124 20180425 997307 99999 OREGON INLET MARINA US NC 35.8 -75.53 10.0 20080101 20200624 997308 99999 RAPPAHANNOCK LGT US VA 37.53 -76.02 10.0 20080101 20200624 997309 99999 SOLOMONS ISLAND US MD 38.32 -76.45 10.0 20080101 20200624 997310 99999 SUNSET BEACH NC US NC 33.87 -78.5 10.0 20080101 20080317 997312 99999 TOLCHESTER BEACH US MD 39.2 -76.23 10.0 20080101 20200624 997313 99999 WACHAPREAGUE US VA 37.6 -75.68 10.0 20080101 20200624 997314 99999 WASHINGTON US DC 38.87 -77.02 10.0 20080101 20200624 997315 99999 YORKTOWN VA US VA 37.22 -76.48 10.0 20080101 20200624 997316 99999 GRAYS HARBOR WA (036) US 46.86 -124.24 0.0 20080101 20180425 997317 99999 HUMBOLDT BAY SOUTH SPIT CA (128) US 40.75 -124.31 0.0 20080101 20081231 997318 99999 CAPE MENDOCINO CA (094) US 40.29 -124.74 0.0 20080101 20180425 997319 99999 POINT REYES CA (029) US 37.57 -123.28 0.0 20080101 20180122 997320 99999 DIABLO CANYON CA (076) US 35.21 -120.86 0.0 20080101 20180425 997321 99999 GOLETA POINT CA (107) US 34.33 -119.8 0.0 20080101 20081231 997322 99999 ANACAPA PASSAGE CA (111) US 34.17 -119.43 0.0 20080101 20180425 997323 99999 HARVEST CA (071) US 34.45 -120.78 0.0 20080101 20180425 997324 99999 SAN NICOLAS ISLAND CA (067) US 33.22 -119.88 0.0 20180101 20180425 997326 99999 SANTA MONICA BAY CA (028) US 33.85 -118.63 0.0 20080101 20180425 997327 99999 SAN PEDRO CA (092) US 33.62 -118.32 0.0 20080101 20180425 997328 99999 DANA POINT CA (096) US 33.46 -117.77 0.0 20080101 20081231 997329 99999 OCEANSIDE OFFSHORE CA (045) US 33.18 -117.47 0.0 20080101 20180425 997330 99999 TORREY PINES OUTER CA (100) US 32.93 -117.39 0.0 20080101 20180425 997334 99999 WAIMEA BAY HI (106) US 21.67 -158.12 0.0 20080101 20180328 997335 99999 MOKAPU POINT HI (098) US 21.42 -157.68 0.0 20080101 20180425 997336 99999 IPAN GUAM (121) US 13.54 144.79 0.0 20080101 20180425 997337 99999 CALCASIEU PASS US LA 29.768 -93.34299999999999 3.0 20080101 20200624 997338 99999 CHICAGO US IL 42.0 -87.5 202.0 20080101 20200624 997339 99999 MICHIGAN CITY US IN 41.73 -86.93 197.0 20080102 20200624 997340 99999 KENOSHA US WI 42.58 -87.8 196.0 20080101 20200624 997341 99999 MUSKEGON US MI 43.23 -86.33 185.0 20080101 20200624 997342 99999 MILWAUKEE US WI 43.05 -87.88 188.0 20080327 20200624 997343 99999 SOUTH HAVEN US MI 42.4 -86.28 193.0 20080101 20200624 997344 99999 TOLEDO LIGHT 2 US OH 41.82 -83.18 188.0 20080101 20200624 997345 99999 CLEARWATER BEACH US FL 27.97 -82.83 10.0 20080101 20200624 997346 99999 FT MYERS US FL 26.65 -81.87 6.0 20080101 20200624 997347 99999 FERNANDINA BEACH US FL 30.67 -81.47 7.0 20080101 20200624 997348 99999 KEY WEST US FL 24.55 -81.8 7.0 20080101 20200624 997349 99999 LIME TREE BAY VQ 17.7 -64.75 10.0 20080101 20200624 997350 99999 MAGUESYES ISLANDS RQ 17.97 -67.05 5.0 20080101 20200624 997351 99999 NAPLES US FL 26.12 -81.8 10.0 20080101 20200624 997352 99999 PANAMA CITY BEACH US FL 30.22 -85.88 10.0 20080101 20200624 997353 99999 ST PETERSBURG US FL 27.75 -82.62 10.0 20080101 20200624 997354 99999 TRIDENT PIER US FL 28.42 -80.58 10.0 20080101 20200624 997355 99999 VIRGINIA KEY US FL 25.73 -80.15 10.0 20100101 20200624 997356 99999 VACA KEY US FL 24.72 -81.1 10.0 20080101 20200624 997357 99999 MCKAY BAY ENTRANCE US FL 27.913 -82.425 2.0 20080101 20200520 997358 99999 MAYPORT US FL 30.397 -81.43 2.0 20080101 20200624 997359 99999 ALPENA US MI 45.067 -83.417 179.0 20080324 20200624 997360 99999 BAYOU GAUCHE US LA 29.77 -90.42 10.0 20080101 20200624 997361 99999 EAGLE POINT US TX 29.48 -94.92 10.0 20080101 20200624 997362 99999 FREEPORT US TX 28.95 -95.3 0.0 20080101 20080319 997363 99999 GALVESTON PLEASURE US TX 29.28 -94.78 17.0 20080101 20101231 997364 99999 GALVESTON PIER 21 US TX 29.3 -94.78 0.0 20080101 20200624 997365 99999 BAYOU LABRANCH US LA 30.05 -90.37 10.0 20080101 20101231 997366 99999 MALAQUITE BEACH US TX 27.58 -97.22 10.0 20080101 20200624 997367 99999 WAVELAND US MS 30.283 -89.367 10.0 20050405 20050829 997368 99999 SABINE PASS NORTH US TX 29.73 -93.87 3.0 20080101 20200624 997369 99999 PORT ISABEL US TX 26.05 -97.22 10.0 20080101 20200624 997370 99999 MORGANS POINT US TX 29.68 -94.98 10.0 20080101 20200624 997371 99999 KIPTOPEKE US VA 37.17 -75.98 7.0 20080101 20200624 997372 99999 REEDY POINT US DE 39.9 -75.57 0.0 20080101 20200624 997373 99999 WESTERN ALEUTIANS US 51.32 179.1 3.0 20080609 20081231 997374 99999 MOORED BUOY 46089 US 45.88 -125.77 4.0 20080101 20180425 997375 99999 MOORED BUOY 46092 US CA 36.75 -122.02 4.0 20080101 20180425 997376 99999 MOORED BUOY 46093 US CA 36.68 -122.4 4.0 20080101 20081231 997377 99999 FRIPP NEARSHORE (FRP 2) US 32.28 -80.41 3.0 20080101 20180425 997378 99999 CAPERS MID-SHELF (CAP 3) US 32.52 -79.34 3.0 20080110 20080428 997379 99999 SAND ISLAND MIDWAY US 28.2 -117.35 4.0 20080101 20200624 997380 99999 ADAK ISLAND US AK 51.87 -176.63 7.0 20080101 20200624 997381 99999 ANCHORAGE US AK 61.23 -149.88 3.0 20080101 20200624 997382 99999 NIKISKI AK US AK 60.68 -151.4 8.0 20080101 20200624 997383 99999 NOME NORTON SOUND US AK 64.5 -165.42 8.0 20080101 20200624 997384 99999 MOLUOLOE US HI 20.9 -156.47 4.0 20080101 20200624 997385 99999 KWAJALEIN ISLAND US 8.73 167.73 3.0 20080101 20200624 997386 99999 PRUDHOE BAY US AK 70.4 -148.52 5.0 20080101 20200624 997387 99999 WAKE ISLAND WQ 19.28 166.62 5.0 20080101 20200624 997388 99999 CAPERS NEARSHORE (CAP 2) US 32.81 -79.63 3.0 20080101 20180425 997389 99999 SUNSET NEARSHORE US NC 33.848 -78.48899999999999 3.0 20080101 20180425 997391 99999 W. FL SEA-COOS US 25.25 -82.21 0.0 20080101 20080113 997392 99999 MOORED BUOY 46091 US CA 36.83 -121.9 3.0 20080101 20081231 997394 99999 MOORED BUOY 46229 US CA 43.4 -124.65 0.0 20080101 20180425 997395 99999 YUCATAN BASIN MX 19.874000000000002 -85.059 0.0 20080101 20180425 997396 99999 MOORED BUOY 41040 US 14.5 -53.02 3.0 20080101 20180425 997397 99999 MOORED BUOY 41041 US 14.5 -46.0 3.0 20080101 20180425 997398 99999 BUOY 42055 / BAY OF CAMPECHE US 22.02 -94.05 3.0 20080101 20180425 997399 99999 BUOY 42057 / WESTERN CARIBBEAN US 14.98 -79.98 3.0 20080501 20180425 997400 99999 BUOY 42058 / CENTRAL CARIBBEAN US 14.98 -74.98 3.0 20080503 20180425 997405 99999 BUOY48542 (ICEXAIR) US 71.25 -151.82 3.0 20080807 20081218 997408 99999 BUOY48618 (ICEXAIR) 79.083 -160.11700000000002 3.0 20080102 20081101 997409 99999 BUOY48544 (ICEXAIR) US 81.32 -139.2 3.0 20080108 20080405 997411 99999 BUOY48551 (ICE MASS 74.25 -142.3 3.0 20080101 20081230 997415 99999 BUOY48543 (ICEXAIR) 78.917 -135.017 3.0 20080807 20081230 997416 99999 BUOY48536 (ICEXAIR) 81.9 -94.417 3.0 20080816 20081231 997417 99999 BUOY25529 (ICEXAIR) US 78.18 -167.33 3.0 20080102 20081210 997418 99999 BUOY25530 (ICEXAIR) US 80.13 -179.63 3.0 20080102 20081121 997423 99999 BUOY 47501 (CES) US 78.37 -127.55 3.0 20080331 20080806 997433 99999 ONSLOW BAY INNER US NC 34.476 -77.28 3.0 20080101 20081231 997434 99999 MOORED BUOY 41038 US 34.0 -77.72 3.0 20080101 20180425 997435 99999 HI-A389 TABS V US 27.54 -93.36 3.0 20080714 20180425 997439 99999 MOORED BUOY 44022 US 40.88 -73.73 4.0 20080101 20180107 997441 99999 DATA BUOY 13534 US 32.8 -27.4 3.0 20080104 20081022 997443 99999 MOORED BUOY 21636 US 27.9 128.2 3.0 20080211 20081022 997444 99999 DRIFTING BUOY 21637 20080101 20180425 997445 99999 MOORED BUOY 21639 41.0 150.8 3.0 20080626 20080806 997454 99999 MOORED BUOY 44549 US 54.9 -22.9 3.0 20080102 20080516 997455 99999 MOORED BUOY 44550 50.4 -29.5 3.0 20080101 20080721 997456 99999 MOORED BUOY 44601 51.5 -30.9 3.0 20080101 20080509 997457 99999 MOORED BUOY 44607 40.3 -33.7 3.0 20080111 20080410 997458 99999 MOORED BUOY 44608 US 40.0 -32.0 3.0 20080101 20080219 997459 99999 MOORED BUOY 44609 47.9 -25.8 3.0 20080101 20080221 997460 99999 MOORED BUOY 44610 53.4 -37.7 3.0 20080101 20080623 997461 99999 MOORED BUOY 44611 55.0 -25.7 3.0 20080102 20080830 997462 99999 MOORED BUOY 44612 US 60.1 15.3 3.0 20080315 20081231 997463 99999 MOORED BUOY 44615 US 46.2 -48.0 3.0 20080315 20081230 997466 99999 MOORED BUOY 44725 US 55.5 -43.9 3.0 20080125 20081231 997467 99999 MOORED BUOY 44726 50.1 -47.3 3.0 20080314 20081231 997468 99999 MOORED BUOY 44727 US 43.6 -34.6 3.0 20080310 20081231 997469 99999 MOORED BUOY 44728 US 48.8 -28.4 3.0 20080310 20081231 997470 99999 MOORED BUOY 44729 US 46.4 -55.1 3.0 20080310 20081231 997471 99999 MOORED BUOY 44743 US 39.7 -11.5 3.0 20080421 20081231 997472 99999 MOORED BUOY 44744 US 36.9 -14.8 3.0 20081030 20081125 997473 99999 MOORED BUOY 44775 US 58.1 -15.9 3.0 20081208 20081231 997476 99999 MOORED BUOY 44833 US 44.2 -63.5 3.0 20080102 20081218 997478 99999 MOORED BUOY 44843 US 64.0 -30.5 3.0 20080102 20180425 997480 99999 MOORED BUOY 44845 US 44.1 -49.3 3.0 20080102 20080225 997483 99999 MOORED BUOY 44850 US 44.4 -40.6 3.0 20080130 20081230 997484 99999 MOORED BUOY 44901 US 42.7 -42.0 3.0 20080103 20081208 997486 99999 MOORED BUOY 46539 50.4 -134.4 3.0 20080116 20081223 997487 99999 MOORED BUOY 46562 US 47.7 -145.0 3.0 20080120 20081223 997488 99999 MOORED BUOY 46635 47.7 -142.1 3.0 20080207 20080803 997489 99999 MOORED BUOY 46637 60.5 -145.7 3.0 20080103 20080216 997490 99999 DRIFTING BUOY CA 20080907 20081214 997491 99999 MOORED BUOY 46702 50.3 -166.2 3.0 20080106 20080908 997492 99999 MOORED BUOY 46707 49.7 -135.3 3.0 20080103 20081231 997499 99999 MOORED BUOY 62502 46.4 -5.3 3.0 20080618 20081218 997500 99999 MOORED BUOY 62503 45.7 -4.9 3.0 20080101 20081031 997501 99999 MOORED BUOY 62504 US 46.8 -8.2 3.0 20080102 20080516 997502 99999 MOORED BUOY 62510 US 35.2 -23.0 3.0 20080303 20081221 997507 99999 MOORED BUOY 62557 US 29.3 -22.8 3.0 20080630 20081231 997509 99999 MOORED BUOY 62901 US 53.6 -17.3 3.0 20080918 20081215 997510 99999 MOORED BUOY 62926 45.1 -6.5 3.0 20080915 20081121 997520 99999 MOORED BUOY 21917 28.1 179.0 3.0 20080103 20080222 997530 99999 MOORED BUOY 41566 30.6 -68.9 3.0 20080930 20080930 997535 99999 MOORED BUOY 41910 26.4 -68.1 3.0 20081214 20081230 997539 99999 MOORED BUOY 41931 34.7 -70.1 3.0 20080913 20080916 997540 99999 MOORED BUOY 41934 24.9 -69.4 3.0 20180403 20180403 997545 99999 DATA BUOY 46538 US 49.4 -136.8 3.0 20080106 20180425 997546 99999 DATA BUOY 46559 US 41.7 -142.4 3.0 20080130 20081223 997549 99999 DATA BUOY 46565 US 44.9 -163.7 3.0 20180101 20180425 997550 99999 DATA BUOY 46566 51.4 -160.7 3.0 20080121 20081223 997553 99999 DATA BUOY 46632 53.6 -134.5 3.0 20080207 20080320 997555 99999 DATA BUOY 46698 CA 52.1 -154.0 3.0 20080320 20081214 997595 99999 DATA BUOY 62931 42.7 -10.1 3.0 20080815 20081216 997596 99999 DATA BUOY 62935 US 45.0 -31.3 3.0 20080816 20081123 997598 99999 DATA BUOY 21641 36.8 152.6 3.0 20080519 20080627 997600 99999 DATA BUOY 21910 US 37.0 134.4 3.0 20080130 20081029 997601 99999 MOORED BUOY 21915 38.5 134.2 3.0 20180101 20180425 997604 99999 MOORED BUOY 21929 36.2 -179.5 3.0 20080105 20080105 997605 99999 DATA BUOY 21933 37.7 135.6 3.0 20080103 20081214 997607 99999 DATA BUOY 21939 US 38.0 157.7 3.0 20080101 20081231 997610 99999 MOORED BUOY 21948 44.2 166.2 3.0 20080102 20080408 997612 99999 MOORED BUOY 21950 43.3 156.2 3.0 20180101 20180425 997613 99999 DRIFTER / ARGOS 90124 20180101 20180425 997614 99999 DRIFTER / ARGOS 90120 20080101 20080503 997615 99999 DATA BUOY 21958 US 44.6 175.2 3.0 20080102 20081223 997617 99999 DRIFTER / ARGOS 90128 20180101 20180425 997630 99999 MOORED BUOY 21903 40.8 154.8 3.0 20080711 20080711 997639 99999 MOORED BUOY 21937 38.0 138.7 3.0 20080101 20081231 997643 99999 DATA BUOY 21955 US 46.0 164.9 3.0 20180101 20180425 997657 99999 MOORED BUOY 41901 23.4 -71.3 3.0 20080904 20080924 997661 99999 MOORED BUOY 43555 30.6 -113.8 3.0 20180101 20180425 997671 99999 DATA BUOY 44847 US 41.5 -29.6 3.0 20080102 20081121 997672 99999 DATA BUOY 46563 US 40.9 -142.5 3.0 20080121 20081229 997674 99999 DATA BUOY 46652 31.0 -130.3 3.0 20080103 20080714 997686 99999 FRIPPS INLET US SC 32.33 -80.45 3.0 20080101 20080313 997687 99999 BURLINGTON DEL RIVER US NJ 40.08 -74.88 9.0 20080101 20200624 997688 99999 BISHOPS HEAD US MD 38.22 -76.03 3.0 20080101 20200624 997689 99999 BRANDYWINE SHOAL LGT US DE 38.98 -75.1 3.0 20080101 20200624 997691 99999 CAPE HENRY US VA 36.93 -76.02 3.0 20080101 20200624 997692 99999 CLEVELAND US OH 41.53 -81.63 210.0 20080101 20200624 997693 99999 S CRANEY ISLAND US VA 36.88 -76.33 3.0 20080101 20200624 997694 99999 DELAWARE CITY US DE 39.58 -75.58 8.0 20080101 20200624 997695 99999 JOHN MERCER PIER US NC 34.2 -77.83 3.0 20080101 20200624 997696 99999 LA PUSH US WA 47.92 -124.63 3.0 20080101 20200624 997697 99999 LITTLE RAPIDS US MI 46.48 -84.3 185.0 20080101 20200624 997698 99999 NEWBOLD US PA 40.8 -74.75 18.0 20080101 20200624 997699 99999 PAGO PAGO AQ -14.28 -170.7 3.0 20080101 20200131 997701 99999 PORT MANATEE US FL 27.63 -82.57 3.0 20080101 20200624 997702 99999 PINEY POINT US MD 38.13 -76.53 3.0 20080101 20200624 997703 99999 PILOT STATION EAST US LA 28.92 -89.4 3.0 20080101 20200624 997704 99999 RED DOG DOCK US AK 67.57 -164.65 3.0 20080101 20200624 997705 99999 OLD PORT TAMPA US FL 27.85 -82.55 9.0 20080101 20200624 997706 99999 GARIBALDI TILLAMOOK US OR 45.55 -123.9 3.0 20080101 20200624 997707 99999 WELLS US ME 43.32 -70.55 6.0 20080101 20200624 997708 99999 YORK RIVER E RANGE US VA 37.25 -76.33 10.0 20080101 20200624 997709 99999 S CAPERS ISLAND US SC 32.85 -79.7 10.0 20080101 20080309 997712 99999 DATA BUOY 21907 30.9 153.4 3.0 20080101 20080712 997713 99999 DATA BUOY 41027 US 33.3 -78.13 3.0 20080210 20080211 997722 99999 DRIFTING BUOY 44722 US 20080115 20081018 997723 99999 DATA BUOY 44730 61.4 -37.3 3.0 20080313 20080704 997724 99999 DRIFTING BUOY 44742 US 20080415 20081231 997725 99999 DRIFTING BUOY 44745 US 20080104 20180425 997726 99999 DATA BUOY 44746 41.3 -43.4 3.0 20180101 20180425 997727 99999 DRIFTING BUOY 44747 US 20080101 20080421 997729 99999 GALVESTON BAY N JETY US TX 29.35 -94.72 3.0 20080101 20200624 997731 99999 GRAND TRAVERSE LIGHT US MI 45.2 -85.55 184.0 20080101 20200624 997732 99999 PORTAGE CANAL US MI 47.27 -88.53 198.0 20080101 20200106 997733 99999 PULASKI SHOAL LIGHT US FL 24.68 -82.77 16.0 20080101 20200325 997734 99999 TIBURON PIER US CA 37.92 -122.45 3.0 20080101 20200624 997735 99999 WAUKEGAN HARBOR US IL 42.35 -87.82 188.0 20080101 20191027 997736 99999 PORT WASHINGTON US WI 43.38 -87.87 180.0 20080101 20200624 997737 99999 SILVER BAY US MN 47.27 -91.08 198.0 20080102 20200624 997738 99999 SAXON HARBOR US WI 46.57 -90.43 186.0 20080102 20200624 997739 99999 GRAND MARAIS US MI 46.667 -85.96700000000001 191.0 20080101 20200624 997741 99999 KEWAUNEE US WI 44.45 -87.48299999999999 178.0 20080101 20200624 997742 99999 MIDDLE BAY LIGHT US AL 30.433000000000003 -88.0 14.0 20130101 20200624 997743 99999 ROBINS REEF US NJ 40.65 -74.067 72.0 20080101 20200624 997779 99999 SHIP JOHN SHOAL US NJ 39.3 -75.367 3.0 20080101 20200624 997781 99999 COVE POINT US MD 38.717 -76.65 2.0 20080101 20200624 997782 99999 DOMINION TERMINAL ASSOCIATION US VA 36.967 -76.417 2.0 20080101 20200624 997783 99999 GODWIN ISLAND MET STATION US VA 37.217 -76.4 4.0 20080101 20081231 997784 99999 MEAHER PARK US AL 30.65 -87.93299999999999 10.0 20080101 20200624 997785 99999 MENOMINEE US MI 45.1 -87.583 178.0 20080101 20200624 997786 99999 VIMS PIER US VA 37.25 -76.5 5.0 20080103 20081231 997787 99999 BURNS HARBOR US IN 41.65 -87.15 182.0 20080101 20200624 997788 99999 CAPE DECISION US AK 56.0 -134.13299999999998 17.0 20080101 20200624 997789 99999 ELDRED ROCK US AK 58.967 -135.217 19.0 20080103 20200624 997791 99999 BERTH 223 MET US FL 27.916999999999998 -82.43299999999999 14.0 20080101 20140414 997792 99999 FAIRPORT US MI 45.617 -86.65 186.0 20080101 20200624 997793 99999 NAUBINWAY US MI 46.083 -85.43299999999999 180.0 20080101 20200624 997794 99999 OCEAN CREST PIER US NC 33.9 -78.15 12.0 20080103 20141231 997795 99999 ONTONAGON US MI 46.867 -89.333 186.0 20080101 20200624 997796 99999 POINT BISHOP US AK 58.2 -134.13299999999998 5.0 20080101 20200624 997797 99999 POINT RETREAT US AK 58.4 -134.95 32.0 20080101 20200624 997798 99999 SOUTH DOUGLAS US AK 58.266999999999996 -134.433 4.0 20080101 20200624 997799 99999 SISTERS ISLAND US AK 58.167 -135.25 51.0 20080129 20200624 997801 99999 LONGVIEW US WA 46.1 -122.95 3.0 20080101 20200624 997802 99999 BIG SABLE POINT US MI 44.05 -86.51700000000001 186.0 20080101 20200624 997803 99999 PORT WING US MI 46.783 -91.383 186.0 20080101 20200624 997804 99999 CAPE SPENCER US AK 58.2 -136.63299999999998 26.0 20080101 20200624 997805 99999 WAVERIDER BUOY US 30.717 -81.283 0.0 20080101 20180425 997806 99999 CDIP BUOY US FL 28.4 -80.533 0.0 20080101 20180425 997807 99999 FORT PIERCE US FL 27.55 -80.217 0.0 20080101 20180425 997808 99999 M6-WEST COAST EI 53.056000000000004 -15.924000000000001 3.0 20080101 20180425 997809 99999 CORONADO ISLAND MX 32.417 -117.31700000000001 3.0 20080101 20180425 997810 99999 BRUTUS GREEN CANYON 158 US LA 27.8 -90.667 37.0 20080101 20081102 997813 99999 SW BERING SEA US AK 55.0 175.283 3.0 20080101 20081231 997814 99999 SHELIKOF STRAIT US AK 57.917 -154.25 3.0 20080101 20180425 997815 99999 DRIFTING BUOY 13516 US 20180101 20180323 997818 99999 DRIFTING BUOY 13601 US 20180101 20180111 997819 99999 DRIFTING BUOY 13603 US 20180101 20180425 997832 99999 DRIFTING BUOY 21596 US 20080725 20080725 997833 99999 DRIFTING BUOY 22588 US 20081121 20081214 997834 99999 DRIFTING BUOY 25534 US 20080727 20081231 997840 99999 DRIFTING BUOY 41558 US 20180101 20180425 997848 99999 DATA BUOY 42361 US 27.55 -92.48299999999999 37.0 20080724 20180425 997852 99999 DATA BUOY 44053 US VA 37.233000000000004 -76.5 3.0 20080724 20081231 997853 99999 DATA BUOY 44054 US DE 38.883 -75.183 0.0 20080801 20081231 997856 99999 DRIFTING BUOY 41681 US 20080913 20081021 997858 99999 DRIFTING BUOY 41683 US 20080913 20081231 997865 99999 DRIFTING BUOY 41902 US 20080901 20080906 997867 99999 DRIFTING BUOY 41906 US 20080918 20080918 997877 99999 DRIFTING BUOY 43529 US 20080918 20081214 997886 99999 DRIFTING BUOY 44617 US 20080724 20080909 997887 99999 DRIFTING BUOY 44620 US 20080724 20081231 997888 99999 DRIFTING BUOY 44621 US 20080724 20081231 997892 99999 DRIFTING BUOY 44625 US 20080724 20081231 997894 99999 DRIFTING BUOY 44761 US 20080724 20081231 997895 99999 DRIFTING BUOY 44762 US 20080724 20081231 997896 99999 DRIFTING BUOY 44763 US 20080725 20081230 997897 99999 DRIFTING BUOY 44765 US 20080910 20180411 997899 99999 DRIFTING BUOY 44770 US 20080919 20081231 997901 99999 DRIFTING BUOY 44771 US 20080918 20081231 997902 99999 DRIFTING BUOY 44772 US 20081204 20081231 997903 99999 DRIFTING BUOY 44774 US 20081204 20081231 997904 99999 DRIFTING BUOY 44776 US 20081208 20180425 997905 99999 DRIFTING BUOY 44778 US 20180101 20180425 997909 99999 DRIFTING BUOY 44848 US 20080802 20081219 997911 99999 DRIFTING BUOY 44903 US 20080724 20081231 997913 99999 DRIFTING BUOY 44910 US 20081012 20081231 997914 99999 DRIFTING BUOY 44914 US 20081010 20081010 997915 99999 DRIFTING BUOY 44918 US 20080923 20081217 997916 99999 DRIFTING BUOY 44919 US 20080802 20081230 997917 99999 DRIFTING BUOY 44920 US 20081001 20081208 997919 99999 DRIFTING BUOY 44922 US 20081204 20081231 997939 99999 DRIFTING BUOY 48522 US 20080724 20081230 997940 99999 DRIFTING BUOY US 20180111 20180419 997941 99999 DRIFTING BUOY 48523 US 20080724 20081125 997944 99999 DRIFTING BUOY 48592 US 20080724 20081230 997945 99999 DRIFTING BUOY 48621 US 20080725 20081229 997949 99999 DRIFTING BUOY 48636 US 20080725 20081230 997952 99999 DRIFTING BUOY 51802 US 20180101 20180425 997953 99999 DRIFTING BUOY 51809 US 20180101 20180425 997957 99999 DRIFTING BUOY 52620 US 20080911 20081223 997958 99999 DRIFTING BUOY 52666 US 20080724 20180425 997973 99999 DRIFTING BUOY 62508 US 20081122 20081218 997976 99999 DRIFTING BUOY 62934 US 20080816 20081210 997981 99999 FOLLY BEACH PIER US SC 32.65 -79.933 3.0 20080131 20100916 997982 99999 PORT INLAND US MI 45.967 -85.867 180.0 20080101 20200624 997983 99999 DATA BUOY 41037 US NC 33.983000000000004 -77.35 3.0 20080724 20180425 997984 99999 DATA BUOY 46094 US OR 44.633 -124.3 3.0 20080724 20080917 997986 99999 DATA BUOY 41043 US 20.983 -65.017 3.0 20080724 20180425 997987 99999 DATA BUOY 42059 US 15.0 -67.483 3.0 20180101 20180425 997988 99999 BIG BAY US MI 46.817 -87.71700000000001 185.0 20080101 20200624 997989 99999 OLCOTT HARBOR US NY 43.333 -78.717 83.0 20080101 20200624 997990 99999 ACE BASIN RESERVE US SC 32.55 -80.45 5.0 20080101 20200624 997991 99999 HUDSON RIVER RESERVE US NY 42.016999999999996 -73.917 12.0 20080101 20200624 997992 99999 APALACHICOLA RESERVE US FL 29.783 -84.883 5.0 20080101 20200624 997993 99999 GREAT BAY RESERVE US NH 43.05 -70.833 3.0 20080101 20200624 997994 99999 CHESAPEAKE BAY US MD 38.766999999999996 -76.7 3.0 20080101 20200624 997995 99999 SOUTH SLOUGH RESERVE US OR 43.35 -124.31700000000001 13.0 20080115 20141119 997996 99999 ST CLAIR SHORES US MI 42.467 -82.867 180.0 20080101 20200624 997997 99999 ELKHORN SLOUGH RESERVE US CA 36.817 -121.73299999999999 3.0 20080101 20200624 997999 99999 GENEVA ON THE LAKE US OH 41.85 -80.967 186.0 20080101 20200624 998000 99999 GUANA TOLOMATO MATANZAS US FL 29.65 -81.217 4.0 20080101 20200624 998001 99999 HURON LIGHT US OH 41.4 -82.55 184.0 20080101 20200624 998002 99999 JACQUES COUSTEAU RESERVE US NJ 39.533 -74.45 12.0 20080101 20200624 998003 99999 JOBOS BAY RESERVE RQ 17.95 -66.233 15.0 20080101 20200624 998004 99999 NARRAGANSETT BAY RESERVE US RI 41.633 -71.333 13.0 20080101 20200624 998005 99999 NORTH INLET-WINYAH BAY US SC 33.35 -79.183 4.0 20080101 20200624 998006 99999 NORTH CAROLINA RESERVE US NC 34.15 -77.85 5.0 20080101 20200624 998007 99999 PADILLA BAY RESERVE US WA 48.467 -122.46700000000001 3.0 20080101 20200624 998008 99999 ROOKERY BAY RESERVE US FL 26.033 -81.7 20.0 20080101 20200624 998009 99999 ROCHESTER US NY 43.25 -77.583 83.0 20080101 20200624 998010 99999 SAPELO ISLAND RESERVE US GA 31.416999999999998 -81.283 5.0 20080101 20200624 998011 99999 SAN FRANCISCO BAY RESERVE US CA 38.217 -122.01700000000001 3.0 20080101 20200624 998012 99999 ST JOSEPH US MI 42.1 -86.48299999999999 184.0 20080101 20200624 998013 99999 TIJUANA RIVER RESERVE US CA 32.575 -117.12700000000001 4.0 20080101 20200624 998014 99999 WAQUIOT BAY RESERVE US MA 41.583 -70.517 10.0 20080101 20200624 998015 99999 WELLS RESERVE US ME 43.333 -70.55 19.0 20080101 20200624 998016 99999 WEEKS BAY RESERVE US AL 30.416999999999998 -87.833 0.0 20080101 20200624 998017 99999 CHESAPEAKE BAY US VA 37.417 -76.717 11.0 20080101 20200624 998153 99999 DATA BUOY 42099 US FL 27.333000000000002 -84.23299999999999 3.0 20180101 20180425 998154 99999 DATA BUOY 44055 US DE 39.117 -75.25 3.0 20080724 20081231 998155 99999 DATA BUOY 44060 US CT 41.266999999999996 -72.067 4.0 20080724 20081231 998157 99999 DATA BUOY 46076 US AK 59.5 -148.0 5.0 20080724 20180425 998158 99999 DATA BUOY 46085 US AK 55.85 -142.55 5.0 20080724 20180425 998159 99999 DATA BUOY 46231 US CA 32.75 -117.367 3.0 20080724 20081231 998160 99999 DATA BUOY 46234 US CA 34.1 -119.167 3.0 20080724 20081231 998161 99999 DATA BUOY 46235 US CA 32.567 -117.167 3.0 20080724 20081231 998162 99999 DATA BUOY 46236 US CA 36.766999999999996 -121.95 3.0 20080724 20081231 998163 99999 DATA BUOY 46237 US CA 37.783 -122.6 3.0 20080724 20180425 998164 99999 DATA BUOY 51203 US HI 30.783 -157.017 3.0 20080724 20081231 998165 99999 MISSION ARANASAS RESERVE US TX 28.133000000000003 -97.03299999999999 5.0 20080101 20200624 998166 99999 CONNEAUT BREAKWATER US OH 41.983000000000004 -80.55 189.0 20080101 20200317 998167 99999 KACHEMAK BAY RESERVE US AK 59.6 -151.417 10.0 20080101 20200624 998168 99999 NIAGARA CG STATION US NY 43.266999999999996 -79.067 243.0 20080101 20190715 998169 99999 DELAWARE RESERVE US DE 39.083 -75.433 5.0 20080101 20200406 998170 99999 BERMUDA ESSO PIER BD 32.367 -64.7 2.0 20080101 20191123 998171 99999 GRAND BAY RESERVE US MS 30.35 -88.417 5.0 20100101 20200624 998172 99999 LINCOLN ROCK US AK 56.05 -132.7 12.0 20100101 20200624 998173 99999 MOSS LANDING S HARBOR US CA 36.8 -121.78299999999999 22.0 20080101 20200624 998174 99999 PORT INGLESIDE US TX 27.816999999999997 -97.2 10.0 20080115 20140812 998175 99999 CAL POLY PIER US CA 35.167 -120.73299999999999 16.0 20080130 20200624 998176 99999 SUPERIOR GRAND TRAVERSE BAY US MI 47.183 -88.23299999999999 191.0 20080115 20200624 998177 99999 LAKE MURRAY US SC 34.1 -81.267 109.0 20080116 20200624 998178 99999 BARTLET COVE US AK 58.45 -135.88299999999998 5.0 20080115 20200624 998179 99999 OLD WOMEN CREEK US OH 41.383 -82.5 182.0 20080115 20200624 998180 99999 PORT SANILAC US MI 43.417 -82.53299999999999 191.0 20080115 20200624 998181 99999 CLEAR LAKE US TX 29.55 -95.06700000000001 10.0 20080115 20080913 998182 99999 ROLLOVER PASS US TX 29.517 -94.5 10.0 20080115 20200624 998183 99999 SOUTH BIRD ISLAND US TX 27.483 -97.31700000000001 10.0 20080115 20200624 998184 99999 PORT ARANSAS US TX 27.833000000000002 -97.06700000000001 10.0 20100101 20200624 998185 99999 SEADRIFT US TX 28.4 -96.71700000000001 10.0 20080115 20200624 998186 99999 SPRINGMAID PIER US SC 33.65 -78.917 3.0 20100101 20101129 998187 99999 LAKE MARION US SC 33.55 -80.5 25.0 20080529 20140303 998189 99999 USGC FREEPORT US TX 28.933000000000003 -95.3 4.0 20080721 20200521 998191 99999 HILO US HI 19.717 -155.05 0.0 20080721 20200624 998192 99999 COAST GUARD SECTOR US AL 30.65 -88.05 10.0 20080721 20200624 998193 99999 MOKUOLOE US HI 21.433000000000003 -157.783 3.0 20080721 20200624 998194 99999 NEW CANAL US LA 30.017 -90.117 4.0 20080721 20200624 998195 99999 NAWILIWILI US HI 21.95 -159.35 0.0 20080721 20200624 998196 99999 MOBILE STATE DOCKS US AL 30.7 -88.03299999999999 0.0 20080721 20200624 998197 99999 OAKLAND MIDDLE HARBOR MET US CA 37.8 -122.31700000000001 7.0 20080721 20200624 998198 99999 SELDOVIA US AK 59.433 -151.717 0.0 20080721 20200624 998199 99999 PANAMA CITY US FL 30.15 -85.667 5.0 20080721 20200624 998201 99999 PASCAGOULA NOAA LAB US MS 30.35 -88.56700000000001 0.0 20080721 20200624 998202 99999 DOCK E PORT OF PASCAGOULA US MS 30.35 -88.5 0.0 20080721 20180209 998203 99999 WEST NEEBISH US MI 46.283 -84.2 177.0 20080721 20200624 998204 99999 WESTPORT US WA 46.917 -124.117 8.0 20080721 20200624 998205 99999 STROM THURMOND DAM US 33.667 -82.2 89.0 20080811 20200624 998206 99999 ELFIN COVE US AK 58.183 -136.333 0.0 20080811 20200624 998207 99999 SHELL WEST DELTA 143 OIL PLATFORM US 28.65 -89.55 41.0 20081218 20180319 998208 99999 LAKE WATEREE US SC 34.333 -80.7 87.0 20080811 20200624 998209 99999 DUCK PIER US NC 36.183 -75.75 7.0 20100101 20200624 998211 99999 OCEAN CITY INLET US MD 38.317 -75.083 0.0 20080915 20200624 998212 99999 CAMPBELL PARK US FL 27.767 -82.65 15.0 20080915 20141229 998213 99999 MIDDLE TAMPA BAY US FL 27.65 -82.583 10.0 20131207 20200624 998214 99999 MEDIA LUNA / LA PARGUERA RQ 17.933 -67.05 7.0 20080915 20130317 998215 99999 SALT RIVER BAY / ST CROIX VQ 17.783 -64.767 7.0 20080915 20131201 998216 99999 CHAMBERS ISLAND US WI 45.2 -87.35 181.0 20080917 20200122 998217 99999 AMERADA PASS US LA 29.45 -91.333 5.0 20081022 20200624 998218 99999 SHELL BEACH US LA 29.866999999999997 -89.667 5.0 20081022 20200624 998219 99999 BAY WAVELAND YACHT CLUB US MS 30.316999999999997 -89.31700000000001 5.0 20081022 20200624 998221 99999 ALITAK US AK 56.9 -154.25 0.0 20081022 20200624 998222 99999 KILO NALU OBS (WAVE SENSOR) US HI 21.283 157.86700000000002 -11.0 20081022 20101231 998223 99999 ALEXANDRIA BAY US NY 44.333 -75.933 0.0 20130101 20200624 998224 99999 ATKA US AK 52.233000000000004 -174.167 0.0 20081022 20200624 998225 99999 PORT ARTHUR US TX 29.866999999999997 -93.93299999999999 11.0 20081022 20200624 998226 99999 ROCKPORT US TX 28.017 -97.05 4.0 20081022 20200624 998227 99999 APRA HARBOR GUAM GQ 13.444 144.657 3.3 20100101 20200624 998228 99999 C-CUT ST PETERSBURG US FL 27.666999999999998 -82.617 3.0 20081114 20101231 998229 99999 CHRISTIANSTED HARBOR VQ 17.75 -64.7 3.0 20081114 20200624 998231 99999 DOCK C PASCAGOULA US MS 30.35 -88.56700000000001 3.0 20081114 20180209 998233 99999 GULFPORT OUTER RANGE US MS 30.233 -88.98299999999999 13.0 20081114 20130120 998234 99999 WEST PIER GULFPORT US MS 30.35 -89.083 7.0 20081114 20101231 998235 99999 NIAGRA INTAKE US NY 43.067 -79.017 179.0 20081114 20200624 998236 99999 PACKERY CHANNEL US TX 27.633000000000003 -97.23299999999999 11.0 20081114 20200624 998237 99999 PAGO BAY GQ 13.417 144.8 7.0 20081114 20200624 998238 99999 PETITS BOIS ISLAND US 30.217 -88.5 6.0 20081114 20200624 998239 99999 RANGE A REAR PASCAGOULA US MS 30.333000000000002 -88.51700000000001 5.0 20081114 20180209 998241 99999 SEABULK TAMPA US FL 27.916999999999998 -82.45 0.0 20081114 20141229 998242 99999 SAGINAW BAY LIGHT 1 US MI 43.8 -83.71700000000001 188.0 20081114 20200624 998243 99999 SAND POINT US AK 55.333 -160.5 10.0 20100101 20200624 998244 99999 TPA CRUISE TERMINAL 2 TAMPA US FL 27.933000000000003 -82.43299999999999 15.0 20081114 20200624 998245 99999 WILLOUGHBY DEGUASSING STATION US VA 36.983000000000004 -76.317 3.0 20081114 20200624 998246 99999 ARECIBO RQ 18.483 -66.7 3.0 20100101 20200529 998247 99999 FAJARDO RQ 18.333 -65.633 3.0 20100101 20141231 998248 99999 MAYAGUEZ RQ 18.217 -67.15 3.0 20100101 20200624 998249 99999 PENUELAS RQ 17.967 -66.767 3.0 20100101 20130318 998251 99999 YABUCOA HARBOR RQ 18.05 -65.833 3.0 20100101 20200304 998252 99999 BAR HARBOR US ME 44.4 -68.2 3.4 20100101 20200624 998253 99999 CUTLER US ME 44.65 -67.3 4.9 20100101 20101111 998254 99999 KING COVE US AK 55.067 -162.333 5.0 20100101 20200624 998255 99999 MACKINAW CITY US MI 45.783 -84.71700000000001 178.5 20100101 20200624 998256 99999 TACOMA MET US WA 47.276 -122.41799999999999 11.0 20100101 20200624 998257 99999 ISABEL SEGUNDA / VIEQUES RQ 18.15 -65.433 6.0 20100101 20141231 998258 99999 KETCHIKAN US AK 55.333 -131.625 3.0 20100101 20200624 998259 99999 SKAGWAY US AK 59.45 -135.31799999999998 3.0 20100101 20200624 998261 99999 JUNEAU US AK 58.298 -134.412 3.0 20100101 20200624 998262 99999 AQUADILLA RQ 18.45 -67.167 3.4 20100101 20101231 998263 99999 CULEBRA RQ 18.3 -65.3 3.1 20100101 20200624 998264 99999 LAKE CHARLES US LA 30.217 -93.21700000000001 8.1 20100101 20200624 998265 99999 MARCUS HOOK US PA 39.817 -75.417 3.0 20100101 20200624 998266 99999 STURGEON POINT US NY 42.683 -79.05 4.2 20100101 20200624 998267 99999 ROCHESTER US NY 43.266999999999996 -77.617 3.0 20100101 20200624 998268 99999 TENAKEE SPRINGS US AK 57.783 -135.217 5.0 20100315 20200624 998269 99999 EAST BAY CAUSEWAY US FL 27.933000000000003 -82.43299999999999 5.0 20100101 20200624 998271 99999 VALDEZ US AK 61.133 -146.36700000000002 3.0 20100101 20200624 998274 99999 BROAD RIVER US FL 25.483 -80.983 3.0 20100101 20200624 998275 99999 BOB ALLEN US FL 28.017 -80.683 3.0 20100101 20200624 998276 99999 BLACKWATER SOUND US FL 25.183000000000003 -80.433 3.0 20100101 20200624 998277 99999 CANE PATCH US FL 25.416999999999998 -80.95 3.0 20100101 20200624 998278 99999 CANNON BAY US FL 25.7 -81.183 3.0 20100101 20200624 998279 99999 DUCK KEY US FL 25.183000000000003 -80.483 3.0 20100101 20200624 998281 99999 FAIRPORT US OH 41.766999999999996 -81.283 176.0 20100101 20200624 998282 99999 FRESH WATER CANAL LOCKS US LA 29.55 -92.3 10.0 20100101 20200624 998283 99999 GARFIELD BRIGHT US FL 25.166999999999998 -80.8 3.0 20100101 20200624 998284 99999 HIGHWAY CREEK US FL 25.25 -80.45 3.0 20100101 20200624 998285 99999 JOHNSON KEY US FL 25.05 -80.9 3.0 20100101 20200624 998286 99999 BROAD RIVER LOWER US FL 25.483 -81.117 3.0 20100101 20141231 998287 99999 LITTLE BLACKWATER US FL 25.217 -80.433 3.0 20100101 20200624 998288 99999 LITTLE MADEIRA US FL 25.166999999999998 -80.633 3.0 20100101 20200624 998289 99999 LOSTMANS RIVER US FL 25.55 -81.183 3.0 20100101 20200624 998291 99999 LITTLE RABBIT KEY US FL 24.983 -80.833 3.0 20100101 20200624 998292 99999 LONG SOUND US FL 25.233 -80.45 3.0 20100101 20200624 998293 99999 MURRAY KEY US FL 25.1 -80.95 3.0 20100101 20200624 998294 99999 PETERSON KEY US FL 24.916999999999998 -80.75 3.0 20100101 20200624 998295 99999 TROUT COVE US FL 25.217 -80.533 3.0 20100101 20200624 998296 99999 TARPON BAY EAST US FL 25.416999999999998 -80.967 3.0 20100101 20200624 998297 99999 TAYLOR RIVER US FL 25.217 -80.65 3.0 20100101 20200624 998299 99999 WHIPRAY BASIN US FL 25.083000000000002 -80.733 3.0 20100101 20200624 998300 99999 BUTTERNUT KEY US FL 25.087 -80.51899999999999 3.0 20100101 20200624 998301 99999 ESPERANZA RQ 18.094 -65.471 3.4 20100101 20200624 998302 99999 GUNBOAT ISLAND US FL 25.375999999999998 -81.029 3.0 20100101 20200624 998303 99999 LITTLE CAYMAN CJ 19.699 -80.061 5.9 20100101 20101231 998304 99999 MONA ISLAND RQ 18.09 -67.939 3.0 20100101 20200624 998305 99999 PORT EVERGLADES CHANNEL US FL 26.092 -80.109 3.5 20100101 20191001 998306 99999 WILLY WILLY US FL 25.619 -81.044 3.0 20100101 20200624 998307 99999 WATSON PLACE US FL 25.708000000000002 -81.248 3.0 20100101 20200624 998308 99999 DATA BUOY 42012 US 30.065 -87.555 3.0 20180316 20180425 998310 99999 BUOY 32012 / WOODS HOLE STRATUS WAVE STATION CI -19.613 -85.585 3.0 20180101 20180409 998312 99999 BUOY 41044 / S. ATLANTIC 21.651999999999997 -58.695 3.0 20180101 20180425 998313 99999 BUOY 41046 / E BAHAMAS US 23.866999999999997 -70.87 3.0 20180101 20180425 998314 99999 BUOY 41047 / NE BAHAMAS US 27.469 -71.491 3.0 20180101 20180425 998315 99999 BUOY 41048 / W. BERMUDA US 31.978 -69.649 3.0 20180101 20180425 998316 99999 BUOY 41049 / ATLANTIC SOUTH US 27.5 -63.0 3.0 20180101 20180425 998317 99999 BUOY 41110 / MASONBORO INLET US NC 34.141 -77.709 3.0 20180101 20180425 998319 99999 42364 / RAM POWELL / VIOSCA KNOLL 936 / DRILLING PLATFORM US 29.06 -88.09 122.0 20180101 20180425 998321 99999 BUOY 44020 / NANTUCKET SOUND US MA 41.443000000000005 -70.186 3.0 20180101 20180425 998322 99999 BUOY 44056 / DUCK FRF US NC 36.2 -75.714 3.0 20180101 20180425 998324 99999 BUOY 44058 / STRINGRAY POINT US VA 37.552 -76.251 3.0 20180101 20180424 998327 99999 BUOY 44098 / JEFFREYS LEDGE US NH 42.801 -70.169 3.0 20180101 20180425 998328 99999 BUOY 44099 / CAPE HENRY US VA 36.908 -75.775 3.0 20180101 20180425 998329 99999 BUOY 44100 / DUCK FRF 26M US NC 36.258 -75.59100000000001 3.0 20180101 20180425 998333 99999 BUOY 46239 / POINT SUR US CA 36.338 -122.101 3.0 20180101 20180425 998334 99999 BUOY 46240 / CABRILLO POINT MONTEREY BAY US CA 36.626 -121.90700000000001 3.0 20180101 20180425 998335 99999 BUOY 46242 / CAMP PENDLETON NEARSHORE US CA 33.22 -117.44 3.0 20180101 20180425 998337 99999 BUOY 51101 / NW HAWAII US HI 24.320999999999998 -162.058 3.0 20180101 20180425 998338 99999 BUOY 45159 / NW LAKE ONTARIO AJAX CA 43.77 -79.98 180.0 20180425 20180425 998339 99999 MOUTH OF BLACK RIVER US MI 42.975 -82.419 180.0 20100713 20200624 998340 99999 SANTA BARBARA US CA 34.408 -119.65799999999999 6.0 20100101 20200624 998341 99999 PORT ALEXANDER US AK 56.247 -134.64700000000002 7.0 20100101 20200624 998342 99999 TACONY/PALMYRA BRIDGE US NJ 40.012 -75.042 20.0 20100101 20141231 998345 99999 BUOY 42060 / E CARIBBEAN US 16.5 -63.5 3.0 20180328 20180425 998346 99999 BUOY 42085 / SE OF PONCE RQ 17.86 -66.524 3.0 20180101 20180418 998348 99999 BUOY 44041 / JAMESTOWN US VA 37.204 -76.777 3.0 20180101 20180103 998349 99999 BUOY 44042 / POTOMAC US MD 38.033 -76.336 3.0 20180101 20180425 998351 99999 BUOY 44066 / TX TOWER 4 US TX 39.583 -72.601 3.0 20180101 20180425 998352 99999 BUOY 44097 / BLOCK ISLAND US RI 40.981 -71.117 3.0 20180101 20180425 998353 99999 BUOY 46243 / CLATSOP SPIT US OR 46.216 -124.13 3.0 20180101 20180425 998354 99999 BUOY 51000 / N HAWAII US HI 23.546 -154.06 3.0 20180101 20180425 998405 99999 MANISTEE HARBOR US MI 44.248000000000005 -86.346 179.5 20100101 20200624 998406 99999 HUMBOLDT BAY WAVERIDER BUOY US CA 40.888000000000005 -124.35700000000001 0.0 20180101 20180425 998407 99999 HOLLAND US MI 42.768 -86.20100000000001 178.0 20100707 20200624 998408 99999 USS MIDWAY S NAVY PIER US CA 32.714 -117.175 35.0 20100707 20141231 998409 99999 ANNAPOLIS US MD 38.983000000000004 -76.48 0.0 20100714 20200624 998425 99999 CORDOVA US AK 60.556999999999995 -145.755 12.5 20100729 20200624 998426 99999 HATTERAS US NC 35.208 -75.703 5.6 20100820 20200624 998427 99999 KODIAK ISLAND US AK 57.73 -152.514 6.7 20100729 20200623 998428 99999 OCEAN GROVE US NJ 40.209 -74.00399999999999 5.0 20100806 20101231 998429 99999 NOKOLSKI US AK 52.941 -168.87099999999998 5.0 20100821 20200624 998430 99999 SEWARD US AK 60.12 -149.42700000000002 4.7 20100729 20200624 998431 99999 UNALASKA US AK 53.879 -166.54 5.7 20100729 20200624 998432 99999 YAKUTAT US AK 59.548 -139.733 13.6 20100729 20200624 998433 99999 SACRIFICE ISLAND MX 19.174 -96.09299999999999 0.0 20100916 20141231 998434 99999 VERACURZ HARBOR MX 19.202 -96.113 0.0 20100916 20141231 998435 99999 OGDENSBURG US NY 44.703 -75.495 10.0 20101031 20200624 998436 99999 BARCELONA HARBOR US NY 42.346000000000004 -79.596 174.0 20130101 20141230 998437 99999 LA MANCHA BEACH MX 19.6 -96.383 9.1 20130101 20180425 998438 99999 TESORO MARINE TERMINAL US LA 29.666999999999998 -91.23299999999999 3.0 20130101 20200624 998439 99999 CEDAR POINT US AL 30.308000000000003 -88.14 4.0 20130101 20200624 998440 99999 KATRINA CUT US AL 30.258000000000003 -88.213 3.5 20130101 20200613 998441 99999 BARBUDA AC 17.590999999999998 -61.821000000000005 5.0 20130101 20200624 998442 99999 CUTLER FARRIS WHARF US ME 44.657 -67.21 10.0 20130101 20200624 998443 99999 BUOY 42360 / WALKER RIDGE 249 US 26.7 -90.46700000000001 3.0 20180101 20180425 998446 99999 BUOY 44062 / GROVES REEF US 38.55 -76.417 0.0 20180101 20180425 998456 99999 BUOY 45026 / ST JOSEPH US 41.983000000000004 -86.617 185.0 20180423 20180425 998459 99999 BUOY 46108 / CENTRAL COOK INLET US 59.766999999999996 -152.083 0.0 20180101 20180425 998466 99999 BUOY 46248 / ASTORIA CANYON US 46.133 -124.667 0.0 20180101 20180425 998472 99999 BUOY 52201 / KALO MAJURO RM 7.1 171.4 0.0 20180101 20180425 998473 99999 LOUISIANA OFFSHORE OIL PORT US LA 28.885 -90.024 40.5 20130101 20200624 998474 99999 DAVIS POINT SAN PABLO BAY US CA 38.056999999999995 -122.259 10.0 20130101 20200624 998475 99999 MARTINEZ-AMORCO US CA 38.033 -122.125 10.0 20130101 20200624 998476 99999 OAKLAND (BERTH 34) US CA 37.811 -122.333 10.0 20130101 20200624 998477 99999 RICHMOND (POINT POTRERO) US CA 37.906 -122.365 10.0 20130101 20200624 998478 99999 PITTSBURG (SUISUN BAY) US CA 38.042 -121.887 10.0 20130101 20200624 998479 99999 SAN FRANCISCO (PIER 1) US CA 37.798 -122.39299999999999 10.0 20130101 20200624 998480 99999 LAO LAO BAY - SAIPAN CQ 15.157 145.77 605.0 20130702 20140731 998481 99999 MANCHESTER US TX 29.726 -95.266 10.0 20130101 20200624 998482 99999 TEXAS STATE AQUARIUM US TX 27.811999999999998 -97.39 8.0 20130131 20200624 998483 99999 S PADRE ISLAND CGS US TX 26.076999999999998 -97.177 10.0 20130101 20200624 998484 99999 COPANO BAY US TX 28.118000000000002 -97.022 10.0 20130101 20141231 998485 99999 BON SECOUR US AL 30.329 -87.829 3.0 20130101 20200624 998486 99999 PILOT TOWN US LA 29.178 -89.258 10.0 20130101 20200624 998487 99999 PORT LAVACA US TX 28.64 -96.595 10.0 20130101 20200624 998488 99999 SOUTH OF ST JOHN VQ 18.25 -64.767 3.0 20180101 20180425 998489 99999 SAN JUAN RQ 18.483 -66.1 3.0 20180101 20180421 998490 99999 TEXAS POINT US TX 29.689 -93.84200000000001 11.4 20130101 20200624 998491 99999 PERDIDO PASS US AL 30.279 -87.556 2.4 20130101 20200624 998492 99999 ALGONAC US MI 42.621 -82.527 174.4 20130101 20200624 998493 99999 CLEAR WATER PASS US FL 25.295 -81.013 3.0 20130101 20200624 998494 99999 LANE RIVER US FL 25.284000000000002 -80.89399999999999 3.0 20130101 20200624 998495 99999 WHITE WATER - WEST US FL 25.23 -80.939 3.0 20130101 20200624 998496 99999 OAKLAND US CA 37.795 -122.288 4.0 20130101 20200624 998497 99999 FOSTER AVE CHICAGO US IL 41.976000000000006 -87.648 177.0 20130307 20190909 998499 99999 NORTHERLY ISLAND US IL 41.856 -87.609 190.0 20130101 20200624 998500 99999 CCSFOR TFBH EQAA 45.107 159.0 20010922 20030816 998510 99999 20020108 20020125 998520 99999 GECONKFOR EQAC 45.3 20.8 401.0 20010922 20030816 998530 99999 20030518 20030816 998540 99999 EUROCORPS EQAE 48.55 7.767 139.0 20011108 20020425 998580 99999 20020424 20030816 998600 99999 ARRC MOENCHENGLADBA EQAK 51.183 6.212999999999999 67.0 20011015 20020306 998650 99999 20030811 20030816 998670 99999 HQ KFOR MAIN EQAR 42.427 21.15 657.0 20010922 20030816 998700 99999 BAF METEO WING EQAU 50.45 6.107 564.0 20011013 20020503 998710 99999 HDF SZOLNOK AB EQAV 47.133 20.2 89.0 20020226 20030816 998760 99999 20020423 20030816 998860 99999 20030518 20030816 999100 99999 20020425 20020612 999110 99999 GECONKFOR PRIZREN EQAB 42.217 20.75 464.0 20011127 20020612 999120 99999 GECONSFOR RAJLOVAC EQAT 43.867 18.3 494.0 20011126 20020612 999999 00100 DEXTER B FLORENCE MEM FLD AP US AR 34.1 -93.066 55.5 20120902 20121124 999999 00178 LINDEN AIRPORT US NJ KLDJ 40.617 -74.25 7.0 20140731 20161231 999999 00262 MUSTANG ISLAND A85A US TX 27.733 -96.18299999999999 0.3 20140731 20200416 999999 00343 ST MARYS HOSPITAL US MN 44.016999999999996 -92.48299999999999 355.1 20140731 20200625 999999 00370 PINEY ISLAND US NC 35.02 -76.46 5.2 20140731 20200625 999999 00421 MADISONVILLE MUNICIPAL AIRPORT US KY 37.35 -87.4 124.4 20140731 20200625 999999 00423 DE QUINCY INDUSTRIAL AIRPARK US LA 30.441 -93.47399999999999 25.6 20140731 20200625 999999 00425 MIDDLEBURY STATE AIRPORT US VT 43.985 -73.095 149.1 20140731 20200625 999999 00440 CULLMAN REGIONAL AIRPORT FOLSOM FIELD US AL 34.269 -85.85799999999999 295.7 20140731 20200625 999999 00447 ATHENS MUNICIPAL AIRPORT US TX 32.164 -95.82799999999999 135.3 20140731 20200625 999999 00458 CLERMONT COUNTY AIRPORT US OH 39.078 -84.21 257.0 20140731 20200625 999999 00460 LOUISIANA REGIONAL AIRPORT US LA 30.173000000000002 -90.941 4.6 20140731 20170303 999999 00477 ROGER M DREYER MEMORIAL AIRPORT US TX 29.529 -97.464 108.2 20140731 20200626 999999 00480 EAGLE RANGE WSO US UT 41.05 -113.06 1292.1 20140731 20200625 999999 00481 GRANITE PEAK FILLMORE ARPT US UT 38.958 -112.363 1519.4 20140730 20200624 999999 00483 NEW ORLEANS SUPERDOME HELIPORT US LA 29.953000000000003 -90.083 9.1 20140731 20150128 999999 00484 HULETT MUNICIPAL AIRPORT US WY 44.663000000000004 -104.568 1300.0 20140731 20200625 999999 03014 TORREON US NM 35.799 -107.181 2042.2 20050601 20051231 999999 03033 MORIARTY AIRPORT US NM 34.985 -106.0 1889.5 20020302 20200625 999999 03037 SHALTZ FIELD AIRPORT US KS KCBK 39.428000000000004 -101.046 971.1 20020902 20050909 999999 03047 MONAHANS 6 ENE US TX 31.622 -102.807 830.3 20030521 20200625 999999 03048 SOCORRO 20 N US NM 34.356 -106.88600000000001 1477.4 20030524 20200625 999999 03053 DONA ANA COUNTY AIRPORT AT SANTA TERESA US NM K5T6 31.883000000000003 -106.71700000000001 1253.3 20040102 20051219 999999 03054 MULESHOE 19 S US TX 33.955999999999996 -102.774 1140.6 20040227 20200625 999999 03055 GOODWELL 2 E US OK 36.599000000000004 -101.595 995.5 20040227 20200625 999999 03060 MONTROSE 11 ENE US CO 38.544000000000004 -107.693 2560.9 20040725 20200625 999999 03061 CORTEZ 8 SE US CO 37.255 -108.50399999999999 2448.8 20051102 20200625 999999 03062 LOS ALAMOS 13 W US NM 35.858000000000004 -106.521 2656.6 20040801 20200625 999999 03063 LA JUNTA 17 WSW US CO 37.864000000000004 -103.822 1336.9 20040803 20200625 999999 03067 OAKLEY 19 SSW US KS 38.87 -100.963 874.8 20051030 20200621 999999 03072 BRONTE 11 NNE US TX 32.041 -100.25 608.7 20061215 20200625 999999 03074 LAS CRUCES 20 N US NM 32.614000000000004 -106.741 1318.9 20070228 20200625 999999 03075 DULCE 1 NW US NM 36.935 -107.0 2074.5 20090712 20110304 999999 03076 GRAND JUNCTION 9 W US CO 39.102 -108.735 1769.7 20090616 20140601 999999 03077 HOLBROOK 17 ESE US AZ 34.821999999999996 -109.89299999999999 1710.8 20090711 20140601 999999 03078 EADS 16 ENE US CO 38.544000000000004 -102.50299999999999 1209.1 20090619 20140601 999999 03079 SAGUACHE 2 WNW US CO 38.099000000000004 -106.171 2384.5 20090618 20140601 999999 03080 RESERVE 1 W US NM 33.715 -108.777 1780.6 20090710 20140601 999999 03081 TROPIC 9 SE US UT 37.516999999999996 -111.978 1796.8 20090714 20140601 999999 03082 CARRIZOZO 1 W US NM 33.648 -105.895 1635.6 20090709 20140601 999999 03083 STRATTON 24 N US CO 39.655 -102.62200000000001 1283.8 20090614 20140601 999999 03084 CENTER A 4 SSW US CO 37.707 -106.14399999999999 2340.3 20091102 20140601 999999 03085 BOWIE 23 SSE US AZ 32.01 -109.389 1564.5 20100226 20140601 999999 03086 SPRINGFIELD 6 WSW US CO 37.381 -102.719 1389.0 20100517 20140601 999999 03087 SANTA FE 20 WNW US NM 35.825 -106.318 2212.2 20100509 20140601 999999 03088 WOODLAND PARK 14 WSW US CO 38.911 -105.265 2601.5 20100629 20140601 999999 03089 ROCKY FORD 1 ESE US CO 38.039 -103.695 1271.0 20091101 20140601 999999 03090 TAOS 27 NW US NM 36.652 -105.97200000000001 2484.4 20091103 20140601 999999 03091 KIM 9 WSW US CO 37.217 -103.50399999999999 1789.2 20100515 20140601 999999 03092 RATON 26 ESE US NM 36.778 -103.98200000000001 2204.3 20100513 20140601 999999 03093 GENOA 35 N US CO 39.786 -103.51700000000001 1452.1 20100701 20140601 999999 03094 CLAYTON 3 ENE US NM 36.47 -103.124 1489.0 20100511 20140601 999999 03095 MILLS 6 WSW US NM 36.061 -104.355 1788.0 20100512 20140601 999999 03096 RIFLE 23 NW US CO 39.760999999999996 -108.12700000000001 2301.2 20100720 20140601 999999 03097 MOUNTAINAIR 2 WSW US NM 34.516999999999996 -106.27 1977.9 20100627 20140601 999999 03098 EAGLE 13 SSE US CO 39.483000000000004 -106.734 2622.8 20100718 20140601 999999 03099 CRAIG 30 N US CO 40.948 -107.60799999999999 1986.7 20100721 20140601 999999 03102 ONTARIO INTERNATIONAL ARPT US CA KONT 34.056 -117.6 275.8 19680101 20041231 999999 03103 FLAGSTAFF PULLIAM ARPT US AZ KFLG 35.144 -111.666 2139.1 19510101 19761231 999999 03104 PALM SPRINGS THERMAL AP US CA KTRM 33.626999999999995 -116.15899999999999 -36.0 19500509 19540130 999999 03109 CAMP MERCURY US NV 36.95 -116.083 1196.0 19510214 19540501 999999 03122 TORRANCE AIRPORT US CA 33.802 -118.34200000000001 27.4 19530525 19540326 999999 03124 FORT HUACHUCA US AZ KFHU 31.588 -110.344 1432.0 19710101 19710801 999999 03125 YUMA PROVING GROUND US AZ 32.833 -114.4 98.8 19550101 19630101 999999 03129 MOJAVE MCAS US CA 35.05 -118.167 842.5 19551003 19581001 999999 03133 YUCCA FLATS TEST S T US NV UCC 36.95 -116.05 1196.9 19611217 19721231 999999 03143 JACKASS FLATS US NV 36.8 -116.26700000000001 1100.9 19610425 19611217 999999 03147 CUDDEBACK GUNNERY RANGE US CA 4CB 35.266999999999996 -117.43299999999999 864.1 19630701 19701231 999999 03148 GILA BEND AF AUX AIRPORT US AZ KGBN 32.883 -112.71700000000001 261.5 19680903 20041231 999999 03154 CAMP PENDLETON MCAS US CA KNFG 33.3 -117.35 23.8 19660701 19721228 999999 03157 LONG BEACH NS US CA NWF 33.75 -118.23299999999999 4.3 19720601 19721229 999999 03163 CALIENTE AIRPORT US NV KP38 37.611999999999995 -114.52600000000001 1333.2 19970902 20041231 999999 03174 ZAMPERINE FIELD AIRPORT US CA 33.8 -118.333 29.6 20040702 20051231 999999 03724 CARROLL CO RGNL/JJACK B POAGE FIELD AIRPORT US MI KDMW 39.608000000000004 -77.008 240.5 20040102 20070713 999999 03728 MCCLELLANVILLE 7 NE US SC 33.153 -79.36399999999999 2.7 20020815 20200625 999999 03733 ELKINS 21 ENE US WV 39.013000000000005 -79.47399999999999 1033.3 20031117 20200625 999999 03739 CAPE CHARLES 5 ENE US VA 37.291 -75.92699999999999 8.8 20040303 20200625 999999 03755 GARRETT COUNTY AIRPORT US MD 39.58 -79.339 894.0 20061018 20200625 999999 03758 DURHAM 11 W US NC 35.971 -79.093 171.3 20070329 20200625 999999 03759 CHARLOTTESVILLE 2 SSE US VA 37.998000000000005 -78.46600000000001 358.8 20070329 20200625 999999 03761 AVONDALE 2 N US PA 39.859 -75.786 121.9 20060602 20200625 999999 03809 DYERSBURG MUNICIPAL AP US TN KDYR 36.0 -89.40899999999999 103.0 19490101 19550101 999999 03810 HICKORY REGIONAL AP US NC KHKY 35.743 -81.382 362.1 19490101 19550101 999999 03811 JACKSON MCKELLAR-SIPES REGL A US TN KMKL 35.593 -88.917 128.6 19490101 19550101 999999 03812 ASHEVILLE AIRPORT US NC KAVL 35.431999999999995 -82.538 661.4 19480101 19721231 999999 03813 MACON MIDDLE GA REGIONAL AP US GA KMCN 32.685 -83.65299999999999 110.3 19481201 19721231 999999 03814 CORBIN CAA AIRPORT US KY 36.967 -84.133 359.1 19490801 19541011 999999 03815 PENSACOLA SAUFLEY NAS US FL NUN 30.483 -87.35 28.0 19481122 19760331 999999 03816 PADUCAH BARKLEY FIELD US KY KPAH 37.056 -88.774 125.9 19490901 19650101 999999 03817 MALDEN FAA AIRPORT US MO MAW 36.6 -89.98299999999999 92.0 19500101 19550101 999999 03818 MARIANNA MUNICIPAL AP US FL KMAI 30.836 -85.184 34.4 19500101 19550101 999999 03820 AUGUSTA BUSH FIELD US GA KAGS 33.364000000000004 -81.963 45.1 19510101 19721231 999999 03822 SAVANNAH INTL AP US GA KSAV 32.13 -81.21 15.5 19650101 19721231 999999 03838 VANDALIA FAA AIRPORT US IL VLA 38.983000000000004 -89.167 163.1 19510401 19550101 999999 03840 PENSACOLA ELLYSON FLD NAAS US FL NDP 30.533 -87.2 39.9 19520102 19731221 999999 03841 ATDL US TN 35.998000000000005 -84.219 310.6 20050101 20160301 999999 03847 MEMO-WHITON FIELD AIRPORT US TN KCSV 35.951 -85.081 570.0 19540501 19550101 999999 03849 LONDON-CORBIN AP US KY KLOZ 37.086999999999996 -84.07700000000001 369.1 19541011 19650101 999999 03850 CAIRNS FIELD FORT RUCKER US AL KOZR 31.267 -85.71700000000001 91.7 19710101 19710101 999999 03853 MAYPORT NS US FL KNRB 30.4 -81.417 4.3 19550705 19721231 999999 03855 PENSACOLA FOREST SHERMAN NAS US FL KNPA 30.35 -87.31700000000001 9.1 19590101 19721231 999999 03856 HUNTSVILLE MADISON COUNTY ARP US AL KHSV 34.644 -86.786 196.3 19580901 19721231 999999 03858 MCENTIRE ANG US SC KMMT 33.967 -80.8 76.8 19590206 20041231 999999 03860 HUNTINGTON TRI-STATE ARPT US WV KHTS 38.365 -82.555 255.4 19611201 19721231 999999 03866 MERIDIAN NAAS US MS KNMM 32.55 -88.56700000000001 96.6 19610801 19721231 999999 03867 SPRINGFIELD AF US OH SGH 39.85 -83.833 323.1 19611006 19701231 999999 03868 TERRE HAUTE HULMAN FIELD ANG US IN KHUF 39.452 -87.309 180.7 19611003 20041231 999999 03870 GREENVILLE-SPARTANBURG INTL AIRPORT US SC KGSP 34.884 -82.221 296.0 19621015 19721231 999999 03872 BECKLEY RALEIGH CO MEM AP US WV KBKW 37.784 -81.123 766.3 19630515 19851231 999999 03874 FORT BENNING MCKENNA US GA MKF 32.367 -84.8 134.1 19640302 19650722 999999 03876 VALPARAISO US FL 30.433000000000003 -86.93299999999999 11.9 19670213 19701222 999999 03877 SMOKY HILL AF US KS 38.65 -97.8 422.1 19681101 19701230 999999 03878 TROY AF US AL KTOI 31.861 -86.012 121.0 19690409 19701219 999999 03881 CENTREVILLE WSMO US AL KCKL 32.9 -87.25 138.1 19831101 19831231 999999 03883 11 WEST OXMOOR RD US AL 33.467 -86.833 226.8 20020902 20031231 999999 03901 LONGVIEW GREGG COUNTY AP US TX KGGG 32.385 -94.712 113.7 19500901 19550101 999999 03904 COLLEGE STATION EASTERWOOD FL US TX KCLL 30.589000000000002 -96.365 100.0 19510801 19550101 999999 03918 FLIPPIN US AR KFLP 36.291 -92.59 219.2 19510701 20041231 999999 03919 SALINA (OLD) MUNI AP US KS KSLN 38.8 -97.65 390.8 19520101 19550101 999999 03923 MCCONNELL AFB US KS KIAB 37.617 -97.26700000000001 417.9 19710101 19710101 999999 03927 DALLAS-FORT WORTH INTL AP US TX KDFW 32.898 -97.01899999999999 181.7 19530501 19721231 999999 03928 WICHITA MUNICIPAL ARPT US KS KICT 37.648 -97.43 408.4 19540101 19721231 999999 03929 RICHARDS GEBAUR AFB US MO KGVW 38.844 -94.56 332.2 19710101 19710101 999999 03931 FORT POLK AAF US LA KPOE 31.05 -93.18299999999999 100.6 19571101 19590504 999999 03934 NEW IBERIA NAAS US LA KARA 30.033 -91.883 7.9 19610101 19641016 999999 03937 LAKE CHARLES REGIONAL ARPT US LA KLCH 30.125 -93.228 2.7 19640101 19721231 999999 03938 FT LNRD WD AAF US MO KTBN 37.75 -92.15 353.3 19710101 19710101 999999 03939 CLAIBORNE RANGE AF US LA 31.066999999999997 -92.5 57.9 19630701 19640626 999999 03940 JACKSON INTERNATIONAL AP US MS KJAN 32.321 -90.07799999999999 100.9 19640101 19721231 999999 03943 MINERAL WELLS FT WOLTERS AF US TX 32.85 -98.05 253.9 19661003 19701218 999999 03944 PALO PINTO DEMPSEY AF US TX 32.783 -98.26700000000001 359.1 19680103 19701218 999999 03945 COLUMBIA REGIONAL AIRPORT US MO KCOU 38.817 -92.21799999999999 273.7 19691101 19721231 999999 03947 KANSAS CITY INTERNATIONAL AIRPORT US MO KMCI 39.297 -94.73100000000001 312.4 19721001 19721231 999999 03948 UNIVERSITY OF OKLAHOMA WESTHEIMER AIRPORT US OK 35.25 -97.46700000000001 360.3 20020902 20051231 999999 03969 STEPHENVILLE CLARK FIELD US TX KSEP 32.215 -98.178 402.6 19831101 19831231 999999 04125 JOHN DAY 35 WNW US OR 44.556000000000004 -119.646 684.3 20030330 20200625 999999 04126 ARCO 17 SW US ID 43.461999999999996 -113.556 1804.4 20030710 20200625 999999 04127 MURPHY 10 W US ID 43.20399999999999 -116.751 1204.0 20030629 20200625 999999 04128 RILEY 10 WSW US OR 43.471000000000004 -119.69200000000001 1396.9 20030703 20200625 999999 04130 ST. MARY 1 SSW US MT 48.74100000000001 -113.43299999999999 1388.4 20030925 20200625 999999 04131 MOOSE 1 NNE US WY 43.662 -110.712 1970.8 20040630 20200625 999999 04133 HEBER CITY MUNI ARPT-RUSS MCDONALD FIELD US UT 40.482 -111.429 1718.2 20040702 20171012 999999 04134 GRANITE PEAK DUGWAY PROVING GROUND US UT KQCA 40.161 -113.351 1310.6 20060802 20200624 999999 04136 SPOKANE 17 SSW US WA 47.417 -117.52600000000001 691.0 20070801 20200625 999999 04137 DILLON 18 WSW US MT 45.158 -113.006 1820.0 20070728 20200625 999999 04138 BRIGHAM CITY 28 WNW US UT 41.61600000000001 -112.544 1509.1 20070819 20200625 999999 04139 DENIO 52 WSW US NV 41.848 -119.63600000000001 1981.2 20080616 20200625 999999 04140 LEWISTOWN 42 WSW US MT 46.885 -110.29 1545.3 20080727 20200625 999999 04141 COOS BAY 8 SW US OR 43.272 -124.319 3.7 20080819 20200625 999999 04143 PROVO 22 E US UT 40.282 -111.24 2379.9 20100731 20140601 999999 04221 ROCHE HARBOR SEAPLANE BASE US WA KW39 48.608000000000004 -123.15899999999999 0.0 20040102 20041231 999999 04222 REDDING 12 WNW US CA 40.650999999999996 -122.60700000000001 432.2 20030326 20200625 999999 04223 DARRINGTON 21 NNE US WA 48.541000000000004 -121.446 124.1 20030403 20200625 999999 04236 CORVALLIS 10 SSW US OR 44.419 -123.32600000000001 95.1 20060914 20200625 999999 04237 QUINAULT 4 NE US WA 47.513999999999996 -123.81200000000001 87.2 20060909 20200625 999999 04725 BINGHAMTON BROOME COUNTY ARPT US NY KBGM 42.207 -75.98 499.3 19480101 19721231 999999 04726 JOHNSTOWN CAMBRIA COUNTY AP US PA KJST 40.316 -78.834 696.2 19480926 19510701 999999 04727 GENEVA SAMPSON AFB US NY 42.75 -76.9 187.1 19520102 19560624 999999 04728 NIAGARA FALLS US NY E4C8 37.864000000000004 -103.823 1336.9 19520301 19540121 999999 04739 BELMAR ASC US NJ KBLM 40.183 -74.067 25.9 19550101 19710801 999999 04741 SCHENECTADY US NY KSCH 42.85 -73.95 115.2 19500101 19771201 999999 04751 BRADFORD REGIONAL AP US PA KBFD 41.8 -78.633 655.3 19570701 19721231 999999 04769 MAYNARD US MA 42.417 -71.483 63.1 19581001 19710801 999999 04780 FITCHBURG MUNICIPAL AP US MA KFIT 42.552 -71.756 106.1 19550101 19591231 999999 04782 SCHENECTADY US NY 42.833 -73.917 67.1 19611005 19620809 999999 04783 BELMAR MONMOUTH AAF US NJ BLM 40.183 -74.117 50.0 19630101 19631129 999999 04854 GAYLORD OTSEGO COUNTY AP US MI KGLR 45.013000000000005 -84.70100000000001 404.8 19980302 20051231 999999 04856 SEUL CHOIX POINT US MI KP75 45.95 -86.23 178.0 19980902 20041231 999999 04990 SIOUX FALLS 14 NNE US SD 43.735 -96.62200000000001 485.9 20020728 20200625 999999 04994 GOODRIDGE 12 NNW US MN 48.306000000000004 -95.874 350.5 20030820 20200625 999999 10502 GEORGETOWN GY SYCJ 6.5 -58.25 29.0 19490101 19490513 999999 10701 BALBOA ALBROOK PM MBLB 8.967 -79.55 9.1 19490101 19671230 999999 10715 COCO SOLO PM MBFS 9.367 -79.9 4.0 19450501 19570718 999999 10718 FORT KOBBE PM MBHO 8.917 -79.6 15.8 19541213 19680101 999999 10719 FORT SHERMAN PM MBFS 9.367 -79.95 9.1 19650401 19710701 999999 11610 WALLER BWI TD 10.617 -61.217 41.1 19490101 19491220 999999 11618 SAN JUAN NS RQ 18.467 -66.117 13.1 19450301 19620501 999999 11621 TRINIDAD BWI TD MCGU 10.683 -61.617 13.1 19450301 19550831 999999 11624 CHRISTIANSTED HAMILTON FIELD VQ VI TISX 17.7 -64.813 16.8 19510301 19610701 999999 11630 ROOSEVELT ROADS RQ PR TJNR 18.255 -65.641 11.6 19470701 19721201 999999 11631 SAN JUAN CITY RQ 18.467 -66.1 14.9 19500301 19550524 999999 11637 PONCE SANTA ISABEL RQ 17.967 -66.4 9.1 19510301 19540401 999999 11639 VIEQUES ISLAND NS RQ 18.117 -65.383 2.1 19531001 19531120 999999 11640 CHARLOTTE AMALIE HARRY S TRUM VQ VI TIST 18.336 -64.98 3.4 19530101 19610701 999999 11641 SAN JUAN L M MARIN INTL AP RQ PR TJSJ 18.433 -66.01100000000001 2.4 19550524 19951231 999999 11644 ST LUCIA ISLAND ST 13.75 -60.983000000000004 99.1 19560801 19571003 999999 11647 ST JOHNS AC MKPA 17.133 -61.783 18.9 19580101 19700213 999999 11650 SAN ISIDRO DR MSSO 18.5 -69.75 35.1 19650514 19660918 999999 11704 KINGSTON JM MKJP 17.9 -77.283 4.9 19490101 19490930 999999 11801 MERCEDES MNMG 12.133 -86.2 63.1 19421001 19460529 999999 11803 CORINTO MNCT 12.482999999999999 -87.18299999999999 4.0 19450401 19451201 999999 11806 PUERTO CASTILLA HO MHCT 16.017 -85.95 2.1 19450501 19451201 999999 11807 SWAN ISLAND HO MHIC 17.4 -83.93299999999999 11.0 19480701 19490101 999999 11813 ROBERTS CJ WI MWCR 19.3 -81.367 1.8 19660201 19721231 999999 12706 GREAT EXUMA ISLAND BF MGTE 23.517 -75.783 18.9 19450401 19450623 999999 12712 GOLD ROCK CREEK BF MYGM 26.616999999999997 -78.367 6.1 19510122 19701231 999999 12713 ELEUTHERA ISLAND BF MYEM 25.267 -76.3 10.1 19520201 19701231 999999 12714 GRAND TURK ISLAND TK MBJT 21.433000000000003 -71.133 3.0 19541115 19701231 999999 12715 MAYAGUAN BF 22.366999999999997 -73.033 21.0 19550115 19571002 999999 12716 SAN SALVADOR BF MYSM 24.066999999999997 -74.517 9.1 19550201 19641216 999999 12810 MACDILL AAF US FL KMCF 27.85 -82.51700000000001 4.3 19710101 19710101 999999 12815 PINECASTLE AAF US FL KMCO 28.434 -81.325 32.3 19710101 19710101 999999 12826 HOMESTEAD AAF US FL KHST 25.483 -80.383 2.1 19710101 19710101 999999 12832 APALACHICOLA US FL KAAF 29.733 -85.03299999999999 5.8 19480101 19490101 999999 12833 CROSS CITY AIRPORT US FL KCTY 29.633000000000003 -83.105 12.8 19490101 19550101 999999 12834 DAYTONA BEACH REGIONAL ARPT US FL KDAB 29.183000000000003 -81.048 12.5 19480101 19721231 999999 12835 FORT MYERS PAGE FIELD US FL KFMY 26.585 -81.861 5.5 19480101 19751231 999999 12836 KEY WEST INTL ARPT US FL KEYW 24.555 -81.752 6.4 19480101 19721231 999999 12838 MELBOURNE REGIONAL AP US FL KMLB 28.101 -80.64399999999999 8.2 19480101 19550101 999999 12839 MIAMI INTL AP US FL KMIA 25.791 -80.316 9.1 19480101 19721231 999999 12841 ORLANDO MUNICIPAL ARPT US FL KORL 28.545 -81.333 34.1 19500101 19721231 999999 12842 TAMPA INTL ARPT US FL KTPA 27.962 -82.54 3.4 19480101 19721231 999999 12843 VERO BEACH MUNICIPAL ARPT US FL KVRB 27.653000000000002 -80.243 8.5 19490114 19550101 999999 12844 WEST PALM BEACH INTL ARPT US FL KPBI 26.685 -80.09899999999999 6.4 19480101 19751231 999999 12846 DAYTONA BEACH NAS US FL 29.183000000000003 -81.067 18.9 19450201 19460201 999999 12847 DELAND NAS US FL 29.083000000000002 -81.417 32.0 19450301 19460101 999999 12848 DINNER KEY NAF US FL 25.733 -80.233 4.0 19450309 19450501 999999 12849 FORT LAUDERDALE HOLLYWOOD INT US FL KFLL 26.072 -80.154 3.4 19460101 19461011 999999 12850 KEY WEST NAS US FL KNQX 24.583000000000002 -81.683 7.3 19450301 19721231 999999 12851 MELBOURNE NAS US FL 28.1 -80.633 17.1 19450401 19460101 999999 12852 MIAMI MCAS US FL 25.916999999999998 -80.283 7.9 19460101 19580801 999999 12853 RICHMOND NAS US FL 25.616999999999997 -80.417 9.1 19450301 19451117 999999 12854 SANFORD AIRPORT US FL KSFB 28.78 -81.244 16.8 19450401 19680517 999999 12855 VERO BEACH NAS US FL 27.65 -80.417 15.8 19450201 19460401 999999 12857 SAN JULIAN CU MUSJ 22.066999999999997 -84.15 17.1 19450301 19451201 999999 12858 KEY WEST WB CITY US FL 24.566999999999997 -81.8 7.9 19530701 19570701 999999 12863 BURRWOOD WB US LA 28.967 -89.383 4.0 19560801 19650201 999999 12881 VALKARIA US FL 27.95 -80.567 9.1 19620315 19670712 999999 12884 BOOTHVILLE US LA 29.333000000000002 -89.40799999999999 0.9 19650201 20200618 999999 12889 BOMBING RANGE DETACHMENT ASTOR US FL 29.143 -81.633 28.0 19960702 20031231 999999 12907 LAREDO AFB US TX KLRD 27.533 -99.46700000000001 154.8 20040702 20081123 999999 12910 SAN MARCOS GARY AFB US TX KRJO 29.883000000000003 -97.867 178.0 19510501 19560816 999999 12911 RANDOLPH AFB US TX KRND 29.533 -98.262 232.3 19710101 19710101 999999 12917 PORT ARTHUR JEFFERSON COUNTY US TX KBPT 29.951 -94.021 4.9 19480701 19721231 999999 12918 HOUSTON WILLIAM P HOBBY AP US TX KHOU 29.638 -95.28200000000001 14.3 19480701 19690601 999999 12922 VICTORIA US TX 28.783 -97.083 35.1 19480701 19610701 999999 12925 BEEVILLE CHASE NAAS US TX KNIR 28.366999999999997 -97.667 57.9 19450301 20041231 999999 12926 CORPUS CHRISTI NAS US TX KNGP 27.683000000000003 -97.28299999999999 5.8 19450301 19721231 999999 12927 HOUMA NAS US LA KHUM 29.566 -90.66 3.0 19450301 20041231 999999 12928 KINGSVILLE US TX KNQI 27.5 -97.81700000000001 17.7 19450301 19721231 999999 12930 NEW ORLEANS AUDUBON GOLF SITE (AUDUBON PARK) US LA 29.916999999999998 -90.13 6.1 19480701 20031231 999999 12931 SAN ANTONIO BROOKS AFB US TX BRX 29.35 -98.45 182.0 19490101 19600622 999999 12935 PALACIOS MUNICIPAL AP US TX KPSX 28.725 -96.25399999999999 4.6 19560101 19590101 999999 12945 DOWNTOWN US TX 29.767 -95.367 15.9 20020902 20031231 999999 12946 CORPUS CHRISTI CABANISS NAAS US TX KNGW 27.7 -97.43299999999999 9.1 19490201 20200624 999999 12947 COTULLA FAA AP US TX KCOT 28.456999999999997 -99.21799999999999 146.0 19491001 19550101 999999 12956 MATAGORDA ISLAND AF US TX 28.333000000000002 -96.45 2.1 19550808 19591224 999999 12957 PORT ISABEL CAMERON COUNTY AP US TX KPIL 26.166 -97.346 5.8 19571101 20041231 999999 12958 NEW ORLEANS ALVIN CALLENDER F US LA KNBG 29.816999999999997 -90.01700000000001 0.3 19580101 19721231 999999 12960 HOUSTON INTERCONTINENTAL AP US TX KIAH 29.98 -95.36 32.0 19690601 19721231 999999 12973 OUTLYING LANDING FIELD US TX KNVT 27.633000000000003 -97.31700000000001 7.6 19960702 20041231 999999 12987 EDINBURG 17 NNE US TX 26.526 -98.06299999999999 19.5 20040219 20200625 999999 12988 LAKE PALOURD BASE HELIPORT US LA 29.693 -91.09899999999999 1.5 20140801 20161104 999999 12989 CAMERON HELIPORT US LA 29.783 -93.3 0.9 20050601 20050912 999999 12990 GRAND ISLE (SAWRS) US LA KGNI 29.191999999999997 -90.075 2.1 20050601 20050712 999999 12991 GULF OF MEXICO US LA 28.517 -90.96700000000001 32.3 20050601 20050921 999999 13017 PORT LYAUTEY MO GMMP 34.3 -6.6 11.9 19460101 19740131 999999 13021 EL DJEMA SAHIM MO GDMS 32.35 -8.783 19520210 19530212 999999 13023 BEN GUERIR MO GBGY 32.117 -7.882999999999999 448.1 19511122 19630501 999999 13025 ROTA NAS US LERT 36.65 -6.35 27.1 19581001 19721231 999999 13301 CHILLICOTHE 22 ENE US MO 39.867 -93.147 253.9 20050611 20200625 999999 13601 BERMUDA BD WI TXKF 32.367 -64.667 3.4 19720101 19721231 999999 13602 BERMUDA BD MYUN 32.266999999999996 -64.85 13.1 19490101 19650531 999999 13710 WASHINGTON DC BOLLING FIELD A US MD 38.833 -77.017 18.0 19451101 19680830 999999 13711 LAURINBURG AAB US NC 34.783 -79.383 63.1 19510715 19510902 999999 13713 GOLDSBORO SEYMOUR JOHNSON AFB US NC KGSB 35.344 -77.965 33.5 19710101 19710101 999999 13721 PATUXENT RIVER NAS US MD KNHK 38.3 -76.417 12.2 19710101 19721231 999999 13723 GREENSBORO GREENSBORO-HIGH PO US NC KGSO 36.097 -79.943 270.1 19660101 19721231 999999 13724 ATLANTIC CITY MARINA US NJ 39.378 -74.42399999999999 3.1 19480101 20200624 999999 13725 BALTIMORE US MD 39.25 -76.533 13.1 19450101 19490101 999999 13726 BLACKSTONE US VA 37.067 -77.95 134.1 19490101 19590101 999999 13728 DANVILLE FAA AP US VA KDAN 36.573 -79.336 179.8 19490201 19550101 999999 13729 ELKINS ELKINS-RANDOLPH CO ARP US WV KEKN 38.885 -79.85300000000001 603.2 19480101 19721231 999999 13730 FREDERICK US MD KFDK 39.417 -77.383 92.4 19480101 20041231 999999 13731 FRONT ROYAL US VA 39.0 -78.233 207.9 19490101 19560208 999999 13732 GORDONSVILLE FAA AP US VA 38.067 -78.15 135.0 19490101 19610420 999999 13733 LYNCHBURG MUNICIPAL ARPT US VA KLYH 37.321 -79.207 285.9 19480101 19721231 999999 13734 MARTINSBURG EASTERN WV REG AP US WV KMRB 39.402 -77.984 162.8 19490101 19650101 999999 13735 MILLVILLE MUNICIPAL AP US NJ KMIV 39.367 -75.067 23.2 19490101 19611001 999999 13736 MORGANTOWN MUNICIPAL AP US WV KMGW 39.643 -79.916 381.9 19490201 19550101 999999 13737 NORFOLK REGIONAL ARPT US VA KORF 36.903 -76.192 9.1 19480101 19721231 999999 13738 PETERSBURG US WV 39.0 -79.117 307.8 19480101 19540501 999999 13739 PHILADELPHIA INTERNATIONAL AP US PA KPHL 39.868 -75.23100000000001 8.5 19410101 19721231 999999 13740 RICHMOND INTL AP US VA KRIC 37.505 -77.32 49.7 19480101 19721231 999999 13741 ROANOKE WOODRUM ARPT US VA KROA 37.317 -79.97399999999999 358.4 19480101 19721231 999999 13742 URBANNA US VA 37.633 -76.567 9.1 19480101 19510331 999999 13743 WASHINGTON D C WASHNGTN-HOOVE US VA KDCA 38.848 -77.03399999999999 19.8 19700101 19721231 999999 13744 FLORENCE CITY COUNTY AP US SC KFLO 34.185 -79.72399999999999 46.0 19480101 19650401 999999 13745 HATTERAS US NC 35.217 -75.683 3.0 19480101 19570301 999999 13746 ROCKY MOUNT US NC RMT 35.967 -77.8 25.9 19490101 19550101 999999 13747 WARRENTON WB AP US NC 36.417 -78.15 132.0 19480101 19480910 999999 13748 WILMINGTON US NC KILM 34.268 -77.9 11.6 19480101 19721231 999999 13749 FREDERICK AF US MD 39.433 -77.45 100.0 19490101 19550429 999999 13750 NORFOLK NAS US VA KNGU 36.95 -76.283 4.9 19450201 19721231 999999 13751 ANACOSTIA NAS US MD NDV 38.85 -77.033 15.8 19450301 19611031 999999 13752 U.S. NAVAL ACADEMY US MD 38.991 -76.48899999999999 1.8 19450301 20200625 999999 13753 ATLANTIC CITY NAS US NJ 39.45 -74.583 20.1 19450201 19580616 999999 13754 CHERRY POINT MCAS US NC KNKT 34.9 -76.883 8.8 19450301 19721231 999999 13755 CHINCOTEAGUE NAS US VA K0W8 37.933 -75.433 14.9 19450301 19590316 999999 13756 CAPE MAY NAS US NJ KN91 38.95 -74.883 4.9 19450201 19460501 999999 13758 CHARLESTON NAS US SC KCLX 32.85 -79.933 2.1 19450301 19450807 999999 13759 CREEDS NAAS US VA 36.617 -76.017 11.0 19450301 19451015 999999 13760 DAHLGREN WEAPONS LAB US VA 38.333 -77.033 6.1 19450301 19591115 999999 13762 FENTRESS NAAS US VA KNFE 36.695 -76.13600000000001 4.9 19450301 20041231 999999 13763 FRANKLIN NAAS US VA KFKN 36.698 -76.903 12.5 19450301 19451231 999999 13766 MANTEO NAAS US NC KMQI 35.917 -75.7 4.3 19450301 20041231 999999 13769 OCEANA NAS US VA KNTU 36.817 -76.033 6.7 19450301 19721231 999999 13771 PHILADELPHIA NAAS US PA MUV 39.883 -75.167 6.1 19450201 19610929 999999 13773 QUANTICO MCAS US VA KNYG 38.5 -77.3 3.7 19450201 19721231 999999 13774 WEEKSVILLE NAF US NC 36.25 -76.133 7.0 19520501 19570628 999999 13775 WILDWOOD NAS US NJ 38.983000000000004 -74.917 17.1 19450201 19451208 999999 13776 LUMBERTON MUNICIPAL AP US NC KLBT 34.608000000000004 -79.059 38.4 19490101 19550101 999999 13777 BALTIMORE CUSTOM HOUSE US MD 39.283 -76.617 4.3 19960702 20031231 999999 13781 WILMINGTON DUPONT AP US DE KILG 39.673 -75.601 24.4 19480101 19721231 999999 13782 CUSTOM HOUSE (CITY OFC) US SC 32.775 -79.92399999999999 3.1 20050101 20200624 999999 13786 ELIZABETH CITY MUNICIPAL AP US NC KECG 36.260999999999996 -76.175 4.0 19710101 19981231 999999 13806 FORT CAMPBELL AAF US KY KHOP 36.667 -87.48299999999999 174.7 19710101 19710101 999999 13812 LOCKBOURNE US OH KLCK 39.817 -82.93299999999999 226.8 19710101 20041231 999999 13815 ALBANY NAVAL AIR STN US GA 31.583000000000002 -84.117 66.1 19720101 19721231 999999 13822 GREENVILLE DONALDSON AFB US SC 34.766999999999996 -82.383 298.1 19490101 19630430 999999 13825 COLUMBUS AAF US MS KCBM 33.65 -88.45 66.8 19710101 19710101 999999 13829 FORT BENNING LAWSON US GA KLSF 32.35 -85.0 70.7 19710101 19710101 999999 13839 DOTHAN REGIONAL AP US AL KDHN 31.316999999999997 -85.45 107.6 20010602 20051231 999999 13853 SAVANNAH CHATHAM FIELD AAF US GA 32.133 -81.2 15.8 19490520 19501001 999999 13855 TULLAHOMA AEDC SITE US TN 35.383 -86.23299999999999 328.9 19630101 19690801 999999 13864 MARIETTA DOBBINS AAF US GA KMGE 33.917 -84.51700000000001 325.5 19710101 19710101 999999 13865 MERIDIAN KEY FIELD US MS KMEI 32.335 -88.744 94.5 19480701 19721231 999999 13866 CHARLESTON KANAWHA ARPT US WV KCRW 38.379 -81.59 299.3 19490201 19721231 999999 13867 PARKERSBURG WSO US WV PKB 39.266999999999996 -81.567 187.5 19480101 19550101 999999 13868 PULASKI US VA KPSK 37.133 -80.683 641.6 19490101 19550101 999999 13869 ALBANY MUNICIPAL AP US GA KABY 31.535999999999998 -84.194 58.8 19480101 19550101 999999 13870 ALMA BACON COUNTY AP US GA KAMG 31.535999999999998 -82.507 62.8 19490101 19590101 999999 13871 ANNISTON CALHOUN CO AP US AL KANB 33.586999999999996 -85.85600000000001 182.9 19480101 19550501 999999 13873 ATHENS MUNICIPAL ARPT US GA KAHN 33.948 -83.32799999999999 244.4 19550901 19721231 999999 13874 ATLANTA HARTSFIELD INTL AP US GA KATL 33.63 -84.44200000000001 312.7 19450101 19721231 999999 13876 BIRMINGHAM MUNICIPAL AP US AL KBHM 33.566 -86.745 192.0 19480101 19721231 999999 13877 BRISTOL TRI CITY AIRPORT US TN KTRI 36.473 -82.404 464.8 19480101 19721231 999999 13878 BRUNSWICK MALCOLM MCKINNON AP US GA KSSI 31.151999999999997 -81.391 7.3 19481201 19550101 999999 13880 CHARLESTON US SC KCHS 32.899 -80.04 14.6 19710101 19721231 999999 13881 CHARLOTTE DOUGLAS MUNICIPAL A US NC KCLT 35.224000000000004 -80.955 234.4 19480101 19721231 999999 13882 CHATTANOOGA LOVELL FIELD AP US TN KCHA 35.031 -85.20100000000001 209.7 19480101 19721231 999999 13883 COLUMBIA METRO ARPT US SC KCAE 33.942 -81.118 68.6 19480101 19721231 999999 13884 CRESTVIEW BOB SIKES AP US FL KCEW 30.78 -86.523 56.4 19480101 19550101 999999 13885 EVERGREEN INTERMEDIATE FLD US AL EVR 31.416999999999998 -87.03299999999999 78.0 19491201 19550101 999999 13889 JACKSONVILLE IMESON US FL KJAX 30.495 -81.694 9.8 19660101 19721231 999999 13891 KNOXVILLE MCGHEE TYSON AP US TN KTYS 35.818000000000005 -83.986 298.7 19650101 19721231 999999 13893 MEMPHIS MUNICIPAL ARPT US TN KMEM 35.056 -89.98700000000001 101.2 19480101 19721231 999999 13894 MOBILE REGIONAL AP US AL KMOB 30.688000000000002 -88.24600000000001 67.4 19480101 19721231 999999 13895 MONTGOMERY DANNELLY FIELD US AL KMGM 32.3 -86.40799999999999 61.6 19480101 19721231 999999 13896 MUSCLE SHOALS REGIONAL AP US AL KMSL 34.744 -87.6 171.3 19481201 19550101 999999 13897 NASHVILLE BERRY FIELD US TN KBNA 36.119 -86.689 184.4 19480101 19721231 999999 13899 PENSACOLA REGIONAL AP US FL KPNS 30.478 -87.18700000000001 36.0 19481231 19721231 999999 13902 ALTUS AAF US OK KLTS 34.65 -99.26700000000001 421.2 19710101 19710101 999999 13904 AUSTIN BERGSTROM AFB US TX KAUS 30.183000000000003 -97.68 150.9 19490101 19710101 999999 13905 BRYAN AFB US TX 30.666999999999998 -96.55 84.1 19480701 19580612 999999 13907 DALLAS HENSLEY FIELD AFB US TX 32.75 -96.96700000000001 149.0 19490101 19520421 999999 13910 ABILENE DYESS AAF US TX KDYS 32.433 -99.85 545.3 19710101 19710101 999999 13919 OKLAHOMA CITY TINKER AAF US OK KTIK 35.417 -97.383 393.5 19710101 19710101 999999 13920 FORBES FIELD AAF US KS KFOE 38.95 -95.664 328.9 19710101 19710101 999999 13928 WACO JAMES CONNALLY AFB US TX 31.633000000000003 -97.06700000000001 153.0 19490101 19680831 999999 13930 WHITEMAN AAF US MO KSZL 38.717 -93.55 265.5 19710101 19710101 999999 13935 ESLER FIELD AAF US LA KESF 31.393 -92.296 36.0 19600201 19721231 999999 13941 LAKE CHARLES WB AIRP US LA KCWF 30.21 -93.14299999999999 5.2 19480701 19630401 999999 13942 MONROE SELMAN FIELD US LA KMLU 32.516 -92.041 24.7 19560101 19590101 999999 13944 BARKSDALE AFB US LA KBAD 32.5 -93.667 50.6 19710101 19710101 999999 13945 FORT SILL POST FIELD AF US OK KFSI 34.65 -98.4 362.1 19710101 19710101 999999 13956 JACKSON 4 NW US MS 32.333 -90.23299999999999 98.1 19480701 19630708 999999 13957 SHREVEPORT REGIONAL ARPT US LA KSHV 32.446999999999996 -93.824 78.9 19480701 19721231 999999 13958 AUSTIN MUELLER MUNICIPAL AP US TX KATT 30.320999999999998 -97.76 200.6 19480701 19721231 999999 13959 WACO RICH FIELD US TX KACT 31.619 -97.228 154.8 19690101 19721231 999999 13963 LITTLE ROCK ADAMS FIELD US AR KLIT 34.727 -92.23899999999999 78.3 19480701 19741231 999999 13965 ARDMORE INTERMEDIATE FLD US OK 34.3 -97.15 264.0 19480701 19550101 999999 13966 WICHITA FALLS MUNICIPAL ARPT US TX KSPS 33.979 -98.493 313.9 19650101 19721231 999999 13967 OKLAHOMA CITY WILL ROGERS FIE US OK KOKC 35.389 -97.601 397.5 19650101 19721231 999999 13970 BATON ROUGE RYAN ARPT US LA KBTR 30.537 -91.147 23.2 19480701 19721231 999999 13971 HARRISON FAA AP US AR KHRO 36.266999999999996 -93.15700000000001 422.1 19670101 19690101 999999 13972 TYLER POUNDS FIELD US TX KTYR 32.354 -95.40299999999999 167.9 19480701 19991231 999999 13973 JUNCTION US TX KJCT 30.511 -99.766 533.1 19480701 19690131 999999 13976 LAFAYETTE REGIONAL AP US LA KLFT 30.205 -91.988 12.8 19560101 19590101 999999 13978 GREENWOOD MUNICIPAL AP US MS KGWO 33.496 -90.087 40.5 19490101 19550101 999999 13979 VICKSBURG OLD US MS 32.4 -90.78299999999999 36.9 19490101 19500601 999999 13980 ANTHONY US KS 37.167 -98.083 402.6 19480101 19510101 999999 13981 CHANUTE MARTIN JOHNSON AP US KS KCNU 37.67 -95.484 308.2 19480101 19650101 999999 13982 CHILLICOTHE US MO 39.783 -93.5 232.9 19480101 19510101 999999 13983 COLUMBIA MUNICIPAL AP US MO COU 38.967 -92.367 237.1 19450101 19691101 999999 13984 CONCORDIA BLOSSER MUNI AP US KS KCNK 39.551 -97.65100000000001 452.3 19480101 19721231 999999 13985 DODGE CITY MUNICIPAL ARPT US KS KDDC 37.769 -99.96799999999999 790.0 19480101 19721231 999999 13986 HUTCHINSON MUNICIPAL AP US KS KHUT 38.065 -97.861 470.0 19480101 19511231 999999 13987 JOPLIN MUNICIPAL AP US MO KJLN 37.147 -94.50200000000001 300.2 19480101 19550101 999999 13988 KANSAS CITY MUNICIPAL AP US MO KMKC 39.121 -94.59700000000001 228.6 19650101 19721001 999999 13989 EMPORIA MUNICIPAL AP US KS KEMP 38.329 -96.195 367.6 19501101 19550101 999999 13990 LEBO CAA AIRPORT US KS 38.433 -95.8 352.0 19480501 19501001 999999 13991 MARSHALL US MO 39.117 -93.21700000000001 240.8 19480101 19500501 999999 13992 NEW FLORENCE US MO 38.883 -91.43299999999999 269.1 19480101 19500501 999999 13993 ST JOSEPH WBO US MO KSTJ 39.774 -94.92299999999999 249.3 19480101 19721231 999999 13994 ST LOUIS LAMBERT INT'L ARPT US MO KSTL 38.753 -90.374 216.4 19450101 19721231 999999 13995 SPRINGFIELD MUNICIPAL ARPT US MO KSGF 37.24 -93.39 387.1 19480101 19721231 999999 13996 TOPEKA MUNICIPAL AP US KS KTOP 39.073 -95.626 269.7 19480101 19721231 999999 13997 VICHY ROLLA NATL ARPT US MO KVIH 38.131 -91.76799999999999 346.6 19480101 19650101 999999 13998 WICHITA US KS 37.683 -97.35 387.1 19480101 19540101 999999 13999 CLINTON NAS US OK KCLK 35.538000000000004 -98.93299999999999 492.3 19450201 19460515 999999 14601 DOW AFB US ME BGR 44.8 -68.817 52.1 19490101 19710101 999999 14605 AUGUSTA AIRPORT US ME KAUG 44.316 -69.797 109.7 19490101 19550101 999999 14606 BANGOR AIRPORT US ME KBGR 44.798 -68.819 58.5 19720201 19721231 999999 14607 CARIBOU MUNICIPAL ARPT US ME KCAR 46.871 -68.017 190.2 19480101 19721231 999999 14608 EASTPORT US ME KEPO 44.917 -67.0 28.0 19480101 19480403 999999 14610 MILLINOCKET MUNICIPAL AP US ME KMLT 45.648 -68.693 122.5 19490101 19650101 999999 14611 BRUNSWICK NAS US ME KNHZ 43.9 -69.933 22.9 19450201 19721231 999999 14622 OLD TOWN FAA AIRPORT US ME KOLD 44.95 -68.667 41.1 19490101 19720201 999999 14623 LORING AFB US ME KLIZ 46.95 -67.883 221.0 19710101 19710101 999999 14657 GEORGES SHOALS AFS US MA 41.683 -67.783 25.9 19560312 19630625 999999 14658 NANTUCKET SHOALS AFS US MA 41.016999999999996 -69.5 27.1 19570410 19630625 999999 14697 CUTLER US ME 44.633 -67.283 25.9 19800301 19801231 999999 14707 GROTON AAF US CT KGON 41.328 -72.04899999999999 3.0 19500601 19631231 999999 14708 HEMPSTEAD MITCHELL FLD AFB US NY 40.733000000000004 -73.6 38.1 19490101 19610416 999999 14710 MANCHESTER MUNICIPAL AP US NH KMHT 42.933 -71.438 70.7 19490101 19680624 999999 14732 NEW YORK LAGUARDIA ARPT US NY KLGA 40.779 -73.88 9.4 19480701 19721231 999999 14733 BUFFALO BUFFALO ARPT US NY KBUF 42.941 -78.736 214.9 19720101 19721231 999999 14734 NEWARK INTERNATIONAL ARPT US NJ KEWR 40.683 -74.169 9.1 19480101 19721231 999999 14735 ALBANY COUNTY AP US NY KALB 42.743 -73.809 89.0 19450101 19721231 999999 14736 ALTOONA BLAIR CO ARPT US PA KAOO 40.296 -78.32 447.8 19490201 19550101 999999 14737 ALLENTOWN BETHLEHEM-EASTON AR US PA KABE 40.650999999999996 -75.449 117.3 19480101 19721231 999999 14738 BINGHAMTON TRI-CITIES ARPT US NY 42.083 -76.1 253.9 19480101 19510701 999999 14740 HARTFORD BRADLEY INTL AP US CT KBDL 41.938 -72.683 54.6 19490101 19721231 999999 14741 BROOKVILLE FAA AP US PA 41.15 -79.1 427.0 19490101 19590101 999999 14742 BURLNGTN ETAN ALN AP US VT KBTV 44.468 -73.15 103.6 19650101 19721231 999999 14743 CANTON 4 SE US NY 44.583 -75.117 121.9 19460101 19501031 999999 14745 CONCORD MUNICIPAL ARPT US NH KCON 43.195 -71.501 105.5 19480101 19721231 999999 14746 CURWENSVILLE US PA 41.05 -78.583 675.1 19480101 19520416 999999 14747 DUNKIRK CHAUTAUQUA CO AP US NY KDKK 42.493 -79.27199999999999 211.2 19490101 19540101 999999 14748 ELMIRA AIRPORT US NY KELM 42.159 -76.892 290.8 19490201 19550101 999999 14749 FORT PLAIN WB AP US NY 42.967 -74.667 217.0 19480101 19480901 999999 14750 GLENS FALLS AP US NY KGFL 43.35 -73.617 101.5 19490201 19550101 999999 14751 HARRISBURG STATE ARPT US PA KCXY 40.217 -76.851 105.8 19650101 19721231 999999 14752 HARTFORD BRAINARD FD US CT KHFD 41.736000000000004 -72.65100000000001 5.8 19450101 19540810 999999 14753 BLUE HILL OBSERVATORY US MA 42.211999999999996 -71.11399999999999 190.5 19981001 19991231 999999 14754 TOBYHANNA US PA 7TB 41.183 -75.417 594.4 19480101 19481001 999999 14757 POUGHKEEPSIE DUTCHESS CO AP US NY KPOU 41.626999999999995 -73.884 49.4 19490101 19550101 999999 14758 NEW HAVEN TWEED AIRPORT US CT KHVN 41.263999999999996 -72.887 4.0 19480101 19690601 999999 14760 PARK PLACE 1 NW WB US PA PKL 40.85 -76.117 591.0 19480101 19540610 999999 14761 PHILIPSBURG MID-STATE ARPT US PA KPSB 40.9 -78.083 593.8 19480101 20041231 999999 14762 PITTSBURGH ALLEGHENY CO AP US PA KAGC 40.355 -79.922 388.0 19450101 19520915 999999 14763 PITTSFIELD MUNICIPAL AP US MA KPSF 42.427 -73.289 363.9 19480101 20051231 999999 14764 PORTLAND INTL JETPORT US ME KPWM 43.65 -70.3 19.2 19480101 19721231 999999 14765 PROVIDENCE T F GREEN ARPT US RI KPVD 41.722 -71.433 18.9 19480101 19721231 999999 14768 ROCHESTER MONROE CO ARPT US NY KROC 43.117 -77.67699999999999 169.2 19480101 19721231 999999 14770 SELINSGROVE PENN VALLEY AP US PA KSEG 40.821 -76.86399999999999 137.2 19490201 19550101 999999 14771 SYRACUSE MUNICIPL AP US NY KSYR 43.111000000000004 -76.104 127.1 19650101 19721231 999999 14772 TICONDEROGA 3 NE US NY 43.883 -73.4 64.0 19480101 19480915 999999 14774 UTICA CAA AP US NY 43.167 -75.317 163.1 19490101 19501125 999999 14775 WESTFIELD BARNES MUNI AP US MA KBAF 42.158 -72.71600000000001 82.6 19490101 19520502 999999 14776 LEBANON MUNICIPAL US NH KLEB 43.626000000000005 -72.305 173.7 19490101 19590101 999999 14777 WILKES-BARRE SCRANTON AP US PA KAVP 41.333999999999996 -75.727 293.2 19490101 19721231 999999 14778 WILLIAMSPORT-LYCOMING COUNTY US PA KIPT 41.243 -76.922 160.0 19480701 19721231 999999 14780 LAKEHURST NAS US NJ KNEL 40.033 -74.35 31.4 19450201 19721231 999999 14781 AYER US MA 42.567 -71.6 82.0 19450301 19450930 999999 14784 LEWISTON NAAF US ME 44.05 -70.25 82.9 19450301 19450501 999999 14786 NEW YORK FLOYD BENNE US NY NSC 40.583 -73.883 4.9 19450401 19701101 999999 14788 QUONSET POINT NAS US RI 41.583 -71.417 9.1 19450301 19740405 999999 14789 SQUANTUM NAS US MA 42.266999999999996 -71.033 4.9 19480201 19531220 999999 14790 SOUTH WEYMOUTH NAS US MA KNZW 42.15 -70.933 49.4 19460401 20041231 999999 14792 TRENTON MERCER COUNTY AP US NJ KTTN 40.277 -74.816 64.9 19450220 19451001 999999 14793 WILLOW GROVE NAS US PA KNXX 40.2 -75.15 110.3 19450201 19721201 999999 14797 BEAR MOUNTAIN WB US NY 41.317 -74.0 396.8 19480101 19530515 999999 14799 BLOCK ISLAND US RI BID 41.167 -71.567 13.1 19480101 19490611 999999 14804 MOUNT CLEMENS SELFRIDGE FLD US MI KMTC 42.608000000000004 -82.818 176.8 19361201 19361231 999999 14808 OSCODA WURTSMITH AAF US MI KOSC 44.45 -83.4 193.2 19710101 19710101 999999 14810 PARK RIDGE AF US IL 41.983000000000004 -87.9 203.0 19490101 19581101 999999 14812 MERCER WB AP US PA 41.283 -80.2 394.1 19480101 19480915 999999 14813 AKRON FULTON INTERNATIONAL AP US OH KAKR 41.038000000000004 -81.464 335.6 19480101 19480701 999999 14814 ALPENA WASTEWATER PL US MI KAPE 45.067 -83.43299999999999 179.8 19480101 19490101 999999 14815 BATTLE CREEK KELLOGG AP US MI KBTL 42.308 -85.251 286.2 19490101 19550101 999999 14816 BRADFORD US IL BDF 41.233000000000004 -89.617 242.0 19481201 19550101 999999 14817 CADILLAC WEXFORD CO AP US MI KCAD 44.283 -85.417 398.4 19481201 19550101 999999 14819 CHICAGO MIDWAY AP US IL KMDW 41.786 -87.75200000000001 188.4 19480101 19721231 999999 14820 CLEVELAND HOPKINS INTL AP US OH KCLE 41.405 -81.85300000000001 245.4 19480101 19721231 999999 14821 COLUMBUS MUNICIPAL ARPT US OH KCMH 39.991 -82.881 248.7 19480101 19721231 999999 14822 DETROIT CITY AIRPORT US MI KDET 42.409 -83.01 190.8 19480101 19721231 999999 14823 EAST LIVERPOOL WB AP US OH 40.683 -80.633 355.1 19480101 19480901 999999 14825 FINDLAY AIRPORT US OH KFDY 41.013999999999996 -83.669 247.5 19481201 19550101 999999 14826 FLINT BISHOP ARPT US MI KFNT 42.967 -83.749 233.5 19481201 19721231 999999 14827 FORT WAYNE CITY US IN KFWA 40.971000000000004 -85.206 252.4 19650101 19721231 999999 14828 GLADWIN US MI 43.983000000000004 -84.48299999999999 236.2 19481201 19550101 999999 14829 GOSHEN MUNICIPAL AP US IN KGSH 41.533 -85.78299999999999 252.1 19481201 19550101 999999 14830 GRAND RAPIDS US MI 42.9 -85.667 213.1 19450101 19631201 999999 14831 GREEN BAY US WI 44.516999999999996 -87.96700000000001 182.0 19480101 19490101 999999 14833 JACKSON REYNOLDS FIELD US MI KJXN 42.266999999999996 -84.46700000000001 310.9 19490101 19550101 999999 14834 JOLIET US IL KJOT 41.5 -88.167 177.1 19460101 19530315 999999 14835 WEST LAFAYETTE PURDUE UNIV AP US IN KLAF 40.412 -86.93700000000001 194.2 19481201 19550101 999999 14836 LANSING CAPITAL CITY ARPT US MI KLAN 42.78 -84.579 266.4 19480101 19721231 999999 14837 MADISON TRUAX FIELD US WI KMSN 43.141000000000005 -89.345 264.0 19650101 19721231 999999 14838 MARQUETTE WBO US MI 46.567 -87.4 206.3 19480101 19490101 999999 14839 MILWAUKEE NB SIDE PO US WI KMKE 42.955 -87.904 211.2 19650101 19721231 999999 14840 MUSKEGON COUNTY ARPT US MI KMKG 43.17100000000001 -86.23700000000001 192.9 19480101 19721231 999999 14841 PELLSTON EMMET COUNTY AP US MI KPLN 45.56399999999999 -84.79299999999999 217.9 19480101 19550101 999999 14842 PEORIA GREATER PEORIA AP US IL KPIA 40.668 -89.684 201.8 19480101 19721231 999999 14843 PERRY CAA AP US OH 41.783 -81.1 210.9 19481201 19500122 999999 14844 ROCKFORD CAA AIRPORT US IL 42.35 -89.05 225.9 19481201 19510301 999999 14845 SAGINAW TRI CITY INTL AP US MI KMBS 43.533 -84.08 204.2 19481201 19650101 999999 14848 SOUTH BEND ST JOSEPH CO ARPT US IN KSBN 41.707 -86.316 235.6 19480101 19721231 999999 14849 TOLEDO WBAS US OH 41.567 -83.46700000000001 193.9 19460101 19550112 999999 14850 TRAVERSE CITY CHERRY CAPITAL US MI KTVC 44.74100000000001 -85.583 192.0 19481201 19721231 999999 14851 MARQUETTE K I SAWYER AP US MI 46.35 -87.4 360.0 19491201 19551130 999999 14852 YOUNGSTOWN MUNICIPAL ARPT US OH KYNG 41.254 -80.67399999999999 361.5 19650101 19721231 999999 14853 DETROIT WILLOW RUN AP US MI KYIP 42.233000000000004 -83.53299999999999 218.2 19480101 19681001 999999 14855 NAVAL AIR STATION US IL 42.083 -87.833 196.9 19450315 20031231 999999 14856 GROSSE ILE NAS US MI NFB 42.1 -83.167 180.1 19450301 19691001 999999 14857 TRAVERSE CITY US MI 44.717 -85.55 189.9 19450201 19451023 999999 14858 HANCOCK HOUGHTON CO AP US MI KCMX 47.169 -88.48899999999999 328.9 19480101 19650101 999999 14859 GRAND MARAIS 2 E US MI 46.667 -85.95 190.2 19481201 19550101 999999 14860 ERIE INTERNATIONAL AP US PA KERI 42.08 -80.183 224.6 19480101 19721231 999999 14891 MANSFIELD LAHM AP US OH KMFD 40.82 -82.51799999999999 399.9 19481201 19721231 999999 14894 WHEELING OHIO COUNTY AP US WV KHLG 40.176 -80.64699999999999 364.2 19490201 19530814 999999 14895 AKRON AKRON-CANTON AIRPORT US OH KCAK 40.917 -81.433 376.7 19480701 19721231 999999 14896 AKRON NAS US OH 41.033 -81.483 323.1 19520101 19571130 999999 14897 WAUSAU MUNICIPAL ARPT US WI KAUW 44.928999999999995 -89.62799999999999 364.5 19491111 19650101 999999 14898 GREEN BAY AUSTIN STRAUBEL FIE US WI KGRB 44.479 -88.137 214.0 19490901 19721231 999999 14904 LINCOLN AFB US NE LNK 40.85 -96.76700000000001 356.0 19540701 19640615 999999 14910 ALEXANDRIA MUNICIPAL AP US MN KAXN 45.868 -95.39399999999999 436.2 19481201 19550101 999999 14913 DULUTH WILLIAMSN-JOHNSN MUNI US MN KDLH 46.836999999999996 -92.18299999999999 431.9 19650101 19721231 999999 14914 FARGO HECTOR ARPT US ND KFAR 46.925 -96.811 274.0 19650101 19721231 999999 14916 GRAND FORKS INTERNATIONAL AP US ND KGFK 47.943000000000005 -97.184 253.6 19481201 19590101 999999 14918 INTERNATIONAL FALLS INTL AP US MN KINL 48.56100000000001 -93.398 360.6 19480101 19721231 999999 14919 JAMESTOWN MUNICIPAL ARPT US ND KJMS 46.926 -98.669 455.4 19481201 19550101 999999 14920 LA CROSSE MUNI AP US WI KLSE 43.879 -91.25299999999999 199.9 19650101 19721231 999999 14921 LONE ROCK FAA AP US WI KLNR 43.211999999999996 -90.181 219.8 19481201 19550101 999999 14922 MINNEAPOLIS-ST PAUL WOLD-CHAM US MN KMSP 44.883 -93.229 255.4 19650101 19721231 999999 14923 MOLINE QUAD CITY ARPT US IL KMLI 41.465 -90.523 181.1 19480209 19721231 999999 14924 PEMBINA US ND 48.967 -97.23299999999999 240.8 19481201 19501001 999999 14925 ROCHESTER MUNICIPAL ARPT US MN KRST 43.903999999999996 -92.492 402.3 19480101 19721231 999999 14926 ST CLOUD MUNICIPAL ARPT US MN KSTC 45.543 -94.051 312.1 19480101 19721231 999999 14927 ST PAUL DOWNTOWN AP US MN KSTP 44.931999999999995 -93.056 216.7 19480101 19530601 999999 14928 WLMR MUNI-J L RICE FD ARPT US MN 45.117 -95.083 344.1 19481201 19501001 999999 14929 ABERDEEN MUNICIPAL ARPT US SD KABR 45.443000000000005 -98.413 396.2 19480101 19721231 999999 14931 BURLINGTON MUNICIPAL AP US IA KBRL 40.783 -91.125 214.0 19480101 19721231 999999 14933 DES MOINES MUNICIPAL ARPT US IA KDSM 41.534 -93.65299999999999 293.5 19450101 19721231 999999 14934 DUBUQUE WB CITY US IA 42.5 -90.667 207.0 19480101 19490101 999999 14935 GRAND ISLAND ARPT US NE KGRI 40.961000000000006 -98.314 565.7 19480101 19721231 999999 14936 HURON MUNICIPAL ARPT US SD KHON 44.398 -98.223 392.9 19400101 19721231 999999 14937 IOWA CITY MUNICIPAL AP US IA KIOW 41.633 -91.54299999999999 203.6 19490101 19961231 999999 14938 KIRKSVILLE CANNON MEMORIAL AP US MO KIRK 40.097 -92.54299999999999 294.1 19480101 19550101 999999 14939 LINCOLN AIR BASE US NE KLNK 40.851 -96.74799999999999 362.4 19480101 19721231 999999 14940 MASON CITY MUNICIPAL ARPT US IA KMCW 43.153999999999996 -93.32700000000001 373.4 19480101 19721231 999999 14941 NORFOLK KARL STEFAN MEM ARPT US NE KOFK 41.986000000000004 -97.435 472.7 19480101 19721231 999999 14942 OMAHA EPPLEY AIRFIELD US NE KOMA 41.31 -95.899 299.3 19480101 19721231 999999 14943 SIOUX CITY MUNICIPAL ARPT US IA KSUX 42.391000000000005 -96.37899999999999 336.2 19480101 19721231 999999 14944 SIOUX FALLS FOSS FLD US SD KFSD 43.578 -96.75399999999999 434.9 19480101 19721231 999999 14945 TARKIO US MO 40.417 -95.4 317.0 19480101 19510101 999999 14947 MINNEAPOLIS NAS US MN MSP 44.883 -93.21700000000001 255.1 19450301 19611231 999999 14948 OTTUMWA NAS US IA 41.1 -92.43299999999999 257.9 19450201 19470811 999999 14950 OTTUMWA INDUSTRIAL AP US IA KOTM 41.108000000000004 -92.447 257.6 19480101 19550101 999999 14991 EAU CLAIRE MUNICIPAL AP US WI KEAU 44.867 -91.488 272.8 19491001 19721231 999999 14993 LAMONI FAA AIRPORT US IA 40.65 -94.0 356.0 19500101 19510101 999999 14994 LEXINGTON US NE KLXN 40.789 -99.771 735.5 19510101 20041231 999999 14995 GRANTSBURG US WI 45.766999999999996 -92.667 274.9 19500701 19550101 999999 15015 CHELVESTON UK 52.3 0.5329999999999999 92.0 19560601 19640229 999999 15027 WARRINGTON UK 53.383 -2.65 27.1 19490101 19590430 999999 15033 HUNTINGTON UK EGWZ 52.367 0.217 49.1 19550909 19671231 999999 15040 GREENHAM UK EGVI 51.383 -1.2830000000000001 125.0 19551001 19640602 999999 15042 BRUNTINGTHORPE UK 52.467 -1.117 150.9 19570701 19620824 999999 15620 SAGLEK CA 58.483000000000004 -62.65 18.0 19531205 19600630 999999 16201 KEFLAVIK IC BIKF 63.967 -22.6 50.0 19720101 19721231 999999 16407 SIMIUTAK GL 60.683 -46.533 61.9 19490101 19570701 999999 17503 CAMP TUTO SITE 2 GL 76.983 -56.067 124.1 19580617 19600824 999999 17605 THULE OP SITE GL BGTL 76.517 -68.833 77.1 19510901 19710101 999999 17611 CAMP TUTO ICECAP STA GL 76.417 -68.317 488.0 19570601 19650801 999999 17612 CAMP TUTO ICECAP ST GL 76.417 -68.25 579.1 19570601 19580913 999999 17614 CAMP TUTO ICECAP STA GL 76.4 -68.133 750.1 19570601 19600908 999999 17615 CAMP CENTURY GL 77.167 -61.133 305.1 19610101 19650813 999999 17617 CAMP TUTO EAST ASC S GL 76.383 -67.917 701.0 19601101 19630901 999999 21503 HILO NAS US HI 19.717 -155.05 11.9 19450701 19460101 999999 21504 HILO INTERNATIONAL AP US HI PHTO 19.719 -155.053 11.0 19491001 19721231 999999 21514 MAUNA LOA 5 NNE US HI 19.535 -155.576 3407.4 20050927 20200625 999999 21515 HILO 5 S US HI 19.645 -155.083 189.6 20050927 20200625 999999 21601 JOHNSTON ISLAND PN 16.733 -169.517 4.9 19490101 19581019 999999 21603 JOHNSTON IS WSO AP PN JQ PJON 16.733 -169.517 5.2 19581020 19721231 999999 22001 DEL RIO LAUGHLIN AAF US TX KDLF 29.366999999999997 -100.78299999999999 329.5 19710101 19710101 999999 22016 PANTHER JUNCTION 2 N US TX 29.348000000000003 -103.209 1065.0 20070224 20200625 999999 22501 BARKING SANDS US HI PHBK 22.033 -159.783 3.7 19720101 19721231 999999 22508 WHEELER AFB 810.1 US HI PHHI 21.487 -158.028 255.1 19710101 19710101 999999 22514 BARBERS POINT US HI PHNA 21.316999999999997 -158.067 15.2 19490101 20001101 999999 22515 EWA MCAS US HI 21.333000000000002 -158.05 20.1 19450401 19490301 999999 22517 PEARL HARBOR NAS US HI NPS 21.35 -157.95 10.1 19450401 19490425 999999 22519 KANEOHE BAY MCAS US HI PHNG 21.45 -157.783 5.5 19450401 19721231 999999 22525 PUUNENE CAA AP US HI 20.833000000000002 -156.467 39.9 19491001 19581220 999999 22526 PORT ALLEN CAA AP US HI 21.9 -159.6 9.1 19491001 19501201 999999 22536 LIHUE AIRPORT US HI PHLI 21.984 -159.341 45.1 19500201 19721231 999999 22602 FRNCH FRIGAT SHS NAS US HI 23.783 -166.217 2.1 19450401 19480501 999999 22703 MIDWAY ISLAND US HI 28.217 -177.38299999999998 6.1 19500605 19500927 999999 23012 DENVER LOWRY AFB US CO LRY 39.717 -104.9 1645.0 19460801 19660701 999999 23017 SAN ANGELO GOODFELLOW AFB US TX GOF 31.4 -100.4 573.0 19490101 19580829 999999 23019 BIGGS AFB US TX BIF 31.833000000000002 -106.4 1196.0 19490101 19660501 999999 23036 AURORA BUCKLEY FIELD ANGB US CO KBKF 39.717 -104.75 1725.8 19710101 19710101 999999 23042 LUBBOCK WEST TEXAS AIR TERMINA US TX KLBB 33.666 -101.823 987.9 19650101 19721231 999999 23043 ROSWELL MUNI AP US NM RNM 33.4 -104.53299999999999 1106.1 19480701 19690115 999999 23044 EL PASO MUNICIPAL ARPT US TX KELP 31.811 -106.376 1193.6 19670101 19711231 999999 23048 TUCUMCARI FAA AP US NM KTCC 35.181999999999995 -103.603 1231.1 19640101 19711231 999999 23050 ALBUQUERQUE MUNICIPAL ARPT US NM KABQ 35.042 -106.616 1619.7 19710101 19721231 999999 23051 CLAYTON MUNICIPAL AIRPARK US NM KCAO 36.449 -103.154 1515.5 19480701 19721231 999999 23052 RATON MUNICIPAL CREWS FIELD A US NM KRTN 36.741 -104.50200000000001 1935.2 19480701 19681129 999999 23053 PAMPA US TX 35.533 -100.96700000000001 985.1 19480701 19480901 999999 23055 GUADALUPE PASS US TX KGDP 31.831 -104.809 1663.0 19480701 19500901 999999 23056 OTTO FAA AP US NM 35.083 -106.01700000000001 1900.1 19480701 19550101 999999 23057 ACOMITA FAA AP US NM 35.05 -107.71700000000001 2007.1 19480701 19530429 999999 23058 COLUMBUS US NM 31.833000000000002 -107.633 1239.0 19480701 19550101 999999 23059 SALT FLAT US TX 31.75 -105.083 1132.9 19480701 19550101 999999 23060 EL MORRO CAA AP US NM 35.016999999999996 -108.4 2171.1 19480701 19490215 999999 23061 ALAMOSA ARPT US CO KALS 37.439 -105.861 2298.5 19480101 19721231 999999 23062 DENVER STAPLETON AIRFIELD US CO KDNR 39.766999999999996 -104.883 1626.1 19670101 19721231 999999 23063 EAGLE COUNTY AP US CO KEGE 39.65 -106.917 1991.9 19480101 19721231 999999 23065 GOODLAND RENNER FIELD US KS KGLD 39.367 -101.693 1124.1 19480101 19721231 999999 23066 GRAND JUNCTION WALKER FIELD US CO KGJT 39.134 -108.54 1474.9 19480101 19721231 999999 23067 LA JUNTA MUNICIPAL AP US CO KLHX 38.049 -103.512 1284.7 19480101 19650101 999999 23068 PUEBLO WB AIRPORT US CO 38.233000000000004 -104.633 1464.9 19480101 19540701 999999 23070 TRINIDAD LAS ANIMAS COUNTY AP US CO KTAD 37.262 -104.338 1750.5 19480101 19611001 999999 23072 CLARENDON MUNICIPAL AP US TX 34.95 -100.93299999999999 875.1 19480701 19500601 999999 23090 FARMINGTON MUNICIPAL AP US NM KFMN 36.744 -108.229 1677.0 19490101 19721231 999999 23109 DAVIS MONTHAN AFB US AZ KDMA 32.167 -110.883 824.2 19710101 19710101 999999 23110 LEMOORE REEVES NAS US CA KNLC 36.333 -119.95 71.3 19710101 19721231 999999 23118 STEAD AFB US NV RAA 39.667 -119.867 1531.9 19520801 19660331 999999 23122 NORTON AAF US CA KSBD 34.1 -117.25 335.0 19710101 20200625 999999 23131 GEORGE AFB US CA KVCV 34.583 -117.383 879.3 19710101 19710101 999999 23136 OXNARD AAF US CA KCMA 34.217 -119.083 19.8 19521209 20041231 999999 23141 INDIAN SPRINGS US NV KINS 36.583 -115.68299999999999 951.9 19630903 19680829 999999 23152 HOLLYWOOD BURBANK ARPT US CA KBUR 34.201 -118.35799999999999 223.1 19480101 19690101 999999 23153 TONOPAH AIRPORT US NV KTPH 38.051 -117.09 1656.3 19510402 19761231 999999 23154 ELY YELLAND FIELD US NV KELY 39.295 -114.84700000000001 1908.7 19530120 19721231 999999 23155 BAKERSFIELD KERN COUNTY ARPT US CA KBFL 35.434 -119.054 150.0 19480101 19721231 999999 23156 BEAUMONT 1 E US CA BUO 33.933 -116.96700000000001 794.0 19480101 19530826 999999 23157 BISHOP AIRPORT US CA KBIH 37.371 -118.35799999999999 1263.4 19480104 19721231 999999 23158 BLYTHE RIVERSIDE CO US CA KBLH 33.619 -114.714 119.5 19481101 19721231 999999 23159 BRYCE CNYN FAA AP US UT KBCE 37.705999999999996 -112.146 2313.1 19481101 19721231 999999 23160 TUCSON INTERNATIONAL AP US AZ KTUS 32.131 -110.955 778.8 19460601 19721231 999999 23161 DAGGETT BARSTOW-DAGGETT AP US CA KDAG 34.854 -116.786 588.0 19481101 19721231 999999 23162 DELTA FAA AP US UT KDTA 39.383 -112.51700000000001 1449.3 19481101 20041231 999999 23167 FRESNO CHANDLER FIELD US CA FCH 36.733000000000004 -119.81700000000001 84.1 19480101 19490901 999999 23169 LAS VEGAS MCCARRAN INTL AP US NV KLAS 36.071999999999996 -115.163 664.5 19481219 19721231 999999 23170 HANKSVILLE US UT KHVE 38.371 -110.715 1354.5 19481101 19550101 999999 23172 INDIO COACHELLA US CA 33.683 -116.167 -20.1 19481101 19500508 999999 23173 LAS VEGAS WB AP US NV 36.233000000000004 -115.03299999999999 573.9 19480101 19481219 999999 23174 LOS ANGELES MUNICIPAL ARPT US CA KLAX 33.938 -118.389 99.4 19470101 19721231 999999 23176 MILFORD MUNICIPAL AP US UT KMLF 38.417 -113.01700000000001 1534.1 19480723 19961231 999999 23177 MODENA US UT 37.8 -113.917 1663.9 19480101 19480801 999999 23178 MOUNT LAGUNA CAA AP US CA 32.867 -116.417 1893.1 19490101 19500224 999999 23179 NEEDLES AIRPORT US CA KEED 34.768 -114.619 278.6 19481101 19650101 999999 23180 NEWHALL AP US CA 34.4 -118.55 370.0 19480901 19490801 999999 23181 OCEANSIDE CAA AP US CA OCN 33.233000000000004 -117.417 7.9 19481101 19520201 999999 23182 PALMDALE AIRPORT US CA KPMD 34.629 -118.084 787.0 19481101 19650101 999999 23183 PHOENIX SKY HARBOR INTL AP US AZ KPHX 33.428000000000004 -112.00399999999999 337.4 19480101 19721231 999999 23184 PRESCOTT MUNICIPAL AP US AZ KPRC 34.652 -112.421 1539.8 19480101 19721231 999999 23185 RENO WBO US NV KRNO 39.484 -119.771 1341.1 19490101 19721231 999999 23187 SANDBERG US CA KSDB 34.744 -118.72399999999999 1378.6 19480101 19721231 999999 23188 SAN DIEGO LINDBERGH FIELD US CA KSAN 32.734 -117.18299999999999 8.5 19480101 19721231 999999 23190 SANTA BARBARA MUNICIPAL AP US CA KSBA 34.426 -119.84299999999999 6.1 19481101 19650101 999999 23191 SANTA CATALINA BUFFALO SPRING US CA KAVX 33.405 -118.416 488.3 19480101 19680323 999999 23192 SILVER LAKE CAA AP US CA 35.333 -116.083 281.0 19481101 19500731 999999 23193 TUCSON WBO US AZ 32.183 -110.917 780.0 19480101 19481101 999999 23194 WINSLOW MUNICIPAL AP US AZ KINW 35.028 -110.721 1488.3 19480101 19721231 999999 23195 YUMA INTL ARPT US AZ KYUM 32.667 -114.6 65.8 19480911 19721231 999999 23196 CHULA VISTA BROWN FIELD NAAS US CA KSDM 32.583 -116.98299999999999 159.4 19450401 19610501 999999 23199 EL CENTRO NAF US CA KNJK 32.817 -115.68299999999999 -13.1 19450201 19601101 999999 23202 TRAVIS FIELD AAB US CA KSUU 38.266999999999996 -121.93299999999999 18.9 19710101 19710101 999999 23225 BLUE CANYON AP US CA KBLU 39.277 -120.71 1610.3 19480101 19721231 999999 23226 DONNER SUMMIT US CA 39.317 -120.333 2194.0 19481101 19520131 999999 23230 OAKLAND METROPOLITAN US CA KOAK 37.721 -122.221 26.8 19480101 19721231 999999 23232 SACRAMENTO EXECUTIVE ARPT US CA KSAC 38.507 -121.495 7.6 19470701 19721231 999999 23233 SALINAS MUNICIPAL AP US CA KSNS 36.664 -121.60799999999999 23.5 19481101 19650101 999999 23234 SAN FRANCISCO INTL AP US CA KSFO 37.62 -122.365 5.5 19480101 19721231 999999 23236 SANTA MARIA HANCOCK FIELD US CA 34.933 -120.417 71.0 19480101 19541021 999999 23237 STOCKTON METROPOLITAN ARPT US CA KSCK 37.889 -121.226 8.2 19481101 19721231 999999 23238 WILLIAMS CAA AIRPORT US CA 39.1 -122.15 39.0 19481101 19521230 999999 23239 NAVAL AIR STATION US CA KNGZ 37.783 -122.31700000000001 4.3 19450301 20041231 999999 23240 NAVAL AUXILIARY LANDING FIELD US CA KNRC 37.4 -121.133 50.3 20020902 20041231 999999 23242 LIVERMORE NAS US CA 37.683 -121.7 196.9 19450201 19460811 999999 23244 MOUNTAIN VIEW MOFFETT FLD NAS US CA KNUQ 37.406 -122.04799999999999 10.4 19450303 19721231 999999 23245 MONTEREY NAF US CA KMRY 36.6 -121.867 50.0 19450301 19720301 999999 23246 SANTA ROSA NAAS US CA 38.417 -122.75 42.1 19450301 19470416 999999 23250 FARALLON ISLAND NAS US CA K50Q 37.7 -123.0 9.1 19450701 19450801 999999 23254 CONCORD CONCORD-BUCHANAN FIEL US CA KCCR 37.992 -122.055 18.3 19690101 19700101 999999 23259 MONTEREY PENINSULA AIRPORT US CA KMRY 36.588 -121.845 50.3 19980302 20051231 999999 23271 DOWNTOWN US CA 38.555 -121.41799999999999 11.6 19960702 20200624 999999 23272 DOWNTOWN US CA 37.771 -122.427 45.7 19450101 20200623 999999 23273 SANTA MARIA PUBLIC ARPT US CA KSMX 34.899 -120.449 72.5 19541021 19721231 999999 23275 UKIAH MUNICIPAL AP US CA KUKI 39.126 -123.20100000000001 190.8 19490912 19650101 999999 23293 SAN JOSE MUNICIPAL AP US CA KSJC 37.359 -121.92399999999999 15.2 19510101 19721231 999999 23801 TROY 2 W US AL 31.79 -86.0 143.9 20080115 20200625 999999 23802 THOMASVILLE 2 S US AL 31.881 -87.73700000000001 106.7 20080118 20200625 999999 23803 HOLLY SPRINGS 4 N US MS 34.821999999999996 -89.435 147.5 20080201 20200625 999999 23904 BATESVILLE 8 WNW US AR 35.82 -91.781 138.7 20061219 20200625 999999 23906 PORT ARANSAS 32 NNE US TX 28.305 -96.823 4.6 20071116 20200625 999999 23907 AUSTIN 33 NW US TX 30.622 -98.085 414.8 20080201 20200625 999999 23908 JOPLIN 24 N US MO 37.428000000000004 -94.583 290.2 20070525 20200625 999999 23909 SALEM 10 W US MO 37.634 -91.723 365.2 20070517 20200625 999999 24011 BISMARCK MUNICIPAL ARPT US ND KBIS 46.783 -100.757 506.0 19480101 19721231 999999 24012 DICKINSON MUNICIPAL AP US ND KDIK 46.799 -102.79700000000001 787.3 19481201 19721231 999999 24013 MINOT FAA AP US ND KMOT 48.255 -101.273 522.4 19481201 19721231 999999 24014 WILLISTON US ND 48.15 -103.617 577.9 19500313 19620101 999999 24015 AKRON WASHINGTON CO AP US CO KAKO 40.167 -103.21700000000001 1408.5 19480101 19550101 999999 24016 CASPER US WY 42.917 -106.333 1613.0 19480101 19500308 999999 24017 CHADRON MUNICIPAL AP US NE KCDR 42.836999999999996 -103.098 1004.6 19480101 19550101 999999 24018 CHEYENNE MUNICIPAL ARPT US WY KCYS 41.15 -104.81700000000001 1871.5 19710101 19721231 999999 24019 DOUGLAS US WY 4DG 42.75 -105.383 1466.1 19480601 19550101 999999 24020 HAYES CENTER US NE 40.516999999999996 -101.01700000000001 926.9 19480101 19501101 999999 24021 LANDER HUNT FIELD US WY KLND 42.815 -108.726 1694.1 19480101 19721231 999999 24022 LARAMIE GENERAL BREES FIELD US WY KLAR 41.317 -105.68299999999999 2216.5 19480101 19550101 999999 24023 NORTH PLATTE LEE BIRD FIELD US NE KLBF 41.121 -100.669 849.5 19480101 19721231 999999 24024 PHILIP 1 S US SD KPHP 44.051 -101.601 674.2 19480101 19550101 999999 24025 PIERRE REGIONAL AP US SD KPIR 44.381 -100.286 526.1 19480101 19721231 999999 24026 RAPID CITY US SD 44.15 -103.1 981.2 19480101 19750709 999999 24027 ROCK SPRINGS ARPT US WY KRKS 41.593999999999994 -109.053 2055.9 19480101 19721231 999999 24028 SCOTTSBLUFF W B HEILIG FIEL US NE KBFF 41.871 -103.59299999999999 1206.4 19480101 19721231 999999 24029 SHERIDAN COUNTY ARPT US WY KSHR 44.769 -106.969 1209.4 19480101 19721231 999999 24030 SIDNEY MUNICIPAL AP US NE KSNY 41.099 -102.986 1312.5 19480601 19550101 999999 24031 SINCLAIR CAA AP US WY 41.8 -107.05 2000.1 19480101 19510226 999999 24033 BILLINGS MUNICIPAL ARPT US MT KBIL 45.806999999999995 -108.542 1088.1 19480101 19721231 999999 24034 GLASGOW # 2 US MT 48.183 -106.633 637.0 19480101 19551025 999999 24035 HAVRE US MT 48.567 -109.667 759.9 19480101 19610131 999999 24036 LEWISTOWN MUNICIPAL ARPT US MT KLWT 47.049 -109.458 1263.7 19480101 19721231 999999 24037 MILES CITY MUNICIPAL ARPT US MT KMLS 46.427 -105.883 802.8 19480101 19721231 999999 24040 CUSTER US MT 46.133 -107.53299999999999 836.1 19480101 19500515 999999 24057 RAWLINS MUNICIPAL AP US WY KRWL 41.8 -107.2 2055.3 19550101 19650101 999999 24088 MOORCROFT 3 S US WY 44.217 -104.93299999999999 1318.3 19500101 19520715 999999 24089 CASPER NATRONA CO INTL AP US WY KCPR 42.898 -106.47399999999999 1612.4 19650101 19721231 999999 24091 IMPERIAL FAA AP US NE KIML 40.51 -101.62 997.6 19501201 19541231 999999 24101 OGDEN HILL AAF US UT KHIF 41.117 -111.96700000000001 1459.7 19710101 19710101 999999 24118 FORT BRIDGER AP US WY 41.4 -110.417 2140.9 19480601 19550101 999999 24119 BATTLE MOUNTAIN LANDER COUNTY US NV KBAM 40.611999999999995 -116.89200000000001 1381.4 19481101 19550101 999999 24120 COALVILLE SAWRS US UT CVL 40.917 -111.4 1763.0 19480101 19480611 999999 24121 ELKO MUNICIPAL ARPT US NV KEKO 40.829 -115.789 1546.6 19480101 19761231 999999 24122 FAIRFIELD CAA AP US UT 40.35 -112.05 1513.9 19481101 19500731 999999 24125 LUCIN US UT 41.35 -113.9 1362.2 19481101 19500306 999999 24126 OGDEN AIRPORT US UT KOGD 41.196000000000005 -112.01100000000001 1353.0 19480101 19550101 999999 24128 WINNEMUCCA MUNICIPAL ARPT US NV KWMC 40.902 -117.80799999999999 1314.9 19490915 19721231 999999 24129 WINNEMUCCA WB CITY US NV 40.967 -117.71700000000001 1309.1 19480101 19490207 999999 24130 BAKER MUNICIPAL AP US OR KBKE 44.843 -117.809 1028.1 19480101 19641231 999999 24131 BOISE AIR TERMINAL US ID KBOI 43.567 -116.241 874.2 19480101 19721231 999999 24132 BOZEMAN GALLATIN FIELD US MT KBZN 45.788000000000004 -111.161 1356.1 19480101 19550101 999999 24133 BURLEY MUNICIPAL ARPT US ID KBYI 42.542 -113.766 1267.1 19480101 19650101 999999 24134 BURNS FEDERAL BLDG US OR 4BW 43.583 -119.05 1262.2 19480101 19800215 999999 24135 BUTTE SILVER BOW CO ARPT US MT KBTM 45.965 -112.501 1686.5 19480101 19610101 999999 24137 CUT BANK MUNI AP US MT KCTB 48.603 -112.375 1169.8 19480101 19721231 999999 24138 DILLON US MT KDLN 45.258 -112.554 1591.7 19480101 19970630 999999 24139 DRUMMOND AVIATION US MT 46.638000000000005 -113.176 1219.2 19480101 19550101 999999 24140 DUBOIS FAA AIRPORT US ID DBS 44.167 -112.21700000000001 1563.9 19480101 19550101 999999 24141 EPHRATA AP FCWOS US WA KEPH 47.308 -119.515 383.7 19480101 19550101 999999 24142 US ID 42.917 -114.71700000000001 1088.1 19480101 19550101 999999 24143 GREAT FALLS INTL ARPT US MT KGTF 47.473 -111.382 1114.7 19480101 19721231 999999 24144 HELENA ARPT US MT KHLN 46.606 -111.964 1179.0 19480101 19721231 999999 24145 IDAHO FALLS FANNING FIELD US ID KIDA 43.516000000000005 -112.06700000000001 1446.0 19480101 19650101 999999 24146 KALISPELL GLACIER PK INT'L AR US MT KGPI 48.303999999999995 -114.264 906.2 19480101 19721231 999999 24147 LA CROSSE US WA 46.817 -117.883 452.0 19480101 19480919 999999 24148 LA GRANDE MUNI AP US OR KLGD 45.283 -118.0 828.1 19490101 19531231 999999 24149 LEWISTON NEZ PERCE COUNTY ARP US ID KLWS 46.375 -117.016 437.7 19480101 19721231 999999 24150 LIVINGSTON MISSION FIELD US MT KLVM 45.698 -110.441 1407.6 19480101 19550101 999999 24151 MALAD CITY AIRPORT US ID KMLD 42.148999999999994 -112.287 1372.5 19480101 19550101 999999 24152 MEACHUM EMERGENCY AP US OR KMEH 45.511 -118.425 1135.7 19480101 19721231 999999 24153 MISSOULA JOHNSON-BELL FLD US MT KMSO 46.92100000000001 -114.09299999999999 972.0 19480101 19721231 999999 24154 MULLAN PASS VOR/DME US ID KMLP 47.457 -115.645 1851.4 19480101 19550101 999999 24155 PENDLETON MUNICIPAL ARPT US OR KPDT 45.698 -118.855 461.5 19380101 19721231 999999 24156 POCATELLO MUNICIPAL ARPT US ID KPIH 42.92 -112.571 1364.9 19480101 19721231 999999 24157 SPOKANE US WA KGEG 47.622 -117.52799999999999 720.9 19680101 19711231 999999 24158 STREVELL US ID 4SV 42.016999999999996 -113.25 1609.3 19480101 19501216 999999 24159 SUPERIOR US MT 47.2 -114.883 826.0 19480101 19531114 999999 24160 WALLA WALLA MUNICIPAL AP US WA KALW 46.095 -118.287 367.3 19660101 19660101 999999 24161 WHITEHALL US MT 4HA 45.867 -111.96700000000001 1303.9 19480101 19550101 999999 24162 ONTARIO AIRPORT US OR KONO 44.021 -117.01299999999999 668.4 19480101 19550101 999999 24163 PASCO NAS US WA KPSC 46.266999999999996 -119.117 122.5 19450401 19460601 999999 24172 LOVELOCK DERBY FIELD US NV KLOL 40.068000000000005 -118.569 1189.9 19481101 19761231 999999 24193 WENDOVER USAF AUXILIARY FIELD US UT KENV 40.721 -114.036 1290.8 19500308 19721231 999999 24207 TACOMA MCCHORD AAF US WA KTCM 47.15 -122.48299999999999 98.5 19710101 19721231 999999 24212 BURNEY US CA KBNY 40.883 -121.667 962.6 19480101 19480927 999999 24215 MOUNT SHASTA US CA KMHS 41.333 -122.333 1077.5 19480401 19761231 999999 24216 RED BLUFF MUNICIPAL ARPT US CA KRBL 40.152 -122.25399999999999 107.6 19480101 19721231 999999 24219 THE DALLES MUNICIPAL ARPT US WA KDLS 45.619 -121.166 64.0 19480101 19650101 999999 24220 ELLENSBURG BOWERS FI US WA KELN 47.034 -120.53 538.0 19480601 19550101 999999 24221 EUGENE MAHLON SWEET ARPT US OR KEUG 44.128 -123.221 113.7 19480101 19721231 999999 24223 KELSO WB AP US WA KKLS 46.117 -122.89399999999999 6.1 19480101 19530831 999999 24224 KLAMATH FALLS KINGSLEY FIELD US OR 42.167 -121.73299999999999 1244.8 19480101 19590901 999999 24225 MEDFORD JACKSON COUNTY ARPT US OR KMFR 42.381 -122.87200000000001 405.1 19480101 19721231 999999 24226 NORTH HEAD US WA 46.3 -124.083 64.0 19480101 19490101 999999 24227 OLYMPIA MUNICIPAL ARPT US WA KOLM 46.973 -122.90299999999999 61.0 19480101 19721231 999999 24228 PORT ANGELES WB AP US WA NOW 48.133 -123.4 6.1 19490101 19530201 999999 24229 PORTLAND US OR KPDX 45.596000000000004 -122.609 32.6 19650101 19721231 999999 24230 REDMOND ROBERTS FIELD US OR KRDM 44.256 -121.139 940.0 19480101 19721231 999999 24231 ROSEBURG MUNICIPAL AP US OR KRBG 43.239 -123.355 155.1 19480101 19650101 999999 24232 SALEM MCNARY FIELD US OR KSLE 44.905 -123.001 61.3 19480101 19721231 999999 24233 SEATTLE SEATTLE-TACOMA ARPT US WA KSEA 47.443999999999996 -122.314 132.3 19700101 19721231 999999 24234 SEATTLE BOEING FIELD US WA KBFI 47.53 -122.301 9.1 19650101 19721231 999999 24235 SEXTON SUMMIT US OR KSXT 42.6 -123.36399999999999 1170.7 19480101 19721231 999999 24236 SISKIYOU SUMMIT US OR 42.083 -122.56700000000001 1367.0 19480101 19480919 999999 24237 STAMPEDE PASS US WA KSMP 47.277 -121.337 1209.1 19480101 19721231 999999 24238 STEVENSON US WA 45.717 -121.833 96.9 19490101 19520416 999999 24240 TATOOSH ISLAND US WA K93S 48.383 -124.73299999999999 25.9 19480101 19660801 999999 24241 TOLEDO WINLOCK MUNI AP US WA KTDO 46.483000000000004 -122.81700000000001 114.3 19480101 20051231 999999 24243 YAKIMA AIR TERMINAL US WA KYKM 46.568000000000005 -120.54299999999999 324.9 19480101 19721231 999999 24244 SEATTLE NAS US WA NEJ 47.683 -122.26700000000001 14.9 19450301 19700601 999999 24246 ASTORIA NAS US OR 46.167 -123.883 4.0 19450401 19460520 999999 24248 CORVALLIS NAAS US OR 44.5 -123.28299999999999 75.0 19450622 19450915 999999 24249 KLAMATH FALLS NAS US OR 42.133 -121.75 1247.9 19450401 19451001 999999 24250 LAKEVIEW NSA US OR 42.15 -120.4 1444.1 19450401 19451001 999999 24251 NORTH BEND NAAF US OR 43.417 -124.23299999999999 15.8 19450501 19450915 999999 24252 QUILLAYUTE NAAS US WA 47.95 -124.53299999999999 61.9 19450301 19450901 999999 24253 SHELTON NAAS US WA 47.233000000000004 -123.133 91.1 19450401 19450916 999999 24254 TILLAMOOK NAS US OR 45.417 -123.8 11.9 19460101 19480430 999999 24255 WHIDBEY ISLAND NAS US WA KNUW 48.35 -122.667 14.3 19450401 19721231 999999 24259 MONTAGUE SISKIYOU COUNTY AP US CA KSIY 41.781000000000006 -122.47200000000001 805.0 19560101 19660101 999999 24278 HOQUIAM US WA 46.967 -123.883 4.9 19530501 19530601 999999 24281 WSMO (EMSU) US WA 47.65 -122.3 5.8 19960702 20031231 999999 24283 ARCATA AIRPORT US CA KACV 40.978 -124.109 64.0 19491201 19721231 999999 24284 NORTH BEND MUNI AIRPORT US OR KOTH 43.413000000000004 -124.244 5.2 19490501 19761231 999999 24285 NEWPORT MUNICIPAL AP US OR KONP 44.583 -124.05 48.8 19490801 19501115 999999 24286 CRESCENT CITY FAA AI US CA KCEC 41.78 -124.23700000000001 16.8 19491015 19550101 999999 25237 HOLBERG CA CYHJ 50.65 -128.0 569.1 19560611 19691230 999999 25309 JUNEAU MUNICIPAL ARPT US AK PAJN 58.357 -134.564 7.3 19480701 19721231 999999 25310 ANGOON US AK PAGN 57.498999999999995 -134.586 0.0 19480724 19480901 999999 25315 CAPE DECISION US AK CDE 56.0 -134.13299999999998 14.9 19480701 19480901 999999 25316 CAPE SPENCER US AK CSP 58.2 -136.63299999999998 27.1 19480701 19480901 999999 25317 CRAIG US AK CGA 55.483000000000004 -133.15 4.0 19480701 19480901 999999 25322 GUSTAVUS US AK PAGS 58.411 -135.709 9.1 19490101 19680701 999999 25323 HAINES US AK PAHN 59.243 -135.509 4.9 19480701 19530831 999999 25325 KETCHIKAN TONGASS US AK PAKT 55.357 -131.71200000000002 29.3 19480701 19480831 999999 25329 PETERSBURG US AK PAPG 56.806000000000004 -132.937 32.6 19480701 19560430 999999 25333 SITKA JAPONSKI AP US AK PASI 57.048 -135.365 20.4 19480701 19710201 999999 25339 YAKUTAT STATE AP US AK PAYA 59.512 -139.671 9.4 19490101 19721231 999999 25342 CAPE SAINT JAMES & CA WFV 51.933 -131.017 19530101 19721231 999999 25343 LANGARA CA CYLA 54.25 -133.05 41.1 19540101 19721231 999999 25379 SITKA 1 NE US AK 57.056999999999995 -135.327 23.8 20050815 20200625 999999 25380 GUSTAVUS 2 NE US AK 58.428999999999995 -135.69 6.1 20120719 20200625 999999 25381 METLAKATLA 6 S US AK 55.04600000000001 -131.588 32.0 20120726 20200625 999999 25382 YAKUTAT 3 SSE US AK 59.50899999999999 -139.685 7.9 20160827 20200625 999999 25403 MIDDLETON ISLAND AUT US AK PAMD 59.45 -146.317 36.9 19590101 19630701 999999 25506 ILIAMNA ARPT US AK PAIL 59.748999999999995 -154.909 48.8 19480701 19710131 999999 25507 HOMER MUNICIPAL ARPT US AK PAHO 59.641999999999996 -151.491 22.3 19480701 19721231 999999 25515 DRIFTWOOD BAY US AK DFB 53.967 -166.85 395.9 19590630 19690601 999999 25522 KING SALMON 42 SE US AK 58.208 -155.923 201.5 20120815 20200625 999999 25624 COLD BAY ARPT US AK PACD 55.221000000000004 -162.733 31.4 19550701 19721231 999999 25630 SAND POINT 1 ENE US AK 55.347 -160.466 73.2 20090820 20200625 999999 25701 ADAK DAVIS AFB US AK 51.883 -176.65 4.9 19490101 19500701 999999 25709 ASI TANAGA ISLAND NS US AK 51.75 -178.033 45.1 19470201 19490316 999999 25711 ST. PAUL 4 NE US AK 57.158 -170.21200000000002 6.1 20050807 20200625 999999 26114 CAPE YOUNG PIN 2 CA CYUI 68.933 -116.917 17.1 19530101 19671101 999999 26394 TUKTOYAKTUK CA CYUB 69.45 -133.017 5.0 19640101 19721231 999999 26401 ANCHORAGE ELMENDORF AFB US AK PAED 61.253 -149.79399999999998 64.9 20040702 20051231 999999 26403 LADD AAB US AK FBK 64.85 -147.583 148.1 19490101 19601101 999999 26413 FORT YUKON US AK PFYU 66.567 -145.267 138.4 19480701 19630930 999999 26414 SUMMIT AIRPORT US AK PAST 63.331 -149.127 734.3 19480701 20041231 999999 26416 BOUNDARY US AK BYA 64.067 -141.11700000000002 793.1 19480701 19480901 999999 26417 CAPE HINCHINBROOK US AK CHB 60.233000000000004 -146.65 56.1 19640701 19731231 999999 26418 CENTRAL NO 2 US AK PACE 65.567 -144.765 284.1 19480701 19480901 999999 26422 EAGLE AIRPORT US AK PAEG 64.777 -141.148 273.7 19980202 20051231 999999 26435 NENANA MUNICIPAL AP US AK PANN 64.55 -149.072 110.3 19490101 19710201 999999 26436 NORTH DUTCH ISLAND C US AK NDI 60.766999999999996 -147.8 11.9 19480701 19510914 999999 26437 PORTAGE US AK 60.85 -148.983 11.0 19480701 19480901 999999 26439 SHEEP MOUNTAIN US AK PASP 61.812 -147.507 835.2 19490101 20041231 999999 26442 VALDEZ WSO US AK PAVW 61.13 -146.352 11.3 19670702 19721231 999999 26445 YAKATAGA AP US AK PAWS 61.571999999999996 -149.54 107.9 19480701 19680523 999999 26451 ANCHORAGE INTL AP US AK PANC 61.169 -150.028 40.2 19531101 19721231 999999 26452 ELMENDORF 2 AFB US AK 61.25 -149.8 63.1 19531022 19560413 999999 26455 HUMPHREY POINT BAR A US AK 69.917 -142.333 7.0 19580401 19630901 999999 26457 CAMDEN BAY US AK 69.983 -144.833 3.0 19580324 19630801 999999 26458 GERSTLE RIVER US AK 63.85 -144.983 4.9 19691130 19700917 999999 26494 FAIRBANKS 11 NE US AK 64.97399999999999 -147.51 347.5 20020809 20200625 999999 26510 MCGRATH ARPT US AK PAMC 62.957 -155.61 103.0 19480703 19721231 999999 26512 MINCHUMINA US AK PAMH 63.886 -152.30200000000002 214.0 19480701 19690501 999999 26513 SHUNGNAK CAA US AK SHG 66.9 -157.033 42.1 19480709 19500915 999999 26514 SKWENTNA US AK PASW 61.977 -151.217 45.1 19480731 19590217 999999 26516 ANIAK AIRPORT US AK PANI 61.583 -159.533 25.9 19480701 19710131 999999 26517 BETTLES CAA US AK 66.9 -151.717 260.9 19480701 19510501 999999 26519 FAREWELL FAA AP US AK PAFK 62.516999999999996 -153.88299999999998 458.1 19480701 19710201 999999 26523 KENAI MUNICIPAL AP US AK PAEN 60.58 -151.239 28.0 19480701 19710201 999999 26526 PUNTILLA LAKE US AK KPTI 62.091 -152.735 566.3 20040702 20051231 999999 26528 TALKEETNA STATE ARPT US AK PATK 62.32 -150.095 108.5 19480701 19721231 999999 26529 TANANA RALPH M CALHOUN MEM AP US AK PATA 65.175 -152.107 67.1 19480701 19710311 999999 26533 BETTLES FIELD US AK PABT 66.54 -151.31 196.0 19520101 19721231 999999 26539 FIVE MILE CAMP US AK 66.083 -150.0 134.1 19741101 19751101 999999 26540 OLD MAN US AK 67.45 -150.583 11.0 19741101 19751101 999999 26547 HAYES RIVER US AK 61.983000000000004 -152.083 305.1 20050601 20051231 999999 26562 PORT ALSWORTH 1 SW US AK 60.195 -154.32 97.8 20090925 20200625 999999 26563 KENAI 29 ENE US AK 60.724 -150.44799999999998 86.0 20100830 20200625 999999 26564 IVOTUK 1 NNE US AK 68.485 -155.751 581.9 20140618 20200625 999999 26565 DEADHORSE 3 S US AK 70.16199999999999 -148.464 9.1 20140627 20200625 999999 26616 KOTZEBUE RALPH WEIN MEMORIAL US AK PAOT 66.867 -162.63299999999998 4.9 19450101 19721231 999999 26617 NOME MUNICIPAL ARPT US AK PAOM 64.51100000000001 -165.44 6.7 19470101 19721231 999999 26618 WALES US AK KWAA 65.617 -168.05 2.7 19560802 19580517 999999 26619 CANDLE US AK CDL 65.933 -161.917 7.0 19480701 19480901 999999 26627 UNALAKLEET FIELD US AK PAUN 63.883 -160.8 6.1 19480701 19721231 999999 26637 CAPE BEAUFORT LIZ A US AK 69.033 -163.783 14.9 19571014 19630824 999999 26638 POINT LAY LIZ 2 US AK PIZ 69.733 -163.017 6.1 19570801 19721231 999999 26655 RED DOG MINE 3 SSW US AK 68.028 -162.921 287.1 20100825 20200625 999999 26656 BETHEL 87 WNW US AK 61.347 -164.077 46.6 20180817 20200625 999999 26703 GAMBELL US AK PAGM 63.766999999999996 -171.733 7.9 19480701 19530701 999999 27102 HOLMAN ISLAND CA CYHI 70.5 -117.633 9.1 19580101 19840101 999999 27201 SACHS HARBOUR CA CYSY 71.95 -124.73299999999999 84.1 19551101 19840101 999999 27202 CAPE PARRY AIRPORT CA CZUE 70.167 -124.68299999999999 17.0 19560101 19721231 999999 27301 MCINTYRE POW C US AK 70.4 -148.7 4.9 19580301 19630701 999999 27403 OLIKTOK POW 2 US AK OLI 70.5 -149.88299999999998 4.9 19570809 19721231 999999 27404 FLAXMAN ISLAND POW 3 US AK 70.167 -146.833 7.0 19570815 19710701 999999 27405 PRUDHOE BAY US AK PAUD 70.25 -148.333 14.0 19680701 19721231 999999 27503 WAINWRIGHT AIRPORT US AK PAWI 70.639 -159.995 9.1 19480701 20051231 999999 27506 BARROW POINT BARROW US AK PBA 71.333 -156.65 6.1 19590826 19710101 999999 27507 PEARD BAY LIZ C US AK 70.8 -158.25 28.0 19570801 19630701 999999 27508 WAINWRIGHT LIZ 3 US AK PAWI 70.617 -159.85 27.1 19570802 19721231 999999 27510 CAPE SIMPSON POW A US AK 71.05 -154.75 3.0 19571101 19630903 999999 27511 KOGRU RIVER POW B US AK 71.583 -152.167 9.1 19580101 19630904 999999 27512 LONELY US AK LNI 70.917 -153.25 9.1 19570726 19721231 999999 27516 UTQIAÄ VIK FORMERLY BARROW 4 ENE US AK 71.321 -156.611 4.6 20020808 20200625 999999 27601 ICY CAPE LIZ B US AK 70.367 -161.75 14.9 19571101 19630828 999999 33126 SIGONELLA IT KQNS 37.4 14.917 31.1 19600311 19781231 999999 34048 CHATEAUROUX FR LFLX 46.85 1.7169999999999999 164.0 19510731 19661230 999999 34051 TOUL ROSIERE FR LFSL 48.766999999999996 5.983 288.0 19520319 19670131 999999 34052 CHAUMONT FR LFQU 48.1 5.05 313.0 19520505 19661230 999999 34053 LAON FR LLXO 49.633 3.55 82.9 19520531 19661230 999999 34061 EVREUX FR LFOE 49.016999999999996 1.2329999999999999 141.1 19541022 19670608 999999 34062 PHALSBOURG FR 48.817 7.2 313.0 19541024 19661118 999999 34065 DREUX FR LFOX 48.65 1.1 182.9 19550902 19661007 999999 34066 ORLEANS FR LFOS 47.933 1.883 128.0 19570301 19670317 999999 34067 BRIENNE FR LFOK 48.433 4.4830000000000005 120.1 19630102 19650521 999999 34071 VERDUN FR LFZU 49.117 5.4670000000000005 371.9 19591102 19670214 999999 34072 SUIPPES RANGE (MET) FR LFFS 49.15 4.533 19600201 19670228 999999 34194 VERONA IT LIPN 45.467 10.933 93.0 19600120 19671229 999999 34196 GABLINGEN GM EDOX 48.45 10.867 466.0 19630910 19671229 999999 35034 LAKENHEATH RAF UK EGUL 52.4 0.5670000000000001 10.1 19490501 19671231 999999 35046 MILDENHALL UK EGUN 52.367 0.483 10.1 19500714 19671231 999999 35047 MANSTON UK EGUM 51.35 1.367 43.9 19500720 19580531 999999 35048 BENTWATERS UK EGVJ 52.133 1.433 25.9 19510601 19671231 999999 35049 STANTON UK 52.317 0.917 61.0 19510601 19590109 999999 40308 YAP ISLAND WSO AP FM FM PTYA 9.482999999999999 138.083 17.1 19520101 19721231 999999 40309 KOROR WSO PS PC PTKR 7.332999999999999 134.483 33.2 19520101 19721231 999999 40504 WEATHER SERVICE BUILDING FM FM 6.9670000000000005 158.217 36.6 19530101 20200430 999999 40505 CHUUK WSO AP FM FM PTKK 7.45 151.833 2.4 19520101 19721231 999999 40604 KWAJALEIN MISSLE RAN RM PC PKWA 8.732999999999999 167.733 7.9 19530101 19721231 999999 40710 WEATHER SERVICE OFFICE BUILDING RM MH 7.065 171.27200000000002 3.1 19550131 20200430 999999 41003 DA NANG VM VVSD 16.05 108.2 7.0 19651130 19671231 999999 41013 KY HA VM IKYU 15.467 108.7 18.0 19650930 19671031 999999 41024 MARBLE MOUNTAIN VM 16.033 108.25 9.1 19660201 19671231 999999 41056 QUANG TRI VM VVQT 16.767 107.167 14.0 19671215 19691031 999999 41068 VANDERGRIF VM ILZV 16.683 106.833 36.9 19680714 19690930 999999 41224 SANGLEY POINT RP RPMS 14.5 120.917 2.1 19470101 19631231 999999 41225 SAN JOSE RP 12.6 121.0 4.0 19450514 19450917 999999 41226 LEYTE GULF NF RP RLTE 11.067 125.03299999999999 4.0 19450731 19450829 999999 41227 MANILA NF RP 14.6 121.0 4.0 19451231 19460131 999999 41228 MANILA NF RP 14.6 121.0 32.9 19460630 19470123 999999 41229 MANILA RP 14.55 120.98299999999999 4.0 19470131 19470630 999999 41230 OLONGAPO RP ROLP 14.817 120.28299999999999 4.0 19500110 19550729 999999 41231 CUBI POINT NF RP RPLB 14.8 120.26700000000001 14.0 19550731 19721231 999999 41406 GUAM WFO GQ PGUM 13.482999999999999 144.8 77.4 19450831 19950331 999999 41407 GUAM MARSHALL ISLAND GQ 13.467 144.25 54.9 19460531 19461231 999999 41408 SAIPAN MARSHALL ISLA CQ PGSN 15.117 145.7 32.0 19530509 19620618 999999 41411 GUAM OROTE GQ 13.433 144.63299999999998 24.1 19450531 19480529 999999 41412 SAIPAN MARSHALL ISLA RM 15.217 145.75 11.0 19501231 19510531 999999 41413 TINIAN CQ PGWT 15.0 145.63299999999998 82.0 19450630 19460228 999999 41415 GUAM WFO GQ GU PGUM 13.482999999999999 144.8 76.2 19671231 19721231 999999 41606 WAKE ISLAND WQ PC PWAK 19.283 166.65 3.7 19491031 19721231 999999 42204 KADENA AB JA RODN 26.35 127.76700000000001 43.0 19481231 19680331 999999 42210 YONABARU RYUKYU ISLA JA 26.2 127.75 9.1 19450831 19470930 999999 42215 FUTENMA US ROTM 26.267 127.75 84.1 19600630 19721231 999999 42216 HAMBY AAF JA ROHF 26.3 127.76700000000001 4.9 19630825 19680331 999999 42402 CHICHI JIMA BONIN IS JA RJAO 27.083000000000002 142.2 7.9 19531004 19680625 999999 42501 MARCUS ISLAND NF JA 24.283 153.967 7.0 19451231 19470731 999999 42502 MINAMI TORI SHIMA MA JA PZMI 24.3 153.967 6.1 19630630 19680630 999999 43204 HUNG CHIA CH 31.233 121.45 27.1 19451208 19490425 999999 43205 TSINGTAO CH 36.183 120.383 14.0 19451231 19480930 999999 43213 PUSAN AST - ROK K-9 KS RKPP 35.167 129.13299999999998 4.9 19500905 19621231 999999 43214 TAEJON ROK K-5 KS RKTD 36.45 127.43299999999999 39.9 19540630 19671231 999999 43220 KWANDAE RI TEAM 840 KS RKNK 38.016999999999996 128.13299999999998 181.1 19510909 19671231 999999 43238 YONGIL MAN MAG 12 KS 35.983000000000004 129.433 20.1 19511231 19560731 999999 43240 SACHON ROK K-4 KS RKPS 35.083 128.067 7.9 19540630 19700930 999999 43263 CHEJU DO K 39 KS 33.2 126.26700000000001 13.1 19540729 19671231 999999 43270 CHANGGAI GAP ROK K 3 KS 36.083 129.567 21.0 19580515 19671231 999999 43273 OSAN KS RKSN 37.033 126.75 11.9 19630228 19671229 999999 43309 IRUMA JA RJTJ 35.833 139.417 93.9 19481231 19601231 999999 43313 FUSSA JA RJTY 35.75 139.35 139.0 19481231 19680331 999999 43316 BRADY JA RKBD 33.633 130.5 14.0 19500916 19550605 999999 43317 YUKUHASHI JA RJFZ 33.667 131.033 11.9 19500811 19570630 999999 43318 NIIGATA JA RJSN 37.95 139.11700000000002 4.0 19510228 19570630 999999 43320 OPPAMA JA 35.317 139.65 7.9 19510630 19600624 999999 43321 KISARAZU JA RJTK 35.383 139.917 6.1 19520725 19590331 999999 43322 IWAKUNI JA RIWA 34.15 132.233 3.0 19521031 19540915 999999 43323 YOKOSUKA JA RJTX 35.283 139.667 53.0 19530228 19761231 999999 43324 IWAKUNI JA RJOI 34.15 132.233 3.0 19521031 19721231 999999 43325 KASTNER AAF JA RJTW 35.516999999999996 139.4 107.0 19541230 19701231 999999 44101 PEKING CH RPEK 40.0 116.5 50.9 19460430 19460630 999999 44301 KHABAROVSK RS EUHH 48.483000000000004 135.483 53.0 19450914 19451218 999999 45708 SHEMYA ISLAND US AK 52.717 174.1 39.9 19490101 19551201 999999 45709 ATTU NS US AK ATU 52.8 173.167 28.0 19470101 19580625 999999 45714 SHEMYA ISLAND US AK 52.717 174.1 34.1 19580628 19590901 999999 45715 SHEMYA AFB US AK PASY 52.717 -174.1 29.6 19590901 20041231 999999 53002 ARTESIA 2 WNW US NM 32.855 -104.45700000000001 1067.1 20100624 20140601 999999 53003 GRANTS 2 S US NM 35.119 -107.83 1963.8 20100828 20140601 999999 53004 BLUFF 32 NW US UT 37.601 -109.98899999999999 1959.3 20100813 20140601 999999 53005 BUENA VISTA 2 SSE US CO 38.811 -106.12200000000001 2418.0 20100717 20140601 999999 53006 AMADO 23 W US AZ 31.691999999999997 -111.448 1005.8 20100926 20140601 999999 53007 COLORADO SPRINGS 23 NW US CO 39.088 -105.088 2399.4 20100630 20140601 999999 53008 CLOVIS 7 N US NM 34.512 -103.17399999999999 1315.5 20091213 20140601 999999 53009 RAMAH 9 SE US NM 35.046 -108.36399999999999 2183.6 20100902 20140601 999999 53010 MONTICELLO 24 NW US UT 38.14 -109.617 1531.6 20100814 20140601 999999 53011 TSAILE 1 SSW US AZ 36.292 -109.21799999999999 2155.2 20100817 20130624 999999 53012 BLANDING 26 SSW US UT 37.266999999999996 -109.60700000000001 1338.1 20100815 20140601 999999 53013 CEDAR CITY 18 SSE US UT 37.457 -113.225 1553.3 20100804 20140601 999999 53014 MEXICAN HAT 10 NW US UT 37.251 -109.988 1939.8 20100818 20140601 999999 53015 HAGERMAN 10 ESE US NM 33.088 -104.162 1082.7 20100904 20140601 999999 53016 VAUGHN 36 SSE US NM 34.137 -104.93 1534.4 20100828 20140601 999999 53017 AZTEC 43 E US NM 36.75 -107.219 2140.9 20100831 20140601 999999 53129 COLORADO CITY MUNI AIRPORT US AZ KAZC 36.96 -113.014 1485.6 20020802 20041231 999999 53131 TUCSON 11 W US AZ 32.24 -111.17 833.0 20020918 20200625 999999 53132 ELGIN 5 S US AZ 31.590999999999998 -110.509 1466.4 20020915 20200625 999999 53136 MERCURY 3 SSW US NV 36.624 -116.023 1001.0 20010524 20200625 999999 53138 BAKER 5 W US NV 39.012 -114.209 2016.9 20040509 20200625 999999 53139 STOVEPIPE WELLS 1 SW US CA 36.602 -117.145 25.6 20040504 20200625 999999 53149 TORREY 7 E US UT 38.303000000000004 -111.294 1891.0 20071002 20200625 999999 53150 YOSEMITE VILLAGE 12 W US CA 37.759 -119.821 2017.8 20070928 20200410 999999 53151 FALLBROOK 5 NE US CA 33.439 -117.19 347.5 20080430 20200625 999999 53152 SANTA BARBARA 11 W US CA 34.414 -119.88 5.5 20080814 20200625 999999 53154 YUMA 27 ENE US AZ 32.835 -114.18799999999999 189.0 20080319 20200625 999999 53155 WILLIAMS 35 NNW US AZ 35.755 -112.337 1825.8 20080626 20200625 999999 53156 PHOENIX 7 S US AZ 33.347 -112.083 427.9 20100301 20140601 999999 53159 CAMERON 25 SSE US AZ 35.504 -111.345 1465.2 20091215 20140601 999999 53160 CAMP VERDE 3 N US AZ 34.614000000000004 -111.84299999999999 1046.7 20100302 20140601 999999 53162 COOLIDGE 5 W US AZ 32.992 -111.53299999999999 434.3 20100227 20140601 999999 53163 SOCORRO 17 WSW US NM 33.98 -107.18700000000001 3196.1 20100625 20140601 999999 53164 PAGE 9 WSW US AZ 36.864000000000004 -111.601 991.8 20100803 20140601 999999 53165 DELTA 4 NE US UT 39.387 -112.51 1451.2 20100801 20140601 999999 53166 ST. GEORGE 15 NE US UT 37.216 -113.37899999999999 1041.5 20100805 20120927 999999 53167 MIDWAY 3 NE US UT 40.547 -111.414 1752.0 20100723 20140601 999999 53168 AJO 29 S US AZ 31.95 -112.801 506.3 20100927 20140601 999999 53169 KAYENTA 16 WSW US AZ 36.681999999999995 -110.542 2217.1 20100819 20140601 999999 53170 HEBER 3 SE US AZ 34.398 -110.566 2019.3 20091217 20140601 999999 53171 MILFORD 42 WNW US UT 38.594 -113.751 1601.7 20100802 20140601 999999 53172 LAKE HAVASU CITY 19 SE US AZ 34.253 -114.134 126.8 20100922 20140601 999999 53173 NAGEEZI 18 SSW US NM 36.035 -107.905 1965.7 20100901 20140601 999999 53176 GILA BEND 3 ENE US AZ 32.965 -112.67 237.7 20100924 20140601 999999 53843 ANDALUSIA-OPP MUNICIPAL AIRPORT US AL 31.309 -86.39399999999999 94.5 20040702 20051230 999999 53846 KINGS BAY/NAVAL STATION US GA 30.8 -81.5 15.2 19960702 20031231 999999 53848 NAVAL AUXILIARY LANDING FD US FL KNFJ 30.506999999999998 -86.96 33.8 19960702 20091231 999999 53854 ORANGEBURG MUNICIPAL AP US SC KOGB 33.461999999999996 -80.858 60.0 19970602 20051231 999999 53867 COLUMBIA OWENS DOWNTOWN AP US SC KCUB 33.971 -80.99600000000001 64.6 19981002 20051231 999999 53877 ASHEVILLE 8 SSW US NC 35.495 -82.61399999999999 655.6 20001120 20200625 999999 53878 ASHEVILLE 13 S US NC 35.419000000000004 -82.557 641.0 20001121 20200625 999999 53882 KNOXVILLE ISLAND AP US GA KBGE 30.983 -84.633 43.0 20020602 20051231 999999 53894 HERLONG AIRPORT US FL KHEG 30.278000000000002 -81.806 26.5 20020602 20050702 999999 53921 MOUNT IDA US AR KMWT 34.547 -93.57799999999999 214.0 19990302 20041231 999999 53926 STILLWATER 2 W US OK 36.118 -97.09100000000001 271.3 20020312 20200625 999999 53927 STILLWATER 5 WNW US OK 36.135 -97.10799999999999 270.7 20020312 20200625 999999 53960 LAFAYETTE 13 SE US LA 30.092 -91.87299999999999 10.7 20030111 20200625 999999 53961 MONROE 26 N US LA 32.883 -92.117 26.8 20030115 20200625 999999 53968 PALESTINE 6 WNW US TX 31.78 -95.723 116.7 20030525 20200625 999999 53974 MANHATTAN 6 SSW US KS 39.103 -96.61 346.6 20031001 20200625 999999 54701 PUERTO MONTT B CI -41.467 -72.817 11.0 19570103 19600429 999999 54781 W. H. MORSE STATE AIRPORT US VT KDDH 42.894 -73.249 240.8 19981202 20051231 999999 54794 DURHAM 2 N US NH 43.172 -70.928 36.3 20011216 20200625 999999 54795 DURHAM 2 SSW US NH 43.108999999999995 -70.94800000000001 19.2 20011216 20200625 999999 54796 KINGSTON 1 NW US RI 41.49100000000001 -71.541 35.1 20011216 20200625 999999 54797 KINGSTON 1 W US RI 41.478 -71.542 32.3 20011216 20200625 999999 54808 CHAMPAIGN 9 SW US IL 40.053000000000004 -88.37299999999999 213.4 20021220 20200625 999999 54810 CHATHAM 1 SE US MI 46.335 -86.92 266.7 20041110 20200625 999999 54811 SHABBONA 5 NNE US IL 41.843 -88.851 262.4 20030816 20200625 999999 54851 COSHOCTON 8 NNE US OH 40.367 -81.783 341.4 20061109 20160919 999999 54854 GAYLORD 9 SSW US MI 44.908 -84.72 445.3 20070919 20200625 999999 54856 WOOSTER 3 SSE US OH 40.764 -81.91 335.9 20161110 20200625 999999 54902 DES MOINES 17 E US IA 41.556000000000004 -93.286 280.7 20040915 20200625 999999 54903 NECEDAH 5 WNW US WI 44.06 -90.17399999999999 284.4 20041001 20200625 999999 54932 SANDSTONE 6 W US MN 46.114 -92.994 344.4 20070622 20200625 999999 54933 ABERDEEN 35 WNW US SD 45.711999999999996 -99.13 596.5 20070626 20200625 999999 54937 JAMESTOWN 38 WSW US ND 46.77 -99.478 585.2 20080729 20200625 999999 56401 GLENNALLEN 64 N US AK 63.03 -145.5 813.5 20130809 20200625 999999 57401 ELLSWORTH IGY AY -77.733 -41.117 43.0 19570301 19621212 999999 57701 EIGHTS AY -75.233 -77.167 420.9 19611125 19651114 999999 60703 CANTON ISLAND KR PCIS -2.767 -171.717 3.0 19491101 19590101 999999 61705 PAGO PAGO WSO AP AQ PC NSTU -14.331 -170.71400000000003 3.0 19660401 19721231 999999 63820 EVERETT-STEWART AIRPORT US TN KUCY 36.38 -88.985 103.9 20020902 20050817 999999 63826 BLACKVILLE 3 W US SC 33.355 -81.328 96.6 20020713 20200625 999999 63828 NEWTON 8 W US GA 31.313000000000002 -84.471 53.6 20020827 20200625 999999 63829 NEWTON 11 SW US GA 31.191999999999997 -84.447 47.6 20020827 20200625 999999 63831 NEWTON 5 ENE US MS 32.338 -89.07 114.0 20021103 20200625 999999 63838 VERSAILLES 3 NNW US KY 38.095 -84.74700000000001 271.6 20011120 20200625 999999 63839 FOLSOM FIELD AP US AL K3A1 34.269 -86.85799999999999 293.5 20040102 20051231 999999 63849 BOWLING GREEN 21 NNE US KY 37.25 -86.23299999999999 240.8 20040519 20200625 999999 63850 WATKINSVILLE 5 SSE US GA 33.784 -83.39 225.9 20040430 20200625 999999 63855 CROSSVILLE 7 NW US TN 36.014 -85.135 583.1 20041203 20200625 999999 63856 BRUNSWICK 23 S US GA 30.808000000000003 -81.46 7.6 20041215 20200625 999999 63857 GADSDEN 19 N US AL 34.285 -85.962 351.1 20050414 20200625 999999 63858 SELMA 13 WNW US AL 32.457 -87.242 58.8 20050526 20200625 999999 63862 VALLEY HEAD 1 SSW US AL 34.565 -85.617 310.9 20060504 20200625 999999 63866 GUNTERSVILLE 2 SW US AL 34.334 -86.316 189.0 20060504 20131216 999999 63867 CULLMAN 3 ENE US AL 34.195 -86.796 243.8 20060504 20200625 999999 63868 COURTLAND 2 WSW US AL 34.66 -87.346 175.3 20060504 20200625 999999 63869 FAIRHOPE 3 NE US AL 30.549 -87.876 29.0 20060713 20200625 999999 63871 TRI-COUNTY AIRPORT US FL 30.846 -85.601 25.9 20060901 20200625 999999 63890 WHITEHOUSE NAVAL OUTLYING FIELD US FL KNEN 30.35 -81.883 30.2 20080101 20091231 999999 63891 CLANTON 2 NE US AL 32.852 -86.61200000000001 178.0 20070314 20200625 999999 63892 GAINESVILLE 2 NE US AL 32.836999999999996 -88.137 32.6 20070316 20200625 999999 63893 GREENSBORO 2 WNW US AL 32.717 -87.62299999999999 85.3 20070315 20200625 999999 63894 MUSCLE SHOALS 2 N US AL 34.773 -87.64 161.5 20070425 20200625 999999 63895 RUSSELLVILLE 4 SSE US AL 34.454 -87.71 219.5 20060816 20200625 999999 63896 SCOTTSBORO 2 NE US AL 34.694 -86.0 193.9 20060816 20200625 999999 63897 SELMA 6 SSE US AL 32.335 -86.979 47.9 20070315 20200625 999999 63898 BEDFORD 5 WNW US IN 38.888000000000005 -86.571 231.7 20071003 20200625 999999 63899 BREWTON 3 NNE US AL 31.145 -87.052 51.8 20080117 20200625 999999 64756 MILLBROOK 3 W US NY 41.786 -73.742 125.9 20041101 20200625 999999 64757 CRN ON EGBERT 1 W CA ON 050E 44.233000000000004 -79.781 246.0 20040715 20200625 999999 64758 ITHACA 13 E US NY 42.44 -76.24600000000001 374.3 20041027 20200625 999999 67601 LITTLE AMERICA AY -78.2 -162.25 32.0 19560202 19590101 999999 68201 BYRD STATION AY -80.017 -119.53299999999999 1542.9 19570110 19721231 999999 68601 BEARDMORE CAMP AY -85.03299999999999 -164.667 230.1 19561231 19591231 999999 68701 BROCKTON STATION AY -80.017 -178.417 100.9 19651231 19720127 999999 70701 DIEGO GARCIA NAF IO PC FJDG -7.3 72.4 2.7 19710719 19721231 999999 73801 NORTHPORT 2 S US AL 33.213 -87.59100000000001 45.7 20090521 20200625 999999 73802 HIGHLAND HOME 2 S US AL 31.916 -86.31200000000001 187.2 20081202 20200625 999999 73803 TALLADEGA 10 NNE US AL 33.571999999999996 -86.057 160.0 20081203 20200625 999999 73805 NORTHWEST FLORIDA BEACHES INTL ARPT US FL KECP 30.349 -85.788 21.0 20100501 20110301 999999 77401 PLATEAU STATION AY -79.467 40.583 3504.9 19651214 19681231 999999 80309 BIAK ISLAND NF ID -1.2670000000000001 136.38299999999998 0.9 19450531 19450930 999999 80430 EMIRAU NF PP -1.683 149.967 0.9 19450430 19450731 999999 80431 MANUS ISLAND NF PP -2.017 147.433 43.9 19451231 19470131 999999 80705 FUNAFUTI NF TV NGFU -8.533 179.217 2.1 19450731 19450930 999999 82101 NORTHWEST CAPE AS -22.333000000000002 114.05 38.1 19680305 19680430 999999 86101 WILKES AY -66.267 110.56700000000001 11.9 19570303 19631231 999999 86102 WILKES ICE CAP STATI AY -66.467 112.28299999999999 19580320 19581027 999999 87601 MCMURDO SOUND NAF AY NZCM -77.883 166.733 24.1 19560309 19841231 999999 87602 MARBLE POINT AY -77.417 163.683 47.9 19571218 19590128 999999 87603 HUT POINT AY -77.883 166.733 25.9 19621004 19621231 999999 87701 ADARE HALLETT AY -72.3 170.217 4.9 19570131 19730215 999999 88701 LIV AY -83.28299999999999 175.75 182.9 19571109 19571130 999999 88702 BEARDMORE CAMP AY -83.4 174.75 59.1 19601108 19640227 999999 88703 LITTLE JEANA STATION AY -81.383 170.75 53.9 19641004 19660123 999999 91002 FLETCHER ICE ISLAND T-3 (ARCTIC) US 6.0 19660613 19710419 999999 91004 ICE SKATE B IC 80.0 -113.0 19610105 19611025 999999 92802 TAMPA BAY EXECUTIVE US FL KRRF 28.188000000000002 -82.626 12.5 19960702 20041231 999999 92811 LIFEGUARD OFFICE US FL 25.805999999999997 -80.133 2.4 20050101 20120201 999999 92821 TITUSVILLE 7 E US FL 28.616 -80.693 0.9 20050506 20200625 999999 92826 EVERGLADES CITY 5 NE US FL 25.9 -81.318 1.2 20070210 20200625 999999 92827 SEBRING 23 SSE US FL 27.153000000000002 -81.369 45.7 20071208 20200625 999999 93026 DOUGLAS MUNICIPAL AP US AZ KDUG 31.458000000000002 -109.60600000000001 1250.0 19481101 19550101 999999 93032 DENVER NAS US CO 39.7 -104.75 1695.9 19471001 19590310 999999 93035 MARFA US TX KMRF 30.371 -104.01700000000001 1478.0 19480705 19550101 999999 93037 COLORADO SPRINGS PETERSON FIE US CO KCOS 38.81 -104.68799999999999 1880.6 19650101 19721231 999999 93041 LAS CRUCES MUNICIPAL AP US NM KLRU 32.283 -106.917 1358.2 20020902 20051231 999999 93042 DALHART MUNICIPAL AP US TX KDHT 36.016999999999996 -102.55 1217.4 19481210 19550101 999999 93044 ZUNI US NM ZUN 35.067 -108.833 1923.3 19490217 19721231 999999 93045 TRUTH OR CONSEQUENCES MUNI AP US NM KTCS 33.236999999999995 -107.26799999999999 1480.7 19500526 19721231 999999 93057 GRANTS MILAN MUNICIPAL AP US NM KGNT 35.166 -107.899 1987.3 19540101 19550101 999999 93063 SILVER CITY GRANT CO US NM KSVC 32.633 -108.167 1659.9 19600502 19680830 999999 93092 NWS AWRS US NM 36.9 -106.583 2393.0 20020902 20051231 999999 93101 EL TORO MCAS US CA KNZJ 33.667 -117.73299999999999 116.7 19450301 20001101 999999 93102 FALLON NAAS US NV KNFL 39.417 -118.71700000000001 1199.1 19450301 19721231 999999 93104 CHINA LAKE NAF US CA KNID 35.688 -117.693 695.9 19450401 19721201 999999 93105 LITCHFIELD PARK NAF US AZ 33.433 -112.367 292.0 19480401 19660929 999999 93106 LOS ALAMITOS US CA KSLI 33.783 -118.05 11.0 19450401 19710731 999999 93107 SAN DIEGO MIRAMAR NAS US CA KNKX 32.867 -117.133 145.7 19470701 19881231 999999 93108 MOJAVE MCAS US CA 35.117 -118.15 841.9 19450401 19470101 999999 93111 POINT MUGU NF US CA KNTD 34.117 -119.117 3.7 19460301 19721231 999999 93113 SAN PEDRO NAS US CA 33.75 -118.25 13.1 19450301 19470601 999999 93114 MARINE CORPS AIR STATION US CA KNTK 33.7 -117.833 17.1 19450301 19751231 999999 93115 IMPERIAL BEACH REAM FIELD NAS US CA KNRS 32.567 -117.117 7.0 19450501 19721231 999999 93116 SAN NICHOLAS ISLAND US CA KNSI 33.25 -119.45 153.6 19450401 19721201 999999 93118 SALTON SEA NAAF US CA 33.2 -115.833 -68.9 19450401 19451101 999999 93120 THERMAL NAF US CA 33.617 -116.167 -36.0 19450401 19450801 999999 93121 TWENTY NINE PALMS US CA KNXP 34.3 -116.167 625.1 19450501 19451031 999999 93123 FALLON CAA AP US NV 39.417 -118.71700000000001 1200.0 19481101 19550101 999999 93124 SANTA BARBARA MCAS US CA 34.433 -119.85 4.0 19450401 19460301 999999 93129 CEDAR CITY MUNICIPAL AP US UT KCDC 37.709 -113.094 1712.4 19481101 19721231 999999 93132 GREEN RIVER US UT 39.0 -110.15 1241.2 20050609 20051221 999999 93134 LOS ANGELES DOWNTOWN USC CAMP US CA KCQT 34.024 -118.291 56.4 19990701 19991231 999999 93136 MOUNT WILSON US CA KMWS 34.233000000000004 -118.06700000000001 1738.9 19490101 19491231 999999 93139 PAYSON US AZ 0E4 34.233000000000004 -111.333 1498.1 19480701 19520526 999999 93184 SANTA ANA US CA KSNA 33.68 -117.866 16.8 19680101 19721231 999999 93193 FRESNO YOSEMITE INTL AP US CA KFAT 36.78 -119.719 99.7 19650101 19711231 999999 93198 ST GEORGE INTERM FLD US UT 37.05 -113.51700000000001 882.7 19481101 19550101 999999 93209 PASO ROBLES MUNICIPAL ARPT US CA KPRB 35.67 -120.62799999999999 249.0 19530101 19650101 999999 93211 OAKLAND NAS US CA NBJ 37.733000000000004 -122.2 2.1 19490601 19541031 999999 93215 POINT ARGUELLO AFWB US CA 34.667 -120.583 111.9 19590701 19650401 999999 93216 BEALE AFB US CA KBAB 39.133 -121.43299999999999 34.4 19710101 19710101 999999 93217 FRITZSCHE AAF US CA KOAR 36.683 -121.76700000000001 43.9 19710101 19710101 999999 93226 PT POEDRAS BLANCA US CA K87Q 35.666 -121.285 18.0 19980202 19981231 999999 93243 MERCED 23 WSW US CA 37.238 -120.883 23.8 20040325 20200625 999999 93245 BODEGA 6 WSW US CA 38.321 -123.075 19.2 20080614 20200625 999999 93718 NORTH MYRTLE BEACH AIRPORT US SC KCRE 33.812 -78.72399999999999 10.1 19490101 19561123 999999 93719 NEW BERN CRAVEN CO REGL AP US NC KEWN 35.068000000000005 -77.048 7.3 19490101 19550101 999999 93720 SALISBURY WICOMICO CO AP US MD KSBY 38.341 -75.51 18.3 19490101 19721231 999999 93721 BALTIMORE BLT-WASHNG US MD KBWI 39.167 -76.683 47.2 19650101 19721231 999999 93726 KINSTON STALLINGS AFB US NC KISO 35.317 -77.633 28.7 19541101 19570731 999999 93727 NEW RIVER MCAS US NC KNCA 34.7 -77.383 7.6 19550103 19721231 999999 93729 HATTERAS BILLY MITCHELL AP US NC KHSE 35.233000000000004 -75.622 3.4 19570301 19721231 999999 93730 ATLANTIC CITY INTL A US NJ KACY 39.449 -74.567 20.4 19650101 19740228 999999 93731 NORFOLK FLEET WF NAS US VA 36.95 -76.3 10.1 19580501 19620801 999999 93732 NEW YORK SHOALS AFS US NY 39.8 -72.667 25.9 19581001 19601116 999999 93734 STERLING US VA 38.983000000000004 -77.467 85.0 19620701 19651019 999999 93735 FORT EUSTIS FELKER AAF US VA KFAF 37.133 -76.6 3.7 19710101 19710101 999999 93736 CHARLOTTESVILLE FAA US VA KCHO 38.139 -78.453 196.3 19610420 19650101 999999 93737 FORT BRAGG SIMMONS AAF US NC KFBG 35.133 -78.933 73.8 19710101 19710101 999999 93738 WASHINGTON DULLES INTERNATIONAL AP US DC KIAD 38.941 -77.464 98.5 19621117 19721231 999999 93739 WALLOPS ISLAND UAU US VA KWAL 37.937 -75.471 14.6 19661001 19721231 999999 93743 BOGUE FIELD MCAF US NC KNJM 34.683 -77.033 6.7 19801001 19810101 999999 93776 CHERRY POINT/MCAS ASOS 2 US NC KNIS 34.883 -76.867 9.1 19960702 20160130 999999 93801 ROME R B RUSSELL AP US GA KRMG 34.348 -85.161 196.3 19480101 19771222 999999 93803 SMITHVILLE CAA AP US TN 35.967 -85.78299999999999 328.9 19490101 19540415 999999 93804 SPARTANBURG US SC SPA 34.917 -81.95 244.1 19480101 20200626 999999 93805 TALLAHASSEE DALE MABRY FIELD US FL KTLH 30.393 -84.353 20.7 19480101 19721231 999999 93806 TUSCALOOSA MUNICIPAL AP US AL KTCL 33.211999999999996 -87.616 56.7 19490101 19550101 999999 93807 WINSTON-SALEM REYNOLDS AP US NC KINT 36.134 -80.222 295.7 19480101 19650301 999999 93808 BOWLING GREEN WARREN CO AP US KY KBWG 36.965 -86.42399999999999 163.7 19480101 19550101 999999 93810 CARBONDALE SOUTHERN ILLINOIS A US IL KMDH 37.78 -89.25 126.8 19971202 20051231 999999 93814 CINCINNATI GREATER CINCINNATI US KY KCVG 39.043 -84.67200000000001 269.1 19480101 19721231 999999 93815 DAYTON MUNICIPAL ARPT US OH KDAY 39.906 -84.219 305.7 19480101 19721231 999999 93816 EFFINGHAM COUNTY MEMORIAL ARPT US IL 39.07 -88.53299999999999 178.9 19481201 20200625 999999 93817 EVANSVILLE DRESS REGIONAL ARP US IN KEVV 38.044000000000004 -87.521 118.3 19480101 19721231 999999 93818 CHESAPEAKE HUNTINGTON AP US OH 38.417 -82.5 170.7 19480101 19610104 999999 93819 INDIANAPOLIS WEIR COOK MUNICI US IN KIND 39.732 -86.279 246.3 19480101 19721231 999999 93820 LEXINGTON BLUEGRASS FIELD US KY KLEX 38.041 -84.60600000000001 301.4 19480101 19721231 999999 93821 LOUISVILLE STANDIFORD FIELD US KY KSDF 38.181 -85.73899999999999 148.7 19480101 19721231 999999 93822 SPRINGFIELD CAPITAL AP US IL KSPI 39.845 -89.684 186.8 19480101 19721231 999999 93823 TERRE HAUTE HULMAN FIELD US IN KHUF 39.45 -87.3 17.5 19550101 19550101 999999 93824 ZANESVILLE MUNICIPAL AP US OH KZZV 39.944 -81.892 274.9 19481201 19550101 999999 93825 ADVANCE 1 S US MO 37.1 -89.9 109.7 19480101 19491201 999999 93826 BARIN FIELD NAAS US AL NHX 30.4 -87.6 21.9 19450201 19580912 999999 93828 PENSACOLA CORRY FLD NAAS US FL NQS 30.4 -87.28299999999999 11.0 19480601 19580523 999999 93829 PENSACOLA CHEVALIER FLD NAS US FL CVD 30.35 -87.26700000000001 21.0 19450201 19550601 999999 93830 ATLANTA NAS US GA NCQ 33.867 -84.3 302.1 19450201 19590225 999999 93831 BEAUFORT NAS US SC KNBC 32.483000000000004 -80.717 11.6 19720101 19721231 999999 93832 CECIL FIELD NAS US FL KNZC 30.217 -81.883 25.3 19470301 20001101 999999 93833 COLUMBIA CONGAREE FLD MCAF US SC KMMT 33.917 -80.8 74.1 19450301 19451001 999999 93834 COLUMBUS NAS US OH 39.983000000000004 -82.883 249.0 19490301 19550529 999999 93836 BRUNSWICK GLYNN CO A US GA NEA 31.25 -81.467 9.1 19450201 19740731 999999 93837 JACKSONVILLE NAS US FL KNIP 30.233 -81.667 6.7 19450101 19721231 999999 93839 MEMPHIS NAS US TN KNQA 35.35 -89.867 97.5 19450301 20041231 999999 93840 ST SIMONS ISLAND NAS US GA 31.166999999999998 -81.4 3.0 19450501 19470420 999999 93841 WHITING FIELD NAS US FL KNSE 30.717 -87.01700000000001 61.0 19450201 19721231 999999 93842 COLUMBUS MUSCOGEE COUNTY ARPT US GA KCSG 32.516 -84.94200000000001 120.1 19530101 19711231 999999 93843 DOTHAN MUNICIPAL AP US AL KDHN 31.233 -85.43299999999999 97.8 19490101 19550101 999999 93844 PARRIS ISLAND MCAS US SC 32.317 -80.683 10.1 19450401 19460215 999999 93845 VALDOSTA WB AIRPORT US GA KVLD 30.783 -83.277 60.4 19720101 19721231 999999 93846 ANDERSON COUNTY AP US SC KAND 34.498000000000005 -82.71 235.6 19490101 19590101 999999 93901 DALLAS HENSLEY FIELD NAS US TX KNBE 32.733000000000004 -96.96700000000001 150.9 19450301 20041231 999999 93902 DURANT US OK KDUA 33.95 -96.4 213.0 19450201 19450831 999999 93903 FORT WORTH EAGLE MT LK MCAS US TX 32.983000000000004 -97.48299999999999 232.0 19450401 19460401 999999 93904 FORT WORTH MEACHAM US TX KFTW 32.819 -97.361 215.2 19450301 19451130 999999 93905 HUTCHINSON NAS US KS 37.917 -97.9 479.1 19450201 19580501 999999 93906 NEW ORLEANS NAS US LA 30.033 -90.083 4.0 19490101 19571231 999999 93907 NEWPORT MCAF US AR 35.633 -91.18299999999999 74.1 19450301 19451206 999999 93908 NORMAN NAS US OK 35.233000000000004 -97.417 359.1 19460101 19460220 999999 93909 OLATHE JOHNSON CO INDUSTRIAL US KS KIXD 38.832 -94.89 331.3 19450301 19700201 999999 93910 ST LOUIS LAMBERT US MO 38.75 -90.383 166.1 19450301 19460801 999999 93915 ALEXANDRIA INTL AIRPORT US LA KAEX 31.335 -92.559 24.4 19990702 20051231 999999 93919 MCCOMB PIKE COUNTY AP US MS KMCB 31.183000000000003 -90.471 128.6 19481201 19550101 999999 93947 GILLESPIE COUNTY AIRPORT US TX 30.243000000000002 -98.91 516.6 20020602 20051231 999999 93983 PALESTINE US TX KPSN 31.78 -95.706 128.9 20040102 20051231 999999 93986 HOBART MUNICIPAL AP US OK KHBR 34.989000000000004 -99.053 478.5 19480807 19550101 999999 93987 LUFKIN ANGELINA CO US TX KLFK 31.236 -94.75399999999999 96.3 19480801 19721231 999999 93988 PINE BLUFF US AR KPBF 34.175 -91.935 65.2 19481001 19550101 999999 93989 QUINCY MUNI BALDWIN FLD US IL KUIN 39.937 -91.19200000000001 233.5 19481201 19550101 999999 93990 HILL CITY MUNICIPAL AP US KS KHLC 39.376 -99.83 677.0 19490101 19550101 999999 93991 WALNUT RIDGE MUNICIPAL ARPT US AR KARG 36.125 -90.92399999999999 83.2 19490401 20041231 999999 93992 EL DORADO GOODWIN FIELD US AR KELD 33.221 -92.814 86.9 19490706 19550101 999999 93993 FAYETTEVILLE DRAKE FIELD US AR KFYV 36.01 -94.169 383.7 19490714 19680101 999999 93995 BUTLER FAA AP US MO 38.3 -94.333 264.9 19500101 19550101 999999 93996 FARMINGTON US MO KFAM 37.760999999999996 -90.428 288.6 19500101 19550101 999999 93997 RUSSELL MUNICIPAL AP US KS KRSL 38.876 -98.809 567.8 19500101 19721231 999999 93999 VICKSBURG US MS KVKS 32.233000000000004 -90.93299999999999 3.2 19500601 19501001 999999 94008 GLASGOW INTL ARPT US MT KGGW 48.214 -106.62100000000001 699.2 19551001 19721231 999999 94010 ST MARIE US MT 48.417 -106.53299999999999 838.2 19581001 19680628 999999 94012 HAVRE CITY-COUNTY AP US MT KHVR 48.543 -109.76299999999999 792.2 19610201 19721231 999999 94014 WILLISTON SLOULIN FIELD INTL US ND KISN 48.174 -103.637 580.6 19620101 19721231 999999 94041 GARRISON US ND 47.646 -101.439 582.2 19980502 20051231 999999 94059 WOLF POINT 34 NE US MT 48.489 -105.21 805.6 20011220 20200625 999999 94060 WOLF POINT 29 ENE US MT 48.308 -105.102 635.5 20011220 20200625 999999 94070 TRENTON MUNICIPAL AIRPORT US NE K9V2 40.187 -101.025 852.2 20021102 20041231 999999 94074 NUNN 7 NNE US CO 40.806999999999995 -104.755 1642.9 20030706 20200625 999999 94075 BOULDER 14 W US CO 40.035 -105.541 2995.6 20030927 20200625 999999 94077 HARRISON 20 SSE US NE 42.425 -103.736 1343.0 20030827 20200625 999999 94078 LANDER 11 SSE US WY 42.675 -108.669 1759.6 20040703 20200625 999999 94079 WHITMAN 5 ENE US NE 42.068000000000005 -101.445 1140.0 20040912 20200625 999999 94080 MEDORA 7 E US ND 46.895 -103.37700000000001 844.6 20040918 20200625 999999 94081 BUFFALO 13 ESE US SD 45.516000000000005 -103.302 878.7 20040922 20200625 999999 94082 DINOSAUR 2 E US CO 40.245 -108.96799999999999 1847.7 20040721 20200625 999999 94084 NORTHGATE 5 ESE US ND 48.968 -102.17 561.4 20061017 20200625 999999 94085 PIERRE 24 S US SD 44.019 -100.353 647.4 20061024 20200625 999999 94088 SUNDANCE 8 NNW US WY 44.516999999999996 -104.436 1765.4 20070822 20200625 999999 94092 AKRON A 4 E US CO 40.155 -103.14200000000001 1384.4 20090615 20140601 999999 94094 MEEKER 15 W US CO 40.082 -108.2 1756.0 20100719 20140601 999999 94103 POST 0FFICE BLDG.2ND&SUMACH US WA 46.033 -118.333 289.3 20020902 20031231 999999 94107 ROME STATE AIRPORT US OR KREO 42.591 -117.86399999999999 1234.4 19491003 19501115 999999 94143 IDAHO FALLS 46 W US ID 43.533 -112.95 1505.1 19650101 19671011 999999 94144 IDAHO FALLS 42 NW WB US ID 43.833 -112.68299999999999 1460.9 19650101 19670111 999999 94176 SPOKANE FELTS FIELD US WA KSFF 47.683 -117.321 599.8 19981002 20051231 999999 94196 GRNT CO RGNL/OGLVIE FD APT US OR 44.403999999999996 -118.963 1124.7 20020902 20051231 999999 94224 ASTORIA CLATSOP COUNTY ARPT US OR KAST 46.157 -123.883 6.7 19490401 19721231 999999 94225 HOQUIAM AP US WA KHQM 46.973 -123.93 4.6 19490401 19590101 999999 94234 TOFINO CA CYAZ 49.083 -125.76700000000001 24.1 19640101 19721231 999999 94236 KLAMATH FALLS KINGSLEY FLD AF US OR KLMT 42.147 -121.72399999999999 1247.2 19710101 19710101 999999 94240 QUILLAYUTE AIRPORT US WA KUIL 47.938 -124.555 62.5 19660801 19721231 999999 94274 TACOMA NARROWS AP US WA KTIW 47.268 -122.57600000000001 96.0 19990102 20051231 999999 94290 WSFO SEATTLE SAND POINT US WA KSEW 47.687 -122.255 18.3 19990802 20200624 999999 94297 COUPEVILLE/NOLF US WA KNRA 48.217 -122.633 60.7 19960702 20041231 999999 94605 OLCO LANDING AREA SEAPLANE BASE US ME 46.617 -69.533 304.8 20040702 20051231 999999 94644 OLD TOWN 2 W US ME 44.928000000000004 -68.70100000000001 38.7 20020913 20200625 999999 94645 LIMESTONE 4 NNW US ME 46.96 -67.883 224.6 20020920 20200625 999999 94700 BERLIN MUNICIPAL AP US NH KBML 44.576 -71.179 353.0 19960702 20051231 999999 94702 BRIDGEPORT MUNICIPAL ARPT US CT KBDR 41.158 -73.12899999999999 5.2 19470601 19721231 999999 94704 DANSVILLE MUNI AP US NY KDSV 42.571000000000005 -77.71300000000001 201.8 19490101 20001101 999999 94705 MONTPELIER AP US VT KMPV 44.20399999999999 -72.562 341.7 19490201 19550101 999999 94725 MASSENA AP US NY KMSS 44.93600000000001 -74.846 65.2 19490201 19721231 999999 94728 NEW YORK CENTRAL PARK US NY KNYC 40.779 -73.969 47.5 19650101 19991231 999999 94732 PHILADELPHIA NE PHILADELPHIA US PA KPNE 40.082 -75.01100000000001 36.3 19490101 19590101 999999 94735 PORTSMOUTH US NH 43.067 -70.817 29.0 19461201 19520831 999999 94741 TETERBORO AIRPORT US NJ KTEB 40.85 -74.061 2.1 19470101 19611001 999999 94745 WHITE PLAINS WESTCHESTER CO A US NY KHPN 41.067 -73.708 121.0 19490101 19721231 999999 94746 WORCESTER MUNICIPAL ARPT US MA KORH 42.271 -71.873 310.0 19490101 19721231 999999 94765 LEBANON AWO US NH KLEB 43.626000000000005 -72.305 173.7 19590101 19650101 999999 94772 NEW HAVEN US CT 41.3 -72.933 22.9 19800601 19800901 999999 94789 NEW YORK FORT TOTTEN US NY KJFK 40.639 -73.762 6.7 19480701 19721231 999999 94790 WATERTOWN AP US NY KART 43.992 -76.02199999999999 101.5 19650101 19650101 999999 94792 MONTREAL DORVAL INTL AP CA CYUL 45.467 -73.75 29.9 19500101 19541231 999999 94794 UTICA ONEIDA COUNTY AP US NY KUCA 43.145 -75.384 226.8 19501201 19550101 999999 94814 HOUGHTON LAKE ROSCOMMON CO AR US MI KHTL 44.358999999999995 -84.67399999999999 353.6 19640420 19721231 999999 94822 ROCKFORD GREATER ROCKFORD AP US IL KRFD 42.193000000000005 -89.09299999999999 226.5 19510301 19721231 999999 94824 KINCHELOE AFB US MI 46.25 -84.46700000000001 245.1 19530415 19681201 999999 94830 TOLEDO EXPRESS AIRPORT US OH KTOL 41.589 -83.801 210.9 19550201 19721231 999999 94846 CHICAGO OHARE INTL AP US IL KORD 41.995 -87.934 205.4 19700101 19721231 999999 94847 DETROIT METRO AP US MI KDTW 42.231 -83.331 202.4 19581201 19721231 999999 94849 ALPENA PHELPS COLLINS FIELD US MI KAPN 45.071999999999996 -83.564 211.2 19590901 19721231 999999 94860 GRAND RAPIDS KENT COUNTY ARPT US MI KGRR 42.883 -85.524 244.8 19631201 19721231 999999 94866 CHICAGO MEIGS FIELD US IL CGX 41.867 -87.617 180.1 19660101 19700701 999999 94868 FRANKLIN US PA KFKL 41.383 -79.867 469.1 19680101 19721231 999999 94869 MILWAUKEE TIMMERMAN US WI KMWC 43.108999999999995 -88.031 227.1 19680101 19721231 999999 94908 DUBUQUE MUNICIPAL AP US IA KDBQ 42.398 -90.704 329.2 19510201 19721231 999999 94910 WATERLOO MUNICIPAL AP US IA KALO 42.553999999999995 -92.40100000000001 267.6 19490101 19721231 999999 94925 GRAND FORKS AF US ND KRDR 47.967 -97.4 277.7 19710101 19710101 999999 94931 HIBBING CHISHOLM-HIBBING AP US MN KHIB 47.386 -92.839 413.6 19720101 19721231 999999 94995 LINCOLN 8 ENE US NE 40.848 -96.565 362.4 20020115 20200625 999999 94996 LINCOLN 11 SW US NE 40.695 -96.854 418.2 20020114 20200625 999999 96404 TOK 70 SE US AK 62.736999999999995 -141.208 609.6 20110924 20200625 999999 96405 CORDOVA 14 ESE US AK 60.473 -145.35399999999998 25.3 20170727 20200625 999999 96406 RUBY 44 ESE US AK 64.502 -154.13 78.9 20140828 20200625 999999 96407 SELAWIK 28 E US AK 66.562 -159.004 6.7 20150813 20200625 999999 96408 DENALI 27 N US AK 63.452 -150.875 678.2 20150819 20200625 999999 96409 TOOLIK LAKE 5 ENE US AK 68.648 -149.399 750.1 20170822 20200625 A00002 53928 BRENHAM MUNICIPAL AIRPORT US TX K11R 30.219 -96.374 93.9 20060101 20200626 A00003 63844 MACON COUNTY AIRPORT US NC K1A5 35.223 -83.419 615.7 20060101 20200625 A00004 53929 ARDMORE DOWNTOWN EXEC ARPT US OK K1F0 34.147 -97.12299999999999 257.3 20060101 20200625 A00005 94076 MC ELORY AIRFIELD AIRPORT US CO K20V 40.054 -106.369 2258.9 20060101 20200625 A00008 12978 FAYETTE RGNL AIR CNTR ARP US TX K3T5 29.908 -96.95 98.8 20060101 20200626 A00009 53862 PERRY-FOLEY AIRPORT US FL K40J 30.072 -83.574 13.7 20060101 20200522 A00011 63848 CHEROKEE COUNTY AIRPORT US GA K47A 34.311 -84.42399999999999 371.6 20060101 20111003 A00012 63879 BRAXTON COUNTY AIRPORT US WV K48I 38.687 -80.652 388.6 20061018 20071217 A00013 63847 ISBELL FIELD AIRPORT US AL K4A9 34.474000000000004 -85.721 267.3 20060101 20200625 A00014 03053 DONA ANA COUNTY AIRPORT AT SANTA TERESA US NM K5T6 31.883000000000003 -106.71700000000001 1253.3 20060107 20061115 A00015 53129 COLORADO CITY MUNI AIRPORT US AZ KAZC 36.96 -113.014 1485.6 20140227 20200625 A00016 03036 BLANDING MUNICIPAL AIRPORT US UT KBDG 37.583 -109.48299999999999 1787.7 20140724 20200625 A00017 04868 MARSHALL COUNTY AIRPORT US IL KC75 41.019 -89.38600000000001 173.1 20060101 20200625 A00018 23162 DELTA MUNICIPAL AIRPORT US UT KDTA 39.383 -112.51700000000001 1450.5 20140820 20200625 A00019 53969 WILBARGER COUNTY AIRPORT US TX KF05 34.226 -99.28399999999999 385.6 20060101 20200625 A00021 63884 KEE FIELD AIRPORT US WV KI16 37.601 -81.559 543.5 20061031 20200626 A00022 53995 SOUTHLAND FIELD AIRPORT US LA KL75 30.131 -93.376 3.4 20061104 20061122 A00023 63890 WHITEHOUSE NAVAL OUTLYING FIELD US FL KNEN 30.35 -81.883 30.2 20070601 20200624 A00024 53848 CHOCTAW NAVAL OUTLYING FIELD US FL KNFJ 30.506999999999998 -86.96 31.1 20070601 20200624 A00026 94297 COUPEVILLE/NOLF US WA KNRA 48.217 -122.633 60.7 20060324 20150514 A00028 04116 SALT LAKE CITY MUNI 2 ARPT US UT KU42 40.619 -111.993 1403.0 20160815 20200625 A00029 63820 EVERETT-STEWART AIRPORT US TN KUCY 36.38 -88.985 103.9 20130627 20200625 A00031 03725 GRANT COUNT AIRPORT US WV KW99 38.994 -79.14399999999999 292.6 20060101 20200626 A00032 25715 ATKA AIRPORT US AK PAAK 52.22 -174.206 17.1 20060101 20200608 A05735 00209 BOWIE MUNICIPAL AIRPORT US TX K0F2 33.6 -97.78299999999999 336.2 20130101 20200625 A06773 00334 TUCKER GUTHRIE MEMORIAL AIRPORT US KY KI35 36.859 -83.35799999999999 473.1 20140731 20200625 A06800 00120 TAZEWELL COUNTY AIRPORT US VA KJFZ 37.067 -81.8 808.6 20140731 20200625 A06854 00115 BIG BEAR CITY AIRPORT US CA KL35 34.264 -116.854 2057.1 20140731 20200625 A06884 00416 LURAY CAVERNS AIRPORT US VA KLUA 38.667 -78.501 275.2 20140731 20200625 A07049 00320 PETALUMA MUNICIPAL AIRPORT US CA KO69 38.25 -122.6 27.1 20140731 20200625 A07053 00346 TRINITY CENTER AIRPORT US CA KO86 40.983000000000004 -122.694 728.2 20140731 20200625 A07056 00464 J DOUGLAS BAKE MEMORIAL AIRPORT US WI KOCQ 44.873999999999995 -87.91 184.4 20140731 20200625 A07086 00468 CARL R KELLER FIELD AIRPORT US OH KPCW 41.516000000000005 -82.869 179.8 20140731 20200625 A07141 00327 COOPERSTOWN MUNICIPAL AIRPORT US ND KS32 47.423 -98.10600000000001 434.0 20150926 20200625 A07354 00132 WAUTOMA MUNICIPAL AIRPORT US WI KY50 44.033 -89.3 262.1 20140731 20200625 A07355 00241 VIROQUA MUNICIPAL AIRPORT US WI KY51 43.57899999999999 -90.913 394.1 20140731 20200625 A07357 00182 ELBOW LAKE MUNICIPAL PRIDE OF THE PRAIRIE AIRPORT US MN KY63 45.986000000000004 -95.992 367.3 20140731 20200625 A07359 00240 IONIA COUNTY AIRPORT US MI KY70 42.938 -85.061 249.0 20140731 20200625 A51255 00445 DEMOPOLIS MUNICIPAL AIRPORT US AL KDYA 32.464 -87.954 34.1 20140731 20200626 A51256 00451 BRANSON WEST MUNICIPAL EMERSON FIELD AIRPORT US MO KFWB 36.699 -93.402 411.2 20140731 20200625 fluids-1.0.22/fluids/data/ASTM E11 sieves.csv0000644000175000017500000001166214302004506017656 0ustar nileshnileshDesignation, mm Designation, inch/No Nominal Sieve Opening (in.) +/- Y variation average opening, mm +X Maximum variation for opening, mm Resulting Maximum Individual Opening, mm (designation, + X opening) Compliance Sieves, sample x openings per 100 ft^2 Compliance Sieves, maximum standard deviation Inspection Sieves, sample openings per sieve Inspection Sieves, maximum standard deviation Calibration Sieves, sample openings per sieve Calibration Sieves, Maximum Standard Deviation Typical Wire diameter, mm Wire diameter, min, mm Wire diameter, max, mm 125 5 in. 5 3.66 4.51 129.51 20 – all – all – 8 6.8 9.2 106 4.24 in. 4.24 3.12 3.99 109.99 20 – all – all – 6.3 5.4 7.2 100 4 in. 4 2.94 3.82 103.82 20 – all – all – 6.3 5.4 7.2 90 3 1/2 in. 3.5 2.65 3.53 93.53 20 – all – all – 6.3 5.4 7.2 75 3 in. 3 2.22 3.09 78.09 20 – all – all – 6.3 5.4 7.2 63 2 1/2 in. 2.5 1.87 2.71 65.71 20 – all – all – 5.6 4.8 6.4 53 2.12 in. 2.12 1.58 2.39 55.39 20 – all – all – 5 4.3 5.8 50 2 in. 2 1.49 2.29 52.29 20 – all – all – 5 4.3 5.8 45 1 3/4 in. 1.75 1.35 2.12 47.12 20 – all – all – 4.5 3.8 5.2 37.5 1 1/2 in. 1.5 1.13 1.85 39.35 20 1.374 all – all – 4.5 3.8 5.2 31.5 1 1/4 in. 1.25 0.95 1.63 33.13 20 1.066 all – all – 4 3.4 4.6 26.5 1.06 in. 1.06 0.802 1.44 27.94 20 0.869 15 0.584 all – 3.55 3 4.1 25 1.00 in. 1 0.758 1.38 26.38 20 0.823 15 0.553 all – 3.55 3 4.1 22.4 7/8 in. 0.875 0.681 1.27 23.67 150 0.734 15 0.493 all – 3.55 3 4.1 19 3/4 in. 0.75 0.579 1.13 20.13 150 0.622 15 0.418 30 0.446 3.15 2.7 3.5 16 5/8 in. 0.625 0.49 0.99 16.99 150 0.527 15 0.354 30 0.378 3.15 2.7 3.6 13.2 0.530 in. 0.53 0.406 0.86 14.06 150 0.441 15 0.296 30 0.316 2.8 2.4 3.2 12.5 1/2 in. 0.5 0.385 0.83 13.33 150 0.421 15 0.283 30 0.302 2.5 2.1 2.9 11.2 7/16 in. 0.438 0.346 0.77 11.97 150 0.382 15 0.256 30 0.274 2.5 2.1 2.9 9.5 3/8 in. 0.375 0.295 0.68 10.18 150 0.33 15 0.222 30 0.237 2.24 1.9 2.6 8 5/16 in. 0.312 0.249 0.6 8.6 150 0.284 15 0.191 30 0.204 2 1.7 2.3 6.7 0.265 in. 0.265 0.21 0.53 7.23 150 0.245 15 0.164 30 0.175 1.8 1.5 2.1 6.3 1/4 in. 0.25 0.197 0.51 6.81 150 0.233 15 0.157 30 0.167 1.8 1.5 2.1 5.6 No. 3 1/2 0.223 0.176 0.47 6.07 150 0.211 15 0.142 30 0.151 1.6 1.3 1.9 4.75 No. 4 0.187 0.15 0.41 5.16 150 0.182 15 0.123 30 0.131 1.6 1.3 1.9 4 No. 5 0.157 0.127 0.37 4.37 150 0.161 15 0.108 30 0.115 1.4 1.2 1.7 3.35 No. 6 0.132 0.107 0.32 3.67 200 0.138 20 0.097 40 0.103 1.25 1.06 1.5 2.8 No. 7 0.11 0.09 0.29 3.09 200 0.121 20 0.085 40 0.09 1.12 0.95 1.3 2.36 No. 8 0.0937 0.076 0.25 2.61 200 0.104 20 0.073 40 0.077 1 0.85 1.15 2 No. 10 0.0787 0.065 0.23 2.23 250 0.094 25 0.068 50 0.072 0.9 0.77 1.04 1.7 No. 12 0.0661 0.056 0.2 1.9 250 0.081 25 0.059 50 0.062 0.8 0.68 0.92 1.4 No. 14 0.0555 0.046 0.18 1.58 400 0.071 40 0.055 80 0.057 0.71 0.6 0.82 1.18 No. 16 0.0469 0.04 0.16 1.34 400 0.063 40 0.049 80 0.051 0.63 0.54 0.72 1 No. 18 0.0394 0.034 0.14 1.14 400 0.055 40 0.042 80 0.044 0.56 0.48 0.64 0.85 No. 20 0.0331 0.0291 0.127 0.977 400 48.76 40 37.73 80 39.36 0.0005 0.00043 0.00058 0.71 No. 25 0.0278 0.0247 0.112 0.822 500 42.63 50 33.82 100 35.14 0.00045 0.00038 0.00052 0.6 No. 30 0.0234 0.0212 0.101 0.701 500 38 50 30.14 100 31.32 0.0004 0.00034 0.00046 0.5 No. 35 0.0197 0.018 0.089 0.589 600 33.23 60 26.85 120 27.82 0.000315 0.00027 0.00036 0.425 No. 40 0.0165 0.0155 0.081 0.506 600 29.95 60 24.2 120 25.08 0.00028 0.00024 0.00032 0.355 No. 45 0.0139 0.0133 0.072 0.427 800 26.45 80 21.95 160 22.64 0.000224 0.00019 0.00026 0.3 No. 50 0.0117 0.0115 0.065 0.365 800 23.7 80 19.66 160 20.29 0.0002 0.00017 0.00023 0.25 No. 60 0.0098 0.0099 0.058 0.308 800 21.02 80 17.44 160 17.99 0.00016 0.00013 0.00019 0.212 No. 70 0.0083 0.0087 0.052 0.264 800 18.79 80 15.59 160 16.08 0.00014 0.00012 0.00017 0.18 No. 80 0.007 0.0076 0.047 0.227 1000 16.85 100 14.24 200 14.65 0.000125 0.000106 0.00015 0.15 No. 100 0.0059 0.0066 0.043 0.193 1000 15.3 100 12.93 200 13.3 0.0001 8.5E-05 0.000115 0.125 No. 120 0.0049 0.0058 0.038 0.163 1000 13.51 100 11.41 200 11.74 9E-05 7.7E-05 0.000104 0.106 No. 140 0.0041 0.0052 0.035 0.141 1000 12.39 100 10.47 200 10.77 7.1E-05 6E-05 8.2E-05 0.09 No. 170 0.0035 0.0046 0.032 0.122 1000 11.27 100 9.53 200 9.8 6.3E-05 5.4E-05 7.2E-05 0.075 No. 200 0.0029 0.0041 0.029 0.104 1000 10.23 100 8.64 250 9.02 5E-05 4.3E-05 5.8E-05 0.063 No. 230 0.0025 0.0037 0.026 0.089 1000 9.18 100 7.76 250 8.09 4.5E-05 3.8E-05 5.2E-05 0.053 No. 270 0.0021 0.0034 0.024 0.077 1000 8.44 100 7.13 250 7.44 3.6E-05 3.1E-05 4.1E-05 0.045 No. 325 0.0017 0.0031 0.022 0.067 1000 7.76 100 6.56 250 6.84 3.2E-05 2.7E-05 3.7E-05 0.038 No. 400 0.0015 0.0029 0.02 0.058 1000 7.09 100 5.99 300 6.31 3E-05 2.4E-05 3.5E-05 0.032 No. 450 0.0012 0.0027 0.018 0.05 1000 6.42 100 5.42 300 5.71 2.8E-05 2.3E-05 3.3E-05 0.025 No. 500 0.001 0.0025 0.016 0.041 1000 5.71 100 4.82 300 5.06 2.5E-05 2.1E-05 2.9E-05 0.02 No. 635 0.0008 0.0023 0.015 0.035 1000 5.33 100 4.51 300 4.75 2E-05 1.7E-05 2.3E-05 fluids-1.0.22/fluids/data/Miller 2E 1990 smooth bends Kb.csv0000644000175000017500000003456714302004506022256 0ustar nileshnileshx,.02 0.6477,10.1649 0.67321,10.4415 0.70379,10.7668 0.73292,11.0383 0.7429,11.1018 0.77515,11.3598 0.80568,11.5347 0.83903,11.6896 0.87884,11.8007 0.90642,11.8907 0.9476,11.9346 0.99064,11.9555 1.00996,11.9086 1.03765,11.9074 1.0538,11.8838 1.10167,11.7904 1.14728,11.7206 1.19708,11.5839 1.25146,11.4266 1.41886,10.9467 1.48045,10.7982 1.51517,10.6936 1.58094,10.5079 1.65915,10.2657 1.75135,10.0094 x,.03 0.500967,11.6903 0.52983,12.4317 0.55927,13.1186 0.58921,13.7902 0.61124,14.3858 0.64396,14.9772 0.67582,15.5332 0.70651,15.9555 0.73434,16.3265 0.76622,16.6738 0.80568,17.0279 0.84065,17.2898 0.87884,17.5217 0.90993,17.6891 0.94943,17.8231 0.95864,17.8225 1.00026,17.9229 1.04569,17.8509 1.09319,17.7107 1.17872,17.3674 1.23227,17.0657 1.25388,16.9334 1.31083,16.6714 1.37038,16.3502 1.42987,16.0973 1.49193,15.8177 1.5718,15.4528 1.66557,15.096 1.73452,14.834 1.80632,14.5484 1.87746,14.2684 1.89934,14.1855 1.98179,13.9123 2.10002,13.4606 2.23823,13.0234 2.33088,12.7235 2.46993,12.2867 2.59714,12.0034 2.69422,11.7046 2.80574,11.435 2.91625,11.1718 3.01942,10.9359 3.13834,10.6842 3.1688,10.6221 3.29997,10.3376 3.47663,10.0022 x,.04 0.506806,15.9452 0.52474,16.4426 0.5433,16.9228 0.56361,17.417 0.57349,17.6184 0.59493,18.098 0.61006,18.4485 0.63408,18.914 0.67321,19.6152 0.70651,20.226 0.71613,20.3816 0.74578,20.7751 0.77665,21.1763 0.82616,21.6668 0.86369,21.9999 0.87208,22.0415 0.91169,22.2512 0.95495,22.4195 0.9964,22.5024 1.03165,22.4994 1.07851,22.4522 1.11883,22.3626 1.17191,22.1868 1.22515,21.8435 1.25873,21.5899 1.31337,21.215 1.37303,20.8465 1.43263,20.4845 1.60246,19.512 1.68498,19.0988 1.76153,18.6948 1.83444,18.3349 1.91407,17.9471 2.07182,17.2629 2.16175,16.8978 2.24256,16.6048 2.33539,16.2851 2.44147,15.9406 2.60216,15.4525 2.72036,15.0965 2.83845,14.8058 2.96739,14.4646 3.10218,14.1586 3.14441,14.0491 3.2809,13.752 3.42994,13.4611 3.61356,13.1252 3.77042,12.8477 3.94169,12.5759 4.04973,12.406 4.22552,12.1436 4.40044,11.9098 4.58259,11.6581 4.78152,11.4115 4.97945,11.1918 5.3277,10.8281 5.559,10.6196 5.6455,10.5374 5.8792,10.3345 6.2179,10.0087 x,.05 0.504852,19.262 0.52372,19.7482 0.53704,20.1695 0.55604,20.6787 0.57682,21.2006 0.60419,21.861 0.6292,22.4124 0.65525,22.9334 0.66932,23.1984 0.70379,23.8285 0.72029,24.1036 0.75011,24.5691 0.77815,24.9956 0.80568,25.3319 0.84228,25.7709 0.92054,26.467 0.97734,26.7172 1.03765,26.6853 1.10167,26.5508 1.15172,26.3423 1.20869,26.0344 1.2636,25.7802 1.321,25.5285 1.39441,25.181 1.46057,24.8389 1.52103,24.5494 1.59012,24.2161 1.65915,23.8875 1.73452,23.6087 1.80981,23.2435 1.89202,22.9279 1.97415,22.6168 2.03218,22.3973 2.11631,22.051 2.20817,21.7518 2.30848,21.4152 2.41334,21.0838 2.53273,20.7172 2.72036,20.2573 2.91062,19.6178 3.12624,19.0166 3.1688,18.9059 3.31274,18.5416 3.42994,18.2554 3.54443,18.0083 3.67692,17.696 3.82913,17.3554 4.05756,16.9219 4.23369,16.6281 4.32461,16.4672 4.49493,16.1815 4.53855,16.1186 4.94113,15.5337 5.08638,15.3237 5.3174,15.0285 5.6346,14.6532 6.0755,14.1765 6.3392,13.9035 6.513,13.7421 6.8088,13.4774 7.0497,13.2437 7.3415,13.0138 7.6454,12.7879 8.0859,12.4687 8.4206,12.2523 8.7354,12.0398 9.2923,11.7163 10.0097,11.2698 x,.06 0.503878,21.583 0.5217,22.2134 0.54121,22.862 0.56035,23.4392 0.58242,24.077 0.61836,25.1145 0.63408,25.5024 0.65021,25.8963 0.67582,26.4986 0.70788,27.2188 0.73576,27.7445 0.7677,28.3346 0.79794,28.7708 0.80257,28.9371 0.83903,29.4954 0.86704,29.7774 0.91169,30.4098 0.9605,30.7575 1.0178,31.0485 1.06403,31.1631 1.11451,31.2177 1.16289,31.2125 1.21572,31.2072 1.27094,31.0219 1.33125,30.8374 1.39172,30.5952 1.45494,30.2965 1.52397,30.0004 1.60555,29.6494 1.67849,29.3599 1.75813,29.073 1.84154,28.7334 1.94013,28.3425 2.07983,27.8474 2.2296,27.2819 2.29958,27.0691 2.38093,26.7799 2.45566,26.5454 2.55978,26.1853 2.72036,25.6545 2.96452,24.9629 3.29042,24.0552 3.79233,22.7127 4.30377,21.5915 4.7769,20.5869 5.2663,19.8007 5.3898,19.6468 5.6346,19.2683 5.7113,19.1931 5.9478,18.86 6.0638,18.7498 6.4879,18.2105 6.7695,17.8598 7.215,17.3798 7.3274,17.2786 7.6307,16.9459 7.9619,16.6196 8.1172,16.4589 8.4696,16.1419 8.8201,15.8312 9.1498,15.5566 9.437,15.3167 9.7898,15.022 x,.08 0.505828,24.3704 0.52983,25.4219 0.5746,27.3987 0.59493,28.199 0.60303,28.4158 0.62436,29.3022 0.67582,30.9779 0.70651,31.943 0.73292,32.7492 0.76326,33.5106 0.79179,34.2901 0.80568,34.62 0.84065,35.4246 0.87545,36.1783 0.90993,36.8061 0.94943,37.4443 0.99256,38.0198 1.00996,38.3116 1.0538,38.7511 1.09743,39.2715 1.14728,39.4926 1.20869,39.7903 1.26972,39.9365 1.34028,40.0052 1.43817,40.1101 1.53431,39.9073 1.6227,39.7834 1.72117,39.6595 1.85225,39.2679 1.93265,38.9598 2.02826,38.7278 2.11631,38.424 2.21672,38.1219 2.25995,37.9724 2.36261,37.6016 2.44619,37.3077 2.53518,37.0159 2.85494,35.3939 3.2306,33.7772 3.47663,32.7418 3.84395,31.6126 4.18491,30.5242 4.48626,29.7033 5.2359,28.1253 6.1108,26.1226 7.077,24.6405 8.3236,22.7532 8.8714,22.0141 9.5286,21.1346 9.923,20.648 x,.1 0.505828,27.4122 0.52372,28.2129 0.53085,28.5397 0.54963,29.4299 0.56908,30.2895 0.61006,32.2086 0.63164,33.2133 0.65399,34.1834 0.67712,35.0464 0.70651,36.2782 0.73292,37.1937 0.75885,38.2063 0.77815,38.7965 0.82776,40.39 0.86036,41.3293 0.89425,42.209 0.91169,42.697 0.9476,43.5218 0.98873,44.5332 1.03965,45.7429 1.07851,46.537 1.12316,47.253 1.17418,48.072 1.22752,48.9051 1.30075,49.6542 1.38101,50.5117 1.44374,51.0908 1.51224,51.378 1.58399,51.866 1.65915,52.158 1.73117,52.452 1.80283,52.646 1.88837,52.84 1.97797,52.831 2.02435,52.724 2.11222,52.716 2.19966,52.606 2.29958,52.496 2.40869,52.183 2.53273,51.772 2.71511,51.0647 2.83845,50.6636 3.09022,49.4886 3.2306,48.9109 3.38715,48.2929 3.54443,47.4995 3.70544,46.7644 3.87376,45.952 4.05756,45.1534 4.23369,44.2838 4.34974,43.8543 4.52979,43.0101 4.73556,42.1815 5.09621,40.731 5.4843,39.2547 5.9766,37.4309 6.5635,35.5192 6.8484,34.6677 7.1872,33.7055 7.6973,32.5158 8.2436,31.097 8.5683,30.3227 8.8372,29.6828 9.1146,29.2249 9.3283,28.7196 9.6583,28.0589 10.029,27.3603 x,.12 0.507786,30.3028 0.5207,31.0091 0.52983,31.4891 0.5454,32.2848 0.56361,33.2279 0.59264,34.795 0.60303,35.4701 0.62075,36.3663 0.65779,38.2274 0.70515,40.5712 0.74866,42.565 0.78267,43.9758 0.81981,45.4331 0.85705,46.7583 0.91169,48.5851 0.97923,50.5789 1.01192,51.3586 1.0538,52.553 1.11236,53.979 1.16289,55.021 1.21572,56.082 1.29323,57.271 1.34937,57.928 1.41066,58.705 1.4719,59.493 1.5932,60.75 1.66557,61.446 1.73787,62.151 1.75135,62.269 1.83444,62.861 1.91038,63.46 2.02826,64.184 2.09192,64.424 2.18273,64.787 2.26432,65.028 2.36718,65.142 2.46517,65.132 2.52785,65.126 2.64268,64.989 2.75739,64.604 2.88265,64.22 3.05462,63.59 3.19337,62.726 3.41342,61.217 3.65568,59.513 3.85138,58.14 3.88876,58.026 4.05756,57.019 4.24188,55.92 4.42601,54.737 4.62707,53.58 4.8186,52.346 5.00839,51.3385 5.05699,51.139 5.338,49.6707 5.5375,48.6214 5.7113,47.8714 5.9478,46.7691 6.0755,46.2274 6.3148,45.1633 6.5762,44.1234 6.8352,43.1077 7.077,42.1974 7.3699,41.2257 7.8096,39.6573 8.1015,38.8195 8.4369,37.8526 8.7692,36.91 9.3644,35.2999 9.752,34.3544 10.0387,33.7271 x,.16 0.505828,33.889 0.51969,34.6787 0.52983,35.3512 0.53394,35.6238 0.5539,36.8767 0.57349,38.0271 0.59149,39.2138 0.60888,40.3601 0.6292,41.6997 0.64396,42.672 0.66545,43.9186 0.67061,44.1721 0.68501,45.1153 0.70379,46.3449 0.72728,47.791 0.75301,49.2817 0.77067,50.5281 0.8135,53.115 0.84065,54.772 0.85705,55.727 0.87376,56.807 0.91169,59.145 0.93668,60.757 0.96421,62.172 0.99256,64.113 1.01192,64.98 1.05177,66.876 1.09319,68.564 1.181,71.652 1.22989,73.035 1.2808,74.589 1.32868,75.884 1.38101,77.201 1.44374,78.842 1.52692,80.826 1.5932,82.227 1.66557,83.814 1.73787,85.597 1.81681,87.08 1.91038,88.758 1.93265,89.269 2.07182,91.51 2.16593,92.381 2.26432,93.26 2.37175,93.965 2.47949,94.677 2.52297,94.853 2.63758,95.02 2.76272,95.003 2.88265,94.804 3.01359,93.878 3.14441,93.502 3.28725,92.589 3.63456,89.568 3.79966,88.182 3.83653,87.839 3.91892,87.157 4.08114,85.479 4.2583,83.833 4.46896,81.585 4.76308,78.935 4.8093,78.628 5.2056,75.049 5.6238,71.772 6.1463,67.977 6.3761,66.541 6.6528,64.883 7.077,62.534 7.1457,62.171 7.7047,59.457 8.1015,57.75 8.4369,56.421 8.6849,55.444 9.1146,53.957 9.4735,52.614 9.7898,51.6023 10.0097,50.857 x,.14 1.01976,57.545 1.04771,58.433 1.12099,60.715 1.16514,62.127 1.18329,62.604 1.23227,64.06 1.25873,64.8 1.31083,66.051 1.39711,68.367 1.45213,69.419 1.53876,71.165 1.60866,72.399 1.68173,73.512 1.75813,74.642 1.94388,77.099 2.02826,77.833 2.11631,78.726 2.43676,80.836 2.52297,81.137 2.64268,81.436 2.76806,81.579 2.905,81.407 3.05462,81.234 3.17492,80.909 3.28725,80.045 3.39697,79.191 3.55128,78.115 3.68403,77.057 3.82174,75.721 3.93408,74.697 4.09694,73.401 4.21737,72.269 4.51233,69.517 4.87477,66.353 5.2816,62.786 5.7335,60.334 5.8792,59.176 6.23,56.924 6.6528,54.863 7.0225,52.776 7.2921,51.7108 7.5282,50.8639 7.985,48.9286 8.3236,48.0791 8.7269,46.2965 9.2923,44.6633 9.6211,43.7201 9.9807,42.6317 x,.18 1.15172,75.197 1.18787,76.8 1.20171,77.391 1.28824,80.723 1.34937,82.917 1.40522,84.681 1.46622,86.483 1.54173,88.832 1.55971,89.515 1.61489,91.599 1.66879,94.093 1.72117,96.656 1.78206,100.443 1.80981,102.392 1.87384,107.228 1.92148,111.648 1.97606,117.488 2.03218,124.351 2.07382,131.874 2.14926,137.436 2.21672,139.019 2.27308,137.672 2.37175,133.468 2.40404,131.925 2.48909,127.654 2.55238,125.204 2.73617,118.821 2.84943,115.861 2.97312,113.192 3.07237,111.017 3.20573,108.46 3.34489,106.166 3.49009,104.121 3.53077,103.516 3.69115,101.718 3.85138,99.759 3.94169,98.793 4.14469,96.887 4.35815,94.471 4.53855,92.831 4.87477,89.639 5.10606,87.912 5.4107,85.551 5.8679,82.131 6.1344,80.238 6.5004,77.933 6.8484,75.842 7.572,71.828 8.196,68.691 8.4696,67.371 8.8886,65.438 9.097,64.555 9.437,63.07 9.7898,61.618 x,.2 0.505828,38.1925 0.536,40.3799 0.55283,41.6402 0.57349,43.1879 0.6077,45.7495 0.62436,46.9059 0.63777,47.9075 0.64895,48.7428 0.68501,51.2875 0.70243,52.635 0.72238,54.174 0.75301,56.295 0.77665,58.164 0.81981,61.259 0.84554,63.171 0.88224,65.771 0.93668,70.211 0.96235,71.708 0.99833,73.802 1.02569,75.667 1.04771,76.986 1.08688,79.234 1.11883,80.923 1.16289,83.125 1.18329,83.925 1.22042,86.045 1.2734,88.726 1.31591,91.671 1.34676,93.628 1.38368,96.738 1.39711,97.86 1.44933,103.274 1.46906,105.482 1.48618,107.738 1.50787,111.645 1.53431,115.58 1.55069,120.467 1.57636,125.196 1.58552,131.376 1.60711,145.785 1.61021,157.018 1.61177,179.188 2.75739,154.442 2.77878,150.035 2.81117,148.302 2.83571,144.209 2.92189,137.141 3.03111,131.554 3.13229,127.05 3.36433,118.955 3.60658,113.984 3.75588,111.359 3.91892,109.215 4.11279,107.109 4.28304,105.453 4.40044,104.43 4.59145,102.419 4.69005,101.624 4.88419,99.86 5.2258,96.988 5.369,95.862 5.5805,94.199 5.7445,92.925 6.1463,89.732 6.4255,88.173 6.7044,86.309 7.0907,83.992 7.4128,82.215 8.1015,78.621 8.4206,77.108 8.7523,75.334 9.1146,73.741 9.5655,71.902 9.9518,70.111 x,.22 0.97357,78.205 1.01583,80.797 1.05993,83.799 1.09743,86.413 1.11236,87.414 1.16289,91.715 1.21337,96.973 1.2636,103.728 1.3083,110.955 1.35198,122.641 1.37834,133.49 1.39038,138.6 1.39981,160.316 1.40116,165.817 1.40251,167.908 1.40387,172.335 3.02818,177.893 3.03697,178.578 3.04578,175.504 3.05757,173.315 3.07831,169.347 3.0962,167.395 3.14745,161.208 3.16268,159.504 3.20573,155.248 3.28725,148.499 3.35136,145.091 3.67692,131.963 3.82174,128.43 3.97226,125.473 4.05756,124.02 4.23369,121.631 4.43457,118.828 4.54733,117.677 4.71731,115.859 4.85598,114.513 5.1856,111.221 5.3898,109.291 5.6238,107.186 5.6783,106.769 5.9248,104.713 6.0638,103.5 6.3515,101.309 6.6016,99.36 6.8749,97.635 7.5282,93.187 8.2436,88.942 8.4696,87.571 8.8201,85.72 9.1146,84.397 9.5102,82.453 10.0387,79.701 x,.24 0.506806,42.0577 0.515693,42.7086 0.53291,43.9563 0.54646,44.8943 0.57239,46.8313 0.59149,48.2925 0.61717,50.4741 0.63042,51.5519 0.65021,53.161 0.67061,54.82 0.70515,57.85 0.73861,60.93 0.76622,63.317 0.8088,67.074 0.87208,72.57 0.91522,76.878 0.95126,81.13 0.98112,84.31 1.03564,92.466 1.0538,95.357 1.07332,99.578 1.1038,105.192 1.11775,111.774 1.13845,119.8 1.14949,130.026 1.15953,141.534 1.16289,160.585 1.16627,179.585 3.42002,179.013 3.46657,174.91 3.52395,170.733 3.57537,166.658 3.6451,161.583 3.72697,157.418 3.82913,153.061 3.9646,147.535 4.05756,144.426 4.20923,140.289 4.41747,135.478 4.58259,132.106 4.78152,129.063 5.08638,124.871 5.3072,122.703 5.6674,119.174 5.9134,117.105 6.0755,115.746 6.3515,113.516 6.64,111.329 6.9282,109.185 7.077,108.128 7.3842,105.842 7.6899,104.005 8.1172,101.213 8.4369,99.266 8.6181,98.305 8.9748,96.227 9.1498,95.481 9.547,93.281 x,.26 3.78867,180.502 3.83653,177.559 3.94931,171.153 4.04973,166.578 4.17684,160.876 4.29962,156.574 4.55612,149.172 4.74472,145.176 5.00839,139.386 5.3898,134.593 5.7668,130.974 6.0872,127.952 6.2541,126.467 6.5382,124.27 6.822,121.642 7.1457,119.068 7.4559,117 7.7945,114.746 8.1015,112.755 8.4532,110.584 8.7692,109.086 9.1322,106.986 9.5286,104.925 9.7709,103.908 10.0581,102.405 x,.28 4.14469,180.265 4.20111,178.183 4.34974,172.413 4.60478,163.789 4.91258,156.796 5.14566,153.182 5.369,150.232 5.5697,146.775 5.8003,144.227 6.0872,141.174 6.3637,138.454 6.4628,137.913 6.7304,135.258 7.0907,132.393 7.4128,130.093 7.4992,129.337 7.8398,126.845 8.1015,124.887 8.4532,122.719 9.1146,118.727 9.5286,116.664 9.9422,114.417 x,.3 0.511724,47.8559 0.5217,48.784 0.54016,50.5975 0.55711,52.277 0.56688,53.292 0.58581,55.167 0.639,60.964 0.6452,61.553 0.65652,62.868 0.67582,65.081 0.68767,66.6 0.70515,68.813 0.72869,71.924 0.75011,74.456 0.77515,78.425 0.80724,83.564 0.82616,87.009 0.85045,92.003 0.86871,95.336 0.88565,100.134 0.90032,105.173 0.92143,113.706 0.92947,122.346 0.94303,130.125 0.94668,138.272 0.95402,143.981 0.95679,152.407 0.9605,180.067 0.96142,170.274 4.48626,178.137 4.65395,172.701 4.83725,168.076 5.08147,162.782 5.4002,158.257 5.6346,154.91 5.8792,151.927 6.194,148.708 6.4879,146.688 6.7826,144.14 8.0859,135.162 8.4532,133.07 8.8372,130.759 9.1322,128.989 9.547,126.748 9.9614,124.788 x,.4 0.50242,54.67 0.52983,57.802 0.56963,62.179 0.60653,67.278 0.64895,73.499 0.66545,76.234 0.72378,86.468 0.77665,99.51 0.81114,112.996 0.81981,120.299 0.83499,131.321 0.84881,144.882 0.85539,162.333 0.86286,179.275 x,.6 0.503392,67.326 0.51769,68.365 0.54699,71.381 0.58298,75.687 0.6292,83.082 0.65652,89.383 0.68369,97.095 0.72099,113.266 0.74578,129.992 0.76696,153.866 0.77665,180.041 x,.8 0.503878,76.758 0.536,79.144 0.55658,81.849 0.58242,87.379 0.61479,95.832 0.6477,110.828 0.66803,124.646 0.68767,144.163 0.693,157.226 0.69703,179.423 x,1 0.503392,87.176 0.517189,88.181 0.52881,89.631 0.53756,92.166 0.55283,98.59 0.57128,105.358 0.58468,112.921 0.59723,119.867 0.60947,130.094 0.61776,138.767 0.6286,150.318 0.63962,169.395 0.64396,179.651 fluids-1.0.22/fluids/data/Miller 2E 1990 Kb mitre bend.csv0000644000175000017500000000240014302004506021657 0ustar nileshnileshx,1 4.6184,0.02 6.4192,0.0219119 7.6847,0.023494 8.8531,0.0252742 9.9241,0.0270093 11.0925,0.0290558 12.2611,0.031466 13.3322,0.03385 14.4034,0.036415 16.0589,0.040901 17.0329,0.044147 18.0068,0.047492 19.0781,0.05126 19.8817,0.054734 20.4904,0.057385 21.4158,0.061939 22.3898,0.066854 23.2666,0.072158 24.3382,0.079187 25.3122,0.085471 26.4567,0.093408 27.9417,0.103276 29.0128,0.111101 30.084,0.11952 31.2524,0.128576 32.3236,0.138778 33.5893,0.14979 34.7577,0.161139 35.5366,0.168806 36.705,0.181596 37.5082,0.190393 38.2384,0.199121 39.139,0.209809 40.21,0.223841 41.5727,0.239208 42.8382,0.25648 44.201,0.274999 45.661,0.294855 47.1208,0.31405 48.5808,0.33561 50.1378,0.35628 51.5976,0.37948 53.6411,0.40823 55.2953,0.43193 56.8522,0.45701 57.2414,0.46312 58.9928,0.49001 60.2577,0.51162 62.0091,0.54133 63.6633,0.57276 65.9011,0.61208 67.7495,0.64333 69.5008,0.67842 71.3493,0.71306 73.1978,0.74947 75.0463,0.78774 76.8947,0.82796 78.7431,0.86735 80.5915,0.90861 82.0021,0.94085 83.5101,0.97908 85.1639,1.02057 87.0122,1.06558 89.0549,1.10889 91.1948,1.15013 93.3346,1.18895 95.5716,1.22909 97.7113,1.26637 99.8509,1.30045 100.3372,1.30911 102.574,1.33545 104.8107,1.36685 107.1447,1.39435 109.3814,1.4224 111.7152,1.44142 113.9518,1.46554 116.3342,1.48267 119.5673,1.50125 fluids-1.0.22/fluids/data/ISO 3310-1 sieves.csv0000644000175000017500000001232514302004506017737 0ustar nileshnileshSize, m + X (any aperture size) +/- Y (Average aperture size) Maximum standard deviation Preferred wire size Maximum wire size Minimum wire size 0.125 0.00406 0.0033 0.008 0.0092 0.0068 0.112 0.00374 0.00296 0.008 0.0092 0.0068 0.106 0.00359 0.0028 0.0063 0.0072 0.0054 0.1 0.00344 0.00265 0.0063 0.0072 0.0054 0.09 0.00318 0.00239 0.0063 0.0072 0.0054 0.08 0.00291 0.00213 0.0063 0.0072 0.0054 0.075 0.00278 0.002 0.0063 0.0072 0.0054 0.071 0.00267 0.00189 0.0056 0.0064 0.0048 0.063 0.00244 0.00169 0.0056 0.0064 0.0048 0.056 0.00224 0.0015 0.005 0.0058 0.0043 0.053 0.00215 0.00142 0.005 0.0058 0.0043 0.05 0.00206 0.00134 0.005 0.0058 0.0043 0.045 0.00191 0.00121 0.001 0.0045 0.0052 0.0038 0.04 0.00175 0.00108 0.001 0.0045 0.0052 0.0038 0.0375 0.00167 0.00101 0.001 0.0045 0.0052 0.0038 0.0355 0.0016 0.00096 0.001 0.004 0.0046 0.0034 0.0315 0.00147 0.00085 0.000905 0.004 0.0046 0.0034 0.028 0.00135 0.00076 0.000801 0.00355 0.0041 0.003 0.0265 0.00129 0.00072 0.000757 0.00355 0.0041 0.003 0.025 0.00124 0.00068 0.000713 0.00355 0.0041 0.003 0.0224 0.00114 0.00061 0.000641 0.00355 0.0041 0.003 0.02 0.00105 0.00055 0.000575 0.00315 0.0036 0.0027 0.019 0.00101 0.00052 0.000548 0.00315 0.0036 0.0027 0.018 0.00097 0.00049 0.00052 0.00315 0.0036 0.0027 0.016 0.00089 0.00044 0.000467 0.00315 0.0036 0.0027 0.014 0.00081 0.00039 0.000413 0.0028 0.0032 0.0024 0.0132 0.00078 0.00037 0.000392 0.0028 0.0032 0.0024 0.0125 0.00075 0.00035 0.000374 0.0025 0.0029 0.0021 0.0112 0.00069 0.00031 0.000339 0.0025 0.0029 0.0021 0.01 0.00064 0.00028 0.000307 0.0025 0.0029 0.0021 0.0095 0.00061 0.00027 0.000294 0.00224 0.0026 0.0019 0.009 0.00059 0.00025 0.000281 0.00224 0.0026 0.0019 0.008 0.00054 0.00022 0.000254 0.002 0.0023 0.0017 0.0071 0.0005 0.0002 0.000229 0.0018 0.0021 0.0015 0.0067 0.00048 0.00019 0.000218 0.0018 0.0021 0.0015 0.0063 0.00046 0.00018 0.000207 0.0018 0.0021 0.0015 0.0056 0.00042 0.00016 0.000188 0.0016 0.0019 0.0013 0.005 0.00039 0.00014 0.000171 0.0016 0.0019 0.0013 0.00475 0.00037 0.00014 0.000164 0.0016 0.0019 0.0013 0.0045 0.00036 0.00013 0.000157 0.0014 0.0017 0.0012 0.004 0.00033 0.00011 0.000143 0.0014 0.0017 0.0012 0.00355 0.0003 0.0001 0.00013 0.00125 0.0015 0.00106 0.00335 0.00029 0.0001 0.000124 0.00125 0.0015 0.00106 0.00315 0.00028 9E-05 0.000118 0.00125 0.0015 0.00106 0.0028 0.00026 8E-05 0.000108 0.00112 0.0013 0.00095 0.0025 0.00024 7E-05 9.8E-05 0.001 0.00115 0.00085 0.00236 0.00023 7E-05 9.4E-05 0.001 0.00115 0.00085 0.00224 0.00022 7E-05 9E-05 0.0009 0.00104 0.00077 0.002 0.0002 6E-05 8.3E-05 0.0009 0.00104 0.00077 0.0018 0.00019 5E-05 7.6E-05 0.0008 0.00092 0.00068 0.0017 0.00018 5E-05 7.3E-05 0.0008 0.00092 0.00068 0.0016 0.00017 5E-05 7E-05 0.0008 0.00092 0.00068 0.0014 0.00016 4E-05 6.3E-05 0.00071 0.00082 0.0006 0.00125 0.00015 4E-05 5.8E-05 0.00063 0.00072 0.00054 0.00118 0.00014 4E-05 5.6E-05 0.00063 0.00072 0.00054 0.00112 0.00014 3E-05 5.3E-05 0.00056 0.00064 0.00048 0.001 0.00013 3E-05 4.9E-05 0.00056 0.00064 0.00048 0.0009 0.000118 2.8E-05 4.55E-05 0.0005 0.00058 0.00043 0.00085 0.000114 2.6E-05 4.36E-05 0.0005 0.00058 0.00043 0.0008 0.000109 2.5E-05 4.18E-05 0.00045 0.00052 0.00038 0.00071 0.000101 2.2E-05 3.84E-05 0.00045 0.00052 0.00038 0.00063 9.3E-05 2E-05 3.52E-05 0.0004 0.00046 0.00034 0.0006 9.1E-05 1.9E-05 3.4E-05 0.0004 0.00046 0.00034 0.00056 8.7E-05 1.8E-05 3.24E-05 0.000355 0.00041 0.0003 0.0005 8E-05 1.6E-05 3E-05 0.000315 0.00036 0.00027 0.00045 7.5E-05 1.5E-05 2.79E-05 0.00028 0.00032 0.00024 0.000425 7.3E-05 1.4E-05 2.68E-05 0.00028 0.00032 0.00024 0.0004 7E-05 1.3E-05 2.57E-05 0.00025 0.00029 0.00021 0.000355 6.5E-05 1.2E-05 2.37E-05 0.000224 0.00026 0.00019 0.000315 6E-05 1.1E-05 2.19E-05 0.0002 0.00023 0.00017 0.0003 5.8E-05 1E-05 2.12E-05 0.0002 0.00023 0.00017 0.00028 5.6E-05 1E-05 2.03E-05 0.00018 0.00021 0.00015 0.00025 5.2E-05 8.9E-06 1.88E-05 0.00016 0.00019 0.00013 0.000224 4.9E-05 8.1E-06 1.75E-05 0.00016 0.00019 0.00013 0.000212 4.7E-05 7.8E-06 1.69E-05 0.00014 0.00017 0.00012 0.0002 4.5E-05 7.4E-06 1.63E-05 0.00014 0.00017 0.00012 0.00018 4.3E-05 6.8E-06 1.53E-05 0.000125 0.00015 0.000106 0.00016 4E-05 6.3E-06 1.42E-05 0.000112 0.00013 9.5E-05 0.00015 3.8E-05 6E-06 1.37E-05 0.0001 0.000115 8.5E-05 0.00014 3.7E-05 5.7E-06 1.31E-05 0.0001 0.000115 8.5E-05 0.000125 3.4E-05 5.2E-06 1.22E-05 9E-05 0.000104 7.7E-05 0.000112 3.2E-05 4.8E-06 1.15E-05 8E-05 9.2E-05 6.8E-05 0.000106 3.1E-05 4.7E-06 1.11E-05 7.1E-05 8.2E-05 6E-05 0.0001 3E-05 4.5E-06 1.08E-05 7.1E-05 8.2E-05 6E-05 9E-05 2.9E-05 4.2E-06 1.01E-05 6.3E-05 7.2E-05 5.4E-05 8E-05 2.7E-05 3.9E-06 9.4E-06 5.6E-05 6.4E-05 4.8E-05 7.5E-05 2.6E-05 3.7E-06 9.1E-06 5E-05 5.8E-05 4.3E-05 7.1E-05 2.5E-05 3.6E-06 8.9E-06 5E-05 5.8E-05 4.3E-05 6.3E-05 2.4E-05 3.4E-06 8.3E-06 4.5E-05 5.2E-05 5.2E-05 5.6E-05 2.2E-05 3.2E-06 7.8E-06 4E-05 4.6E-05 4.6E-05 5.3E-05 2.1E-05 3.1E-06 7.6E-06 3.6E-05 4.1E-05 4.1E-05 5E-05 2.1E-05 3E-06 7.3E-06 3.6E-05 4.1E-05 4.1E-05 4.5E-05 2E-05 2.8E-06 6.9E-06 3.2E-05 3.7E-05 3.7E-05 4E-05 1.9E-05 2.7E-06 6.5E-06 3.2E-05 3.7E-05 3.7E-05 3.8E-05 1.8E-05 2.6E-06 6.4E-06 3E-05 3.5E-05 3.5E-05 3.6E-05 1.8E-05 2.6E-06 6.3E-06 3E-05 3.5E-05 3.5E-05 3.2E-05 1.7E-05 2.4E-06 5.9E-06 2.8E-05 3.3E-05 3.3E-05 2.5E-05 1.5E-05 2.2E-06 5.2E-06 2.5E-05 2.9E-05 2.9E-05 2E-05 1.3E-05 2.1E-06 4.7E-06 2E-05 2.3E-05 2.3E-05 fluids-1.0.22/fluids/data/Miller 2E 1990 smooth bends outlet tangent length correction.csv0000644000175000017500000001107714302004506030240 0ustar nileshnileshx,.1 4.44089e-16,0.61082 0.4091,0.61057 0.7792,0.60499 1.2273,0.59546 1.6753,0.5848 2.0844,0.57435 2.513,0.56159 2.9416,0.54671 3.3701,0.5334 3.7987,0.52041 4.2273,0.50773 4.9481,0.49413 5.3766,0.49174 5.8247,0.48936 6.0584,0.48282 6.4481,0.48797 6.8961,0.48882 7.3442,0.49075 8.5325,0.49996 9.6234,0.50939 10.0714,0.51366 10.5195,0.51911 10.987,0.52576 11.4351,0.5325 11.9026,0.53932 12.3701,0.54744 12.8182,0.55324 13.2468,0.56158 13.6753,0.5688 14.026,0.57489 14.474,0.58098 14.9221,0.58844 16.0325,0.6075 16.4805,0.61665 16.9481,0.62455 17.3766,0.63536 17.8247,0.64493 18.2727,0.65609 18.7013,0.66745 19.1688,0.67749 19.5779,0.68924 20.3377,0.70869 20.7857,0.72095 20.9026,0.72404 21.3506,0.73657 21.7792,0.74768 22.2273,0.76061 22.6753,0.77377 23.1039,0.78717 23.513,0.7973 23.8831,0.80937 24.3117,0.82339 24.7597,0.83763 25.1883,0.85027 25.5974,0.86501 26.0065,0.87807 26.5714,0.89315 27,0.91062 27.4286,0.92436 27.8766,0.94035 28.3247,0.95241 28.7532,0.96678 29.1429,0.97279 29.5909,0.98527 30.1364,0.99562 x,.15 0.0195,0.86109 0.4286,0.84943 0.8571,0.83057 1.4805,0.79254 1.8312,0.76484 2.2208,0.73645 2.5714,0.71384 2.9221,0.69346 3.3312,0.67361 4.3636,0.63267 4.7922,0.61999 5.2403,0.61023 5.7857,0.59792 6.4091,0.591 6.9935,0.59064 7.4416,0.59298 7.8312,0.59535 8.0455,0.59653 8.513,0.59888 8.961,0.60124 9.4286,0.60361 9.7208,0.60876 10.1688,0.61251 10.6169,0.61765 11.0455,0.62421 11.513,0.62943 11.9416,0.63471 12.3701,0.64287 12.7987,0.6497 13.2273,0.65805 13.6753,0.66649 14.026,0.67066 14.4351,0.67929 14.8636,0.68802 16.0519,0.70869 16.5,0.71778 16.9481,0.72699 17.3766,0.73471 17.8247,0.7425 18.2727,0.75038 18.7208,0.76 19.1883,0.76974 19.6169,0.77963 20.0455,0.78618 21.0974,0.80813 21.5649,0.82028 22.013,0.82898 22.461,0.84146 22.9091,0.85039 23.3571,0.8594 23.8052,0.87043 24.2532,0.88159 25.1299,0.90837 25.5584,0.9241 26.0065,0.93802 26.4156,0.95218 26.5714,0.95623 27.039,0.96848 27.487,0.98307 28.2078,0.99759 x,.2 -0.0097,1.19934 0.4286,1.18698 0.8377,1.15301 1.2078,1.11024 1.5195,1.06912 1.8117,1.02276 2.0844,0.97521 2.4448,0.92113 2.7468,0.88458 3.1558,0.8438 3.4773,0.81388 3.7597,0.79069 4.1299,0.76472 4.2662,0.75624 4.6558,0.73623 5.0455,0.71833 6.0584,0.68516 6.5065,0.67586 6.9545,0.66816 7.4026,0.66492 7.8896,0.66458 8.2987,0.66577 8.7273,0.66548 9.1558,0.67107 9.6039,0.67372 10.0519,0.67638 10.461,0.68057 10.9481,0.68625 12.526,0.7097 12.974,0.71565 13.4416,0.72322 13.8896,0.73089 14.026,0.73401 14.474,0.74179 14.9416,0.74964 15.3506,0.75762 15.8182,0.76395 16.2662,0.77205 16.7338,0.78022 18.3312,0.80864 18.7597,0.81723 19.2078,0.8259 19.6558,0.83282 20.0649,0.84168 20.4935,0.85062 20.9026,0.85968 21.3506,0.87262 21.7987,0.88188 23.0065,0.90835 23.474,0.91998 23.9026,0.92976 24.3312,0.93963 24.7987,0.95167 25.2273,0.9639 25.6753,0.97841 26.25,0.99685 x,.25 0.0195,2.71701 0.4675,2.68603 0.7159,2.65157 1.1104,2.6028 1.539,2.53383 1.9091,2.46141 2.2792,2.37532 2.6104,2.28729 2.9805,2.16399 3.2338,2.07025 3.4919,1.95134 3.6867,1.84547 3.8377,1.74542 3.9692,1.64358 4.0812,1.52656 4.2175,1.41628 4.3247,1.33294 4.4269,1.25451 4.5682,1.17223 4.7922,1.02582 4.9042,0.96918 5.0114,0.92326 5.1575,0.88434 5.3474,0.8419 5.5325,0.8144 5.7516,0.78647 6.1558,0.75477 6.5844,0.73639 7.013,0.72322 7.461,0.71813 7.9286,0.71778 8.3571,0.71589 8.8247,0.71712 9.2338,0.72157 9.6039,0.72289 10.0325,0.73379 10.4805,0.73994 10.9481,0.74777 11.3961,0.75403 11.8247,0.76037 12.2922,0.76672 12.7403,0.77485 13.2078,0.78133 13.6558,0.78788 14.4935,0.79942 14.9026,0.80616 15.0779,0.80957 15.5455,0.81994 15.974,0.82501 16.4221,0.83192 16.8701,0.84074 17.3961,0.84959 17.8442,0.85482 18.3117,0.86387 18.7597,0.87303 19.1883,0.87842 19.6169,0.88775 19.8117,0.89149 20.2403,0.89898 20.6786,0.90802 20.9026,0.91433 21.3701,0.92401 21.7987,0.93588 22.2468,0.9458 22.6948,0.96005 23.1039,0.97026 23.5519,0.98055 x,1 0.0195,2.71402 0.5942,2.68568 1.1299,2.64899 1.5584,2.6016 2.0065,2.54378 2.4156,2.47643 2.8052,2.4056 3.1948,2.32653 3.526,2.2502 3.8571,2.16681 4.1883,2.07735 4.461,1.99169 4.6656,1.93084 4.9188,1.85127 5.1818,1.7594 5.3961,1.67585 5.6104,1.59276 5.8442,1.50546 6.0779,1.42607 6.3312,1.3613 6.5844,1.29946 6.7208,1.27099 7.013,1.21588 7.4513,1.1452 7.8896,1.09177 8.4545,1.03841 8.8636,1.01092 9.6039,0.96877 10.0519,0.94933 10.4805,0.94059 10.9091,0.92989 11.3571,0.92131 11.8052,0.91886 12.2532,0.9144 12.7987,0.90788 13.1883,0.90552 13.6169,0.90313 14.2695,0.90451 15.1169,0.90771 15.4675,0.90939 15.9156,0.91499 16.3831,0.92061 16.8312,0.92628 16.9481,0.92821 17.3766,0.93395 17.8052,0.9418 18.2532,0.94969 18.6818,0.95346 19.1494,0.95932 19.5584,0.96527 19.9675,0.97126 20.4156,0.97724 20.8442,0.98328 21.5649,0.99671 fluids-1.0.22/fluids/data/Miller 2E 1990 abrupt contraction K.csv0000644000175000017500000000571614302004506023322 0ustar nileshnileshx,.1 0.00123,0.086311 0.03414,0.086886 0.06847,0.086753 0.09851,0.086637 0.13142,0.08651 0.16575,0.086378 0.20008,0.085544 0.23441,0.084008 0.26731,0.083179 0.3002,0.081648 0.3331,0.080118 0.36599,0.079289 0.39889,0.077057 0.43321,0.074819 0.46752,0.07188 0.49898,0.069653 0.53331,0.067415 0.56619,0.06378 0.59907,0.059442 0.60335,0.058724 0.63767,0.055083 0.67055,0.050745 0.70342,0.045706 0.73629,0.039965 0.76916,0.033523 0.79916,0.027091 0.80488,0.026367 0.83774,0.019924 0.88204,0.011683 0.92564,0.005901 0.98926,-0.001713 x,.04 0.00077,0.24912 0.03367,0.248291 0.06656,0.246059 0.09945,0.243827 0.13377,0.240887 0.16665,0.23655 0.20417,0.231317 0.23382,0.225764 0.26669,0.219322 0.29955,0.212879 0.33098,0.205038 0.39953,0.185125 0.43095,0.176582 0.45807,0.166653 0.48663,0.15742 0.51662,0.14748 0.54517,0.137545 0.57373,0.128312 0.60228,0.117675 0.63083,0.107741 0.66795,0.094966 0.69507,0.084335 0.72362,0.073698 0.73361,0.070151 0.76073,0.05952 0.78785,0.048889 0.80497,0.042507 0.83353,0.032572 0.85601,0.023889 0.87636,0.01767 0.90457,0.010895 0.94209,0.005311 0.99069,-0.001718 x,.06 0.00038,0.183858 0.03471,0.183024 0.06903,0.180786 0.10335,0.178548 0.13481,0.17562 0.16769,0.171984 0.20057,0.167647 0.23488,0.164006 0.26919,0.159663 0.30207,0.154624 0.33351,0.148888 0.36637,0.142446 0.39495,0.13602 0.39924,0.136003 0.4321,0.12956 0.46354,0.123123 0.49496,0.115283 0.5264,0.108144 0.60211,0.090308 0.63211,0.083174 0.66354,0.074632 0.69496,0.06609 0.72496,0.058956 0.75495,0.049718 0.7835,0.040485 0.80493,0.034788 0.83635,0.026246 0.87206,0.017336 0.90993,0.00912 0.96067,0.001906 0.98854,-0.002061 x,.02 7e-05,0.37193 0.02867,0.369012 0.0601,0.361873 0.09152,0.353331 0.12294,0.344789 0.15294,0.336954 0.18293,0.328417 0.20149,0.322029 0.23148,0.312791 0.26004,0.303558 0.29679,0.289907 0.32927,0.278027 0.36495,0.264732 0.39992,0.251088 0.42704,0.240457 0.45559,0.229821 0.47841,0.21868 0.50838,0.205757 0.53406,0.19443 0.55831,0.182407 0.58542,0.170372 0.60253,0.160481 0.62821,0.149154 0.65246,0.136429 0.67671,0.124406 0.70095,0.111681 0.72341,0.098611 0.73802,0.090134 0.75656,0.079887 0.77937,0.067167 0.80505,0.054437 0.83073,0.043109 0.85784,0.031777 0.88639,0.02114 0.91067,0.014555 0.92888,0.009046 0.94995,0.004053 0.98998,-0.001189 x,0 0.00511,0.497875 0.01225,0.495391 0.04224,0.486153 0.07223,0.477616 0.10222,0.469079 0.13508,0.460531 0.16507,0.452696 0.1922,0.44417 0.2022,0.440623 0.23219,0.431385 0.26075,0.422853 0.2893,0.412918 0.31357,0.404053 0.33641,0.395895 0.36352,0.384562 0.39064,0.373229 0.40062,0.367577 0.42774,0.356946 0.45198,0.344922 0.47622,0.331495 0.49904,0.318776 0.52042,0.30536 0.53752,0.294066 0.5589,0.28065 0.57884,0.265836 0.59736,0.253133 0.60161,0.246801 0.62156,0.232689 0.63934,0.21648 0.65643,0.202379 0.67992,0.182639 0.69843,0.167831 0.7155,0.152326 0.73401,0.13822 0.75109,0.122715 0.76816,0.107211 0.78453,0.093112 0.81088,0.073362 0.83226,0.059946 0.85507,0.046524 0.87932,0.034501 0.905,0.022472 0.93355,0.012537 0.96284,0.005407 0.98784,4.7e-05 fluids-1.0.22/fluids/data/3 phase power.csv0000644000175000017500000001013514302004506017656 0ustar nileshnileshCountry code Country 3-phase voltage Frequency ad Andorra 400 50 cf Central African Republic 380 50 ae United Arab Emirates 400 50 af Afghanistan 380 50 ag Antigua and Barbuda 400 60 ai Anguilla 120, 208, 127, 220, 240, 415 60 al Albania 400 50 am Armenia 400 50 ao Angola 380 50 ar Argentina 380 50 at Austria 400 50 au Australia 400 50 az Azerbaijan 380 50 ba Bosnia & Herzegovina 400 50 bb Barbados 200 50 bd Bangladesh 380 50 be Belgium 400 50 bf Burkina Faso 380 50 bg Bulgaria 400 50 bh Bahrain 400 50 bi Burundi 380 50 bj Benin 380 50 bm Bermuda 208 60 bn Brunei 415 50 bo Bolivia 400 50 br Brazil 220 , 380 60 bs Bahamas 208 60 bt Bhutan 400 50 bw Botswana 400 50 by Belarus 380 50 bz Belize 190 , 380 60 ca Canada 120, 208 , 240 , 480 , 347, 600 60 cd Democratic Republic of Congo 380 50 cg People's Republic of Congo 400 50 ch Switzerland 400 50 ci Côte d’Ivoire 380 50 cl Chile 380 50 cm Cameroon 380 50 cn China 380 50 co Colombia 220 , 440 60 cr Costa Rica 240 60 cu Cuba 190 , 440 60 cv Cape Verde 400 50 cy Cyprus 400 50 cz Czech Republic 400 50 de Germany 400 50 dj Djibouti 380 50 dk Denmark 400 50 dm Dominica 400 50 do Dominican Republic 120, 208 , 277, 480 60 dz Algeria 400 50 ec Ecuador 208 60 ee Estonia 400 50 eg Egypt 380 50 er Eritrea 400 50 es Spain 400 50 et Ethiopia 380 50 fi Finland 400 50 fj Fiji 415 50 fk Falkland Islands 415 50 fo Faeroe Islands 400 50 fr France 400 50 ga Gabon 380 50 gb United Kingdom 415 50 gd Grenada 400 50 gh Ghana 400 50 gi Gibraltar 400 50 gm Gambia 400 50 gn Guinea 380 50 gr Greece 400 50 gt Guatemala 208 60 gu Guam 190 60 gw Guinea-Bissau 380 50 gy Guyana 190 60 hn Honduras 208 , 230 , 240 , 460 , 480 60 hr Croatia 400 50 ht Haiti 190 60 hu Hungary 400 50 id Indonesia 400 50 ie Ireland 415 50 il Israel 400 50 im Isle of Man 415 50 in India 400 50 iq Iraq 400 50 ir Iran 400 50 is Iceland 400 50 it Italy 400 50 jm Jamaica 190 50 jo Jordan 400 50 jp Japan 200 50 ke Kenya 415 50 kg Kyrgyzstan 380 50 kh Cambodia 400 50 km Comoros 380 50 kp North Korea 380 50 kr South Korea 380 60 kw Kuwait 415 50 ky Cayman Islands 240 60 kz Kazakhstan 380 50 la Laos 400 50 lb Lebanon 400 50 lc Saint Lucia 400 50 li Liechtenstein 400 50 lk Sri Lanka 400 50 lr Liberia 208 60 ls Lesotho 380 50 lt Lithuania 400 50 lu Luxembourg 400 50 lv Latvia 400 50 ly Libya 400 50 ma Morocco 380 50 mc Monaco 400 50 md Moldova 400 50 me Montenegro 400 50 mg Madagascar 380 50 mk Macedonia, Republic of 400 50 ml Mali 380 50 mm Myanmar 400 50 mn Mongolia 400 50 mr Mauritania 220 50 ms Montserrat 400 60 mu Mauritius 400 50 mv Maldives 400 50 mw Malawi 400 50 mx Mexico 220 , 480 60 my Malaysia 415 50 mz Mozambique 380 50 na Namibia 380 50 ne Niger 380 50 ng Nigeria 415 50 ni Nicaragua 208 60 nl Netherlands 400 50 no Norway 230 , 400 50 mt Malta 400 50 np Nepal 400 50 nr Nauru 415 50 nz New Zealand 400 50 om Oman 415 50 pa Panama 240 60 pe Peru 220 60 pg Papua New Guinea 415 50 ph Philippines 380 60 pk Pakistan 400 50 pl Poland 400 50 pw Palau 208 60 py Paraguay 380 50 qa Qatar 415 50 ro Romania 400 50 xk Kosovo 230 , 400 50 rs Serbia 400 50 ru Russia 380 50 rw Rwanda 400 50 sa Saudi Arabia 400 60 sc Seychelles 240 50 sd Sudan 400 50 se Sweden 400 50 sg Singapore 400 50 si Slovenia 400 50 sk Slovakia 400 50 sl Sierra Leone 400 50 sm San Marino 400 50 sn Senegal 400 50 so Somalia 380 50 sr Suriname 220 , 400 60 ss South Sudan 400 50 st São Tomé and Príncipe 400 50 sv El Salvador 200 60 sy Syria 380 50 sz Swaziland 400 50 tc Turks and Caicos Islands 240 60 td Chad 380 50 tg Togo 380 50 th Thailand 400 50 tj Tajikistan 380 50 tl East Timor 380 50 tm Turkmenistan 380 50 tn Tunisia 400 50 to Tonga 415 50 tr Turkey 400 50 tt Trinidad & Tobago 115, 230 , 230, 400 60 tw Taiwan 220 60 tz Tanzania 415 50 ua Ukraine 400 50 ug Uganda 415 50 us United States of America 120, 208 , 277, 480 , 120, 240 , 240 , 480 60 uy Uruguay 380 50 uz Uzbekistan 380 50 vc Saint Vincent and the Grenadines 400 50 ve Venezuela 120 60 vg British Virgin Islands 190 60 vn Vietnam 380 50 vu Vanuatu 400 50 ws Samoa 400 50 ye Yemen 400 50 za South Africa 400 50 zm Zambia 400 50 zw Zimbabwe 415 50fluids-1.0.22/fluids/data/Miller 2E 1990 conical diffuser Kd.csv0000644000175000017500000001451714302004506023064 0ustar nileshnileshx,.06 0.101379,0.169702 0.115827,0.174527 0.132332,0.18049 0.151191,0.18563 0.171777,0.19197 0.2193,0.20304 0.25055,0.20998 0.40383,0.2362 0.46139,0.24292 0.52712,0.25263 0.5989,0.26126 0.68422,0.2717 0.77737,0.28256 0.88814,0.29222 1.11503,0.31603 1.26679,0.33235 1.4392,0.34951 1.63505,0.36961 1.837,0.39304 2.0299,0.41102 2.2932,0.43952 2.5764,0.47263 2.8784,0.51107 3.2157,0.55573 4.0133,0.67945 4.4092,0.75546 4.7117,0.83064 5.0345,0.93912 5.3796,1.04999 5.8776,1.16746 6.0424,1.20722 6.7506,1.3127 7.5842,1.40374 8.6163,1.48446 9.7895,1.5352 10.0649,1.55247 11.4997,1.57891 13.2125,1.59688 14.9297,1.60605 17.1534,1.62433 19.709,1.6246 x,.08 0.100695,0.24656 0.115045,0.25357 0.131441,0.26078 0.150173,0.2682 0.170624,0.27582 0.19494,0.28525 0.20154,0.28686 0.23026,0.29502 0.26308,0.30341 0.40337,0.33561 0.46085,0.34708 0.52652,0.35895 0.59822,0.36916 0.68346,0.38178 0.85334,0.4083 0.9695,0.42699 1.08328,0.44405 1.23074,0.46438 1.40604,0.48835 1.59737,0.51644 1.8047,0.54918 2.2156,0.61412 2.4892,0.66408 2.7809,0.7221 3.2294,0.83026 3.5284,0.92315 4.0068,1.10981 4.3292,1.24778 4.73,1.38738 5.1969,1.52549 5.8385,1.6404 6.0361,1.66814 6.8577,1.7445 7.835,1.79411 8.9519,1.8247 10.2279,1.8661 11.7512,1.8874 13.3523,1.9088 15.2563,1.9198 17.5292,1.9201 19.891,1.9204 x,.1 0.100609,0.32043 0.114947,0.32954 0.131326,0.34081 0.150039,0.35246 0.170472,0.36248 0.19476,0.37487 0.20136,0.37698 0.23005,0.38987 0.40299,0.44849 0.4604,0.46642 0.52601,0.48236 0.59762,0.50164 0.68278,0.51879 0.78005,0.53953 0.88625,0.56109 1.21603,0.61368 1.38929,0.63821 1.57843,0.66371 1.7932,0.70188 2.4059,0.82535 2.6729,0.90248 3.0867,1.04929 3.3537,1.16667 3.6438,1.30443 4.0033,1.45037 4.4231,1.5859 4.9692,1.70536 5.6453,1.8135 6.034,1.8546 6.8939,1.9073 7.8764,1.9615 11.6823,2.0866 13.3477,2.1221 15.2507,2.1463 17.4251,2.1707 19.882,2.1832 x,.15 0.100462,0.50056 0.114779,0.51479 0.131139,0.52649 0.149831,0.53845 0.171187,0.55068 0.1945,0.56319 0.20109,0.56636 0.22975,0.57923 0.30665,0.61265 0.35035,0.62657 0.40252,0.64081 0.45988,0.66272 0.52542,0.68157 0.58955,0.70191 0.68582,0.72896 0.78356,0.74969 0.89027,0.77101 1.09928,0.81998 1.2559,0.85276 1.42683,0.89678 1.62099,0.94835 2.0124,1.05461 2.2609,1.13405 2.5259,1.22629 2.8377,1.33345 3.1527,1.44995 3.5027,1.57664 3.8916,1.71439 4.0009,1.75311 4.52,1.8747 5.135,1.9825 6.0653,2.085 6.9296,2.1442 7.9172,2.2052 8.9954,2.2679 10.0517,2.3194 11.4842,2.3853 13.1209,2.4532 14.991,2.5089 17.6095,2.5947 19.842,2.6574 x,.2 0.100332,0.74367 0.115278,0.74796 0.131716,0.75226 0.151337,0.75659 0.172917,0.76094 0.20089,0.76534 0.22954,0.77405 0.26226,0.78285 0.36599,0.79416 0.44946,0.8191 0.51353,0.83305 0.58672,0.85674 0.5999,0.85676 0.68539,0.88112 0.78306,0.91125 0.88968,0.94239 1.16119,1.03642 1.31925,1.08387 1.49044,1.1526 1.69323,1.22569 1.9023,1.31069 2.0108,1.35537 2.2717,1.44938 2.5521,1.55855 2.8672,1.67596 3.2574,1.78224 3.6801,1.8953 4.569,2.0726 5.1909,2.1675 5.8976,2.2541 6.8891,2.3574 7.8272,2.438 8.9425,2.5213 10.048,2.593 11.4798,2.6816 13.1156,2.7733 14.9847,2.8522 17.0251,2.9497 19.559,3.0548 x,.25 0.100235,0.99936 0.113894,1.0051 0.130138,1.00526 0.147876,0.99983 0.169907,1 0.19414,1.00575 0.20072,1.00579 0.23062,1.00596 0.26498,1.00613 0.30276,1.01192 0.34787,1.01209 0.45667,1.0295 0.52469,1.04122 0.59949,1.05895 0.68493,1.08301 0.78254,1.11381 0.8891,1.15188 1.00457,1.19124 1.14769,1.23885 1.30391,1.29556 1.48135,1.37007 1.6829,1.45695 1.8908,1.54933 2.0097,1.59324 2.2705,1.69427 2.5795,1.7917 2.9304,1.9053 3.9982,2.1428 4.5425,2.2409 5.1896,2.3435 5.8961,2.4372 6.8874,2.5488 7.825,2.6507 8.9399,2.7566 10.0034,2.831 11.3497,2.9318 13.4994,3.0577 x,.3 0.100161,1.25604 0.114445,1.25624 0.130767,1.25644 0.149417,1.25664 0.170726,1.25685 0.19079,1.25702 0.20056,1.27119 0.22664,1.26431 0.2604,1.26452 0.40162,1.27226 0.4589,1.27246 0.52726,1.27979 0.59909,1.29435 0.68451,1.30907 0.78207,1.33881 0.89355,1.36923 1.00402,1.40813 1.14708,1.45627 1.31051,1.51448 1.4889,1.58381 1.69154,1.66557 1.9218,1.75156 2.0089,1.79116 2.2824,1.8732 2.593,1.9699 2.9624,2.0716 3.3656,2.1785 3.845,2.2782 3.9973,2.3039 4.5414,2.4094 5.1883,2.5197 5.8946,2.635 6.8475,2.7557 7.823,2.8659 8.9376,2.9804 10.0288,3.0481 x,.35 0.100106,1.48473 0.115018,1.49328 0.130693,1.49351 0.147683,1.49373 0.16781,1.49396 0.19174,1.49421 0.20157,1.4943 0.2316,1.49455 0.26611,1.4948 0.30069,1.50338 0.34549,1.50363 0.40363,1.51232 0.46118,1.52953 0.52695,1.52978 0.59875,1.53857 0.68034,1.54741 0.78169,1.55632 0.89312,1.58283 1.00358,1.60976 1.14662,1.64633 1.31003,1.69314 1.49667,1.76082 1.7004,1.8414 1.9319,1.9257 2.359,2.071 2.6801,2.1658 3.0619,2.265 3.4787,2.3686 3.9963,2.4909 4.5403,2.605 5.187,2.7242 5.8604,2.8489 6.0253,2.881 6.8455,3.0129 7.2463,3.0511 x,.4 0.100055,1.7356 0.114961,1.73589 0.132088,1.73618 0.151767,1.73647 0.174378,1.73677 0.20147,1.73707 0.23021,1.73735 0.26303,1.74735 0.40342,1.76786 0.46095,1.77803 0.52961,1.78827 0.59845,1.79853 0.68761,1.79884 0.79003,1.8092 0.90267,1.8298 1.00871,1.8505 1.15251,1.8821 1.31678,1.9248 1.50444,1.9796 2.0078,2.141 2.2938,2.2266 2.6061,2.3285 2.9608,2.4351 3.3826,2.5466 3.8218,2.6484 4.514,2.8008 5.1285,2.929 5.8025,3.046 x,.45 0.099866,2.0232 0.108696,2.0178 0.124199,2.0125 0.139567,2.01 0.159475,1.9963 0.18323,1.9967 0.20138,1.9969 0.23138,1.9972 0.26586,1.9976 0.30546,1.9979 0.35097,1.9982 0.39439,2.0097 0.40325,2.0097 0.46333,2.0101 0.53236,2.0104 0.59823,2.0107 0.68736,2.011 0.78537,2.0226 0.90238,2.023 1.01963,2.0574 1.165,2.0808 1.33108,2.1162 1.5208,2.1643 1.73753,2.2259 1.9742,2.2891 2.0073,2.302 2.2806,2.394 2.6055,2.4897 2.9601,2.6328 3.3629,2.7687 3.7995,2.8955 4.4076,3.0365 x,.5 0.099559,2.2213 0.112969,2.2309 0.12908,2.2313 0.147492,2.2192 0.169468,2.2072 0.19472,2.2076 0.20132,2.1954 0.23003,2.2081 0.26283,2.2084 0.40312,2.2219 0.46318,2.2223 0.52923,2.2351 0.59802,2.2354 0.68711,2.2483 0.78507,2.2739 0.90202,2.287 1.00797,2.3129 1.15169,2.3392 1.31589,2.3658 1.51188,2.3928 1.72737,2.4471 1.9626,2.5167 2.0067,2.5309 2.2926,2.6174 2.6193,2.7069 2.9758,2.8466 3.3809,2.9769 3.5836,3.0485 x,.55 0.099944,2.4353 0.112936,2.4391 0.129761,2.4395 0.149093,2.4399 0.171306,2.4403 0.19683,2.4407 0.20125,2.4408 0.23123,2.4412 0.26275,2.4416 0.30189,2.4556 0.34686,2.456 0.40299,2.4565 0.46302,2.4706 0.53199,2.4849 0.59781,2.4991 0.68686,2.5135 0.78917,2.528 0.89671,2.5425 1.00766,2.5429 1.15137,2.5433 1.32284,2.5866 1.51141,2.6307 1.72684,2.6904 1.9729,2.767 2.0061,2.767 2.2919,2.8616 2.604,2.976 2.8616,3.0562 fluids-1.0.22/fluids/mixing.pyi0000644000175000017500000000163014302004506015706 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( Optional, Union, ) def COV_motionless_mixer(Ki: float, Q1: float, Q2: float, pipe_diameters: float) -> float: ... def K_motionless_mixer(K: float, L: float, D: float, fd: float) -> float: ... def Kp_helical_ribbon_Rieger(D: float, h: float, nb: int, pitch: float, width: float, T: float) -> float: ... def adjust_homogeneity(fraction: float) -> float: ... def agitator_time_homogeneous( N: float, P: float, T: float, H: float, mu: float, rho: float, D: Optional[float] = ..., homogeneity: float = ... ) -> float: ... def size_tee(Q1: float, Q2: float, D: float, D2: None, n: int = ..., pipe_diameters: float = ...) -> float: ... def time_helical_ribbon_Grenville(Kp: float, N: float) -> float: ... __all__: List[str]fluids-1.0.22/fluids/drag.pyi0000644000175000017500000000347614302004506015342 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( List, Optional, Tuple, Union, ) def Almedeij(Re: float) -> float: ... def Barati(Re: float) -> float: ... def Barati_high(Re: float) -> float: ... def Ceylan(Re: float) -> float: ... def Cheng(Re: float) -> float: ... def Clift(Re: float) -> float: ... def Clift_Gauvin(Re: float) -> float: ... def Engelund_Hansen(Re: float) -> float: ... def Flemmer_Banks(Re: float) -> float: ... def Graf(Re: float) -> float: ... def Haider_Levenspiel(Re: float) -> float: ... def Khan_Richardson(Re: float) -> float: ... def Mikhailov_Freire(Re: float) -> float: ... def Morrison(Re: float) -> float: ... def Morsi_Alexander(Re: float) -> float: ... def Rouse(Re: float) -> float: ... def Song_Xu(Re: float, sphericity: float = ..., S: float = ...) -> float: ... def Stokes(Re: float) -> float: ... def Swamee_Ojha(Re: float) -> float: ... def Terfous(Re: float) -> float: ... def Yen(Re: float) -> float: ... def _v_terminal_err(V: float, Method: Optional[str], Re_almost: float, main: float) -> float: ... def drag_sphere(Re: float, Method: Optional[str] = ...) -> float: ... def drag_sphere_methods(Re: float, check_ranges: bool = ...) -> List[str]: ... def integrate_drag_sphere( D: float, rhop: float, rho: float, mu: float, t: float, V: float = ..., Method: Optional[str] = ..., distance: bool = ... ) -> Union[Tuple[float, float], float]: ... def time_v_terminal_Stokes( D: float, rhop: float, rho: float, mu: float, V0: float, tol: float = ... ) -> float: ... def v_terminal(D: float, rhop: float, rho: float, mu: float, Method: Optional[str] = ...) -> float: ... __all__: List[str]fluids-1.0.22/fluids/fittings.pyi0000644000175000017500000001542614302004506016252 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( List, Optional, Union, ) def Cv_to_K(Cv: float, D: float) -> float: ... def Cv_to_Kv(Cv: float) -> float: ... def Darby3K( NPS: Optional[float] = ..., Re: Optional[float] = ..., name: Optional[str] = ..., K1: Optional[float] = ..., Ki: Optional[float] = ..., Kd: Optional[float] = ..., Di: None = ... ) -> float: ... def Hooper2K( Di: float, Re: float, name: Optional[str] = ..., K1: Optional[float] = ..., Kinfty: Optional[float] = ... ) -> float: ... def K_angle_stop_check_valve_Crane(D1: float, D2: float, fd: Optional[float] = ..., style: int = ...) -> float: ... def K_angle_valve_Crane(D1: float, D2: float, fd: Optional[float] = ..., style: int = ...) -> float: ... def K_ball_valve_Crane(D1: float, D2: float, angle: float, fd: Optional[float] = ...) -> float: ... def K_branch_converging_Crane( D_run: float, D_branch: float, Q_run: float, Q_branch: float, angle: float = ... ) -> float: ... def K_branch_diverging_Crane( D_run: float, D_branch: float, Q_run: float, Q_branch: float, angle: float = ... ) -> float: ... def K_butterfly_valve_Crane(D: float, fd: Optional[float] = ..., style: int = ...) -> float: ... def K_diaphragm_valve_Crane(D: Optional[float] = ..., fd: Optional[float] = ..., style: int = ...) -> float: ... def K_foot_valve_Crane(D: Optional[float] = ..., fd: Optional[float] = ..., style: int = ...) -> float: ... def K_gate_valve_Crane(D1: float, D2: float, angle: float, fd: Optional[float] = ...) -> float: ... def K_globe_stop_check_valve_Crane(D1: float, D2: float, fd: Optional[float] = ..., style: int = ...) -> float: ... def K_globe_valve_Crane(D1: float, D2: float, fd: Optional[float] = ...) -> float: ... def K_lift_check_valve_Crane(D1: float, D2: float, fd: Optional[float] = ..., angled: bool = ...) -> float: ... def K_plug_valve_Crane( D1: float, D2: float, angle: float, fd: Optional[float] = ..., style: int = ... ) -> float: ... def K_run_converging_Crane( D_run: float, D_branch: float, Q_run: float, Q_branch: float, angle: float = ... ) -> float: ... def K_run_diverging_Crane( D_run: float, D_branch: float, Q_run: float, Q_branch: float, angle: float = ... ) -> float: ... def K_swing_check_valve_Crane(D: Optional[float] = ..., fd: Optional[float] = ..., angled: bool = ...) -> float: ... def K_tilting_disk_check_valve_Crane(D: float, angle: float, fd: Optional[float] = ...) -> float: ... def K_to_Cv(K: float, D: float) -> float: ... def K_to_Kv(K: float, D: float) -> float: ... def Kv_to_Cv(Kv: float) -> float: ... def Kv_to_K(Kv: float, D: float) -> float: ... def Miller_bend_roughness_correction(Re: float, Di: float, roughness: float) -> float: ... def Miller_bend_unimpeded_correction(Kb: float, Di: float, L_unimpeded: float) -> float: ... def bend_miter( angle: float, Di: Optional[float] = ..., Re: Optional[float] = ..., roughness: float = ..., L_unimpeded: Optional[float] = ..., method: str = ... ) -> float: ... def bend_miter_Miller( Di: float, angle: float, Re: float, roughness: float = ..., L_unimpeded: Optional[float] = ... ) -> float: ... def bend_rounded( Di: float, angle: float, fd: Optional[float] = ..., rc: Optional[float] = ..., bend_diameters: Optional[float] = ..., Re: Optional[float] = ..., roughness: float = ..., L_unimpeded: None = ..., method: str = ... ) -> float: ... def bend_rounded_Crane( Di: float, angle: float, rc: Optional[float] = ..., bend_diameters: Optional[float] = ... ) -> float: ... def bend_rounded_Ito( Di: float, angle: int, Re: float, rc: Optional[float] = ..., bend_diameters: Optional[float] = ..., roughness: float = ... ) -> float: ... def bend_rounded_Miller( Di: float, angle: int, Re: float, rc: Optional[float] = ..., bend_diameters: Optional[float] = ..., roughness: float = ..., L_unimpeded: Optional[float] = ... ) -> float: ... def change_K_basis(K1: float, D1: float, D2: float) -> float: ... def contraction_beveled(Di1: float, Di2: float, l: Optional[float] = ..., angle: Optional[float] = ...) -> float: ... def contraction_conical( Di1: float, Di2: float, fd: Optional[float] = ..., l: Optional[float] = ..., angle: Optional[float] = ..., Re: Optional[float] = ..., roughness: float = ..., method: str = ... ) -> float: ... def contraction_conical_Crane( Di1: float, Di2: float, l: Optional[float] = ..., angle: Optional[float] = ... ) -> float: ... def contraction_round(Di1: float, Di2: float, rc: float, method: str = ...) -> float: ... def contraction_round_Miller(Di1: float, Di2: float, rc: float) -> float: ... def contraction_sharp( Di1: float, Di2: float, fd: Optional[float] = ..., Re: Optional[float] = ..., roughness: float = ..., method: str = ... ) -> float: ... def diffuser_conical( Di1: float, Di2: float, l: Optional[float] = ..., angle: Optional[float] = ..., fd: Optional[float] = ..., Re: Optional[float] = ..., roughness: float = ..., method: str = ... ) -> float: ... def diffuser_conical_staged( Di1: float, Di2: float, DEs: List[float], ls: List[float], fd: Optional[float] = ..., method: str = ... ) -> float: ... def diffuser_curved(Di1: float, Di2: float, l: float) -> float: ... def diffuser_pipe_reducer(Di1: float, Di2: float, l: float, fd1: float, fd2: Optional[float] = ...) -> float: ... def diffuser_sharp( Di1: float, Di2: float, Re: Optional[float] = ..., fd: Optional[float] = ..., roughness: float = ..., method: str = ... ) -> float: ... def entrance_angled(angle: float, method: str = ...) -> float: ... def entrance_beveled(Di: float, l: float, angle: float, method: str = ...) -> float: ... def entrance_beveled_orifice(Di: float, do: float, l: float, angle: float) -> float: ... def entrance_distance(Di: float, t: Optional[float] = ..., l: Optional[float] = ..., method: str = ...) -> float: ... def entrance_distance_45_Miller(Di: float, Di0: float) -> float: ... def entrance_rounded(Di: float, rc: float, method: str = ...) -> float: ... def entrance_sharp(method: str = ...) -> float: ... def exit_normal() -> float: ... def helix(Di: float, rs: float, pitch: float, N: int, fd: float) -> float: ... def spiral(Di: float, rmax: float, rmin: float, pitch: float, fd: float) -> float: ... def v_lift_valve_Crane(rho: float, D1: Optional[float] = ..., D2: Optional[float] = ..., style: str = ...) -> float: ... __all__: List[str]fluids-1.0.22/fluids/optional/0000755000175000017500000000000014302004506015515 5ustar nileshnileshfluids-1.0.22/fluids/optional/hwm93.for0000644000175000017500000037331314302004506017206 0ustar nileshnilesh SUBROUTINE GWS5(IYD,SEC,ALT,GLAT,GLONG,STL,F107A,F107,AP,W) C Horizontal wind model HWM93 covering all altitude regions C A. E. HEDIN (1/25/93) (4/9/93) C Calling argument list made similar to GTS5 subroutine for C MSIS-86 density model and GWS4 for thermospheric winds. C IYD - YEAR AND DAY AS YYDDD C SEC - UT(SEC) (Not important in lower atmosphere) C ALT - ALTITUDE(KM) C GLAT - GEODETIC LATITUDE(DEG) C GLONG - GEODETIC LONGITUDE(DEG) C STL - LOCAL APPARENT SOLAR TIME(HRS) C F107A - 3 MONTH AVERAGE OF F10.7 FLUX (Use 150 in lower atmos.) C F107 - DAILY F10.7 FLUX FOR PREVIOUS DAY ( " ) C AP - Two element array with C AP(1) = MAGNETIC INDEX(DAILY) (use 4 in lower atmos.) C AP(2)=CURRENT 3HR ap INDEX (used only when SW(9)=-1.) C Note: Ut, Local Time, and Longitude are used independently in the C model and are not of equal importance for every situation. C For the most physically realistic calculation these three C variables should be consistent. C OUTPUT C W(1) = MERIDIONAL (m/sec + Northward) C W(2) = ZONAL (m/sec + Eastward) C ADDITIONAL COMMENTS C TO TURN ON AND OFF PARTICULAR VARIATIONS CALL TSELEC(SW) C WHERE SW IS A 25 ELEMENT ARRAY CONTAINING 0. FOR OFF, 1. C FOR ON, OR 2. FOR MAIN EFFECTS OFF BUT CROSS TERMS ON C FOR THE FOLLOWING VARIATIONS C 1 - F10.7 EFFECT ON MEAN 2 - TIME INDEPENDENT C 3 - SYMMETRICAL ANNUAL 4 - SYMMETRICAL SEMIANNUAL C 5 - ASYMMETRICAL ANNUAL 6 - ASYMMETRICAL SEMIANNUAL C 7 - DIURNAL 8 - SEMIDIURNAL C 9 - DAILY AP 10 - ALL UT/LONG EFFECTS C 11 - LONGITUDINAL 12 - UT AND MIXED UT/LONG C 13 - MIXED AP/UT/LONG 14 - TERDIURNAL C 16 - ALL WINDF VAR 17 - ALL WZL VAR C 18 - ALL UN1 VAR 19 - ALL WDZL VAR C 24 - ALL B FIELDS (DIV) 25 - ALL C FIELDS (CURL) C C To get current values of SW: CALL TRETRV(SW) C C For example, to get zonal averages (no diurnal or C longitudinal variations) set SW(7),SW(8), SW(14), C and SW(10) equal to 0. To just remove tidal variations C set SW(7),SW(8), and SW(14) equal to 0. PARAMETER (MN1=5,MN2=14) DIMENSION AP(1),W(2),WINDF(2),WW(2),SV(25) DIMENSION WZL(2),WDZL(2) DIMENSION ZN1(MN1),UN1(MN1,2),UGN1(2,2) DIMENSION ZN2(MN2),UN2(MN2,2),UGN2(2,2) COMMON/PARMW5/PWB(200),PWC(200),PWBL(150),PWCL(150),PWBLD(150), $ PWCLD(150),PB12(150),PC12(150),PB13(150),PC13(150), $ PB14(150),PC14(150),PB15(150),PC15(150), $ PB15D(150),PC15D(150),PWP(100,26) COMMON/CSW/SW(25),ISW,SWC(25) COMMON/HWMC/WBT(2),WCT(2) COMMON/DATW/ISD(3),IST(2),NAM(2) COMMON/DATIME/ISDATE(3),ISTIME(2),NAME(2) SAVE EXTERNAL INITW5,GWSBK5 DATA S/.016/,ZL/200./,SV/25*1./,NNN/3/,MN2S/1/,MN2M/1/ DATA ZN1/200.,150.,130.,115.,100./ DATA ZN2/100.,90.,82.5,75.,67.5,60.,52.5,45.,37.5,30.,22.5, $ 15.,7.5,0/ C Put identification data into common/datime/ DO 1 I=1,3 ISDATE(I)=ISD(I) 1 CONTINUE DO 2 I=1,2 ISTIME(I)=IST(I) NAME(I)=NAM(I) 2 CONTINUE IF(ISW.NE.64999) CALL TSELEC(SV) YRD=IYD WW(1)=W(1) WW(2)=W(2) C IF(ALT.LE.ZN1(MN1)) GOTO 50 C C EXOSPHERE WIND CALL GLBW5E(YRD,SEC,GLAT,GLONG,STL,F107A,F107,AP,PWB,PWC,WINDF) WINDF(1)=SW(16)*WINDF(1) WINDF(2)=SW(16)*WINDF(2) C WIND AT ZL CALL GLBW5M(YRD,SEC,GLAT,GLONG,STL,F107A,F107,AP,PWBL,PWCL,WW) WZL(1)=(PWBL(1)*WINDF(1)+WW(1))*SW(17)*SW(18) WZL(2)=(PWBL(1)*WINDF(2)+WW(2))*SW(17)*SW(18) UN1(1,1)=WZL(1) UN1(1,2)=WZL(2) C WIND DERIVATIVE AT ZL WW(1)=0 WW(2)=0 CALL GLBW5M(YRD,SEC,GLAT,GLONG,STL,F107A,F107,AP,PWBLD,PWCLD,WW) WDZL(1)=(PWBLD(1)*WINDF(1)+WW(1))*SW(19)*SW(18) WDZL(2)=(PWBLD(1)*WINDF(2)+WW(2))*SW(19)*SW(18) UGN1(1,1)=WDZL(1)*S UGN1(1,2)=WDZL(2)*S C IF(ALT.GE.ZL) GOTO 90 C C WIND AT ZN1(2) (150) CALL GLBW5M(YRD,SEC,GLAT,GLONG,STL,F107A,F107,AP,PB12,PC12,WW) UN1(2,1)=(PB12(1)*WINDF(1)+WW(1))*SW(18) UN1(2,2)=(PB12(1)*WINDF(2)+WW(2))*SW(18) C WIND AT ZN1(3) (130) CALL GLBW5M(YRD,SEC,GLAT,GLONG,STL,F107A,F107,AP,PB13,PC13,WW) UN1(3,1)=WW(1)*SW(18) UN1(3,2)=WW(2)*SW(18) C WIND AT ZN1(4) (115) CALL GLBW5M(YRD,SEC,GLAT,GLONG,STL,F107A,F107,AP,PB14,PC14,WW) UN1(4,1)=WW(1)*SW(18) UN1(4,2)=WW(2)*SW(18) C 50 CONTINUE MNN=MAX(1,MIN(MN2,NNN+1)) IF(ALT.LT.ZN2(MNN)) GOTO 40 C C WIND AT ZN1(5) (100) CALL GLBW5M(YRD,SEC,GLAT,GLONG,STL,F107A,F107,AP,PB15,PC15,WW) UN1(5,1)=WW(1)*SW(18) UN1(5,2)=WW(2)*SW(18) C WIND DERIVATIVE AT ZN1(5) (100) CALL GLBW5M(YRD,SEC,GLAT,GLONG,STL,F107A,F107,AP,PB15D,PC15D,WW) UGN1(2,1)=WW(1)*SW(18) UGN1(2,2)=WW(2)*SW(18) C IF(ALT.GE.ZN1(MN1)) GOTO 90 C UGN2(1,1)=UGN1(2,1) UGN2(1,2)=UGN1(2,2) UN2(1,1)=UN1(5,1) UN2(1,2)=UN1(5,2) GOTO 45 40 CONTINUE UGN2(1,1)=1.E30 UGN2(1,2)=1.E30 UN2(1,1)=0 UN2(1,2)=0 45 CONTINUE C DO 10 I=1,MN2 IF(ALT.GT.ZN2(I)) GOTO 12 10 CONTINUE I=MN2 12 IZ=I MN2S=MAX(1,MIN(IZ-1,IZ-NNN)) MN2E=MIN(MN2,MAX(MN2S+1,IZ-1+NNN)) DO 20 I=MN2S,MN2E II=2*(I-2)+1 IF(I.GT.1) THEN CALL GLBW5S(IYD,GLAT,GLONG,STL,PWP(1,II),PWP(1,II+1),WW) UN2(I,1)=WW(1)*SW(20) UN2(I,2)=WW(2)*SW(20) ENDIF 20 CONTINUE MN2M=MN2E-MN2S+1 UGN2(2,1)=1.E30 UGN2(2,2)=1.E30 90 CONTINUE C WIND AT ALTITUDE IF(W(1).NE.9898) $ W(1)= WPROF(ALT,ZL,S,WINDF(1),WZL(1),WDZL(1), $ MN1,ZN1,UN1(1,1),UGN1(1,1),MN2M,ZN2(MN2S),UN2(MN2S,1),UGN2(1,1)) IF(W(2).NE.9898) $ W(2)= WPROF(ALT,ZL,S,WINDF(2),WZL(2),WDZL(2), $ MN1,ZN1,UN1(1,2),UGN1(1,2),MN2M,ZN2(MN2S),UN2(MN2S,2),UGN2(1,2)) RETURN C Set number of nodes calculated each side of required altitude C to adjust profile accuracy vs efficiency ENTRY SETNW5(NNW) NNN=NNW END C----------------------------------------------------------------------- FUNCTION WPROF(Z,ZL,S,UINF,ULB,ULBD,MN1,ZN1,UN1,UGN1, $ MN2,ZN2,UN2,UGN2) DIMENSION ZN1(MN1),UN1(MN1),UGN1(2),XS(15),YS(15),Y2OUT(15) DIMENSION ZN2(MN2),UN2(MN2),UGN2(2) SAVE IF(Z.GE.ZL) THEN X=S*(Z-ZL) F=EXP(-X) WPROF=UINF+(ULB-UINF)*F+(ULB-UINF+ULBD)*X*F RETURN ENDIF IF(Z.GE.ZN1(MN1).AND.Z.LT.ZN1(1)) THEN MN=MN1 Z1=ZN1(1) Z2=ZN1(MN) ZDIF=Z2-Z1 DO 10 K=1,MN XS(K)=(ZN1(K)-Z1)/ZDIF YS(K)=UN1(K) 10 CONTINUE YD1=UGN1(1)*ZDIF YD2=UGN1(2)*ZDIF CALL SPLINE(XS,YS,MN,YD1,YD2,Y2OUT) C Eq. X=(Z-Z1)/ZDIF C Eq. CALL SPLINT(XS,YS,Y2OUT,MN,X,Y) WPROF=Y RETURN ENDIF IF(Z.LT.ZN2(1)) THEN MN=MN2 Z1=ZN2(1) Z2=ZN2(MN) ZDIF=Z2-Z1 DO 20 K=1,MN XS(K)=(ZN2(K)-Z1)/ZDIF YS(K)=UN2(K) 20 CONTINUE YD1=UGN2(1) IF(UGN2(1).LT.1.E30) YD1=UGN2(1)*ZDIF YD2=UGN2(2) IF(UGN2(2).LT.1.E30) YD2=UGN2(2)*ZDIF CALL SPLINE(XS,YS,MN,YD1,YD2,Y2OUT) C Eq. X=(Z-Z1)/ZDIF C Eq. CALL SPLINT(XS,YS,Y2OUT,MN,X,Y) WPROF=Y RETURN ENDIF RETURN END C----------------------------------------------------------------------- SUBROUTINE GLBW5E(YRD,SEC,LAT,LONG,STL,F107A,F107,AP,PB,PC,WW) REAL LAT,LONG DIMENSION WB(2,15),WC(2,15),PB(1),PC(1),WW(2) DIMENSION AP(1) COMMON/CSW/SW(25),ISW,SWC(25) COMMON/HWMC/WBT(2),WCT(2) C COMMON/VPOLY/BT(20,20),BP(20,20),CSTL,SSTL,C2STL,S2STL, C $ C3STL,S3STL,IYR,DAY,DF,DFA,DFC,APD,APDF,APDFC,APT,SLT COMMON/VPOLY2/XVL,LVL,MVL,CLAT,SLAT,BT(20,20),BP(20,20) COMMON/LTCOMP/TLL,NSVL,CSTL,SSTL,C2STL,S2STL,C3STL,S3STL COMMON/LGCOMP/XLL,NGVL,CLONG,SLONG,C2LONG,S2LONG SAVE DATA DGTR/.017453/,SR/7.2722E-5/,HR/.2618/,DR/1.72142E-2/ DATA NSW/14/,WB/30*0/,WC/30*0/ DATA PB14/-1./,PB18/-1./ DATA SW9/1./,LV/12/,MV/3/,NSV/3/,NGV/2/,PSET/3./ G0(A)=(A-4.+(PB(26)-1.)*(A-4.+(EXP(-ABS(PB(25))*(A-4.))-1.)/ * ABS(PB(25)))) C CONFIRM PARAMETER SET IF(PB(100).EQ.0) PB(100)=PSET IF(PB(100).NE.PSET) THEN WRITE(6,900) PB(100),PC(100) 900 FORMAT(1X,'WRONG PARAMETER SET FOR GLBW5E',3F10.1) STOP ENDIF C DO 10 J=1,NSW WB(1,J)=0 WB(2,J)=0 WC(1,J)=0 WC(2,J)=0 10 CONTINUE IF(SW(9).GT.0) SW9=1. IF(SW(9).LT.0) SW9=-1. IYR = YRD/1000. DAY = YRD - IYR*1000. IF(XVL.NE.LAT.OR.LV.GT.LVL.OR.MV.GT.MVL) THEN SLAT=SIN(DGTR*LAT) CLAT=COS(DGTR*LAT) CALL VSPHR1(SLAT,CLAT,LV,MV,BT,BP,20) XVL=LAT LVL=LV MVL=MV ENDIF IF(TLL.NE.STL.OR.NSV.GT.NSVL) THEN SSTL = SIN(HR*STL) CSTL = COS(HR*STL) S2STL = SIN(2.*HR*STL) C2STL = COS(2.*HR*STL) S3STL = SIN(3.*HR*STL) C3STL = COS(3.*HR*STL) TLL = STL NSVL=NSV ENDIF IF(DAY.NE.DAYL.OR.PB(14).NE.PB14) THEN CD14=COS(DR*(DAY-PB(14))) C SD14=SIN(DR*(DAY-PB(14))) ENDIF IF(DAY.NE.DAYL.OR.PB(18).NE.PB18) CD18=COS(2.*DR*(DAY-PB(18))) DAYL=DAY PB14=PB(14) PB18=PB(18) IF(XLL.NE.LONG) THEN SLONG=SIN(DGTR*LONG) CLONG=COS(DGTR*LONG) S2LONG=SIN(2.*DGTR*LONG) C2LONG=COS(2.*DGTR*LONG) XLL=LONG NGVL=2 ENDIF C F10.7 EFFECT DF=F107-F107A DFA=F107A-150. DFC=DFA+PB(20)*DF C TIME INDEPENDENT F1B=1.+PB(22)*DFC*SWC(1) IF(WW(1).NE.9898) THEN WB(1,2)=(PB(2)*BT(3,1)+PB(3)*BT(5,1)+PB(23)*BT(7,1))*F1B ENDIF WB(2,2)=0. F1C=1.+PC(22)*DFC*SWC(1) WC(1,2)=0. IF(WW(2).NE.9898) THEN WC(2,2)=-(PC(2)*BT(2,1)+PC(3)*BT(4,1)+PC(23)*BT(6,1))*F1C $ -(PC(27)*BT(3,1)+PC(15)*BT(5,1)+PC(60)*BT(7,1) $ +PC(161)*BT(9,1)+PC(162)*BT(11,1)+PC(163)*BT(13,1))*F1C ENDIF C SYMMETRICAL ANNUAL C SYMMETRICAL SEMIANNUAL IF(WW(1).NE.9898) THEN WB(1,4)=(PB(17)*BT(3,1)+PB(31)*BT(5,1))*CD18 ENDIF WB(2,4)=0 WC(1,4)=0 IF(WW(2).NE.9898) THEN WC(2,4)=-(PC(17)*BT(2,1)+PC(31)*BT(4,1))*CD18 ENDIF C ASYMMETRICAL ANNUAL F5B=1.+PB(48)*DFC*SWC(1) IF(WW(1).NE.9898) THEN WB(1,5)=(PB(10)*BT(2,1)+PB(11)*BT(4,1))*CD14*F5B ENDIF WB(2,5)=0 F5C=1.+PC(48)*DFC*SWC(1) WC(1,5)=0 IF(WW(2).NE.9898) THEN WC(2,5)=-(PC(10)*BT(3,1)+PC(11)*BT(5,1))*CD14*F5C ENDIF C ASYMMETRICAL SEMIANNUAL C none C DIURNAL IF(SW(7).EQ.0) GOTO 200 F7B=1.+PB(50)*DFC*SWC(1) F75B=1.+PB(83)*DFC*SWC(1) IF(WW(1).NE.9898) THEN WB(1,7)=(PB(7)*BT(2,2)+PB(8)*BT(4,2)+PB(29)*BT(6,2) $ +PB(142)*BT(8,2)+PB(144)*BT(10,2) $ +PB(182)*BT(3,2)+PB(184)*BT(5,2) $ )*SSTL*F7B $ +(PB(13)*BT(3,2)+PB(146)*BT(5,2)) $ *CD14*SSTL*F75B*SWC(5) $ +(PB(171)*BT(2,2)+PB(173)*BT(4,2)) $ *CD18*SSTL*F75B*SWC(4) $ + (PB(4)*BT(2,2)+PB(5)*BT(4,2)+PB(28)*BT(6,2) $ +PB(141)*BT(8,2)+PB(143)*BT(10,2) $ +PB(181)*BT(3,2)+PB(183)*BT(5,2) $ )*CSTL*F7B $ +(PB(12)*BT(3,2)+PB(145)*BT(5,2)) $ *CD14*CSTL*F75B*SWC(5) $ +(PB(170)*BT(2,2)+PB(172)*BT(4,2)) $ *CD18*CSTL*F75B*SWC(4) ENDIF IF(WW(2).NE.9898) THEN WB(2,7)=-(PB(4)*BP(2,2)+PB(5)*BP(4,2)+PB(28)*BP(6,2) $ +PB(141)*BP(8,2)+PB(143)*BP(10,2) $ +PB(181)*BP(3,2)+PB(183)*BP(5,2) $ )*SSTL*F7B $ -(PB(12)*BP(3,2)+PB(145)*BP(5,2)) $ *CD14*SSTL*F75B*SWC(5) $ -(PB(170)*BP(2,2)+PB(172)*BP(4,2)) $ *CD18*SSTL*F75B*SWC(4) $ + (PB(7)*BP(2,2)+PB(8)*BP(4,2)+PB(29)*BP(6,2) $ +PB(142)*BP(8,2)+PB(144)*BP(10,2) $ +PB(182)*BP(3,2)+PB(184)*BP(5,2) $ )*CSTL*F7B $ +(PB(13)*BP(3,2)+PB(146)*BP(5,2)) $ *CD14*CSTL*F75B*SWC(5) $ +(PB(171)*BP(2,2)+PB(173)*BP(4,2)) $ *CD18*CSTL*F75B*SWC(4) ENDIF F7C=1.+PC(50)*DFC*SWC(1) F75C=1.+PC(83)*DFC*SWC(1) IF(WW(1).NE.9898) THEN WC(1,7)=-(PC(4)*BP(3,2)+PC(5)*BP(5,2)+PC(28)*BP(7,2) $ +PC(141)*BP(9,2)+PC(143)*BP(11,2) $ +PC(181)*BP(2,2)+PC(183)*BP(4,2)+PC(185)*BP(6,2) $ +PC(187)*BP(8,2)+PC(189)*BP(10,2) $ )*SSTL*F7C $ -(PC(12)*BP(2,2)+PC(145)*BP(4,2)) $ *CD14*SSTL*F75C*SWC(5) $ -(PC(170)*BP(3,2)+PC(172)*BP(5,2)) $ *CD18*SSTL*F75C*SWC(4) $ +(PC(7)*BP(3,2)+PC(8)*BP(5,2)+PC(29)*BP(7,2) $ +PC(142)*BP(9,2)+PC(144)*BP(11,2) $ +PC(182)*BP(2,2)+PC(184)*BP(4,2)+PC(186)*BP(6,2) $ +PC(188)*BP(8,2)+PC(190)*BP(10,2) $ )*CSTL*F7C $ +(PC(13)*BP(2,2)+PC(146)*BP(4,2)) $ *CD14*CSTL*F75C*SWC(5) $ +(PC(171)*BP(3,2)+PC(173)*BP(5,2)) $ *CD18*CSTL*F75C*SWC(4) ENDIF IF(WW(2).NE.9898) THEN WC(2,7)=-(PC(7)*BT(3,2)+PC(8)*BT(5,2)+PC(29)*BT(7,2) $ +PC(142)*BT(9,2)+PC(144)*BT(11,2) $ +PC(182)*BT(2,2)+PC(184)*BT(4,2)+PC(186)*BT(6,2) $ +PC(188)*BT(8,2)+PC(190)*BT(10,2) $ )*SSTL*F7C $ -(PC(13)*BT(2,2)+PC(146)*BT(4,2)) $ *CD14*SSTL*F75C*SWC(5) $ -(PC(171)*BT(3,2)+PC(173)*BT(5,2)) $ *CD18*SSTL*F75C*SWC(4) $ -(PC(4)*BT(3,2)+PC(5)*BT(5,2)+PC(28)*BT(7,2) $ +PC(141)*BT(9,2)+PC(143)*BT(11,2) $ +PC(181)*BT(2,2)+PC(183)*BT(4,2)+PC(185)*BT(6,2) $ +PC(187)*BT(8,2)+PC(189)*BT(10,2) $ )*CSTL*F7C $ -(PC(12)*BT(2,2)+PC(145)*BT(4,2)) $ *CD14*CSTL*F75C*SWC(5) $ -(PC(170)*BT(3,2)+PC(172)*BT(5,2)) $ *CD18*CSTL*F75C*SWC(4) ENDIF 200 CONTINUE C SEMIDIURNAL IF(SW(8).EQ.0) GOTO 210 F8B=1.+PB(90)*DFC*SWC(1) IF(WW(1).NE.9898) THEN WB(1,8)=(PB(9)*BT(3,3)+PB(43)*BT(5,3) $ +PB(111)*BT(7,3) $ +(PB(34)*BT(4,3)+PB(148)*BT(6,3))*CD14*SWC(5) $ +(PB(134)*BT(3,3))*CD18*SWC(4) $ +PB(152)*BT(4,3)+PB(154)*BT(6,3)+PB(156)*BT(8,3) $ +PB(158)*BT(10,3) $ )*S2STL*F8B $ +(PB(6)*BT(3,3)+PB(42)*BT(5,3) $ +PB(110)*BT(7,3) $ +(PB(24)*BT(4,3)+PB(147)*BT(6,3))*CD14*SWC(5) $ +(PB(135)*BT(3,3))*CD18*SWC(4) $ +PB(151)*BT(4,3)+PB(153)*BT(6,3)+PB(155)*BT(8,3) $ +PB(157)*BT(10,3) $ )*C2STL*F8B ENDIF IF(WW(2).NE.9898) THEN WB(2,8)=-(PB(6)*BP(3,3)+PB(42)*BP(5,3) $ +PB(110)*BP(7,3) $ +(PB(24)*BP(4,3)+PB(147)*BP(6,3))*CD14*SWC(5) $ +(PB(135)*BP(3,3))*CD18*SWC(4) $ +PB(151)*BP(4,3)+PB(153)*BP(6,3)+PB(155)*BP(8,3) $ +PB(157)*BP(10,3) $ )*S2STL*F8B $ + (PB(9)*BP(3,3)+PB(43)*BP(5,3) $ +PB(111)*BP(7,3) $ +(PB(34)*BP(4,3)+PB(148)*BP(6,3))*CD14*SWC(5) $ +(PB(134)*BP(3,3))*CD18*SWC(4) $ +PB(152)*BP(4,3)+PB(154)*BP(6,3)+PB(156)*BP(8,3) $ +PB(158)*BP(10,3) $ )*C2STL*F8B ENDIF F8C=1.+PC(90)*DFC*SWC(1) IF(WW(1).NE.9898) THEN WC(1,8)=-(PC(6)*BP(4,3)+PC(42)*BP(6,3) $ +PC(110)*BP(8,3) $ +(PC(24)*BP(3,3)+PC(147)*BP(5,3))*CD14*SWC(5) $ +(PC(135)*BP(4,3))*CD18*SWC(4) $ +PC(151)*BP(3,3)+PC(153)*BP(5,3)+PC(155)*BP(7,3) $ +PC(157)*BP(9,3) $ )*S2STL*F8C $ +(PC(9)*BP(4,3)+PC(43)*BP(6,3) $ +PC(111)*BP(8,3) $ +(PC(34)*BP(3,3)+PC(148)*BP(5,3))*CD14*SWC(5) $ +(PC(134)*BP(4,3))*CD18*SWC(4) $ +PC(152)*BP(3,3)+PC(154)*BP(5,3)+PC(156)*BP(7,3) $ +PC(158)*BP(9,3) $ )*C2STL*F8C ENDIF IF(WW(2).NE.9898) THEN WC(2,8)=-(PC(9)*BT(4,3)+PC(43)*BT(6,3) $ +PC(111)*BT(8,3) $ +(PC(34)*BT(3,3)+PC(148)*BT(5,3))*CD14*SWC(5) $ +(PC(134)*BT(4,3))*CD18*SWC(4) $ +PC(152)*BT(3,3)+PC(154)*BT(5,3)+PC(156)*BT(7,3) $ +PC(158)*BT(9,3) $ )*S2STL*F8C $ - (PC(6)*BT(4,3)+PC(42)*BT(6,3) $ +PC(110)*BT(8,3) $ +(PC(24)*BT(3,3)+PC(147)*BT(5,3))*CD14*SWC(5) $ +(PC(135)*BT(4,3))*CD18*SWC(4) $ +PC(151)*BT(3,3)+PC(153)*BT(5,3)+PC(155)*BT(7,3) $ +PC(157)*BT(9,3) $ )*C2STL*F8C ENDIF 210 CONTINUE C TERDIURNAL IF(SW(14).EQ.0) GOTO 220 F14B=1. IF(WW(1).NE.9898) THEN WB(1,14)=(PB(40)*BT(4,4)+PB(149)*BT(6,4) $ +PB(114)*BT(8,4) $ +(PB(94)*BT(5,4)+PB(47)*BT(7,4))*CD14*SWC(5) $ )*S3STL*F14B $ + (PB(41)*BT(4,4)+PB(150)*BT(6,4) $ +PB(115)*BT(8,4) $ +(PB(95)*BT(5,4)+PB(49)*BT(7,4))*CD14*SWC(5) $ )*C3STL*F14B ENDIF IF(WW(2).NE.9898) THEN WB(2,14)=-(PB(41)*BP(4,4)+PB(150)*BP(6,4) $ +PB(115)*BP(8,4) $ +(PB(95)*BP(5,4)+PB(49)*BP(7,4))*CD14*SWC(5) $ )*S3STL*F14B $ + (PB(40)*BP(4,4)+PB(149)*BP(6,4) $ +PB(114)*BP(8,4) $ +(PB(94)*BP(5,4)+PB(47)*BP(7,4))*CD14*SWC(5) $ )*C3STL*F14B ENDIF F14C=1. IF(WW(1).NE.9898) THEN WC(1,14)=-(PC(41)*BP(5,4)+PC(150)*BP(7,4) $ +PC(115)*BP(9,4) $ +(PC(95)*BP(4,4)+PC(49)*BP(6,4))*CD14*SWC(5) $ )*S3STL*F14C $ + (PC(40)*BP(5,4)+PC(149)*BP(7,4) $ +PC(114)*BP(9,4) $ +(PC(94)*BP(4,4)+PC(47)*BP(6,4))*CD14*SWC(5) $ )*C3STL*F14C ENDIF IF(WW(2).NE.9898) THEN WC(2,14)=-(PC(40)*BT(5,4)+PC(149)*BT(7,4) $ +PC(114)*BT(9,4) $ +(PC(94)*BT(4,4)+PC(47)*BT(6,4))*CD14*SWC(5) $ )*S3STL*F14C $ - (PC(41)*BT(5,4)+PC(150)*BT(7,4) $ +PC(115)*BT(9,4) $ +(PC(95)*BT(4,4)+PC(49)*BT(6,4))*CD14*SWC(5) $ )*C3STL*F14C ENDIF 220 CONTINUE C MAGNETIC ACTIVITY IF(SW(9).EQ.0.) GOTO 40 IF(SW9.EQ.-1.) GOTO 30 C daily AP APD=AP(1)-4. APDF=(APD+(PB(45)-1.)*(APD+(EXP(-PB(44)*APD)-1.)/PB(44))) C APDFC=(APD+(PC(45)-1.)*(APD+(EXP(-PC(44)*APD)-1.)/PC(44))) APDFC=APDF IF(APD.EQ.0.) GOTO 40 IF(WW(1).NE.9898) THEN WB(1,9)=(PB(46)*BT(3,1)+PB(35)*BT(5,1)+PB(33)*BT(7,1))*APDF $ +(PB(175)*BT(3,3)+PB(177)*BT(5,3))*S2STL*APDF $ +(PB(174)*BT(3,3)+PB(176)*BT(5,3))*C2STL*APDF ENDIF IF(WW(2).NE.9898) THEN WB(2,9)=0 $ -(PB(174)*BP(3,3)+PB(176)*BP(5,3))*S2STL*APDF $ +(PB(175)*BP(3,3)+PB(177)*BP(5,3))*C2STL*APDF ENDIF IF(WW(1).NE.9898) THEN WC(1,9)=SWC(7)*WC(1,7)*PC(122)*APDFC $ -(PC(174)*BP(4,3)+PC(176)*BP(6,3))*S2STL*APDFC $ +(PC(175)*BP(4,3)+PC(177)*BP(6,3))*C2STL*APDFC ENDIF IF(WW(2).NE.9898) THEN WC(2,9)=-(PC(46)*BT(2,1)+PC(35)*BT(4,1)+PC(33)*BT(6,1))*APDFC $ +SWC(7)*WC(2,7)*PC(122)*APDFC $ -(PC(175)*BT(4,3)+PC(177)*BT(6,3))*S2STL*APDFC $ -(PC(174)*BT(4,3)+PC(176)*BT(6,3))*C2STL*APDFC ENDIF GO TO 40 30 CONTINUE IF(PB(25).LT.1.E-4) PB(25)=1.E-4 APT=G0(AP(2)) IF(APT.EQ.0) GOTO 40 IF(WW(1).NE.9898) THEN WB(1,9)=(PB(97)*BT(3,1)+PB(55)*BT(5,1)+PB(51)*BT(7,1))*APT $ +(PB(160)*BT(3,3)+PB(179)*BT(5,3))*S2STL*APT $ +(PB(159)*BT(3,3)+PB(178)*BT(5,3))*C2STL*APT ENDIF IF(WW(2).NE.9898) THEN WB(2,9)=0 $ -(PB(159)*BP(3,3)+PB(178)*BP(5,3))*S2STL*APT $ +(PB(160)*BP(3,3)+PB(179)*BP(5,3))*C2STL*APT ENDIF IF(WW(1).NE.9898) THEN WC(1,9)=SWC(7)*WC(1,7)*PC(129)*APT $ -(PC(159)*BP(4,3)+PC(178)*BP(6,3))*S2STL*APT $ +(PC(160)*BP(4,3)+PC(179)*BP(6,3))*C2STL*APT ENDIF IF(WW(2).NE.9898) THEN WC(2,9)=-(PC(97)*BT(2,1)+PC(55)*BT(4,1)+PC(51)*BT(6,1))*APT $ +SWC(7)*WC(2,7)*PC(129)*APT $ -(PC(160)*BT(4,3)+PC(179)*BT(6,3))*S2STL*APT $ -(PC(159)*BT(4,3)+PC(178)*BT(6,3))*C2STL*APT ENDIF 40 CONTINUE IF(SW(10).EQ.0) GOTO 49 C LONGITUDINAL DBASY1=1.+PB(199)*SLAT DBASY2=1.+PB(200)*SLAT F11B=1.+PB(81)*DFC*SWC(1) IF(SW(11).EQ.0) GOTO 230 IF(WW(1).NE.9898) THEN WB(1,11)=(PB(91)*BT(3,2)+PB(92)*BT(5,2)+PB(93)*BT(7,2)) $ *SLONG*DBASY1*F11B $ + (PB(65)*BT(3,2)+PB(66)*BT(5,2)+PB(67)*BT(7,2)) $ *CLONG*DBASY1*F11B $ +(PB(191)*BT(3,3)+PB(193)*BT(5,3)+PB(195)*BT(7,3) $ +PB(197)*BT(9,3) $ )*S2LONG*DBASY2*F11B $ + (PB(192)*BT(3,3)+PB(194)*BT(5,3)+PB(196)*BT(7,3) $ +PB(198)*BT(9,3) $ )*C2LONG*DBASY2*F11B ENDIF IF(WW(2).NE.9898) THEN WB(2,11)=-(PB(65)*BP(3,2)+PB(66)*BP(5,2)+PB(67)*BP(7,2)) $ *SLONG*DBASY1*F11B $ + (PB(91)*BP(3,2)+PB(92)*BP(5,2)+PB(93)*BP(7,2)) $ *CLONG*DBASY1*F11B $ -(PB(192)*BP(3,3)+PB(194)*BP(5,3)+PB(196)*BP(7,3) $ +PB(198)*BP(9,3) $ )*S2LONG*DBASY2*F11B $ + (PB(191)*BP(3,3)+PB(193)*BP(5,3)+PB(195)*BP(7,3) $ +PB(197)*BP(9,3) $ )*C2LONG*DBASY2*F11B ENDIF DCASY1=1.+PC(199)*SLAT DCASY2=1.+PC(200)*SLAT F11C=1.+PC(81)*DFC*SWC(1) IF(WW(1).NE.9898) THEN WC(1,11)=-(PC(65)*BP(2,2)+PC(66)*BP(4,2)+PC(67)*BP(6,2) $ +PC(73)*BP(8,2)+PC(74)*BP(10,2) $ )*SLONG*DCASY1*F11C $ + (PC(91)*BP(2,2)+PC(92)*BP(4,2)+PC(93)*BP(6,2) $ +PC(87)*BP(8,2)+PC(88)*BP(10,2) $ )*CLONG*DCASY1*F11C $ -(PC(192)*BP(4,3)+PC(194)*BP(6,3)+PC(196)*BP(8,3) $ +PC(198)*BP(10,3) $ )*S2LONG*DCASY2*F11C $ + (PC(191)*BP(4,3)+PC(193)*BP(6,3)+PC(195)*BP(8,3) $ +PC(197)*BP(10,3) $ )*C2LONG*DCASY2*F11C ENDIF IF(WW(2).NE.9898) THEN WC(2,11)=-(PC(91)*BT(2,2)+PC(92)*BT(4,2)+PC(93)*BT(6,2) $ +PC(87)*BT(8,2)+PC(88)*BT(10,2) $ )*SLONG*DCASY1*F11C $ - (PC(65)*BT(2,2)+PC(66)*BT(4,2)+PC(67)*BT(6,2) $ +PC(73)*BT(8,2)+PC(74)*BT(10,2) $ )*CLONG*DCASY1*F11C $ -(PC(191)*BT(4,3)+PC(193)*BT(6,3)+PC(195)*BT(8,3) $ +PC(197)*BT(10,3) $ )*S2LONG*DCASY2*F11C $ - (PC(192)*BT(4,3)+PC(194)*BT(6,3)+PC(196)*BT(8,3) $ +PC(198)*BT(10,3) $ )*C2LONG*DCASY2*F11C ENDIF 230 CONTINUE C UT & MIXED UT/LONG UTBASY=1. F12B=1.+PB(82)*DFC*SWC(1) IF(SW(12).EQ.0) GOTO 240 IF(WW(1).NE.9898) THEN WB(1,12)=(PB(69)*BT(2,1)+PB(70)*BT(4,1)+PB(71)*BT(6,1) $ +PB(116)*BT(8,1)+PB(117)*BT(10,1)+PB(118)*BT(12,1) $ )*COS(SR*(SEC-PB(72)))*UTBASY*F12B $ + (PB(77)*BT(4,3)+PB(78)*BT(6,3)+PB(79)*BT(8,3)) $ *COS(SR*(SEC-PB(80))+2.*DGTR*LONG)*UTBASY*F12B*SWC(11) ENDIF IF(WW(2).NE.9898) THEN WB(2,12)=(PB(77)*BP(4,3)+PB(78)*BP(6,3)+PB(79)*BP(8,3)) $ *COS(SR*(SEC-PB(80)+21600.)+2.*DGTR*LONG) $ *UTBASY*F12B*SWC(11) ENDIF UTCASY=1. F12C=1.+PC(82)*DFC*SWC(1) IF(WW(1).NE.9898) THEN WC(1,12)=(PC(77)*BP(3,3)+PC(78)*BP(5,3)+PC(79)*BP(7,3) $ +PC(165)*BP(9,3)+PC(166)*BP(11,3)+PC(167)*BP(13,3) $ )*COS(SR*(SEC-PC(80))+2.*DGTR*LONG)*UTCASY*F12C*SWC(11) ENDIF IF(WW(2).NE.9898) THEN WC(2,12)=-(PC(69)*BT(3,1)+PC(70)*BT(5,1)+PC(71)*BT(7,1) $ +PC(116)*BT(9,1)+PC(117)*BT(11,1)+PC(118)*BT(13,1) $ )*COS(SR*(SEC-PC(72)))*UTCASY*F12C $ + (PC(77)*BT(3,3)+PC(78)*BT(5,3)+PC(79)*BT(7,3) $ +PC(165)*BT(9,3)+PC(166)*BT(11,3)+PC(167)*BT(13,3) $ )*COS(SR*(SEC-PC(80)+21600.)+2.*DGTR*LONG) $ *UTCASY*F12C*SWC(11) ENDIF 240 CONTINUE C MIXED LONG,UT,AP IF(SW(13).EQ.0) GOTO 48 IF(SW9.EQ.-1.) GO TO 45 IF(APD.EQ.0) GOTO 48 IF(WW(1).NE.9898) THEN WB(1,13)= $ (PB(61)*BT(3,2)+PB(62)*BT(5,2)+PB(63)*BT(7,2)) $ *COS(DGTR*(LONG-PB(64)))*APDF*SWC(11)+ $ (PB(84)*BT(2,1)+PB(85)*BT(4,1)+PB(86)*BT(6,1)) $ *COS(SR*(SEC-PB(76)))*APDF*SWC(12) ENDIF IF(WW(2).NE.9898) THEN WB(2,13)=(PB(61)*BP(3,2)+PB(62)*BP(5,2)+PB(63)*BP(7,2)) $ *COS(DGTR*(LONG-PB(64)+90.))*APDF*SWC(11) ENDIF IF(WW(1).NE.9898) THEN WC(1,13)=SWC(11)*WC(1,11)*PC(61)*APDFC $ +SWC(12)*WC(1,12)*PC(84)*APDFC ENDIF IF(WW(2).NE.9898) THEN WC(2,13)=SWC(11)*WC(2,11)*PC(61)*APDFC $ +SWC(12)*WC(2,12)*PC(84)*APDFC ENDIF GOTO 48 45 CONTINUE IF(APT.EQ.0) GOTO 48 IF(WW(1).NE.9898) THEN WB(1,13)= $ (PB(53)*BT(3,2)+PB(99)*BT(5,2)+PB(68)*BT(7,2)) $ *COS(DGTR*(LONG-PB(98)))*APT*SWC(11)+ $ (PB(56)*BT(2,1)+PB(57)*BT(4,1)+PB(58)*BT(6,1)) $ *COS(SR*(SEC-PB(59)))*APT*SWC(12) ENDIF IF(WW(2).NE.9898) THEN WB(2,13)=(PB(53)*BP(3,2)+PB(99)*BP(5,2)+PB(68)*BP(7,2)) $ *COS(DGTR*(LONG-PB(98)+90.))*APT*SWC(11) ENDIF IF(WW(1).NE.9898) THEN WC(1,13)=SWC(11)*WC(1,11)*PC(53)*APT $ +SWC(12)*WC(1,12)*PC(56)*APT ENDIF IF(WW(2).NE.9898) THEN WC(2,13)=SWC(11)*WC(2,11)*PC(53)*APT $ +SWC(12)*WC(2,12)*PC(56)*APT ENDIF 48 CONTINUE 49 CONTINUE WBT(1)=0 WBT(2)=0 WCT(1)=0 WCT(2)=0 C SUM WINDS AND CHANGE MERIDIONAL SIGN TO + NORTH DO 50 K=1,NSW WBT(1)=WBT(1)-ABS(SW(K))*WB(1,K) WCT(1)=WCT(1)-ABS(SW(K))*WC(1,K) WBT(2)=WBT(2)+ABS(SW(K))*WB(2,K) WCT(2)=WCT(2)+ABS(SW(K))*WC(2,K) 50 CONTINUE IF(WW(1).NE.9898) WW(1)=WBT(1)*SW(24)+WCT(1)*SW(25) IF(WW(2).NE.9898) WW(2)=WBT(2)*SW(24)+WCT(2)*SW(25) RETURN END C----------------------------------------------------------------------- SUBROUTINE GLBW5M(YRD,SEC,LAT,LONG,STL,F107A,F107,AP,PB,PC,WW) REAL LAT,LONG DIMENSION WB(2,15),WC(2,15),PB(1),PC(1),WW(2) DIMENSION AP(1) COMMON/CSW/SW(25),ISW,SWC(25) COMMON/HWMC/WBT(2),WCT(2) C COMMON/VPOLY/BT(20,20),BP(20,20),CSTL,SSTL,C2STL,S2STL, C $ C3STL,S3STL,IYR,DAY,DF,DFA,DFC,APD,APDF,APDFC,APT,STL COMMON/VPOLY2/XVL,LVL,MVL,CLAT,SLAT,BT(20,20),BP(20,20) COMMON/LTCOMP/TLL,NSVL,CSTL,SSTL,C2STL,S2STL,C3STL,S3STL COMMON/LGCOMP/XLL,NGVL,CLONG,SLONG,C2LONG,S2LONG SAVE DATA DGTR/.017453/,SR/7.2722E-5/,HR/.2618/,DR/1.72142E-2/ DATA PB14/-1./,PB18/-1./ DATA NSW/14/,WB/30*0/,WC/30*0/ DATA SW9/1./,LV/10/,MV/2/,NSV/2/,PSET/4./ G0(A)=(A-4.+(PB(26)-1.)*(A-4.+(EXP(-ABS(PB(25))*(A-4.))-1.)/ * ABS(PB(25)))) C CONFIRM PARAMETER SET IF(PB(100).EQ.0) PB(100)=PSET IF(PB(100).NE.PSET) THEN WRITE(6,900) PSET,PB(100),PC(100) 900 FORMAT(1X,'WRONG PARAMETER SET FOR GLBW5M',3F10.1) STOP ENDIF C DO 10 J=1,NSW WB(1,J)=0 WB(2,J)=0 WC(1,J)=0 WC(2,J)=0 10 CONTINUE IF(SW(9).GT.0) SW9=1. IF(SW(9).LT.0) SW9=-1. IYR = YRD/1000. DAY = YRD - IYR*1000. IF(XVL.NE.LAT.OR.LV.GT.LVL.OR.MV.GT.MVL) THEN SLAT=SIN(DGTR*LAT) CLAT=COS(DGTR*LAT) CALL VSPHR1(SLAT,CLAT,LV,MV,BT,BP,20) XVL=LAT LVL=LV MVL=MV ENDIF IF(TLL.NE.STL.OR.NSV.GT.NSVL) THEN SSTL = SIN(HR*STL) CSTL = COS(HR*STL) S2STL = SIN(2.*HR*STL) C2STL = COS(2.*HR*STL) TLL = STL NSVL=NSV ENDIF IF(DAY.NE.DAYL.OR.PB(14).NE.PB14) CD14=COS(DR*(DAY-PB(14))) IF(DAY.NE.DAYL.OR.PB(18).NE.PB18) CD18=COS(2.*DR*(DAY-PB(18))) IF(DAY.NE.DAYL.OR.PB(19).NE.PB19) CD19B=COS(2.*DR*(DAY-PB(19))) DAYL=DAY PB14=PB(14) PB18=PB(18) PB19=PB(19) C F10.7 EFFECT DF=F107-F107A DFA=F107A-150. DFC=DFA+PB(20)*DF C TIME INDEPENDENT F1B=1. IF(WW(1).NE.9898) THEN WB(1,2)=(PB(2)*BT(3,1)+PB(3)*BT(5,1)+PB(23)*BT(7,1))*F1B ENDIF WB(2,2)=0. F1C=1. WC(1,2)=0. IF(WW(2).NE.9898) THEN WC(2,2)=-(PC(2)*BT(2,1)+PC(3)*BT(4,1)+PC(23)*BT(6,1))*F1C $ -(PC(27)*BT(3,1)+PC(15)*BT(5,1)+PC(60)*BT(7,1))*F1C ENDIF C SYMMETRICAL ANNUAL C SYMMETRICAL SEMIANNUAL IF(WW(1).NE.9898) THEN WB(1,4)=(PB(17)*BT(3,1)+PB(31)*BT(5,1))*CD18 ENDIF WB(2,4)=0 WC(1,4)=0 IF(WW(2).NE.9898) THEN WC(2,4)=-(PC(17)*BT(2,1)+PC(31)*BT(4,1))*CD18 ENDIF C ASYMMETRICAL ANNUAL F5B=1. IF(WW(1).NE.9898) THEN WB(1,5)=(PB(10)*BT(2,1)+PB(11)*BT(4,1))*CD14*F5B ENDIF WB(2,5)=0 F5C=1. WC(1,5)=0 IF(WW(2).NE.9898) THEN WC(2,5)=-(PC(10)*BT(3,1)+PC(11)*BT(5,1))*CD14*F5C ENDIF C ASYMMETRICAL SEMIANNUAL C DIURNAL IF(SW(7).EQ.0) GOTO 200 F7B=1. F75B=1. IF(WW(1).NE.9898) THEN WB(1,7)=(PB(7)*BT(2,2)+PB(8)*BT(4,2)+PB(29)*BT(6,2) $ +PB(89)*BT(3,2) $ )*SSTL*F7B $ +(PB(13)*BT(3,2)+PB(146)*BT(5,2)) $ *CD14*SSTL*F75B*SWC(5) $ + (PB(4)*BT(2,2)+PB(5)*BT(4,2)+PB(28)*BT(6,2) $ +PB(88)*BT(3,2) $ )*CSTL*F7B $ +(PB(12)*BT(3,2)+PB(145)*BT(5,2)) $ *CD14*CSTL*F75B*SWC(5) ENDIF IF(WW(2).NE.9898) THEN WB(2,7)=-(PB(4)*BP(2,2)+PB(5)*BP(4,2)+PB(28)*BP(6,2) $ +PB(88)*BP(3,2) $ )*SSTL*F7B $ -(PB(12)*BP(3,2)+PB(145)*BP(5,2)) $ *CD14*SSTL*F75B*SWC(5) $ + (PB(7)*BP(2,2)+PB(8)*BP(4,2)+PB(29)*BP(6,2) $ +PB(89)*BP(3,2) $ )*CSTL*F7B $ +(PB(13)*BP(3,2)+PB(146)*BP(5,2)) $ *CD14*CSTL*F75B*SWC(5) ENDIF F7C=1. F75C=1. IF(WW(1).NE.9898) THEN WC(1,7)=-(PC(4)*BP(3,2)+PC(5)*BP(5,2)+PC(28)*BP(7,2) $ +PC(88)*BP(2,2) $ +PC(141)*BP(9,2)+PC(143)*BP(11,2) $ )*SSTL*F7C $ -(PC(12)*BP(2,2)+PC(145)*BP(4,2)) $ *CD14*SSTL $ *F75C*SWC(5) $ +(PC(7)*BP(3,2)+PC(8)*BP(5,2)+PC(29)*BP(7,2) $ +PC(89)*BP(2,2) $ +PC(142)*BP(9,2)+PC(144)*BP(11,2) $ )*CSTL*F7C $ +(PC(13)*BP(2,2)+PC(146)*BP(4,2)) $ *CD14*CSTL $ *F75C*SWC(5) ENDIF IF(WW(2).NE.9898) THEN WC(2,7)=-(PC(7)*BT(3,2)+PC(8)*BT(5,2)+PC(29)*BT(7,2) $ +PC(89)*BT(2,2) $ +PC(142)*BT(9,2)+PC(144)*BT(11,2) $ )*SSTL*F7C $ -(PC(13)*BT(2,2)+PC(146)*BT(4,2)) $ *CD14*SSTL $ *F75C*SWC(5) $ -(PC(4)*BT(3,2)+PC(5)*BT(5,2)+PC(28)*BT(7,2) $ +PC(88)*BT(2,2) $ +PC(141)*BT(9,2)+PC(143)*BT(11,2) $ )*CSTL*F7C $ -(PC(12)*BT(2,2)+PC(145)*BT(4,2)) $ *CD14*CSTL $ *F75C*SWC(5) ENDIF 200 CONTINUE C SEMIDIURNAL IF(SW(8).EQ.0) GOTO 210 F8B=1.+PB(90)*DFC*SWC(1) IF(WW(1).NE.9898) THEN WB(1,8)=(PB(9)*BT(3,3)+PB(43)*BT(5,3)+PB(111)*BT(7,3) $ +PB(98)*BT(4,3) $ +(PB(34)*BT(4,3)+PB(148)*BT(6,3))*CD14*SWC(5) $ +(PB(37)*BT(4,3))*CD19B*SWC(6) $ )*S2STL*F8B $ +(PB(6)*BT(3,3)+PB(42)*BT(5,3)+PB(110)*BT(7,3) $ +PB(96)*BT(4,3) $ +(PB(24)*BT(4,3)+PB(147)*BT(6,3))*CD14*SWC(5) $ +(PB(36)*BT(4,3))*CD19B*SWC(6) $ )*C2STL*F8B ENDIF IF(WW(2).NE.9898) THEN WB(2,8)=-(PB(6)*BP(3,3)+PB(42)*BP(5,3)+PB(110)*BP(7,3) $ +PB(96)*BP(4,3) $ +(PB(24)*BP(4,3)+PB(147)*BP(6,3))*CD14*SWC(5) $ +(PB(36)*BP(4,3))*CD19B*SWC(6) $ )*S2STL*F8B $ + (PB(9)*BP(3,3)+PB(43)*BP(5,3)+PB(111)*BP(7,3) $ +PB(98)*BP(4,3) $ +(PB(34)*BP(4,3)+PB(148)*BP(6,3))*CD14*SWC(5) $ +(PB(37)*BP(4,3))*CD19B*SWC(6) $ )*C2STL*F8B ENDIF F8C=1.+PC(90)*DFC*SWC(1) IF(WW(1).NE.9898) THEN WC(1,8)=-(PC(6)*BP(4,3)+PC(42)*BP(6,3)+PC(110)*BP(8,3) $ +PC(96)*BP(3,3) $ +(PC(24)*BP(3,3)+PC(147)*BP(5,3))*CD14*SWC(5) $ +(PC(36)*BP(3,3))*CD19B*SWC(6) $ )*S2STL*F8C $ +(PC(9)*BP(4,3)+PC(43)*BP(6,3)+PC(111)*BP(8,3) $ +PC(98)*BP(3,3) $ +(PC(34)*BP(3,3)+PC(148)*BP(5,3))*CD14*SWC(5) $ +(PC(37)*BP(3,3))*CD19B*SWC(6) $ )*C2STL*F8C ENDIF IF(WW(2).NE.9898) THEN WC(2,8)=-(PC(9)*BT(4,3)+PC(43)*BT(6,3)+PC(111)*BT(8,3) $ +PC(98)*BT(3,3) $ +(PC(34)*BT(3,3)+PC(148)*BT(5,3))*CD14*SWC(5) $ +(PC(37)*BT(3,3))*CD19B*SWC(6) $ )*S2STL*F8C $ - (PC(6)*BT(4,3)+PC(42)*BT(6,3) $ +PC(96)*BT(3,3) $ +PC(110)*BT(8,3) $ +(PC(24)*BT(3,3)+PC(147)*BT(5,3))*CD14*SWC(5) $ +(PC(36)*BT(3,3))*CD19B*SWC(6) $ )*C2STL*F8C ENDIF 210 CONTINUE C TERDIURNAL C MAGNETIC ACTIVITY IF(SW(9).EQ.0) GOTO 40 IF(SW9.EQ.-1.) GOTO 30 C daily AP APD=AP(1)-4. APDF=(APD+(PB(45)-1.)*(APD+(EXP(-PB(44)*APD)-1.)/PB(44))) C APDFC=(APD+(PC(45)-1.)*(APD+(EXP(-PC(44)*APD)-1.)/PC(44))) APDFC=APDF IF(APD.EQ.0) GOTO 40 IF(WW(1).NE.9898) THEN WB(1,9)=(PB(46)*BT(3,1)+PB(35)*BT(5,1))*APDF $ +(PB(122)*BT(2,2)+PB(123)*BT(4,2)+PB(124)*BT(6,2) $ )*COS(HR*(STL-PB(125)))*APDF*SWC(7) ENDIF IF(WW(2).NE.9898) THEN WB(2,9)= $ (PB(122)*BP(2,2)+PB(123)*BP(4,2)+PB(124)*BP(6,2) $ )*COS(HR*(STL-PB(125)+6.))*APDF*SWC(7) ENDIF IF(WW(1).NE.9898) THEN WC(1,9)= $ (PC(122)*BP(3,2)+PC(123)*BP(5,2)+PC(124)*BP(7,2) $ )*COS(HR*(STL-PC(125)))*APDFC*SWC(7) ENDIF IF(WW(2).NE.9898) THEN WC(2,9)=-(PC(46)*BT(2,1)+PC(35)*BT(4,1))*APDFC $ +(PC(122)*BT(3,2)+PC(123)*BT(5,2)+PC(124)*BT(7,2) $ )*COS(HR*(STL-PC(125)+6.))*APDFC*SWC(7) ENDIF GO TO 40 30 CONTINUE IF(PB(25).LT.1.E-4) PB(25)=1.E-4 APT=G0(AP(2)) IF(APT.EQ.0) GOTO 40 IF(WW(1).NE.9898) THEN WB(1,9)=(PB(97)*BT(3,1)+PB(55)*BT(5,1))*APT $ +(PB(129)*BT(2,2)+PB(130)*BT(4,2)+PB(131)*BT(6,2) $ )*COS(HR*(STL-PB(132)))*APT*SWC(7) ENDIF IF(WW(2).NE.9898) THEN WB(2,9)= $ (PB(129)*BP(2,2)+PB(130)*BP(4,2)+PB(131)*BP(6,2) $ )*COS(HR*(STL-PB(132)+6.))*APT*SWC(7) ENDIF IF(WW(1).NE.9898) THEN WC(1,9)= $ (PC(129)*BP(3,2)+PC(130)*BP(5,2)+PC(131)*BP(7,2) $ )*COS(HR*(STL-PC(132)))*APT*SWC(7) ENDIF IF(WW(2).NE.9898) THEN WC(2,9)=-(PC(97)*BT(2,1)+PC(55)*BT(4,1))*APT $ +(PC(129)*BT(3,2)+PC(130)*BT(5,2)+PC(131)*BT(7,2) $ )*COS(HR*(STL-PC(132)+6.))*APT*SWC(7) ENDIF 40 CONTINUE WBT(1)=0 WBT(2)=0 WCT(1)=0 WCT(2)=0 C SUM WINDS AND CHANGE MERIDIONAL SIGN TO + NORTH DO 50 K=1,NSW WBT(1)=WBT(1)-ABS(SW(K))*WB(1,K) WCT(1)=WCT(1)-ABS(SW(K))*WC(1,K) WBT(2)=WBT(2)+ABS(SW(K))*WB(2,K) WCT(2)=WCT(2)+ABS(SW(K))*WC(2,K) 50 CONTINUE IF(WW(1).NE.9898) WW(1)=WBT(1)*SW(24)+WCT(1)*SW(25) IF(WW(2).NE.9898) WW(2)=WBT(2)*SW(24)+WCT(2)*SW(25) RETURN END C----------------------------------------------------------------------- SUBROUTINE GLBW5S(IYD,LAT,LONG,STL,PB,PC,WW) REAL LAT,LONG DIMENSION WB(2,15),WC(2,15),PB(1),PC(1),WW(2) COMMON/CSW/SW(25),ISW,SWC(25) COMMON/HWMC/WBT(2),WCT(2) COMMON/VPOLY2/XVL,LVL,MVL,CLAT,SLAT,BT(20,20),BP(20,20) COMMON/LTCOMP/TLL,NSVL,CSTL,SSTL,C2STL,S2STL,C3STL,S3STL COMMON/LGCOMP/XLL,NGVL,CLONG,SLONG,C2LONG,S2LONG SAVE DATA DGTR/.017453/,SR/7.2722E-5/,HR/.2618/,DR/1.72142E-2/ DATA PB14/-1./,PB18/-1./,PC14/-1./,PC18/-1./,PSET/5./ DATA NSW/14/,WB/30*0/,WC/30*0/ C CONFIRM PARAMETER SET IF(PB(100).EQ.0) PB(100)=PSET IF(PB(100).NE.PSET) THEN WRITE(6,900) PSET,PB(100),PC(100) 900 FORMAT(1X,'WRONG PARAMETER SET FOR GLBW5S',3F10.1) STOP ENDIF C DO 10 J=1,NSW WB(1,J)=0 WB(2,J)=0 WC(1,J)=0 WC(2,J)=0 10 CONTINUE IYR = IYD/1000 DAY = IYD - IYR*1000 C LV=7 MV=2 IF(XVL.NE.LAT.OR.LV.GT.LVL.OR.MV.GT.MVL) THEN SLAT=SIN(DGTR*LAT) CLAT=COS(DGTR*LAT) CALL VSPHR1(SLAT,CLAT,LV,MV,BT,BP,20) PLG10=SLAT PLG30=(5.*SLAT*SLAT-3.)*SLAT/2. XVL=LAT LVL=LV MVL=MV ENDIF C NSV=2 IF(TLL.NE.STL.OR.NSV.GT.NSVL) THEN SSTL = SIN(HR*STL) CSTL = COS(HR*STL) S2STL = SIN(2.*HR*STL) C2STL = COS(2.*HR*STL) TLL = STL NSVL=NSV ENDIF IF(DAY.NE.DAYL.OR.PB(14).NE.PB14) CD14B=COS(DR*(DAY-PB(14))) IF(DAY.NE.DAYL.OR.PC(14).NE.PC14) CD14C=COS(DR*(DAY-PC(14))) IF(DAY.NE.DAYL.OR.PB(18).NE.PB18) CD18B=COS(2.*DR*(DAY-PB(18))) IF(DAY.NE.DAYL.OR.PC(18).NE.PC18) CD18C=COS(2.*DR*(DAY-PC(18))) IF(DAY.NE.DAYL.OR.PB(19).NE.PB19) CD19B=COS(2.*DR*(DAY-PB(19))) IF(DAY.NE.DAYL.OR.PB(25).NE.PB25) CD25B=COS(DR*(DAY-PB(25))) C IF(DAY.NE.DAYL.OR.PC(25).NE.PC25) CD25C=COS(DR*(DAY-PC(25))) IF(DAY.NE.DAYL.OR.PB(26).NE.PB26) CD26B=COS(DR*(DAY-PB(26))) C IF(DAY.NE.DAYL.OR.PC(26).NE.PC26) CD26C=COS(DR*(DAY-PC(26))) IF(DAY.NE.DAYL.OR.PC(32).NE.PC32) CD32C=COS(DR*(DAY-PC(32))) IF(DAY.NE.DAYL.OR.PC(39).NE.PC39) CD39C=COS(2.*DR*(DAY-PC(39))) IF(DAY.NE.DAYL.OR.PC(64).NE.PC64) CD64C=COS(DR*(DAY-PC(64))) IF(DAY.NE.DAYL.OR.PC(87).NE.PC87) CD87C=COS(2.*DR*(DAY-PC(87))) DAYL=DAY PB14=PB(14) PC14=PC(14) PB18=PB(18) PC18=PC(18) PB19=PB(19) PB25=PB(25) PC25=PC(25) PB26=PB(26) PC26=PC(26) PC32=PC(32) PC39=PC(39) PC64=PC(64) PC87=PC(87) C NGV=1 IF(XLL.NE.LONG.OR.NGV.GT.NGVL) THEN SLONG=SIN(DGTR*LONG) CLONG=COS(DGTR*LONG) XLL=LONG NGVL=NGV ENDIF C TIME INDEPENDENT F1B=1. IF(WW(1).NE.9898) THEN WB(1,2)=(PB(2)*BT(3,1)+PB(3)*BT(5,1)+PB(23)*BT(7,1))*F1B ENDIF WB(2,2)=0. F1C=1. WC(1,2)=0. IF(WW(2).NE.9898) THEN WC(2,2)=-(PC(2)*BT(2,1)+PC(3)*BT(4,1)+PC(23)*BT(6,1))*F1C $ -(PC(27)*BT(3,1)+PC(15)*BT(5,1)+PC(60)*BT(7,1))*F1C ENDIF C SYMMETRICAL ANNUAL IF(WW(2).NE.9898) THEN WC(2,3)=-(PC(48)*BT(2,1)+PC(30)*BT(4,1))*CD32C ENDIF C SYMMETRICAL SEMIANNUAL IF(WW(1).NE.9898) THEN WB(1,4)=(PB(17)*BT(3,1)+PB(31)*BT(5,1))*CD18B ENDIF WB(2,4)=0 WC(1,4)=0 IF(WW(2).NE.9898) THEN WC(2,4)=-(PC(17)*BT(2,1)+PC(31)*BT(4,1)+PC(50)*BT(6,1))*CD18C ENDIF C ASYMMETRICAL ANNUAL F5B=1. IF(WW(1).NE.9898) THEN WB(1,5)=(PB(10)*BT(2,1)+PB(11)*BT(4,1))*CD14B*F5B ENDIF WB(2,5)=0 F5C=1. WC(1,5)=0 IF(WW(2).NE.9898) THEN WC(2,5)=-(PC(10)*BT(3,1)+PC(11)*BT(5,1)+PC(21)*BT(7,1))*CD14C*F5C ENDIF C ASYMMETRICAL SEMIANNUAL IF(WW(2).NE.9898) THEN WC(2,6)=-(PC(38)*BT(3,1)+PC(99)*BT(5,1))*CD39C ENDIF C DIURNAL IF(SW(7).EQ.0) GOTO 200 F7B=1. F75B=1. IF(WW(1).NE.9898) THEN WB(1,7)=(PB(7)*BT(2,2)+PB(8)*BT(4,2)+PB(29)*BT(6,2) $ +PB(89)*BT(3,2) $ )*SSTL*F7B $ +(PB(13)*BT(3,2)) $ *CD25B*SSTL*F75B*SWC(5) $ + (PB(4)*BT(2,2)+PB(5)*BT(4,2)+PB(28)*BT(6,2) $ +PB(88)*BT(3,2) $ )*CSTL*F7B $ +(PB(12)*BT(3,2)) $ *CD25B*CSTL*F75B*SWC(5) ENDIF IF(WW(2).NE.9898) THEN WB(2,7)=-(PB(4)*BP(2,2)+PB(5)*BP(4,2)+PB(28)*BP(6,2) $ +PB(88)*BP(3,2) $ )*SSTL*F7B $ -(PB(12)*BP(3,2)) $ *CD25B*SSTL*F75B*SWC(5) $ + (PB(7)*BP(2,2)+PB(8)*BP(4,2)+PB(29)*BP(6,2) $ +PB(89)*BP(3,2) $ )*CSTL*F7B $ +(PB(13)*BP(3,2)) $ *CD25B*CSTL*F75B*SWC(5) ENDIF F7C=1. F75C=1. IF(WW(1).NE.9898) THEN WC(1,7)=-(PC(4)*BP(3,2)+PC(5)*BP(5,2)+PC(28)*BP(7,2) $ +PC(88)*BP(2,2) $ )*SSTL*F7C $ -(PC(12)*BP(2,2)) $ *CD25B*SSTL $ *F75C*SWC(5) $ +(PC(7)*BP(3,2)+PC(8)*BP(5,2)+PC(29)*BP(7,2) $ +PC(89)*BP(2,2) $ )*CSTL*F7C $ +(PC(13)*BP(2,2)) $ *CD25B*CSTL $ *F75C*SWC(5) ENDIF IF(WW(2).NE.9898) THEN WC(2,7)=-(PC(7)*BT(3,2)+PC(8)*BT(5,2)+PC(29)*BT(7,2) $ +PC(89)*BT(2,2) $ )*SSTL*F7C $ -(PC(13)*BT(2,2)) $ *CD25B*SSTL $ *F75C*SWC(5) $ -(PC(4)*BT(3,2)+PC(5)*BT(5,2)+PC(28)*BT(7,2) $ +PC(88)*BT(2,2) $ )*CSTL*F7C $ -(PC(12)*BT(2,2)) $ *CD25B*CSTL $ *F75C*SWC(5) ENDIF 200 CONTINUE C SEMIDIURNAL IF(SW(8).EQ.0) GOTO 210 F8B=1. IF(WW(1).NE.9898) THEN WB(1,8)=(PB(9)*BT(3,3)+PB(43)*BT(5,3)+PB(35)*BT(7,3) $ +PB(98)*BT(4,3) $ +(PB(34)*BT(4,3))*CD26B*SWC(5) $ +(PB(37)*BT(4,3))*CD19B*SWC(6) $ )*S2STL*F8B $ +(PB(6)*BT(3,3)+PB(42)*BT(5,3)+PB(33)*BT(7,3) $ +PB(96)*BT(4,3) $ +(PB(24)*BT(4,3))*CD26B*SWC(5) $ +(PB(36)*BT(4,3))*CD19B*SWC(6) $ )*C2STL*F8B ENDIF IF(WW(2).NE.9898) THEN WB(2,8)=-(PB(6)*BP(3,3)+PB(42)*BP(5,3)+PB(33)*BP(7,3) $ +PB(96)*BP(4,3) $ +(PB(24)*BP(4,3))*CD26B*SWC(5) $ +(PB(36)*BP(4,3))*CD19B*SWC(6) $ )*S2STL*F8B $ + (PB(9)*BP(3,3)+PB(43)*BP(5,3)+PB(35)*BP(7,3) $ +PB(98)*BP(4,3) $ +(PB(34)*BP(4,3))*CD26B*SWC(5) $ +(PB(37)*BP(4,3))*CD19B*SWC(6) $ )*C2STL*F8B ENDIF F8C=1. IF(WW(1).NE.9898) THEN WC(1,8)=-(PC(6)*BP(4,3)+PC(42)*BP(6,3)+PC(33)*BP(8,3) $ +PC(96)*BP(3,3) $ +(PC(24)*BP(3,3))*CD26B*SWC(5) $ +(PC(36)*BP(3,3))*CD19B*SWC(6) $ )*S2STL*F8C $ +(PC(9)*BP(4,3)+PC(43)*BP(6,3)+PC(35)*BP(8,3) $ +PC(98)*BP(3,3) $ +(PC(34)*BP(3,3))*CD26B*SWC(5) $ +(PC(37)*BP(3,3))*CD19B*SWC(6) $ )*C2STL*F8C ENDIF IF(WW(2).NE.9898) THEN WC(2,8)=-(PC(9)*BT(4,3)+PC(43)*BT(6,3)+PC(35)*BT(8,3) $ +PC(98)*BT(3,3) $ +(PC(34)*BT(3,3))*CD26B*SWC(5) $ +(PC(37)*BT(3,3))*CD19B*SWC(6) $ )*S2STL*F8C $ - (PC(6)*BT(4,3)+PC(42)*BT(6,3)+PC(33)*BT(8,3) $ +PC(96)*BT(3,3) $ +(PC(24)*BT(3,3))*CD26B*SWC(5) $ +(PC(36)*BT(3,3))*CD19B*SWC(6) $ )*C2STL*F8C ENDIF 210 CONTINUE C LONGITUDINAL IF(SW(10).EQ.0.OR.SW(11).EQ.0) GOTO 230 IF(WW(1).NE.9898) THEN WC(1,11)= $ - (PC(65)*BP(2,2)+PC(66)*BP(4,2)+PC(67)*BP(6,2) $ +PC(75)*BP(3,2)+PC(76)*BP(5,2)+ PC(77)*BP(7,2) $ +(PC(57)*BP(2,2)+PC(59)*BP(4,2)+PC(62)*BP(6,2) $ +PC(51)*BP(3,2)+PC(53)*BP(5,2)+PC(55)*BP(7,2)) $ *CD64C*SWC(3) $ +(PC(74)*BP(2,2)+PC(82)*BP(4,2)+PC(85)*BP(6,2) $ +PC(68)*BP(3,2)+PC(70)*BP(5,2)+PC(72)*BP(7,2)) $ *CD87C*SWC(4) $ )*SLONG $ + (PC(91)*BP(2,2)+PC(92)*BP(4,2)+PC(93)*BP(6,2) $ +PC(78)*BP(3,2)+PC(79)*BP(5,2)+PC(80)*BP(7,2) $ +(PC(58)*BP(2,2)+PC(61)*BP(4,2)+PC(63)*BP(6,2) $ +PC(52)*BP(3,2)+PC(54)*BP(5,2)+PC(56)*BP(7,2)) $ *CD64C*SWC(3) $ +(PC(81)*BP(2,2)+PC(84)*BP(4,2)+PC(86)*BP(6,2) $ +PC(69)*BP(3,2)+PC(71)*BP(5,2)+PC(73)*BP(7,2)) $ *CD87C*SWC(4) $ )*CLONG ENDIF IF(WW(2).NE.9898) THEN WC(2,11)= $ - (PC(91)*BT(2,2)+PC(92)*BT(4,2)+PC(93)*BT(6,2) $ +PC(78)*BT(3,2)+PC(79)*BT(5,2)+PC(80)*BT(7,2) $ +(PC(58)*BT(2,2)+PC(61)*BT(4,2)+PC(63)*BT(6,2) $ +PC(52)*BT(3,2)+PC(54)*BT(5,2)+PC(56)*BT(7,2)) $ *CD64C*SWC(3) $ +(PC(81)*BT(2,2)+PC(84)*BT(4,2)+PC(86)*BT(6,2) $ +PC(69)*BT(3,2)+PC(71)*BT(5,2)+PC(73)*BT(7,2)) $ *CD87C*SWC(4) $ )*SLONG $ - (PC(65)*BT(2,2)+PC(66)*BT(4,2)+PC(67)*BT(6,2) $ +PC(75)*BT(3,2)+PC(76)*BT(5,2)+PC(77)*BT(7,2) $ +(PC(57)*BT(2,2)+PC(59)*BT(4,2)+PC(62)*BT(6,2) $ +PC(51)*BT(3,2)+PC(53)*BT(5,2)+PC(55)*BT(7,2)) $ *CD64C*SWC(3) $ +(PC(74)*BT(2,2)+PC(82)*BT(4,2)+PC(85)*BT(6,2) $ +PC(68)*BT(3,2)+PC(70)*BT(5,2)+PC(72)*BT(7,2)) $ *CD87C*SWC(4) $ )*CLONG ENDIF 230 CONTINUE WBT(1)=0 WBT(2)=0 WCT(1)=0 WCT(2)=0 C SUM WINDS AND CHANGE MERIDIONAL SIGN TO + NORTH DO 50 K=1,NSW WBT(1)=WBT(1)-ABS(SW(K))*WB(1,K) WCT(1)=WCT(1)-ABS(SW(K))*WC(1,K) WBT(2)=WBT(2)+ABS(SW(K))*WB(2,K) WCT(2)=WCT(2)+ABS(SW(K))*WC(2,K) 50 CONTINUE IF(WW(1).NE.9898) WW(1)=WBT(1)*SW(24)+WCT(1)*SW(25) IF(WW(2).NE.9898) WW(2)=WBT(2)*SW(24)+WCT(2)*SW(25) RETURN END C----------------------------------------------------------------------- SUBROUTINE TSELEC(SV) C SET SWITCHES C SW FOR MAIN TERMS, SWC FOR CROSS TERMS DIMENSION SV(1),SAV(25),SVV(1) COMMON/CSW/SW(25),ISW,SWC(25) DO 100 I = 1,25 SAV(I)=SV(I) SW(I)=AMOD(SV(I),2.) IF(ABS(SV(I)).EQ.1.OR.ABS(SV(I)).EQ.2.) THEN SWC(I)=1. ELSE SWC(I)=0. ENDIF 100 CONTINUE ISW=64999 RETURN ENTRY TRETRV(SVV) DO 200 I=1,25 SVV(I)=SAV(I) 200 CONTINUE END C----------------------------------------------------------------------- SUBROUTINE VSPHR1(C,S,L,M,BT,BP,LMAX) C CALCULATE VECTOR SPHERICAL HARMONIC B FIELD THETA AND PHI C FUNCTIONS BT,BP THROUGH ORDER L,M FOR COLATITUDE (THETA) C WITH COSINE C AND SINE S OF COLATITUDE C BT(L+1,M+1)= [(L-M+1) P(L+1,M) - (L+1) P(L,M) COS(THETA)] / C [SQRT(L(L+1)) SIN(THETA)] C BP(L+1,M+1)= M P(L,M) /[SQRT(L(L+1)) SIN(THETA)] C RESULT FOR GIVEN L,M SAVED IN BT AND BP AT ONE HIGHER INDEX NUM DIMENSION BT(LMAX,1),BP(LMAX,1),PLG(20,20) SAVE DATA DGTR/1.74533E-2/ IF(M.GT.L.OR.L.GT.LMAX-1) THEN WRITE(6,100) L,M,LMAX 100 FORMAT('ILLEGAL INDICES TO VSPHER',3I6) RETURN ENDIF BT(1,1)=0 BP(1,1)=0 IF(L.EQ.0.AND.M.EQ.0) RETURN CALL LEGPL1(C,S,L+1,M,PLG,20) IF(ABS(S).LT.1.E-5) THEN IC=SIGN(1.,S) S=0 ENDIF DO 20 LL=1,L SQT=SQRT(FLOAT(LL)*(FLOAT(LL)+1)) LMX=MIN(LL,M) DO 15 MM=0,LMX IF(S.EQ.0) THEN IF(MM.NE.1) THEN BT(LL+1,MM+1)=0 BP(LL+1,MM+1)=0 ELSE BT(LL+1,MM+1)=(LL*(LL+1)*(LL+2)*.5*(IC)**(LL+2) $ -(LL+1)*C*LL*(LL+1)*.5*(IC)**(LL+1))/SQT BP(LL+1,MM+1)=MM*LL*(LL+1)*.5*(IC)**(LL+1)/SQT ENDIF ELSE BT(LL+1,MM+1)=((LL-MM+1)*PLG(LL+2,MM+1) $ -(LL+1)*C*PLG(LL+1,MM+1))/(S*SQT) BP(LL+1,MM+1)=MM*PLG(LL+1,MM+1)/(S*SQT) ENDIF 15 CONTINUE 20 CONTINUE END C----------------------------------------------------------------------- SUBROUTINE LEGPL1(C,S,L,M,PLG,LMAX) C CALCULATE LEGENDRE POLYNOMIALS PLG(L+1,M+1) THROUGH ORDER L,M C FOR COSINE C AND SINE S OF COLATITUDE DIMENSION PLG(LMAX,1) SAVE DATA DGTR/1.74533E-2/ IF(M.GT.L.OR.L.GT.LMAX-1) THEN WRITE(6,99) L,M,LMAX 99 FORMAT(1X,'ILLEGAL INDICES TO LEGPOL',3I5) RETURN ENDIF PLG(1,1)=1. IF(L.EQ.0.AND.M.EQ.0) RETURN C CALCULATE L=M CASE AND L=M+1 DO 10 MM=0,M IF(MM.GT.0) PLG(MM+1,MM+1)=PLG(MM,MM)*(2.*MM-1.)*S IF(L.GT.MM) PLG(MM+2,MM+1)=PLG(MM+1,MM+1)*(2.*MM+1)*C 10 CONTINUE IF(L.EQ.1) RETURN MMX=MIN(M,L-2) DO 30 MM=0,MMX DO 20 LL=MM+2,L PLG(LL+1,MM+1)=((2.*LL-1.)*C*PLG(LL,MM+1)- $ (LL+MM-1.)*PLG(LL-1,MM+1))/(LL-MM) 20 CONTINUE 30 CONTINUE RETURN END C----------------------------------------------------------------------- SUBROUTINE SPLINE(X,Y,N,YP1,YPN,Y2) C CALCULATE 2ND DERIVATIVES OF CUBIC SPLINE INTERP FUNCTION C X,Y: ARRAYS OF TABULATED FUNCTION IN ASCENDING ORDER BY X C N: SIZE OF ARRAYS X,Y C YP1,YPN: SPECIFIED DERIVATIVES AT X(1) AND X(N); VALUES C >= 1E30 SIGNAL SIGNAL SECOND DERIVATIVE ZERO C Y2: OUTPUT ARRAY OF SECOND DERIVATIVES PARAMETER (NMAX=100) DIMENSION X(N),Y(N),Y2(N),U(NMAX) SAVE IF(YP1.GT..99E30) THEN Y2(1)=0 U(1)=0 ELSE Y2(1)=-.5 U(1)=(3./(X(2)-X(1)))*((Y(2)-Y(1))/(X(2)-X(1))-YP1) ENDIF DO 11 I=2,N-1 SIG=(X(I)-X(I-1))/(X(I+1)-X(I-1)) P=SIG*Y2(I-1)+2. Y2(I)=(SIG-1.)/P U(I)=(6.*((Y(I+1)-Y(I))/(X(I+1)-X(I))-(Y(I)-Y(I-1)) $ /(X(I)-X(I-1)))/(X(I+1)-X(I-1))-SIG*U(I-1))/P 11 CONTINUE IF(YPN.GT..99E30) THEN QN=0 UN=0 ELSE QN=.5 UN=(3./(X(N)-X(N-1)))*(YPN-(Y(N)-Y(N-1))/(X(N)-X(N-1))) ENDIF Y2(N)=(UN-QN*U(N-1))/(QN*Y2(N-1)+1.) DO 12 K=N-1,1,-1 Y2(K)=Y2(K)*Y2(K+1)+U(K) 12 CONTINUE RETURN END C----------------------------------------------------------------------- SUBROUTINE SPLINT(XA,YA,Y2A,N,X,Y) C CALCULATE CUBIC SPLINE INTERP VALUE C XA,YA: ARRAYS OF TABULATED FUNCTION IN ASCENDING ORDER BY X C Y2A: ARRAY OF SECOND DERIVATIVES C N: SIZE OF ARRAYS XA,YA,Y2A C X: ABSCISSA FOR INTERPOLATION C Y: OUTPUT VALUE DIMENSION XA(N),YA(N),Y2A(N) SAVE KLO=1 KHI=N 1 CONTINUE IF(KHI-KLO.GT.1) THEN K=(KHI+KLO)/2 IF(XA(K).GT.X) THEN KHI=K ELSE KLO=K ENDIF GOTO 1 ENDIF H=XA(KHI)-XA(KLO) IF(H.EQ.0) WRITE(6,*) 'BAD XA INPUT TO SPLINT' A=(XA(KHI)-X)/H B=(X-XA(KLO))/H Y=A*YA(KLO)+B*YA(KHI)+ $ ((A*A*A-A)*Y2A(KLO)+(B*B*B-B)*Y2A(KHI))*H*H/6. RETURN END C----------------------------------------------------------------------- BLOCK DATA INITW5 C For wind model GWS COMMON/CSW/SW(25),ISW,SWC(25) COMMON/VPOLY2/XVL,LVL,MVL,CLAT,SLAT,BT(20,20),BP(20,20) COMMON/LTCOMP/TLL,NSVL,CSTL,SSTL,C2STL,S2STL,C3STL,S3STL COMMON/LGCOMP/XLL,NGVL,CLONG,SLONG,C2LONG,S2LONG DATA ISW/0/ DATA XVL/-999./,LVL/-1/,MVL/-1/ DATA TLL/-999./,NSVL/-1/ DATA XLL/-999./,NGVL/-1/ END C----------------------------------------------------------------------- BLOCK DATA GWSBK5 C HWM93 28-JAN-93 COMMON/PARMW5/PBA1(50),PBA2(50),PBA3(50),PBA4(50), $PCA1(50),PCA2(50),PCA3(50),PCA4(50), $PBB1(50),PBB2(50),PBB3(50),PCB1(50),PCB2(50),PCB3(50), $PBC1(50),PBC2(50),PBC3(50),PCC1(50),PCC2(50),PCC3(50), $PBD1(50),PBD2(50),PBD3(50),PCD1(50),PCD2(50),PCD3(50), $PBE1(50),PBE2(50),PBE3(50),PCE1(50),PCE2(50),PCE3(50), $PBF1(50),PBF2(50),PBF3(50),PCF1(50),PCF2(50),PCF3(50), $PBG1(50),PBG2(50),PBG3(50),PCG1(50),PCG2(50),PCG3(50), $PBH1(50),PBH2(50),PBH3(50),PCH1(50),PCH2(50),PCH3(50), $PBI1(50),PBI2(50),PCI1(50),PCI2(50),PBJ1(50),PBJ2(50), $PCJ1(50),PCJ2(50),PBK1(50),PBK2(50),PCK1(50),PCK2(50), $PBL1(50),PBL2(50),PCL1(50),PCL2(50),PBM1(50),PBM2(50), $PCM1(50),PCM2(50),PBN1(50),PBN2(50),PCN1(50),PCN2(50), $PBO1(50),PBO2(50),PCO1(50),PCO2(50),PBP1(50),PBP2(50), $PCP1(50),PCP2(50),PBQ1(50),PBQ2(50),PCQ1(50),PCQ2(50), $PBR1(50),PBR2(50),PCR1(50),PCR2(50),PBS1(50),PBS2(50), $PCS1(50),PCS2(50),PBT1(50),PBT2(50),PCT1(50),PCT2(50), $PBU1(50),PBU2(50),PCU1(50),PCU2(50) COMMON/DATW/ISDATE(3),ISTIME(2),NAME(2) CHARACTER*4 :: ISDATE,ISTIME,NAME DATA ISDATE/'28-J','AN-9','3 '/,ISTIME/'20:3','5:39'/ DATA NAME/'HWM9','3 '/ C WINF DATA PBA1/ * 0.00000E+00,-1.31640E+01,-1.52352E+01, 1.00718E+02, 3.94962E+00, * 2.19452E-01, 8.03296E+01,-1.02032E+00,-2.02149E-01, 5.67263E+01, * 0.00000E+00,-6.05459E+00, 6.68106E+00,-8.49486E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 8.39399E+01, 0.00000E+00, 9.96285E-02, * 0.00000E+00,-2.66243E-02, 0.00000E+00,-1.32373E+00, 1.39396E-02, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 3.36523E+01,-7.42795E-01,-3.89352E+00,-7.81354E-01, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.76631E+00,-1.22024E+00, * -5.47580E-01, 1.09146E+00, 9.06245E-01, 2.21119E-02, 0.00000E+00, * 7.73919E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBA2/ * -3.82415E-01, 0.00000E+00, 1.76202E-01, 0.00000E+00,-6.77651E-01, * 1.10357E+00, 2.25732E+00, 0.00000E+00, 1.54237E+04, 0.00000E+00, * 1.27411E-01,-2.84314E-03, 4.62562E-01,-5.34596E+01,-7.23808E+00, * 0.00000E+00, 0.00000E+00, 4.52770E-01,-8.50922E+00,-2.85389E-01, * 2.12000E+01, 6.80171E+02, 0.00000E+00, 0.00000E+00, 0.00000E+00, * -2.72552E+04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.64109E+03, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.47320E+00,-2.98179E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.05412E-02, * 4.93452E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 7.98332E-02,-5.30954E+01, 2.10211E-02, 3.00000E+00/ DATA PBA3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.79843E-01, * 1.81152E-01, 0.00000E+00, 0.00000E+00,-6.24673E-02,-5.37589E-02, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-8.94418E-02, 3.70413E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-4.84645E+00, * 4.24178E-01, 0.00000E+00, 0.00000E+00, 1.86494E-01,-9.56931E-02/ DATA PBA4/ * 2.08426E+00, 1.53714E+00,-2.87496E-01, 4.06380E-01,-3.59788E-01, * -1.87814E-01, 0.00000E+00, 0.00000E+00, 2.01362E-01,-1.21604E-01, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 7.86304E+00, * 2.51878E+00, 2.91455E+00, 4.32308E+00, 6.77054E-02,-2.39125E-01, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 1.57976E+00,-5.44598E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * -5.30593E-01,-5.02237E-01,-2.05258E-01, 2.62263E-01,-2.50195E-01, * 4.28151E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C WINF DATA PCA1/ * 0.00000E+00, 1.31026E+01,-4.93171E+01, 2.51045E+01,-1.30531E+01, * 6.56421E-01, 2.75633E+01, 4.36433E+00, 1.04638E+00, 5.77365E+01, * 0.00000E+00,-6.27766E+00, 2.33010E+00,-1.41351E+01, 2.49653E-01, * 0.00000E+00, 0.00000E+00, 8.00000E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 1.03817E-02,-1.70950E+01,-1.92295E+00, 0.00000E+00, * 0.00000E+00,-1.17490E+01,-7.14788E-01, 6.72649E+00, 0.00000E+00, * 0.00000E+00,-1.57793E+02,-1.70815E+00,-7.92416E+00,-1.67372E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.87973E-01, * -1.61602E-01,-1.13832E-01,-7.22447E-01, 2.21119E-02, 0.00000E+00, * -3.01967E+00,-1.72798E-01,-5.15055E-03,-1.23477E-02, 3.60805E-03/ DATA PCA2/ * -1.36730E+00, 0.00000E+00, 1.24390E-02, 0.00000E+00,-1.36577E+00, * 3.18101E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.39334E+01, * 1.42088E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00,-4.72219E+00, * -7.47970E+00,-4.96528E+00, 0.00000E+00, 1.24712E+00,-2.56833E+01, * -4.26630E+01, 3.92431E+04,-2.57155E+00,-4.35589E-02, 0.00000E+00, * 0.00000E+00, 2.02425E+00,-1.48131E+00,-7.72242E-01, 2.99008E+04, * 4.50148E-03, 5.29718E-03,-1.26697E-02, 3.20909E-02, 0.00000E+00, * 0.00000E+00, 7.01739E+00, 3.11204E+00, 0.00000E+00, 0.00000E+00, * -2.13088E+00, 1.32789E+01, 5.07958E+00, 7.26537E-02, 2.87495E-01, * 9.97311E-03,-2.56440E+00, 0.00000E+00, 0.00000E+00, 3.00000E+00/ DATA PCA3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-9.90073E-03,-3.27333E-02, * -4.30379E+01,-2.87643E+01,-5.91793E+00,-1.50460E+02, 0.00000E+00, * 0.00000E+00, 6.55038E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 6.18051E-03, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 1.40484E+00, 5.54554E+00, 0.00000E+00, 0.00000E+00, 7.93810E+00, * 1.57192E+00, 1.03971E+00, 9.88279E-01,-4.37662E-02,-2.15763E-02/ DATA PCA4/ * -2.31583E+00, 4.32633E+00,-1.12716E+00, 3.38459E-01, 4.66956E-01, * 7.18403E-01, 5.80836E-02, 4.12653E-01, 1.04111E-01,-8.30672E-02, * -5.55541E+00,-4.97473E+00,-2.03007E+01, 0.00000E+00,-6.06235E-01, * -1.73121E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 9.29850E-02,-6.38131E-02, * 3.93037E-02, 5.21942E-02, 2.26578E-02, 4.13157E-02, 0.00000E+00, * 6.28524E+00, 4.43721E+00,-4.31270E+00, 2.32787E+00, 2.55591E-01, * 1.60098E+00,-1.20649E+00, 3.05042E+00,-1.88944E+00, 5.35561E+00, * 2.02391E-01, 4.62950E-02, 3.39155E-01, 7.94007E-02, 6.30345E-01, * 1.93554E-01, 3.93238E-01, 1.76254E-01,-2.51359E-01,-7.06879E-01/ C UGN1(1) DATA PBB1/ * 6.22831E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 5.90566E+00, 0.00000E+00, 0.00000E+00,-3.20571E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-8.30368E-01, 1.39396E-02, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.40657E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-4.80790E+00,-1.62744E+00, 2.21119E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBB2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.00000E+00/ DATA PBB3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.10531E-01, * -8.94829E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UGN1(1) DATA PCB1/ * 5.45009E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * -3.60304E+00, 0.00000E+00, 0.00000E+00,-5.04071E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.62113E-01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.14657E+01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 4.65483E-01, 1.73636E+00, 2.21119E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PCB2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.00000E+00/ DATA PCB3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-8.30769E-01, * 7.73649E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UN1(1) DATA PBC1/ * 6.09940E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.39396E-02, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.21119E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBC2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.00000E+00/ DATA PBC3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UN1(1) DATA PCC1/ * 5.46739E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.21119E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PCC2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.00000E+00/ DATA PCC3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UN1(2) DATA PBD1/ * 4.99007E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 2.59994E+00, 0.00000E+00, 0.00000E+00,-1.78418E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-5.24986E+00, 1.39396E-02, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.77918E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.21119E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBD2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.00000E+00/ DATA PBD3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.68996E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UN1(2) DATA PCD1/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * -7.26156E+00, 0.00000E+00, 0.00000E+00,-4.12416E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.88934E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.65720E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.21119E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PCD2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.00000E+00/ DATA PCD3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.01835E-01, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UN1(3) DATA PBE1/ * 0.00000E+00,-1.37217E+01, 0.00000E+00, 2.38712E-01,-3.92230E+00, * 6.11035E+00,-1.57794E+00,-5.87709E-01, 1.21178E+01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.23202E+01, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-2.22836E+03, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-3.94006E+00, 1.39396E-02, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.99844E-01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-1.38936E+00, 2.22534E+00, 2.21119E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBE2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.00000E+00/ DATA PBE3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 4.35518E-01, 8.40051E-01, 0.00000E+00,-8.88181E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 6.81729E-01, 9.67536E-01, * 0.00000E+00,-9.67836E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UN1(3) DATA PCE1/ * 0.00000E+00,-2.75655E+01,-6.61134E+00, 4.85118E+00, 8.15375E-01, * -2.62856E+00, 2.99508E-02,-2.00532E-01,-9.35618E+00, 1.17196E+01, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-2.43848E+00, 1.90065E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-3.37525E-01, 1.76471E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PCE2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.00000E+00/ DATA PCE3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-9.23682E-01,-8.84150E-02, 0.00000E+00,-9.88578E-01, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.00747E+00,-1.07468E-02, * 0.00000E+00,-3.66376E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UN1(4) DATA PBF1/ * 0.00000E+00, 1.02709E+01, 0.00000E+00,-1.42016E+00,-4.90438E+00, * -9.11544E+00,-3.80570E+00,-2.09013E+00, 1.32939E+01,-1.28062E+01, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.23024E+01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 3.92126E+02, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.39396E-02, * 0.00000E+00, 0.00000E+00,-5.56532E+00,-1.27046E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-3.03553E+00,-9.09832E-01, 2.21119E-02, 0.00000E+00, * 8.89965E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBF2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 9.19210E-01, 0.00000E+00, 0.00000E+00, 4.00000E+00/ DATA PBF3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-2.46693E-01, 7.44650E-02, 3.84661E-01, 9.44052E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.25083E-01, 1.54206E-01, * 4.41303E-01, 8.74742E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UN1(4) DATA PCF1/ * 0.00000E+00, 3.61143E+00,-8.24679E+00, 1.70751E+00, 1.16676E+00, * 6.24821E+00,-5.68968E-01, 8.53046E-01,-6.94168E+00, 1.04152E+01, * -3.70861E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-1.23336E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.33958E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-6.43682E-01,-1.00000E+00, 0.00000E+00, * 0.00000E+00,-1.00000E+00, 0.00000E+00,-5.47300E-01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-8.58764E-01, 4.72310E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PCF2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.00000E+00/ DATA PCF3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 3.37325E-01,-3.57698E-02,-6.97393E-01, 1.35387E+01, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.78162E-01,-2.33383E-01, * -7.12994E-01, 1.29234E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UN1(5) DATA PBG1/ * 0.00000E+00,-1.71856E+00, 5.32877E+00, 5.33548E-01,-2.66034E+00, * 6.76192E-01, 2.25618E+00,-5.78954E-01,-2.69685E+00, 1.21933E+00, * -6.13650E+00, 7.79531E-01, 1.63652E+00, 3.63835E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 7.51539E+00,-5.27337E-01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.06625E-01, 1.39396E-02, * 0.00000E+00, 0.00000E+00,-1.07240E+00,-8.31257E-01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 7.04016E-01, 0.00000E+00, * 7.56158E-01,-4.21268E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 1.02843E+00, 5.21034E-01, 2.21119E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBG2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 4.12504E+00, 1.08459E-01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * -3.16261E-01, 0.00000E+00,-1.44288E-01, 0.00000E+00, 4.00000E+00/ DATA PBG3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.36181E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UN1(5) DATA PCG1/ * 0.00000E+00, 3.47155E+00, 1.76102E+01, 2.80371E+00,-2.08556E+00, * 1.10473E+00, 6.74582E+00,-5.75988E-01, 1.02708E+00,-2.23381E+01, * 8.60171E+00, 5.12046E-01,-8.12861E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 9.11036E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 3.89742E+00, 2.01725E-01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 5.06308E-01, 2.04596E-01, 0.00000E+00, * 4.40377E+00, 0.00000E+00, 0.00000E+00, 2.20760E+00, 0.00000E+00, * -1.36478E+00, 2.38097E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-7.08949E-02,-1.61277E-01, 2.21119E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PCG2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-2.16898E+00,-5.31596E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 2.53060E+00, 0.00000E+00,-7.17287E-01, 0.00000E+00, 4.00000E+00/ DATA PCG3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.91762E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UGN1(2 DATA PBH1/ * 0.00000E+00,-7.70936E-01, 1.58158E+00, 3.61790E+00,-1.51748E+00, * -5.66098E-01, 1.69393E+00,-4.60489E-01,-8.31527E-01,-4.66437E-01, * -1.21750E+00, 0.00000E+00, 0.00000E+00, 1.56505E+02, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-5.19321E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.39396E-02, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 3.09223E-01, 1.33715E-01, 2.21119E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBH2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.00000E+00/ DATA PBH3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UGN1(2) DATA PCH1/ * 0.00000E+00, 1.72324E-01, 3.08033E-01, 4.55771E-01, 1.46516E-01, * 1.97176E-01,-1.53329E-01, 6.91877E-02,-3.07184E-01, 2.65686E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-2.24369E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 4.04079E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 4.99627E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-7.83317E-03,-6.88967E-02, 2.21119E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PCH2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.00000E+00/ DATA PCH3/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ C UN2(2) DATA PBI1/ * 0.00000E+00,-7.99767E-01,-3.24774E-01, 7.70975E-01, 6.71796E-01, * 5.65483E-01,-2.99727E+00, 3.32448E+00,-9.15018E-01, 5.97656E+00, * 0.00000E+00,-1.19515E+00,-8.30457E-01, 3.26074E+00, 0.00000E+00, * 0.00000E+00,-1.58365E+00, 7.44825E-02, 5.91372E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.41511E-01,-3.01048E+00, * 2.35960E+01, 0.00000E+00,-1.70352E+00,-2.39746E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.30488E+00, 0.00000E+00, * 5.95132E-01, 5.64301E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 5.30317E-01, 5.66569E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBI2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 5.72367E+00, 1.58411E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 1.04557E-01, 0.00000E+00,-2.04710E-01, 0.00000E+00, 5.00000E+00/ C UN2(2) DATA PCI1/ * 0.00000E+00, 6.34487E+00, 9.84162E+00, 3.42136E+00,-5.10607E+00, * -8.58745E-02, 3.11501E+00, 5.34570E-01, 1.18027E+00, 4.28027E+00, * 4.75123E+00, 6.40947E-01,-4.15165E+00,-1.38154E+01, 0.00000E+00, * 0.00000E+00, 1.13145E+01,-5.15954E+00, 0.00000E+00, 0.00000E+00, * 1.35576E+01, 0.00000E+00,-5.78982E+00,-2.22043E+00, 3.36776E+00, * 3.04791E+01, 0.00000E+00, 2.94709E+00,-4.17536E-01,-1.59855E+00, * -2.18320E+00, 1.68269E+01, 0.00000E+00, 1.00829E+00, 0.00000E+00, * -6.85096E-01, 2.07822E-01, 3.50168E-01,-3.03662E+01, 0.00000E+00, * 0.00000E+00,-1.65726E-01,-8.97831E-02, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-5.24159E+00, 0.00000E+00,-3.52218E+00/ DATA PCI2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 5.69093E-01,-7.44918E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 2.10865E+00, 0.00000E+00, 1.76776E-01, 1.54755E+00, 5.00000E+00/ C UN2(3) DATA PBJ1/ * 0.00000E+00, 2.28657E+00, 4.96548E-01, 6.99915E+00,-2.31540E+00, * -1.82163E-01,-5.00779E-01, 3.18199E-01,-6.14645E-01, 6.34816E+00, * 0.00000E+00, 7.94635E-01,-5.55565E-01, 3.85494E+00, 0.00000E+00, * 0.00000E+00,-3.96109E+00, 1.90775E-01, 4.51396E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-5.04618E-01,-4.14385E+00, * 2.30244E+01, 0.00000E+00, 1.00689E+00, 5.75680E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 8.56741E-01, 0.00000E+00, * 9.54921E-02, 5.56659E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 1.38503E-01, 4.50415E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBJ2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 2.22813E-01,-8.63549E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 1.37970E-01, 0.00000E+00,-3.25612E-01, 0.00000E+00, 5.00000E+00/ C UN2(3) DATA PCJ1/ * 0.00000E+00, 5.07608E+00, 3.31479E+00, 3.01548E-01,-1.12100E+00, * -7.63711E-02, 2.29748E+00,-1.36699E+00, 7.53433E-01, 3.60702E+01, * -1.55266E+00, 1.47382E+00,-2.53895E+00,-1.47720E+01, 0.00000E+00, * 0.00000E+00, 1.11787E+01,-1.06256E+01, 0.00000E+00, 0.00000E+00, * 7.86391E+00, 0.00000E+00,-8.61020E+00,-1.59313E+00,-5.17013E+00, * 1.20468E+00, 0.00000E+00, 5.76509E-01, 9.96195E-01,-1.45539E+00, * -1.79950E+01, 8.76957E+00, 0.00000E+00,-1.22863E+00, 0.00000E+00, * -6.19019E-01,-1.09571E-01,-4.31325E-02,-4.21981E+01, 0.00000E+00, * 0.00000E+00,-1.51519E-01,-1.24067E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-6.39248E+00, 0.00000E+00, 6.64508E-01/ DATA PCJ2/ * -7.33184E-01,-9.72031E-03, 1.36789E+00,-8.62311E-01,-3.06395E-03, * 2.53354E-01,-2.40918E-01,-4.06932E-02,-5.82223E-01, 0.00000E+00, * -8.70285E-01, 7.72318E-01,-6.54213E-01,-2.19231E+01,-1.56509E-01, * 2.71745E-01, 5.93538E-01, 2.27757E-01,-5.98215E-01, 3.96457E-01, * 2.98705E-01, 1.78618E-01,-5.24538E-01, 1.16439E-01, 7.56829E-02, * -4.26809E-01, 5.77187E-01, 8.65450E-01,-7.53614E-01, 1.38381E-01, * -1.82265E-01, 2.85263E-01, 4.51322E-01, 1.02775E-01, 3.55731E-01, * -4.60896E-01,-3.13037E+01,-2.70818E+00,-7.84847E-01, 0.00000E+00, * -1.03473E-01,-3.87649E-01,-1.22613E-01, 0.00000E+00, 0.00000E+00, * 8.91325E-01, 0.00000E+00, 1.06189E-01, 9.13030E-02, 5.00000E+00/ C UN2(4) DATA PBK1/ * 0.00000E+00, 2.94921E+00, 2.79238E+00, 2.58949E+00, 3.56459E-01, * 3.12952E-01, 3.34337E+00,-2.83209E+00,-1.05979E+00, 3.92313E+00, * 0.00000E+00, 1.73703E-01,-3.23441E-01, 4.15836E+00, 0.00000E+00, * 0.00000E+00,-1.77156E+00, 6.44113E-01, 1.88743E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-4.64778E-01,-4.23560E+00, * 2.27271E+01, 0.00000E+00,-4.89468E-01, 1.82689E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.38217E-02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 8.62449E-02, 4.46041E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBK2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-1.40393E-01, 1.01821E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ C UN2(4) DATA PCK1/ * 0.00000E+00, 6.04465E+00, 4.50924E+00, 3.84425E-02,-8.70772E-01, * -9.55408E-02, 2.28287E+00,-4.37834E-01, 3.57839E-01, 7.20721E+01, * -4.41757E+00,-9.13648E-01,-8.71866E-01,-6.26173E+00, 0.00000E+00, * 0.00000E+00, 5.92817E+00, 6.15853E+00, 0.00000E+00, 0.00000E+00, * -4.89060E+00, 0.00000E+00,-8.30378E+00, 1.07462E-01, 1.08471E+02, * 3.39150E+01,-4.57863E+00,-7.18349E-02,-2.71703E-01,-8.96297E+00, * -2.37986E+01, 4.11880E+00, 0.00000E+00,-9.95820E-01, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-8.91622E+00,-6.85950E+01, 0.00000E+00, * 0.00000E+00,-3.62769E-02,-1.65893E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-2.94563E+00, 0.00000E+00, 1.23581E+00/ DATA PCK2/ * -6.06026E-01,-6.50229E-01, 1.91330E+00,-1.00314E+00, 1.13346E-01, * 4.21885E-01,-3.97688E-01,-2.77437E-01,-6.65893E-01, 0.00000E+00, * -1.37646E+00, 1.35171E+00,-9.55595E-01,-1.96450E+01,-2.50039E-01, * 5.93389E-01, 9.87131E-01, 5.43559E-01,-1.04322E+00, 6.32546E-01, * 3.73259E-01, 5.22657E-01,-5.81400E-01,-1.26425E-01,-1.29843E-01, * -5.36598E-01, 8.02402E-01, 9.04347E-01,-1.10799E+00, 1.24800E-01, * 1.62487E-02, 2.84237E-01,-1.68866E+00, 5.07723E-01, 5.14161E-01, * -4.71292E-01,-3.03487E+01, 4.17455E-01,-1.12591E+00, 0.00000E+00, * -3.03544E-01,-6.60313E-01,-1.48606E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.00607E+01, 5.00000E+00/ C UN2(5) DATA PBL1/ * 0.00000E+00, 2.52207E+00, 3.84550E+00, 1.68023E+00, 7.93489E-01, * 3.93725E-02,-2.79707E+00,-4.76621E-01,-1.19972E-01, 3.20454E-01, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.17146E+00, 0.00000E+00, * 0.00000E+00,-5.30699E-01, 9.14373E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-4.84434E-02, 1.85902E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBL2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ C UN2(5) DATA PCL1/ * 0.00000E+00, 1.55386E+01, 4.21418E+00,-9.70151E-01,-8.77326E-01, * 2.65813E-02, 1.40164E+00,-9.03874E-01, 3.17281E-03, 9.26891E+01, * -4.96004E+00, 0.00000E+00, 0.00000E+00,-4.17851E+00, 0.00000E+00, * 0.00000E+00,-1.14760E+01, 2.67744E+00, 0.00000E+00, 0.00000E+00, * -1.60056E+01, 0.00000E+00,-7.14647E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-2.89639E+00, 0.00000E+00, 0.00000E+00,-3.88601E+00, * -1.65784E+01, 8.44796E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-3.75324E+00,-6.24047E+01, 0.00000E+00, * 0.00000E+00,-2.86808E-02,-1.95891E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-3.10534E-01, 0.00000E+00,-3.37448E+00/ DATA PCL2/ * 1.63964E-02,-1.45191E+00, 1.85618E+00,-9.61979E-01, 3.93783E-01, * 4.21681E-01,-5.30254E-01,-2.96232E-01,-7.55211E-01, 0.00000E+00, * -1.85443E+00, 1.88047E+00,-1.07818E+00,-1.35373E+01,-3.05785E-01, * 7.82159E-01, 1.32586E+00, 2.34413E-01,-7.47152E-01, 9.92893E-01, * -2.80110E-02, 3.61747E-01,-4.16280E-01,-3.46427E-01,-5.76431E-01, * -2.13906E-01, 9.51184E-01, 3.69403E-01,-1.35563E+00, 6.59534E-02, * 1.39764E-01, 4.50687E-01,-1.22025E+00, 5.73280E-02, 7.49303E-01, * -8.37947E-01,-3.01332E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * -4.36697E-01,-7.76068E-01,-1.41680E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.21958E+01, 5.00000E+00/ C UN2(6) DATA PBM1/ * 0.00000E+00, 3.13842E+00,-8.20417E-01, 3.72282E+00,-5.20477E-01, * -3.61867E-01,-2.92604E+00, 3.13013E-01,-1.38865E-01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.30060E+01, 0.00000E+00, * 0.00000E+00, 1.67696E+00, 9.85990E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-8.46922E-02, 5.59429E-03, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBM2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ C UN2(6) DATA PCM1/ * 0.00000E+00, 1.78539E+01, 1.07314E+01,-1.13212E+00, 1.59867E-02, * 1.53736E-01, 2.25710E+00,-9.39080E-01,-9.72620E-02, 9.89789E+01, * -5.17469E+00, 0.00000E+00, 0.00000E+00,-2.98597E+00, 0.00000E+00, * 0.00000E+00,-2.04707E+01, 4.92899E+00, 0.00000E+00, 0.00000E+00, * -1.44316E+01, 0.00000E+00,-3.31557E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-6.22743E+00, 0.00000E+00, 0.00000E+00,-4.34344E+00, * -8.29640E+00,-3.03800E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 2.79387E+00,-5.23752E+01, 0.00000E+00, * 0.00000E+00,-2.59963E-02,-1.73426E-02, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-5.37220E+00, 0.00000E+00,-6.53478E-01/ DATA PCM2/ * 3.48181E-01,-1.88980E+00, 1.47787E+00,-7.92670E-01, 6.49224E-01, * 5.96079E-01,-1.04901E+00,-5.24003E-01,-6.77311E-01, 0.00000E+00, * -2.26873E+00, 2.80910E+00,-9.84994E-01,-6.79661E+00,-3.71975E-01, * 1.13310E+00, 1.57164E+00, 2.15176E-01,-5.58583E-01, 1.16045E+00, * 2.05395E-02, 2.27714E-01, 1.41203E-01,-3.92231E-01,-8.82859E-01, * 4.90400E-01, 1.14013E+00,-2.25250E-01,-1.64930E+00, 5.73434E-02, * 1.89857E-01, 4.31221E-01,-1.35345E+00,-2.94189E-01, 6.87530E-01, * -7.78284E-01,-2.88975E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * -3.98115E-01,-7.40699E-01,-8.28264E-02, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.02069E+00, 5.00000E+00/ C UN2(7) DATA PBN1/ * 0.00000E+00, 2.08818E+00,-1.96235E+00, 4.55317E+00,-1.76012E+00, * -4.75258E-01,-1.44220E+00,-3.28566E-01,-1.41177E-01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.49146E+01, 0.00000E+00, * 0.00000E+00, 1.73222E+00, 9.91286E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-1.35468E-01, 1.91833E-02, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBN2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ C UN2(7) DATA PCN1/ * 0.00000E+00, 1.25645E+01, 2.43937E+01,-4.89691E-01,-5.46437E-01, * 1.22200E-01, 2.89309E+00,-2.85509E-01,-2.27122E-01, 9.54192E+01, * -4.07394E+00, 0.00000E+00, 0.00000E+00,-3.04354E+00, 0.00000E+00, * 0.00000E+00,-2.36547E+01, 1.04903E+01, 0.00000E+00, 0.00000E+00, * -8.32274E+00, 0.00000E+00,-3.34712E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-7.95953E+00, 0.00000E+00, 0.00000E+00,-5.83474E+00, * -1.48074E+00, 1.02268E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 6.19470E+00,-3.90767E+01, 0.00000E+00, * 0.00000E+00,-3.58136E-03, 1.22289E-03, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-8.49787E+00, 0.00000E+00,-3.97498E+00/ DATA PCN2/ * 3.79580E-01,-1.93595E+00, 2.89114E+00,-4.73457E-01, 7.67548E-01, * 5.66859E-01,-1.28683E+00,-8.37174E-01,-3.48022E-01, 0.00000E+00, * -2.62865E+00, 3.50575E+00,-7.93257E-01,-8.10692E-01,-4.99450E-01, * 1.56654E+00, 1.63039E+00, 7.58900E-02,-4.30952E-01, 1.23068E+00, * 1.06404E-01, 4.73870E-02, 5.50559E-01,-4.11375E-01,-9.94162E-01, * 1.35025E+00, 1.26053E+00,-7.34502E-01,-2.01952E+00, 2.05398E-01, * -4.77248E-02, 2.41549E-01,-9.32522E-01,-5.63663E-01, 5.34833E-01, * -5.77563E-01,-2.65033E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * -2.42317E-01,-7.33679E-01,-7.85537E-02, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.56842E-01, 5.00000E+00/ C UN2(8) DATA PBO1/ * 0.00000E+00, 7.00409E-01,-4.17017E-01, 3.24757E+00,-1.28352E+00, * -4.23875E-01, 1.64346E+00,-1.20855E+00,-7.65316E-01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-3.39417E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 2.68534E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-1.56444E-01,-4.60043E-02, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBO2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ C UN2(8) DATA PCO1/ * 0.00000E+00, 7.30129E+00, 3.14811E+01,-7.06834E-02,-2.96193E-01, * 1.73817E-01, 1.62127E+00,-2.71556E-01,-2.05844E-01, 8.02088E+01, * -1.86956E-01, 0.00000E+00, 0.00000E+00,-9.43641E-01,-3.24716E+00, * 0.00000E+00,-2.32748E+01, 1.96724E+01, 0.00000E+00, 0.00000E+00, * -3.95949E+00, 0.00000E+00, 5.44787E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-1.00161E+01, 0.00000E+00, 0.00000E+00,-4.57422E+00, * 4.31304E+00, 1.49868E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 5.99489E+00,-2.82120E+01, 0.00000E+00, * 0.00000E+00, 4.03624E-02, 1.19463E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-1.39050E+01, 0.00000E+00,-2.65634E+00/ DATA PCO2/ * 6.37036E-01,-1.77461E+00, 3.03103E+00,-1.49839E-01, 7.02027E-01, * 6.08841E-01,-9.27289E-01,-8.52362E-01, 5.61723E-01, 0.00000E+00, * -2.72061E+00, 3.66183E+00,-2.54943E-01, 2.94668E+00,-3.57898E-01, * 1.71858E+00, 1.58782E+00,-2.42995E-01,-3.57783E-01, 1.20157E+00, * 2.58895E-01,-1.05773E-01, 5.79397E-01,-3.30395E-01,-4.03569E-01, * 1.99175E+00, 1.21688E+00,-8.64350E-01,-1.95569E+00, 4.61136E-01, * -8.61382E-02, 3.38859E-01, 0.00000E+00,-5.78864E-01, 4.46659E-01, * -4.57428E-01,-1.99920E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * -1.19841E-01,-4.56968E-01, 2.00180E-02, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.07368E+00, 5.00000E+00/ C UN2(9) DATA PBP1/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.75863E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 3.18522E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBP2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ C UN2(9) DATA PCP1/ * 0.00000E+00, 4.61019E-02, 3.50615E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 6.15349E+01, * 4.28634E+00, 0.00000E+00, 0.00000E+00, 6.03982E+00,-4.72305E+00, * 0.00000E+00,-1.43678E+01, 3.62580E+01, 0.00000E+00, 0.00000E+00, * 1.26574E+00, 0.00000E+00,-2.77285E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-1.14802E+01, 0.00000E+00, 0.00000E+00,-1.11940E+01, * -1.39535E+00, 2.63070E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-1.53024E+00,-2.14609E+01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-1.26956E+01, 0.00000E+00, 5.49926E+00/ DATA PCP2/ * 9.80142E-01,-1.19016E+00, 2.75110E+00, 4.23423E-01, 5.89893E-01, * 4.94288E-01,-5.25954E-01,-8.51760E-01, 1.62676E+00, 0.00000E+00, * -1.90027E+00, 3.19950E+00, 4.72739E-01, 7.04179E+00,-1.43685E-03, * 1.43219E+00, 1.32136E+00,-2.92744E-03,-3.43680E-01, 7.75735E-01, * 6.92202E-01,-1.45519E-01, 6.97813E-02,-3.11588E-01, 6.65750E-01, * 2.33809E+00, 1.06694E+00,-5.77590E-01,-1.33717E+00, 8.13367E-01, * -5.05737E-01, 5.99169E-01,-8.83386E-01,-4.38123E-01, 2.63649E-01, * -3.03448E-01,-1.28190E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 1.45478E-02, 1.45491E-01, 2.40080E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-3.86910E+00, 5.00000E+00/ C UN2(10) DATA PBQ1/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.10647E+01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 3.13252E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBQ2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ C UN2(10) DATA PCQ1/ * 0.00000E+00,-3.03260E+00, 3.15488E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.42798E+01, * 7.08849E+00, 0.00000E+00, 0.00000E+00, 1.64773E+01,-6.86505E+00, * 0.00000E+00,-6.27112E+00, 3.78373E+01, 0.00000E+00, 0.00000E+00, * 2.97763E+00, 0.00000E+00,-3.44134E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-1.19424E+01, 0.00000E+00, 0.00000E+00,-1.64645E+01, * -2.27053E+00, 3.82330E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 1.33140E-01,-2.08131E+01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-7.04687E+00, 0.00000E+00, 6.52184E+00/ DATA PCQ2/ * 7.31799E-01,-2.75395E-01, 1.92467E+00, 8.71269E-01, 3.72836E-01, * 3.04967E-01, 7.72480E-02,-5.08596E-01, 1.99828E+00, 0.00000E+00, * -5.51169E-01, 2.12420E+00, 8.96069E-01, 1.12092E+01,-4.30438E-02, * 7.38391E-01, 6.12050E-01, 3.62981E-02,-1.02054E-01, 1.82404E-01, * 3.70643E-01,-1.68899E-01,-1.79628E-01,-1.21117E-01, 1.45823E+00, * 2.04352E+00, 7.83711E-01,-3.42979E-02,-2.31363E-01, 7.11253E-01, * -3.16353E-01, 6.21069E-01,-1.05676E+00,-4.03488E-01, 4.11595E-01, * -2.12535E-01,-6.51453E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 1.48238E-01, 6.38716E-01, 2.99311E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.01846E+00, 5.00000E+00/ C UN2(11) DATA PBR1/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.21764E+01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 6.77475E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBR2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ C UN2(11) DATA PCR1/ * 0.00000E+00,-1.74115E+00, 2.66621E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.13017E+01, * 6.86985E+00, 0.00000E+00, 0.00000E+00, 2.08835E+01,-7.86030E+00, * 0.00000E+00,-3.77141E+00, 3.87788E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 1.31580E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-9.98927E+00, 0.00000E+00, 0.00000E+00,-1.71002E+01, * -9.88358E-01, 4.47756E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 5.95029E-01,-2.11313E+01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-3.84164E+00, 0.00000E+00, 0.00000E+00/ DATA PCR2/ * 3.07191E-01, 4.79094E-02, 6.72159E-01, 5.54185E-01, 1.82847E-01, * -1.23768E-02, 1.91637E-01,-2.89429E-02, 1.18297E+00, 0.00000E+00, * 2.37450E-01, 9.23551E-01, 6.05670E-01, 1.35990E+01,-1.64210E-01, * 5.38355E-03,-4.91246E-02,-1.06966E-01,-2.09635E-01,-3.23023E-02, * -3.41663E-02,-3.48871E-02,-2.62450E-01, 2.21492E-01, 1.43749E+00, * 1.08677E+00, 3.97778E-01, 3.61526E-01, 5.55950E-01, 3.53058E-01, * -5.93339E-02, 4.14203E-01,-6.05024E-01,-1.38714E-01, 2.78897E-01, * -8.92889E-02,-3.59033E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 9.90623E-02, 4.36170E-01, 7.95418E-02, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.11426E+00, 5.00000E+00/ C UN2(12) DATA PBS1/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.07320E+01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 1.60738E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBS2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ C UN2(12) DATA PCS1/ * 0.00000E+00, 1.26217E+01, 2.30787E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.00029E+01, * -2.88682E+00, 0.00000E+00, 0.00000E+00, 2.09439E+01,-4.56923E+00, * 0.00000E+00,-2.15929E+00, 3.87149E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-7.98039E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-6.63423E+00, 0.00000E+00, 0.00000E+00,-5.84850E+00, * 3.72111E+00, 4.52300E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 3.21872E-01, 0.00000E+00, 0.00000E+00/ DATA PCS2/ * 1.09405E-02,-4.35341E-02, 8.00586E-02, 1.48577E-01, 1.01602E-01, * -1.01104E-01,-1.98993E-02, 3.51174E-02, 2.41112E-01, 0.00000E+00, * 2.76479E-01, 1.97043E-01, 2.68708E-01, 1.39832E+01,-1.56638E-01, * -2.39101E-01,-1.50605E-01,-2.17139E-01,-2.59057E-01,-4.36362E-01, * -1.43496E-01, 7.51305E-02,-2.40850E-01, 1.34858E-01, 7.59193E-01, * 3.52708E-01, 1.29922E-01, 3.27957E-01, 5.35491E-01, 1.19120E-01, * -2.94029E-02, 1.76113E-01,-6.51597E-01, 3.61575E-02, 4.26836E-02, * -2.29297E-02,-4.27373E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * -2.78548E-02, 5.77322E-02,-1.02411E-01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ C UN2(13) DATA PBT1/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.69447E+01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 2.34073E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBT2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ C UN2(13) DATA PCT1/ * 0.00000E+00, 1.22096E+01, 1.92342E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 8.13667E+00, * -6.19078E+00, 0.00000E+00, 0.00000E+00, 2.37009E+01, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-7.87365E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-1.12371E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-2.76047E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 1.85864E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PCT2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ C UN2(14) DATA PBU1/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.01008E+01, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 2.21469E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PBU2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ C UN2(14) DATA PCU1/ * 0.00000E+00,-1.40697E+00, 6.88709E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.67624E+02, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 1.58312E+01, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00,-2.46486E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00,-1.90327E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 1.13248E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00/ DATA PCU2/ * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, * 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.00000E+00/ END fluids-1.0.22/fluids/optional/hwm14.pyf0000644000175000017500000002607414302004506017206 0ustar nileshnilesh! -*- f90 -*- ! Note: the context of this file is case sensitive. python module hwm14 ! in interface ! in :hwm14 module hwm ! in :hwm14:hwm14.f90 integer(kind=4), optional :: nmaxhwm=0 integer(kind=4), optional :: omaxhwm=0 integer(kind=4), optional :: nmaxdwm=0 integer(kind=4), optional :: mmaxdwm=0 integer(kind=4), optional :: nmaxqdc=0 integer(kind=4), optional :: mmaxqdc=0 integer(kind=4), optional :: nmaxgeo=0 integer(kind=4), optional :: mmaxgeo=0 real(kind=8), allocatable,dimension(:,:) :: gpbar real(kind=8), allocatable,dimension(:,:) :: gvbar real(kind=8), allocatable,dimension(:,:) :: gwbar real(kind=8), allocatable,dimension(:,:) :: spbar real(kind=8), allocatable,dimension(:,:) :: svbar real(kind=8), allocatable,dimension(:,:) :: swbar real(kind=8), optional :: glatalf=-1.d32 logical, optional :: hwminit=.true. end module hwm subroutine hwm14(iyd,sec,alt,glat,glon,stl,f107a,f107,ap,w) ! in :hwm14:hwm14.f90 use hwm integer(kind=4) intent(in) :: iyd real(kind=4) intent(in) :: sec real(kind=4) intent(in) :: alt real(kind=4) intent(in) :: glat real(kind=4) intent(in) :: glon real(kind=4) intent(in) :: stl real(kind=4) intent(in) :: f107a real(kind=4) intent(in) :: f107 real(kind=4) dimension(2),intent(in) :: ap real(kind=4) dimension(2),intent(out) :: w end subroutine hwm14 module alf ! in :hwm14:hwm14.f90 integer(kind=4) :: nmax0 integer(kind=4) :: mmax0 real(kind=8), allocatable,dimension(:,:) :: anm real(kind=8), allocatable,dimension(:,:) :: bnm real(kind=8), allocatable,dimension(:,:) :: dnm real(kind=8), allocatable,dimension(:) :: cm real(kind=8), allocatable,dimension(:) :: en real(kind=8), allocatable,dimension(:) :: marr real(kind=8), allocatable,dimension(:) :: narr subroutine alfbasis(nmax,mmax,theta,p,v,w) ! in :hwm14:hwm14.f90:alf integer(kind=4) intent(in) :: nmax integer(kind=4) intent(in) :: mmax real(kind=8) intent(in) :: theta real(kind=8) dimension(nmax + 1,mmax + 1),intent(out),depend(nmax,mmax) :: p real(kind=8) dimension(nmax + 1,mmax + 1),intent(out),depend(nmax,mmax) :: v real(kind=8) dimension(nmax + 1,mmax + 1),intent(out),depend(nmax,mmax) :: w end subroutine alfbasis subroutine initalf(nmaxin,mmaxin) ! in :hwm14:hwm14.f90:alf integer(kind=4) intent(in) :: nmaxin integer(kind=4) intent(in) :: mmaxin end subroutine initalf end module alf module qwm ! in :hwm14:hwm14.f90 integer(kind=4) :: nbf integer(kind=4) :: maxn integer(kind=4) :: maxs integer(kind=4) :: maxm integer(kind=4) :: maxl integer(kind=4) :: maxo integer(kind=4) :: p integer(kind=4) :: nlev integer(kind=4) :: nnode real(kind=8) :: alttns real(kind=8) :: altsym real(kind=8) :: altiso real(kind=8) dimension(5) :: e1 real(kind=8) dimension(5) :: e2 real(kind=8), parameter,optional :: h=60.0d0 integer(kind=4), allocatable,dimension(:) :: nb integer(kind=4), allocatable,dimension(:,:) :: order real(kind=8), allocatable,dimension(:) :: vnode real(kind=8), allocatable,dimension(:,:) :: mparm real(kind=8), allocatable,dimension(:,:) :: tparm real(kind=8), optional,dimension(5) :: previous=-1.0d32 integer(kind=4), optional :: priornb=0 real(kind=8), allocatable,dimension(:,:) :: fs real(kind=8), allocatable,dimension(:,:) :: fm real(kind=8), allocatable,dimension(:,:) :: fl real(kind=8), allocatable,dimension(:) :: bz real(kind=8), allocatable,dimension(:) :: bm real(kind=8), allocatable,dimension(:) :: zwght integer(kind=4) :: lev integer(kind=4), optional :: cseason=0 integer(kind=4), optional :: cwave=0 integer(kind=4), optional :: ctide=0 logical, optional,dimension(5) :: content=.true. logical, optional,dimension(2) :: component=.true. character(len=128), optional :: qwmdefault='hwm123114.bin' logical, optional :: qwminit=.true. real(kind=8), optional,dimension(4) :: wavefactor=1.0 real(kind=8), optional,dimension(4) :: tidefactor=1.0 end module qwm module dwm ! in :hwm14:hwm14.f90 integer(kind=4) :: nterm integer(kind=4) :: nmax integer(kind=4) :: mmax integer(kind=4) :: nvshterm integer(kind=4), allocatable,dimension(:,:) :: termarr real(kind=4), allocatable,dimension(:) :: coeff real(kind=4), allocatable,dimension(:,:) :: vshterms real(kind=4), allocatable,dimension(:,:) :: termval real(kind=8), allocatable,dimension(:,:) :: dpbar real(kind=8), allocatable,dimension(:,:) :: dvbar real(kind=8), allocatable,dimension(:,:) :: dwbar real(kind=8), allocatable,dimension(:,:) :: mltterms real(kind=4) :: twidth real(kind=8), parameter,optional :: pi=3.141592653589793 real(kind=8), parameter,optional,depend(pi) :: dtor=pi/180.d0 logical, optional :: dwminit=.true. character(len=128), parameter,optional :: dwmdefault='dwm07b104i.dat' end module dwm subroutine inithwm ! in :hwm14:hwm14.f90 use hwm use qwm use dwm use alf, only: initalf end subroutine inithwm subroutine initqwm(filename) ! in :hwm14:hwm14.f90 use qwm use hwm, only: omaxhwm,nmaxhwm character*128 intent(in) :: filename end subroutine initqwm subroutine hwmqt(iyd,sec,alt,glat,glon,stl,f107a,f107,ap,w) ! in :hwm14:hwm14.f90 use hwm use qwm use alf, only: alfbasis integer intent(in) :: iyd real(kind=4) intent(in) :: sec real(kind=4) intent(in) :: alt real(kind=4) intent(in) :: glat real(kind=4) intent(in) :: glon real(kind=4) intent(in) :: stl real(kind=4) intent(in) :: f107a real(kind=4) intent(in) :: f107 real(kind=4) dimension(2),intent(in) :: ap real(kind=4) dimension(2),intent(out) :: w end subroutine hwmqt subroutine vertwght(alt,wght,iz) ! in :hwm14:hwm14.f90 use qwm real(kind=8) intent(in) :: alt real(kind=8) dimension(4),intent(out) :: wght integer(kind=4) intent(out) :: iz end subroutine vertwght subroutine initdwm(nmaxout,mmaxout) ! in :hwm14:hwm14.f90 use hwm use dwm integer(kind=4) intent(out) :: nmaxout integer(kind=4) intent(out) :: mmaxout end subroutine initdwm subroutine dwm07(iyd,sec,alt,glat,glon,ap,dw) ! in :hwm14:hwm14.f90 use hwm use dwm integer intent(in) :: iyd real(kind=4) intent(in) :: sec real(kind=4) intent(in) :: alt real(kind=4) intent(in) :: glat real(kind=4) intent(in) :: glon real(kind=4) dimension(2),intent(in) :: ap real(kind=4) dimension(2),intent(out) :: dw end subroutine dwm07 subroutine dwm07b(mlt,mlat,kp,mmpwind,mzpwind) ! in :hwm14:hwm14.f90 use hwm use dwm use alf, only: alfbasis real(kind=4) intent(in) :: mlt real(kind=4) intent(in) :: mlat real(kind=4) intent(in) :: kp real(kind=4) intent(out) :: mmpwind real(kind=4) intent(out) :: mzpwind end subroutine dwm07b function ap2kp(ap0) ! in :hwm14:hwm14.f90 real(kind=4) :: ap0 real(kind=4) :: ap2kp end function ap2kp module gd2qdc ! in :hwm14:hwm14.f90 integer(kind=4) :: nterm integer(kind=4) :: nmax integer(kind=4) :: mmax real(kind=8), allocatable,dimension(:,:) :: coeff real(kind=8), allocatable,dimension(:) :: xcoeff real(kind=8), allocatable,dimension(:) :: ycoeff real(kind=8), allocatable,dimension(:) :: zcoeff real(kind=8), allocatable,dimension(:) :: sh real(kind=8), allocatable,dimension(:) :: shgradtheta real(kind=8), allocatable,dimension(:) :: shgradphi real(kind=8), allocatable,dimension(:) :: normadj real(kind=4) :: epoch real(kind=4) :: alt real(kind=8), parameter,optional :: pi=3.1415926535897932d0 real(kind=8), parameter,optional,depend(pi) :: dtor=pi/180.0d0 real(kind=8), parameter,optional :: sineps=0.39781868d0 logical, optional :: gd2qdinit=.true. subroutine initgd2qd ! in :hwm14:hwm14.f90:gd2qdc use hwm end subroutine initgd2qd end module gd2qdc subroutine gd2qd(glatin,glon,qlat,qlon,f1e,f1n,f2e,f2n) ! in :hwm14:hwm14.f90 use hwm use gd2qdc use alf real(kind=4) intent(in) :: glatin real(kind=4) intent(in) :: glon real(kind=4) intent(out) :: qlat real(kind=4) intent(out) :: qlon real(kind=4) intent(out) :: f1e real(kind=4) intent(out) :: f1n real(kind=4) intent(out) :: f2e real(kind=4) intent(out) :: f2n end subroutine gd2qd function mltcalc(qlat,qlon,day,ut) ! in :hwm14:hwm14.f90 use hwm use gd2qdc use alf real(kind=4) intent(in) :: qlat real(kind=4) intent(in) :: qlon real(kind=4) intent(in) :: day real(kind=4) intent(in) :: ut real(kind=4) :: mltcalc end function mltcalc subroutine kpspl3(kp,kpterms) ! in :hwm14:hwm14.f90 real(kind=4) intent(in) :: kp real(kind=4) dimension(3),intent(out) :: kpterms end subroutine kpspl3 function latwgt2(mlat,mlt,kp0,twidth) ! in :hwm14:hwm14.f90 real(kind=4) :: mlat real(kind=4) :: mlt real(kind=4) :: kp0 real(kind=4) :: twidth real(kind=4) :: latwgt2 end function latwgt2 subroutine findandopen(datafile,unitid) ! in :hwm14:hwm14.f90 character*128 :: datafile integer :: unitid end subroutine findandopen end interface end python module hwm14 ! This file was auto-generated with f2py (version:2). ! See http://cens.ioc.ee/projects/f2py2e/ fluids-1.0.22/fluids/optional/irradiance.py0000644000175000017500000001677314302004506020206 0ustar nileshnilesh# -*- coding: utf-8 -*- """ irradiance.py from pvlib ======================== Extremely stripped down, reimplementation/vendorized version from: https://github.com/pvlib/pvlib-python/ The rational for not including this library as a strict dependency is to avoid including a dependency on pandas, keeping load time low, and PyPy compatibility Most of the functions will import pvlib and use it for calculations, except for one case which allows this to be used without `pvlib` For a full list of contributors to this file, see the `pvlib` repository. The copyright notice (BSD-3 clause) is as follows: BSD 3-Clause License Copyright (c) 2013-2018, Sandia National Laboratories and pvlib python Development Team All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the {organization} nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """ from __future__ import division import os import time from datetime import datetime import math from math import degrees, sin, cos, tan, radians, asin, atan2, radians, exp, isnan nan = float("nan") from math import degrees, acos def aoi_projection(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth): projection = ( cos(radians(surface_tilt)) * cos(radians(solar_zenith)) + sin(radians(surface_tilt)) * sin(radians(solar_zenith)) * cos(radians(solar_azimuth - surface_azimuth))) return projection def aoi(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth): projection = aoi_projection(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) aoi_value = degrees(acos(projection)) return aoi_value def poa_components(aoi, dni, poa_sky_diffuse, poa_ground_diffuse): poa_direct = max(dni * cos(radians(aoi)), 0.0) if poa_sky_diffuse is not None: poa_diffuse = poa_sky_diffuse + poa_ground_diffuse else: poa_diffuse = poa_ground_diffuse poa_global = poa_direct + poa_diffuse irrads = {} irrads['poa_global'] = poa_global irrads['poa_direct'] = poa_direct irrads['poa_diffuse'] = poa_diffuse irrads['poa_sky_diffuse'] = poa_sky_diffuse irrads['poa_ground_diffuse'] = poa_ground_diffuse return irrads def get_ground_diffuse(surface_tilt, ghi, albedo=.25, surface_type=None): diffuse_irrad = ghi*albedo*(1.0 - cos(radians(surface_tilt)))*0.5 return diffuse_irrad def get_sky_diffuse(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, dni, ghi, dhi, dni_extra=None, airmass=None, model='isotropic', model_perez='allsitescomposite1990'): if model == 'isotropic': return isotropic(surface_tilt, dhi) else: from pvlib import get_sky_diffuse return get_sky_diffuse(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, dni, ghi, dhi, dni_extra=dni_extra, airmass=airmass, model=model, model_perez=model_perez) def get_absolute_airmass(airmass_relative, pressure=101325.): airmass_absolute = airmass_relative*pressure/101325. return airmass_absolute def get_relative_airmass(zenith, model='kastenyoung1989'): z = zenith zenith_rad = radians(z) if 'kastenyoung1989' == model: try: am = (1.0 / (cos(zenith_rad) + 0.50572*(((6.07995 + (90.0 - z))**-1.6364)))) except: am = nan if isinstance(am, complex): am = nan else: raise ValueError('%s is not a valid model for relativeairmass', model) return am def get_total_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, dni, ghi, dhi, dni_extra=None, airmass=None, albedo=.25, surface_type=None, model='isotropic', model_perez='allsitescomposite1990', **kwargs): poa_sky_diffuse = get_sky_diffuse( surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, dni, ghi, dhi, dni_extra=dni_extra, airmass=airmass, model=model, model_perez=model_perez) poa_ground_diffuse = get_ground_diffuse(surface_tilt, ghi, albedo, surface_type) aoi_ = aoi(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) irrads = poa_components(aoi_, dni, poa_sky_diffuse, poa_ground_diffuse) return irrads def isotropic(surface_tilt, dhi): sky_diffuse = dhi * (1 + cos(radians(surface_tilt))) * 0.5 return sky_diffuse def ineichen(apparent_zenith, airmass_absolute, linke_turbidity, altitude=0, dni_extra=1364., perez_enhancement=False): if isnan(airmass_absolute) or isnan(apparent_zenith): return {'ghi': 0.0, 'dni': 0.0, 'dhi': 0.0} # use max so that nighttime values will result in 0s instead of # negatives. propagates nans. cos_zenith = cos(radians(apparent_zenith)) if cos_zenith < 0.0: cos_zenith = 0.0 tl = linke_turbidity fh1 = exp(-altitude/8000.) fh2 = exp(-altitude/1250.) cg1 = 5.09e-5*altitude + 0.868 cg2 = 3.92e-5*altitude + 0.0387 ghi = exp(-cg2*airmass_absolute*(fh1 + fh2*(tl - 1.0))) # https://github.com/pvlib/pvlib-python/issues/435 if perez_enhancement: ghi *= exp(0.01*airmass_absolute**1.8) # use fmax to map airmass nans to 0s. multiply and divide by tl to # reinsert tl nans if ghi > 0.0: ghi = cg1 * dni_extra * cos_zenith * tl / tl * ghi else: ghi = 0.0 # BncI = "normal beam clear sky radiation" b = 0.664 + 0.163/fh1 bnci = b * exp(-0.09 * airmass_absolute * (tl - 1)) if bnci > 0.0: bnci = dni_extra * bnci else: bnci = 0.0 # "empirical correction" SE 73, 157 & SE 73, 312. try: bnci_2 = ((1.0 - (0.1 - 0.2*exp(-tl))/(0.1 + 0.882/fh1)) / cos_zenith) except: bnci_2 = 1e20 multiplier = (bnci_2 if bnci_2 > 0.0 else bnci_2) multiplier = 1e20 if multiplier > 1e20 else multiplier bnci_2 = ghi*multiplier dni = bnci if bnci < bnci_2 else bnci_2 dhi = ghi - dni*cos_zenith return {'ghi': ghi, 'dni': dni, 'dhi': dhi} fluids-1.0.22/fluids/optional/pychebfun.py0000644000175000017500000006443214302004506020063 0ustar nileshnilesh# -*- coding: utf-8 -*- """ Chebfun module ============== Vendorized version from: https://github.com/pychebfun/pychebfun/blob/master/pychebfun The rational for not including this library as a strict dependency is that it has not been released. .. moduleauthor :: Chris Swierczewski .. moduleauthor :: Olivier Verdier .. moduleauthor :: Gregory Potter The copyright notice (BSD-3 clause) is as follows: Copyright 2017 Olivier Verdier Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """ from __future__ import division import operator from functools import wraps import numpy as np import numpy.polynomial as poly from numpy.polynomial.chebyshev import cheb2poly, Chebyshev from numpy.polynomial.polynomial import Polynomial import sys emach = sys.float_info.epsilon # machine epsilon global sp_fftpack_ifft sp_fftpack_ifft = None def fftpack_ifft(*args, **kwargs): global sp_fftpack_ifft if sp_fftpack_ifft is None: from scipy.fftpack import ifft as sp_fftpack_ifft return sp_fftpack_ifft(*args, **kwargs) global sp_fftpack_fft sp_fftpack_fft = None def fftpack_fft(*args, **kwargs): global sp_fftpack_fft if sp_fftpack_fft is None: from scipy.fftpack import fft as sp_fftpack_fft return sp_fftpack_fft(*args, **kwargs) global sp_eigvals sp_eigvals = None def eigvals(*args, **kwargs): global sp_eigvals if sp_eigvals is None: from scipy.linalg import eigvals as sp_eigvals return sp_eigvals(*args, **kwargs) global sp_toeplitz sp_toeplitz = None def toeplitz(*args, **kwargs): global sp_toeplitz if sp_toeplitz is None: from scipy.linalg import toeplitz as sp_toeplitz return sp_toeplitz(*args, **kwargs) def build_pychebfun(f, domain, N=15): fvec = lambda xs: [f(xi) for xi in xs] return chebfun(f=fvec, domain=domain, N=N) def build_solve_pychebfun(f, goal, domain, N=15, N_max=100, find_roots=2): cache = {} def cached_fun(x): # Almost half the points are cached! if x in cache: return cache[x] val = f(x) cache[x] = val return val fun = build_pychebfun(cached_fun, domain, N=N) roots = (fun - goal).roots() while (len(roots) < find_roots and len(fun._values) < N_max): N *= 2 fun = build_pychebfun(cached_fun, domain, N=N) roots = (fun - goal).roots() roots = [i for i in roots if domain[0] < i < domain[1]] return roots, fun def chebfun_to_poly(coeffs_or_fun, domain=None, text=False): if isinstance(coeffs_or_fun, Chebfun): coeffs = coeffs_or_fun.coefficients() domain = coeffs_or_fun._domain elif hasattr(coeffs_or_fun, '__class__') and coeffs_or_fun.__class__.__name__ == 'ChebyshevExpansion': coeffs = coeffs_or_fun.coef() domain = coeffs_or_fun.xmin(), coeffs_or_fun.xmax() else: coeffs = coeffs_or_fun low, high = domain # Reverse the coefficients, and use cheb2poly to make it in the polynomial domain poly_coeffs = cheb2poly(coeffs)[::-1].tolist() if not text: return poly_coeffs s = 'coeffs = %s\n' %poly_coeffs delta = high - low delta_sum = high + low # Generate the expression s += 'horner(coeffs, %.18g*(x - %.18g))' %(2.0/delta, 0.5*delta_sum) # return the string return s def cheb_to_poly(coeffs_or_fun, domain=None): """Just call horner on the outputs!""" from fluids.numerics import horner as horner_poly if isinstance(coeffs_or_fun, Chebfun): coeffs = coeffs_or_fun.coefficients() domain = coeffs_or_fun._domain elif hasattr(coeffs_or_fun, '__class__') and coeffs_or_fun.__class__.__name__ == 'ChebyshevExpansion': coeffs = coeffs_or_fun.coef() domain = coeffs_or_fun.xmin(), coeffs_or_fun.xmax() else: coeffs = coeffs_or_fun low, high = domain coeffs = cheb2poly(coeffs)[::-1].tolist() # Convert to polynomial basis # Mix in limits to make it a normal polynomial my_poly = Polynomial([-0.5*(high + low)*2.0/(high - low), 2.0/(high - low)]) poly_coeffs = horner_poly(coeffs, my_poly).coef[::-1].tolist() return poly_coeffs def cheb_range_simplifier(low, high, text=False): ''' >>> low, high = 0.0023046250851646434, 4.7088985707840125 >>> cheb_range_simplifier(low, high, text=True) 'chebval(0.42493574399544564724*(x + -2.3556015979345885647), coeffs)' ''' constant = 0.5*(-low-high) factor = 2.0/(high-low) if text: return 'chebval(%.20g*(x + %.20g), coeffs)' %(factor, constant) return constant, factor def cast_scalar(method): """Cast scalars to constant interpolating objects.""" @wraps(method) def new_method(self, other): if np.isscalar(other): other = type(self)([other],self.domain()) return method(self, other) return new_method class Polyfun(object): """Construct a Lagrange interpolating polynomial over arbitrary points. Polyfun objects consist in essence of two components: 1) An interpolant on [-1,1], 2) A domain attribute [a,b]. These two pieces of information are used to define and subsequently keep track of operations upon Chebyshev interpolants defined on an arbitrary real interval [a,b]. """ # ---------------------------------------------------------------- # Initialisation methods # ---------------------------------------------------------------- class NoConvergence(Exception): """Raised when dichotomy does not converge.""" class DomainMismatch(Exception): """Raised when there is an interval mismatch.""" @classmethod def from_data(self, data, domain=None): """Initialise from interpolation values.""" return self(data,domain) @classmethod def from_fun(self, other): """Initialise from another instance.""" return self(other.values(),other.domain()) @classmethod def from_coeff(self, chebcoeff, domain=None, prune=True, vscale=1.): """ Initialise from provided coefficients prune: Whether to prune the negligible coefficients vscale: the scale to use when pruning """ coeffs = np.asarray(chebcoeff) if prune: N = self._cutoff(coeffs, vscale) pruned_coeffs = coeffs[:N] else: pruned_coeffs = coeffs values = self.polyval(pruned_coeffs) return self(values, domain, vscale) @classmethod def dichotomy(self, f, kmin=2, kmax=12, raise_no_convergence=True,): """Compute the coefficients for a function f by dichotomy. kmin, kmax: log2 of number of interpolation points to try raise_no_convergence: whether to raise an exception if the dichotomy does not converge """ for k in range(kmin, kmax): N = pow(2, k) sampled = self.sample_function(f, N) coeffs = self.polyfit(sampled) # 3) Check for negligible coefficients # If within bound: get negligible coeffs and bread bnd = self._threshold(np.max(np.abs(coeffs))) last = abs(coeffs[-2:]) if np.all(last <= bnd): break else: if raise_no_convergence: raise self.NoConvergence(last, bnd) return coeffs @classmethod def from_function(self, f, domain=None, N=None): """Initialise from a function to sample. N: optional parameter which indicates the range of the dichotomy """ # rescale f to the unit domain domain = self.get_default_domain(domain) a,b = domain[0], domain[-1] map_ui_ab = lambda t: 0.5*(b-a)*t + 0.5*(a+b) args = {'f': lambda t: f(map_ui_ab(t))} if N is not None: # N is provided nextpow2 = int(np.log2(N))+1 args['kmin'] = nextpow2 args['kmax'] = nextpow2+1 args['raise_no_convergence'] = False else: args['raise_no_convergence'] = True # Find out the right number of coefficients to keep coeffs = self.dichotomy(**args) return self.from_coeff(coeffs, domain) @classmethod def _threshold(self, vscale): """Compute the threshold at which coefficients are trimmed.""" bnd = 128*emach*vscale return bnd @classmethod def _cutoff(self, coeffs, vscale): """Compute cutoff index after which the coefficients are deemed negligible.""" bnd = self._threshold(vscale) inds = np.nonzero(abs(coeffs) >= bnd) if len(inds[0]): N = inds[0][-1] else: N = 0 return N+1 def __init__(self, values=0., domain=None, vscale=None): """Init an object from values at interpolation points. values: Interpolation values vscale: The actual vscale; computed automatically if not given """ avalues = np.asarray(values,) avalues1 = np.atleast_1d(avalues) N = len(avalues1) points = self.interpolation_points(N) self._values = avalues1 if vscale is not None: self._vscale = vscale else: self._vscale = np.max(np.abs(self._values)) self.p = self.interpolator(points, avalues1) domain = self.get_default_domain(domain) self._domain = np.array(domain) a,b = domain[0], domain[-1] # maps from [-1,1] <-> [a,b] self._ab_to_ui = lambda x: (2.0*x-a-b)/(b-a) self._ui_to_ab = lambda t: 0.5*(b-a)*t + 0.5*(a+b) def same_domain(self, fun2): """Returns True if the domains of two objects are the same.""" return np.allclose(self.domain(), fun2.domain(), rtol=1e-14, atol=1e-14) # ---------------------------------------------------------------- # String representations # ---------------------------------------------------------------- def __repr__(self): """Display method.""" a, b = self.domain() vals = self.values() return ( '%s \n ' ' domain length endpoint values\n ' ' [%5.1f, %5.1f] %5d %5.2f %5.2f\n ' 'vscale = %1.2e') % ( str(type(self)).split('.')[-1].split('>')[0][:-1], a,b,self.size(),vals[-1],vals[0],self._vscale,) def __str__(self): return "<{0}({1})>".format( str(type(self)).split('.')[-1].split('>')[0][:-1],self.size(),) # ---------------------------------------------------------------- # Basic Operator Overloads # ---------------------------------------------------------------- def __call__(self, x): return self.p(self._ab_to_ui(x)) def __getitem__(self, s): """Components s of the fun.""" return self.from_data(self.values().T[s].T) def __bool__(self): """Test for difference from zero (up to tolerance)""" return not np.allclose(self.values(), 0) __nonzero__ = __bool__ def __eq__(self, other): return not(self - other) def __ne__(self, other): return not (self == other) @cast_scalar def __add__(self, other): """Addition.""" if not self.same_domain(other): raise self.DomainMismatch(self.domain(),other.domain()) ps = [self, other] # length difference diff = other.size() - self.size() # determine which of self/other is the smaller/bigger big = diff > 0 small = not big # pad the coefficients of the small one with zeros small_coeffs = ps[small].coefficients() big_coeffs = ps[big].coefficients() padded = np.zeros_like(big_coeffs) padded[:len(small_coeffs)] = small_coeffs # add the values and create a new object with them chebsum = big_coeffs + padded new_vscale = np.max([self._vscale, other._vscale]) return self.from_coeff( chebsum, domain=self.domain(), vscale=new_vscale ) __radd__ = __add__ @cast_scalar def __sub__(self, other): """Subtraction.""" return self + (-other) def __rsub__(self, other): return -(self - other) def __rmul__(self, other): return self.__mul__(other) def __rtruediv__(self, other): return self.__rdiv__(other) def __neg__(self): """Negation.""" return self.from_data(-self.values(),domain=self.domain()) def __abs__(self): return self.from_function(lambda x: abs(self(x)),domain=self.domain()) # ---------------------------------------------------------------- # Attributes # ---------------------------------------------------------------- def size(self): return self.p.n def coefficients(self): return self.polyfit(self.values()) def values(self): return self._values def domain(self): return self._domain # ---------------------------------------------------------------- # Integration and differentiation # ---------------------------------------------------------------- def integrate(self): raise NotImplementedError() def differentiate(self): raise NotImplementedError() def dot(self, other): r"""Return the Hilbert scalar product :math:`\int f.g`.""" prod = self * other return prod.sum() def norm(self): """ Return: square root of scalar product with itself. """ norm = np.sqrt(self.dot(self)) return norm # ---------------------------------------------------------------- # Miscellaneous operations # ---------------------------------------------------------------- def restrict(self,subinterval): """Return a Polyfun that matches self on subinterval.""" if (subinterval[0] < self._domain[0]) or (subinterval[1] > self._domain[1]): raise ValueError("Can only restrict to subinterval") return self.from_function(self, subinterval) # ---------------------------------------------------------------- # Class method aliases # ---------------------------------------------------------------- diff = differentiate cumsum = integrate class Chebfun(Polyfun): """Eventually set this up so that a Chebfun is a collection of Chebfuns. This will enable piecewise smooth representations al la Matlab Chebfun v2.0. """ # ---------------------------------------------------------------- # Standard construction class methods. # ---------------------------------------------------------------- @classmethod def get_default_domain(self, domain=None): if domain is None: return [-1., 1.] else: return domain @classmethod def identity(self, domain=[-1., 1.]): """The identity function x -> x.""" return self.from_data([domain[1],domain[0]], domain) @classmethod def basis(self, n): """Chebyshev basis functions T_n.""" if n == 0: return self(np.array([1.])) vals = np.ones(n+1) vals[1::2] = -1 return self(vals) # ---------------------------------------------------------------- # Integration and differentiation # ---------------------------------------------------------------- def sum(self): """Evaluate the integral over the given interval using Clenshaw-Curtis quadrature.""" ak = self.coefficients() ak2 = ak[::2] n = len(ak2) Tints = 2/(1-(2*np.arange(n))**2) val = np.sum((Tints*ak2.T).T, axis=0) a_, b_ = self.domain() return 0.5*(b_-a_)*val def integrate(self): """Return the object representing the primitive of self over the domain. The output starts at zero on the left-hand side of the domain. """ coeffs = self.coefficients() a,b = self.domain() int_coeffs = 0.5*(b-a)*poly.chebyshev.chebint(coeffs) antiderivative = self.from_coeff(int_coeffs, domain=self.domain()) return antiderivative - antiderivative(a) def differentiate(self, n=1): """n-th derivative, default 1.""" ak = self.coefficients() a_, b_ = self.domain() for _ in range(n): ak = self.differentiator(ak) return self.from_coeff((2./(b_-a_))**n*ak, domain=self.domain()) # ---------------------------------------------------------------- # Roots # ---------------------------------------------------------------- def roots(self): """Utilises Boyd's O(n^2) recursive subdivision algorithm. The chebfun is recursively subsampled until it is successfully represented to machine precision by a sequence of piecewise interpolants of degree 100 or less. A colleague matrix eigenvalue solve is then applied to each of these pieces and the results are concatenated. See: J. P. Boyd, Computing zeros on a real interval through Chebyshev expansion and polynomial rootfinding, SIAM J. Numer. Anal., 40 (2002), pp. 1666–1682. """ if self.size() == 1: return np.array([]) elif self.size() <= 100: ak = self.coefficients() v = np.zeros_like(ak[:-1]) v[1] = 0.5 C1 = toeplitz(v) C2 = np.zeros_like(C1) C1[0,1] = 1. C2[-1,:] = ak[:-1] C = C1 - .5/ak[-1] * C2 eigenvalues = eigvals(C) roots = [eig.real for eig in eigenvalues if np.allclose(eig.imag,0,atol=1e-10) and np.abs(eig.real) <=1] scaled_roots = self._ui_to_ab(np.array(roots)) return scaled_roots else: try: # divide at a close-to-zero split-point split_point = self._ui_to_ab(0.0123456789) return np.concatenate( (self.restrict([self._domain[0],split_point]).roots(), self.restrict([split_point,self._domain[1]]).roots())) except: # Seems to have many fake roots for high degree fits coeffs = self.coefficients() domain = self._domain possibilities = Chebyshev(coeffs, domain).roots() return np.array([float(i.real) for i in possibilities if i.imag == 0.0]) # ---------------------------------------------------------------- # Interpolation and evaluation (go from values to coefficients) # ---------------------------------------------------------------- @classmethod def interpolation_points(self, N): """N Chebyshev points in [-1, 1], boundaries included.""" if N == 1: return np.array([0.]) return np.cos(np.arange(N)*np.pi/(N-1)) @classmethod def sample_function(self, f, N): """Sample a function on N+1 Chebyshev points.""" x = self.interpolation_points(N+1) return f(x) @classmethod def polyfit(self, sampled): """Compute Chebyshev coefficients for values located on Chebyshev points. sampled: array; first dimension is number of Chebyshev points """ asampled = np.asarray(sampled) if len(asampled) == 1: return asampled evened = even_data(asampled) coeffs = dct(evened) return coeffs @classmethod def polyval(self, chebcoeff): """Compute the interpolation values at Chebyshev points. chebcoeff: Chebyshev coefficients """ N = len(chebcoeff) if N == 1: return chebcoeff data = even_data(chebcoeff)/2 data[0] *= 2 data[N-1] *= 2 fftdata = 2*(N-1)*fftpack_ifft(data, axis=0) complex_values = fftdata[:N] # convert to real if input was real if np.isrealobj(chebcoeff): values = np.real(complex_values) else: values = complex_values return values @classmethod def interpolator(self, x, values): """Returns a polynomial with vector coefficients which interpolates the values at the Chebyshev points x.""" # hacking the barycentric interpolator by computing the weights in advance from scipy.interpolate import BarycentricInterpolator as Bary p = Bary([0.]) N = len(values) weights = np.ones(N) weights[0] = .5 weights[1::2] = -1 weights[-1] *= .5 p.wi = weights p.xi = x p.set_yi(values) return p # ---------------------------------------------------------------- # Helper for differentiation. # ---------------------------------------------------------------- @classmethod def differentiator(self, A): """Differentiate a set of Chebyshev polynomial expansion coefficients Originally from http://www.scientificpython.net/pyblog/chebyshev- differentiation. + (lots of) bug fixing + pythonisation """ m = len(A) SA = (A.T* 2*np.arange(m)).T DA = np.zeros_like(A) if m == 1: # constant return np.zeros_like(A[0:1]) if m == 2: # linear return A[1:2,] DA[m-3:m-1,] = SA[m-2:m,] for j in range(m//2 - 1): k = m-3-2*j DA[k] = SA[k+1] + DA[k+2] DA[k-1] = SA[k] + DA[k+1] DA[0] = (SA[1] + DA[2])*0.5 return DA # ---------------------------------------------------------------- # General utilities # ---------------------------------------------------------------- def even_data(data): """ Construct Extended Data Vector (equivalent to creating an even extension of the original function) Return: array of length 2(N-1) For instance, [0,1,2,3,4] --> [0,1,2,3,4,3,2,1] """ return np.concatenate([data, data[-2:0:-1]],) def dct(data): """Compute DCT using FFT.""" N = len(data)//2 fftdata = fftpack_fft(data, axis=0)[:N+1] fftdata /= N fftdata[0] /= 2. fftdata[-1] /= 2. if np.isrealobj(data): data = np.real(fftdata) else: data = fftdata return data # ---------------------------------------------------------------- # Add overloaded operators # ---------------------------------------------------------------- def _add_operator(cls, op): def method(self, other): if not self.same_domain(other): raise self.DomainMismatch(self.domain(), other.domain()) return self.from_function( lambda x: op(self(x).T, other(x).T).T, domain=self.domain(), ) cast_method = cast_scalar(method) name = '__'+op.__name__+'__' cast_method.__name__ = name cast_method.__doc__ = "operator {}".format(name) setattr(cls, name, cast_method) def rdiv(a, b): return b/a for _op in [operator.mul, operator.truediv, operator.pow, rdiv]: _add_operator(Polyfun, _op) # ---------------------------------------------------------------- # Add numpy ufunc delegates # ---------------------------------------------------------------- def _add_delegate(ufunc, nonlinear=True): def method(self): return self.from_function(lambda x: ufunc(self(x)), domain=self.domain()) name = ufunc.__name__ method.__name__ = name method.__doc__ = "delegate for numpy's ufunc {}".format(name) setattr(Polyfun, name, method) # Following list generated from: # https://github.com/numpy/numpy/blob/master/numpy/core/code_generators/generate_umath.py for func in [np.arccos, np.arccosh, np.arcsin, np.arcsinh, np.arctan, np.arctanh, np.cos, np.sin, np.tan, np.cosh, np.sinh, np.tanh, np.exp, np.exp2, np.expm1, np.log, np.log2, np.log1p, np.sqrt, np.ceil, np.trunc, np.fabs, np.floor, ]: _add_delegate(func) # ---------------------------------------------------------------- # General Aliases # ---------------------------------------------------------------- ## chebpts = interpolation_points # ---------------------------------------------------------------- # Constructor inspired by the Matlab version # ---------------------------------------------------------------- def chebfun(f=None, domain=[-1,1], N=None, chebcoeff=None,): """Create a Chebyshev polynomial approximation of the function $f$ on the interval :math:`[-1, 1]`. :param callable f: Python, Numpy, or Sage function :param int N: (default = None) specify number of interpolating points :param np.array chebcoeff: (default = np.array(0)) specify the coefficients """ # Chebyshev coefficients if chebcoeff is not None: return Chebfun.from_coeff(chebcoeff, domain) # another instance if isinstance(f, Polyfun): return Chebfun.from_fun(f) # callable if hasattr(f, '__call__'): return Chebfun.from_function(f, domain, N) # from here on, assume that f is None, or iterable if np.isscalar(f): f = [f] try: iter(f) # interpolation values provided except TypeError: pass else: return Chebfun(f, domain) raise TypeError('Impossible to initialise the object from an object of type {}'.format(type(f)))fluids-1.0.22/fluids/optional/dwm07b104i.dat0000644000175000017500000001136014302004506017706 0ustar nileshnilesh , ççççççççç ç ç ç ç ççççççççççççççççççç ç!ç"ç#ç$ç%ç&ç'ç(ç)ç*ç+çççççççççç ç ç ç ç ççççççççççççççççççç ç!ç"ç#ç$ç%ç&ç'ç(ç)ç*ç+ç,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ççççççççç ç ç ç ç ççççççççççççççççççç ç!ç"ç#ç$ç%ç&ç'ç(ç)ç*ç+ç,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~°(V==á+x@Hç@°­¿áÉ¿îÍÀ%F*@0xG?¯õQ??”¢>”`\@S͹¿ÀÚ¾½…ª¿°†>˜¯2>Ÿ\F¿Å'Á@%š…?ËÛ?†Í²?¡Â?­Ê{>ï¿`ßò±‚v¿,2¾l/3¿“™¿“£¿Š²À>ä´X¿1ªÀˆéÈ?<>º?µ¦?Dnø@R Áˆw6À†´GÀüå‰À¢·À¶A–À0$¿‚̳?Ýœ¿rø @ÂnU@_\¿Àð¾@ÈÍ»¿HµÀ#[¿>Ú À"ˆ@'ê¿àªÀ8$Ö?@ž9Àd?pY@ô¦åÀèr¿N‚ @¢ø¿ˆK{¿„×Áf3Ñ@ŸV¿Õ¬Ñ>Tæ¿rm„>@@s…û?”°Û>Z¸@™ ,BÞSÞBÚ?ÖB¿ÌÈBEÁ<Â9>CvðC£Iô®£Bð…°C´ÓÙÂ$8CYØÃ–g3A°*–A©Ž]Ââæ€Â‘$ÃXêCæTÃ!A"C¢9ÃI7MC7Úãèã–Ãn¨ÿBă’C>=ÇÀ¸TÆÂaÃ6ã´üÃ’KvBÛb%Ã'ïÃåo7C övÃÈ1 ÃL>EBi) ö|SC QŸÁEÁB‘B¦oÄBˆ*CúÑ‚ÃügõB° -Ãß*'CEMYÃ쑼CdQpCøj¾Â€lYÃün¢@î!;Bº@¯B Bn{B¸ó°Á†*PBq&FBíàNœ,CòõAŸ<Á”•¯A‡eíÁ*¦@°Žb?‘ÓÂ^@¸ÂwìŸB@Âõ…B6nÂᣤBß*éÂõ‡Â~ÕãAd"¥B]q`@,Q)ÂB¡ÁFdAÌ—Ö@Ï,ÁÇûÁFYÀ€Ù*@!¬Aeë!ÂÂa²A¨i¸À˜ÅQ¿í7 AzªEÀ`þø¿RçÁ€¿;@ ÿÒ>ÞIL@Ð}@º·Ë>_ùÖ@ê]ÅAŸÁ~ʉÀú5Ç@d¶ÞÀIã=ÁriÀP«?~SÁ°6šÁäjŽÀà˜ˆ¿Ø‹À#Я@€Q“¾¥Øá@!r½ÀÀÎA´AFŽ£Bšz…Áœ¤B@Ãú@x“Ô@þ˜Afn4Âj!½Âö C<ȶÃà³ÒBêÙºCòL†Ãìæ9CUuöÁN¡‘Bÿ~@ ÷Û¿Ø]Ã8ÌÃÒ-«Ãä»Â†â¦Bx™”Á3Å C 0ŸC÷ÄèÃV C›ÛÂJã]Âk…žxÁâv0ÂñÙ6Âå¯ÄB_aÇB w¿ÐÛmC€1KA»9ó<'CPÃ0D¢B¥³ÜÂk…B+~ŸAI‰Cï¸Ãø3ÄCˆÂBŸ­ÂóRBå”Ã…ÃŒÃZ׬CÀé¢Â–rZB<ÆGB¦ÔmB`»Y@ NB¶ÕAÕúx€ÁÔ —iÀ`Ë”IB\½mÂõBû8 fB§‘µÁD1ÙÁå8ѺhCÐô,Ãè1¦Á¤B Ê…Á¶&B6%´Bê°¸Â@vÁA°€@fluids-1.0.22/fluids/optional/hwm93.pyf0000644000175000017500000004105214302004506017206 0ustar nileshnilesh! -*- f90 -*- ! Note: the context of this file is case sensitive. python module hwm93 ! in interface ! in :hwm93 subroutine gws5(iyd,sec,alt,glat,glong,stl,f107a,f107,ap,w) ! in :hwm93:hwm93.for integer :: iyd real :: sec real :: alt real :: glat real :: glong real :: stl real :: f107a real :: f107 real dimension(1) :: ap real dimension(2), intent(out) :: w integer dimension(3) :: isdate integer dimension(2) :: istime integer dimension(2) :: name real dimension(25) :: sw integer :: isw real dimension(25) :: swc real dimension(200) :: pwb real dimension(200) :: pwc real dimension(150) :: pwbl real dimension(150) :: pwcl real dimension(150) :: pwbld real dimension(150) :: pwcld real dimension(150) :: pb12 real dimension(150) :: pc12 real dimension(150) :: pb13 real dimension(150) :: pc13 real dimension(150) :: pb14 real dimension(150) :: pc14 real dimension(150) :: pb15 real dimension(150) :: pc15 real dimension(150) :: pb15d real dimension(150) :: pc15d real dimension(100,26) :: pwp integer dimension(3) :: isd integer dimension(2) :: ist integer dimension(2) :: nam real dimension(2) :: wbt real dimension(2) :: wct integer :: nnw common /datime/ isdate,istime,name common /csw/ sw,isw,swc common /parmw5/ pwb,pwc,pwbl,pwcl,pwbld,pwcld,pb12,pc12,pb13,pc13,pb14,pc14,pb15,pc15,pb15d,pc15d,pwp common /datw/ isd,ist,nam common /hwmc/ wbt,wct entry setnw5(nnw) end subroutine gws5 function wprof(z,zl,s,uinf,ulb,ulbd,mn1,zn1,un1,ugn1,mn2,zn2,un2,ugn2) ! in :hwm93:hwm93.for real :: z real :: zl real :: s real :: uinf real :: ulb real :: ulbd integer, optional,check(len(zn1)>=mn1),depend(zn1) :: mn1=len(zn1) real dimension(mn1) :: zn1 real dimension(mn1),depend(mn1) :: un1 real dimension(2) :: ugn1 integer, optional,check(len(zn2)>=mn2),depend(zn2) :: mn2=len(zn2) real dimension(mn2) :: zn2 real dimension(mn2),depend(mn2) :: un2 real dimension(2) :: ugn2 real :: wprof end function wprof subroutine glbw5e(yrd,sec,lat,long_bn,stl,f107a,f107,ap,pb,pc,ww) ! in :hwm93:hwm93.for real :: yrd real :: sec real :: lat real :: long_bn real :: stl real :: f107a real :: f107 real dimension(1) :: ap real dimension(1) :: pb real dimension(1) :: pc real dimension(2) :: ww real :: xvl integer :: lvl integer :: mvl real :: clat real :: slat real dimension(20,20) :: bt real dimension(20,20) :: bp real dimension(25) :: sw integer :: isw real dimension(25) :: swc real :: tll integer :: nsvl real :: cstl real :: sstl real :: c2stl real :: s2stl real :: c3stl real :: s3stl real :: xll integer :: ngvl real :: clong real :: slong real :: c2long real :: s2long real dimension(2) :: wbt real dimension(2) :: wct common /vpoly2/ xvl,lvl,mvl,clat,slat,bt,bp common /csw/ sw,isw,swc common /ltcomp/ tll,nsvl,cstl,sstl,c2stl,s2stl,c3stl,s3stl common /lgcomp/ xll,ngvl,clong,slong,c2long,s2long common /hwmc/ wbt,wct end subroutine glbw5e subroutine glbw5m(yrd,sec,lat,long_bn,stl,f107a,f107,ap,pb,pc,ww) ! in :hwm93:hwm93.for real :: yrd real :: sec real :: lat real :: long_bn real :: stl real :: f107a real :: f107 real dimension(1) :: ap real dimension(1) :: pb real dimension(1) :: pc real dimension(2) :: ww real :: xvl integer :: lvl integer :: mvl real :: clat real :: slat real dimension(20,20) :: bt real dimension(20,20) :: bp real dimension(25) :: sw integer :: isw real dimension(25) :: swc real :: tll integer :: nsvl real :: cstl real :: sstl real :: c2stl real :: s2stl real :: c3stl real :: s3stl real :: xll integer :: ngvl real :: clong real :: slong real :: c2long real :: s2long real dimension(2) :: wbt real dimension(2) :: wct common /vpoly2/ xvl,lvl,mvl,clat,slat,bt,bp common /csw/ sw,isw,swc common /ltcomp/ tll,nsvl,cstl,sstl,c2stl,s2stl,c3stl,s3stl common /lgcomp/ xll,ngvl,clong,slong,c2long,s2long common /hwmc/ wbt,wct end subroutine glbw5m subroutine glbw5s(iyd,lat,long_bn,stl,pb,pc,ww) ! in :hwm93:hwm93.for integer :: iyd real :: lat real :: long_bn real :: stl real dimension(1) :: pb real dimension(1) :: pc real dimension(2) :: ww real :: xvl integer :: lvl integer :: mvl real :: clat real :: slat real dimension(20,20) :: bt real dimension(20,20) :: bp real dimension(25) :: sw integer :: isw real dimension(25) :: swc real :: tll integer :: nsvl real :: cstl real :: sstl real :: c2stl real :: s2stl real :: c3stl real :: s3stl real :: xll integer :: ngvl real :: clong real :: slong real :: c2long real :: s2long real dimension(2) :: wbt real dimension(2) :: wct common /vpoly2/ xvl,lvl,mvl,clat,slat,bt,bp common /csw/ sw,isw,swc common /ltcomp/ tll,nsvl,cstl,sstl,c2stl,s2stl,c3stl,s3stl common /lgcomp/ xll,ngvl,clong,slong,c2long,s2long common /hwmc/ wbt,wct end subroutine glbw5s subroutine tselec(sv) ! in :hwm93:hwm93.for real dimension(1) :: sv real dimension(25) :: sw integer :: isw real dimension(25) :: swc real dimension(1) :: svv common /csw/ sw,isw,swc entry tretrv(svv) end subroutine tselec subroutine vsphr1(c,s,l,m,bt,bp,lmax) ! in :hwm93:hwm93.for real :: c real :: s integer :: l integer :: m real dimension(lmax,1) :: bt real dimension(lmax,1),depend(lmax) :: bp integer, optional,check(shape(bt,0)==lmax),depend(bt) :: lmax=shape(bt,0) end subroutine vsphr1 subroutine legpl1(c,s,l,m,plg,lmax) ! in :hwm93:hwm93.for real :: c real :: s integer :: l integer :: m real dimension(lmax,1) :: plg integer, optional,check(shape(plg,0)==lmax),depend(plg) :: lmax=shape(plg,0) end subroutine legpl1 subroutine spline(x,y,n,yp1,ypn,y2) ! in :hwm93:hwm93.for real dimension(n) :: x real dimension(n),depend(n) :: y integer, optional,check(len(x)>=n),depend(x) :: n=len(x) real :: yp1 real :: ypn real dimension(n),depend(n) :: y2 end subroutine spline subroutine splint(xa,ya,y2a,n,x,y) ! in :hwm93:hwm93.for real dimension(n) :: xa real dimension(n),depend(n) :: ya real dimension(n),depend(n) :: y2a integer, optional,check(len(xa)>=n),depend(xa) :: n=len(xa) real :: x real :: y end subroutine splint block data initw5 ! in :hwm93:hwm93.for real, optional :: xvl=-999.0 integer, optional :: lvl=-1 integer, optional :: mvl=-1 real :: clat real :: slat real dimension(20,20) :: bt real dimension(20,20) :: bp real dimension(25) :: sw integer, optional :: isw=0 real dimension(25) :: swc real, optional :: tll=-999.0 integer, optional :: nsvl=-1 real :: cstl real :: sstl real :: c2stl real :: s2stl real :: c3stl real :: s3stl real, optional :: xll=-999.0 integer, optional :: ngvl=-1 real :: clong real :: slong real :: c2long real :: s2long common /vpoly2/ xvl,lvl,mvl,clat,slat,bt,bp common /csw/ sw,isw,swc common /ltcomp/ tll,nsvl,cstl,sstl,c2stl,s2stl,c3stl,s3stl common /lgcomp/ xll,ngvl,clong,slong,c2long,s2long end block data initw5 block data gwsbk5 ! in :hwm93:hwm93.for character, optional,dimension(3,4),intent(c) :: isdate='28-j' character, optional,dimension(2,4),intent(c) :: istime='20:3' character, optional,dimension(2,4),intent(c) :: name='hwm9' real, optional,dimension(50) :: pba1=0.00000e+00 real, optional,dimension(50) :: pba2=-3.82415e-01 real, optional,dimension(50) :: pba3=0.00000e+00 real, optional,dimension(50) :: pba4=2.08426e+00 real, optional,dimension(50) :: pca1=0.00000e+00 real, optional,dimension(50) :: pca2=-1.36730e+00 real, optional,dimension(50) :: pca3=0.00000e+00 real, optional,dimension(50) :: pca4=-2.31583e+00 real, optional,dimension(50) :: pbb1=6.22831e-01 real, optional,dimension(50) :: pbb2=0.00000e+00 real, optional,dimension(50) :: pbb3=0.00000e+00 real, optional,dimension(50) :: pcb1=5.45009e-01 real, optional,dimension(50) :: pcb2=0.00000e+00 real, optional,dimension(50) :: pcb3=0.00000e+00 real, optional,dimension(50) :: pbc1=6.09940e-01 real, optional,dimension(50) :: pbc2=0.00000e+00 real, optional,dimension(50) :: pbc3=0.00000e+00 real, optional,dimension(50) :: pcc1=5.46739e-01 real, optional,dimension(50) :: pcc2=0.00000e+00 real, optional,dimension(50) :: pcc3=0.00000e+00 real, optional,dimension(50) :: pbd1=4.99007e-01 real, optional,dimension(50) :: pbd2=0.00000e+00 real, optional,dimension(50) :: pbd3=0.00000e+00 real, optional,dimension(50) :: pcd1=0.00000e+00 real, optional,dimension(50) :: pcd2=0.00000e+00 real, optional,dimension(50) :: pcd3=0.00000e+00 real, optional,dimension(50) :: pbe1=0.00000e+00 real, optional,dimension(50) :: pbe2=0.00000e+00 real, optional,dimension(50) :: pbe3=0.00000e+00 real, optional,dimension(50) :: pce1=0.00000e+00 real, optional,dimension(50) :: pce2=0.00000e+00 real, optional,dimension(50) :: pce3=0.00000e+00 real, optional,dimension(50) :: pbf1=0.00000e+00 real, optional,dimension(50) :: pbf2=0.00000e+00 real, optional,dimension(50) :: pbf3=0.00000e+00 real, optional,dimension(50) :: pcf1=0.00000e+00 real, optional,dimension(50) :: pcf2=0.00000e+00 real, optional,dimension(50) :: pcf3=0.00000e+00 real, optional,dimension(50) :: pbg1=0.00000e+00 real, optional,dimension(50) :: pbg2=0.00000e+00 real, optional,dimension(50) :: pbg3=0.00000e+00 real, optional,dimension(50) :: pcg1=0.00000e+00 real, optional,dimension(50) :: pcg2=0.00000e+00 real, optional,dimension(50) :: pcg3=0.00000e+00 real, optional,dimension(50) :: pbh1=0.00000e+00 real, optional,dimension(50) :: pbh2=0.00000e+00 real, optional,dimension(50) :: pbh3=0.00000e+00 real, optional,dimension(50) :: pch1=0.00000e+00 real, optional,dimension(50) :: pch2=0.00000e+00 real, optional,dimension(50) :: pch3=0.00000e+00 real, optional,dimension(50) :: pbi1=0.00000e+00 real, optional,dimension(50) :: pbi2=0.00000e+00 real, optional,dimension(50) :: pci1=0.00000e+00 real, optional,dimension(50) :: pci2=0.00000e+00 real, optional,dimension(50) :: pbj1=0.00000e+00 real, optional,dimension(50) :: pbj2=0.00000e+00 real, optional,dimension(50) :: pcj1=0.00000e+00 real, optional,dimension(50) :: pcj2=-7.33184e-01 real, optional,dimension(50) :: pbk1=0.00000e+00 real, optional,dimension(50) :: pbk2=0.00000e+00 real, optional,dimension(50) :: pck1=0.00000e+00 real, optional,dimension(50) :: pck2=-6.06026e-01 real, optional,dimension(50) :: pbl1=0.00000e+00 real, optional,dimension(50) :: pbl2=0.00000e+00 real, optional,dimension(50) :: pcl1=0.00000e+00 real, optional,dimension(50) :: pcl2=1.63964e-02 real, optional,dimension(50) :: pbm1=0.00000e+00 real, optional,dimension(50) :: pbm2=0.00000e+00 real, optional,dimension(50) :: pcm1=0.00000e+00 real, optional,dimension(50) :: pcm2=3.48181e-01 real, optional,dimension(50) :: pbn1=0.00000e+00 real, optional,dimension(50) :: pbn2=0.00000e+00 real, optional,dimension(50) :: pcn1=0.00000e+00 real, optional,dimension(50) :: pcn2=3.79580e-01 real, optional,dimension(50) :: pbo1=0.00000e+00 real, optional,dimension(50) :: pbo2=0.00000e+00 real, optional,dimension(50) :: pco1=0.00000e+00 real, optional,dimension(50) :: pco2=6.37036e-01 real, optional,dimension(50) :: pbp1=0.00000e+00 real, optional,dimension(50) :: pbp2=0.00000e+00 real, optional,dimension(50) :: pcp1=0.00000e+00 real, optional,dimension(50) :: pcp2=9.80142e-01 real, optional,dimension(50) :: pbq1=0.00000e+00 real, optional,dimension(50) :: pbq2=0.00000e+00 real, optional,dimension(50) :: pcq1=0.00000e+00 real, optional,dimension(50) :: pcq2=7.31799e-01 real, optional,dimension(50) :: pbr1=0.00000e+00 real, optional,dimension(50) :: pbr2=0.00000e+00 real, optional,dimension(50) :: pcr1=0.00000e+00 real, optional,dimension(50) :: pcr2=3.07191e-01 real, optional,dimension(50) :: pbs1=0.00000e+00 real, optional,dimension(50) :: pbs2=0.00000e+00 real, optional,dimension(50) :: pcs1=0.00000e+00 real, optional,dimension(50) :: pcs2=1.09405e-02 real, optional,dimension(50) :: pbt1=0.00000e+00 real, optional,dimension(50) :: pbt2=0.00000e+00 real, optional,dimension(50) :: pct1=0.00000e+00 real, optional,dimension(50) :: pct2=0.00000e+00 real, optional,dimension(50) :: pbu1=0.00000e+00 real, optional,dimension(50) :: pbu2=0.00000e+00 real, optional,dimension(50) :: pcu1=0.00000e+00 real, optional,dimension(50) :: pcu2=0.00000e+00 common /datw/ isdate,istime,name common /parmw5/ pba1,pba2,pba3,pba4,pca1,pca2,pca3,pca4,pbb1,pbb2,pbb3,pcb1,pcb2,pcb3,pbc1,pbc2,pbc3,pcc1,pcc2,pcc3,pbd1,pbd2,pbd3,pcd1,pcd2,pcd3,pbe1,pbe2,pbe3,pce1,pce2,pce3,pbf1,pbf2,pbf3,pcf1,pcf2,pcf3,pbg1,pbg2,pbg3,pcg1,pcg2,pcg3,pbh1,pbh2,pbh3,pch1,pch2,pch3,pbi1,pbi2,pci1,pci2,pbj1,pbj2,pcj1,pcj2,pbk1,pbk2,pck1,pck2,pbl1,pbl2,pcl1,pcl2,pbm1,pbm2,pcm1,pcm2,pbn1,pbn2,pcn1,pcn2,pbo1,pbo2,pco1,pco2,pbp1,pbp2,pcp1,pcp2,pbq1,pbq2,pcq1,pcq2,pbr1,pbr2,pcr1,pcr2,pbs1,pbs2,pcs1,pcs2,pbt1,pbt2,pct1,pct2,pbu1,pbu2,pcu1,pcu2 end block data gwsbk5 end interface end python module hwm93 ! This file was auto-generated with f2py (version:2). ! See http://cens.ioc.ee/projects/f2py2e/ fluids-1.0.22/fluids/optional/gd2qd.dat0000644000175000017500000000273414302004506017216 0ustar nileshnilesh=@ùDzC¸‘’®ž ?¯ç'¥”ÿŒ3޳B  ?Þ_Ãè˜y¿”ÖœlµZh¿‘­ ä]?À½ïþŸƒ)¿€MŽ+î‡%?€P¸O,#¿8xë„×?—ïu[ñ¿N¢ ‘È‹? (,~€Š?½›ÐˆÖ‚z?(ÞßÑK’?êÉ¡7E¿´ýº“m?Úðà‡^‰j¿ì2ÅM?ÀgÜ…wð¿ðªÍAçÀ>?Ч‹Í÷7?€'¹-¿o?@›ûÔƒ?À£T3.¿È· ¢r_5?ðL}¡;Ö<¿4ØPþ½â„¿Ã6n[ôu?ºÄ‹Ò|àd¿*kKš»¯~¿f v%3ºC¿ûn gY?ðøJ^ÕÛ.?‹.ŽzæÂT¿ð'Š7?(ÊŽÞ÷’=¿P¿wåI40¿€9ŽÑ›”?xÿa*¿VöÎÝw‰¿6~¥ñ?Æ{¿/lªBa}˜?ÕôR¾´„¿Å7Cl‹…¿¼`áEÓp?_Ó3ä\¿;¨éç:Y?†8_ÆmßY¿Ð:éò2»R?®ì^M›Ñ9¿ ‰Ü¢5?Üo ²Rð¿%À ´²ã>•&.k¿YúÐ?Ukk¿ï÷˜âY>l¿,ñKÚÞ}¿g¯òÝ×e¿?“³=¿ðëû¯kxE¿Éc§«Ñ?Ìáv z&?<€32‡&?¼ß©O3¿Àg¸hÿ‹Ò>ÿÂî°O^¿ÅÄÕh?¥²»ˆe•e¿VyóîÝX?‚%£"Xa?b§d´"?€Ã}H@ý>¤ d¤®\¿õÇÐArö5?A†g¿Ôù¾ªŽw_¯£¿I»ÎöÎé?nŠgA’L ?˜I¡±{¿Wz#„f¿Àú‡Õ‡KI?€Öb$9HQ¿,óƒ}ô¿ é*Éù>§Þ°ˆ¿%Å6;È¿|§À¸…¿nQ¨µœÓŸ?”îBä‰o¢?`(ZSæ«o¿Š/¨;eBu¿0€Tw†T¿ýwp _¿Àd™NYU? ƨVO5X¿ ´Â_S ¿€Y_n÷Y8¿ ?j!x(?€Õ¯NzK/¿‰ù´g¿´‚û#fc³¿ÌaÁ4i¿Î]eÈ¿NÎ,IgÐ?P=8µˆ'8¿ 4{Ù22'¿ 8½x`R¿(sZSëm¿ Gú@6?@­ Lh5?€íí¥´?rPÔS7±v‹?ÌFÎüœt?,ä§Û³\?íbn„æd?Ø&ÉÎ?Èrm„7EV?Œh7¤n¨Y¿À6q»Ì2¿ DäU-28?à:b³·.3?"…Ý‘¿áoeÆp¿XB¡Ž>Ñ’?'â´€at[?ñ–?¿O?l_T”E¿óèúôXG¿¸iÍÕ$å2¿F: 7ñIJ¿€…\Ù Œ#?0g euð*?¸fluids-1.0.22/fluids/optional/__init__.py0000644000175000017500000000000114302004506017615 0ustar nileshnilesh fluids-1.0.22/fluids/optional/hwm14.f900000644000175000017500000013033614302004506017003 0ustar nileshnilesh!!! !!! Horizontal Wind Model 14 !!! !!! AUTHORS !!! Douglas Drob (0 to ~450+ km, quite-time) !!! John Emmert (disturbance winds, DWM Emmert et al., (2008)) !!! Geospace Science and Technology Branch !!! Space Science Division !!! Naval Research Laboratory !!! 4555 Overlook Ave. !!! Washington, DC 20375 !!! !!! Point of Contact !!! douglas.drob@nrl.navy.mil !!! !!! DATE !!! July 8, 2014 !!! !!! !!! !!!================================================================================ !!! Input arguments: !!! iyd - year and day as yyddd !!! sec - ut(sec) !!! alt - altitude(km) !!! glat - geodetic latitude(deg) !!! glon - geodetic longitude(deg) !!! stl - not used !!! f107a - not used !!! f107 - not used !!! ap - two element array with !!! ap(1) = not used !!! ap(2) = current 3hr ap index !!! !!! Output argument: !!! w(1) = meridional wind (m/sec + northward) !!! w(2) = zonal wind (m/sec + eastward) !!! !!!================================================================================ module hwm integer(4) :: nmaxhwm = 0 ! maximum degree hwmqt integer(4) :: omaxhwm = 0 ! maximum order hwmqt integer(4) :: nmaxdwm = 0 ! maximum degree hwmqt integer(4) :: mmaxdwm = 0 ! maximum order hwmqt integer(4) :: nmaxqdc = 0 ! maximum degree of coordinate coversion integer(4) :: mmaxqdc = 0 ! maximum order of coordinate coversion integer(4) :: nmaxgeo = 0 ! maximum of nmaxhwm, nmaxqd integer(4) :: mmaxgeo = 0 ! maximum of omaxhwm, nmaxqd real(8),allocatable :: gpbar(:,:),gvbar(:,:),gwbar(:,:) ! alfs for geo coordinates real(8),allocatable :: spbar(:,:),svbar(:,:),swbar(:,:) ! alfs MLT calculation real(8) :: glatalf = -1.d32 logical :: hwminit = .true. end module hwm subroutine hwm14(iyd,sec,alt,glat,glon,stl,f107a,f107,ap,w) use hwm implicit none integer(4),intent(in) :: iyd real(4),intent(in) :: sec,alt,glat,glon,stl,f107a,f107 real(4),intent(in) :: ap(2) real(4),intent(out) :: w(2) real(4) :: dw(2) if (hwminit) call inithwm() call hwmqt(iyd,sec,alt,glat,glon,stl,f107a,f107,ap,w) if (ap(2) .ge. 0.0) then call dwm07(iyd,sec,alt,glat,glon,ap,dw) w = w + dw endif return end subroutine hwm14 ! ################################################################################ ! Portable utility to compute vector spherical harmonical harmonic basis functions ! ################################################################################ module alf implicit none integer(4) :: nmax0,mmax0 ! static normalizational coeffiecents real(8), allocatable :: anm(:,:),bnm(:,:),dnm(:,:) real(8), allocatable :: cm(:),en(:) real(8), allocatable :: marr(:),narr(:) contains ! ------------------------------------------------------------- ! routine to compute vector spherical harmonic basis functions ! ------------------------------------------------------------- subroutine alfbasis(nmax,mmax,theta,P,V,W) implicit none integer(4), intent(in) :: nmax, mmax real(8), intent(in) :: theta real(8), intent(out) :: P(0:nmax,0:mmax) real(8), intent(out) :: V(0:nmax,0:mmax) real(8), intent(out) :: W(0:nmax,0:mmax) integer(8) :: n, m real(8) :: x, y real(8), parameter :: p00 = 0.70710678118654746d0 P(0,0) = p00 x = dcos(theta) y = dsin(theta) do m = 1, mmax W(m,m) = cm(m) * P(m-1,m-1) P(m,m) = y * en(m) * W(m,m) do n = m+1, nmax W(n,m) = anm(n,m) * x * W(n-1,m) - bnm(n,m) * W(n-2,m) P(n,m) = y * en(n) * W(n,m) V(n,m) = narr(n) * x * W(n,m) - dnm(n,m) * W(n-1,m) W(n-2,m) = marr(m) * W(n-2,m) enddo W(nmax-1,m) = marr(m) * W(nmax-1,m) W(nmax,m) = marr(m) * W(nmax,m) V(m,m) = x * W(m,m) enddo P(1,0) = anm(1,0) * x * P(0,0) V(1,0) = -P(1,1) do n = 2, nmax P(n,0) = anm(n,0) * x * P(n-1,0) - bnm(n,0) * P(n-2,0) V(n,0) = -P(n,1) enddo return end subroutine alfbasis ! ----------------------------------------------------- ! routine to compute static normalization coeffiecents ! ----------------------------------------------------- subroutine initalf(nmaxin,mmaxin) implicit none integer(4), intent(in) :: nmaxin, mmaxin integer(8) :: n, m ! 64 bits to avoid overflow for (m,n) > 60 nmax0 = nmaxin mmax0 = mmaxin if (allocated(anm)) deallocate(anm, bnm, cm, dnm, en, marr, narr) allocate( anm(0:nmax0, 0:mmax0) ) allocate( bnm(0:nmax0, 0:mmax0) ) allocate( cm(0:mmax0) ) allocate( dnm(0:nmax0, 0:mmax0) ) allocate( en(0:nmax0) ) allocate( marr(0:mmax0) ) allocate( narr(0:nmax0) ) do n = 1, nmax0 narr(n) = dble(n) en(n) = dsqrt(dble(n*(n+1))) anm(n,0) = dsqrt( dble((2*n-1)*(2*n+1)) ) / narr(n) bnm(n,0) = dsqrt( dble((2*n+1)*(n-1)*(n-1)) / dble(2*n-3) ) / narr(n) end do do m = 1, mmax0 marr(m) = dble(m) cm(m) = dsqrt(dble(2*m+1)/dble(2*m*m*(m+1))) do n = m+1, nmax0 anm(n,m) = dsqrt( dble((2*n-1)*(2*n+1)*(n-1)) / dble((n-m)*(n+m)*(n+1)) ) bnm(n,m) = dsqrt( dble((2*n+1)*(n+m-1)*(n-m-1)*(n-2)*(n-1)) & / dble((n-m)*(n+m)*(2*n-3)*n*(n+1)) ) dnm(n,m) = dsqrt( dble((n-m)*(n+m)*(2*n+1)*(n-1)) / dble((2*n-1)*(n+1)) ) end do enddo return end subroutine initalf end module alf !#################################################################################### ! Model Modules !#################################################################################### module qwm implicit none integer(4) :: nbf ! Count of basis terms per model level integer(4) :: maxn ! latitude integer(4) :: maxs,maxm,maxl ! seasonal,stationary,migrating integer(4) :: maxo integer(4) :: p ! B-splines order, p=4 cubic, p=3 quadratic integer(4) :: nlev ! e.g. Number of B-spline nodes integer(4) :: nnode ! nlev + p real(8) :: alttns ! Transition 1 real(8) :: altsym ! Transition 2 real(8) :: altiso ! Constant Limit real(8) :: e1(0:4) real(8) :: e2(0:4) real(8),parameter :: H = 60.0d0 integer(4),allocatable :: nb(:) ! total number of basis functions @ level integer(4),allocatable :: order(:,:) ! spectral content @ level real(8),allocatable :: vnode(:) ! Vertical Altitude Nodes real(8),allocatable :: mparm(:,:) ! Model Parameters real(8),allocatable :: tparm(:,:) ! Model Parameters real(8) :: previous(1:5) = -1.0d32 integer(4) :: priornb = 0 real(8),allocatable :: fs(:,:),fm(:,:),fl(:,:) real(8),allocatable :: bz(:),bm(:) real(8),allocatable :: zwght(:) integer(4) :: lev integer(4) :: cseason = 0 integer(4) :: cwave = 0 integer(4) :: ctide = 0 logical :: content(5) = .true. ! Season/Waves/Tides logical :: component(0:1) = .true. ! Compute zonal/meridional character(128) :: qwmdefault = 'hwm123114.bin' logical :: qwminit = .true. real(8) :: wavefactor(4) = 1.0 real(8) :: tidefactor(4) = 1.0 end module qwm module dwm implicit none integer(4) :: nterm ! Number of terms in the model integer(4) :: nmax,mmax ! Max latitudinal degree integer(4) :: nvshterm ! # of VSH basis functions integer(4),allocatable :: termarr(:,:) ! 3 x nterm index of coupled terms real(4),allocatable :: coeff(:) ! Model coefficients real(4),allocatable :: vshterms(:,:) ! VSH basis values real(4),allocatable :: termval(:,:) ! Term values to which coefficients are applied real(8),allocatable :: dpbar(:,:) ! Associated lengendre fns real(8),allocatable :: dvbar(:,:) real(8),allocatable :: dwbar(:,:) real(8),allocatable :: mltterms(:,:) ! MLT Fourier terms real(4) :: twidth ! Transition width of high-lat mask real(8), parameter :: pi=3.1415926535897932 real(8), parameter :: dtor=pi/180.d0 logical :: dwminit = .true. character(128), parameter :: dwmdefault = 'dwm07b104i.dat' end module dwm subroutine inithwm() use hwm use qwm use dwm use alf,only:initalf implicit none integer(4) :: nmax0, mmax0 call initqwm(qwmdefault) call initdwm(nmaxdwm, mmaxdwm) nmaxgeo = max(nmaxhwm, nmaxqdc) mmaxgeo = max(omaxhwm, mmaxqdc) nmax0 = max(nmaxgeo, nmaxdwm) mmax0 = max(mmaxgeo, mmaxdwm) call initalf(nmax0,mmax0) ! shared for QWM and DWM, no need to compute twice if (allocated(gpbar)) deallocate(gpbar,gvbar,gwbar) allocate(gpbar(0:nmaxgeo,0:mmaxgeo)) allocate(gvbar(0:nmaxgeo,0:mmaxgeo)) allocate(gwbar(0:nmaxgeo,0:mmaxgeo)) gpbar = 0 gvbar = 0 gwbar = 0 if (allocated(spbar)) deallocate(spbar,svbar,swbar) allocate(spbar(0:nmaxgeo,0:mmaxgeo)) allocate(svbar(0:nmaxgeo,0:mmaxgeo)) allocate(swbar(0:nmaxgeo,0:mmaxgeo)) spbar = 0 svbar = 0 swbar = 0 hwminit = .false. return end subroutine inithwm ! ######################################################################################## ! The quiet time model functions ! ######################################################################################## !============================================================================ ! A routine to load the quiet time HWM coeffiecents into memory !============================================================================ subroutine initqwm(filename) use qwm use hwm,only:omaxhwm,nmaxhwm implicit none character(128),intent(in) :: filename integer(4) :: i,j integer(4) :: ncomp if (allocated(vnode)) then deallocate(order,nb,vnode,mparm,tparm) deallocate(fs,fm,fl,zwght,bz,bm) endif call findandopen(filename,23) read(23) nbf,maxs,maxm,maxl,maxn,ncomp read(23) nlev,p nnode = nlev + p allocate(nb(0:nnode),order(ncomp,0:nnode),vnode(0:nnode)) read(23) vnode vnode(3) = 0.0 allocate(mparm(nbf,0:nlev)) mparm = 0.0d0 do i = 0,nlev-p+1-2 read(23) order(1:ncomp,i) read(23) nb(i) read(23) mparm(1:nbf,i) enddo read(23) e1,e2 close(23) ! Calculate the parity relationship permutations allocate(tparm(nbf,0:nlev)) do i = 0,nlev-p+1-2 call parity(order(:,i),nb(i),mparm(:,i),tparm(:,i)) enddo ! Set transition levels alttns = vnode(nlev-2) altsym = vnode(nlev-1) altiso = vnode(nlev) ! Allocate the global store of quasi-static parameters maxo = max(maxs,maxm,maxl) omaxhwm = maxo nmaxhwm = maxn allocate(fs(0:maxs,2),fm(0:maxm,2),fl(0:maxl,2)) allocate(bz(nbf),bm(nbf)) allocate(zwght(0:p)) bz = 0.0d0 bm = 0.0d0 ! change the initialization flag and reset some other things previous(1:5) = -1.0d32 qwminit = .false. qwmdefault = filename return contains subroutine parity(order,nb,mparm,tparm) implicit none integer(4),intent(in) :: order(8) integer(4),intent(in) :: nb real(8),intent(inout) :: mparm(nb) real(8),intent(out) :: tparm(nb) integer(4) :: c,m,n,s,l integer(4) :: amaxs,amaxn integer(4) :: pmaxm,pmaxs,pmaxn integer(4) :: tmaxl,tmaxs,tmaxn amaxs = order(1) amaxn = order(2) pmaxm = order(3) pmaxs = order(4) pmaxn = order(5) tmaxl = order(6) tmaxs = order(7) tmaxn = order(8) c = 1 do n = 1,amaxn tparm(c) = 0.0 tparm(c+1) = -mparm(c+1) mparm(c+1) = 0.0 c = c + 2 enddo do s = 1,amaxs do n = 1,amaxn tparm(c) = 0.0 tparm(c+1) = 0.0 tparm(c+2) = -mparm(c+2) tparm(c+3) = -mparm(c+3) mparm(c+2) = 0.0 mparm(c+3) = 0.0 c = c + 4 enddo enddo do m = 1,pmaxm do n = m,pmaxn tparm(c) = mparm(c+2) tparm(c+1) = mparm(c+3) tparm(c+2) = -mparm(c) tparm(c+3) = -mparm(c+1) c = c + 4 enddo do s = 1,pmaxs do n = m,pmaxn tparm(c) = mparm(c+2) tparm(c+1) = mparm(c+3) tparm(c+2) = -mparm(c) tparm(c+3) = -mparm(c+1) tparm(c+4) = mparm(c+6) tparm(c+5) = mparm(c+7) tparm(c+6) = -mparm(c+4) tparm(c+7) = -mparm(c+5) c = c + 8 enddo enddo enddo do l = 1,tmaxl do n = l,tmaxn tparm(c) = mparm(c+2) tparm(c+1) = mparm(c+3) tparm(c+2) = -mparm(c) tparm(c+3) = -mparm(c+1) c = c + 4 enddo do s = 1,tmaxs do n = l,tmaxn tparm(c) = mparm(c+2) tparm(c+1) = mparm(c+3) tparm(c+2) = -mparm(c) tparm(c+3) = -mparm(c+1) tparm(c+4) = mparm(c+6) tparm(c+5) = mparm(c+7) tparm(c+6) = -mparm(c+4) tparm(c+7) = -mparm(c+5) c = c + 8 enddo enddo enddo return end subroutine parity end subroutine initqwm ! ------------------------------------------------------------ ! The quiet time only HWM function call ! ------------------------------------------------------------ subroutine hwmqt(IYD,SEC,ALT,GLAT,GLON,STL,F107A,F107,AP,W) use hwm use qwm use alf,only:alfbasis implicit none integer,intent(in) :: IYD real(4),intent(in) :: SEC,ALT,GLAT,GLON,STL,F107A,F107 real(4),intent(in) :: AP(2) real(4),intent(out) :: W(2) ! Local variables real(8) :: input(5) real(8) :: u,v real(8) :: cs,ss,cm,sm,cl,sl real(8) :: cmcs,smcs,cmss,smss real(8) :: clcs,slcs,clss,slss real(8) :: AA,BB,CC,DD real(8) :: vb,wb real(8) :: theta,sc integer(4) :: b,c,d,m,n,s,l integer(4) :: amaxs,amaxn integer(4) :: pmaxm,pmaxs,pmaxn integer(4) :: tmaxl,tmaxs,tmaxn logical :: refresh(5) real(8),parameter :: twoPi = 2.0d0*3.1415926535897932384626433832795d0 real(8),parameter :: deg2rad = twoPi/360.0d0 ! ==================================================================== ! Update VSH model terms based on any change in the input parameters ! ==================================================================== if (qwminit) call initqwm(qwmdefault) input(1) = dble(mod(IYD,1000)) input(2) = dble(sec) input(3) = dble(glon) input(4) = dble(glat) input(5) = dble(alt) refresh(1:5) = .false. ! Seasonal variations if (input(1) .ne. previous(1)) then AA = input(1)*twoPi/365.25d0 do s = 0,MAXS BB = dble(s)*AA fs(s,1) = dcos(BB) fs(s,2) = dsin(BB) enddo refresh(1:5) = .true. previous(1) = input(1) endif ! Hourly time changes, tidal variations if (input(2) .ne. previous(2) .or. input(3) .ne. previous(3)) then AA = mod(input(2)/3600.d0 + input(3)/15.d0 + 48.d0,24.d0) BB = AA*twoPi/24.d0 do l = 0,MAXL CC = dble(l)*BB fl(l,1) = dcos(CC) fl(l,2) = dsin(CC) enddo refresh(3) = .true. ! tides previous(2) = input(2) endif ! Longitudinal variations, stationary planetary waves if (input(3) .ne. previous(3)) then AA = input(3)*deg2rad do m = 0,MAXM BB = dble(m)*AA fm(m,1) = dcos(BB) fm(m,2) = dsin(BB) enddo refresh(2) = .true. ! stationary planetary waves previous(3) = input(3) endif ! Latitude theta = (90.0d0 - input(4))*deg2rad if (input(4) .ne. glatalf) then AA = (90.0d0 - input(4))*deg2rad ! theta = colatitude in radians call alfbasis(maxn,maxm,AA,gpbar,gvbar,gwbar) refresh(1:4) = .true. glatalf = input(4) previous(4) = input(4) endif ! Altitude if (input(5) .ne. previous(5)) then call vertwght(input(5),zwght,lev) previous(5) = input(5) endif ! ==================================================================== ! Calculate the VSH functions ! ==================================================================== u = 0.0d0 v = 0.0d0 do b = 0,p if (zwght(b) .eq. 0.d0) cycle d = b + lev if (priornb .ne. nb(d)) refresh(1:5) = .true. ! recalculate basis functions priornb = nb(d) if (.not. any(refresh)) then c = nb(d) if (component(0)) u = u + zwght(b)*dot_product(bz(1:c),mparm(1:c,d)) if (component(1)) v = v + zwght(b)*dot_product(bz(1:c),tparm(1:c,d)) cycle endif amaxs = order(1,d) amaxn = order(2,d) pmaxm = order(3,d) pmaxs = order(4,d) pmaxn = order(5,d) tmaxl = order(6,d) tmaxs = order(7,d) tmaxn = order(8,d) c = 1 ! ------------- Seasonal - Zonal average (m = 0) ---------------- if (refresh(1) .and. content(1)) then do n = 1,amaxn ! s = 0 bz(c) = -dsin(n*theta) ! bz(c+1) = dsin(n*theta) c = c + 2 enddo do s = 1,amaxs ! Seasonal variations cs = fs(s,1) ss = fs(s,2) do n = 1,amaxn sc = dsin(n*theta) bz(c) = -sc*cs ! Cr A bz(c+1) = sc*ss ! Ci B bz(c+2) = sc*cs bz(c+3) = -sc*ss c = c + 4 enddo enddo cseason = c else c = cseason endif ! ---------------- Stationary planetary waves -------------------- if (refresh(2) .and. content(2)) then do m = 1,pmaxm cm = fm(m,1)*wavefactor(m) sm = fm(m,2)*wavefactor(m) do n = m,pmaxn ! s = 0 vb = gvbar(n,m) wb = gwbar(n,m) bz(c) = -vb*cm ! Cr * (cm) * -vb A bz(c+1) = vb*sm ! Ci * (sm) * vb B bz(c+2) = -wb*sm ! Br * (sm) * -wb C bz(c+3) = -wb*cm ! Bi * (cm) * -wb D c = c + 4 enddo do s = 1,pmaxs cs = fs(s,1) ss = fs(s,2) do n = m,pmaxn vb = gvbar(n,m) wb = gwbar(n,m) bz(c) = -vb*cm*cs ! Crc * (cmcs) * -vb A bz(c+1) = vb*sm*cs ! Cic * (smcs) * vb B bz(c+2) = -wb*sm*cs ! Brc * (smcs) * -wb C bz(c+3) = -wb*cm*cs ! Bic * (cmcs) * -wb D bz(c+4) = -vb*cm*ss ! Crs * (cmss) * -vb E bz(c+5) = vb*sm*ss ! Cis * (smss) * vb F bz(c+6) = -wb*sm*ss ! Brs * (smss) * -wb G bz(c+7) = -wb*cm*ss ! Bis * (cmss) * -wb H c = c + 8 enddo enddo cwave = c enddo else c = cwave endif ! ---------------- Migrating Solar Tides --------------------- if (refresh(3) .and. content(3)) then do l = 1,tmaxl cl = fl(l,1)*tidefactor(l) sl = fl(l,2)*tidefactor(l) do n = l,tmaxn ! s = 0 vb = gvbar(n,l) wb = gwbar(n,l) bz(c) = -vb*cl ! Cr * (cl) * -vb bz(c+1) = vb*sl ! Ci * (sl) * vb bz(c+2) = -wb*sl ! Br * (sl) * -wb bz(c+3) = -wb*cl ! Bi * (cl) * -wb c = c + 4 enddo do s = 1,tmaxs cs = fs(s,1) ss = fs(s,2) do n = l,tmaxn vb = gvbar(n,l) wb = gwbar(n,l) bz(c) = -vb*cl*cs ! Crc * (clcs) * -vb bz(c+1) = vb*sl*cs ! Cic * (slcs) * vb bz(c+2) = -wb*sl*cs ! Brc * (slcs) * -wb bz(c+3) = -wb*cl*cs ! Bic * (clcs) * -wb bz(c+4) = -vb*cl*ss ! Crs * (clss) * -vb bz(c+5) = vb*sl*ss ! Cis * (slss) * vb bz(c+6) = -wb*sl*ss ! Brs * (slss) * -wb bz(c+7) = -wb*cl*ss ! Bis * (clss) * -wb c = c + 8 enddo enddo ctide = c enddo else c = ctide endif ! ---------------- Non-Migrating Solar Tides ------------------ ! TBD c = c - 1 ! ==================================================================== ! Calculate the wind components ! ==================================================================== if (component(0)) u = u + zwght(b)*dot_product(bz(1:c),mparm(1:c,d)) if (component(1)) v = v + zwght(b)*dot_product(bz(1:c),tparm(1:c,d)) enddo w(1) = sngl(v) w(2) = sngl(u) return end subroutine hwmqt subroutine vertwght(alt,wght,iz) use qwm implicit none real(8),intent(in) :: alt real(8),intent(out) :: wght(4) integer(4),intent(out) :: iz real(8) :: we(0:4) iz = findspan(nnode-p-1_4,p,alt,vnode) - p iz = min(iz,26) wght(1) = bspline(p,nnode,vnode,iz,alt) wght(2) = bspline(p,nnode,vnode,iz+1_4,alt) if (iz .le. 25) then wght(3) = bspline(p,nnode,vnode,iz+2_4,alt) wght(4) = bspline(p,nnode,vnode,iz+3_4,alt) return endif if (alt .gt. alttns) then we(0) = 0.0d0 we(1) = 0.0d0 we(2) = 0.0d0 we(3) = exp(-(alt - alttns)/H) we(4) = 1.0d0 else we(0) = bspline(p,nnode,vnode,iz+2_4,alt) we(1) = bspline(p,nnode,vnode,iz+3_4,alt) we(2) = bspline(p,nnode,vnode,iz+4_4,alt) we(3) = 0.0d0 we(4) = 0.0d0 endif wght(3) = dot_product(we,e1) wght(4) = dot_product(we,e2) return contains function bspline(p,m,V,i,u) implicit none real(8) :: bspline integer(4) :: p,m real(8) :: V(0:m) integer(4) :: i real(8) :: u real(8) :: N(0:p+1) real(8) :: Vleft,Vright real(8) :: saved,temp integer(4) :: j,k if ((i .eq. 0) .and. (u .eq. V(0))) then bspline = 1.d0 return endif if ((i .eq. (m-p-1)) .and. (u .eq. V(m))) then bspline = 1.d0 return endif if (u .lt. V(i) .or. u .ge. V(i+p+1)) then bspline = 0.d0 return endif N = 0.0d0 do j = 0,p if (u .ge. V(i+j) .and. u .lt. V(i+j+1)) then N(j) = 1.0d0 else N(j) = 0.0d0 endif enddo do k = 1,p if (N(0) .eq. 0.d0) then saved = 0.d0 else saved = ((u - V(i))*N(0))/(V(i+k) - V(i)) endif do j = 0,p-k Vleft = V(i+j+1) Vright = V(i+j+k+1) if (N(j+1) .eq. 0.d0) then N(j) = saved saved = 0.d0 else temp = N(j+1)/(Vright - Vleft) N(j) = saved + (Vright - u)*temp saved = (u - Vleft)*temp endif enddo enddo bspline = N(0) return end function bspline ! ===================================================== ! Function to locate the knot span ! ===================================================== integer(4) function findspan(n,p,u,V) implicit none integer(4),intent(in) :: n,p real(8),intent(in) :: u real(8),intent(in) :: V(0:n+1) integer(4) :: low,mid,high if (u .ge. V(n+1)) then findspan = n return endif low = p high = n+1 mid = (low + high)/2 do while (u .lt. V(mid) .or. u .ge. V(mid + 1)) if (u .lt. V(mid)) then high = mid else low = mid endif mid = (low + high)/2 end do findspan = mid return end function findspan end subroutine vertwght ! ################################################################################# ! Disturbance Wind Model Functions ! ################################################################################# subroutine initdwm(nmaxout,mmaxout) use hwm use dwm implicit none integer(4),intent(out) :: nmaxout, mmaxout call findandopen(dwmdefault,23) if (allocated(termarr)) deallocate(termarr,coeff) read(23) nterm, mmax, nmax allocate(termarr(0:2, 0:nterm-1)) read(23) termarr allocate(coeff(0:nterm-1)) read(23) coeff read(23) twidth close(23) if (allocated(termval)) deallocate(termval,dpbar,dvbar,dwbar,mltterms,vshterms) nvshterm = ( ((nmax+1)*(nmax+2) - (nmax-mmax)*(nmax-mmax+1))/2 - 1 ) * 4 - 2*nmax allocate(termval(0:1, 0:nterm-1)) allocate(dpbar(0:nmax,0:mmax),dvbar(0:nmax,0:mmax),dwbar(0:nmax,0:mmax)) allocate(mltterms(0:mmax,0:1)) allocate(vshterms(0:1, 0:nvshterm-1)) dpbar = 0 dvbar = 0 dwbar = 0 nmaxout = nmax mmaxout = mmax dwminit = .false. return end subroutine initdwm subroutine dwm07(IYD,SEC,ALT,GLAT,GLON,AP,DW) use hwm use dwm implicit none INTEGER,intent(in) :: IYD REAL(4),intent(in) :: SEC,ALT,GLAT,GLON REAL(4),intent(in) :: AP(2) REAL(4),intent(out) :: DW(2) real(4), save :: day, ut, mlat, mlon, mlt, kp real(4) :: mmpwind, mzpwind real(4), save :: f1e, f1n, f2e, f2n real(4), save :: glatlast=1.0e16, glonlast=1.0e16 real(4), save :: daylast=1.0e16, utlast=1.0e16, aplast=1.0e16 real(4), parameter :: talt=125.0 !, twidth=5.0 real(4), external :: ap2kp, mltcalc !CONVERT AP TO KP if (ap(2) .ne. aplast) then kp = ap2kp(ap(2)) endif !CONVERT GEO LAT/LON TO QD LAT/LON if ((glat .ne. glatlast) .or. (glon .ne. glonlast)) then call gd2qd(glat,glon,mlat,mlon,f1e,f1n,f2e,f2n) endif !COMPUTE QD MAGNETIC LOCAL TIME (LOW-PRECISION) day = real(mod(iyd,1000)) ut = sec / 3600.0 if ((day .ne. daylast) .or. (ut .ne. utlast) .or. & (glat .ne. glatlast) .or. (glon .ne. glonlast)) then mlt = mltcalc(mlat,mlon,day,ut) endif !RETRIEVE DWM WINDS call dwm07b(mlt, mlat, kp, mmpwind, mzpwind) !CONVERT TO GEOGRAPHIC COORDINATES dw(1) = f2n*mmpwind + f1n*mzpwind dw(2) = f2e*mmpwind + f1e*mzpwind !APPLY HEIGHT PROFILE dw = dw / (1 + exp(-(alt - talt)/twidth)) glatlast = glat glonlast = glon daylast = day utlast = ut aplast = ap(2) return end subroutine dwm07 subroutine dwm07b(mlt, mlat, kp, mmpwind, mzpwind) use hwm use dwm use alf,only:alfbasis implicit none real(4),intent(in) :: mlt !Magnetic local time (hours) real(4),intent(in) :: mlat !Magnetic latitude (degrees) real(4),intent(in) :: kp !3-hour Kp real(4),intent(out) :: mmpwind !Mer. disturbance wind (+north, QD coordinates) real(4),intent(out) :: mzpwind !Zon. disturbance wind (+east, QD coordinates) ! Local variables integer(4) :: iterm, ivshterm, n, m real(4) :: termvaltemp(0:1) real(4),save :: kpterms(0:2) real(4) :: latwgtterm real(4),save :: mltlast=1.e16, mlatlast=1.e16, kplast=1.e16 real(8) :: theta, phi, mphi real(4),external :: latwgt2 !LOAD MODEL PARAMETERS IF NECESSARY if (dwminit) call initdwm(nmaxdwm, mmaxdwm) !COMPUTE LATITUDE PART OF VSH TERMS if (mlat .ne. mlatlast) then theta = (90.d0 - dble(mlat))*dtor call alfbasis(nmax,mmax,theta,dpbar,dvbar,dwbar) endif !COMPUTE MLT PART OF VSH TERMS if (mlt .ne. mltlast) then phi = dble(mlt)*dtor*15.d0 do m = 0, mmax mphi = dble(m)*phi mltterms(m,0) = dcos(mphi) mltterms(m,1) = dsin(mphi) enddo endif !COMPUTE VSH TERMS if ((mlat .ne. mlatlast) .or. (mlt .ne. mltlast)) then ivshterm = 0 do n = 1, nmax vshterms(0,ivshterm) = -sngl(dvbar(n,0)*mltterms(0,0)) vshterms(0,ivshterm+1) = sngl(dwbar(n,0)*mltterms(0,0)) vshterms(1,ivshterm) = -vshterms(0,ivshterm+1) vshterms(1,ivshterm+1) = vshterms(0,ivshterm) ivshterm = ivshterm + 2 do m = 1, mmax if (m .gt. n) cycle vshterms(0,ivshterm) = -sngl(dvbar(n,m)*mltterms(m,0)) vshterms(0,ivshterm+1) = sngl(dvbar(n,m)*mltterms(m,1)) vshterms(0,ivshterm+2) = sngl(dwbar(n,m)*mltterms(m,1)) vshterms(0,ivshterm+3) = sngl(dwbar(n,m)*mltterms(m,0)) vshterms(1,ivshterm) = -vshterms(0,ivshterm+2) vshterms(1,ivshterm+1) = -vshterms(0,ivshterm+3) vshterms(1,ivshterm+2) = vshterms(0,ivshterm) vshterms(1,ivshterm+3) = vshterms(0,ivshterm+1) ivshterm = ivshterm + 4 enddo enddo endif !COMPUTE KP TERMS if (kp .ne. kplast) then call kpspl3(kp, kpterms) endif !COMPUTE LATITUDINAL WEIGHTING TERM latwgtterm = latwgt2(mlat, mlt, kp, twidth) !GENERATE COUPLED TERMS do iterm = 0, nterm-1 termvaltemp = (/1.0, 1.0/) if (termarr(0,iterm) .ne. 999) termvaltemp = termvaltemp * vshterms(0:1,termarr(0,iterm)) if (termarr(1,iterm) .ne. 999) termvaltemp = termvaltemp * kpterms(termarr(1,iterm)) if (termarr(2,iterm) .ne. 999) termvaltemp = termvaltemp * latwgtterm termval(0:1,iterm) = termvaltemp(0:1) enddo !APPLY COEFFICIENTS mmpwind = dot_product(coeff, termval(0,0:nterm-1)) mzpwind = dot_product(coeff, termval(1,0:nterm-1)) mlatlast = mlat mltlast = mlt kplast = kp return end subroutine dwm07b !================================================================================= ! Convert Ap to Kp !================================================================================= function ap2kp(ap0) real(4), parameter :: apgrid(0:27) = (/0.,2.,3.,4.,5.,6.,7.,9.,12.,15.,18., & 22.,27.,32.,39.,48.,56.,67.,80.,94., & 111.,132.,154.,179.,207.,236.,300.,400./) real(4), parameter :: kpgrid(0:27) = (/0.,1.,2.,3.,4.,5.,6.,7.,8.,9.,10.,11., & 12.,13.,14.,15.,16.,17.,18.,19.,20.,21., & 22.,23.,24.,25.,26.,27./) / 3.0 real(4) :: ap0, ap, ap2kp integer(4) :: i ap = ap0 if (ap .lt. 0) ap = 0 if (ap .gt. 400) ap = 400 i = 1 do while (ap .gt. apgrid(i)) i = i + 1 end do if (ap .eq. apgrid(i)) then ap2kp = kpgrid(i) else ap2kp = kpgrid(i-1) + (ap - apgrid(i-1)) / (3.0 * (apgrid(i) - apgrid(i-1))) end if return end function ap2kp ! ######################################################################## ! Geographic <=> Geomagnetic Coordinate Transformations ! ! Converts geodetic coordinates to Quasi-Dipole coordinates (Richmond, J. Geomag. ! Geoelec., 1995, p. 191), using a spherical harmonic representation. ! ! ######################################################################## module gd2qdc implicit none integer(4) :: nterm, nmax, mmax !Spherical harmonic expansion parameters real(8), allocatable :: coeff(:,:) !Coefficients for spherical harmonic expansion real(8), allocatable :: xcoeff(:) !Coefficients for x coordinate real(8), allocatable :: ycoeff(:) !Coefficients for y coordinate real(8), allocatable :: zcoeff(:) !Coefficients for z coordinate real(8), allocatable :: sh(:) !Array to hold spherical harmonic functions real(8), allocatable :: shgradtheta(:) !Array to hold spherical harmonic gradients real(8), allocatable :: shgradphi(:) !Array to hold spherical harmonic gradients real(8), allocatable :: normadj(:) !Adjustment to VSH normalization factor real(4) :: epoch, alt real(8), parameter :: pi = 3.1415926535897932d0 real(8), parameter :: dtor = pi/180.0d0 real(8), parameter :: sineps = 0.39781868d0 logical :: gd2qdinit = .true. contains subroutine initgd2qd() use hwm implicit none character(128), parameter :: datafile='gd2qd.dat' integer(4) :: iterm, n integer(4) :: j call findandopen(datafile,23) read(23) nmax, mmax, nterm, epoch, alt if (allocated(coeff)) then deallocate(coeff,xcoeff,ycoeff,zcoeff,sh,shgradtheta,shgradphi,normadj) endif allocate( coeff(0:nterm-1, 0:2) ) read(23) coeff close(23) allocate( xcoeff(0:nterm-1) ) allocate( ycoeff(0:nterm-1) ) allocate( zcoeff(0:nterm-1) ) allocate( sh(0:nterm-1) ) allocate( shgradtheta(0:nterm-1) ) allocate( shgradphi(0:nterm-1) ) allocate( normadj(0:nmax) ) do iterm = 0, nterm-1 xcoeff(iterm) = coeff(iterm,0) ycoeff(iterm) = coeff(iterm,1) zcoeff(iterm) = coeff(iterm,2) enddo do n = 0, nmax normadj(n) = dsqrt(dble(n*(n+1))) end do nmaxqdc = nmax mmaxqdc = mmax gd2qdinit = .false. return end subroutine initgd2qd end module gd2qdc subroutine gd2qd(glatin,glon,qlat,qlon,f1e,f1n,f2e,f2n) use hwm use gd2qdc use alf implicit none real(4), intent(in) :: glatin, glon real(4), intent(out) :: qlat, qlon real(4), intent(out) :: f1e, f1n, f2e, f2n integer(4) :: n, m, i real(8) :: glat, theta, phi real(8) :: mphi, cosmphi, sinmphi real(8) :: x, y, z real(8) :: cosqlat, cosqlon, sinqlon real(8) :: xgradtheta, ygradtheta, zgradtheta real(8) :: xgradphi, ygradphi, zgradphi real(8) :: qlonrad if (gd2qdinit) call initgd2qd() glat = dble(glatin) if (glat .ne. glatalf) then theta = (90.d0 - glat) * dtor call alfbasis(nmax,mmax,theta,gpbar,gvbar,gwbar) glatalf = glat endif phi = dble(glon) * dtor i = 0 do n = 0, nmax sh(i) = gpbar(n,0) shgradtheta(i) = gvbar(n,0) * normadj(n) shgradphi(i) = 0 i = i + 1 enddo do m = 1, mmax mphi = dble(m) * phi cosmphi = dcos(mphi) sinmphi = dsin(mphi) do n = m, nmax sh(i) = gpbar(n,m) * cosmphi sh(i+1) = gpbar(n,m) * sinmphi shgradtheta(i) = gvbar(n,m) * normadj(n) * cosmphi shgradtheta(i+1) = gvbar(n,m) * normadj(n) * sinmphi shgradphi(i) = -gwbar(n,m) * normadj(n) * sinmphi shgradphi(i+1) = gwbar(n,m) * normadj(n) * cosmphi i = i + 2 enddo enddo x = dot_product(sh, xcoeff) y = dot_product(sh, ycoeff) z = dot_product(sh, zcoeff) qlonrad = datan2(y,x) cosqlon = dcos(qlonrad) sinqlon = dsin(qlonrad) cosqlat = x*cosqlon + y*sinqlon qlat = sngl(datan2(z,cosqlat) / dtor) qlon = sngl(qlonrad / dtor) xgradtheta = dot_product(shgradtheta, xcoeff) ygradtheta = dot_product(shgradtheta, ycoeff) zgradtheta = dot_product(shgradtheta, zcoeff) xgradphi = dot_product(shgradphi, xcoeff) ygradphi = dot_product(shgradphi, ycoeff) zgradphi = dot_product(shgradphi, zcoeff) f1e = sngl(-zgradtheta*cosqlat + (xgradtheta*cosqlon + ygradtheta*sinqlon)*z ) f1n = sngl(-zgradphi*cosqlat + (xgradphi*cosqlon + ygradphi*sinqlon)*z ) f2e = sngl( ygradtheta*cosqlon - xgradtheta*sinqlon ) f2n = sngl( ygradphi*cosqlon - xgradphi*sinqlon ) return end subroutine gd2qd !================================================================================== ! (Function) Calculate Magnetic Local Time !================================================================================== function mltcalc(qlat,qlon,day,ut) use hwm use gd2qdc use alf implicit none real(4), intent(in) :: qlat, qlon, day, ut real(4) :: mltcalc integer(4) :: n, m, i real(8) :: asunglat, asunglon, asunqlon real(8) :: glat, theta, phi real(8) :: mphi, cosmphi, sinmphi real(8) :: x, y real(8) :: cosqlat, cosqlon, sinqlon real(8) :: qlonrad if (gd2qdinit) call initgd2qd() !COMPUTE GEOGRAPHIC COORDINATES OF ANTI-SUNWARD DIRECTION (LOW PRECISION) asunglat = -asin(sin((dble(day)+dble(ut)/24.0d0-80.0d0)*dtor) * sineps) / dtor asunglon = -ut * 15.d0 !COMPUTE MAGNETIC COORDINATES OF ANTI-SUNWARD DIRECTION theta = (90.d0 - asunglat) * dtor call alfbasis(nmax,mmax,theta,spbar,svbar,swbar) phi = asunglon * dtor i = 0 do n = 0, nmax sh(i) = spbar(n,0) i = i + 1 enddo do m = 1, mmax mphi = dble(m) * phi cosmphi = dcos(mphi) sinmphi = dsin(mphi) do n = m, nmax sh(i) = spbar(n,m) * cosmphi sh(i+1) = spbar(n,m) * sinmphi i = i + 2 enddo enddo x = dot_product(sh, xcoeff) y = dot_product(sh, ycoeff) asunqlon = sngl(datan2(y,x) / dtor) !COMPUTE MLT mltcalc = (qlon - asunqlon) / 15.0 return end function mltcalc !================================================================================ ! Cubic Spline interpolation of Kp !================================================================================ subroutine kpspl3(kp, kpterms) implicit none real(4), intent(in) :: kp real(4), intent(out) :: kpterms(0:2) integer(4) :: i, j real(4) :: x, kpspl(0:6) real(4), parameter :: node(0:7)=(/-10., -8., 0., 2., 5., 8., 18., 20./) x = max(kp, 0.0) x = min(x, 8.0) kpterms(0:2) = 0.0 do i = 0, 6 kpspl(i) = 0.0 if ((x .ge. node(i)) .and. (x .lt. node(i+1))) kpspl(i) = 1.0 enddo do j = 2,3 do i = 0, 8-j-1 kpspl(i) = kpspl(i) * (x - node(i)) / (node(i+j-1) - node(i)) & + kpspl(i+1) * (node(i+j) - x) / (node(i+j) - node(i+1)) enddo enddo kpterms(0) = kpspl(0) + kpspl(1) kpterms(1) = kpspl(2) kpterms(2) = kpspl(3) + kpspl(4) return end subroutine kpspl3 !================================================================================ ! (Function) Latitude weighting factors !================================================================================ function latwgt2(mlat, mlt, kp0, twidth) implicit none real(4) :: latwgt2 real(4) :: mlat, mlt, kp0, kp, twidth real(4) :: mltrad, sinmlt, cosmlt, tlat real(4), parameter :: coeff(0:5) = (/ 65.7633, -4.60256, -3.53915, & -1.99971, -0.752193, 0.972388 /) real(4), parameter :: pi=3.141592653590 real(4), parameter :: dtor=pi/180.d0 mltrad = mlt * 15.0 * dtor sinmlt = sin(mltrad) cosmlt = cos(mltrad) kp = max(kp0, 0.0) kp = min(kp, 8.0) tlat = coeff(0) + coeff(1)*cosmlt + coeff(2)*sinmlt + & kp*(coeff(3) + coeff(4)*cosmlt + coeff(5)*sinmlt) latwgt2 = 1.0 / ( 1 + exp(-(abs(mlat)-tlat)/twidth) ) return end function latwgt2 ! ======================================================================== ! Utility to find and open the supporting data files ! ======================================================================== subroutine findandopen(datafile,unitid) implicit none character(128) :: datafile integer :: unitid character(128) :: hwmpath logical :: havefile integer :: i i = index(datafile,'bin') if (i .eq. 0) then inquire(file=trim(datafile),exist=havefile) if (havefile) open(unit=unitid,file=trim(datafile),status='old',form='unformatted') if (.not. havefile) then call get_environment_variable('HWMPATH',hwmpath) inquire(file=trim(hwmpath)//'/'//trim(datafile),exist=havefile) if (havefile) open(unit=unitid, & file=trim(hwmpath)//'/'//trim(datafile),status='old',form='unformatted') endif if (.not. havefile) then inquire(file='../Meta/'//trim(datafile),exist=havefile) if (havefile) open(unit=unitid, & file='../Meta/'//trim(datafile),status='old',form='unformatted') endif else inquire(file=trim(datafile),exist=havefile) if (havefile) open(unit=unitid,file=trim(datafile),status='old',access='stream') if (.not. havefile) then call get_environment_variable('HWMPATH',hwmpath) inquire(file=trim(hwmpath)//'/'//trim(datafile),exist=havefile) if (havefile) open(unit=unitid, & file=trim(hwmpath)//'/'//trim(datafile),status='old',access='stream') endif if (.not. havefile) then inquire(file='../Meta/'//trim(datafile),exist=havefile) if (havefile) open(unit=unitid, & file='../Meta/'//trim(datafile),status='old',access='stream') endif endif if (havefile) then return else print *,"Can not find file ",trim(datafile) stop endif end subroutine findandopen fluids-1.0.22/fluids/optional/hwm123114.bin0000644000175000017500000057211014302004506017464 0ustar nileshnilesh  !@$@.@4@9@>@€A@D@€F@I@€K@N@@P@€Q@ÀR@T@@U@€V@ÀW@Y@@Z@€[@`]@@`@€a@`c@@e@i@@o@àu@àu@àu@àu@ ¬Nr)Ãâ?Að>{Ó¿c—Y ò?¦Î>×Î?ö¥À+ÀºŠ¡bH‹×?A@06Ää?³ÂÂ@^ßà¿P«pø?ïU3’O¶Û¿Ð|0¥|Sõ¿ëñ8µwð?0ÀW{å@}Ú¸øøz? 7*Q=~ç¿0v«¨¸¿øÂSÃÂÉ?óâçcÍ¿¾o®sbç?Ó™],ĞݿïxVýê׿¤8¤ç†Ç?t¬10e°?"*"çµÁ¿›qýaж¡¿sÎÔY»¿¯ü„ÒËå¿C9t…xÚ?ô]£ÆáÃÙ¿ÕpZ6Ÿù´?¹ì½6W¿ kï7ÑqÊ¿6é¯VæÎÇ?ð‚ŠnÖgο=ó”©Ü?„‹ÄA2éÕ¿lRU‡ˆzá?‘ê1äÙ¿m’¦VkÆÂ?˜Ëܯ/Ñ¿Ê~'ñ¼ÞÁ?ÀS°…Š+¿²ùÈÓ¬¢Ã¿ßÍerã¢Ò?ŸS¾Ûñ¿¢à¡´î?e)@C0íÑ¿³Biç]Ã?™¹Œ÷Í¿:½Hy”?D=Ù•–’¿°C±Zžgª¿üç¢è¿¿ ¸Ä`¤BÂ?¬~DôŸ;«¿åÚ,?L½?œµœ8›?p™ëÞÀ¿  ¯}¼}?ÉpQ9£?úQíM×X¹¿ÂLªp®ž†¿r½h'²?躇Hܧ?Eõm‚<Ñ?ßdòBÈ?Tz¸$k0Ž?@/z"‹¿²«ÿªœ¹¿Äò"j·u¿V ùÒg©¿¾b7©\ݹ?W)e䇯¿qÐy0KÓ?*H£ìþ©?Œ2%%Ç[¸?LÉ~•—¹¿Ý©4G¨¼? ³79Ä¿{p |úš¿S:R+îË?Ôbm• ·?YÝæèH×ì¿[söïMòç¿!ŸØ¹†é?oŠ™ãjÐì¿ã,_Ý4{Ü?ctê{DÓ¿ŽSBŠÅ¦?ˆÊ>pÞ¿wM¿™·\¾?üË£ØÒ?¶a^Ïô’Ú¿)ÍŸjµˆá?ìn‘R´qÄ¿0ͺêb<|¿ö÷nßrÌ¿  óüç?!¡û¶?©?sFÁ6¶? 0 mŠÒ?âØj{ñª¿ë@§sLÜ×?ˆs‹€eÇ?J‚–)4~ï?”Ñ„•Jï¿óÐBÛ'–?9¢„„åæ²?xC5‰Ä¿’pÆ…zä?iÿ ¨X¯?GIÒr ë¿‘´6²ëÝ¿CwcÔ®À?šäG©®¹¿|Îê|0Ö?ú¼*V·í¨¿|Ö=®¯?BC¯X&k²?N@ø……“£?B˜G|ÃÌ¿Ã}è… ›Ñ?ªkúD³?£¼¿À—æ?B¹¸›lÚÏ?s°¡€ÐÄ¿š"ba€¿¿FŸRc8¾Ã?|È âEÅ¿ BÕ#ç?N˜ÛV­Ø?¡i*Äò°Ï?î[ù»êÔÿhXS‚à÷Á¿M`ŶϷ?¨r+³ý¿x©ïy½È?¶ÕÊhlWÏ?–¦^fù¼? Á‡ÕÌ`Ò¿–8I´¿¤ò }Ó?Û}«¯û­Ö¿¾ªNõÄ?áz(ÉÇ?PÊéŠã¿²EÄó?“×?8K¡}ŸÄ¿te±`S ?É»¼»«Ô¿ú…z¹I¦„?ÃuøT9¬¿7`;7AµÎ?Í9–5Ò¿Ù!쨦¿s˜š¶ƒÂ?À ùiž»?¼ø¼¨¼Å¿1gœhƒÑ?n°÷ÄHš¶¿FªÙžIÔ?ÕÞÌ&ÚHé?º´ŠƒŸ?ZeBm°?‹­õsã-ß?9F 5Ô{Ô?¢Çr‚g¦¿¥ ÄÚ¿·ÉúþÓ×?¡£? Ö´¿k6ɬNbÊ¿âÞøÉ?1s3ùFÿô²6w³‘€?’|„›8ñµ¿‰Àcw¶?®à3‡ÖØÁ¿ÁQæO)’?§xv]}뮿ÊEf¦ÙêÊ¿bÛ_Eoˆ¿\pâê´?»ákø ÿ6–¤Ÿ€£?ÿ£w‰\=¬¿ëЉÃJï©?)¢1,< ?´p²K”,¿¶3›Ø–²¿ôγHÊ¿lÞ+üʦ?$=,ì첿ñ´ª’û'²¿ßEÁ”ùþ­?ƒE$XÙÀ?kêFœB´¿ ûÙÑë ¥¿ÞáG:¾?‰rÉ>Ù’§¿kó;ò!’¿(IÑžåÃ?1–Ö6žœž¿„äÀ[‰—¿`¢*†ß§¡¿Çà…‡Ø¯?€޲øCÂ?wÓã2„D¿?©MÍT¥Ê¿%µMÒ??ŸCG(Ç? Š–¼?}Æ[ .<Ê¿É"Ð">­¿È#C3ªµ?R…ʆcŒÂ? ƒj±´  ¿aªCq€È?T)>ÌèÁ?`Ÿý…C»¿[d¡-í¸?gj¤H7Ö?pʵµ…´‘?U'ÛÛR ?¤ç}÷µ¿hk|Fj½?%`¯M® Ñ¿ºCÙm-=¥?ÊäÔÕ㦬¿ï­šùk®?ó¡ïp$œ¿.uP> ®?~ºÚÔ]¿0åqÍkض¿úa|*.“¿®‚üÁ¢?x‰z.žœ¼¿¬ ۗμ¿ uÃ7囿“0K´Á?@§„¸‚¶º?î%ö÷Í?ÅD’X”¶Ô¿ƒÕ¢÷8wÃ?ð¤éÏíKà?”¬ûÝÕ¿héæ_±?³LšŠ)©Ð¿"² "Ÿ?*Þ9MT׿ȠFã-Ê¿ª^D»º¿6æʈ½¿éf͈dÊ×?·é¼?²5•ȳ©ß?p u¸†?ÖÚ?TÒë?sõ«'Cæ?6—8öC°À?ö2`7ܪ?òJ#„åýÎ?^±¬ç]#Á?¸„Axð׋?Ü’ï‚1ã—¿K“/çE®â¿ZFŒÿûmο!+êSƒ´¿ £vÇ,@Ì¿)7ßi`ÀÎ?[ ôy–Æ?ƒw­ŠëäÕ?†=ܽ¿Ö­A’Šqº?5À£K³?ʼ–ž•Œ€?L[ ­ò¿¿wÚTµpé?·oµ%ñÌ?§¬£=Ñ8Ý?ìg²L Ó¿ê6Á:–Á?ª+ýìéÓ¿ÇV `w•?;LÝŠC ¥¿M¾ ã?<²³7$Ï¿¹w®ÀVçÒ?[_ÀyοŒqÖŒÛ!Ï?œÅpø%µ?ZÃ/þ]»?E#v:C1Ê¿É)­ÊË!±?J0$ô•Ñ¿$H**ÅÑ?/¾- ¹–Ñ¿íTGz&sÄ?܆xs-ÓË?0ÐÈëô1Ç¿¢ÁÞÒôl±?ð´à ®Ö¿0u´™¦?`é3|¢c¿®÷4ìÑš?SqÎß¿èÓ?¦2|ΖNº?T&´©Ú¿ãÂÏ!ܘ±¿RÖø¥^Á¿–T(C„p¾?ÂND?Áº¿0'h»œ¦¿ð––ZD©?ÉÈ„•ï´?u\]&ƒzÜ?‘'Öæû_°¿*œò›dµÁ¿Zò[^Ö?~" =XCª?†C ‘ 4½?Äy¨†Ø'„?N ;Œö±¿Zq¦ö‚ ?ÒÖNÞtaÆ¿ZVc`ÿ²?Ôî7;¸«?/PÇæǪ?š°%e¥ÌÁ¿8O“¾÷–¿,Úµµâ¼¿k”w^\‚°?¶ a(N±À¿x’ÀRQÿ?Јÿc§uq?Ñ%¸­÷>³?Ô±™›{\º?'n»½x¡?¶ˆ%_G¸¿\!¿.Öñ ? sÕìT‰¶¿’bN¢LÓ¯?rNÜj‰°¿Êy©ž7…?²[¶êºJ®¿%)ãfÌ¿ðR‚Õ°¿fû/À–ÿó;†®ìž¿ýìa¨?%ôW¶7¦»?›š4~ùÆÆ¿©_ Œ„º¿:¤æ;´Ç?ŸæXؘ"±?DÝMöwV·?PçB76Ê?WZ÷Ç¿ÀÆZ°?}P»F᯵¿ “Ÿ†±“¿¿¡ƒ07ȸ¿Õy›ðù¢?F~îÁ'$À¿=×ZW±°?uîäÁ?yüÊ×û­´¿«ûdbímµ¿jceœ?=êt­?þôëKõš¿6ÁÚ!f»?ç³»dN@«¿,^ 'rÁ¿_ú Ú„…?@T÷ÃóÊ?:ÝZåÄ\›?Á4ÎËã6È¿hòŸe ½x?„鲚µÑ¿¸ À‚ÄÊ?5MÁ†ï¾?ëý‰àâWÃ?¢3m(º?®4c¬Š?œûš{!¾?Wp Õ@V ¿ÓƒœÍ`¶¿‰¿ó¯‡È?“yŠš¿ÎxY`q¦Ã¿Ô&ËÌÕÆ¿ËØÓ·‡Š¨?,ýÂ\Nd?¹tºy#èÁ?´œÔ~Ʊ]¿7ïH¬Z©?N !±õÉ?àÃ/‡z+¿nõ‘¤›ˆ±?odbT4‹¢¿r' ã¡Ä¿ õDŽŬ¿ÖTùÇjÔ£?ß”*®v0¸¿8æŸ#Îa©¿JfšT޲©¿T6õÉ;¢?DBZ)ǰ¿¦k îD¯¿a}“» »£¿Œ§!r˜bÀ¿Ú­¯¡ÛEĿܞ1Uüÿ¨¿$E—X¬Ý¿#ÊãÁ2 ›¿iÑ:ÿ¿¶¿5"[Y/êž?ਞ-ؽ]¿±¿aŸa›¿lYŒÃÔ’?`8~<þX?Vh¼K¾©?Xl”¦¨ø‡¿‚Ê„ËÀuµ?æL¤è~þÀ?ƒæÁÜĹ¿J(¸ÿ¹ ¿?„ÓLr÷M¼?°|왳p°¿"©[~«P­?ÇQqsÏ™È?–xdÛ)¡¿Ö€X^4ͳ?š…ñ [b‚?@b /£³¿nä\ìÛ!»?í™|ƒÝ¬¿9c ´˜÷­¿`˜NÚºt?–µ³ÏvÅ?”ÁeLÙ¯?4‘±zµµ¿½CÑý®?3=G"wŸ?2©cºqÂ?aÐ[K×¼?²^†|9œ?­ç¸×þ2Ê¿TLáêu¾?kÒ…æ³Â?™&6ðHI°?l×£Ô@¼?ð×M)Dg•¿Ì«ÖìÅø¥?ƒFè5'k¹?œìæúB¼¿…×âÁ)1É¿š½oKùó›?·H˺¨”?6§Uƒ[«Š?ä²ËÖ²£¾¿À›ép¨¿É4Í…´·?lÞ­žÞ1p¿’;/Ž-½?ËÁ?‡¡.Ë?_?6xÄÿ¯¿Ò¹ôºz~£?ú¨¤:Q¡¿2(ðêÝõŸ?®ïVÕÁÁÄ? Uºþ˜ª?jxÁ,40ο0¼þQšËÆ?„"oŽ¿o¿wø|\‘?ü >=´?bÄZØ«?qâðC ñª¿=a§Ê¥`À¿FÐê*Â'µ?2¨F kޱ?Š­²Á쿃¿ ¹è,ˆÕ¥?> Ç`R²¿B$ïuµ#Â?ºƒöˆO¨¿| µÉ|¿ÏW—;Æ?³‘ŽÓ¹¿ÎÛ>°À?ؼñ'Îm¿Ñv´>K˜?&Ò“•ÁL˜?f'ˆ?U{ÎÏ©I¢?«Ë ¾"©?rúØa«½Ê?y¢Ò±Óµ?`¼m}¿êÏòø»Ä¿wáÊârs?ôºÔ‹û¿$¹ñ0߯?ZZ_`/£ ?&ƒz믘¿ÉÂü©Q?B&ÔÕÎ £?©PÀt·?t÷"òhÊ´¿Ð0!ÓìÞ³?åt'ºnjŒ¿æQng’oÿ0˜@uâ9Ë?ºåìZ¿?«.Ä"Í¿V_žÛoI•?ƸÿK¾f´¿l‹˺¥»?6ÊŒêîxÈ?‚+­"sÀ?ü³ñÄ™¿¹bt H^µ¿@ø|zlÕ©?Pæ¿GÞ¾?xâ:w™oµ¿§q"Ÿ,ð¾?Qr9,C‰¿µÂ[x°@®¿H=~òì¹Ä?%¡({5¢¼?Êã*Ÿè`·¿;]d1«¡?¨›ÁPÑ(µ? ”T")v³¿J©)©R°?›—3ï:ƒ?–ÁV.AK©? _ä‹™=ÿÞù†o: ÿt¥uÛ”:Ú¿[4cïð°?òω¯å«?@öÛB<õ¹?û)r'9Ÿ?ç…÷Õ¿›OîJîù¼¿0hý¹9º¿x 18¿?u-†º›Á?y|R?»¿xS¶AeÏ¿€‰¯Q`·¿í‘p3[´?p|`\¿ yÖ Ü·?䤞ù»¸¿‘ï®ÍôÊ¿à9“!i÷…¿Rô`è,m·?Fø=œ?’lSи¯?~’H:"¡?ôuÒ»ð}¸?ÝÄ!Ûž¿ØøŠ ŠÑ¿¦«¿+·AÁ¿2–:Kº¹¿žgu^j•¿ö¶)ú^|·?ñ9öXì ¿)ý¦rö¬¿yŒÎꪛµ¿âȯs¹­¿™öÂfçË¿ˆ„ªŠCfª¿ö#®›´Žµ?ìI3²ÓÈ¿ôM›€vD¥? ¡-û?"µ?àÞ)Ô Œ?Ñc!Z'À¿2ñÙeøQÉ¿ÄEF¤¿¾ã©F)¡?.q¥¡o Ì?~¬K]¼Â¿¥"âÏ$ˆ¼¿ß¿'%õÌ¿C£Ð¼·.®?ºúåy¿b–”:šdÁ¿&‡w…§¿³ð£cÚŠ°?êeI'Oô¯? »Içm¿?ÂàÎÕ‘¸?×3´>–¿=íòæÞº?ïóÌÕšñœ¿ÖˆE3‰º¿ìO¢)õÀ¬¿ûƒ ä°¿‚ê Yœª¿J’‹'/ü±¿äÊõ¶?f•[’ï±?X'!(ȶu?|ã@´ÉÄ¿o4ƒX³ê?Œƒ+Ìí¾¿$â]|⣿ ¹N~"©?¨„[[ÚãÊ¿D—v¨lœ?Ú†üwQaÄ¿wE:çœÖÉ?'†E®p¡¿@öBEµ?ë³ùiJ»·¿¸¦›c'Š?—(§›±¿|¯„F‘¿ßÖ[fß὿—F- ¥¿uê­Ý¡¿âŠÌ&•?–Wú¸(Ê?°ÒIí*–©?)ÞyqG†©?ïý‚8¹¿ˆ+ƒMyý»?áïR‡O?Æ?›vÓ7÷œ¿Äº!òÚg¶?¬pWH2É?tBÚ’Q5¦¿îùÿº>¬µ?ÄÝbž&ÿÅ¿i×q·EfÍ¿b&ï°éE—¿„Öw7bG‰?ß í Š¿¸ò‘-©?‡OIV}°?BT¯ý•¡?b\Íp—Z¨?8¬`–2R©?+ñ^¸?UnD9QÂ?‰Àá ¹?@5è[Õ°?!†§Ã…?ÛÀ%ì’?Ó·$üñ³?­ÐhA¿?‹ÕÏ{þ”?¾¿ØžÙ½?:Grf`¿ª¶+œ¥å“?¬èzðî¼?ô|6P~|¿œH©oÄ?ÐVšî‚¸Æ?+@a$ ÖË¿2ÒUo=¶Æ?ÀÊïΦ­?×”ª2Æ®¿N¹ù³½²¿Ä;”Øv®É¿z­;¸1¢?G_2 Ø·¿Æ ”e¿n[Õ›³?j5±TT˜?éÊ–ÈQ³¿,4Y…-À¿5b™n–ܦ¿#Çœ”j±¿”n® lŽ? oÁò†˜?ÇènýÖ¥?¦™ Ú•ðÁ?´{Ƕ ذ¿¤býÓ/¨¿J•ÙY¢³¿iDnÏà”¿àÜ:£”?°þ.ò £¦?øŽÝÏY6¿R—Q×b?Y¥Gý­´¿í»¦:׺¿añ¿NÃVµÔÿÿ†ÿªtp´?€8Rw½¿’„<ë?¸M ¸’ov¿)Ió¸¿ÆÉïwD±¿…9Âл?ùy3¦²?ó†›ç[£¿ôûŒs£¿³ø¼Ú±¿ÀpÏtóŽX¿öÆÑ8ž+Å?o×2À†¶¿ ®‡HÚ§¿’˜Õ:[ºÅ?jKÙq5‡¿Ðö»&]¿?ªÛ„y™?„s5]°àÀ¿‡É¶æÛƬ?GWU.,‘¿üò#À' ƒ?¢£âæz„¹¿°·V®Ä­¿vô€†µ…?HÔd{hЦ¿Œ€É±±½°¿bT¦/#?3'o+#«¿|tJ˜¼ÒÅ¿T°ò>“e¿Ã¤»ÕC¨Æ?r1^AÃ?4榆¿ÌQÐ5Yq–?~:°œ¥Ô´¿&7¹\x÷µ?ãøçƒK²¿pRäCs>{¿gÅÐ`’¨›¿h‡¤îF«„¿hÐÕZ®fz?¤OчpêÀ¿Óu ô½‘?t_§F<—¿ˆ{É'Y·¿ŽÏ]„¢™?ùCùÐù­?§ƒ3œ¢»ª?ÆÁØ Íô»¿®$®@"¤¿ð÷Ýd¦Nµ?6 ‚Åž?GÈó,~´¿bv@›*•?üsÊ…¼ˆ“¿·>lKÚ¸?Ü—ÇŽ“¿’LFVÈü?ÈxáëB‰?ÒÍÉ-Èò£?ž7÷:¡¿jø Ô ?¶‡ l÷™¿%µÑ»O°§?þ ÍI›°ž¿PÙµ§7¬¿L»¸Mÿr”?æ¤18#Ÿ?âO#øiL¾?…ùÉ  À?Z>W„Jðµ?é%~ÿWÁ?Éwv2¾?ÝÌéE–¿ijæûò\¿ãý¤Tο?/¢×7€­¥¿†­å¥°¿"æG¼²·¿üòRé…ò¾¿nå¹Uœ§?2£ÜôPA°?·µüŒ0£?À—s Ì?,f+¡ \®?M­â4VÈ¿ä¹ÎXñL®¿Cà ȶ¶?ò.a×°?+åWNÄ¿*Òݽgm³¿àw–(ÜÅŒ¿èY©šrd¿8QugÉ2É?2×ì=¾¿P-¹H¹?¢n‘NÝüÁ?`Óóá'm}?›Â›—$z²¿dÅa˜ ¦¶?õËf¹§í¬? ‰fâ}.ÇÀåub¢iŽ?×aĆ‘;ù?: 3墟µ?fê …ÈÀz#™ÐœõÑ¿ IÜͳ>´?ð7UM¹3¸?¸uü A÷@l`‚®w]»¿ÕæÀÀtý÷CX&¾¿Ü ËzÉ$@#ˆdöÊ¿ŒMÚâô¿Ð]ã­§¿KÝl›ž Á?B37‹Ð¿â¾«ÌØ?~µ F¾y§?š1XVé¿ m¬Í^yâ?¿^Ñ!Rèß¿ UìbÒ?nÜ¢ÿ‡ïοád†ü‡×¿pɉñ «?*å1yÀ°¿:Ôc€ùÔ¿›½ïsÃà¿:0ö僚ڿt ÚõΧÎ?—€Ç'X”Ü?<âcÿùö­¿”<À–nýÐ?âÚî¢:¿úÀJÅÀ­?ÔGÞUIÑ?-@ôtûv±?pæ?áÐ?†¦®¥ø×?m@Óâ2kÞ?tÛž°7ò™¿ÓŠÙÎûñ»?„˜6O¯ú¿™A8W³ö?8ýá¸!Ó?ü`eÙ0òu?O ô »¿™f‹ßKãÆ?lmFeO ¿¶tæë¾½?Ȭø³³¿òA½%TI³¿*†)pù«¿¼BR|â7Š?¢ñt®h<×?BNiAܶ¿’©cŒ¹º¿….½Þq1Ä?EÎ?—kÕ¿{V÷Yå£Ð¿ÐÕvœÐ’?ÀtUÛÏ‚¿nSŠWÙ?•ÈLN’ Ü?mzúz=Á?8h¥N¿?pÝUWC²¾?ôìàn»Û?Òçr Á?c˜Ïh0©?·…rѪ,°¿›Ñ…û¡ÖÀ?(Ôe‰œ?²¿FªÂýŸ”¿JÝãÇêx²?°5ø—ë¼Õ?þ~X­A¨³?C…3¡”]¸?pÀYePé·?¦j61åM~¿&gf›ð¿´jv©O ¸¿¯Üg…u£¿Þ Ì¿uˆÐÓNÖ¿<™“Ë¿ߨF¼Oο3€¨MÝ?(Î8׊¾¿ä ¥Š²$f?V˜5nCð?¹‰ÔÂkÕ?.Bî^ØÐ¿o"ŠwÓ?³ #{â?lãÒ¯–È¿’z!kqÁ?R…9iο—_uÍ?G¸+ùµîä¿Ï™úU÷£¿¶–#á'ŠÂ¿`A#ص¿'a(.T¼¯¿ÊõEúÐÆ¿˜,G{k#Ô¿fK‰æ›iÚ?>ž`6Ö°?Nàup`Ò¿¾Ú4¿0ôÙ¿TöѽüpÁ?>Q, \ó㿎œv†a›£¿vÊ¢\ڦοf‹üWðâÓ¿°€³þÒ¿ý“kÏŘÀ?~àxÐÂ?¾bÇOõÇ¿¶À‚Œ+sÍ¿ûË'"&Æ?Od)aÀ2Ã?ÛŸH­“Ñ¿›M5,¸¿E™‹,p“¿¿,gÈñÿ ¦= ݾ?¿ÇíîjÙ? ZÄó­0º??â§âõ‚Õ?,Šx…s¼È?—F†ïø¼Ç?©”DW€”Á¿‚owˆ›)Å?ÇFo»°?Æwï^l>Ú?é¯õ`úº¿ûiMû"Û?â:'ÐÕ¿w‡žÂ¦KÜ?d‘É­lfÑ¿c«#Gô©¹?kwFÍ­HÔ?ð^e½$×?ftŽãd7°?Np-tx¢¿}‹ï~”¹ê?~§aóPÂ?ã€[Kº¿«é,¼TºÏ?÷!7ÑvÜ?àmI¥áVb¿ÜÍÆ \gº¿²+üiÂaµ?Ó®/U;Ü?lÚ5%p`Š¿r­šô'µ¿C±¾ó £?5 Sñ¿ä¿ÛUʰ?þ-†—ìN¶¿PLk`yÉË?Ÿ©µÐ!É¿ìh~F:‰?ð/£0~¼?ÎǵԞÒ?ä„NX‡¡½¿?Ðm9Ë¿dǺE )Ñ?I…K[Š3Õ?• GEì¿·šHÜ6Â?`QÒ—{Ç¿ÒR8“>¼Ï?wz2ÌiÕ¿®•‚6üR°¿ÿ‰ˆ• ?Ì)ðÞeÄÑ¿eäJcä¹ð?5’»ëo Ø?ÝÏ)BŠ•Ó¿\½=h‡«¿‰cs¾Ýè?ª³,ðé?  1(j×?ÄÈw«U—?е·Û Û¿§Ô¼7Ú3º?ž”ZÜ™ÓÅ¿éÖÀ¢Á¿þØŸá_ð¿?¿j)6ѿĻã#Ö,Á?Þ:’h%‹?ì{¸.¡f±?+¨ÎÊ^Å?ŠÝc.Æ?}™¡i~Ò¿S!2‡õÉ¿žÍMè}Ò¿\`+›£³?µ]Çþ·Ý?Ðó œwð?&säì÷å?"x—ä²Ì࿉‚t²È˜Ì¿àFqgcu?×b½nQÉ?ÑŒw dÇ?ÝæÖV[±Ð¿ùQßï?x?Nî~îÍ?ÓYJϤ¿6Ù¯­„õÀ¿NFmdÁ?”vÜI¡¿laA“Ø¿¼mÛ¿±ã±?QJ©Dí½Ã?óÜ?ßÚ¿r;MÃ××Ë¿þ)Ö™P·?*Nò4î¤?VÜý3déÎ?†’ó¸Ük­¿]¤HŽºÃ¿]{3TÒÓ¿j×…£OI׿”Wh?º?¬.'×7Uv¿ðªŽŠˆË¿8tG=›¡³¿\ó80¸É¿º”¶× °?„:ìpºÖ¿‚²[Ù=$À¿NâoÉÁ?Õ¨e©±ú¿¿w#[«;÷Ç¿$ÈÌÞÒÚ ¿N:Zµ¿‰¢>7È¿ê§v ¨„Ç?,¿‡ÎQƿꇌŹ¿Aw²I¡Þ¿lþhüЏ?ž Œ¦Ï4¸?Þ'9†¶~­¿b »ÛÀ?êhåù¯»?×YÃ4Êп ?(|FÃ?1¸ÄÐÇ?îiL F[¸¿(ƃEêÞ|?,Ývï7Á?r˜ã^½¼Ò¿þÙ޿ǽ¿÷~lò3UÀ¿ªõŸÄ¨»?ª‘Ÿ¯±¿¨´¶Ñ_ÝÌ¿ŽÙË'Æ‘?Ókàb!iË?º* ÈåK¢¿­uêËåáÒ¿ŠÈs‚Ldz¿w<€’-£?HçøùÔ?tä6V”Œ¸?†ýt3âÊ?þa·Òf{Á¿œ/Jøª?KG™[Í¿=òs¹?Æ48±ßS¾¿fzÈ=×»?Z”÷1ð¿áоZsüÑ?ÕN»b Ã?%@7cåµ?Ï®’¸>dÕ¿Jav;WÞ?àlO™ÓKÓ?/ÙpVÚ¼¹?LÏÛa–„?¸E —^±¿êÁ0_iæÄ?¿‡Š:zB«?†ÓºãüÙ?+ÙÁï?äÿEw^ñ½?^ΰay ¿¥5žþ …¼¿¦Á|÷æ?„ð§iª ¹¿Á«x¹¦÷°¿<ÐBâ„_·?ÓÐp:2©¿ÿ‚D¡*¡Â?š¸ëåi0¿ëLò™®¦Õ¿Aå%ö·¿Z‰–Þ=O½?P,–ô̸¡¿éö²îÀ?lÍ£_dŸ¿eQÊ£ÏbÄ? à"õ¿ª?Pò˜§ÐoÁ¿Y“?ÅëÌ¿"2§±Œ•¿ºÃ"âyɳ¿GÞ6¡ž¡´¿A1ÝWÁ”Î?î$V˜7Œ²¿Ó_µÁÅGÅ¿êPTx$¹¿8äÜ…½À¿€?ŒÞ½£¿Pöžn_È¿4¼?¢ñ½š?aiE†EðÓ?åR'yº$Ð?§­ƒA:'´?OBðA.¥?š(Òø‰¿LÃ8 ¾™¿àécEå]½?­½Û¿Þ§£¿.£“|¨¿`¿ ¸¿t&«V%²¿?IaÏJ:Ó¿æ°Ù3%ÏÐ?ßµAîx„¿¯>Ö±º®³?xNýƒ&x½¿èYÜÓ?ÔßËwÝ ˜?þ{r#.ÁÆ¿‚«Ë˜F³¿f]o6•¶¿¨gÄXª‘–¿Â!œ´ñÌ?0Í ~¾Ì¿hij%tÇ?‘šè`²Å¿íÃ![êÍ?{KI‰¼¿ÀDÝ…Ø¿¢Ícîö^¢? S!©o=º¿d7F’½? V»F‹µ?æ1ÿÍÐÌ?%@g®1²Ã¿.¾¸Ø³Ç?ÀöüX@¤?þgÑ@Ÿæª¿–™éùçÆ?¥ñµH›ËÏ¿q µL»?óÅ5vmÒ?ÖCJeË?ŒáŒ6£?KcY@<®¿Çÿ[hÍ+±¿5®èÃÁ3¡¿ÔÌþ#Þ˜?¢NB£¿Î¿p[ò6©?©ÔeB–fÑ¿èpbºÈ ¿døµÇ`{Ô?Ê ×ªŸÆ¿»œª4GÜÄ¿žL-¿Ö—Á?æ=¤®¹yÖ¿Ao,ÿûÀÈ?îæÕÌÑ¿ )sôþÀ¿Cn?«Ë?øù¼¨R×?¼ºYäNп/6ú ãç´¿>y#—8Â?Hu´ˆøÇ¿?¼iÔZ%Ä?ŠÇ~‘9Ó¿È7Òì) ­?^‰Vȃٿœ4©Û¿ðOôÝwË?.Qxè`‡½¿ìþˆ6‰ºÍ¿tÚr…w‘À?xww`'¹¿ SVáõU¯?@VëAÚ?ÔE´ùKÒ¿é±VØvz¥?zÃÖ‚Œ¤?¶½ëºο.ŧhdZÒ¿¤ÿ8ŸÊ¿Ðžô†)¨°¿L§šûó³¿èš¨qhoÛ¿XϘE6H®¿‰ù¤ &«?š>µ?µíD2匾¿;b¢hÈ¿ì®9†c ¼¿©_M„;ìÓ¿øŠg²…K¢¿Öß©õxèÍ? ¸È=ˆë½?þñl\¦¿ËÛO_¦ˆ¿cßᬠ¿ý V|kÀÔ¿G§œ;6Ë?$‹¡'ÿοܩfµ$VË¿¬êܱ©¿>r”2¢Ã?´Õü§´™¸?›f~xú2Ù?ôUºC'É?ý½%˜ôÍ¿Sž¦|›\»¿)´ÎÒš„Õ¿³+ôU Ó?Ñw%ðfNÁ¿ÅKÊWá?>1£'¶?Rµª›?j|@Üü…•¿Wðb•_¿"t¸Sª½¼?06™±Ôˆ?0åÄźü™?sÖM°‡É?¶d·Ÿ‰Ô¿F1y=éÉ¿ÉÇÀÏ,¾¿ÁOÚØÏã’?Q źø ¾¿½¿€òž¨?y¢4*¢JÚ¿IQ€ð\Ã?rDW1УÁ¿¨g’ÕøÒ?µ‹ëЩa¬?®– -‚¿ÎÇlçW¾?\k2¨Æd­?[)½§šÕ?Ãx“‹¸?Ј ©0ts¿‰?;"{? ÄÌÇÿ”®X À?@ƒìÿ®?…055µ¤¿¾kG ¾á¿“Ûù–îÒ?(ÄF5PÿÍ?ä½F{<È?l ŠÄÁ¿(g<†ü‡?—õØäÇ Ä?„­ôãŠ$‰?-¥yðµ?6Æ„PJº¿I0þC_‰Ð?X3eø%ñŽ¿óddj—= ?Ìkxè:{Ä¿Zô~zãĦ?ðõ:·¿üÉ£‘öaÃ?þ¨Œ#0£¿ßöNÙðô²¿îªM?ãÆ¿~>S鬿sßñì=Ä ¿³@îd·Ñ¿ç:•0¾¿\d;²È3°¿MÝ_^Rë±?eèÙƒ/'Ä?_ÉÞÝÑÊ?dy÷.ˆ„¬?ôé1³?£äPI¼¿eIöŠô¼?£eVO¶É?„h Ƀ8Á¿xŠDÍ`³?wÖ+¹“D¾?=¨Æ?Ÿ+Õ¿z«@÷“IÒ?^v1£LÒ¿º‡K ²x¿j¤4öþ!Ë?k¤yø>öÂ?*ül¡Ô±¿ºSÕ=›©¿þ)v¯’æÇ?q| WÔ¿LJ½È­?+ÙáœW¥Ñ?ŒR…(‹Á? à_‡Ê=Ì¿mëÓfé?@Œ›@kÖ|¿Ä",5ôOz?42áÒP¼¿¿X–ÄÏÊ®¿´©Þ×ìÃ?^Íp&eÃŽ¿´v5öøÝ?&'vB.Bž?ú†0Ã?­;H5sÁ¿ Å`&Ò¿ã‚Âü1Ì?V£êë¥?éï¶ÜÅË¿Öó$½Ë¿Ãýn„¨p»¿øþîÔ[íÙ¿Ç«,,Ð?6x°È£CÇ¿ŽG¼MÐÓ?dÄI¶i1¼¿"eUÀ{¨¾?Uò²’Ó?©…¢ó׿Æ~>ƒ°hÏ?×ó("ÒÍ¿Â[– ;v³?Üx„ã®?‰,ˆú‰¦?‰:tŠºÉ¿SÎÁxpÆ¿×Ê‹¥?——^5Ú?eäò+b¾¡?kz3Ñ'ÆÀ?ú&ÛM!W³¿&ðzœˆ¿öû êÙìË?I†‘;²¿,˜Z ‚¿€ ݳ+Ðp¿v2|,ä¿?„ŠŒº•?Œ¤Ïä!KÌ?HÞ`¹Þÿ£ ƒr¹d±¿8þ»?í‡?]ˆ¹ IãÈ¿ 0¼a(6Ó?–˜+åM?Þ+@ªœÔ׿Ï݃˜Ûº?7­')"Æ?! Ê²0!¯?à’LÈW?„ì:x…¿“Â6eÊÈ¿V¢ý_“ÔË?~Ê×:Ÿ;¿žH½lí Ë¿/k®¡=Ó¿¼äƒŠý ´¿·8òÙ?ôd™`£?}Fd˜¸À?eÞ‰Ðy7·?ã <¶ ¦Å?Ç„î®Òª?‚À2¶nÅ¿tsL@×È¿$€ÿàÅÃÑ¿M½¡7žn½¿úþ3ƒŒ6²?$ßH"uX¼¿ {.2l·¿2™UЂ¹À¿ëJ@ÔÒ¿zvÅ¿¦ÐyêmÈÆ?Ý¢áhÑ?Df§DÍ?Ö\µJ>¡™¿ß˜î‘©¿Å*ÙaÆÛ¿,~ ~ïhÍ¿4HíWCÓÉ¿"Þ“òcÒ¿îìnÁO&Ì?hãgQ"­¿6YFÞ?ÌûâÐùΨ?Tð~fD¹¿†‘ÕLÕ¿ˆCßñSG¿˜3“R£|?Œô|2—ÖÓ?ÄAã?§;®¿XB (z¿ ¯c¯†Ÿ¿ž?b(ýóMs³?*‘ÍÕ¾_Ê¿O‘x¼ ¿†0{ÞA¤¶¿ÄD°™ÙÏ¿XWéD0+¾¿:Š÷öìY²¿fÀ%â¿ÄþcÉØÃ¿ UuÚ#¥¿ŠAÇGsMÙ?Î÷ªožnÈ? Åwf³ÀHß±мÆ?0ÛÏA@‹v…¡Õ¿ª{žF!À¨y зƒ²?Uƒ9O³î?â \À?ÁHž @öVdIGº?\ã¥7Ø¡è¿ÂùñS¤?ïŽ\Ü?0W½¶3Á?ßnñÄŠø¿Íᛌпš'eÔð¿Áêàè?HÞlˆ™É¿BçI±Žª¿Äì\ÀÆ}ª¤2ç? ll º"Ý?BjÉ**š?Æ]ŽJÄÆ?ÄŸB¥a5Ü?T·¬r@ÑÙ¿×KX6¨×?X¡ÐYš£Ý?gô÷ÀÕ—ò¿õ¦s[Ñ?'ÆnžÏL¿êå Îðø?é¤ähEؿƶ,Æ?œ ÞÀ¿8k&èz¦ì¿'»Ýµ·´°?A¦l½O¼Æ¿b‰of㳿ÔÞ›N fÚ?„ a›•ŽÇ?êÌoUfsÀ¿`&†“6¤?#6¦zç¿á=žè¢ñ?U/cYÞË¿¢guûÛɺ¿Žˆ(Á=à?ÖÓiè8¬§?ÄÀpef¿óéá5¿ÊÀ¡b²'пâ¾hÆf²?7ƒRT0¸¿òEKä`a¡¿Nœä'ç?ØÂ ¨þå¤?¢ÙcÒ8¸?@i^¦L€Ë¿j®Ï½ª¿H˜ƒqDp¾¿×7âÖ³·¿˜ÆC}¸hÁ?7¿ã#ûŽÎ?î[¡¦ç?9óDò…»¿1[ß+Í¿Ò.Q¹òUà¿ ¿L„¿š~@ª?L·Ï”Ä¿üø«TÞÏÄ?i=p^+Íí¿hùØ¢Ò¿“+O"M×â¿®]èt–¡ð¿¨ëÑY0·¿ŒT¹ŸŸ)µ¿¥ú5YÛᅧSÎ:UÈ?œe‘Ñpm‘?q@U¹Ê­Æ¿ºôäæë?Ì’À‡dÍæ¿Ð]c€gA´?íbôÓÒW¸??}áC×ß¿ÿÑåbÑñ?e§g(\zÂ?1LÝûyп'‡!u‡Á¿“ðo[ïpá¿"Ö~>-¿?tBgpBÙ?¼Eÿ?蕉E‹Fu¿Öx‚TîÄ¿À\m.œ?ê-“» ø¿ÜàÑ%ÈEè?êÏ8ß™Ç?_Ñ|Ϳܺӊ©w¶¿9s« U»?³*¥WÚÙ¿ªd!ëò]·?®ÝÆ—aÓ¿r¹W̳?9Iüx³Ù?6+Óo/FÃ?7€­¨;ªÙ¿!¹ÝÌvÛ?šìœ¯eý•?«™]^ÜçÆ?$NlŒzÆ?……¢.JÖ¿T<Ùz4Ô?ðP“c4Á?àÆâ1Ÿ‹n?»Á”RŠ¿À¿Y{Ù¿JˆÆ¿T ’»˜º¿r‰YÃk‘¶?“u86¿Ù¿Bþ¡ÁêÁ?hÌL[ÏõÝ¿¼X"‘ä¿‹w„×â¿ð£Ò–•Ç”¿†( ò÷»¿y£Xvßœ–¿Œ1-q¸ÖÖ¿d’}ݵ¿¦èn…†‘Å?X]µ-¶?( î  Ä¿lk ¯ñãÈ?9iñÔ? Ö¢¶à?Ú(T=dÿ2*94v¦?pvS,É¿@ˆ­Reá? ,¸¨+ö?² ÂZÛ?AoN6’Ž?±¶k#ëÜ¿‡?1ðÌ;°?H›ÚV¾Ô¿lmg»fÆ?uÂ-³‡Ý?ü;à¿Î妽?b/:?ÕÏ?ýªÓŒË?@ÛA7Ý?ùnЕ>ÖÁ?íáÊ£†¿ÿèÊ%4(ü?Â#€Îë Ò¿Ø`?-H/©?F<.wâ?_il“Ñ? Ëæÿa-¹¿?!wÖt\¢¿Öµôëèš³?hìš÷iTË?7Ä+Eðª¿K¼V׿FÁ<£ä¥?Š.М”¨¿ É÷·¿¿dý׳T²?.#,ÄNŸÂ? ÏÅ$Ÿ%²?8{Ì àm¸¿k8âê»Jп*®;fí×?ðÆMŒÒ¸?féÑÉîã¿xRŒx¿ð@×ój[»¿ZCêJDÞ¿4^±JÆ?D»3ÚÔ»¿\ç©*³¿3nE7SÙ?T,%ËÄÓ¿ôŒÓjóØ?žö,êÇ?Þ`mËìÖ?VÀ¾xìã?ôx!ÈsÑ¿Beœ7ðÉ¿NžÆ!K-Š?ÃIkc‡í?1Ç*tç?|ËõÀ €Ñ¿€WUp5?¿9mLû¯?O†Ê$V½Ò?#ìÌ;MØ¿ðx)vöË?'faÊÞ?6»åç÷È?Ó YÓÇîÛ¿rª§xÄQã?þÝ ¡)„ß? ±qCØ¿›ôLL\Æ¿¢´ÝO×?Õì#³ÒÖ›?“OÇW>Ò?Ç©¬û2º¿vz4{1ÿ1zÚkÅå¿(Ò;ž-|Â?܉DwÍ¿®,^Ð*IῺïÃL5Ì?Ð¥žŸ„‡¿H‚Œï˯¿6ÃàfÌ¿¤À)ø¿3Û¿VmÉceîÇ¿§y¾'73¶?å4y‰¦á¿·Y'Ô?øâ¢oõþÉ¿çüY÷׿PREòáŽ?ƒµ«µÅ?Æð •¢…½?v¹¨(Ôä?ôpœƒÅßÈ¿ÂmYÚð?çÇ£z¹?¿É:ráÐ?aê»Á™Ã?• cy»Þñ?óŠþ®8ZÂ?Z—ßα¿;/Fåß´Ü?…‰ø\§ð?ÎȧÙWkÓ? zá¨hƒÑ¿>ô®¾æíÉ?¡g¦øü–è?ùõ¹lÕDÔ¿@o™mL¿Ò—_û¨Zî¿fb®•ß ¼¿øý¹”Ò„Á¿u'dÖ̼¿8 R£È°ü¿óÒ6wÉ¿D0-Õ%V¿?É=¿©ª¬¿>'ÔjìÒ?0ŠC«˜G|?é6Ô ¤Û?qSìvæÖ¿~¼Ìä^Ö×? ‚…¯ß? !Ê›EÎ?¸[lœk†Ú¿Œ907Wæ?@«5â¿÷ÊdÕ:î?ÒXí±ä¡?!®·k›Lã?4ʾ#cÀ½?RKÁ΃¸ˆ?á ãÓ³?À*(ÀÞ¿†™C,Ñ?æ2¯zÅG°?ý“ªpzÔ?¶&a¾˜¶Å?}F!gâÔ?þtÅê©øâ? ²ÉÒŸ?órôÍtð¿5YsÜçÛÕ?#”æ}ø¿•V½µ0¥Á¿µ‰ûúꫲ¿7 †óG&­¿#È6Oª¾¿oRK¤ˆ?„w5ç e쿨[ úàÖ?wü|…Å®?ä,¡ôÕ?µ¯{<#kî¿Å‡ÛÕ¥Ò¿¾ë Êê,Á?ÃÅ&§r§Î?ƒ°/Ðïá¿ç$í]ŠÁ?CÓ¾/EùÅ?ßþîAèdª?<¨Ðë^È¿º©b:=hª¿ñÎl }+Ð?”µ¿ÒΦ¨? Q|OƒØæ?K%*šg°?FÇvƒL*Í?HæêÄk%Ú?x7ä!O°Ô¿NŸ¯lG¸Õ?mW\Ü«+Å?ªûïµÒ¿ &æÌÍÊ¿Ð9aÌIŽÂ?’0™ˆ€©?aFò 7aп¬Þ,GŽã?)œ¸s¶«¿C›ÁW½¨Ê¿ŠÎÁI;Ç?x¢fþiË¿ÓN‘¶ïLÚ¿‚ "­â²?‚x"°†®Y¿W¸-a‡Á?ŦZ‚U²?áƒáè×uÒ¿ýFâzÑ?`'Csrêp¿žü  ¯?A­Ùé&lµ¿QLóózÇÔ¿HZbŸhË¿ÑU)œ±?È€ K·u¿.‡P'¦)οìÝJ+íÜ?=´‰Ûk›á?¥ÒÒƒ8Ý?Ð2T ÷§¿õå,Öÿ3Ý?rxïr"ôØ¿mäZ´cÞ¿Ìó€¬Ä”Ò?Þžk‰®NÚ?FzÿSKæ¼?Â(ª\ñпÍr`ïLÍ¿¬üÍÄRÞ?#b¤9LÔ?ªè¢RÄ¿BŽö$À§¿ÞÿÅ6…É»?ŸYŸÛ?†Hó ‰,³?¶f¼i„Ð?·af•ªºØ¿„H…”=Ø¿c–™a“Ã?åàïq×È?7˜o좥?&ä7£,Ù¿œ‹›uÖœ¹?F­œ4nÆ?m•7ƒå±?~ócToÕ¿ŠÓI6;ο1ƒè¨»¿jìÁm¹¿˜ëÈ¢ã?’IújH¢¿þ2’ò¥¶?°Ö|¨Ææ“?ö¥]}(Â?B–$7…«¿¯T;Fœº?Zï7ž¶¿Üºøšë™Ø¿ün}ÞÉ¿oÚˆ7ÔŸÀ¿YÌ"¼¿ôæ¿|1µ?Ì" r©Ê?+vµÝIܼ?&1YÊBÊ¿öû6 ^׿Ýì%®sÁ¸?Îa$×x…­¿‘g¢„“¿}mbÙ+M§?,L<”Å?{_6¨Zº¿b¥š³©ŠŠ¿Ô"Ao6´?=¾½æâ÷Ä?øˆñ@úÀ¿KÌccÒ?ÇÑr­F–Ï¿6Ï ’¾Ñ?>¯cÒBµ¿U¨­xì®?B&¿ÕbÉ¿ w‘ífcÇ?€)Î',Õ?œ6žà›Ê?8>t¨Þˆ?p“uYH”?ÆðçÙ¢ÁØ¿¸üntÛÅ?v$„|2kµ?ð6Ê=ûÊ? @D› É¿|ºvk*C{?{ÞÆÝ@ Þ?˜1ç}ØËÇ?`H?Qªw^?@±É1{k¿¿ŽÞþWO÷пÎ$¿†;ê:ïãÑ?ôße’v? 8POIò¼?šÖ®r÷±?ÿ—ÍyÿRËõ-ëÖ¿@ }— ·À?X ’ð’ȿx KÑ¿‰ÃmXýÀ?b±rÒº?v!;Rƾ¶?ïôÉ¿§‰Ã¿/°¾ŸëÆ?$ó<« ÖË?øÃ•æ.Ý?7+!?ÔÀÕ?Ü~Ñž^´? ê;«Š¶v¿¾îX¬D¿?ÒGeÎ*°?ÒÝV¢°çҿݹçG±Ó?dÞ[ ?@òb[‹}°?ȬÝÝ?8Í-`Ç¿¯m,=ýx׿ Ýn²?WÊ=œ¾¿B9kwlY¢?ÀÊdVÑ¿¿a©G~οýÌ*:bšÑ?ýþ¨kÝ`±?ÒA%Ñ?‹bä‹ÌaÉ?°É¥/0iÊ¿NæÈα¡¿“G@f¤Ô?V,·ÜëÄ’?á·Oà2iÓ?H¬!u1óË¿ Zí׿¾ãB)®jÓ?©mÏVM°¿]Ÿ»|Á?³Hž%“Ñ?Ø’á·ã?Ä`³GÄ?Që;-‡fº¿þ@!»˜XÁ?\œ0i ÚÝ?”÷é“Ä?¡yF[ÖÓ¿o¥o9”Ø¿SÖÆ&”qÒ?ØÄ éû{š¿èJäªÐˆv?Å8Ž|´Ä?y~¤˜ÔàÀ?´Ž¾þ^Ž?ö ]YOvà¿ÒòÔ¢~>y¿@õ0$ùüÂ?ÔÖ¤EõÊ?ÿâ$í Ü?\ÅÊΚ̿oÖ.wŠX¯?ˆöÖöµ·Â¿œhžæ. Ç¿Ä>_~¸¿W&UTBÇ?Ò»V¸I4â¿/12œ À¿H‚§N—Ä?tŒ‡V†Ý? éKõ “×?‹ d¬wà¿â=[Ö¸  ?ÑÂ!ðµ{Ö¿†(HJæ£Ì?F©†“?Q8Õ;пpdTH…¿v:éîש¶¿`Ò>܈¬¿†‹ùòVÅ?â6ørÒ˜?9[õ+i,Ö?¤Y ÌòlÛ?0 Šõ*& ?ÿÒ,ÒN¼¿OûjßüÇ?q‹í–Ô¿¿úNýGS‰Õ?9FTy?òÊ¿ÎmlLÆ[¾?æÏ4-<É¿ÌÑà[’ã¿Ó\ØršW°?Š"Æ\úD”?ܤ#æ…ïŒ?€Fº .=Ó¿„?n÷\ˆ?‡IM¿¤‹Ë¿âk½[~”Ü?›7é&Žò»?²¢ç2weο@QÙE{R¿*RÓzuË¿é{°þÚ¿èøjúí³Ç?ôIEKm´¸?h™Ã´ Ä?>©ÐbñŽÆ?Pv\¢*c¶?½WñbÀSž¿¨%X¥n1‡?r«÷vÔ’~¿[£Uï‡öÍ?ŸT̶%¼Ô¿Â¯ÃÀl¾ ?}a`©å²?î´aØ›¤Æ?ü ÕZɽ¿÷ò‘àrÀ?Ø}Ó4lV§¿+ÁÛ4Ñ'È?úJÖXé¿¿¯7³A$²?`œ‚$Œ£´?œ¾×0"娿wTBÙÓ?V8OÓs×?Òœ+‚lÓ?ØÄ ªâa¿¤pÂa}ÝŠ¿^2}´å¾Ì¿dr˜ªMµ?¾Þ¥÷Ÿo¡?]®údÖ?‚’K7¢?… uiêÙ¿Æ4&„Õ?R.-û}¿Ï@`t տꥰw‰Â?Á§Ä JïÊ¿8†šÆÑšÆ?máï…¿2Je³wØ¿úŠòáí·?†jŒE·?:£_­²4Ï?0EOH«¹¿iÈæòÞ?ȸԨ'"Ò?À§>IµÇ¿°DM1u È¿>Zk¨{LË?~ȕ·¿DC…oUÙ‚?ç V@Þ/Ô¿Š˜_W7Ã?Òp;¾É¿4ú—:^oп•Khƒ3Àÿ†aߘSâ¿¶e¤¯ƒeœ¿¾¯õ8Cñ³?¥#ãOxÒ?€‰ S‘Þ×?‚”§`P…Á¿n‹äŒU຿<ÿè02gÈ?Ü_Œ/¥Â?S°¿b-È?iW[b÷CÜ?\‡±Œçµ¿²G·…Ê?tneÙ¬ÛÞ¿(­Ñ½Æ:»¿]# çäÂ?(U–&=É¿vÛ´{µÕ?ÖGÂ$‹]˿٧ß`ÑÜ?~j‹f*Û±¿¿zU}´¿yçJ@iÇ¿¨‚xÊ"XÔ?'„³†ŒóÐ?rn;¸¿Œ‘#òÎpÙ¿k}sJÒ?*1mÜ¥yÁ¿Tn"þiþŽ¿òu8-¤‚¦?¦bñh1e¨¿D$ʆ¾õ¿‰ŒÒ8»?ò@È#y¿|d¡³É°ë?¬ÏfeVcÀ?ÍÕ¶µÈ‰Î¿§+üÊuÉ?)“y5ƒ5Ù¿6iæ§;¹¿ÌçÁ%ÙÀx?hdÈ}¾¿ú©“àÄ?î+)%{¢¿ÞΘÀ²žÏ¿aþ+vRp¿:L2ë@Â? QË…o˜‡?ì¯ fxϸ¿|Êå¢Õ?/'Þj\1Ì?øÔéTAÓ?€^ùÉ3êË?Þ T]d´¿øŒ[-0Zп„–7ˆãý¡?±³žÜŸ?.ä¦ÇÚ¿>šÉ{ÓÀ? 3Ä#¦?O¢ø ªu¯¿F:Ç´Ñ}·?·fÃòÿÛ×?õWXxÔÍ¿å-¦$A4µ¿2íW=`d´¿vzP×OÍԿћ˨dÓ?WÓW×´¿IK5zšªÃ¿†G´ùT2À?%'MzÊ?¯Ä‚(÷„Ö¿&ãà×,¯¢?¤)!vX4Š¿ò+F€¾¿„KðrJÙ¼?*³½ï4qÊ?é£ol^Å¿SDÚ¯y"È?Xu ½¼Kž?BÞg †¾?‹w¥q¬¶?²Šß¶²?¥xhþ‘±¿—eÐV$uÃ?®P´v°"¿.7˜bš¤Š¿~¯1eÙÚÀ?¨\yF)€t? Þ9 Ó¿+Bš^nÂ?Ìô$‡€¿Àûª;x?ŠŸ1. È¿9|÷Rÿf’¿ Üæ·Š¿ÐÍdkÂ?⛫?ÜóN6÷šÆ?8Š.”nÀ?ré±þ¯õÈ¿ þŸ:üóÉ?Àœ˜ÙoÍ?\¨³n¼¤Ô¿ú¿R»uYß¿Áÿ¹>Ì#¡¿“ ?€'Ã?rþÜ@-§¿uŠT'e`Æ?s·¿¶ã0Õ¿¦2ŒŽ¡¿ ãè$8ß?âiô‰Õ?ó,¯à’Ð?®Æ:Ë࿤ŒDr hÓ?èiˆ ²¿(•Ìÿ!°¼¿-_l2®½?ôî:Ô®Ò¿ä‚@/ǘ¿@ZpO˜öο,i”^×?ÜÝržé·¿uÑqìñ¬¿$8ãØd€›?¿xX—?ð†:瑎Ã?nÀKg}Ò?®Þn ú׿I.¯yÉ©·¿ß—ç/²¿ç^ŽºÐ´¿Ë°0I.Ë?>}ß,—Í?Bâdaä?ÖßÃÜÄÓµ¿#ð?êÕÌ?pJ¥¥;CÑ?øãÞºqLÝ¿Uã 8²?÷kŽÚ¿žÊ?H.Q»ôÜÒ¿bQ|`1ƒ¿[„÷á÷\Ø?€·Þ$DÈ?®K§w»?;w©Ék6׿UBø¤¾¿ô £ºlÒ?ç—ˆ**ߥ?W€2`¢sÈ?A œó W³¿N÷˜âÑ? v­x­Ð¿¦©h °?ÀyžƒÜ›·?&sÖÎ8Â?¤?NùôÁ?’ ׫¤?UŒo¸Ô´?Ì4ù|žPÁ¿ˆl°UÈ?ÆM–C¶¿£+,¨ò¹¿‘ù–ª¿«‰öbÎOÍ?B«FëÛ6»?ŠBHk¹?Êõ;Ï[ó²?°øÿXè'¶??Ý^€·¿Ø—•ŒŠá?ôŒ½TþØ?Ø §Û¹È?$|g6€Î?\ >]÷¼ª?h¼‰U·øØ¿0”í3Ït׿®)"îTßÇ¿*0oŸ0Ü?¦ªªŽ.¾™¿Ÿðªª€Þš?h™+)8¸?ýbŠ9ZØ¿°(K|׿¼VJÓ§¿âû~IeÉ¿Ú>óÌTÚ?8ÀX,µ?ýÛÿBËÅÀ?È$ ì³?Òüorô×±¿1ìgm‰­À?Äj±)ó2Â?EdÛ5^À?NGË,›©¾¿÷߀]z¿¿®u•JöëÑ¿ xW ÈUz3ÀêBç¤5«?¿V|]¤ @ÌÙœÊÄ?1ª{DNú(ÀÏònÌ¿ÑÍ^äÒ?z×aÄ$§¿ÌáÁí·F @#ÿX 5Û¹?ÄÔ#‹ýÃç¿<ðÑEäá¿Ýäq¶žþ¿67{ê2hµ?“Ql*ò¿Oˆé‰ÓXª?øøßkÄ7À%P¤[ Dò?ðjœê~£?^>¶œy Ê?Çy”èl¼À#¬O‚åò@nÐF{ÜÔ¿TË"{È¿I€eÄèÙ?¹+Æýõ¿œ’ÿ0é?—fCY©%Á¿ríé¥r@¤ß‘LuNÀŽ»ÂqÕ¿0èMÿd²¿zm ºú?êe ÛôÛ?Kk?;οÒYy×ȃà?1?Ôœù Àn!ó•\ñ@,ñ×ý¬¿f› ­ír«¿Fˆ, xò?;1L‡!¿ë?æ×Þµ/áÇ?KØ× ™C¿W¹SÃ` Àº8 ¨ý?Òçö0¹?®ÂúÑ?ÝI¹m Æ?=®4˜ä¿l÷ßQ°%”¿?€! è™·?¤ _¼æº?æÖÛp0äƒ?dºž ÄÃ?¦ž !é(±?qZiélé?I B­“?PmBÊ\Ï¿à‚}˜?(¼¸‚Ö¿â€õÌ.пïHî Ð?&Ë?ËY¢?ÁÄÖGªë?K “Á+ Þ?öZ,¢À¿Få/$Dˆ?ÓÞ‚ÎüKº¿ÆS“¼¨£í?û)ŒÇÃÒ¿ÑQ½÷Téµ?ð%8#"òÿU¿ý¿’í?Ø‹lÍæº¿SÂæîÀ¸?ò2Ï×ÅM¶¿8üÄïèß?†YZÞÁ¿9òâÐÐÞ?“ºÑƒ?Q?ßhœ¹¿µ‹3œÈ¬?$ž¿—É?N·=Qvù¿"?~­£?¢ÿ&\ý^¹¿Í }°ÞÎ?èqdè×Ûå¿‚ú¹~ÍÀ‹ÖòNYË?ì8Õù< ¥¿Û¶ë¯Àó0“ÏÎü?¨Á .™ûr?4Þ¼üŽÃ?°"ým†íÿ?Ë+¢"ý?ó‡fiûöÍ¿OG© »Æ¿•×(ÚäÉ@ÁéøUy½ô?“Ø…Ê¿€åbˆ9\¿¬äŸdÒ¿‚úsì«ðñ¿ÂçµÀÙ¿V}J MIã?ÊË‚FÁ?QeIÌlпq|‚ï`ã?†­Á£-˜²?¼ÿ‹N‡ Ï¿I¤c ã•Á¿’èƒÎ¿ü6Ï+ŠBÔ¿¹c½‰Ó¿*¶‘°Ö¿–d ÝÛ?Ú=žîÊ?-¤K¸à?ˆ¿N‚ÔFà?ÎyßA*¿¿… ³‘8â§?d/Çd²#ø¿^$Oº©¦À¿§ûZ·Ö?¬l\G~Ó§¿Ø¼qXºïõ¿ÂØ$–ÂLÄ¿b1ÛUáTµ¿|X•Ÿk ç?ºË¯-rï¿ÈÒ£'ç¿’x[ñ»¿zóà ts?è¢_ãíº¤¿qU›^ ¿ƒ‡–P.Å?€›´M¯¿Hf #§Ú¿<Ø…ίÑ?À]µ}Ô¿øÇoÍ:»Õ¿¼ì¾Qmä?Zn´ÞTCÖ¿a9Øÿi¹½?»™aü±¿‚ÐÕòYC¡?˯6q™hþ?ΞcJÄ'׿ÔOº¡­$¿?¾&|•»Ûß¿¥ñEJÀ¿xS’)„`Æ?ô³Ò SÊ?ëëÝú] @Ì[a°ªD?´Äålê!Ê¿}¯¸=ž ¡¿óá 'ô?Z17 _¡¿W–z|g¶Û¿ëŸÖ}œz¤?Õ€]´6ò?´y’L5gá¿É>^À湿k2Ä:\á¿n{pz1Ú?@\N´ˆã¿ýÒÓ…âÿ*ªr»Ï«¾?s…å †Å¿.î;âŠ[¶¿à·ä‹MÜ?O®ëÕìBÙ?’oqº\DοŒpYP™µ?hÀÆHj˜?‹—l'&Ñ¿˜ääþº?‘WN`âAÇ¿>ð\@Þ?Œ%7å™?ü²7ÊA©¦¿ñwyÔ…Lö¿/ÒzÛr÷Ý¿‰c3#—/Þ?vjèäíé?15WÐá?"±ž˜®ìÒ¿†~˜{K˜ ¿Þ4d{îÕ?݃Pób"Ý?sÉÔÍï9¿GÐ/¹2;Ð?Þ=wB¹è?¢ÉªvZéö?÷åÎîc×?WÏsŒ!Ë?N&>fã?+„™·ÇŠò?Š5ö®9ο¸Í0ÿ¿?ó†\í?¼å‹R®Ð¿âºÌ£näÔ?mËqyºYÐ?…:Ò‹¢Ô¿ñ;;ßB å¿«DÅbп”!ªlªÀ?k^H»¼ÛÆ?­?~ÙDx¿ qµu(ºÁ?¡½{ä'п‰' Ë—à¿(%®TПè?Bj¯=îÐ?`ÛPßMÌ?Ç>O:ÕÇ¿ÂNK^4Ö¿‡þu(0œÂ¿,dÙ“ì¿‚û£HfC¿ÔT¤/†Ó¿mùf°b@¹¿îFàìÁ)Ñ¿x-S-/Ü¿ªÍ FkTÔ¿¯têºØ¯¿Ìè™EÍ`ä?Ô‰ ¬‡ë¿¦fúaSèú?oȸ—wÑ¿¶àůËnÜ?éñUÞ„˜ï¿*oßv¬@6Ѫ³HÆ?§xÊŽ¶ƒÃ?d¨ñ™øç¿ðSÅu÷¥h?ˆk#ÖœnÅ?MŸ‰Õ‘¦Ö?âXûß;Ö¿˜v¦âŒD¤?©ù¡+(\Ä¿ôR’3·e¬¿?þzߺݿD~-òúË¿ž"›Ú}?Ê?¢Ö5k§Õ?͸ƒoþÑ¿ƒZˆyäýØ¿Êß‹R…†?¶·Šü#Ö?~ÛòŠ}뿬>Ž›³õÀ?ü\5²Dâ¿à¦¶éÓȰ?df¹oO¶¿th6–EÕ¿Œ!äîT#ƒ¿Ããò¿~¿ŽÃãÜôN¡?ÔÈÐoûä?Yð‹áøÃ¿“‡©NrÑ¿1aèaÍ?ì ؾÐ?ÃéÒâçaÞ¿ï™æÈѵ?OÝ=q€ÛÖ¿×OpûÌøõ?®›Í¬Â“»?… rrIÅ?žDpe&¾?³ž<äÀô?žB»#Â?•Õ×±?«NÅ@ŸkÝ¿E87üöæ?@ßL%Œj[¿ZÖõ[Åsª¿³b пü¥â%ñ¿\Nü¨²Õ?=R ¯Û¿(lXR›—Ó¿}³¦m6ZÔ¿ Žò3©Ô¿C8ïh¤¸Ñ¿T/„{U½?˜ÊŸ{:Ù?öøÔln)꿺>¸•hÑ?“–þúÐTÅ¿Ôhþöu_å¿4òMg•â¿[á1¥¢°?áCËOqþ¬¿f»? 3Ì¿u’"T“˜µ¿(‡y¿ÍÃÃ!Õ?I€˜²?ÇÛ·¨ÆÚ¿øîî ƒ`Æ¿ä+Daê;§¿\%èBM½¿´öG¶âäÅ?cN›´ñË¿í‚ G`¹¿ÐaaÏÊ”®?:z°BÕο74ÓH=“ä?»é—¤ë¯Ã¿ž¯OðÌÖ? ú«sëØ?Œp¡ŸH+¹¿q‡MMäÚ?–¨u"H¹?Ì¥‹ûæØÇ?DÏC~R¼Í¿ 5_æZ¸Ð?8d>Ÿ·¿9IÑ>D¥Â¿Åx…ZCË¿ÔüuØÅ?»?t5æ*Ú¿óÜjg@ Ý?¨àw@?Ý?‘ÜâíEÛÕ¿PšQFà?Âu a쪿‚Ô¶¨LÿXià,²?LËTt~Çä¿–"×2ØÓ¿i‹…:Í?ž G@—¥’?D–áЮõ¬¿0Ësk“ªÑ?•$FõÔ…?Œ†’¨Ý¿Ù,­l¦û¿dÌ%3 ‡Ó¿€ô·¨ƒ²?–Ó¹ÈÕ¸¾¿j*sYQ\É?Q]h‡_¾?\9W‘×nÿ ¼÷XO׳¿4)á¦#ÑÉ¿É,)@îÜÕ?qÖôn¥Þ?õÖrÉ^–Ë?¬ž[H'’©¿¾snÄ¢µ¹¿lŽžyÍÓÏ?l¥†AÎï¿¿k*•Gù"Å¿úœ/m:Û¿dÂ`Úü¹?R1}.“2Ñ¿x• E•?›¤×HkÆ?)%Î0õÄ?tô–l°·?†–XôHÀ?" $•Nz?ž2Üá‘¿ãÞúÓ?:‰‘1“šÉ?N àó–¿>ã{µìÃÿ´jêoo?%Ñ,8Um£?@èóaïÇ¿iÖ3MšÀ¿³Dh,ÝÐ?·ÁÔ”Û_À?PH(ôŸÉ¿ÇíÚ>tAÏ¿Ì?>‰ƒÔ?á§nÞª¿[kÙÙ.›¿(p÷Ö¿­Ré·[㿜€‘„¿¿ÚÉÁΣÈ?IVT&ÌÔ¿nâÀ²[¨ª¿îì֣ح¢?ÃÊk(3·?`ß ¿ª¿Ú¨š*¥?˜°iÂ/`ĿŻ[K¯¸¥¿R ôƉâ¿Ð-/0ñÏ?ýÀš±­Æ¿520Ãõ©Jþ×+êÿðÔ~½ÒÉ“? E…>'uª¿žq©ØoóÏ?.ž™í˲À?,q}ÙgÙÈ¿†•b]•Iº?$øºK]XÍ¿à¬ë8‹8³?š¥Q ó#Å?>†ŒrâÜ?pæ«ÒýпSÀȽZŸµ?ßÞ1ÀSDÆ?åC‘ûû;³?ŽÚœ È?€Ý…DÇ?¡$³p„Ï?},û6½Â?žõag”{Ã?‚I a¶?Q}ÄñüÖ¿ !þg,¾³¿Z­KYÔ¿pÁ,;ºœÅ¿‘úøYÛÉ?y=(ãyÝÓ?Äí`ñúZ⿉d ÊY,Ò¿Ô)†0]¾Æ¿@ò!éÏ࿪b ›ýØ¥?ÀÕ¿óÖ‘?Gú-º?BD…‹ÙÖ?¢TÚk öÇ¿’™«3ý ¶¿tÆ@Þg8º?ŒPoºeÍ¿w_0&7øØ¿!¦N˜¬¿¿Ïºèü™7¯?g¾# ÚÀ?`ChzO›¿µÌMBq¹Ù¿9 zҩο^.N×|¥­¿F ‰ZÌÁ?âökaJ Ã?1ÇÞß'›½¿Ñ[zEi:¥?˜„îiÝÿR´Ÿ¢¦¿±êC¶ä Ù¿mÙë]ÄMп`ï鯨r¢?bˆ8ˆóϯ¿ºß˜] "Ù¿) êÀƒØ¿{‘™²œ?bÔ¯¿²ã?.ÿ4i$Ô¿Œ^ü„²?ÃÙ¦Š¸+±?À2Qåþf”?dà¿AõuÇ¿ÃÓªãK¨¿ÏÉûé*[Ú?‡[\#DÔ?¾ûôŠö'”¿ŒÓn뤳¿eÖ/ô툿”9Ã÷¼8±?C1Å)hË¿—쉶ü»¿±†¯p2×?xÔx’$BÑ?Ygý)ý׿ ¹ñ|Qâ?ÌŽx‰àÙ?QV«4üd°¿/UÞÏ ß¿­K&öÓ¿©áAŽllÞ?!¼±¥y±?&…ïØ!Ð?‹Ø µ¿n7•¹êÀ?G×»ŒjâÍ?ž¨€%ö?0rÜ¡¢úÇ?Ôeí> ?ê^(ɵ3©?Õ©D€ü »¿ _82iÄ?)¯H8¢Ð¿Ïþ¸=‹Å¿¢!¢­¦?miL<ê°¿­)Ääý¾Õ?,_±°àÕ¿mÕ'äÈ?Í¥^x3s?–pÑ‚"Ï?R‰]Û?\o—|ò­¿º±Üí¹Þÿ.±GßnÉ?w·è Ô¥Ó?gØvqο­?T[=Ñ Æ?¯¹ÿÙÓÒ¿”ól4Æ¿_³%OšùÐ?EòTG§?Ä÷Ç€xöÖ?ïµà‘6¼Ö¿`pØÖDâX¿R#iü3°¿•nfÂØÐ?š—ïÃvÚ׿IMLqv°¿`¶êsòÒ·?È4·eê=Ã?¿àÀæ,A­¿¢AIÎï¢?KûØÑ{Á?'–÷b:ڿݱÎ"Ç¿i×[ Æ«?ï…ê!ý³?ÁUIQ+X¼?#¬  WÇ¿Ÿ¯ƒƒãο˜ˆŠ¢ë&³¿Lxc@ıܿüTöºj³¿`ú‚~V5Í?9¤S*Ê¿")œ<®Ç¿ ÀŠÜ€Á¿–ö!É…˜¹¿Ÿµ\!ç岿¾©Í3.5Å?zsbÏ–KÏ¿ˆ>ƒ§Å¿> ô"¼5Ø¿nö^[PHª¿Äñû!Ú?*‰ÌX^ž¿!t›Š'¨?Ùö™:Õ?|Ú`õÂÂ¿Š¿LÓ?02 ¡‹¸¿šYQtkµ¿T[¨Í‹Ü?‘”›ð>0°¿@@¼†¶¿Ù°M§ôÑ¿´üvÞ ë©?¹S<­È¿h¹~¸V©Ç¿øaÂjFË?ÜZid[Ò¿4( ºµ¼¶?kqÕ>uÒ¿sv§¦íÔ¿©ëæ‘_Ï?åp“˜Ot?ì¨î\š„‚¿2 Ü>š§¿=5ìj ×Ï?|¡»Â™Ùã?éɸsN0Í?b?ÏZê•?»útPÈ¿)?-a˜ƒ×¿¬iqK_¿$7çNS×?•õœ–gÙ¿FìÓ°«? jÀ “𿿪 S ä‹Û¿üQCùôS¼?k&¼ÄˆÏ¿4üqBf©ƒ?Ïñ\Ü.Ñ¿?ê²ÕIпϲê%ùÍ?êæ,ÔÈÙ¾¿,2·øé7Ó?I! ‘^»¿)§A8q×¹¿sƒŒP"3п’û&Xí«?BkÑÅzÒ?ì Úæ:§¿:†ËPC¶¿ñˆ$Ëõ-Ã?|âäѲ޿ڶºë;h»?ø 8°Éο¤â$gÝ´?È‘ ½ÞÄÒ?[•÷Q"Á?_\Ú¬ñÊÁ¿J‘<°‚Â?øê3ðnØ¿“䦿¸Õ¿d@Ó?W;iŽ¢¼¿RÏã¡”Ö?$0Á[˜?ÛÛ¥ôÑ¿D‹88爿P­‰Á¿-4"­ÁmÁ?ÁîL@$Õ´¿V˜€·„cÐ?ìÍß{Ö“¿ÏÜ8†ÝZÀ¿f¹.“ ÊÛ?æö·ÚҼοíTŠ™ñ)Æ¿p\ÉmG0·¿VP1=sÏпâ§B3Œ†Í?¬ ín/Ò?þŒ)úÆ? öéAQnÒ¿ý› Ü?£ìäUÌÏ¿ ØncMÅ¿zÒnþÑ¿¹£A½"ÄÆ?zIÑ ¶Â¿Ç9"ñ,²?’£ç?—N‰oÂ?Bž^¬^„³?)€Ö¿>BË(Œé‡?Ž>'€DÑ?Èñ.ú ?iv!ÏÔZ¸¿â~±ñ5Ð?£«ó0ìË?¨³½°r¿oøûŸA#Ï¿Œ|FcEÓš¿À5Äj6HÎ?Èny>z¿(¸ûPêÂ?°¶G·¯ù‰¿†ÉT©vx?«Gãò’¿ÀVhŽ6»¿ Mƒ“¢?W¤fª”ÍÿЉ{hÿTÈ?ž•óK´'±¿Œ”÷οóïØHš?‡-i¥5Þ?^¸/AD«?ÊG¯MH¨¿ ì¿Ðalo?Ü3JàÌ?Zrç§¿¤ Xèžóº?Y(ÊÔûkÑ¿þáÇF„ ²?4³}|Ãr¿FLÄà ¨v¿ÒïbfA©?!cªQ+1Á?4ýò‰£ Ñ¿,Á§” ‘²¿à¦ù[25á??wY³'¸?‚|Á#W¿RÏÕ4e¯¿-ÀÍÔæŠÐ¿Vw¬ß½»?Oÿñ×øNÏ?~T(Drã¿©Fx.çUÿæÖNÛôÈ¿û²ð`_tÐ?w‚2zH³¿ݹœ%Ÿ¿Ïm£¸ÛoÛ?‰lf+ݩ˿Œ éÏ/V¡?¶¯šQg”?=I¾Ð?·‘Ïj­S±?Ü›¤Ú¾­¿M‚O(Á¹¿JuQÜÔ¿”ð͸¿™ÉªØ+]Ò¿ Ã=MÞ)Û¿ôž£gfÙ?Dø=¨ÑÐ?*C£ôp·?ÜŠ‚k@>œ?2ýÆðüw¥? Ó‘n¿Ç¿2w¸×¿œ¾¾? U™?2Ù÷#ë¿~ß¡ÊF¿¿âW² BÎ?8q¹_yjž?%Plê§?€F· ?N?òo º?ûLmN…Ò¿Ó[õÂ’šÜ¿,Ž0ÐyãÄ¿1ˆû›uÇ?eSTì8SÓ?#^Ó°Ç¿ã“WMÈ?2œŸE,É¿DÌYä>°?éÔ°E§µ¿¦\g¸PÒ?8-?6Ö?¿<)‘P|óÀ¿€8þ™–†¿П4»¿hÇï§¿•C»µóÆ¿'l‹·ÁAÕ?=׎ÿlË¿GþepyˆÈ?¯£Ô˜ˆÒ?ÞÇjgºÇ?¬³ÆÆ¿ê t¥z{È¿äÒ%RÃ?‹ Õ k,¯¿ì)–œ—{Î?LÏ©êé´¬¿îeäº^üØ¿=xÃ;€Ê¿î×Tb2Ò¿¿‡Q¯Ë?ì¿xè9.OlÀ¿õap3¹|â?9©LMͳ?Ÿ£ÂfÈà?ê—n·cÔ?¾ó¶¹(¹?/©.Œø©³¿øƒ®õíX?SŽ{à^¤Ø?uE`Ÿ^Ä?’bƒû€˜Â?¸VîíÆÛÉ¿Æg]m] Ê¿e*=~´ÕÏ?ŽPBæxŽ¿eÈbfÕФ?|óhÐË?øÈ‹dÔþŽ?ì9þL¥kØ¿hšg¹ö–È?ìz\w/Ò?öÃ$EÜŒØ?Òƒ¢ã¬? ÿ<œ-•Å3ÀÆd2¿?Ì-tè¸@ÔçwFj­¿ù\æD‹%À°…Cù‘¿†UÈàøù?D»z`[‚ä?¬|),ú @:Õ5ˆMÒ¹?«½(åt.í?ÒbAKñ0Ö¿ë­ŒÎÀ–±\à Õ¿8D?};ï¿mQ}7ß?KÒ«nìM ÀÒ÷•W‰ý? 4–¼Íò¿@ Û^'&à?`òŰªm!À¯r„Õ5[@ê/NšÀ?%Ð-ü›UÈ?ª«çÐh® @Aê}]3 ÀЖDbñ^ã?!¶Z¦µÖ¿» AÖõ=þ?Íg, pAÀªÀ-[á?¹–72–ø{?Zö‰´H¿ì?áïŒH×÷¿^®hÓdà¿yíò~vÉ?èU@„{ÀµZÃzþw@4£v€Š¿|8Sd¹“¿SšcVÉä¿è?Ö?†ð?h¦ßî½Vå?¹~£†Ó¿–M.¦;ð¿,«ÅöÐoå?,K(¾tBÉ?ðØ“]©Ó¿€6£H’ó?]s£-w;ý¿ø(À‰Åœ¿òó˜bèIƒ? kOœ-ÿ9š‡²ÃkØ¿^˜U¾¿Š‡sÃ\‚¿ãè ÉÖ?}Yx£û@PÔ®Í=Ñ?—HOHÏ¿< º^ð¿ç ÷{Ú¡?Î`r-B5¿žwü&E׈¿ÐúÀð?„$¶Û¤Û¿M!ÿøuÄ?¹ŠÜp¿?S¸õ2îáæ¿Òÿ‘]íšÖ?ƒiȹh¼?佦ðùìпJ”'¡Pï?º”ÒÅtµø¿¯ g„[MÉ?\N*Š†Ä¿L ú®Ú?]|ã„$_â? ‘òC(m›¿µgC®ð¼¿ðê)!)µ¿b>ÕžÇ$«¿erfy]@„±ßCÕNè?¡¯b©CŸÖ?Øx®|@T¡AcÔ\Æ? *0F¢Ï?ŸMé!…ÒÕ¿§ˆˆ¡qrÿ%ÆÐ—x'Ò¿÷Ñ&øïžê¿È8ùuÁœÛ?‘É*fôxÀCdnw®?òkîãáÁ¿Z mÖæEÀiE8EéÝ¿KPán)¾¿&y‚è?ÎÿG|ó÷?'’&˜4 @‚dýòÓ?W™cSLÕ?+»¤!«ë?ú3yƒ û?-¡CÂÑ?‡.Œ\‚˜Ú¿-÷R|å¿?|^›E׿Ò7òkÛ­¿F]Ù¾ ¸¿7‘DnÚpñ?©´Õ)~Ñ¿›û¸3Mñ¿®p¿4Nvê¿úÄçæ? |‹s-¥¿-× @›Û±¿±#ȲÀ‚Ð?ƒ(t0hÿ?• ?6LÀIX¢˜|Ò¿Ùâeãßû¿6ÿãVeå¿ýþ:¶šà¿ê.tÃË¿ÀµÊ™á¿ð¤ìù# ë?ð#N_öRÀÏËÌµÐ¿Õ e“Ñ?°;Ú¬£à?x•VÝÒ¿{>…U&,¾?–Ä^#\1È¿o k«AqÀlšP-é?Þ©i÷‚¶?<¶]@aî?Ú¼&Í?BhTŸ_æ¿þb׺­?\#O.âqà?Ù˜öüUÀ: ÂÂð?üÛ—#mIá?+nÔ+à?dñZŸßï?BN ¸_Ä¿=úÓ‹ú¹¿®‘Ò»‰‘Í¿\šÄÐãü?[`ÿX?ç?Âq:;TÒ?"7uäÈ¿NHò¿XyÝ΋$Ö?Ù F¤&ῪaܬHÞ¿—¼|Õ¾« @ÿÓ–Œ-ì¿©à0lÓ²?£ :Ì(ɿ͆ Ϋä?U:hà Û¿¼¨ ‡-cÍ?@~gËv೿­šÒF§ä?[ˆÞú¿‚Üm~•¿àƽÑîŠÝ?†±ëEõ?ÙŠþ_aÙâ¿òB…µ+Ñ?‹ý=tdöœ?È 9?€k£?:_x\²=¿?X©–)eå?lô’{žÄ?­â¡á™Ë?$DX!ŒKt¿Âšç"8:ï?Ìò©4¨´Ã?Å:ïtã¿­cÄçêò?¼ŠŽ2žÔ¿ 9Î[Ñã?uª÷ âÝ¿O[Тò?l~~'»ƒ¸¿p_<Æs׿l™÷ÿпð(M€â?LØ“ú0°?Ë6U†~Åп‹1µ¿õ®Èp¼±¿<œ@h²\º? uÌ÷•¿Á—ŸX4Áë?å/ˆ>ýeí¿È­ôŸ3ѽ¿ÖÀW Ö½¿<æå7÷ç?æ‹ÔûGdÖ¿&qbSšÝÅ?B)]ÕbÜ¿ü©=$b)ð?T¦IñëˆÂ?Šã¾Drò³?˜5ôkAýÂ?%ئÅSý? RCsjðl?(ŠxÈÔ©Á?Vfy<üf¸?aP“/äÐ?è²SÍ,ó?aŸáÉn½¿‘ÛÇu ·?œ_ž û­¢?ˆgÇ¿:°¿‹xÿõ‡°?HßQù··¿*ß²ú.úÿp(Ú¶ÁöÕ¿,xúŽÎ9¥¿M»»žæÎ?þăÔßà¿E½Æa™âð¿H/øcŒ|‚?)†ü/8Aµ¿ÿìH@8â¿ÔèLßû³¿4–BZx‚ ¿·Åô¿%Õ­?Ô9yø…ò¿l1®$Àæ? Æðd}¹?ø»ëöÆ?€òÔÿQâ?oUüp§ä?î°F _8Ä¿Õ [Ϋô¿À0™Ûü?ê49YÛ¿T%CgêCç?ÎRŸF®Ë¿ßJ("Êç?^.bZ á?Ã$¶lÌ ¶¿Ï(gEnOÂ?Oš:À\Ëörã…þ?› íÜ¿V0*ÿ.•Ä¿úÙ˜c~ À™Ôµáá?íóSè6 Ë¿x‰†ÛWSпÏXûÅ¥Îä¿æE$¶ Û¿vÓ¨=8„Ä¿#AõÑySÆ¿º)Õ]Æã?E}hë?0QÆuј ¿Æ„‰• Ù?œ+§9’鿚p/Nzå¿\ÿçÅvgø¿É3]í^é?Ið©Ûqß¿GÅaG§À¿Ñ»¬>ï§Ü¿ Ò’OòË?ƒ»K˜YÀ‹Ýö—"«ÀÀ‚ûÿ®±ê¿dYËŽ+$×?™Éý’ÀØ¿|Þ¼®aÄ¿@g£ÒZÑ¿H>È2 ¸à?« ¦ƒ÷¿/ð:áŒÙ?Oê ÆAÈ?Q{÷Ð[žè?v‰‰¡?.7GNÓ?iB¹hãÍ?†”¼nYÇÅ?VÝAPn7Ý?‹û™Óò @F°+Ã(ÔÒ?*nïÏýÓ¿\2[ÄÔmé?¶lP#¾åõ?š™™j?ÛË?e:4ÚŸ&Ê¿Ë~Ð0o¨¿(zE+¼î?êˆ_!ó¡?´QŒëì-ä¿OÔ?¨é€å¿b¢{Ü6IÔ?âŠqF¾´¿ôr÷ ™Ä¿ó†¯¡ÿÒû·œÐ€ç¿§¢“É¿ÂVа`É?ËÍ:‹þlà¿oáÛ$$Ãæ¿ølxÌŠ¤¼?ÄÏ#QO~?4‡¨GýéÖ?{¿ÏzLmØ¿šÉêg vÚ¿·KnJQ†Ë?ŸwOFԿȧ•y3há¿N³¤ðÈÿÙa˜)‡-Ò?8gñçàÞÓ¿£|uãÏ?6 wé‡Ô?¡¯£Eú¤Ë¿Çp6‹*Xÿ&õ›2Î?Nt°ÊÅÿˆTø8H´¿(cƆ^Ƴ¿ýíbR+ÌÖ? ±ó¯¬Ý?Ø;Tp1®w?åZe"i)Õ¿Ô¼bÆuÈ?90ÉbÁ?FV5!Ò?2MÏk~¢¿WD=¯U´?8H#.Ë?Èm(Ü¿|ÿàµ×?æL´ß'#ç?¿æ¯çiTà?¦¯ífiÄ¿Â{ôË{NÜ?ÔôýɃ™Ê¿Ù—1È h¹?x¼ªðßÍÒ¿oÜÞyN‹Ý?•Ÿ;Ýßmæ¿d’'–Ì¿ÚqTÃ?œÓæl‰Ï¿ÚK5ñÜå¿`ìFš]º?šr'«?_¹¯8…Ã?SÇVåKÔî¿Ç¦{5;ßÜ¿kÏæBúÓ¿à†ŠˆÑ?'ÝÚ ]Ò?*ùÙ3dÒ·?j-ʈZ­¿ƒ DVz’ù¿ðÿÜoWÝ¿Ñ ÷„ú/©¿¸e=¾píË?`d ¹ˆÏ¿[{©† Ð?ìþ-QÄÄ¿Ø&\#Ž«·?ÚfÈž#æ¿t^‚lFÜ?ß‹-¾¿L÷z)¨‡¿~Ìo3þ£?y7û7®|§?”ŽŠ\W¿?aÒVյƿ~ìÂE“¥?¨Óz¡¤”Â?]5‘Es¿]¤1öaÉ?´)ÊÎéë´?ƒ¦ukÚ±¿Às;7%Ç?¤MißÇ+Æ?5}Ú>S¿A«Ã´pq¦?„Öî6¸w—?XÜÔe‚ ¿Z&`…Iˆ¼¿+XðRÞ<“?œ·2g$Ä»¿V‰ ²°?Œ#S–˜>•? ÿp»B·?¸ü|Û"¥?‚þéyB¼¿Ræ.ÙzÒ¿fãÔa>¿þ\µ?³lÍ?ÌéfoÅ¿d‰Õ1ù¨¿ö¤ßÈ?¤O”ªHZÏ?€ïXH?<çÕ³¿ø¢}ÙªpÒ¿_r¿È`×?øÇ„‹q%?@§—sZ.G?Öô38?Ç¿ÎKÖb3ÇÊ?=yé¢d8·¿²RÞ:‹²¿4W„L>Ò ¿†O#œÆÅ¿Ó/4Ú|á¿¶àˆùª¾?S.;Øs ?&P˿Ĺ¿äfh™Ï¿®Q‹r­ˆÆ¿~ ÷›õÚ¸¿`ééšÁ‘Ç¿×Ö¬pà¿â™^ŠÍ?‚`±ò¿° 2UË¢„?Üןø¾Ç?´"ž¤¿ã#•J±{Ì¿÷†oNÜ?Søï]€‡Ö?ôi“ý¾ýÑ?ନì!fÐ?’ב‘Ã~Ä¿;JæÈýÑ?©‡ÿbŽ‘?ÕµDŒa»¿އĽ«¿÷‰ä -¼¿ôd€5ŒÙ°¿›~ƒ†Õ^Ë? ÉÅx(¹?¿ …1JŒ?Tk£œ?CÒË™«½¿x#a=cÄ?#¨¬UßÿÎ?n›uv¾?Ñç?•)D¬?1&•úš¼¿gr XaÑ¿¦õ‡Ë= Ò¿[ÛŸ*P¤¿Òï¤ãZ£?´BTX±I—?ðpPF´‘¿²üo3W–?î™%§ÿ•¿¼A0 t¿€°Hø¬^?¨LóÏùNÐ?,a'W5«½¿²™A%¢?D‡/¸×aÕ? ¯xvbÅ¿t­`ª&À¿ØÊãv“çÈ¿¡*"]Ô·?J$i_”¿¿+ƒúj³z·¿*é_|=OÈ¿ìÓ bt°Æ¿iÁèCü°?WZ3I^3Ä¿˜ý#KºÁ¿°öáv‘°?Óî$Ë£2Â?)°5ÊãË¿¹nÄI–Ä¿°ÖìŠsÅÄ??Ž[ÃfÓ¿$IVn”Æ¿L“zyý"È?Q¦G{ŽÚ?£9ùñCÃ?°½JÍ‹SÖ¿¼ÑímXÀµ¿B™ E¬¿v]φ·¿„Ð’:¹ª¨¿S¯â‘¼¿Tm©MúuÆ?pQÏýÅ¿ÙëLnÕ¸?²õó6'¶¿ ÄÊž­69?uC‹©¿Ý‰Ã@§? †33ÚÁÊ?g¡“GÍ£?æ2ÛOÂÍ?¢=üÓÐà¿™ ä°Â?x\ˆ¡Íÿ²JF0KÃÒ?(.º­p“¿6Òí—Á1Æ¿| ûélÅ?Û¦%ƒ ÌÏ?\¡W!MSÈ¿} wÓ2¸¿ëfŸÐ?ïÔ‡q­?¯ú˜¿t ¿VºvYΖ¿¿»Jyk}¹¿\?à7× ”?½¡÷”_É¿¶¬®5~ļ¿}¨À>0˜Ò?›Ñõ|1²?NÆù¾±?¹?Ó°2¨Ì?"N}r¥²?^¤HÎbÅ¿¸°×xž“?Ý-ÔɰÍ?®QQ’í¯?غtPɱ¿Ž¯J½WÐ?í@ïgàTÎ?ôÆŠ¾¿°HÃí½׿[ÕY$_çÀ¿ —j:|Ê?”>ì$Ù?{'n5)rŸ¿ŸØÎ·Ù?ˆI‘¸ø­?ðAMïTY?þ¦-6¨?s¹hWI¿?—}º “?íj¥;€Â?b?ç8Œ|–?+?Á¿¬P‰¾8Å? ÷ÎÙ’Ð?õð¶ýžÑ?v@ø{-?d„¼“п•—Šdtд?gØ^¯&»¿bâžѿ±<¨¯çÆ?ÿŒd‡&ºÊ¿*}ÁN9Ô¿HŒ°ìÜ¿?~ŒÅy$èÅ¿¹¶¦ àÇ?Ðråvz'É?‹tÒ¼YCÇ?%­p7¶¿·ÛÔžt¶½¿}¹â,Ì?®ÝT娵¿>™ú¬WÐ?Aàõ|¼Ä¿¦ìšð;(Ñ?7ã¾äíâ?ác¨víÈ¿6ÓJƒ»È?·<=~Ä?\C ~$]¨?ú|XÂîIÀ¿Å„§8³ Û¿ýß2)²¿©'†É·¿é§_lº²¿NW²,JÀ?pËÐÓ (Æ?ä÷ÃS#ö¿ˆrnŽªZ×?îoò¥Iš¿P—V䘞¿Ø•!meô®?ÏêT£̯¿›:Ñ/Áû£?€ûŽŽpÔ¿‘×d°¶Ô°¿1Õ2Üh¢?yI!O¢ž¿6“'8ßÁ??A¦K;¿Ð¿~I 8¯?ÌU"P$”œ?:m,tžûÈ?™°øT„?Ó+~߲ɿM;Á ÕéÉ?‘.ž¬ØÁ?áè$¢É¿_@Á냂Æ?À1óiÊ3Œ?,ÝeËíŠ?Œp%mD ?®Jê ¾¿‡+|V˜TÈ?ä9Ú¤H±?Òu$⾂Ò?VYÇ?òûTµÀöÀ?:ÛÉ´=‘Ê¿+Ř“ä·¿×1ðõ¹¦¿ú/õê)ºÁ¿úƒûR©Û¢¿%½õɨ¬?‘i5oª¿w—{±±¿3hæÐ¸¿SÖËnÍ£?¥H' 4Ö?ŸkYF—€?ý`y¬‰Û¿|yÙ²¸0¶¿Ú†(ÝH«¿íÃñ-пú<±€èÊ?p¶oáý°?¦eS–u½È¿Ø/¡$Á¿J—éÚE8ß?î¤YMžkÌ¿d©‹°"GÉ?Ñ@,¹?ÀÚ8+âìÆ?õ0^öHõÀ¿$ýNbÛª«?Jó’¤—?c]Ñ ÜßÖ¿íâ‘L昲¿b—°‘pA¯¿{åÌXçÑ?ð!µ[®˜È¿ÄâÔþ£Ñ¿ÄZŽf¿úÏæpò¹?úã¢Aô¿Ð?ýÛ$;`ª¿¬Êïãô!³?ržíÙ±¿V½¹zô¬¿ÊYÌÊI¦¿®—ÊÚnEÁ?+ì ‘º¿£ÿÀþ]œ¿=xN(š.›¿ÚÇ7Õ¡áq¿ð«wwM©¿éÎéhÇ?üm{“,·?¾¥ê¤y´¿¯ 6Z{Ï©?(zQ1¤¿ÿ [1žÂ¿é$ ÷ׇȿãŒÉ.„¥¿0®½–ÑÒ?l£AÙ±º¿Ò ÖdJÀ¿6ã,5}Å¿R%‡#tOª¿˜˜ »?f‘\r·¿æ [ŸÎ?ˆÚ狜dÀ¿Â½¶ýÌŠ¹¿AŸFfa­µ¿¥´¹ëBjž¿¨ÿmS ;Ï?˜;XC…•?pÍs%Èês?6~-õwjœ?"²óe£ »?p¿Ž5¡Í?•!o:O“¿‡º´¥ âÿÀvþÊ?ëÊJ LÅ?JòÌÅô3¬¿ÒCkj™¿Ób!ŸŠš?¢×>9cP¾¿:ö1hŠ‰Ä¿L­¡ þ™?T—¸‹r£¿.Rþ¯ð3×?Eu¼¹µÖ¿ÛÇD0†t¥¿ÁþŠ™òſϊúßç=Á¿øqª)J‹Å¿ÀKÂîMw?°¡ŸàcÌ¿® ŽÇYå·¿Ì‹gbèÆ ¿ŸB¥ÆÁÁ?¼*±óР?Bp&D?ÑÉ?ô‚1->µ¿îìè1ß6Ç¿˜†£úM.Á¿ú•P1!s¿&É¥î÷Æ?úÆtÍà}¤¿ˆ±±eÕÞÿ@„Yš}³?¯á ²âÇ?–Ò.-d¹¿Ææ’‚œŠÁ¿dß³¼KÖÇ?úõåðTÃ?çš÷R-Æ¿¤ýÿÛö¸¿5L·ö‘“Á¿4žô˜ Ú¿SØ@BÌ¿ÔF¢@ÄÊ?Z>¹·ðÒ?Jy)xÔ?`&ðù¾¿šóÅùÍ¿•@¤HÇ¿^HÀ \A³?†4].È×?ªF CÃ?Ö‡²[ Í?bAìn1¿¿Ú¤sC¡Æ³¿¸­ÒN©?GÁÞó#ÍÖ¿oŸCƒÉ“¿ðb¥ Dz?mµÛ|vË?Å\¬~;Ä¿•yò­xQÑ¿ù7¥}[RÉ¿ ÑNId·¿ÑoÁÃ?¿x½)önµ?Píj»´úÇ¿À/ИMlÌ¿~êºÌ½±¿vï/ðyÏ¿ Öªçþ¸?¤–*³*©É?P<|pACË¿”MhW¿L€¿ðYÁÕ´îk? ‚pöœÑ? )Õº¦ V ÀZ¸4öwÅ¿,’΂I@¢w80wÔÈ¿JC ¥'Àcð ·êÆ¿BŽˆÙ¼Ç@:th”UٿỀ²ÀE˜K½XÍ¿ï)lF×fá?6$*ÇÙG¡?7 e`\x@Ôn B9 ?â™.Ù’û¿²\L¹Ü¿ò%ÚÕj÷?jy%ÌÀ*ÄÎ!mÕ?òÇÆÐæfÖ¿é¯ÙN.ž)À¬æÁ;é@ž vQv÷Ñ¿ªñS´z¬?:)‚SSç@H­9Å\, À)Rµ•¦Ù¿ï“´â¾?ÌB¶B½À)ÐÇ4ñqø?Kìý2mÜÝ¿@ʔܵAÉ?‘]Ì—5\@äÑùŒP¾ÿ¿7dF6N¨½?¬zR¨q¸¿÷Ï–òøþ¿¼³ù›šñ?Ÿ LÝËÆ¿ïÒåƒ*Ã?µÂ°šßû¿„!»¹cÊí?þB–V®”Þ¿_:PLaëÁ?ƒu—Çàö?ÖFŒìŸ ó¿nííꣳſüˆÁ[¨Ã? Iø~dkÔ?ñ¥…´Ì¿'yø·¿“nÉG˜€»?º£Iã¸?gq/‚üà¿Eå®-¹‡¨?0wÝMœ ¥?îæçŽJ÷æ?÷MëèO*ô?HàüPп+”Òa‰eÁ?Ü÷Ìwbœö¿dI¯êGÑ?²ŒoÎÌM©?“‡zÐ:¦?åFí݃í?y¬N ¿vÊ?ŽŸRúø±É¿yˆœá$ò™?e ¶LûÔ¿'GÄ÷Vòë?f¡–YcÏ¿ö5¬)@Ì?s©†‘ À?ÄO ±½øØ¿L#ûó¹°¿·a@&Ë?†aNõ¸Š¡¿,bé²ßã?¨{Ò‰qÇ¿ºiOz<Â?aÉ*ÑØ¯¿1—e}¾ì ?ñ •—q翞‹£‚Ô¿¿Cµí7žñ?õ…Ø7)5û¿õúÙ³L©?%\ÜŠÙRÁ¿~dTù¿®àÆÒÕåë¿Ø*Ú»¿úÎîÚõ´¼?&ù8 \t @‡3ÏÈÙ¿‘ :µ¿Ø†-%v¿:)‹§+ìú¿@GH¨-¶i?…¡ 'ÎÏ¿†Äí"Ò*ß¿k¤OGàÂñ?ŒNiú Àòo½áп_å"›Ñ¿k6~…§¢ó?C lÇeXÊ?{wTêUÁÉ¿ =®ìê¹?˜±òXy*É¿ð(¡ú€áÛ?Õˆ2í×¥¿Ë*°®™°?À{ü7RŒP?޼+¢Ñ½¿ ò;SÜ¿ýV%[Žëª¿ðƒA›¯úÊ¿€ç¤™$Ð?Èžµ¾¯|Ö?¿o—ìÀ¹?‡Ôbv“×? z¯¢ç꿼–®`_׿sM÷£2©ä?•»cH¿¢µ¿OïyºÙ¿—€tu ‰Â¿GÂ¥}ÝôË?äL©5ù?Xýµoãþ¿i‚ƒѿ喳v~¡×¿ ë]{—bø?ôóÝÅ¥°?í—>ÇõÔ´?J>8ïêË?ª™J ©ä?¶ÍÉ~¸¿£‰P[æ¿Ý݈ñ®?—Z­Ô“áÕ?%«H§4í¿š•#VŠFœ?|Ÿ<óKÜ¿ý3]>•Þ?—«ç8æÉâ¿¶–¹‚« ?MlÇêØôÒ?=õ+bÂí?¨914—<Ð?‹E ~Œ¥£?Ü'HÚ?Ë?ý­o>4Äö?/Ó—ìË¿P¾Â;ö d?ÄÒ}‡=Î?ñ˜ŽþÕ?ÌOg§õ‰ð?`íïS-ª?/Š+q¾¿|óŤùѿǀHÂÿuï?=Қ㵿äÞÑLho?2…ᵡƒÄ¿•>ø©^¨¿–\ë2Q1Ê?aÀ~áÆþƒËÓ?õbWØ?·ÈCËϰ¿Oңʿ,¾—EÎà?öW¬á,à?k 8„mÕ?ØfÜ— Ø?ÝëþŠY Ñ?„Ð F~¼?’œ×Ð Û¿jÜ!Àñ¿…&oܘ5Ó?1ã+k-ÿÖ¿üÛÂ% •ÿ€M,ñfÁâ¿>AÑõ­Ô¹¿ûÙéŒu¯¿˜ÄáÂ?(l"Þý¿|UÛFéLÆ¿”¿sÍ/©¿L›ýú›Ð?æ]`ýv‘Ý¿â ß@Kã?q›-5ú•¢?Ï–Ž¯{ßοq~­!¸â¿jlþ8šß?¡§ ÖD2±¿~ôljÍ?¢=é ‰®ä¿ÙÜ@®TÃÕ¿zO±¿Ð§|òƒä¢?‹ÊPHã¿ÛŒ½Õhâé? .H»·%Ê?2.`ÜI°¿bd@Q|1Æ?}¤1é?†d!N¸:­?†id²¿ ~;ü+ë¿°`Jø+™?@Ü'ɪøÚ?b¥Ó\^¿¿œK3?F翆4tï ºÄ¿qº0–?_4bïçâÏ¿yß;±ô¢?ºµø–|n³?ûgØ÷fÔ¿%µóË?ws«f¯?ˆ"6«=¶È?î—õÄϯ? Y¯/–¦À?Äv~ÞÍ?tp·ì誰¿¨Þ§.nοVgá—.ä?:wᢄMÕ?¿‹Í,ôÈ¿ì7mñA„‘¿ÒÀ÷ÝÉ{´¿–‚À´–šÂ¿a3>ÝB¯³?Äf>‰{aÀ¿û ÀÝ>Þ?d× B&†Ó¿-phÜ?EþQ5¡˜Ø¿ôêWü³²?±¯“ùß~Ç?LÙñ­×hà?UoA±SÓ¿4U²8®Iº¿Æ‰Ê&Mè¿£ K‡×Î?¦êb¶@Œ½¿ô~uÕÒ¿“‹Å|D¿iSéó…Ñ¿*R×q8S½¿‹2¦KD6Ã?$º d·YÀ?áèl©ÏŸ?¿vjžXÍ? ¬zäñÐ?ŒB;\æ¤Ã¿ævĬB«?@ÈGüJ±?¸Q~mT­¿ÈWã禹Կ_×áΠÿþ'îÄ“?_éwtœÍ¿ŸÝÜ5¥*Î?xeåÕ€˜Á¿BZóA`½?äñÙ X¾À¿f9p\[겿"…ÜÀ_¿¿ÛZE‘%Ë?ÈÐÁÉI‚?ØF —£s¿„ç‘˽п¢GˆÇ¿€Ûœñ§&пûÿÔ®¿ßI£Î‰á¿ƒ'hÛôž¿z]gCµ™?Ø…d4 ?¹?:Ä2˲ź?g½üI‚mÞ?–G¸µï„Ð?y03gÕ?¬Ææk´§Ã¿€t››rô¢¿Rjн˜•Ÿ¿2ꦃlÂ?ÛîßJ5¸»¿™SßÙ`Å¿î~¤ÇëÚÄ¿…oo©á±¿o£H¼ÄkÀ¿W]üœ1 Â?EAü‘¥àÀ¿ Ð:Áá?&Þ{­Ò¶¿5LgÀÁ¨¿FœÚË¡¯È? 赈ú+¿?‡Ö&RFÀ¿ÔA”$`¿Ê¿å' „DÑ¿'SË€t,á?óÀš¸Ô7æ?êša°îa¼¿vŽÌë›÷—?ëW8€I•?V£XCÂ!Ï?2øƒå?Ç¿yIÍämöÙ?Æò–¦öοÒÿçD–¿ r}°àwt?4^+¡‚?¶ûxíŠ;Ú¿õóm_ûÔ¿H4ܬR¬?ŸvÜĕƿÓoÒó€À?í*`ÌÑÝ¿ ÐÀL¿Ì?ïÊhG€¹?Igu –Ž¢?%n¾!R&Ý¿Z÷‚Mn0Ñ?k 4<À¿…~€Èú«È?A{â¡j> ?1¦\ÁM±Ø?Î1.m2âÔ¿tá¦ÙM¨Ó?È K¯3«Ã?ô:`€Ÿ.â?†‹iH¨½¿7öÅŒ9©?™Äâ«Ê¿póV+̪Æ?8&®4OÊ¿%„»4­°¿ªã»˜]Æ?Ü "OH-Ò¿D\ÔteÌœ¿­)äÿÍ?3r5ü1È¿¥¼ƒÈ.Dà¿Ýâ•ÿ°?ž&Û~Õ$±¿c;¾¬µ?Žv·æ º?jCÁua Á?Ÿ¬-B᾿‹83Hè¶¿§%áIο£®Qi«&ÿɷ±‚Å]Õ?ñ(¸·³I§?|jòÙÆ É¿-E}ã:Ê?Ž™öͥɿy5s¤€WÉ?Tø¥å2¿¿¼V ñµ¿þþ“µ?¯BFÊ¿Ÿ/$öž¡Ç?+ƒ3Ѭ÷œ¿á?£ ¹?ÔÈõ{„Ö¹?¬žçï:š·?ÐG5“…ü‘?‚£µ âÇ?vÇjööÈ?hFhö¤.ο¶sN*ÆôË?åg~µÎ?˜””Óe­¿ ñ±Ù÷ÜÑ¿K¿èñп•-ÎU!¾?XµÄD6n©?Ã(ã1ƒ?ô{±ÿjz?q~ÙX"¤¿_ÙE±¦ã¨¿óôºup[È¿§¡[á´¿–é+QÍèÓ¿6û¨ µ?ˆ†#T²f ?º¬ e®ÿ¼¿¾ÈÔâÝα¿!F}G»l¾¿tHô–¶Q¡¿ŠžÈ’Ë¿³Nâ_¾Ò?`¦.‘f Ä¿[¶Ð¡¤n?msûޤ?Ù_=k¨?4:~Û6µ¿ÂV¥mLðÑ¿‚³½{$Ñ¿È_c½%gŠ¿Ð¥ ¥á?¿jpŸŽ¬‹Î¿Å««?Ðr—h´e¢?,Xf›ƒ¥?“ž*$’8¹¿4ËZf›¤?Zœ-/§Ýµ?ªL¡Kä¿ÞõhAÿ½Ñ?ჂJ³Ê?ü}@½3×?-NÆ4Þ|±¿s;»dP´?R±âxδ?k’tk̰µ¿¨ÉÕZ˜®Æ¿¨½¬$ÎÄ?]Å| 1?ÃK+Û •¿‚€Ø¸¿“£MŠ¢Ç?ËA^>^CÈ?œ`Gönq?gÊkãÂ?Æ¿eá%í»¿Èl5•M q¿Eˆ!6ð­È¿Œ¶$@:y¨¿jÞ‰0Ê’?¤© R]R׿xG¶ ]ª¯¿®‡a/ëòÀ¿=Èäû~É¿tMî0NbÆ?”ÖE w½¶??VCYÅÒµ¿žT>8aPÆ¿DQ¸(ÀOÊ¿êÞ°ô.À?»—ŠúiÍ?e’ÈÁü«¿Î‰@ÿ Ú¼?'½vQV´?tFøAU€¥¿‡û7)“¥×?Ûü,B/Úà?¼ˆÁö?kÅ¿0ö16ôl¶¿‡æ¹ü´¿@ÑË“)B?€Oœ‡³m‹?̲é–Q¬´¿ÛÈÀ`Ç?Ù˵ËÆ¿80ÄQ¹?”ËË• ?ztDÌ?¨Sµm± Ô¿ÏH­á´×¿bîWpܬ¿-%­ 0L¾?ìn « h»¿tà¿õMR}¿í?`Á6ž?…· ëßeÍ?çþ‰MÚÖ?[N®ÊÄ?r0`Ô¹â ?ü0pE›¯¿2>±B ƒ¿—>á;FwË¿ÔÝ §T Ñ¿23¸€ö»?”<ââ&*É¿5Ž]ÀhÏ¿YlH’ïÞ›¿üÒzI0ãÌ?2Áíl2²?˜˜sÁi­§¿щü€cÊ?”lß«Ö;À?±Ú{ª¿û’—]›k‡?/¡®±ù ®?®l ©¬Ù“?ÓÀ·fWÑ?/™'më™Â?ßÏ+=1Ð?b§œ¸À¿û«¿gÕ¿úï*}Í?£gÐ.£á?€mzâ–o|¿]‰üúTü‡?¦n]¶’Ó?–â QÎû¥¿¸ãVR'ˆ¿ î죧´k¿»VK…Æg©?O.u®çŠØ¿¼: FkÏ?]±„ý鼟?‹÷àcêöÄ?\õý|À¿›®aß,µµ?Ö„ ´ËA¢¿Þõù¹?€îH‡)–Ô?êNãæØI¨?Ëéõ?¯Èµ?œè82nUÀ¿j Ôvʃª?Óšûä¶?ƒ'Ëæ<‰¼¿Cö~üJÿп–5D¿£Û¿\ ¨>ûª¿–Ϻ&ŠÜ¿ö[çÉ*Ï?fË„drº¿¼…g}Fõ¨?$“R±¿D¬¸éŠqÇ?°ìŒÀ1M£¿]èöiµ¿º‹v¨É¿§·Ðp0Ä¿¿¾ÿ¡²¿¢ßô‚­Ô¿²ùúnwl¿?ù’àì=±¿2¿qÄ3ˆ?:·bòš?ŠlY)ìÕ“?ðDðO˜®?°”ÃÑ¿•³`pçÝ£?H`†tl5È?DîÔjÅ?„m58…±?…šöeæË¿+ÈÝáúA—?ÿjˆÝ'HÅ¿@Yë`(’?êXóø¸’?,ui[GÒ?Ú{ˆ!ëÏ?õNn~nòÄ¿}ó'¾+Á¿¡–’„††À?f-´’¡úÒ¿}åÂgXỿØ®9È¿‡ùx&NÒ?¢Ša<à Ô?¹¥'þöAµ¿W:ùdÀ?:(fã1Æ?úm³²Œ³¿—o•(*«Â¿ì08“Pޱ¿7ÒŶŽÅ?MéÔz“–Ê¿~JÌåÈ™¢¿¼Ó^¸¡¿*¦ W,›¿r]– Õl²¿Æ)•߀?Ê/(7éµ?xâól‡e¿t8VãG¢¿Ê¼gSðÊ¿0!EäœðÒ¿^aK,E(Ô?ý÷úvÑ?ùýÎD¦Þ?ÄN Û­òÖ¿Eú@%}‰»¿yM³–{?·Û} QÔ¿ÌøŠ1Û¿?ÃMÎ;ÎÎ?(žç¸?È©Y¬QÛÄ¿ðúGMÇ? ¬.BZÆ?Ѩõ‚âÖÐ?œ¾`ßñº¿kµØìC²¿À©­áë„?A¶>ù‰L˜¿:†SÜx¯¿A4±žm­¿´.ÍixZ¸¿ wµ£Ö½¿.áU­ ¥¿>l|'ýÅ¿û“&:"¹¿ôÁ£<ò1¦?”T¢`NÀ¿F8sÑ÷V¾¿Mû ð(¹?÷ü¨,^Tµñ¿·ýgíà¦ú¿,p§BÙ«?CÞ…W'œÅ¿Ô±ˆôº @ՇªƒdÀsz=à¿«ÑãKøì»¿Áó;Ÿa±¿ãƒÅIÞ?‘Hjži5Ú¿|¼ž¨ÿ‹?]úµá¿3ç]†‰?C§û3Ž÷¿Z•% þ–Ä¿b¦£bÅ鼿ª\L«Ä?š°‡=ÃÜ¿.zÔg±"²?NÑÛsð-°?÷©ñ(ÛýÕ?@ Ã꾿ŒŒÊ@%Ö¿ ÎÅ?ÑOž²ƒ-à?þ-@›ëñÀ¿"«Œ>ܦ?©öþñª¿pXÁÔÏÓ?ŽÂï ïº?9.b˜ÝîÕ?ö`†áµË·¿b¯wÕ+»¿ è·Cs©È¿Açl\H†â?`Y¾H´A¿ã² ;Á¿Ccgª^Õ׿¦f%d±?>ìßT`´?oZ¡ûaeÖ?I„Æ÷–r÷?²äô€ï˜?üý]EyªÙ¿Wº§)šø?À¯K¤¯˜û?&çwСÄ?Æ€$RTƒ?}&v>Wiç?-/á¬*ì¿@]RMa†²?Àð¦Î˜¤À¿ŠœÛnYUÁ?X˜}ë_Åö¿Œ`_ÿ‹[’?nGÔŸ«Ä¿Ÿø%'J™â?ê¢0,yÁä?žLÿG<ˆ¿?›öjÖ§Ï¿t}Ö±Wö?0§jï•æ?"ÚC¹â[¿ßQCÒâÐ? &ßÄýû? _§à_)ì¿Z±Å?upéWŽ?ÄFC:׃è¿Ènò0T1½?F§hrt´¿0¶ †Œ?^j|2Tçο·~ á?ÇÒÐDgø˜?=?ï™=´¿ˆ³ãì¬r¿I³˜ØÒ¿b?™_DÏ¿S´:`ÒÈ?à.`ƒç?\?dÀ!eÛ¿jå<ä5œ¸¿ºæ³´‹Â¿ìDÍ×Ë¿ IÅñí?¾ƒy§W׿‡üôèá娿žštº¶PÍ¿¹à^d·Æ¿8âkT q±¿Vj¤Ð³¿šš¨ o’¡¿»¼Î`­á”¿;§”øçÚ±¿¥Á[@©Å?à¸Á.‹¾á¿`ÐI¸S¿”F“¢6€Ð?Nói¤`®?Í6šçÈÖ¿±ˆ}d°?x! |õ­¿¾ˆTwÎùÁ?›)#(ó¿§Cj¨Ð?ÍëÈŠ|Å?Æ«¤}¿Ar€ë4ó¿r65àåK¿8ŽFdz£?ãÄuÄBu²¿[ŒéÀ"ëã¿§ES7¸e½¿ŠmM×k¥¿•'fÚO¼¿/’¬?˳ٿ§ç$b_úÙ?yßÖ3Ùª?Z/ ËE8…?ýeú[1'Ë¿y¤dŸk’?(x0ò\«â¿\]“€‚´¿"ÍúçNÉ¿•ž/ðĿܭ„ëo?y%ŽÇý·?ÿÛ •¯/Û¿,•fy°Rê¿3¯ ¶V"à¿Ôæ5 íÁ?\}x™‘ÿKèÌHÝÕ?“MÚ®¿ÜœcTBÐ?°/âÆWö¿¢5|ǰ@¶?Cበ3+Õ?+#ÇDçWÑ?6”^/ûœË¿’DÏö4“©?Ñæ…2=ű?W« Hy±¿1ü:-4è¿3T‘Yp¸Ä¿¦“ÿG Ò?~nþ—Æ£?'L²ú&É?~B+$ÄCÐ?îH¶a«Ú¿Í•vÿ1­?R0 Ì×ú¿ç&öaÒ?âð…EO³?²½0¶òz˜?c©“ÄV.¿”²þ…¶Ç¿Øè¶sSÉ?LApˆ®ã§?ݤ{ò¿K£³`Ó¿_ë¬"rzÁ?Yží€Æ¿4&~òüÕ¿¿Ö_Ù?j¾ïŒtœÎ¿ÕKÀÍ¿-øæ¢åпr“ÿ–u:Ê¿ŸÑ†æÒ?ùø,º“-Á¿ÝþîvíiÀ?K E {Ä¿´ôfäÊÍ¿\áQÚ¥?ËךüYo¤?âÌ/¹3Ì¿?|¨8üá?ßÐ1Zz¹·¿w†mY<²¿¨àÕ‹-¡Ç¿Ó¿¶|Èæ˜Ž±¿¦o8ykض?¥Ù -,|ƒ?@n; Áú¬¿&ÇÔgÍÅ¿ö´cFh&Í?ç} ñù·¿YrãGÔ?¸¸ëÊ’nÓ?ä°k§ÜÕ?Py|/N²?Âiø»Ÿ@Ï¿·ŸiõÂ?²ryο?óêšÌúÔ? ‰ÃÀe­?ô4&çñ—?ð‰OšÑ=i?ü- 3C¨Ô?…t#ö”Á¿‚pD°âÅ¿ão8hÛ?jp(›à©?v©Ì’Ê?â½0Ž ¹?¡—‹jÊòÕ¿ÅÕß—?f}Ò—Dú§?èJ•ÏØ?Pïè{²«™¿\BÔ–!¾?LÝk{õä¿­xFyÉ¿íÌnk’Ò´¿Ê:G¯‰Á?Û\¹ceyοÁôúæÀRç¿´÷ŠÒlùà?WíA%‹ ?‘Z\«Æ¿· ‘²5‡?D´H馿˜å’Ķ¿–r÷üPÎ?ô`ÂÌ3Û”?JÚÞF¢@í?Êô×Z§²á¿<ôÓ ¸?ó‰£JÌ*Ú¿t–ß½Å? [“µ?·ëfûméÆ¿gâZ÷FRÉ¿—»­ÿá¿øh“ô¨ˆÔ?È­ÿÿXá¼pQ£Ò?Ø%bä‡Ò?þ™îQŒµ?¤h¢cDź¿°³{Nc¨?Ý…ÏjœXä?‹°ªÑ¿½Wž οùÔŽÌÊ¿Òíú¢xmÇ¿ú×Üràr§?n)³ÎÚ|Ò¿¥ò{³F”¨¿„4Lë°Û¸?ì¦H(?ÿ²¿Vج²\DÒ?]Èß(RÍ?’Ý~ÄBhÂ?q‚Œ J‡?lçlç©nã¿Pî08+ ¾?Ö[<Ê™8×?hëAR»Ò¿¢€_ÉÿQ¾¿!·ÿuõË¿Ízá¹sÜ?T¦Wæ¬rÇ¿è{›c§Ö?ð|)±Ç?)nQ5hÐ?jÁÎί¿"yHÿ0oº?›ÏÞA‡¿_¼”­G¹¿M‡ï”ôÅ?rgo3Á?Ü)S¶Ð¿ØwÁD©²¿%C{9ÎÌ?¬îœþÁÒ?üx,²¡Ù?ÂcÚøv¿ñz/)ÛµÍ?"ÊÆê¾Ü¿ßÇì†Û¼¿b–›ú³ÌÁ?ZyYÜ?éíE×ðÏ¿«£¢ýE3¶¿Ÿz©Ñ¿k&FycæÍ?û¢#)ÐÚ¿jrÀµÕTÂ?†éÀþ)óÊ?Ô¤˜þ³¿Xs~ü¾µ¼?î>*$ž¿kLO(ÆÏº¿à#1Ð{ÊÃ?Ç›ZàDNRâÞ@º¿Ãš2Õ?’¿Wiæ¿ÈÚ«Ú®¿¯»G>¬ Ï¿AÑbtIgä?!«º‰Þ¿|ë*Nʸ?i®˜a2À?ßÕ ¢'{¿?)#!̈¬¯?â6ðÃ?ÚÌ¿æ:ç%ü>º¿}“av>}»¿±ºKÞÄ?‘OÁŸÜ¿LzøUÕ³¥¿ˆˆej‚Ÿá?ÊI»Ò‚Ö?˜ ©LÝ?àݼßúÏ×?Ø.!ãÉ?óW tsÃ?€`âaB¿IíÓ?ÈŒï Íl¿é„‰ŽÏ·?Ö&ÊaÇdÁ¿òǦ !*º¿´tÍÜØ?ÁJÿO¾?ˈ’ðÌÓ¿dé'•Rzà¿©´ µ¿>Ô®*e¿ B¿Õ¯Í¿zó’ÑÕ?¢HÔÏ8w“?¾ÚðàŠÀ?çó:¼GfÂ?\ËC[³Ÿ¿0…4¿¿ú—¿NŸõvBÄÊ¿6-h <Í¿ù‘·Á¿VQ¦§‘jÅ?.}†6³¿Ø{hWÌCj?Œ¼®Ž»¿¬R•lÇÒ ?GI)z¿¸?à€ƒp=VÉ¿B¼lžð‡Ý¿ ;‹©¿Úš ŒjÖ?–~(Ó [Ò¿·wAKmË¿î‹äxFyÉ?Ê ƒø»Ù°?ì †ßBÍ¿0ám󜣂¿SS»6¬Ø?òG†®/L½¿6¼¹p€¨¿¥1@R~§?€‚¨;OÄ?›™³!Ñ¿c+òöŸUÊ¿6­eð+Å?ìñ­V†§?˜îý)Ù¯¿øÓ4 ’ ³¿¸ÂoyØ¿Wììw‹Â?¤FDñW¿ÐJ/6ôH¿¿® m7²¶×¿4rµ‡Á(Ì?#&†a÷‰¿@ëT±×æY¿ §©|š<°¿[‹'ÿЈá?Ü¿¸…ª=¿Ñü]âª?̶aÕ=Þˆ¿VÕrÄ?˜7-¬Ø3¡?axfK¨s¾¿nGÙŠÞR“?¿âKiq7ã¿&ª‘™¦Ó?ÛþC’µ¿Q¢»xà?2Ã#¨p ¿¿ÀM ø}#Œ¿™üoF—ÚÂ?v[©™ÅÒ?d|†à.X¶¿Ÿ»4#¨xÓ¿÷µ¤SU3¾¿ÓêhôãƒÀ¿r¨× /¼?Èá7urDÁ¿á{›¢½Ï¿,½âÑ¥? ·ww"¦?º ˜O1I§? P]²Á¿ÐˆÎÜÈ?¾ÖTã¸EÓ?<£Ùë3 ¿ƒ@ƒJDÖ?°9Ó4 ÚÇ?h²dÂ?^rÝA¬¶?œ½ h¨¯?þìˆ9 ³¶?fF[ÂÚ¿K¨GpëÕ?ÅŸc>òÖÁ?H]íJ¾š¿%·Í%ä¿¿,b7"@›?vBÜ{¿nú®]I¸¿Õ­]òéØ×¿š,Ôe‚¿cJªA3ÿ¢ÏN÷"Ó?îiGw¬¿Àƒ‚PuxŸ?0ílXõÈ¡¿ÁwiS9¯?¥}C”ª¤¿ÚgDrç׿Î|ú>=se?Ö§Î4ï$À¿¤ê2†?Ç¿p[)àˆ¿õæMGçô×?gÇ[ÈXAà?Ú»=†Ó¿‰ãM}”²¿E0=± Š?æ ¢Ó£?XÙ¥|’éÐ?ñ¼”WdƒË¿à+ï¬ÑÄ¿âæö±¿Iüä_gÉ?õ¯µ4ùpÌ¿þ·â –?Ñ?÷Õ¿?ˆ‹$åÕòÖ?`zažoK¿þ6sñãoË?¤¬#ðݤ¿?óÖ#b2~À¿$´Î[?GÆ¿J«îE´P{?!$ëÇ$dÐ?êÏ)™Â?_§–Jο ’`çÎпl×jY È?wÈÁåÒ?N¯2‘c¯?¤…£ì*¾¿[;Uð\!¶¿b4´}Ð?Ê:¢¦­—Ù?ñ õ ã°Ð?XQõÜEîÒ¿TDÜÌQ ¿Çep:ſܽÄFW°?$JDu‚Å?Ž>[1‰á¿ªÈ¢?ãVÁ?kΜ‡T\Ã?%ê‹ùÃ?ÒFIüŸÉ?QæÁ÷ž Ò?ÊO¬üŽöµ?VÍã=¶•Ó¿½û¿m¨tÌ¿\'îmâÓ¢¿!,\ñ„?ÍØŠ^‘¶¹¿µ%S'ò¶Ö¿ÄÕ”,wÁ?ËüqídÍ¿.òÄ#嫱?Çíô`«Å?v¢Ñ~ój¸¿@Eãîì’Ø¿}Þ—TÚ¿¼ÑÇÌ Ä?6xMlØ¿”«^À¼ãª¿Ò¾_”¥¿…A÷¬€BÀ?³Mr[á¡Ì¿Dó¯ñ#â?!^›Gi¾¹¿HÛ4Ðê ¥¿øúÄ0#›w¿\ØÆ¬´Í?(Ú™~¿ ì¹ýSM?ÔŽWï’ ¿J@س'K—?VÊÛ¤_Ó»?ý…û¡':‚¿EÎ,Çc¿?Q}Ñ“\)´¿`Ý¢„b©ž?ÜLÍ`ÎÕ?ÆU©ÛüÎÈ??~Û¨w¿?œî—|{VÉ?mÿÁ qÑ?„a‹Sààž¿ã—û¹«†Â?î"]äÅ?öÊÆ>¼?½3-ÿê~À¿(ýaôFi³?¡ä:Y!?Hv,h¯PÕ?JÒWO¿[‚JÂ@™?Ä3ô]_;Ø?–´œèÛå¿¿ìýòÒ7ë©?MU'¼%îÞ¿ú˜±ëóö«?ל#Tq±?ß^Xººu³?è:Ä _Éh¿£¬þo½¿tÎiˆ…P¡?ËgºJQÒ¿ÔÕ\š³ À?g§2wÑ?]- šb¿éO‡4¨?J*¾Š¶EÁ?@Žpõ‹®Å¿ž)ÉŠ¿¼[6MXuÅ¿{©¢U)¸¿Fxû×ó]€?3­`Ùé²?(õ~/ÓÑ?$^~i€é°¿‚r&È?‹šâiBÃ{?€¶b(ˆäˆ¿~.ð¨mÌ¿4LXC_¢¿‚¿Ø;¼Ã¿‹!Ýù¦`Õ¿Ø(ÅGÌdz¿ o ˜QÔÆ? ZÐÐJ•Ò¿•tiˆ>¤¿álâð5³¿‘ß³DÏË¿F6×yv¿?P&m¿â«¿Úuòí¨²Ç?÷òöÏeJØ¿C`$°¶?lç^䜿.&tñ2пŸ>nÛ!Þ?é¤ç_€þÅ¿ÍÕ†äwÉ¿T| +nÛ¿¡ÄU6h×?b¡òB(¨¿?¦o¨› <†?ªágçÞ§¾?DŸžSn=·¿pã%xfœË¿iÝÛ^Ï¿®ê¤ËßhÅ?-Õ[3雿0o!°¿dÎÃ7üÿNu=¸ú÷¤?ÖÈh¤¶¿di°éÿ£LÌV&³§¿:'ð p4Ç¿RüŬÖÕ¿­Ï7åÜ)»?¯Y ž—Ï¿6¥ f‹™?¡ˆÆ>н?*—uàë8³? nÇï»Yš?‚×”ÖL©Ë?Þ ç•SÂ?« ²ª¢R¿qÞHðÓ¿1-øß}«¿Ö}ÊíJÁ¿nåT0×|Ñ¿'^A M]Ó?töÚÅ2‰?H‘CýÊ¿8t0Ò4ëÈ¿UQKöúº?ì´a½¼Ú­¿Ÿ´¯hné¬?Sƒ=>"È?=NfˆÅÍ?þs¿ ðÛÁ¿#qý³ÔjÔ? /ÂàM¨áí?Ȫqm¾?-íé@ÿ6C—{t¿£ ÁH2ÀÙŒMüa°µ¿2r²Ñ@€÷ÀëúºÑ¿Ú¸ä@ãÀñBÛy×3Å¿ zö4ª,à?$¹ä=Ï Ñ?“7'S³ò?þ)Š,!Ρ¿ª 3ÀIîø¿XFl=äo|?v{Òbµ @D„€7p À<õ¤AÀ¿}åLa¡¿Îèÿ,îp:À•ûÁà€Œ@Û‹-ã³B¨?ö g7)ø¤¿LB^mRR @þsx„Ðvÿ¿;Å(°CÜ¿šU‘œ¶Ç?v â·z !Àþ›,ñ¿fÃñþÐÏ¿Üe[ô?{•·b2×?‚sw9Õ©À}¦š@7[Ñ?nšD·Ç¿Dl È>Àïæ´‹[[@|í!qË¿j`ù‘F´¿6à&hÀaîqø‚q@Èüø 6z˜¿£Iánпdɘù í@]zwñõ¿TÁ7{a¿ÇE—¾Ã¿>–ÔÈÛí¿å±B ;èü¿°4H2f¿ËrÙGoaˆ¿›—c.ù?tZhã2À$×&4´’¿ÅEI‹3rÓ?2IqÇô?‹Ú!D1@V§’iÔyÄ?˜ñ¸é.‹¿4…D“ó¿:¢- d À|S¼–&Ì—¿_âjx·?JU úZì?Ü¡Úè85@<èR$ÉÂ?òØ»ìÈ¿ò]? ¾Åñ¿O!Aâ7›ø?ÿpõKK½¿x+î82ÛοékõØô¸é?¿ 7ˆaÿ¿Pò>q ¡?àÖ-É'‚¡¿·‡ ¡NÌê?)þÿÔ“ið?ädù­,Ì¿ºÍ¹G* Ö¿ˆÐ³¼Ç?°?s ˜r˙忀D­§–G¿n-}¼?ˆR߉F¶@}§A×½öë?NµÈ¿W.À=ãÑ?aÔýÉjß¿y“(‹„¨ý¿þƒûô†ž¿rïÈÿÔ¿2‘„«É@ZòPÜó?³Ó‰ØÈ³¿e .\†ª¿½Ú:ˆá?dÆ_I–’ð¿Ú»Z÷‘ûË¿•C4OEÛ¿Ñ«àÚF@ÐuâN) ÀX›c2¾ÎÛ¿,”åÂ?èôdÆô¯¿é©øÀ®“Ò?ɯ¾ QÜ¿”M's'{¿iäb!X›ö¿ÍÎØ€l⿵;nf÷ð¨?U9_f¬?ºÏĤ:ã?˜2—µ_Ÿ×?OµÛÿ;™¿˜àV/`?VuhBƒ±á?äw—¤á?kxÚÔ¿±bD¼à?ð fM¸ö?Þ#ß¿Ä"ï¿VÀå¥b´?äSSުĿžXjO‡%ð¿˜õ åŒÒü¿í¤ª¤¿¯X‡#¢r×?|úȪ-@ þÛÍø?&“‹bºÖ¿… \(XÓ¿)R‚›±@‡êdö@ükW‡ŽÁ¿ìyAæ±Wä?CW_Da@àε´•õ¿"ëNïп‰njâ¿ÏÂý”'ù¿ýëRWÒ ý¿p4fþ`aÔ?ñ«¹a€±?Æ•8x6@…iS¾À …âHO•ç¿,Á4{ZÏÝ¿ÚÕ^›²1 @¬öá–Óè?ð§ùä«Â?Ñ=ˆäjKÀ?ƒÉ![ÜŒý?T1dÓû,²¿ÀC Q⿲Äz¥…Ó¿–óép Û×?£;:ž„8½¿!gÁ+~3»¿6ùuÏ?>õOö%oö¿ RŒtþÀkn lÙ¿Bþ’W¿ÜÌáÄò¨§¿F„¶%cê¿á¹.FÓé§?^×Rê˜Øª?ï}|Üaó´?m4€$$Ëâ?ÁeoÞ*êÓ¿™‡(LÀ¿`1¦¸ËÃ?8Ö/8i±¿öœ£±ÑÁ¿Ä×åÌ6vµ?X~ ™íXê?ìŽ\ZÌâ?83È\?Ý¿¯1pMÐÑ¿¨l€ŠMÝ?ݦ‹Ko¨Ç¿çRƒrÚFâ¿Q³Ú`„,¶¿TåQ‘/Õ¿¨IУÆÚô¿P¬WÀ¶?Ô±oèq`±?ÓpNtW&ô?¬.¤çŠ©è?@#*óäÙ¿¤üá$\§å?9Xï±^‰@Ÿ|”M3õ?ØžŒ€ßÕ¿7¿åÌ¿µ1Üj‘Kå?¢¤›ùB`ø¿„’㋹à?UÝ­»üâ?ä‡òÛÚ¿7Jä%ö¿Îºà£ûuԿЃäñ„ؿŒ½×?Xî«®Ú@ W’¯œÙοWIE…"åÈ¿ù¹”Š“@÷<ôù?í&#ò‘4Ø¿LYb3Ä·Ú¿©SæP+ûö?’Û‹îå¿”}*v¼^°¿2«˜«Ê¢È?[g&ð¿ñLÎY8â¿íø¼çõ׿÷¸‰¬Hà¿Ãïóa™Ñ?ä'L¾ÌÛ¸¿°øXª)Žl?Àwÿtª®Õ¿ªGhë)¹|?š„åè‰^£¿b €+-Ù¿‘Ϩ.Ú¿Š'«†–ñ?x¯o{:í?pÑ*ÇM¾É¿ædƒ¾Ÿ¯¿˜rH?.@Ü¿‡VITœú?€£c*ךȿÁoW4Ø¿rb`Jµ“²¿ôïвñ€Ô¿r • ¾¿¹‰Ø<½ Á¿†«ö¹R¨¿ÆbLQ ¡Ó¿$ÓËsí¶?è ˆåSúž?®òÞXÍð¿8ð`PJØ¿‰Éæ(ÜÛ¿=åÐyƾ?Õ:¥³»é¿¶µ WDµã¿zœÜ ¸?íh¬¡ì×?»aR/hõ¿7šWwϪ?¾¿ 4]cÀ­? /ŽVÏuÄ¿Éê8}t¿¿Ìkµìð;ó?¼.ô?õàÿm•†È¿ñâÈ$>¦Ô¿èÖyÿNïÁ?’=KÓiÁ?]©÷ÏœdÄ?ð0V:!üÇ¿2~u¬¾?L´’9i‹¦¿RÔ7•OпîV:µÙ¦¬¿äó™Vo Å?;­¥ÆÀ¿”)ÁF ϳ? G»•}ÿ/9oÖÈ¿ÖÒÕÕ ¹?ÊŸk }LÂ?óõ[Íñ¿[h0õ}Ñ?Ÿ (CÒ®Ñ?;âŞĺ¿Ø‹gŽx¾¿26 Þ¤°?ÝTû=fR×?70Q#ް?:SeaÚ?¬©¨œEÕ?úS•7ˆæ“?>ƒªË%Ø?NÍe»ö¸¿twÚxCÊ?Ü´`›û¸?²w¸É¬Æ?½¥TùÎÅ¿@¿¡Õ=Í?Z †ÄoÓµ?ð“ŒK†º¿7°ñ®Ò¿íØŽ]³Ì?Ì£K£Q–пúf kÌ?RÇÏ_ä¿ChòÑ÷À?S¶”Á?õ(ɫ̈̿¤üªe1Te?Àúœor?V?Ú±X—¾×¿ÈCGí“¿ºstc§GÐ?ËàºÂý„Ñ¿èu±+Ñz‘?.1ìEè„?¯¶R¿@È?ʳªËÚòÌ?µå%›<Æ? !9Ê GÑ?–p1¤¿Ü ÌmÒ¿—TnˆsAà?€GY´ZÁ‰¿¨…¦]ßQ¯?Õö2§*Ý?Kº#=Õ¿ø\/ˆ*\¹¿bõ‘Ä6µ¿¹ ýàھ¿é7–V~”Ç?î2j,yÅ­¿î3@£·Ã¿†BË à?̼åõ}ó׿g›3¢Á?ü™‘ÑxÈÔ¿®…z4¨´?žrÓ¡¶]¶?ǽ”¾'å?*QÓy{’Ý¿‰±™Ë¯]Ü?ý˜«©a¿Pî?tÃ?™ÙîUéM¡¿f‚²ïпª/ÕàŠÙ¿ëõ‘3 ¿vç‘íD¤? ‡Éô³¿l•+BJŠÍ?œ‰7hGÿ²¿½äÁÄpË¿ª¦è#d1Ó?ÒB_®›¾¿Ñ~ËI(™Æ¿ü6~_¦BÉ¿îæZ¶ý«?ø»(+vÖ¿&\ë£ )Ü?ÔV§†FÄ?¸n‡òÌdÖ¿²Ùá҉ݘ?@Ðß1㲿œaW9²Â?Õ7 êÊ?ÈÄÔ„&ñ·?´¨ Ö?Œhâd¶Ê?6Œ5i³¿ãŸÍ[$c¦?¬Ù²¤ë´Ä¿<¹öôÊ[Ú?ú'\׉È?Äi´¾¿6‘Êj·Î?6ó›p mÀ?†J†Ç·Ó?&[H–r–¿¼û.Ø4¿²‹UŸÈ?t¤šÊ£Š¾?£QÜ+¨?Š9t”ñÑ?0u’M>Ö¿]’s**Þ?Ž‹¬¤¸¿XY¢›‹W¿4#ä8píÅ? 66 ˆõÒ?Ç“»ÂÇÚ²?ÕÏ2HVUà¿$¯ŽíÖ¿Ê_“×d½¿Bêe˜ÒÉ¿cÏC}‰¸¿Rø â ¬¿Ó># V4‡?jKwr…Ö¿Í)K‰ônÐ?¢fEŸsfÏ?ìQÚˆv¤¿(ÿþ½…´¿Ü^Wc4´?¦-RX¶€¾? ~|‹Z?ƒ¿¤5³'mÁ?œN‹Ð‰·¿ÙHÒÍ {™¿ÆOjÀiÂ?Õ xEOÿÇ¿°m¼¼Á­?YJ¤É;¿¾¿:¼–²~~¦?`ôzONŠ?â)o©ÐaÉ¿¿Âî)ÔÇ¿V°Q”ïÖ?ní=:ÐL—¿JP¼»âã¿êv!‚&ØÈ¿È›Q®EÇ?%#0çú´¿•íHÖœº¿j§,ý”¹Ù?@ª:yQº?Š¥'À¿ô„% ©¿ÇÖqÚG³?â]çI+þp¿¿*¢ªnZä¿k)uˆ¥Á¿°N%ü¢Œ¿sþµÂ¦Æ¦¿’nKéh¡?0 Ô—ùVÙ?ÂúÔ8ˆ ¦¿7Pýoù¿Ó?À*XBÄ¿½e” ¤Þ¿Í Í­¼gÉ¿ŒœZ ?º?6†i”,ö¼?jH v?ÒÓyë‰Ò?Ð\ "÷«È¿S¬)ì&ÞÂ?ðpúˆã¿b¾Él±!¬?ûÐÞYØ6´?ôÏòÞˆÚ¿òZ WiÌ?Zq9dֳǿ ¢VÒ+Ä¿žPx´—Ô¿Øu…Ãv?L1""r>µ¿»ë{¡Æ¿†rùÑʿ뉃TÔE°¿õ=nr y³¿$= X4¥²¿nY‘ÜÊ¿ä}>LÑ?æŸÒ£A'Æ¿=­xGèž±?á+sœYÕ?¤ ³Û¸?™¨&kÅ? ¡ƒÁ‡hÕ¿òêyrÿп ´:U ¿¹“1¬h@¦?‡ˆç=¦WÕ?¢÷|ÉfÄ?ѰAóåmÀ¿ÜÃlZ¦$¬¿â M?¡6Ì?¾TA¸=È¿¢0»m„jÜ¿WÉ]“ýJÓ?¬û¨\ugÿ¶öƒ3 —°?5tºUÏ?¨Y> z›¿¿Ôsž£Á¿{ªËùû½Ú¿øÅÀœ[Ä?Ít<hÁ?í У{пéf¼2¿ïZ´*ß?yV­õd¸·??Ÿ³8ÆÀ¿ˆNcEº?Þ%岡³?¢”¸ÅŸÑ¿î×)A(ßÅ¿(~uŠí¿,ô¶ Ë¿fë—×@¿ÿþ|,Ì÷Ó¿´¥{„ܧ¿ æÕP´±Ê?»qöH8z¿¿ôµ;e@0ÎeLq³¿,$V‘5ÀÅ‹}TÝóοÕÍX&@@O³½<Ú?ÿŽfÈH迳61!v›§¿V÷ gœÝ?”w,C¼2±?ŽÌ!m+Ý¿ð};fª¿ Wy&›ô¿|=›Àe¿bnR½@æö-&*ï¿ÁÌEYtÔο¯s€ŒR¡?ý¥<öv*BÀŒ·mþÃ9ó?¿áÀÜÏæÑ¿t(šŽ Ô?Õk í@ô u;hý¿’Ô#Fë}á?x}®ÂÙÄ¿ŒˆØ§•ÀYœ†A Àôg “Òš¿7Ò~P«Ñà?&-À;yÜ?’@³vèÀï½ò/G!¨¿£ñ2fàØ¶?HŠ%à‰» À’öž·×@íïPdmž?ì#+ReÔ?÷M4eí ÀdƒÆ-ÞÑì¿`¢é­ñ¾¿ŒˆÆHéÅ?Vœ‚ê%m @Éλ';뿤í5‚¥¸¿Úå÷­qaÄ?jyš{Ø?´JKôA|ÀÅ^jŽ Æ—?£ÇÖK¡—?ÔÐÔ"»@,1ÿ‘ ÁÀ¯fS¿¾?†=ÞXWŠ‘¿èäê<ʵõ?¸Dª§¡N @+Ûʨt”¿?}YFD¯|À?l‹§Ü"Ù¿"Ì”× À$DAÓ,Æ?¨·=ætÆ?ƒ|– Q÷?˜WsdÜ @’úÐÂ@¢?úƒÿ̘kÒ?n"¬j¯h ÀåíµÚù?zo M’°?ê`.·È(Û?/-YÆ @²RJƒ öÀ!öõÍãu—?¥v9\›Ð?ˆ.Dÿid§¿6]ÚDÓjæ?BQƒùÒ½¿ý KðâÒ?8U݉ÜÐ?hÆmâÿË¿‹(¶Nãgã?Z NÁζӿOc, @®;Cå4 @«JêKwÒ¿À^aOƧ?æã2œsï?ɾbtˆkÀ'Ϙ|n4Ê?(Õ—±â¿;TÏv@`~æ®~ @?—"˜+æ¿2xô£P€Ä¿DÿU>ÆLû?˜ôvä™ò¿¯ïP?NÆ¿-¿ÁüÀ¿[¡…2ÑÒ @qg¦†À¢„ýJ¦É¿îs~DÑ¿pÞ),vÅ¿ ,*G…?á8)«Ÿ¿£¨†VÒJ¿ñ`—]|ù¿¹‘œ,Öø¿PW³‘ÑÁ¿¸éFªáaà¿cLbKâ?\¹*ôEø?·èû ­Íۿα.’؈?â¦A[(\Æ?;m˜Û²é?ºÜ’4Zží¿*eA‹szá¿~Šv @¤È]–ü¿ îIœ±·?m.$.Òç¿}¨_ƒôç¿û]Æ¢B¹ÀÁÿ)ã?…$=M8ì¿ÓLÈC§|@XÃWظ-@”¸‹uèß¿/ ö(¯?Í¿µü_öi@RÑ“vÝ @nÞœ´"â¿hN¨K¿Âc¬ßÎ @ÄWFñ žÀRWFz?`–?н6Ç¿‘ñÎeû›÷¿uÍ%PpæÀ#Â,w’<Ù?1bz‡ùúÙ¿(«Í[@ÓP¥êõ鿳 B½æÑ¿¨R9ïf<ÿVgŠQo•@ȇ®ˆ÷?Ip÷y¾fâ¿à--ìÜ?L·Ø›Óü?Dþî7Y7æ¿aÝÒ„²µÒ¿>¬Ïª“ý¿¿2Tïúõ?÷7R—‡ñá?î¼èÁ Ù?*PË®F¶¿ ¯“5ÚÈñ¿¦,¯E¥(ÀLåu*w׿^I¥­|§é¿×RéÿÍé?ô©¯åÚ`ú¿N:À'©Å¿k­*Í ±?N3!‚À˜´?ØlÿŽbØ¿³3Ò+y¸¿IàØ¾ß¿RSËÆPÜ?\‚4Ûá¿¿µn'Ä?væ\wé·?ú§Ú]tÏ?;è‹öWÛ¿-ˆ9íîçÕ¿ÑCˆX ·?×îÄ&7×È?šìi/“ôã¿ôL./‹YÀ?lN šj¿Ó¿±ºåàá?¡ÍàGhá¿Óˆ>:FµÑ?Îc·"Âç°¿}äß¿‚l31µŽ@ëÝ™°b¯Î¿U±sjàÈ¿(ŸøÉþ?pÇ•T¡oú?GzfÊú¸×¿/¯^‡öÙ?Æž±¨«Õ?¸NÀ¬À§›Ã°Ç?mÿ#G¼á¿UV=äW²Ñ¿–ó#é»öÀ1ë©™w~Ö?´.§ÆcÿÆ¿,Ö¯Ot°?J X|ž@eÁ1—¾Æ¿ñiç@ØAã?ž¼X”ú?”Ã5·`û?Ï#À‡%³Ð¿ªÂ·ŽÀ­…¿ÕÊ®¦ÄŽú?€7¿“̉›¿-ùõ+Å1Ý?bÈ¿H›¸«ïó?.ÊBæø¯¿¸EÑ?Q ö."Ö?µemÕYÓ¿¬Kž=µñ?$ÔGULÓ¿sè,©’?û'²gÊ¿lô¼Þ¿€fÊQ&>?ìŠéÝ= ¿r7–/’üÙ?ëVVM¸Ö?ð†`¬__?6ÎJA¡Œ¶¿º[lÊü©¿ òvt>׿{6Ѧ ¸¿3 øúæ§¶?¹aï0¢æÒ?cÏ«¤ Ô¿ÓþèƒãÏ¿ ¼ùv¿ŀ’ Qì¿d"À?Ö ã¿C±@ºgÀ¿á½œ »¦Ô¿¤y`{¬Ö¿€|«±²ÿô¿ B[‡¸ Á?X#VGJã¿n$w¥–¿…805]7Ö¿d7‹fÁ¿à”°YÜ¿ ½¿\Ýà¿]‹ù{Ç¿6F‘QhÒ?=at™êÑȿߞù%@ÁÃ?nzÎR%½å¿¨ö‘È.r¿C§úzÔÞпð_#%W+Ù¿^R­þj¿?Ƚ±¾S÷½¿¡½Lœr¦?ÅJSqÊ7×?¾ûá›­£Â¿ÕØgt÷볿¸\ªƒ–Ø?š¯ãó¹Rο˜¦%/Þ?f߈ÅÓ鳿ÖЗä†ÌÈ¿I %=Xì¿Ä Äà–ç¿ Ë:]{eп›v ±q4¼¿Ò¥oàò¿:¡¹ÞÃÈ?Ä\ãW±¿=6PPàKÚ¿€ó€ª…Õ?;iÃŽÎõ¿$Ç¥y ³¿ v0˜+TÆ¿^Ól}›à?á*X™ßLë?Hs(ll‹¿È*, Óà¿Z±Í¼Sã¿ÄKrÿ2â¿^þJ—¿ÜýÒSÃÔ¿žãJ³Å?9«¾0Ë+ñ?¬¼ì0’(™¿Çe¨Æ¿I Hñ*ö¿B·µuƒí¿æ‚Ÿ ùOÐ?aü­dÜ¿ oΛҿâråѯʿpã£à>0Ò¿à-,Ûfi±?c ×Î4 Ó¿ª„ëu3´î¿ëÊüîâYÞ?wáÿçªá¿ÌRyä?€{¿ÿEÝÝ?é¡V&ŠÔÔ¿wpr1PÄ?¦mv”\Ä¿§WÝп†.š(äå?A0&8Ì´?V©èÕØ¿¶õëŒ=X¿ï êiŸöÄ¿`¥Zb¹®á¿¿âƒ÷¸žÉ?1’oã6Ò¿’mÈe¶?÷= †çeÒ¿pTTç¿Xcjö˜¤Ð¿ØÛOºÁ¿~F 8.µÓ¿TÄF~ÜdÄ¿÷.ÌÂ忱ö*%Æ?©æé̱Ý?:!•ý^êÅ¿ p:™¼â?¹Å×~døÞ?¦$ðõé/Ó¿qáZ(ÆÕ?ÝGçÈ¿íøÄçiÇ?•MކߍÞ?‹-¥·:ë¿Jn=ÝzIà?‹-1©¸¿z…M{³¿TdÑ)»¿dµpТ¿îP…MÒ¿YÝî–¦œ?­¢@{…¥ê?þj2îgò?ÐãÈ4Õ¿~Ñ"¹°Ø²?­—?ô„Þ?†ý>Õ?ìA¾Ê¿ùËO™ò¿›ceiÉ¿QñäпŽ)Û«Ùj׿@&øü•Ú?Æð¨Ç ð?äºÆßf¸?BçžWÙ¶¥¿3¦7ŠÞÈ?äýJ¤¢ï¿À"œÇVç¿VÐs7-Ç?èA¼ šÂ¿›Vó/Ó¿²Q$´ îç¿8WO ‘Ï¿;F€r/Žå?ÀW@ýWÛ?ï%©7¹¿¦¢`qÌØ?ÏM¹ ŠŒå¿ñî¿bz·Â¿ÿ—X¿áĬ¿GqxÄ<á?݃‚ ´à¹?zãÛxoпÿní» ´Ô?E1œõ¢Ã¿PA³Ã·Ô?ÜÌ~W‡Ô¿LOL™)vË¿oÕÃÒ`]º?]ÈdÖÿÏ?¹ö~½Íé¿€¤yFLÖ¿ê‰)‰Ù¸‘?Vp‡ëkvà?ZÉ|· àÀ?nœ<+¤—Ô?I»òroÑÚ¿Ýï”rûBÒ?¯„hóŒáÝ?¼ž‘¬Z¿)4V­Å¿¸pÖ÷^Ò¿7ú¹æ?dÖ$¯Ä?DÅ%ÂnN›¿Œ®$Ùп“hކ^{å?ÂÚc ”À¿ˆ>¥Ôoð?f’UÅÏÓ¿vûUãOÏ¿ßõÒrF ´¿×Nªëî ç?a ™©Û ³?=zF—ÉÛ?Ìá'Ñê?02·7 Ë¿ ™õ$Ì©¿¤ðù¢ïÔ¸¿\ážõ?Ðg«¿eÍ¿mÎ$ÐÞ?¦Æ(a×?Û=æôAB¿¿È’?¡mÉ¿8+2Nxž¿ 7Ï£îп|:±S濪óFbÑ?4çùø³¿Â,ù½¿åœ6'BÒ¿îj)Ê¡?רI¾ÜyÖ?P«Z²Ú?Jýó>ð¬¿ýÄSí>¾Ñ?~V³Ð̣ο\ïQÂŽÖ¿Öt×KÎ?­SÖOâ?D…Å”Gø×?<ÏèÐ)¶ä¿‚Ȍء¶Þ¿Ñf0iÙÜ?c#Ͳ3Î?0Ùu’!Y«¿>ùìÙM¿JÓ¾^ˆ)€?àžÈ`uŸ?<1ƒpPÎ?rç6j×ÏÐ?ö” ˜7Õ?}'§ÉÌBÔ?ˢΕ Õ?Cüù&ˆõä?šßéV©¿e¿HÉMHà?F%¹Ê?*qL0„Ò?¤¯Bx¿W“7¶³¿d«mè7Û¿3’ÿ죵¿ù£’©×?ÐOC¾Ù–?µóo)ο1ï+¾1.Ö¿\ÊŒ•¤ÛÒ?dqõ]+Ë?y‘÷ŽÇ¿hïSИ}Å¿&ñ£ÐÉ? &º?µàCdÍ•?@hض Ô?!ƒžw“¿¿×û9Ä[пÁ§àUTÓ¿@&ΦP쿲ß ¤ä¿³Ý‚@”³¿2 âE{zæ?¹ÅýYµá?¡Oº†ÅfÁ¿GEpÂüzÚ¿š%¢M‰¯µ?oN¯”Æ¿ è=ŸÏÙÙ¿Í"™¯Ò¿|oèÃXOÊ¿$¸uþͶ?Ö¥A1žFпb"І#¡°?=¤-´Â¸´?@¥šÍÊ¿¼pûŸyš?l±+zbÈ?LÑ>ÜŠM±¿"J'¢óƒÁ¿vâШÀ¿¯bcˆÓ¿?çîËõàêῼ»îf—Ç¿uvüÕ’Î?Ê1HOÇÈ?³TvÀ£Ï?íèsšÑ?iιƒº¿?'…fHB׿iK!ÝäÊ?Œ¹ N¿Tó¯&Ä9è¿·x^)À¿¿ZÀVc©eÕ?6¿ä,Až?ÖìUåéÛÔ¿i&íÓâ?å»>°2Þ¿ÅîÜŽÜ¿öÇäRnÒÃ?ªRé–5ñÈ?ÝySÁ‹Ü?<`ñµw»?þ6£cE–Ü¿:28ÙˆÛ¿F5àSÁ?†Ù¨ ¸?–•vËï§É¿Œ.JŸÔ¿å#Va_@Ö?ìµIÑ¿‹š¿Ã9a‹Ö¿4¤$8PÑ?«0G¡Ó?h 2×øÈ¿˜×¹¬²ìÙ?ïÐnNPuп"`yngkÓ¿çEÇi”‘·?оHu¹½? ‚ÃKXÊ?¼=7iB³?¤œ\×H©?°›60·f‹?7Þƒ{8Ú?Œ g*6–¿wÇ2%#­¿cŒ¸`RµÍ¿”‰ SœÒ?67ʬŠq²¿Ä’M ­?öQØ´é?Ô‘éóÅÓ¿l\AxDGÑ¿ön•2CÐÆ¿woÿܨøÂ¿±FÔUÑu¿î›€’R”¿Üe¸;âEÓ¿Ã.›À¥¿²´,aßOß?’c·/ù×?,*ÿÒŸyÓ¿F®`ó´Ç?ùŽ*cGŒà¿Æf»1Ç¿ô^ÐÝ/’¿^xKc¦Å? Eò´¡Ÿâ?f!{5YÀ?ÙÒñAß¿¶¶¥Çgº?0áÛÍþÓ?†Þü]ž¹?0>®áßaÆ?@ŽÆ/0‚Ú¿³qÿÙŠœÄ¿Œå ÿNÞÒ?v‹çöbHÒ?œÒ>¹,Ý?ä‘.VwÓ?Aœqä^N»?{Ä·ÛOÌ¿YZ ­Hz»¿ëV‚fÎÿš®p1=Ë¿ä)èÀZ^—?J·‘~ð¬¿RXö<Í¿úÀÛ§Þ²?ÌLt aö¯¿Üýè꼿­B繉²? ~©¦³Ý?¦%ºà1Í¿Ž½Lv.À¿²Xÿ ‚Ì?`Cº&~ù¹?˜]þ=¤¿õÐmØøÓ?ê?Ly\*‰¿ÌLþÖâ?JYN”ÄLÈ¿Ãb!ÑòÑ¿x6zÃl'¸?ÔJ“í²ˆ? ¢˜¼›Ï?º’.gÂ? ¿¾ÎÌ¿ìSÑ[üæ¿Pt—2­È?ªá¼á"¥¹¿aÂøºáÆ¿¹b–‡Â?×{v+uοåÚj†|Ñ?=Xeôu걿Ã<ê«¥÷Ê?¬Sí;áüá¿W¯SÄ#2Æ¿€k¨>;¿¿~bíA-ß¿§²пd×Ìl—À¿ŒMY˜¢Hà?\mCü²?¦±X÷?Ä¿Jù5NÄŒ¹?Õœ ñ<Ý?N­õzÄ–?x¤ïH$¢Ë?e”¢EnnÞ?nÈ'7“â¿|Ò1±’»¿20G?ÒâÑ?ϹâŠ<à?4£úsU˜Î¿÷öд¸Ø¿~iÕ¬e×?VUPѰû~?µRüÿÔ°¡?ÞÛ5]ñÕ¿µ¤ümÁ£¿J= ÷¸êË?íƒw˜·¿/…£+$•Ö?le d©û²¿˜šdCl¾?k$Qò¹ÝÔ¿_º­±†éÕ?8)IööÁµ?ù%æ®öÙ?ŒÇý@§fã¿v®ÜhÕ¿ìvãDŒ¡?ÀéÛñèzÓ¿†ãE$Ü¿9†?8…Ò¿TNáŽÑ\É¿.¶ù¢BÉ¿]«ž°r¢·¿XtωÆ?y /äŠÄ?6ˆv;µËÀ¿°5iÃýbš¿ìf`,Iz¬?q‹ÍÑZYÎ?€ ÐÑŽX¿I[g‘¨É¿FŸ©VËÑÊ¿òï^‡a%¼¿ÈãÀD5!ã¿ÎUÍL‘Ç¿&ØXüòŸ¿æº†´k×?FìëpÙÂ?[z2O¬Ð?64ÛÚBŽË? Ÿ¥ùÀÏÅÄ¿¤GÈ>âà@çH›<¨_¿h·ªõ5Ù5À ÿs5æ$¥?lQl¾ŠQ @Ñ;sÀ¯¿”òÓw3Ò¿ÈU.˜¡?E$©=ÅBé¿Ö‹» ³Ê?€f5¾r¿ôK–·™°Ó?&8»Ãâ¿0B¯¥ •µ?äY+ó@ãR~”(ý¿˜yòØõ­¿ _Ç2E‰¿Rd‚IIDÀã; õ¦ê¿ÖèÖÄ?ÔñN^ÈÕÀ¿c÷V‰@6O:R}ÿÜÏ|2Ù[­¿Úké¼tÀ?:òè{ðBMl’Ù¿_=ËbbÙ?ËmJÆ)ä¿zçaÄ®Jò?ÿÀvÒ+@ƒ›cZÜ¿>Œ-X™Ë?K=×%ì“û?›ò8G–Tó¿h|˜«?;ð?çèÒ?é¹|ô@E1'SŒ8@UÙ{ie¥?v~+pÈAá¿èdšHö?øô<†FŸ?l‘…í¼Ì…¿0šz]ÁÖ¿©Ëj2‹@]b<>Ì6À¿«t‚Ùáп¸¯%Xv­¿# žòÖÔ¿³œl÷õÀÒ¿àZzì¢{Æ¿÷’<^š¿²? ëv3ÀÇÃbÐ^zÀ ¨<†®? a[pÐÅÁ?CÄzªü׿D…”xðà?=9Œô­¿ûúMI«¿.âã¡sð¤?³ë¾6 á?úº—_>ÿYÁõï¿¿… õÅÖ @ñŠŸ?ïä¿_ü‘‚”¤Á?šm²ÀÐ?–²_Í»÷º?Ûε/vÀ·ðVBÕýÆ?“-§5œ—Í?4S¢Nø@øKØ•]ý@ŸÍd2¹?C­ïÅ á¿×ÒŸeì@H?¸z… @¹CîFĿ옟I¾oÖ?œ$Lê7…@…Ë<'çÀì?ý]›Sɬ¿G3d(í¤²¿d­ªÓp÷¿½•SLu|ý¿F‹CÛQ†æ?À`è»Ô?àÐÑ/Õ!@ Q>Kþ³Ñ?’ÀCƒÀ翨݀ÈÝí¿:î®ñA@²F;¼­s@Ûlå?Î4-·Ð¿ƒw D´û?®ÎU è°¿× +b›Í¿ˆ-ñò@.Ô¿$ÿ»ïEÛ¿v;ÌFð?¸ªßMç†?ëswCŸ2Ô?2Ù…WÚ¿ÚýÙÃ8À€]-9å¿Í÷ SàÏ¿'.GQ[ñ?AJŸö ñ¿Ï­" f#Ø?­À\óDËÊ¿çÜD¦˜å¿ï`ö¿l^””Öп#›q‹$Å¿<*)(‘ß?3šRsá¿Dd*´…v¶¿’6®”éÑ?'ô•·­Îâ?: ŸÃ&Pì?¾8N½jDë¿yŠØÚpîÛ?HFßXTMˆ¿`É>ªÎ¿AÀ¤ÃqÛ? £8ÀvÕ?rˆÃ,™¼â¿ã V¾nüâ¿÷Ò±'AÇ?…÷¦[ (Ë¿6.éÔWÉÍ?>‘̦ü$@"ûõè¿L rMU•Æ?wÀ¡hÜ @8ÖctË@Áb;Ò[Ë¿7€?¶¿è¬°»ÔGì?†iá—À…rsõ8Ê?ƒÊO>Ô¨à? ¯ä6õð?®35ËìOÀ6»û䰞ȿñ¡˜êNà¿•‰T?ÍÓ¿BáÆì>@áã^Ÿ%ª¿(Nï­Ù¿¯ ±Ç„Æû?™¦õ4ì@hÁcb-ÕÓ¿>>ó›àÕ¿ÞrÔ¼ ]©¿Ìõ‘Ica•¿ç9s"Vˆß?Îm&²ïc·?Ee.¼•Àµm>²»×ù¿–1±‘x;¼¿ÖžKÁæ¿<’_¦ëOÙ?Xšôò‹þ?"±Ôʹ?ðÌôýÓ¿Öz]@à¿cP±ð¿pq€_jä¿¶’JùLJܿ@ìë?ôÐT·yô?¿[ýÂCæÓ¿­âJ¤ÿ³?&/#Wóò¿±ÿ—}¤8ù?¬‡ö7(Ž´?g¬C‚ú0Ù¿†RK7Üá?AíƒN©ó¿^+<ìì«¿ãÙIœ#K»?£Ÿ„ŸÇè¿—F¸È vÑ¿æO7“Iâ?,{î^<Ó¥¿ÌŸ¶Ê@à¿r¯"“³À¿JnþÑ?KÌ¿Öúõî¶„Ä¿Q½:jKÍ?FÈ^¯¡Ê¿ë`Í俳UKBÜÔ?ÈòÖ8ì¿©Éwí´ô¿ Õƒ玳? @5!kþÔ¿/“>(Wê?RŠîc(îÝ¿E¿]´‚樿pDès‡Í?É xgZÖ?K•‘\Hé?ï¸ëÞÌ4¿ÀÂõíÍÞÕ?K;Ûâï¿”<¹©©¶“¿®fúrÍÑ¿XOø¡ŽØ¿`<ò bçÊ¿í²±\ÐîῪql£M;ä¿÷¦>ϯ3£¿l/~ÊÐ?&Ê>²Ú¿Þ] ,ïÑ¿Ðç!Dq×?»_ÖòÀ¿Bà–2Ü¿Ž8ôñ4óÜ¿F À*¹Ú¿áZx zíæ¿c!„ }eà?û©ú"Â>Ê¿YAÈu«Ã?fá%á)Õ¿QAl¥å(ö¿º÷7ž¯Ù¿ýC$ÒÌ¿pY>›ñ¿BòÕ`2ÆÑ¿®è' ˜Øà¿°@† ¾<ë¿åáBBbÐ?2W¡n£ë¿g~èõ«×¿(CeœÐ÷Ò?Šq…ÅZÅ?†/eZà?†t²Ô€¢¿Òy{ˆ]½?Ú1mIû®õ¿ž¬;í?&îÓñ?r?ü Û?ƒ…Y”é«Î¿ž9A|L̳¿3éÒ¿1XžxQ“í¿¨~&]¸Ó¿âñ·+Ë…¶¿©è£.õfÖ?à)Q [¶¿L§msÂå?Ï«‘ÝZŽà?¹b&4FEð¿ŽþòðÆÔ°?0ø/¶º›Ò?êˆGã«wš¿Ÿê­Ã;Ü¿ [«Y"˜Ê¿ãe%u6Ù¿Ômªè²7Ÿ¿ÔI=ñß¿«ZÜF(ß?'ÐbÚ¤º¿^¥zë/³¿xžQÎL–è?¼Â“K¶¿¿`·H8Hì¿x‹ý<|#×?­'EŒ4à?yÍ…M±?Óèþ°Õ¿Hɉ«?ƒÍyhÛÜ?¨QÇböÑ?$ãÜ®/­Ò¿”š|ŠÚ·?çÖúAÿŠiÀÉÙ׿¾½ªÓ‹º?¥çá’*Ò?W÷¶à?ï%öï´?UŠNxÒ?Ú"C&—±?ÞâæÍ ä¿þ+¿˜, ¿¶°Þ’οÜßäÂ0‚Ç¿!—ÌÑúÚ?·ØªÕäß?µ€è<ƒ·¿ ž* [‰Ù?~‘êí=ê¿e}—´pùÔ¿€Zœú ^®?¿òdÒ«•â?¸xîÑÕ?¿Æe­r«¿xM:+»¿_è>J¢ Ê¿ ä°)¶¿G%êÙýˆè¿LÅúµ\)ó?=–{”w~ù¿a’Öûäe’5ếª:d!`8Ü?‰Ô» e®Ù¿Þ } êþ׿aß¹¶%Cø?„Æ}ÍåjÕ¿0W/c¯ð?ã¢yœñçÜ¿+”„ºÚÜÍ?B¸\€F”Ý?ó™·þÕ¿ºw=º«Ð?@ÒóD’Ô¿En16.Æâ?_Éå´Ì¿²"ÈÔ×?‡HâTÔ¿è™Ò¾iп8& ¯?Š?³O¬ÿÁ±?ô*ò1DØ¿ýj:¾uŠÐ?¹¨—G’ßÞ?¾dѹ[£¿Òp·Íé6ã?Ô!ƒ]SŒ’¿À<~9Åë¿Í‡tìtáé?u}.8e#Ñ?‚,‹ÿå?˜)gÜ¡¨é¿Dfgzt‡Ñ¿ ;"£D7ð?”èÊ·åYâ?ØÖ”jÐÞ¿q!<¶°Ñ?ÕT‡Õç?Œ=%º@¡¹¿þÔP뢌ɿ5‚›ŽªØ¿ìà"ßÄÄ?ĹÓm,±¿ìËà«Yºð?h&€‘Ê‚?OsŒË¿ÿ&W}HÔ?sábM¤vö?a7³µ}±Ê?JæèwÔ´Ö?”ÊFÙªÀ¹¿Pü(Òî¿ñ…Bü#æ?Ø– Zˆå?ê߇UÑó?¡o@OÑþÚ¿-iŒ Ö¿¶å7#Jâ?…ó8XÍå?`4)•‡è¿¡!W—Æ¿ú­;Í?(‘ï‰þÂ?È tØD+Ä¿âW>ôà¿oœÁ¡Ý¿áµâéW÷í?AF¼’Œá?ì”ÿ.8eâ?OˆY nfæ¿,EľÜ?0ÀÞ¿¢áÎ1Êß¿"ª.ŠhÞ¿Ç$ L†‹Æ?4«M»^Ø¿ IÒîøUå¿£Rß»g¸?:_1‚…sê¿Ò²<ÅÍ¿ÑFI3á?ø$T:©Fˆ?6wR3„Ü?`('}Tð?²Ð U ¿¸A4ü‡âä?Ø#õv@èÓ?[ÆV“‰ËÉ?¬€Ò“Ð?GAþêÏ¿ðä[±hv…?ô/ÚebÜÛ¿Ç»Š²i”?Ž…ú…`Ñ?ˆSùf¶#Ø?ÛZKۼοâöJúXÔ¿(š5ç†ÿã¿w]¬ÿæ?È|Ëùr?÷äûÏN¿LRîJWAÌ¿ ÇÔ;Ì­{¿ g 1濸Æ~Úë?Ò«Ïòa´?%Ÿoœõ×?:¨ÿ¬F8Ä¿2뺺ÌåÑ¿²‚ tæàÑ?@ofXˆò€?1]yö ð¿Žô>m.ªÂ?Qÿ¦GmÎÁ?éé•{+–ο ÁÏ¡RÔ?ÞuyO’ÃØ¿ n†G¬„¿ÄGžzUkÞ¿t¸io=‚Þ? Å"M¯…¦¿k—¸}rê¿up¯]«ÈÌ?võ’ÃÏ?>mð=7AÏ?p+Ø©׿…J°Š#Ë¿÷˜q‰Ù€¸¿$1Þ^1^·¿ @(_û±?Z‘;2X—Î?ôTîyCοkME£”w?–8Wö/À?`Õ )ÕÌ¿æ'½yýŒ®?è»Ñ—çÒ?pöõ‰Ée”¿ãÏÿ6kñ?ÈÙmÔJoð?vÁÑvz¾â?àÏ(2èt´¿<]4&QLà¿À‚¤n휿ŠÏmÈ¢Ñ?éÑBcn¶Â¿w†Àžà?ÿÀW”A–Ø¿ð[¶ø(r‡?!qà[Ø¿¸70Æ¿æƒÐQ­?«„ûÕÚ¿†ŸpÅÀÖ¿‡¾°[©©Ú¿¶µP~Ô? C!:¾Zß?lè-àê’¶¿ <Û#´g‘¿üΟľTÚ¿¯RÝØÙÿ–k{G(Ñ¿¥l 6’É?~UÜ;ïÏ¿´@‹S@¯?ô°}—ξ?-8áäÕ?‚OJwÁÜ¿‰œ®>lÔ?ŒH8y«?ÞŸà?pd#P—å¿ ËJ6òJ×?=ØÜ«„п´ÊÖD(¸¿‚Å¡©¦Á¿I þ´ Ì?‹²»L©N¿¿…Ò”ü]ì¿â×—Hö?0ô†9-Ð? Òœù1J׿ü•º[òÿćRíSÕ¿¸$âP8›¿P <Žt?~0Çúý·¿d­0|‘¿ô÷SÄ|9¬?柫·.ó¿ƒÈU†qÔ?´çÙàÓ Ñ¿ÙÂ*÷°¿§ˆøHñ¬Ø¿n¦ˆ†ŠWÿ½¤çü—Ó?· Œ®Ü?„ó- Ìz׿,e‰Yå?Ü’9ô°öÝ?j.»ÄõãÉ?a=ªñÀ³Ò¿û»(,Ï?ÇÀ$–¦?â±Û¬`aá¿¥SµÍ†dÛ¿9."GÃÁ?Ä5Z­rø·?ÞꆰÕ¿+¸êvnÿAgù´çÊÅ?˜ER ïο¹!—Ù¿@5˜#ŸDÎ?úC?nÙ¿¥iäjÓ?÷sרÁµ¿ ‚Iè ÇÖ?Buì­1f­¿²ÆVÞß¿¸àŸx Éš?{æ«Î¶ÊÔ?.PРî?€˜’ðD¿ÿ9Ø–Ó¿2â”TŸÙ¿ëÏðRRæ?xN%ˆ»ÎÑ¿øs@Ü7K€?m{ªºíÐ?Ðè|¨£Ñ¿È`Ò½ì¿ý¢69÷®?ΰjèBà?AŸ= Ê Ü¿ð÷bRî)¶¿È²kXŒ°š¿Xˆ(„â:¥¿g’Ï¥M°?2Ä‚ÁåÁ¿ K|g”„Ó?tM‡™YÖ?LÐæœÒé¹¿Ž¹fªÛ;Þ?ªWW44ÀÈ?;#0ª³?Rç<žÓ?­Yglp¤?®;PB0'ã?!-,øÐ?‘eÑL÷U°?:éo~ ñ‘?é«¡)‘êã?Œ)yœ¤à¿€Õ°ñBU?¤žÛ)†ØÂ¿V_£YÓ¿ktñÚØ¬Ò¿Ê/÷GÔ¿/²V.Iпꉵ#ñ©¿®¨T ¾¿¾ ÊÂÇ«¿oæ+a¢iÃ? ;°=§è¿<´Œ:rî?Uìà+ÎÄÕ?ˆhä"¶ÿäÔbXèè¿ÈÌ}Ã&‚Õ¿)gãjÉ£Ô¿‹¨…pâ?Hö!öK쇿÷*üÆà?EÜ$ö¹? ¹ù>Å®¿ÍjÖÁ¿HnÐ"Ž¡?²ôšZItÇ?™—bŒž±³¿ˆÉ"Aâp¿¾f¤}Œ¿¦ŠRæÎ׿H¤¾|]v¿¢Ì^|J¬?ú„âÔÄ忱0O›hu³¿ kMê©?AªZáݳä?XÛ™†¸¿<ÑçA#úÒ?påê`¬Ò¿Ñ‡x4Ç¿/ƒ›r‡œÊ¿‘æ(ݸ‰Ê¿Ö³ÒÔáÄ?B·r³3 á¿ÎWˆEòƒ¿¸Çÿ÷ºÁÁ¿µ Òöjè¾?Ý(ÿ?j;Ë?L‹V@Œ.Â?V1‘ý—à¿8AâZ^„¿°4šó”Ú¸¿H;ê'IÑ?²Pc Ù¿ð& ›Ëã?ô( ÐŒ7ã¿ô÷O?B<kÝ??ägïHп$ÓøÅ¿7 ÅÀ ¡—¿$!8nŽÖÅ?•±$ö Û¿jÇ¿²ÄNð?M¤ƒž‡bâ¿n6Á#ÿ4Å¿‚=8Þ§¿Èýœ»®êÒ?¤z½$¬À¿€¹€ñ0.æ¿i3¹Eò+Ý¿·Lº6­¹?BmpÓ¶è¿î€s+/¬?øQ2ë§Ï?®b,Õ¿E‚ò¾qà‘?áæè%—Ë?êE-žh…Ì?|(¸‘?è ûÐìË¿W8û^fßÜ?£I…×e¨Û¿TULæO¬±¿ccˆè…¿Ÿr×MvÍ?Bÿdƒ<5á¿Øs:oB¼¿ü}L8—LŠ¿•²f@A­?Àë L€¿¿¼„ú…€Ø¿òÖ,]zã?è€ÏUÝ¿ Û,ª­•?€{NÕrT¿x½, c«?Ÿñ3µjâ?= ÆZŒº¿RKø@ûà¿ã:Ò‘Í׿&£ÿ¡C鿊8í¬ÃúÙ¿8ç4¤4)Ø?ˆV28J7Ý?±È»—…Ô?q8h#ší?t.ÌßwœÖ?ê¾íç3Ñê?Pö`å%™?+„þ5ëSÙ?×:|Ú¿uÆ?Êä¿TÉqÕ¿’i{×–Å?¼ ù¦ Ó¿@4°Ø¢?PNOÆü2ÿ›ûØôœ Þ? 3—ÂîxÓ¿³»Û\Ó?6¯Rõõ»Ê¿œ˜à©Få?@\BPÀ?zpêâD¤?a"4Ò÷J¢¿q}Pò¹±?º:ž5–:Å?…ÑZ;Ón?§S!²ïpç¿-è°Æ`Ø?Èÿ|Ì?~*–´i˜Ä¿w—îV&g´?QFœ1êýØ?N ÷{9>³¿nàñøAOÜ¿te«#õî¿|Ð ·ÈˆÎ?jSÙ4g3Ô¿8l%-+ïÇ¿|°çU^Ô¿™ìøÇº¿ ÿ"ö@jÀ“È:.'Á¿¥¿p Œ8@oc @ԑ¿`øÛ†ô5Àß 5é”Ì?”È "W¥@ôW²²¾™æ?ˆûçµË†¿œ9ã@nÐ?Ç/½DRó¿Â¥Û1‹GØ?²²°û?4¡ù}L4ž??¦ ¹_Ø?A¹6w š?·ž:¿+@ɬíH$ñ?‘")‘`ö¿’dnÝŽ™¿ÏJL³yLÀ¤É:ÎÀÅbN[ö€å¿Læ½Lº¿õ5"Mœû@ÅæõéÆ2ã?£Óâ¿ë?Ut<Êí¤Ô¿fC5ºíÚ¿þ$–-…4ÀkÍm×}@Â?¨¶¡6Ë ¶¿Ô—aŽt‹Á¿z—¯|(ö¿|šnÉÂÁ¼d*F»?¡+Ò¯2 À€ã™,Šõ¿llU"Ïοf+0×íп\‚ƒÇ´?œó G0 ÀHfyk há¿L$?%/œÐ?¢9Ê»@pÎF&R@ò EW"â¿.˜€‰÷°? ¨vÐ\ú?·Vãi‹Fà¿(³Jh3–¿Ú³uta¼À?$ø„D¢&@“Ùô‚ú¿Æ±ÒÐ?`…¹Ê’¸¿küú†2%á¿N2ktq  ¿÷æqÏÔÝ¿óóë¾|8±?J‡*ü–¾ó¿}B/è À¡0UW׿;YÏ~žá¿:µ9éö¿YP1ö×@¼!õæ¿á”üc¥Wõ¿[§}ì&ÊÒ¿°jΔ†gË?®†ìÔø¦ï¿Iqi¬ÀÒ¿piN£­@`j~#Ì¿pÅ.†Šé?eJ=¡Aºê?$/X†O<пc`nõ„-õ¿¥& ÑóÙ?qòëšÉ¿õÖãcPÿò?±2Ff"@7PiÆ¿’}üj;º¿\vÙ÷8çÔ¿s¹Ïçqˆ@D†ú64{é¿t ¶@á¿ú¾Æ@hçkê Ã?Öœ-âœÙ?Ñô^ÌçsÉ?ž÷%:ö¿€©ÙQ½i À·p›åîŠØ¿âÊÙô<¨?ï%ú '@1ùškfg@Ò¡PHÝÞ¿¼ÌmÏ’ ß?ÔíqhW@,>ì³6@ZÑ- á¿×e²Ïã?T•k©»âÿ?ÇTŠÙ‘ñ¿<;üùwzè¿[Ò²ø‰É?Ylí® Ð?Öùÿpp¶Ò¿#*ÇæÀ?›ÿOGîš³¿†»‡Ë¯rå?¨«ñ…I³ÀªP‹ÖÇÅÈ?¶Ò4Ï¿«Í¿•ÏÂË3@—){oú†ÿ¿>dŽi°sÆ¿ß)­Šx9ã?Vði–Õ½?˜äL„ÒÒ¿ö„Š9è?rÒï׿ãtFÞÅá?| jrÉ]“¿¡G\Ö&¬¿^/•›®¿Zê)áá?ö²?S¹Õ¿¤¿m2ß?¨(ªp|Ýè?Åi•u…Ù?2qv;g•è¿@„8¤Ïf×?oTÎ ¡¤ô?ÁFYhß¿D½™rUÓþ¿žŽ[ó5È?ƒö£’Þ¿{¤ô[JÀÅ]¬o.¸@¼W?`EÓÇ¿7œß”ã¿ÖóajÑm@E|—™¾È@›Ôpvíð?‹÷'‡Oˆæ?ÎŒ1`Ýžò?¬ž½&.cÀ‚›Jkížä¿„å~Å{Õ¿«h/ä\Àð?Ú@RRý¿°$¿*?‹?#©êÞ Ã?MJÎæ"ñ¿®-gMÔ¦@OýˆZT¿¿Ô@^Š‹•ß?ò‹~ð?v¸À,h}õ?££@¡ È?^à \Sw¿ŽVÐPkÛ?'+¬ƒôæ¿rzâ¹L´è?´Õ0¼¢à¢¿ªÅsÀBý¿<sc(ÕÀ©ÿVâoèÝ¿iˆ‹÷ݯã?ÿÜGµ*K@Ëÿ¤ó€ ö?Rt#þïÌâ?J.ýª'ˆá?êE6lÎð¿#(£žOÑ?,²}%© ë?”á_,“Ø?ìssÞ'Jß?1Å3i'³ô?íªl B[×?¹×;èo£¿+ª’Šá¿ш¤Hô?zPäºn»?z¯{i¿?Ð;n›&Åã?gËd®`£Àƒmïšê»±?Ýþ]YyÇ?Òß´ð&¤Í¿8À%ÊN‹ë?6œwòÖ¶Ø?¾î˜#íªï¿éRŠ×™Ïð?ÆÔ{mf)¸¿[xÏBÀ?ÉT{x¬?]Ý)‰ÖÂ?ef¹¹d¦?˜¿v4C×Å?›ÐU£XÊݿЭ^êÎmç¿ëÁ𥠀ê¿`™Ú¹4"¾¿Þ«ã0znÑ¿—huÁ1Bð?Ç\ž ¢?þ¿–2vº|á?ßúJ—nã¿L¤ Ð?•„#ù0Í?ý€w]ȳß?‚A¥óZ4濇ð÷%|0¼¿?•-CáÇ¿UŸðª [Ö?Þ íF7Ö¿í¦1©ª Á?–—LºÓײ¿zÀmÅèEè¿uÅGŸ‹ì¿™ çSÑ?Zï‘)sÇ¿XUú{(Mä¿Z—½¹©É¸?x†ZÅ¡˜¿á +@ã?$H>uÂ?Gt!"濹­UM(”ß¿1þóø·Rê?ÀD®PVÛ¿’±AÃSè?4.”g„\ï?4‰$•RÜ¿èT Þ?‡ÒBFþà¿@/e8ôá¿u·“¹â׿=Û1Ó”?•Òæá@׿zVCÇ£ú?›+×´ô¿.—BF˜%Á¿qú™uØ?Z¥)EÆkæ?•MÚÛêí?nCŒb› ´?Ì&Kûä¿‹/è:Á‡æ¿gIS3¦ä¿=¸¼dÐôÉ?°æùJà†ã¿±Áµ*9éä¿ÎäÎ:H3ï?>?(WÔÔ¿l^«Û¢>¸?D/” ³ë¿s›Ô„à¿:w]Þš—Ö¿W}âë¿ ×HIÔ”É?s ¼.1…ô¿ÆB",ÞÔ¿»Kë á¿^H)Ȥ&Ò¿¸S¼ q ß¿½m$»\Ñä?O3_ÿç¿È•v7“|ã?óð¥šÑöÔ¿ÌÎ`7 ê¬?î%LÄ?Ù?‘Z/Å¿6¤²½%DØ?…bçÒŸ˜Ó?úÓ_b<¯º¿½’~  ä¿ú˜œtiéÚ¿QƒÝ¨¾?¿‰ï‡‹6Ç¿Eê’”Ø?ôÛÑ™ÉÁ?vÛ]±QÀ¿½àíOyÊ¿øïŸ¦ v?å¹D<¾¦¿\Á/ŠD²¿t Wõ@忾“(óö”Ö?kÕSç¿Ëºáš;ê¿:ðÍ Ì¦Ã¿ØŽ:ÏÆ›¸¿N|Ø<ó×?g„/’z¤Ô¿Ó¯]Xµsê?žæv—"Jó?=\´Õ]ñ¿lx܋ʿË_îŸ$è?sÅn‡“!Ä¿®âzþ² “¿…ß'•7Yì¿€pÙ€Cã?ÈŠìKqcé¿8ªZ†ßoË¿&‹Ãž¸Ç?|üoÖà¿LœqøÝÃï?õ°¦ÌTô?6ò•ãm^Í¿ªîÉ€¼è¿›•ã¿ Îr›ðžÜ?4“*4ŒË¿`…Ù¿¿ðZ—SQ7u?¾/Ë¿Ý2‰Tîgº¿Ÿôžä Ì?¹#C]¸à¿ÐÕzƒJî?à› ¾ƒÓØ?-®È³WJç¿6`Üt°€è¿OI2Ô¿ÄW¹ôº¿±ëÀƒ×ÜÞ?Ã)ùXM-é?bî­k_à¿Üó¬ÙY@¦Py›(Àôïh‰’î?¶äsºz•Àò(JƒËæ¿‹†¬¶•bÓ? YS>§gÅ¿›ä6Â“Öæ?Zp©F‘½ô¿Ô¾¶¡‘@’`œ‰¼ç?6K #Ë­á?úk²–¢«£¿+ÑÎDžÌ?šXVvë?~uÔwqпQQ0ü‹ïÕ¿ -0J-Ûï¿ÛæüV ú¿Õ+â5ñ[Ô?yhdôŸã?Ÿ?‰Pª›Ñ?Î -‹«¿˜Îû– 8í¿#É¿ç?løee¨Ï¿Ç7$Ïê\ã?öt*¯$9Ú?n¡DöpðÇ¿$\Sæ?ýr ·ÝOñ?nþêÁ¤»ÿ?¸ Ú ¾ç?¤I2n 6î¿Ó벌?Vï?\»Êæ°ñ¿žø…ú§°ÀýXéç¿UMÄóðð?ÞqsÙ˜½?‡T“kÒë¿è£qâä?\å½Zó?àÒÚ–±¶?bÞä¸'Ú¿¨§ve]‹?×Ö•ÒÀL¾í›0OÄ?Š»ìÆáÆ?|²ŠÛÖí?j i Q¿Ÿ.>.­æ?-]ÔÚÞ?(! Ò¥Ûè?¥øAÚ³ë¿ÔȪ׿[‹U‘'Óæ¿±×€‡ÁùÛ?áª>J8:Ó?®JíÛ¿V£™Œô¿¨RY‡ÊXοIØãrqÑ?Våž}4éÖ? ¦9½Ð?oc;«Òß?ÒÊL3¯²¿|<âÇ¿Ž¼6°?(zŽÅŸ|Ÿ?Ô¤%%ꜷ?.bZÉá?ôšpZ%ö?xƒÑ%ÅÂ?ÁŠ™$ç Ë?¦–T£FXê?–y?tvÞ?m~ÍX¯ç?jâ…·k¼?gÊ%ïpæ¿Î‘tâô·Ö¿6ù¬4DË?†þ\Ú?f|Ž‹È¹½?Çâ‹<È¿ðXNómû›¿Š\°«NÐ?tœ¹çVÞ?XZÆ$òKà?làÏ3®„Ë¿ÈO þá?nnŰ-ã¿®ó¯ßU'Ó¿x¸yvÜÇ¿«I%ë_Üæ?JöÛ9ºå?ü‰$ñ?\3âÝà?ò=]YfÒ?Ò.V ¹¶?Jj×àå¿ùÛ RÎ ã¿v'–OœÚÂ?h ¾Îrh×?BX! HüÈ¿Œ¦ÆO­?±dD3ûò? f’’~ËØ¿ ͤ¾Ò¿‡UóÑÔâ¿nÔ°mˆÝ¿Ïµê’׿N]€nî¥Ü¿# @Åkñ?±O§\Ò“â?ñiŽ#2´Õ¿8Û·ó`Ò?¸|CdÚ”ã?E…ÏÄö¿Œ­óU$sÑ¿ò ÖÚ ë?‹áZŤ€Ü?Xï øÆà¿ _D-]1ë¿äÆ0Á¦Î?/´Ƽ¾«¿€zíšaê¿FäõÒšYÓ¿1[6.îç?$$²—ùbð?²é ±msµ?Vc˶êAì?5ð ©h¢Ê¿|Úþ%Ÿ]Ñ¿R:E³ ä?õ5p»?NÿÃîy€é?€û)žñ?@$Ó"NË¿¥U -»»á?ðèr5A?È? ó¡Ž¸úØ?î•çâ¿Ò´Ö³®$ð?^B_>SPá?À)Gz€Ø¿L5‚P»¿öøHvMÕ?±E.~FK¿!¦V§&òÃ?Ý·{ª×?T¦ÖÜ Ñ¿ŸÒŸsv›ê?Õ®¡ÚAA¶?ð· ŒÛì?ØŠ¯Ò>dâ?/ìÎÞ¿ú˜9ÕR…´?1% üÜ ¿?³êD?!Í?B™\yǀ̿ wvÿlº¿Í1HÃ/ìû?kœÄÖ`س?l?Üh¡“¸?ŸûéP‚è?XÏþçà‰Ê¿±èV¤Õ±?øÒaó¶É?é%žGW¦²?ªÊ!¸¾?ºÁ5gÖ!鿼Õ/…RÑ¿ûáíHcÙ?.ë/®ÅÿÓ¿X67éûã¿ ˆ`–ìÐ?ÜðwµFjµ¿[;¤o¿´?Š?_ˆÑÌÔ¿¤CÑ–aaÏ¿|OIb¥l©?ÿÁ¥a†ä¿0€¦])Í?‚{V—AËοs0ŽÍ˜ß?Æ1éG:î?çNpzaÃ?J ÄËÁs忘f–GÞ?`âM‰öž¿ï€µÜœÓÜ¿Ÿä^Nä¿I¥'¤{¡Õ¿˜ŽT‡L~Œ¿Tf“%æË㿇«ˆ¤ có¿tZJN/1@ãl7ާJпøÝèTŽ˜¿Hñ~5‰Ö?¹(Må9RÑ¿±øFPBø¿@ë³ÂOGP?<Ÿøã„Ä¿ g;cÑÞ¿•ËÕç)¿¿F3ÓsÚÆ¿ÎóÀ(©Ë¿q2&‰ÚÙ¿ù¤<5gØ?;¼Ú„ƒã?ë YÏò?QD¼Ñõ³Î¿ÐÕà0^ÌÐ?ë»¶‹Î¿4zªÊ^²?ý2édÛè¿G®$â>1é¿ö˜ˆEà¨é¿ÿ)‘׿p 0 Îbè?à9°Ñ^Ñ¿>½¸›>¸Ô¿µ“t3Jǿξéxùmå¿qøy8üá¿Ø‹Y0¼é?–NÎNAÌ¡¿Ž¥ÅêË¿F"”4¿? é[ÛQØ?7Â{Áˤ?jò«Æ#‘¿ 1Ê÷¾™ï¿µÒ'èÝ¡Æ¿ŽºdíZ¤¿$yǶ¢OÚ?<‘“FXâ¿­[ïÐÐ?Z>ú<Ë¿zðKá8Ð?ôóýë"á?ò\Já8Ñ¿75µ{|žÐ?îÖËfð÷¿«†ì{ÐÿtõIüzhÂ?˜¸Q†¡”ç?°³‘r8ô¿ Š¶‰Äùï?ˆ¸ð–mÌÛ¿¨Ãx(¶ù ¿Ñä3»-â?™Þ^‘¾¶í?@Þ ¹EðÄ?,šK%Ú9Þ¿r®L±{ã?øÿØå®Ð¿9)yËœ=É¿Hg5^ãè?Àö!Þ?¾²ÿRçn³?Ÿ•·ŸÜ?îïxÔärì¿—~[fÈâ¿‚ùâ×QÔ¿V\ÚèÔ?É[°)…àÄ?&§£?=Ë¿ k¼ùÕ?ÊdáŠé¿"”ÅϦæ¿@®®ë (i¿úÂ*!›9Ø?«GL¡žç¿ˆ $ÝÛ–¼? yX+p—Ó?Ð*‡|EÌ?pU&ÊÌÝ?®û±mD1Ó?qÜ—.Ì? v[•ž¿–â÷ÿƒ¶¿"±„×ßÀ?p¨¬\BæÏ?þ9zè#‰Ø¿ý:6&Ú$õ?K«,ÿtÍ¿ Åÿ¬=¿Ž8Àƒ°Ã¿f†\ñX´¿Uz¸A®{¥¿®8TsòÒ?`~mÍyS~?rQ¸K³Ã¿Çß-Ü7Õ¿®Ìùž€kÀ?ýÂ.6\4Í¿u°\|QÏÀ?o×L2¿Þ?‚Ü]ß%Þó?½¡=v\µÛ¿Ô&VçÇ?Çèç°?Ùÿž(u$ÙÑ¿ôüâú1‘?;¼qñ€ç¿…)–þf?á??¢œ[ÃöÔ¿c±½¦:æ?H¯§°µ?¶Q@€¯¤¿?1örhvºÃ?b•Ð.eoÊ¿™¯—¢^ÀÏ?f€üJP~È¿T/»ùLÒ?Ž»Hg,PÕ¿F:û†¦ÿÔ¿€¾e]É)8¿ª#ëÊ)Ð?¡*cd³å¿\6`Õ(Á¿øV‘›Ú¿"mãTLyà?YîIGÔ?ÎÅ6í¿7ƒÔ÷ãÃ?Öj呤Ñ?Ç)—&6{Ë?£X«øªä?‚H*Aòéè?i7ëÇ=ñã¿þ"Sk»¿´,ŸÐ=º?°¾}8ZÑ?\äÄ?Ñ…ý˜KžØ¿wâæÅïäÝ?–fòxVá¿`௟ӿ&øL¬ÍúÓ¿4„¸ëÖ?°ÒûØÑ~Ó?Ö-?„¿“w?®E lá?`{)ïÿòÑ?ôÄ|ËBDÓ?hÇ7Vr¡È?œN§á)åà?Zâ¤n×ѹ¿@TK<÷YÌ?d_ŠjÒ¿üe¨’ƒº¬?Ħ))c°?&17«wÓ?C`­ûêÊ?F÷Xu¡Êå?á‘^}ñÎ?öλև„æ¿ÁÍ}Δ6׿;üæfU·?°À0z¸ì¿ˆ3í [~â¿òñóùì¿(èzQ°¿æØ°¯-€µ¿^©ó(Æñ”?`>Ë4Ð?hÇFˆÊ¿éS‰á?¾8îϳ!Ò?®ýs½]â¿gD”nDÇâ¿1òO™žÑé?5Ïàxk[ä?N•,w?È?ëqa•ÇÀ#c) ð?)ÇY&ž8Ï?Q̘½ŠÐ¿ kFo¸à?rÈ?¢¿+³Êí¿NÅ? ~‡ã7¥¿ <î82ïÔ?ËküKÝ÷׿äÔÝ6ÚÐ?Èš“iº¿Žà´è„ò§?-£Oο­¥S$å*Ö¿§ ‘[cà?T~€øi½¿~bvp#Åä?Ί·ZÈC¿?7ÛÓŽž#Ò? €YLÛ? 9K@Èáº*À‘9>²ý}Ù¿IĽ1Î@-˜ª¥ù¯È?Öm]i×Á2ÀV'Ðÿò ã¿i‡ék;õ?!„’\ÆÈ?úu¿¯Ýêó?Ω ˜¾¿wŽÿð¿  ۳࿯ú*²@9#¼î’JÆ?z·«–žÝ¿Žié¶¿ÙOPtÇB#@Bg-Øbá?Y_êÓ°|æ?à2’iw¿/ÊèWñGÀ§‹ù}rQÀxÿ0–®Éì?Ç9èÔ•ä?Æ£6Íû~ü¿ÌG•ÿmËå?`Ø2+Bë?ØÒ×¥EÄ?TŒ|i!Â?Xê!C´û¿i"uæ?0ò*·Dè?KÿHºªð?èè$-áÛø¿ëØ¥ Ñ?®7lNÚ?±H?ÿl' @|½,À˧ü¿8nh¶Üâ?K “w'á?}òÖ]>p ÀÎ:F8ø¿-¯ÄʸæÓ?Ô½ýºÞä‹?OfÎó?Ãxø–'vð?Z> àêÔ¿Ž€V‘¶¿Þó÷®,@æáß2Áz!À˦¨Ñ“×?ã%‹Ÿá¹? á”L(@fmpɺ꿠è˜V@@ð¿Øç‘@é¿„¹è3UÀoã Š'ö?CÝTi°÷À?î( |K²À¿-fMȕۿ¬R=Â8·À~–:Ôj’ä¿%Ibðç¿ÑWX1É@i%†Ê‚<ï? a£™ûå?NÖT¼„™ñ¿¤R55›ð¿çäÐÇèeâ?<®œæ«ð¿š¿æ%ÜÙ¿S‰€4Ü¿æ:"jîßÇ¿½ëÊlÃÞÇ?|­œî¿¶àñ»ý? 4‰ ´Ò¿ŠO æíÉ¿y×z KSà¿Î€/ÁÖ?©I OÏ¿—¿ãC>xä¿£me Ð÷Ê¿Gm(@PÀ€ÑþÒ8æÞ?Ð0âxæˆõ¿ e`úuÚ¿‹¨bUÛHü?´2J\ â‰?¤ä8ò#¨¾¿4k ôó?/³:Ü­ @FˆOâ€ó@ë#Ú2… Ñ?ôØ÷®@Zç¿Un×Óø?—€•|í?î4T£Õ?ý‚;EÔ¿XH]0C@)Ñ]RÀsï¿í‰é Jñ¿ÚÜí iÛ¿HÜWÀñ?êÛ„¾í…⿼ÄF Û?"Š!ÃÓ”¼¿ˆGz_Ðóó¿=*ÊÚ£œâ¿~º9Œ\ç?Û$.¤Û?\Ì‚¿P9Å¿ó™^w°!À4ï9Ðè\ä?†è¿pQ5è?/'œ"'Mð¿Sx¢ðøI@®sôÚZié?@THw[Ö?|L`]`á?ìV¡OÐHæ?>ÙÁ›0ë?7˜IÁä–ë?‘ã¹g^4@v³œ²Õ @ꄛܢÐ?Ó•ò-¢Ð?(§\L¼ï¿cÝß„H@Þ¿ åR Úëå?Zñ®Ù¿©Cïs!@>¡LÃ%@ xó¿=kahãià¿TÄã•ðá?šs¸·Ñ@„}ô–¿ÅÝ?Æà—{볿¿—8´\V @ÈQ^–L|Ø¿°¯[NBØë?¡MÐìÏÑ?RÅTÍÈŠò¿úo ²õ?Žj³ °¿z¼Ü óÎ?ÎÎ@Á…}È¿Q“scÀw¦1Z!Ú쿤:ßp²:Ô¿ÃSRÞ@‘ú{XéMó¿m%Ñx7¥Ë?|—}¤ªá¿JVuïœöÄ?Ï-[E,õÀhl‘¢×èç¿›}¹2ë?/`Þ‘¦ â?2À‡µ?ßÒ¿Üx.~î?ISh‡—¦ä?´8ÔÊúá¿wÊí¾Ú2Ò?«YâLhÀÏ&ô1…ã?¤˜]DÔ›²?1ò• V<ç?+ëúá˜íð¿âZ)Ôâ”ñ¿øŸ•?´÷¿psfczM÷?ý¯ Q –ï?«þf«åð?“ä:dí²ä¿°Ê#Õäε¿puFGhñ¿[÷©V¯?Þ?30WîÈà@•Œ9úHñ?0 ¶ïûÉã¿­ð¬Ô·¿P`Ø]×ß¿=r£¿ö¿ö°wx¡¢ø?u»iº±Åá?h*rÐC{þ?™çv_®ñ÷¿]Àâ½F3ð?´ï¦×?Ú 1/ó¿¡h’SÇÐð?m°šÂ9·?n¬R7ê~Ý¿7ë»å?¯es'£¿@Ä1ÂÉj¿°×·¹·Û¿u/ŠQ•ï¿ø'­=Ų?sÅfÀ¿^z9›Jè?_c~Õ,^ô¿îMÇúX"ø¿óª$-³ü¤¿‘áPá/à¿CYù‰‰ô¿ßÝ)Òÿ?rBh¢á¿ f C´«Ì¿îò­˜û_Å?¼¦Í,eÜî¿rP/¥…Ãï¿n"‚ìKïé¿bûÒËŸÇâ?þQè»Vï?ÁþW.ŽÊ¿’Ú5ò?“”­ç´Ë¿º$,‹eõ¿4–‡5 y¿ÖO² Ù¿›ût3OñÒ?¢‘¿~JÖ¿8ªDójå¿£ QôáP¯?he¢‰ñ Ò?ô.ñ@¥ß¿4S+ãZÄ?€['êFÃï?¶«™žèxç¿ê½ÁîPjñ¿T¶BïvJº¿_:ƒ*6ï¿:þÜþ?ÀC*Y‚à?«'°M×ì¿A3 NnÄ?›'qzNh·?ªˆ,H¹¿IEÍ-¾Ü?HçÎ<⮿²Âb˜È¼?†âÐ?¢{UX ™ñ¿$¥p’Áó¦? Á×Ðx¤?ɶ|Èõð?vâØîZÚ¿)ÿQŽÔŽá?ŠŽRðÑÕ¯¿„²Q*•UÚ¿D‘‹nP¢¿" "4Ñê¿0S)ªÁÃß¿ÁˆXjTã¿h*³¯ßžñ?ܼëƒô¿64iåüË?â†ü_§´Ä¿ð"drvgÊ?útÉ}4Ú¿ðÝÆ—ø?D{´t÷Ô?±dÖ¨\fõ¿ To„ì¿?ý#âÖÚjå?J6ö_¶é¿°®–-¨Ó?Ì“OÖ ô¿Ú·F±Ù‰Ñ¿ÞíC̹Ûû¿†¢‰ïñ¿ÆÇÎU´õ?'uد2õæùº"á¿ÄUB®ãåË¿Ž‡Êb¡å¿&ÕeBbÚ¿ÂHaA"×Á?ÿuw›º-濎1l€oð¿¾nYÎRÉ?j$9â?ŽK 8„N·¿°Ë›‚¡¸ ?þƒgõ-翤3JÈAâ¿våJ‘”*é¿ P_f·d“?yB Ø"yØ¿ÖÒ–Vìuò?÷òE¦RÚ¿2ò Hù;¦¿ëŠ›>z®æ?>›‰²gûí¿›(OÚþÂã?[‘ƒ…²=翨%~±ÎÖž¿WÃùïB©Ò?zx¨ÜÔ?G,¹áQç?p¯;íß@¾2Ù?0oô?j ¯(Ê¢ë¿NÿeÍ6YÏ?¾fÖ0Ô?¿¿ï;è?E}<ÍœbÒ¿¹#[Ã]â¿ÐäôÓ º´¿°`ät½ë¿°ÒˆTPuò¿ÇŽAÖàß¿óèG¬a?æ?k=œê­šÅ?«&qo¹ñ?1¤p°^ç¿7MJó½à?ÆR*Ç(Ü?ò]³pâ¿D7µÉcÜÝ?´MOÉÅíÜ?¯=8I07Ö¿eržÞ¦¸?„Õ¾Dâ?ˆWZÐÁ¿åå×á\Æ¿}®Iµt;Ï?@O!°v?v]ëTÇ¿2 i¾â?ð˜ Ó¥:¹?jPï‹:ÀÓÜí'Ðñ? ýšÈUÝ¿þyŠ;Z黿hZ–;Õ,ë¿féþ¡$ÿ<¸Ç‘ Ê? ¿ð?º¤Mæ´¿ÀRå?`QØz]p¿÷§ƒ×ÆÓ¿n¼|ß0}ç?¤7Tì^Ò?M}Qä›åñ¿è\g¥1cÃ?΃ þNí?Ùw0K±4ã¿[›Òœâº?ؼÅJOîÚ?d§–Rܦ¿ M%9jà¿Ó¼íC% ð?D±ŸCBƒÙ?Aí OwÄ?ã4]ñð?Bf~.¼jÐ?±ÂSÙ3í¿]ßþþ˜æ?ô«?!€±Ê¿8Àñ'yÝð?i5î§Ûä?£C‰°þËð¿xjnk²öž¿}õL¯7ñ¿RÊЛϕ@›=ªõä³@Èn%ò‹ÏÀüûB5òÀ¥ú`ödìÆ?2'Ž…ÚÐÕ?K]Ÿc8Dã¿}ãÞO¨ãÓ? ¶‰=…æÀ ­*VHpä¿ØS ÛI @yË™5eÖò?sg®ü«ê¿âZ÷¿.Ê?Ö¨YGššÚ¿b†,FÀË?äDD¶Í?5™ËŠ ]Ô¿:~–VÙö?J‚Ë9ô¿œ­mðù#Ô¿â·Ÿ…Ñ¿„‚±ŠQÑ?š¬úfrã?0…õT¿À¿ÿ>Ž¥må?M½@µ›â?Ž_ÖQ¡›È?ÑOzVH±?/atª“3⿦­ŒµB|Ù¿¹9k“'û@;a˜ÐÛÀr° ;H"@b¶oÂ"dæ¿÷ýý:™ò?£ÛõG£ò?–Þ+0ñ?$kö I'ü¿QOÀÆP³Ñ?ëS]Å@Ð ?Áfv?–´/FÁó¿KCë´Åð¿ ê±OPÆ?§¼èÕÔ¿¨ QÉVü?8mè´}ø¿¤+ Gà࿉6‰ÜmÅ?½$Êk[¦¿sƒ8³¡ì¿:‘éÏ*ÿŽ·#Ð$Æ¿ªë¦Íù?Öö-7`¶?á"¨Ú#Ó¿PŠqÑ=­Ú?$§‘é]í?^ œ(ÎÑ?Ë€ÒYõ?쑦•ïÔ¿™tI…Œ‡Õ? á­VÌ(¹¿Þôx¤†öÙ?¸*/ý^Á?ÿ³cuå?š¼UG¢ˆá¿VEèÒ¿¸ÊYö€Ý¿¹ËÜñeç´¿´ß±ì¿Í'é;÷×?ÓG†×绿_†ÁݬVò¿Zý?omyå¿ô&¥_yÉß¿ýrjt"wØ?[ïºí?çC°8¤…è?ã98i§7Ä?K‡ËÑ»á¿k9ÄùáçÇ¿BÀ¡}"Ì¿¤Ò˜Á«½?‡:pÆÝñ¦?Œ`bðO÷¿8/âè°u”¿ Zïw·(à?æ%äí¢×¿‚J´zÉ¿1òÎ?çª9bFè¿™àl^PTç¿uÜIx·?æRª0_ì¿£wÔ˜à?^µ8‡Ô¿?ó¿7weÈ?œÉÕB@°Ñ?«îftu@\X‰é9Yõ¿ôÜ  À¿mö¸âxðÁ?gKµúkã?’ ºªN ÀSÐTÔ¼æê¿‚f«MsÊ¿"Ê óñ?ˆ8±%¶¿ä°J1±Ð?˜‚‘Ð4uÒ¿h÷”°äë¿1`쎿š&˜þûß? "˜»©Ø¿ÐÞÍeZÇ¿W Æç|/@ûQn~迊DV¥?s࿎ü³nßå?rëS"qÖ @‹D ¹múð?©ŠÇa‡©?¸Í»ìšiÏ?”`Ì).í¿y`^ïë?PÓ> ˆØ?Ï&t­`–Ç?Ñ&|Vçð¿p?hRCžç¿um¢X¤Ë¿ÎÉ– =`Â?œ¾Ô çø¿6¨~¼²ˆõ?>é»&.ÏÔ¿„#¤9„Ó¿v‚X…Ûê¿?´ï×è,µ?ò‹k´XÓ¿nA¤Ë¿—'ùmÃï?®kíÈâ;Ø?2‰‘²w8¿Áª‹ÙP=ã?^w?.Å?Z¨྿­²:®é>Ù?¬ÊV™T뉿¡¤†Í·?N/ DÉ÷?RzžfX•Ê¿WÒh0Ô¿B±çHªÔ?ò¬¦¾$˜Ê¿ì¦+bÁÛ?Óá²¹=»¿h$)g»Zè¿RüR¦Æßá?)ú}úË¿Ü:­î“@ ÉI›^—è¿+ž •bµ¿ º8rמã¿8ÒQ÷Sý¿kÜÒâXõ?­Õ‡¶ÒUà¿;pêØÏ¿þÍùtûò?ñ¥Ü‹É?¢ ïÙ¿ûü;’7Nº¿£°S=n†æ¿n=%ÉYÒ?ÈVþ`-X¾?·ƒ ™ÏKÛ¿Dò¯5 ¿õxWÙ)Óê¿ê d\¹¿°_á+ù?ÝîxX¾?¡ ˜bÝÊ?£—_ØÚ¿$x̳ªH¹?Š®E„óÜï¿ûoEÅ|Aú¿Âc0'vtò?ÉB2¿cJð?S?Ϲô?Ã,°V'óÜ¿%^á¦.Üá?8b"pÜÒ?ÓË—gªaè?PÛöü5>¿"űV¨»è?Ø(„b5cé¿È 6m À“‡X%Ñ¿L7\làªÌ??°[të¿ hòSZäã¿­(&óÃ@ ‘ò˜øÒ¿X‡'(òQã¿¢Htu£Ñ?>!QÙç?º‘ÐÚËÈ¿ÔFž¥4OÜ¿ù†AtÉá?žËQiZð¿_†˜å”!õ¿‹dáé(ï¿¥"a²ä¿`—“L‰Ç?X &È´ÙÔ?ÜnUø\Ó¿#hú!©éÍ?)ÐzÜ&Ç?æ.È·¿IX(høË¿j°`Í£ð¿ÑûHµžÎ?(÷¤Àê¿îìCæ\Ç¿¦ £”Â7â?ê¾ò. Ê?õ…)¦Îò¿œÞÖ«µöæ¿¶/ø¨#¦É?BÝ–T·/Û¿ÊÉo?‹§¿ø70Öç:‡¿À\6ñ3b?!½ÚS?ã?âJ®«íÛã¿ÕBuÁwÀ¿õ`^ë¿ZöåÜlH•?²?‘wÛῪêÅv¨&é?U­ÖÅÁÑ¿Áº¼Ù£é¿J½SÚ?a\*“õe×?Ž•³²Ð@:OÕé[Ê¿@“¬³nÌ¿×ß¶*üê¿@JªòSí@?ü‚e€Èþ¿ýP<í5ç?t¤~7⵿ۚ”[Ùá¿Û†-ò¬‘ú¿¦’ß±IÆâ?5^¡±í©Ä?kkÃw[dð¿XOX}µÛÛ? «1nuê?%¾pV¸¬ì¿.~j˜jÎâ?-ÒüN›ì?4iÏÕué¿Xmq&’«æ?–Úa~|ä?ö ²=®¿=\«=‚‡»?o;ÞeG!É¿è^IUJÚ¿LêÀ®†ÂÓ¿'7¼±,Ã?Àˆi–ƒYÏ¿`v“àf¶?‰ðcWŸÛ¿SVÛ‘ÅÎî?2Ph÷/:Ö¿·yÃÍ&Õ?`kDt–¿8ø˜aÒlæ¿@á›d£æ¿<»–èeï¿ý‹rÍ;â¿kƒ›®“ê°¿ˆÂúbåÛ¿˜u¾•Ìá©?ÅÀDëÔ?¼¯”VŸt÷¿¢ni!œÚ?‡ðý±1xÙ?8οUÑÞ¿T´3î&å¿ÍIó }â¿Ô!±ÊÜ¿®žìcªÎ¿UE±lȳµ?ØyŸÇ”ùÁ?ÃÔ_Ò?@ãðmœà?*–ç.3à¿q‹”·ö?H·ÞÊLÿ¿dÒ›Z,ù?‹Ï)Ê8Ô?(»±ÿ*οàê§´àÍÚ¿ÃÜ_Ù«úÏ?UÚCô.bÒ?†Êó©á¿!¿}Ú€æ?pRwéf‰é¿–ïdõqD·¿ŽOž|¹Ø¿£þIn#Ô?$i©§é¿‰>éb©5Æ¿(m´]º±®?‘ø3r“Î?lIXÌ›Ôð¿`wç‹ã¿½ÉᤋNÕ?;T'Ýš#Õ¿©üRlÒë?Š_Ê!u$À¿àørŽÒÄ?íg¡û¿S›²¶U„Ô¿á†y_ØþÓ¿¨×åfÃŽï¿'S‡Ôó¿ Èúñ‹Mñ?ÕQ¶ 2Åñ¿@'5°ø¿ë,×]˜è¿JP9õÒ?;ü¢ZIà¿6®cúÛÅÁ¿ä憣Þ?v’ÖI}Ù?ä`6ç†Ý?ÐS×Îne¿•GÝŽä? Ï3þ;Ç?³iŠnWÁ¿éäáSfîà¿R¨ŽÄçîã¿R‰ì×%ë¿à·ýœúŽ?Iˆi|²Ü¿þÌóµ'fп ëÿg*ì?0L ì‹î¿ZvÑÀœ¿¢øÀÏ?Jjî³ùRÕ?Ð^Ê…ÎØÐ?FGß`Æ¿¤üÀ whÚ?²6¼¿ÇÜ¿ @:vb Ê¿ŽÒjëD½¿¿{äÔÆà?\žÎC:ñå¿>˜ò¶ÜοÌîë„SÞ?¬'*F}y»?/TçyhÉ¿°ƒïÔç¿ÐN<ï%Ð?.ž•Èÿð¿cåÁnÚæ?´ØÃR#ªÕ?N[Ò±7Þã?Xg¸Î/½¿k»¾SöEÉ¿Ú^Î$ƒ&Á¿×‹¤eëj׿ÅUÕ–¡ý¿ÆË¸9&˜Ó?xP‡¹ùœ?zÑˆÖ ë¾?}ÿ[¸2ÂÚ?DåïâÎFþ?ß B$é?œ™­i\ã?·—)àçŒã¿pª-Ѫç?ñš Èç?$Ùø] Ù¿»\ï•Aèô?8žZ£AÝ?ñ<íL,ÜÊ¿à{”7ÅL¤?c¦ø¨èõ?Zl¹2ô¿À( }úuR?·‡iõ—•í¿ÜãŸëÚwé?CÂ{šSbò¿ãH¨xK´ì¿2›öÚÖ¿Þš®â„´?™¤Ô¥Ý·Ã¿:l‚®ójà¿Â½E¦óÚ¿Æ9Ëݾ¿!Ñ·¼FÔç?Hm‹ rò¿Õ[Œç{é¿9e¬‰ñÒ?¨ÒÜ‘–Ç?¨°a žæ¿ÿ‚l‘âð¿äømî?ÀœÚÑ¿QÒ Ÿ|—ð¿aÙè²ßÛ¿•TzÃìVÞ¿ °‹Û4)/À×cHÃÏ?ƒ Ö'£@€}?)ÔñØ¿Ãe ZWã¿‚º@“ Í?½Ý~¬*ó?£m]×…MÀèØ±z–¸?A¨9ùeDé?‚ñï€ù¿<ë‚ƾ¿ÂË‹ô²¿á°ymØâ¿6Û´Fà.@Ý8hÀA© â?Û¿ZT…òd3æ¿8€_¾ûù?;Ô¬ìbÀûÓW—Û¿h”í§ÁBå?Ä2S†uRÿ¿såðN¤§ý¿,ð*¾„œÎ¿Rn²§¨¿Ž©ŠJŒß?%<éèCø ÀVJ€g¾Úë?=(ÞÀÇä?"cj· @¶döLs @ÈGé.ëƒè¿0„Ä›üžâ?ÛG-Ù²aü¿Åe¬øfÍ?JË‘\0·¿!+…Ë+›ç?ˆØ?Y@c˜iÁÄ´Ù¿‚-K¨$ç¿eú×­ßá? „ÌÖ–mô?Â΃•¡È¿¦ÍÛìß®?‡‰Û&i¼?zNLcørã?ŒhƒÅÓ?¼Ž¡)Êï?ú߀eñô?8÷„'Ó^À\ä ‰æ @½w„fý¯Í?&£Àë<—ÿ¿´4ûc@ÙoúíVô?Ü*@‡ Åê?µ‹­r6÷?˜|ÄàJ…@%?.÷äÒ@ýüI3ö?bS¯ãmï¿›.fÄ@×ë?»Äóoט²?ÿ¼já¿jböëþ¿ä?‰EêÆ³Ý@ñú$r)è?ýösÂ’?4Pzšµø?8ó#Ú ×ã¿[Bб⿤ÖF"jÛº?É QUª à?îa˯’â¿‹xgÞ–õ¿†'ö‚9Cé¿GÊÕ–à®à?Ô¨ûâ?aí¿&Òé’ˆAÖ?™R}^Ðí¿WK•ë›ð?æŽÈ-3wä¿V•a¥S"Ì?ð%6ċӿò‚’|oEö?w ‘ £í?ãÀÊW¥@÷pN¼$åÑ?ò/·“*’á?*"/ærß?¤ÆlíFó¿Z mŠ×î? ” Ü¿:æÇf´ð¿‘`\æü`@{V¨Vÿ“‘«·pÒä?ˆZSlžý¬¿¸ï GÞ?\o±è¨ð?Ž`(ÿêØô¿ö‰i¥ÿ@ÏŽA²qªù?ˆ_Ÿ˜o¢õ?=¥LˆúUÜ¿h p«%Àø=B7÷¿p—.©ùâ? ÎÕ}Êð?Eà M×A"@¼æQ@[…>€Ê¿à½G’-$Ä?iÐ “üÃó?sYžrX¸ø?„‹pG&±ã?ä~Ô¼Ò¿èÿnûRø?Wð½=ý¿ ¾>ê¬Ìé?®¢jµÉü?¹.àlFè?IA!˜‹é? EÈE(Ú?™Ah'èÀ¿ò¨p-¥å?áÏŽ£^û¿µu9(ìØ?|n¨,àQ¿=@ÁOæ¿X À´Ò꿺¥®ìÀÍ?AE¦áû»?¾è\Di¥ñ¿·Ø- CË?Іׂóëè?j™ Ulg³?ܾÀ„[Í?wRÌ#Á+Ý?âÏl¢=ûÑ?8I,aÌ¿òÙ#µÛõ?øí„óp?O"¢ãdÞÞ?½QR"+ø¿hD*•kF÷?uñí•ê¿ K¶¾Þ¿©Ò°ð?1”uήGë?ì‹F/ðÌ?~¶ÁC«Ü?Ê.\s¾>ö?:Ï®å–SÒ?‚ÎS–Û?¥hMQÊTÀ?×Ù© qÚ?¤@/ â”ë¿Ì#x¬¶ù÷?Ëš¡á‡ç¿ä"ÕO—Ì¿ðõ«ïð–?ù$~ÀO{³Î÷?éþ˜Ï<ä?¹R‚{rR@çlÈ0ü¿×¯KáMò?D$½@»ñÞ¿þˆÃåW¨×¿¨ŸÝž[Îí?dµ­>©Î? …~ÊÌ¿q–ý|º¿ñ?ËÄá/Ï#¹¿=sØëHÿ¦iª‹SÌ¿~:ad¸ñ¿ÎòXxÊ­¿ºöMôtê?h#µR\­?Š£m׊fâ¿XΧJ߃æ¿í{þZ'è?æÚ¡ì7ÏÜ??wn^î?&­6†ÑÍ?"ý@_FQ¸¿x5B)Q¡å¿E2–ñ!Ñæ¿Ì*¹Ú½6À¿-`ÓðÕè?rYoôSî?„’»­õ?Ku)#ãù?ð×®6ôÝ¿à‡ùvša‰?*d±pï?÷«¿¶Üù¿áÎÂʾìà¿uâü¬-¸¿É¦Q,Œ"ó¿ßB¿[úÂÍ¿(Õ3L¶â?¶ÅC5"ê¿ óá2ŒÇ¿çš\Êìdæ?îk\¾2æ?A)ÛëDп“ ¾Š=Îè¿z +¶˜Ôí¿¡¨¡ûFGè¿ÖÞsÓEòñ¿ ˜ONu|í?C¦Ì íë¿Øç]X}â?n¢3ªGÄ?¡˜?òu—þ¿*¯¬Ì¿Òæ>)JŠí¿6 -/éú¿}Ô’})â¿~²¡'ïñ¿#«…åã ê¿’Ãf‚Ñ¿œ÷‡Øñ¿º^p2'´?bTCÞ³¿ßdḚ̀¿÷P×Wvñ?ÕÂ"fÈä¿ù51hŽÇ׿½ŸÄ§¬ƒù¿‚f2î?ˆù¬²0˜ì¿¬X ‚Óê?(Ýìdšã¿°Ë^g^­?p“iõÙܿޛODÚ(Ð?µlJX²⿬ØEZ:êÕ?\Á.uÕÖ?‚,j]óð¿Ï6»N‹ªà?ÖÛâIHž¿òÁ?üä¿$½‰»‰RÓ¿»EI3Ô?kà±ËYÙ?wU#M9´ò¿\œWôoŒ·?ö™Š)Ašá¿¥•‘úÝQ¸¿l¤Ñ&ú翬F$ Dpõ?î¯Rð¿FC~Hòýè¿¥LXXºÏ¿žl{þ£î?mF,nµì?m²4êaï¿öO›ýøêÊ?28ÑÙø¾?T²Ò H¬ó?”8'íí¿º=­QÐ?á¿3$só¿Ä5~Bd¼í?pOº“=ò?M·þ俲:ªHQXè¿™ê+ÓˆÞò? '€t‹{í¿|Ëë•æ¿ ),Cr|r¿rE«Ñ²£Û?pD¶÷!è¿<éíiÉ—?u÷ÊÈûÍÖ?tN'ç‡Î ¿.þ˜ Ü¿y›JʳàÇ¿=7°Ñ—(㿆›âQ72Ø?(™¯¿aV?vЄ2ø¿Ì'àWп]Þb1GSÊ¿‰1æ$Fí¿ÀåÃ* ‘?+˜Ûþã?|+4ÒƒÂù?]åž“YP@|^WQ^²×?-p]røâ¿Â Æ¿±™ô¿M $] o¹¿OF5Ü,»¿óÞ͆î¿¿˜5W^ô¿ØS‡¡ú*›?R¿üOÔÌö¿ 'U°à?Öѵ¶ÅÓÕ?‘ä£1¡¾?Nt >@åì?e ˪A¬Ñ?eÃ1ìÔÆÈ¿ˆ¬Ù˜ä¿°Z¾  ï¿ƒb_µä?6C¥ç?ÈÆ,lÓ?,æp;<@½¼-bÐõ?mµZ O¸þ¿µ¿˜ìÿãÀG|ެ³ø?‚ž.÷òò?$£”1çÊÜ¿U ^9>î?V(~B{À_Hù÷6†ù¿€— …ý?P€Ïº¿øò?¬YtqYâ?o?}k–¹Ú¿àCy6?eaj§5å¿ b´Ûþ?&è½BÿùãR0„â¿Í 7ŸãJî?Ëß¡A‘ØÚ¿žŒüxý¢è?N_1¯9õ?ÿ»O寯¿’í®’'¤Ë¿wà§0I?Æá$ëÞ¿_J2Ìó?Wrt®5KÕ?WÏ‹P=¹ö?äüEbÚ?ÊUzY@hvl8KØ‘¿èŒ…_ @¼”Ä2ÇÖ¿Ç#È»Àæ¿_a<¶gÐ?+Ì´Ð7f뿯 xE ý¿±Ëõƒšn²¿8 û° KÓ?‘¿¿È@—8‰ãØà?H,C‰Æ?˜«ÄˆÄ…ῆ1zʹÚ?9–»ˆùò?bìˆ^÷¿9Îæ3:Õ¿ ‘» »¿€¿®Ô1ñ¿¬ÖꊎῠÙZ#Oò?º=ßPÖ¿p}zÓðÕÃ?{áÀÄ6sÔ?NÁ/! ÷¿N5'ôà@åh“é?ôWeö2€â¿î³ë ä¡â¿ëaÎà+Ø?§3'öMëã¿®)ýŸ_ó?ÛÍVxkÌ?¼« Që¿wZ/‹–ä¿ÃtÆæ¶&õ¿vó)1 8È?p-P¬¹Û¿€uúù¶÷å?4+ÅÉŽë?Æ’“Ó%ï¿ûHK@æÖÃ?¯éŽFðEÛ¿(3Lðs¼¿ôÍí¤$›Ø?š'!ÂOÒ?^¤ÄÞ™Ïá?àŒz,¢à¿-&ÛûVŒÐ¿ýþ2Á*\à?\$û <º¿­"TõÊ?æôçÍÔòð¿œ?pRè¿1ÝîzHÿ?"é±—Ö?•×pÔ]ê?+Ýç*ìä?ò{îö§â?þ ² Ö¿–E´°ÊÊ¿ôZ™!ârË¿nA¡o—Ø?vî¿/»ûË?©ÜÍ ûÒï¿îDêÛ=Ï¿,òAK=¢è¿w¶ ç׿¨6{$­jÒ?7Ñí¼zñ?wäÍŸb À[Ñòšñ?‹z®’]èÍ?fŸ¬ÕZ¿Æ?ÆG'÷èÉ¿)cÍj«ç¿pVûØ`ñ?<6õÇšo¯?‹=×Ðé Ï¿ýë/ "»¿@ ô¬¶|»?:ïf'=!ø¿vö°Cá­¿Ãp¸VH‚ß¿7d,ÀöÁæ¿ܤє7Û¿\tuö$@øt£é±å¿UDÒþtâ¿–Ù=Ì=à?MúXuÛ5п›ØO÷Sç¿[ “¨‡Û?qÐ7Š$Ü¿V%ößÉåð¿©&ßõXå¿wŽJ±¬ Ê¿´×±¶$éë¿0Y9s Ô ¿¥ž¶_ÏÞ¿>„%)µú¼¿'#Èf¦æ?ä4.p æ?3føŸ+æ?>äE_+Ž¿Eð1ž@á¿.³_øÈ⿚ª•€>±¿ yzº€cÌ?Uœ×{Z×?Ñ.mšÀV잪2à¿Ú®vÍ6>·¿Ž‰- â)»?Ÿ‰=¯`Í?Ê Û˜‚å?­ç’h®¯á?8-gèç?ëwŸþiÕð?ÌÉÆ•Þ?*U…'ñé¿ôŠ EùÀ½Yé¬Îä?ŠÙÞ'Þ? 7v»> ¿FúP(ô¿¥áð½D<í?*´{=œ¶?»…a_†ð? ÿëë+ñ?ÜÀ10Øï¿…™ô÷¿,ñJäÉî?md´·û?\êW|‰ù¿zª.ö³R€?V3¡bÖcâ¿Æ<¸R÷×?¨À? Ô²¿„ËÖC”׿~ºbÛmì?~§á†@æ¿‘nØd¯ã?î4«0®¼?y~ /L¥Ø?ØÈDï¯^Ä¿n²÷“óÍ¿,¼ÿæ?ö?Ûú'ÌíÇ?Ô~˜^¦¸?>cw£Ró¿ôcøù;AÖ?/€MÜß?"S%È)Œç?´Nšå\>Á?y/T3 xî?pÓ L›žÓ?ScåÝZò?¾·‘ê4¿X jhâÖç¿Tå©-=~ñ¿óRÉWÅÜ¿ö÷O8¦Œ±¿¯táM¶Kå?K½»cÍ@=Mî¯3׿ɂ‘‚ä7÷?³5mÃïÐ?:¨õÔ‘Ò?Ì‘N£Ié?õwv ô?\° ÒÝãÏ¿ÊaV29¡ü¿]Ô -Òžó¿ègC;¯ÎÁ?qƒ‰¾QÑö?Fù g½«Õ?ꊽA ô?9Ê­?뿇Bå7štì?šuk½zä¿ ÄµÀ„é?aŸË‘ ç¿Xh—„µË?:><©@à¿~£”kƒ'Æ?0 É”â?¸Ñ·ÝºÑâ?´‰CÉÐ?öÛÌM-×?ÆK|ôr–î¿îr‚º à¿/îIj/´?2ñmåª×?bvZIÄ?BÌÑÖtä?b¤3â¿Â¿¼o‘* â? W\î6åè¿ s öÎÖ?'¶“ <í?¾Îƒ$‹Á?þ÷wDŒê¿«÷ïkMÆ?,ã¼é?þYgnõ‰Ø? ÓOáD1ÀF¥,æü?¬5Zë°@ñ]EUAÄð?¶Nöщ|ÀŠò”ˆzú?*I,ÒYä?w&…B»Ü¿íPè¯rWî? hÎ×§©ß?§«…´:ÀŒ°U±>|÷¿æ?T «‡®ë?!^‚[oGÀ\Dþˆ½8ÀQ0Q÷?¸Û\|ú£Ú¿•E  üŒ@iMçêÁÆ¿)ÙŸhK½÷?þšð­*9Ó?úñõÖ¤¹»?å³UѬöÀó¾ÅšÞyä?aÀH Žø?>ìÛ°õ?Ãz>±?.rZâ·®À?«¶Ø1'¾Ø¿@e† ÷Ú¿àuº˜°ÂÀ Iî®­æ¿´Ûüb¯só?Õ18vFÍÀ6^Ô“W¡ÀÚÒåã¡â?»ÿ‚S ]Ø?5ÉégìƒÀVâ\/Ñå¿©›[ªÜ¿nÿ™-·Ù?öÎ âšþ$@èR{\É¿¹ü;!Wð?NvâÓÅoç?;cÀ¨žò?Ü#b<޳À$X”*@ö?Lhh³ .Ô¿z¦°®  @z5"ogSâ¿:¢7ÏÕ?»Ò°ª¦ã?LÍ0éÀ­à?™ˆW×/Ýô¿ S]=Wf²¿¼ÍŠ´` ó?jµtÂl>@ÀÙªÚiª¿Ê÷¢Æ`íÓ¿ Œ×Aç¿À‹3YÎÝ?Ñè„QRæÎ¿Çl@0 Ö?ð 4¾qê¿´ž²è¿<¯,Ò¿+zM/0¼¿"LÃyhR÷¿\ø<ú0¹ó?²?àÖ׿À:/!V¿¿(IÞÁU·Õ¿Q±)å¼Ï?E Þ  ð?¶Ürªf@ ìΊð쿨þ„íÉ+ø¿l›}TTÿ¿A`‚/â—Ê¿u=}¼³UÜ?|Y’Á€ò¿ï±nâÁÀÊwt¼Å@ï늗 õ?¶0“±9qî?Áo‹ô‹Æ@8ãâÿ?y˜lñ¿˜¸ð?Ol @òíä®g„@ÎŽ¤Ú‘Ý?•<–5Zö¿GQù“ë? f&úÛ¿•¸© +þå?g6ν²÷å?=þaÑ@Ô_Š™ÝÔ¿û©DvÙ[ë?6k•!µÀfuOr_ù¿Š²áœÙÊ¿0B‘Aü¯é¿5ÜŸ½=Ý@¹|/# 8ü¿þ»E+ÀlWV$ öò?ÝÑ’á?hÂÜÿ”³å?¿–²l–Ñ?—¯*Ÿñ¿Ž:\¼ù¿¡LÓdm ÀÅw84ì?¿pQÀw"û?Ä8¹Ú§bï¿N€(¨†í À"™%íoáø¿Æü7õšŒê¿nõñú„ì?P @héò?Ê¢a}P•æ?¦O{ ¿ë¿âÂ_?ç?Tê˜NÀoã?ê’Öð?; §·Úà?Sþ.¬‡9í¿Fø2…„ä¿b—uGØ?ó¿e•·šÆâ¿$t 6Øæ?Ž•iqK§Ñ¿Š¶M3„Û?s#è»âÿ¿¦:d>È¿‰‰xT²Ú?.eVm0ù¿?ÄÝCT0×?jMˆxýqâ?·ì_Ügü¿‚M^‘1ð¿Yž^M&‰â?n+êdÀ³Ý7ºá¿}´È‡Ù¿éÆÁ´*ã¿ç{˜g˜û?°|¯¨*@Ýû‹Ü×?x¼´K"ÕÙ?=•÷“µ2Ï¿¶;oCD—Ú¿Í7"⿎‹Ò.vÞ¿LºÄ3q#«? X~ØNJá¿ÀÓ:je¿c¸‰Ôí?Ú[çÙ)ré?Td`Õ¾´?*¥+Á´¸¿¦¬fXË´â¿J Jhø¿Y™—Gžÿ¿ÊÚ2Ž–ÒÖ¿  yl3ú¿¯‹E¬Óþ¿ë¤êbÆÚ? ¢ºø˜²?¼Î”a-á¿\fóþ cÓ¿ø+ƒ,2ßö¿ ÎBìÐá¿Kéˆ33í?öÎr”¶ˆâ¿Ù½îzò?Ï,ÖßáüÕ¿|·åcÑÏà¿¢ nçå?¦)‹aD@fS‚"¥áô?*d§#”xÜ?ŸE ‘ǮѿVŒ¨ $ûÞ?3·C»¿ò?¢ü2ÎqGô¿Ò#jòºéÈ?™·Ý³Ž÷¿ƒ'ÜùÀ§Š?\MPF¾÷¿ð÷g-(‘à¿|\,:ì?bÂÃDŽ}õ¿’À–ê·?Ã|'íô?idöo¿óÏ?ŽF3é³:Ê¿¾éÔY{ñ?Æ8õßлп¯V·›Õ?žjV)ÝOô¿L1ÏOÞÉê?Äkï1uTò¿ÓÉ\ðoñ? %+Hž·ô?ÈtíÊ7¿ƉØàÒ? ,è¾·­?Ç]º}JÖÇ?ºÖXFÈ?°}…–{õ´?Ë1®àxÿ¿ñ§¿Bû÷¿Óy7mÕ&@l(‰6I@T uNÀ…,ù0À6yKN09Ï¿oA¡û»_á?PJ³¢kXÊ¿/XÔ ‹ó¿Þaõã¿ 2j4cÀWcÁ @y‚¦1*÷Ö?>Sø'&rò¿}s[¿w¶?[×é6ìë¿Ì¸|ùeÑè¿+iAúßý⿎ÉÃà?@iÇaDØ’@»C›ð¿Øj¾Þ·ü?¼Ìè Žó¿×¢Æwk÷¿ýª²ÆÖjß?Æ:Ÿ¶„ãê¿ï!ŽUø9ò?2åC†Ið¿|*žäìÐó?åB¢ âÅ?]o6"ÓÚó¿&ˆ—Ù¸@í½ø Ýô?¼b%S¤žÀþÕI\À¹šñoœ?íЈû%ŠÕ?x¥îõÉ@ý¸Ï¹‘@š=ºMçí?ògá¿ó||îÑì?ýœ´E@ÍNÕ–óã?{¹øª­¦ý?#É=”ñ¿¨&jc§¿iŠ-Tæ“À×jÈ¥ Àðñ)MðBÕ?²çBÀóa¼µõ[ã?:µ1(Ø¿6jFÆZÀ‡š³ŸC ù¿ëKm$¬@½Rbü”ƒÅ?ä¾*Ùsëê¿*ï5 ¡Ë?ÍQÂËÁù¿ù/¬z´á?@ÍÃJŠÎô?œˆ>•ÎïÁ¿«• !õÀüR÷7Òûä¿S(Å’Îô?†Ÿ<Í<ñ?4µõ}Ô?(—ð=ì?i¿_¡‹ã¿yÿ ›_Ñ? ¦¶cðþ¿mEÙæWÿ?H< ¥Zbò?gÙ½áÿü?³Ÿô¸RÑ?Éø÷¾ø ô¿^·Ä¼É?*ÉD s ó¿°nйµC@Þõ“|,׿\_œ ´ò?tíÂsãí¿Z(kˆHë?h=©ùò?ü¤]Ö—h„¿ûS%îú_ã?‰CÇÍå[@ÔÐeEM¥î¿Ö(†;Žò?"Þ&C?Õ¿éC+“˜ñá¿ãÛ0‘¬é?SÙGÐXQõ¿²“!k¥°?l†¢îR˜?ÌÒÂ~é]é?ŸY-D³©@ ®`é]Mÿ¿ÒÕÊÈ@´IÀ” ªð¿´[™Viê¿Úò†«[Nð¿äV¨2ç¿¶[ôyÿî?°HY)QÇ?†™üà¿ÒtÕiVê?ý;;s“À=o$Îâ8ú?û¡Ê$!@Š^z«6ü?ª;µ:ƒ×Õ¿ËV!Šâ À1ô X7ºÕ¿+å9qÓø À׳¡` %@ÞMFÏßå¿v\‡T`·ä¿J…¢¥¹“ @nXàÒãë?®­Ú>ä?‘î¤Rªõ?êè…Slÿ?±KàÏÈá¿MdÚ×ݶ?xË# W˜ï¿BEžûýïü¿`gmpT2ð¿åøMËB忤¾348‰÷¿ßÇÕÓiG¶?0 ÉÅ„›Ÿ¿Þ¡‘Æ4ò?Ëàè‡ô?Æ’DOÖá?z¸ÎÞç¿…fN±ðgî?¸ÍrBÛ¿¶sZ/‚ß¿C—ÊŸ~ü?À¥”Ú?‚VBÀNÚBÞW÷?1©*œzá?#ÁÑ0’@X\¿9Zð?0|ï6Ç™ë¿äY?Ã@HÒgøÀ³‚±ÌPñ¿ rý]` ä?° 1ÿœ„Àa®’fVñ¿xôl˜å¿à\wÒ™Ì?Ãc×9[WË?zß@ «ªÜ¿Èß.H¿ é?q¯ˆdñoæ?PK¤ÃÅÕ¿åËìþé?€®6còã?d_d]7J?Fl—Ž–÷¿PìÆÀ%Ím –Éó¿â¶—Ž}Þé¿—|Ž‹ z@zõ¢aVõ¿j™u‚¡Sï?P+á’ÐÂú¿{-B:ù @$9°ÃÖ?–7üœÇå?ß1°®Ò@mei÷lÀã`’C|§þ?~ÈVuÿô¿Å;gªŸÄÑ?„§¥§ãDø¿7†kjAq@¯·¤å èÿ?ˆ×é­¸¤À»ÇyhÙ]ù?›)ð@nçæw«@„K^h‚Ì?5ö|E%Aþ?=F„•é´À͈M{BÉû¿WÊt¤&Èê¿U®a…7¤È?Ç’{Ê0 ÀÛŒ­8”ÿ¿|(˜{r6ô¿N«_¸ú=𿸠8(Lõ?’J: g¶²¿ÓoÉà6¦Ö?”¶5Nc\ø¿ZßþÎÃ@@âðt>*À È$Rq÷?¢x CØ¿ü/Y)ÐÉØ?ICIN\„пG*°¦ì?f‚ åÌ?×j½þ ›ô¿p²‡ó? ZH•ìæ?aBFú?’#²¯ä꿦E9] Ê?”9“½SÊ¿¾æh]í£ö¿ɃÒNæ¿Üq·þô¿xË›sj{@ÁÝQRxò¿nÓ…pvñ?ï7Ê“™¦ü?†íчœñ¿%áÏû –Ó¿ÖÞ§ÆJç?LHåö„Ç¿šgú÷cÜ¿ºënü{Tô¿fkª»?VËZ†Ù?]ó?³@ð¿§*Ú³3Ü?¿]"Þ±‰æ¿(èjÂS™¿šãâë¬ô¿L‹"7·*í?Ȥä×ä¿Ñ~ÎÂÏ¿›&ý:÷?Ý„=fëå¿)Ý黈ÀØ1õ ¹ƒò?Dì4Œ·-´?Ú‹[_·F@s}Å´ð-ã¿ "9¥Pä?$¶Í.Vÿß¿®ÿ/¿Wø¿#&û£‰æ?¯#„{Šxû¿(¡ó‘­"ê?uXžÀ nfC£á?Åpy#γ¿MOËÖLã¿Öã5kø?WÄSk£ @êÖ˜æJGÊ?íÙÓËù¿²°}Ö¤t@TÄ7Yu)Ê?¹\Ì쥷å?§[¥>öÃ?‹]Þ,Óÿé¿#[c| À<>Œ€ÿ¿|Í£,KÚò¿8çÛ­¦À=”#æ“ð?óß!oµô?ÿ¯šŠfü¿2|y.–çé?/<5 "ò?™Õ¥¯Çd@«(i† ¸?ëš^ø6’Ü¿ê茅ÿå?Å&«µVÀàwúïпüöõÞÐå?ÀçbÓîÁø?Œ9:7ŸŽÔ¿fÀàò¿N«Üó?-U‰ÒÔû¿"õÄMÐ?Ë*}6ó?HÊ7Ž÷ñ¿·àÔ6rã?¢åå.нí?>Q.ÓUf¾¿î0}ýÒÙ?¦ž»¶ñý¿<¬+Sù¿N²²K\é¿•=®T^þ?D¡j` ò¿®h‘gßaã?Ķf|Vù¿DvÏû⺨¿iÌ©Þ]ó?ó/âC@i³Óí÷Ü?_⃠KWú¿öÓW…Ÿ@pË1e4⿉)Ð'Ñ×ò?˜Lêo«»¿Lš· ºwÙ¿†¨wl Ü¿+Uª8c¦ñ¿]aª(ˆ@(Ì2Ø/X‘¿bðhˆŠú?IVµ(+â¿ÅäQÒ?W¦d{¥Ø¿—pÎ…Ò#ó¿LËÄâ¿d¯êÃ1ê¿ Ý`3ŸÂ?p¤Û¢g†õ¿“öb¢¿=P0ÚYÔ?l®ȯ*ö?‡Ò«B}ð?¶¼:¹knÿ¿ D:ûèÚ?Ô{ f¼¿HpL+óç?«v ø2*Ý¿‹‰ò3…Ý¿Î⮚ ë¿ë+”ºû¿B„QÝ k@©°ÒÅÁ? ¢™¸õ¿~].dí¿ân°¼óõ¿ ?éàë?”}•!Ø?o|’ Lê¿'¡KtNNñ¿z:.IÔ¿ÂV{¾2€ë¿Ï«·ÊèÝ¿ÝÓÜ$û”Å¿ûC×å?¸ÇóÂõò?£¦Qçõ¿´s7Ùv«£¿T"êߢ—?JJY(Unÿ?cVüÅò­ñ?WÄVzëæ³?2Wš7fþ?ÿˆyè«é?UÈñš»î?«G­ Ëã?Å€1Ÿ7}æ?êã÷.âÁ¿qçÕ`Yëë¿ñ]Ky„øÝ?’­Ú'AýÝ¿ò¯¢Ù="ì¿gTC¬Ù½Ó¿¨ž|O'7£?ì/ÏíZü¿¸ÓÅøù¿ ßìdC…û?¨«%%ò¿¥7áù—UÁ¿x C)ÀYñ?X‘ÛÛø?qµ=Çš²Ú¿ueðÔ¿{ÅéppFæ?°óÔ½æ?íVdÅþ¦÷?UQØåCç¿Ö”2$¬Eä¿I(]Á¢'Ë?”Tæø?»Â0‚˜jÞ¿zJ÷Mž@à?­Òwªç®ô¿o„åâ†ÉÉ¿¹,²ÄcÞ×?ân&Þ™>ì?“NØ õÑ?%v–”ã?; :S‘à?“'ã~YyÜ¿ø.¹Wª„¿¿+€šp¶ÂÀÌV· ùÈ?ÜŽ¶±ùáï¿dr5…º+²?ÙãV¯S,ó¿ßàÞÿO¨ø¿€.ݰôÎô¿O{^¥i±û¿ËŽü°n4@ñ*””«?ƒ)²«¿Ew3¬4Ñï?¥¦ŽSôGô¿^iy"¡ûà?¹€Œ®éè?9^ye¤aÀ6ÁÒA~Ø¿ª£™yòÔ¿4B¼—ÿ¡Š?ÂÙlyÊóÞ¿>‹Qu›;×?àÂdLz>Ü¿h<ÓñÔ-è?ÕÎ#ÜÇ<û¿!"…“égÀÝ—Ü?ŒØ¿¼²–ØHLÀÅRm夫÷?úQ}0Š5à?-zv™4ù¿ ­ªÐ´ðç?n«GëîVÀ%éüut!à¿æTÞ¾YÊ?¢ioê ¢ò¿à±\€ð¿c „Y¬Nп81œæšê¿™÷Ásæ?Š1Êæ"Bú?ðÿ—Òú?Ó™'ïy°£¿ŠÊV}ß2à?l¥ð8ÿ’ú¿˜m_:󿸻gï¿9!‚êâ?H•Ç‹mÏ¿„$¼€Õúû¿UV‘Øßô¿]’C±¿Ö1û°”Bá¿4¡ø׿ão𳀿e½¶é/¨ü?µ êß@óTUÔOò? .= Ñãå?¤e#@HÍû?¨`ÈEËñ¿Z è9viÚ¿Ôvؾ·¢ó¿)ŠãEL<¼¿>Ô«ÅÀk.ñ€Ê¨ÀŽ õ³0ÀUhàêVnø?ø9”T†ê?8Á¼Ì9Æü?X†1ÊQUó¿Ý¿<\!S´¿+GÎÆjÐ?ˆbç: Ô¿¤6Ï‡Žšð?4²ià¿v9FV½ŸÊ?,¨Yù?TLGNœÕ«?‹ÜzRê÷?ÐN„¬ ™ï¿øêßx äè?§×ÓÔLù¿ Ùa·}Ð?íÁ™Â(‚Ú¿± .<º¸ó?àتä?ìÁP.îä¿E“ -âò¿GnªõÞ÷¿×ª'çá?»c´Q$¯?° /uó•Ê¿u8fï„Sæ?€|Ò"÷¿ýeËD¾â¿S}ƒêø?8l/„¿ý?ZÁøée7Ð?ÿü*¨ ºæ¿Œ(0ø^忾Òíká࿣ЙªQî?«¨+­GÜ?ãï5øl¹¿³ÌßïŸ à?yïñð¾®ç¿™ÝÛ¾‹Õ¹¿"€“êõ?‹¸á.Žé¿º„¹©ÖoÁ?ƒ3µ;\à¿5ücûÕà?Úp€=w7ì¿ÌHÀ->&å¿U3𡹻¿GȆf õ?y÷7ØLè?–g¼,9]È¿äd Û†â¿èGÄ£ìØ¿„À‹AÓ¿§rZ÷øà¿¿·‡P[1ï¿ç:²ER Àã6 ‡Á¿ZUÛld À¿Œ§jÊx Ø?Á hën+æ?tƒei“XÑ¿Aè٦׹ó¿KÐk #©Ý¿¹íz|d ð?*̉¼2ú?íN,§ì?`‹S¢ºº¿"';,%"ä?h?!uyõ¿UÿVŸnwÛ?¯ã0ôÚ¿wZÈÙ? Xâ¯õÿè?Á¾ÅHBÞ×?t‹©’ã’Ø?(ÚÏjcå?òû Ö¹¿ ³{“Û ‘?gôNâ ð¿& RW6õ¿Ð] ð¿ÈÕgÆEÐ?³A.€iÎÍ?’Çĵ‚ ¥¿7h:]4‡î¿ÜGÝPBãå?îbx â?nëZ8ÂGó? 'ìÔ¥sí?í…Mj³ä?J^ ¶EÒ¿y“Õ§~Õý?vW˜°ÿøã¿\.†ÃƈÏ?ÓÐ>{@d …cÙÀ§\‚WÀe­ÙˆcCà?EÁIiï?(qŒëÊPÖ¿<×Ö­qÔ¿ô>†}H-@‘¿Áã²ÏÀ~Ç›Y@Dwd¾Ì¹ø?Ó!N¥žË÷¿¶32@õ ð¿kq¹ñ¿Œ7eƒZTí¿&•|ÅÝ?°«âÛgÎø?NX"']––?^ŠG”Ú¿Õnžaf*ï?J#<ã?EÚ?%ŠSR·¿b|~‘ðQο½õgsëû¿7vN4ÃÂñ?^ôV ÈÑî¿ ¿EìÝ`ê?d°9„fdÛ?'…¸à¶ô?ü¬ÉàñÔ@"®_@ ÜœAöÀóû?E$Ný¿(Ó}÷p=«?¦C׿½À»¿£E˜F€#Ö?¨ˆ‰¤„ô?Ç>, g•ü?ÅiÌé–?¯æ„ÏËTù¿î­™%@ üFIAë¿йÌÝ¥ô?k?B[Ïï?¼Wûó½ä?ê;BËÀ/&¾Á{÷¿QêyÝ⿵eG5÷ÀžÍYãØhÀ0ƒ7×›þ¿O×Ò·áõ?hã*¸Ðó¿/?PP¦´@(2õ8¨ð¿ ŠŒáP¬@ÆF²Ž^ð?.< _Ãæ?Žò"B¾ô¿%­y˜šÔò?滉wç?R FnÀ8ðy^¦¿âŸQciý?/l;yÔ¨Î?éšNïíåã?|[Î+GUÀ? ¿ˆ)j¿È¤•uý¯¿Ôgîhä?l6,§ÚLç¿ç?ÎÜî?À^sÇŸ?@à'´=PªÕ¿¼Åæãý|ú¿ÜaAw+V ?OÕ´¯¬Ìò?Pš`¸€@:Wâ¹uàÝ?¸÷`%RÓå?­"Ývqÿø?HŽ)©@¡ÙWÉâ¿Ä¯§2dnÔ¿ knìñø¿‘´Œî©è?i¡Úí?XÜÅ93nÕ¿m]a¬§Zð?Ù€ßsoú¿’@Ðx8×?æêòN|Äö?ñR2ÿ0 Á¿Ò©€íþ­Í?€Àäñ…Ot¿\žÙÇÞñ?z1'&„3 ÀéóœšÄºâ?œòú§žè?œ£Û ð?6÷ä)‰†Ú?<–}'Ð î¿vŸ ŽÑÞø?8²Ö0açå?c§'þ=&ø¿»©Bâÿ¿Î´‹qGùð? TdÆñî?Eæ}Fÿ?¯‡äªõ?p”aØ©@¾›9è ý࿦¥8ٱ׿¾TÛ¥ ø¿S+ƒŠÞ?¯E*s=ï?O5"á£ÀEzì„À @4ù†$à´¿LŸuÏ­²Ã¿?¤*œNÌ¿x›§Ã+î?ŠÆ‡à?ó¿÷ãï35ó?ÍFf\ËŠþ?™žã.O@ÁMÈÊì¿}k7olá?þ.t0Q ÷¿·™¥OÍŽñ¿Ü}¤QÓí¿@MG‰r¯~?ðÜ”p;$à?ú/‹ŠÿÁñ?¨¹Èž{@ÙDClá¿üCQºÕË¿ø[´pË @º,:«ã¿õ6͆ï¿GöÁûÑò¿V@&BïžÀ>ˆC·æ¿\źɹ?ÞÍÂW€@wLíiÞ(î?Ô3ŒÞ Bñ?Y|¬†M‰ý?hJ¿ÀЕW¿½=ëeýÀÓQ ¿k¦æ¿~–,JTῲ‰®ÆóÏ׿¸Ì«zë¥ÀÅDï® ¥Þ¿a~†½´׿fnÖg´?ªËc$ø#é¿&ïÕD¨׿û»& €@utÒ@º‰È=&Ð?"Ævý~eó?’Æ­Bš+Ð?îã9Þ·{æ¿cÇŽ°@aàܵ`¥Ö¿\™wö¿…åø=ÀßÀØáÝ ø?XTÿÃ࿬ ®{úÇ翪÷®“œ ð¿ò—bÍÆ¿EØ‚¬ÜË?;8Òtúò?WÎõ ïMÀ¸§ˆ}ɲ@,dòÎ%À€‡n7“w¿¢[ ËFë¿éhoƒ6ÿ¿º­“Ð?:s ´IÆ¿ª?ø†‰ä?Üé"°ƒ™î?,Ù¢+dý?6{0ï}øÞ¿Áj3Uß?³$`d¡÷¿­ QÜ„"À~VоàŒñ?cƒ£]ùRð?"ñf8TÌп=fa~ñ¿+w-Öüñò¿<Ô5 Tö?«évÁü‚ô?£?|]®Ð¿ôÏ?aøbÖÏÖÉ¿~#WE2Ñ¿Wb8ž¿À3$À*ßVå¿ì  Ro¤ð¿¶›„Eµàå¿U)«ƒ¹Ñ¿Ðfð¿Û#óåà?4t–jpð¿3Nw´Y'ö?ÂúïçEWÖ? ‹jD2í?b:æ"sÀØùó§šcî?µ[¼iíÛ?éiJ*qø¿L¾ZcvÎá?tê$ðßö@éq Oæ? _ºÝoî¿è¾C6N@;ÞÔµñú¿ëPª”í¿’+v4ï@rÐú@¸ï¿Z’0nzþ¿£4sDpÓ¿¤œß ö Ê?"Mù7lß¿T}zÙ¥®É?r΂筵ð¿}EÂ%àò?ßG”Þ¿ŒO¯ çä?Á¸$=­À?r+Ž–ÿ ÈÉäØŸÏ?#†§Ø è?Õ܇¼ŠvÒ?Qc>­;>ê¿€¸óºoù?쨹ýü鿺 0²¦ã¿¹ºÚòÃÊÀ??ÉÏlIÀä?ˆX‰‹$ó¿zÀÙI€¦þ?Br0_µ?8–»£ ¤é?ÜÂnò?´¿ÄÀÅaUâá¿Ô¾oÎç=ß?ð½/5hÔ?‡nÛ©Øñâ¿Ì`Å4Ðë?Ús³¶ÿ?V²wmg_ü¿‰³#ê }ؿכ*³¿¿¬—º$°VÒ¿ƒ­Ï Tèû?¸=2˜Rú?L›]à‰Så¿ ™ð%ô¿¾ T”yÊû¿ ˜ÕeYÝ?रÊäÛ¿œ ϵó¿œRÛ>5‹ê¿Ù@YÅ™%ý?õþžá¿8†MÏë?¾ŠÞG_ῊKVÑ^qî?7µË6C³ä?ôkË3ÄÊ?< qæ)@!»øX®^é?z$S¢ Ëâ?D[7á?Þ?ˆ ð¬þ™¿Q2ZÔ7…ÀÐ@¶øEæ¿ðSSïÂly?Ë’£þÅ&ò¿Ùµ;¥‘Ý¿Á#ˆµö?Žk¦µ‰Ù¿„j“½¿Âö:ÝVTÔ?á°˜upÑ¿ùÜiÙAk¿ÚÁƒkƒ`Ù?v• ©Öë¿H:Ú¸©æ¿sGó$›èæ?/& p#á? «t…š‹ö#Àdä{q‡ÿ¿(¯bi“ÿ?ÐÄõwV è¿æÃGÄMÕ @ê]'Úó~Ñ¿’~F:\Ç?R`dxÝÀ“·ÄÌß@½x¬6ù?éÊ~˾8Àƒçé×bÕ?§å&“Wý?8Mê]v'é¿îa;Âü¿XIfdÛ¿'Àßœ};À òTÝÖu@ìPú/ìö?AïëmÖÿ׿¯vËî¬HÀèò·ýÀU3e4°±¿2#hêò?­uf|ƒ@Tá5…ì?º«! õ?àtRÁ …ƒ?î“ótWÀ‚@M Àéy1.bÃ?ÈÈ—öÐ ø?@åPS@îZìi Ä@s× ‘À2?ºD3ô¿õÂßíVcñ¿ãà‹Fó¿Hƒ—Bî!鿬[L"@'åkŒ^´ @1WE·Ž{õ?¡0¸CÅ5÷¿zÖi‰ë¿ÄݤÄä¿&÷%°ªã¿´Ùt É¿ó¿ˆ[*P 8'@f?Y«§bÀ]-Š54fë¿Aj}°¹¿4ä\¬óê?aÚî ³À^Ô÷a$ü?ßD:›{Pþ?z:§Ñ³8è?¢Õ¼„´Ô¿ü²e¿'æ¿xEŒT€òÉ?.‘>îx½·¿šßÜpYô?æXðäüØ?NÇ"˜ÙÙ¿*FÛÆùÖÀµ íÒ[@_óœ‘ébê?ì bä?¸ ¢.‰%ÀÛkÉBæâ?<nˆ.Ȫ¿û`-Ä?Ä¿ ÉK=ì?}@[mkà¿C0,ÅQ@É­Lûƒù¿*•×èëë?å‡ôGÎ Ë¿ÏÓ?õ‚W@¦Gàäͬ¿ë fp´ð¿5 *áQºý¿ Ùãi_Ì…¿ø˜ôÆ_Û@õ×Qõ.÷¿ß9ûÓø?3ÈB•Y@(/þd¼©Àð‹l0”@z;ÕË©îû?(’Û¾@ó²…§.Ð?¤Gõ i%ò¿<ºhÔU¥é?f ü°Î@°^øj§÷?‚ªvJÿç?L0jp Àu[ØÜfµ@ \Éoæóê¿€ê¼qi˜@ "E;hú¿f ?ûÓ@ `å}@3º$ã3û¿Dðd¡õÀøÍ‡]Âö?K¼I ZÓÚ¿ÜÃ@óÔ@éÎ1âYié¿QH€Yôº¸?3’vÑŽð¿JéãHÀκ"ñðÐÒ?óGŸ¬Ë@T‡ØØ¸è¿”uÔþËú?èÑ\ªÁDå?mÝ!Í\à?ÙÏWþÂ?¥FðCÝ?ßÑì@¤”$â£æ¿`Ú;¼º,ú¿(Ùq@Mã¿94˜]Ç׿Z§;¨æ¿«+ŠØ¾?d[ÐcK"@ðŸro.@}G;íA·ù?†œt7pÔ?CŠ?! \ø¿w‹±&{÷¿¤ç„؃!æ?¨çÈe‹ú¿œð¼9fnñ¿Z} ÷˜@ù¼ÈNß@<•¡²ÇÓ¿4„¾3iù?ˆ¦˜a¿÷¿f0;n Aå¿sß?²CÔ?ÜO‹êÇŠ@£lrcLö¿ËÁcSi@ÿg!QîÅ À?‡ évÀo,Û)ý?SàtÖ„æ¿ sIcÒñ?¸;Yj·@´Dÿ^É=ÿ¿Xú#Fð?Ö]£GPï @ÝRÁ« ÷¿þæaæœø¿H‘±`\4ä?ö$e¯ê ò¿t@/æ!Ó?ÁÝrg³ôÀ5¡qiC Ñ? üÁ“íÂ?!Cq €Ì÷¿¥Džõõ@zÀýªëÆ¿¥LSåy%ÀLüÓ5Õ뿤½ä$}î¿ç.+´4Í¿ÜèñØc¦è¿“ùØ$Ìõ?JeMDd’Ò?¸9öuè‹è?(þVZêQ@ŸÙwPëý?¼`ÝžF›¯¿Óð ÄÃoë?6žsíʎ׿Gÿ=0èÔ¿hî>éÁª?]^B ÐÒò¿¨+¼C"ó?²¥“ÂN}þ¿­@®ÇðÚ¿wIsyé?ÏÃZfÃð¿ŒÔXÊI/Â?üåÑb‰÷¿]’X÷´2æ¿Õ3‹à?Éøÿ 7àþ¿AòŒÔLú?¡¤+õºð? ýûÃð‘忚¦Ex¶wð¿ HKà¿g°Á‹Áæ?_ø³e¾0»?fðøï?Dp)Íø?ŠäX–5•è¿8¾ªñÎWÓ?ø¹8º2aÆ¿Hkà ù”ñ¿½·ê¸ó¿moÇR~Þ?%$Â^Eó?*‹¯§Ò'Ç?dËîÍÃy@T­î)ö?ŒMkH)õ?^q( Tâ¿øp•Ñ_?ç?Þö,ç?BhuŽâ?§¿°s;Ï?òÕ¦ýóŠê¿?øk,[Òô¿pùŽM"ê¿&u%‘HÉ¿Ôù†€DÜ¿‡fÌÐ0MÛ¿È4ÿ%ò¿JPèB1Ñã¿7sÒ6Cð?ò‹6ʋѿC©ξÝô¿)/eË‚€é?† 9`G‚Ú?,6†ÁhÑ¿­"`‚”CÕ¿±pk»î’Ä?ÊC™ÀB濲™Míx @SÌ.r–^ Àú×Z ×ÀÃ×·„¶Ó?À¦ˆ—zí¿Ÿæ®»Î“ü?8³- õ{ê¿_oiSw•迬Œß¢Iz @t;>·ÀÆö ÛûKý¿‰8šI³GÒ?:–V‹òùÑ¿ÞÝbmà?çk’ %¬ÀÄ´üù@÷¿øö£ò6ø?©Ê–º\˜õ?S×N+å?é@ªãbòð?Äïºä}ó¿– zŒ Ïñ¿£¢ûh=ù¿'˜Í ÑØ?ñÌšNê¿UYNê‚õÚ¿ß3•›~Æ?d|G“ô¿†_ÚfFÔ¿ÏJÙ˜"ô?†»uQ)©ü?~ïžrHà±?1Îo8.ò¿¼oa¼9Ñ¿¦Z¶…Þ?ð V>¥Ý›?DgÞ=ØÏ¿qcø4ÐÖ?€XÛªkàô?ìcg­»çâ¿—¨í.Û¿D;yæÑ¿'}S[?8í?ér˜×oÇÜ¿¾ªµZ.äË?´Ø°ÃÔÙ?D´{0#¶Ð¿Ù²x¾Zb¿ûk7¾ÀHȤÂ}п6g|8î? !.¼­?ÌA»uJPî?œ”v†Š*ã?ìA ..Ç?É…âûêÀEl-½.‹ò?‰¦TÁ+¹ë?ß„|Š¡Æ?Mø\Rÿà?ÞV„Ñ{©­?áÒºPÀöâ!UòN@ÜïìzßÀøŽÇúY@AaJ{ Ç ÀÞÿ|¡ÀyΈšÓ¿`ÂâJªˆ÷¿\š 6Qm@YTaÿâ¿-9•î»P@ܽ[ÍÕ¿'äsáÿ?7Å“aú)î?û>|ê.å?N!i+ŽÎã?cØ­OK`ö¿¸v¸^&DÚ?hÈHûÀ»¤<Í@»·v]¥ @T)$ZÊŸÆ?«Û­¬ ¢ÿ¿‡Y”‹÷¿"µ÷DªÛÀçù̆–Ÿ@ ìð T6à¿TaµPŠÌ@tÍ¡Ý/ñ?Ÿ´kûþ?þº&|é¯û¿¬Uì¿2 ÕÙÕ@?3œ¥þ` @º3Å4íÀ˜Ùþàö#ÀÖE©M#ÔÀPìÖýBCù?;m˜wCà¿[»&Ií@Ï}1—Êà?ÜÞj2Öñ¿²ÎChÀ[{ëÚF%@u#ºAó¿ßAÀ[(ų¿©TÆt ðæ?z“¬sü¿@Oò4² ,À G›œÀ¸¯˜Î¦üæ¿J —rñÍ ÀÑÇx@éfŽZ[À ‡áß«^í? ¡/ ZÄò¿¾%Š]-Á!@û~Ç·ÿ¿ÜÜHÏXÞ¿Å g@}!ý?Â+ñJç?¦Å"Uš×¿ê0Õ†LyÞ?•tšª-l@–~zÀ°H,Ä ‰ó?""ñ¥5Õ?>¼àÀE¥ð?yÂîµZæ¿°ìðrƒ ë?µD–\à Ð?„O±ªi+§¿?o5“b·À§ )Ö¼@p?VzíJõ¿©XxCü¿i%ü"ýëú¿ fã)¥îÀñÓê•ë¿ÌTÜ}@À× Y™ö›@ÌU!¿ýþ?§•¨îóÉ¿y4usr¤Àçü[l“óÀéãq³2îà¿ê͵öct@̺‘l‡ä?†R5¿²ãÜ¿Àô-:«˜?ÔN~²qö?–Ÿ÷å0ö?w‰ŠŒ:=@š2åNåt»¿OɹMéhÀ¿öKŽ[ã?Lca= `â?ª!b3Eð?V¦ Ü@>Í!WESÀóà£Ò×?ØYñ¿ `Ó)?qÿ¿T¢Ð•·@öÊîÀúô?í‰Å팑@÷¬~Þæ8ò¿;jî}4˜Ù¿Q¹ çÓæÀpS/8ºÀ>-¨Êõ?û¦¢q®ñ?3:ˆ :í¿C fÀ”» 0½»Ú¿þ\Æê2Àv87ê.ãñ? €w@8ÿû{>deaΈÆ仯ê¿übÝjš@‘bÄ2 @{TAú&)ñ?þ¥ý°,Þ¿áêòLÛ“ @x^ªÔvÀׯ GÚë¿>mqÝŽp­?XŠG‰íþÀ Ÿ|ÙuÀçe¥ûˆÿç¿•kÿŠáLä?ÁG^ÈöÀL°5‡ë¿Iï¤M6Ù@À4› Pª?^‘ A¤›@„Ì»…–îì¿~[uo¿@pA@½×ñ¿2ùOÚå Õ?ârðGr±?ëd0ü á?Q˜ÆùFõÿ¨WÜ¿´êò¿:Ô%è¿–Ï0O_mó¿ºÛ€¤ßšý?.‘3A@µÁ±j ~¶¿ÃÚ=‚c;í?sªß{Þ¿ggyÎmrÀ8ž¿¦ìÕ?‚÷2„§ì?e`a\,kù¿UfðGé¿“+ärÜý¿¬¤4ØÍÛ?ÌDŽþfHÔ?4Ñ ×Fß¿ÛK…Ó1úã?é›_6FL@¦~{ÔÐÀBÖBD¬ð?¨NÉ>~@Xð¯¸Ú¸À¤2Ùm¶ÿ¿¼9‚Ëaæ?ùÍFoRÁÓ¿”›Ò+ó¿)%Ñ<‹âÀÆÇÇ÷¥õ?d»{Ë4ö?¯ý|L¯Î¿’l[8š¿ÅS|’wë?ýŽ@2Ïïú¿æ™LëWé¿röXÈø?ˆ°Túæ?‹æA|ˆtÝ¿?kÂOÑü?Á]0aÔÞ?õáØ©ßÅ¿vS³ƒµ‰â¿:ÿ€Ñg´¿ÍLËÂEü?XE‹ü_ô¿¹›º;ø?€0Vª¤·ÀŽæ—~ο€ZFU_Qú?dÕrðL7û? .(Jå俤ѹº(@F8+½Ç“Ý¿´Ý'$:¿@Ú&|n`ô¿Þ³ÊÍf!@Ne?/ݿֵ±_æ¿,Ëu7Üú¿¢÷ê„«þþ?#ôjo<þ?³Lå ®ç¿cØ÷'±ÀàÞ†™­ÀáÛ D@Ûr¹(rDô¿Fì÷Âdäé¿Uòj”\kÝ?w£`¶¢þ@FoŽ¢ž‡À7Œ'kãŠÀ\²„ïa@Ö*mf7—Ì?xn ç¨$ñ?>ÛìÂUUâ?™zt²¨Ø?IøgÉæ£ÀªØ€°ë?™fØc@£†Ú4[8@¦Ô\,ºë?ãG«¾ÚÞ¿Jñó -8Ì¿ê)’dÖðŸ?Ï^¼&ðjð?IW¶Ã·—Ç¿8¥¶`t@ [ À¿ˆ?"Ró¿K‚—žò¿äÉu€·½ì?—ˆ„fc}￾‰Ü…ü?‰ YÝÎ?Þ3»‘‰ôõ?9¿ëfëvà¿:é”à2Ô¿ üG/Ʊſ ¼úí<è?Ôö‡÷á¿ÞtœNõ'Þ?x™ŸÚ¶6ø?øÏkÖhÿ?Ö÷§À¶wö&¼¸÷¿Õ”kqâÅ¿xÇžHÍžÀÜ]ï¦ÜÖ?(ðï˜Wn?ïÀìACà¿fëΖÀÈKN¦ãö?ÂÇÀ 9Jã?enݺø¿Ù̘ò³?Œš/È ó?ì2e1Éû?©Qìa¶ŸØ¿³füM7ú?a{ÔütlÀhýþL¼«¿p>ÁjÏ€è¿^þß‚± ÿ¿H{Ò?ý£?8Ý"H’î @»É®(Þú?‹¦A¸sRÀÉsažN@€eãÜ VÅ¿*6Òäô¿vÁ¤É²ø¿™œI£Ìañ?SØïÛ}[ø¿/…ûÄõ¿J¤äºüÀè?R-mxëô?ä3¨HVx©? •ÙJÈ¿p·Hë?ù¼¢½Úô?O ÙáÎû?dÀRhÅÀ<Æ‘Bþ?Ä2 3L%¹?4ÙýF˜Î?ˆ\ë=­‰à?’ƒ;P[ê?+G}Ý ù¿}œÍ ‡Æ¿z!7¹=á?Y +¤ÇÞ¿q¢ eîÓ?Þ³y¨Øní¿h¦Ë÷Ǧ°?Âþ4Ñ»‰Ë?ÔËät Ü¿Gá¥FÕ¿ À¡Ïaz¸? 4”˜&ö?8î#¥-ÀËó¿‡ë§ä?Êe>ÓnÆ¿Ó9Û”= ß¿RiªqÿÌÄ?vþx ²q×?tp?Ðåéë?£ƒ–F+®Û? ¡ PØò¿DŒî±¾Ü?ÙX{¡°ì?¡³ 1=¿é¿ä#C¦‚…î¿4.õåÑ?Y® ¿¬3î¿üyr©Ò¿Ã©ìº¼ð?Ü€Æn®dã¿“ÿqºÒ¿™»wY̹Ü?ÜÚOlµˆ?¹:iü½Àj=µ^%Ï?ÜLÜç¿mÇæìÁvñ¿ÁšOàDö?'k¾õÉÎë?ewƹõpú¿iBa8áÀò¿9ˆÞ½5ä?4õf¬d㻿ƒGAÕ›:ã?I/®öÀæhÿk ä?ZÍÏà×÷õ¿¼o³‰½È÷¿ù%JwÎÉ¿í³Kƒ’‘æ?:Þ$Ÿæ¿R‰š*˜?ó¿€Z±^ ¢ë?›ôí¦Íö?†/¾úDÞ¿|7|—T±?ª§zŒî?&¤ãlÓê¿Ü‘ãЦ?cÁU–çYþ¿Â}™$׿¿²Ä©#pä?ÍóH†2àì??-c)à¿Ë_Å”ä?/Äf`%Ò¿ï¬D·³Dè?-*0 dÖ?œ?5êMAã¿J_Óýâ¿U³Ý*±¿'%gxCÒ?Dó°©5Ú«¿ ì÷Ôƒ•ð?žñJ½á)οûj[ñ²«ä?ИÓÔYÙ?2á1Dò¿Jkjç´?›$Ù•¡ Ü?¶=!Úп†ç$ñfì?†¢Â(ô׿b^c,‡ô?_GÿMÀ¡’Ï|ÿ¿WxÏþá¿êò¯pô¿¤*u! õ¿0¹øÝCÔþ?*¤ŒƒŽð?µA&~ ÀeÆäI¼?üÌÁ›N ì?ܰ˜Ò¥­Ñ?§(ÃCgÚ¿%$CµMYê?=Ž×QD¿?eúg£&Ü¿RÜ*cuâ? ›}¤bö¿v.p×Gâ¿©ßwí^lë¿`joö%ï¿;»n³´£É¿ièrŽ[²?VçŽÞä?ŒdÕ¾Ãé¿|Öa34±¿r³Á1PÃÒ?«Îúп·F7ßã¿g~Oÿdï?¸V¶´©è¿tˆ`Y¸Ñ¿ƒ~4ÏRÿ¬+¥¿w`Ó?fa'i‚AÚ?I«’ š§ö?žuñfä¿§ì€`¹÷ö?õ¾Y©ÊîÓ?ÄŒÅæ@Ì¿Ð6¦B6Wã?¹B “óÚ?V®¼Pa‚ð¿LQhÅH›Ò¿a?ìY.©ÿ?€tÿÇfèç¿ 6‘/ÜÀÖ¿¤nÎýüð?I:&Ñ@fÇü Ó®?`MQøñ?k¦qD‹Ú?—(¤Ñá|é?ž»û¿ŽƒÀá.bo ¬@J¼$ؾ½º¿ò!©:ÖÕ?ÚöWÃῺÒÕ[ ùù?PÔ4&à¿ÛØ­ùÎÙпaÔ[7*˜ò¿<éƒÓ×ß¿°Ÿ~è4B@Õ4ÿ èÄã¿Ôqgòohù?‰S $€DÀlå¢| À 3š´Ì¿UŸÒ©8G÷¿cAop`å@XŸE( ë?77Ýï ¸ñ?éq1Y†iá?ïšÆJýÀª, |XÊ¿ªBcŠ ‘þ?·B¬útá¿Ö¨žH0! @Tøý@lü?:‡ÿÊ“.Ìeô¿ûèI£Ð¨ø¿¼ÃÙý£°¿R8›š‘•á?èÂçŸd¨?VƒËnn ÀXòCúç?}FøÑ†À¹Ó±„@@Û<0(Îâ?U8g“¦þ¿Ðóöà@š3÷ø¿`Xn(4Àt]>TÏ?e¥6·â?Œgµ]Ìø?uº-  @sƇÕT@hÐB|ìÁ¿ˆv)*ô?>zi dÓÿ?°ôE>é¿cf¨å ââ?p2ªV·?²ƒ(]uÞ¿æIMÝBÁô¿¾äàÃÆ?ýVç S@@{ñ™™ë¿e‹ õWMû?a¸´Ù? „áý^éÕ?òBä(æÃ¿‚ÛÛýÈô¿¨JBÞÕœò?xkHp‹íƒ¿·òRO¥‡÷?žˆŽF¤î¿KÀ?~Ì*÷?2è >…¤ð¿ÞêùùBÈû?P%³D’‚ô?l©C?³¹@ô´é¦ŽpÀIeוQGô?0ûÙêX¾‹?[¢qv¦ð¿í›'¸³ù¹¿µ¦tBÅ@úÄxŽvô?1»‘ Õæó?+Ä‘ÞãžÕ?Oíýž?@VQ„^ñ?Kg=¾Ò?ö°‹©™´¿sòé…Q¹¿$rí5Ÿ–È?*8ê( ð¿2BrQWn⿺‹Žªsë¿:þïù;VÑ¿ø½Ùnæ¿\CŠ¢ê¿ <ÑP;¬?B—è¢`Uô?GïÍBnpÀÎO,á¿\sl¶Së¿TI`Kå?A$«Ò¿2O³{õº¿‹#°*íÆä?ÍNÿÛ«Zã¿DûŠ&wð?1%~ä ÿœYŽ¿oí?µ<¸°bxè¿ÔôàPËœð¿FÙSîMÑß?Q3ø©E©À¿w\þÕ?Vß}[ßß¿’ö»½A¶î¿l×aGèñ?í­\û™ÿ¿ ûMtÔ?6Á…}qíÒ?rÕOîºÖ¿+ ÷¾ËÑç?Ý´b‹×¿ º&$$ ÀÇtÄåˆî?ð*JçÃá?¬YeŽ»‹È?hÁ.\üï¿?&È‚JÜ¿£ðùè?’d±§òð¿@Älé/ÉÊ?tåæôœ=׿Px~Œjºô¿¼B«¥ÂFοnë£$gðñ¿’¸",uµÚ¿Ô¬b| Óç¿ð9ÚIXyã¿B:F訚´?Ý;'ålà?$l9ôù?¾Š‹a—Í·¿Ë°ÑµnÍ÷¿Åœ°rwÛå¿Çsã’µ)ô?¬™®i`ñ?°Ò²²¤êã¿ÆÎ‰-ç¿lz‹y”XÜ¿?ÿXC¢JÀø.®tPá¿Á¥Ö—Ü‘õ?E+Žý¶/í?+cùÏ„ö?±Ç(¢Ú×ú??Ÿ9h 0Ú¿¢GBès @d«¦eùù?¸”ù.ið¿<}I_z‘·¿ávMX÷Õ?ìv™vÿñ¿ƒúv=§zÒ?\k „»ÿÒ¿'g›5Žß?w®×ƒ<ã?%™Xê2Öò¿ÜÄ‘õƒø?ræp rå¿jPu'å{ð¿´ŸD¦í¿^·NñZ©ê?Ô¢Ó¬¨á?Íö& TÕ?Ö7}‡ÈBÊ¿*¥ÒYQí¿öZ™Q…ÂοDǧۮT¿>œ×yµÈÑ?"Óc+HÑ?(bÍ„"Ù?n=Î!ú?®mŽž§Ù㿲3_R'ñ?. UŽ`Ìñ¿Ô¢ä Úß?jࡳòÊì¿0ÉšåÛ5鿨—í?°w«{F°¯?TþhýTNé¿ÿÄãŽjÔ@ìE‰Pwì¿0Þ]hxk꿈¡8`É?Ɇ±“3(õ¿›Uµžl%ö?šÝŒáÆ Î¿æcXÄm$ü¿N¯-¬ü£?RÂA}údÌ?£fÐí?(Asuç¿èÀSuQ"À¿J‘^~võ?è€M‹ÛzÍ?Vôu·PÀ´”˜†î´À¾P¥1Sì?š'¬m@ã¿ÆŒB`‚kõ? {•óé¿5Ù ø¿|í£S¥ò¿¯í|TÌ¿kÂí?O ÷Y¸`ù¿}üa¿AÕñ?>.ŒÚ~ªå?BÏï&²„í¿Lì[¨hf”?V5€k¦éå¿€B®vÕ¿g"šÜ{Óý?Vƒ\‹Óó¿${„ÏÀé?^(ãz;®Ó?bɯˬµä¿#¼Z„ ¹ð?j„ûyì¿g`›‚?ñô¿ž§þ*ï¿?;Lg…õ¿h¯ Û’œ¿Øö‚‹ £ò¿øù¿3#ì?æü†ôò¬¿©^S*ç?V°ì^a“ê¿Þ8b¹ ñ?‚ÏÆqð8Ô¿– …8%(é?ºê¬¿Q î?ð¿<óÇ¿®[ ÞÕŒ@ƆŽ_àü¿ôÆ–àìË¿âÛOF}]Àåò‡ùúþ?Ø[-’tCÀ:Z3ÊÌç?¯™¶§ Çó¿÷lbˆ¨q»? ma¿ê@´o»3忈íá»(®¿Iʳ&´nû¿¢G }™sß¿W„³¸N˜ü¿qÞ›ã¿ÛLø|N6ÿ?a›MÃ?ð¿è¤œMt¤?HvÛëjú?ÃÉ=;Ñ;à¿¿‘1Ô…ü?“ 4ŒÎ@¡€­Ü§‚å?b6r,Æ¿ª‹¡c±èì¿ÚælÓ?©èæ9ÉÀ?ôdhüæ†ó?c>6Ÿ3èì¿jëÊà•–@oþ·ââ¿üå½ ÕûÀ¿ãË ¢ @­{^”@Ὼw/¯ŠÌõ¿2N–Ü‚ìÿ¿z…&‚…ù¿ØœvGXþ¿‹¿ ñòð?±"F6ÀÀÛ?]øã^8ä?kÊMºÀ?‡>Œï?š¤Ú0ÀÕ¿¥ÒMÚÒ3Ö?´ë¾-‚ û? :iŸ«J@|¬‚‡~¡Ô?¬\Ý¡]ùð?Z¯çÆ;þ¿DAÑÞ¿©ì{[þ¿Ü·’yq@&_î:À­å&²h8ù¿g~·Ü‹êÍ?5€ê4íî?mÏ„º±V À…ÂÇåã¿Å²£OµÀ*cR#ø?“v©ÆàiÒ¿d Fò?¶ñvw:ù¿ü¼Òm»Ú ÀM®ÂL”Þ¿ùØ$h²5á?Ñ‹—É‘~ ¿Ú?’ ¹#ö¿~³5c ã@X"1Ÿ[á?­M ¢oÞ?¬×?«}é?´ã™ %ô?‰^KˆfÍ?Ðä@b‰ñ?©VA²HÔù?U9ÀýêuÀš‡ôER-Ù¿·Žå&˜­ý¿oƒ”Z«ý?«*ÈgàXô?*8ezfIå?° ïÙ¿…"Bulí¿kyžþ.ç?çºë Nޤ?`•òiƒËÀôai*׿à*Æô?Fyçìã¿‹¦2÷Oõ¿Æ‡™'Ûá¿Ûéh!­ø?ÆÙ‡XXÿ?IB€¢ÜÄ@W_TtÈü?$'¯­®fí?†ãIDQú?[p¬wY·á¿[ )bð?Ðò©ÊÌ•è¿ÃðúßÔ¿õ†Mãd@俟DcÑпmKuMÅ›õ¿£mðHÌ?|ÍÕO§í¿Üôúí?&‰!™µ÷?Ò}7æ[5æ¿~8n—@ªß3Ô¸ê?¥ÑÎï¡¿@+€jYäHî¿ti b„ù? ’)‰ö¿îp„è}Ô¿¥ÄD|QÕ¿užhÕWXù¿:0‰\3ÀãÏò”Àg jh#å¿7zÈE¾Öó¿ÎíBzèêð?ÆQá=Ê¿Ž!!¶í_ÿOÆWå/ÈÀ¿8/•ÞVù?ˆEaÂÝ?ãg îâ?àî¦ßZø?˜RY¾: Ê?Û¿ÀJ]žã?B!‘¢Ä¿[ášíñ¿¯°a&]±¿Îeckì¿oâºe/d@¯Ñ( 3CÀÂÙãÄ©ã?Loß«“Dñ¿îmC@÷†w¹Å@LÉ5%ƒ@Zhƒ1¥á¿¼ÜÌÃf²@’Ñ×>ÑÀ~ w6%ó?,£ ®ÝÿÆc¥«¾¿5š 9-ÊÀ .u?Y±¿:Ú¾”ü @^kY¸ö?Œz>©+÷ó¿ ÍÌ@Šþ¿B#ó6nâã?à Bç^&è?m\É|iëÀŽxO$ª࿹Š=Фçæ?¸­·£Ö÷æ¿¶¥kÙTÖ?h?‹uÊé鿆aøž@å¿ EÝæãƒö?¶{©”…Á?×)¶1{ü?úªDXÀÈVÀÆ ¿¿ ÃSL.ë@œÜ]þ Ø?*isìþ?iC±ç?n–-À¿¨–¸ösÖÞ?tƒ(ü@;¾Ò¦Ô=ºí?ö­ÊG×?¥žŠ·mó¿ÎªŸ«0×?ªä§?ÏK@¬õ+Pé½µ?Á©¨ßû À”¬|4ù¿Þ­lÄÇê¿á€¶ò¿b­Iù¡HÓ?ÌÞ‹·p?@¡mdx|Ç¿ë±zÀ†Ãã? \mª7È¿—1 I/œÿ?J˜œÁ˜˜Ò?‰¿‡àü꿊þ@ÐAÕæ¿é)ˆúvˆô¿ d…ÿw]ô?xþèO%ùò?uÐÛ>Ò? t(ŸÐ?$-À»Ô¿o'SsP ë¿+ïk{²Õ¿8ÑA%Ûm @"(Ç™£ð¿ÑÓñý8ù¿ zižˆö?<ï?þÓæÇ? ö‚§ûп=¨®/Tä¿‹z¨„EoÙ¿±\žð¿Wejx•á¿›¥2ôàý¿ xŒ uªÓ?i棶=õê?уžNwá?ôàÿ#ì?Ÿ Uiéþ?ñ148…æú?á‚úÅ/©ã?I‹P)ïô?=QMÅ¥ì?ÐÉž–M’£?ïLVÿbƒe²æó?ì{±ÉV æ?è•À§ñ?”­Ž ¯YÄ¿tNråWç?šÝì" ½¿Tˆ)|së?w…E:sÚ¿äyCíß`à¿Ec¹^[˜?¡°¹ÊfÇ¿ú•4½Ò¿³ËÅ–â÷¿™ú)aèþ¿ð|‰Ãiþ?È_XoÐò¿š—•Q»»±¿ekÿzˆõ?i¢º(/#ó¿A¸Äj«ä?™é+óú?é“ Ïžpä¿Ëº ŠW°à?ÀC’Âç«¿Y¾’ŸŽõ¿Ä¢ÇR¦Í?â˜ý%2¤¿ûd(LüÜ¿Yæ,ú/wì¿f;ÜyÙÒ¿Ëæâöñ¿m? z:è?]½Prk•ì?z±Z%³¯¿I`Ñez»À-øÒV¼ø?§r.˜ÔÍ¿W,v-;Ñ¿D†¯|Ôâ?ß7Z*Êõó¿-aÛ@;,d3ÀÞelä[Cß?Ì„. í@E¸BpHí?àܱW¥À_Pá*t@¨cƒèå‰à¿Ži…tSÀa¦Î‡$ñ¿# 4N‰n@ŠÄ!;B—ö¿˜–ü8náò¿H”ûFJšî?̺uûÐô¿7½6Ûé?üp{%.꿘Ø&4ò‰?¸ÆHçî¿°ËáGó”?g„'D„êÒ?èÜËú}­?”ÁäÔ9á÷¿¿!Šsx׿ˆ‹K#¶?Îh›‚!0î?RýrGÔü¿–¦ÈLí?08I§¿Ó÷?òÆ" ÅÐÊ?{|C ¶×¿";AF†qá? :~ ªÞ¾?fý£œûÕ¿©Ç4ÔÒ¿f/ ÚH)£??àéòaië¿„¾»â†îß¿œ Zÿùî?@Æ—÷È×ç?ƒ—ÚÚÔÖ?µWê§Ü?§ƒ\~ú?óõ”1ݰá?×Ì–c/eó¿vCA.ßÈÀQ!ç)AØ?dædyY^ü¿È^³åŒ…’¿  ÔXú¿8¹ç…jÞ?/¬”ïñ(?žå_iÐ?;ðÙF†à¿Rˆ ~íû?W¾¸ Äëé?€**2*é¿  ”%aã?byÑ™é¿1sþ¿ð/Ë¿ X@Å&ç?uí¦Z·Rë?"¢ûwÈ?Gâ>WêÊ?d§‹ß¥Þ¿V+g‰scØ¿°ûø×À›Ä? C:Ÿ º¿ŽXaáOï?Z ¸äŸGñ? å¢Ê½?ɯ®M'ʿǮñyôÛ?(œ)kòCñ¿Óc“wë¿q““ø)â? }d"N3ÿ¿.›x“ž¤À‡¥µ“pî?jªäÛË«Ù?¦Åÿ°Ì?a§Û?€xÚßnì?á8®Yšxâ¿â¾'N9à?lvô˜Qwé?@q¨Ûi?`Æ^€?¢ŽJ¢rÈ¿´ñUÀ$-×?  ¿È蹸ò?×ÿVP­¿Lù}´² @C? f!yÀÌŒëJX_Àn­YÕ»ÅÀ?Ýe‡O~(À•1È ÊLú¿X’‚ìÂ"@­7ìí?Ë,Oÿ»õ?éÍpi³À¸y§hÿ@&ÊqCzTó¿º~2aMÖà?Ø×f+ÎÎ?ï·E_f@’¡‚5WÀ³çO8@À‚·Íüyçû¿ÓÔá¥/AÀÚþ½¸OÀïÒLS»WÀˆøIö8†Û¿ª¸Ï:(@#~ú»@óÉ…Ã?‹@TâÖ÷Ë翹Љ4À4:\%í¿»*Ñ wk@UƒGIl_п»BÖx¹¶ñ?´› ¦Ê?V§t9@æ¸lÎe¯Ù¿]wšoaô?¿è{Fhõ?Ñh!•ûô¿Šµ4ŒÄÝ?Œ€Š¨èò?Mê|ù®÷í?\¾w/މ Àh½E.HÑÀ-Œ.m@Âý¦¥î›Ç?+zØè]ð¿¯} Ä÷¿‹ŽTX+À6™Í“õ¿ÀT{‰i x?Ö>6xÍ€ä? sÇêú¿l/¡Ñ·‘â?)®Ô(´å @OÓ%ˆT…@@ÁHý,@^ÚŸ“û˜@Î ]f'Ü?ó_®òÀñEˆ8dè@gØîºâû¿«%ívG4û¿Î¡smûOÀÛ9>ÊÂõ¿4»Ît|÷ ÀXèÉC÷„á?!úËälL@áÛOÚ·?SR¤©oÀ·^)Ôãå¿úÜRà½Ä?½d‚•Ä À\­ñ?èç¿^*Ç!¸xû¿nù|Ó‡ç׿¢˜î~­Ú¿Ä/µJþã¿éóª#'ì¿éñ7»:“ñ¿ÀÀ/Z™˜Ò?cüFÎd@=¨[7éÖò¿M®}&â+@ÆM²ùË8ñ¿ëŠÙHËð¿…×l>Pæ¿pS„]Eªä¿AåÓF²‰ÀÑßÿöQ!ß?„„€Ó-ò?«Uu¬cê¿I ßô_¬À^°‡¿›‡Ý¿ Qº7ð_ø?ýêÀK&ñ¿ä^ØDžö?q‹vb¨¸@hä*LË(뿈[LáÇÖ?^{Ûœ¨Ô? ^ „<ü?ƒ’è5Œñ¿lG’¿Quö¿â ÐþÞ‡æ?|„v¼—9´?x%(†Þvê?L²‚F§4ð?ÕÆ!ù‚í?ó‹­®E¥õ¿ÓÁ¤žÎÿ¿µ&ÃqÖþ¿Ð ü–É?Êcõ…ëÈý?DìA¤‹5Š¿lŒ_êXº?³ås~Kú׿£‡¡æý¿?LG0cô?¦Ñ*i öð¿ÿ¤Û½UFä?ôƒdô?$6¤  @B_@Øz³õ?ü=*ÚÌ?C ï9?zé¿vº²™ À ¿×ºsfä?…ÇíêÛ¿Óé“% ö?›Ëù­9cò?¤C@F-û¿e±(¨ˆë¿†ã~-¨iõ¿?-! …‘ç?÷X¨›³ @ë,ùpµ À†ß»õ/ö?–Èz9úQ@€ì%Å©¿Œû‚~¶<Ö?´ž"²Dý?ü,= ãòò¿”¤ *Dõ?pŽ×7¾ À¶‰OÞnÀÉCÂU`Xå¿Ó{ÕËppÅ?Øt3rŸÒú¿…êä'n ñ?P-!Ÿúl÷¿ö³‚ÖÄ’ð¿9ª5`ÀÈ ¶þÄâ¿à#ã‘°À*èžÕá²ô¿œßü=lá?–C7ï ¡@F#^‘hå?뇵G¼¾¿÷º'´•ø•?¢æ¹¼ï?~û¯µôÀVîó€2Ç ÀØú„Flê?ÝçFñÛÑ¿JµÏZ·Ý?¤Òa*†ˆ@±-ôÇe§ð?ÛÛÄ›ß?aQçì%×ö?boiІ@bÇ ‡Ð¦?°ÃÝ£ Á?€’áþSø¿,©©½<ÿûï º<¬?ÂVÄiéÐ?ÛJeõ׿mç­}ªÀâFÇ‹¢\Ë?¾`†í…~ò¿¤À/˜Xù޿Љ™fËê@؈Fóù@¯·œ¡goÝ¿ð¬ÕÕ)pù¿¦ýï­À3Ê£çörÀç|¡ÝÆsÀòCüèÔ»¼¿ŽL/·Òé?´ä-­6{˜¿>³{”aû¿Ëè6CŠ£ ÀC fJ@¥0]fuâõ?îÊg4@À$œ ]ôë?pœÚÌc²Ø?ÊÚ™lß? Í ÕRì?]pe8ñ?ž—bvs¼â?‡ ´8m³À%þ“kaïù?“òÄÄhê¿å¯ñÏØ¿~“ªM¸˜@pœ€ttXë?qÇíQUõá?ˆŠ˜¼WÀÞíøËðwô¿ Ä!C‡¼¿~ÇD.?ÿ¿˜ ç?Bk,s6ŠÄ?Ý“ÃÍxð?ZÏ4çëþ¿ÉßB(÷Wâ¿,k¬ ÙØ¿xñdæPð?¯ÃÑ–ú?^ì:Ô¡ƒÆ¿Ì‰"ëÄâ¾?Ó/øCÇß¿9Ñz,½ä¿w-U‹tìü?Š<òŽa”?ØYpÃr ò¿ê¤,UÝë¿&[U^s¥¿_*)cî?F:Ðþè@¸É"Ë¿•ØGâ½à?dž/‡Ä¿HQZÎAοΠG}Æë£?Bpê®ä`ö?²¡pzü?p<’YN¢ö?âXj‹è?z„eiÍÙÚ¿K+%›q-¸?¨Þ¿–Èæª–ý?š¬ló?±21œð?[f‡Xˆ¢ú?L«»J/ÀWñ SÏÔ㿵9Z,Ã8Àvxê/Æí×?$xÓî?U‘áïÔ¤ð¿CUl*Ø|ã¿êªI€@‡þ¿k…Û׿ÙlºD±ê@þÇÖ´¯÷¿{Ͱ·<ò¿¿ÆÐGú¿"{]ѽ3Ò?»¬Xoí¿Ä·®46ù¿*ôî@V63cL`Ø?pÀ5‘û4ø¿ÙŒO×Eñ¿±Vî&À6÷¿œ'.©obì?æ´Wò—ö?dJ…£|à?Qyh²‘À0—´¬þµ?DÓyYÎ8ã?õ®3[c ü?LµÞ] ¼ À†²Ý3ð^ù¿qÛ܃f{忨²G@ fò¿ÿøI+&ô?u€Áôâ¿BvØÈ(ö¿ƒNWÞ'µÅ¿A÷•Ãì 쿟Å?r|êö?ƒSPjgï?ýaù¾–¬Î?ÌøHLêËò?¯kåoËÀä¿.—ïø[4@ÓÏÒ•`Á?¬öÁÙWá?ÜŠ-ŽÅƒô?±'gŒŸ'²¿,•‚Èò?|Íðö¿¶šq»êâ¿Üi?ÄGý¿ûµ»'¿”â?,KÑHú?ür|#Üì¿ÙY odç?GŸRƒ4²À>×00l3ö¿fˆHmEô?¢Õݦ/ ÀÐ Ù–+A@úŠ…ëT)@¥œ}—<ç?9ÉCùú?qW¢ÇÝ?lRîª×ï¿·×æùñ¿æ³$G¡bõ?”¤.ˆ£NË¿5uI™a”À-.¡…Urö?ÄdÜASÀf(r&Ñå?sz-ý{@°\J$Dñ¿à!|çÞ`u¿uÍÜ^޲@΃Öuž÷¿E laèæ¿Hšå_äµã¿x«À„×R¼¿pC3Hàô?øÃµ,nã?©õ8‚Ë5à¿ b°/Oò忨÷dž«cÏ¿Gºå 7.ð¿§ÞÞÍõ?›Û%Fw÷¿"ž€DâÂò¿˜3^ƒ¤ÕÜ¿ãèi·Î’ï?Øp Sù¿l‚ܵÀ¿Ãµ#p¦ä¿%r+ƒnÀ¿µÍ5¸ì¿ ÒêDî¿9¶,UÞÊ¿—!ðsZö?2k ßq ä?NÌT1íØÀƒâ«·|QÓ¿»ÊûòlÝ¿ƒPÔR€(ð¿ï80‰·?Úð`-Ký?Ú«Obì?réa„‹«¿±?ï8å?ÅÀž?# ø¿¥‰,~%Ù뿾⠼Ã;å?»‚xš†ù?‘´Ó¡ÉAÀ–Âf)Qò?ÀŸŒ‰…ÇÀ?);ݳìô?šŽ×kËUø?t+ÃÆ:öó¿:ÀŽÌ¨Cô¿^ÍÞ>÷§à?W6I}kÞÒ¿Šf%ûJâ¿·8ÞÓŸ°?Ö,«w"ü?x¾{ùɽ÷?¼qi°vü?YƒvÚÂ?.Ð~#BHÛ?ò[%U÷ã¿°½ØËŒ@xu^èÚÁü?¸òÀðú@¯eâ·V’ ÀÞ±±HâÌ?I¡X5À`]Wh]u À½Nâ:º^ó?Ó°/ÝŽ!À°b‚¯ÔÀ ò{2ÀJúofçú?3®oW·@ì‘?Û{@£Êž¬Ðï?Ì^Ì&@ÍøÖ/@Cò†ðd À†ä •ë?p°'Ã?ÂKd‰£Íó¿ºï ó@x ãûký¿.¼ê^ §ó?~,dýÿ?9¨]ÍHï?ç%H ‡x»¿qrZ²Áý¿z`­Fmõ¿/×Y­½Eã?‚E³÷áÿó?îBÃqÊ6ÀʬUщ¶ø¿S1 ÚŸ@OFÒýΙÂ?UsHaï¿ÈOøDìÍÕ?\w &; ý?»¯ 7wä¿ØÜ¥+–Êð¿Lé't,êò¿‘ë_Å"Ë À1ßðE]â¿ÚÕ=Ó?ò@UÌw—à¿ÙqGhû¸Û?#w8_–Oá¿Û ‰²²¼ @¯XxŽ'@F‘5îO¤ä¿²ÆD=à-@Æ'¾óôÔ?\ó?h@ñ¿`ªuQQ÷¿ô—¹q”¸ó?äÍ`tkyÌ?‚ 9ÐIœ@Ù~æÎ)À—hdõ j@·Iuþ5L ÀJNŒÔ@¼ÀˆP¢Ôå @uoø19Ü¿2…eYÈö @­ýbpíÀÂ@J?„À'¨ë ¤«ü¿oI°ž`öò¿ ½ ÅîßÞ?l®ÁU@¢sâ$«Àêw›vßü?º$°Ù¿—à§c@7OþŸä?¿–Œ‰Oö¿vl;Ž€÷¿îõ\'¤ Àøª•†ÛúÕ?^¤‡é0 Àð»="£´û?a®kBÀ´®)c- @T[+&˜îü?Ö7T Cè¿8âP<óñ¿fØš!Ê‚|¿\¾©Cd'À9û`žÃ?Iyã ‚’ì¿¡®q è¿rýT.¦Û¿ùöP¿}à¿FÉ;ݙΠ@å½üú$„À¬°oàã|î?8« ÁmÀ©‚韉@o8ërÃÆÀ’uïWió¿Âч½µ?q8Ò{´@îµÿqR¸@[«ø7é™@ø ¿BÉfù¿”¨É³Lã?dítêû @Á÷ÁÂþ¿¤,ã0u+¡¿8}ûÔ† À ù'ѳ¸ Ào1¶Ž3ûÀ\ƒ¯Æ÷?‚·8ÈgÀ–uª½ô¿ØÜ6 @”çBꃙü¿Š½é(›Ñ?VwC–VÉ?~t¡«’õÀ?ßáóË@ð¿´Yêõ@N˜¸Ÿ eð?窎}>9õ¿³KÅs‚D÷¿øÄón/”@·ïÕí´#Àˆ ãZ5ÀÒ©‰,yùÙ?.Ý1¤JÇ¿C”SÀp07ÓX@z®»É©ÐË?Wql€_ü¿”¨ˆp¯Ë@Ñ å"ç4ý?Zè|=ÃQï¿Ý'Tß˜Š°¿?9ýPq3@ÌÌupj^­?TÀbÂÜη?NÁÐæpP÷?\˜eçÝÀøñK˜_Àaßïœ@ëƒc,\ÀLƒ^bÚ¿ã>tŽ·wç¿` „à{Ñú?09¶`6ñ¿zá›ù2é@4'VAS@g™‡¿o þ? ÆÁlÀ•=@u êÀÑ_ÂÅÓ@¼ÆtBD@ãe%ªƒµ?ºûq©aå¿ÂCöéynÀ°@“Šé?@n‚¾àE @*}¦ªðÀwq… Oð¿üªuŽžQ@1|íe(À2ÇÌ£5ÀÛnã£ô¿ÞIšœd‚ô¿¸î=¹üÕÿ4IF0 ±?žÐý\ ÀKUÞU\“¾?T‘› ÀÂCoX¸î?:õ% tŠñ¿|*UÄw@‚ï#ÙW÷¿÷áPu@ÿËø¹n&ë?¾àã:Ká¿fI Úú?ïêˆÓ0,@<·íT‚kÕ?mÚ L¯ @i–НÐé?ÎYò-€Qü?V7S‰ò?þé >Sÿ¿ßÍà5jHñ?5pWA~Ö?)Ñž³Ç`ð?ëd"OÙÓõ¿¨)ôæ‹ï¿UËŒÁÀ¬÷B#€Á?Ð(bz…¿ÊͶ ³Òç?•gSP\uà?òùeo ¬Ñ?p{5  R…?f”^”Â@é÷b³YÀ£š.¨µ4@'™ìM Ûþ?Fd©ä㿼îÐ'6$@21ùµÀ˜Shªt¾á¿ïåÌ5ßFÿ¿­5¬ÊAó¿Ë¸Û©¾?Ã¿Ø ¨Öûñ?ØpšE®ø?Îò‰vмå¿{«Ð¬@Œàjí7©¿h÷NRù¿CKXãGø?üµ¦øPžî¿É¦/¶|ÁÝ¿äç\ær¹Ø?D¤¾ Õ&Ààᕺ ¸¿®Nf²7º÷?®d(è¸Ô¿êB Öã?¼èí R â¿ÁàÄ”[âÈ¿‰…]…û¿;14‘#~÷¿0if­ÀÂxQ{1“ó?ÙÖÌ<ú<Î?w—{2šÇ¿Ó õ”2Cç?1‹gÃ’Ü¿¢{YgTAì¿{i¦¤¸â?›ì^Ù!ú @Ê´| ëcÀ¤ÅÇï¿tÑåA°â¿8e†Y§˜Þ?´jˆ`ùÛ?¾|-IÖ¦Ö¿žãÚ]!zÞ?¿¸›âi¿X„°“ôÈ?ˆS^‡áø?âU~Œj@§¸Š ¼Æ¿” ‡(·î?yü}sa^Ù?¡~_1Ú›Ú¿6s Ô„à¿™e!ád6Ü¿ÄRUÐ~¶¿H†,-ò»ý?Ò/»ªÒ¿Ú–“­Î¡¿W~iL«áÒ?†Yø'˜ì?zH tô¿öŒ&=WÑ?\vªÃ?>ˆz¯wHñ¿ÐYpv§½à¿‰l&¡œ‘ì?s-îãÈ?Co†›N 뿓ȶ+Rñ?dœñ&¸Hå?ÒŽ[×çÀñ¿â| s%è?ÿ%¶Àíé¿Áúb“ï¿Û^xŒLØæ?ïº.¿LÙ±¿›÷ÿöRÀÈcÙÈ? b gåè¿ÃÃÂ]zá?µJ¢3sò?°R™ÀØ?Ƨóÿ=xÞ¿àgêz@Õ?ìdcòkâ¿’1“L^<ì?Ѥ¢0߬õ?0ŒÜœDÅë¿õÚÁ.#ô?öЊ´øô??µx²Ü»â¿É¿-¢à¿gº Ê1ð¿{þqVÌç¿ê¥Læöå?,ƒCóLÀMqA³r$ì¿úGqRÛÁÝ¿¦$nü9Ìä¿Ðª5XM4ø¿ ¨«õ®ï¿>“’öŠ×¿ íOXŒ,Ô?M1kßÂÁ¿J#Y•ð¿6øð}8é¿U(7ÕpÙ?ʇÁõŸ]¥?KŽêÌkÁ?´„ Ø#õ?>%›ü·Þ?‰!ÛÎæ$ö?QŒ+)›4è?OËþØÐÍÒ¿Y&¡%)ó?aVH£Þ?½s°ŽÉô?4t~aˬà?ööX‰)ô࿤C»ÍM…Ý¿÷A·©ôÌ?œæ„iÚÂ?…í1 ïêë¿CÆ>ÎQë¿È—øk¼Ò?â@­@æû¿Þc×´Þ÷?lÉÜÙÈ~û¿„àÆgJ˜£¿'ë”à-Ôý?íñX9ÜÜ¿Fpx„Å“ÿ?µ^„è?´}Ð;bv½?˜£›Î•Äì¿ WˆÅZ†Ú? #-¶wÔ¿~”U(!tÑ¿ä>ÀÌ#~Ñ¿äí*óáÑó?ä¨"Ñã?g ?€âÓ?ÛS£¶­|ó¿sÅkPÍ¿ßå !?»?§êFí—)Ó¿sje!ô?Áê/8î¿—VDËõù¿Õì¨Ú¤·?Ö³×mÂá?Þüw(ÌsÕ¿äY_³{¬?z–"O¿Êº?ZTMêp†ç¿ÎŽûzrοQ˜•Û^ø¿$Óè8r„»¿kˆµnÒ?p”À‰`Ó¿‡™ju~ïë?"¿"µŽÁÞ¿œ2ˆgQ÷Å¿q¡/%µoð?+¦òS@æ?´´û ?üð¿ôÐqj«©¿Ü¾±n³õ?dä“<ä¿%¨ƒÔØ(È?µØ¤îÙ?˶Vf®%â¿ â[9Š=¤-Àöv¯g`}ä¿ïªßR½í?TÁ:P ³ À£€N£ÅŽþ?òÿ¡ëç?o¿µydŽ@ŒÐGŠ!@*ÖÍT¶p@æ¬lù€¤ö¿š#UÀ½â?ûˆÎ@u³ÀcÀŠE¯û?Ox.T¶ç¿C>Ïÿ?°Ã~í× ô?x¥¾ô“ý?jpªÅA¼ÀíQßIË—ÀÙ2¬ìá¿Nœˆú!³5Àô¥’TÒÀÛcê…ÑÜ?UÙÐåjˆá¿x ïî^yÂ?0W£d¯@c¡¼P”пp‡~ßßoõ¿ð>uµ­aú¿Uõ›Sðâ?)ïI’¢Iп”’*S–½?ÒÇòg¨ùå??÷m @ÒšŠÊM@ó̰UÖ?ÊÛêhïÀ(öh‡6„ü?1í¡¢~ƒô¿?ws‘i^ÀOö5«nˆþ?=’ÝÕU¯à?ˆÊÞ¨¡«Àx ÇÖ?Òaáˆâó׿½5–!H{æ¿ùÛhqÃù¿ÆCeÿWÊë¿¥s!Àyàu'åÀIWrñˆö¿kŽqä´é¿dÚh³ÀžæÑêÀÜÅhí@&R“+º@!–Þ ÝÈ@/|@JÊ Â ¦ì?–(¾ÑÍ?Õ“‡°¼ÍÕ¿‚7¶³ø¿ "Œ©Ž¹ù?‡ãˆ„VPï?5ô)«5ò¿¨k¯}ñÀ†÷ZžœÒ¿˜›+p=vô¿&0H÷s@.öQˆEÑ?¾kò’wEñ?üw‘Zh}㿊t²ÙZÞê¿o,Y§™ÀMªˆ`Ê@ 'hªû?L}Uð?¯_Dê{Hî?ÐËÛãxn’?|Ë×¾Ù(î?'(JάÀà,úT"ó?ƈw‡˜À©žÓû4ÀruP´Ø~Àt^'„—É?´—añµí?fVéè‘Öë¿™š‰}ÿJ @HôCÕ•|â¿öJRó@8å3¯ø?8NËÓ& @zaÉòPÀ˶¤Ëûõ¿ ;VáwÀHcF/J(ß¿ÆÁZÌÔá?lI?À-¡$‡wDå?]‹M[ÍQÀ|ËÌâWò @ÆHë%wÒ¿Ý9°¯|¦Ç¿±æ½:Íú¿ñ§stfå?¦i•%«ÿ?-¦ùóA¿l*• è¦õ¿þB[ _/¨¿&)ÛR&È?îÑh/@ÆK‚.Àí?Wð]Ò­˜ô¿ö$‹«cÕ??‹-[}ð¿½`åáxÐç¿d0~GÎ @·G Tø?ÅøtH=¯À[œß«¯.ï?c>OlfÀyoºëŽçAç¿¢~Ld#@u7@b³ú?mŸ‹,äÅ?¦'¶õˆ‘Ü?B͸[Þ?—b.:lõó?ŠÖ%«lÇÿ¿âÄ.‘â?UàáP÷¿Œj!›&ì¿þùÎŽ=ç¿¡û<‘¿ýð¿Dí\hé?7œ ¢,xï¿®óÅèãñ¿\ʲ®ç?äEÃYón@ö¬O5К޿U¡ÅÊhÒ¿W¼ƒ¿;¯@È׎-Þ¿ETÁGÑ? ˜Âº Þ?jÍ­ûÖ¢ª¿ÄrاØì翳/Ÿ¦B÷?êÚL“¿âÝ›ï‘ü¿8" p_@©!s—ì¿f,-ãö“ÀM!¯¹*žô?>xF² ö¿éÛòÙ @Ô=l8@qèÅ£÷?ïÐ#GZ Ó?w1Þº ÁÜ?Ì=„T‡À¢:è~ø@ò|é&óùÀ¿7åx±¢ü¿g)\lä’@cÍ–±ì?ŒF??ã?¾Ì­×é?€]\®ê¹¿‰öhÑϧú?ñ¾ÉÕÞ?]/šj\XÀÈy›L¾•?´9Ïÿêô?F”ŽíöcÒ?êÄ2gd@(Ú|6@Íâ?&MÙïÀd…RX@BÕ¿´H‰'·Qø?ú¯¼}«á@²G0rô@²@ýCeþ?´…1üÑÐá?¦‡‹Öooã¿~b iÇῆ4¼uÅ¿ÎøSºÖ ë?‘eýwO;ï?8#¬nÁ¬Î?mh@¯Ç,ò?y #[¶ë?±bL£ø¿<àïMçe Àš@Ç<Îéó¿¬ly.:6ô¿ tçZ³é?äPìÛòù¿¾ï~.ê>ç¿Ò?`ƒdñ?<ƨ¯³µ¿ioî6Õ· @ɪÔG+dÖ¿ì—³04ú?wt ½„â?Ü­ª¥P&­?½Lð-ºõø?žÓÕ‚©ñ࿟ñ,Àq«ä¿ð¡úlø@ ÜË””ü?ƒTÄSp׿!!QW£6é?|eí• ÿ¿6R4`jÀ¾ {yº×¿ ÿ«ìnó¿RšÃ Žÿ?Ó@S6(ñ¿t†C¯%ü¨¿ìË àÊ¿ñ†™µó¢@‚»[ÃSÝí¿(¬¦‹½?®ÑirØR´?¡eVm\Y÷?SZ^¿ï*ð?¯ìHEá¿ jäì æ?¢J×TXò?ÂP`?ebÛ?j†¾#þÚ?„å¼°øøà¿¼Sm¿Ú?µ9ë"gëÜ?²ÿŸƒfî?ÜæõO㲿¾9d)ñ¿Á'æXö?&lcVÃî?òá?‰O×?EŽñ=:Õ¿–®íŒô¿¼5”‡ô¥´¿å>1×›ÐÀ¶.ÅñÆ@SR‹õâŸ"@}“'±°¶@— ÀÓÈ@þc”ÏÀ 8c„ö¿8uÚ´•Wµ?> V@UÁ3Éô)À0|ÐvM]ÀnŽM°•5Àj^Iq5)À7™ƒ_@¹e…43Fí?÷é²Ä²‘@—eÉ»‰Ûü¿¹˜yýíBò¿Ê 7C½û?ºáãò?‘6:<!@øl nt @K“Òò§³ñ?Rîì Z ­? ÷jõ?ž6ÓIË?ë¿ÿA˜¿±ÓÀp{ôh<ó?{"æÄ•<À¿¹ÑýtÔÍ¿Ü, ­!ý?(.ÞQÕ-„?ž}³sb@ùÑ¡N+@áб(âãú¿­”ÇåÒ_ú¿›ößÕ½õÀA¶ÈÿY¹ú?JRW¨® @“èkI$ÀW׃@Ø ®XŒÖ?¬ÓÞZ Ò¿lÞÎo @À4æš´!@wW©ÂÀ˜« ¤1¦´¿²‰º›ûîø¿r1¦ý™è?Ù“†î,ÀuðÔÊä?‹r†ÖVõû?cEª§æÿ?Ž­†«Ñ ì¿ ·r“"À=íAq$î?ìËp›ì¯?Ðe³ËÅïпvJh/ˆ©þ?h *·³ ÀšÕV…] À 7™C¶@ @Ü?0‡Îyü?ybM^ß\@CFŒŸÏÒÀ2°°ŒE#@t-Õ_ÀÈ¿+ í”1ý?ÎÝyõw@„‰ìêé€Ï¿¾Bf†è?7!Uò>Àùríwø@¹¨ þÁÎñ¿².­zÀn(Àš¿I¯ULö?Í2½ó›Oú?©ôÞlZhÀ¬ügX#Ø¿2'| ò?ðø¹È@YëNß?@lßz9~ú?ůWü“kå?¢Ï+¼õ@“]¨Ü?V·i6–Hæ¿hþò õó?ˆMß¹’ùî?p¦f«]¢?vùôö¬íÙ?þç,“„§ä?RäëëG ü?g’"©ëð? oHJËü¿r*¶à’¿xÄ)æAkÿ?ŠKß\u@í²7¿ŸÀh` 'æþó¿£Þc'—„@o!F? È?ÇÉê‚×… @ô3’†7ö¿†WˆDM#ÀÔÇ4qÏþ?g Ú@×±†‹Y§Àk*¹kš@HwNQvê?Âj_Œî‰ô¿D…µ™ê?áëä\ ÷?<FðrôÀ°”ß~ð½ù?Ì@C |r@hú9çŠÉ?16´­ö¿Dƒ÷¾'ÀHydšÞÀ?¢d»3Ÿ!@5ð¬ \ÿ¿@óëQUI À¬ô}ÎJä¿p<Äetú¿S‡›3¬ù?r9e7¯ýõ?„Û8Â3áí¿án5O¨ÈÀZç¯@‡ô?Më©MrÀì:çg;ÁÀ³¿ÝM÷¿‚7Ž{œý?š¸μº@ÑMçˆUã @ÕÙ”r÷ÀU’A±ë?7p±®˜-ø?‰TÜ¿]-J|tôw@ºì¡Lð¿®L0V À‚øJ2ð¿KÍ7I÷@ø?M‘î]Wøí¿Rö"5ŸÀ¼élÂÓß¿¿1µAÉ^Ý¿*|ÔÇòÈâ?`#UåQÆÀ¬¶úßñ?¿¡å€v€â?¼¬ ÄM!@ßGc®šö¿’b’!â£×?‰¤oùÓ¿q ±ñàî?ˆeóë/@S¶-׿ֿnCË.Uö?J‹WPÒ¿§ZÓ§CÀ¤g91xí?4™€ô¿’äÂeWðÀåçi[ó?êù ÏÅò?ùõûælü?oW]‡÷ü¿£6UÆÜ@}›Kí¨À•ã?Œopò\N@ÏØUnÎ@lèwH÷?äúWÕÝò¿L&zýãë¿LmKÑâë¿«×ìcÖÀ 7=OAÀŸ–¹rüß?„/Ž¡Ð3¤¿BWÕ\«ÆÀuB—Àúè?–*G? 4ô?*—·Kàú¿z¢>?‚¤ö?òÚVõçCÌ?·™‹†rä??á®w5ªÀO¬­™kå@¶ˆö?ð@œSgMJ…â? ¶N€÷?e”1‘7 @ÀvÂ×Ï%@²õ¤ ®Õ?}¼N ä¿vœ¢ -â?6Ý.ê@é¯%„¶¿Îȵ fó? ™câ[Õ?t?V—R/ç?&$*x~ @LÂÖþs°¿¯:ú•¾ã?´Ç  QÿÖ?œ©­ð²É?–ëÕÓÝ¿6â%þ!À…ÿ .Së¿*âøšSôá?luC;wú?sæ5CÀ al¯­Ä?פTùàÐó¿ÝöÍó­ÀCŒžABþ?B+:ÙÔÀ™•½ ºÄÖ?)×Ùͺ±ô¿)\.ÔÄýÀ²É †þ6ù?ÒíeG‘ý¿Xf4:ÿÿÅýè­[Ñ¿ ‘n)ÞMÒ¿^ƒö~Œî? ®'™Ä‰þ¿lƱç¿?,Ù0ãÄ¿‚ße¤—pá¿Ä7à}$­@…~ƒ¦¤Ì¿.%©gk2à¿Oƒ×‹Æå¿Ri‡ö¿åð†;ÂÜ?Žf-Õü¬é¿ñÒë©úð?’L뿤ȹ?]Ë+¸í1á?¨‰†éÿ?“ÎŒêáØÿ¿t#š|¶è?YNEhÙYí¿O £meï?ôÜpO9íü?4;ö¤¬Ää¿•º®,[mæ?^µRë¿¶›Yýfô?Ú·„Áoü? ª,H@ªÿyÞù\ò¿ŠÍòÛÛæ¿@þ¶ò¤‡¸?s0â ·6ê?ÃåêZÈ?êÒZPÏ¿Rh–“µ¿vÆpùs®Àº„;¤ü?æ [„Çqç¿ë’@¦uí¿POÎYNFò¿@þyáÆLÖ¿ †tixùÇ?ãÚ“ˆþ¿Îèw{U€ó?va¶äQ‹Ç?“\¡»?mô?æ>Ð" ‡?Gëá¦!Ï¿â¤Î¡ñ¿?ØÑí/éè?ØÏ C꿇å-úOÿ¿­_’rĨ¯?q_°œÑuþ¿ŒùXúô?ÅtÛþ?ð$ûøWž¿K 6Wt6Á?¯¹*̉ÂÚ¿ÚŠfW¿|«W_iá¿ÅÛ9*}ü?¦tÿ Rÿ¿D÷?﬑ÿ?Óg#î¿oœÉ=‰_à?J³‡ñ;*Ü¿7mLÁ€ü¿2ŒÎK5‹è¿b”{Ü“±¿n#3‡ãÖ²¿HìÀ„-G¼¿ü–Lþ…šã?¢êç×çÌ¿§í° ñ?f®ŽÐÝáì?†'’LÓ¿(1$ªæQë¿ Vá$Në? uão}ó¿zƒË¿æ1(šâÏ¿)¥|ÐiÒÙ¿új¹,Z׿WË­âú^Þ?<ÚöíøÆö¿3¡ùçSÒ¿°ÉD“ì#Ü¿UÄ—Æøø¿è½øEáä¿e³°FΤ×?b·Z뿞*ßaο 1·“ãò?_5Û—¡ô¿‡:º€ç?ÊÀ-ÕæW©¿¹øÄxë?¦™ÄmÈ¿üEûDÎË¿^‰¬"éñ?@P]øÃ?SòÌ01íð?—jr¼«Pî?ò€¬…÷?õÖºÔ@h6+à!ñÏ?bR4tû@œ¸Œ€ygà?$ÎÕ]:^á?ÊqUÍä¿s_VϪð¿ã«Š ä-Ó¿áÐŽvyñ¿BÚ0ùF_â?9š©;9(­¿$_ê;añ?z›…¥ˆé¿6†x±¿Ü"3³i¯À¬åCý ¼§¿"±+IBh@rÓÌ^d` @ÅFr˜ ¶ÀïHöþÀE=ÍK[…ú?™°;ÿll÷¿9>@Këgé¿ÿÃ:úŸ@b ‹çùYÞ?ãaZC|Üú?ä‹ñ­-!À%'ý¦W<ÀfäAPSÖá?˜ çJèÓõ¿©FËbIê?·¸%^³Ðõ?ŠíoXfŸê?L‹ jŒá¿Ï}€à¡@"ü&íœ@äÓ}}jEñ?Ä¢]“Žó¿¨•ÄAo@ôÄ~áÔ[Õ¿“Y-G@µNÁý¯"À:òÑ–»nÿ?àðƒÉ Sê?Ô4Üö¨ ¿ê¼‘ö£Qü¿j'þÃ*¬@”}#“ëÀ;Ämm¶ @ˆÑJpñ¿PqKÆP@à'˜[ê?^/£¬O€ô¿á©0-Yÿñ?Cë¿‚1µö?%Õû¿`}Îešq@4|¿eñ¿¬ÙÁË`2à?âõð¥BÞê?:NCLù@+!»7À]÷$1Å¿-–°ÜNð?bh° þò¿”Ü{—âê¿Há‡Ý÷¿¤A&,º’ñ?ùˆ!0ÞïÀÏ ô*îô¿!eªg@ÂmLã¶&ÀFsß116ç¿ð×wÌ¿ìXî$Ä¿òz'¯ Äî¿WÍ·Ìæõý¿¤P¯ wû?×2ÔétÀÌü‰`[ÀУ8fÑ(Ò¿îÑ×,¸?Æ?·¡*ÁÏñ?F1u‚Â?¡÷´’dÿ?ê^¢‰@þ¾¿úpxÅ;Åâ?.ÑTxÓê?mÀir)ôÞ¿òøÀ”<\㿦Oý¯Ç_ó¿÷>ÖܺÀ «Ì ùí¿Û/¦eú¿?õѳèÁò¿@|ÒÆð,Ç¿h¾Œ ÎD†?I!—ýö?zj3L3ä¿>¢L:Kóû?å JÏbõû¿&ù<<迦ã_Iæð ÀFžã:@€i¹\Øú¿bºt†ÀÜ»×5_ÀLeûónÿÞ?¤ *$•È?å 5—@ ¸‘>÷ý¿ÌÊ{œù?›H¾¢½â?•Ø¿ûâE @¢mÎó? tu4 Šò¿ tÃ÷Nú?¼7ª¡­ç?WôR‚ô¿.|‡wš£¥¿œÏwÐÀÇ?ʈþ\Bñ¿©Óžrãý?—‹׿˜/•ÒŸ[å?X+Œ Ï?Œ Âîžû¿´s ÅaÀ¿õÅ"׿¿GYISï¿0¦jÏŽä?˜½i:^ý¯¿Ï M£÷?¦ÒE¼†+ÀfFü˜sõ?â’!$ÜæÕ¿5Y¥¾ü”û? ©90œÆ¿L@ÁÄ] ¸¿¸+Kæç?c9¤CƒÜÈ¿0­bä4ÀÀðÜ,Æë¿x*Á.´)ú? ·nØ›]Þ¿ÕøÐôGã¿GõúÛÀ.ï?¿ýš¬×¢@ĵ5—¡‚Þ¿ä„ïõTé?zñ¢8Ùü?!îHß ½ü?5ì´.°Ûü¿XbŠªÊöÀØG‚±/£ð¿µÏžÌ?ßcwíÂù¿AFÄQ Eô?›<í63!Ô¿Ë»VaÇÃ@;ÅÀ’å¿Âqƒœ+Ó¿¶³B’࿞™lbaf@†Åø]•׿¿èÅf*‡dð¿úÉÌÊHÝô?>9‹·$ð?6''Æ0 @É/+j^í? Vv xö¿{Yvy›ÀH)ð·ð¿5Ô.ÛSÞñ?Gé>´@r©«[Ài¹ß|t@­¾ù*ñD#@è¼h0ß¿VÒýˆ£©÷?s­¡Ýøá?‘î§ùÿ4Ï?©œÌ:\ó¿Ýòuö1 @°ÎÈ?§Àµ'5’X @ôEéÏ7§ @vä@²ÀôB¬ö(¢@[âTò8À /™ê„ü?R8œ‚Y@R#ŠüÀ¶òøÕS÷¿7ÝÔ-ÒÀ1õu–¤ À½·ñxØ™@pÉËs8™í?¹dÁ&YÔø?†A|$:ÿ?ZBéÂã²Ó?`?K—¦ö?c~° WÀP'· @9÷˜£Þοíù~ž–åâ?.ëójÑ À…w„Vsã?p»¥Šê@ê°§lõ™ @%{Ï…À¨ À"Ë5'Žúó?³Ú)ÞG·À¢þŒÖÑ„ ÀÎ$rH{1@oFhù®û?&,è 鿳uŒ– ž ÀYa–†¨7 À6í|ȵá¿&¿”ƒ9ì?Î|¿g‹À2ÖùrÀnË[YE @¨p¦8Ï+À[!©Ü@ÿòD¡ÙNý¿Ï€./0­Á¿Uòà°î?æ•ÇaŽñß¿þ·AÐðÖà?XšbÎ'@CZA¹ó`õ?êlŧ3z翚`€(Ã¥ ÀêpCq¸õø?åD“wfƒ@éÔµzVDÀÿól]ó›Àµig&ÁÀ·¦œŒf3ÿ¿ìm §[¾@Uª\iHþ?f¾ÈÝÂ@Þ(¦5µòÀú’IF€–@62@ôyÖ¿H¥ã-ÄÀé?ˆ¬K°ø¿h‚ÑÞ`Ì?òFWáî«@35ЙÐÚ¿Ü$ý9yÀ8pâ²×@€MØ)7Y@it[^TÛõ?_VÇ&×ö?ôò†”)ÀÀ#­zMBÀ4W›’ªl@ƒ{<@>Ëÿ?$á‚\ @J’Ún+î Àú#pãÐé¿®Ú‘®VDê¿¡°AQã?W|=Þ"Ùâ¿i¼¸ÚÂÖ¿ oý°†œ@¬otoñGÀC‹ó³. @Š—ù85ËÄ¿ä™!E­QÀaAí©Ñ¿ÂÓþ~ ¶À.®A ìÜ?è‰Mêø¿u[ÞJÂê?£ áça'â¿øÙeInWý?ã¶—ƒ‹À“#hn„—@> \!ËÞ¶?y»U§T@J55¡`ü¿Ç)öðüÀ-EW«,@z¯TØÔí?Rxû½[ÄÀT*,µü¿ý“NÏØ±ÀÜ~ôQšÙæ¿ÄÇ=TÁ¤ÿ?ú}Ìj V @Ôk÷(1É?6ïK¦Þ?Zðo~]÷¿­Ön…Uòý?SR­]) @r£“:\Àª›B @¹µ(þ“(õ?ã[8 ÀZµ$÷û¿$Yô`Ñê¿Mp_Ôç@hÖ“Å»@8‚j d@v¡¤§è@Hg”jèÀ’~ˆçW À›ÝòÇÙ3ð¿";¯øë¯ê¿|û¡{Ï?<óóOÁ¿ÈײàÔëó¿@ؽâ¢À¢".¸]@(š¬<°¥ @” Ö;9·þ?‡ìèj—ñé?\Þ@czhý¿á”ïéuÖ?3ñ@_J¥Ö?1¹1@hí?îOþ}@†”†Íw‰ÀÙ××ë¿0ÍŸ÷uÀ6Wžé¿@ @N¥x€´Ò¿žÎ"ãã¯Àþ˜¨B‰áÀ/‹_ém¼ À’(ñ\ól@W›VÚE@&—“pé@Mo¢ m#À–vB¶æzò¿f[ё䓽?׊ñMÀ||k⧤ À}Ë ]lbÀ$ NìŒÀäà‚òø¿†uÿ6ÛÔ¿žönVÀ 7¸ÊæfÞ?O-ÈzzÄÀX H[!ÒÀ)Ia¢úï¿2¿”(Á¿çÉ8\tƒ@EB[œþ?Y¤PãTÀÓýºp݆ö?¿*×Jõ?”ÖKY÷¿Düúõl]’¿^!1 ézÿ?kÂ<.§Úø¿SvËtàá?BÍ—Yíé?=6¶Ü?·@PžN@Üw3 @y»¿0lÀ¶@ô.:é¿×s)Ü·À«=÷)Ž@o§^´ŒO@,×2õŽžã¿ v'xÇPÀØi*|C@œV·v(@~Þ'Ö¢¬ó?Í »¼þ?ó²$ú– ÀÜ è®$óÆ?ˆ±L·Zñ?¹é2l”+À±àÓØŠë?bÄ>kÁÀJÌÁxµ¾?öW$G]+@zknœè@¨ŠN¨­ÀµÖ€9ÉDñ?{6œì?ÀÀý¤Íñð?Ç•ø¯õÅä?•ƒt÷·áÎ?ŽÏHH<î?ò…ލ6fÀ‘Ýò™Œ¨÷¿2»‡Ùù÷?¸Már@D¢Ï ¨Ù¿î[á‡Bvâ¿­ó¿S™ñ¿À\@+@§Q$K–|?K à^ý¿ *=hâÀL¹2‚^ÐÓ?~Ðf°Ä¸@â ´tñ?¡Þ½5åƒÀS—.èû¹è¿æqu|ZWú¿JÒ •Ñ)ó?®äkAÕ"®? ‘ØÁÊð¿{‘ë­wÌÀ<7¹DnF¿ÄbU‰ó鿇C“þ46õ¿¬¿1wR â?~ n¡Õ¿·…KR·…ð?Px·­+æË¿ÞÙeYÀë82oùöó¿5؇M{@ˆe{å?rƒ°sê@Gè/ý¿áŸ.±²Àg€0˜9oç¿êü@ ò?üp±¢ôð?½[!€ßRù¿T$8ÛÚÚÀζ²k‘~÷¿Ê’Ïa`ï?Ãêý(Dç?0ûqþ£ç¿¿´ð¡ODß¿W† –¬ó?*·Iâ‡Ý¿ÏœŽ@×µ*¤’©æ? ‚D—G½?õ…Åê¨@±¤é*þñ¿<)™/cŸª¿ˆÌ+RÆà濬0£j;¡?µÜ„ЭÀ˜ç qt?À5>dï·ö¿Y²%?õ¿™„°’ñ?/êpCÚ•Ý?,¤Ú üÇ¿Ì`—-íÄ?‰6tIU¦ô?Û+uà–5ú?~XF¶Âãì?‚C!û"ó?U"½ÉZ‹å¿Šú‡ «Þ?QÖbͪ@€÷5ÃGò?¡z¶QÄ¿=+qÁLÿ¿úw·´Ö?!rðª»ÛÀë2‡ËLÎà?û=ðuÄ]Àa\gQô0ä?³iXý@Œ`VÔíð¿=Š¡g²ÃÀ^?—¥‚ð?0œîYž¿Žs†“Žõú¿6 h¡G<Æ?§^Ö×øî¿Ú!µgæ¿¢çKm•_æ?¾Ÿ^¼›ç¿ÚƉ;³à? íf¬É?ƒPÖá¿^â¶h_I@#=ƒP=}þ¿ù=&IQßö¿Ý˘ÍëÇ@†Òa‹ íâ¿S3ŸªÒ翳>S¿ü?¨B¡ž-“ø?D–DID׿ªP'‘]×?šIP3M²è?±_{ÅMô¿h¸J¢ô?RÜ€»XûÒ?muÎAš*ë¿ èãS‡Wá?ƒt¬¿Ôë¿EÔ8ÙwŒö?ÕŽ,Õ½.Ç?²@*`ŽÚ?›o÷¤Apó¿Ð„lØXÿXQ;/DË¿˜Ý–¢eŽë¿[$§3kÛ¿ À|ïâÈ¿ÌVŠÛÕþ¿îõözèð?’H3"L§í¿®Â×N7Ê¿.û°¶2¯è?0ÁB;í?ÃGÁCB†à¿ye$yo¿žržÏ¬¿r$(Ï!…÷¿ä1Ë)w«¿í œ ö/㿘µíÌÖ‡ê?œ+ «_„ö?:F±‘—ò?kš«ø?P—ý¼ò?PwB§Ðâ?¢³­†@GZ͙ͯ@^pv]įâ?úеúÛ¹?\b(ßÿï¿ËžË¾À?Õq _(À?^Áª´†­¿€ëùJÉjô¿Âj忺¥»cô¿d*S“ä¿¶Yé´ò?9«VW-v´¿V6|gø?:æMùªqþ¿XdZñ–Æ¿žì)–¨Ý¿ðPÁïšÒ¿´¦ü7á?À›0\µ§°¿½ì—Ú¶Ñó¿#ö»u¿Ä£¿ö0FÝÐ?󿈫ñ?á/ßå? RhaýÈ忎Béôƒõ?h‘ Q»õ»¿ X¿Ä[¢!À%Q$#Àú­©Ê2Üå?hhÙ?9•@ñ´j­ï(ÀÎã$Û뿬èIÐÃYÏ?kRLóø3À=«+6 Ù @šÿ)toÕ?~Wzg@}À¯ŠFŒzÛ¿è,!@@éÀMèW=ô?ƒõ¡±ÂÀŽ$‹µ€cÿ? 1M+ó¿ *G?ð?®¢Å†àÚÀ×Üb´Hÿ¿âpžÓª½0@!ø7ßÅâ?'&¤±Ûûþ¿ÚQ×+ÀŠKSkŸë?¦x±¯ Ø¿H6IáE@&,Ø`ƒ]ò¿Ù͸Þgû¿–µþ‡¢?Ë¿xC ‡ ø¿syôRæ¿å+ˆPh§@"S®UG°¿¡¦ª>‘³ã¿x–Ë5j>û¿Æ-ŒÝú Àñ÷4¸äö¿Ih|îð6À(4Ê9,<¾¿$—+3ú?‰/¼ö@ý¿±8³ Àgï·Îìò¿øi¡û@À¹·¢ZEï?޶…'›tê¿!UÁ‘ýî¿=¢íG…s#À[l#`¤Ñ¿Œ‡Î›àøã?PØûIEè?¸ßˆrÁ¹è¿øï ‹ðó?$T  ð¿|áq²†¢ï¿  ûAÀMöyær @"Ï< ‰íÜ?­êÄÖ0ê¿&Ø|,â À ¡ÖðŒgæ¿W]_1@÷&hšSÅñ?¾æÉñß²ñ¿ëtÖ`…@éËáFÔâÀƒ"Èè?Øä[þy…Ó¿0\÷®^*ë¿õp¶›]–å?m[ 5nà? O¦‰ @¬B(ÇÁ×ø¿òMÇu§é?¼s.bõpõ?ÿöpw{Àp~óSaÝ¿¹áǺ½ÂÀtû׸,Ài»àž©Õó¿Ä Dʹ@PYø¾Âÿ?z`×0(¿À€õô¿qŽ¥.µÊã?Ü@=ÃíÏè?ÜS‹‹âü?)¥§é¿@-¶wlª¿’QŠ~Àhh~úŽ@YwÚpö@þ7"Ò@ÞÒ¿gzí4c0ù?Tø$©7ïî¿G(«‘«õ?ÊÛÕÖŽè¿l»TOý?¡¯ïðÀÿz¯Àé/lÐ?pLíîé¿Úm÷çòî¿ûX\Õ‘æ?¢E툳Û?'‘?Ä'î¿ #Vj”bç¿>&Þ…þ±Ñ?¼óøíà¿¢¹í1Îí?ÚLó¿`AéšÊ“@‡›Aë?qºèEzç¿õ!àãØF°?ô#.)2é?"G´ÂÁè¿·­GÃN&æ¿Hé½›–¤Û¿܃yÃþ?$6§£zGÝ¿îæm—ò?ùí4ùhDõ¿šS¦2Œr@ .GÓ À”í©× À·\[<Ò?N¡,a÷ÚÐ?UTZÔ¾´ë¿‡-l¥˜@û#”Wþë?Ct•M‡m@™‡'éØÌð¿±r‰Œ—ð¿`)Êhß÷?,j9]@XBì–;¦Õ? [ªJî?i‚Ug£ÛÚ?ÉOJ°§Õ¿'¾ºLˆÀ W ¬ËM¬¿³Ž4vÇò¿h»X=m7î?™6M¨É(Þ?Š:œÄ©©ï?< ª«?S!šäiÐÙ¿ç=¢KHL @eN½ŠÇd@!X{dfÅ?”œ´…¯Àí+Pn5ÀvJt8¹#û¿Ûî:cÂòý¿+b—„ãí¿áp6ˆ á?þ– =@ŽM°lGîå¿"¬Ÿz_:ø¿(!âšI¬û?$9aì˜â¿@~÷Kc`ð?ðßï¥bÁ¿Óý¥Z½Qõ?;ëïœDÀ\SÏb¾ï?BŒ3KÛ:Ü¿¾ËBµjVÏ¿Å+ü¯@Š’¼]0sò? „¢çï¶ê¿.8WëÛ¿XØÓgª9ÀAåÞ©cú¿óº)8è@|*+bhØ?…Š×7MáÈ?°å«±DÍ À+÷§þÈë?«áгÇDþ¿¢€±R@ˆ'Äüý?ŸÄg¹ù¿®2jû=êà?_ØÐÀM&]ƒéÙ?œ3%JáuÑ¿ ªÞ2Jõ?!8ÚÒÌø¿¥Ñ¿Iëñ?ÁTýŸ_ @'ŸND|ÿ? C°gìÜð?ÐfRèºúù?Þ/ªx!Æ?›˜{y­bõ¿WÛbE¦¸ã?”:Ù#ÔÂý¿›Â1@ÿ1K<ð?sÈdŲáÿ?$IêSø¿Kr±k½·Û¿Œ†M2ò‡Þ¿«µÝÚï?>tj¨´<ú¿Ò‰žðõƒÀÛSse'åØ¿°`¡Ë¸òñ?A5Œí¿˜7S¦ï*Ñ? aƒnqhÕ¿Š!Ô𿽬ùº< À†WTJÀ²%9UÏ¿ÔÇ ® HÆ?‚ ±Bë¿@׻ɨ?jä÷=ÿé?2^ Èú? ±<„‹Õã¿6ÝQ2KÀª“wÛ¥ä?µƒ• +ð¿À¦ô?élíþ– Àa÷Šš‰ð?uŸ#?óÅá¿ÄØeYÞ?y!ÔÕÀS”Æ›>%Ü¿žÏ¬f)À7.íæ)£é¿ªj]BhŠÀr‹2ÒˆÙò?âÐÅ¢Èè¿Jßbfdß¿·?o~¡Üâ¿Ð(ú¢g©Û¿Ôå·¡wÎî¿t5´í3 À@98ÈL)Û¿Æ=ì×ýý?`lûñÔ³ê¿òDdÒÆoÝ¿Z­•]8Óò?¾c䌮ö?¼¬ïFk뿽θÂöäã?BDB“U^ë?@š›~øú¿¿öæÄ«ÀÜq]®€„´¿@Å}ê꿌Æm \ü¿ìµ9åÍ…ù?b ÿuü?¡jÏîÝå¿Æå•°§ê¿ün`!@"<Ç·Ié?©Tüüü? àçOÁÛ¿‰ ïÇFпs _bÅ?ý‹õEÙÀ?‰Ö[=¸oã¿R°k¼íÍç?ˆÂÓ|MÂ?Ý»¬‹º @&&ÉÓŽà¿çóû5uþ¿à̽Gþ¿Ähk†Ü;õ?ôí³áKò?äFÓßpvÙ?Wœ° ¿"ù?Tû‹ñ??Bwùçê¿ ²bdÀ™DÀ‚®,±ULð¿Ùs憔@¦½K“Øó?`ÇRaŽ⿱‡(j¥Sì¿­Hv™~ï?øŒcE ý¿—·­›×Ä?I¸ô{œ @'‰ä<…Àt~æC@¥ Ö"šà¿ìkCͺÿ¿`Ä`¿#ð¿Yw6j'ªê?|EĨFóÔ¿ž2 h£ù?C€´ÃÁwä?|Tçœy- @ž•œÈùM @°/ú´@­?ÌŒ‚Bÿð¿^)¥‚¶ö?ÿ-¹}ˆ±î?؇¡x¿é¿n]Ûyƒ@.tnhøvý?þÄfzɉѿògpÓ2>ú?Õ¯Û±òšñ¿Ä¾ìâÃ÷?áC`Û{C @(þ(dÊÀ» àšq÷¿î[V}ÀÝ3³C˜‰ò¿‡òù£ÿ¿o :Hlç?”‰oÊYô¿"£Åf¼Ìø?0‡ßGÐÀå6´p®@É?ˆs¦Kï¿Ãð7‹Z*ã?og£@',ù?hpºámä?]sNƒ`ú¿Ö¹‚glþ?ØKª Ÿ¿«]׊¼zù?òµÁç?ëuë¯9ëË¿XQØœühú?bwˆžA;þ¿ ¿dñ›?qPTO™™Àºpüèosò?Þ¢ÿ¨Tç¿ »R=ÜÛ?—34ßLEø¿øùÑSã¿ ~%ô¿'´è¹Õí?®r2n[¿ú¿¸’-^ï§²¿e”,›ˆí?d2Äožìñ¿­üʹï?ÌÝ÷r~ßý?Ñ €ák*¿?¾2X°²@¹†€z„3ú¿ôïú?Mýá¾½…忊<§Qj¬ü?xŸs)”Z¿?i/d—õ"@· Fâ¾9ñ?Eª€`Ñ@N/0ßOú?ê‚T*èºÀyºË”ÜaÅ¿ÐÄ·j @Ô²'veÀ_Qþ@<Ïa‚¿ö¿y…"êzû¿]UøÚL@®«¸ðB ÀÆZW…TÀƒÆ_᪠Àú’3Öy±ú¿¸KÅ?ÉZ¦?ßd0Û&Ûñ? _Äg_6ã¿KóD éhù¿F¸!<ê@À‹ [Vu@Vö^“GÀ%ð¸Ï @ØkŽŽ˜Üó?>~ÍÎò¿,FW8“[@*KCU4À¦ŽÒß³à@b@]ÆsÜ@ƒ°9ûÿñ¿Ñ×ušâ¬ë¿¯­\ì‚ç¿q¸æ›í¿?ÇÅ_ÓNß¿ Üؘú¿Š1#Ø?¬ié}³Ò ÀøL¿[Œ¼÷¿°`Ƶ'í¿eÝ:n"ö?¢Ú9C>kÃ?TAëñ ÀhÜÛ´,õ÷¿1¸?ýpê¿å7`Aí¿*— EêfÈ?ÕæØÅÀ%ú9;¯ó¿7°eê&«@ÂáÆÏ@lШ›7…ð?RüJÚ¿ô?“–­hÖðí?¼÷¦¡Ppÿ¿ïåË-bæë?ÚP&ßf÷¿h2BùÏÀÕŽù¾%À5` u @}U˜ˆÉÝï¿¡úâ4ý?°pžêÝ´–¿ëc'«Ôâ¿AÚ=ùÀ?ø“p©ïпšÒû¹ðNé¿y&ÒÀ®R›ÀÙ<+óºÎ?´û܈û¶ø?à˜6g;ÀøÏyÖüÀÛDgÉý¿òÞûä„ð?ç`zᅵة+™ÀÚGõ¡ƒÀI …! ¦ê?™¢!rsÀÔD¯ÖK俼UŒ Ö¿Ø@¡+,à@h7%à%@@#À{\ s¿ÌôCT½ï¿Ñ¡WåBô?–= KZÈ? F®>z°å¿vzºMß?e‚)”ëú¿]Ä57öÅ¿Ž,b“VÚ?£¶Àü8@-ÜyöPÀ4•©R@ZÿS^›¿å¿‡ÀU P¢ó?ë¬b2=¥ À ï® À×ú.Pú?gócË @üœb~:ÀúM®þ“ø?´Â~#·‹þ?ïT̶@ˆtMáŒ!ó¿¦wÙ¿æ †3†@`1¤ ù?9i7kaø?pxeÜ×? Ä¿n÷¿x¹D-ØÜ¿0ó‚ß`ñ¿¯_|e_×ç¿ ã²k¦@Z™ašÆä?ÉÖ§˜'rþ¿Ú¨/ŒT)ð?‹yE]SgÀ€T 'ô?®2áÊ @+ý›0 |ÀÞéÜpâù?Ta|‹ö¿™û÷3 ê?—7âZÃð¿uX tõ ÀïÜÑ$N À#GÐU· þ??-è§lvö?}0̯,a@’ê~œèÀv°ÂM «¿ÜOgÚ”òÀ`É2T+ñ?X—öy8ÀŒ¾&™2âî?Ö@qÛbå¿|k]åD2Ð?>›K|[Ðý?Kcg”@wŽI‘ÀS@ÐÚ¶I¢Æ?&©È~}3Ç?rÔÂìï¿çíÌà¾õ¿9+ÞªpZú¿¹/þÐ’!@,%ðiWý?,÷ÕëU@ÙÏÈð¿ ΋…€õ?bd÷ùª«À€’Î:¼é?N’ü}ý?!Z;”;vô?;§3 ]ÀK)t(¥å?¢R—=‹¹¿ OïS ¹ô? ¼j ï?úoiíh&é¿6º~:çã?€ž{ övë?ÊfÞÙ·ö?Èäÿ†á¿æraÚ!¨ù¿RG/Æß?àC¾éÀ9!Ÿ·b[ò¿©IcëÀ$lØû?¶11ßíÒ?7†ú- û?@ µ,ú?E²zù¦å¿ÖàaŽfñü?Ù>X©Hÿ?ryí×ïÌ?¿Kó¯Úì¿$#cO-ÈØ¿Ô9*Cfé?ÔQâ}翬Ó8¹µÿú?®;ëãc" À‘æ<œëç¿ç"æÇï¿Ç· Þ*Ó¿á¹£?ÉN÷¿|Ö‘5ÎÐ?yl«TÅÀÙÄÃÛ;jï?@(lÈœ2@qh¬"h™ö¿)÷*t=@÷Ä÷ä¿hé%@E¯ö¿–·c_…I@HâWùš:ó?¸E®ÇË,Ö?–ÿ«.§eæ¿0g/¶'í?û_s`\Ãå¿(ŽR}´¨õ?O:©²½^ÀŽŒö¯e ÀÈñ£— Û¿$HÍ’[@¹լà¿ÀyT4ùõ¿ÿ±ó8×™À¥í`;—[õ¿Ì`JÂäìÂ?9óU„1å¿`ðCYë…w¿§-ªÀ&yñ¿=ì+ìE¼¿>àip‚á¿ÂõìçÂýò?|…¸8ûñ?Ó>@dÔ @B’© #Ø¿³7ºûwè?Ä¢ ¨ý›¿oê8›þŽø¿oJý§Sè¿Ì ©hÖ¾?¤nùsÇ6ù?nÄ X¼ë¿áF}Öüõ?whAWà¿ÿêÿ ¡ñ?ÀísЉ|¿Páè›ÃáÖ? #•O'ú¿•¾x‹"ÿ?&‡ùvl À#p:Ýïê? ÷ù:Ë“Àáäu?ſȪ¨²2ß¿sP "%žÀTQ«6àô3ÀÂ‚Ž‰ @Z1ý‚ì?ßप#é?à4f¬¤õοW=)0s¤ç?²Ã)¥ÀQúÜÕN#ÀF%EÊ7@þ?… TÝàó¿Zê63ý?§*›uªÓ?]¿áœ¹›ô¿CˆÞAuÀÌ©"ß³¼ø¿'ò¡Pâ†:@0ÎE¦P@óŠ>åã?*ÛrœÑé¿b³ o›æ¿4æ…Q3ðÙ¿ë¹]%*Qü?6§ÍÛØä?ÝQ^Êõ¥ò?5Z„ïGr ÀÞ…× ¯æ¿ÐÝàªS¡@S®m@õ?<Œ±kI®ÀŠÅ¤›@É÷’~·ñ¿¢f3«”ýþ?jØpßêî¿Hþ3cËÛü?Úh«ø¦·?«Â?z À®ôòúã @ÐDìܰð?„QïØÍÁË? 1WŸAÓ¿¸Ù?}í?ý§Ö—%2@ñ9NÙœdñ¿&b—ÿL#À|âÙOó¿‡ nØ¿ÕB›´ÍÀ›sòÞiã @³ ]<3”ý¿ùÍûvF9@Bƒ12e–ÀõŒ5DHÀU5uéñ À´÷3°à?'àAŒ¥î¿$ÿ)žèáÙ¿žô0_íºï¿rpÉQXîï¿t«×Mÿ?F• yJï¿*.ƒT@ŒÊÖ®!½à?n h‰Ûÿ¿) dÇÿ¿†-í1öòú?'yÿ» ó¿!ºÀ”,¤0Ïé@’t\~#Gþ?Ñb!„À¿ëýܰ𿠽W½Ÿä?©Cl0DÀ6ëv9&ó¿ X¨ÃTpâ?(äee*£À%+^[@<þ£ctÒ@è\;=â!²?ÁèôB,Bâ¿@)ŒKÜæ¿8Œ›<Úõ?©Âìr¬þ¿Øë¹­ÿ?Šxìz`·î?K·ê`dÀPë:o¢Àv}ý?‚ÈJ–¸ö¿rÐùŽxuò¿AyHÂÛì¿rþÇÓ‡(ð?Æfî>ËÒ¿ÎSÿr6¥¿’u×dô?X8œûŽö?ª6¬9Bò?,|EÁŸ‹í¿˜U€´\Œî¿[®’–ÿտ楖•ÒUÚ?ÂbMÒ ô?(Ä`²©‡ò¿>÷ ¹öÔ¿CÙJéÀÇÚ?ÌW’—ààã?§vÒ³!ð ÀŒÛ£Žfðè¿™µ»–sÇ?š`I^‡È¿Ð8 ©ô)à?Eà#<=÷?-zÐC mò? qÁÐî‚þ¿•A4ªBù?ßh/2ö?%`ñر¿(‹Ê¥8Úþ?ô ÿŒ!Jÿ¿†Øÿ§àãÀ9(q•ó?Ô^f…XºÐ¿`ÿ`È‘@‡Ýˆ1úÚû?_-ópNÉú¿@ñ£ÍEXñ?NcѬ ÀR«×Œ4?ß¿4 Ú¿}¼8ðû @Øäµûú@œ'*Ü›¿!rd•þ¿vÍåÛÝ~@º;~e£ìò?îé@ô÷?«•Å@Ú@¯QîŠ,£é?±úsûÇv·¿Ò¦­Ÿáþ¿ªr61¶:â?/–Öˆò?Lg0@Û©0p@ £ÂÑüP÷?^'ŠÌVJø¿$ªà3Wåî¿ëÞ©Ô.½í¿Uîû‘ücÕ?SŽœ,÷õ¿Ô‡JìµSæ?$A‘9ýó¿oÞ= ¬Ç¿ (WÛô?õ{¡K1@-[Fò…À[MÀ°yò¿aw…ÍÄù?Ä ÎŽÚ¿ü¿®ûÅHô¿<Ħ»%å¿€¼‰oú?à³°(R@N¶œõQî¿îYw… Û÷¿jåãß„]ä?¬#—¾õ¿ÆŸŽ˜ð¿lÚëîã?Åç£=ô?G 4C·³ú?XS;z˜ù?oduÿ—Ú?€`•çäÿ@ ª4ë䣜?¨?ÇÛ™Ið? KYµô¿ôË#(ß0ñ¿'@H"ýV @_ªþRÚ?fóRFIã¿ÂVï²Àп ê[Gì¿+t-K¯fé?|C!MÖö¿:Fj @—£ú’h[ @Øè¬Ž€Ô?`Fƒš:¢Ô?ÿÏ+BwÜó¿9éæpÏ@ýrm7Æð?1@¾ÌÿQì?l[¾Ìá @Ž¡»@Ð?œNW]Í/ç¿òc…ý„Dñ?’9´¸DпT0¨‡œÄ¿º)hÛ¾ãó?±Õ¸ï˜À@t/[ʈw¿¶$ÎääK @Ä)½Ý @Ø$.e;î¿0þ9Ó­ ß?)¯\! À³Þð¹­¿â%{nûù¿¾íŽ:Âú?’k¹îa@µ ™G&Íñ¿\õMJÝ ÀYKoj¡ì?žÑa¦s‹è¿­ŒIŒ Ø?Nì,?’οSñlòL$þ?#Ï4ô#@gZ Ц3÷¿yÝéKR²¿!Ùvˆ\@þ¿T” 51 @¿ ÀÚ¸Rò¿fâuó–¿•‰ ŒHöñ¿©Ü‘5 ,ç?8–$gGè¿g©…ˆ~Ùü?²O²¤¿gà?3vØÍ@,‘åÁJ À"}P@T¶û¿,ÝB°‹º¿«»eâÄõ?mä2ñ?ýS6“Ï·¿i©Ë4Å›ú?¥sd«Y å¿aáÁÑÿðê¿Õ!1uÍ?½b—÷û?ù®+ôò¿™ßÂDœêÃ?TP*H»?—†æ1)ù?Cs‚Óó?N‹ãLbô¿œœkê@O7%[¯ÉË¿Baæ À…·É{˜@…p®A"_ë?»úÿð¿œ:¬@[ ¾ç¿&{Åà“*ç¿¶w@ =xì?<õAV8mç¿S«7é<ý¿@~&õöþ¿œÛ¶Õ£ùó¿Ú³ƒºù?¿ÍgæÅÀ ÐÔšñ¿>ëèH=ó¿gCùÙ1û?ÖI±Å><õ¿b}½6|©ÿ¿éìN[ÐR@b#"TZ#@¨Lí -"ÀÏg ­ f¿?›0Ь—>ú¿“ü…›š©ö¿vž l[@øDÓGæÞò?.dI¬ ÀC›Û])î?Þ°â:ü?bZ_eiÀhpÙ-á¿þ¼€ü“ä¿æ÷ë)U$À`UkÎ"Àìcü”É@%Ò¦ À¹0—‹J@ {_é?©À‚lÇõ|ÀèÇsŽìÕ?ÏÖa?À•Žç¿›Üê`Ç]@ŽéËþöÀ‹h¬¨øXü¿;-=cîxÀ‹¨á 7ÿ¿é~6aõÀè‹¿œá?`pS£,oõ¿@Z3Z?x@ˆ3@èƒþ¬?s-‹Â‹Îã¿Ï”îpÅÆì?"3¼Ðà?Ž"4Yu¯Àøâ娿‚@ ùQm›²Ò¿nÐAé!AÖ?Jƒ v¤Öó?§Á´Ëç@†‹|ý¿~ó>w‹ @' PMÔÍ?«sTŒó@€Jß[“®@ô|Ì®ù8@;KßóÇ@R8H[‹Ò1@›æWUÍ–(@|OâvÕ4À{k¾BFd À÷–ê€ñ@»å€Ü/ä?¯L`ì@D€„~ Z@?æ)3Ç@Ÿ?èh@T<Ý{ Žô?É|}©¶Àe¼mÔ È Àᣟ‰6:À`íä!ÄÀˆc.ÆùóÀL?˜‹™;Ò¿bRjA!uÀ%@”…†î?K‘y£¿zÒ€ç`ñ?=Ç ÆÀ÷¿[2"rORä?À*ü"ù¿ìL O›<À;­®Á~ õ¿…ƒì‰Î@mõö}Š¡÷¿àp×î7@t(ÅSÀìãüÔŸÞü¿´Z©[¤@ªËÒ”¹ö¿ÒŸjEÓ@Ë:¾u†3@e᳉{aé?-ÎGÉã½û¿deôÛ Êÿ¿•K”24Àä @ªÎ?=WÅÀßÊmÜ…@¥<—AäÀ^¸±î?¡ À̼.ž 6@°¨·‡Á?fo.¥ïâÀv¤­¼F@Õ•ãí@atô(@ ôz…­¯ÀA­t«ÈˆË?3×5ÚU%@‰ˆ$äå¿k#•…Uì¿ÝŠG÷Š@ŽúÇÕÜ@#³UÝ£_@2ç†j":ª¿}ÕÿäCþØ? â?¸ëä¿g“LïÀ©OPKðÀ¦/[Ωû?YoÎ<ÈíÀD²ÝC0àÀyºLô\¹À'À qKò¿6[4²Î#À|Ž&rÉÍÀ«`0•hâü?ÚìwJ|Á¿AŠö:WÀT«Ì0ÆáÀv?zËT÷¿|on‡ @ª Dòë¿{ÝôÞuL@>êH°â:ÀÔÉqÓ¶³¤¿z…/+¢Aï?lRð*îã?kY*cððÀ:”@Ÿ×à!@»ã|ŽN@‰äît[Àž*±At÷¿zâOòbîá¿ÇTdñ{ÀñtÐÒ»ú@? vL+À¸Iu*é@Œ{ôCq£@©bUÌÿ¿>”¢›Ý?±A²(>ó?Ñ£º*M@ÌTJÕ@@¦nÊ}Àd£^!ÅÚÿ?íkï茜#@,!‚çbñ?ÕƒûÛrñ¿¦jÆÌ¶ ÀžÐ¸¢ ü?~[S—‘@}ÑìmíÀ¿° Gk=ø?ݽX¿›¼@”,È2Bpù¿{~§F­Ñô?'­&®b@ú(R½GÏÀÞÇÎù³ÀtèÕ.Þ¿ÖÛ”×Á࿇¼3áå@>ÞÈÀ»&û`ªæü¿UmÀh“™þ?„3˜À–!G˜¿:õ¿UN´NQç?rÿŒN=À*fž,1ÎÀÅʽðÀ´•`Ô«Àc¥Š“:ÀTÐû÷ >À‘‚‡»jÀ•¥ É£rÙ¿Õœ®ÓDá¿‹kXD–ÀÊšš¤Î“@o ë\Kô¿ŸLPªB ÀÎÞ #õþ¿¹þݵÇÃ@WÃê'ÐCÞ¿Ë$‘Tg#@…öÅú¿Q<ªù¿»ú¿üa @'ŠâH™Ë?MmÍúˆ•Àç¸(ÜbOÑ¿4ž)/÷è?SÛˆU^Àµ*ß"À}`ŠMÎÅÀ)/µ—@¥"µU@ØvâçÎ@O÷† ¿ð¿hÇîÀ´»íé?íé°$pb÷¿ Š <¡Àk¥t§Ù[ð¿‘CŒÉÕ×ç?Òßš¸9æÀF¦eêó›ç¿fÝ^@^ûª^¾¸¿šÙ$Ð ÀzÈDðÆêä?î«&sk&ú¿‚Jw÷Χ«¿I–Jk–Ÿ@꯶bMë¿‘ñ¥¸-ù¿…\Ç©À›oßp^y@«SØuæŠ÷¿¸ç-Úõۿ醬‚Ç?À—ˆè-?Bù¿¾§AŠ>@>W}Qdì?wÛ'½Ò?ÆÜm(L¾Õ?§ó¡»3@K引Å?ž@—figá?¤²¡ òó?i™Ó^éiü¿@•'ÉPÀIÄOú`2ü?Ûû Fþ¿ð*Øõö¿Mн·Èn¾¿ÛÞLÄ \࿟²Ž6•0ÀHbÑÀ©ýüM(÷¿€øSaÒÁ¿õ¬‘Ió?"?Oë‡vÀ˜AfVçÏ?>r=i;£¿7}—Õ@B÷¿ € ð¿©oÙïn/ð¿z»ɧáê¿OM¥H\ü¿þÙ%Ølô?°ƒR¸!ñ?q‹€¥C@M*Zé¿@Kqr«Rž¿>ßÓTcÀzºUŠ2@§ V?«û@§Aò½¿ÎZi·™ÿÿҮ€dÀ@ô?Ú4>Ìo£÷¿Þå°õVV¼¿9Œ·ñ¿lϽpc@ØêñÀ?œ§l‡Þå?b¼«šQö?œ•àI«á?Î2ž®Ùå¿È^}<<ãù?¥`ÛVÚß?©˜XÔÐ?þ,Fˆ­æä?>S[·¸ÿ?Ü–‰]e ø¿² ?βô¿n\ð3§ï?ÄP'UÚ?¶u~NéÈÀ·kíY£; Àj‚îSâ¿ Ê{ÛdÈÜ?Ç—@Ò¡Šä¿8ʺ:Yô?½ÝZ_‰À\æ’£ôô¿-(xÞñ?Xçúâ¿(>»ŽòOÍ?¢e©iX ÀþrÕÁñö?”/bsÐ?ÄR%ÍA#Àvp¦±ÿ¿ª’ä Ó©ç?²7±<-濃C4h•Yô¿œÎ;i.Ò¿"/$ÃgÀª+£d0ê¿ÒfM®Øí? Ø¢@\€‰!À‚úiã(ÍÀ_Òê¹é?°Xþé_À¤áÂYÀʦö6}¹?›ÄõTõ?0Cý<Àþö•îžëÀd—¥ëv¸@²Énq?£¿µø×7Tü¿¦XYçÕ¿“°ÔsrÜæ?°¦-˜}„¸?{lèrÉ@Y¹¥GÔ@5V'|¾ñ¿d@·§<ï?†(@€À½hFÀY0@íñ=s"@£,£Å¿ÅÌ“KÓœÀ?Ô”B¥òÀ?élãxoñì¿:l¦Íxþ?&dÓ=âsÝ¿èñ_jùË?tbÏõð¿Rd¬À.ø? ½FÙ„ûã¿ti0$ÎÝ?(olà¿Rõ¿ŸˆË…œ)í¿ö¡9%F@¼ªÓrKÀ)3Že¤¼ÀAòˆ®i­Àÿ”‹¢Ä¿nÛ/,÷Ö?wÖÚã 5ð?¯&Íãœ%è?ˆ‰‚‘ Ÿ?ñEVGOÀ4w$X‡RÒ¿F.{D&ã¿0æŠnÄæ¿‡3’êô¿Z}†¹ûÒ¿V ­ž.ñ¿|Ò.ku¡”?Â[”ßË?–´`ØÚÖ?ƒ!¨£P À7|´Öþ¿a¶ð¦U翇WªAi@ÖÒqŠ@¹3îí?™«‰†ìÀxà˜;Zæ²?áìÄÈ£,ò¿”ëS*­îÙ¿Ì=‘0oç?œS”éÛ¿7ÒVÞÛ¿µ€så<ßë¿(Ô:sÀí@w©•™à濇ŒS[– @CCî ÖÖ@V[ifFžß?ôéÊ£^W@¦îö˜£ü¿V˜Áž¥ôö¿Ì±±9uaå¿0}×!À–dakN¦Õ?óu²J²ò¿¨@›Ïîô¿{pñ¥ìÌè¿áú–äzï?Ñp®91³ ÀÚ‰ø2(ç?Eün;hë?DZ/QönÀ´“û¯hæÀ¿ÓpžÒW@ ÛÒ#¤?Ì£½”9¡@„°§úÀ†ûƒFú¿#EM:Èé?BøÔð?ÃzÔcæ¿<1!în@ÇÛˆô­žë¿0qrŸCë¿2OÒÐrºã¿ý<šó¿Ê[œª‰Lð¿äæ­ø¿?Že Ž}þ?7Bß÷u±×?‰Ê_!ïÎ@<¸€í…Çç?ï7Ì‚ìCï¿âç‚t&Àü½Ôœã¿)GfÇ”ä?ÔÐ…>g\ú?šˆûšw%í?h]ì&ƒƒé¿4ø'¢KmÔ¿ÆÍü¬|ù¿WX>5tÅ @ ¾ª­Aý?7TúÛó¿Ô=¤ã @§:,o¹‹ú?à>S–‰gû¿/ø,Û(ú¿f¬%ƒø  Àš§˜%¬‹è??’œE-³ú¿¸« +ë¿ë[s=¦û¿íÕè(Ò¿þ…_Áô_@Wn•³Ê?E0Õédé?äâTâZ¶Ð?ZY0yع?Z0Þ»—À¿œmBÇÀªš¹É/¿?¢Nû~ @ºæÛøÕå?…¾Jþñ&Ç¿x“† F¤@ÈŸ]±¹Xä¿bѪ1³ÄÑ¿4÷¡Ó•À²zÿ‘™ßô?®ü™tõæ?zUÈë0ñ¿Ýú7yÙò¿$+Å5jjÁ¿È’[yç À‰æ.”þ?Eàx%îÚ¿%­€m ²@ÃóÇfÐ÷¿ZÃhà>À˜4¤òòú¿çÄþðóðÆ¿`„9L.À< (niÿ?ó®ÁkÖ@Tn A>俨ð“¦xÑ?Œ'íû°ö?Ó¼ûpJÁ¿—ß~j7âê¿Â΢ˆ—ä?LŸîWôò?Õò«Æß@â ê—|þ?ZctƼ¿¼ä&‹=í?A0J¶Àâm‘GËæ¿™Böçi@£ä.ØLó?„DÔáÓŽ ÀÜkÒÑýî¿'`^Ð,ï@*„¾<ÁÑ?å‰g„cø¿Úžzï¹FÀãÒ•á Sð¿ÐÉÕKà¿õØV ùªô?B](uý?qÏ\À'{šØ%ü?S1odyÌÙ?+ßnRäü?E[_Y•Ì¿·Ü¹í’!뿹÷ âfë¿ÆÂW¹5ç?£‰=`@–tïLŸ}à¿®¨Zð¿Ci™ôègÃ?ã}~–% @U&Qg›eá?ÂîvI_Ñ¿vIçEÖØ¿˜Â°ÆUò?ÏØئ Ï¿Æg|…t‹è?ND–(ÉKð¿4šêòÊüî?ÏÛðõçó? _n–>ä¿©ßÓRþ†Ò?&Èju–P @§]ZÔ”>ò?´„Ñèä?W ;¾–ü¿lƒê=~ô?pz›ÕÛ$οɣPÞ¹¼ö?ét—€©ü?mnTí„[ñ?›F‰Ç3ÀZ6•±i@¸£=ŒF•¥?©ºnÃZ>ù?pgZÔ¶•à?€'i¨‘ªï¿‡ø@?”¿qJÓÊÂ-鿦ƒÚ±Ñ¿}šBΩiÔ¿‹ÓxõÍ¿J{ÀÀá¿]x/Záì?1g:*?@o©ÝšQŒ¹¿w­D¾…@&Må®Ã?ÆQ»ÛðÿÕ?*°ó}Ô?ˆÑznê¿Þç7è}â?Ðz€*¹Ïù?¶¹ œ4ò¿¿+Ï¿@(ƒ·˜kæ?ÝÕùJÖÀ?õrÇVò¿¡ÈW:<ñ¿3èµñ-eô?ô”Ù9v¥Ú?~œõIrpû?‡9{›\@‡˜âv î¿c ?A9éÑ¿)ù×à®Àú¬Ów/·³¿“8·¹Ÿ[@ÁÕ±ùº«ò?€ín»+m_¿ºS÷VŽ{À#A¼’ FÖ¿šó+±¦@o,j– ÀÓÃJü­Ä?ÖÑMä…¨@ü¦'‚Ðà? ²Þ­‹ìÀ‘ããJ…ïé?ðIÂÞà?\0ó¨aý¿;·µ±Â¿ˆâŽZã?‰+]n cù¿ŽA+àœ@ð“øO†ú¿®œ pÅ ÀáŠSAü¿™QqÛ¿¾¶µVñî?+äç’uñ?ð¶ü)dô?Ž#™È õ?7¸>]³þ¿€æN(«¿È­‹ç?@Ó/Öˆ‡¿\´HûÊæá?%eBt:'å?ïJγ4ð?®í¿œJô?B¢pÊåÜú¿ö¼]„¶æï?Vv™-¥¯é?†~ÀaùÈã¿ã¦ eÀótnI:ù¿b­fpÓÜ¿¨û*_íƒú?( Õ³ì_á?æLcmœë¿l ´Àh-ò¿BÏœ§_èÈ?ÖîôÙ Þ¿¬¶`ìÁ¿ä! ^ïó?¥cÑÍ}‚ò¿&‰PÝ?êtaèœÚ?º™<#£…À•Zó”Ÿá?:<Ë@6Íø¿ër«;tô?Ò,/¶(»Ê¿°ÁÎðûå¿LÊeFì­¿€užýÙ¿œO©¨¡yÀ‹UiC/…â?8›‡Cç}Ù¿Úøl…è?OmaHMä?˜«KY/ëÛ?E÷.d¨&À² éiúÔ?4üh@@Îòbä@ÑH{‡À9À{±ƒé·p%À¶ÀÏy-ñ?>˜Vxç¿L~P`®ÿ?9¶r@ËrÚ¿öè^ÊÆ>1ÀÂüŸ,å¿™‰Ö£ä"ÀÊ:‰@›dá@ÛMCæ$“ @øYÔ%z»¿¤7”M9@¥%÷w#@ÉXès Ý @Ñ2yÁVÇ@Ë•Çï?œÀâˆÚÞ^ô¿^ÕõŽìËó?‘ßOñÙäÀø]«¿Òr @iÚÈ€"ÀÐ!\=½Ù?®4ÐÀ7 Àœ±Oèçb @€¾HÚM­Àëtlþô@wÅ{ýÚÀù>º¤5@aruìe¶í?ñYAÊ@Õ°æ}yä?̦×Bến‚G>oÃ@ý¯tB²bÀSïçÀ¯Q¢ÄT Àú˜€¿²{@ˆ~x¢™½ë¿ôýñí¿›Ù~§ž_ú?=ȼÍË @RCU®ù’Ê¿`p;ZlÜ¿£›Öø«Ô?L…£éq(À?½)|ÀIx¦U@lˆêÁÊWõ¿ÎUQÓ?àNuîc<ì?óUÞâ<Àr=ãôA@$è;gpø¿Þæ„Ú0¢Àõ0¤&îä@Š(§ÿÊû¿2|‡šïý?W=/:4@ž]žŸ‘&ñ?Ö9™ŠÌè?/€E‘Ð þ¿Ñ(KÍã«Ý¿0É”AÖ@ž‚éŸî?øµîñ­@#3«oç¿$ ìö+÷å?¿Îo  Lÿ?€^ræX7÷¿:3øÛzdÉ¿½ž5²5@>æà7zÀaiVÛfàñ?ªÇ°e¶è?¬"Ù·Frù¿N=«#´Dû?þ«³Äè@¥¾?û…›ü¿¿ôJ”[÷?_e˧LDÝ?$ ›“ì?xŸ¾^ç?‡ÚÏ?Àn8@H@1„‚@¹Š”ÝNÀ@Væµ5.b?d âô¿)¾ZÈ—-þ¿ô¾6Ú©À×!©65Ô¿Ž‚7O7@®PÉwÆ À¥a‰x•kÀ¤ ”ìÖ¿àõD£‡ã¡?y& @?.5åE´þ?³å›Šé•ï?ÌC¹(@l@ ¸æø?ÀÀ”R- ‡õÀÕE¨h9ä?5qg À¿†ƒò6õ¿£Ü‚†Diü?ìû !¢ŽÀc¥Ž¹xH@N±+åŠ(@Ée‚Ðþ @Õ%>·39ú¿Ð²ï>N¤@cŠóÜÀŽmu ó?ä ¶óÙÖ@€óZ§é• ÀŒ#[ZÐ_ä?+¶Êç?Ié÷? @öònس×?4 ‹n‘æ¿ðYŸÓöü?‚gÌâºó¿©±æ¬ã?µ!ûA«À& Ê¡ë À¢Å ž0õ?{rÀv»Àž(ZÊu5⿤ˆƒªÿ?A„î?ȃÀ°•óáÞA@B‚¾QŠ~ @‘&(‰©ÑÝ?>äÑÙ=ù«?Ú4"ÓÛ¿Ý»Êþ?ÉGvõ¿i%˲µ}Àúlóq!@Ò?EŸ5ºˆÒ@ó”êCxÀÊ$ó–¿ð?V®6ÐÇ”ü¿}²nq<(¸?ak5h Àò·îR=S@—§猓ѿÿ&;|@–üµÊ­1À*›šõÀÞÄ?®×õ{5ß?Œ|!2›Ø¿=ŸNNRð¿ƨ¯žˆ À4»ó6÷›@RŸi ¦•@ÞÂQ§¿%8@p¾Nñ6¦2@0²á,¤ @úý´ *'ÀÇChmŽüì?Ó>Üá¿£àh?AXÿS–†ïöÀ |«Z3@@À”Üäßå¿z{.òÀ®÷?­„ÉèÓs@>nj}À‹~}/—Íù¿qU8´&ýÀ‰¾ öÀ‹Ím«!ÀE K9¢× ÀªË¨’?ùÀºt³GtH@ØöËÑ{á?Õ&#¹4pü¿˜xó'ú?ì/JqFø@;ñO‡ÅÀ¸¨«Ð\¹Àæ[ÒM!²ÀƒÈ_ o Àÿ¾!yù?—ÕDšÆÀ=þ¡ æÐÀsª$LY‘ @‘Ƣѿh®-IÀñ q€54@ŸQ$Î̳0@GaÂëñ0Àp×Qß @ij²‚jÖ×?ø’rH?^!@m†nÙÒxü¿Yb\RºÜÀJ‚ч!þ?Ø^wFn#ÀþuOÕF®À(HB‡iz·?¹½{ñÔ¿ ]¥×Üòâ?ⵦR` @°G£?ÀEg1ü…â¿‚>~°„È,À l»8!§#@‰磩:ñ¿b‹2ž3eÀ¸‹GUÎrÀ=@R4ü¼Wö¿«’EQßý¿{•–¢*ô¿ým•µÄ~À„ý³Âú¿Ó¹è5w@6 ö¾HÀ³z‡ñý™ö?40†Ô0û?dÒV¼Nþ?ÓŒfâõ¿iù¹Ç“þ¿¢ø]ûô¿&–dF_@©ÇwQ®@°-ˆ˜ Üà?¸¸¢)ÀG%ˆ2â¿Ä¨È7à¿Ó…™zå?,RSÏ À‚Óþ•1æö¿"ßÒD%Àá;ŠY±¥ÀÐó/‘ê¿÷ç¯H]ñ¿qü.5Û_í?6 ›"£ @º`\ñóä¿8bð{Aé?±7Cºj<@ d?Á–‡À€RwÓÀÏžÝcV¡ @Hx®\¡íï¿ÀÌÑvú¿Üepä·b@±„~WÐÒú¿º=yS4õÀdaüÏ `õ¿T´5qî«ÀøavæC'é?%WQ.EÏÀ/UÆ4Vþ¿^òP™íؼ¿ôuZª ÀBÕsã iÀÇ”LŽD­õ?w1²'@dBÿokåÝ¿ˆ²šƒ~_è¿Üzw7ü0ç¿¥Îä·èç?Qœ>?¼GÜ¿Z¼ªí.ù¿`!×@‰¹ˆ¿ÕlaÅy´¿ª‘#æhµ¿þÛÝÎÇzõ¿0ÕáŽà?„ žÁ¹å¿&xÝŠ+ @¿‚ŸŒIž @U¥ÀC© ÀȲÏ!F£?Í2ç'BNô?ÌQ3ªF_Þ?A>dð?WÝ‹€N¦À¿Ó[]%\Àñ¬y¯ô[@;ÉK ” Àðv2·ÿ†ê¿¶•h&p& À#Rl^#Äö¿×ì—ç?ýÙÚß9BÃ?Y#¬„ÀìƒùNtÏÃ?$ð|rBoä¿î²×”äªâ?ÙÌÆýTSü¿âç Ðìò¿ŸâÚ»Õ§Àp½·L9þ?TÄ™&oÔ¹¿¶Ì`øI¼Àk®nÎBë À–Iòª—Ë¿ë`G–è¿+]X§èmÀ?Nph/fó¿q •SüÒ?àÆ · ³À=ã)Èý¿‡u+ßò¿è 1,õ @;¡êUšú?Ðz³¶ï¿ÅÐÝoçp⿯3ò~ÕŸé¿NØbZ}ö?ì“iø@‹³Ð{•æ?S”Ìq¼¿»>ç²ÀM©çys Às¶åÛ(Gó?D¥ó˃ÀºrÍÝæ¿xÈïýÈö?”qFô8Æ ÀÒŒVÁè?‚ECGq>í?ŽôV¸òiï?v¡§k÷åõ?ÑôsíõØ?w~tÓ»Æ@hÓ4 í?Õ`.=NÀck™$ûý¿pþdÝ5=é¿›¦4Uä-÷?ßÇ¡g¿sö³]¢jÕ?¬ž 1 Àj:{lþÝ?€fJ†¾Ð?Åyww„èÀ<ˆqú´¿›LzšiÀ A&3ÔhÀH6¦Ræ?§Aó`hù?7IGX5eç¿õ„mÆjã¿Qv@KfTÜ¿hÚ0ÓÁ÷¿í[ËÀg1Tßš ÀšNùÛkâ?·TY›„?À(ðn5#õ¿e€ðíl© À™8( Ú«ÀÈQޜο€0‡6šó¿‰4ò-€…ñ¿ßȴɸ’æ?YÒûµ+(@ý›4ž6ÿ¿6É»›¯þ?Ÿ{Wò×@uŸôШÀbd²×c¸Â?/™G%›Jè¿ô÷yò2EÀºD¤Eä?·4dß í¿ÂÎÞºh@¾ˆ<%{ÿ?Š÷u kû?쑆Mª@º‚3òC<À½Îkܱã?JŒ<Ý‚Sí¿~'2ðIþ?ÿûÒtxÌ¿(†ÜCÿ?:“‰BMú?ܲL¥â?ÉºØ ÀÌâ9Q ¦?¤Ì*4õÉ@4Òè­çâ@sîGq½ì¿ åÛ½Jóÿ?„·Ï.È“ À¦õ±r[ó@µIâ¡ ¿ ÚŠu‚} Àª(ê_p‡Àò£Ì˜áø¿…y†x¦@Îüd£ÐËú¿!”…Ϩ Àq eÕIÀa’¾B§ ë¿SanKµ"ü¿»ÇLJèÀ58¾aì¿ãðŽÊnÕó?ô™}ººç§?(³K#wQ@‘B­F°¶?iŸÀà À@OßœñÏ@¦1Uð {õ?èfþÎÎ@"R—_äÑí¿Qm‘~Zòá¿e5O»#ô?0qÚè@_?,Ž·`ý?¼ì€E#`ÀR(Œ-EÕ¿â93ß?ÐÇͳ0t @¬–Äá}+@>ëæáCá¿ëjm|jÆÛ?‰(¸'–nö?ßÜÀ‰SÙ¿yРïÀæ¶²ªÀÀ6E7rÂéô?-(½>ȶ?ðYøà¿óΈ­r>ÀÅn¦%eú@s;úl €þ?9Þ3lcïó?™Z³Vé@äó‰´ø?arW&æÙ?L+tҜп*羞žp俇ۖ ®Ò㿳:hô¿gæz8:€Ý¿øû=ê-×ô¿Ë½ “ü÷¿Iyܸ·Ïö¿AÆ6+wj@àƒøÛ|ð?u¹õ®œß @ë4ªJç‚÷¿Ÿy>—@˜Nó‚Äî?œ×âŽë.·¿¶ßÆšIÀçMß ˜þ?¬—åÉM“ý?,ñ±# #À˜s•Áþ‡ô?Fü\×ã?ÃJ˱'µÀcÆëmÀÆVzù-fÀ ò©7i§á¿Ïx=ðöÍ¿?=êSX}@ëZÍ"'Â?ävE§Ebõ¿®l {'ë¿WdƤz ÀçÜŽ(>Àv± §á_ç?' *r°=ì¿ ýð·ñâ@–YæG„–þ¿’lm-ˆà¿t8ÅTó?¤­ŠF­þ¿OÁ>h‰Ï÷¿ðË QiAõ¿Ãð“ûÅã?ö—­W/Ú¿ !k“Òÿ¿YCZþ–Òó?³[6'ð?^YüçˆêÓ?½;Îû) é¿3Ðí*ÚK @xJ M²% @vZi9„×?¹ÄxÚ¢Àn>I\4¤Ô?ÍE¢Áfô¿OWhô*@ap×¼6@ê~BIsÜ¿ÕèÜÙß`ÿ?wD˜“/µ³?Hà •ÁŸ¿f£x–‚@“âd+² @@Ð:EÛà¡?îT³»î?‰„Ó~À·R?bÑHè¿ù~dÜ@À<ßQðñ?šL*xrÝ?Ÿî‰>F@ ‚ÿ÷Ûû¿X†¢Œ…ò¿ù'êòäÀš´&| Ô Àv>¯óò@z$Q¡bwÒ¿öÆ”SoRÀÁ×WGëµó?cëüC‚ú¿p¬Ý“ð?ªŽgìRWÓ¿ùM<òä¿R,G…hcû¿§Ôø™fý¿ÃëèeSó¿Ûâg¢dËû?y&y& @蠥× @ßûÇ˜ë° @ wåñÉÿ¿úC¥@Ñfö¿§2ôNg À„ºÒXªÀ¼ƒ¢ÍÞô?ˆH nÀ @ƒYìŠÖXÿ¿ìVª-òíó??±ÊàÈÁÛ¿çi†!µÓÀ 1ñ—¡»ð¿ ~¡ñ?:CÆÈ)©Ë¿ˆÒTÿŸ«÷¿ñµøÖÀ˜ <»æ?P?ò~ÎëÙ¿^Î[E±Ê?¼ üán5Àí¹}Å?'_¶…ý?ùjk‘4;ü?_jeÑö?rGÙáäô?6$ÏÒÌÀ`ï˜äÎ?%icoˆø?¨%ÇöÖûÛ¿À˜MǺ @ïiýÎ æê??Ä(è%Í@£Ø«tUTÉ?µ-yõ?(TŸðjå¿bF_@å–rj¾Àrú´‚wÅå?PH™ËB÷?#J^¥oÒ?ÖôÎXÉú¿T%Ú–vµí?’ ÆmÜ¿æ]ô¨õ?N¿§9 @Ã;GC‡Õ¿«¾zúìÙ¿À«ÇÑ.«ò?yä$@“D.¡¶jº¿%@hM Ú¿()¢ù¹Û¿áé.ÏN> @©+/vÈÖÌ?>œpó—⻿`ãJ‚ú@Z¤$„ˆù?Êß4Qã?Ž9ëäe ÀÄŠ>î¶ð?ÉHôp…Ê¿æýõãô¿ 0·¾w¥ç¿ò}ÎÙ.£@¶:É y¤?ïkvƒuä¿&óy˜áÀœëš¶sð?ˆúÆPáü¿¬±SäéÀàòáú¹¿EI±¡IÐ?ÈmÎàó?$ïA~Bí¿5Û‘Ö ià¿x“j±:ò?´@ ˆ|#ô¿©Øƒ«íõ¿=²y¬}ÀÚ#õóAÀ޶ËMÈ¿ú+ú½?S@e{ Šø ÀÙo+e1@£tXÈQå&@1– ¨Z&À£ú¸iUŠ.ÀíþLÄšÇ @g§Ñ.‚³@½yþEgÐÀ±J¤£é@zvÔ7´·@³¤ËÎs'ÀŨù$‹˜@ÿBÅøñ/ý?dlѺñGÀvŽ!žUxÀz9~þÑvÒ¿ºÝ­ 7M @Y}àØã!À£E>pP!@àxŽå@#ÀÙk~ Á@%CÀ4èÀNzrBÁý¿\:Wžç?Çÿ}èÕ@7ºµè°tú¿)„δÀ(*ft¶ÀC2&€vü¿æh ,Ò¿^àmŸh À7•Ž'»"ÀšÚ#Ñnl2@›A8zd@ßȥЕpÀœéˆöÄ å¿h ÖH½ø@ÄuQ¾…Ž@Þö‡–“„Ú?ªºL•@9±l—æ?^‚3B5Œ-À­c~ìh­@[(ëwDØ¿àü:ÔŒ À¬q³îÀå 2ê“uÀù4ã¸÷Éî?oÔj<:SÀ×Ã.Ø¿Añ?I³»]#Q@€ãO¢@Îí!ÆEýÿ¿ëXߤdÀ\4¶5 ÀórISºIÀjÅï­šÏ@é¡V@ÒLC‘ô @«{zàø¿JÿùJK@ØÙvgz”Þ?÷S¬ + @Þ •‚àI(À!ÁdÕÓ @ös)øÕ¿Š`’KwÀ&XM™ À£1 dSó@f–t Íã?1¿!ð¨ð?})~²=Õ?žÆæúnÕ@Ƶc„-ü?¤–ïÌUÕÀì¦[rXó?sšÄd!ÐÐ?mú×´ ÀËûUıñ?$°qüü‹@à 5ã³Áò?ºQë «ÀVg¦tÚ¿„›+b0Iþ¿¾iqLûRῼ¯yÐÀY¦j(¼ À«Pjç÷?F³JC]Ÿ@ƒ*^Fgô¿8o¬¼3­@ó¸ÎêÇÀe¿Ñô?vf¢Š‘÷?üHÜKe°¿V$A˜â¿£fwkeæ?Ž9SwèäÀ\ê‘X­è¿š[ÎÚ Ïø¿e­‡,èß¿x„>Ö^ZÍ¿ƒc‹;·Ï@x ʺ´í?xÿ©/“@ÊÇ,gÉý@Õ>ÂqÓÀ^ïçªo￟( µó¿RÓ^2mï¿ï~—]ÔÕÀ¾Ìùr&@´­ÞhýØ¿¿uFç Àa ¼±îÉ¿©9f✓ÀÞ¸_™>VÀ°½¨¶ÂÀò$øÞÀЬsûÀÌ’§œœÀ0‘OZâ´@šre_áx@¸°‰´7 À¬nÐ.f¹? Õ`Aè¿ä#§f@¸g£kÀ¬Ì @(òák,ó¿´uGîêÀœ( MeHæ¿ÄøÊØØ)@¶_JA3Qò¿\ÝÈš“Àø¾¯R@ÅX“_ŠøÀnØ\>Z@ï»õê·@èõÀ-á?+ð q\Eê?ºä\øæÀ´uKàð¿'ă*<@Ñ7}áNZù?„oàÆ¹‰ü?íªŸº¨îø¿âK…ù`€ù?Ás}„À/óã‹Îió?Û5cN$@±þÙg“?™¼: A@2$ç@íáò¿­Ï.@¸¹d³ð¿F.cJÌ¿(™<*—õ?'87;æ¸ì?ø<|Š;Ö?Tó¾¾»@ýp,_›SÀÇÁqTa0@°×91Û£@aÙÏݲ3@À‹‡íÁÀú %މ©Ë¿¹xÀ„ÀK3@<`¿ñ½[/À±„ $@µÃ5[ŸÑ@5°— r@~²ZBV@õÂüé`›ù?±p©Ïþ¿i{“ð"îÀå]ÿ @žÕ­ŽÛ ÀÅmaJgñ¿¢ƒ¯`ëFø¿'UúèÀÌVãóÆ,@ÕDà×j¼@Ø”“²@$õèÝ2°â¿ ãö›à@4åKŵ@DÌR•Ç6À•ŠÄÞ ÀºUŽ1÷?; iƒ@2~bHgö¿ÎÏ «üá?©qÒï¸@ûÏÖ Àš Ÿ/Çè¿J:ºÏÀ6@~¿ž'"@ᛓËÔí?+#@û𿛎ùB@ÂKšSÐëì¿nÒŠ™Š3í¿KÒQQ{ÀC<åmÏ@'±Eƒ @â'/:Z@ä¾] x°¿vhd5]õ¿Ë³nIr@jBø ËÿÀÿ¢ºÎÀÖCu\Ì11ÀèvL®²Ä!ÀN>Eæeò?g‹Õ†±@ÎŒ¢4Dx ÀgÓt©D#í¿–2× l½õ¿÷_9?ëè@92 6 g@òö¶àÊ?ŒþKú‡ÀXPǼ—Gü?ܲRžs‘ù¿Fv‘ìƒó À§˜ÑèÔký?"`Kmà·¿Ä]·Åòf@8ê[‹MG@ìWl3Ê Àؘ~¿Àõa†ÿ"f´¿Ydg*$å¿-ÓB]Šó@úYܳ´À0J%.Àù-<µî¿&Âl–ßòÀ½cáÅÁF À´„¯šìã¿È îßu«ù?tÒü9j@sðõW€ê?}Õ¤E?†Õ¿|ñ:wþþ?ÿÑŽµˆ†ÿ¿½û=P³FÜ¿ [CÔ+$@æ¼w˜TPó?ïA²Þ Àî#É“¬1"@µ¡‚ø­Ú×?ê1Û@§ÝÝ0€@J·oËîM³?’V…~h ÀþôÉVB1ù?r^I·I»å¿¥P ìóû@ÓÔw¤Æ¼Àˆp,,бÀ#±dd÷¿¼Ú`åwÀCHàŽz*ñ?!ð™¸õ¿z”y{ÁRï¿dÃ6RÓ@aȃDùÀÄØ±ª–) À ‘X²=À{ABòÀ”ϼKQ^À=ÓN¾¥(é¿´g`È7À̸þ« #Àé`u¼OÀ±œ«¹.Àõ—ƒÌ)÷Àëb2i@¡=£=éÀãlÑ@cÀùß*9zþ?²‚mg+ÎÀoµ-ˆ@ôéµ Cæ¿xôŸRBû¿šˆ ûÉÀº(º)ÌÀ‹ˆÎ]éÍï¿KDgæ‡ï?ô!¹6ôtÀª¦p(Õ‘@,W2ã^]@GSÔ½>†Å?@½´yÀt àìµ?:šÐ^ÇBô?”ñ÷Ÿhý@Úìàúc—¿PÜ@"€cí‘ê?ã¶EŽHñ?TÔEacòñ¿I“4õ)¶@D—¥ * @¯‚áÒ¿’b»Öƒ¾ä?öc•m&@‰)qÕv ÀösGëÀ-bOÞ‚ƒÀ€/óØï¿¢Ð0Ó\ˆ@œ <—‰ÜØ¿ß“Ë |âÏ¿£©;Æö§ó¿É·®÷„Ú?‰üe㵪@ÖÌ%ï¿ Z‰Mí×Àò”ë.+;ü¿x£×Ižó?ܘ/jdž×?`ël.š´=ÀkÜå$<û¿…!£7úyø¿“ëVlC°è?VCÀ^Ó@‹¯Glµõ¿äÃuíºP@PQ}wàzê¿b'kEc³@ËÄê3(9Àý$~QÀŽ'³f£½ä?VáS2mÕ@ÄFÖá—‹ï?iycP,ý?ÑO$K@?“Mö•@ ˆâ€ @§|}Í@G³ú”  @£ø¬€_"@,ˆNáû@¬˜ã/¢Ì@^„¹F+Ø?©ï÷zÝ @–ºLòÕµä?ªÁjs:@V$ï«Æ?–ý²„\Ó?7ŠÝ.W#ÀDlówí?Ï×dØmò?= VŽîù¿0ÜÖ#e´ÿ¿¶Ü&̹À|ÇíG "÷?\m<;u!@´K ãdÀéFÕâÜYÀy§`íš @kø5d–@¯ªf¢À( ÀA¢Aº üô?êq…Ÿ­ô?çW‚eÙï!@íòªÌpå?é&«AsïÀ,eQš}‡?¾áJï=Áû¿¢uÌ 8O@­Õ>ÒBâ?ÖmÖ|P{ÀÇç˜èÝÏÀ“.×,l&ø¿ÉçÖ-• @Cá–PB÷¿š0&‚ÿZÀ埸ûmƒ@)œÃ~ì @VQá0<™ã?ÆZ“Nš= @¨…üÑö¿[–ŸåiD@ë~(Ž À³ÄàÛ½ÆÀß៙{@ÃqõÍÕû÷¿¸»‡¦¢Ý¿““¤øá â¿!/?݈fÀïï~†ã?ùþÝhQ—@Þ ÏXÏaõ¿Á¥Qdýî@B.°W²¦@ ã6mÁÓ?áßoÛÀóWJ±пèøÛpY÷?ž\·ùTø¿Ò6Ñ«ù@š‚¡š œ @e26ó÷ã¿÷Ç6óá?z茎Î?ð@Öœ»û@7Y^<ò¿9Ï~7À»³ëË9 @{aÔê׉î?Zð|dmõÚަ¿>áß#ð×À“I æý¿ÿøZ†y’À/ßö/¿Àðpœüú?Qý¸Òè‰Ê?/HÄç„@ 7ÜŽ@ß•ì*ÓôÍ?RÀ=0Eûå?È®¹d½ÀôNÅ¥‡ À"š¶Äð²@O†º/@Ž›€åÙ|@ÅÉŸ¤G@gé†G«Jó¿ËNÝöùÀ Û~¤"ò¿¥ •Ù“ò?@M:? aõ?˸+ö@Xë;2±áì¿!YÑœƒþ¿Œ6¼õq'ï¿p*i™©ÀðÆ5kªš?,¤’Z-ÚÄ¿¼(¶ƒþø?ðÞ þ`°á¿Ký¥‘-oû¿Ì¦—éÜÒ Àúz§Ãz@cºh¼ÙT@ªâuÈÍ> @¥26„ÀX'ï³ þ¿è]²þ̬À:Y>6›Bö¿0C%™É—?%œM•⿜×|ù— À£]¨ ÙÊ@uTÖ¿$zÏ/®Ò?/ù™×Ÿd™?@Q~ í ÀÃ*ˆð5Ὲ›È]j.@£ìÁ‰ƒcù?Xfq<=Õ¿µ¨:uŠÀ9ƒLðÅÉ?]_êbÀ.@ öM¿üÂ?õ N#X@g+Q¦dö¿Á$Aþ>Àíì¿X&Ç?®zÞªô¿A×jÀÃô?¢6`ôÌÿ?Ȫ]:N§@ÔZ„5êßø?†DªÀ cŸåÆOÀĶa¨³@v¡íJ7­ À([Ð~!Àð°ä ð?ðÃ6ׄä׿»Ü+÷Cæò?"Œ¥?DAé¿Âõàdÿ@öªÂ} ã?|;åŽ45í¿[Ì‘iÀÁ(”ç—à@-¦ÑšÛÀ ëFÝ@kÜwà?W£¸ ø?kßX¿„lºÓ5ñ?$ŽÃIMô?_â0=ý?þc°áÁ¿D»þ?ž@š"æž.@jã¶ÙU@ÿ”5›ÈÖ?ÝicgøGô?ÈÃRtÀ¥ت5ö¿]’Â¥X@-h€ÇFâ@Éß]3‡ó?³4»_ À<¤¼_}Èè?î$Ø-” ÀÖ¶øE8? @ÿÖ©ŸªµÀIn§r @’>B1Ëÿ?µ&¢,X]À³ëQ“¤ À:WJøÁò¿<©Õ:êOÀ0dì0-tâ¿ocÁ.°ó¿Á–¼ëâ¿Í.ÙÆ@÷ÌYùÀ}û½N¤Àf3︅tÓ?pîá‚ÕÀ¶¶.Á3ÀüÚÑ‘æ?_}ë„a«ÀéDÒ €ÿ¿æ 7© ÀHÎÅ×í@dg&£ ê?ÆN&|Ϩê?ñÍÒ…>ÀË|#Zðð¿+tà|ÀNî&E  À(˜l%ø¿ïr¢FÓ¬ø?#¶ÐA6@}iÒlNÂ?GÀ†o\3ô?´lxÜòòû¿Î#ƒyÞ5ô¿÷b,tàô@w¢.0Ü‹ý¿:|?˜*ï¿Dë P#Â?*MµÖ'oê? ðÌx;÷¿) r6” @õ‰±ã®š÷?ï&ázwÜ @Pضå^t®? Övƹß?ìÖ45ÀSƒ‹nãõ@Lä³ÊîLÀRûSáÓÌ?Ä[¹1ÖmÀ¸[-üÔ?[”05vOî¿Æº¹Úõ ý?Ò俍~BÀ(8yô ù®¿R }•â?µ¸Ð´ÏfÀ‡°«z¤@ßHžgzh@¢ÅµNÅ‚ä¿þÕMî´Íë?Ö-û²-ãÞ¿Úh†P‰VÀ¨Þÿpk‰þ¿‘óªà^ß?j¡lò­À#Ú± ¾â?£»`§åXÀc[Z°,@ÄÓjºó?~´YÁÈlé?š*ƉÖèÀÊlÌr ÀôO¸ãusÀä‘ù¤+]Ä¿3•íÉYì¿â½m @kn÷Žõ@bÛ>¤îó?êƒO<@Œ:ÕOè¿‡ëø´@â¿=OIºÖ?õº CÍàê?X‘±Îh›û¿”‹¦É?™Ó¿˜+*ÁÔú¿¿|V·ÍÞ@jbPU/Šß¿·vÅÖBõ?ì?K7n`0!÷¿ˆlyÀ²ÀLúòiÂÏÇ¿ÇK GJ–þ?¸{½ËÏäÀQTo•ê+@Ï7¬\«z÷?ÃD»àe@%XȺAsë¿ÏoàP€@¾mÓü/Ž @É–3O‚Ð@@¦V×Úk@­÷~™l@{þ™”Yyâ¿Üãe!¼@3ÙO;¡pÀÊ›ÒL!@Y|Ñ¢@4ŠÄˆ@PÚ8"ƒ@fgÒa°)@ü្DCý¿¨(žIû^À4é0a«üÿ¿Q—²ÝK³@—Ñ‘#0Lù¿W]Ûzr½!@ñ5üêSî@gE˪ü1ê?°t,èÆVõ?¾Ž .á@qFÅä’h@(ç;Cõ§÷?•YÀ¹¾ÀÏ[Iäç!@ÉaËñ?HäÀ"4è@$çTjl@–2°ï9ÚÀð)ÀvŒú¿æd³ÆÀ'Pe«Å=À›ÄGÑïŠ!ÀHBÜt™Ñ¿.vï<ñá @ÊûJ=@z ¨IjÀTË‚0®² À©bbê*&À­Î‚’×@5›™Mz'ÀwGˆA"ڿ‚ol žý?'“B×À3ާ‰è<ö? 9ˈÀMÅóB73ÀUµˆ¨þ¨@Á1Þ«~¤ @ºFUO¼ÀÍxWBdý¿5PÐÛÀm|Èg¿É^7‚„ @ˆ,ÀÀÙéª.â@VÝl3÷@*ÈH…θë?'kzm‘"@ýÆd²éðÀŒLé[mŒÀÓôª’ð¯ó¿¤jò™ŠâÀÉJ›Û•á?d×K9È@b)·w@ñš8û4#@–áaBõ?œÛX;;@K°È‚B„ø¿bZœ U%@»ÆÇyïÀ÷ÍŽy4¤@a‘2J?6@Ù,í˜vÒ¿<'hm ð@Ù<ÙÆ“Xü??og‚@wºÏY‡#@NŽùÈ|)пÐå¶4ú–@y’­ìc@jkZðs>@FïßM5|á?3Ùéⱂø¿â”ÛßgÀ‡Û²©Á@Jc Åë?Â880ïèø??w`¯¢iÀoqnPbIñ?ÝÈcÿÓ`ì??{¨´!@ù—É/ˆ,À*W$³ãAÀ·7ÁºÃ¢@o4¬³@V0ÄhÜ$ÀôøÔ‹æ?X%!Mƒ@Ê„Õ(OGç?8áÐå5×ÀÉlßSnõ?8äoç£|@ôvª{Àœ¬¢• ÀgÍjª˜¾ú?ö;.@Ö1"4a@ØÔº”FÀ%ãÜj…÷@_ºå~éÀ|_NÁ?ƒF‡<Æ?a!Y{n}@À”pMáÔ¢?¿–W.ðÀ$ðvzI@PwæRô?â!ÿPý¿½Q„bØÀlÝdx«À–=vÍÕè%ÀÐõû—0)À^C´?U@4(*¼@Nöð6›(@À8Hz1‡y?ëüsˆªÔ¿{ma¯r¸ü¿P³ŒßÀá?5tˆ6Àí~£Kp_"Àù”‡]ÙÁÀŠV;žF±@ºyÌÉDaÀLBºÆm@Åa>R,yá¿òYû·C@1wb$›Î@ qs—×. @pÓ\ëÐè?+Œ±x‹Põ?jð†"&ü¿ºb0ìaÀÆ>x^2˜Ó¿ô!y˺¤ÀíÜgøÉKÀpú‚<æ¿ñ'îíK»1@ï…¿>‘¡@…ì™i8@O0?ñôvÀ 힪!À¹Ä#nŒê¿ßÅ%@¯Üì‚ÚÜÀút”ã¾ÀI»KûC@ $•Šê–ë?Í)xq.@¤{ºƒ~À e&쟌@_Ó¾ã†A!@·tcŽß}!@ˆF<¤%‚@PëX·£ì@*ìA?sJù?iD(ü½êÀ€™¥OvÙ?|öò‚…ú?HÆ$ð<ü?,ÊÅÍOa@ àÊë?•ü¿ðRaKw^@Ó:Á…Ñ @wê–.Kp1À~4J¦ã@Ve‚ *’ñ?òDØÓRÀó5|Ùys#ÀÚQc¨Ì€À­6ÎkY @-z²ô?\±0"™@Q¾òU@½€75@÷%E@‚&C딨 ÀÏ¡j~äeÀ * ^æžý¿ízkÊay@EiȉÏ'@Õîk6ä%@ì|/~¶¦î¿_êï‘VkÀÿQ%‘V~@²òù]ÃÊ¿ë‰xóÎË@”?Ý;E`@Ưõ‡Ç@|¤ù‡þ%@ªªä!ø#Àp„0¢9%@‡'ÝÈÝÉÀ¤ã§Hé?åVC4‡@ÿØ\1õh @TðJqbÆ¿¼ñŽ©cð?ëÖñ”ÄÀ¬(´½ÑÀ–@¨ðO«À¾ÿÄ8ƒÄ@­u“~o @®‹œxLd@C^Ðñ@¼D@`lÀcÈäá:¨Ô?¤—­›*}ÀÅ 4D !Àºûj™ñ¡ @ºè©þ¿`oð”§@šåU¿/ æ?gŸÙ1` À >U¡@p<À<=ë׿tÜBg£Íþ?"+¾2P¡ À»$Ü=ê@瘚ٿFö?G8Кï‡@ÃvsEÞ#@˜í£L«@@ojiƒ9ο&¿$drŽ%@Âꊧt‰!ÀÀM ;Õ˜ @ôÈ"C¤¿ðÞt Ú¿ï?kÀ”C\öÀÚÇ ÈÀÚ¼È~aÕ¿?ºƒ¾ùÕ¿^u} Ù£@ÃJ‰ŒuÀD’Ó í?Pœ i1€@F±çð•Œý?£ùàÓ¿œpˆ3ÿ?Œ’„t¨@`åÙâ?8úÚ›Ù¿u3: I4À²ÃÍ”äcÀêÈ?Ö<€È?¢D:"ˆî@®91£AÐ?GDîµÀÕ·µ»ZÀòëÇV&@«âôòÀTÀº–¼ü–°ã¿v*vò?Õ¯Œø¿À¢’B¦Áõ?¬¦¯ü’¯ @`RtÁÊHý?ŒêH\>À s{9·›!@@¢±y¶†¿pùeÕ@œvÿm^ü@ŽÝ/á(Á?>Sñ›â¤ÀO!HÖò?±íóêKÀÓQ|–Àí¿L3Ö´ÀBÿ¿¤Š}Œ8-À.×Í´ @SúÉBÒ< @…ÿΓÌíÀ ðC%AØÀ²¶Â$ Ù?óù„Õuó?^[\AAHÀª(ÄžFÞù¿ˆgã c;@ç4ä2æÀ4ç¬—ÎÆ À¡„&æ "@/hu6ÙÀrš“ü„Ð뿈îÂå1@ÀH߇[®þ¿ d»v…t@oÛkP€;é?;cè—p@;…ö3j@Ú#ñ iÀvs–@D @FÀÿ‘\@ð¡Ö+¨@ éUê^ÀìB6æ?o>X%ëßü?3”ÆÐ7yÀÁ2˜¼AÚ@ª¹6º@ ÙŸM”aÀG˜Tº@Ä`Ç}gê?t°>Çøö¿ºËö„!ûÀò1µ:ÀÊ[?+]ä?å3.Â0@Ñæ±b‚-@Ð a®@Í‚ÜÔÁÀöó÷—µ”ö¿NÑhÀ¥~8T–õ À×”Å@Z&@1 c±kô¿ÏY˜s+þ?´6 Oçò?[`·xܯ"ÀÎ ";Í ø¿º%$%2ƒÀf²ä¸g¥ÀÈ´‚¬@³¨Ñ*Žž÷? Ù¢B¢ÌÀù¼‚a•(ó¿Ì¹våîè¿ù7Zþ@&¥eqø×@ìÞÿò Ô@šâ|s ï?Slmn¢²î¿ë×üŠ…ïÀ8 ø@þý¿jxvÆö?}ªæÖ! À`ã*íÜ@ qzaÞŠ@&Ó$’HpÀ–@h}+!EY­¿`’l<©ìÀ^ËŠ_x{Ñ?`›è€«½¿‘­§¾|å¿´K¨ô67À0%'ÒLý?4>M @o)?g\@ “ÖÛ/Ç;@!¨¼€Èé¿GqÕeÂ@šd ]û»í?x]oh×I@cž&-¢ø¿ Ð÷ ÀÛ9Aõ¢½æ¿bpr»l@žÄÕ`¯æ¿–¨†Å3÷¿hí@JM}è?Ó×ü?¸&2âLâ?\ÔsËÁ¿uvÿèue@«;’°–%÷?ìýtÊŒÿ?›‰e(¿ÀT‰guWÂÀ ÖßbS‚=Àdgv¥ö@¿ÎÖL¡å @2ç¹,E@l(æ»ÔÆ@¦ds€«äê?ÉÄÒæ8Ó?¾ Þ@Åí?b´Ž¯‚ê¿îR:™Jç@¸px~:™ë?¯›p•Bê?ßu¤@ë~ª^×Õð?òÜwƒy`ó¿s´ø`¦ @‚?³z‰@½ ÔL€?@Ï5B5º À÷n¢@|Î@,œ‘›Ö8@ÿÓ•€¾„ú?fUZÀ”Rõ¿{£ÇU¥À€œ‹8ígÀ$I-1ú2ç?(xõQ©Í@ÄõÉ…"ªó¿Ò£è´1ù¿cirâþ¿®%gçåá?pÓ 24Àl5òXú?>’ÃÓãÀËÔÜãsÚ@Îθù@6IÂýŸVø?’¤tU÷=À•™Š»Îÿ?KK–¯Ö_À3(¶’'× @W UxÉÀV F¡˜Ò?ó †ÞÀÍÃ…O @ÑwÏÌß¿Të0`뿼ê·רé¿"¨²ï?l¸,PëW @ ¾°þ½nú?®£u—_Ù?Mª]ú+†Ào8Ñ„N"À:'hR©é@®™•#Ëàð?ïÉõ4!ý?8y5ð¼õ?‘bfÜU@»ÃpÑ @¹EWÛ @Ú(žÁêòÀù‚ÜAr²¿¿äLø“šë¿àÓ,åWú?Ít€ :  @X‘‚ê |Às¨È«µ?áE[{@{¢M„žÊÀ#$Õ=ò?ìUh²„@úÆ›ø?<ãŸßþ@!&À×ù ÀÈî7kzö@BÖ+„äùÿ¿-ü„Ê28Àñ{Ma¦Ñ@ïÓб¶J@HÀà sû?ÔŸ‹ñÊ?E6L¼äð¿z‡RÁŒ£ @µ«H¶ô¿Éób;7ÄÀ‰W Y\ä¿]ÞWÀ¾áÒÆð?Y Ä[…}ø?¶ÚG\øïÀÐE`€ò@ÿupS×ið?8c`×àÑ@ VñV¯Ð¿9‹ð@5ëÅB3û¿;d{ Qä¿f‹àXø?’T¹˜\þ?ú˜A“Ì@ÂyY¶3À'å¬òã¿2yk,X¤@HÆNåAö?ç7$Æô?v¥\¬Åñ?æõô¼]@Ãj»îÀj˜9 Êñ¿Pá,”+Q ÀmÎM:Æ?ýGò'⿎F‡`ìçà¿€/TVMÿú?WìA –U@"P.Tì¿¿šójî@¬^þñ¿WÛÚ\¶„À£ÌºgŽ¿¿:Ÿ[†€÷À˜Í¹Äæ¿JÀIƒ°!ë¿KÍ’ïÛ@OC5¤œ@þ£pù·ð¿8¹^5„ýÀ ŸÄòVÀp “ðý?aX)ÉL•@jé+ÈßpÀÓZ©(à @¸[•|ùþ¿ÖFü×çô?u•Sð¿¢Ïwعæþ¿Ì˨p+-Ç?'*OéîøÙ?¬þ"xÜVò?a»œE¹0@<íÃ÷¿¥¯iVv|@× ¬\æþ¿WÎ #¸Û¿\’­iu”Ú¿>·UueÌ¿KIhª[1ö?¸m[®Þq@ÒÒD81ð¿2²Ý{Ç@Ì1pú?Od¸0á÷?tDê3: ä?ùbr` ÀpúØí)ú¿e„eI° À}5Hšxù?A9R5B@-'Ñ|ê?Ü]u/»éó?¹¸3¼„Ù¿H¥÷”s@`¡¼£u,ë?têxÒUËð?ÖXé8ô¿qI0fRù?[¯z °yó?"#½ÛÙ±ê¿óXð"B• Àye”“‚b @=2J ã?¹] xpÀ7î¾Á–«ò?úÖ(ÀI³&ÞáÀÕÎ/ÐÀ?Ìí ùyæ?OíÖ’ À„¿ÁH/ÀaåIš@$Ñ~D–Wû?”Ò»VšðÀr7h/I\ ÀZh`2 ,À9.]Z´)À%ï¡TÀø)¼þsEî¿”• ðÅÀÈ?™…èÞQïÀRø¤?†Ø?Bú¶d)F@ÝßF뿬Kܤõ¿û@‹agñÀ÷^Ó›cOÀß'úĨ1@w%½õ¤ÀHËÖÃÜÀ³èI¾KUÀ¤aK%–  @2úó»&ô?Öz#©<@qΕêúÀøc,ÕÀÐü¿E{æ¶@&óp¦Ñ?sÇ xñ¿þ?{ßÐìˆÀUÓ݃ç’ö?—´·¦?X@¯Oì‡9@Õ;½u¾À*N–gÆ ÀrPgK2 ÀÈAöŽˆá¿Êªž«Þ9Ã?VÓ•OÀŠF:¤?$À}]§e•@óºË=ç¿§p¤Ý|ÖÀÅ:ç‹Àuû’%ú¿a˜9HqÀ“\­‘3.À Ž—BXá&@ñ¿37ÿ?Ø­[Ú«3 @” ¢ ¢ @‹£ú ˆó¿Inê7Uü¿l–öã¶À”ˆÇ™gš À- äÁ!@Àq˜—·ý?¿Ê³vÉ@ß+m@D— @ HgꯑÝ?4‚t‰@2û;Z$ÀœöS®qÀ£DWæÀ!Nõ5hmÿ¿ßyÞ²eÀV´Ôç=@Ã4ÍÄà@åìô@ÛOL£C#Àï3Ú:†ó?ÁÓ4ÂŒðý¿?—Q§F À&¤úQ—@€"ˆí¯Ž@Õÿcb@TšÞz À‘h¥Ö…Ñ¿ÞÙ  L @<{ØÜn @1æìòÒ?a`vÃÔ@QÈe•üÖ@²d?™1å@ÀÊòpé¿sŽjðÛbè¿ÎO/øå¿rµÊx_¼@Md#€ÀÍÀMOoT @]`Õl’¯@ž‘4Z¢¶Àc{kŠc @«f¬¢RÑ?ðü@è6ÀE ¡æE‚ @1££º@\{¸çˆûþ?jŒcøõ?ÿœ|Å!Ë&Àn@Fpþï@͸qT¤ ÀN$ê°dÀHËŒ·~ @Ýd-Äâ¿(S_ë ë?ÿüBYÃ]ÿ?oI!Ep@‚;Û‰j×ú?yT$¬¢@ÜpQ ßù¿E&tsP=@Ýé@/+öÀÁcƒ†RÀÂ6·§·é?·˜Nþ À _ÝlÝò¿H¸ÛJD À¸3_—!Áñ¿e°Aý(âí¿¤hMVMÿ? àªÀU å ø¿.Ñ)ÃAÀoJ1p5=À‚™ÂŽn9 @jГºH÷¿`c0K ÀÍ7 GÖ¿1@1>4Þ/•$@*wFï[_÷¿ï¨]Fô@Nd½ "ÀËxIk”(@{0™Õý5À‡5èE·Yù¿ø ãª~1À`îŸ×ü¾ÀxÀÈ£>¯?Ì÷8ù±í¿h²Øû?„/›A[À<öõGǼÀy¡\û@)Çq9ݳÀ,æ‡bPù?'ªÏ„À½ÂJ>ÌÝ @ƒÿÀ0À·Êã@û‘ëÜ?QQZ°%ñ?Û=ÐÕ„D@Zô'N@Ñ‚O#v½ü¿ï¼ÂÆiO@5 EÉÿý¿<·„ËQÀù­¢a4ÀN~¤f|ÌÀa ŠùW Àééþ 8À#&;-ò?ê#×*Õ?T‡Á?Ö ú¿/‹Ï¤WåÀ½Qì1pä¿¶Z[‹hæ@¿LügO&@Ø&±ˆãÔ?F²ÅÅÇŸÀÙÓ^ÒÝç?¿ zÐ ù?®ïÓ/@réþ™¬4 À²yêVó¿ ùŽ}Lý?´[w[kó0@‚/o/AœÀhÔf/êoï?–{Kj¤æ?TÇqMù‘¿–±ÏÅ¥› ÀV)Û‡Hý?¥.ú*À•;kB$Iú?žPá³*Í?vŸpÃ[ì?èºý‰e÷@1ú:ðP À†á†Ogëð?Ûöl —@éë¡À#†[èù¾Ö¿¿š¢¾¹G@F"Õ9`å@š‡ø¶kÀ `C<µÏÀ«ˆ¸8á @mnqNPÈÀãQø‹E:á¿´Ó~?ùö?yÞ ˜##@õÓxŽçô?„[´Àp_¡L®D@Äè Àñ5»ÒÛDÀ¿P‹§÷@dÎÜËwŠ Àˆ†ÖÊðÀ4ªÁêt @†« Ù4ý¿Vß4¹~À:“„ÃŽç@+‹ËgIºö¿mµ½¹#@æbZ©é$À•±cDBÛÀÖ:—k:¹ý?Z¯2‰ÃaÖ?BAC#¢XÀ¨C/âæßâ?´Ñžzq Àv+ÈÆÍa@ëxmoèŒô¿¦¯Ë÷ÀìÂ>ajiQIý¿uŠ þ†@œØAÎì @ä7;вö¿ì|€Ëò«À|i˽óá¿[ [¦@Žyšô±?àÄML^Ù?>ý 2ïö?—Ü÷{ÉÀ1d +qrñ¿€+Lz ®$À*'Ê\½ÿ¿o½/œÂð@àzÆ\› À›N@,I @÷@ÏÓˆD$@þêU¼‘ÀɧëËgðñ¿ƺÁ ÀÌ,,×Ú Àp"Ìš ê@èÍúo­ã¿´,»2pŒô?ßµGR— ô?N¼%]¯è?Y S0ÐÂ@Þæ'F@h“–»@V]õÆ…ÊÀÜLÔ©¸¿Éùâ÷oêÀ ‰ßg~_$Àö®Òüy @#J`CÀ¥Tá YP Àc˜^tà ÀfR8 ü¿AÉq–ÿ:@?ÎÇj¹ó¿+¿®—@©°)Ú3R ÀaY£¦@(ÛVÂT™?¸-íuÏN@Ô¡è Ù?ñ:×:î@œB¶‘£ú¿ b©Îÿ¿ÚLÛþ±À_l„æøÀŸD̵¨û?+'ºqæ¿û¿6·ÇNª?@Ä…7.B:ñ?¹¦Ôl²Ìð¿:‹jƒ±Ü׿^Ѷ°¿ã?fÅfÌä@àq÷‚?ÀT-i…£Þ À}(¢Àqç?jé–ó~@°Î¾'r"÷¿$tUÈT8Ì¿KóDfu" @—÷PIQž÷?ߊ±Ý¿R–ZÕâ—@Sò àúä¿—î!Šh@ÌýiÅÒð¿V¾H5Ö õ?¶ß߃ÇÀñ™ÏÖßÀSœi+„ÀÔ ¹Žéó¿›~\¿jÀÎÓY0@Ù•rŒt@¢/ÿª @Æ8Lc3½ÀÑðõ“ù¿ð3q“l@¤¯Š£2Ó¿;Ý¿/r!À3ͼáy@™C ëÃL@ªÕÍÑÐó¿àæ|M̾ÀíIÇ·˜öÀMëyüö¿fUçkžü?R‡½;Ù¢ÀŒP‚ƒê©ó? qg£¤t@`¤<ëð¿™ë+ ÀàÌ#?wØå¿(t”ý¿@̹ÿ%@^"lÝ*§ @ µGO>Î8@ùÒ“@óŸû¿6¼$"v ÀÎÉÚÒ ü@BÁrœGC@´«»ôÛ¿T^C@û @>Ô˜¿+â? ñ(f°5@÷?/û þ¿ôål Òì@ßÎÙ³@{@`…±  @ÑxªðnÌ?N€ý뺵?³_Ðr:Ö @ø·ÂÇXoí¿@Y­ Hßç?9ú=˜Ø-À¼jÛO€ Àæµø}¤–DÀ‘HH,JÅÀ4°*dàØ¿€(œG‚?á?(~Ù › @w·V ÷?s/ëý{ÀKÓºå@'”4>KÃÀõÖˆ;/ù @Dž‡WbMÿ¿ñ9Å’Ñ$@@X‰¢å?Ý›7X2Œã¿]Ê5¡ÝÀ-Y`¹î@¹Ràðø³À–¡x 3÷?¶"öãa ê¿Ëˆÿú?¼T? ˜$ñ?‰Ë¿e¨bI• À‚ñ¾nö¿¥¯Mîà~ÀD¡ê‹Üä¿° OG Í?‘NB¼äþÀ@„É~,¿ð¿im]ÑÀÈ.TœŒ@²B‘1§Ç?1Œ¶pšÜ¿W'¥[KÀd|ÏZ ß@Ti åóV™¿ðÃbàŸ¿¿fžfÀßÀŽ‹û\ꛣ?3R ÀÝE×Z÷¿Ä|Bx7 ÀVêêEæÀãTGë,žü?³oLKó¿p´›¶:Àp¡kÙqá?÷ͨö-lÀXΩ¼™î?B!îûš Àê¿'•û“@ßd^𼣿kµf\Zî?ÔÕ v»?;UZæãP@0ð1µð¿0å"CÁü?bÐJ}Én@¶06¼d@”¦9ê @2\’()@¡uÓŸ²`ÀëðK\;@xë¾ÆFÀÏ;ërcé¿Ø@ë­‘|@š‹ –2ÀÕTÀ¸Žw5ÅðÀ>Ñý«}Šø¿ÑøD¢ÿ¾û?îG¾r<@%k±®@‘]6þE½ À,Gù®ÀG@HC¦¬Xœ¿h!(ÿ ‘?`ýÝz¼Æ¿Â“qŒ­3@¬ºó–¢qÒ¿¼•í`ßÀ€.® _¸¿O…î ´Õ¿—ÿìµQö?.kß„+Îì? ·Þ®jÜ¿Xc—ƒÿ?î¡¿ 2@ÃU, Õó?Aý Ÿ·@:"¢”Oõ?ŠA•Ïr¦ü¿•‹~¦ø?å\ïbº@–1ô¯´@)Øb#®@ŒøpGsÿ?R_ÇUvÀÚº%‡4@M÷9L뿺Cåı²³?óŒkVnñ?n2 ò*Û¿.Ua,`ô?wîýYœõ?ÿF‡sôÀûÍtb1R@òA9;ê¿?ekMÙý¿æM«ù{<@º¸ÝÐ ÜÀ»2¶†<6þ¿r¯¤pÁ@ Vë KäÀosšëŽ\@InÞ¦ Î@ÀÌ^dÝò?èÜa88`÷¿ ü÷”}ÀdJîD=ô¿ƒÅ…`=á@†kƒˆ^Å?hé(v•4@Ib²¨ªýé?8 ~ 1°?FñŸÕ‘Ý?[ ‹8ÑYÀc¢óàÚÇÅ¿æXûÏÙ @_1©éÀêYþÎV@¥îÀâ @Þ÷#I@Û¸ñS÷¿æ'šÁyý?(jw®ú?ІCo^ @p¬ùÑŠUß¿=¹ÛÖN@ò±j¾¢ö¿@zÔ&㿟¿Ñ4@ÅsZ’rè?Ìvã&¼¢@¯`žû-ø?`¤I¹´æý¿ÐÏ­¤¹ÿ?œõ‡r5¦ç?éJG,x„ À)b†¶Š6 @i@E0@ZŠ8×B‰é¿ÖÉ‘>†íú?›0{a˜ñ?${s£ªwþ?)qŒ–3Ó¿™¥©Fš÷¿ó;¾"Ï_ò¿>áՋ¾ÀNš±¦sÞ¿²OGT:@EIÜ]²ÿ¿ üôQ¦Dþ? ü›²è¿â‘BÃ}^ë?ê1N+F~ü¿Ååƒ~­ðÀ•~p´‘ÝÓ¿=Ž_Ôqø?’˜o‘•Rð¿n`ª¡Tž@õVÄþí@‰ñä³,¤Ò¿“ÄÈuâ¿€Žµ`©Ûà¿d÷J º†@Õ °{ÀD…Cè«RÔ¿Ž@©@Jݨ9µ Àïq`îvÝð¿s˜Cg8û?\héž5ÂÀãNp4Pø¿—^n÷ì@” Y˜ fÝ¿Bgx$Ïzø¿ªº¥è¿;Y& c³í¿ïÿ஬ì?UÎBD ÞÀû°ÞÉñZÀŸéÖ@¤üì3>ù?³"‘è³ü?S—svÖ@éòIQå¿“<¤?Ü>ð?¼§µ´÷¿èO CÀU†°±Ø?˜Ú¦"ð¬?y³m¹y‚ÿ¿$ 앎Þ@$×ã“Y•ö?+¯6±üö?¹üUšhý¿Þåˆ(cÀ䣦9º@´Fä˜/63@ IžË“À† ¿"’X@†²G¾‚5À),^IèIÀs,ÄHàÀ7éÄ/É@i½1oO@‹Y¬ªôáÀ‹´Óù À8k0oÀÆÓ¿]úI¤@E²sĤû?¡yú‡JáÀp ’›™tå?$4­‡L³@©õ…ÃrN@ò&¢Ð@1…1¦ijÀÇQ°ôäÀê+ynÛÐÚ¿¦ðzl•w÷¿,—vÎûªà¿|З ÈÀ„ÒÛ !@Ž®ac¦é¿Íëóœû?>1È“#ÀMÙ/Á(À– ª|ÒÉð¿d»ÌÂä8ÀôKú)Qz@æÜœèð¿öû°Ã´@ |sÛÌ6@/ƒæ‰ÛÀ6¨¸ís«ô?ÀÛÄmÑù¿ažôæú¿Ø!O¬?(¨¾ {Á?Yé†ç,@ŸÕ²ð:Ø?‘u™æ.yÀ=oð*ã® @ý1ÅX†ÿ¿æ.Ð7@P¼Å¹DìÀa#€³?÷ƒ¦ø?^qsÓÀ"&ûg® @­k²!”ÀZ[)ù§ö?-éc˜³ó¿<ÂY…”å @ýÒm–Cí!À`M‚Eø¿v_DžëS@b·SŠ @ˆúìv‹Uƒ?Gëéòîä¿Á£†~o#ý¿9­ïGš„)@ š,bÐ@åæŠò @¬Œ.{­@1Éöy+@ôÇ^n@DÖÎõnÛÀ<ºÇ:ÅËñ¿˜cÂ+tÈ@˜Äÿ›?Î;6`<À󥋃Ðb@ÑÝOvVß@X¿‰RÍ@·ßÂ÷öÀqû)èw!Àâ$™x@èFÆLo@ÜØw¼ôô¿²Þôþ?_TîP¹÷?ŠfFNÞ› @z0ž.Sõ À$Cˆ@À À }Jïô?ÝêýÔ\ÀѧO¥×Èø¿®Àjß–í¿˼,BeÜ?p¡¡õ¾ÙÀûÚ³¬ZuÍ¿·8‘.M­Ñ¿Á”Aþ§1À ½e—ÀQ­Óœš@@3Î5°Ü¿† aÞ÷Q¾¿‹™‘vB¹@(”Á hóý¿‹œ‡z>  @¡]û\ëV@2ÛÒ"p@™ 5Öaxø¿…nøT­ý?'£)ÿ?™@SbÚ:Õ?ªoÙµùPÞ¿ž»NCú@Ïq¬^ŸG!@äík+kÈ,@q§Ô%,ÿ@¿ñ`]CEÀ÷[ñ”@:>÷?5ý!vyÇ@Jz:væ£@þ–óØbàÀG Q{ãú¿,Ýv7(Äà?D Кñ÷@K&JàËÞ¿B”V"b}@pÅ"E-å?ø•ÕA"ÀsHÐܼò @’•ü{ÀÍi$YZí?CèydºQ@ÒWO­!;÷¿ß6`W@ ñXóô%ô? ÜEr_ÀˆÂN…:)ð¿*Rÿõš2Ê?â˜Î> ;@¸ƒð©)¥@bkãã¿ÚÔf•¬å?†ÍÜ¿d•·C À!fz°1ÀöS€&œ@`z˜:%@DO¢UûO@©~O&ü? ô{Ž éØ¿Þ7]Ðû¿1‘¾·PŒö?gºd;ª<ÀÎŽ¨óOþ?˜jŽ„ê?¤ °*»É¿iÃElw»ð¿Ôb„é¿èœtãgÀÖ-úQ@èyî–¿@˜Nüà@˜vÙ-õô?¢Böu4Ï¿¬¿ i+ @nƒ·Ÿñý?zNŒPI#ú?Š0Èä3ˆ@³4Å[…Îî?IÓ]å @ ›€þbo@î#QÍÄôë?ÃT{­Q€Ý¿BÇ@!²Ø?#‚û.q À=ZÌ4Œ`@‹-^]sƒó¿Õ·~ý–ö? L—cšÀ¬ægò©Zà?²j³ºG‚@§Ž´'K @¶ÁÌœ•ĺ?`8ôdäÀOÒ\zeB@îy2rYmá?ù¨?mYˆ¦¿*{N\ Ýü¿›G3ͺ·Àq” ~ð@@úè8ž ‘õ?¼-iÇi&@2¹!b@î¹ÿ›¼¦õ¿ï1sú8@¢+ý/—uý¿$´ó|ìyé¿æü³¡x)ù¿ž 6»ˆ»@Î$aee @Š¢aÝA›û¿Z:,@ˆe-vð?b&„,ó?Ä ¶^¼ó @…-aø^=@ ög;<ï? ÊýF8ä?ÔÍ4 T @;q™»ã³Ó¿‘nÞOÈ@b™WŽiú¿×*‰aZñ¿hΧ9ÀëÐ?¹éw‡6@íÕH‘tÛ¿ß°Ya@|MÍYÆ»ù¿ìÕžVñD@Z|çï”÷?ª ÜpšW@šÐ(Â…@¬XE–m¼ë¿HüI(Îgç?e7·ƒ@c~!sþ? ”XeÜ¿H l%3 @ž}|g Ö¿äÁ4Ô:å?±”¾¾@À‚Ð@rãÝ¿¦%<45¢Ã¿–ͨ(¨;@blÞÝQÔ?$nÉÁð¿§v‚ úø¿¸¸Äå´×½¿À™¬3|@—°•ujë?}¤óp݉å? Ì O4åÀg+ÈË: À¼Œ§¤•§ò?jΫœyòí?.È=Y\ë?f‚nÖøô?iâù\IÀÃ4¤3ìþ¿™7@¯ëõ?Dô–gT.À`¹x?[Ð?xb`ýÖÀ$CÏõ@Óqsæˆø¿9›h(½@ Í`i1ç¿]¹¹j±QÀeî%k1IÚ?¸+ñ 2C@Fˆ…¡wŸ@•ÿú(£i@Úb“ºÜë¿Ê† Ê¥ À“GÊ|Ç¥À­þ„‚!ï@òùKûõèò?‘8¨‚qï?ž†vÇ.áÑ¿­üÈÍÔÀH¢“bý¿êªT[îÀu/N”@)2¶ð@9û¦bÖ@5ƒñb0¥ù? ûïG™8}1@Î Uï;@ì_iÛþá@1øsÍs@©ñwý±%@Gó¡’‡£?X%ÒïØ2è¿]X»C¦@–ö¶Ü×ð?Ú<¢Ö¿ô¿'áö.Yeô¿‚Ý„Ä @y«ó<:(ý?e Õi @,†y-Sä?í¡ì@Ø{MG¹¿nðÞ­E@aåu›lv4Àú•m¯ë ÀzÓ9{ÇçBÀ†8§òÀÉüümôê¿J<]Z¤®@dîèU§ŽÕ?_•Ä+tQ@qÆB“ÓÀ8»í;RÚ¿kÊYß.,Àœx)*5}@"è ä@Š|l†Û‚ @×k@w NÀð¯j°û@“8ªŽÕ @·Û*î+æ@FÌ¿Sí|¶nÃõ?Ð|T¥çäÀê|!üuš@‰)6>ÀkVäÛ¸° @1¢| ÙTÀÑ2®¢Ëçú¿æÊAN÷µè¿\ît•k÷?ˆ=Þ À?œ¸!ŒÀ|wW@\×è¿Í˜™Ó4Òõ¿’0ÚÙiê@‚+I¼ü¿ßî”P*÷?h<üæ¡wÀ¯× ä—@-ç§ðïtù?t·hIÑúã¿P¤Ú  •ó¿sÝâþÛú?=üõI @®p ·æS@UHnz À°cK…_é?Î;×Þ@C½:û j@½iÝ—Òæ?¡òhMoë¿@´v…Ÿ@Á¬‰¼eJ@(잃ñ¹@¤IõMuê¿­þÌö‡2@PË MZ@Ô‘+r^ƒ @0m€ÒŒAã?bTÎ5\·ô?A8pA»C@%­C†šú @gÞ5Öä@Çeb¢²@¦Ž¡ øÃ@õ-ïnØIñ¿ënfdzпVEAûÌ?2ÔwƒÇ—å?dÀ ^¹»÷?è‡ì$ßµÀ cí¢ð¿0R3j_ Õ?*ìúÙNÀ² ®•#<Â?®­ŠÊÒÕá¿¶ ßÁ @©¡‰öö¬@1w¨ðÿÛÀ'V›åð?ØY'ògÀ›þ‘jhÀ,›‚”ºÁ¿šã’Œ @†i0å@¿‰4‰!þ÷?)”°Jð¿WϪÒî@[õèˆ À»•åCtê À„$e˜@9jàbexÈ¿< O~D@É'—&;¼¿µ,cÀf{k;I¿@´…ô?ð/¦Š|õ¿Ip~þ?ùÜæ;x@ä2‚æç?©²ôË×Äñ¿‹ŠI„…ÖÀH“ÅMs¦û¿ú妕?S kÓû?ßèËÄCì?¾s½çèWõ?´enû;—@þ®Ø°!ç?£y,®! Àì}.õ«Ù?Æù…?Á¿œqã‘¢Ê?´è_‘@›Çl³x`@¢j™a^@ÈÖdøW¨à¿À#~Œù@v’ü ?þÍ+¼Ïø¿¯H}n4Âñ¿¥ä2Cëð¿{pY:òô?än“Ýòá?'Õ0ºN@mh†8ð @‡}›hüÒ?Ë)Œ ¸ @ÛÑIžÅ'ë¿ËIFbð4@¿áûÊù@ 0o‘ø?¶è;fùü¿„ÿ¨ÿB¡—?+ѹ}Àkñ%Á2‹ò?3' w@¸s$òÈù?h|¿®ú¿w·¾pï@Ðk>÷ä?öaæ5v^Ô¿`W{ ©ú?Εwt1ñ@ªEŒ„¯ @U/—Ãç¿Ô£€æ Ñú?hWÍzé@ÈÛ{›”Oæ¿ÓçddrÀåì¼Xîß À¡«ÑÇ”Dð¿Jãx `oå?*´8g`Ö?Yƒy!ðø?5x0ÿù¿ö4=(ù?;7Vuá¿Ã¸5Ðßi@mñwÝGmä?²r„Rö¿Š{eËÕLÀ‡ë§iRç?Â9׉6gë?ÞÁÀÁ·àý¿ç:#ÀŽTãH–Ýð?øâ’ÇÀµ×?nkŸï¿.àéC2Uá?±pœK@<Ü¿S‹ ÉuÀŠgØ2lW@Õ„zŸ÷¹ @ÖXo0:ÂÌ?A¸ŠãD³Þ¿J&ØxϹÿ¿î9‡¦lÿ¿4¹±Ò,sô¿µV`ZK( ÀÀ`ºu)ø„¿pÅk˨)þ¿FV»‡@œV¦Êì¸?<òQ g ô¿ƒöšmïÛ¿0¦š‘‚ð?¥[Tª=Ц¿ÊÍM9&Àï“ï°|ð?ÌÿÁò¶ð?Ý{2J:E…I±ð? ÆbZÀþ³DïN¹¿¡Üå Á¿}?¤ Ò¿ÛÖú¶ð¿ôL;Ï?ë—³ýô¿+TŠ·㿽º›•ø¿Z‚å;@‚>Æ$„û?cUÞç?À«Ô1~%Xà?¨«gÂ@Ý<²pûÀòObPSã¿x1CÆ6Àþ¿+U¸ÿ¤w@¶2u[F~ @60⣤ÀyÏ…w @Å ã·±ß?4_ ßñú@7—!©¹þ¿psh.Å÷?þP²{u„Ó¿ À9nη÷?CiËÂö@”sLº®@<ÔÌ}eZñ?Hï@Y@<Ö9%ë•â?H¡4q@T]oÙ¯)°?Ÿ` CDü?-lN®‰÷?ÖëñR(ö?çØÛ§suØ¿ YA~À@T÷г@1â/ÁyÖÀŸrK¬“ñ?ÄWíø€¦â¿ýáòùˆ­ï?Þ2Ö.ÙTè¿AÍY ÀÒRGj¡ ý¿‡ürh‘¯@ZTO…eŠÔ¿ôrùÝÀê?wÁœcYFµ¿©Ãç<àæ?ã\- foã?ösÙ3ó‡ö?ow4d@ïAà M@óźx À¿cÎþi#ÿ?îQ ô„À?Ì £“t]Õ¿<ë T%ä¿Ô€­¥áé¿x“ƒÒS À<Ýqjôá?îâO‹ôŠæ?VÊõ-ð¾@Ýù,мL÷¿h²”G¤Ù?UqíqÀ¤ý/ŽÊã¿[ç¥ñã@ Vj~­ Àk} ³Æ¿©w×s·í¿¹w…‹Ó×?˜Ø¶<ì @—ü_Ö¶ù?ïV+ðÊö?vá܇@a.¤»¢Û¿ò•ÙeRgÑ¿šþ²À•¼õ¿¬¿–³@Ó K«ÍÊä?¤¯^WäÐü?¼Ú½UÕ×@¦émæ©@ºJ4˜c‰ÀØdŠ´â?лÜÿ¿2¬’Ð!7@`ò[úʧÚ?Æ%a©Yè?Bºr0Grÿ?#GÃçºú?n2¨¨ Ò¿gFíù@_ô?Þ–š€=¢´?Û—!5Y@+.¼/Jƒò¿ÝK>x¼ À|}˜^ï è¿€dBã׿ÑUkZÜû¿ Äîó(鿆b®ÓžÄ¿ÞÊU-Uü?j$ó¿Öû¿¢ô¹FoÐ?]À×uÕ$RÝ¿dÓñç{R@Jf áÂÀFfömÞü?˜$D¨LÖ¿žÂÔªÿxð?÷ù£ØiÕü¿èk_˸/ñ¿gÁ=dµ½û?Q´&?iGø?,Q­sÑ_é¿—Ë㪯¦­¹¸… ü?Y–7wd÷@å¥,±žóÜ¿*‚Ï]ÊÀÀ1/@ÿDéͼ2½ø¿˜·»MŒú¿”o`¹±{ð?µÓ‹f@Qæ?>0dQ}cö?‚ìe»¼j±¿¶m¼¡À哃"]ÓÀ‚GLµf’A@OPRÊÌT1À–ýçò @~UD\2DÀëürÀë¸`ª<…Àƒ œ‚ÇÀAÕæáu«ú¿OÁ"1£UÃ?¢‹£Pë"À¼™ $Q2,À_ás_¾Öä? Þ Í4ƒ@îGly…@Û»‹ø7Uð¿ä^ üÐ@‚9àÙÙ–@î×~„§í¿ø£`* Gÿ¿,yýÎÇ À"¹óéÈÉ@_a3»ÀYÀäŸy[ø?6ñå÷ê€ÀL ùªIù?Ûþ ÀôâGãm=ï?áλE»"À‡Ù}—Àó÷ï¾À¯dÂÓ97ÀBpé]ö?6RÏRMÐÉ?CÏ›ºÑ?•ʧalÛ?àQ¡^€“@Àð NG%À¾6Ë ÀÌ82@`åWɇ!ÀÙ„”‹œÀ?NäŸ@·ëËÀRåvqú¿$تTÂü¿"¾þJç¿a[éÅèå?pèð¼0À¿>óšX@ñŸóçˆ*À\àÚ—¼ÓÀo]áù<ßÚ?zóȱ5–Ú?ûå.J) À­à›$È9ú¿°4æ»‚ÈØ?ÊÚÌpÝ”À¯ÏïKoÓ?¢£Ñ(EÀK›fßç.Ò¿Ÿ!B‡ÈhÀÂC†kšyÀôÜ{è"ê@i-ßóÊý@ìÀäµ4ÀÏÝѺ† @nôêGù.Æ¿Êθq@bš¢¤1@ã/…£vvÀTŸ-Ï}þ¿ôÞ+Â+@qPœõ¿@„%˜Pk@‡JÀ-ß&@LpüäØà?i|ØÝkG@´m>•$Ë@äzGÏn@Öku @H*€Ò@‚‘l÷ë?¶=¾"7eä¿EÞ8…B“ü¿GX}¾—Á @§“^º³;ß?¸=N0©FÀÀ¿˜ ô @‹wzÅAò@Ï ´rÞø?7)G ‰ @{ü£¦•h@.R©Ó@ @€©ñjISá¿é²e]:Ðã? »[+5i@]ü¡çjÀÀÃá-¼ò?Ú‡8’ö—À†ú"ÉzŒÀ˜‰ â<ž%@ÊD¦p+=@IT›ûbÚÀ%s ‡ï@>IKœ¤{ë?—­o9U\@Z­Ùµ¸Ê@[#½ @aæä‡ŒœÂ?ÕÛ‹”æ@É. Š¥ã?ââVÔ ù@¦m" ›LÀbQ®¨Î @±ûŸL Àtüm$ T@ûôcãs ù¿€Û—ÖéiÀ ՉϼØ?G^"âLü¿†ûXZà&ÀŒYg\É|ñ?pG¶sÙÀv±Ž!½ß@:ä^’Lqê?ÄîÁ©ÿöÀ}sh(À®ªgÛKá?çXî©ÆÄÀÒî!H@gP§îä@U„´÷Îç@AGîoV¢ À¾1.«…c ÀË–ìÝSÙ¿ÛÞüûƱâ¿Fà¬?fÌþ¿óºŠ¹Óÿ?Ô|èîÂÀ Êþä+@[„¨H.å?'£ˆù1å?yâÄÏD4Àäåû±’~þ?à·ÆÖAÒá¿ýV"‹•.@…ZüWaö?`»gåäÀ¿Æ&A‡@‰CWé¦÷ê¿»0>º²"ÀÁ>ž+B0À0 61œ6Àë6Þ:Z!@CÊ9IEš@ìÁ!Ç2ÀŸØá “Ì?[Éô>ŽˆÀSÁ ɦÆ%@ ·”#»À@BX6¼¦¿‚IÔíîÀfE\È%ÿ¿`ǵuWY À*š}vy~À;•µBPàÀ€iÆ–ÇÀé”'ïË_!ÀQåw ã/â¿o¬ø·kÀ/íÊ™@B¶ª[½„ø?¦¸´fò›¿â×£FfkÀ·€f<@ËCAV¥ä¿(3³è?À^¦<Óe!@¦—Ñ»ë?|1¸\íÀàä܉µkç¿R–cc¯ì¿ŸäþÙ%ÀD³ÞUùÀg­…NâÀH Waî?nÑßÞ3ÀDÅž×(0À¥psµ¿ð¿Ìó‹¯Ã@öÉÇ!(»#À\j+9JÙ?YZxüÀR=µC@_¶ßŒ‡!@ŒòÁâ?ñB/z/À?IO”–ò?h±Iž^ˆ‘?`9ó£¨À¯ÿ<àù?ö8 x“ÀÂSï´ðI$@PéÂAƒu@æv´¤"Àí¾n!™À־ŠÀ팚zó?2/—@%¹sM–‡À7)²§µï?J8N.ÒEÀñ¤?GµÀmRÀÅ,î¿ÓQp¨ÌÀÏ5ï î>ó¿Ý×ΡŠØ?ëÅʧ)Ààkâ‚@ŒLD¤˜Àûƒtî±è@<ÏŸ!ZËÀm…jcåþ¿•¯QYäø?ðdQxÛN³¿Œá‚wqå쿯.ˆ-,Àî¢RòÝ@h"Íã@²½¾ \þ?#i…@¹#6,PÓ?® ºkÌé¿ñÜ•„À;3„ŒA1ÀoÉïR¢@ѵ†R[Å@Ù~Ã{!Ž#À–|NáÓ¤@ÓbINÝÀ…ÍN!: #@CË 2 ø?h4çÜTí¿êž;qÀ§gÓ I?ó¿{:µ*ÝÈ?mE—‡œ Ù¿Ð4 tíö¿ AØ@A¾@Ÿ¤;ƒ@™ëª&ÊÀÚö-Á %@¿$jÊ@ê À}±"·R@Î>g&k- @÷Meí†é¿dyʵ Ñ¿³/=ÈCø!@ܘ­ÏÿÀ)*‚ª)#@F2‘T1fÀż¤»Ý @áâ)ÅÀ/Àxå¤ 3,–?³3ƒ¯1Ãä¿}ƒwª“ÀÔéXvìÔ¿F;Nf{^@Då,¬ä? À7±µNö¿ $Y×tù@>P„9!@À6nŽÖÄ¿éUøp¨Àm¶SI@âþ|rxIß?Áãóè â¿*Ç"ëG­Þ¿PÄ¥ÖØ?ß(ÆŸy)@’ÐFÜLó?f”q¤ƒ À_^cMœ@¢¹,è\ŽÀl"Âm3ÿð?X?#@ëœÀC8_‚ ñ?3…_~‚ê?P/@\fébØž'À\ ¹_¼å¿ÛSnŽ7û¿è¢¥Ž^.$@g¤\ó?B()fÎ ÀG\}b%¿@r&w„Ê1@OæSl•0Ì?Ð#N´—Añ?\Q¤"¶ @cRxSþ?ÔzN¥ÄèÕ?ý¥×˜mø²¿#üøe0ö¿§6Z%,Vï¿ >Žáf À«ØÂÉP©Àaó²Sf:Ä?›réâ‹ À®sjá@ú4žÒ@ìû-K"@p/EIè]@xÓçÍ+À  ã)ò@I=7-*tû?Ç^×yáëÀ»Ñù‘ì!ÀŒ'¶ô­³¿Mw@ˆ«Ý@å¨Oç(@€D¾~'¼¿Ù•¡Ó@JEƒÒu@/¯mZ4æ?"J9«¥Æ?R4ËV‚ÞÀ>³‹íø¿kVE» À½Ü±+[hó¿04îVwä??\â²>Ó@ðÉö}É ÷?d™( ™“ø¿TËsïÕ?üͲn–@i=¹m¥ZÀ¨Q¦š”»À …+€Â|÷¿÷M]`PÄ À¨9,¡VÛ?íF­»Q5À]OqÅk¶À·áªÖ+³@Kfçu>À?€ôbXÁÕ?8îoÐÏ À©Ý£¶ãìÀʨ Î/ÀS÷Q2úüÀý?L¶óÀ†·¶7e@¡AèŸé¹ÀòkPÍGKÙ?"ÌóÛÀ»JæV! @,·Žb´0ÀyölHn ÿ¿àÛ¸ä+š¿zØö•ôÀ’6…¢ò¿ãoÄ üÚ@hoÇ„|ÿÀ€x‡¡"õ?Â-A ±ñ¿€x¢†ö?1š2 E¶¿¼ÿö @ø˜Kù³¢À)q³(¢©ÀÊS…òÀN…³ñ?߆JîØ¿•ÿ¡?;@ +ˆ Àèmt’Û@)·êå}…ö?ãíæ]/aÀû`¹µ'7ö?@v"ÀÀEï¿­H…j2(ô¿QÒµ>¥ôÜ¿†û¬³kèõ¿õ€Ü&vÀ@Œ<÷¯@½}ÉŹÀë’¨ÓD@4Ñ^ÕÀÉL)BÇÀ úÕïÂÆ¿hï}Ã,À¦wµ7µjò?I/.Šë¿„%Qø•ÀÌÂ¥AÚ$@/qzí Jø¿_SC¶áÝ?EXÙ”¿¥ç¿`šFc…~b¿ýIDÞcyá¿tý/¥~ù¿Úšd$@4¸Qzø @…[,¡ä¶Â¿(Çù›”Çÿ¿ý °µÀ["ân¸@ žr£ZÚ#1@ò–ýA éÀ¾÷9p@ÕOK¯ù8@3Iœ4 õ)@ÌiL%6 @*×"°]@ òv„µ@€£í;'@È¡ÏÐYŸÛ?N®ÌÉ0Á@’ÑI5ÓÇ"@Žðc»÷?Là–Çþî¿åLL¤Uå?Ú#bAù?ð¹xæüÛ @äw®\g†ÀbYr€!ŸAÀ·S®fUAÀö±CÙéTJÀAžO/?ÀÔ«ÔÍïÀ.÷æ±'jú?vƒ©Qå~À A¯\Àfd®âH‰À6"Øp˜ @¿èL Ý(ÀŽÕ˜XÀï ‡™ÅÀS/ŹZ@X~hIÀñƒß¨òeÀïôÚß}Àʼ3Fu‘À¸žüÞÀóí,ÿÉ*}3@uÊòé/óÿ?)C}BîÝ¿ÁNº0ŒÀú.³$ÀÓv.ükƒî?yTk4[™À°+´sîì?´w*=m5@,Ï,Cö‡@´æŸQýb@³ã®ôʨ À£ t=xpé¿Ù$xrƒ@¯s Hí‹ÀB é-ð?þØ&V¿#@hÍ+âãÖ?öYŽSô¯@±ý`ꉱ@ö>»j|ÀŽ¡öy&ÀC M€€ ÀþAæ08êâ?}  w=#@Îi %@G`Ž\{sÀâÊéÉŽt@Bæ7 ¯à¿âT£kçþ¿Êê¸ðÀ_i‚Ç—žî¿Ü!6îâî@B¢ÝK¼?†’oã¿?œA“ ŒÚ@)zúG+ýâ¿MÙtºô¿7CöDd·ÀqÂ%öåò¿†Æ5L â?bÚÐÕÂ׿ K˜. ?@"9i)lEü¿Q6¯]î¡@ûÊÔ?ðê¿Õfð‰UWÍ?ÎӀ«… @ £’HJÒÀ´à|kKÛ?"sçºôĿΠ™¯¯ÖÛ¿®á.鈋ֿ|7ŸŒºï?O^2Ûšâ @~ÞÔGøæÚ?®P<&öFÀiyg iá?_µ»=õü¿œéß|DúÀs&×¾ü¿„~ø¿¾åâ'ب@Z ãb Àæ$×ö“áÀåøªöê?ÚÇõ>À¶ª$!€4ÀÚ/ýùt# Àg™xJ‹~é¿x²q2 '@Œhý¶¿}èçò`9û¿¡ë[Ô@ÌA“z4¸@ ÷ö–ÂÀ%§W©w@øIüÛ¯÷?ý,¼\^(@uüc3ý6ì¿v“QäÔ?Û2%þ#Þ?h E‡qá?k¡»³¡!À<ܧ=ôÇØ¿#+|‡wÓ?µÑxË @¡Ë²ýCü?I!òÉÖÿ?'Üë:@HÍ Äù?ò“5ÈBØ@²±Æ } @¿Í>â½@àã®×óœ?ú_åÏÅ-ã¿ò6ç¿6(òƒ!$ì?ÝàÒèä À÷ ¢"¯é?“L“w<Àû÷Û¡Ü@´ôpø Ì¿8–å^P®ò?D{€}­?D=c¶J-@CæáÜõ?~€ç?kÌë¿Ë¿¾Ð€¯@y«8¤ÀìõêMîUí?KsGzþ¿° °žÒÒ?Vom3¸Ó?¯æ¬Ú@F ’|“@@ê`p… Àp¤{nw@ÚÅ–#Lq㿬È3}âFð¿Ž4µ_˜÷¿9µ¨ “`@TGÙ¼ô?K;¬£Àk¶ÁêÇ«@œw¦tpÀç!'[=@ÈÐ`–PYÿ?nÓÀãû%_°T@‘¶ä @”ÄÈäNŸË¿kúÕRF· @#Öi(qÛ@þlâBR@x$ã^ ü@~”^Lì?r•Œ—BAÀyíYœþlñ¿š œ$‘Q@JôóÃñ?4AÉ®Én@"Â~¸ÐÂö?$aÃ9žý¿:l*2÷Cà?qÉ¸í¤ ó?0é 5 c“¿v½)ì3ô?­zâÙÀ7P[˜»z@·Zßk(rÀ2YBæöž@U›ý¨¨ù?øÍãEg#û¿Ïs½,x# @À' :æ'õ¿#šwIºö?Ùá¥# @3Ò2žò?:ÏÍî?Ùʳæÿ@Ú/QÉè¿Ý‹ÝÑÊ.@Â\ZZ‚ú?ÂÄ¡ŸÏP¼?ÞØRúŠü?lµîwèü¿%MßXÛï?€÷ž‡Uà?˜1(~¤ñ?ä‡Öâï¿m zM©Àýêâ0†ÜÀþg /š@áGѳ=ô¿<yÇQôõ? °½1ªù?HF ã B ÀòƒÓÀ<Äè?Nè9o6ê@¢À£Ç@,DÉ<;ßñ¿¡ÿ€‘ÀßÀW¯l¿ÛØ@zäT<›Gê?)ûïHÔ*Ó¿¼’j @ˆÂíµë4ã¿õZ(DEÂò¿é 3è@£û?Íå›ðAmÊ?€È*/G§õ??È E0e @0ßLÒeú¿l¿k7øºñ?kœ€Mù @¨G3Ÿæô?¨#ýµ¦á?p•mè¥Æ•?%ít".XÀ)vg¾×À÷ŽÆÿWŠ@¥â@¬ù×ô?·˜¬ñÊ?49}1¦ ÀaUaV1Û¿<ña›§À¢@Y¨¼üô?ŒY¦(¡ÀTDƒ- ¦ê¿29ÉÇÆï?îÛž}yËÀÿa7•©c@„´2Ö£­ð?gFG3@œ ¶¦õŒ@Î{ýSç÷ê¿öÞ[œÀ Ë8¬ùÇ¿DMÛÆr¦@ä[õiÆÍÒ¿vl5g˜þ¿zõObÐO¹?Ú¼¸4¾¿ ð°'dä¯?胵}¬@D;> @%L>Ì@0-ñg1Jú?[^¦%Pÿ¿yÂvh“í¿›ü%Yú¿-´–$ Sþ?¤/Ž K[@(_±ddó¿#"V§/iܿ׼µ„йõ¿ º­7¹Ú?º°e–õп_ƒ¸X\Ê?tù‰J^ç?ªBs¹Cˆ@ƒeˆ&Lé?PîövÀöI×êõßó?MÜXª_Û¿XšÚó?¶{CÌ‹‚ö¿¡Õxb@4€ <ï?*‰ÿ+¡ï?ÑæÝ££›@½Û¿’ ¾šàÛ @Ý×ÛÝÚ¿|jØ;Áÿ¿õ}ÒÝŸÕ@QÀžvVÆ?:º-zÝçÀ\è—‰¸rû¿ÿ-¹P¡œò?Hï0Ù©WÀÏWvKM @%Wb¨ÐûÀµw0&ø§@šn®;úO@j2å¸kõ¿H’ƒ6ü@u¡²6I…࿜ò©??Gã¿xóS¼óˆË?‘ˆamb'Ö¿Kír¸Üô¿õSäeÏDë?`b1Ù @¼ÁCß †ð?<8:Ê“ÎÀ²ƒC¡¤ð¿&s0Â(ß?þ´þj>Ê?×^lGÂð¿ viZúì¿ú`•¶²ÛÞ¿Òª£° @(Ž´Æ?ë?´Žàa3C®?u½ã.Öô?é÷3"àÀ„þ‘Æeâô¿ïЇ>p ÀNàÉèNÔ?ÞÛƒ ÔY@¤ŠV‡.@ÔÚîµ-±ü¿êö»AhÀ™ ›»Ó?ZO´Í{ñ¿ýVz÷?j“üjׂÀ¿ºmæÑ @"ÞnªŠ'@õ–„ëÔ9Õ?s¿“å»@ f\´÷Ë?ÚScåx @ pìMÀrân¶¿ ÀŒjJvPÖÒ¿òÈÚ Oö?˜ Ê}’*ÀŽf¥gšõÀ¨u‡oâp¿V.Œ(ÀéIJ„†ó¿ŒÚøûbÐÀÅwö²-@¿vE Ú¿TÐ5áÖFô?¦µns%Mû?Tù±¾å¿Ìá­ À D›¢)õ¿ûÛt¾#À Q×ñª ð¿>="Øû?޵ }é ÀC{²D"ù?dõ7Aºú?¨ ‘zÀg±ô¬ñã@â*_·91À½þ8žS!@~ Cݱ²—þ?ùÅ"õ÷YÀË®ƒóQÀ‘´$MÝ#@Ƈ áÀÀ Ô™V»ö¿ð/'†CÀ>¦ÎÞ(@ÀØŠe&@ùgæ o^À€xâ׿¿Ln— @¿+µTù¿ZôÊ÷ìþ À—ZÔr§I@ {ÂÍò ÀU˜KÌGÂ@_‡yä>$À »ì"53!@+IÖÌà«À,W™ì±‹À½ÃjÅÿ] @Kü#hKÎÀÉãüñgö?¡:~yÇ"ÀàÚä¾äD¼Ù @ëŒÛ8ô#@¦Å@æð@BÀÿÓð¿n±Æïþ?Îw“«5@v#Xóî?¨è¤2aÔ@ßr龂"ÀŒ(¤bè-À3ØGú¿$ZЙ¢JÀ‘ö›Íœ’@Y®HIË¿Bó½õ?m+8óÈW$À¿Vmk,ò¿èƒÒAQÒ @-/Ò±á ä?•±Ø…MFÀRòyßQ÷?ŒÄëDqÀ€5’~¼@‡‰woÑ @F+¾ÍÀ~l å[+É?¸œ/JhÀO÷™ˆcD"ÀÂL¿Jù?onŽòç?…pòÆŽ @Ñæ¿oD@rµVî»ËÀh*\7%@íW“´ÔQ@Yò*.ñ?À¶¸v @ˆú£ºŒÀýª*0Cá¿ñˆ!ÙÃ@.wºË´À6>$Øæ™À¢†ªÖNÀ\*agˆÀÀžÀ*WdÀ³BÕýˆ@•žÌ H"À7j$fno@_þû rú?B§ç7@\Zª©•ê?‘ŒQ\Õ?Tÿ'W¢lÀIj¹f‰1ÀÏF\¹¯ÀìOùƒ=9Ó?"öº^ƒÀ!}?gÀZÿÐâXÀBL©üè{ù¿ó„“0ŒÀþnèT,¥æ?<ù©„Œ@û÷¤RšÝ¿Óv¯QÎÀ…zäi #÷¿žÑ5ážÔÀÐ@¯°Hæ?Æ™ZèठÀc%jmáI@§'`t´ô¿R&Ú4ˆ"ÿ?6Ýyú«á @Pòyůþ¿‘Zþ€ Àîì¢,Ù-À¾hçŠW8ã? øŒ½@rÏTÍìù¿ÚÄ)®xÀJ"œtÑÀ¿›a»AKÀ3MAôžŽÀ†~q¦LÕ?ù¬%4ò¿ ¡_}£'÷?*ï¥ÓŸ=Ý¿E,uŸÀ—Tn£tí@œÕ`Rû þ?׉Eï“À=¹`É¥· @2ø@|²Ù¿©¬g×ÿ¿ ~ê?Ÿ©@“LÂScœ@âWjö^Íü¿bÛ•-4@ë'.fÓ+/Àr`sl…á2Àh¹ˆræÐ"@ÊU\TD À²|(t2À@“aÌc(pñ?ÝÓoÖa‚ë?`!¹Ú¢ Àfœó#Gä@Ŭ¾œA´@ýƒ][ À)¢uTÚž@ø˜ODRP À]üRý?Ý@†b.DÀª°Æ=Þ@hŸgÔbÀ@q&Ï´ !À´Vy“ÁÀ¼¸ ‚Ñ?„tW€˜Là?ö¯Nj™ŽÙ?µ‰¬ÀˆÞ?戲R0ð?NÖ7˜ãù?G€ Æ#ú.@3 +ÄÀÙé¬Þ@Š„Ï6“@¬ð»S@k @vn4ýg<@$³ "Xg@?ÂÄ?µ“‹är@`ÓƒãÒJ À€›nõ.@l¦‚‹z8*ÀBj÷οÏV&‘DCó?.„…pE²þ?DuZQ Àún)’Î&À¯† ¦V@x·ãÌÙ¡!À}Y$œèÀ€&.æO¼ù¿–9ÿicú¿«É(Í ÀþÐYHaÂÒ¿%!QÝÒÀ-C‡¾LÀVà(iƒÞÀëšVó^~$@LZ×@I'¯ô è@,%ÏK±\@vÕþ»÷@!.2ë®'À² 5Mïö¿Þ¢ð.Ž @—@NøêÀú^†qžÀ‘ b6^¸@º¦Ï¿˜ñë¿ôÏ»¼ @ÜõzI¢ ÀØÉéR»Ó @À·ÞÔ1#À8_ÿ”c@¼‡¡¢G À:êªÓß÷Û¿S/@xo3@ wžšó¿ˆ=«WæåÀj—®Å)ÀYö)¸"Ñ?»qq±ä?ª¿àð“ù¿¢¡O½4@É4àj® À>ÝñO=í?"úëÃì¿„™e D6Û?îr–ѽÀ \7œušÀ)‡Ÿ—¯[ÀO ÍG)þñ¿©fj¸ì?¿B[u@÷?lJùÿ4oõ?%•?õ¹$@A$ÊÞŽ¯ @æ|ÔuaA@äc9’»tì¿Kê¿2{¼î?\$_häô¿¦ñÑr£û¿0K‰cQš@‡Q›Ê„ý¿LFݬ׊õ¿Â.×ÔG @ôÍÖmdëó¿gÿ´!µûÀÏ9Mk0翨mîøéý¿Å Z‰=g@Ðh¢Þ37ü¿žÈ§ eßÀªÖPäu;ÀÅ–ÇKû¿€ _mœWÀL·™ÌÈAп =zë @ˈÄ0éÔ??ôbÈú@ž ¥Ð@‰H ˜ À̘þ»¿! õ„nÐë¿÷À)»jÆÀÆ£@õÊ?É£´2Ã@kE¬«ÚÿÒ?¼ÈaƒÑç¿v^B§%é¿ÿÅ›†À@”Î0;y@Ñ¿]êÆ@Çߌ„vÏÀÔ¹‚ÂÔð?‹ã(j)_ @¨Ô÷Ö¸9÷¿,³U±¿ -æ1ô¿Û7îºÛ6ô¿©³$¯@±_‡îºݿŽCJJ)6À˜ÛQJ}· ÀëGà™|À‘%œPBÎÀ ñ3Ôù¿|µ½¾r@h(B·ÑÀ:˜Ò¹’³ù?¿È¸å {÷¿+Í4Ñ6´¿—#SÛÂ!ÀšÞ¥Æd+ò¿ƒççèk À9ߺ5÷¿ÒË…Ïëà@+™¼wA#ú?á”´8Ë Àè¦æ·–;à?b6±Dñ @ñÛTJ @aPÕˆN|À"û_8Dí¿/_ß«ãà¿ Öm”J&×?5+iE\|Ï¿Ò-ÙQ VÀC™ÉÍ¢É@& j´3ãÀ“ ¤6 ý¿b^…nó.@FÅÿ“ iõ?‚ôž{÷? ö÷dÛ¿Ë ÂÑÀ?K>e*S"ÀDd9½Ö)@üÜIŠ÷¿Õ[÷ ¨GÀ¡2ãX°@Ö7*9ÿ?Ë«\@=€92¥Ò¿¦Àn;µ @ÓZ…©À²\¥íÃÊñ? ÝÙ¹ÀVg¿éPoù?ÜÖ;ԉ߿Ìý|І÷ÿ?¬­g4vÈÀÑ\× ’ä@z&HÜø?âî'È ¬@|o¸7æ?FKG=Ý6@leµ!vÕÀï}gcµÀeö´˜ÀOº¨?î›@xêØ¦®ùÜ?+¹Ð‚í?èµä¯÷¿Ëç–øèmÀÚÅ¥¼À%Ù¿T N3@W¸xÖÛá@Íùø½G.@4 fðgQî¿ï›X&Ò@¼È7aZê¿„ˆòíñÞ @¹ùBVû?qù´™6@«kšCè?ÍãÊ9©bÀWŽ-[Øì¿¬ƒ€2ÀÎBÀÙɨ.O¥À”àU¢ÿøAÀ£ÃJ@(²À™Ý`ȸÁ?Xù¾Dò¿îOÄ‘T¼÷?Õîíá·Ù?fe²=ÀÑ$JäßÖ¿F&HN$ó¿•ûw§”ÀÅö%¤À õƒÀ,_?z­Û¿‘µ‘!o}ô? –FO\À À ik•Fó?gŸïézðò?՛“fÀµ" P µø¿ùÃ9ÚÀpª3Ï2Àèþ*ÊÓ¿ÒHfgEÁ¿‚úÕc ü@F”5gZá?”Î¥V é À¹­àwwÀüH=£hØ @^¸»shå¿+ ÂAÀ¨ó?`ñžpÄò¿"Ù·Ö»@LfÅ^Úæ?®‘SY÷ü¿Œþ ‚ñ@]ãöá.@œæï\ë?¢°§ïÀIqåC°ÀI"ÖA^9 @~ˤ{ö¿€(õ(òð?ÑÚt¹éæ?L–Ý^1tÀCŒï ï%ÀpI®ù ø¿&{5EH´ð¿eoP˜„ @§ªÍô¡ø¿¦ÜÎßBdÚ?î#\ C•ù¿éí±Áç@ ~kþ?Þÿ4í¨ÓÀ@Ô !ó?ÔU>†£¿ þÇð?àƒ€yÒÛý?Œ8ÉýÎ,á¿ÑT¾RÊ@ó¸}È++ÀÖ»Ù7Všß¿e]ÄRhó?‰ÚU…ö?¼3ÅVä À¬ð‹$Î À0´]@0ÿ¿jh@Í/œ²®ŠÛ?€p $à±@ðЖտԵèn½¿ò3NôY1@°c™ý½ @8óQz•¾ø?]™Â½]×ð¿¸"5""G@JÍ®Ì 3 @ᕎóÕî?t4¬šb@‡¼–ÄôÀŽ’“Ž49À0O VVÀ𺰾dÒé¿¿.ª{¶©@T @C†Ü@Rüdº8À´ÑžŠpÖ?FØUw”Û@hÓ‡-ÁÖ׿ìyè À>U( Åö?¼u¡‹N#@Þ?åý]üþ?¢B˜„.-Þ¿}ý7÷?çãÀ‚Ÿõ¿8Ȥ;¹ô¿òßœ@Ày ¦ GCé¿“Ñä€À÷ã34R@–Y»©xê?Œ\¤Ö†î?É^p‹á @cWâÎC Þ¿·ö œ1õ¿ªCi$ãˆÀQlñQ%@¤/^I¤ @MfWÚfÀ5¾ *>ëë?Æ 1ùjnø¿9ÉâÌÕú¿Y`XdÀ:ºÈ[/@fÊ"ÈPï¿ÞÖ»¬õ?"³m¦•ÚÛ?‹Ò `A›ß?²1(¥×ñ¿êäØëàØ?Gé=ŒïÙ?ûÎj„âÔ?X¯ ãVñ?cQ¡õÀŸ@uã¿ØÒ{ —©ÿ¿ ™°rïRü¿E™®Òþ’ÀÜG†{À¨Nð ß @0â-daÚ?+8N7ÿ¿G=ô½n@ô9î°¼äü¿NÁ” ä@úfZjäP@T OÍŽ@Ü÷`劲õ?!_‘ ø¿4ÍÆýXå?:¼[yÕõ?˜ê h0u?ív—& À-Oyy©¿ÓHØ7”Àð¿- rë¯@K+¦¾! ò¿bfŒ‚²Áø? ùâ6³ÿ¿<‡Á#53Ó?Åâ#0_±@BBß·@ç?ä=ÑxÎÄÀ/=MÊí†ú¿+ô™cü¿ó(ª@vþ?áÔ Ü`.@ÃmʲŸëà¿ DíЮí¿õ mZE†÷¿@Q„V¡ëå?ÅéÁ‹|©ð¿?¬Ê3= ÀväȨ¸ó?¿E•Ð6Mõ?¤¦9a–á¿uõ¿Ê7 @Š'ҥϥ@ æ$»¨;@ ˆ÷Wý¿í ˜Ü% ÀèˆW—’µù?Ð^‹ÎÛ?>*[±¤è¿ 3âm¡,÷¿wMÅ‹ù¿¤B‚¾=AÀÜñ,ÁwP@hÉ;¨ô@¹ªL#q” À/vD÷‰û¿¢~³Þš@<ïô@ú?žDæ•ïÓÅ¿S|xq}šò?Gl/’ Š@Í‹âH–@¨¸…2rå?7è{æÿ?¢æ}C @fÓ§©IÇñ¿GnÓZº@SP-pèó@1ï/`Wp@ŸŽ4Ï@ë?Ù÷r@xšºdJý¿ß#z…@{$‘fÀA©(IÙ@0\9áÆm÷¿IuÞÄW; @ƒÀïËåV @åfä‡'ç? ‘A·'à¿o ÞÀ7×n0‹ð?.>ÖÅD!ð¿·t¹âÀ0Þµä¿úkÃw©£À‹Ç±ÊØCâ?–¸Ù™§šþ¿Ž±N²û¿²û³ÁAÈü?û¬Zmï¿¿Û‡;ú]ÀÌevaNÀd…\?‚2é¿oV>>”À~ò; @˦ê]sú?ÊPŸ‰ VÙ¿ò]gÞÉ¿En8,Ò?Mmrl(^ð?‡jQUSeÀ3•Ÿ½±@ï£ éê8 @[(Þòç¿làOÕ.¼Â?H½‘ò@ÎFë¢Gå¿Úax üð¿¯P¯}Ó@qòAa°À£?àvð?Ÿ‚ÑJ" ÀÈ6¬ð¿Âé§XÿÇ À J5y @Ùl@†ü@èÃB(aîñ¿ëÓöQŸ#Ò¿ α<æ¿À2ô’Úÿ¿Úe ¸Yã¿ú©Ã.~2À³ ¬œy¤%À]7óß¿ë ¦Ý›òÏ¿ÊxKgÀ®FÇ ²1æ?îÑûKgý?±âöëŒÒ?¤ñaµŒòñ¿FÌ_¦Ïà?Mõ|3#ö?Ö"tñÀšàË׆Ö?†?Vº»Yí¿b^²d5û¿‹T5ÆE…Àõ\F ÷þ¿‘óvW¨Ü?ë;bô'À|Û?u%¤@Òá- ¶@äÁpB²ÀC)k‰†ê¿¬å¼4>ä@à‹mzÓzõ¿NÜM,Ö@ عEuÜø¿|güVZO @(ÀüHR†É¿Ö-LFEñ?n+¬JYì?ÝÓÁ Nà?y«%ë£Dü¿_T5—ó@‡[ïQYÛÄ?ÁÊåÇõ? >œ(Üò?)‡ Ÿv @bøÓzoû¿-j:dÆß¿-ËâÆ¤Îÿ?Ë$¤wÆ@°bÐЖ¸÷?õ6q¤r@Ê {µþM®¿¯âºRãé?ÖvÊ —@W…SÏÚ¿_¶¥áà°ð¿œÞmé|^Ó¿mÉ_Õ‹Ã@úip(ŸÚ @N:9Wj @_$ìø°ì?ß"¾÷J)ò¿²)ÙÃøß?Ù ËHÁÕ?ÖüÈëÀ?Î{æ ÀjÊ–¤@ÒWËVÑæ¿S’\Ö&y?gˆÉ¦þ?‡äª£û¦ü¿fÖ¡4>Ò?z´s`{ù¿Ì¡Ö)&·¿À߸áÀ;4FhgÏ Àö_¿Vƒ À„µEä(@V‰2Nbñ¿Qöï•.\ø¿…ˆ“™\À¯DÊ u#@ϯê]”@:Ðö40cÀ ¦ÑüÝ@ßt%u®fÀy—¸a<·ï¿§—uÙèþ ÀÂEÞ*ø?àfîþtn"Àb yS¤ À·N`Ñ'ê?´¬nÅñ@\¡¡kUÜÀ-Ýâp>^@˜S/¯êýþ?;ŠCÀøðTYÍ­û?µÒz+•¯@ƒÚê`ŽåÀ^ûã‡Þþ?²’°õ¿DÉoN@F¸ÜµÀÄf:VÅHæ¿&ïö”ÇÁ@üÇC|@´vWmÀ¢î‹KV@Ï”d¤R@Á¡Ù-÷"@u¹ew4ÝÔ¿ÑШ­@³UæîÚÀÛéešý?ÜDo9£JÀïvwfâ¿@¼MᾈÀ×d”À4{0@O¿HbP À QÅ…W ï¿ÉÀµ^ç·uS À 4O¨ÏR@ꉹÍß?ûÖRn¦&Àèp_AjÀù\œ™" ÀúSŸÿ¿Y-{yq ð¿j¹ÝlgdÑ?Þk­v„ @² Ù@z@¯q-EÀ…²d"2'@¥R’â ­Àâ*0n„@¥o/x¡ä¿…g×_@ÀHûÜäý?ó½Ú«±ÒÀùÒ_·¿\c@®j~â¿eâ”’׿Ã{J+²ú¿c IÓÕü¿’yé«hŸÀ²q¬SÀal>¾Gö¿haϾkÀ³,§ì\ë?ØÇçÊ+sñ¿¨8<ÄmÎ Àó‰Á©À\~?)&Á@î„ì²ú@í´YB@ðJ)Ò^×?öþ“æçç?ΗÃó’ô?Q8Xîhó¿g¾}…ŒW@úâ}jê?÷*< Hø?1%+@‡ (^ý@s„I©µð¿R?¶ù©î?<ˆj¤.å? ÂÔUµ@`ꉼ@׳½-­œ@JŠžO’¥@ñ±ÕJU@vî9oîúÝ¿DOfßõ?&‡ùÚdAÀU”0]±ßù¿^æ>op>Û?vöèï: @¦É­÷E@föW}C°Ü?©üj&íT@}ŸÎ¼ƒú@ ˆ…Q!³ø?TZ1ì»áÅ?‡Iúè·¬ë?áH¯AÀñ3^õÄþ¿æÁÅòâû?Um|ÙOÀM —0aù¿Ië$ºã?5Ý«‘@ö1¤Ô…ý@Èvb@{ºì?û‡!{µå¿ùèp­«ý¿U«M ëå¿Í!ùh'UÓ¿ý6Ï)q࿞ä âÅþ¿QEÔv©–á¿ó,}M@Ê?tÓHjú?J^iµË?ö×§YIç?¡ß©¦Pö?:ÒiC!9ÀNšK¥¶¶?A†{Z2â?ÑÔÑUrÀá·>¿ÿ @}ßÇw* ÀâLÁgô¿öå-Q ÷¿@6š+ü?fGûÀ+ò¡kYùè¿ØÉÑöõ€À®(b¹&ËÕ?èq]™Ô>à¿òü—MA-ð?ÖÄÄŸÒ¿eéöçtg×?éXjT­È?z¢¢Hc@d^Ô7ÀùhëGÝ¿|è¶¾Éæù¿S‹EüügÀ$éÐ$3Bû?CûŠò¹nå¿þ=H·—ø¿ð?·„Jºá?ñKš’nÄ?ëµÑç@¢å?ù‘ð÷j‹Ü?¹mY[äê?ëµÑç@¢å¿ð?fluids-1.0.22/fluids/optional/spa.py0000644000175000017500000014066514302004506016666 0ustar nileshnilesh# -*- coding: utf-8 -*- """ irradiance.py from pvlib ======================== Stripped down, vendorized version from: https://github.com/pvlib/pvlib-python/ Calculate the solar position using the NREL SPA algorithm either using numpy arrays or compiling the code to machine language with numba. The rational for not including this library as a strict dependency is to avoid including a dependency on pandas, keeping load time low, and PyPy compatibility Created by Tony Lorenzo (@alorenzo175), Univ. of Arizona, 2015 For a full list of contributors to this file, see the `pvlib` repository. The copyright notice (BSD-3 clause) is as follows: BSD 3-Clause License Copyright (c) 2013-2018, Sandia National Laboratories and pvlib python Development Team All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the {organization} nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """ from __future__ import division import os import time from datetime import datetime import math from math import degrees, sin, cos, tan, radians, atan, asin, atan2, sqrt, acos from fluids.constants import deg2rad, rad2deg from fluids.numerics import sincos __all__ = ['julian_day_dt', 'julian_day', 'julian_ephemeris_day', 'julian_century', 'julian_ephemeris_century', 'julian_ephemeris_millennium', 'heliocentric_longitude', 'heliocentric_latitude', 'heliocentric_radius_vector', 'geocentric_longitude', 'geocentric_latitude', 'mean_elongation', 'mean_anomaly_sun', 'mean_anomaly_moon', 'moon_argument_latitude', 'moon_ascending_longitude', 'longitude_nutation', 'obliquity_nutation', 'mean_ecliptic_obliquity', 'true_ecliptic_obliquity', 'aberration_correction', 'apparent_sun_longitude', 'mean_sidereal_time', 'apparent_sidereal_time', 'geocentric_sun_right_ascension', 'geocentric_sun_declination', 'local_hour_angle', 'equatorial_horizontal_parallax', 'uterm', 'xterm', 'yterm', 'parallax_sun_right_ascension', 'topocentric_sun_right_ascension', 'topocentric_sun_declination', 'topocentric_local_hour_angle', 'topocentric_elevation_angle_without_atmosphere', 'atmospheric_refraction_correction', 'topocentric_elevation_angle', 'topocentric_zenith_angle', 'topocentric_astronomers_azimuth', 'topocentric_azimuth_angle', 'sun_mean_longitude', 'equation_of_time', 'calculate_deltat', 'longitude_obliquity_nutation', 'transit_sunrise_sunset', ] nan = float("nan") HELIO_RADIUS_TABLE_LIST_0 = [[100013989.0, 0.0, 0.0], [1670700.0, 3.0984635, 6283.07585], [13956.0, 3.05525, 12566.1517], [3084.0, 5.1985, 77713.7715], [1628.0, 1.1739, 5753.3849], [1576.0, 2.8469, 7860.4194], [925.0, 5.453, 11506.77], [542.0, 4.564, 3930.21], [472.0, 3.661, 5884.927], [346.0, 0.964, 5507.553], [329.0, 5.9, 5223.694], [307.0, 0.299, 5573.143], [243.0, 4.273, 11790.629], [212.0, 5.847, 1577.344], [186.0, 5.022, 10977.079], [175.0, 3.012, 18849.228], [110.0, 5.055, 5486.778], [98.0, 0.89, 6069.78], [86.0, 5.69, 15720.84], [86.0, 1.27, 161000.69], [65.0, 0.27, 17260.15], [63.0, 0.92, 529.69], [57.0, 2.01, 83996.85], [56.0, 5.24, 71430.7], [49.0, 3.25, 2544.31], [47.0, 2.58, 775.52], [45.0, 5.54, 9437.76], [43.0, 6.01, 6275.96], [39.0, 5.36, 4694.0], [38.0, 2.39, 8827.39], [37.0, 0.83, 19651.05], [37.0, 4.9, 12139.55], [36.0, 1.67, 12036.46], [35.0, 1.84, 2942.46], [33.0, 0.24, 7084.9], [32.0, 0.18, 5088.63], [32.0, 1.78, 398.15], [28.0, 1.21, 6286.6], [28.0, 1.9, 6279.55], [26.0, 4.59, 10447.39]] HELIO_RADIUS_TABLE_LIST_1 = [[103019.0, 1.10749, 6283.07585], [1721.0, 1.0644, 12566.1517], [702.0, 3.142, 0.0], [32.0, 1.02, 18849.23], [31.0, 2.84, 5507.55], [25.0, 1.32, 5223.69], [18.0, 1.42, 1577.34], [10.0, 5.91, 10977.08], [9.0, 1.42, 6275.96], [9.0, 0.27, 5486.78], ] HELIO_RADIUS_TABLE_LIST_2 = [[4359.0, 5.7846, 6283.0758], [124.0, 5.579, 12566.152], [12.0, 3.14, 0.0], [9.0, 3.63, 77713.77], [6.0, 1.87, 5573.14], [3.0, 5.47, 18849.23]] HELIO_RADIUS_TABLE_LIST_3 = [[145.0, 4.273, 6283.076], [7.0, 3.92, 12566.15]] HELIO_RADIUS_TABLE_LIST_4 = [[4.0, 2.56, 6283.08]] NUTATION_YTERM_LIST_0 = [0.0, -2.0, 0.0, 0.0, 0.0, 0.0, -2.0, 0.0, 0.0, -2.0, -2.0, -2.0, 0.0, 2.0, 0.0, 2.0, 0.0, 0.0, -2.0, 0.0, 2.0, 0.0, 0.0, -2.0, 0.0, -2.0, 0.0, 0.0, 2.0, -2.0, 0.0, -2.0, 0.0, 0.0, 2.0, 2.0, 0.0, -2.0, 0.0, 2.0, 2.0, -2.0, -2.0, 2.0, 2.0, 0.0, -2.0, -2.0, 0.0, -2.0, -2.0, 0.0, -1.0, -2.0, 1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 2.0, 0.0, 2.0] NUTATION_YTERM_LIST_1 = [0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0, 1.0, 0.0, -1.0, 0.0, 0.0, 0.0, 1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, -1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, -1.0, 1.0, -1.0, -1.0, 0.0, -1.0] NUTATION_YTERM_LIST_2 = [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, -1.0, 0.0, 1.0, -1.0, -1.0, 1.0, 2.0, -2.0, 0.0, 2.0, 2.0, 1.0, 0.0, 0.0, -1.0, 0.0, -1.0, 0.0, 0.0, 1.0, 0.0, 2.0, -1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0, 1.0, -2.0, 0.0, 1.0, 0.0, 0.0, 2.0, 2.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, -2.0, 1.0, 1.0, 1.0, -1.0, 3.0, 0.0] NUTATION_YTERM_LIST_3 = [0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 2.0, 2.0, 2.0, 2.0, 0.0, 2.0, 2.0, 0.0, 0.0, 2.0, 0.0, 2.0, 0.0, 2.0, 2.0, 2.0, 0.0, 2.0, 2.0, 2.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, -2.0, 2.0, 2.0, 2.0, 0.0, 2.0, 2.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0, 0.0, 2.0, -2.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 2.0, 2.0, 2.0, 2.0] NUTATION_YTERM_LIST_4 = [1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 2.0, 1.0, 2.0, 2.0, 0.0, 1.0, 2.0, 0.0, 1.0, 2.0, 1.0, 1.0, 0.0, 1.0, 2.0, 2.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 1.0, 1.0, 1.0, 0.0, 1.0, 2.0, 2.0, 0.0, 2.0, 1.0, 0.0, 2.0, 1.0, 1.0, 1.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0, 2.0, 2.0, 2.0] NUTATION_ABCD_LIST = [[-171996.0, -174.2, 92025.0, 8.9], [-13187.0, -1.6, 5736.0, -3.1], [-2274.0, -0.2, 977.0, -0.5], [2062.0, 0.2, -895.0, 0.5], [1426.0, -3.4, 54.0, -0.1], [712.0, 0.1, -7.0, 0.0], [-517.0, 1.2, 224.0, -0.6], [-386.0, -0.4, 200.0, 0.0], [-301.0, 0.0, 129.0, -0.1], [217.0, -0.5, -95.0, 0.3], [-158.0, 0.0, 0.0, 0.0], [129.0, 0.1, -70.0, 0.0], [123.0, 0.0, -53.0, 0.0], [63.0, 0.0, 0.0, 0.0], [63.0, 0.1, -33.0, 0.0], [-59.0, 0.0, 26.0, 0.0], [-58.0, -0.1, 32.0, 0.0], [-51.0, 0.0, 27.0, 0.0], [48.0, 0.0, 0.0, 0.0], [46.0, 0.0, -24.0, 0.0], [-38.0, 0.0, 16.0, 0.0], [-31.0, 0.0, 13.0, 0.0], [29.0, 0.0, 0.0, 0.0], [29.0, 0.0, -12.0, 0.0], [26.0, 0.0, 0.0, 0.0], [-22.0, 0.0, 0.0, 0.0], [21.0, 0.0, -10.0, 0.0], [17.0, -0.1, 0.0, 0.0], [16.0, 0.0, -8.0, 0.0], [-16.0, 0.1, 7.0, 0.0], [-15.0, 0.0, 9.0, 0.0], [-13.0, 0.0, 7.0, 0.0], [-12.0, 0.0, 6.0, 0.0], [11.0, 0.0, 0.0, 0.0], [-10.0, 0.0, 5.0, 0.0], [-8.0, 0.0, 3.0, 0.0], [7.0, 0.0, -3.0, 0.0], [-7.0, 0.0, 0.0, 0.0], [-7.0, 0.0, 3.0, 0.0], [-7.0, 0.0, 3.0, 0.0], [6.0, 0.0, 0.0, 0.0], [6.0, 0.0, -3.0, 0.0], [6.0, 0.0, -3.0, 0.0], [-6.0, 0.0, 3.0, 0.0], [-6.0, 0.0, 3.0, 0.0], [5.0, 0.0, 0.0, 0.0], [-5.0, 0.0, 3.0, 0.0], [-5.0, 0.0, 3.0, 0.0], [-5.0, 0.0, 3.0, 0.0], [4.0, 0.0, 0.0, 0.0], [4.0, 0.0, 0.0, 0.0], [4.0, 0.0, 0.0, 0.0], [-4.0, 0.0, 0.0, 0.0], [-4.0, 0.0, 0.0, 0.0], [-4.0, 0.0, 0.0, 0.0], [3.0, 0.0, 0.0, 0.0], [-3.0, 0.0, 0.0, 0.0], [-3.0, 0.0, 0.0, 0.0], [-3.0, 0.0, 0.0, 0.0], [-3.0, 0.0, 0.0, 0.0], [-3.0, 0.0, 0.0, 0.0], [-3.0, 0.0, 0.0, 0.0], [-3.0, 0.0, 0.0, 0.0]] HELIO_LAT_TABLE_LIST_0 = [[280.0, 3.199, 84334.662], [102.0, 5.422, 5507.553], [80.0, 3.88, 5223.69], [44.0, 3.7, 2352.87], [32.0, 4.0, 1577.34]] HELIO_LAT_TABLE_LIST_1 = [[9.0, 3.9, 5507.55], [6.0, 1.73, 5223.69]] #HELIO_LONG_TABLE_LIST = HELIO_LONG_TABLE.tolist() HELIO_LONG_TABLE_LIST_0 = [[175347046.0, 0.0, 0.0], [3341656.0, 4.6692568, 6283.07585], [34894.0, 4.6261, 12566.1517], [3497.0, 2.7441, 5753.3849], [3418.0, 2.8289, 3.5231], [3136.0, 3.6277, 77713.7715], [2676.0, 4.4181, 7860.4194], [2343.0, 6.1352, 3930.2097], [1324.0, 0.7425, 11506.7698], [1273.0, 2.0371, 529.691], [1199.0, 1.1096, 1577.3435], [990.0, 5.233, 5884.927], [902.0, 2.045, 26.298], [857.0, 3.508, 398.149], [780.0, 1.179, 5223.694], [753.0, 2.533, 5507.553], [505.0, 4.583, 18849.228], [492.0, 4.205, 775.523], [357.0, 2.92, 0.067], [317.0, 5.849, 11790.629], [284.0, 1.899, 796.298], [271.0, 0.315, 10977.079], [243.0, 0.345, 5486.778], [206.0, 4.806, 2544.314], [205.0, 1.869, 5573.143], [202.0, 2.458, 6069.777], [156.0, 0.833, 213.299], [132.0, 3.411, 2942.463], [126.0, 1.083, 20.775], [115.0, 0.645, 0.98], [103.0, 0.636, 4694.003], [102.0, 0.976, 15720.839], [102.0, 4.267, 7.114], [99.0, 6.21, 2146.17], [98.0, 0.68, 155.42], [86.0, 5.98, 161000.69], [85.0, 1.3, 6275.96], [85.0, 3.67, 71430.7], [80.0, 1.81, 17260.15], [79.0, 3.04, 12036.46], [75.0, 1.76, 5088.63], [74.0, 3.5, 3154.69], [74.0, 4.68, 801.82], [70.0, 0.83, 9437.76], [62.0, 3.98, 8827.39], [61.0, 1.82, 7084.9], [57.0, 2.78, 6286.6], [56.0, 4.39, 14143.5], [56.0, 3.47, 6279.55], [52.0, 0.19, 12139.55], [52.0, 1.33, 1748.02], [51.0, 0.28, 5856.48], [49.0, 0.49, 1194.45], [41.0, 5.37, 8429.24], [41.0, 2.4, 19651.05], [39.0, 6.17, 10447.39], [37.0, 6.04, 10213.29], [37.0, 2.57, 1059.38], [36.0, 1.71, 2352.87], [36.0, 1.78, 6812.77], [33.0, 0.59, 17789.85], [30.0, 0.44, 83996.85], [30.0, 2.74, 1349.87], [25.0, 3.16, 4690.48]] HELIO_LONG_TABLE_LIST_1 = [[628331966747.0, 0.0, 0.0], [206059.0, 2.678235, 6283.07585], [4303.0, 2.6351, 12566.1517], [425.0, 1.59, 3.523], [119.0, 5.796, 26.298], [109.0, 2.966, 1577.344], [93.0, 2.59, 18849.23], [72.0, 1.14, 529.69], [68.0, 1.87, 398.15], [67.0, 4.41, 5507.55], [59.0, 2.89, 5223.69], [56.0, 2.17, 155.42], [45.0, 0.4, 796.3], [36.0, 0.47, 775.52], [29.0, 2.65, 7.11], [21.0, 5.34, 0.98], [19.0, 1.85, 5486.78], [19.0, 4.97, 213.3], [17.0, 2.99, 6275.96], [16.0, 0.03, 2544.31], [16.0, 1.43, 2146.17], [15.0, 1.21, 10977.08], [12.0, 2.83, 1748.02], [12.0, 3.26, 5088.63], [12.0, 5.27, 1194.45], [12.0, 2.08, 4694.0], [11.0, 0.77, 553.57], [10.0, 1.3, 6286.6], [10.0, 4.24, 1349.87], [9.0, 2.7, 242.73], [9.0, 5.64, 951.72], [8.0, 5.3, 2352.87], [6.0, 2.65, 9437.76], [6.0, 4.67, 4690.48], ] HELIO_LONG_TABLE_LIST_2 = [[52919.0, 0.0, 0.0], [8720.0, 1.0721, 6283.0758], [309.0, 0.867, 12566.152], [27.0, 0.05, 3.52], [16.0, 5.19, 26.3], [16.0, 3.68, 155.42], [10.0, 0.76, 18849.23], [9.0, 2.06, 77713.77], [7.0, 0.83, 775.52], [5.0, 4.66, 1577.34], [4.0, 1.03, 7.11], [4.0, 3.44, 5573.14], [3.0, 5.14, 796.3], [3.0, 6.05, 5507.55], [3.0, 1.19, 242.73], [3.0, 6.12, 529.69], [3.0, 0.31, 398.15], [3.0, 2.28, 553.57], [2.0, 4.38, 5223.69], [2.0, 3.75, 0.98]] HELIO_LONG_TABLE_LIST_3 = [[289.0, 5.844, 6283.076], [35.0, 0.0, 0.0], [17.0, 5.49, 12566.15], [3.0, 5.2, 155.42], [1.0, 4.72, 3.52], [1.0, 5.3, 18849.23], [1.0, 5.97, 242.73] ] HELIO_LONG_TABLE_LIST_4 = [[114.0, 3.142, 0.0], [8.0, 4.13, 6283.08], [1.0, 3.84, 12566.15]] def julian_day_dt(year, month, day, hour, minute, second, microsecond): """This is the original way to calculate the julian day from the NREL paper. However, it is much faster to convert to unix/epoch time and then convert to julian day. Note that the date must be UTC. """ # Not used anywhere! if month <= 2: year = year-1 month = month+12 a = int(year/100) b = 2 - a + int(a * 0.25) frac_of_day = (microsecond + (second + minute * 60 + hour * 3600) ) * 1.0 / (3600*24) d = day + frac_of_day jd = (int(365.25 * (year + 4716)) + int(30.6001 * (month + 1)) + d + b - 1524.5) return jd def julian_day(unixtime): jd = unixtime*1.1574074074074073e-05 + 2440587.5 # jd = unixtime/86400.0 + 2440587.5 return jd def julian_ephemeris_day(julian_day, delta_t): jde = julian_day + delta_t*1.1574074074074073e-05 # jde = julian_day + delta_t * 1.0 / 86400.0 return jde def julian_century(julian_day): jc = (julian_day - 2451545.0)*2.7378507871321012e-05# * 1.0 / 36525 return jc def julian_ephemeris_century(julian_ephemeris_day): # 1/36525.0 = 2.7378507871321012e-05 jce = (julian_ephemeris_day - 2451545.0)*2.7378507871321012e-05 return jce def julian_ephemeris_millennium(julian_ephemeris_century): jme = julian_ephemeris_century*0.1 return jme def heliocentric_longitude(jme): # Might be able to replace this with a pade approximation? # Looping over rows is probably still faster than (a, b, c) # Maximum optimization l0 = 0.0 l1 = 0.0 l2 = 0.0 l3 = 0.0 l4 = 0.0 l5 = 0.0 for row in range(64): HELIO_LONG_TABLE_LIST_0_ROW = HELIO_LONG_TABLE_LIST_0[row] l0 += (HELIO_LONG_TABLE_LIST_0_ROW[0] * cos(HELIO_LONG_TABLE_LIST_0_ROW[1] + HELIO_LONG_TABLE_LIST_0_ROW[2] * jme) ) for row in range(34): HELIO_LONG_TABLE_LIST_1_ROW = HELIO_LONG_TABLE_LIST_1[row] l1 += (HELIO_LONG_TABLE_LIST_1_ROW[0] * cos(HELIO_LONG_TABLE_LIST_1_ROW[1] + HELIO_LONG_TABLE_LIST_1_ROW[2] * jme) ) for row in range(20): HELIO_LONG_TABLE_LIST_2_ROW = HELIO_LONG_TABLE_LIST_2[row] l2 += (HELIO_LONG_TABLE_LIST_2_ROW[0] * cos(HELIO_LONG_TABLE_LIST_2_ROW[1] + HELIO_LONG_TABLE_LIST_2_ROW[2] * jme) ) for row in range(7): HELIO_LONG_TABLE_LIST_3_ROW = HELIO_LONG_TABLE_LIST_3[row] l3 += (HELIO_LONG_TABLE_LIST_3_ROW[0] * cos(HELIO_LONG_TABLE_LIST_3_ROW[1] + HELIO_LONG_TABLE_LIST_3_ROW[2] * jme) ) for row in range(3): HELIO_LONG_TABLE_LIST_4_ROW = HELIO_LONG_TABLE_LIST_4[row] l4 += (HELIO_LONG_TABLE_LIST_4_ROW[0] * cos(HELIO_LONG_TABLE_LIST_4_ROW[1] + HELIO_LONG_TABLE_LIST_4_ROW[2] * jme) ) # l5 = (HELIO_LONG_TABLE_LIST_5[0][0]*cos(HELIO_LONG_TABLE_LIST_5[0][1])) l5 = -0.9999987317275395 l_rad = (jme*(jme*(jme*(jme*(jme*l5 + l4) + l3) + l2) + l1) + l0)*1E-8 l = rad2deg*l_rad return l % 360 def heliocentric_latitude(jme): b0 = 0.0 b1 = 0.0 for row in range(5): HELIO_LAT_TABLE_LIST_0_ROW = HELIO_LAT_TABLE_LIST_0[row] b0 += (HELIO_LAT_TABLE_LIST_0_ROW[0] * cos(HELIO_LAT_TABLE_LIST_0_ROW[1] + HELIO_LAT_TABLE_LIST_0_ROW[2] * jme) ) HELIO_LAT_TABLE_LIST_1_ROW = HELIO_LAT_TABLE_LIST_1[0] b1 += (HELIO_LAT_TABLE_LIST_1_ROW[0] * cos(HELIO_LAT_TABLE_LIST_1_ROW[1] + HELIO_LAT_TABLE_LIST_1_ROW[2] * jme)) HELIO_LAT_TABLE_LIST_1_ROW = HELIO_LAT_TABLE_LIST_1[1] b1 += (HELIO_LAT_TABLE_LIST_1_ROW[0] * cos(HELIO_LAT_TABLE_LIST_1_ROW[1] + HELIO_LAT_TABLE_LIST_1_ROW[2] * jme)) b_rad = (b0 + b1 * jme)*1E-8 b = rad2deg*b_rad return b def heliocentric_radius_vector(jme): # no optimizations can be thought of r0 = 0.0 r1 = 0.0 r2 = 0.0 r3 = 0.0 r4 = 0.0 # Would be possible to save a few multiplies of table1row[2]*jme, table1row[1]*jme as they are dups for row in range(40): table0row = HELIO_RADIUS_TABLE_LIST_0[row] r0 += (table0row[0]*cos(table0row[1] + table0row[2]*jme)) for row in range(10): table1row = HELIO_RADIUS_TABLE_LIST_1[row] r1 += (table1row[0]*cos(table1row[1] + table1row[2]*jme)) for row in range(6): table2row = HELIO_RADIUS_TABLE_LIST_2[row] r2 += (table2row[0]*cos(table2row[1] + table2row[2]*jme)) table3row = HELIO_RADIUS_TABLE_LIST_3[0] r3 += (table3row[0]*cos(table3row[1] + table3row[2]*jme)) table3row = HELIO_RADIUS_TABLE_LIST_3[1] r3 += (table3row[0]*cos(table3row[1] + table3row[2]*jme)) # table4row = HELIO_RADIUS_TABLE_LIST_4[0] # r4 = (table4row[0]*cos(table4row[1] + table4row[2]*jme)) r4 = (4.0*cos(2.56 + 6283.08*jme)) return (jme*(jme*(jme*(jme*r4 + r3) + r2) + r1) + r0)*1E-8 def geocentric_longitude(heliocentric_longitude): theta = heliocentric_longitude + 180.0 return theta % 360 def geocentric_latitude(heliocentric_latitude): beta = -heliocentric_latitude return beta def mean_elongation(julian_ephemeris_century): return (julian_ephemeris_century*(julian_ephemeris_century *(5.27776898149614e-6*julian_ephemeris_century - 0.0019142) + 445267.11148) + 297.85036) # x0 = (297.85036 # + 445267.111480 * julian_ephemeris_century # - 0.0019142 * julian_ephemeris_century**2 # + julian_ephemeris_century**3 / 189474.0) # return x0 def mean_anomaly_sun(julian_ephemeris_century): return (julian_ephemeris_century*(julian_ephemeris_century*( -3.33333333333333e-6*julian_ephemeris_century - 0.0001603) + 35999.05034) + 357.52772) # x1 = (357.52772 # + 35999.050340 * julian_ephemeris_century # - 0.0001603 * julian_ephemeris_century**2 # - julian_ephemeris_century**3 / 300000.0) # return x1 def mean_anomaly_moon(julian_ephemeris_century): return (julian_ephemeris_century*(julian_ephemeris_century*( 1.77777777777778e-5*julian_ephemeris_century + 0.0086972) + 477198.867398) + 134.96298) # x2 = (134.96298 # + 477198.867398 * julian_ephemeris_century # + 0.0086972 * julian_ephemeris_century**2 # + julian_ephemeris_century**3 / 56250) # return x2 def moon_argument_latitude(julian_ephemeris_century): return julian_ephemeris_century*(julian_ephemeris_century*( 3.05558101873071e-6*julian_ephemeris_century - 0.0036825) + 483202.017538) + 93.27191 # x3 = (93.27191 # + 483202.017538 * julian_ephemeris_century # - 0.0036825 * julian_ephemeris_century**2 # + julian_ephemeris_century**3 / 327270) # return x3 def moon_ascending_longitude(julian_ephemeris_century): return (julian_ephemeris_century*(julian_ephemeris_century*( 2.22222222222222e-6*julian_ephemeris_century + 0.0020708) - 1934.136261) + 125.04452) # x4 = (125.04452 # - 1934.136261 * julian_ephemeris_century # + 0.0020708 * julian_ephemeris_century**2 # + julian_ephemeris_century**3 / 450000) # return x4 def longitude_obliquity_nutation(julian_ephemeris_century, x0, x1, x2, x3, x4): x0, x1, x2, x3, x4 = deg2rad*x0, deg2rad*x1, deg2rad*x2, deg2rad*x3, deg2rad*x4 delta_psi_sum = 0.0 delta_eps_sum = 0.0 # If the sincos formulation is used, the speed up is ~8% with numba. for row in range(63): arg = (NUTATION_YTERM_LIST_0[row]*x0 + NUTATION_YTERM_LIST_1[row]*x1 + NUTATION_YTERM_LIST_2[row]*x2 + NUTATION_YTERM_LIST_3[row]*x3 + NUTATION_YTERM_LIST_4[row]*x4) arr = NUTATION_ABCD_LIST[row] sinarg, cosarg = sincos(arg) # sinarg = sin(arg) # cosarg = sqrt(1.0 - sinarg*sinarg) t0 = (arr[0] + julian_ephemeris_century*arr[1]) delta_psi_sum += t0*sinarg # delta_psi_sum += t0*sin(arg) t0 = (arr[2] + julian_ephemeris_century*arr[3]) delta_eps_sum += t0*cosarg # delta_eps_sum += t0*cos(arg) delta_psi = delta_psi_sum/36000000.0 delta_eps = delta_eps_sum/36000000.0 res = [0.0]*2 res[0] = delta_psi res[1] = delta_eps return res def longitude_nutation(julian_ephemeris_century, x0, x1, x2, x3, x4): x0, x1, x2, x3, x4 = deg2rad*x0, deg2rad*x1, deg2rad*x2, deg2rad*x3, deg2rad*x4 delta_psi_sum = 0.0 for row in range(63): # # None can be skipped but the multiplies can be with effort -2 to 2 with dict - just might be slower argsin = (NUTATION_YTERM_LIST_0[row]*x0 + NUTATION_YTERM_LIST_1[row]*x1 + NUTATION_YTERM_LIST_2[row]*x2 + NUTATION_YTERM_LIST_3[row]*x3 + NUTATION_YTERM_LIST_4[row]*x4) term = (NUTATION_ABCD_LIST[row][0] + NUTATION_ABCD_LIST[row][1] * julian_ephemeris_century)*sin(argsin) delta_psi_sum += term delta_psi = delta_psi_sum/36000000.0 return delta_psi def obliquity_nutation(julian_ephemeris_century, x0, x1, x2, x3, x4): delta_eps_sum = 0.0 x0, x1, x2, x3, x4 = deg2rad*x0, deg2rad*x1, deg2rad*x2, deg2rad*x3, deg2rad*x4 for row in range(63): argcos = (NUTATION_YTERM_LIST_0[row]*x0 + NUTATION_YTERM_LIST_1[row]*x1 + NUTATION_YTERM_LIST_2[row]*x2 + NUTATION_YTERM_LIST_3[row]*x3 + NUTATION_YTERM_LIST_4[row]*x4) term = (NUTATION_ABCD_LIST[row][2] + NUTATION_ABCD_LIST[row][3]*julian_ephemeris_century)*cos(argcos) delta_eps_sum += term delta_eps = delta_eps_sum/36000000.0 return delta_eps def mean_ecliptic_obliquity(julian_ephemeris_millennium): U = 0.1*julian_ephemeris_millennium e0 = (U*(U*(U*(U*(U*(U*(U*(U*(U*(2.45*U + 5.79) + 27.87) + 7.12) - 39.05) - 249.67) - 51.38) + 1999.25) - 1.55) - 4680.93) + 84381.448) return e0 def true_ecliptic_obliquity(mean_ecliptic_obliquity, obliquity_nutation): # e0 = mean_ecliptic_obliquity # deleps = obliquity_nutation return mean_ecliptic_obliquity*0.0002777777777777778 + obliquity_nutation # e = e0/3600.0 + deleps # return e def aberration_correction(earth_radius_vector): # -20.4898 / (3600) deltau = -0.005691611111111111/earth_radius_vector return deltau def apparent_sun_longitude(geocentric_longitude, longitude_nutation, aberration_correction): lamd = geocentric_longitude + longitude_nutation + aberration_correction return lamd def mean_sidereal_time(julian_day, julian_century): julian_century2 = julian_century*julian_century v0 = (280.46061837 + 360.98564736629*(julian_day - 2451545.0) + 0.000387933*julian_century2 - julian_century2*julian_century/38710000.0) return v0 % 360.0 def apparent_sidereal_time(mean_sidereal_time, longitude_nutation, true_ecliptic_obliquity): v = mean_sidereal_time + longitude_nutation*cos(deg2rad*true_ecliptic_obliquity) return v def geocentric_sun_right_ascension(apparent_sun_longitude, true_ecliptic_obliquity, geocentric_latitude): num = (sin(deg2rad*apparent_sun_longitude) * cos(deg2rad*true_ecliptic_obliquity) - tan(deg2rad*geocentric_latitude) * sin(deg2rad*true_ecliptic_obliquity)) alpha = degrees(atan2(num, cos( deg2rad*apparent_sun_longitude))) return alpha % 360 def geocentric_sun_declination(apparent_sun_longitude, true_ecliptic_obliquity, geocentric_latitude): delta = degrees(asin(sin(deg2rad*geocentric_latitude) * cos(deg2rad*true_ecliptic_obliquity) + cos(deg2rad*geocentric_latitude) * sin(deg2rad*true_ecliptic_obliquity) * sin(deg2rad*apparent_sun_longitude))) return delta def local_hour_angle(apparent_sidereal_time, observer_longitude, sun_right_ascension): """Measured westward from south.""" H = apparent_sidereal_time + observer_longitude - sun_right_ascension return H % 360 def equatorial_horizontal_parallax(earth_radius_vector): return 8.794 / (3600.0 * earth_radius_vector) def uterm(observer_latitude): u = atan(0.99664719*tan(deg2rad*observer_latitude)) return u def xterm(u, observer_latitude, observer_elevation): # 1/6378140.0 = const x = (cos(u) + observer_elevation*1.5678552054360676e-07*cos(deg2rad*observer_latitude)) return x def yterm(u, observer_latitude, observer_elevation): # 1/6378140.0 = const y = (0.99664719 * sin(u) + observer_elevation*1.5678552054360676e-07 * sin(deg2rad*observer_latitude)) return y def parallax_sun_right_ascension(xterm, equatorial_horizontal_parallax, local_hour_angle, geocentric_sun_declination): x0 = sin(deg2rad*equatorial_horizontal_parallax) x1 = deg2rad*local_hour_angle num = -xterm*x0*sin(x1) denom = (cos(deg2rad*geocentric_sun_declination) - xterm*x0 * cos(x1)) delta_alpha = degrees(atan2(num, denom)) return delta_alpha def topocentric_sun_right_ascension(geocentric_sun_right_ascension, parallax_sun_right_ascension): alpha_prime = geocentric_sun_right_ascension + parallax_sun_right_ascension return alpha_prime def topocentric_sun_declination(geocentric_sun_declination, xterm, yterm, equatorial_horizontal_parallax, parallax_sun_right_ascension, local_hour_angle): x0 = sin(deg2rad*equatorial_horizontal_parallax) num = ((sin(deg2rad*geocentric_sun_declination) - yterm * x0) * cos(deg2rad*parallax_sun_right_ascension)) denom = (cos(deg2rad*geocentric_sun_declination) - xterm * x0 * cos(deg2rad*local_hour_angle)) delta = degrees(atan2(num, denom)) return delta def topocentric_local_hour_angle(local_hour_angle, parallax_sun_right_ascension): H_prime = local_hour_angle - parallax_sun_right_ascension return H_prime def topocentric_elevation_angle_without_atmosphere(observer_latitude, topocentric_sun_declination, topocentric_local_hour_angle ): observer_latitude = observer_latitude topocentric_sun_declination = topocentric_sun_declination topocentric_local_hour_angle = topocentric_local_hour_angle r_observer_latitude = deg2rad*observer_latitude r_topocentric_sun_declination = deg2rad*topocentric_sun_declination e0 = degrees(asin( sin(r_observer_latitude) * sin(r_topocentric_sun_declination) + cos(r_observer_latitude) * cos(r_topocentric_sun_declination) * cos(deg2rad*topocentric_local_hour_angle))) return e0 def atmospheric_refraction_correction(local_pressure, local_temp, topocentric_elevation_angle_wo_atmosphere, atmos_refract): # switch sets delta_e when the sun is below the horizon switch = topocentric_elevation_angle_wo_atmosphere >= -1.0 * ( 0.26667 + atmos_refract) delta_e = ((local_pressure / 1010.0) * (283.0 / (273.0 + local_temp)) * 1.02 / (60.0 * tan(deg2rad*( topocentric_elevation_angle_wo_atmosphere + 10.3 / (topocentric_elevation_angle_wo_atmosphere + 5.11))))) * switch return delta_e def topocentric_elevation_angle(topocentric_elevation_angle_without_atmosphere, atmospheric_refraction_correction): e = (topocentric_elevation_angle_without_atmosphere + atmospheric_refraction_correction) return e def topocentric_zenith_angle(topocentric_elevation_angle): theta = 90.0 - topocentric_elevation_angle return theta def topocentric_astronomers_azimuth(topocentric_local_hour_angle, topocentric_sun_declination, observer_latitude): num = sin(deg2rad*topocentric_local_hour_angle) denom = (cos(deg2rad*topocentric_local_hour_angle) * sin(deg2rad*observer_latitude) - tan(deg2rad*topocentric_sun_declination) * cos(deg2rad*observer_latitude)) gamma = degrees(atan2(num, denom)) return gamma % 360.0 def topocentric_azimuth_angle(topocentric_astronomers_azimuth): phi = topocentric_astronomers_azimuth + 180.0 return phi % 360.0 def sun_mean_longitude(julian_ephemeris_millennium): M = julian_ephemeris_millennium*(julian_ephemeris_millennium*( julian_ephemeris_millennium*(julian_ephemeris_millennium*( -5.0e-7*julian_ephemeris_millennium - 6.5359477124183e-5) + 2.00276381406341e-5) + 0.03032028) + 360007.6982779) + 280.4664567 return M #@jcompile('float64(float64, float64, float64, float64)', nopython=True) def equation_of_time(sun_mean_longitude, geocentric_sun_right_ascension, longitude_nutation, true_ecliptic_obliquity): term = cos(deg2rad*true_ecliptic_obliquity) E = (sun_mean_longitude - 0.0057183 - geocentric_sun_right_ascension + longitude_nutation * term) # limit between 0 and 360 E = E % 360 # convert to minutes E *= 4.0 greater = E > 20.0 less = E < -20.0 other = (E <= 20.0) & (E >= -20.0) E = greater * (E - 1440.0) + less * (E + 1440.0) + other * E return E def earthsun_distance(unixtime, delta_t): """Calculates the distance from the earth to the sun using the NREL SPA algorithm described in [1]. Parameters ---------- unixtime : numpy array Array of unix/epoch timestamps to calculate solar position for. Unixtime is the number of seconds since Jan. 1, 1970 00:00:00 UTC. A pandas.DatetimeIndex is easily converted using .astype(np.int64)/10**9 delta_t : float Difference between terrestrial time and UT. USNO has tables. Returns ------- R : array Earth-Sun distance in AU. References ---------- [1] Reda, I., Andreas, A., 2003. Solar position algorithm for solar radiation applications. Technical report: NREL/TP-560- 34302. Golden, USA, http://www.nrel.gov. """ jd = julian_day(unixtime) jde = julian_ephemeris_day(jd, delta_t) jce = julian_ephemeris_century(jde) jme = julian_ephemeris_millennium(jce) R = heliocentric_radius_vector(jme) return R def solar_position(unixtime, lat, lon, elev, pressure, temp, delta_t, atmos_refract, sst=False): """Calculate the solar position using the NREL SPA algorithm described in [1]. If numba is installed, the functions can be compiled and the code runs quickly. If not, the functions still evaluate but use numpy instead. Parameters ---------- unixtime : numpy array Array of unix/epoch timestamps to calculate solar position for. Unixtime is the number of seconds since Jan. 1, 1970 00:00:00 UTC. A pandas.DatetimeIndex is easily converted using .astype(np.int64)/10**9 lat : float Latitude to calculate solar position for lon : float Longitude to calculate solar position for elev : float Elevation of location in meters pressure : int or float avg. yearly pressure at location in millibars; used for atmospheric correction temp : int or float avg. yearly temperature at location in degrees C; used for atmospheric correction delta_t : float, optional If delta_t is None, uses spa.calculate_deltat using time.year and time.month from pandas.DatetimeIndex. For most simulations specifying delta_t is sufficient. Difference between terrestrial time and UT1. *Note: delta_t = None will break code using nrel_numba, this will be fixed in a future version. By default, use USNO historical data and predictions atmos_refrac : float, optional The approximate atmospheric refraction (in degrees) at sunrise and sunset. numthreads: int, optional, default None Number of threads to use for computation if numba>=0.17 is installed. sst : bool, default False If True, return only data needed for sunrise, sunset, and transit calculations. Returns ------- list with elements: apparent zenith, zenith, elevation, apparent_elevation, azimuth, equation_of_time References ---------- .. [1] I. Reda and A. Andreas, Solar position algorithm for solar radiation applications. Solar Energy, vol. 76, no. 5, pp. 577-589, 2004. .. [2] I. Reda and A. Andreas, Corrigendum to Solar position algorithm for solar radiation applications. Solar Energy, vol. 81, no. 6, p. 838, 2007. """ jd = julian_day(unixtime) jde = julian_ephemeris_day(jd, delta_t) jc = julian_century(jd) jce = julian_ephemeris_century(jde) jme = julian_ephemeris_millennium(jce) R = heliocentric_radius_vector(jme) L = heliocentric_longitude(jme) B = heliocentric_latitude(jme) Theta = geocentric_longitude(L) beta = geocentric_latitude(B) x0 = mean_elongation(jce) x1 = mean_anomaly_sun(jce) x2 = mean_anomaly_moon(jce) x3 = moon_argument_latitude(jce) x4 = moon_ascending_longitude(jce) delta_psi, delta_epsilon = longitude_obliquity_nutation(jce, x0, x1, x2, x3, x4) epsilon0 = mean_ecliptic_obliquity(jme) epsilon = true_ecliptic_obliquity(epsilon0, delta_epsilon) delta_tau = aberration_correction(R) lamd = apparent_sun_longitude(Theta, delta_psi, delta_tau) v0 = mean_sidereal_time(jd, jc) v = apparent_sidereal_time(v0, delta_psi, epsilon) alpha = geocentric_sun_right_ascension(lamd, epsilon, beta) delta = geocentric_sun_declination(lamd, epsilon, beta) if sst: # numba: delete return v, alpha, delta # numba: delete m = sun_mean_longitude(jme) eot = equation_of_time(m, alpha, delta_psi, epsilon) H = local_hour_angle(v, lon, alpha) xi = equatorial_horizontal_parallax(R) u = uterm(lat) x = xterm(u, lat, elev) y = yterm(u, lat, elev) delta_alpha = parallax_sun_right_ascension(x, xi, H, delta) delta_prime = topocentric_sun_declination(delta, x, y, xi, delta_alpha, H) H_prime = topocentric_local_hour_angle(H, delta_alpha) e0 = topocentric_elevation_angle_without_atmosphere(lat, delta_prime, H_prime) delta_e = atmospheric_refraction_correction(pressure, temp, e0, atmos_refract) e = topocentric_elevation_angle(e0, delta_e) theta = topocentric_zenith_angle(e) theta0 = topocentric_zenith_angle(e0) gamma = topocentric_astronomers_azimuth(H_prime, delta_prime, lat) phi = topocentric_azimuth_angle(gamma) return [theta, theta0, e, e0, phi, eot] try: if IS_NUMBA: # type: ignore try: import numpy as np except: pass import numba import numpy as np import threading # This is 3x slower without nogil @numba.njit(nogil=True) def solar_position_loop(unixtime, loc_args, out): """Loop through the time array and calculate the solar position.""" lat = loc_args[0] lon = loc_args[1] elev = loc_args[2] pressure = loc_args[3] temp = loc_args[4] delta_t = loc_args[5] atmos_refract = loc_args[6] sst = loc_args[7] esd = loc_args[8] for i in range(len(unixtime)): utime = unixtime[i] jd = julian_day(utime) jde = julian_ephemeris_day(jd, delta_t) jc = julian_century(jd) jce = julian_ephemeris_century(jde) jme = julian_ephemeris_millennium(jce) R = heliocentric_radius_vector(jme) L = heliocentric_longitude(jme) B = heliocentric_latitude(jme) Theta = geocentric_longitude(L) beta = geocentric_latitude(B) x0 = mean_elongation(jce) x1 = mean_anomaly_sun(jce) x2 = mean_anomaly_moon(jce) x3 = moon_argument_latitude(jce) x4 = moon_ascending_longitude(jce) # delta_psi = longitude_nutation(jce, x0, x1, x2, x3, x4) # delta_epsilon = obliquity_nutation(jce, x0, x1, x2, x3, x4) delta_psi, delta_epsilon = longitude_obliquity_nutation(jce, x0, x1, x2, x3, x4) epsilon0 = mean_ecliptic_obliquity(jme) epsilon = true_ecliptic_obliquity(epsilon0, delta_epsilon) delta_tau = aberration_correction(R) lamd = apparent_sun_longitude(Theta, delta_psi, delta_tau) v0 = mean_sidereal_time(jd, jc) v = apparent_sidereal_time(v0, delta_psi, epsilon) alpha = geocentric_sun_right_ascension(lamd, epsilon, beta) delta = geocentric_sun_declination(lamd, epsilon, beta) # if sst: # out[0, i] = v # out[1, i] = alpha # out[2, i] = delta # continue m = sun_mean_longitude(jme) eot = equation_of_time(m, alpha, delta_psi, epsilon) H = local_hour_angle(v, lon, alpha) xi = equatorial_horizontal_parallax(R) u = uterm(lat) x = xterm(u, lat, elev) y = yterm(u, lat, elev) delta_alpha = parallax_sun_right_ascension(x, xi, H, delta) delta_prime = topocentric_sun_declination(delta, x, y, xi, delta_alpha, H) H_prime = topocentric_local_hour_angle(H, delta_alpha) e0 = topocentric_elevation_angle_without_atmosphere(lat, delta_prime, H_prime) delta_e = atmospheric_refraction_correction(pressure, temp, e0, atmos_refract) e = topocentric_elevation_angle(e0, delta_e) theta = topocentric_zenith_angle(e) theta0 = topocentric_zenith_angle(e0) gamma = topocentric_astronomers_azimuth(H_prime, delta_prime, lat) phi = topocentric_azimuth_angle(gamma) out[0, i] = theta out[1, i] = theta0 out[2, i] = e out[3, i] = e0 out[4, i] = phi out[5, i] = eot def solar_position_numba(unixtime, lat, lon, elev, pressure, temp, delta_t, atmos_refract, numthreads, sst=False, esd=False): """Calculate the solar position using the numba compiled functions and multiple threads. Very slow if functions are not numba compiled. """ # these args are the same for each thread loc_args = np.array([lat, lon, elev, pressure, temp, delta_t, atmos_refract, sst, esd]) # construct dims x ulength array to put the results in ulength = unixtime.shape[0] if sst: dims = 3 elif esd: dims = 1 else: dims = 6 result = np.empty((dims, ulength), dtype=np.float64) if unixtime.dtype != np.float64: unixtime = unixtime.astype(np.float64) if ulength < numthreads: warnings.warn('The number of threads is more than the length of ' 'the time array. Only using %s threads.' %(length)) numthreads = ulength if numthreads <= 1: solar_position_loop(unixtime, loc_args, result) return result # split the input and output arrays into numthreads chunks split0 = np.array_split(unixtime, numthreads) split2 = np.array_split(result, numthreads, axis=1) chunks = [[a0, loc_args, split2[i]] for i, a0 in enumerate(split0)] # Spawn one thread per chunk threads = [threading.Thread(target=solar_position_loop, args=chunk) for chunk in chunks] for thread in threads: thread.start() for thread in threads: thread.join() return result except: pass def transit_sunrise_sunset(dates, lat, lon, delta_t): """Calculate the sun transit, sunrise, and sunset for a set of dates at a given location. Parameters ---------- dates : array Numpy array of ints/floats corresponding to the Unix time for the dates of interest, must be midnight UTC (00:00+00:00) on the day of interest. lat : float Latitude of location to perform calculation for lon : float Longitude of location delta_t : float Difference between terrestrial time and UT. USNO has tables. Returns ------- tuple : (transit, sunrise, sunset) localized to UTC >>> transit_sunrise_sunset(1523836800, 51.0486, -114.07, 70.68302220312503) (1523907360.3863413, 1523882341.570479, 1523932345.7781625) """ condition = (dates % 86400) != 0.0 if condition: raise ValueError('Input dates must be at 00:00 UTC') utday = (dates // 86400) * 86400 ttday0 = utday - delta_t ttdayn1 = ttday0 - 86400.0 ttdayp1 = ttday0 + 86400.0 # index 0 is v, 1 is alpha, 2 is delta utday_res = solar_position(utday, 0, 0, 0, 0, 0, delta_t, 0, sst=True) v = utday_res[0] ttday0_res = solar_position(ttday0, 0, 0, 0, 0, 0, delta_t, 0, sst=True) ttdayn1_res = solar_position(ttdayn1, 0, 0, 0, 0, 0, delta_t, 0, sst=True) ttdayp1_res = solar_position(ttdayp1, 0, 0, 0, 0, 0, delta_t, 0, sst=True) m0 = (ttday0_res[1] - lon - v) / 360 cos_arg = ((-0.014543315936696236 - sin(radians(lat)) # sin(radians(-0.8333)) = -0.0145... * sin(radians(ttday0_res[2]))) / (cos(radians(lat)) * cos(radians(ttday0_res[2])))) if abs(cos_arg) > 1: cos_arg = nan H0 = degrees(acos(cos_arg)) % 180 m = [0.0]*3 m[0] = m0 % 1 m[1] = (m[0] - H0 / 360.0) m[2] = (m[0] + H0 / 360.0) # need to account for fractions of day that may be the next or previous # day in UTC add_a_day = m[2] >= 1 sub_a_day = m[1] < 0 m[1] = m[1] % 1 m[2] = m[2] % 1 vs = [0.0]*3 for i in range(3): vs[i] = v + 360.985647*m[i] n = [0.0]*3 for i in range(3): n[i] = m[i] + delta_t / 86400.0 a = ttday0_res[1] - ttdayn1_res[1] if abs(a) > 2: a = a %1 ap = ttday0_res[2] - ttdayn1_res[2] if (abs(ap) > 2): ap = ap % 1 b = ttdayp1_res[1] - ttday0_res[1] if (abs(b) > 2): b = b % 1 bp = ttdayp1_res[2] - ttday0_res[2] if abs(bp) > 2: bp = bp % 1 c = b - a cp = bp - ap alpha_prime = [0.0]*3 delta_prime = [0.0]*3 Hp = [0.0]*3 for i in range(3): alpha_prime[i] = ttday0_res[1] + (n[i] * (a + b + c * n[i]))*0.5 delta_prime[i] = ttday0_res[2] + (n[i] * (ap + bp + cp * n[i]))*0.5 Hp[i] = (vs[i] + lon - alpha_prime[i]) % 360 if Hp[i] >= 180.0: Hp[i] = Hp[i] - 360.0 #alpha_prime = ttday0_res[1] + (n * (a + b + c * n)) / 2 # this is vect #delta_prime = ttday0_res[2] + (n * (ap + bp + cp * n)) / 2 # this is vect #Hp = (vs + lon - alpha_prime) % 360 #Hp[Hp >= 180] = Hp[Hp >= 180] - 360 x1 = sin(radians(lat)) x2 = cos(radians(lat)) h = [0.0]*3 for i in range(3): h[i] = degrees(asin(x1*sin(radians(delta_prime[i])) + x2 * cos(radians(delta_prime[i])) * cos(radians(Hp[i])))) T = float((m[0] - Hp[0] / 360.0) * 86400.0) R = float((m[1] + (h[1] + 0.8333) / (360.0 * cos(radians(delta_prime[1])) * cos(radians(lat)) * sin(radians(Hp[1])))) * 86400.0) S = float((m[2] + (h[2] + 0.8333) / (360.0 * cos(radians(delta_prime[2])) * cos(radians(lat)) * sin(radians(Hp[2])))) * 86400.0) if add_a_day: S += 86400.0 if sub_a_day: R -= 86400.0 transit = T + utday sunrise = R + utday sunset = S + utday return transit, sunrise, sunset def calculate_deltat(year, month): y = year + (month - 0.5)/12 if (2005 <= year) & (year < 2050): t1 = (y-2000.0) deltat = (62.92+0.32217*t1 + 0.005589*t1*t1) elif (1986 <= year) & (year < 2005): t1 = y - 2000.0 deltat = (63.86+0.3345*t1 - 0.060374*t1**2 + 0.0017275*t1**3 + 0.000651814*t1**4 + 0.00002373599*t1**5) elif (2050 <= year) & (year < 2150): deltat = (-20+32*((y-1820)/100)**2 - 0.5628*(2150-y)) elif year < -500.0: deltat = -20.0 + 32*(0.01*(y-1820.0))**2 elif (-500 <= year) & (year < 500): t1 = y/100 deltat = (10583.6-1014.41*(y/100) + 33.78311*(y/100)**2 - 5.952053*(y/100)**3 - 0.1798452*(y/100)**4 + 0.022174192*(y/100)**5 + 0.0090316521*(y/100)**6) elif (500 <= year) & (year < 1600): t1 = (y-1000)/100 deltat = (1574.2-556.01*((y-1000)/100) + 71.23472*((y-1000)/100)**2 + 0.319781*((y-1000)/100)**3 - 0.8503463*((y-1000)/100)**4 - 0.005050998*((y-1000)/100)**5 + 0.0083572073*((y-1000)/100)**6) elif (1600 <= year) & (year < 1700): t1 = (y-1600.0) deltat = (120-0.9808*(y-1600) - 0.01532*(y-1600)**2 + (y-1600)**3/7129) elif (1700 <= year) & (year < 1800): t1 = (y - 1700.0) deltat = (8.83+0.1603*(y-1700) - 0.0059285*(y-1700)**2 + 0.00013336*(y-1700)**3 - (y-1700)**4/1174000) elif (1800 <= year) & (year < 1860): t1 = y - 1800.0 deltat = (13.72-0.332447*(y-1800) + 0.0068612*(y-1800)**2 + 0.0041116*(y-1800)**3 - 0.00037436*(y-1800)**4 + 0.0000121272*(y-1800)**5 - 0.0000001699*(y-1800)**6 + 0.000000000875*(y-1800)**7) elif (1860 <= year) & (year < 1900): t1 = y-1860.0 deltat = (7.62+0.5737*(y-1860) - 0.251754*(y-1860)**2 + 0.01680668*(y-1860)**3 - 0.0004473624*(y-1860)**4 + (y-1860)**5/233174) elif (1900 <= year) & (year < 1920): t1 = y - 1900.0 deltat = (-2.79+1.494119*(y-1900) - 0.0598939*(y-1900)**2 + 0.0061966*(y-1900)**3 - 0.000197*(y-1900)**4) elif (1920 <= year) & (year < 1941): t1 = y - 1920.0 deltat = (21.20+0.84493*(y-1920) - 0.076100*(y-1920)**2 + 0.0020936*(y-1920)**3) elif (1941 <= year) & (year < 1961): t1 = y - 1950.0 deltat = (29.07+0.407*(y-1950) - (y-1950)**2/233 + (y-1950)**3/2547) elif (1961 <= year) & (year < 1986): t1 = y-1975 deltat = (45.45+1.067*(y-1975) - (y-1975)**2/260 - (y-1975)**3/718) elif year >= 2150: deltat = -20+32*((y-1820)/100)**2 return deltatfluids-1.0.22/fluids/piping.pyi0000644000175000017500000000221014302004506015674 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( List, Optional, Tuple, Union, ) def Di_lookup( Di: float, NPSes: List[float], Dis: List[float], Dos: List[float], ts: List[float] ) -> Tuple[int, float, float, float]: ... def Do_lookup( Do: float, NPSes: List[float], Dis: List[float], Dos: List[float], ts: List[float] ) -> Union[Tuple[int, float, int, float], Tuple[int, float, float, float]]: ... def NPS_lookup( NPS: float, NPSes: List[float], Dis: List[float], Dos: List[float], ts: List[float] ) -> Tuple[int, float, float, float]: ... def erosional_velocity(rho: int, C: int) -> float: ... def gauge_from_t(t: float, SI: bool = ..., schedule: str = ...) -> float: ... def nearest_pipe( Do: Optional[float] = ..., Di: Optional[float] = ..., NPS: Optional[int] = ..., schedule: Union[str, int, float] = ... ) -> Tuple[int, float, float, float]: ... def t_from_gauge(gauge: float, SI: bool = ..., schedule: str = ...) -> float: ... __all__: List[str]fluids-1.0.22/fluids/atmosphere.py0000644000175000017500000014270014302004506016415 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains models of earth's atmosphere. Models are empirical and based on extensive research, primarily by NASA. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Atmospheres ----------- .. autoclass:: ATMOSPHERE_1976 :members: .. autoclass:: ATMOSPHERE_NRLMSISE00 :members: .. autofunction:: airmass Solar Radiation and Position ---------------------------- .. autofunction:: solar_position .. autofunction:: solar_irradiation .. autofunction:: sunrise_sunset .. autofunction:: earthsun_distance Wind Models (requires Fortran compiler!) ---------------------------------------- .. autofunction:: hwm93 .. autofunction:: hwm14 """ from __future__ import division from math import sqrt, exp, cos, radians, pi, sin import time import os from fluids.constants import N_A, R, au from fluids.numerics import brenth, quad, numpy as np try: from datetime import datetime, timedelta except: pass __all__ = ['ATMOSPHERE_1976', 'ATMOSPHERE_NRLMSISE00', 'hwm93', 'hwm14', 'earthsun_distance', 'solar_position', 'solar_irradiation', 'sunrise_sunset'] no_gfortran_error = '''This function uses f2py to encapsulate a fortran \ routine. However, f2py did not detect one on installation and could not compile \ this routine. ''' try: # Needed by hwm14 os.environ["HWMPATH"] = os.path.join(os.path.dirname(__file__), 'optional') except: pass H_std = [0.0, 11E3, 20E3, 32E3, 47E3, 51E3, 71E3, 84852.0] T_grad = [-6.5E-3, 0.0, 1E-3, 2.8E-3, 0.0, -2.8E-3, -2E-3, 0.0] T_std = [288.15, 216.65, 216.65, 228.65, 270.65, 270.65, 214.65, 186.946] P_std = [101325, 22632.06397346291, 5474.8886696777745, 868.0186847552279, 110.90630555496608, 66.93887311868738, 3.956420428040732, 0.3733835899762159] r0 = 6356766.0 P0 = 101325.0 M0 = 28.9644 g0 = 9.80665 gamma = 1.400 def H_for_P_ATMOSPHERE_1976_err(H, P1): return ATMOSPHERE_1976(H, 0.0).P - P1 def to_int_dP_ATMOSPHERE_1976(Z, dT): atm = ATMOSPHERE_1976(Z, dT) return atm.g*atm.rho class ATMOSPHERE_1976(object): r'''US Standard Atmosphere 1976 class, which calculates `T`, `P`, `rho`, `v_sonic`, `mu`, `k`, and `g` as a function of altitude above sea level. Designed to provide reasonable results up to an elevation of 86,000 m (0.4 Pa). The model is also valid under sea level, to -610 meters. Parameters ---------- Z : float Elevation, [m] dT : float, optional Temperature difference from standard conditions used in determining the properties of the atmosphere, [K] Attributes ---------- T : float Temperature of atmosphere at specified conditions, [K] P : float Pressure of atmosphere at specified conditions, [Pa] rho : float Mass density of atmosphere at specified conditions [kg/m^3] H : float Geopotential height, [m] g : float Acceleration due to gravity, [m/s^2] mu : float Viscosity of atmosphere at specified conditions, [Pa*s] k : float Thermal conductivity of atmosphere at specified conditions, [W/m/K] v_sonic : float Speed of sound of atmosphere at specified conditions, [m/s] Examples -------- >>> five_km = ATMOSPHERE_1976(5000) >>> five_km.P, five_km.rho, five_km.mu (54048.28614576141, 0.7364284207799743, 1.628248135362207e-05) >>> five_km.k, five_km.g, five_km.v_sonic (0.02273190295142526, 9.791241076982665, 320.5455196704035) Notes ----- Up to 32 km, the International Standard Atmosphere (ISA) and World Meteorological Organization (WMO) standard atmosphere are identical. This is a revision of the US 1962 atmosphere. References ---------- .. [1] NOAA, NASA, and USAF. "U.S. Standard Atmosphere, 1976" October 15, 1976. http://ntrs.nasa.gov/search.jsp?R=19770009539. .. [2] "ISO 2533:1975 - Standard Atmosphere." ISO. http://www.iso.org/iso/catalogue_detail.htm?csnumber=7472. .. [3] Yager, Robert J. "Calculating Atmospheric Conditions (Temperature, Pressure, Air Density, and Speed of Sound) Using C++," June 2013. http://www.dtic.mil/cgi-bin/GetTRDoc?AD=ADA588839 ''' def __init__(self, Z, dT=0.0): self.Z = Z self.dT = dT self.H = r0*Z/(r0+Z) i = self._get_ind_from_H(self.H) self.T_layer = T_std[i] self.T_increase = T_grad[i] self.P_layer = P_std[i] self.H_layer = H_std[i] self.H_above_layer = self.H - self.H_layer self.T = self.T_layer + self.T_increase*self.H_above_layer R = 8314.32 if self.T_increase == 0.0: self.P = self.P_layer*exp(-g0*M0*(self.H_above_layer)/(R*self.T_layer)) else: self.P = self.P_layer*(self.T_layer/self.T)**(g0*M0/(R*self.T_increase)) # Affects only the following properties self.T += dT self.rho = self.density(self.T, self.P) self.v_sonic = self.sonic_velocity(self.T) self.mu = self.viscosity(self.T) self.k = self.thermal_conductivity(self.T) self.g = self.gravity(self.Z) @staticmethod def _get_ind_from_H(H): r'''Method defined in the US Standard Atmosphere 1976 for determining the index of the layer a specified elevation is above. Levels are 0, 11E3, 20E3, 32E3, 47E3, 51E3, 71E3, 84852 meters respectively. ''' if H <= 0.0: return 0 for ind, Hi in enumerate(H_std): if Hi >= H : return ind - 1 return 7 # case for > 84852 m. @staticmethod def thermal_conductivity(T): r'''Method defined in the US Standard Atmosphere 1976 for calculating thermal conductivity of air as a function of `T` only. .. math:: k_g = \frac{2.64638\times10^{-3}T^{1.5}} {T + 245.4\cdot 10^{-12./T}} Parameters ---------- T : float Temperature, [K] Returns ------- kg : float Thermal conductivity, [W/m/K] ''' # 10**(-12./T) = exp(-12*log(10)/T) = -27.63102111... return 2.64638E-3*T*sqrt(T)/(T + 245.4*exp(-27.63102111592855/T)) @staticmethod def viscosity(T): r'''Method defined in the US Standard Atmosphere 1976 for calculating viscosity of air as a function of `T` only. .. math:: \mu_g = \frac{1.458\times10^{-6}T^{1.5}}{T+110.4} Parameters ---------- T : float Temperature, [K] Returns ------- mug : float Viscosity, [Pa*s] ''' return 1.458E-6*T*sqrt(T)/(T + 110.4) @staticmethod def density(T, P): r'''Method defined in the US Standard Atmosphere 1976 for calculating density of air as a function of `T` and `P`. MW is defined as 28.9644 g/mol, and R as 8314.32 J/kmol/K .. math:: \rho_g = \frac{P\cdot MW}{T\cdot R\cdot 1000} Parameters ---------- T : float Temperature, [K] P : float Pressure, [Pa] Returns ------- rho : float Mass density, [kg/m^3] ''' # 0.00348367635597379 = M0/R return P*0.00348367635597379/T @staticmethod def sonic_velocity(T): r'''Method defined in the US Standard Atmosphere 1976 for calculating the speed of sound in air as a function of `T` only. .. math:: c = \left(\frac{\gamma R T}{MW}\right)^{0.5} Parameters ---------- T : float Temperature, [K] Returns ------- c : float Speed of sound, [m/s] ''' # 401.87... = gamma*R/MO return sqrt(401.87430086589046*T) @staticmethod def gravity(Z): r'''Method defined in the US Standard Atmosphere 1976 for calculating the gravitational acceleration above earth as a function of elevation only. .. math:: g = g_0\left(\frac{r_0}{r_0+Z}\right)^2 Parameters ---------- Z : float Elevation above sea level, [m] Returns ------- g : float Acceleration due to gravity, [m/s^2] ''' x0 = (r0/(r0+Z)) return g0*x0*x0 @staticmethod def pressure_integral(T1, P1, dH): r'''Method to compute an integral of the pressure differential of an elevation difference with a base elevation defined by temperature `T1` and pressure `P1`. This is similar to subtracting the pressures at two different elevations, except it allows for local conditions (temperature and pressure) to be taken into account. This is useful for e.x. evaluating the pressure difference between the top and bottom of a natural draft cooling tower. Parameters ---------- T1 : float Temperature at the lower elevation condition, [K] P1 : float Pressure at the lower elevation condition, [Pa] dH : float Elevation difference for which to evaluate the pressure difference, [m] Returns ------- delta_P : float Pressure difference between the elevations, [Pa] ''' # Compute the elevation to obtain the pressure specified H_ref = brenth(H_for_P_ATMOSPHERE_1976_err, -610.0, 86000.0, args=(P1,)) # Compute the temperature delta dT = T1 - ATMOSPHERE_1976(H_ref, 0.0).T return quad(to_int_dP_ATMOSPHERE_1976, H_ref, H_ref+dH, args=(dT,))[0] class ATMOSPHERE_NRLMSISE00(object): r'''NRLMSISE 00 model for calculating temperature and density of gases in the atmosphere, from ground level to 1000 km, as a function of time of year, longitude and latitude, solar activity and earth's geomagnetic disturbance. NRLMSISE stands for the `US Naval Research Laboratory Mass Spectrometer and Incoherent Scatter Radar Exosphere` model, released in 2001; see [1]_ for details. Parameters ---------- Z : float Elevation, [m] latitude : float, optional Latitude, between -90 and 90 [degrees] longitude : float, optional Longitude, between -180 and 180 or 0 and 360, [degrees] day : float, optional Day of year, 0-366 [day] seconds : float, optional Seconds since start of day, in UT1 time; using UTC provides no loss in accuracy [s] f107 : float, optional Daily average 10.7 cm solar flux measurement of the strength of solar emissions on the 100 MHz band centered on 2800 MHz, averaged hourly; in sfu units, which are multiples of 10^-22 W/m^2/Hz; use 150 as a default [10^-22 W/m^2/Hz] f107_avg : float, optional 81-day sfu average; centered on specified day if possible, otherwise use the previous days [10^-22 W/m^2/Hz] geomagnetic_disturbance_indices : list of float, optional List of the 7 following `Ap` indexes also known as planetary magnetic indexes. Has a negligible effect on the calculation. 4 is the default value often used for each of these values, [-] * Average daily `Ap`. * 3-hour average `Ap` centered on the current time. * 3-hour average `Ap` before the current time. * 6-hour average `Ap` before the current time. * 9-hour average `Ap` before the current time. * Average `Ap` from 12 to 33 hours before the current time, based on eight 3-hour average `Ap` values. * Average `Ap` from 36 to 57 hours before the current time, based on eight 3-hour average `Ap` values. Attributes ---------- rho : float Mass density [kg/m^3] T : float Temperature, [K] P : float Pressure, calculated with ideal gas law [Pa] He_density : float Density of helium atoms [count/m^3] O_density : float Density of monatomic oxygen [count/m^3] N2_density : float Density of nitrogen molecules [count/m^3] O2_density : float Density of oxygen molecules [count/m^3] Ar_density : float Density of Argon atoms [count/m^3] H_density : float Density of hydrogen atoms [count/m^3] N_density : float Density of monatomic nitrogen [count/m^3] O_anomalous_density : float Density of `anomalous` oxygen; see [1]_ for details [count/m^3] particle_density : float Total density of molecules [count/m^3] components : list[str] List of species making up the atmosphere [-] zs : list[float] Mole fractions of each molecule in the atmosphere, in order of `components` [-] Examples -------- >>> atmosphere = ATMOSPHERE_NRLMSISE00(1E3, 45, 45, 150) >>> atmosphere.T, atmosphere.rho (285.5440860623, 1.10190620264) Notes ----- No full description has been published of this model; it has been defined by its implementation only. It was written in FORTRAN, and is accessible at ftp://hanna.ccmc.gsfc.nasa.gov/pub/modelweb/atmospheric/msis/nrlmsise00/ A C port of the model by Dominik Brodowskihas become popular, and is available on his website: http://www.brodo.de/space/nrlmsise/. In 2013 Joshua Milas ported the C port to Python. This is an interface to his excellent port. It is a 1000-sloc model, and has been rigorously tested against the C version, and the online calculation tool available at [3]_ for parametric inputs of latitude, longitude, altitude, time of day and day of year. This model is based on measurements other than gravity; it does not provide a calculation method for `g`. It does not provide transport properties. This model takes on the order of ~2 ms. References ---------- .. [1] Picone, J. M., A. E. Hedin, D. P. Drob, and A. C. Aikin. "NRLMSISE-00 Empirical Model of the Atmosphere: Statistical Comparisons and Scientific Issues." Journal of Geophysical Research: Space Physics 107, no. A12 (December 1, 2002): 1468. doi:10.1029/2002JA009430. .. [2] Tapping, K. F. "The 10.7 Cm Solar Radio Flux (F10.7)." Space Weather 11, no. 7 (July 1, 2013): 394-406. doi:10.1002/swe.20064. .. [3] Natalia Papitashvili. "NRLMSISE-00 Atmosphere Model." Accessed November 27, 2016. http://ccmc.gsfc.nasa.gov/modelweb/models/nrlmsise00.php. ''' components = ['N2', 'O2', 'Ar', 'He', 'O', 'H', 'N'] atrrs = ['N2_density', 'O2_density', 'Ar_density', 'He_density', 'O_density', 'H_density', 'N_density'] MWs = [28.0134, 31.9988, 39.948, 4.002602, 15.9994, 1.00794, 14.0067] def __init__(self, Z, latitude=0.0, longitude=0.0, day=0, seconds=0.0, f107=150., f107_avg=150., geomagnetic_disturbance_indices=None): self.Z = Z self.latitude = latitude self.longitude = longitude self.day = day self.seconds = seconds self.f107 = f107 self.f107_avg = f107_avg self.geomagnetic_disturbance_indices = geomagnetic_disturbance_indices from fluids.nrlmsise00 import gtd7, nrlmsise_output, nrlmsise_input, nrlmsise_flags, ap_array alt = Z*1e-3 output_obj = nrlmsise_output() input_obj = nrlmsise_input() flags = nrlmsise_flags() flags.switches = [0] + [1]*23 if geomagnetic_disturbance_indices: aph = ap_array() aph.a = geomagnetic_disturbance_indices flags.switches[9] = -1 input_obj.ap = geomagnetic_disturbance_indices[0] input_obj.ap_a = aph input_obj.doy = day input_obj.year = 0 input_obj.sec = seconds input_obj.alt = alt input_obj.g_lat = latitude input_obj.g_long = longitude input_obj.lst = seconds/3600. + longitude/15. input_obj.f107A = f107_avg input_obj.f107 = f107 gtd7(input_obj, flags, output_obj) self.He_density = output_obj.d[0]*1E6 # 1/cm^3 to 1/m^3 self.O_density = output_obj.d[1]*1E6 # 1/cm^3 to 1/m^3 self.N2_density = output_obj.d[2]*1E6 # 1/cm^3 to 1/m^3 self.O2_density = output_obj.d[3]*1E6 # 1/cm^3 to 1/m^3 self.Ar_density = output_obj.d[4]*1E6 # 1/cm^3 to 1/m^3 self.rho = output_obj.d[5]*1000 # gram/cm^3 to kg/m^3 self.H_density = output_obj.d[6]*1E6 # 1/cm^3 to 1/m^3 self.N_density = output_obj.d[7]*1E6 # 1/cm^3 to 1/m^3 self.O_anomalous_density = output_obj.d[8]*1E6 # 1/cm^3 to 1/m^3 self.T_exospheric = output_obj.t[0] self.T = output_obj.t[1] # Calculate pressure with the ideal gas law PV = nRT with V = 1 m^3 self.P = sum([getattr(self, a) for a in self.atrrs])*self.T*R/N_A # Calculate mass density with known MWs self.rho_calculated = sum([getattr(self, a)*MW for c, a, MW in zip(self.components, self.atrrs, self.MWs)])/(1000.*N_A) self.particle_density = sum(getattr(self, a) for a in self.atrrs) self.zs = [getattr(self, a)/self.particle_density for a in self.atrrs] def hwm93(Z, latitude=0, longitude=0, day=0, seconds=0, f107=150., f107_avg=150., geomagnetic_disturbance_index=4): r'''Horizontal Wind Model 1993, for calculating wind velocity in the atmosphere as a function of time of year, longitude and latitude, solar activity and earth's geomagnetic disturbance. The model is described across the publications [1]_, [2]_, and [3]_. Parameters ---------- Z : float Elevation, [m] latitude : float, optional Latitude, between -90 and 90 [degrees] longitude : float, optional Longitude, between -180 and 180 or 0 and 360, [degrees] day : float, optional Day of year, 0-366 [day] seconds : float, optional Seconds since start of day, in UT1 time; using UTC provides no loss in accuracy [s] f107 : float, optional Daily average 10.7 cm solar flux measurement of the strength of solar emissions on the 100 MHz band centered on 2800 MHz, averaged hourly; in sfu units, which are multiples of 10^-22 W/m^2/Hz; use 150 as a default [W/m^2/Hz] f107_avg : float, optional 81-day sfu average; centered on specified day if possible, otherwise use the previous days [W/m^2/Hz] geomagnetic_disturbance_index : float, optional Average daily `Ap` or also known as planetary magnetic index. Returns ------- v_north : float Wind velocity, meridional (Northward) [m/s] v_east : float Wind velocity, zonal (Eastward) [m/s] Examples -------- >>> hwm93(5E5, 45, 50, 365) # doctest: +SKIP (-73.00312042236328, 0.1485661268234253) Notes ----- No full description has been published of this model; it has been defined by its implementation only. It was written in FORTRAN, and is accessible at ftp://hanna.ccmc.gsfc.nasa.gov/pub/modelweb/atmospheric/hwm93/. F2PY auto-compilation support is not yet currently supported. To compile this file, run the following command in a shell after navigating to $FLUIDSPATH/fluids/optional/. This should generate the file hwm93.so in that directory. .. code-block:: bash f2py -c hwm93.pyf hwm93.for --f77flags="-std=legacy" If the module is not compiled, an import error will be raised. References ---------- .. [1] Hedin, A. E., N. W. Spencer, and T. L. Killeen. "Empirical Global Model of Upper Thermosphere Winds Based on Atmosphere and Dynamics Explorer Satellite Data." Journal of Geophysical Research: Space Physics 93, no. A9 (September 1, 1988): 9959-78. doi:10.1029/JA093iA09p09959. .. [2] Hedin, A. E., M. A. Biondi, R. G. Burnside, G. Hernandez, R. M. Johnson, T. L. Killeen, C. Mazaudier, et al. "Revised Global Model of Thermosphere Winds Using Satellite and Ground-Based Observations." Journal of Geophysical Research: Space Physics 96, no. A5 (May 1, 1991): 7657-88. doi:10.1029/91JA00251. .. [3] Hedin, A. E., E. L. Fleming, A. H. Manson, F. J. Schmidlin, S. K. Avery, R. R. Clark, S. J. Franke, et al. "Empirical Wind Model for the Upper, Middle and Lower Atmosphere." Journal of Atmospheric and Terrestrial Physics 58, no. 13 (September 1996): 1421-47. doi:10.1016/0021-9169(95)00122-0. ''' try: from fluids.optional.hwm93 import gws5 except: # pragma: no cover raise ImportError(no_gfortran_error) slt_hour = seconds/3600. + longitude/15. ans = gws5(day, seconds, Z/1000., latitude, longitude, slt_hour, f107, f107_avg, geomagnetic_disturbance_index) return tuple(ans.tolist()) def hwm14(Z, latitude=0, longitude=0, day=0, seconds=0, geomagnetic_disturbance_index=4): r'''Horizontal Wind Model 2014, for calculating wind velocity in the atmosphere as a function of time of year, longitude and latitude, and earth's geomagnetic disturbance. The model is described in [1]_. The model no longer accounts for solar flux. Parameters ---------- Z : float Elevation, [m] latitude : float, optional Latitude, between -90 and 90 [degrees] longitude : float, optional Longitude, between -180 and 180 or 0 and 360, [degrees] day : float, optional Day of year, 0-366 [day] seconds : float, optional Seconds since start of day, in UT1 time; using UTC provides no loss in accuracy [s] geomagnetic_disturbance_index : float, optional Average daily `Ap` or also known as planetary magnetic index. Returns ------- v_north : float Wind velocity, meridional (Northward) [m/s] v_east : float Wind velocity, zonal (Eastward) [m/s] Examples -------- >>> hwm14(5E5, 45, 50, 365) # doctest: +SKIP (-38.64341354370117, 12.871272087097168) Notes ----- No full description has been published of this model; it has been defined by its implementation only. It was written in FORTRAN, and is accessible at http://onlinelibrary.wiley.com/store/10.1002/2014EA000089/asset/supinfo/ess224-sup-0002-supinfo.tgz?v=1&s=2a957ba70b7cf9dd0612d9430076297c3634ea75. F2PY auto-compilation support is not yet currently supported. To compile this file, run the following commands in a shell after navigating to $FLUIDSPATH/fluids/optional/. This should generate the file hwm14.so in that directory. Generate a .pyf signature file: .. code-block:: bash f2py -m hwm14 -h hwm14.pyf hwm14.f90 Compile the interface: .. code-block:: bash f2py -c hwm14.pyf hwm14.f90 If the module is not compiled, an import error will be raised. No patches were necessary to either the generated pyf or hwm14.f90 file, as the authors of [1]_ have made it F2PY compatible. Developed using 73 million data points taken by 44 instruments over 60 years. References ---------- .. [1] Drob, Douglas P., John T. Emmert, John W. Meriwether, Jonathan J. Makela, Eelco Doornbos, Mark Conde, Gonzalo Hernandez, et al. "An Update to the Horizontal Wind Model (HWM): The Quiet Time Thermosphere." Earth and Space Science 2, no. 7 (July 1, 2015): 2014EA000089. doi:10.1002/2014EA000089. ''' # Needed by hwm14 os.environ["HWMPATH"] = os.path.join(os.path.dirname(__file__), 'optional') try: try: from fluids.optional import hwm14 except: import optional.hwm14 except: # pragma: no cover raise ImportError(no_gfortran_error) ans = hwm14.hwm14(day, seconds, Z*1e-3, latitude, longitude, 0, 0, 0, np.array([np.nan, geomagnetic_disturbance_index])) return tuple(ans.tolist()) def to_int_airmass(Z, c1, c2, angle_term, R_planet_inv, func): rho = func(Z) t1 = c2 - rho*c1 x0 = angle_term/(1.0 + Z*R_planet_inv) t2 = x0*x0 t3 = 1.0/sqrt(1.0 - t1*t2) return rho*t3 def airmass(func, angle, H_max=86400.0, R_planet=6.371229E6, RI=1.000276): r'''Calculates mass of air per square meter in the atmosphere using a provided atmospheric model. The lowest air mass is calculated straight up; as the angle is lowered to nearer and nearer the horizon, the air mass increases, and can approach 40x or more the minimum airmass. .. math:: m(\gamma) = \int_0^\infty \rho \left\{1 - \left[1 + 2(\text{RI}-1) (1-\rho/\rho_0)\right] \left[\frac{\cos \gamma}{(1+h/R)}\right]^2\right\}^{-1/2} dH Parameters ---------- func : float Function which returns the density of the atmosphere as a function of elevation angle : float Degrees above the horizon (90 = straight up), [degrees] H_max : float, optional Maximum height to compute the integration up to before the contribution of density becomes negligible, [m] R_planet : float, optional The radius of the planet for which the integration is being performed, [m] RI : float, optional The refractive index of the atmosphere (air on earth at 0.7 um as default) assumed a constant, [-] Returns ------- m : float Mass of air per square meter in the atmosphere, [kg/m^2] Notes ----- Numerical integration via SciPy's `quad` is used to perform the calculation. Examples -------- >>> airmass(lambda Z : ATMOSPHERE_1976(Z).rho, 90) 10356.12 References ---------- .. [1] Kasten, Fritz, and Andrew T. Young. "Revised Optical Air Mass Tables and Approximation Formula." Applied Optics 28, no. 22 (November 15, 1989): 4735-38. https://doi.org/10.1364/AO.28.004735. ''' delta0 = RI - 1.0 rho0_inv = 1.0/func(0.0) angle_term = cos(radians(angle)) R_planet_inv = 1.0/R_planet c0 = delta0 + delta0 c1 = c0*rho0_inv c2 = 1.0 + c0 return quad(to_int_airmass, 0.0, 86400.0, args=(c1, c2, angle_term, R_planet_inv, func))[0] PVLIB_MISSING_MSG = 'The module pvlib is required for this function; install it first' def earthsun_distance(moment): r'''Calculates the distance between the earth and the sun as a function of date and time. Uses the Reda and Andreas (2004) model described in [1]_, originally incorporated into the excellent `pvlib library `_ Parameters ---------- moment : datetime Time and date for the calculation, in UTC time (or GMT, which is almost the same thing); OR a timezone-aware datetime instance which will be internally converted to UTC, [-] Returns ------- distance : float Distance between the center of the earth and the center of the sun, [m] Examples -------- >>> earthsun_distance(datetime(2003, 10, 17, 13, 30, 30)) 149090925951.18338 The distance at perihelion, which occurs at 4:21 according to this algorithm. The real value is 04:38 (January 2nd). >>> earthsun_distance(datetime(2013, 1, 2, 4, 21, 50)) 147098089490.67123 The distance at aphelion, which occurs at 14:44 according to this algorithm. The real value is dead on - 14:44 (July 5). >>> earthsun_distance(datetime(2013, 7, 5, 14, 44, 51, 0)) 152097354414.36044 Using a timezone-aware date: >>> import pytz >>> earthsun_distance(pytz.timezone('America/Edmonton').localize(datetime(2020, 6, 6, 10, 0, 0, 0))) 151817805599.67142 This has a slightly different value than the value without a timezone; almost 5000 km further away! >>> earthsun_distance(datetime(2020, 6, 6, 10, 0, 0, 0)) 151812898579.44104 Notes ----- This function is quite accurate. The difference comes from the impact of the moon. Note this function is not continuous; the sun-earth distance is not sufficiently accurately modeled for the change to be continuous throughout each day. References ---------- .. [1] Reda, Ibrahim, and Afshin Andreas. "Solar Position Algorithm for Solar Radiation Applications." Solar Energy 76, no. 5 (January 1, 2004): 577-89. https://doi.org/10.1016/j.solener.2003.12.003. ''' from fluids.optional import spa delta_t = spa.calculate_deltat(moment.year, moment.month) import calendar unixtime = calendar.timegm(moment.utctimetuple()) # Convert datetime object to unixtime return spa.earthsun_distance(unixtime, delta_t=delta_t)*au def solar_position(moment, latitude, longitude, Z=0.0, T=298.15, P=101325.0, atmos_refract=0.5667): r'''Calculate the position of the sun in the sky. It is defined in terms of two angles - the zenith and the azimith. The azimuth tells where a sundial would see the sun as coming from; the zenith tells how high in the sky it is. The solar elevation angle is returned for convenience; it is the complimentary angle of the zenith. The sun's refraction changes how high it appears as though the sun is; so values are returned with an optional conversion to the apparent angle. This impacts only the zenith/elevation. Uses the Reda and Andreas (2004) model described in [1]_, originally incorporated into the excellent `pvlib library `_ Parameters ---------- moment : datetime, optionally with pytz info Time and date for the calculation, in UTC time OR in the time zone of the latitude/longitude specified BUT WITH A TZINFO ATTACHED! Please be careful with this argument, time zones are confusing. [-] latitude : float Latitude, between -90 and 90 [degrees] longitude : float Longitude, between -180 and 180, [degrees] Z : float, optional Elevation above sea level for the solar position calculation, [m] T : float, optional Temperature of atmosphere at ground level, [K] P : float, optional Pressure of atmosphere at ground level, [Pa] atmos_refract : float, optional Atmospheric refractivity, [degrees] Returns ------- apparent_zenith : float Zenith of the sun as observed from the ground based after accounting for atmospheric refraction, [degrees] zenith : float Actual zenith of the sun (ignores atmospheric refraction), [degrees] apparent_altitude : float Altitude of the sun as observed from the ground based after accounting for atmospheric refraction, [degrees] altitude : float Actual altitude of the sun (ignores atmospheric refraction), [degrees] azimuth : float The azimuth of the sun, [degrees] equation_of_time : float Equation of time - the number of seconds to be added to the day's mean solar time to obtain the apparent solar noon time, [seconds] Examples -------- >>> import pytz Perth, Australia - sunrise >>> solar_position(pytz.timezone('Australia/Perth').localize(datetime(2020, 6, 6, 7, 10, 57)), -31.95265, 115.85742) [90.89617025931, 90.89617025931, -0.896170259317, -0.896170259317, 63.6016017691, 79.0711232143] Perth, Australia - Comparing against an online source https://www.suncalc.org/#/-31.9526,115.8574,9/2020.06.06/14:30/1/0 >>> solar_position(pytz.timezone('Australia/Perth').localize(datetime(2020, 6, 6, 14, 30, 0)), -31.95265, 115.85742) [63.4080568623, 63.4400018158, 26.59194313766, 26.55999818417, 325.121376246, 75.7467475485] Perth, Australia - time input without timezone; must be converted by user to UTC! >>> solar_position(datetime(2020, 6, 6, 14, 30, 0) - timedelta(hours=8), -31.95265, 115.85742) [63.4080568623, 63.4400018158, 26.59194313766, 26.55999818417, 325.121376246, 75.7467475485] Sunrise occurs when the zenith is 90 degrees (Calgary, AB): >>> local_time = datetime(2018, 4, 15, 6, 43, 5) >>> local_time = pytz.timezone('America/Edmonton').localize(local_time) >>> solar_position(local_time, 51.0486, -114.07)[0] 90.0005468548 Sunset occurs when the zenith is 90 degrees (13.5 hours later in this case): >>> solar_position(pytz.timezone('America/Edmonton').localize(datetime(2018, 4, 15, 20, 30, 28)), 51.0486, -114.07) [89.999569566, 90.5410381216, 0.000430433876, -0.541038121618, 286.831378190, 6.63142952587] Notes ----- If you were standing at the same longitude of the sun such that it was no further east or west than you were, the amount of angle it was south or north of you is the *zenith*. If it were directly overhead it would be 0°; a little north or south and it would be a little positive; near sunset or sunrise, near 90°; and at night, between 90° and 180°. The *solar altitude angle* is defined as 90° -`zenith`. Note the *elevation* angle is just another name for the *altitude* angle. The *azimuth* the angle in degrees that the sun is East of the North angle. It is positive North eastwards 0° to 360°. Other conventions may be used. Note that due to differences in atmospheric refractivity, estimation of sunset and sunrise are accuract to no more than one minute. Refraction conditions truly vary across the atmosphere; so characterizing it by an average value is limiting as well. References ---------- .. [1] Reda, Ibrahim, and Afshin Andreas. "Solar Position Algorithm for Solar Radiation Applications." Solar Energy 76, no. 5 (January 1, 2004): 577-89. https://doi.org/10.1016/j.solener.2003.12.003. .. [2] "Navigation - What Azimuth Description Systems Are in Use? - Astronomy Stack Exchange." https://astronomy.stackexchange.com/questions/237/what-azimuth-description-systems-are-in-use?rq=1. ''' from fluids.optional import spa import calendar tt = moment.utctimetuple() delta_t = spa.calculate_deltat(tt.tm_year, tt.tm_mon) unixtime = calendar.timegm(tt) # Input pressure in milibar; input temperature in deg C # print(dict(unixtime=unixtime, lat=latitude, lon=longitude, elev=Z, # pressure=P*1E-2, temp=T-273.15, delta_t=delta_t, # atmos_refract=atmos_refract, sst=False)) result = spa.solar_position(unixtime, lat=latitude, lon=longitude, elev=Z, pressure=P*1E-2, temp=T-273.15, delta_t=delta_t, atmos_refract=atmos_refract, sst=False) # confirmed equation of time https://www.minasi.com/figeot.asp # Convert minutes to seconds; sometimes negative, sometimes positive result[-1] = result[-1]*60.0 return result def sunrise_sunset(moment, latitude, longitude): r'''Calculates the times at which the sun is at sunset; sunrise; and halfway between sunrise and sunset (transit). Uses the Reda and Andreas (2004) model described in [1]_, originally incorporated into the excellent `pvlib library `_ Parameters ---------- moment : datetime Date for the calculation; needs to contain only the year, month, and day; if it is timezone-aware, the return values will be localized to this timezone [-] latitude : float Latitude, between -90 and 90 [degrees] longitude : float Longitude, between -180 and 180, [degrees] Returns ------- sunrise : datetime The time at the specified day when the sun rises **IN UTC IF MOMENT DOES NOT HAVE A TIMEZONE, OTHERWISE THE TIMEZONE GIVEN WITH IT**, [-] sunset : datetime The time at the specified day when the sun sets **IN UTC IF MOMENT DOES NOT HAVE A TIMEZONE, OTHERWISE THE TIMEZONE GIVEN WITH IT**, [-] transit : datetime The time at the specified day when the sun is at solar noon - halfway between sunrise and sunset **IN UTC IF MOMENT DOES NOT HAVE A TIMEZONE, OTHERWISE THE TIMEZONE GIVEN WITH IT**, [-] Examples -------- >>> sunrise, sunset, transit = sunrise_sunset(datetime(2018, 4, 17), ... 51.0486, -114.07) >>> sunrise datetime.datetime(2018, 4, 17, 12, 36, 55, 782660) >>> sunset datetime.datetime(2018, 4, 18, 2, 34, 4, 249326) >>> transit datetime.datetime(2018, 4, 17, 19, 35, 46, 686265) Example with time zone: >>> import pytz >>> sunrise_sunset(pytz.timezone('America/Edmonton').localize(datetime(2018, 4, 17)), 51.0486, -114.07) (datetime.datetime(2018, 4, 16, 6, 39, 1, 570479, tzinfo=), datetime.datetime(2018, 4, 16, 20, 32, 25, 778162, tzinfo=), datetime.datetime(2018, 4, 16, 13, 36, 0, 386341, tzinfo=)) Note that the year/month/day as input with a timezone, is converted to UTC time as well. Notes ----- This functions takes on the order of 2 ms per calculation. References ---------- .. [1] Reda, Ibrahim, and Afshin Andreas. "Solar Position Algorithm for Solar Radiation Applications." Solar Energy 76, no. 5 (January 1, 2004): 577-89. https://doi.org/10.1016/j.solener.2003.12.003. ''' from fluids.optional import spa import calendar if moment.utcoffset() is not None: moment_utc = moment + moment.utcoffset() else: moment_utc = moment delta_t = spa.calculate_deltat(moment_utc.year, moment_utc.month) # Strip the part of the day ymd_moment_utc = datetime(moment_utc.year, moment_utc.month, moment_utc.day) unixtime = calendar.timegm(ymd_moment_utc.utctimetuple()) unixtime = unixtime - unixtime % (86400) # Remove the remainder of the value, rounding it to the day it is transit, sunrise, sunset = spa.transit_sunrise_sunset(unixtime, lat=latitude, lon=longitude, delta_t=delta_t) transit = datetime.utcfromtimestamp(transit) sunrise = datetime.utcfromtimestamp(sunrise) sunset = datetime.utcfromtimestamp(sunset) if moment.tzinfo is not None: sunrise = moment.tzinfo.fromutc(sunrise) sunset = moment.tzinfo.fromutc(sunset) transit = moment.tzinfo.fromutc(transit) return sunrise, sunset, transit apparent_zenith_airmass_models = set(['simple', 'kasten1966', 'kastenyoung1989', 'gueymard1993', 'pickering2002']) true_zenith_airmass_models = set(['youngirvine1967', 'young1994']) def _get_extra_radiation_shim(datetime_or_doy, solar_constant=1366.1, method='spencer', epoch_year=2014, **kwargs): if method == 'spencer': if not isinstance(datetime_or_doy, (float, int)): dayofyear = datetime_or_doy.timetuple().tm_yday else: dayofyear = datetime_or_doy B = (2.*pi/365.)*(dayofyear - 1) RoverR0sqrd = (1.00011 + 0.034221*cos(B) + 0.00128*sin(B) + 0.000719*cos(2.0*B) + 7.7e-05*sin(2.0*B)) Ea = solar_constant * RoverR0sqrd return Ea from pvlib.irradiance import get_extra_radiation return get_extra_radiation(datetime_or_doy=datetime_or_doy, solar_constant=solar_constant, method=method, epoch_year=epoch_year, **kwargs) def solar_irradiation(latitude, longitude, Z, moment, surface_tilt, surface_azimuth, T=None, P=None, solar_constant=1366.1, atmos_refract=0.5667, albedo=0.25, linke_turbidity=None, extraradiation_method='spencer', airmass_model='kastenyoung1989', cache=None): r'''Calculates the amount of solar radiation and radiation reflected back the atmosphere which hits a surface at a specified tilt, and facing a specified azimuth. This functions is a wrapper for the incredibly comprehensive `pvlib library `_, and requires it to be installed. Parameters ---------- latitude : float Latitude, between -90 and 90 [degrees] longitude : float Longitude, between -180 and 180, [degrees] Z : float, optional Elevation above sea level for the position, [m] moment : datetime, optionally with pytz info Time and date for the calculation, in UTC time OR in the time zone of the latitude/longitude specified BUT WITH A TZINFO ATTACHED! Please be careful with this argument, time zones are confusing. [-] surface_tilt : float The angle above the horizontal of the object being hit by radiation, [degrees] surface_azimuth : float The angle the object is facing (positive, North eastwards 0° to 360°), [degrees] T : float, optional Temperature of atmosphere at ground level, [K] P : float, optional Pressure of atmosphere at ground level, [Pa] solar_constant : float, optional The amount of solar radiation which reaches earth's disk (at a standardized distance of 1 AU); this constant is independent of activity or conditions on earth, but will vary throughout the sun's lifetime and may increase or decrease slightly due to solar activity, [W/m^2] atmos_refract : float, optional Atmospheric refractivity at sunrise/sunset (0.5667 deg is an often used value; this varies substantially and has an impact of a few minutes on when sunrise and sunset is), [degrees] albedo : float, optional The average amount of reflection of the terrain surrounding the object at quite a distance; this impacts how much sunlight reflected off the ground, gets reflected back off clouds, [-] linke_turbidity : float, optional The amount of pollution/water in the sky versus a perfect clear sky; If not specified, this will be retrieved from a historical grid; typical values are 3 for cloudy, and 7 for severe pollution around a city, [-] extraradiation_method : str, optional The specified method to calculate the effect of earth's position on the amount of radiation which reaches earth according to the methods available in the `pvlib` library, [-] airmass_model : str, optional The specified method to calculate the amount of air the sunlight needs to travel through to reach the earth according to the methods available in the `pvlib` library, [-] cache : dict, optional Dictionary to to check for values to use to skip some calculations; `apparent_zenith`, `zenith`, `azimuth` supported, [-] Returns ------- poa_global : float The total irradiance in the plane of the surface, [W/m^2] poa_direct : float The total beam irradiance in the plane of the surface, [W/m^2] poa_diffuse : float The total diffuse irradiance in the plane of the surface, [W/m^2] poa_sky_diffuse : float The sky component of the diffuse irradiance, excluding the impact from the ground, [W/m^2] poa_ground_diffuse : float The ground-sky diffuse irradiance component, [W/m^2] Examples -------- >>> import pytz >>> solar_irradiation(Z=1100.0, latitude=51.0486, longitude=-114.07, linke_turbidity=3, ... moment=pytz.timezone('America/Edmonton').localize(datetime(2018, 4, 15, 13, 43, 5)), surface_tilt=41.0, ... surface_azimuth=180.0) (1065.7621896280, 945.2656564506, 120.49653317744, 95.31535344213, 25.181179735317) >>> cache = {'apparent_zenith': 41.099082295767545, 'zenith': 41.11285376417578, 'azimuth': 182.5631874250523} >>> solar_irradiation(Z=1100.0, latitude=51.0486, longitude=-114.07, ... moment=pytz.timezone('America/Edmonton').localize(datetime(2018, 4, 15, 13, 43, 5)), surface_tilt=41.0, ... linke_turbidity=3, T=300, P=1E5, ... surface_azimuth=180.0, cache=cache) (1042.567770367, 918.237754854, 124.3300155131, 99.622865737, 24.7071497753) At night, there is no solar radiation and this function returns zeros: >>> solar_irradiation(Z=1100.0, latitude=51.0486, longitude=-114.07, linke_turbidity=3, ... moment=pytz.timezone('America/Edmonton').localize(datetime(2018, 4, 15, 2, 43, 5)), surface_tilt=41.0, ... surface_azimuth=180.0) (0.0, -0.0, 0.0, 0.0, 0.0) Notes ----- The retrieval of `linke_turbidity` requires the pytables library (and Pandas); if it is not installed, specify a value of `linke_turbidity` to avoid the dependency. There is some redundancy of the calculated results, according to the following relations. The total irradiance is normally that desired for engineering calculations. poa_diffuse = poa_ground_diffuse + poa_sky_diffuse poa_global = poa_direct + poa_diffuse For a surface such as a pipe or vessel, an approach would be to split it into a number of rectangles and sum up the radiation absorbed by each. This calculation is fairly slow. References ---------- .. [1] Will Holmgren, Calama-Consulting, Tony Lorenzo, Uwe Krien, bmu, DaCoEx, mayudong, et al. Pvlib/Pvlib-Python: 0.5.1. Zenodo, 2017. https://doi.org/10.5281/zenodo.1016425. ''' # Atmospheric refraction at sunrise/sunset (0.5667 deg is an often used value) import calendar from fluids.optional import spa from fluids.optional.irradiance import (get_relative_airmass, get_absolute_airmass, ineichen, get_relative_airmass, get_absolute_airmass, get_total_irradiance) moment_timetuple = moment.timetuple() moment_arg_dni = (moment_timetuple.tm_yday if extraradiation_method == 'spencer' else moment) dni_extra = _get_extra_radiation_shim(moment_arg_dni, solar_constant=solar_constant, method=extraradiation_method, epoch_year=moment.year) if T is None or P is None: atmosphere = ATMOSPHERE_NRLMSISE00(Z=Z, latitude=latitude, longitude=longitude, day=moment_timetuple.tm_yday) if T is None: T = atmosphere.T if P is None: P = atmosphere.P if cache is not None and 'zenith' in cache: zenith = cache['zenith'] apparent_zenith = cache['apparent_zenith'] azimuth = cache['azimuth'] else: apparent_zenith, zenith, _, _, azimuth, _ = solar_position(moment=moment, latitude=latitude, longitude=longitude, Z=Z, T=T, P=P, atmos_refract=atmos_refract) if linke_turbidity is None: try: import pvlib except: raise ImportError(PVLIB_MISSING_MSG) from pvlib.clearsky import lookup_linke_turbidity import pandas as pd linke_turbidity = float(lookup_linke_turbidity( pd.DatetimeIndex([moment]), latitude, longitude).values) if airmass_model in apparent_zenith_airmass_models: used_zenith = apparent_zenith elif airmass_model in true_zenith_airmass_models: used_zenith = zenith else: raise ValueError('Unrecognized airmass model') relative_airmass = get_relative_airmass(used_zenith, model=airmass_model) airmass_absolute = get_absolute_airmass(relative_airmass, pressure=P) ans = ineichen(apparent_zenith=apparent_zenith, airmass_absolute=airmass_absolute, linke_turbidity=linke_turbidity, altitude=Z, dni_extra=solar_constant, perez_enhancement=True) ghi = ans['ghi'] dni = ans['dni'] dhi = ans['dhi'] # from pvlib.irradiance import get_total_irradiance ans = get_total_irradiance(surface_tilt=surface_tilt, surface_azimuth=surface_azimuth, solar_zenith=apparent_zenith, solar_azimuth=azimuth, dni=dni, ghi=ghi, dhi=dhi, dni_extra=dni_extra, airmass=airmass_absolute, albedo=albedo) poa_global = float(ans['poa_global']) poa_direct = float(ans['poa_direct']) poa_diffuse = float(ans['poa_diffuse']) poa_sky_diffuse = float(ans['poa_sky_diffuse']) poa_ground_diffuse = float(ans['poa_ground_diffuse']) return (poa_global, poa_direct, poa_diffuse, poa_sky_diffuse, poa_ground_diffuse) fluids-1.0.22/fluids/filters.py0000644000175000017500000002602214302004506015714 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2019, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains correlations for the loss coefficient of various types of filters in a pipe or channel. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Loss Coefficients for Screens ----------------------------- .. autofunction:: round_edge_screen .. autofunction:: round_edge_open_mesh .. autofunction:: square_edge_screen Loss Coefficients for Grills ---------------------------- .. autofunction:: square_edge_grill .. autofunction:: round_edge_grill """ from __future__ import division from math import radians, cos from fluids.numerics import interp, implementation_optimize_tck, splev __all__ = ['round_edge_screen', 'round_edge_open_mesh', 'square_edge_screen', 'square_edge_grill', 'round_edge_grill'] round_Res = [20.0, 30.0, 40.0, 60.0, 80.0, 100.0, 200.0, 400.0] round_betas = [1.3, 1.1, 0.95, 0.83, 0.75, 0.7, 0.6, 0.52] '''Quadratic interpolation with no smoothing, constant value extremities returned when outside table limits''' round_thetas = [0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 85.0] round_gammas = [1.0, 0.97, 0.88, 0.75, 0.59, 0.45, 0.3, 0.23, 0.15, 0.09] '''Quadratic interpolation with no smoothing, constant value extremities returned when outside table limits''' '''Quadratic interpolation with no smoothing, constant value extremities returned when outside table limits. Last actual value in the original table is K=1000 at alpha=0.05; the rest are extrapolated.''' square_alphas = [0.0015625, 0.003125, 0.00625, 0.0125, 0.025, 0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75, 0.8, 0.85, 0.9, 1.] square_Ks = [1024000., 256000, 64000, 16000, 4000, 1000., 250., 85., 52., 30., 17., 11., 7.7, 5.5, 3.8, 2.8, 2, 1.5, 1.1, 0.78, 0.53, 0.35, 0.08, 0.] grills_rounded_alphas = [0.3, 0.4, 0.5, 0.6, 0.7] grills_rounded_Ks = [2.0, 1.0, 0.6, 0.4, 0.2] '''Cubic interpolation with no smoothing, constant value extremities returned when outside table limits''' grills_rounded_tck = implementation_optimize_tck([[0.3, 0.3, 0.3, 0.45, 0.55, 0.7, 0.7, 0.7], [2.0, 1.0014285714285716, 0.5799999999999998, 0.3585714285714287, 0.2, 0.0, 0.0, 0.0], 2]) def round_edge_screen(alpha, Re, angle=0.0): r'''Returns the loss coefficient for a round edged wire screen or bar screen, as shown in [1]_. Angle of inclination may be specified as well. Parameters ---------- alpha : float Fraction of screen open to flow [-] Re : float Reynolds number of flow through screen with D = space between rods, [] angle : float, optional Angle of inclination, with 0 being straight and 90 being parallel to flow [degrees] Returns ------- K : float Loss coefficient [-] Notes ----- Linear interpolation between a table of values. Re table extends from 20 to 400, with constant values outside of the table. This behavior should be adequate. alpha should be between 0.05 and 0.8. If angle is over 85 degrees, the value at 85 degrees is used. The velocity the loss coefficient relates to is the approach velocity before the screen. Examples -------- >>> round_edge_screen(0.5, 100) 2.0999999999999996 >>> round_edge_screen(0.5, 100, 45) 1.05 References ---------- .. [1] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' beta = interp(Re, round_Res, round_betas) alpha2 = alpha*alpha K = beta*(1.0 - alpha2)/alpha2 if angle is not None: if angle <= 45.0: v = cos(radians(angle)) K *= v*v else: K *= interp(angle, round_thetas, round_gammas) return K def round_edge_open_mesh(alpha, subtype='diamond pattern wire', angle=0.0): r'''Returns the loss coefficient for a round edged open net/screen made of one of the following patterns, according to [1]_: 'round bar screen': .. math:: K = 0.95(1-\alpha) + 0.2(1-\alpha)^2 'diamond pattern wire': .. math:: K = 0.67(1-\alpha) + 1.3(1-\alpha)^2 'knotted net': .. math:: K = 0.70(1-\alpha) + 4.9(1-\alpha)^2 'knotless net': .. math:: K = 0.72(1-\alpha) + 2.1(1-\alpha)^2 Parameters ---------- alpha : float Fraction of net/screen open to flow [-] subtype : str One of 'round bar screen', 'diamond pattern wire', 'knotted net' or 'knotless net'. angle : float, optional Angle of inclination, with 0 being straight and 90 being parallel to flow [degrees] Returns ------- K : float Loss coefficient [-] Notes ----- `alpha` should be between 0.85 and 1 for these correlations. Flow should be turbulent, with Re > 500. The velocity the loss coefficient relates to is the approach velocity before the mesh. Examples -------- >>> round_edge_open_mesh(0.96, angle=33.) 0.02031327712601458 References ---------- .. [1] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' one_m_alpha = (1.0-alpha) if subtype == 'round bar screen': K = 0.95 + 0.2*one_m_alpha elif subtype == 'diamond pattern wire': K = 0.67 + 1.3*one_m_alpha elif subtype == 'knotted net': K = 0.70 + 4.9*one_m_alpha elif subtype == 'knotless net': K = 0.72 + 2.1*one_m_alpha else: raise ValueError('Subtype not recognized') K *= one_m_alpha if angle is not None: if angle < 45.0: K *= cos(radians(angle))**2.0 else: K *= interp(angle, round_thetas, round_gammas) return K def square_edge_screen(alpha): r'''Returns the loss coefficient for a square wire screen or square bar screen or perforated plate with squared edges, as shown in [1]_. Parameters ---------- alpha : float Fraction of screen open to flow [-] Returns ------- K : float Loss coefficient [-] Notes ----- Linear interpolation between a table of values. The velocity the loss coefficient relates to is the approach velocity before the screen. Examples -------- >>> square_edge_screen(0.99) 0.008000000000000007 References ---------- .. [1] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' return interp(alpha, square_alphas, square_Ks) def square_edge_grill(alpha, l=None, Dh=None, fd=None): r'''Returns the loss coefficient for a square grill or square bar screen or perforated plate with squared edges of thickness l, as shown in [1]_. for Dh < l < 50D .. math:: K = \frac{0.5(1-\alpha) + (1-\alpha^2)}{\alpha^2} else: .. math:: K = \frac{0.5(1-\alpha) + (1-\alpha^2) + f{l}/D}{\alpha^2} Parameters ---------- alpha : float Fraction of grill open to flow [-] l : float, optional Thickness of the grill or plate [m] Dh : float, optional Hydraulic diameter of gap in grill, [m] fd : float, optional Darcy friction factor [-] Returns ------- K : float Loss coefficient [-] Notes ----- If l, Dh, or fd is not provided, the first expression is used instead. The alteration of the expression to include friction factor is there if the grill is long enough to have considerable friction along the surface of the grill. The velocity the loss coefficient relates to is the approach velocity before the grill. Examples -------- >>> square_edge_grill(.45) 5.296296296296296 >>> square_edge_grill(.45, l=.15, Dh=.002, fd=.0185) 12.148148148148147 References ---------- .. [1] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' x0 = 0.5*(1.0 - alpha) alpha2 = alpha*alpha x0 += (1.0 - alpha2) if Dh is not None and l is not None and fd is not None and l > 50.0*Dh: x0 += fd*l/Dh return x0/alpha2 def round_edge_grill(alpha, l=None, Dh=None, fd=None): r'''Returns the loss coefficient for a rounded square grill or square bar screen or perforated plate with rounded edges of thickness l, as shown in [1]_. for Dh < l < 50D .. math:: K = lookup(alpha) else: .. math:: K = lookup(alpha) + \frac{fl}{\alpha^2D} Parameters ---------- alpha : float Fraction of grill open to flow [-] l : float, optional Thickness of the grill or plate [m] Dh : float, optional Hydraulic diameter of gap in grill, [m] fd : float, optional Darcy friction factor [-] Returns ------- K : float Loss coefficient [-] Notes ----- If l, Dh, or fd is not provided, the first expression is used instead. The alteration of the expression to include friction factor is there if the grill is long enough to have considerable friction along the surface of the grill. alpha must be between 0.3 and 0.7. The velocity the loss coefficient relates to is the approach velocity before the grill. Examples -------- >>> round_edge_grill(.4) 1.0 >>> round_edge_grill(.4, l=.15, Dh=.002, fd=.0185) 2.3874999999999997 References ---------- .. [1] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' t1 = float(splev(alpha, grills_rounded_tck)) if Dh and l and fd and l > 50.0*Dh: return t1 + fd*l/Dh else: return t1 fluids-1.0.22/fluids/two_phase_voidage.py0000644000175000017500000027070714302004506017746 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains functions for calculating void fraction/holdup in two-phase flow. This is an important parameter for predicting pressure drop. Also included are empirical "two phase viscosity" definitions which do not have a physical meaning but are often used in pressure drop correlations. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Interfaces ---------- .. autofunction:: liquid_gas_voidage .. autofunction:: liquid_gas_voidage_methods .. autofunction:: density_two_phase .. autofunction:: gas_liquid_viscosity .. autofunction:: gas_liquid_viscosity_methods Void Fraction/Holdup Correlations --------------------------------- .. autofunction:: Thom .. autofunction:: Zivi .. autofunction:: Smith .. autofunction:: Fauske .. autofunction:: Chisholm_voidage .. autofunction:: Turner_Wallis .. autofunction:: homogeneous .. autofunction:: Chisholm_Armand .. autofunction:: Armand .. autofunction:: Nishino_Yamazaki .. autofunction:: Guzhov .. autofunction:: Kawahara .. autofunction:: Baroczy .. autofunction:: Tandon_Varma_Gupta .. autofunction:: Harms .. autofunction:: Domanski_Didion .. autofunction:: Graham .. autofunction:: Yashar .. autofunction:: Huq_Loth .. autofunction:: Kopte_Newell_Chato .. autofunction:: Steiner .. autofunction:: Rouhani_1 .. autofunction:: Rouhani_2 .. autofunction:: Nicklin_Wilkes_Davidson .. autofunction:: Gregory_Scott .. autofunction:: Dix .. autofunction:: Sun_Duffey_Peng .. autofunction:: Xu_Fang_voidage .. autofunction:: Woldesemayat_Ghajar Utilities --------- .. autofunction:: Lockhart_Martinelli_Xtt .. autofunction:: two_phase_voidage_experimental Gas/Liquid Viscosity -------------------- .. autofunction:: Beattie_Whalley .. autofunction:: McAdams .. autofunction:: Cicchitti .. autofunction:: Lin_Kwok .. autofunction:: Fourar_Bories .. autofunction:: Duckler """ from __future__ import division from math import exp, log, pi, sin, cos, radians, sqrt from fluids.constants import g from fluids.core import Froude __all__ = ['Thom', 'Zivi', 'Smith', 'Fauske', 'Chisholm_voidage', 'Turner_Wallis', 'homogeneous', 'Chisholm_Armand', 'Armand', 'Nishino_Yamazaki', 'Guzhov', 'Kawahara', 'Baroczy', 'Tandon_Varma_Gupta', 'Harms', 'Domanski_Didion', 'Graham', 'Yashar', 'Huq_Loth', 'Kopte_Newell_Chato', 'Steiner', 'Rouhani_1', 'Rouhani_2', 'Nicklin_Wilkes_Davidson', 'Gregory_Scott', 'Dix', 'Sun_Duffey_Peng', 'Xu_Fang_voidage', 'Woldesemayat_Ghajar', 'Lockhart_Martinelli_Xtt', 'two_phase_voidage_experimental', 'density_two_phase', 'Beattie_Whalley', 'McAdams', 'Cicchitti', 'Lin_Kwok', 'Fourar_Bories','Duckler', 'liquid_gas_voidage', 'liquid_gas_voidage_methods', 'gas_liquid_viscosity', 'gas_liquid_viscosity_methods', 'two_phase_voidage_correlations', 'liquid_gas_viscosity_correlations'] ### Models based on slip ratio def Thom(x, rhol, rhog, mul, mug): r'''Calculates void fraction in two-phase flow according to the model of [1]_ as given in [2]_. .. math:: \alpha = \left[1 + \left(\frac{1-x}{x}\right)\left(\frac{\rho_g} {\rho_l}\right)^{0.89}\left(\frac{\mu_l}{\mu_g}\right)^{0.18} \right]^{-1} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] mul : float Viscosity of liquid [Pa*s] mug : float Viscosity of gas [Pa*s] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Based on experimental data for boiling of water. [3]_ presents a slightly different model. However, its results are almost identical. A comparison can be found in the unit tests. Neither expression was found in [1]_ in a brief review. Examples -------- >>> Thom(.4, 800, 2.5, 1E-3, 1E-5) 0.9801482164042417 References ---------- .. [1] Thom, J. R. S. "Prediction of Pressure Drop during Forced Circulation Boiling of Water." International Journal of Heat and Mass Transfer 7, no. 7 (July 1, 1964): 709-24. doi:10.1016/0017-9310(64)90002-X. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. ''' return (1 + (1-x)/x * (rhog/rhol)**0.89 * (mul/mug)**0.18)**-1 # return x*((mug/mul)**(111/1000)*(rhol/rhog)**(111/200))**1.6/(x*(((mug/mul)**(111/1000)*(rhol/rhog)**(111/200))**1.6 - 1) + 1) def Zivi(x, rhol, rhog): r'''Calculates void fraction in two-phase flow according to the model of [1]_ as given in [2]_ and [3]_. .. math:: \alpha = \left[1 + \left(\frac{1-x}{x}\right) \left(\frac{\rho_g}{\rho_l}\right)^{2/3}\right]^{-1} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Based on experimental data for boiling of water. More complicated variants of this are also in [1]_. Examples -------- >>> Zivi(.4, 800, 2.5) 0.9689339909056356 References ---------- .. [1] Zivi, S. M. "Estimation of Steady-State Steam Void-Fraction by Means of the Principle of Minimum Entropy Production." Journal of Heat Transfer 86, no. 2 (May 1, 1964): 247-51. doi:10.1115/1.3687113. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. ''' return (1 + (1-x)/x * (rhog/rhol)**(2/3.))**-1 def Smith(x, rhol, rhog): r'''Calculates void fraction in two-phase flow according to the model of [1]_, also given in [2]_ and [3]_. .. math:: \alpha = \left\{1 + \left(\frac{1-x}{x}\right) \left(\frac{\rho_g}{\rho_l}\right)\left[K+(1-K) \sqrt{\frac{\frac{\rho_l}{\rho_g} + K\left(\frac{1-x}{x}\right)} {1 + K\left(\frac{1-x}{x}\right)}}\right] \right\}^{-1} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- [1]_ is an easy to read paper and has been reviewed. The form of the expression here is rearranged somewhat differently than in [1]_ but has been verified to be numerically equivalent. The form of this in [3]_ is missing a square root on a bracketed term; this appears in multiple papers by the authors. Examples -------- >>> Smith(.4, 800, 2.5) 0.959981235534199 References ---------- .. [1] Smith, S. L. "Void Fractions in Two-Phase Flow: A Correlation Based upon an Equal Velocity Head Model." Proceedings of the Institution of Mechanical Engineers 184, no. 1 (June 1, 1969): 647-64. doi:10.1243/PIME_PROC_1969_184_051_02. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. ''' K = 0.4 x_ratio = (1-x)/x root = sqrt((rhol/rhog + K*x_ratio) / (1 + K*x_ratio)) alpha = (1 + (x_ratio) * (rhog/rhol) * (K + (1-K)*root))**-1 return alpha def Fauske(x, rhol, rhog): r'''Calculates void fraction in two-phase flow according to the model of [1]_, as given in [2]_ and [3]_. .. math:: \alpha = \left[1 + \left(\frac{1-x}{x}\right) \left(\frac{\rho_g}{\rho_l}\right)^{0.5}\right]^{-1} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- [1]_ has not been reviewed. However, both [2]_ and [3]_ present it the same way. Examples -------- >>> Fauske(.4, 800, 2.5) 0.9226347262627932 References ---------- .. [1] Fauske, H., Critical two-phase, steam-water flows, in: Heat Transfer and Fluid Mechanics Institute 1961: Proceedings. Stanford University Press, 1961, p. 79-89. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. ''' return (1 + (1-x)/x*sqrt(rhog/rhol))**-1 def Chisholm_voidage(x, rhol, rhog): r'''Calculates void fraction in two-phase flow according to the model of [1]_, as given in [2]_ and [3]_. .. math:: \alpha = \left[1 + \left(\frac{1-x}{x}\right)\left(\frac{\rho_g} {\rho_l}\right)\sqrt{1 - x\left(1-\frac{\rho_l}{\rho_g}\right)} \right]^{-1} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- [1]_ has not been reviewed. However, both [2]_ and [3]_ present it the same way. Examples -------- >>> Chisholm_voidage(.4, 800, 2.5) 0.949525900374774 References ---------- .. [1] Chisholm, D. "Pressure Gradients due to Friction during the Flow of Evaporating Two-Phase Mixtures in Smooth Tubes and Channels." International Journal of Heat and Mass Transfer 16, no. 2 (February 1, 1973): 347-58. doi:10.1016/0017-9310(73)90063-X. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. ''' S = sqrt(1 - x*(1-rhol/rhog)) alpha = (1 + (1-x)/x*rhog/rhol*S)**-1 return alpha def Turner_Wallis(x, rhol, rhog, mul, mug): r'''Calculates void fraction in two-phase flow according to the model of [1]_, as given in [2]_ and [3]_. .. math:: \alpha = \left[1 + \left(\frac{1-x}{x}\right)^{0.72}\left(\frac{\rho_g} {\rho_l}\right)^{0.4}\left(\frac{\mu_l}{\mu_g}\right)^{0.08} \right]^{-1} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] mul : float Viscosity of liquid [Pa*s] mug : float Viscosity of gas [Pa*s] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- [1]_ has not been reviewed. However, both [2]_ and [3]_ present it the same way, if slightly differently rearranged. Examples -------- >>> Turner_Wallis(.4, 800, 2.5, 1E-3, 1E-5) 0.8384824581634625 References ---------- .. [1] J.M. Turner, G.B. Wallis, The Separate-cylinders Model of Two-phase Flow, NYO-3114-6, Thayer's School Eng., Dartmouth College, Hanover, New Hampshire, USA, 1965. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. ''' return (1 + ((1-x)/x)**0.72 * (rhog/rhol)**0.4 * (mul/mug)**0.08)**-1 ### Models using the Homogeneous flow model def homogeneous(x, rhol, rhog): r'''Calculates void fraction in two-phase flow according to the homogeneous flow model, reviewed in [1]_, [2]_, and [3]_. .. math:: \alpha = \frac{1}{1 + \left(\frac{1-x}{x}\right)\frac{\rho_g}{\rho_l}} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Examples -------- >>> homogeneous(.4, 800, 2.5) 0.995334370139969 References ---------- .. [1] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [2] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. .. [3] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' if x == 1.0: return 1.0 elif x == 0.0: return 0.0 return 1.0/(1.0 + (1.0 - x)/x*(rhog/rhol)) def Chisholm_Armand(x, rhol, rhog): r'''Calculates void fraction in two-phase flow according to the model presented in [1]_ based on that of [2]_ as shown in [3]_, [4]_, and [5]_. .. math:: \alpha = \frac{\alpha_h}{\alpha_h + (1-\alpha_h)^{0.5}} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Examples -------- >>> Chisholm_Armand(.4, 800, 2.5) 0.9357814394262114 References ---------- .. [1] Chisholm, Duncan. Two-Phase Flow in Pipelines and Heat Exchangers. Institution of Chemical Engineers, 1983. .. [2] Armand, Aleksandr Aleksandrovich. The Resistance During the Movement of a Two-Phase System in Horizontal Pipes. Atomic Energy Research Establishment, 1959. .. [3] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [4] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. .. [5] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' alpha_h = homogeneous(x, rhol, rhog) return alpha_h/(alpha_h + sqrt(1-alpha_h)) def Armand(x, rhol, rhog): r'''Calculates void fraction in two-phase flow according to the model presented in [1]_ as shown in [2]_, [3]_, and [4]_. .. math:: \alpha = 0.833\alpha_h Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Examples -------- >>> Armand(.4, 800, 2.5) 0.8291135303265941 References ---------- .. [1] Armand, Aleksandr Aleksandrovich. The Resistance During the Movement of a Two-Phase System in Horizontal Pipes. Atomic Energy Research Establishment, 1959. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. .. [4] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' return 0.833*homogeneous(x, rhol, rhog) def Nishino_Yamazaki(x, rhol, rhog): r'''Calculates void fraction in two-phase flow according to the model presented in [1]_ as shown in [2]_. .. math:: \alpha = 1 - \left(\frac{1-x}{x}\frac{\rho_g}{\rho_l}\right)^{0.5} \alpha_h^{0.5} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- [1]_ is in Japanese. [3]_ either shows this model as iterative in terms of voidage, or forgot to add a H subscript to its second voidage term; the second is believed more likely. Examples -------- >>> Nishino_Yamazaki(.4, 800, 2.5) 0.931694583962682 References ---------- .. [1] Nishino, Haruo, and Yasaburo Yamazaki. "A New Method of Evaluating Steam Volume Fractions in Boiling Systems." Journal of the Atomic Energy Society of Japan / Atomic Energy Society of Japan 5, no. 1 (1963): 39-46. doi:10.3327/jaesj.5.39. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' alpha_h = homogeneous(x, rhol, rhog) return 1 - sqrt((1-x)*rhog/x/rhol)*sqrt(alpha_h) def Guzhov(x, rhol, rhog, m, D): r'''Calculates void fraction in two-phase flow according to the model in [1]_ as shown in [2]_ and [3]_. .. math:: \alpha = 0.81[1 - \exp(-2.2\sqrt{Fr_{tp}})]\alpha_h Fr_{tp} = \frac{G_{tp}^2}{gD\rho_{tp}^2} \rho_{tp} = \left(\frac{1-x}{\rho_l} + \frac{x}{\rho_g}\right)^{-1} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Examples -------- >>> Guzhov(.4, 800, 2.5, 1, .3) 0.7626030108534588 References ---------- .. [1] Guzhov, A. I, VasiliÄ­ Andreevich Mamaev, and G. E Odisharii︠a︡. A Study of Transportation in Gas-Liquid Systems. Une Étude Sur Le Transport Des Systèmes Gaz-Liquides. Bruxelles: International Gas Union, 1967. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. .. [3] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' rho_tp = ((1-x)/rhol + x/rhog)**-1 G = m/(pi/4*D**2) V_tp = G/rho_tp Fr = Froude(V=V_tp, L=D, squared=True) # squaring in undone later; Fr**0.5 alpha_h = homogeneous(x, rhol, rhog) return 0.81*(1 - exp(-2.2*sqrt(Fr)))*alpha_h def Kawahara(x, rhol, rhog, D): r'''Calculates void fraction in two-phase flow according to the model presented in [1]_, also reviewed in [2]_ and [3]_. This expression is for microchannels. .. math:: \alpha = \frac{C_1 \alpha_h^{0.5}}{1 - C_2\alpha_h^{0.5}} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] D : float Diameter of the channel, [m] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- C1 and C2 were constants for different diameters. Only diameters of 100 and 50 mircometers were studied in [1]_. Here, the coefficients are distributed for three ranges, > 250 micrometers, 250-75 micrometers, and < 75 micrometers. The `Armand` model is used for the first, C1 and C2 are 0.03 and 0.97 for the second, and C1 and C2 are 0.02 and 0.98 for the third. Examples -------- >>> Kawahara(.4, 800, 2.5, 100E-6) 0.9276148194410238 References ---------- .. [1] Kawahara, A., M. Sadatomi, K. Okayama, M. Kawaji, and P. M.-Y. Chung. "Effects of Channel Diameter and Liquid Properties on Void Fraction in Adiabatic Two-Phase Flow Through Microchannels." Heat Transfer Engineering 26, no. 3 (February 16, 2005): 13-19. doi:10.1080/01457630590907158. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. ''' if D > 250E-6: return Armand(x, rhol, rhog) elif D > 75E-6: C1, C2 = 0.03, 0.97 else: C1, C2 = 0.02, 0.98 alpha_h = homogeneous(x, rhol, rhog) return C1*sqrt(alpha_h)/(1. - C2*sqrt(alpha_h)) ### Miscellaneous correlations def Lockhart_Martinelli_Xtt(x, rhol, rhog, mul, mug, pow_x=0.9, pow_rho=0.5, pow_mu=0.1, n=None): r'''Calculates the Lockhart-Martinelli Xtt two-phase flow parameter in a general way according to [2]_. [1]_ is said to describe this. However, very different definitions of this parameter have been used elsewhere. Accordingly, the powers of each of the terms can be set. Alternatively, if the parameter `n` is provided, the powers for viscosity and phase fraction will be calculated from it as shown below. .. math:: X_{tt} = \left(\frac{1-x}{x}\right)^{0.9} \left(\frac{\rho_g}{\rho_l} \right)^{0.5}\left(\frac{\mu_l}{\mu_g}\right)^{0.1} .. math:: X_{tt} = \left(\frac{1-x}{x}\right)^{(2-n)/2} \left(\frac{\rho_g} {\rho_l}\right)^{0.5}\left(\frac{\mu_l}{\mu_g}\right)^{n/2} Parameters ---------- x : float Quality at the specific tube interval [-] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] mul : float Viscosity of liquid [Pa*s] mug : float Viscosity of gas [Pa*s] pow_x : float, optional Power for the phase ratio (1-x)/x, [-] pow_rho : float, optional Power for the density ratio rhog/rhol, [-] pow_mu : float, optional Power for the viscosity ratio mul/mug, [-] n : float, optional Number to be used for calculating pow_x and pow_mu if provided, [-] Returns ------- Xtt : float Xtt Lockhart-Martinelli two-phase flow parameter [-] Notes ----- Xtt is best regarded as an empirical parameter. If used, n is often 0.2 or 0.25. Examples -------- >>> Lockhart_Martinelli_Xtt(0.4, 800, 2.5, 1E-3, 1E-5) 0.12761659240532292 References ---------- .. [1] Lockhart, R. W. & Martinelli, R. C. (1949), "Proposed correlation of data for isothermal two-phase, two-component flow in pipes", Chemical Engineering Progress 45 (1), 39-48. .. [2] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' if n is not None: pow_x = (2-n)/2. pow_mu = n/2. return ((1-x)/x)**pow_x * (rhog/rhol)**pow_rho * (mul/mug)**pow_mu def Baroczy(x, rhol, rhog, mul, mug): r'''Calculates void fraction in two-phase flow according to the model of [1]_ as given in [2]_, [3]_, and [4]_. .. math:: \alpha = \left[1 + \left(\frac{1-x}{x}\right)^{0.74}\left(\frac{\rho_g} {\rho_l}\right)^{0.65}\left(\frac{\mu_l}{\mu_g}\right)^{0.13} \right]^{-1} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] mul : float Viscosity of liquid [Pa*s] mug : float Viscosity of gas [Pa*s] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Examples -------- >>> Baroczy(.4, 800, 2.5, 1E-3, 1E-5) 0.9453544598460807 References ---------- .. [1] Baroczy, C. Correlation of liquid fraction in two-phase flow with applications to liquid metals, Chem. Eng. Prog. Symp. Ser. 61 (1965) 179-191. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. .. [4] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' Xtt = Lockhart_Martinelli_Xtt(x, rhol, rhog, mul, mug, pow_x=0.74, pow_rho=0.65, pow_mu=0.13) return (1 + Xtt)**-1 def Tandon_Varma_Gupta(x, rhol, rhog, mul, mug, m, D): r'''Calculates void fraction in two-phase flow according to the model of [1]_ also given in [2]_, [3]_, and [4]_. For 50 < Rel < 1125: .. math:: \alpha = 1- 1.928Re_l^{-0.315}[F(X_{tt})]^{-1} + 0.9293Re_l^{-0.63} [F(X_{tt})]^{-2} For Rel > 1125: .. math:: \alpha = 1- 0.38 Re_l^{-0.088}[F(X_{tt})]^{-1} + 0.0361 Re_l^{-0.176} [F(X_{tt})]^{-2} .. math:: F(X_{tt}) = 0.15[X_{tt}^{-1} + 2.85X_{tt}^{-0.476}] Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] mul : float Viscosity of liquid [Pa*s] mug : float Viscosity of gas [Pa*s] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- [1]_ does not specify how it defines the liquid Reynolds number. [2]_ disagrees with [3]_ and [4]_; the later variant was selected, with: .. math:: Re_l = \frac{G_{tp}D}{\mu_l} The lower limit on Reynolds number is not enforced. Examples -------- >>> Tandon_Varma_Gupta(.4, 800, 2.5, 1E-3, 1E-5, m=1, D=0.3) 0.9228265670341428 References ---------- .. [1] Tandon, T. N., H. K. Varma, and C. P. Gupta. "A Void Fraction Model for Annular Two-Phase Flow." International Journal of Heat and Mass Transfer 28, no. 1 (January 1, 1985): 191-198. doi:10.1016/0017-9310(85)90021-3. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. .. [4] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' G = m/(pi/4*D**2) Rel = G*D/mul Xtt = Lockhart_Martinelli_Xtt(x, rhol, rhog, mul, mug) Fxtt = 0.15*(Xtt**-1 + 2.85*Xtt**-0.476) if Rel < 1125: alpha = 1 - 1.928*Rel**-0.315/Fxtt + 0.9293*Rel**-0.63/Fxtt**2 else: alpha = 1 - 0.38*Rel**-0.088/Fxtt + 0.0361*Rel**-0.176/Fxtt**2 return alpha def Harms(x, rhol, rhog, mul, mug, m, D): r'''Calculates void fraction in two-phase flow according to the model of [1]_ also given in [2]_ and [3]_. .. math:: \alpha = \left[1 - 10.06Re_l^{-0.875}(1.74 + 0.104Re_l^{0.5})^2 \left(1.376 + \frac{7.242}{X_{tt}^{1.655}}\right)^{-0.5}\right]^2 .. math:: Re_l = \frac{G_{tp}(1-x)D}{\mu_l} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] mul : float Viscosity of liquid [Pa*s] mug : float Viscosity of gas [Pa*s] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- [1]_ has been reviewed. Examples -------- >>> Harms(.4, 800, 2.5, 1E-3, 1E-5, m=1, D=0.3) 0.9653289762907554 References ---------- .. [1] Tandon, T. N., H. K. Varma, and C. P. Gupta. "A Void Fraction Model for Annular Two-Phase Flow." International Journal of Heat and Mass Transfer 28, no. 1 (January 1, 1985): 191-198. doi:10.1016/0017-9310(85)90021-3. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. ''' G = m/(pi/4*D**2) Rel = G*D*(1-x)/mul Xtt = Lockhart_Martinelli_Xtt(x, rhol, rhog, mul, mug) return (1 - 10.06*Rel**-0.875*(1.74 + 0.104*sqrt(Rel))**2 *1.0/sqrt(1.376 + 7.242/Xtt**1.655)) def Domanski_Didion(x, rhol, rhog, mul, mug): r'''Calculates void fraction in two-phase flow according to the model of [1]_ also given in [2]_ and [3]_. if Xtt < 10: .. math:: \alpha = (1 + X_{tt}^{0.8})^{-0.378} Otherwise: .. math:: \alpha = 0.823- 0.157\ln(X_{tt}) Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] mul : float Viscosity of liquid [Pa*s] mug : float Viscosity of gas [Pa*s] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- [1]_ has been reviewed. [2]_ gives an exponent of -0.38 instead of -0.378 as is in [1]_. [3]_ describes only the novel half of the correlation. The portion for Xtt > 10 is novel; the other is said to be from their 31st reference, Wallis. There is a discontinuity at Xtt = 10. Examples -------- >>> Domanski_Didion(.4, 800, 2.5, 1E-3, 1E-5) 0.9355795597059169 References ---------- .. [1] Domanski, Piotr, and David A. Didion. "Computer Modeling of the Vapor Compression Cycle with Constant Flow Area Expansion Device." Report. UNT Digital Library, May 1983. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. ''' Xtt = Lockhart_Martinelli_Xtt(x, rhol, rhog, mul, mug) if Xtt < 10: return (1 + Xtt**0.8)**-0.378 else: return 0.823 - 0.157*log(Xtt) def Graham(x, rhol, rhog, mul, mug, m, D, g=g): r'''Calculates void fraction in two-phase flow according to the model of [1]_ also given in [2]_ and [3]_. .. math:: \alpha = 1 - \exp\{-1 - 0.3\ln(Ft) - 0.0328[\ln(Ft)]^2\} .. math:: Ft = \left[\frac{G_{tp}^2 x^3}{(1-x)\rho_g^2gD}\right]^{0.5} .. math:: \alpha = 0 \text{ for } F_t \le 0.01032 Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] mul : float Viscosity of liquid [Pa*s] mug : float Viscosity of gas [Pa*s] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- [1]_ has been reviewed. [2]_ does not list that the expression is not real below a certain value of Ft. Examples -------- >>> Graham(.4, 800, 2.5, 1E-3, 1E-5, m=1, D=0.3) 0.6403336287530644 References ---------- .. [1] Graham, D. M. "Experimental Investigation of Void Fraction During Refrigerant Condensation." ACRC Technical Report 135. Air Conditioning and Refrigeration Center. College of Engineering. University of Illinois at Urbana-Champaign., December 1997. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. ''' G = m/(pi/4*D**2) Ft = sqrt(G**2*x**3/((1-x)*rhog**2*g*D)) if Ft < 0.01032: return 0 else: return 1 - exp(-1 - 0.3*log(Ft) - 0.0328*log(Ft)**2) def Yashar(x, rhol, rhog, mul, mug, m, D, g=g): r'''Calculates void fraction in two-phase flow according to the model of [1]_ also given in [2]_ and [3]_. .. math:: \alpha = \left[1 + \frac{1}{Ft} + X_{tt}\right]^{-0.321} .. math:: Ft = \left[\frac{G_{tp}^2 x^3}{(1-x)\rho_g^2gD}\right]^{0.5} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] mul : float Viscosity of liquid [Pa*s] mug : float Viscosity of gas [Pa*s] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- [1]_ has been reviewed; both [2]_ and [3]_ give it correctly. Examples -------- >>> Yashar(.4, 800, 2.5, 1E-3, 1E-5, m=1, D=0.3) 0.7934893185789146 References ---------- .. [1] Yashar, D. A., M. J. Wilson, H. R. Kopke, D. M. Graham, J. C. Chato, and T. A. Newell. "An Investigation of Refrigerant Void Fraction in Horizontal, Microfin Tubes." HVAC&R Research 7, no. 1 (January 1, 2001): 67-82. doi:10.1080/10789669.2001.10391430. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. ''' G = m/(pi/4*D**2) Ft = sqrt(G**2*x**3/((1-x)*rhog**2*g*D)) Xtt = Lockhart_Martinelli_Xtt(x, rhol, rhog, mul, mug) return (1 + 1./Ft + Xtt)**-0.321 def Huq_Loth(x, rhol, rhog): r'''Calculates void fraction in two-phase flow according to the model of [1]_, also given in [2]_, [3]_, and [4]_. .. math:: \alpha = 1 - \frac{2(1-x)^2}{1 - 2x + \left[1 + 4x(1-x)\left(\frac {\rho_l}{\rho_g}-1\right)\right]^{0.5}} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- [1]_ has been reviewed, and matches the expressions given in the reviews [2]_, [3]_, and [4]_; the form of the expression is rearranged somewhat differently. Examples -------- >>> Huq_Loth(.4, 800, 2.5) 0.9593868838476147 References ---------- .. [1] Huq, Reazul, and John L. Loth. "Analytical Two-Phase Flow Void Prediction Method." Journal of Thermophysics and Heat Transfer 6, no. 1 (January 1, 1992): 139-44. doi:10.2514/3.329. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. .. [4] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' B = 2*x*(1-x) D = sqrt(1 + 2*B*(rhol/rhog -1)) return 1 - 2*(1-x)**2/(1 - 2*x + D) def Kopte_Newell_Chato(x, rhol, rhog, mul, mug, m, D, g=g): r'''Calculates void fraction in two-phase flow according to the model of [1]_ also given in [2]_. .. math:: \alpha = 1.045 - \exp\{-1 - 0.342\ln(Ft) - 0.0268[\ln(Ft)]^2 + 0.00597[\ln(Ft)]^3\} .. math:: Ft = \left[\frac{G_{tp}^2 x^3}{(1-x)\rho_g^2gD}\right]^{0.5} .. math:: \alpha = \alpha_h \text{ for } F_t \le 0.044 Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] mul : float Viscosity of liquid [Pa*s] mug : float Viscosity of gas [Pa*s] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- [1]_ has been reviewed. If is recommended this expression not be used above Ft values of 454. Examples -------- >>> Kopte_Newell_Chato(.4, 800, 2.5, 1E-3, 1E-5, m=1, D=0.3) 0.6864466770087425 References ---------- .. [1] Kopke, H. R. "Experimental Investigation of Void Fraction During Refrigerant Condensation in Horizontal Tubes." ACRC Technical Report 142. Air Conditioning and Refrigeration Center. College of Engineering. University of Illinois at Urbana-Champaign., August 1998. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. ''' G = m/(pi/4*D**2) Ft = sqrt(G**2*x**3/((1-x)*rhog**2*g*D)) if Ft < 0.044: return homogeneous(x, rhol, rhog) else: return 1.045 - exp(-1 - 0.342*log(Ft) - 0.0268*log(Ft)**2 + 0.00597*log(Ft)**3) ### Drift flux models def Steiner(x, rhol, rhog, sigma, m, D, g=g): r'''Calculates void fraction in two-phase flow according to the model of [1]_ also given in [2]_ and [3]_. .. math:: \alpha = \frac{x}{\rho_g}\left[C_0\left(\frac{x}{\rho_g} + \frac{1-x} {\rho_l}\right) +\frac{v_{gm}}{G} \right]^{-1} .. math:: v_{gm} = \frac{1.18(1-x)}{\rho_l^{0.5}}[g\sigma(\rho_l-\rho_g)]^{0.25} .. math:: C_0 = 1 + 0.12(1-x) Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] sigma : float Surface tension of liquid [N/m] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- [1]_ has been reviewed. Examples -------- >>> Steiner(0.4, 800., 2.5, sigma=0.02, m=1, D=0.3) 0.895950181381335 References ---------- .. [1] Gesellschaft, V. D. I., ed. VDI Heat Atlas. 2nd edition. Berlin; New York:: Springer, 2010. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Dalkilic, A. S., S. Laohalertdecha, and S. Wongwises. "Effect of Void Fraction Models on the Two-Phase Friction Factor of R134a during Condensation in Vertical Downward Flow in a Smooth Tube." International Communications in Heat and Mass Transfer 35, no. 8 (October 2008): 921-27. doi:10.1016/j.icheatmasstransfer.2008.04.001. ''' G = m/(pi/4*D**2) C0 = 1 + 0.12*(1-x) vgm = 1.18*(1-x)/sqrt(rhol)*sqrt(sqrt(g*sigma*(rhol-rhog))) return x/rhog*(C0*(x/rhog + (1-x)/rhol) + vgm/G)**-1 def Rouhani_1(x, rhol, rhog, sigma, m, D, g=g): r'''Calculates void fraction in two-phase flow according to the model of [1]_ as given in [2]_ and [3]_. .. math:: \alpha = \frac{x}{\rho_g}\left[C_0\left(\frac{x}{\rho_g} + \frac{1-x} {\rho_l}\right) +\frac{v_{gm}}{G} \right]^{-1} .. math:: v_{gm} = \frac{1.18(1-x)}{\rho_l^{0.5}}[g\sigma(\rho_l-\rho_g)]^{0.25} .. math:: C_0 = 1 + 0.2(1-x) Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] sigma : float Surface tension of liquid [N/m] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- The expression as quoted in [2]_ and [3]_ could not be found in [1]_. Examples -------- >>> Rouhani_1(0.4, 800., 2.5, sigma=0.02, m=1, D=0.3) 0.8588420244136714 References ---------- .. [1] Rouhani, S. Z, and E Axelsson. "Calculation of Void Volume Fraction in the Subcooled and Quality Boiling Regions." International Journal of Heat and Mass Transfer 13, no. 2 (February 1, 1970): 383-93. doi:10.1016/0017-9310(70)90114-6. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' G = m/(pi/4*D**2) C0 = 1 + 0.2*(1-x) vgm = 1.18*(1-x)/sqrt(rhol)*sqrt(sqrt(g*sigma*(rhol-rhog))) return x/rhog*(C0*(x/rhog + (1-x)/rhol) + vgm/G)**-1 def Rouhani_2(x, rhol, rhog, sigma, m, D, g=g): r'''Calculates void fraction in two-phase flow according to the model of [1]_ as given in [2]_ and [3]_. .. math:: \alpha = \frac{x}{\rho_g}\left[C_0\left(\frac{x}{\rho_g} + \frac{1-x} {\rho_l}\right) +\frac{v_{gm}}{G} \right]^{-1} .. math:: v_{gm} = \frac{1.18(1-x)}{\rho_l^{0.5}}[g\sigma(\rho_l-\rho_g)]^{0.25} .. math:: C_0 = 1 + 0.2(1-x)(gD)^{0.25}\left(\frac{\rho_l}{G_{tp}}\right)^{0.5} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] sigma : float Surface tension of liquid [N/m] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- The expression as quoted in [2]_ and [3]_ could not be found in [1]_. Examples -------- >>> Rouhani_2(0.4, 800., 2.5, sigma=0.02, m=1, D=0.3) 0.44819733138968865 References ---------- .. [1] Rouhani, S. Z, and E Axelsson. "Calculation of Void Volume Fraction in the Subcooled and Quality Boiling Regions." International Journal of Heat and Mass Transfer 13, no. 2 (February 1, 1970): 383-93. doi:10.1016/0017-9310(70)90114-6. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' G = m/(pi/4*D**2) C0 = 1 + 0.2*(1-x)*sqrt(sqrt(g*D))*sqrt(rhol/G) vgm = 1.18*(1-x)/sqrt(rhol)*sqrt(sqrt(g*sigma*(rhol-rhog))) return x/rhog*(C0*(x/rhog + (1-x)/rhol) + vgm/G)**-1 def Nicklin_Wilkes_Davidson(x, rhol, rhog, m, D, g=g): r'''Calculates void fraction in two-phase flow according to the model of [1]_ as given in [2]_ and [3]_. .. math:: \alpha = \frac{x}{\rho_g}\left[C_0\left(\frac{x}{\rho_g} + \frac{1-x} {\rho_l}\right) +\frac{v_{gm}}{G} \right]^{-1} .. math:: v_{gm} = 0.35\sqrt{gD} .. math:: C_0 = 1.2 Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Examples -------- >>> Nicklin_Wilkes_Davidson(0.4, 800., 2.5, m=1, D=0.3) 0.6798826626721431 References ---------- .. [1] D. Nicklin, J. Wilkes, J. Davidson, "Two-phase flow in vertical tubes", Trans. Inst. Chem. Eng. 40 (1962) 61-68. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' G = m/(pi/4*D**2) C0 = 1.2 vgm = 0.35*sqrt(g*D) return x/rhog*(C0*(x/rhog + (1-x)/rhol) + vgm/G)**-1 def Gregory_Scott(x, rhol, rhog): r'''Calculates void fraction in two-phase flow according to the model of [1]_ as given in [2]_ and [3]_. .. math:: \alpha = \frac{x}{\rho_g}\left[C_0\left(\frac{x}{\rho_g} + \frac{1-x} {\rho_l}\right) +\frac{v_{gm}}{G} \right]^{-1} .. math:: v_{gm} = 0 .. math:: C_0 = 1.19 Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Examples -------- >>> Gregory_Scott(0.4, 800., 2.5) 0.8364154370924108 References ---------- .. [1] Gregory, G. A., and D. S. Scott. "Correlation of Liquid Slug Velocity and Frequency in Horizontal Cocurrent Gas-Liquid Slug Flow." AIChE Journal 15, no. 6 (November 1, 1969): 933-35. doi:10.1002/aic.690150623. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' C0 = 1.19 return x/rhog*(C0*(x/rhog + (1-x)/rhol))**-1 def Dix(x, rhol, rhog, sigma, m, D, g=g): r'''Calculates void fraction in two-phase flow according to the model of [1]_ as given in [2]_ and [3]_. .. math:: \alpha = \frac{x}{\rho_g}\left[C_0\left(\frac{x}{\rho_g} + \frac{1-x} {\rho_l}\right) +\frac{v_{gm}}{G} \right]^{-1} .. math:: v_{gm} = 2.9\left(g\sigma\frac{\rho_l-\rho_g}{\rho_l^2}\right)^{0.25} .. math:: C_0 = \frac{v_{sg}}{v_m}\left[1 + \left(\frac{v_{sl}}{v_{sg}}\right) ^{\left(\left(\frac{\rho_g}{\rho_l}\right)^{0.1}\right)}\right] .. math:: v_{gs} = \frac{mx}{\rho_g \frac{\pi}{4}D^2} .. math:: v_{ls} = \frac{m(1-x)}{\rho_l \frac{\pi}{4}D^2} .. math:: v_m = v_{gs} + v_{ls} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] sigma : float Surface tension of liquid [N/m] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Has formed the basis for several other correlations. Examples -------- >>> Dix(0.4, 800., 2.5, sigma=0.02, m=1, D=0.3) 0.8268737961156514 References ---------- .. [1] Gary Errol. Dix. "Vapor Void Fractions for Forced Convection with Subcooled Boiling at Low Flow Rates." Thesis. University of California, Berkeley, 1971. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' vgs = m*x/(rhog*pi/4*D**2) vls = m*(1-x)/(rhol*pi/4*D**2) G = m/(pi/4*D**2) C0 = vgs/(vls+vgs)*(1 + (vls/vgs)**((rhog/rhol)**0.1)) vgm = 2.9*sqrt(sqrt(g*sigma*(rhol-rhog)/rhol**2)) return x/rhog*(C0*(x/rhog + (1-x)/rhol) + vgm/G)**-1 def Sun_Duffey_Peng(x, rhol, rhog, sigma, m, D, P, Pc, g=g): r'''Calculates void fraction in two-phase flow according to the model of [1]_ as given in [2]_ and [3]_. .. math:: \alpha = \frac{x}{\rho_g}\left[C_0\left(\frac{x}{\rho_g} + \frac{1-x} {\rho_l}\right) +\frac{v_{gm}}{G} \right]^{-1} .. math:: v_{gm} = 1.41\left[\frac{g\sigma(\rho_l-\rho_g)}{\rho_l^2}\right]^{0.25} .. math:: C_0 = \left(0.82 + 0.18\frac{P}{P_c}\right)^{-1} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] sigma : float Surface tension of liquid [N/m] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] P : float Pressure of the fluid, [Pa] Pc : float Critical pressure of the fluid, [Pa] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Examples -------- >>> Sun_Duffey_Peng(0.4, 800., 2.5, sigma=0.02, m=1, D=0.3, P=1E5, Pc=7E6) 0.7696546506515833 References ---------- .. [1] K.H. Sun, R.B. Duffey, C.M. Peng, A thermal-hydraulic analysis of core uncover, in: Proceedings of the 19th National Heat Transfer Conference, Experimental and Analytical Modeling of LWR Safety Experiments, 1980, pp. 1-10. Orlando, Florida, USA. .. [2] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. .. [3] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' G = m/(pi/4*D**2) Pr = P/Pc if Pc is not None else 0.5 C0 = (0.82 + 0.18*Pr)**-1 vgm = 1.41*sqrt(sqrt(g*sigma*(rhol-rhog)/rhol**2)) return x/rhog*(C0*(x/rhog + (1-x)/rhol) + vgm/G)**-1 # Correlations developed in reviews def Xu_Fang_voidage(x, rhol, rhog, m, D, g=g): r'''Calculates void fraction in two-phase flow according to the model developed in the review of [1]_. .. math:: \alpha = \left[1 + \left(1 + 2Fr_{lo}^{-0.2}\alpha_h^{3.5}\right)\left( \frac{1-x}{x}\right)\left(\frac{\rho_g}{\rho_l}\right)\right]^{-1} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Claims an AARD of 5.0%, and suitability for any flow regime, mini and micro channels, adiabatic, evaporating, or condensing flow, and for Frlo from 0.02 to 145, rhog/rhol from 0.004-0.153, and x from 0 to 1. Examples -------- >>> Xu_Fang_voidage(0.4, 800., 2.5, m=1, D=0.3) 0.9414660089942093 References ---------- .. [1] Xu, Yu, and Xiande Fang. "Correlations of Void Fraction for Two- Phase Refrigerant Flow in Pipes." Applied Thermal Engineering 64, no. 1-2 (March 2014): 242–51. doi:10.1016/j.applthermaleng.2013.12.032. ''' G = m/(pi/4*D**2) alpha_h = homogeneous(x, rhol, rhog) Frlo = G**2/(g*D*rhol**2) return (1 + (1 + 2*Frlo**-0.2*alpha_h**3.5)*((1-x)/x)*(rhog/rhol))**-1 def Woldesemayat_Ghajar(x, rhol, rhog, sigma, m, D, P, angle=0, g=g): r'''Calculates void fraction in two-phase flow according to the model of [1]_. .. math:: \alpha = \frac{v_{gs}}{v_{gs}\left(1 + \left(\frac{v_{ls}}{v_{gs}} \right)^{\left(\frac{\rho_g}{\rho_l}\right)^{0.1}}\right) + 2.9\left[\frac{gD\sigma(1+\cos\theta)(\rho_l-\rho_g)} {\rho_l^2}\right]^{0.25}(1.22 + 1.22\sin\theta)^{\frac{P}{P_{atm}}}} .. math:: v_{gs} = \frac{mx}{\rho_g \frac{\pi}{4}D^2} .. math:: v_{ls} = \frac{m(1-x)}{\rho_l \frac{\pi}{4}D^2} Parameters ---------- x : float Quality at the specific tube interval [] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] sigma : float Surface tension of liquid [N/m] m : float Mass flow rate of both phases, [kg/s] D : float Diameter of the channel, [m] P : float Pressure of the fluid, [Pa] angle : float Angle of the channel with respect to the horizontal (vertical = 90), [degrees] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Strongly recommended. Examples -------- >>> Woldesemayat_Ghajar(0.4, 800., 2.5, sigma=0.2, m=1, D=0.3, P=1E6, angle=45) 0.7640815513429202 References ---------- .. [1] Woldesemayat, Melkamu A., and Afshin J. Ghajar. "Comparison of Void Fraction Correlations for Different Flow Patterns in Horizontal and Upward Inclined Pipes." International Journal of Multiphase Flow 33, no. 4 (April 2007): 347-370. doi:10.1016/j.ijmultiphaseflow.2006.09.004. ''' vgs = m*x/(rhog*pi/4*D**2) vls = m*(1-x)/(rhol*pi/4*D**2) first = vgs*(1 + (vls/vgs)**((rhog/rhol)**0.1)) second = 2.9*sqrt(sqrt((g*D*sigma*(1 + cos(radians(angle)))*(rhol-rhog))/rhol**2)) if P is None: P = 101325.0 third = (1.22 + 1.22*sin(radians(angle)))**(101325./P) return vgs/(first + second*third) # x, rhol, rhog 2ill be the minimum inputs two_phase_voidage_correlations = {'Thom' : (Thom, ('x', 'rhol', 'rhog', 'mul', 'mug')), 'Zivi' : (Zivi, ('x', 'rhol', 'rhog')), 'Smith' : (Smith, ('x', 'rhol', 'rhog')), 'Fauske' : (Fauske, ('x', 'rhol', 'rhog')), 'Chisholm_voidage' : (Chisholm_voidage, ('x', 'rhol', 'rhog')), 'Turner Wallis' : (Turner_Wallis, ('x', 'rhol', 'rhog', 'mul', 'mug')), 'homogeneous' : (homogeneous, ('x', 'rhol', 'rhog')), 'Chisholm Armand' : (Chisholm_Armand, ('x', 'rhol', 'rhog')), 'Armand' : (Armand, ('x', 'rhol', 'rhog')), 'Nishino Yamazaki' : (Nishino_Yamazaki, ('x', 'rhol', 'rhog')), 'Guzhov' : (Guzhov, ('x', 'rhol', 'rhog', 'm', 'D')), 'Kawahara' : (Kawahara, ('x', 'rhol', 'rhog', 'D')), 'Baroczy' : (Baroczy, ('x', 'rhol', 'rhog', 'mul', 'mug')), 'Tandon Varma Gupta' : (Tandon_Varma_Gupta, ('x', 'rhol', 'rhog', 'mul', 'mug', 'm', 'D')), 'Harms' : (Harms, ('x', 'rhol', 'rhog', 'mul', 'mug', 'm', 'D')), 'Domanski Didion' : (Domanski_Didion, ('x', 'rhol', 'rhog', 'mul', 'mug')), 'Graham' : (Graham, ('x', 'rhol', 'rhog', 'mul', 'mug', 'm', 'D', 'g')), 'Yashar' : (Yashar, ('x', 'rhol', 'rhog', 'mul', 'mug', 'm', 'D', 'g')), 'Huq_Loth' : (Huq_Loth, ('x', 'rhol', 'rhog')), 'Kopte_Newell_Chato' : (Kopte_Newell_Chato, ('x', 'rhol', 'rhog', 'mul', 'mug', 'm', 'D', 'g')), 'Steiner' : (Steiner, ('x', 'rhol', 'rhog', 'sigma', 'm', 'D', 'g')), 'Rouhani 1' : (Rouhani_1, ('x', 'rhol', 'rhog', 'sigma', 'm', 'D', 'g')), 'Rouhani 2' : (Rouhani_2, ('x', 'rhol', 'rhog', 'sigma', 'm', 'D', 'g')), 'Nicklin Wilkes Davidson' : (Nicklin_Wilkes_Davidson, ('x', 'rhol', 'rhog', 'm', 'D', 'g')), 'Gregory_Scott' : (Gregory_Scott, ('x', 'rhol', 'rhog')), 'Dix' : (Dix, ('x', 'rhol', 'rhog', 'sigma', 'm', 'D', 'g')), 'Sun Duffey Peng' : (Sun_Duffey_Peng, ('x', 'rhol', 'rhog', 'sigma', 'm', 'D', 'P', 'Pc', 'g')), 'Xu Fang voidage' : (Xu_Fang_voidage, ('x', 'rhol', 'rhog', 'm', 'D', 'g')), 'Woldesemayat Ghajar' : (Woldesemayat_Ghajar, ('x', 'rhol', 'rhog', 'sigma', 'm', 'D', 'P', 'angle', 'g'))} _unknown_two_phase_voidage_corr = 'Method not recognized; available methods are %s' %list(two_phase_voidage_correlations.keys()) # All the available arguments are: #{'rhol', 'angle=0', 'x', 'P', 'mug', 'rhog', 'D', 'g', 'Pc', 'sigma', 'mul', 'm'} def liquid_gas_voidage_methods(x, rhol, rhog, D=None, m=None, mul=None, mug=None, sigma=None, P=None, Pc=None, angle=0.0, g=g, check_ranges=False): r'''This function returns a list of liquid-gas voidage correlation names which can perform the calculation with the provided inputs. The holdup is for two-phase liquid-gas flow inside channels. 29 calculation methods are available, with varying input requirements. Parameters ---------- x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] D : float, optional Diameter of pipe, [m] m : float, optional Mass flow rate of fluid, [kg/s] mul : float, optional Viscosity of liquid, [Pa*s] mug : float, optional Viscosity of gas, [Pa*s] sigma : float, optional Surface tension, [N/m] P : float, optional Pressure of fluid, [Pa] Pc : float, optional Critical pressure of fluid, [Pa] angle : float, optional Angle of the channel with respect to the horizontal (vertical = 90), [degrees] g : float, optional Acceleration due to gravity, [m/s^2] check_ranges : bool, optional Added for future use only Returns ------- methods : list, only returned if AvailableMethods == True List of methods which can be used to calculate two-phase liquid-gas voidage with the given inputs. Examples -------- >>> len(liquid_gas_voidage_methods(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, sigma=0.0487, D=0.05)) 27 ''' vals = {'x': x, 'rhol': rhol, 'rhog': rhog, 'D': D, 'm': m, 'mul': mul, 'mug': mug, 'sigma': sigma, 'P': P, 'Pc': Pc, 'angle': angle, 'g': g, 'check_ranges': check_ranges} usable_methods = [] for method, value in two_phase_voidage_correlations.items(): f, args = value if all(vals[i] is not None for i in args): usable_methods.append(method) return usable_methods def liquid_gas_voidage(x, rhol, rhog, D=None, m=None, mul=None, mug=None, sigma=None, P=None, Pc=None, angle=0, g=g, Method=None): r'''This function handles calculation of two-phase liquid-gas voidage for flow inside channels. 29 calculation methods are available, with varying input requirements. A correlation will be automatically selected if none is specified. This function is used to calculate the (liquid) holdup as well, as: .. math:: \text{holdup} = 1 - \text{voidage} If no correlation is selected, the following rules are used, with the earlier options attempted first: * TODO: defaults Parameters ---------- x : float Quality of fluid, [-] rhol : float Liquid density, [kg/m^3] rhog : float Gas density, [kg/m^3] D : float, optional Diameter of pipe, [m] m : float, optional Mass flow rate of fluid, [kg/s] mul : float, optional Viscosity of liquid, [Pa*s] mug : float, optional Viscosity of gas, [Pa*s] sigma : float, optional Surface tension, [N/m] P : float, optional Pressure of fluid, [Pa] Pc : float, optional Critical pressure of fluid, [Pa] angle : float, optional Angle of the channel with respect to the horizontal (vertical = 90), [degrees] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Other Parameters ---------------- Method : string, optional A string of the function name to use, as in the dictionary two_phase_voidage_correlations. Notes ----- Examples -------- >>> liquid_gas_voidage(m=0.6, x=0.1, rhol=915., rhog=2.67, mul=180E-6, mug=14E-6, ... sigma=0.0487, D=0.05) 0.9744097632663492 ''' if Method is None: Method2 = 'homogeneous' else: Method2 = Method if Method2 == "Thom": return Thom(x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug) elif Method2 == "Zivi": return Zivi(x=x, rhol=rhol, rhog=rhog) elif Method2 == "Smith": return Smith(x=x, rhol=rhol, rhog=rhog) elif Method2 == "Fauske": return Fauske(x=x, rhol=rhol, rhog=rhog) elif Method2 == "Chisholm_voidage": return Chisholm_voidage(x=x, rhol=rhol, rhog=rhog) elif Method2 == "Turner Wallis": return Turner_Wallis(x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug) elif Method2 == "homogeneous": return homogeneous(x=x, rhol=rhol, rhog=rhog) elif Method2 == "Chisholm Armand": return Chisholm_Armand(x=x, rhol=rhol, rhog=rhog) elif Method2 == "Armand": return Armand(x=x, rhol=rhol, rhog=rhog) elif Method2 == "Nishino Yamazaki": return Nishino_Yamazaki(x=x, rhol=rhol, rhog=rhog) elif Method2 == "Guzhov": return Guzhov(x=x, rhol=rhol, rhog=rhog, m=m, D=D) elif Method2 == "Kawahara": return Kawahara(x=x, rhol=rhol, rhog=rhog, D=D) elif Method2 == "Baroczy": return Baroczy(x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug) elif Method2 == "Tandon Varma Gupta": return Tandon_Varma_Gupta(x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, m=m, D=D) elif Method2 == "Harms": return Harms(x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, m=m, D=D) elif Method2 == "Domanski Didion": return Domanski_Didion(x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug) elif Method2 == "Graham": return Graham(x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, m=m, D=D, g=g) elif Method2 == "Yashar": return Yashar(x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, m=m, D=D, g=g) elif Method2 == "Huq_Loth": return Huq_Loth(x=x, rhol=rhol, rhog=rhog) elif Method2 == "Kopte_Newell_Chato": return Kopte_Newell_Chato(x=x, rhol=rhol, rhog=rhog, mul=mul, mug=mug, m=m, D=D, g=g) elif Method2 == "Steiner": return Steiner(x=x, rhol=rhol, rhog=rhog, sigma=sigma, m=m, D=D, g=g) elif Method2 == "Rouhani 1": return Rouhani_1(x=x, rhol=rhol, rhog=rhog, sigma=sigma, m=m, D=D, g=g) elif Method2 == "Rouhani 2": return Rouhani_2(x=x, rhol=rhol, rhog=rhog, sigma=sigma, m=m, D=D, g=g) elif Method2 == "Nicklin Wilkes Davidson": return Nicklin_Wilkes_Davidson(x=x, rhol=rhol, rhog=rhog, m=m, D=D, g=g) elif Method2 == "Gregory_Scott": return Gregory_Scott(x=x, rhol=rhol, rhog=rhog) elif Method2 == "Dix": return Dix(x=x, rhol=rhol, rhog=rhog, sigma=sigma, m=m, D=D, g=g) elif Method2 == "Sun Duffey Peng": return Sun_Duffey_Peng(x=x, rhol=rhol, rhog=rhog, sigma=sigma, m=m, D=D, P=P, Pc=Pc, g=g) elif Method2 == "Xu Fang voidage": return Xu_Fang_voidage(x=x, rhol=rhol, rhog=rhog, m=m, D=D, g=g) elif Method2 == "Woldesemayat Ghajar": return Woldesemayat_Ghajar(x=x, rhol=rhol, rhog=rhog, sigma=sigma, m=m, D=D, P=P, angle=angle, g=g) else: raise ValueError(_unknown_two_phase_voidage_corr) def density_two_phase(alpha, rhol, rhog): r'''Calculates the "effective" density of fluid in a liquid-gas flow. If the weight of fluid in a pipe pipe could be measured and the volume of the pipe were known, an effective density of the two-phase mixture could be calculated. This is directly relatable to the void fraction of the pipe, a parameter used to predict the pressure drop. This function converts void fraction to effective two-phase density. .. math:: \rho_m = \alpha \rho_g + (1-\alpha)\rho_l Parameters ---------- alpha : float Void fraction (area of gas / total area of channel), [-] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] Returns ------- rho_lg : float Two-phase effective density [kg/m^3] Notes ----- **THERE IS NO THERMODYNAMIC DEFINITION FOR THIS QUANTITY. DO NOT USE THIS VALUE IN SINGLE-PHASE CORRELATIONS.** Examples -------- >>> density_two_phase(.4, 800, 2.5) 481.0 References ---------- .. [1] Awad, M. M., and Y. S. Muzychka. "Effective Property Models for Homogeneous Two-Phase Flows." Experimental Thermal and Fluid Science 33, no. 1 (October 1, 2008): 106-13. ''' return alpha*rhog + (1. - alpha)*rhol def two_phase_voidage_experimental(rho_lg, rhol, rhog): r'''Calculates the void fraction for two-phase liquid-gas pipeflow. If the weight of fluid in a pipe pipe could be measured and the volume of the pipe were known, an effective density of the two-phase mixture could be calculated. This is directly relatable to the void fraction of the pipe, a parameter used to predict the pressure drop. This function converts that measured effective two-phase density to void fraction for use in developing correlations. .. math:: \alpha = \frac{\rho_m - \rho_l}{\rho_g - \rho_l} Parameters ---------- rho_lg : float Two-phase effective density [kg/m^3] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] Returns ------- alpha : float Void fraction (area of gas / total area of channel), [-] Notes ----- Examples -------- >>> two_phase_voidage_experimental(481.0, 800, 2.5) 0.4 References ---------- .. [1] Awad, M. M., and Y. S. Muzychka. "Effective Property Models for Homogeneous Two-Phase Flows." Experimental Thermal and Fluid Science 33, no. 1 (October 1, 2008): 106-13. ''' return (rho_lg - rhol)/(rhog - rhol) ### two-phase viscosity models def Beattie_Whalley(x, mul, mug, rhol, rhog): r'''Calculates a suggested definition for liquid-gas two-phase flow viscosity in internal pipe flow according to the form in [1]_ and shown in [2]_ and [3]_. .. math:: \mu_m = \mu_l(1-\alpha_m)(1 + 2.5\alpha_m) + \mu_g\alpha_m .. math:: \alpha_m = \frac{1}{1 + \left(\frac{1-x}{x}\right)\frac{\rho_g}{\rho_l}} \text{(homogeneous model)} Parameters ---------- x : float Quality of the gas-liquid flow, [-] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] rhol : float Density of the liquid [kg/m^3] rhog : float Density of the gas [kg/m^3] Returns ------- mu_lg : float Liquid-gas viscosity (**a suggested definition, potentially useful for empirical work only!**) [Pa*s] Notes ----- This model converges to the liquid or gas viscosity as the quality approaches either limits. Examples -------- >>> Beattie_Whalley(x=0.4, mul=1E-3, mug=1E-5, rhol=850, rhog=1.2) 1.7363806909512365e-05 References ---------- .. [1] Beattie, D. R. H., and P. B. Whalley. "A Simple Two-Phase Frictional Pressure Drop Calculation Method." International Journal of Multiphase Flow 8, no. 1 (February 1, 1982): 83-87. doi:10.1016/0301-9322(82)90009-X. .. [2] Awad, M. M., and Y. S. Muzychka. "Effective Property Models for Homogeneous Two-Phase Flows." Experimental Thermal and Fluid Science 33, no. 1 (October 1, 2008): 106-13. .. [3] Kim, Sung-Min, and Issam Mudawar. "Review of Databases and Predictive Methods for Pressure Drop in Adiabatic, Condensing and Boiling Mini/Micro-Channel Flows." International Journal of Heat and Mass Transfer 77 (October 2014): 74-97. doi:10.1016/j.ijheatmasstransfer.2014.04.035. ''' alpha = homogeneous(x, rhol, rhog) return mul*(1. - alpha)*(1. + 2.5*alpha) + mug*alpha def McAdams(x, mul, mug): r'''Calculates a suggested definition for liquid-gas two-phase flow viscosity in internal pipe flow according to the form in [1]_ and shown in [2]_ and [3]_. .. math:: \mu_m = \left(\frac{x}{\mu_g} + \frac{1-x}{\mu_l}\right)^{-1} Parameters ---------- x : float Quality of the gas-liquid flow, [-] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] Returns ------- mu_lg : float Liquid-gas viscosity (**a suggested definition, potentially useful for empirical work only!**) [Pa*s] Notes ----- This model converges to the liquid or gas viscosity as the quality approaches either limits. [3]_ states this is the most common definition of two-phase liquid-gas viscosity. Examples -------- >>> McAdams(x=0.4, mul=1E-3, mug=1E-5) 2.4630541871921184e-05 References ---------- .. [1] McAdams, W. H. "Vaporization inside Horizontal Tubes-II Benzene-Oil Mixtures." Trans. ASME 39 (1949): 39-48. .. [2] Awad, M. M., and Y. S. Muzychka. "Effective Property Models for Homogeneous Two-Phase Flows." Experimental Thermal and Fluid Science 33, no. 1 (October 1, 2008): 106-13. .. [3] Kim, Sung-Min, and Issam Mudawar. "Review of Databases and Predictive Methods for Pressure Drop in Adiabatic, Condensing and Boiling Mini/Micro-Channel Flows." International Journal of Heat and Mass Transfer 77 (October 2014): 74-97. doi:10.1016/j.ijheatmasstransfer.2014.04.035. ''' return 1./(x/mug + (1. - x)/mul) def Cicchitti(x, mul, mug): r'''Calculates a suggested definition for liquid-gas two-phase flow viscosity in internal pipe flow according to the form in [1]_ and shown in [2]_ and [3]_. .. math:: \mu_m = x\mu_g + (1-x)\mu_l Parameters ---------- x : float Quality of the gas-liquid flow, [-] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] Returns ------- mu_lg : float Liquid-gas viscosity (**a suggested definition, potentially useful for empirical work only!**) [Pa*s] Notes ----- This model converges to the liquid or gas viscosity as the quality approaches either limits. Examples -------- >>> Cicchitti(x=0.4, mul=1E-3, mug=1E-5) 0.0006039999999999999 References ---------- .. [1] Cicchitti, A., C. Lombardi, M. Silvestri, G. Soldaini, and R. Zavattarelli. "Two-Phase Cooling Experiments: Pressure Drop, Heat Transfer and Burnout Measurements." Centro Informazioni Studi Esperienze, Milan, January 1, 1959. .. [2] Awad, M. M., and Y. S. Muzychka. "Effective Property Models for Homogeneous Two-Phase Flows." Experimental Thermal and Fluid Science 33, no. 1 (October 1, 2008): 106-13. .. [3] Kim, Sung-Min, and Issam Mudawar. "Review of Databases and Predictive Methods for Pressure Drop in Adiabatic, Condensing and Boiling Mini/Micro-Channel Flows." International Journal of Heat and Mass Transfer 77 (October 2014): 74-97. doi:10.1016/j.ijheatmasstransfer.2014.04.035. ''' return x*mug + (1. - x)*mul def Lin_Kwok(x, mul, mug): r'''Calculates a suggested definition for liquid-gas two-phase flow viscosity in internal pipe flow according to the form in [1]_ and shown in [2]_. .. math:: \mu_m = \frac{\mu_l \mu_g}{\mu_g + x^{1.4}(\mu_l - \mu_g)} Parameters ---------- x : float Quality of the gas-liquid flow, [-] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] Returns ------- mu_lg : float Liquid-gas viscosity (**a suggested definition, potentially useful for empirical work only!**) [Pa*s] Notes ----- This model converges to the liquid or gas viscosity as the quality approaches either limits. Examples -------- >>> Lin_Kwok(x=0.4, mul=1E-3, mug=1E-5) 3.515119398126066e-05 References ---------- .. [1] Lin, S., C. C. K. Kwok, R. -Y. Li, Z. -H. Chen, and Z. -Y. Chen. "Local Frictional Pressure Drop during Vaporization of R-12 through Capillary Tubes." International Journal of Multiphase Flow 17, no. 1 (January 1, 1991): 95-102. doi:10.1016/0301-9322(91)90072-B. .. [2] Awad, M. M., and Y. S. Muzychka. "Effective Property Models for Homogeneous Two-Phase Flows." Experimental Thermal and Fluid Science 33, no. 1 (October 1, 2008): 106-13. ''' return mul*mug/(mug + x**1.4*(mul - mug)) def Fourar_Bories(x, mul, mug, rhol, rhog): r'''Calculates a suggested definition for liquid-gas two-phase flow viscosity in internal pipe flow according to the form in [1]_ and shown in [2]_ and [3]_. .. math:: \mu_m = \rho_m\left(\sqrt{x\nu_g} + \sqrt{(1-x)\nu_l}\right)^2 Parameters ---------- x : float Quality of the gas-liquid flow, [-] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] rhol : float Density of the liquid, [kg/m^3] rhog : float Density of the gas, [kg/m^3] Returns ------- mu_lg : float Liquid-gas viscosity (**a suggested definition, potentially useful for empirical work only!**) [Pa*s] Notes ----- This model converges to the liquid or gas viscosity as the quality approaches either limits. This was first expressed in the equalivalent form as follows: .. math:: \mu_m = \rho_m\left(x\nu_g + (1-x)\nu_l + 2\sqrt{x(1-x)\nu_g\nu_l} \right) Examples -------- >>> Fourar_Bories(x=0.4, mul=1E-3, mug=1E-5, rhol=850, rhog=1.2) 2.127617150298565e-05 References ---------- .. [1] Fourar, M., and S. Bories. "Experimental Study of Air-Water Two-Phase Flow through a Fracture (Narrow Channel)." International Journal of Multiphase Flow 21, no. 4 (August 1, 1995): 621-37. doi:10.1016/0301-9322(95)00005-I. .. [2] Awad, M. M., and Y. S. Muzychka. "Effective Property Models for Homogeneous Two-Phase Flows." Experimental Thermal and Fluid Science 33, no. 1 (October 1, 2008): 106-13. .. [3] Aung, NZ, and T. Yuwono. "Evaluation of Mixture Viscosity Models in the Prediction of Two-Phase Flow Pressure Drops." ASEAN Journal on Science and Technology for Development 29, no. 2 (2012). ''' rhom = 1./(x/rhog + (1. - x)/rhol) nul = mul/rhol # = nu_mu_converter(rho=rhol, mu=mul) nug = mug/rhog # = nu_mu_converter(rho=rhog, mu=mug) return rhom*(sqrt(x*nug) + sqrt((1. - x)*nul))**2 def Duckler(x, mul, mug, rhol, rhog): r'''Calculates a suggested definition for liquid-gas two-phase flow viscosity in internal pipe flow according to the form in [1]_ and shown in [2]_, [3]_, and [4]_. .. math:: \mu_m = \frac{\frac{x\mu_g}{\rho_g} + \frac{(1-x)\mu_l}{\rho_l} } {\frac{x}{\rho_g} + \frac{(1-x)}{\rho_l} } Parameters ---------- x : float Quality of the gas-liquid flow, [-] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] rhol : float Density of the liquid, [kg/m^3] rhog : float Density of the gas, [kg/m^3] Returns ------- mu_lg : float Liquid-gas viscosity (**a suggested definition, potentially useful for empirical work only!**) [Pa*s] Notes ----- This model converges to the liquid or gas viscosity as the quality approaches either limits. This has also been expressed in the following form: .. math:: \mu_m = \rho_m \left[x\left(\frac{\mu_g}{\rho_g}\right) + (1 - x)\left(\frac{\mu_l}{\rho_l}\right)\right] According to the homogeneous definition of two-phase density. Examples -------- >>> Duckler(x=0.4, mul=1E-3, mug=1E-5, rhol=850, rhog=1.2) 1.2092040385066917e-05 References ---------- .. [1] Fourar, M., and S. Bories. "Experimental Study of Air-Water Two-Phase Flow through a Fracture (Narrow Channel)." International Journal of Multiphase Flow 21, no. 4 (August 1, 1995): 621-37. doi:10.1016/0301-9322(95)00005-I. .. [2] Awad, M. M., and Y. S. Muzychka. "Effective Property Models for Homogeneous Two-Phase Flows." Experimental Thermal and Fluid Science 33, no. 1 (October 1, 2008): 106-13. .. [3] Kim, Sung-Min, and Issam Mudawar. "Review of Databases and Predictive Methods for Pressure Drop in Adiabatic, Condensing and Boiling Mini/Micro-Channel Flows." International Journal of Heat and Mass Transfer 77 (October 2014): 74-97. doi:10.1016/j.ijheatmasstransfer.2014.04.035. .. [4] Aung, NZ, and T. Yuwono. "Evaluation of Mixture Viscosity Models in the Prediction of Two-Phase Flow Pressure Drops." ASEAN Journal on Science and Technology for Development 29, no. 2 (2012). ''' return (x*mug/rhog + (1. - x)*mul/rhol)/(x/rhog + (1. - x)/rhol) liquid_gas_viscosity_correlations = {'Beattie Whalley': (Beattie_Whalley, 1), 'Fourar Bories': (Fourar_Bories, 1), 'Duckler': (Duckler, 1), 'McAdams': (McAdams, 0), 'Cicchitti': (Cicchitti, 0), 'Lin Kwok': (Lin_Kwok, 0)} liquid_gas_viscosity_correlations_list = ['Beattie Whalley', 'Fourar Bories', 'Duckler', 'McAdams', 'Cicchitti', 'Lin Kwok'] def gas_liquid_viscosity_methods(rhol=None, rhog=None, check_ranges=False): r'''This function returns a list of methods which can be used for calculating two-phase liquid-gas viscosity. Six calculation methods are available; three of them require only `x`, `mul`, and `mug`; the other three require `rhol` and `rhog` as well. Parameters ---------- rhol : float, optional Liquid density, [kg/m^3] rhog : float, optional Gas density, [kg/m^3] check_ranges : bool, optional Added for compatibility only, never used Returns ------- methods : list List of methods which can be used to calculate two-phase liquid-gas viscosity with the given inputs. Examples -------- >>> gas_liquid_viscosity_methods() ['McAdams', 'Cicchitti', 'Lin Kwok'] >>> gas_liquid_viscosity_methods(rhol=1000, rhog=2) ['Beattie Whalley', 'Fourar Bories', 'Duckler', 'McAdams', 'Cicchitti', 'Lin Kwok'] ''' methods = ['McAdams', 'Cicchitti', 'Lin Kwok'] if rhol is not None and rhog is not None: methods = liquid_gas_viscosity_correlations_list return methods _gas_liquid_viscosity_method_unknown = 'Method not recognized; available methods are %s' %list(liquid_gas_viscosity_correlations.keys()) def gas_liquid_viscosity(x, mul, mug, rhol=None, rhog=None, Method=None): r'''This function handles the calculation of two-phase liquid-gas viscosity. Six calculation methods are available; three of them require only `x`, `mul`, and `mug`; the other three require `rhol` and `rhog` as well. The 'McAdams' method will be used if no method is specified. The full list of correlation can be obtained with the `AvailableMethods` flag. **ALL OF THESE METHODS ARE ONLY SUGGESTED DEFINITIONS, POTENTIALLY USEFUL FOR EMPIRICAL WORK ONLY!** Parameters ---------- x : float Quality of fluid, [-] mul : float Viscosity of liquid, [Pa*s] mug : float Viscosity of gas, [Pa*s] rhol : float, optional Liquid density, [kg/m^3] rhog : float, optional Gas density, [kg/m^3] Returns ------- mu_lg : float Liquid-gas viscosity (**a suggested definition, potentially useful for empirical work only!**) [Pa*s] Other Parameters ---------------- Method : string, optional A string of the function name to use, as in the dictionary liquid_gas_viscosity_correlations. Notes ----- All of these models converge to the liquid or gas viscosity as the quality approaches either limits. Other definitions have been proposed, such as using only liquid viscosity. These values cannot just be plugged into single phase correlations! Examples -------- >>> gas_liquid_viscosity(x=0.4, mul=1E-3, mug=1E-5, rhol=850, rhog=1.2, Method='Duckler') 1.2092040385066917e-05 >>> gas_liquid_viscosity(x=0.4, mul=1E-3, mug=1E-5) 2.4630541871921184e-05 ''' if Method is None: Method = 'McAdams' if Method == 'Beattie Whalley': return Beattie_Whalley(x, mul, mug, rhol=rhol, rhog=rhog) elif Method == 'Fourar Bories': return Fourar_Bories(x, mul, mug, rhol=rhol, rhog=rhog) elif Method == 'Duckler': return Duckler(x, mul, mug, rhol=rhol, rhog=rhog) elif Method == 'McAdams': return McAdams(x, mul, mug) elif Method == 'Cicchitti': return Cicchitti(x, mul, mug) elif Method == 'Lin Kwok': return Lin_Kwok(x, mul, mug) else: raise ValueError(_gas_liquid_viscosity_method_unknown) fluids-1.0.22/fluids/nrlmsise00/0000755000175000017500000000000014302004506015664 5ustar nileshnileshfluids-1.0.22/fluids/nrlmsise00/README0000644000175000017500000000075414302004506016552 0ustar nileshnileshThis is a port of the NRLMSISE-00 atmospheric model to python based of the c version from Dominik Brodowski http://www.brodo.de/english/pub/nrlmsise/ It is used the same way as the c version is C program runtime 0.031-0.033 seconds Python runtime 0.038-0.041 seconds It runs at almost comparable speeds after running a few times To use, make an input class, and output class, and a flag class. Set the input and flags with the appropriate settings, then call gtd7(input, flags, output) fluids-1.0.22/fluids/nrlmsise00/nrlmsise_00_header.py0000644000175000017500000002117614302004506021710 0ustar nileshnilesh# -*- coding: utf-8 -*- """ 12/19/2013 Author: Joshua Milas Python Version: 3.3.2 The NRLMSISE-00 model 2001 ported to python Based off of Dominik Brodowski 20100516 version available here http://www.brodo.de/english/pub/nrlmsise/ This is the header of the program that contains all the classes The MIT License (MIT) Copyright (c) 2016 Joshua Milas Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. /* -------------------------------------------------------------------- */ /* --------- N R L M S I S E - 0 0 M O D E L 2 0 0 1 ---------- */ /* -------------------------------------------------------------------- */ /* This file is part of the NRLMSISE-00 C source code package - release * 20041227 * * The NRLMSISE-00 model was developed by Mike Picone, Alan Hedin, and * Doug Drob. They also wrote a NRLMSISE-00 distribution package in * FORTRAN which is available at * http://uap-www.nrl.navy.mil/models_web/msis/msis_home.htm * * Dominik Brodowski implemented and maintains this C version. You can * reach him at mail@brodo.de. See the file "DOCUMENTATION" for details, * and check http://www.brodo.de/english/pub/nrlmsise/index.html for * updated releases of this package. */ """ from __future__ import division __all__ = ['nrlmsise_flags', 'ap_array', 'nrlmsise_input', 'nrlmsise_output'] #/* ------------------------------------------------------------------- */ #/* ------------------------------- INPUT ----------------------------- */ #/* ------------------------------------------------------------------- */ class nrlmsise_flags(object): """ * Switches: to turn on and off particular variations use these switches. * 0 is off, 1 is on, and 2 is main effects off but cross terms on. * * Standard values are 0 for switch 0 and 1 for switches 1 to 23. The * array "switches" needs to be set accordingly by the calling program. * The arrays sw and swc are set internally. * * switches[i]: * i - explanation * ----------------- * 0 - output in centimeters instead of meters * 1 - F10.7 effect on mean * 2 - time independent * 3 - symmetrical annual * 4 - symmetrical semiannual * 5 - asymmetrical annual * 6 - asymmetrical semiannual * 7 - diurnal * 8 - semidiurnal * 9 - daily ap [when this is set to -1 (!) the pointer * ap_a in struct nrlmsise_input must * point to a struct ap_array] * 10 - all UT/long effects * 11 - longitudinal * 12 - UT and mixed UT/long * 13 - mixed AP/UT/LONG * 14 - terdiurnal * 15 - departures from diffusive equilibrium * 16 - all TINF var * 17 - all TLB var * 18 - all TN1 var * 19 - all S var * 20 - all TN2 var * 21 - all NLB var * 22 - all TN3 var * 23 - turbo scale height var """ def __init__(self): self.switches = [0.0]*24 self.sw = [0.0]*24 self.swc = [0.0]*24 class ap_array(object): """ * Array containing the following magnetic values: * 0 : daily AP * 1 : 3 hr AP index for current time * 2 : 3 hr AP index for 3 hrs before current time * 3 : 3 hr AP index for 6 hrs before current time * 4 : 3 hr AP index for 9 hrs before current time * 5 : Average of eight 3 hr AP indices from 12 to 33 hrs * prior to current time * 6 : Average of eight 3 hr AP indices from 36 to 57 hrs * prior to current time """ def __init__(self): self.a = [0.0]*7 class nrlmsise_input(object): """ /* * NOTES ON INPUT VARIABLES: * UT, Local Time, and Longitude are used independently in the * model and are not of equal importance for every situation. * For the most physically realistic calculation these three * variables should be consistent (lst=sec/3600 + g_long/15). * The Equation of Time departures from the above formula * for apparent local time can be included if available but * are of minor importance. * * f107 and f107A values used to generate the model correspond * to the 10.7 cm radio flux at the actual distance of the Earth * from the Sun rather than the radio flux at 1 AU. The following * site provides both classes of values: * ftp://ftp.ngdc.noaa.govS/STP/SOLAR_DATA/SOLAR_RADIO/FLUX/ * * f107, f107A, and ap effects are neither large nor well * established below 80 km and these parameters should be set to * 150., 150., and 4. respectively. */ """ def __init__(self, year=0, doy=0, sec=0.0, alt=0.0, g_lat=0.0, g_long=0.0, lst=0.0, f107A=0.0, f107=0.0, ap=0.0, ap_a=None): self.year = year #/* year, currently ignored */ self.doy = doy #/* day of year */ self.sec = sec #/* seconds in day (UT) */ self.alt = alt #/* altitude in kilometes */ self.g_lat = g_lat #/* geodetic latitude */ self.g_long = g_long #/* geodetic longitude */ self.lst = lst #/* local apparent solar time (hours), see note above */ self.f107A = f107A #/* 81 day average of F10.7 flux (centered on doy) */ self.f107 = f107 #/* daily F10.7 flux for previous day */ self.ap = ap #/* magnetic index(daily) */ self.ap_a = ap_a #/* see above */ Set as none for an idiot check #set flags.switches[9] = -1 to use this #/* ------------------------------------------------------------------- */ #/* ------------------------------ OUTPUT ----------------------------- */ #/* ------------------------------------------------------------------- */ class nrlmsise_output(object): """ /* * OUTPUT VARIABLES: * d[0] - HE NUMBER DENSITY(CM-3) * d[1] - O NUMBER DENSITY(CM-3) * d[2] - N2 NUMBER DENSITY(CM-3) * d[3] - O2 NUMBER DENSITY(CM-3) * d[4] - AR NUMBER DENSITY(CM-3) * d[5] - TOTAL MASS DENSITY(GM/CM3) [includes d[8] in td7d] * d[6] - H NUMBER DENSITY(CM-3) * d[7] - N NUMBER DENSITY(CM-3) * d[8] - Anomalous oxygen NUMBER DENSITY(CM-3) * t[0] - EXOSPHERIC TEMPERATURE * t[1] - TEMPERATURE AT ALT * * * O, H, and N are set to zero below 72.5 km * * t[0], Exospheric temperature, is set to global average for * altitudes below 120 km. The 120 km gradient is left at global * average value for altitudes below 72 km. * * d[5], TOTAL MASS DENSITY, is NOT the same for subroutines GTD7 * and GTD7D * * SUBROUTINE GTD7 -- d[5] is the sum of the mass densities of the * species labeled by indices 0-4 and 6-7 in output variable d. * This includes He, O, N2, O2, Ar, H, and N but does NOT include * anomalous oxygen (species index 8). * * SUBROUTINE GTD7D -- d[5] is the "effective total mass density * for drag" and is the sum of the mass densities of all species * in this model, INCLUDING anomalous oxygen. */ """ def __init__(self): self.d = [0.0]*9 #/* densities */ self.t = [0.0]*2 #/* temperatures */ #/* ------------------------------------------------------------------- */ #/* --------------------------- PROTOTYPES ---------------------------- */ #/* ------------------------------------------------------------------- */ # No prototypes are used here, these are here for reference ''' /* GTD7 */ /* Neutral Atmosphere Empircial Model from the surface to lower * exosphere. */ /* GTD7D */ /* This subroutine provides Effective Total Mass Density for output * d[5] which includes contributions from "anomalous oxygen" which can * affect satellite drag above 500 km. See the section "output" for * additional details. */ /* GTS7 */ /* Thermospheric portion of NRLMSISE-00 */ /* GHP7 */ /* To specify outputs at a pressure level (press) rather than at * an altitude. */ ''' fluids-1.0.22/fluids/nrlmsise00/LICENSE0000644000175000017500000000211514302004506016670 0ustar nileshnileshThe MIT License (MIT) Copyright (c) 2016 Joshua Milas Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.fluids-1.0.22/fluids/nrlmsise00/nrlmsise_00.py0000644000175000017500000014501614302004506020400 0ustar nileshnilesh# -*- coding: utf-8 -*- """ 12/19/2013 Author: Joshua Milas Python Version: 3.3.2 The NRLMSISE-00 model 2001 ported to python Based off of Dominik Brodowski 20100516 version available here http://www.brodo.de/english/pub/nrlmsise/ This is the main program that contains all the functions The MIT License (MIT) Copyright (c) 2016 Joshua Milas Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. /* -------------------------------------------------------------------- */ /* --------- N R L M S I S E - 0 0 M O D E L 2 0 0 1 ---------- */ /* -------------------------------------------------------------------- */ /* This file is part of the NRLMSISE-00 C source code package - release * 20041227 * * The NRLMSISE-00 model was developed by Mike Picone, Alan Hedin, and * Doug Drob. They also wrote a NRLMSISE-00 distribution package in * FORTRAN which is available at * http://uap-www.nrl.navy.mil/models_web/msis/msis_home.htm * * Dominik Brodowski implemented and maintains this C version. You can * reach him at mail@brodo.de. See the file "DOCUMENTATION" for details, * and check http://www.brodo.de/english/pub/nrlmsise/index.html for * updated releases of this package. */ """ from __future__ import division from .nrlmsise_00_header import * from .nrlmsise_00_data import * from math import sin, cos, pow, exp, log, sqrt __all__ = ['gtd7'] """ /* ------------------------------------------------------------------- */ /* ------------------------- SHARED VARIABLES ------------------------ */ /* ------------------------------------------------------------------- */ """ #/* PARMB */ gsurf = [0.0]; re_nrlmsise_00 = [0.0]; #/* GTS3C */ dd = 0.0; #/* DMIX */ dm04 = 0.0 dm16 = 0.0 dm28 = 0.0 dm32 = 0.0 dm40 = 0.0 dm01 = 0.0 dm14 = 0.0 #/* MESO7 */ meso_tn1 = [0.0]*5; meso_tn2 = [0.0]*4; meso_tn3 = [0.0]*5; meso_tgn1 = [0.0, 0.0]; meso_tgn2 = [0.0, 0.0]; meso_tgn3 = [0.0, 0.0]; #/* POWER7 */ #/* LOWER7 */ #Dont to need to do anyt of the externs, they are all here #/* LPOLY */ dfa = 0.0 plg = [[0.0 for _ in range(9)] for _ in range(4)] ctloc = 0.0 stloc = 0.0 c2tloc = 0.0 s2tloc = 0.0 s3tloc = 0.0 c3tloc = 0.0 apdf = 0.0 apt = [0.0]*4 #since rgas is used eerywehre usignthe same variable, ill make it glboal #rgas = 831.44621 #rgas = 831.4 """ /* ------------------------------------------------------------------- */ /* ------------------------------ TSELEC ----------------------------- */ /* ------------------------------------------------------------------- */ """ def tselec(flags): for i in range(24): if(i != 9): if(flags.switches[i]==1): flags.sw[i]=1 else: flags.sw[i]=0 if(flags.switches[i]>0): flags.swc[i]=1 else: flags.swc[i]=0 else: flags.sw[i]=flags.switches[i] flags.swc[i]=flags.switches[i] return """ /* ------------------------------------------------------------------- */ /* ------------------------------ GLATF ------------------------------ */ /* ------------------------------------------------------------------- */ """ def glatf(lat, gv, reff): dgtr = 1.74533E-2 c2 = cos(2.0*dgtr*lat) #Need to return these since the c program wants pointers to these gv[0] = 980.616 * (1.0 - 0.0026373 * c2) reff[0] = 2.0 * (gv[0]) / (3.085462E-6 + 2.27E-9 * c2) * 1.0E-5 #The may-be troubled line return #gv, rref """ /* ------------------------------------------------------------------- */ /* ------------------------------ CCOR ------------------------------- */ /* ------------------------------------------------------------------- */ """ def ccor(alt, r, h1, zh): """ /* CHEMISTRY/DISSOCIATION CORRECTION FOR MSIS MODELS * ALT - altitude * R - target ratio * H1 - transition scale length * ZH - altitude of 1/2 R */ """ e = (alt - zh) / h1 if(e>70.0): return 1.0 # exp(0) # pragma: no cover elif (e < -70.0): return exp(r) ex = exp(e) e = r / (1.0 + ex) return exp(e) ''' /* ------------------------------------------------------------------- */ /* ------------------------------ CCOR ------------------------------- */ /* ------------------------------------------------------------------- */ ''' def ccor2(alt, r, h1, zh, h2): ''' /* CHEMISTRY/DISSOCIATION CORRECTION FOR MSIS MODELS * ALT - altitude * R - target ratio * H1 - transition scale length * ZH - altitude of 1/2 R * H2 - transition scale length #2 ? */ ''' e1 = (alt - zh) / h1; e2 = (alt - zh) / h2; if ((e1 > 70.0) or (e2 > 70)): # pragma: no cover return 1.0 # exp(0) if ((e1 < -70) and (e2 < -70)): # pragma: no cover return exp(r) ex1 = exp(e1); ex2 = exp(e2); ccor2v = r / (1.0 + 0.5 * (ex1 + ex2)); return exp(ccor2v); """ /* ------------------------------------------------------------------- */ /* ------------------------------- SCALH ----------------------------- */ /* ------------------------------------------------------------------- */ """ def scalh(alt, xm, temp): #rgas = 831.44621 #maybe make this a global constant? rgas = 831.4 g = gsurf[0] / (pow( (1.0 + alt/re_nrlmsise_00[0]),2.0)) g = rgas * temp / (g * xm) return g ''' /* ------------------------------------------------------------------- */ /* -------------------------------- DNET ----------------------------- */ /* ------------------------------------------------------------------- */ ''' def dnet(dd, dm, zhm, xmm, xm): ''' /* TURBOPAUSE CORRECTION FOR MSIS MODELS * Root mean density * DD - diffusive density * DM - full mixed density * ZHM - transition scale length * XMM - full mixed molecular weight * XM - species molecular weight * DNET - combined density */ ''' a = zhm / (xmm-xm) if( not((dm>0) and (dd>0))): # pragma: no cover if((dd==0) and (dm==0)): dd=1 if(dm==0): return dd if(dd==0): return dm ylog = a * log(dm/dd) if(ylog < -10.0): return dd if(ylog>10.0): # pragma: no cover return dm a = dd*pow((1.0 + exp(ylog)),(1.0/a)) return a ''' /* ------------------------------------------------------------------- */ /* ------------------------------- SPLINI ---------------------------- */ /* ------------------------------------------------------------------- */ ''' def splini(xa, ya, y2a, n, x, y): ''' /* INTEGRATE CUBIC SPLINE FUNCTION FROM XA(1) TO X * XA,YA: ARRAYS OF TABULATED FUNCTION IN ASCENDING ORDER BY X * Y2A: ARRAY OF SECOND DERIVATIVES * N: SIZE OF ARRAYS XA,YA,Y2A * X: ABSCISSA ENDPOINT FOR INTEGRATION * Y: OUTPUT VALUE */ ''' yi = 0 klo = 0 khi = 1 while((x>xa[klo]) and (khi1): k=int((khi+klo)/2); if (xa[k]>x): khi = k else: klo = k h = xa[khi] - xa[klo]; a = (xa[khi] - x)/h; b = (x - xa[klo])/h; yi = a * ya[klo] + b * ya[khi] + ((a*a*a - a) * y2a[klo] + (b*b*b - b) * y2a[khi]) * h * h/6.0; y[0] = yi #may not need this return #yi #or this ''' /* ------------------------------------------------------------------- */ /* ------------------------------- SPLINE ---------------------------- */ /* ------------------------------------------------------------------- */ ''' def spline(x, y, n, yp1, ypn, y2): ''' /* CALCULATE 2ND DERIVATIVES OF CUBIC SPLINE INTERP FUNCTION * ADAPTED FROM NUMERICAL RECIPES BY PRESS ET AL * X,Y: ARRAYS OF TABULATED FUNCTION IN ASCENDING ORDER BY X * N: SIZE OF ARRAYS X,Y * YP1,YPN: SPECIFIED DERIVATIVES AT X[0] AND X[N-1]; VALUES * >= 1E30 SIGNAL SIGNAL SECOND DERIVATIVE ZERO * Y2: OUTPUT ARRAY OF SECOND DERIVATIVES */ ''' u = [0.0]*n #I think this is the same as malloc #no need for the out of memory if (yp1 > 0.99E30): # pragma: no cover y2[0] = 0 u[0] = 0 else: y2[0]=-0.5 u[0]=(3.0/(x[1]-x[0]))*((y[1]-y[0])/(x[1]-x[0])-yp1) for i in range(1, n-1): sig = (x[i]-x[i-1])/(x[i+1] - x[i-1]) p = sig * y2[i-1] + 2.0 y2[i] = (sig - 1.0) / p u[i] = (6.0 * ((y[i+1] - y[i])/(x[i+1] - x[i]) -(y[i] - y[i-1]) / (x[i] - x[i-1]))/(x[i+1] - x[i-1]) - sig * u[i-1])/p; if (ypn>0.99E30): # pragma: no cover qn = 0; un = 0 else: qn = 0.5 un = (3.0 / (x[n-1] - x[n-2])) * (ypn - (y[n-1] - y[n-2])/(x[n-1] - x[n-2])); y2[n-1] = (un - qn * u[n-2]) / (qn * y2[n-2] + 1.0); #it uses a for loop here, but its not something python can do (I dont think) k = n-2 while(k >= 0): y2[k] = y2[k] * y2[k+1] + u[k] k -= 1 #This for loop might work #for k in range(n-2, -1, -1): # y2[k] = y2[k] * y2[k+1] + u[k] #no need to free u here return ''' /* ------------------------------------------------------------------- */ /* ------------------------------- DENSM ----------------------------- */ /* ------------------------------------------------------------------- */ ''' def zeta(zz, zl): return ((zz-zl)*(re_nrlmsise_00[0]+zl)/(re_nrlmsise_00[0]+zz)) #re is the global variable def densm(alt, d0, xm, tz, mn3, zn3, tn3, tgn3, mn2, zn2, tn2, tgn2): ''' /* Calculate Temperature and Density Profiles for lower atmos. */ ''' xs = [0.0]*10 ys = [0.0]*10 y2out = [0.0]*10 rgas = 831.4 #rgas = 831.44621 #maybe make this a global constant? densm_tmp=d0 if (alt>zn2[0]): # pragma: no cover if(xm==0.0): return tz[0] else: return d0 #/* STRATOSPHERE/MESOSPHERE TEMPERATURE */ if (alt>zn2[mn2-1]): z=alt else: z=zn2[mn2-1]; mn=mn2; z1=zn2[0]; z2=zn2[mn-1]; t1=tn2[0]; t2=tn2[mn-1]; zg = zeta(z, z1); zgdif = zeta(z2, z1); #/* set up spline nodes */ for k in range(mn): xs[k]=zeta(zn2[k],z1)/zgdif; ys[k]=1.0 / tn2[k]; yd1=-tgn2[0] / (t1*t1) * zgdif; yd2=-tgn2[1] / (t2*t2) * zgdif * (pow(((re_nrlmsise_00[0]+z2)/(re_nrlmsise_00[0]+z1)),2.0)); #/* calculate spline coefficients */ spline (xs, ys, mn, yd1, yd2, y2out); #No need to change this x = zg/zgdif; y = [0.0] splint (xs, ys, y2out, mn, x, y); #/* temperature at altitude */ tz[0] = 1.0 / y[0]; if (xm!=0.0): #/* calaculate stratosphere / mesospehere density */ glb = gsurf[0] / (pow((1.0 + z1/re_nrlmsise_00[0]),2.0)); gamm = xm * glb * zgdif / rgas; #/* Integrate temperature profile */ yi = [0.0] splini(xs, ys, y2out, mn, x, yi); expl=gamm*yi[0]; if (expl>50.0): # pragma: no cover expl=50.0 #/* Density at altitude */ densm_tmp = densm_tmp * (t1 / tz[0]) * exp(-expl); if (alt>zn3[0]): if (xm==0.0): return tz[0] else: return densm_tmp #/* troposhere / stratosphere temperature */ z = alt; mn = mn3; z1=zn3[0]; z2=zn3[mn-1]; t1=tn3[0]; t2=tn3[mn-1]; zg=zeta(z,z1); zgdif=zeta(z2,z1); #/* set up spline nodes */ for k in range(mn): xs[k] = zeta(zn3[k],z1) / zgdif; ys[k] = 1.0 / tn3[k]; yd1=-tgn3[0] / (t1*t1) * zgdif; yd2=-tgn3[1] / (t2*t2) * zgdif * (pow(((re_nrlmsise_00[0]+z2)/(re_nrlmsise_00[0]+z1)),2.0)); #/* calculate spline coefficients */ spline (xs, ys, mn, yd1, yd2, y2out); x = zg/zgdif; y = [0.0] splint (xs, ys, y2out, mn, x, y); #/* temperature at altitude */ tz[0] = 1.0 / y[0]; if (xm!=0.0): #/* calaculate tropospheric / stratosphere density */ glb = gsurf[0] / (pow((1.0 + z1/re_nrlmsise_00[0]),2.0)); gamm = xm * glb * zgdif / rgas; #/* Integrate temperature profile */ yi = [0.0] splini(xs, ys, y2out, mn, x, yi); expl=gamm*yi[0]; if (expl>50.0): # pragma: no cover expl=50.0; #/* Density at altitude */ densm_tmp = densm_tmp * (t1 / tz[0]) * exp(-expl); if (xm==0.0): return tz[0]; else: return densm_tmp; ''' /* ------------------------------------------------------------------- */ /* ------------------------------- DENSU ----------------------------- */ /* ------------------------------------------------------------------- */ ''' def densu(alt, dlb, tinf, tlb, xm, alpha, tz, zlb, s2, mn1, zn1, tn1, tgn1): ''' /* Calculate Temperature and Density Profiles for MSIS models * New lower thermo polynomial */ tz, zn1, tn1, and tgn1 are simulated pointers ''' rgas = 831.4 #rgas = 831.44621 #maybe make this a global constant? densu_temp = 1.0 xs = [0.0]*5 ys = [0.0]*5 y2out = [0.0]*5 #/* joining altitudes of Bates and spline */ za=zn1[0]; if (alt>za): z=alt; else: z=za; #/* geopotential altitude difference from ZLB */ zg2 = zeta(z, zlb); #/* Bates temperature */ tt = tinf - (tinf - tlb) * exp(-s2*zg2); ta = tt; tz[0] = tt densu_temp = tz[0] if (altzn1[mn1-1]): z=alt; else: z=zn1[mn1-1]; mn=mn1; z1=zn1[0]; z2=zn1[mn-1]; t1=tn1[0]; t2=tn1[mn-1]; #/* geopotental difference from z1 */ zg = zeta (z, z1); zgdif = zeta(z2, z1); #/* set up spline nodes */ for k in range(mn): xs[k] = zeta(zn1[k], z1) / zgdif; ys[k] = 1.0 / tn1[k]; #/* end node derivatives */ yd1 = -tgn1[0] / (t1*t1) * zgdif; yd2 = -tgn1[1] / (t2*t2) * zgdif * pow(((re_nrlmsise_00[0]+z2)/(re_nrlmsise_00[0]+z1)),2.0); #/* calculate spline coefficients */ spline (xs, ys, mn, yd1, yd2, y2out); x = zg / zgdif; y = [0.0] splint (xs, ys, y2out, mn, x, y); #/* temperature at altitude */ tz[0] = 1.0 / y[0]; densu_temp = tz[0]; if (xm==0): return densu_temp; #/* calculate density above za */ glb = gsurf[0] / pow((1.0 + zlb/re_nrlmsise_00[0]),2.0); gamma = xm * glb / (s2 * rgas * tinf); expl = exp(-s2 * gamma * zg2); if (expl>50.0): # pragma: no cover expl=50.0; if (tt<=0): # pragma: no cover expl=50.0; #/* density at altitude */ densa = dlb * pow((tlb/tt),((1.0+alpha+gamma))) * expl; densu_temp=densa; if (alt>=za): return densu_temp; #/* calculate density below za */ glb = gsurf[0] / pow((1.0 + z1/re_nrlmsise_00[0]),2.0); gamm = xm * glb * zgdif / rgas; #/* integrate spline temperatures */ yi = [0] splini (xs, ys, y2out, mn, x, yi); expl = gamm * yi[0]; if (expl>50.0): # pragma: no cover expl=50.0; if (tz[0]<=0): # pragma: no cover expl=50.0; #/* density at altitude */ densu_temp = densu_temp * pow ((t1 / tz[0]),(1.0 + alpha)) * exp(-expl); return densu_temp; ''' /* ------------------------------------------------------------------- */ /* ------------------------------- GLOBE7 ---------------------------- */ /* ------------------------------------------------------------------- */ ''' #/* 3hr Magnetic activity functions */ #/* Eq. A24d */ def g0_nrlmsise00(a, p): return (a - 4.0 + (p[25] - 1.0) * (a - 4.0 + (exp(-sqrt(p[24]*p[24]) * (a - 4.0)) - 1.0) / sqrt(p[24]*p[24]))); #/* Eq. A24c */ def sumex(ex): return (1.0 + (1.0 - pow(ex,19.0)) / (1.0 - ex) * pow(ex,0.5)); #/* Eq. A24a */ def sg0(ex, p, ap): return (g0_nrlmsise00(ap[1], p) + (g0_nrlmsise00(ap[2], p)*ex + g0_nrlmsise00(ap[3], p)*ex*ex + \ g0_nrlmsise00(ap[4], p)*pow(ex, 3.0) + (g0_nrlmsise00(ap[5], p)*pow(ex, 4.0) + \ g0_nrlmsise00(ap[6], p)*pow(ex, 12.0))*(1.0 - pow(ex, 8.0))/(1.0 - ex)))/sumex(ex); def globe7(p, Input, flags): ''' /* CALCULATE G(L) FUNCTION * Upper Thermosphere Parameters */ ''' t = [0]*15 #modified this, there was a for loop that did this sw9 = 1 sr = 7.2722E-5; dgtr = 1.74533E-2; dr = 1.72142E-2; hr = 0.2618; tloc = Input.lst #for j in range(14): # t[j] = 0 if(flags.sw[9] > 0): sw9 = 1 elif(flags.sw[9] < 0): # pragma: no cover sw9 = -1 xlong = Input.g_long #/* calculate legendre polynomials */ c = sin(Input.g_lat * dgtr); s = cos(Input.g_lat * dgtr); c2 = c*c; c4 = c2*c2; s2 = s*s; plg[0][1] = c; plg[0][2] = 0.5*(3.0*c2 -1.0); plg[0][3] = 0.5*(5.0*c*c2-3.0*c); plg[0][4] = (35.0*c4 - 30.0*c2 + 3.0)/8.0; plg[0][5] = (63.0*c2*c2*c - 70.0*c2*c + 15.0*c)/8.0; plg[0][6] = (11.0*c*plg[0][5] - 5.0*plg[0][4])/6.0; #/* plg[0][7] = (13.0*c*plg[0][6] - 6.0*plg[0][5])/7.0; */ plg[1][1] = s; plg[1][2] = 3.0*c*s; plg[1][3] = 1.5*(5.0*c2-1.0)*s; plg[1][4] = 2.5*(7.0*c2*c-3.0*c)*s; plg[1][5] = 1.875*(21.0*c4 - 14.0*c2 +1.0)*s; plg[1][6] = (11.0*c*plg[1][5]-6.0*plg[1][4])/5.0; #/* plg[1][7] = (13.0*c*plg[1][6]-7.0*plg[1][5])/6.0; */ #/* plg[1][8] = (15.0*c*plg[1][7]-8.0*plg[1][6])/7.0; */ plg[2][2] = 3.0*s2; plg[2][3] = 15.0*s2*c; plg[2][4] = 7.5*(7.0*c2 -1.0)*s2; plg[2][5] = 3.0*c*plg[2][4]-2.0*plg[2][3]; plg[2][6] =(11.0*c*plg[2][5]-7.0*plg[2][4])/4.0; plg[2][7] =(13.0*c*plg[2][6]-8.0*plg[2][5])/5.0; plg[3][3] = 15.0*s2*s; plg[3][4] = 105.0*s2*s*c; plg[3][5] =(9.0*c*plg[3][4]-7.*plg[3][3])/2.0; plg[3][6] =(11.0*c*plg[3][5]-8.*plg[3][4])/3.0; if( not (((flags.sw[7]==0) and (flags.sw[8]==0)) and (flags.sw[14] == 0))): global stloc stloc = sin(hr*tloc); global ctloc ctloc = cos(hr*tloc); global s2tloc s2tloc = sin(2.0*hr*tloc); global c2tloc c2tloc = cos(2.0*hr*tloc); global s3tloc s3tloc = sin(3.0*hr*tloc); global c3tloc c3tloc = cos(3.0*hr*tloc); cd32 = cos(dr*(Input.doy-p[31])); cd18 = cos(2.0*dr*(Input.doy-p[17])); cd14 = cos(dr*(Input.doy-p[13])); cd39 = cos(2.0*dr*(Input.doy-p[38])); p32=p[31]; p18=p[17]; p14=p[13]; p39=p[38]; #/* F10.7 EFFECT */ df = Input.f107 - Input.f107A; global dfa dfa = Input.f107A - 150.0; t[0] = p[19]*df*(1.0+p[59]*dfa) + p[20]*df*df + p[21]*dfa + p[29]*pow(dfa,2.0); f1 = 1.0 + (p[47]*dfa +p[19]*df+p[20]*df*df)*flags.swc[1]; f2 = 1.0 + (p[49]*dfa+p[19]*df+p[20]*df*df)*flags.swc[1]; #/* TIME INDEPENDENT */ t[1] = (p[1]*plg[0][2]+ p[2]*plg[0][4]+p[22]*plg[0][6]) + \ (p[14]*plg[0][2])*dfa*flags.swc[1] +p[26]*plg[0][1]; #/* SYMMETRICAL ANNUAL */ t[2] = p[18]*cd32; #/* SYMMETRICAL SEMIANNUAL */ t[3] = (p[15]+p[16]*plg[0][2])*cd18; #/* ASYMMETRICAL ANNUAL */ t[4] = f1*(p[9]*plg[0][1]+p[10]*plg[0][3])*cd14; #/* ASYMMETRICAL SEMIANNUAL */ t[5] = p[37]*plg[0][1]*cd39; #/* DIURNAL */ if (flags.sw[7]): t71 = (p[11]*plg[1][2])*cd14*flags.swc[5]; t72 = (p[12]*plg[1][2])*cd14*flags.swc[5]; t[6] = f2*((p[3]*plg[1][1] + p[4]*plg[1][3] + p[27]*plg[1][5] + t71) * \ ctloc + (p[6]*plg[1][1] + p[7]*plg[1][3] + p[28]*plg[1][5] \ + t72)*stloc); #/* SEMIDIURNAL */ if (flags.sw[8]): t81 = (p[23]*plg[2][3]+p[35]*plg[2][5])*cd14*flags.swc[5]; t82 = (p[33]*plg[2][3]+p[36]*plg[2][5])*cd14*flags.swc[5]; t[7] = f2*((p[5]*plg[2][2]+ p[41]*plg[2][4] + t81)*c2tloc +(p[8]*plg[2][2] + p[42]*plg[2][4] + t82)*s2tloc); #/* TERDIURNAL */ if (flags.sw[14]): t[13] = f2 * ((p[39]*plg[3][3]+(p[93]*plg[3][4]+p[46]*plg[3][6])*cd14*flags.swc[5])* s3tloc +(p[40]*plg[3][3]+(p[94]*plg[3][4]+p[48]*plg[3][6])*cd14*flags.swc[5])* c3tloc); #/* magnetic activity based on daily ap */ if (flags.sw[9]==-1): ap = Input.ap_a; if (p[51]!=0): exp1 = exp(-10800.0*sqrt(p[51]*p[51])/(1.0+p[138]*(45.0-sqrt(Input.g_lat*Input.g_lat)))); if (exp1>0.99999): # pragma: no cover exp1=0.99999; if (p[24]<1.0E-4): # pragma: no cover p[24]=1.0E-4; apt[0]=sg0(exp1,p,ap.a); #/* apt[1]=sg2(exp1,p,ap->a); # apt[2]=sg0(exp2,p,ap->a); # apt[3]=sg2(exp2,p,ap->a); #*/ if (flags.sw[9]): t[8] = apt[0]*(p[50]+p[96]*plg[0][2]+p[54]*plg[0][4]+ \ (p[125]*plg[0][1]+p[126]*plg[0][3]+p[127]*plg[0][5])*cd14*flags.swc[5]+ \ (p[128]*plg[1][1]+p[129]*plg[1][3]+p[130]*plg[1][5])*flags.swc[7]* \ cos(hr*(tloc-p[131]))); else: apd=Input.ap-4.0; p44=p[43]; p45=p[44]; if (p44<0): # pragma: no cover p44 = 1.0E-5; global apdf apdf = apd + (p45-1.0)*(apd + (exp(-p44 * apd) - 1.0)/p44); if (flags.sw[9]): t[8]=apdf*(p[32]+p[45]*plg[0][2]+p[34]*plg[0][4]+ \ (p[100]*plg[0][1]+p[101]*plg[0][3]+p[102]*plg[0][5])*cd14*flags.swc[5]+ (p[121]*plg[1][1]+p[122]*plg[1][3]+p[123]*plg[1][5])*flags.swc[7]* cos(hr*(tloc-p[124]))); if ((flags.sw[10]) and (Input.g_long>-1000.0)): #/* longitudinal */ if (flags.sw[11]): t[10] = (1.0 + p[80]*dfa*flags.swc[1])* \ ((p[64]*plg[1][2]+p[65]*plg[1][4]+p[66]*plg[1][6]\ +p[103]*plg[1][1]+p[104]*plg[1][3]+p[105]*plg[1][5]\ +flags.swc[5]*(p[109]*plg[1][1]+p[110]*plg[1][3]+p[111]*plg[1][5])*cd14)* \ cos(dgtr*Input.g_long) \ +(p[90]*plg[1][2]+p[91]*plg[1][4]+p[92]*plg[1][6]\ +p[106]*plg[1][1]+p[107]*plg[1][3]+p[108]*plg[1][5]\ +flags.swc[5]*(p[112]*plg[1][1]+p[113]*plg[1][3]+p[114]*plg[1][5])*cd14)* \ sin(dgtr*Input.g_long)); #/* ut and mixed ut, longitude */ if (flags.sw[12]): t[11]=(1.0+p[95]*plg[0][1])*(1.0+p[81]*dfa*flags.swc[1])*\ (1.0+p[119]*plg[0][1]*flags.swc[5]*cd14)*\ ((p[68]*plg[0][1]+p[69]*plg[0][3]+p[70]*plg[0][5])*\ cos(sr*(Input.sec-p[71]))); t[11]+=flags.swc[11]*\ (p[76]*plg[2][3]+p[77]*plg[2][5]+p[78]*plg[2][7])*\ cos(sr*(Input.sec-p[79])+2.0*dgtr*Input.g_long)*(1.0+p[137]*dfa*flags.swc[1]); #/* ut, longitude magnetic activity */ if (flags.sw[13]): if (flags.sw[9]==-1): if (p[51]): t[12]=apt[0]*flags.swc[11]*(1.+p[132]*plg[0][1])*\ ((p[52]*plg[1][2]+p[98]*plg[1][4]+p[67]*plg[1][6])*\ cos(dgtr*(Input.g_long-p[97])))\ +apt[0]*flags.swc[11]*flags.swc[5]*\ (p[133]*plg[1][1]+p[134]*plg[1][3]+p[135]*plg[1][5])*\ cd14*cos(dgtr*(Input.g_long-p[136])) \ +apt[0]*flags.swc[12]* \ (p[55]*plg[0][1]+p[56]*plg[0][3]+p[57]*plg[0][5])*\ cos(sr*(Input.sec-p[58])); else: t[12] = apdf*flags.swc[11]*(1.0+p[120]*plg[0][1])*\ ((p[60]*plg[1][2]+p[61]*plg[1][4]+p[62]*plg[1][6])*\ cos(dgtr*(Input.g_long-p[63])))\ +apdf*flags.swc[11]*flags.swc[5]* \ (p[115]*plg[1][1]+p[116]*plg[1][3]+p[117]*plg[1][5])* \ cd14*cos(dgtr*(Input.g_long-p[118])) \ + apdf*flags.swc[12]* \ (p[83]*plg[0][1]+p[84]*plg[0][3]+p[85]*plg[0][5])* \ cos(sr*(Input.sec-p[75])); #/* parms not used: 82, 89, 99, 139-149 */ tinf = p[30]; for i in range(14): tinf = tinf + abs(flags.sw[i+1])*t[i]; return tinf; ''' /* ------------------------------------------------------------------- */ /* ------------------------------- GLOB7S ---------------------------- */ /* ------------------------------------------------------------------- */ ''' def glob7s(p, Input, flags): ''' /* VERSION OF GLOBE FOR LOWER ATMOSPHERE 10/26/99 */ ''' pset = 2.0 t = [0.0]*14 dr=1.72142E-2; dgtr=1.74533E-2; #/* confirm parameter set */ if (p[99]==0): # pragma: no cover p[99]=pset; #for j in range(14): #Already taken care of # t[j]=0.0; cd32 = cos(dr*(Input.doy-p[31])); cd18 = cos(2.0*dr*(Input.doy-p[17])); cd14 = cos(dr*(Input.doy-p[13])); cd39 = cos(2.0*dr*(Input.doy-p[38])); p32=p[31]; p18=p[17]; p14=p[13]; p39=p[38]; #/* F10.7 */ t[0] = p[21]*dfa; #/* time independent */ t[1]=p[1]*plg[0][2] + p[2]*plg[0][4] + p[22]*plg[0][6] + p[26]*plg[0][1] + p[14]*plg[0][3] + p[59]*plg[0][5]; #/* SYMMETRICAL ANNUAL */ t[2]=(p[18]+p[47]*plg[0][2]+p[29]*plg[0][4])*cd32; #/* SYMMETRICAL SEMIANNUAL */ t[3]=(p[15]+p[16]*plg[0][2]+p[30]*plg[0][4])*cd18; #/* ASYMMETRICAL ANNUAL */ t[4]=(p[9]*plg[0][1]+p[10]*plg[0][3]+p[20]*plg[0][5])*cd14; #/* ASYMMETRICAL SEMIANNUAL */ t[5]=(p[37]*plg[0][1])*cd39; #/* DIURNAL */ if (flags.sw[7]): t71 = p[11]*plg[1][2]*cd14*flags.swc[5]; t72 = p[12]*plg[1][2]*cd14*flags.swc[5]; t[6] = ((p[3]*plg[1][1] + p[4]*plg[1][3] + t71) * ctloc + (p[6]*plg[1][1] + p[7]*plg[1][3] + t72) * stloc) ; #/* SEMIDIURNAL */ if (flags.sw[8]): t81 = (p[23]*plg[2][3]+p[35]*plg[2][5])*cd14*flags.swc[5]; t82 = (p[33]*plg[2][3]+p[36]*plg[2][5])*cd14*flags.swc[5]; t[7] = ((p[5]*plg[2][2] + p[41]*plg[2][4] + t81) * c2tloc + (p[8]*plg[2][2] + p[42]*plg[2][4] + t82) * s2tloc); #/* TERDIURNAL */ if (flags.sw[14]): t[13] = p[39] * plg[3][3] * s3tloc + p[40] * plg[3][3] * c3tloc; #/* MAGNETIC ACTIVITY */ if (flags.sw[9]): if (flags.sw[9]==1): t[8] = apdf * (p[32] + p[45] * plg[0][2] * flags.swc[2]); if (flags.sw[9]==-1): t[8]=(p[50]*apt[0] + p[96]*plg[0][2] * apt[0]*flags.swc[2]); #/* LONGITUDINAL */ if ( not((flags.sw[10]==0) or (flags.sw[11]==0) or (Input.g_long<=-1000.0))): t[10] = (1.0 + plg[0][1]*(p[80]*flags.swc[5]*cos(dr*(Input.doy-p[81]))\ +p[85]*flags.swc[6]*cos(2.0*dr*(Input.doy-p[86])))\ +p[83]*flags.swc[3]*cos(dr*(Input.doy-p[84]))\ +p[87]*flags.swc[4]*cos(2.0*dr*(Input.doy-p[88])))\ *((p[64]*plg[1][2]+p[65]*plg[1][4]+p[66]*plg[1][6]\ +p[74]*plg[1][1]+p[75]*plg[1][3]+p[76]*plg[1][5]\ )*cos(dgtr*Input.g_long)\ +(p[90]*plg[1][2]+p[91]*plg[1][4]+p[92]*plg[1][6]\ +p[77]*plg[1][1]+p[78]*plg[1][3]+p[79]*plg[1][5]\ )*sin(dgtr*Input.g_long)); tt=0; for i in range(14): tt+=abs(flags.sw[i+1])*t[i]; return tt; ''' /* ------------------------------------------------------------------- */ /* ------------------------------- GTD7 ------------------------------ */ /* ------------------------------------------------------------------- */ ''' def gtd7(Input, flags, output): """The standard model subroutine (GTD7) always computes the. ‘‘thermospheric’’ mass density by explicitly summing the masses of the species in equilibrium at the thermospheric temperature T(z). """ mn3 = 5 zn3 = [32.5,20.0,15.0,10.0,0.0] mn2 = 4 zn2 = [72.5,55.0,45.0,32.5] zmix = 62.5 soutput = nrlmsise_output() tselec(flags); #/* Latitude variation of gravity (none for sw[2]=0) */ xlat=Input.g_lat; if (flags.sw[2]==0): # pragma: no cover xlat=45.0; glatf(xlat, gsurf, re_nrlmsise_00); xmm = pdm[2][4]; #/* THERMOSPHERE / MESOSPHERE (above zn2[0]) */ if (Input.alt>zn2[0]): altt=Input.alt; else: altt=zn2[0]; tmp=Input.alt; Input.alt=altt; gts7(Input, flags, soutput); altt=Input.alt; Input.alt=tmp; if (flags.sw[0]): # pragma: no cover #/* metric adjustment */ dm28m= dm28*1.0E6; else: dm28m = dm28; output.t[0]=soutput.t[0]; output.t[1]=soutput.t[1]; if (Input.alt>=zn2[0]): for i in range(9): output.d[i]=soutput.d[i]; return #/* LOWER MESOSPHERE/UPPER STRATOSPHERE (between zn3[0] and zn2[0]) #* Temperature at nodes and gradients at end nodes #* Inverse temperature a linear function of spherical harmonics #*/ meso_tgn2[0]=meso_tgn1[1]; meso_tn2[0]=meso_tn1[4]; meso_tn2[1]=pma[0][0]*pavgm[0]/(1.0-flags.sw[20]*glob7s(pma[0], Input, flags)); meso_tn2[2]=pma[1][0]*pavgm[1]/(1.0-flags.sw[20]*glob7s(pma[1], Input, flags)); meso_tn2[3]=pma[2][0]*pavgm[2]/(1.0-flags.sw[20]*flags.sw[22]*glob7s(pma[2], Input, flags)); meso_tgn2[1]=pavgm[8]*pma[9][0]*(1.0+flags.sw[20]*flags.sw[22]*glob7s(pma[9], Input, flags))*meso_tn2[3]*meso_tn2[3]/(pow((pma[2][0]*pavgm[2]),2.0)); meso_tn3[0]=meso_tn2[3]; if (Input.altzmix): dmc = 1.0 - (zn2[0]-Input.alt)/(zn2[0] - zmix); dz28=soutput.d[2]; #/**** N2 density ****/ dmr=soutput.d[2] / dm28m - 1.0; tz = [0.0] output.d[2]=densm(Input.alt,dm28m,xmm, tz, mn3, zn3, meso_tn3, meso_tgn3, mn2, zn2, meso_tn2, meso_tgn2); output.d[2]=output.d[2] * (1.0 + dmr*dmc); #/**** HE density ****/ dmr = soutput.d[0] / (dz28 * pdm[0][1]) - 1.0; output.d[0] = output.d[2] * pdm[0][1] * (1.0 + dmr*dmc); #/**** O density ****/ output.d[1] = 0; output.d[8] = 0; #/**** O2 density ****/ dmr = soutput.d[3] / (dz28 * pdm[3][1]) - 1.0; output.d[3] = output.d[2] * pdm[3][1] * (1.0 + dmr*dmc); #/**** AR density ***/ dmr = soutput.d[4] / (dz28 * pdm[4][1]) - 1.0; output.d[4] = output.d[2] * pdm[4][1] * (1.0 + dmr*dmc); #/**** Hydrogen density ****/ output.d[6] = 0; #/**** Atomic nitrogen density ****/ output.d[7] = 0; #/**** Total mass density */ output.d[5] = 1.66E-24 * (4.0 * output.d[0] + 16.0 * output.d[1] + 28.0 * output.d[2] + 32.0 * output.d[3] + 40.0 * output.d[4] + output.d[6] + 14.0 * output.d[7]); if (flags.sw[0]): # pragma: no cover output.d[5]=output.d[5]/1000; #/**** temperature at altitude ****/ global dd dd = densm(Input.alt, 1.0, 0, tz, mn3, zn3, meso_tn3, meso_tgn3, mn2, zn2, meso_tn2, meso_tgn2); output.t[1]=tz[0]; return ''' /* ------------------------------------------------------------------- */ /* ------------------------------- GTD7D ----------------------------- */ /* ------------------------------------------------------------------- */ ''' def gtd7d(Input, flags, output): # pragma: no cover """A separate subroutine (GTD7D) computes the ‘‘effec- tive’’ mass density by summing the thermospheric mass density and the mass density of the anomalous oxygen component. Below 500 km, the effective mass density is equivalent to the thermospheric mass density, and we drop the distinction. """ gtd7(Input, flags, output) output.d[5] = 1.66E-24 * (4.0 * output.d[0] + 16.0 * output.d[1] + 28.0 * output.d[2] + 32.0 * output.d[3] + 40.0 * output.d[4] + output.d[6] + 14.0 * output.d[7] + 16.0 * output.d[8]); if (flags.sw[0]): output.d[5]=output.d[5]/1000; return ''' /* ------------------------------------------------------------------- */ /* -------------------------------- GHP7 ----------------------------- */ /* ------------------------------------------------------------------- */ ''' def ghp7(Input, flags, output, press): # pragma: no cover bm = 1.3806E-19; rgas = 831.4; #rgas = 831.44621 #maybe make this a global constant? test = 0.00043; ltest = 12; pl = log10(press) if (pl >= -5.0): if (pl>2.5): zi = 18.06 * (3.00 - pl); elif ((pl>0.075) and (pl<=2.5)): zi = 14.98 * (3.08 - pl); elif ((pl>-1) and (pl<=0.075)): zi = 17.80 * (2.72 - pl); elif ((pl>-2) and (pl<=-1)): zi = 14.28 * (3.64 - pl); elif ((pl>-4) and (pl<=-2)): zi = 12.72 * (4.32 -pl); elif (pl<=-4): zi = 25.3 * (0.11 - pl); cl = Input.g_lat/90.0; cl2 = cl*cl; if (Input.doy<182): cd = (1.0 - float(Input.doy)) / 91.25; else: cd = (float(Input.doy)) / 91.25 - 3.0; ca = 0; if ((pl > -1.11) and (pl<=-0.23)): ca = 1.0; if (pl > -0.23): ca = (2.79 - pl) / (2.79 + 0.23); if ((pl <= -1.11) and (pl>-3)): ca = (-2.93 - pl)/(-2.93 + 1.11); z = zi - 4.87 * cl * cd * ca - 1.64 * cl2 * ca + 0.31 * ca * cl; else: z = 22.0 * pow((pl + 4.0),2.0) + 110.0; #/* iteration loop */ l = 0; while(True): l += 1; Input.alt = z; gtd7(Input, flags, output); z = Input.alt; xn = output.d[0] + output.d[1] + output.d[2] + output.d[3] + output.d[4] + output.d[6] + output.d[7]; p = bm * xn * output.t[1]; if (flags.sw[0]): p = p*1.0E-6; diff = pl - log10(p); if (sqrt(diff*diff) 72.5 km! */ ''' zn1 = [120.0, 110.0, 100.0, 90.0, 72.5] mn1 = 5 dgtr=1.74533E-2; dr=1.72142E-2; alpha = [-0.38, 0.0, 0.0, 0.0, 0.17, 0.0, -0.38, 0.0, 0.0] altl = [200.0, 300.0, 160.0, 250.0, 240.0, 450.0, 320.0, 450.0] za = pdl[1][15]; zn1[0] = za; for j in range(9): output.d[j]=0; #/* TINF VARIATIONS NOT IMPORTANT BELOW ZA OR ZN1(1) */ if (Input.alt>zn1[0]): tinf = ptm[0]*pt[0] * \ (1.0+flags.sw[16]*globe7(pt,Input,flags)); else: tinf = ptm[0]*pt[0]; output.t[0]=tinf; #/* GRADIENT VARIATIONS NOT IMPORTANT BELOW ZN1(5) */ if (Input.alt>zn1[4]): g0 = ptm[3]*ps[0] * \ (1.0+flags.sw[19]*globe7(ps,Input,flags)); else: g0 = ptm[3]*ps[0]; tlb = ptm[1] * (1.0 + flags.sw[17]*globe7(pd[3],Input,flags))*pd[3][0]; s = g0 / (tinf - tlb); #/* Lower thermosphere temp variations not significant for # * density above 300 km */ if (Input.alt<300.0): meso_tn1[1]=ptm[6]*ptl[0][0]/(1.0-flags.sw[18]*glob7s(ptl[0], Input, flags)); meso_tn1[2]=ptm[2]*ptl[1][0]/(1.0-flags.sw[18]*glob7s(ptl[1], Input, flags)); meso_tn1[3]=ptm[7]*ptl[2][0]/(1.0-flags.sw[18]*glob7s(ptl[2], Input, flags)); meso_tn1[4]=ptm[4]*ptl[3][0]/(1.0-flags.sw[18]*flags.sw[20]*glob7s(ptl[3], Input, flags)); meso_tgn1[1]=ptm[8]*pma[8][0]*(1.0+flags.sw[18]*flags.sw[20]*glob7s(pma[8], Input, flags))*meso_tn1[4]*meso_tn1[4]/(pow((ptm[4]*ptl[3][0]),2.0)); else: meso_tn1[1]=ptm[6]*ptl[0][0]; meso_tn1[2]=ptm[2]*ptl[1][0]; meso_tn1[3]=ptm[7]*ptl[2][0]; meso_tn1[4]=ptm[4]*ptl[3][0]; meso_tgn1[1]=ptm[8]*pma[8][0]*meso_tn1[4]*meso_tn1[4]/(pow((ptm[4]*ptl[3][0]),2.0)); z0 = zn1[3]; t0 = meso_tn1[3]; tr12 = 1.0; #/* N2 variation factor at Zlb */ g28=flags.sw[21]*globe7(pd[2], Input, flags); #/* VARIATION OF TURBOPAUSE HEIGHT */ zhf=pdl[1][24]*(1.0+flags.sw[5]*pdl[0][24]*sin(dgtr*Input.g_lat)*cos(dr*(Input.doy-pt[13]))); output.t[0]=tinf; xmm = pdm[2][4]; z = Input.alt; #/**** N2 DENSITY ****/ #/* Diffusive density at Zlb */ db28 = pdm[2][0]*exp(g28)*pd[2][0]; #/* Diffusive density at Alt */ RandomVariable = [output.t[1]] output.d[2]=densu(z,db28,tinf,tlb,28.0,alpha[2],RandomVariable,ptm[5],s,mn1,zn1,meso_tn1,meso_tgn1); output.t[1] = RandomVariable[0] dd=output.d[2]; #/* Turbopause */ zh28=pdm[2][2]*zhf; zhm28=pdm[2][3]*pdl[1][5]; xmd=28.0-xmm; #/* Mixed density at Zlb */ tz = [0] b28=densu(zh28,db28,tinf,tlb,xmd,(alpha[2]-1.0),tz,ptm[5],s,mn1, zn1,meso_tn1,meso_tgn1); if ((flags.sw[15]) and (z<=altl[2])): #/* Mixed density at Alt */ global dm28 dm28=densu(z,b28,tinf,tlb,xmm,alpha[2],tz,ptm[5],s,mn1,zn1,meso_tn1,meso_tgn1); #/* Net density at Alt */ output.d[2]=dnet(output.d[2],dm28,zhm28,xmm,28.0); #/**** HE DENSITY ****/ #/* Density variation factor at Zlb */ g4 = flags.sw[21]*globe7(pd[0], Input, flags); #/* Diffusive density at Zlb */ db04 = pdm[0][0]*exp(g4)*pd[0][0]; #/* Diffusive density at Alt */ RandomVariable = [output.t[1]] output.d[0]=densu(z,db04,tinf,tlb, 4.,alpha[0],RandomVariable,ptm[5],s,mn1,zn1,meso_tn1,meso_tgn1); output.t[1] = RandomVariable[0] dd=output.d[0]; if ((flags.sw[15]) and (z Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from . import nrlmsise_00 from . import nrlmsise_00_header from . import nrlmsise_00_data from .nrlmsise_00 import gtd7 from .nrlmsise_00_header import nrlmsise_output, nrlmsise_input, nrlmsise_flags, ap_array __all__ = ['nrlmsise_00', 'nrlmsise_00_header', 'nrlmsise_00_data'] __all__.extend(nrlmsise_00.__all__) __all__.extend(nrlmsise_00_header.__all__) fluids-1.0.22/fluids/nrlmsise00/nrlmsise_00_data.py0000644000175000017500000014031114302004506021362 0ustar nileshnilesh# -*- coding: utf-8 -*- """ 12/19/2013 Author: Joshua Milas Python Version: 3.3.2 The NRLMSISE-00 model 2001 ported to python Based off of Dominik Brodowski 20100516 version available here http://www.brodo.de/english/pub/nrlmsise/ This is the external data file used by the main program The MIT License (MIT) Copyright (c) 2016 Joshua Milas Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. /* -------------------------------------------------------------------- */ /* --------- N R L M S I S E - 0 0 M O D E L 2 0 0 1 ---------- */ /* -------------------------------------------------------------------- */ /* This file is part of the NRLMSISE-00 C source code package - release * 20041227 * * The NRLMSISE-00 model was developed by Mike Picone, Alan Hedin, and * Doug Drob. They also wrote a NRLMSISE-00 distribution package in * FORTRAN which is available at * http://uap-www.nrl.navy.mil/models_web/msis/msis_home.htm * * Dominik Brodowski implemented and maintains this C version. You can * reach him at mail@brodo.de. See the file "DOCUMENTATION" for details, * and check http://www.brodo.de/english/pub/nrlmsise/index.html for * updated releases of this package. */ """ from __future__ import division __all__ = ['pt', 'pd', 'ps', 'pdl', 'ptm', 'pdm', 'ptl', 'pma', 'sam', 'pavgm'] #TEMPERATURE pt = [9.86573E-01, 1.62228E-02, 1.55270E-02,-1.04323E-01,-3.75801E-03, -1.18538E-03,-1.24043E-01, 4.56820E-03, 8.76018E-03,-1.36235E-01, -3.52427E-02, 8.84181E-03,-5.92127E-03,-8.61650E+00, 0.00000E+00, 1.28492E-02, 0.00000E+00, 1.30096E+02, 1.04567E-02, 1.65686E-03, -5.53887E-06, 2.97810E-03, 0.00000E+00, 5.13122E-03, 8.66784E-02, 1.58727E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00,-7.27026E-06, 0.00000E+00, 6.74494E+00, 4.93933E-03, 2.21656E-03, 2.50802E-03, 0.00000E+00, 0.00000E+00,-2.08841E-02,-1.79873E+00, 1.45103E-03, 2.81769E-04,-1.44703E-03,-5.16394E-05, 8.47001E-02, 1.70147E-01, 5.72562E-03, 5.07493E-05, 4.36148E-03, 1.17863E-04, 4.74364E-03, 6.61278E-03, 4.34292E-05, 1.44373E-03, 2.41470E-05, 2.84426E-03, 8.56560E-04, 2.04028E-03, 0.00000E+00,-3.15994E+03,-2.46423E-03, 1.13843E-03, 4.20512E-04, 0.00000E+00,-9.77214E+01, 6.77794E-03, 5.27499E-03, 1.14936E-03, 0.00000E+00,-6.61311E-03,-1.84255E-02, -1.96259E-02, 2.98618E+04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 6.44574E+02, 8.84668E-04, 5.05066E-04, 0.00000E+00, 4.02881E+03, -1.89503E-03, 0.00000E+00, 0.00000E+00, 8.21407E-04, 2.06780E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, -1.20410E-02,-3.63963E-03, 9.92070E-05,-1.15284E-04,-6.33059E-05, -6.05545E-01, 8.34218E-03,-9.13036E+01, 3.71042E-04, 0.00000E+00, 4.19000E-04, 2.70928E-03, 3.31507E-03,-4.44508E-03,-4.96334E-03, -1.60449E-03, 3.95119E-03, 2.48924E-03, 5.09815E-04, 4.05302E-03, 2.24076E-03, 0.00000E+00, 6.84256E-03, 4.66354E-04, 0.00000E+00, -3.68328E-04, 0.00000E+00, 0.00000E+00,-1.46870E+02, 0.00000E+00, 0.00000E+00, 1.09501E-03, 4.65156E-04, 5.62583E-04, 3.21596E+00, 6.43168E-04, 3.14860E-03, 3.40738E-03, 1.78481E-03, 9.62532E-04, 5.58171E-04, 3.43731E+00,-2.33195E-01, 5.10289E-04, 0.00000E+00, 0.00000E+00,-9.25347E+04, 0.00000E+00,-1.99639E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00] pd = [ #/* HE DENSITY */ [ 1.09979E+00,-4.88060E-02,-1.97501E-01,-9.10280E-02,-6.96558E-03, 2.42136E-02, 3.91333E-01,-7.20068E-03,-3.22718E-02, 1.41508E+00, 1.68194E-01, 1.85282E-02, 1.09384E-01,-7.24282E+00, 0.00000E+00, 2.96377E-01,-4.97210E-02, 1.04114E+02,-8.61108E-02,-7.29177E-04, 1.48998E-06, 1.08629E-03, 0.00000E+00, 0.00000E+00, 8.31090E-02, 1.12818E-01,-5.75005E-02,-1.29919E-02,-1.78849E-02,-2.86343E-06, 0.00000E+00,-1.51187E+02,-6.65902E-03, 0.00000E+00,-2.02069E-03, 0.00000E+00, 0.00000E+00, 4.32264E-02,-2.80444E+01,-3.26789E-03, 2.47461E-03, 0.00000E+00, 0.00000E+00, 9.82100E-02, 1.22714E-01, -3.96450E-02, 0.00000E+00,-2.76489E-03, 0.00000E+00, 1.87723E-03, -8.09813E-03, 4.34428E-05,-7.70932E-03, 0.00000E+00,-2.28894E-03, -5.69070E-03,-5.22193E-03, 6.00692E-03,-7.80434E+03,-3.48336E-03, -6.38362E-03,-1.82190E-03, 0.00000E+00,-7.58976E+01,-2.17875E-02, -1.72524E-02,-9.06287E-03, 0.00000E+00, 2.44725E-02, 8.66040E-02, 1.05712E-01, 3.02543E+04, 0.00000E+00, 0.00000E+00, 0.00000E+00, -6.01364E+03,-5.64668E-03,-2.54157E-03, 0.00000E+00, 3.15611E+02, -5.69158E-03, 0.00000E+00, 0.00000E+00,-4.47216E-03,-4.49523E-03, 4.64428E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.51236E-02, 2.46520E-02, 6.17794E-03, 0.00000E+00, 0.00000E+00, -3.62944E-01,-4.80022E-02,-7.57230E+01,-1.99656E-03, 0.00000E+00, -5.18780E-03,-1.73990E-02,-9.03485E-03, 7.48465E-03, 1.53267E-02, 1.06296E-02, 1.18655E-02, 2.55569E-03, 1.69020E-03, 3.51936E-02, -1.81242E-02, 0.00000E+00,-1.00529E-01,-5.10574E-03, 0.00000E+00, 2.10228E-03, 0.00000E+00, 0.00000E+00,-1.73255E+02, 5.07833E-01, -2.41408E-01, 8.75414E-03, 2.77527E-03,-8.90353E-05,-5.25148E+00, -5.83899E-03,-2.09122E-02,-9.63530E-03, 9.77164E-03, 4.07051E-03, 2.53555E-04,-5.52875E+00,-3.55993E-01,-2.49231E-03, 0.00000E+00, 0.00000E+00, 2.86026E+01, 0.00000E+00, 3.42722E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00 ], #/* O DENSITY */ [ 1.02315E+00,-1.59710E-01,-1.06630E-01,-1.77074E-02,-4.42726E-03, 3.44803E-02, 4.45613E-02,-3.33751E-02,-5.73598E-02, 3.50360E-01, 6.33053E-02, 2.16221E-02, 5.42577E-02,-5.74193E+00, 0.00000E+00, 1.90891E-01,-1.39194E-02, 1.01102E+02, 8.16363E-02, 1.33717E-04, 6.54403E-06, 3.10295E-03, 0.00000E+00, 0.00000E+00, 5.38205E-02, 1.23910E-01,-1.39831E-02, 0.00000E+00, 0.00000E+00,-3.95915E-06, 0.00000E+00,-7.14651E-01,-5.01027E-03, 0.00000E+00,-3.24756E-03, 0.00000E+00, 0.00000E+00, 4.42173E-02,-1.31598E+01,-3.15626E-03, 1.24574E-03,-1.47626E-03,-1.55461E-03, 6.40682E-02, 1.34898E-01, -2.42415E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 6.13666E-04, -5.40373E-03, 2.61635E-05,-3.33012E-03, 0.00000E+00,-3.08101E-03, -2.42679E-03,-3.36086E-03, 0.00000E+00,-1.18979E+03,-5.04738E-02, -2.61547E-03,-1.03132E-03, 1.91583E-04,-8.38132E+01,-1.40517E-02, -1.14167E-02,-4.08012E-03, 1.73522E-04,-1.39644E-02,-6.64128E-02, -6.85152E-02,-1.34414E+04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 6.07916E+02,-4.12220E-03,-2.20996E-03, 0.00000E+00, 1.70277E+03, -4.63015E-03, 0.00000E+00, 0.00000E+00,-2.25360E-03,-2.96204E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.92786E-02, 1.31186E-02,-1.78086E-03, 0.00000E+00, 0.00000E+00, -3.90083E-01,-2.84741E-02,-7.78400E+01,-1.02601E-03, 0.00000E+00, -7.26485E-04,-5.42181E-03,-5.59305E-03, 1.22825E-02, 1.23868E-02, 6.68835E-03,-1.03303E-02,-9.51903E-03, 2.70021E-04,-2.57084E-02, -1.32430E-02, 0.00000E+00,-3.81000E-02,-3.16810E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-9.05762E-04,-2.14590E-03,-1.17824E-03, 3.66732E+00, -3.79729E-04,-6.13966E-03,-5.09082E-03,-1.96332E-03,-3.08280E-03, -9.75222E-04, 4.03315E+00,-2.52710E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00 ], #/* N2 DENSITY */ [ 1.16112E+00, 0.00000E+00, 0.00000E+00, 3.33725E-02, 0.00000E+00, 3.48637E-02,-5.44368E-03, 0.00000E+00,-6.73940E-02, 1.74754E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.74712E+02, 0.00000E+00, 1.26733E-01, 0.00000E+00, 1.03154E+02, 5.52075E-02, 0.00000E+00, 0.00000E+00, 8.13525E-04, 0.00000E+00, 0.00000E+00, 8.66784E-02, 1.58727E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.50482E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.48894E-03, 6.16053E-04,-5.79716E-04, 2.95482E-03, 8.47001E-02, 1.70147E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.47425E-05, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00 ], #/* TLB */ [ 9.44846E-01, 0.00000E+00, 0.00000E+00,-3.08617E-02, 0.00000E+00, -2.44019E-02, 6.48607E-03, 0.00000E+00, 3.08181E-02, 4.59392E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.74712E+02, 0.00000E+00, 2.13260E-02, 0.00000E+00,-3.56958E+02, 0.00000E+00, 1.82278E-04, 0.00000E+00, 3.07472E-04, 0.00000E+00, 0.00000E+00, 8.66784E-02, 1.58727E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.83054E-03, 0.00000E+00, 0.00000E+00, -1.93065E-03,-1.45090E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.23493E-03, 1.36736E-03, 8.47001E-02, 1.70147E-01, 3.71469E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.10250E-03, 2.47425E-05, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.68756E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00 ], #/* O2 DENSITY */ [ 1.35580E+00, 1.44816E-01, 0.00000E+00, 6.07767E-02, 0.00000E+00, 2.94777E-02, 7.46900E-02, 0.00000E+00,-9.23822E-02, 8.57342E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.38636E+01, 0.00000E+00, 7.71653E-02, 0.00000E+00, 8.18751E+01, 1.87736E-02, 0.00000E+00, 0.00000E+00, 1.49667E-02, 0.00000E+00, 0.00000E+00, 8.66784E-02, 1.58727E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-3.67874E+02, 5.48158E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 8.47001E-02, 1.70147E-01, 1.22631E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 8.17187E-03, 3.71617E-05, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.10826E-03, -3.13640E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, -7.35742E-02,-5.00266E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.94965E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00 ], #/* AR DENSITY */ [ 1.04761E+00, 2.00165E-01, 2.37697E-01, 3.68552E-02, 0.00000E+00, 3.57202E-02,-2.14075E-01, 0.00000E+00,-1.08018E-01,-3.73981E-01, 0.00000E+00, 3.10022E-02,-1.16305E-03,-2.07596E+01, 0.00000E+00, 8.64502E-02, 0.00000E+00, 9.74908E+01, 5.16707E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 8.66784E-02, 1.58727E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.46193E+02, 1.34297E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-3.48509E-03, -1.54689E-04, 0.00000E+00, 0.00000E+00, 8.47001E-02, 1.70147E-01, 1.47753E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.89320E-02, 3.68181E-05, 1.32570E-02, 0.00000E+00, 0.00000E+00, 3.59719E-03, 7.44328E-03,-1.00023E-03,-6.50528E+03, 0.00000E+00, 1.03485E-02,-1.00983E-03,-4.06916E-03,-6.60864E+01,-1.71533E-02, 1.10605E-02, 1.20300E-02,-5.20034E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, -2.62769E+03, 7.13755E-03, 4.17999E-03, 0.00000E+00, 1.25910E+04, 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.23595E-03, 4.60217E-03, 5.71794E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, -3.18353E-02,-2.35526E-02,-1.36189E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.03522E-02,-6.67837E+01,-1.09724E-03, 0.00000E+00, -1.38821E-02, 1.60468E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.51574E-02, -5.44470E-04, 0.00000E+00, 7.28224E-02, 6.59413E-02, 0.00000E+00, -5.15692E-03, 0.00000E+00, 0.00000E+00,-3.70367E+03, 0.00000E+00, 0.00000E+00, 1.36131E-02, 5.38153E-03, 0.00000E+00, 4.76285E+00, -1.75677E-02, 2.26301E-02, 0.00000E+00, 1.76631E-02, 4.77162E-03, 0.00000E+00, 5.39354E+00, 0.00000E+00,-7.51710E-03, 0.00000E+00, 0.00000E+00,-8.82736E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00 ], #/* H DENSITY */ [ 1.26376E+00,-2.14304E-01,-1.49984E-01, 2.30404E-01, 2.98237E-02, 2.68673E-02, 2.96228E-01, 2.21900E-02,-2.07655E-02, 4.52506E-01, 1.20105E-01, 3.24420E-02, 4.24816E-02,-9.14313E+00, 0.00000E+00, 2.47178E-02,-2.88229E-02, 8.12805E+01, 5.10380E-02,-5.80611E-03, 2.51236E-05,-1.24083E-02, 0.00000E+00, 0.00000E+00, 8.66784E-02, 1.58727E-01,-3.48190E-02, 0.00000E+00, 0.00000E+00, 2.89885E-05, 0.00000E+00, 1.53595E+02,-1.68604E-02, 0.00000E+00, 1.01015E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.84552E-04, -1.22181E-03, 0.00000E+00, 0.00000E+00, 8.47001E-02, 1.70147E-01, -1.04927E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00,-5.91313E-03, -2.30501E-02, 3.14758E-05, 0.00000E+00, 0.00000E+00, 1.26956E-02, 8.35489E-03, 3.10513E-04, 0.00000E+00, 3.42119E+03,-2.45017E-03, -4.27154E-04, 5.45152E-04, 1.89896E-03, 2.89121E+01,-6.49973E-03, -1.93855E-02,-1.48492E-02, 0.00000E+00,-5.10576E-02, 7.87306E-02, 9.51981E-02,-1.49422E+04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.65503E+02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 6.37110E-03, 3.24789E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 6.14274E-02, 1.00376E-02,-8.41083E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.27099E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, -3.94077E-03,-1.28601E-02,-7.97616E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-6.71465E-03,-1.69799E-03, 1.93772E-03, 3.81140E+00, -7.79290E-03,-1.82589E-02,-1.25860E-02,-1.04311E-02,-3.02465E-03, 2.43063E-03, 3.63237E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00 ], #/* N DENSITY */ [ 7.09557E+01,-3.26740E-01, 0.00000E+00,-5.16829E-01,-1.71664E-03, 9.09310E-02,-6.71500E-01,-1.47771E-01,-9.27471E-02,-2.30862E-01, -1.56410E-01, 1.34455E-02,-1.19717E-01, 2.52151E+00, 0.00000E+00, -2.41582E-01, 5.92939E-02, 4.39756E+00, 9.15280E-02, 4.41292E-03, 0.00000E+00, 8.66807E-03, 0.00000E+00, 0.00000E+00, 8.66784E-02, 1.58727E-01, 9.74701E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 6.70217E+01,-1.31660E-03, 0.00000E+00,-1.65317E-02, 0.00000E+00, 0.00000E+00, 8.50247E-02, 2.77428E+01, 4.98658E-03, 6.15115E-03, 9.50156E-03,-2.12723E-02, 8.47001E-02, 1.70147E-01, -2.38645E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.37380E-03, -8.41918E-03, 2.80145E-05, 7.12383E-03, 0.00000E+00,-1.66209E-02, 1.03533E-04,-1.68898E-02, 0.00000E+00, 3.64526E+03, 0.00000E+00, 6.54077E-03, 3.69130E-04, 9.94419E-04, 8.42803E+01,-1.16124E-02, -7.74414E-03,-1.68844E-03, 1.42809E-03,-1.92955E-03, 1.17225E-01, -2.41512E-02, 1.50521E+04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.60261E+03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-3.54403E-04,-1.87270E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.76439E-02, 6.43207E-03,-3.54300E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.80221E-02, 8.11228E+01,-6.75255E-04, 0.00000E+00, -1.05162E-02,-3.48292E-03,-6.97321E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.45546E-03,-1.31970E-02,-3.57751E-03,-1.09021E+00, -1.50181E-02,-7.12841E-03,-6.64590E-03,-3.52610E-03,-1.87773E-02, -2.22432E-03,-3.93895E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00 ], #/* HOT O DENSITY */ [ 6.04050E-02, 1.57034E+00, 2.99387E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.51018E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-8.61650E+00, 1.26454E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.50878E-03, 0.00000E+00, 0.00000E+00, 8.66784E-02, 1.58727E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 6.23881E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 8.47001E-02, 1.70147E-01, -9.45934E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00 ] ] #/* S PARAM */ ps = [9.56827E-01, 6.20637E-02, 3.18433E-02, 0.00000E+00, 0.00000E+00, 3.94900E-02, 0.00000E+00, 0.00000E+00,-9.24882E-03,-7.94023E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.74712E+02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.74677E-03, 0.00000E+00, 1.54951E-02, 8.66784E-02, 1.58727E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-6.99007E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.24362E-02,-5.28756E-03, 8.47001E-02, 1.70147E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.47425E-05, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00] #/* TURBO */ pdl = [ [ 1.09930E+00, 3.90631E+00, 3.07165E+00, 9.86161E-01, 1.63536E+01, 4.63830E+00, 1.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.28840E+00, 3.10302E-02, 1.18339E-01 ], [ 1.00000E+00, 7.00000E-01, 1.15020E+00, 3.44689E+00, 1.28840E+00, 1.00000E+00, 1.08738E+00, 1.22947E+00, 1.10016E+00, 7.34129E-01, 1.15241E+00, 2.22784E+00, 7.95046E-01, 4.01612E+00, 4.47749E+00, 1.23435E+02,-7.60535E-02, 1.68986E-06, 7.44294E-01, 1.03604E+00, 1.72783E+02, 1.15020E+00, 3.44689E+00,-7.46230E-01, 9.49154E-01 ] ] #/* LOWER BOUNDARY */ ptm = [1.04130E+03, 3.86000E+02, 1.95000E+02, 1.66728E+01, 2.13000E+02, 1.20000E+02, 2.40000E+02, 1.87000E+02,-2.00000E+00, 0.00000E+00] pdm = [ [2.45600E+07, 6.71072E-06, 1.00000E+02, 0.00000E+00, 1.10000E+02, 1.00000E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00 ], [ 8.59400E+10, 1.00000E+00, 1.05000E+02,-8.00000E+00, 1.10000E+02, 1.00000E+01, 9.00000E+01, 2.00000E+00, 0.00000E+00, 0.00000E+00 ], [ 2.81000E+11, 0.00000E+00, 1.05000E+02, 2.80000E+01, 2.89500E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00 ], [ 3.30000E+10, 2.68270E-01, 1.05000E+02, 1.00000E+00, 1.10000E+02, 1.00000E+01, 1.10000E+02,-1.00000E+01, 0.00000E+00, 0.00000E+00 ], [ 1.33000E+09, 1.19615E-02, 1.05000E+02, 0.00000E+00, 1.10000E+02, 1.00000E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00 ], [ 1.76100E+05, 1.00000E+00, 9.50000E+01,-8.00000E+00, 1.10000E+02, 1.00000E+01, 9.00000E+01, 2.00000E+00, 0.00000E+00, 0.00000E+00, ], [ 1.00000E+07, 1.00000E+00, 1.05000E+02,-8.00000E+00, 1.10000E+02, 1.00000E+01, 9.00000E+01, 2.00000E+00, 0.00000E+00, 0.00000E+00 ], [ 1.00000E+06, 1.00000E+00, 1.05000E+02,-8.00000E+00, 5.50000E+02, 7.60000E+01, 9.00000E+01, 2.00000E+00, 0.00000E+00, 4.00000E+03 ]] ptl = [ #/* TN1(2) */ [ 1.00858E+00, 4.56011E-02,-2.22972E-02,-5.44388E-02, 5.23136E-04, -1.88849E-02, 5.23707E-02,-9.43646E-03, 6.31707E-03,-7.80460E-02, -4.88430E-02, 0.00000E+00, 0.00000E+00,-7.60250E+00, 0.00000E+00, -1.44635E-02,-1.76843E-02,-1.21517E+02, 2.85647E-02, 0.00000E+00, 0.00000E+00, 6.31792E-04, 0.00000E+00, 5.77197E-03, 8.66784E-02, 1.58727E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-8.90272E+03, 3.30611E-03, 3.02172E-03, 0.00000E+00, -2.13673E-03,-3.20910E-04, 0.00000E+00, 0.00000E+00, 2.76034E-03, 2.82487E-03,-2.97592E-04,-4.21534E-03, 8.47001E-02, 1.70147E-01, 8.96456E-03, 0.00000E+00,-1.08596E-02, 0.00000E+00, 0.00000E+00, 5.57917E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 9.65405E-03, 0.00000E+00, 0.00000E+00, 2.00000E+00 ], #/* TN1(3) */ [ 9.39664E-01, 8.56514E-02,-6.79989E-03, 2.65929E-02,-4.74283E-03, 1.21855E-02,-2.14905E-02, 6.49651E-03,-2.05477E-02,-4.24952E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.19148E+01, 0.00000E+00, 1.18777E-02,-7.28230E-02,-8.15965E+01, 1.73887E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.44691E-02, 2.80259E-04, 8.66784E-02, 1.58727E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.16584E+02, 3.18713E-03, 7.37479E-03, 0.00000E+00, -2.55018E-03,-3.92806E-03, 0.00000E+00, 0.00000E+00,-2.89757E-03, -1.33549E-03, 1.02661E-03, 3.53775E-04, 8.47001E-02, 1.70147E-01, -9.17497E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.56082E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.00902E-02, 0.00000E+00, 0.00000E+00, 2.00000E+00 ], #/* TN1(4) */ [ 9.85982E-01,-4.55435E-02, 1.21106E-02, 2.04127E-02,-2.40836E-03, 1.11383E-02,-4.51926E-02, 1.35074E-02,-6.54139E-03, 1.15275E-01, 1.28247E-01, 0.00000E+00, 0.00000E+00,-5.30705E+00, 0.00000E+00, -3.79332E-02,-6.24741E-02, 7.71062E-01, 2.96315E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 6.81051E-03,-4.34767E-03, 8.66784E-02, 1.58727E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.07003E+01,-2.76907E-03, 4.32474E-04, 0.00000E+00, 1.31497E-03,-6.47517E-04, 0.00000E+00,-2.20621E+01,-1.10804E-03, -8.09338E-04, 4.18184E-04, 4.29650E-03, 8.47001E-02, 1.70147E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, -4.04337E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-9.52550E-04, 8.56253E-04, 4.33114E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.21223E-03, 2.38694E-04, 9.15245E-04, 1.28385E-03, 8.67668E-04,-5.61425E-06, 1.04445E+00, 3.41112E+01, 0.00000E+00,-8.40704E-01,-2.39639E+02, 7.06668E-01,-2.05873E+01,-3.63696E-01, 2.39245E+01, 0.00000E+00, -1.06657E-03,-7.67292E-04, 1.54534E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.00000E+00 ], #/* TN1(5) TN2(1) */ [ 1.00320E+00, 3.83501E-02,-2.38983E-03, 2.83950E-03, 4.20956E-03, 5.86619E-04, 2.19054E-02,-1.00946E-02,-3.50259E-03, 4.17392E-02, -8.44404E-03, 0.00000E+00, 0.00000E+00, 4.96949E+00, 0.00000E+00, -7.06478E-03,-1.46494E-02, 3.13258E+01,-1.86493E-03, 0.00000E+00, -1.67499E-02, 0.00000E+00, 0.00000E+00, 5.12686E-04, 8.66784E-02, 1.58727E-01,-4.64167E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.37353E-03,-1.99069E+02, 0.00000E+00,-5.34884E-03, 0.00000E+00, 1.62458E-03, 2.93016E-03, 2.67926E-03, 5.90449E+02, 0.00000E+00, 0.00000E+00,-1.17266E-03,-3.58890E-04, 8.47001E-02, 1.70147E-01, 0.00000E+00, 0.00000E+00, 1.38673E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.60571E-03, 6.28078E-04, 5.05469E-05, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.57829E-03, -4.00855E-04, 5.04077E-05,-1.39001E-03,-2.33406E-03,-4.81197E-04, 1.46758E+00, 6.20332E+00, 0.00000E+00, 3.66476E-01,-6.19760E+01, 3.09198E-01,-1.98999E+01, 0.00000E+00,-3.29933E+02, 0.00000E+00, -1.10080E-03,-9.39310E-05, 1.39638E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.00000E+00 ] ]; pma = [ #/* TN2(2) */ [ 9.81637E-01,-1.41317E-03, 3.87323E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-3.58707E-02, -8.63658E-03, 0.00000E+00, 0.00000E+00,-2.02226E+00, 0.00000E+00, -8.69424E-03,-1.91397E-02, 8.76779E+01, 4.52188E-03, 0.00000E+00, 2.23760E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-7.07572E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, -4.11210E-03, 3.50060E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-8.36657E-03, 1.61347E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.45130E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.24152E-03, 6.43365E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.33255E-03, 2.42657E-03, 1.60666E-03,-1.85728E-03,-1.46874E-03,-4.79163E-06, 1.22464E+00, 3.53510E+01, 0.00000E+00, 4.49223E-01,-4.77466E+01, 4.70681E-01, 8.41861E+00,-2.88198E-01, 1.67854E+02, 0.00000E+00, 7.11493E-04, 6.05601E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.00000E+00 ], #/* TN2(3) */ [ 1.00422E+00,-7.11212E-03, 5.24480E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-5.28914E-02, -2.41301E-02, 0.00000E+00, 0.00000E+00,-2.12219E+01,-1.03830E-02, -3.28077E-03, 1.65727E-02, 1.68564E+00,-6.68154E-03, 0.00000E+00, 1.45155E-02, 0.00000E+00, 8.42365E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00,-4.34645E-03, 0.00000E+00, 0.00000E+00, 2.16780E-02, 0.00000E+00,-1.38459E+02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 7.04573E-03,-4.73204E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.08767E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-8.08279E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.21769E-04, -2.27387E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.26769E-03, 3.16901E-03, 4.60316E-04,-1.01431E-04, 1.02131E-03, 9.96601E-04, 1.25707E+00, 2.50114E+01, 0.00000E+00, 4.24472E-01,-2.77655E+01, 3.44625E-01, 2.75412E+01, 0.00000E+00, 7.94251E+02, 0.00000E+00, 2.45835E-03, 1.38871E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.00000E+00 ], #/* TN2(4) TN3(1) */ [ 1.01890E+00,-2.46603E-02, 1.00078E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-6.70977E-02, -4.02286E-02, 0.00000E+00, 0.00000E+00,-2.29466E+01,-7.47019E-03, 2.26580E-03, 2.63931E-02, 3.72625E+01,-6.39041E-03, 0.00000E+00, 9.58383E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.85291E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.39717E+02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 9.19771E-03,-3.69121E+02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.57067E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-7.07265E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.92953E-03, -2.77739E-03,-4.40092E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.47280E-03, 2.95035E-04,-1.81246E-03, 2.81945E-03, 4.27296E-03, 9.78863E-04, 1.40545E+00,-6.19173E+00, 0.00000E+00, 0.00000E+00,-7.93632E+01, 4.44643E-01,-4.03085E+02, 0.00000E+00, 1.15603E+01, 0.00000E+00, 2.25068E-03, 8.48557E-04,-2.98493E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.00000E+00 ], #/* TN3(2) */ [ 9.75801E-01, 3.80680E-02,-3.05198E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.85575E-02, 5.04057E-02, 0.00000E+00, 0.00000E+00,-1.76046E+02, 1.44594E-02, -1.48297E-03,-3.68560E-03, 3.02185E+01,-3.23338E-03, 0.00000E+00, 1.53569E-02, 0.00000E+00,-1.15558E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.89620E-03, 0.00000E+00, 0.00000E+00,-1.00616E-02, -8.21324E-03,-1.57757E+02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 6.63564E-03, 4.58410E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.51280E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 9.91215E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-8.73148E-04, -1.29648E-03,-7.32026E-05, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-4.68110E-03, -4.66003E-03,-1.31567E-03,-7.39390E-04, 6.32499E-04,-4.65588E-04, -1.29785E+00,-1.57139E+02, 0.00000E+00, 2.58350E-01,-3.69453E+01, 4.10672E-01, 9.78196E+00,-1.52064E-01,-3.85084E+03, 0.00000E+00, -8.52706E-04,-1.40945E-03,-7.26786E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.00000E+00 ], #/* TN3(3) */ [ 9.60722E-01, 7.03757E-02,-3.00266E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.22671E-02, 4.10423E-02, 0.00000E+00, 0.00000E+00,-1.63070E+02, 1.06073E-02, 5.40747E-04, 7.79481E-03, 1.44908E+02, 1.51484E-04, 0.00000E+00, 1.97547E-02, 0.00000E+00,-1.41844E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.77884E-03, 0.00000E+00, 0.00000E+00, 9.74319E-03, 0.00000E+00,-2.88015E+03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-4.44902E-03,-2.92760E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.34419E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.36685E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-4.65325E-04, -5.50628E-04, 3.31465E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.06179E-03, -3.08575E-03,-7.93589E-04,-1.08629E-04, 5.95511E-04,-9.05050E-04, 1.18997E+00, 4.15924E+01, 0.00000E+00,-4.72064E-01,-9.47150E+02, 3.98723E-01, 1.98304E+01, 0.00000E+00, 3.73219E+03, 0.00000E+00, -1.50040E-03,-1.14933E-03,-1.56769E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.00000E+00 ], #/* TN3(4) */ [ 1.03123E+00,-7.05124E-02, 8.71615E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-3.82621E-02, -9.80975E-03, 0.00000E+00, 0.00000E+00, 2.89286E+01, 9.57341E-03, 0.00000E+00, 0.00000E+00, 8.66153E+01, 7.91938E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.68917E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 7.86638E-03, 0.00000E+00, 0.00000E+00, 9.90827E-03, 0.00000E+00, 6.55573E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-4.00200E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 7.07457E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.72268E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.04970E-04, 1.21560E-03,-8.05579E-06, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.49941E-03, -4.57256E-04,-1.59311E-04, 2.96481E-04,-1.77318E-03,-6.37918E-04, 1.02395E+00, 1.28172E+01, 0.00000E+00, 1.49903E-01,-2.63818E+01, 0.00000E+00, 4.70628E+01,-2.22139E-01, 4.82292E-02, 0.00000E+00, -8.67075E-04,-5.86479E-04, 5.32462E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.00000E+00 ], #/* TN3(5) SURFACE TEMP TSL */ [ 1.00828E+00,-9.10404E-02,-2.26549E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-2.32420E-02, -9.08925E-03, 0.00000E+00, 0.00000E+00, 3.36105E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.24957E+01,-5.87939E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.79765E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.01237E+03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.75553E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.29699E-03, 1.26659E-03, 2.68402E-04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.17894E-03, 1.48746E-03, 1.06478E-04, 1.34743E-04,-2.20939E-03,-6.23523E-04, 6.36539E-01, 1.13621E+01, 0.00000E+00,-3.93777E-01, 2.38687E+03, 0.00000E+00, 6.61865E+02,-1.21434E-01, 9.27608E+00, 0.00000E+00, 1.68478E-04, 1.24892E-03, 1.71345E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.00000E+00 ], #/* TGN3(2) SURFACE GRAD TSLG */ [ 1.57293E+00,-6.78400E-01, 6.47500E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-7.62974E-02, -3.60423E-01, 0.00000E+00, 0.00000E+00, 1.28358E+02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 4.68038E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.67898E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.90994E+04, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.15706E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.00000E+00 ], #/* TGN2(1) TGN1(2) */ [ 8.60028E-01, 3.77052E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.17570E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 7.77757E-03, 0.00000E+00, 0.00000E+00, 0.00000E+00, 1.01024E+02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 6.54251E+02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.56959E-02, 1.91001E-02, 3.15971E-02, 1.00982E-02,-6.71565E-03, 2.57693E-03, 1.38692E+00, 2.82132E-01, 0.00000E+00, 0.00000E+00, 3.81511E+02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.00000E+00 ], #/* TGN3(1) TGN2(2) */ [ 1.06029E+00,-5.25231E-02, 3.73034E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.31072E-02, -3.88409E-01, 0.00000E+00, 0.00000E+00,-1.65295E+02,-2.13801E-01, -4.38916E-02,-3.22716E-01,-8.82393E+01, 1.18458E-01, 0.00000E+00, -4.35863E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-1.19782E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.62229E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-5.37443E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00,-4.55788E-01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 3.84009E-02, 3.96733E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.05494E-02, 7.39617E-02, 1.92200E-02,-8.46151E-03,-1.34244E-02, 1.96338E-02, 1.50421E+00, 1.88368E+01, 0.00000E+00, 0.00000E+00,-5.13114E+01, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 5.11923E-02, 3.61225E-02, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 2.00000E+00 ] ]; #/* SEMIANNUAL MULT SAM */ sam = [1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 1.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00, 0.00000E+00] #/* MIDDLE ATMOSPHERE AVERAGES */ pavgm = [ 2.61000E+02, 2.64000E+02, 2.29000E+02, 2.17000E+02, 2.17000E+02, 2.23000E+02, 2.86760E+02,-2.93940E+00, 2.50000E+00, 0.00000E+00 ] fluids-1.0.22/fluids/fittings.py0000644000175000017500000057717414302004506016116 0ustar nileshnilesh# -*- coding: utf-8 -*- r"""Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2019, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains correlations for the loss coefficient of various types of pipe fittings. Whether you are desining a network or modeling a single element, the correlations here cover most cases. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Entrances --------- .. autofunction:: entrance_sharp .. autofunction:: entrance_distance .. autofunction:: entrance_angled .. autofunction:: entrance_rounded .. autofunction:: entrance_beveled .. autofunction:: entrance_beveled_orifice .. autofunction:: entrance_distance_45_Miller Exits ----- .. autofunction:: exit_normal Bends ----- .. autofunction:: bend_rounded .. autofunction:: bend_rounded_Miller .. autofunction:: bend_rounded_Crane .. autofunction:: bend_miter .. autofunction:: bend_miter_Miller .. autofunction:: helix .. autofunction:: spiral Contractions/Reducers --------------------- .. autofunction:: contraction_sharp .. autofunction:: contraction_round .. autofunction:: contraction_round_Miller .. autofunction:: contraction_conical .. autofunction:: contraction_conical_Crane .. autofunction:: contraction_beveled Expansions/Diffusers -------------------- .. autofunction:: diffuser_sharp .. autofunction:: diffuser_conical .. autofunction:: diffuser_conical_staged .. autofunction:: diffuser_curved .. autofunction:: diffuser_pipe_reducer Tees ---- .. autofunction:: K_branch_converging_Crane .. autofunction:: K_run_converging_Crane .. autofunction:: K_branch_diverging_Crane .. autofunction:: K_run_diverging_Crane Valves ------ .. autofunction:: K_gate_valve_Crane .. autofunction:: K_angle_valve_Crane .. autofunction:: K_globe_valve_Crane .. autofunction:: K_swing_check_valve_Crane .. autofunction:: K_lift_check_valve_Crane .. autofunction:: K_tilting_disk_check_valve_Crane .. autofunction:: K_globe_stop_check_valve_Crane .. autofunction:: K_angle_stop_check_valve_Crane .. autofunction:: K_ball_valve_Crane .. autofunction:: K_diaphragm_valve_Crane .. autofunction:: K_foot_valve_Crane .. autofunction:: K_butterfly_valve_Crane .. autofunction:: K_plug_valve_Crane Hooper 2K fittings ------------------ .. autofunction:: Hooper2K .. autodata:: Hooper Darby 3K fittings ------------------ .. autofunction:: Darby3K .. autodata:: Darby Loss Coefficient Converters --------------------------- .. autofunction:: Cv_to_K .. autofunction:: Kv_to_K .. autofunction:: K_to_Cv .. autofunction:: K_to_Kv .. autofunction:: Cv_to_Kv .. autofunction:: Kv_to_Cv Miscellaneous ------------- .. autofunction:: v_lift_valve_Crane Sources ------- The main sources for these correlations are as follows [100]_ [101]_ [102]_ [103]_ [104]_: .. [100] Crane Co. TP 410 Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. .. [101] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [102] Miller, Donald S. Internal Flow Systems: Design and Performance Prediction. Gulf Publishing Company, 1990. .. [103] Idel’chik, I. E. Handbook of Hydraulic Resistance: Coefficients of Local Resistance and of Friction (Spravochnik Po Gidravlicheskim Soprotivleniyam, Koeffitsienty Mestnykh Soprotivlenii i Soprotivleniya Treniya). National technical information Service, 1966. .. [104] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. """ from __future__ import division from math import sqrt, cos, sin, tan, atan, pi, radians, degrees, log10, log from fluids.constants import inch, deg2rad, rad2deg from fluids.friction import (friction_factor, Clamond, friction_factor_curved, ft_Crane) from fluids.numerics import (horner, interp, splev, bisplev, implementation_optimize_tck, tck_interp2d_linear) from fluids.piping import S40i, NPS40 __all__ = ['contraction_sharp', 'contraction_round', 'contraction_round_Miller', 'contraction_conical', 'contraction_conical_Crane', 'contraction_beveled', 'diffuser_sharp', 'diffuser_conical', 'diffuser_conical_staged', 'diffuser_curved', 'diffuser_pipe_reducer', 'entrance_sharp', 'entrance_distance', 'entrance_angled', 'entrance_rounded', 'entrance_beveled', 'entrance_beveled_orifice', 'entrance_distance_45_Miller', 'exit_normal', 'bend_rounded', 'bend_rounded_Miller', 'bend_rounded_Crane', 'bend_miter', 'bend_miter_Miller', 'helix', 'spiral','Darby3K', 'Hooper2K', 'Kv_to_Cv', 'Cv_to_Kv', 'Kv_to_K', 'K_to_Kv', 'Cv_to_K', 'K_to_Cv', 'change_K_basis', 'Darby', 'Hooper', 'K_gate_valve_Crane', 'K_angle_valve_Crane', 'K_globe_valve_Crane', 'K_swing_check_valve_Crane', 'K_lift_check_valve_Crane', 'K_tilting_disk_check_valve_Crane', 'K_globe_stop_check_valve_Crane', 'K_angle_stop_check_valve_Crane', 'K_ball_valve_Crane', 'K_diaphragm_valve_Crane', 'K_foot_valve_Crane', 'K_butterfly_valve_Crane', 'K_plug_valve_Crane', 'K_branch_converging_Crane', 'K_run_converging_Crane', 'K_branch_diverging_Crane', 'K_run_diverging_Crane', 'v_lift_valve_Crane', 'Crane_loss_coefficient', 'CRANE_VALVES', 'DARBY_VALVES', 'HOOPER_VALVES'] def change_K_basis(K1, D1, D2): r'''Converts a loss coefficient `K1` from the basis of one diameter `D1` to another diameter, `D2`. This is necessary when dealing with pipelines of changing diameter. .. math:: K_2 = K_1\frac{D_2^4}{D_1^4} = K_1 \frac{A_2^2}{A_1^2} Parameters ---------- K1 : float Loss coefficient with respect to diameter `D`, [-] D1 : float Diameter of pipe for which `K1` has been calculated, [m] D2 : float Diameter of pipe for which `K2` will be calculated, [m] Returns ------- K2 : float Loss coefficient with respect to the second diameter, [-] Notes ----- This expression is shown in [1]_ and can easily be derived: .. math:: \frac{\rho V_{1}^{2}}{2} \cdot K_{1} = \frac{\rho V_{2}^{2} }{2} \cdot K_{2} Substitute velocities for flow rate divided by area: .. math:: \frac{8 K_{1} Q^{2} \rho}{\pi^{2} D_{1}^{4}} = \frac{8 K_{2} Q^{2} \rho}{\pi^{2} D_{2}^{4}} From here, simplification and rearrangement is all that is required. Examples -------- >>> change_K_basis(K1=32.68875692997804, D1=.01, D2=.02) 523.020110879 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. ''' r = D2/D1 r *= r return K1*r*r ### Entrances entrance_sharp_methods = ['Rennels', 'Swamee', 'Blevins', 'Idelchik', 'Crane', 'Miller'] entrance_sharp_method_missing = ('Specified method not recognized; methods are %s' %(entrance_sharp_methods)) def entrance_sharp(method='Rennels'): r'''Returns loss coefficient for a sharp entrance to a pipe. Six sources are available; four of them recommending K = 0.5, the most recent 'Rennels', method recommending K = 0.57, and the 'Miller' method recommending ~0.51 as read from a graph. .. figure:: fittings/flush_mounted_sharp_edged_entrance.png :scale: 30 % :alt: flush mounted sharp edged entrance; after [1]_ Parameters ---------- method : str, optional The method to use; one of 'Rennels', 'Swamee', 'Blevins', 'Idelchik', 'Crane', or 'Miller, [-] Returns ------- K : float Loss coefficient [-] Notes ----- 0.5 is the result for 'Swamee', 'Blevins', 'Idelchik', and 'Crane'; 'Miller' returns 0.5093, and 'Rennels' returns 0.57. Examples -------- >>> entrance_sharp() 0.57 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] Miller, Donald S. Internal Flow Systems: Design and Performance Prediction. Gulf Publishing Company, 1990. .. [3] Idel’chik, I. E. Handbook of Hydraulic Resistance: Coefficients of Local Resistance and of Friction (Spravochnik Po Gidravlicheskim Soprotivleniyam, Koeffitsienty Mestnykh Soprotivlenii i Soprotivleniya Treniya). National technical information Service, 1966. .. [4] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. .. [5] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. .. [6] Swamee, Prabhata K., and Ashok K. Sharma. Design of Water Supply Pipe Networks. John Wiley & Sons, 2008. ''' if method is None: method = 'Rennels' if method in ('Swamee', 'Blevins', 'Crane', 'Idelchik'): return 0.50 elif method == 'Miller': # From entrance_rounded(Di=0.9, rc=0.0, method='Miller'); Not saying it's right return 0.5092676683721356 elif method == 'Rennels': return 0.57 else: raise ValueError(entrance_sharp_method_missing) entrance_distance_Miller_coeffs = [3.5979871366071166, -2.735407311020481, -14.08678246875138, 10.637236472292983, 21.99568490754116, -16.38501138746954, -17.62779826803278, 12.945551397987447, 7.715463242992863, -5.850893341031715, -1.3809402870404826, 1.179637166644488, 0.08781141316107932, -0.09751968111743672, 0.00501792061942849, 0.0026378278251172615, 0.5309019247035696] entrance_distance_Idelchik_l_Di = [0.0, 0.002, 0.005, 0.01, 0.02, 0.05, 0.1, 0.2, 0.3, 0.5, 10.0] # last point infinity entrance_distance_Idelchik_t_Di = [0.0, 0.004, 0.008, 0.012, 0.016, 0.02, 0.024, 0.03, 0.04, 0.05, 1.0] # last point infinity entrance_distance_Idelchik_dat = [ [0.5, 0.57, 0.63, 0.68, 0.73, 0.8, 0.86, 0.92, 0.97, 1, 1], [0.5, 0.54, 0.58, 0.63, 0.67, 0.74, 0.8, 0.86, 0.9, 0.94, 0.94], [0.5, 0.53, 0.55, 0.58, 0.62, 0.68, 0.74, 0.81, 0.85, 0.88, 0.88], [0.5, 0.52, 0.53, 0.55, 0.58, 0.63, 0.68, 0.75, 0.79, 0.83, 0.83], [0.5, 0.51, 0.51, 0.53, 0.55, 0.58, 0.64, 0.7, 0.74, 0.77, 0.77], [0.5, 0.51, 0.51, 0.52, 0.53, 0.55, 0.6, 0.66, 0.69, 0.72, 0.72], [0.5, 0.5, 0.5, 0.51, 0.52, 0.53, 0.58, 0.62, 0.65, 0.68, 0.68], [0.5, 0.5, 0.5, 0.51, 0.52, 0.52, 0.54, 0.57, 0.59, 0.61, 0.61], [0.5, 0.5, 0.5, 0.51, 0.51, 0.51, 0.51, 0.52, 0.52, 0.54, 0.54], [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5], [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5]] entrance_distance_Idelchik_tck = tck_interp2d_linear(entrance_distance_Idelchik_l_Di, entrance_distance_Idelchik_t_Di, entrance_distance_Idelchik_dat, kx=1, ky=1) entrance_distance_Idelchik_obj = lambda x, y: float(bisplev(x, y, entrance_distance_Idelchik_tck)) entrance_distance_Idelchik_obj = lambda x, y: bisplev(x, y, entrance_distance_Idelchik_tck) entrance_distance_Harris_t_Di = [0.00322, 0.007255, 0.01223, 0.018015, 0.021776, 0.029044, 0.039417, 0.049519, 0.058012, 0.066234, 0.076747, 0.088337, 0.098714, 0.109497, 0.121762, 0.130655, 0.14036, 0.148986, 0.159902, 0.17149, 0.179578, 0.189416, 0.200602, 0.208148, 0.217716, 0.228232, 0.239821, 0.250063, 0.260845, 0.270818, 0.280116, 0.289145] entrance_distance_Harris_Ks = [0.894574, 0.832435, 0.749768, 0.671543, 0.574442, 0.508432, 0.476283, 0.430261, 0.45027, 0.45474, 0.461993, 0.457042, 0.458745, 0.464889, 0.471594, 0.461638, 0.467778, 0.475024, 0.474509, 0.456239, 0.466258, 0.467959, 0.466336, 0.459705, 0.454746, 0.478092, 0.468701, 0.467074, 0.468779, 0.467151, 0.46441, 0.458894] entrance_distance_Harris_tck = implementation_optimize_tck([ [0.00322, 0.00322, 0.00322, 0.00322, 0.01223, 0.018015, 0.021776, 0.029044, 0.039417, 0.049519, 0.058012, 0.066234, 0.076747, 0.088337, 0.098714, 0.109497, 0.121762, 0.130655, 0.14036, 0.148986, 0.159902, 0.17149, 0.179578, 0.189416, 0.200602, 0.208148, 0.217716, 0.228232, 0.239821, 0.250063, 0.260845, 0.270818, 0.289145, 0.289145, 0.289145, 0.289145], [0.894574, 0.8607821362959746, 0.7418364422223542, 0.7071594764719331, 0.5230593641637336, 0.5053866365045014, 0.4869380604512194, 0.40993425463761973, 0.4588732899536263, 0.45115886608796796, 0.4672085434114074, 0.45422360120010624, 0.45882234693051327, 0.4633823025024543, 0.4785594597978615, 0.45603301615693537, 0.46825191653436804, 0.4759245648612374, 0.4816400424293727, 0.4467699156979281, 0.4713316096394432, 0.4667017151264001, 0.4686302748435692, 0.4597796190662107, 0.445267522727416, 0.491034205369033, 0.4641178520412072, 0.46721810151497395, 0.46958841021674314, 0.4664976446563455, 0.46420067427943945, 0.458894, 0.0, 0.0, 0.0, 0.0], 3]) entrance_distance_Harris_obj = lambda x : float(splev(x, entrance_distance_Harris_tck)) entrance_distance_methods = ['Rennels', 'Miller', 'Idelchik', 'Harris', 'Crane'] entrance_distance_unrecognized_msg = 'Specified method not recognized; methods are %s' %(entrance_distance_methods) def entrance_distance(Di, t=None, l=None, method='Rennels'): r'''Returns the loss coefficient for a sharp entrance to a pipe at a distance from the wall of a reservoir. This calculation has five methods available; all but 'Idelchik' require the pipe to be at least `Di/2` into the reservoir. The most conservative formulation is that of Rennels; with Miller being almost identical until `t/Di` reaches 0.05, when it continues settling to K = 0.53 compared to K = 0.57 for 'Rennels'. 'Idelchik' is offset lower by about 0.03 and settles to 0.50. The 'Harris' method is a straight interpolation from experimental results with smoothing, and it is the lowest at all points. The 'Crane' [6]_ method returns 0.78 for all cases. The Rennels [1]_ formula is: .. math:: K = 1.12 - 22\frac{t}{d} + 216\left(\frac{t}{d}\right)^2 + 80\left(\frac{t}{d}\right)^3 .. figure:: fittings/sharp_edged_entrace_extended_mount.png :scale: 30 % :alt: sharp edged entrace, extended mount; after [1]_ Parameters ---------- Di : float Inside diameter of pipe, [m] t : float, optional Thickness of pipe wall, used in all but 'Crane' method, [m] l : float, optional The distance the pipe extends into the reservoir; used only in the 'Idelchik' method, defaults to `Di`, [m] method : str, optional One of 'Rennels', 'Miller', 'Idelchik', 'Harris', 'Crane', [-] Returns ------- K : float Loss coefficient [-] Notes ----- This type of inlet is also known as a Borda's mouthpiece. It is not of practical interest according to [1]_. The 'Idelchik' [3]_ data is recommended in [5]_; it also provides rounded values for the 'Harris. method. .. plot:: plots/entrance_distance_plot.py Examples -------- >>> entrance_distance(Di=0.1, t=0.0005) 1.0154100000000001 >>> entrance_distance(Di=0.1, t=0.0005, method='Idelchik') 0.9249999999999999 >>> entrance_distance(Di=0.1, t=0.0005, l=.02, method='Idelchik') 0.8474999999999999 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] Miller, Donald S. Internal Flow Systems: Design and Performance Prediction. Gulf Publishing Company, 1990. .. [3] Idel’chik, I. E. Handbook of Hydraulic Resistance: Coefficients of Local Resistance and of Friction (Spravochnik Po Gidravlicheskim Soprotivleniyam, Koeffitsienty Mestnykh Soprotivlenii i Soprotivleniya Treniya). National technical information Service, 1966. .. [4] Harris, Charles William. The Influence of Pipe Thickness on Re-Entrant Intake Losses. Vol. 48. University of Washington, 1928. .. [5] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. .. [6] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' if method is None: method = 'Rennels' if method == 'Rennels': t_Di = t/Di if t_Di > 0.05: t_Di = 0.05 return 1.12 + t_Di*(t_Di*(80.0*t_Di + 216.0) - 22.0) elif method == 'Miller': t_Di = t/Di if t_Di > 0.3: t_Di = 0.3 return horner(entrance_distance_Miller_coeffs, 20.0/3.0*(t_Di - 0.15)) elif method == 'Idelchik': if l is None: l = Di t_Di = min(t/Di, 1.0) l_Di = min(l/Di, 10.0) K = float(entrance_distance_Idelchik_obj(l_Di, t_Di)) if K < 0.0: K = 0.0 return K elif method == 'Harris': ratio = min(t/Di, 0.289145) # max value for interpolation - extrapolation looks bad K = float(entrance_distance_Harris_obj(ratio)) return K elif method == 'Crane': return 0.78 else: raise ValueError(entrance_distance_unrecognized_msg) entrance_distance_45_Miller_coeffs = [1.866792110435199, -2.8873199398381075, -4.814715029513536, 10.49562589373457, 1.40401776402922, -14.035912282651882, 6.576826918678071, 7.854645523152614, -8.044860164646053, -1.1515885154512326, 4.145420152553604, -0.7994793202964967, -1.1034822877774095, 0.32764916637953573, 0.367065452438954, -0.2614447909010587, 0.29084476697430256] def entrance_distance_45_Miller(Di, Di0): r'''Returns loss coefficient for a sharp entrance to a pipe at a distance from the wall of a reservoir with an initial 45 degree slope conical section of diameter `Di0` added to reduce the overall loss coefficient. This method is as shown in Miller's Internal Flow Systems [1]_. This method is a curve fit to a graph in [1]_ which was digitized. Parameters ---------- Di : float Inside diameter of pipe, [m] Di0 : float Initial inner diameter of the welded conical section of the entrance of the distant (re-entrant) pipe, [m] Returns ------- K : float Loss coefficient with respect to the main pipe diameter `Di`, [-] Notes ----- The graph predicts an almost constant loss coefficient once the thickness of pipe wall to pipe diameter ratio becomes ~0.02. Examples -------- >>> entrance_distance_45_Miller(Di=0.1, Di0=0.14) 0.24407641818143339 References ---------- .. [1] Miller, Donald S. Internal Flow Systems: Design and Performance Prediction. Gulf Publishing Company, 1990. ''' t = 0.5*(Di0 - Di) t_Di = t/Di if t_Di > 0.3: t_Di = 0.3 return horner(entrance_distance_45_Miller_coeffs, 6.66666666666666696*(t_Di-0.15)) entrance_angled_methods = ['Idelchik'] entrance_angled_methods_missing = ('Specified method not recognized; methods are %s' %(entrance_angled_methods)) def entrance_angled(angle, method='Idelchik'): r'''Returns loss coefficient for a sharp, angled entrance to a pipe flush with the wall of a reservoir. First published in [2]_, it has been recommended in [3]_ as well as in [1]_. .. math:: K = 0.57 + 0.30\cos(\theta) + 0.20\cos(\theta)^2 .. figure:: fittings/entrance_mounted_at_an_angle.png :scale: 30 % :alt: entrace mounted at an angle; after [1]_ Parameters ---------- angle : float Angle of inclination (90° = straight, 0° = parallel to pipe wall), [degrees] method : str, optional The method to use; only 'Idelchik' is supported Returns ------- K : float Loss coefficient [-] Notes ----- Not reliable for angles under 20 degrees. Loss coefficient is the same for an upward or downward angled inlet. Examples -------- >>> entrance_angled(30) 0.9798076211353315 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] Idel’chik, I. E. Handbook of Hydraulic Resistance: Coefficients of Local Resistance and of Friction (Spravochnik Po Gidravlicheskim Soprotivleniyam, Koeffitsienty Mestnykh Soprotivlenii i Soprotivleniya Treniya). National technical information Service, 1966. .. [3] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' if method == 'Idelchik' or method is None: cos_term = cos(deg2rad*angle) return 0.57 + cos_term*(0.2*cos_term + 0.3) else: raise ValueError(entrance_angled_methods_missing) entrance_rounded_Miller_coeffs = [1.3127209945178038, 0.19963046592715727, -6.49081916725612, -0.10347409377743588, 12.68369791325003, -0.9435681020599904 , -12.44320584089916, 1.328251365167716, 6.668390027065714, -0.4356382649470076, -2.209229212394282, -0.07222448354500295, 0.6786898049825905, -0.18686362789567468, 0.020064570486606065, -0.013120241146656442, 0.061951596342059975] entrance_rounded_ratios_Idelchik = [0, .01, .02, .03, .04, .05, .06, .08, .12, .16, .2] entrance_rounded_Ks_Idelchik = [.5, .44, .37, .31, .26, .22, .2, .15, .09, .06, .03] entrance_rounded_Idelchik_tck = implementation_optimize_tck([[0.0, 0.0, 0.0, 0.015, 0.025, 0.035, 0.045, 0.055, 0.07, 0.1, 0.14, 0.2, 0.2, 0.2], [0.5, 0.46003224474143023, 0.3682580956033294, 0.30877401146621397, 0.2590978355993873, 0.2166389749374616, 0.19717564973543905, 0.1332971654240214, 0.08659056691519569, 0.05396118560777325, 0.03, 0.0, 0.0, 0.0], 2]) entrance_rounded_Idelchik = lambda x : float(splev(x, entrance_rounded_Idelchik_tck)) entrance_rounded_ratios_Crane = [0.0, .02, .04, .06, .1, .15] entrance_rounded_Ks_Crane = [.5, .28, .24, .15, .09, .04] entrance_rounded_ratios_Harris = [0.0, .01, .02, .03, .04, .05, .06, .08, .12, .16] entrance_rounded_Ks_Harris = [.44, .35, .28, .22, .17, .13, .1, .07, .03, 0.0] entrance_rounded_Harris_tck = implementation_optimize_tck([[0.0, 0.0, 0.0, 0.015, 0.025, 0.035, 0.045, 0.055, 0.07, 0.1, 0.16, 0.16, 0.16], [0.44, 0.36435669860605086, 0.2790010365858813, 0.2187082142826953, 0.16874967771794716, 0.1287937194096216, 0.09091157742799895, 0.06354756460434334, 0.01885121769782832, 0.0, 0.0, 0.0, 0.0], 2]) entrance_rounded_Harris = lambda x : float(splev(x, entrance_rounded_Harris_tck)) entrance_rounded_methods = ['Rennels', 'Crane', 'Miller', 'Idelchik', 'Harris', 'Swamee'] entrance_rounded_methods_error = ('Specified method not recognized; methods are %s' %(entrance_rounded_methods)) def entrance_rounded(Di, rc, method='Rennels'): r'''Returns loss coefficient for a rounded entrance to a pipe flush with the wall of a reservoir. This calculation has six methods available. The most conservative formulation is that of Rennels; with the Swammee correlation being 0.02-0.07 lower. They were published in 2012 and 2008 respectively, and for this reason could be regarded as more reliable. The Idel'chik correlation appears based on the Hamilton data; and the Miller correlation as well, except a little more conservative. The Crane model trends similarly but only has a few points. The Harris data set is the lowest. The Rennels [1]_ formulas are: .. math:: K = 0.0696\left(1 - 0.569\frac{r}{d}\right)\lambda^2 + (\lambda-1)^2 .. math:: \lambda = 1 + 0.622\left(1 - 0.30\sqrt{\frac{r}{d}} - 0.70\frac{r}{d}\right)^4 The Swamee [5]_ formula is: .. math:: K = 0.5\left[1 + 36\left(\frac{r}{D}\right)^{1.2}\right]^{-1} .. figure:: fittings/flush_mounted_rounded_entrance.png :scale: 30 % :alt: rounded entrace mounted straight and flush; after [1]_ Parameters ---------- Di : float Inside diameter of pipe, [m] rc : float Radius of curvature of the entrance, [m] method : str, optional One of 'Rennels', 'Crane', 'Miller', 'Idelchik', 'Harris', or 'Swamee'. Returns ------- K : float Loss coefficient [-] Notes ----- For generously rounded entrance (rc/Di >= 1), the loss coefficient converges to 0.03 in the Rennels method. The Rennels formulation was derived primarily from data and theoretical analysis from different flow scenarios than a rounded pipe entrance; the only available data in [2]_ is quite old and [1]_ casts doubt on it. The Hamilton data set is available in [1]_ and [6]_. .. plot:: plots/entrance_rounded_plot.py Examples -------- Point from Diagram 9.2 in [1]_, which was used to confirm the Rennels model implementation: >>> entrance_rounded(Di=0.1, rc=0.0235) 0.09839534618360923 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] Hamilton, James Baker. Suppression of Pipe Intake Losses by Various Degrees of Rounding. Seattle: Published by the University of Washington, 1929. https://search.library.wisc.edu/catalog/999823652202121. .. [3] Miller, Donald S. Internal Flow Systems: Design and Performance Prediction. Gulf Publishing Company, 1990. .. [4] Harris, Charles William. Elimination of Hydraulic Eddy Current Loss at Intake, Agreement of Theory and Experiment. University of Washington, 1930. .. [5] Swamee, Prabhata K., and Ashok K. Sharma. Design of Water Supply Pipe Networks. John Wiley & Sons, 2008. .. [6] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. .. [7] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. .. [8] Idel’chik, I. E. Handbook of Hydraulic Resistance: Coefficients of Local Resistance and of Friction (Spravochnik Po Gidravlicheskim Soprotivleniyam, Koeffitsienty Mestnykh Soprotivlenii i Soprotivleniya Treniya). National technical information Service, 1966. ''' if method is None: method = 'Rennels' ratio = rc/Di if method == 'Rennels': if ratio > 1.0: return 0.03 lbd = (1.0 - 0.30*sqrt(ratio) - 0.70*ratio) lbd *= lbd lbd = 1.0 + 0.622*lbd*lbd return 0.0696*(1.0 - 0.569*ratio)*lbd*lbd + (lbd - 1.0)*(lbd - 1.0) elif method == 'Swamee': return 0.5/(1.0 + 36.0*(ratio)**1.2) elif method == 'Crane': if ratio < 0: return 0.5 elif ratio > 0.15: return 0.04 else: return interp(ratio, entrance_rounded_ratios_Crane, entrance_rounded_Ks_Crane) elif method == 'Miller': if ratio > 0.3: ratio = 0.3 return horner(entrance_rounded_Miller_coeffs, (20.0/3.0)*(ratio - 0.15)) elif method == 'Harris': if ratio > .16: return 0.0 return float(splev(ratio, entrance_rounded_Harris_tck)) elif method == 'Idelchik': if ratio > .2: return entrance_rounded_Ks_Idelchik[-1] return float(splev(ratio, entrance_rounded_Idelchik_tck)) else: raise ValueError(entrance_rounded_methods_error) entrance_beveled_methods = ['Rennels', 'Idelchik'] entrance_beveled_methods_unknown_msg = 'Specified method not recognized; methods are %s' %entrance_beveled_methods entrance_beveled_Idelchik_l_Di = [0.025, 0.05, 0.075, 0.1, 0.15, 0.6] entrance_beveled_Idelchik_angles = [0.0, 10.0, 20.0, 30.0, 40.0, 60.0, 100.0, 140.0, 180.0] entrance_beveled_Idelchik_dat = [ [0.5, 0.47, 0.45, 0.43, 0.41, 0.4, 0.42, 0.45, 0.5], [0.5, 0.45, 0.41, 0.36, 0.33, 0.3, 0.35, 0.42, 0.5], [0.5, 0.42, 0.35, 0.3, 0.26, 0.23, 0.3, 0.4, 0.5], [0.5, 0.39, 0.32, 0.25, 0.22, 0.18, 0.27, 0.38, 0.5], [0.5, 0.37, 0.27, 0.2, 0.16, 0.15, 0.25, 0.37, 0.5], [0.5, 0.27, 0.18, 0.13, 0.11, 0.12, 0.23, 0.36, 0.5]] entrance_beveled_Idelchik_tck = tck_interp2d_linear(entrance_beveled_Idelchik_angles, entrance_beveled_Idelchik_l_Di, entrance_beveled_Idelchik_dat, kx=1, ky=1) entrance_beveled_Idelchik_obj = lambda x, y : float(bisplev(x, y, entrance_beveled_Idelchik_tck)) def entrance_beveled(Di, l, angle, method='Rennels'): r'''Returns loss coefficient for a beveled or chamfered entrance to a pipe flush with the wall of a reservoir. This calculation has two methods available. The 'Rennels' and 'Idelchik' methods have similar trends, but the 'Rennels' formulation is centered around a straight loss coefficient of 0.57, so it is normally at least 0.07 higher. The Rennels [1]_ formulas are: .. math:: K = 0.0696\left(1 - C_b\frac{l}{d}\right)\lambda^2 + (\lambda-1)^2 .. math:: \lambda = 1 + 0.622\left[1-1.5C_b\left(\frac{l}{d} \right)^{\frac{1-(l/d)^{1/4}}{2}}\right] .. math:: C_b = \left(1 - \frac{\theta}{90}\right)\left(\frac{\theta}{90} \right)^{\frac{1}{1+l/d}} .. figure:: fittings/flush_mounted_beveled_entrance.png :scale: 30 % :alt: Beveled entrace mounted straight; after [1]_ Parameters ---------- Di : float Inside diameter of pipe, [m] l : float Length of bevel measured parallel to the pipe length, [m] angle : float Angle of bevel with respect to the pipe length, [degrees] method : str, optional One of 'Rennels', or 'Idelchik', [-] Returns ------- K : float Loss coefficient [-] Notes ----- A cheap way of getting a lower pressure drop. Little credible data is available. The table of data in [2]_ uses the angle for both bevels, so it runs from 0 to 180 degrees; this function follows the convention in [1]_ which uses only one angle, with the angle varying from 0 to 90 degrees. .. plot:: plots/entrance_beveled_plot.py Examples -------- >>> entrance_beveled(Di=0.1, l=0.003, angle=45) 0.450868642219 >>> entrance_beveled(Di=0.1, l=0.003, angle=45, method='Idelchik') 0.399500000000 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] Idel’chik, I. E. Handbook of Hydraulic Resistance: Coefficients of Local Resistance and of Friction (Spravochnik Po Gidravlicheskim Soprotivleniyam, Koeffitsienty Mestnykh Soprotivlenii i Soprotivleniya Treniya). National technical information Service, 1966. ''' if method is None: method = 'Rennels' if method == 'Rennels': Cb = (1-angle/90.)*(angle/90.)**(1./(1 + l/Di )) lbd = 1 + 0.622*(1 - 1.5*Cb*(l/Di)**((1 - sqrt(sqrt(l/Di)))/2.)) return 0.0696*(1 - Cb*l/Di)*lbd**2 + (lbd - 1.)**2 elif method == 'Idelchik': return float(bisplev(angle*2.0, l/Di, entrance_beveled_Idelchik_tck)) else: raise ValueError(entrance_beveled_methods_unknown_msg) def entrance_beveled_orifice(Di, do, l, angle): r'''Returns loss coefficient for a beveled or chamfered orifice entrance to a pipe flush with the wall of a reservoir, as shown in [1]_. .. math:: K = 0.0696\left(1 - C_b\frac{l}{d_o}\right)\lambda^2 + \left(\lambda -\left(\frac{d_o}{D_i}\right)^2\right)^2 .. math:: \lambda = 1 + 0.622\left[1-C_b\left(\frac{l}{d_o}\right)^{\frac{1- (l/d_o)^{0.25}}{2}}\right] .. math:: C_b = \left(1 - \frac{\Psi}{90}\right)\left(\frac{\Psi}{90} \right)^{\frac{1}{1+l/d_o}} .. figure:: fittings/flush_mounted_beveled_orifice_entrance.png :scale: 30 % :alt: Beveled orifice entrace mounted straight; after [1]_ Parameters ---------- Di : float Inside diameter of pipe, [m] do : float Inside diameter of orifice, [m] l : float Length of bevel measured parallel to the pipe length, [m] angle : float Angle of bevel with respect to the pipe length, [degrees] Returns ------- K : float Loss coefficient [-] Examples -------- >>> entrance_beveled_orifice(Di=0.1, do=.07, l=0.003, angle=45) 1.2987552913818574 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. ''' Cb = (1-angle/90.)*(angle/90.)**(1./(1 + l/do )) lbd = 1 + 0.622*(1 - Cb*(l/do)**((1 - sqrt(sqrt(l/do)))/2.)) return 0.0696*(1 - Cb*l/do)*lbd**2 + (lbd - (do/Di)**2)**2 ### Exits def exit_normal(): r'''Returns loss coefficient for any exit to a pipe as shown in [1]_ and in other sources. .. math:: K = 1 .. figure:: fittings/flush_mounted_exit.png :scale: 28 % :alt: Exit from a flush mounted wall; after [1]_ Returns ------- K : float Loss coefficient [-] Notes ----- It has been found on occasion that K = 2.0 for laminar flow, and ranges from about 1.04 to 1.10 for turbulent flow. Examples -------- >>> exit_normal() 1.0 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. ''' return 1.0 ### Bends tck_bend_rounded_Miller = implementation_optimize_tck([[0.500967, 0.500967, 0.500967, 0.500967, 0.5572659504420276, 0.6220535279438968, 0.6876695918008857, 0.8109956990835443, 0.8966138996017785, 1.0418136796591293, 1.2129808986390955, 1.4328097893561944, 2.684491977649823, 3.496050493509287, 4.245254058334557, 10.0581, 10.0581, 10.0581, 10.0581], [10.0022, 10.0022, 10.0022, 10.0022, 26.661576730080427, 35.71142422728946, 46.22896414495794, 54.476944091380965, 67.28681897720492, 79.96560467244989, 88.89484575805731, 104.37345376723293, 113.75217318286595, 121.36638011164008, 139.53481668808192, 180.502, 180.502, 180.502, 180.502], [0.02844925354339322, 0.032368056788003474, 0.06341726367587057, 0.18372991235687228, 0.27828335685928296, 0.4184452895626468, 0.5844709012848479, 0.8517327028006999, 1.0883889837806633, 1.003595822015052, 1.2959349743905006, 1.3631701864169843, 3.2579960738248563, 8.188259745620396, 6.370167194425542, 0.026614405579949103, 0.03578575879432178, 0.05399131725104529, 0.17357295746658216, 0.2597698136964017, 0.384398460262134, 0.5537955210508835, 0.842964805734998, 1.1076060802420074, 1.0500502914944205, 1.2160489773171173, 1.2940140217639442, 2.5150913200614293, 5.987790923112488, 4.791049223949247, 0.026866783841898684, 0.03061409809632371, 0.054698306220358, 0.14037162784411245, 0.23981090432386729, 0.31617091309760137, 0.47435842573782666, 0.7484605121106159, 0.9223888516911868, 1.0345139221619066, 1.0709769967277933, 1.1489283659291687, 1.4249255928619116, 2.6908421883082823, 2.3898833324508804, 0.019707980719056793, 0.03350958504709355, 0.0457699204936841, 0.1180773988295937, 0.18163838540491214, 0.2955424583244998, 0.3178086095370295, 0.54907384767895, 0.7497276995283433, 0.8353766950608585, 0.8907203653185313, 0.941376749552297, 0.8755423259796333, 0.8987849646797164, 0.9905785504810203, 0.018632197087313764, 0.0275473376021632, 0.046686663726990756, 0.09334625398868963, 0.15009471210360348, 0.21438462374865175, 0.310541469358518, 0.27652184608845864, 0.4703245212932829, 0.5612926929410017, 0.6344189573543495, 0.6897616299237337, 0.8553230255854581, 0.8050040042565408, 0.7800498994134173, 0.017040716941189974, 0.027163747207842776, 0.04233976165781228, 0.08546809847236579, 0.11872359104267481, 0.1748602349243538, 0.248787221592314, 0.3166892465009758, 0.2894990945943436, 0.35635089905047324, 0.3942719381041552, 0.4019846022857163, 0.4910888827789205, 0.4424331343990761, 0.5367477778555589, 0.017232689797500957, 0.024595005629126976, 0.04235982677436609, 0.0748705682747817, 0.11096283696103083, 0.13900984487771062, 0.18773056195495877, 0.2400721832034611, 0.28581377924973544, 0.282839816159864, 0.2907117502580411, 0.3035848810896592, 0.31268019467513564, 0.3365050687225188, 0.2836774098946595, 0.017462451480157917, 0.02373981127475937, 0.04248526591300313, 0.07305722078054935, 0.09424065630357203, 0.13682400355164548, 0.15020534827616405, 0.2100221959547714, 0.23136495625582817, 0.24417894312621574, 0.2505645472554214, 0.24143469557592281, 0.24722191256497117, 0.2195110087547775, 0.29557609063213136, 0.017605444779345832, 0.026265210174737128, 0.0445497171166642, 0.07254637551095446, 0.08779690828578819, 0.11992614224260065, 0.14501268843599757, 0.17386066713179812, 0.21657094190224363, 0.21594544490951023, 0.22661999176624517, 0.23759356544596819, 0.23887614636323537, 0.25802515101229484, 0.20566480389514516, 0.01928450591486404, 0.03264367752872495, 0.05391006363370407, 0.07430728218140033, 0.08818045730326454, 0.09978389535000864, 0.12544634357734885, 0.13365159719049172, 0.15802979203343911, 0.17543365869590444, 0.17531453508236272, 0.1706085325985479, 0.15983319357859727, 0.16872558079206196, 0.19799750352823683, 0.020835891827102552, 0.047105767455498285, 0.05307639179638059, 0.07839236342751181, 0.09519829368423402, 0.10189528661430994, 0.12852821694010982, 0.13195311029179943, 0.1594822363328695, 0.15660304273110143, 0.15934161651984413, 0.17702957118830723, 0.1892675345030034, 0.19710951153945122, 0.1897835097361326, 0.031571285288316195, 0.04810266172763896, 0.05660304311192384, 0.09317293919692342, 0.08967028392412497, 0.12028974875677166, 0.1182836264474129, 0.13845925262729528, 0.15739100571169004, 0.17649056196464383, 0.20171423738165223, 0.20947832805305883, 0.22837004534830094, 0.23661874048689152, 0.24537433391842686, 0.042992073811512765, 0.045958026954244176, 0.08988351069774198, 0.08320361205549355, 0.1253881915447805, 0.12765039447605908, 0.1632907944306065, 0.17922551055575348, 0.20436939408609628, 0.23133806857897737, 0.22837190631962206, 0.2611718034649056, 0.30462224139228183, 0.3277471634644065, 0.3595577208662931, 0.042671097083349346, 0.06027193387363409, 0.07182684474072856, 0.12072547771177115, 0.1331787059163636, 0.16137414417679433, 0.1780034002291815, 0.19820571860540606, 0.2294059556234193, 0.23221403415772682, 0.2697708431035234, 0.2813760107306456, 0.28992333749905363, 0.3650401400682786, 0.8993207970132076, 0.045660964207664585, 0.06299599466264151, 0.09193684371316964, 0.12747145786167088, 0.14606550538249963, 0.172664884028299, 0.19152378303841075, 0.2212007207927944, 0.23752800077573005, 0.26289800433018995, 0.2772198641539113, 0.2995308585350757, 0.3549459028594012, 0.8032461437896778, 3.330618601208751], 3, 3]) bend_rounded_Miller_Kb = lambda rc_D, angle : float(bisplev(rc_D, angle, tck_bend_rounded_Miller)) tck_bend_rounded_Miller_C_Re = implementation_optimize_tck([[4.0, 4.0, 4.0, 4.0, 8.0, 8.0, 8.0, 8.0], [1.0, 1.0, 1.0, 1.0, 2.0, 2.0, 2.0, 2.0], [2.177340320782947, 2.185952396281732, 2.185952396281732, 2.1775876405173977, 0.6513348082098823, 0.7944713057222101, 0.7944713057222103, 1.0526247737400114, 0.6030278030721317, 1.3741240162063968, 1.3741240162063992, 0.7693594604301893, -2.1663631289607883, -1.9474318981548622, -1.9474318981548622, 0.4196741237602154], 3, 3]) bend_rounded_Miller_C_Re = lambda Re, rc_D : float(bisplev(log10(Re), rc_D, tck_bend_rounded_Miller_C_Re)) bend_rounded_Miller_C_Re_limit_1 = [2428087.757821312, -13637184.203693766, 28450331.830760233, -25496945.91463643, 8471761.477755375] tck_bend_rounded_Miller_C_o_0_1 = implementation_optimize_tck([[9.975803953769495e-06, 9.975803953769495e-06, 9.975803953769495e-06, 9.975803953769495e-06, 0.5259485989276764, 1.3157845547408782, 3.220104449183945, 6.133677908951886, 30.260656153593906, 30.260656153593906, 30.260656153593906, 30.260656153593906], [0.6179524338907976, 0.6000479624108129, 0.49299050530751654, 0.4820011733402483, 0.5584830305084972, 0.7496716557444135, 0.8977538553873484, 0.9987218804089956, 0.0, 0.0, 0.0, 0.0], 3]) tck_bend_rounded_Miller_C_o_0_15 = implementation_optimize_tck([[0.0025931401409935687, 0.0025931401409935687, 0.0025931401409935687, 0.0025931401409935687, 0.26429667728434275, 0.5188174292838083, 1.469212480387932, 4.269571348168375, 13.268280073552294, 26.28093462852014, 26.28093462852014, 26.28093462852014, 26.28093462852014], [0.8691924906711972, 0.8355177386350426, 0.7617588987656675, 0.5853012015918869, 0.5978128647571033, 0.7366100253604377, 0.8229203841913866, 0.9484887080989913, 1.0003643259424702, 0.0, 0.0, 0.0, 0.0], 3]) tck_bend_rounded_Miller_C_o_0_2 = implementation_optimize_tck([[-0.001273275512351991, -0.001273275512351991, -0.001273275512351991, - 0.001273275512351991, 0.36379835796750504, 0.7789151587713531, 1.7319487323386349, 3.559883175039053, 22.10600230228466, 22.10600230228466, 22.10600230228466, 22.10600230228466], [1.2055892891232, 1.1810797953131011, 0.8556056552110055, 0.6595884323229468, 0.6669634037761268, 0.8636791463334055, 0.8855712717206472, 0.9992625616471772, 0.0, 0.0, 0.0, 0.0], 3]) tck_bend_rounded_Miller_C_o_0_25 = implementation_optimize_tck([[0.0025931401409935687, 0.0025931401409935687, 0.0025931401409935687, 0.0025931401409935687, 0.2765978180291006, 0.5010875816968301, 0.6395222359284018, 0.661563946104784, 0.6887462820881093, 0.7312909084975013, 0.7605490601821624, 0.8078652661481783, 0.8553090397903271, 1.024376958429362, 1.4748577103270428, 2.052843716337269, 3.9670225184835175, 6.951737782758053, 16.770001745987884, 16.770001745987884, 16.770001745987884, 16.770001745987884], [2.7181584441006414, 2.6722855229796196, 2.510271857479865, 2.162580617260359, 1.8234805515473758, 1.5274137403431902, 1.3876379087140025, 1.2712745614209848, 1.1478416325256429, 1.015542018903243, 0.8445749706812837, 0.7368799268423506, 0.7061205857035833, 0.7381928947255646, 0.7960778489514514, 0.878729192230999, 0.9281388590439098, 0.9825611959699471, 0.0, 0.0, 0.0, 0.0], 3]) tck_bend_rounded_Miller_C_o_1_0 = implementation_optimize_tck([[0.0025931401409935687, 0.0025931401409935687, 0.0025931401409935687, 0.0025931401409935687, 0.4940382602529053, 0.7383107558560895, 0.8929948619544391, 0.9910262538499016, 1.1035407055233972, 1.2685727302009009, 2.190931635360523, 3.718073594472333, 6.026458907878363, 13.268280073552294, 13.268280073552294, 13.268280073552294, 13.268280073552294], [2.713127433391318, 2.6799201583608965, 2.4446034702691906, 2.0505313661892837, 1.7853408404592677, 1.5802763594858027, 1.395503315683405, 1.0504150726350026, 0.9294800209596744, 0.8937523212160566, 0.9339124388590752, 0.9769117997985829, 0.9948478073955791, 0.0, 0.0, 0.0, 0.0], 3]) tck_bend_rounded_Miller_C_os = (tck_bend_rounded_Miller_C_o_0_1, tck_bend_rounded_Miller_C_o_0_15, tck_bend_rounded_Miller_C_o_0_2, tck_bend_rounded_Miller_C_o_0_25, tck_bend_rounded_Miller_C_o_1_0) bend_rounded_Miller_C_o_Kbs = [.1, .15, .2, .25, 1] bend_rounded_Miller_C_o_limits = [30.260656153593906, 26.28093462852014, 22.10600230228466, 16.770001745987884, 13.268280073552294] bend_rounded_Miller_C_o_limit_0_01 = [0.6169055099514943, 0.8663244713199465, 1.2029584898712695, 2.7143438886138744, 2.7115417734646114] def Miller_bend_roughness_correction(Re, Di, roughness): # Section 9.2.4 - Roughness correction # Re limited to under 1E6 in friction factor falculations # Use a cached smooth fd value if Re too high Re_fd_min = min(1E6, Re) if Re_fd_min < 1E6: fd_smoth = friction_factor(Re=Re_fd_min, eD=0.0) else: fd_smoth = 0.011645040997991626 fd_rough = friction_factor(Re=Re_fd_min, eD=roughness/Di) C_roughness = fd_rough/fd_smoth return C_roughness def Miller_bend_unimpeded_correction(Kb, Di, L_unimpeded): """Limitations as follows: * Ratio not over 30 * If ratio under 0.01, tabulated values are used near the limits (discontinuity in graph anyway) * If ratio for a tried curve larger than max value, max value is used instead of calculating it * Kb limited to between 0.1 and 1.0 * When between two Kb curves, interpolate linearly after evaluating both splines appropriately """ if Kb < 0.1: Kb_C_o = 0.1 elif Kb > 1: Kb_C_o = 1.0 else: Kb_C_o = Kb L_unimpeded_ratio = L_unimpeded/Di if L_unimpeded_ratio > 30: L_unimpeded_ratio = 30.0 for i in range(len(bend_rounded_Miller_C_o_Kbs)): Kb_low, Kb_high = bend_rounded_Miller_C_o_Kbs[i], bend_rounded_Miller_C_o_Kbs[i+1] if Kb_low <= Kb_C_o <= Kb_high: if L_unimpeded_ratio >= bend_rounded_Miller_C_o_limits[i]: Co_low = 1.0 elif L_unimpeded_ratio <= 0.01: Co_low = bend_rounded_Miller_C_o_limit_0_01[i] else: Co_low = float(splev(L_unimpeded_ratio, tck_bend_rounded_Miller_C_os[i])) if L_unimpeded_ratio >= bend_rounded_Miller_C_o_limits[i+1]: Co_high = 1.0 elif L_unimpeded_ratio <= 0.01: Co_high = bend_rounded_Miller_C_o_limit_0_01[i+1] else: Co_high = float(splev(L_unimpeded_ratio, tck_bend_rounded_Miller_C_os[i+1])) C_o = Co_low + (Kb_C_o - Kb_low)*(Co_high - Co_low)/(Kb_high - Kb_low) return C_o def bend_rounded_Miller(Di, angle, Re, rc=None, bend_diameters=None, roughness=0.0, L_unimpeded=None): r'''Calculates the loss coefficient for a rounded pipe bend according to Miller [1]_. This is a sophisticated model which uses corrections for pipe roughness, the length of the pipe downstream before another interruption, and a correction for Reynolds number. It interpolates several times using several corrections graphs in [1]_. Parameters ---------- Di : float Inside diameter of pipe, [m] angle : float Angle of bend, [degrees] Re : float Reynolds number of the pipe (no specification if inlet or outlet properties should be used), [m] rc : float, optional Radius of curvature of the entrance, [m] bend_diameters : float, optional Number of diameters of pipe making up the bend radius (used if rc not provided; defaults to 5), [-] roughness : float, optional Roughness of bend wall, [m] L_unimpeded : float, optional The length of unimpeded pipe without any fittings, instrumentation, or flow disturbances downstream (assumed 20 diameters if not specified), [m] Returns ------- K : float Loss coefficient [-] Notes ----- When inputting bend diameters, note that manufacturers often specify this as a multiplier of nominal diameter, which is different than actual diameter. Those require that rc be specified. `rc` is limited to 0.5 or above; which represents a sharp, square, inner edge - and an outer bend radius of 1.0. Losses are at a minimum when this value is large. This was developed for bend angles between 10 and 180 degrees; and r/D ratios between 0.5 and 10. Both smooth and rough data was used in its development from several sources. Note the loss coefficient includes the surface friction of the pipe as if it was straight. Examples -------- >>> bend_rounded_Miller(Di=.6, bend_diameters=2, angle=90, Re=2e6, ... roughness=2E-5, L_unimpeded=30*.6) 0.15261820705145895 References ---------- .. [1] Miller, Donald S. Internal Flow Systems: Design and Performance Prediction. Gulf Publishing Company, 1990. ''' if rc is None: if bend_diameters is None: bend_diameters = 5.0 rc = Di*bend_diameters radius_ratio = rc/Di if L_unimpeded is None: # Assumption - smooth outlet L_unimpeded = 20.0*Di # Graph is defined for angles 10 to 180 degrees, ratios 0.5 to 10 if radius_ratio < 0.5: radius_ratio = 0.5 if radius_ratio > 10.0: radius_ratio = 10.0 if angle < 10.0: angle = 10.0 # Curve fit in terms of degrees # Caching could work here - angle, radius ratio does not change often Kb = bend_rounded_Miller_Kb(radius_ratio, angle) C_roughness = Miller_bend_roughness_correction(Re=Re, Di=Di, roughness=roughness) '''Section 9.2.2 - Reynolds Number Correction Allow some extrapolation up to 1E8 (1E7 max in graph but the trend looks good) ''' Re_C_Re = min(max(Re, 1E4), 1E8) if radius_ratio >= 2.0: if Re_C_Re == 1E8: C_Re = 0.4196741237602154 # bend_rounded_Miller_C_Re(1e8, 2.0) elif Re_C_Re == 1E4: C_Re = 2.1775876405173977 # bend_rounded_Miller_C_Re(1e4, 2.0) else: C_Re = bend_rounded_Miller_C_Re(Re_C_Re, 2.0) elif radius_ratio <= 1.0: # newton(lambda x: bend_rounded_Miller_C_Re(x, 1.0)-1, 2e5) to get the boundary value C_Re_1 = bend_rounded_Miller_C_Re(Re_C_Re, 1.0) if Re_C_Re < 207956.58904584477 else 1.0 if radius_ratio > 0.7 or Kb < 0.4: C_Re = C_Re_1 else: C_Re = Kb/(Kb - 0.2*C_Re_1 + 0.2) if C_Re > 2.2 or C_Re < 0: C_Re = 2.2 else: # regardless of ratio - 1 if Re_C_Re > 1048884.4656835075: C_Re = 1.0 elif Re_C_Re > horner(bend_rounded_Miller_C_Re_limit_1, radius_ratio): C_Re = 1.0 # ps = np.linspace(1, 2) # qs = [secant(lambda x: bend_rounded_Miller_C_Re(x, i)-1, 2e5) for i in ps] # np.polyfit(ps, qs, 4).tolist() # Line of C_Re=1 as a function of r_d between 0 and 1 else: C_Re = bend_rounded_Miller_C_Re(Re_C_Re, radius_ratio) C_o = Miller_bend_unimpeded_correction(Kb=Kb, Di=Di, L_unimpeded=L_unimpeded) # print('Kb=%g, C Re=%g, C rough =%g, Co=%g' %(Kb, C_Re, C_roughness, C_o)) return Kb*C_Re*C_roughness*C_o bend_rounded_Crane_ratios = [1.0, 1.5, 2.0, 3.0, 4.0, 6.0, 8.0, 10.0, 12.0, 14.0, 16.0, 20.0] bend_rounded_Crane_fds = [20.0, 14.0, 12.0, 12.0, 14.0, 17.0, 24.0, 30.0, 34.0, 38.0, 42.0, 50.0] bend_rounded_Crane_coeffs = [111.75011378177442, -331.89911345404107, -27.841951521656483, 1066.8916917931147, -857.8702190626232, -1151.4621655498092, 1775.2416673594603, 216.37911821941805, -1458.1661519377653, 447.169127650163, 515.361158769082, -322.58377486107577, -38.38349416327068, 71.12796602489138, -16.198233745350535, 19.377150177339015, 31.107110520349494] def bend_rounded_Crane(Di, angle, rc=None, bend_diameters=None): r'''Calculates the loss coefficient for any rounded bend in a pipe according to the Crane TP 410M [1]_ method. This method effectively uses an interpolation from tabulated values in [1]_ for friction factor multipliers vs. curvature radius. .. figure:: fittings/bend_rounded.png :scale: 30 % :alt: rounded bend; after [1]_ Parameters ---------- Di : float Inside diameter of pipe, [m] angle : float Angle of bend, [degrees] rc : float, optional Radius of curvature of the entrance; specify either `rc` or `bend_diameters`, optional [m] bend_diameters : float, optional Number of diameters of pipe making up the bend radius; specify either `rc` or `bend_diameters`, [-] Returns ------- K : float Loss coefficient [-] Notes ----- The Crane method does match the trend of increased pressure drop as roughness increases. The points in [1]_ are extrapolated to other angles via a well-fitting Chebyshev approximation, whose accuracy can be seen in the below plot. .. plot:: plots/bend_rounded_Crane_plot.py Examples -------- >>> bend_rounded_Crane(Di=.4020, rc=.4*5, angle=30) 0.09321910015613409 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' if (rc is not None and bend_diameters is not None): # numba: delete if abs(Di*bend_diameters/rc - 1.0) > 1e-12: # numba: delete raise ValueError("Cannot specify both `rc` and `bend_diameters`") # numba: delete if rc is None: if bend_diameters is None: bend_diameters = 5.0 rc = Di*bend_diameters fd = ft_Crane(Di) radius_ratio = rc/Di if radius_ratio < 1.0: radius_ratio = 1.0 elif radius_ratio > 20.0: radius_ratio = 20.0 factor = horner(bend_rounded_Crane_coeffs, 0.105263157894736836*(radius_ratio - 10.5)) K = fd*factor K = (angle/90.0 - 1.0)*(0.25*pi*fd*radius_ratio + 0.5*K) + K return K _Ito_angles = [45.0, 90.0, 180.0] def bend_rounded_Ito(Di, angle, Re, rc=None, bend_diameters=None, roughness=0.0): """Ito method as shown in Blevins. Curved friction factor as given in Blevins, with minor tweaks to be more accurate to the original methods. """ if not rc: if bend_diameters is None: bend_diameters = 5.0 rc = Di*bend_diameters radius_ratio = rc/Di angle_rad = radians(angle) De2 = Re*(Di/rc)**2.0 if rc > 50.0*Di: alpha = 1.0 else: # Alpha is up to 6, as ratio gets higher, can go down to 1 alpha_45 = 1.0 + 5.13*(Di/rc)**1.47 alpha_90 = 0.95 + 4.42*(Di/rc)**1.96 if rc/Di < 9.85 else 1.0 alpha_180 = 1.0 + 5.06*(Di/rc)**4.52 alpha = interp(angle, _Ito_angles, [alpha_45, alpha_90, alpha_180]) if De2 <= 360.0: fc = friction_factor_curved(Re=Re, Di=Di, Dc=2.0*rc, roughness=roughness, Rec_method='Srinivasan', laminar_method='White', turbulent_method='Srinivasan turbulent') K = 0.0175*alpha*fc*angle*rc/Di else: K = 0.00431*alpha*angle*Re**-0.17*(rc/Di)**0.84 return K crane_standard_bend_angles = [45.0, 90.0, 180.0] crane_standard_bend_losses = [16.0, 30.0, 50.0] bend_rounded_methods = ['Rennels', 'Crane', 'Crane standard', 'Miller', 'Swamee', 'Ito'] bend_rounded_method_unknown = 'Specified method not recognized; methods are %s' %(bend_rounded_methods) def bend_rounded(Di, angle, fd=None, rc=None, bend_diameters=None, Re=None, roughness=0.0, L_unimpeded=None, method='Rennels'): r'''Returns loss coefficient for rounded bend in a pipe of diameter `Di`, `angle`, with a specified either radius of curvature `rc` or curvature defined by `bend_diameters`, Reynolds number `Re` and optionally pipe roughness, unimpeded length downstrean, and with the specified method. This calculation has six methods available. It is hard to describe one method as more conservative than another as depending on the conditions, the relative results change significantly. The 'Miller' method is the most complicated and slowest method; the 'Ito' method comprehensive as well and a source of original data, and the primary basis for the 'Rennels' method. The 'Swamee' method is very simple and generally does not match the other methods. The 'Crane' method may match or not match other methods depending on the inputs. There is also a 'Crane standard' method for use with threaded fittings which have higher pressure drops. It is a linear interpolation of values at angles of 45, 90, and 180 degrees. The Rennels [1]_ formula is: .. math:: K = f\alpha\frac{r}{d} + (0.10 + 2.4f)\sin(\alpha/2) + \frac{6.6f(\sqrt{\sin(\alpha/2)}+\sin(\alpha/2))} {(r/d)^{\frac{4\alpha}{\pi}}} The Swamee [5]_ formula is: .. math:: K = \left[0.0733 + 0.923 \left(\frac{d}{rc}\right)^{3.5} \right] \theta^{0.5} .. figure:: fittings/bend_rounded.png :scale: 30 % :alt: rounded bend; after [1]_ Parameters ---------- Di : float Inside diameter of pipe, [m] angle : float Angle of bend, [degrees] fd : float, optional Darcy friction factor; used only in Rennels method; calculated if not provided from Reynolds number, diameter, and roughness [-] rc : float, optional Radius of curvature of the entrance, optional [m] bend_diameters : float, optional (used if rc not provided) Number of diameters of pipe making up the bend radius [-] Re : float, optional Reynolds number of the pipe (used in Miller, Ito methods primarily, and Rennels method if no friction factor given), [-] roughness : float, optional Roughness of bend wall (used in Miller, Ito methods primarily, and Rennels method if no friction factor given), [m] L_unimpeded : float, optional The length of unimpeded pipe without any fittings, instrumentation, or flow disturbances downstream (assumed 20 diameters if not specified); used only in Miller method, [m] method : str, optional One of 'Rennels', 'Miller', 'Crane', 'Crane standard', 'Ito', or 'Swamee', [-] Returns ------- K : float Loss coefficient [-] Notes ----- When inputting bend diameters, note that manufacturers often specify this as a multiplier of nominal diameter, which is different than actual diameter. Those require that rc be specified. In the 'Rennels' method, `rc` is limited to 0.5 or above; which represents a sharp, square, inner edge - and an outer bend radius of 1.0. Losses are at a minimum when this value is large. Its first term represents surface friction loss; the second, secondary flows; and the third, flow separation. It encompasses the entire range of elbow and pipe bend configurations. It was developed for bend angles between 0 and 180 degrees; and r/D ratios above 0.5. Only smooth pipe data was used in its development. Note the loss coefficient includes the surface friction of the pipe as if it was straight. Examples -------- >>> bend_rounded(Di=4.020, rc=4.0*5, angle=30, Re=1E5) 0.11519070808085191 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] Miller, Donald S. Internal Flow Systems: Design and Performance Prediction. Gulf Publishing Company, 1990. .. [3] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. .. [4] Swamee, Prabhata K., and Ashok K. Sharma. Design of Water Supply Pipe Networks. John Wiley & Sons, 2008. .. [5] ItoÌ„, H."Pressure Losses in Smooth Pipe Bends." Journal of Fluids Engineering 82, no. 1 (March 1, 1960): 131-40. doi:10.1115/1.3662501 .. [6] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' if method is None: method = 'Rennels' if bend_diameters is None and rc is None: bend_diameters = 5.0 if rc is None: rc = Di*bend_diameters if method == 'Rennels': angle = radians(angle) if fd is None: if Re is None: raise ValueError("The `Rennels` method requires either a " "specified friction factor or `Re`") fd = Clamond(Re=Re, eD=roughness/Di, fast=False) sin_term = sin(0.5*angle) return (fd*angle*rc/Di + (0.10 + 2.4*fd)*sin_term + 6.6*fd*(sqrt(sin_term) + sin_term)/(rc/Di)**(4.*angle/pi)) elif method == 'Miller': if Re is None: raise ValueError('Miller method requires Reynolds number') return bend_rounded_Miller(Di=Di, angle=angle, Re=Re, rc=rc, bend_diameters=bend_diameters, roughness=roughness, L_unimpeded=L_unimpeded) elif method == 'Crane': return bend_rounded_Crane(Di=Di, angle=angle, rc=rc, bend_diameters=bend_diameters) elif method == 'Crane standard': return ft_Crane(Di)*interp(angle, crane_standard_bend_angles, crane_standard_bend_losses, extrapolate=True) elif method == 'Ito': if Re is None: raise ValueError("The `Iso` method requires`Re`") return bend_rounded_Ito(Di=Di, angle=angle, Re=Re, rc=rc, bend_diameters=bend_diameters, roughness=roughness) elif method == 'Swamee': return (0.0733 + 0.923*(Di/rc)**3.5)*sqrt(radians(angle)) else: raise ValueError(bend_rounded_method_unknown) bend_miter_Miller_coeffs = [-12.050299402650126, -4.472433689233185, 50.51478860493546, 18.246302079077196, -84.61426660754049, -28.9340865412371, 71.07345367553872, 21.354010992349565, -30.239604839338, -5.855129345095336, 5.465131779316523, -1.0881363712712555, -0.3635431075401224, 0.5120065303391261, 0.46818214491579246, 0.9789177645343993, 0.5080285124448385] def bend_miter_Miller(Di, angle, Re, roughness=0.0, L_unimpeded=None): r'''Calculates the loss coefficient for a single miter bend according to Miller [1]_. This is a sophisticated model which uses corrections for pipe roughness, the length of the pipe downstream before another interruption, and a correction for Reynolds number. It interpolates several times using several corrections graphs in [1]_. Parameters ---------- Di : float Inside diameter of pipe, [m] angle : float Angle of miter bend, [degrees] Re : float Reynolds number of the pipe (no specification if inlet or outlet properties should be used), [m] roughness : float, optional Roughness of bend wall, [m] L_unimpeded : float, optional The length of unimpeded pipe without any fittings, instrumentation, or flow disturbances downstream (assumed 20 diameters if not specified), [m] Returns ------- K : float Loss coefficient [-] Notes ----- Note the loss coefficient includes the surface friction of the pipe as if it was straight. Examples -------- >>> bend_miter_Miller(Di=.6, angle=90, Re=2e6, roughness=2e-5, ... L_unimpeded=30*.6) 1.1921574594947664 References ---------- .. [1] Miller, Donald S. Internal Flow Systems: Design and Performance Prediction. Gulf Publishing Company, 1990. ''' if L_unimpeded is None: L_unimpeded = 20.0*Di if angle > 120.0: angle = 120.0 Kb = horner(bend_miter_Miller_coeffs, 1.0/60.0*(angle-60.0)) C_o = Miller_bend_unimpeded_correction(Kb=Kb, Di=Di, L_unimpeded=L_unimpeded) C_roughness = Miller_bend_roughness_correction(Re=Re, Di=Di, roughness=roughness) Re_C_Re = min(max(Re, 1E4), 1E8) C_Re_1 = bend_rounded_Miller_C_Re(Re_C_Re, 1.0) if Re_C_Re < 207956.58904584477 else 1.0 C_Re = Kb/(Kb - 0.2*C_Re_1 + 0.2) if C_Re > 2.2 or C_Re < 0: C_Re = 2.2 return Kb*C_Re*C_roughness*C_o bend_miter_Crane_angles = [0.0, 15.0, 30.0, 45.0, 60.0, 75.0, 90.0] bend_miter_Crane_fds = [2.0, 4.0, 8.0, 15.0, 25.0, 40.0, 60.0] bend_miter_Blevins_angles = [0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 120.0] bend_miter_Blevins_Ks = [0.0, .025, .055, .1, .2, .35, .5, .7, .9, 1.1, 1.5] bend_miter_methods = ['Rennels', 'Miller', 'Crane', 'Blevins'] bend_miter_method_unknown_msg = 'Specified method not recognized; methods are %s' %(bend_miter_methods) def bend_miter(angle, Di=None, Re=None, roughness=0.0, L_unimpeded=None, method='Rennels'): r'''Returns loss coefficient for any single-joint miter bend in a pipe of angle `angle`, diameter `Di`, Reynolds number `Re`, roughness `roughness` unimpeded downstream length `L_unimpeded`, and using the specified method. This calculation has four methods available. The 'Rennels' method is based on a formula and extends to angles up to 150 degrees. The 'Crane' method extends only to 90 degrees; the 'Miller' and 'Blevins' methods extend to 120 degrees. The Rennels [1]_ formula is: .. math:: K = 0.42\sin(\alpha/2) + 2.56\sin^3(\alpha/2) The 'Crane', 'Miller', and 'Blevins' methods are all in part graph or tabular based and do not have straightforward formulas. .. figure:: fittings/bend_miter.png :scale: 25 % :alt: Miter bend, one joint only; after [1]_ Parameters ---------- angle : float Angle of bend, [degrees] Di : float, optional Inside diameter of pipe, [m] Re : float, optional Reynolds number of the pipe (no specification if inlet or outlet properties should be used), [-] roughness : float, optional Roughness of bend wall, [m] L_unimpeded : float, optional The length of unimpeded pipe without any fittings, instrumentation, or flow disturbances downstream (assumed 20 diameters if not specified), [m] method : str, optional The specified method to use; one of 'Rennels', 'Miller', 'Crane', or 'Blevins', [-] Returns ------- K : float Loss coefficient with respect to either upstream or downstream diameter, [-] Notes ----- This method is designed only for single-jointed miter bends. It is common for miter bends to have two or three sections, to further reduce the loss coefficient. Some methods exist in [2]_ for taking this into account. Because the additional configurations reduce the pressure loss, it is "common practice" to simply ignore their effect and accept the slight overdesign. The following figure illustrates the different methods. .. plot:: plots/bend_miter_plot.py Examples -------- >>> bend_miter(150) 2.7128147734758103 >>> bend_miter(Di=.6, angle=45, Re=1e6, roughness=1e-5, L_unimpeded=20, ... method='Miller') 0.2944060416245169 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] Miller, Donald S. Internal Flow Systems: Design and Performance Prediction. Gulf Publishing Company, 1990. .. [3] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. .. [4] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' if method is None: method = 'Rennels' if method == 'Rennels': angle_rad = radians(angle) sin_half_angle = sin(angle_rad*0.5) return 0.42*sin_half_angle + 2.56*sin_half_angle*sin_half_angle*sin_half_angle elif method == 'Crane': factor = interp(angle, bend_miter_Crane_angles, bend_miter_Crane_fds) return ft_Crane(Di)*factor elif method == 'Miller': return bend_miter_Miller(Di=Di, angle=angle, Re=Re, roughness=roughness, L_unimpeded=L_unimpeded) elif method == 'Blevins': # data from Idelchik, Miller, an earlier ASME publication # For 90-120 degrees, a polynomial/spline would be better than a linear fit K_base = interp(angle, bend_miter_Blevins_angles, bend_miter_Blevins_Ks) return K_base*(2E5/Re)**0.2 else: raise ValueError(bend_miter_method_unknown_msg) def helix(Di, rs, pitch, N, fd): r'''Returns loss coefficient for any size constant-pitch helix as shown in [1]_. Has applications in immersed coils in tanks. .. math:: K = N \left[f\frac{\sqrt{(2\pi r)^2 + p^2}}{d} + 0.20 + 4.8 f\right] Parameters ---------- Di : float Inside diameter of pipe, [m] rs : float Radius of spiral, [m] pitch : float Distance between two subsequent coil centers, [m] N : float Number of coils in the helix [-] fd : float Darcy friction factor [-] Returns ------- K : float Loss coefficient [-] Notes ----- Formulation based on peak secondary flow as in two 180 degree bends per coil. Flow separation ignored. No f, Re, geometry limitations. Source not compared against others. Examples -------- >>> helix(Di=0.01, rs=0.1, pitch=.03, N=10, fd=.0185) 14.525134924495514 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. ''' return N*(fd*sqrt((2*pi*rs)**2 + pitch**2)/Di + 0.20 + 4.8*fd) def spiral(Di, rmax, rmin, pitch, fd): r'''Returns loss coefficient for any size constant-pitch spiral as shown in [1]_. Has applications in immersed coils in tanks. .. math:: K = \frac{r_{max} - r_{min}}{p} \left[ f\pi\left(\frac{r_{max} +r_{min}}{d}\right) + 0.20 + 4.8f\right] + \frac{13.2f}{(r_{min}/d)^2} Parameters ---------- Di : float Inside diameter of pipe, [m] rmax : float Radius of spiral at extremity, [m] rmin : float Radius of spiral at end near center, [m] pitch : float Distance between two subsequent coil centers, [m] fd : float Darcy friction factor [-] Returns ------- K : float Loss coefficient [-] Notes ----- Source not compared against others. Examples -------- >>> spiral(Di=0.01, rmax=.1, rmin=.02, pitch=.01, fd=0.0185) 7.950918552775473 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. ''' return (rmax-rmin)/pitch*(fd*pi*(rmax+rmin)/Di + 0.20 + 4.8*fd) + 13.2*fd/(rmin/Di)**2 ### Contractions tck_contraction_abrupt_Miller = implementation_optimize_tck([ [0.0, 0.0, 0.0, 0.0, 0.5553844358576507, 0.7193937784550933, 0.8144518359319883, 1.0, 1.0, 1.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.008318525134414716, 0.03421785904690331, 0.1, 0.1, 0.1, 0.1], [0.4994829280256306, 0.4879234090312588, 0.4255534701302917, 0.13986792857000196, 0.18065199312360336, 0.08701863105570044, 0.440886271558411, 0.4243716649409474, 0.36030826702480984, 0.2117960027770777, 0.11248601502220595, 0.08616608643911047, 0.4018850813314268, 0.3706136100344715, 0.26368725187530173, 0.15316562777200723, 0.09856904494833027, 0.08399367477431015, 0.17005190739488515, 0.16023910724406945, 0.1242906181281536, 0.06137573180850665, 0.05726821990215439, 0.04684229988854647, 0.03922553704852396, 0.036955938945600654, 0.029450340285188167, 0.028656302938315878, 0.019588760093397686, 0.01950497484044149, 0.006447273360860872, 0.006569278508667471, 0.0053786079483153885, -0.013158950566037957, 0.010870991979047888, 0.0015100946100218284, -0.0005221250682760256, -0.0006447517875307877, -0.0007846123907797336, 0.0024459067063225485, -0.0019102888752274472, -0.0001356300464508266], 3, 3]) def contraction_round_Miller(Di1, Di2, rc): r'''Returns loss coefficient for any round edged pipe contraction using the method of Miller [1]_. This method uses a spline fit to a graph with area ratios 0 to 1, and radius ratios (rc/Di2) from 0.1 to 0. Parameters ---------- Di1 : float Inside diameter of original pipe, [m] Di2 : float Inside diameter of following pipe, [m] rc : float Radius of curvature of the contraction, [m] Returns ------- K : float Loss coefficient in terms of the following pipe, [-] Notes ----- This method normally gives lower losses than the Rennels formulation. Examples -------- >>> contraction_round_Miller(Di1=1, Di2=0.4, rc=0.04) 0.08565953051298639 References ---------- .. [1] Miller, Donald S. Internal Flow Systems: Design and Performance Prediction. Gulf Publishing Company, 1990. ''' A_ratio = Di2*Di2/(Di1*Di1) radius_ratio = rc/Di2 if radius_ratio > 0.1: radius_ratio = 0.1 Ks = float(bisplev(A_ratio, radius_ratio, tck_contraction_abrupt_Miller)) # For some near-1 ratios, can get negative Ks due to the spline. if Ks < 0.0: Ks = 0.0 return Ks contraction_sharp_methods = ['Rennels', 'Hooper', 'Crane'] contraction_sharp_method_unknown = 'Specified method not recognized; methods are %s' %(contraction_sharp_methods) def contraction_sharp(Di1, Di2, fd=None, Re=None, roughness=0.0, method='Rennels'): r'''Returns loss coefficient for a sharp edged pipe contraction. This calculation has two methods available. The 'Rennels' [2]_ method is a fit for turbulent regimes, while the `Hooper` method is more complicated and claims to have full dependence on `Re` including a laminar transition at `Re` of 2500 (based on the original pipe diameter). The Rennels [1]_ formulas are: .. math:: K_1 = 0.0696(1-\beta^5)\lambda^2 + (\lambda-1)^2 .. math:: \lambda = 1 + 0.622(1-0.215\beta^2 - 0.785\beta^5) .. math:: \beta = d_2/d_1 The Hooper [1]_ formulas are: If :math:`{Re}_1 \le 2500`: .. math:: K_1 = \left[1.2 + \frac{160}{\text{Re}_1}\right] \left[ \left(\frac{D_1} {D_2} \right)^4 -1 \right] If :math:`{Re}_1 > 2500`: .. math:: K_1 = \left[0.6 + 0.48f_1\right] \left(\frac{D_1} {D_2} \right)^2 \left[ \left(\frac{D_1} {D_2} \right)^2 -1 \right] Converting the loss coefficient to a consistent basis: .. math:: K_2 = K_1\frac{D_2^4}{D_1^4} For the Crane formula see `contraction_conical_Crane` with a length of zero. .. figure:: fittings/contraction_sharp.png :scale: 40 % :alt: Sharp contraction Parameters ---------- Di1 : float Inside diameter of original (larger) pipe, [m] Di2 : float Inside diameter of following (smaller) pipe, [m] fd : float, optional Darcy friction factor in original pipe; used only in the Hooper method and will be calculated from `Re` if not given, [-] Re : float, optional Reynolds number of the pipe (used in Hooper method, [m] roughness : float, optional Roughness of original pipe (used in Hooper method only if no friction factor given), [m] method : str The calculation method to use; one of 'Hooper', 'Rennels', or 'Crane' [-] Returns ------- K : float Loss coefficient in terms of the following pipe [-] Notes ----- A value of 0.506 or simply 0.5 is often used. Examples -------- >>> contraction_sharp(Di1=1, Di2=0.4) 0.5301269161 >>> contraction_sharp(Di1=1, Di2=0.4, Re=1e5, method='Hooper') 0.5112534765 The Hooper method supports laminar flow, while `Rennels` is not even `Re` aware. >>> contraction_sharp(Di1=1, Di2=0.4, Re=1e3, method='Hooper') 1.325184 Crane offers similar results: >>> contraction_sharp(3.0, 2.0, method='Crane') 0.2777777 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] Hooper, William B. "Calculate Head Loss Caused by Change in Pipe Size." Chemical Engineering 95, no. 16 (November 7, 1988): 89. ''' if method == 'Rennels': beta = Di2/Di1 beta2 = beta*beta beta5 = beta2*beta2*beta lbd = 1.0 + 0.622*(1.0 - 0.215*beta2 - 0.785*beta5) return 0.0696*(1.0 - beta5)*lbd*lbd + (lbd - 1.0)*(lbd - 1.0) elif method == 'Hooper': if Re is None: raise ValueError("Hooper method requires `Re`") D1_D2 = Di1/Di2 D1_D2_2 = D1_D2*D1_D2 if Re <= 2500.0: K = (1.2 + 160.0/Re)*(D1_D2_2*D1_D2_2 - 1.0) else: if fd is None: fd = Clamond(Re=Re, eD=roughness/Di1) K = (0.6 + 0.48*fd)*D1_D2_2*(D1_D2_2 - 1.0) K = change_K_basis(K, Di1, Di2) return K elif method == 'Crane': return contraction_conical_Crane(Di1, Di2, l=0.0) else: raise ValueError(contraction_sharp_method_unknown) contraction_round_Idelchik_ratios = [0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.08, 0.12, 0.16, 0.2] contraction_round_Idelchik_factors = [0.5, 0.43, 0.37, 0.31, 0.26, 0.22, 0.20, 0.15, 0.09, 0.06, 0.03] # Third factor is 0.36 in 1960 edition, 0.37 in Design Guide contraction_round_methods = ['Rennels', 'Miller', 'Idelchik'] contraction_round_unknown_method = 'Specified method not recognized; methods are %s' %(contraction_round_methods) def contraction_round(Di1, Di2, rc, method='Rennels'): r'''Returns loss coefficient for any any round edged pipe contraction. This calculation has three methods available. The 'Miller' [2]_ method is a bivariate spline digitization of a graph; the 'Idelchik' [3]_ method is an interpolation using a formula and a table of values. The most conservative formulation is that of Rennels; with fairly similar. The 'Idelchik' method is more conservative and less complex; it offers a straight-line curve where the others curves are curved. The Rennels [1]_ formulas are: .. math:: K = 0.0696\left(1 - 0.569\frac{r}{d_2}\right)\left(1-\sqrt{\frac{r} {d_2}}\beta\right)(1-\beta^5)\lambda^2 + (\lambda-1)^2 .. math:: \lambda = 1 + 0.622\left(1 - 0.30\sqrt{\frac{r}{d_2}} - 0.70\frac{r}{d_2}\right)^4 (1-0.215\beta^2-0.785\beta^5) .. math:: \beta = d_2/d_1 .. figure:: fittings/contraction_round.png :scale: 30 % :alt: Circular round contraction; after [1]_ Parameters ---------- Di1 : float Inside diameter of original pipe, [m] Di2 : float Inside diameter of following pipe, [m] rc : float Radius of curvature of the contraction, [m] method : str The calculation method to use; one of 'Rennels', 'Miller', or 'Idelchik', [-] Returns ------- K : float Loss coefficient in terms of the following pipe [-] Notes ----- Rounding radius larger than 0.14Di2 prevents flow separation from the wall. Further increase in rounding radius continues to reduce loss coefficient. .. plot:: plots/contraction_round_plot.py Examples -------- >>> contraction_round(Di1=1, Di2=0.4, rc=0.04) 0.1783332490866574 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] Miller, Donald S. Internal Flow Systems: Design and Performance Prediction. Gulf Publishing Company, 1990. .. [3] Idel’chik, I. E. Handbook of Hydraulic Resistance: Coefficients of Local Resistance and of Friction (Spravochnik Po Gidravlicheskim Soprotivleniyam, Koeffitsienty Mestnykh Soprotivlenii i Soprotivleniya Treniya). National technical information Service, 1966. ''' beta = Di2/Di1 if method is None: method = 'Rennels' if method == 'Rennels': lbd = 1.0 + 0.622*(1.0 - 0.30*sqrt(rc/Di2) - 0.70*rc/Di2)**4*(1.0 - 0.215*beta**2 - 0.785*beta**5) return 0.0696*(1.0 - 0.569*rc/Di2)*(1.0 - sqrt(rc/Di2)*beta)*(1.0 - beta**5)*lbd*lbd + (lbd - 1.0)**2 elif method == 'Miller': return contraction_round_Miller(Di1=Di1, Di2=Di2, rc=rc) elif method == 'Idelchik': # Di2, ratio defined in terms over diameter K0 = interp(rc/Di2, contraction_round_Idelchik_ratios, contraction_round_Idelchik_factors) return K0*(1.0 - beta*beta) else: raise ValueError(contraction_round_unknown_method) def contraction_conical_Crane(Di1, Di2, l=None, angle=None): r'''Returns loss coefficient for a conical pipe contraction as shown in Crane TP 410M [1]_ between 0 and 180 degrees. If :math:`\theta < 45^{\circ}`: .. math:: K_2 = {0.8 \sin \frac{\theta}{2}(1 - \beta^2)} otherwise: .. math:: K_2 = {0.5\sqrt{\sin \frac{\theta}{2}} (1 - \beta^2)} .. math:: \beta = d_2/d_1 Parameters ---------- Di1 : float Inside pipe diameter of the larger, upstream, pipe, [m] Di2 : float Inside pipe diameter of the smaller, downstream, pipe, [m] l : float, optional Length of the contraction [m] angle : float, optional Angle of contraction [degrees] Returns ------- K : float Loss coefficient in terms of the following (smaller) pipe [-] Notes ----- Cheap and has substantial impact on pressure drop. Note that the nomenclature in [1]_ is somewhat different - the smaller pipe is called 1, and the larger pipe is called 2; and so the beta ratio is reversed, and the fourth power of beta used in their equation is not necessary. Examples -------- >>> contraction_conical_Crane(Di1=0.0779, Di2=0.0525, l=0) 0.2729017979998056 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' if l is not None: if l == 0.0: angle_rad = pi else: angle_rad = 2.0*atan((Di1-Di2)/(2.0*l)) elif angle is not None: angle_rad = deg2rad*angle #l = (Di1 - Di2)/(2.0*tan(0.5*angle)) # L is not needed in this calculation else: raise ValueError('One of `l` or `angle` must be specified') beta = Di2/Di1 beta2 = beta*beta if angle_rad < 0.25*pi: # Formula 1 K2 = 0.8*sin(0.5*angle_rad)*(1.0 - beta2) else: # Formula 2 K2 = 0.5*(sqrt(sin(0.5*angle_rad))*(1.0 - beta2)) return K2 contraction_conical_angles_Idelchik = [2, 3, 6, 8, 10, 12, 14, 16, 20] contraction_conical_A_ratios_Idelchik = [0.05, 0.075, 0.1, 0.15, 0.2, 0.25, 0.3, 0.4, 0.5, 0.6] contraction_conical_friction_Idelchik = [ [0.14, 0.1, 0.05, 0.04, 0.03, 0.03, 0.02, 0.02, 0.01], [0.14, 0.1, 0.05, 0.04, 0.03, 0.02, 0.02, 0.02, 0.01], [0.14, 0.1, 0.05, 0.04, 0.03, 0.02, 0.02, 0.02, 0.01], [0.14, 0.1, 0.05, 0.04, 0.03, 0.02, 0.02, 0.02, 0.01], [0.14, 0.1, 0.05, 0.03, 0.03, 0.02, 0.02, 0.02, 0.01], [0.14, 0.1, 0.05, 0.03, 0.03, 0.02, 0.02, 0.02, 0.01], [0.13, 0.09, 0.04, 0.03, 0.03, 0.02, 0.02, 0.02, 0.01], [0.12, 0.08, 0.04, 0.03, 0.02, 0.02, 0.02, 0.02, 0.01], [0.11, 0.07, 0.04, 0.03, 0.02, 0.02, 0.02, 0.02, 0.01], [0.09, 0.06, 0.03, 0.02, 0.02, 0.02, 0.02, 0.02, 0.01]] contraction_conical_frction_Idelchik_tck = tck_interp2d_linear(contraction_conical_angles_Idelchik, contraction_conical_A_ratios_Idelchik, contraction_conical_friction_Idelchik, kx=1, ky=1) contraction_conical_frction_Idelchik_obj = lambda x, y : float(bisplev(x, y, contraction_conical_frction_Idelchik_tck)) contraction_conical_l_ratios_Blevins = [0.0, 0.05, 0.1, 0.15, 0.6] contraction_conical_A_ratios_Blevins = [1.2, 1.5, 2.0, 3.0, 5.0, 10.0] contraction_conical_Ks_Blevins = [[.08, .06, .04, .03, .03], [.17, .12, .09, .07, .06], [.25, .23, .17, .14, .06], [.33, .31, .27, .23, .08], [.4, .38, .35, .31, .18], [.45, .45, .41, .39, .27]] contraction_conical_Blevins_tck = tck_interp2d_linear(contraction_conical_l_ratios_Blevins, contraction_conical_A_ratios_Blevins, contraction_conical_Ks_Blevins, kx=1, ky=1) contraction_conical_Blevins_obj = lambda x, y: float(bisplev(x, y, contraction_conical_Blevins_tck)) contraction_conical_Miller_tck = implementation_optimize_tck([ [ -2.2990613088204293, -2.2990613088204293, -2.2990613088204293, -2.2990613088204293, -1.9345621970869704, -1.404550366067981, -1.1205580332553446, -0.7202074014540876, -0.18305354619604816, 0.5791478950190209, 1.2576636025381396, 2.2907351590368092, 2.2907351590368092, 2.2907351590368092, 2.2907351590368092], [ 0.09564194294666524, 0.09564194294666524, 0.17553288711543455, 0.263895293813645, 0.3890819147022019, 0.46277323951998217, 0.5504296236707121, 0.7265657737596892, 1.0772357648098938, 1.2566022106161683, 1.3896885941879062, 1.3896885941879062], [ -0.019518693251672135, 0.04439613867473242, 0.11549650174721836, 0.21325506677861075, 0.268179723158688, 0.31125301421509866, 0.38394595875289805, 0.4808287074532006, 0.5205981039085685, 0.5444079315893322, -0.016435668699253902, 0.036132755789022385, 0.09344296094392814, 0.18264727448046977, 0.23460506265914166, 0.2772896726095435, 0.3475409775384636, 0.45339837219176454, 0.49766916609817535, 0.533981552804865, -0.006524265764454468, 0.024107195694715193, 0.05862956870028131, 0.12122104285943507, 0.17207312024278762, 0.2175356288866053, 0.282297563080016, 0.3995008583081823, 0.4563724107887528, 0.5175856070810377, 0.00971345082784277, 0.025981390544674948, 0.0438578322196561, 0.08103403101086341, 0.11351528283253318, 0.16873088559958743, 0.2347695003589526, 0.3428907161435351, 0.42017998591926276, 0.49784770602295325, 0.022572122504756167, 0.0277671279384801, 0.033512283408629495, 0.05470423531298454, 0.06485563480390757, 0.10483763206962131, 0.1802208799223503, 0.29075723837012296, 0.35502824385155335, 0.4460106883062252, 0.030312717163327077, 0.03080869253188484, 0.03583128286874324, 0.04627567520803308, 0.050501484562613955, 0.05683263025468022, 0.12297253802915259, 0.2415222338797251, 0.3025777968736861, 0.3724407040165538, 0.03115993727503623, 0.03443665864698284, 0.03574452046031886, 0.03995718256281492, 0.04759698369059247, 0.050404788737262694, 0.052375330859925545, 0.1356057568743366, 0.20463667731329582, 0.26043914743762864, 0.02844193432840707, 0.0219797618956514, 0.013352154001094038, 0.018393840217638825, 0.02448602185526976, 0.038812331325140816, 0.0522197430071833, 0.057132169238281294, 0.06871138075102912, 0.09334527259294226, 0.04089985439478869, 0.07148502476706058, 0.06750266344761692, 0.038560772865945815, 0.020172054809734774, 0.01596047961326318, 0.033338955878272625, 0.058808731166289874, 0.055802602927507314, 0.025265841939291166, 0.11200365568168691, 0.11945663812857424, 0.10673570013847415, 0.07758458179796549, 0.055266607234870514, 0.03072901347153607, 0.025790727504652375, 0.037031664564632104, 0.0601306808668177, 0.07612350738135039, 0.0964900248905913, 0.11088549072803407, 0.10778442024110846, 0.09386482850507959, 0.06940476627270852, 0.04434507143623664, 0.03331958878624311, 0.01854072032522763, 0.027553821071285824, 0.045426686375783926], 3, 1]) contraction_conical_Miller_obj = lambda l_r2, A_ratio: max(min(float(bisplev(log(l_r2), log(A_ratio), contraction_conical_Miller_tck)), .5), 0) contraction_conical_methods = ['Rennels', 'Idelchik', 'Crane', 'Swamee', 'Blevins', 'Miller', 'Hooper'] contraction_conical_method_unknown = 'Specified method not recognized; methods are %s' %(contraction_conical_methods) def contraction_conical(Di1, Di2, fd=None, l=None, angle=None, Re=None, roughness=0.0, method='Rennels'): r'''Returns the loss coefficient for any conical pipe contraction. This calculation has five methods available. The 'Idelchik' [2]_ and 'Blevins' [3]_ methods use interpolation among tables of values; 'Miller' uses a 2d spline representation of a graph; and the 'Rennels' [1]_, 'Crane' [4]_, 'Swamee' [5]_ and 'Hooper' methods use formulas for their calculations. The 'Rennels' [1]_ formulas are: .. math:: K_2 = K_{fr,2} + K_{conv,2} .. math:: K_{fr,2} = \frac{f_d ({1 - \beta^4})}{8\sin(\theta/2)} .. math:: K_{conv,2} = 0.0696[1+C_B(\sin(\alpha/2)-1)](1-\beta^5)\lambda^2 + (\lambda-1)^2 .. math:: \lambda = 1 + 0.622(\alpha/180)^{0.8}(1-0.215\beta^2-0.785\beta^5) .. math:: \beta = d_2/d_1 The 'Swamee' [5]_ formula is: .. math:: K = 0.315 \theta^{1/3} The Hooper [7]_ formulas are: If :math:`{Re}_1 \le 2500`: .. math:: K_{1,sharp} = \left[1.2 + \frac{160}{\text{Re}_1}\right] \left[ \left(\frac{D_1} {D_2} \right)^4 -1 \right] If :math:`{Re}_1 > 2500`: .. math:: K_{1,sharp} = \left[0.6 + 0.48f_1\right] \left(\frac{D_1} {D_2} \right)^2 \left[ \left(\frac{D_1} {D_2} \right)^2 -1 \right] In both cases, a multiplier is added for the angle: For angles between 45 and 180 degrees: .. math:: K_1 = K_{1,sharp} \sqrt{\sin \frac{\theta}{2}} For angles between 0 and 45 degrees: .. math:: K_1 = K_{1,sharp} 1.6 \sin \frac{\theta}{2} Converting the Hooper loss coefficient to a consistent basis: .. math:: K_2 = K_1\frac{D_2^4}{D_1^4} .. figure:: fittings/contraction_conical.png :scale: 30 % :alt: contraction conical; after [1]_ Parameters ---------- Di1 : float Inside pipe diameter of the larger, upstream, pipe, [m] Di2 : float Inside pipe diameter of the smaller, downstream, pipe, [m] fd : float, optional Darcy friction factor; used only in the `Rennels` and `Hooper` method and will be calculated from `Re` and `roughness` if not given, [-] l : float, optional Length of the contraction, optional [m] angle : float, optional Angle of contraction (180 = sharp, 0 = infinitely long contraction), optional [degrees] Re : float, optional Reynolds number of the pipe (used in `Rennels` and `Hooper` method only if no friction factor given), [m] roughness : float, optional Roughness of bend wall (used in Rennel method if no friction factor given), [m] method : str, optional The method to use for the calculation; one of 'Rennels', 'Idelchik', 'Crane', 'Swamee' 'Hooper', 'Miller', or 'Blevins', [-] Returns ------- K : float Loss coefficient in terms of the following pipe [-] Notes ----- Cheap and has substantial impact on pressure drop. The 'Idelchik' method includes two tabular interpolations; its friction term is limited to angles between 2 and 20 degrees and area ratios 0.05 to 0.6, while its main term is limited to length over diameter ratios 0.025 to 0.6. This seems to give it high results for angles < 25 degrees. The 'Blevins' method is based on Idelchik data; it should not be used, because its data jumps around and its data is limited to area ratios .1 to 0.83, and length over diameter ratios 0 to 0.6. The 'Miller' method jumps around as well. Unlike most of Miller's method, there is no correction for Reynolds number. There is quite a bit of variance in the predictions of the methods, as demonstrated by the following figure. .. plot:: plots/contraction_conical_plot.py Examples -------- >>> contraction_conical(Di1=0.1, Di2=0.04, l=0.04, Re=1E6) 0.15639885880609544 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] Idel’chik, I. E. Handbook of Hydraulic Resistance: Coefficients of Local Resistance and of Friction (Spravochnik Po Gidravlicheskim Soprotivleniyam, Koeffitsienty Mestnykh Soprotivlenii i Soprotivleniya Treniya). National technical information Service, 1966. .. [3] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. .. [4] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. .. [5] Swamee, Prabhata K., and Ashok K. Sharma. Design of Water Supply Pipe Networks. John Wiley & Sons, 2008. .. [6] Miller, Donald S. Internal Flow Systems: Design and Performance Prediction. Gulf Publishing Company, 1990. .. [7] Hooper, William B. "Calculate Head Loss Caused by Change in Pipe Size." Chemical Engineering 95, no. 16 (November 7, 1988): 89. ''' beta = Di2/Di1 if angle is not None: angle_rad = angle*deg2rad l = (Di1 - Di2)/(2.0*tan(0.5*angle_rad)) elif l is not None: if l != 0.0: angle_rad = 2.0*atan((Di1-Di2)/(2.0*l)) else: angle_rad = pi else: raise ValueError('Either l or angle is required') if method == 'Rennels': if fd is None: if Re is None: raise ValueError("The `Rennels` method requires either a " "specified friction factor or `Re`") fd = Clamond(Re=Re, eD=roughness/Di2, fast=False) beta2 = beta*beta beta4 = beta2*beta2 beta5 = beta4*beta lbd = 1.0 + 0.622*(angle_rad/pi)**0.8*(1.0 - 0.215*beta2 - 0.785*beta5) sin_half_angle = sin(0.5*angle_rad) K_fr2 = fd*(1.0 - beta4)/(8.0*sin_half_angle) K_conv2 = 0.0696*sin_half_angle*(1.0 - beta5)*lbd*lbd + (lbd - 1.0)**2 return K_fr2 + K_conv2 elif method == 'Crane': return contraction_conical_Crane(Di1=Di1, Di2=Di2, l=l, angle=angle_rad*rad2deg) elif method == 'Swamee': return 0.315*angle_rad**(1.0/3.0) elif method == 'Idelchik': # Diagram 3-6; already digitized for beveled entrance K0 = float(bisplev(angle_rad*rad2deg, l/Di2, entrance_beveled_Idelchik_tck)) # Angles 0 to 20, ratios 0.05 to 0.06 if angle_rad > 20.0*deg2rad: angle_fric = 20.0 elif angle_rad < 2.0*deg2rad: angle_fric = 2.0 else: angle_fric = angle_rad*rad2deg A_ratio = A_ratio_fric = Di2*Di2/(Di1*Di1) if A_ratio_fric < 0.05: A_ratio_fric = 0.05 elif A_ratio_fric > 0.6: A_ratio_fric = 0.6 K_fr = float(contraction_conical_frction_Idelchik_obj(angle_fric, A_ratio_fric)) return K0*(1.0 - A_ratio) + K_fr elif method == 'Blevins': A_ratio = Di1*Di1/(Di2*Di2) if A_ratio < 1.2: A_ratio = 1.2 elif A_ratio > 10.0: A_ratio = 10.0 l_ratio = l/Di2 if l_ratio > 0.6: l_ratio = 0.6 return float(contraction_conical_Blevins_obj(l_ratio, A_ratio)) elif method == 'Miller': A_ratio = Di1*Di1/(Di2*Di2) if A_ratio > 4.0: A_ratio = 4.0 elif A_ratio < 1.1: A_ratio = 1.1 l_ratio = l/(Di2*0.5) if l_ratio < 0.1: l_ratio = 0.1 elif l_ratio > 10.0: l_ratio = 10.0 # Turning on ofr off the limits - little difference in plot return contraction_conical_Miller_obj(l_ratio, A_ratio) elif method == 'Hooper': if Re is None: raise ValueError("Hooper method requires `Re`") D1_D2 = Di1/Di2 D1_D2_2 = D1_D2*D1_D2 if Re <= 2500.0: K = (1.2 + 160.0/Re)*(D1_D2_2*D1_D2_2 - 1.0) else: if fd is None: fd = Clamond(Re=Re, eD=roughness/Di1) K = (0.6 + 0.48*fd)*D1_D2_2*(D1_D2_2 - 1.0) if angle_rad > 0.25*pi: K *= sqrt(sin(0.5*angle_rad)) else: K *= 1.6*sin(0.5*angle_rad) K = change_K_basis(K, Di1, Di2) return K else: raise ValueError(contraction_conical_method_unknown) def contraction_beveled(Di1, Di2, l=None, angle=None): r'''Returns loss coefficient for any sharp beveled pipe contraction as shown in [1]_. .. math:: K = 0.0696[1+C_B(\sin(\alpha/2)-1)](1-\beta^5)\lambda^2 + (\lambda-1)^2 .. math:: \lambda = 1 + 0.622\left[1+C_B\left(\left(\frac{\alpha}{180} \right)^{0.8}-1\right)\right](1-0.215\beta^2-0.785\beta^5) .. math:: C_B = \frac{l}{d_2}\frac{2\beta\tan(\alpha/2)}{1-\beta} .. math:: \beta = d_2/d_1 .. figure:: fittings/contraction_beveled.png :scale: 30 % :alt: contraction beveled; after [1]_ Parameters ---------- Di1 : float Inside diameter of original pipe, [m] Di2 : float Inside diameter of following pipe, [m] l : float Length of the bevel along the pipe axis ,[m] angle : float Angle of bevel, [degrees] Returns ------- K : float Loss coefficient in terms of the following pipe [-] Notes ----- Examples -------- >>> contraction_beveled(Di1=0.5, Di2=0.1, l=.7*.1, angle=120) 0.40946469413070485 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. ''' angle = radians(angle) beta = Di2/Di1 CB = l/Di2*2.0*beta*tan(0.5*angle)/(1.0 - beta) beta2 = beta*beta beta5 = beta2*beta2*beta lbd = 1.0 + 0.622*(1.0 + CB*((angle/pi)**0.8 - 1.0))*(1.0 - 0.215*beta2 - 0.785*beta5) return 0.0696*(1.0 + CB*(sin(0.5*angle) - 1.0))*(1.0 - beta5)*lbd*lbd + (lbd-1.0)**2 ### Expansions (diffusers) diffuser_sharp_methods = ['Rennels', 'Hooper'] diffuser_sharp_method_unknown = 'Specified method not recognized; methods are %s' %(diffuser_sharp_methods) def diffuser_sharp(Di1, Di2, Re=None, fd=None, roughness=0.0, method='Rennels'): r'''Returns loss coefficient for any sudden pipe diameter expansion according to the specified method. The main theoretical formula is as follows, in [1]_ and in other sources and is implemented under the name `Rennels`. .. math:: K_2 = (1-\beta^2)^2 The Hooper [2]_ formulas are: If :math:`{Re}_1 \le 4000`: .. math:: K_1 = 2 \left[1 - \left( \frac{D_1}{D_2} \right)^4 \right] else: .. math:: K_1 = \left[1 + 0.8 f_{d,1}\right] \left\{ \left[1 - \left( \frac{D_1}{D_2}\right)^2 \right]^2 \right\} Parameters ---------- Di1 : float Inside diameter of original pipe (smaller), [m] Di2 : float Inside diameter of following pipe (larger), [m] Re : float, optional Reynolds number of the pipe for original (smaller) pipe, used in `Hooper` method [-] fd : float, optional Darcy friction factor for original (smaller) pipe [-] roughness : float, optional Roughness of pipe wall (used in `Hooper` method if no friction factor given), [m] method : str The method to use for the calculation; one of 'Rennels', 'Hooper' [-] Returns ------- K : float Loss coefficient with respect to the original (smaller) pipe [-] Notes ----- Highly accurate. Examples -------- >>> diffuser_sharp(Di1=.5, Di2=1) 0.5625 >>> diffuser_sharp(Di1=.5, Di2=1, Re=1e5, fd=1e-7, method='Hooper') 0.562500045 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] Hooper, William B. "Calculate Head Loss Caused by Change in Pipe Size." Chemical Engineering 95, no. 16 (November 7, 1988): 89. ''' beta = Di1/Di2 if method == 'Rennels': r = 1.0 - beta*beta return r*r elif method == 'Hooper': if Re is None: raise ValueError("Method `Hooper` requires Reynolds number") if Re < 4000.0: return 2.0*(1.0 - beta*beta*beta*beta) # Not the same formula as Rennels if fd is None: fd = Clamond(Re=Re, eD=roughness/Di1) x = 1.0 - beta*beta return (1.0 + 0.8*fd)*x*x else: raise ValueError(diffuser_sharp_method_unknown) def diffuser_conical_Crane(Di1, Di2, l=None, angle=None): beta = Di1/Di2 beta2 = beta*beta if angle is not None: angle_rad = radians(angle) angle_deg = angle elif l is not None: if l != 0.0: angle_rad = 2.0*atan((Di1-Di2)/(2.0*l)) angle_deg = degrees(angle_rad) else: angle_rad = pi angle_deg = 180.0 else: raise ValueError('Either `l` or `angle` must be specified') if angle_deg < 45.0: # Formula 3 K2 = 2.6*sin(0.5*angle_rad)*(1.0 - beta2)**2/(beta2*beta2) else: K2 = (1.0 - beta2)**2/(beta2*beta2) # formula 4 K1 = K2*beta2*beta2 # Standard has become using upstream diameter return K1 tck_diffuser_conical_Miller = implementation_optimize_tck([ [ -2.307004845727645, -2.307004845727645, -2.307004845727645, -2.307004845727645, -0.852533937110498, -0.08240363489988907, 0.5915927994712962, 0.8982804334259539, 1.2315822114127628, 1.5343291978351532, 1.9774792041044793, 2.990267368122924, 2.990267368122924, 2.990267368122924, 2.990267368122924 ], [ 0.15265175024859737, 0.15265175024859737, 0.15265175024859737, 0.15265175024859737, 0.40701687154729443, 0.6664564516122377, 0.8948974705226967, 1.0144777142876453, 1.0931592421107108, 1.1789561829062467, 1.3141101898631344, 1.4016433190574298, 1.4016433190574298, 1.4016433190574298, 1.4016433190574298 ], [ 0.06036297171599943, 0.08322477303304361, 0.1533018560180316, 0.23256231139725417, 0.3176212581983357, 0.40020914174974515, 0.4385944607898857, 0.5200344894492758, 0.6068491969006803, 0.5644812620968174, 0.5206931820307759, 0.05279258341151595, 0.06701886136626269, 0.15460022709300852, 0.22187392289400498, 0.3163189969211137, 0.40236602598664045, 0.44217477520553994, 0.5224439320660155, 0.5978399391103398, 0.6131809640282799, 0.6101286467987195, 0.05708355184742518, 0.06843627744908527, 0.08943713554460665, 0.2666074936578441, 0.3093579837678418, 0.3920305705167829, 0.44503141066730906, 0.5320996705995045, 0.5598015078960548, 0.9045290434928654, 1.1278543134986714, 0.004082132921064788, 0.08726673904790738, 0.05768023021275458, 0.2018006237954987, 0.31496483541908044, 0.3856708355645899, 0.4432173742517448, 0.5150555453757539, 0.5447727935474795, 0.8251456282600432, 0.996071097893787, -0.1110682037244921, 0.07314890991840513, 0.06176280023793122, 0.14210338139570033, 0.221133551530109, 0.34303500384378116, 0.40130996632027693, 0.49982098188910806, 0.5348917607889022, 0.6163719511180222, 0.6823385842053077, -0.2166378057986125, 0.03883937343819872, 0.06286476564404532, 0.10772310640543344, 0.16931893225970837, 0.22920155110345403, 0.32189134044934775, 0.4091523406543155, 0.5122997879847003, 0.5557259511248352, 0.5834892444785406, -0.2784258718931251, 0.01614983641474248, 0.06657175843926792, 0.06987287339424499, 0.11347683852709868, 0.18271325237542604, 0.24381226992585622, 0.33699751608726225, 0.4328543409526461, 0.4932084120786604, 0.5172902462503076, -0.3110304748285624, -0.02554857636053585, 0.04945754727786904, 0.06935393005092971, 0.05644398696176074, 0.08533241552366327, 0.15458680076525846, 0.24566876577901098, 0.35324686175439035, 0.4095605186012888, 0.4277661722408436, -0.27286175236092153, -0.15488345611240545, -0.09243246273089455, 0.03455782910023685, 0.0829563174865211, 0.05506682466210118, 0.07027248456489407, 0.13458355260751956, 0.21084209763905942, 0.2971705194724395, 0.3194829528180993, -0.08063077687005854, -0.4253397307338264, -0.6215191566655465, -0.29467521770312016, 0.018448009119198257, 0.08412326971799582, 0.08337420030229001, 0.131275821589702, 0.1623166890922024, 0.21352111168837065, 0.2394011632386149, 0.14484414802505116, -0.781141319195365, -1.4412452429263252, -0.6266583715858592, 0.019328251090708078, 0.07939124881757918, 0.07570115443982374, 0.10818570632561267, 0.14931529315415798, 0.1845260859797597, 0.1975713897205575 ], 3, 3 ]) diffuser_conical_Idelchik_angles = [3, 6, 8, 10, 12, 14, 16, 20, 24, 30, 40, 60, 90, 180] diffuser_conical_Idelchik_A_ratios = [0, 0.05, 0.075, 0.1, 0.15, 0.2, 0.25, 0.3, 0.4, 0.5, 0.6] diffuser_conical_Idelchik_data = [ [0.03, 0.08, 0.11, 0.15, 0.19, 0.23, 0.27, 0.36, 0.47, 0.65, 0.92, 1.15, 1.1, 1.02], [0.03, 0.07, 0.1, 0.14, 0.16, 0.2, 0.24, 0.32, 0.42, 0.58, 0.83, 1.04, 0.99, 0.92], [0.03, 0.07, 0.09, 0.13, 0.16, 0.19, 0.23, 0.3, 0.4, 0.55, 0.79, 0.99, 0.95, 0.88], [0.03, 0.07, 0.09, 0.12, 0.15, 0.18, 0.22, 0.29, 0.38, 0.52, 0.75, 0.93, 0.89, 0.83], [0.02, 0.06, 0.08, 0.11, 0.14, 0.17, 0.2, 0.26, 0.34, 0.46, 0.67, 0.84, 0.79, 0.74], [0.02, 0.05, 0.07, 0.1, 0.12, 0.15, 0.17, 0.23, 0.3, 0.41, 0.59, 0.74, 0.7, 0.65], [0.02, 0.05, 0.06, 0.08, 0.1, 0.13, 0.15, 0.2, 0.26, 0.35, 0.47, 0.65, 0.62, 0.58], [0.02, 0.04, 0.05, 0.07, 0.09, 0.11, 0.13, 0.18, 0.23, 0.31, 0.4, 0.57, 0.54, 0.5], [0.01, 0.03, 0.04, 0.06, 0.07, 0.08, 0.1, 0.13, 0.17, 0.23, 0.33, 0.41, 0.39, 0.37], [0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.09, 0.12, 0.16, 0.23, 0.29, 0.28, 0.26], [0.01, 0.01, 0.02, 0.03, 0.03, 0.04, 0.05, 0.06, 0.08, 0.1, 0.15, 0.18, 0.17, 0.16]] diffuser_conical_Idelchik_tck = implementation_optimize_tck([[0.0, 0.0, 0.0, 0.0, 0.075, 0.1, 0.15, 0.2, 0.25, 0.3, 0.4, 0.6, 0.6, 0.6, 0.6], [3.0, 3.0, 6.0, 8.0, 10.0, 12.0, 14.0, 16.0, 20.0, 24.0, 30.0, 40.0, 60.0, 90.0, 180.0, 180.0], [0.03, 0.08000000000000002, 0.11, 0.15000000000000002, 0.19, 0.23000000000000004, 0.2700000000000001, 0.36000000000000004, 0.4700000000000001, 0.6500000000000001, 0.9200000000000003, 1.1499999999999997, 1.0999999999999999, 1.02, 0.031285899404876215, 0.06962481602354913, 0.12336980866449107, 0.1503712244832664, 0.14378748320215035, 0.20742060216292338, 0.24836000991873095, 0.35209826742177064, 0.43872500319959085, 0.6090878367568959, 0.8690773980930455, 1.0742803401164671, 1.0021612593588036, 0.9451655708069392, 0.028714100595123804, 0.06926407286533984, 0.08440796911328675, 0.1374065532945115, 0.17287918346451642, 0.19813495339263237, 0.23719554563682488, 0.301235065911563, 0.4134972190226316, 0.5698010521319933, 0.8164781574625106, 1.0379418821057562, 1.0011720739745302, 0.9192788736375066, 0.03171453253983491, 0.07116642136473203, 0.09282641155265463, 0.11549496597768823, 0.14338331093620021, 0.17489413621723082, 0.21614667989164066, 0.28946435656236014, 0.37330000426612064, 0.5104504490091938, 0.7371031974573926, 0.9040404534886205, 0.8645483458117367, 0.810220761075916, 0.01599798425801497, 0.0600112625583925, 0.07849171306072822, 0.11003185192295382, 0.14431407179880976, 0.1740127023740962, 0.20378359569975044, 0.2582633102962821, 0.33980922441927436, 0.45585837012862357, 0.6659720355794456, 0.8470955557688615, 0.7909107314263772, 0.7433823030652078, 0.021150220771741206, 0.04655749664043002, 0.0703397965060472, 0.10328500351954951, 0.11954655404108269, 0.1488787675177576, 0.1662463204709797, 0.231242192999296, 0.3007649420874127, 0.4151976547001982, 0.604782427849235, 0.7361883438919813, 0.6970812056056823, 0.6428823350611119, 0.019401132655020165, 0.053758750879887386, 0.06014910091508289, 0.07682813399884816, 0.09749971203685935, 0.13047222755487306, 0.1512311224163308, 0.19676791770653376, 0.2571310072310745, 0.3433510110705831, 0.45489825302361336, 0.6481510686632118, 0.6207644461508929, 0.5850883566903438, 0.02185995392589747, 0.033290416160064826, 0.045368699473134086, 0.06692723598046114, 0.08810622640302032, 0.10215235383204274, 0.1213618790128196, 0.17665887566391483, 0.2219043695740277, 0.3007473976664318, 0.37586666240054567, 0.5455594857191605, 0.5128931976706977, 0.4673228653399028, 1.2670378191600348e-05, 0.03091333375994541, 0.03916320044367654, 0.06214899426206778, 0.062121072502719726, 0.06871380729933241, 0.09367771591902911, 0.10605919242336995, 0.14532614492011708, 0.196826752842303, 0.32944561762761065, 0.340669205008426, 0.32703730722467556, 0.32918425374885374, 0.014993664810904203, 0.014543333120027308, 0.025418399778161738, 0.026425502868966118, 0.04393946374864015, 0.0556430963503338, 0.05566114204048549, 0.07947040378831506, 0.10483692753994148, 0.13908662357884857, 0.1752771911861948, 0.26216539749578693, 0.2564813463876624, 0.22290787312557322, 0.01, 0.01, 0.02, 0.03, 0.03, 0.04, 0.05, 0.06, 0.08, 0.1, 0.15, 0.18, 0.17, 0.16], 3, 1]) diffuser_conical_Idelchik_obj = lambda x, y : float(bisplev(x, y, diffuser_conical_Idelchik_tck)) diffuser_conical_methods = ['Rennels', 'Crane', 'Miller', 'Swamee', 'Idelchik', 'Hooper'] diffuser_conical_method_unknown = 'Specified method not recognized; methods are %s' %(diffuser_conical_methods) def diffuser_conical(Di1, Di2, l=None, angle=None, fd=None, Re=None, roughness=0.0, method='Rennels'): r'''Returns the loss coefficient for any conical pipe diffuser. This calculation has six methods available. The 'Rennels' [1]_ formulas are as follows (three different formulas are used, depending on the angle and the ratio of diameters): For 0 to 20 degrees, all aspect ratios: .. math:: K_1 = 8.30[\tan(\alpha/2)]^{1.75}(1-\beta^2)^2 + \frac{f(1-\beta^4)}{8\sin(\alpha/2)} For 20 to 60 degrees, beta < 0.5: .. math:: K_1 = \left\{1.366\sin\left[\frac{2\pi(\alpha-15^\circ)}{180}\right]^{0.5} - 0.170 - 3.28(0.0625-\beta^4)\sqrt{\frac{\alpha-20^\circ}{40^\circ}}\right\} (1-\beta^2)^2 + \frac{f(1-\beta^4)}{8\sin(\alpha/2)} For 20 to 60 degrees, beta >= 0.5: .. math:: K_1 = \left\{1.366\sin\left[\frac{2\pi(\alpha-15^\circ)}{180}\right]^{0.5} - 0.170 \right\}(1-\beta^2)^2 + \frac{f(1-\beta^4)}{8\sin(\alpha/2)} For 60 to 180 degrees, beta < 0.5: .. math:: K_1 = \left[1.205 - 3.28(0.0625-\beta^4)-12.8\beta^6\sqrt{\frac {\alpha-60^\circ}{120^\circ}}\right](1-\beta^2)^2 For 60 to 180 degrees, beta >= 0.5: .. math:: K_1 = \left[1.205 - 0.20\sqrt{\frac{\alpha-60^\circ}{120^\circ}} \right](1-\beta^2)^2 The Swamee [5]_ formula is: .. math:: K = \left\{\frac{0.25}{\theta^3}\left[1 + \frac{0.6}{r^{1.67}} \left(\frac{\pi-\theta}{\theta} \right) \right]^{0.533r - 2.6} \right\}^{-0.5} The Hooper [6]_ formulas are: If :math:`{Re}_1 \le 4000`: .. math:: K_{sharp} = 2 \left[1 - \left( \frac{D_1}{D_2} \right)^4 \right] else: .. math:: K_{sharp} = \left[1 + 0.8 f_{d,1}\right] \left\{ \left[1 - \left( \frac{D_1}{D_2}\right)^2 \right]^2 \right\} If the angle > 45 degrees, :math:`K = K_{sharp}` otherwise .. math:: K = 2.6 \sin \left(\frac{\theta}{2} \right)K_{sharp} .. figure:: fittings/diffuser_conical.png :scale: 60 % :alt: diffuser conical; after [1]_ Parameters ---------- Di1 : float Inside diameter of original pipe (smaller), [m] Di2 : float Inside diameter of following pipe (larger), [m] l : float, optional Length of the contraction along the pipe axis, optional, [m] angle : float, optional Angle of contraction, [degrees] fd : float, optional Darcy friction factor [-] Re : float, optional Reynolds number of the pipe (used in Rennels method only if no friction factor given), [m] roughness : float, optional Roughness of bend wall (used in Rennel method if no friction factor given), [m] method : str The method to use for the calculation; one of 'Rennels', 'Crane', 'Miller', 'Swamee', 'Idelchik', or 'Hooper' [-] Returns ------- K : float Loss coefficient with respect to smaller, upstream diameter [-] Notes ----- The Miller method changes around quite a bit. There is quite a bit of variance in the predictions of the methods, as demonstrated by the following figure. .. plot:: plots/diffuser_conical_plot.py Examples -------- >>> diffuser_conical(Di1=1/3., Di2=1.0, angle=50.0, Re=1E6) 0.8027721093415322 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] Idel’chik, I. E. Handbook of Hydraulic Resistance: Coefficients of Local Resistance and of Friction (Spravochnik Po Gidravlicheskim Soprotivleniyam, Koeffitsienty Mestnykh Soprotivlenii i Soprotivleniya Treniya). National technical information Service, 1966. .. [3] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. .. [4] Swamee, Prabhata K., and Ashok K. Sharma. Design of Water Supply Pipe Networks. John Wiley & Sons, 2008. .. [5] Miller, Donald S. Internal Flow Systems: Design and Performance Prediction. Gulf Publishing Company, 1990. .. [6] Hooper, William B. "Calculate Head Loss Caused by Change in Pipe Size." Chemical Engineering 95, no. 16 (November 7, 1988): 89. ''' beta = Di1/Di2 beta2 = beta*beta if l is not None: angle_rad = 2.0*atan(0.5*(Di2-Di1)/l) angle_deg = angle_rad*rad2deg l_calc = l elif angle is not None: angle_rad = angle*deg2rad angle_deg = angle l_calc = (Di2 - Di1)/(2.0*tan(0.5*angle_rad)) else: raise ValueError('Either `l` or `angle` must be specified') if method is None: method = 'Rennels' if method == 'Rennels': if fd is None: if Re is None: raise ValueError("The `Rennels` method requires either a " "specified friction factor or `Re`") fd = Clamond(Re=Re, eD=roughness/Di2, fast=False) if 0.0 < angle_deg <= 20.0: K = 8.30*tan(0.5*angle_rad)**1.75*(1.0 - beta2)**2 + 0.125*fd*(1.0 - beta2*beta2)/sin(0.5*angle_rad) elif 20.0 < angle_deg <= 60.0 and 0.0 <= beta < 0.5: K = (1.366*sqrt(sin(2.0*pi*(angle_deg - 15.0)/180.)) - 0.170 - 3.28*(0.0625-beta**4)*sqrt(0.025*(angle_deg-20.0)))*(1.0 - beta2)**2 + 0.125*fd*(1.0 - beta2*beta2)/sin(0.5*angle_rad) elif 20.0 < angle_deg <= 60.0 and beta >= 0.5: K = (1.366*sqrt(sin(2.0*pi*(angle_deg - 15.0)/180.0)) - 0.170)*(1.0 - beta2)**2 + 0.125*fd*(1.0 - beta2*beta2)/sin(0.5*angle_rad) elif 60.0 < angle_deg <= 180.0 and 0.0 <= beta < 0.5: beta4 = beta2*beta2 K = (1.205 - 3.28*(0.0625 - beta4) - 12.8*beta4*beta2*sqrt((angle_deg - 60.0)/120.))*(1.0 - beta2)**2 elif 60.0 < angle_deg <= 180.0 and beta >= 0.5: K = (1.205 - 0.20*sqrt((angle_deg - 60.0)/120.))*(1.0 - beta**2)**2 else: raise ValueError('Conical diffuser inputs incorrect') return K elif method == 'Crane': return diffuser_conical_Crane(Di1=Di1, Di2=Di2, l=l_calc, angle=angle_deg) elif method == 'Miller': A_ratio = 1.0/beta2 if A_ratio > 4.0: A_ratio = 4.0 elif A_ratio < 1.1: A_ratio = 1.1 l_R1_ratio = l_calc/(0.5*Di1) if l_R1_ratio < 0.1: l_R1_ratio = 0.1 elif l_R1_ratio > 20.0: l_R1_ratio = 20.0 Kd = max(float(bisplev(log(l_R1_ratio), log(A_ratio), tck_diffuser_conical_Miller)), 0) return Kd elif method == 'Idelchik': A_ratio = beta2 # Angles 0 to 20, ratios 0.05 to 0.06 if angle_deg > 20.0: angle_fric = 20.0 elif angle_deg < 2.0: angle_fric = 2.0 else: angle_fric = angle_deg A_ratio_fric = A_ratio if A_ratio_fric < 0.05: A_ratio_fric = 0.05 elif A_ratio_fric > 0.6: A_ratio_fric = 0.6 K_fr = float(contraction_conical_frction_Idelchik_obj(angle_fric, A_ratio_fric)) K_exp = float(diffuser_conical_Idelchik_obj(min(0.6, A_ratio), max(3.0, angle_deg))) return K_fr + K_exp elif method == 'Swamee': # Really starting to thing Swamee uses a different definition of loss coefficient! r = Di2/Di1 K = 1.0/sqrt(0.25*angle_rad**-3*(1.0 + 0.6*r**(-1.67)*(pi-angle_rad)/angle_rad)**(0.533*r - 2.6)) return K elif method == 'Hooper': if Re is None: raise ValueError("Method `Hooper` requires Reynolds number") if Re < 4000.0: return 2.0*(1.0 - beta*beta*beta*beta) # Not the same formula as Rennels if fd is None: fd = Clamond(Re=Re, eD=roughness/Di1) x = 1.0 - beta*beta K = (1.0 + 0.8*fd)*x*x if angle_rad > 0.25*pi: return K return K*2.6*sin(0.5*angle_rad) else: raise ValueError(diffuser_conical_method_unknown) def diffuser_conical_staged(Di1, Di2, DEs, ls, fd=None, method='Rennels'): r'''Returns loss coefficient for any series of staged conical pipe expansions as shown in [1]_. Five different formulas are used, depending on the angle and the ratio of diameters. This function calls diffuser_conical. Parameters ---------- Di1 : float Inside diameter of original pipe (smaller), [m] Di2 : float Inside diameter of following pipe (larger), [m] DEs : array Diameters of intermediate sections, [m] ls : array Lengths of the various sections, size 1 more than `DEs`, [m] fd : float Darcy friction factor [-] method : str The method to use for the calculation; one of 'Rennels', 'Crane', 'Miller', 'Swamee', or 'Idelchik' [-] Returns ------- K : float Loss coefficient with respect to smaller, upstream diameter [-] Notes ----- Only lengths of sections currently allowed. This could be changed to understand angles also. Formula doesn't make much sense, as observed by the example comparing a series of conical sections. Use only for small numbers of segments of highly differing angles. Examples -------- >>> diffuser_conical_staged(Di1=1., Di2=10., DEs=[2,3,4], ls=[1.1,1.2,1.3,1.4], fd=0.01) 1.9317533188274658 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. ''' K = 0.0 K += diffuser_conical(Di1=Di1, Di2=DEs[0], l=ls[0], fd=fd, method=method) K += diffuser_conical(Di1=DEs[-1], Di2=Di2, l=ls[-1], fd=fd, method=method) for i in range(len(DEs)-1): K += diffuser_conical(Di1=DEs[i], Di2=DEs[i+1], l=ls[i+1], fd=fd, method=method) return K def diffuser_curved(Di1, Di2, l): r'''Returns loss coefficient for any curved wall pipe expansion as shown in [1]_. .. math:: K_1 = \phi(1.43-1.3\beta^2)(1-\beta^2)^2 .. math:: \phi = 1.01 - 0.624\frac{l}{d_1} + 0.30\left(\frac{l}{d_1}\right)^2 - 0.074\left(\frac{l}{d_1}\right)^3 + 0.0070\left(\frac{l}{d_1}\right)^4 .. figure:: fittings/curved_wall_diffuser.png :scale: 25 % :alt: diffuser curved; after [1]_ Parameters ---------- Di1 : float Inside diameter of original pipe (smaller), [m] Di2 : float Inside diameter of following pipe (larger), [m] l : float Length of the curve along the pipe axis, [m] Returns ------- K : float Loss coefficient [-] Notes ----- Beta^2 should be between 0.1 and 0.9. A small mismatch between tabulated values of this function in table 11.3 is observed with the equation presented. Examples -------- >>> diffuser_curved(Di1=.25**0.5, Di2=1., l=2.) 0.2299781250000002 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. ''' beta = Di1/Di2 phi = 1.01 - 0.624*l/Di1 + 0.30*(l/Di1)**2 - 0.074*(l/Di1)**3 + 0.0070*(l/Di1)**4 return phi*(1.43 - 1.3*beta**2)*(1 - beta**2)**2 def diffuser_pipe_reducer(Di1, Di2, l, fd1, fd2=None): r'''Returns loss coefficient for any pipe reducer pipe expansion as shown in [1]. This is an approximate formula. .. math:: K_f = f_1\frac{0.20l}{d_1} + \frac{f_1(1-\beta)}{8\sin(\alpha/2)} + f_2\frac{0.20l}{d_2}\beta^4 .. math:: \alpha = 2\tan^{-1}\left(\frac{d_1-d_2}{1.20l}\right) Parameters ---------- Di1 : float Inside diameter of original pipe (smaller), [m] Di2 : float Inside diameter of following pipe (larger), [m] l : float Length of the pipe reducer along the pipe axis, [m] fd1 : float Darcy friction factor at inlet diameter [-] fd2 : float Darcy friction factor at outlet diameter, optional [-] Returns ------- K : float Loss coefficient [-] Notes ----- Industry lack of standardization prevents better formulas from being developed. Add 15% if the reducer is eccentric. Friction factor at outlet will be assumed the same as at inlet if not specified. Doubt about the validity of this equation is raised. Examples -------- >>> diffuser_pipe_reducer(Di1=.5, Di2=.75, l=1.5, fd1=0.07) 0.06873244301714816 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. ''' if fd2 is None: fd2 = fd1 beta = Di1/Di2 angle = -2*atan((Di1-Di2)/1.20/l) K = fd1*0.20*l/Di1 + fd1*(1-beta)/8./sin(angle/2) + fd2*0.20*l/Di2*beta**4 return K ### TODO: Tees DARBY_ANGLE_45DEG_FULL_VALVE = 'Valve, Angle valve, 45°, full line size, β = 1' DARBY_ANGLE_90DEG_FULL_VALVE = 'Valve, Angle valve, 90°, full line size, β = 1' DARBY_GLOBE_FULL_VALVE = 'Valve, Globe valve, standard, β = 1' DARBY_PLUG_VALVE_BRANCH_FLOW = 'Valve, Plug valve, branch flow' DARBY_PLUG_VALVE_STRAIGHT_THROUGH = 'Valve, Plug valve, straight through' DARBY_PLUG_VALVE_THREE_WAY_FLOW_THROUGH = 'Valve, Plug valve, three-way (flow through)' DARBY_GATE_VALVE = 'Valve, Gate valve, standard, β = 1' DARBY_BALL_VALVE = 'Valve, Ball valve, standard, β = 1' DARBY_DIAPHRAGM_DAM_VALVE = 'Valve, Diaphragm, dam type' DARBY_SWING_CHECK_VALVE = 'Valve, Swing check' DARBY_LIFT_CHECK_VALVE = 'Valve, Lift check' DARBY_VALVES = [DARBY_ANGLE_45DEG_FULL_VALVE, DARBY_ANGLE_90DEG_FULL_VALVE, DARBY_GLOBE_FULL_VALVE, DARBY_PLUG_VALVE_BRANCH_FLOW, DARBY_PLUG_VALVE_STRAIGHT_THROUGH, DARBY_PLUG_VALVE_THREE_WAY_FLOW_THROUGH, DARBY_GATE_VALVE, DARBY_BALL_VALVE, DARBY_DIAPHRAGM_DAM_VALVE, DARBY_SWING_CHECK_VALVE, DARBY_LIFT_CHECK_VALVE] ### 3 Darby 3K Method (with valves) Darby = {} '''Dictionary of coefficients for Darby's 3K fitting pressure drop method; the tuple contains :math:`K_1` and :math:`K_i` and :math:`K_d` in that order. ''' Darby['Elbow, 90°, threaded, standard, (r/D = 1)'] = (800.0, 0.14, 4.0) Darby['Elbow, 90°, threaded, long radius, (r/D = 1.5)'] = (800.0, 0.071, 4.2) Darby['Elbow, 90°, flanged, welded, bends, (r/D = 1)'] = (800.0, 0.091, 4.0) Darby['Elbow, 90°, (r/D = 2)'] = (800.0, 0.056, 3.9) Darby['Elbow, 90°, (r/D = 4)'] = (800.0, 0.066, 3.9) Darby['Elbow, 90°, (r/D = 6)'] = (800.0, 0.075, 4.2) Darby['Elbow, 90°, mitered, 1 weld, (90°)'] = (1000.00, 0.27, 4.0) Darby['Elbow, 90°, 2 welds, (45°)'] = (800.0, 0.068, 4.1) Darby['Elbow, 90°, 3 welds, (30°)'] = (800.0, 0.035, 4.2) Darby['Elbow, 45°, threaded standard, (r/D = 1)'] = (500.0, 0.071, 4.2) Darby['Elbow, 45°, long radius, (r/D = 1.5)'] = (500.0, 0.052, 4.0) Darby['Elbow, 45°, mitered, 1 weld, (45°)'] = (500.0, 0.086, 4.0) Darby['Elbow, 45°, mitered, 2 welds, (22.5°)'] = (500.0, 0.052, 4.0) Darby['Elbow, 180°, threaded, close-return bend, (r/D = 1)'] = (1000.00, 0.23, 4.0) Darby['Elbow, 180°, flanged, (r/D = 1)'] = (1000.00, 0.12, 4.0) Darby['Elbow, 180°, all, (r/D = 1.5)'] = (1000.00, 0.1, 4.0) Darby['Tee, Through-branch, (as elbow), threaded, (r/D = 1)'] = (500.0, 0.274, 4.0) Darby['Tee, Through-branch,(as elbow), (r/D = 1.5)'] = (800.0, 0.14, 4.0) Darby['Tee, Through-branch, (as elbow), flanged, (r/D = 1)'] = (800.0, 0.28, 4.0) Darby['Tee, Through-branch, (as elbow), stub-in branch'] = (1000.00, 0.34, 4.0) Darby['Tee, Run-through, threaded, (r/D = 1)'] = (200.0, 0.091, 4.0) Darby['Tee, Run-through, flanged, (r/D = 1)'] = (150.0, 0.05, 4.0) Darby['Tee, Run-through, stub-in branch'] = (100.0, 0.0, 0.0) Darby[DARBY_ANGLE_45DEG_FULL_VALVE] = (950.0, 0.25, 4.0) Darby[DARBY_ANGLE_90DEG_FULL_VALVE] = (1000.0, 0.69, 4.0) Darby[DARBY_GLOBE_FULL_VALVE] = (1500.0, 1.7, 3.6) Darby[DARBY_PLUG_VALVE_BRANCH_FLOW] = (500.0, 0.41, 4.0) Darby[DARBY_PLUG_VALVE_STRAIGHT_THROUGH] = (300.0, 0.084, 3.9) Darby[DARBY_PLUG_VALVE_THREE_WAY_FLOW_THROUGH] = (300.0, 0.14, 4.0) Darby[DARBY_GATE_VALVE] = (300.0, 0.037, 3.9) Darby[DARBY_BALL_VALVE] = (300.0, 0.017, 3.5) Darby[DARBY_DIAPHRAGM_DAM_VALVE] = (1000.00, 0.69, 4.9) Darby[DARBY_SWING_CHECK_VALVE] = (1500.0, 0.46, 4.0) Darby[DARBY_LIFT_CHECK_VALVE] = (2000.00, 2.85, 3.8) try: if IS_NUMBA: # type: ignore Darby_keys = tuple(Darby.keys()) Darby_values = tuple(Darby.values()) except: pass def Darby3K(NPS=None, Re=None, name=None, K1=None, Ki=None, Kd=None, Di=None): r'''Returns loss coefficient for any various fittings, depending on the name input. Alternatively, the Darby constants K1, Ki and Kd may be provided and used instead. Source of data is [1]_. Reviews of this model are favorable. .. math:: K_f = \frac{K_1}{Re} + K_i\left(1 + \frac{K_d}{D_{\text{NPS}}^{0.3}} \right) Note this model uses nominal pipe diameter in inches. Parameters ---------- NPS : float Nominal diameter of the pipe, [in] Re : float Reynolds number, [-] name : str String from Darby dict representing a fitting K1 : float K1 parameter of Darby model, optional [-] Ki : float Ki parameter of Darby model, optional [-] Kd : float Kd parameter of Darby model, optional [in] Di : float If specified, the NPS will be found by interpolating linearly (with extrapolation) along the schedule 40 diameters and NPSs; this will supersede NPS if it is specified, [m] Returns ------- K : float Loss coefficient [-] Notes ----- Also described in Albright's Handbook and Ludwig's Applied Process Design. Relatively uncommon to see it used. The possibility of combining these methods with those above are attractive. Examples -------- >>> Darby3K(NPS=2., Re=10000., name='Valve, Angle valve, 45°, full line size, β = 1') 1.1572523963562356 >>> Darby3K(Di=.05248, Re=10000., name='Valve, Angle valve, 45°, full line size, β = 1') 1.1572523963562356 >>> Darby3K(NPS=12., Re=10000., K1=950, Ki=0.25, Kd=4) 0.819510280626355 References ---------- .. [1] Silverberg, Peter, and Ron Darby. "Correlate Pressure Drops through Fittings: Three Constants Accurately Calculate Flow through Elbows, Valves and Tees." Chemical Engineering 106, no. 7 (July 1999): 101. .. [2] Silverberg, Peter. "Correlate Pressure Drops Through Fittings." Chemical Engineering 108, no. 4 (April 2001): 127,129-130. ''' if Di is not None: NPS = interp(Di*1000.0, S40i, NPS40, extrapolate=True) if name is not None: K1 = None if name in Darby: # NUMBA: DELETE K1, Ki, Kd = Darby[name] # NUMBA: DELETE if K1 is None: try: K1, Ki, Kd = Darby_values[Darby_keys.index(name)] except: raise ValueError('Name of fitting is not in database') elif K1 is not None and Ki is not None and Kd is not None: pass else: raise ValueError('Name of fitting or constants are required') return K1/Re + Ki*(1. + Kd*NPS**-0.3) ### 2K Hooper Method HOOPER_CHECK_VALVE_TILTING_DISK = 'Valve, Check, Tilting-disc' HOOPER_CHECK_VALVE_SWING = 'Valve, Check, Swing' HOOPER_CHECK_VALVE_LIFT = 'Valve, Check, Lift' HOOPER_BUTTERFLY_VALVE = 'Valve, Butterfly,' HOOPER_DIAPHRAGM_DAM_VALVE = 'Valve, Diaphragm, Dam type' HOOPER_GLOBE_ANGLED_OR_Y_VALVE = 'Valve, Globe, Angle or Y-type' HOOPER_GLOBE_STANDARD_VALVE = 'Valve, Globe, Standard' HOOPER_PLUG_REDUCED_TRIM_VALVE = 'Valve, Plug, Reduced trim, Beta = 0.8' HOOPER_BALL_REDUCED_TRIM_VALVE = 'Valve, Ball, Reduced trim, Beta = 0.9' HOOPER_GATE_FULL_LINE_SIZE_VALVE = 'Valve, Gate, Full line size, Beta = 1' HOOPER_VALVES = [HOOPER_CHECK_VALVE_TILTING_DISK, HOOPER_CHECK_VALVE_SWING, HOOPER_CHECK_VALVE_LIFT, HOOPER_BUTTERFLY_VALVE, HOOPER_DIAPHRAGM_DAM_VALVE, HOOPER_GLOBE_ANGLED_OR_Y_VALVE, HOOPER_GLOBE_STANDARD_VALVE, HOOPER_PLUG_REDUCED_TRIM_VALVE, HOOPER_BALL_REDUCED_TRIM_VALVE, HOOPER_GATE_FULL_LINE_SIZE_VALVE] Hooper = {} r'''Dictionary of coefficients for Hooper's 2K fitting pressure drop method; the tuple contains :math:`K_1` and :math:`K_\infty` in that order. ''' Hooper['Elbow, 90°, Standard (R/D = 1), Screwed'] = (800.0, 0.4) Hooper['Elbow, 90°, Standard (R/D = 1), Flanged/welded'] = (800.0, 0.25) Hooper['Elbow, 90°, Long-radius (R/D = 1.5), All types'] = (800.0, 0.2) Hooper['Elbow, 90°, Mitered (R/D = 1.5), 1 weld (90° angle)'] = (1000.0, 1.15) Hooper['Elbow, 90°, Mitered (R/D = 1.5), 2 weld (45° angle)'] = (800.0, 0.35) Hooper['Elbow, 90°, Mitered (R/D = 1.5), 3 weld (30° angle)'] = (800.0, 0.3) Hooper['Elbow, 90°, Mitered (R/D = 1.5), 4 weld (22.5° angle)'] = (800.0, 0.27) Hooper['Elbow, 90°, Mitered (R/D = 1.5), 5 weld (18° angle)'] = (800.0, 0.25) Hooper['Elbow, 45°, Standard (R/D = 1), All types'] = (500.0, 0.2) Hooper['Elbow, 45°, Long-radius (R/D 1.5), All types'] = (500.0, 0.15) Hooper['Elbow, 45°, Mitered (R/D=1.5), 1 weld (45° angle)'] = (500.0, 0.25) Hooper['Elbow, 45°, Mitered (R/D=1.5), 2 weld (22.5° angle)'] = (500.0, 0.15) Hooper['Elbow, 45°, Standard (R/D = 1), Screwed'] = (1000.0, 0.7) Hooper['Elbow, 180°, Standard (R/D = 1), Flanged/welded'] = (1000.0, 0.35) Hooper['Elbow, 180°, Long-radius (R/D = 1.5), All types'] = (1000.0, 0.3) Hooper['Elbow, Used as, Standard, Screwed'] = (500.0, 0.7) Hooper['Elbow, Elbow, Long-radius, Screwed'] = (800.0, 0.4) Hooper['Elbow, Elbow, Standard, Flanged/welded'] = (800.0, 0.8) Hooper['Elbow, Elbow, Stub-in type branch'] = (1000.0, 1.0) Hooper['Tee, Run, Screwed'] = (200.0, 0.1) Hooper['Tee, Through, Flanged or welded'] = (150.0, 0.05) Hooper['Tee, Tee, Stub-in type branch'] = (100.0, 0.0) Hooper[HOOPER_GATE_FULL_LINE_SIZE_VALVE] = (300.0, 0.1) Hooper[HOOPER_BALL_REDUCED_TRIM_VALVE] = (500.0, 0.15) Hooper[HOOPER_PLUG_REDUCED_TRIM_VALVE] = (1000.0, 0.25) Hooper[HOOPER_GLOBE_STANDARD_VALVE] = (1500.0, 4.0) Hooper[HOOPER_GLOBE_ANGLED_OR_Y_VALVE] = (1000.0, 2.0) Hooper[HOOPER_DIAPHRAGM_DAM_VALVE] = (1000.0, 2.0) Hooper[HOOPER_BUTTERFLY_VALVE] = (800.0, 0.25) Hooper[HOOPER_CHECK_VALVE_LIFT] = (2000.0, 10.0) Hooper[HOOPER_CHECK_VALVE_SWING] = (1500.0, 1.5) Hooper[HOOPER_CHECK_VALVE_TILTING_DISK] = (1000.0, 0.5) try: if IS_NUMBA: # type: ignore Hooper_keys = tuple(Hooper.keys()) Hooper_values = tuple(Hooper.values()) except: pass def Hooper2K(Di, Re, name=None, K1=None, Kinfty=None): r'''Returns loss coefficient for any various fittings, depending on the name input. Alternatively, the Hooper constants K1, Kinfty may be provided and used instead. Source of data is [1]_. Reviews of this model are favorable less favorable than the Darby method but superior to the constant-K method. .. math:: K = \frac{K_1}{Re} + K_\infty\left(1 + \frac{1\text{ inch}}{D_{in}}\right) **Note this model uses actual inside pipe diameter in inches.** Parameters ---------- Di : float Actual inside diameter of the pipe, [in] Re : float Reynolds number, [-] name : str, optional String from Hooper dict representing a fitting K1 : float, optional K1 parameter of Hooper model, optional [-] Kinfty : float, optional Kinfty parameter of Hooper model, optional [-] Returns ------- K : float Loss coefficient [-] Notes ----- Also described in Ludwig's Applied Process Design. Relatively uncommon to see it used. No actual example found. Examples -------- >>> Hooper2K(Di=2., Re=10000., name='Valve, Globe, Standard') 6.15 >>> Hooper2K(Di=2., Re=10000., K1=900, Kinfty=4) 6.09 References ---------- .. [1] Hooper, W. B., "The 2-K Method Predicts Head Losses in Pipe Fittings," Chem. Eng., p. 97, Aug. 24 (1981). .. [2] Hooper, William B. "Calculate Head Loss Caused by Change in Pipe Size." Chemical Engineering 95, no. 16 (November 7, 1988): 89. .. [3] Kayode Coker. Ludwig's Applied Process Design for Chemical and Petrochemical Plants. 4E. Amsterdam ; Boston: Gulf Professional Publishing, 2007. ''' if name is not None: K1 = None if name in Hooper: # NUMBA: DELETE K1, Kinfty = Hooper[name] # NUMBA: DELETE if K1 is None: try: K1, Kinfty = Hooper_values[Hooper_keys.index(name)] except: raise ValueError('Name of fitting is not in database') elif K1 is not None and Kinfty is not None: pass else: raise ValueError('Name of fitting or constants are required') return K1/Re + Kinfty*(1. + 1./Di) ### Valves def Kv_to_Cv(Kv): r'''Convert valve flow coefficient from imperial to common metric units. .. math:: C_v = 1.156 K_v Parameters ---------- Kv : float Metric Kv valve flow coefficient (flow rate of water at a pressure drop of 1 bar) [m^3/hr] Returns ------- Cv : float Imperial Cv valve flow coefficient (flow rate of water at a pressure drop of 1 psi) [gallons/minute] Notes ----- Kv = 0.865 Cv is in the IEC standard 60534-2-1. It has also been said that Cv = 1.17Kv; this is wrong by current standards. The conversion factor does not depend on the density of the fluid or the diameter of the valve. It is calculated with the definition of a US gallon as 231 cubic inches, and a psi as a pound-force per square inch. The exact conversion coefficient between Kv to Cv is 1.1560992283536566; it is rounded in the formula above. Examples -------- >>> Kv_to_Cv(2) 2.3121984567073133 References ---------- .. [1] ISA-75.01.01-2007 (60534-2-1 Mod) Draft ''' return 1.1560992283536566*Kv def Cv_to_Kv(Cv): r'''Convert valve flow coefficient from imperial to common metric units. .. math:: K_v = C_v/1.156 Parameters ---------- Cv : float Imperial Cv valve flow coefficient (flow rate of water at a pressure drop of 1 psi) [gallons/minute] Returns ------- Kv : float Metric Kv valve flow coefficient (flow rate of water at a pressure drop of 1 bar) [m^3/hr] Notes ----- Kv = 0.865 Cv is in the IEC standard 60534-2-1. It has also been said that Cv = 1.17Kv; this is wrong by current standards. The conversion factor does not depend on the density of the fluid or the diameter of the valve. It is calculated with the definition of a US gallon as 231 cubic inches, and a psi as a pound-force per square inch. The exact conversion coefficient between Kv to Cv is 1.1560992283536566; it is rounded in the formula above. Examples -------- >>> Cv_to_Kv(2.312) 1.9998283393826013 References ---------- .. [1] ISA-75.01.01-2007 (60534-2-1 Mod) Draft ''' return Cv/1.1560992283536566 def Kv_to_K(Kv, D): r'''Convert valve flow coefficient from common metric units to regular loss coefficients. .. math:: K = 1.6\times 10^9 \frac{D^4}{K_v^2} Parameters ---------- Kv : float Metric Kv valve flow coefficient (flow rate of water at a pressure drop of 1 bar) [m^3/hr] D : float Inside diameter of the valve [m] Returns ------- K : float Loss coefficient, [-] Notes ----- Crane TP 410 M (2009) gives the coefficient of 0.04 (with diameter in mm). It also suggests the density of water should be found between 5-40°C. Older versions specify the density should be found at 60 °F, which is used here, and the pessure for the appropriate density is back calculated. .. math:: \Delta P = 1 \text{ bar} = \frac{1}{2}\rho V^2\cdot K V = \frac{\frac{K_v\cdot \text{ hour}}{3600 \text{ second}}}{\frac{\pi}{4}D^2} \rho = 999.29744568 \;\; kg/m^3 \text{ at } T=60° F, P = 703572 Pa The value of density is calculated with IAPWS-95; it is chosen as it makes the coefficient a very convenient round number. Others constants that have been used are 1.604E9, and 1.60045E9. Examples -------- >>> Kv_to_K(2.312, .015) 15.153374600399898 References ---------- .. [1] ISA-75.01.01-2007 (60534-2-1 Mod) Draft ''' return 1.6E9*D**4*Kv**-2 def K_to_Kv(K, D): r'''Convert regular loss coefficient to valve flow coefficient. .. math:: K_v = 4\times 10^4 \sqrt{ \frac{D^4}{K}} Parameters ---------- K : float Loss coefficient, [-] D : float Inside diameter of the valve [m] Returns ------- Kv : float Metric Kv valve flow coefficient (flow rate of water at a pressure drop of 1 bar) [m^3/hr] Notes ----- Crane TP 410 M (2009) gives the coefficient of 0.04 (with diameter in mm). It also suggests the density of water should be found between 5-40°C. Older versions specify the density should be found at 60 °F, which is used here, and the pessure for the appropriate density is back calculated. .. math:: \Delta P = 1 \text{ bar} = \frac{1}{2}\rho V^2\cdot K V = \frac{\frac{K_v\cdot \text{ hour}}{3600 \text{ second}}}{\frac{\pi}{4}D^2} \rho = 999.29744568 \;\; kg/m^3 \text{ at } T=60° F, P = 703572 Pa The value of density is calculated with IAPWS-95; it is chosen as it makes the coefficient a very convenient round number. Others constants that have been used are 1.604E9, and 1.60045E9. Examples -------- >>> K_to_Kv(15.15337460039990, .015) 2.312 References ---------- .. [1] ISA-75.01.01-2007 (60534-2-1 Mod) Draft ''' return D*D*sqrt(1.6E9/K) def K_to_Cv(K, D): r'''Convert regular loss coefficient to imperial valve flow coefficient. .. math:: K_v = 1.156 \cdot 4\times 10^4 \sqrt{ \frac{D^4}{K}} Parameters ---------- K : float Loss coefficient, [-] D : float Inside diameter of the valve [m] Returns ------- Cv : float Imperial Cv valve flow coefficient (flow rate of water at a pressure drop of 1 psi) [gallons/minute] Notes ----- The conversion factor does not depend on the density of the fluid or the diameter of the valve. It is calculated with the definition of a US gallon as 231 cubic inches, and a psi as a pound-force per square inch. The exact conversion coefficient between Kv to Cv is 1.1560992283536566; it is rounded in the formula above. Examples -------- >>> K_to_Cv(16, .015) 2.601223263795727 References ---------- .. [1] ISA-75.01.01-2007 (60534-2-1 Mod) Draft ''' return 1.1560992283536566*D*D*sqrt(1.6E9/K) def Cv_to_K(Cv, D): r'''Convert imperial valve flow coefficient from imperial units to regular loss coefficients. .. math:: K = 1.6\times 10^9 \frac{D^4}{\left(\frac{C_v}{1.56}\right)^2} Parameters ---------- Cv : float Imperial Cv valve flow coefficient (flow rate of water at a pressure drop of 1 psi) [gallons/minute] D : float Inside diameter of the valve [m] Returns ------- K : float Loss coefficient, [-] Notes ----- The exact conversion coefficient between Kv to Cv is 1.1560992283536566; it is rounded in the formula above. Examples -------- >>> Cv_to_K(2.712, .015) 14.719595348352 References ---------- .. [1] ISA-75.01.01-2007 (60534-2-1 Mod) Draft ''' D2 = D*D term = (Cv*(1.0/1.1560992283536566)) return 1.6E9*D2*D2/(term*term) def K_gate_valve_Crane(D1, D2, angle, fd=None): r'''Returns loss coefficient for a gate valve of types wedge disc, double disc, or plug type, as shown in [1]_. If β = 1 and θ = 0: .. math:: K = K_1 = K_2 = 8f_d If β < 1 and θ <= 45°: .. math:: K_2 = \frac{K + \sin \frac{\theta}{2} \left[0.8(1-\beta^2) + 2.6(1-\beta^2)^2\right]}{\beta^4} If β < 1 and θ > 45°: .. math:: K_2 = \frac{K + 0.5\sqrt{\sin\frac{\theta}{2}}(1-\beta^2) + (1-\beta^2)^2}{\beta^4} Parameters ---------- D1 : float Diameter of the valve seat bore (must be smaller or equal to `D2`), [m] D2 : float Diameter of the pipe attached to the valve, [m] angle : float Angle formed by the reducer in the valve, [degrees] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor! [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- This method is not valid in the laminar regime and the pressure drop will be underestimated in those conditions [2]_. Examples -------- Example 7-4 in [1]_; a 150 by 100 mm class 600 steel gate valve, conically tapered ports, length 550 mm, back of sear ring ~150 mm. The valve is connected to 146 mm schedule 80 pipe. The angle can be calculated to be 13 degrees. The valve is specified to be operating in turbulent conditions. >>> K_gate_valve_Crane(D1=.1, D2=.146, angle=13.115) 1.1466029421844073 The calculated result is lower than their value of 1.22; the difference is due to Crane's generous intermediate rounding. A later, Imperial edition of Crane rounds differently - and comes up with K=1.06. References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. .. [2] Harvey Wilson. "Pressure Drop in Pipe Fittings and Valves | Equivalent Length and Resistance Coefficient." Katmar Software. Accessed July 28, 2017. http://www.katmarsoftware.com/articles/pipe-fitting-pressure-drop.htm. ''' angle = radians(angle) beta = D1/D2 if fd is None: fd = ft_Crane(D2) K1 = 8.0*fd # This does not refer to upstream loss per se if beta == 1.0 or angle == 0.0: return K1 # upstream and down else: beta2 = beta*beta one_m_beta2 = 1.0 - beta2 if angle <= 0.7853981633974483: K = (K1 + sin(0.5*angle)*(one_m_beta2*(0.8 + 2.6*one_m_beta2)))/(beta2*beta2) else: K = (K1 + one_m_beta2*(0.5*sqrt(sin(0.5*angle)) + one_m_beta2))/(beta2*beta2) return K def K_globe_valve_Crane(D1, D2, fd=None): r'''Returns the loss coefficient for all types of globe valve, (reduced seat or throttled) as shown in [1]_. If β = 1: .. math:: K = K_1 = K_2 = 340 f_d Otherwise: .. math:: K_2 = \frac{K + \left[0.5(1-\beta^2) + (1-\beta^2)^2\right]}{\beta^4} Parameters ---------- D1 : float Diameter of the valve seat bore (must be smaller or equal to `D2`), [m] D2 : float Diameter of the pipe attached to the valve, [m] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor!, [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- This method is not valid in the laminar regime and the pressure drop will be underestimated in those conditions. Examples -------- >>> K_globe_valve_Crane(.01, .02) 135.9200548324305 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' beta = D1/D2 if fd is None: fd = ft_Crane(D2) K1 = 340.0*fd if beta == 1.0: return K1 # upstream and down else: beta2 = beta*beta one_m_beta = 1.0 - beta one_m_beta2 = 1.0 - beta2 return (K1 + beta*(0.5*one_m_beta*one_m_beta + one_m_beta2*one_m_beta2))/(beta2*beta2) def K_angle_valve_Crane(D1, D2, fd=None, style=0): r'''Returns the loss coefficient for all types of angle valve, (reduced seat or throttled) as shown in [1]_. If β = 1: .. math:: K = K_1 = K_2 = N\cdot f_d Otherwise: .. math:: K_2 = \frac{K + \left[0.5(1-\beta^2) + (1-\beta^2)^2\right]}{\beta^4} For style 0 and 2, N = 55; for style 1, N=150. Parameters ---------- D1 : float Diameter of the valve seat bore (must be smaller or equal to `D2`), [m] D2 : float Diameter of the pipe attached to the valve, [m] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor!, [-] style : int, optional One of 0, 1, or 2; refers to three different types of angle valves as shown in [1]_ [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- This method is not valid in the laminar regime and the pressure drop will be underestimated in those conditions. Examples -------- >>> K_angle_valve_Crane(.01, .02) 26.597361811128465 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' beta = D1/D2 if style not in (0, 1, 2): raise ValueError('Valve style should be 0, 1, or 2') if fd is None: fd = ft_Crane(D2) if style == 0 or style == 2: K1 = 55.0*fd else: K1 = 150.0*fd if beta == 1: return K1 # upstream and down else: return (K1 + beta*(0.5*(1-beta)**2 + (1-beta**2)**2))/beta**4 def K_swing_check_valve_Crane(D=None, fd=None, angled=True): r'''Returns the loss coefficient for a swing check valve as shown in [1]_. .. math:: K_2 = N\cdot f_d For angled swing check valves N = 100; for straight valves, N = 50. Parameters ---------- D : float, optional Diameter of the pipe attached to the valve, [m] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor!, [-] angled : bool, optional If True, returns a value 2x the unangled value; the style of the valve [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- This method is not valid in the laminar regime and the pressure drop will be underestimated in those conditions. Examples -------- >>> K_swing_check_valve_Crane(D=.02) 2.3974274785373257 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' if D is None and fd is None: raise ValueError('Either `D` or `fd` must be specified') if fd is None: fd = ft_Crane(D) if angled: return 100.*fd return 50.*fd def K_lift_check_valve_Crane(D1, D2, fd=None, angled=True): r'''Returns the loss coefficient for a lift check valve as shown in [1]_. If β = 1: .. math:: K = K_1 = K_2 = N\cdot f_d Otherwise: .. math:: K_2 = \frac{K + \left[0.5(1-\beta^2) + (1-\beta^2)^2\right]}{\beta^4} For angled lift check valves N = 55; for straight valves, N = 600. Parameters ---------- D1 : float Diameter of the valve seat bore (must be smaller or equal to `D2`), [m] D2 : float Diameter of the pipe attached to the valve, [m] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor!, [-] angled : bool, optional If True, returns a value 2x the unangled value; the style of the valve [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- This method is not valid in the laminar regime and the pressure drop will be underestimated in those conditions. Examples -------- >>> K_lift_check_valve_Crane(.01, .02) 28.597361811128465 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' beta = D1/D2 if fd is None: fd = ft_Crane(D2) if angled: K1 = 55*fd if beta == 1: return K1 else: return (K1 + beta*(0.5*(1 - beta**2) + (1 - beta**2)**2))/beta**4 else: K1 = 600.*fd if beta == 1: return K1 else: return (K1 + beta*(0.5*(1 - beta**2) + (1 - beta**2)**2))/beta**4 def K_tilting_disk_check_valve_Crane(D, angle, fd=None): r'''Returns the loss coefficient for a tilting disk check valve as shown in [1]_. Results are specified in [1]_ to be for the disk's resting position to be at 5 or 25 degrees to the flow direction. The model is implemented here so as to switch to the higher loss 15 degree coefficients at 10 degrees, and use the lesser coefficients for any angle under 10 degrees. .. math:: K = N\cdot f_d N is obtained from the following table: +--------+-------------+-------------+ | | angle = 5 ° | angle = 15° | +========+=============+=============+ | 2-8" | 40 | 120 | +--------+-------------+-------------+ | 10-14" | 30 | 90 | +--------+-------------+-------------+ | 16-48" | 20 | 60 | +--------+-------------+-------------+ The actual change of coefficients happen at <= 9" and <= 15". Parameters ---------- D : float Diameter of the pipe section the valve in mounted in; the same as the line size [m] angle : float Angle of the tilting disk to the flow direction; nominally 5 or 15 degrees [degrees] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor!, [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- This method is not valid in the laminar regime and the pressure drop will be underestimated in those conditions. Examples -------- >>> K_tilting_disk_check_valve_Crane(.01, 5) 1.1626516551826345 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' if fd is None: fd = ft_Crane(D) if angle < 10: # 5 degree case if D <= 0.2286: # 2-8 inches, split at 9 inch return 40*fd elif D <= 0.381: # 10-14 inches, split at 15 inch return 30*fd else: # 16-18 inches return 20*fd else: # 15 degree case if D < 0.2286: # 2-8 inches return 120*fd elif D < 0.381: # 10-14 inches return 90*fd else: # 16-18 inches return 60*fd globe_stop_check_valve_Crane_coeffs = {0: 400.0, 1: 300.0, 2: 55.0} def K_globe_stop_check_valve_Crane(D1, D2, fd=None, style=0): r'''Returns the loss coefficient for a globe stop check valve as shown in [1]_. If β = 1: .. math:: K = K_1 = K_2 = N\cdot f_d Otherwise: .. math:: K_2 = \frac{K + \left[0.5(1-\beta^2) + (1-\beta^2)^2\right]}{\beta^4} Style 0 is the standard form; style 1 is angled, with a restrition to force the flow up through the valve; style 2 is also angled but with a smaller restriction forcing the flow up. N is 400, 300, and 55 for those cases respectively. Parameters ---------- D1 : float Diameter of the valve seat bore (must be smaller or equal to `D2`), [m] D2 : float Diameter of the pipe attached to the valve, [m] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor!, [-] style : int, optional One of 0, 1, or 2; refers to three different types of angle valves as shown in [1]_ [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- This method is not valid in the laminar regime and the pressure drop will be underestimated in those conditions. Examples -------- >>> K_globe_stop_check_valve_Crane(.1, .02, style=1) 4.5235076518969795 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' if fd is None: fd = ft_Crane(D2) if style == 0: K = 400.0*fd elif style == 1: K = 300.0*fd elif style == 2: K = 55.0*fd else: raise ValueError('Accepted valve styles are 0, 1, and 2 only') beta = D1/D2 if beta == 1.0: return K else: return (K + beta*(0.5*(1 - beta**2) + (1 - beta**2)**2))/beta**4 angle_stop_check_valve_Crane_coeffs = {0: 200.0, 1: 350.0, 2: 55.0} def K_angle_stop_check_valve_Crane(D1, D2, fd=None, style=0): r'''Returns the loss coefficient for a angle stop check valve as shown in [1]_. If β = 1: .. math:: K = K_1 = K_2 = N\cdot f_d Otherwise: .. math:: K_2 = \frac{K + \left[0.5(1-\beta^2) + (1-\beta^2)^2\right]}{\beta^4} Style 0 is the standard form; style 1 has a restrition to force the flow up through the valve; style 2 is has the clearest flow area with no guides for the angle valve. N is 200, 350, and 55 for those cases respectively. Parameters ---------- D1 : float Diameter of the valve seat bore (must be smaller or equal to `D2`), [m] D2 : float Diameter of the pipe attached to the valve, [m] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor!, [-] style : int, optional One of 0, 1, or 2; refers to three different types of angle valves as shown in [1]_ [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- This method is not valid in the laminar regime and the pressure drop will be underestimated in those conditions. Examples -------- >>> K_angle_stop_check_valve_Crane(.1, .02, style=1) 4.525425593879809 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' if fd is None: fd = ft_Crane(D2) if style == 0: K = 200.0*fd elif style == 1: K = 350.0*fd elif style == 2: K = 55.0*fd else: raise ValueError('Accepted valve styles are 0, 1, and 2 only') beta = D1/D2 if beta == 1: return K else: return (K + beta*(0.5*(1.0 - beta**2) + (1.0 - beta**2)**2))/beta**4 def K_ball_valve_Crane(D1, D2, angle, fd=None): r'''Returns the loss coefficient for a ball valve as shown in [1]_. If β = 1: .. math:: K = K_1 = K_2 = 3f_d If β < 1 and θ <= 45°: .. math:: K_2 = \frac{K + \sin \frac{\theta}{2} \left[0.8(1-\beta^2) + 2.6(1-\beta^2)^2\right]} {\beta^4} If β < 1 and θ > 45°: .. math:: K_2 = \frac{K + 0.5\sqrt{\sin\frac{\theta}{2}}(1-\beta^2) + (1-\beta^2)^2}{\beta^4} Parameters ---------- D1 : float Diameter of the valve seat bore (must be equal to or smaller than `D2`), [m] D2 : float Diameter of the pipe attached to the valve, [m] angle : float Angle formed by the reducer in the valve, [degrees] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor!, [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- This method is not valid in the laminar regime and the pressure drop will be underestimated in those conditions. Examples -------- >>> K_ball_valve_Crane(.01, .02, 50) 14.051310974926592 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' if fd is None: fd = ft_Crane(D2) beta = D1/D2 K1 = 3*fd angle = radians(angle) if beta == 1: return K1 else: if angle <= pi/4: return (K1 + sin(angle/2)*(0.8*(1-beta**2) + 2.6*(1-beta**2)**2))/beta**4 else: return (K1 + 0.5*sqrt(sin(angle/2)) * (1 - beta**2) + (1-beta**2)**2)/beta**4 diaphragm_valve_Crane_coeffs = {0: 149.0, 1: 39.0} def K_diaphragm_valve_Crane(D=None, fd=None, style=0): r'''Returns the loss coefficient for a diaphragm valve of either weir (`style` = 0) or straight-through (`style` = 1) as shown in [1]_. .. math:: K = K_1 = K_2 = N\cdot f_d For style 0 (weir), N = 149; for style 1 (straight through), N = 39. Parameters ---------- D : float, optional Diameter of the pipe section the valve in mounted in; the same as the line size [m] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor!, [-] style : int, optional Either 0 (weir type valve) or 1 (straight through weir valve) [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- This method is not valid in the laminar regime and the pressure drop will be underestimated in those conditions. Examples -------- >>> K_diaphragm_valve_Crane(D=.1, style=0) 2.4269804835982565 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' if D is None and fd is None: raise ValueError('Either `D` or `fd` must be specified') if fd is None: fd = ft_Crane(D) if style == 0: K = 149.0*fd elif style == 1: K = 39.0*fd else: raise ValueError('Accepted valve styles are 0 (weir) or 1 (straight through) only') return K foot_valve_Crane_coeffs = {0: 420.0, 1: 75.0} def K_foot_valve_Crane(D=None, fd=None, style=0): r'''Returns the loss coefficient for a foot valve of either poppet disc (`style` = 0) or hinged-disk (`style` = 1) as shown in [1]_. Both valves are specified include the loss of the attached strainer. .. math:: K = K_1 = K_2 = N\cdot f_d For style 0 (poppet disk), N = 420; for style 1 (hinged disk), N = 75. Parameters ---------- D : float, optional Diameter of the pipe section the valve in mounted in; the same as the line size [m] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor!, [-] style : int, optional Either 0 (poppet disk foot valve) or 1 (hinged disk foot valve) [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- This method is not valid in the laminar regime and the pressure drop will be underestimated in those conditions. Examples -------- >>> K_foot_valve_Crane(D=0.2, style=0) 5.912221498436275 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' if D is None and fd is None: raise ValueError('Either `D` or `fd` must be specified') if fd is None: fd = ft_Crane(D) if style == 0: K = 420.0*fd elif style == 1: K = 75.0*fd else: raise ValueError('Accepted valve styles are 0 (poppet disk) or 1 (hinged disk) only') return K butterfly_valve_Crane_coeffs = {0: (45.0, 35.0, 25.0), 1: (74.0, 52.0, 43.0), 2: (218.0, 96.0, 55.0)} def K_butterfly_valve_Crane(D, fd=None, style=0): r'''Returns the loss coefficient for a butterfly valve as shown in [1]_. Three different types are supported; Centric (`style` = 0), double offset (`style` = 1), and triple offset (`style` = 2). .. math:: K = N\cdot f_d N is obtained from the following table: +------------+---------+---------------+---------------+ | Size range | Centric | Double offset | Triple offset | +============+=========+===============+===============+ | 2" - 8" | 45 | 74 | 218 | +------------+---------+---------------+---------------+ | 10" - 14" | 35 | 52 | 96 | +------------+---------+---------------+---------------+ | 16" - 24" | 25 | 43 | 55 | +------------+---------+---------------+---------------+ The actual change of coefficients happen at <= 9" and <= 15". Parameters ---------- D : float Diameter of the pipe section the valve in mounted in; the same as the line size [m] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor!, [-] style : int, optional Either 0 (centric), 1 (double offset), or 2 (triple offset) [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- This method is not valid in the laminar regime and the pressure drop will be underestimated in those conditions. Examples -------- >>> K_butterfly_valve_Crane(D=.1, style=2) 3.5508841974793284 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' if fd is None: fd = ft_Crane(D) if style == 0: c1, c2, c3 = 45.0, 35.0, 25.0 elif style == 1: c1, c2, c3 = 74.0, 52.0, 43.0 elif style == 2: c1, c2, c3 = 218.0, 96.0, 55.0 else: raise ValueError('Accepted valve styles are 0 (centric), 1 (double offset), or 2 (triple offset) only.') if D <= 0.2286: # 2-8 inches, split at 9 inch return c1*fd elif D <= 0.381: # 10-14 inches, split at 15 inch return c2*fd else: # 16-18 inches return c3*fd plug_valve_Crane_coeffs = {0: 18.0, 1: 30.0, 2: 90.0} def K_plug_valve_Crane(D1, D2, angle, fd=None, style=0): r'''Returns the loss coefficient for a plug valve or cock valve as shown in [1]_. If β = 1: .. math:: K = K_1 = K_2 = Nf_d Otherwise: .. math:: K_2 = \frac{K + 0.5\sqrt{\sin\frac{\theta}{2}}(1-\beta^2) + (1-\beta^2)^2}{\beta^4} Three types of plug valves are supported. For straight-through plug valves (`style` = 0), N = 18. For 3-way, flow straight through (`style` = 1) plug valves, N = 30. For 3-way, flow 90° valves (`style` = 2) N = 90. Parameters ---------- D1 : float Diameter of the valve plug bore (must be equal to or smaller than `D2`), [m] D2 : float Diameter of the pipe attached to the valve, [m] angle : float Angle formed by the reducer in the valve, [degrees] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor!, [-] style : int, optional Either 0 (straight-through), 1 (3-way, flow straight-through), or 2 (3-way, flow 90°) [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- This method is not valid in the laminar regime and the pressure drop will be underestimated in those conditions. Examples -------- >>> K_plug_valve_Crane(D1=.01, D2=.02, angle=50) 19.80513692341617 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' if fd is None: fd = ft_Crane(D2) beta = D1/D2 if style == 0: K = 18.0*fd elif style == 1: K = 30.0*fd elif style == 2: K = 90.0*fd else: raise ValueError('Accepted valve styles are 0 (straight-through), 1 (3-way, flow straight-through), or 2 (3-way, flow 90°)') angle = radians(angle) if beta == 1: return K else: return (K + 0.5*sqrt(sin(angle/2)) * (1 - beta**2) + (1-beta**2)**2)/beta**4 def v_lift_valve_Crane(rho, D1=None, D2=None, style='swing check angled'): r'''Calculates the approximate minimum velocity required to lift the disk or other controlling element of a check valve to a fully open, stable, position according to the Crane method [1]_. .. math:: v_{min} = N\cdot \text{m/s} \cdot \sqrt{\frac{\text{kg/m}^3}{\rho}} .. math:: v_{min} = N\beta^2 \cdot \text{m/s} \cdot \sqrt{\frac{\text{kg/m}^3}{\rho}} See the notes for the definition of values of N and which check valves use which formulas. Parameters ---------- rho : float Density of the fluid [kg/m^3] D1 : float, optional Diameter of the valve bore (must be equal to or smaller than `D2`), [m] D2 : float, optional Diameter of the pipe attached to the valve, [m] style : str The type of valve; one of ['swing check angled', 'swing check straight', 'swing check UL', 'lift check straight', 'lift check angled', 'tilting check 5°', 'tilting check 15°', 'stop check globe 1', 'stop check angle 1', 'stop check globe 2', 'stop check angle 2', 'stop check globe 3', 'stop check angle 3', 'foot valve poppet disc', 'foot valve hinged disc'], [-] Returns ------- v_min : float Approximate minimum velocity required to keep the disc fully lifted, preventing chattering and wear [m/s] Notes ----- This equation is not dimensionless. +--------------------------+-----+------+ | Name/string | N | Full | +==========================+=====+======+ | 'swing check angled' | 45 | No | +--------------------------+-----+------+ | 'swing check straight' | 75 | No | +--------------------------+-----+------+ | 'swing check UL' | 120 | No | +--------------------------+-----+------+ | 'lift check straight' | 50 | Yes | +--------------------------+-----+------+ | 'lift check angled' | 170 | Yes | +--------------------------+-----+------+ | 'tilting check 5°' | 100 | No | +--------------------------+-----+------+ | 'tilting check 15°' | 40 | No | +--------------------------+-----+------+ | 'stop check globe 1' | 70 | Yes | +--------------------------+-----+------+ | 'stop check angle 1' | 95 | Yes | +--------------------------+-----+------+ | 'stop check globe 2' | 75 | Yes | +--------------------------+-----+------+ | 'stop check angle 2' | 75 | Yes | +--------------------------+-----+------+ | 'stop check globe 3' | 170 | Yes | +--------------------------+-----+------+ | 'stop check angle 3' | 170 | Yes | +--------------------------+-----+------+ | 'foot valve poppet disc' | 20 | No | +--------------------------+-----+------+ | 'foot valve hinged disc' | 45 | No | +--------------------------+-----+------+ Examples -------- >>> v_lift_valve_Crane(rho=998.2, D1=0.0627, D2=0.0779, style='lift check straight') 1.0252301935349286 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' specific_volume = 1./rho if D1 is not None and D2 is not None: beta = D1/D2 beta2 = beta*beta if style == 'swing check angled': return 45.0*sqrt(specific_volume) elif style == 'swing check straight': return 75.0*sqrt(specific_volume) elif style == 'swing check UL': return 120.0*sqrt(specific_volume) elif style == 'lift check straight': return 50.0*beta2*sqrt(specific_volume) elif style == 'lift check angled': return 170.0*beta2*sqrt(specific_volume) elif style == 'tilting check 5°': return 100.0*sqrt(specific_volume) elif style == 'tilting check 15°': return 40.0*sqrt(specific_volume) elif style == 'stop check globe 1': return 70.0*beta2*sqrt(specific_volume) elif style == 'stop check angle 1': return 95.0*beta2*sqrt(specific_volume) elif style in ('stop check globe 2', 'stop check angle 2'): return 75.0*beta2*sqrt(specific_volume) elif style in ('stop check globe 3', 'stop check angle 3'): return 170.0*beta2*sqrt(specific_volume) elif style == 'foot valve poppet disc': return 20.0*sqrt(specific_volume) elif style == 'foot valve hinged disc': return 45.0*sqrt(specific_volume) CRANE_GATE_VALVE = 'CRANE_GATE_VALVE' CRANE_GLOBE_VALVE = 'CRANE_GLOBE_VALVE' CRANE_ANGLE_VALVE_0 = 'CRANE_ANGLE_VALVE_0' CRANE_ANGLE_VALVE_1 = 'CRANE_ANGLE_VALVE_1' CRANE_ANGLE_VALVE_2 = 'CRANE_ANGLE_VALVE_2' CRANE_SWING_CHECK_VALVE = 'CRANE_SWING_CHECK_VALVE' CRANE_SWING_CHECK_VALVE_ANGLED = 'CRANE_SWING_CHECK_VALVE_ANGLED' CRANE_LIFT_CHECK_VALVE = 'CRANE_LIFT_CHECK_VALVE' CRANE_LIFT_CHECK_VALVE_ANGLED = 'CRANE_LIFT_CHECK_VALVE_ANGLED' CRANE_TILTING_CHECK_VALVE_5DEG = 'CRANE_TILTING_CHECK_VALVE_5DEG' CRANE_TILTING_CHECK_VALVE_15DEG = 'CRANE_TILTING_CHECK_VALVE_15DEG' CRANE_GLOBE_STOP_CHECK_VALVE_0 = 'CRANE_GLOBE_STOP_CHECK_VALVE_0' CRANE_GLOBE_STOP_CHECK_VALVE_1 = 'CRANE_GLOBE_STOP_CHECK_VALVE_1' CRANE_GLOBE_STOP_CHECK_VALVE_2 = 'CRANE_GLOBE_STOP_CHECK_VALVE_2' CRANE_ANGLE_STOP_CHECK_VALVE_0 = 'CRANE_ANGLE_STOP_CHECK_VALVE_0' CRANE_ANGLE_STOP_CHECK_VALVE_1 = 'CRANE_ANGLE_STOP_CHECK_VALVE_1' CRANE_ANGLE_STOP_CHECK_VALVE_2 = 'CRANE_ANGLE_STOP_CHECK_VALVE_2' CRANE_BALL_VALVE = 'CRANE_BALL_VALVE' CRANE_DIAPHRAGM_VALVE_WEIR = 'CRANE_DIAPHRAGM_VALVE_WEIR' CRANE_DIAPHRAGM_VALVE_STAIGHT_THROUGH_WEIR = 'CRANE_DIAPHRAGM_VALVE_STAIGHT_THROUGH_WEIR' CRANE_FOOT_VALVE_POPPET_DISK = 'CRANE_FOOT_VALVE_POPPET_DISK' CRANE_FOOT_VALVE_HINGED_DISK = 'CRANE_FOOT_VALVE_HINGED_DISK' CRANE_BUTTERFLY_VALVE_CENTRIC = 'CRANE_BUTTERFLY_VALVE_CENTRIC' CRANE_BUTTERFLY_VALVE_DOUBLE_OFFSET = 'CRANE_BUTTERFLY_VALVE_DOUBLE_OFFSET' CRANE_BUTTERFLY_VALVE_TRIPLE_OFFSET = 'CRANE_BUTTERFLY_VALVE_TRIPLE_OFFSET' CRANE_PLUG_VALVE_STRAIGHT_THROUGH = 'CRANE_PLUG_VALVE_STRAIGHT_THROUGH' CRANE_PLUG_VALVE_3_WAY_STRAIGHT_THROUGH = 'CRANE_PLUG_VALVE_3_WAY_STRAIGHT_THROUGH' CRANE_PLUG_VALVE_3_WAY_90_DEG = 'CRANE_PLUG_VALVE_3_WAY_90_DEG' CRANE_VALVES = [CRANE_GATE_VALVE, CRANE_GLOBE_VALVE, CRANE_ANGLE_VALVE_0, CRANE_ANGLE_VALVE_1, CRANE_ANGLE_VALVE_2, CRANE_SWING_CHECK_VALVE, CRANE_SWING_CHECK_VALVE_ANGLED, CRANE_LIFT_CHECK_VALVE, CRANE_LIFT_CHECK_VALVE_ANGLED, CRANE_TILTING_CHECK_VALVE_5DEG, CRANE_TILTING_CHECK_VALVE_15DEG, CRANE_GLOBE_STOP_CHECK_VALVE_0, CRANE_GLOBE_STOP_CHECK_VALVE_1, CRANE_GLOBE_STOP_CHECK_VALVE_2, CRANE_ANGLE_STOP_CHECK_VALVE_0, CRANE_ANGLE_STOP_CHECK_VALVE_1, CRANE_ANGLE_STOP_CHECK_VALVE_2, CRANE_BALL_VALVE, CRANE_DIAPHRAGM_VALVE_WEIR, CRANE_DIAPHRAGM_VALVE_STAIGHT_THROUGH_WEIR, CRANE_FOOT_VALVE_POPPET_DISK, CRANE_FOOT_VALVE_HINGED_DISK, CRANE_BUTTERFLY_VALVE_CENTRIC, CRANE_BUTTERFLY_VALVE_DOUBLE_OFFSET, CRANE_BUTTERFLY_VALVE_TRIPLE_OFFSET, CRANE_PLUG_VALVE_STRAIGHT_THROUGH, CRANE_PLUG_VALVE_3_WAY_STRAIGHT_THROUGH, CRANE_PLUG_VALVE_3_WAY_90_DEG, ] def Crane_loss_coefficient(D1, D2, angle, fitting, fd=None): r'''Returns the loss coefficient for a particular Crane valve fitting. [1]_. This function is intended for internal use, to test all the correlations, at this point. Parameters ---------- D1 : float Diameter of the valve plug bore (must be equal to or smaller than `D2`), [m] D2 : float Diameter of the pipe attached to the valve, [m] angle : float Angle formed by the reducer in the valve, [degrees] fitting : str Text strings which represent a fitting, [-] fd : float, optional Darcy friction factor calculated for the actual pipe flow in clean steel (roughness = 0.0018 inch) in the fully developed turbulent region; do not specify this to use the original Crane friction factor!, [-] Returns ------- K : float Loss coefficient with respect to the pipe inside diameter [-] Notes ----- Examples -------- >>> Crane_loss_coefficient(D1=.01, D2=.02, fitting=CRANE_SWING_CHECK_VALVE_ANGLED, angle=50) 2.3974274785373257 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' if fitting == CRANE_GATE_VALVE: return K_gate_valve_Crane(D1, D2, angle, fd=fd) elif fitting == CRANE_GLOBE_VALVE: return K_globe_valve_Crane(D1, D2, fd) elif fitting == CRANE_ANGLE_VALVE_0: return K_angle_valve_Crane(D1, D2, fd, 0) elif fitting == CRANE_ANGLE_VALVE_1: return K_angle_valve_Crane(D1, D2, fd, 1) elif fitting == CRANE_ANGLE_VALVE_2: return K_angle_valve_Crane(D1, D2, fd, 2) elif fitting == CRANE_SWING_CHECK_VALVE: return K_swing_check_valve_Crane(D2, fd, False) elif fitting == CRANE_SWING_CHECK_VALVE_ANGLED: return K_swing_check_valve_Crane(D2, fd, True) elif fitting == CRANE_LIFT_CHECK_VALVE: return K_lift_check_valve_Crane(D1, D2, fd, False) elif fitting == CRANE_LIFT_CHECK_VALVE_ANGLED: return K_lift_check_valve_Crane(D1, D2, fd, True) elif fitting == CRANE_TILTING_CHECK_VALVE_5DEG: return K_tilting_disk_check_valve_Crane(D2, 5.0, fd) elif fitting == CRANE_TILTING_CHECK_VALVE_15DEG: return K_tilting_disk_check_valve_Crane(D2, 15.0, fd) elif fitting == CRANE_GLOBE_STOP_CHECK_VALVE_0: return K_globe_stop_check_valve_Crane(D1, D2, fd, 0) elif fitting == CRANE_GLOBE_STOP_CHECK_VALVE_1: return K_globe_stop_check_valve_Crane(D1, D2, fd, 1) elif fitting == CRANE_GLOBE_STOP_CHECK_VALVE_2: return K_globe_stop_check_valve_Crane(D1, D2, fd, 2) elif fitting == CRANE_ANGLE_STOP_CHECK_VALVE_0: return K_angle_stop_check_valve_Crane(D1, D2, fd, 0) elif fitting == CRANE_ANGLE_STOP_CHECK_VALVE_1: return K_angle_stop_check_valve_Crane(D1, D2, fd, 1) elif fitting == CRANE_ANGLE_STOP_CHECK_VALVE_2: return K_angle_stop_check_valve_Crane(D1, D2, fd, 2) elif fitting == CRANE_BALL_VALVE: return K_ball_valve_Crane(D1, D2, angle, fd) elif fitting == CRANE_DIAPHRAGM_VALVE_WEIR: return K_diaphragm_valve_Crane(D2, fd, 0) elif fitting == CRANE_DIAPHRAGM_VALVE_STAIGHT_THROUGH_WEIR: return K_diaphragm_valve_Crane(D2, fd, 1) elif fitting == CRANE_FOOT_VALVE_POPPET_DISK: return K_foot_valve_Crane(D2, fd, 0) elif fitting == CRANE_FOOT_VALVE_HINGED_DISK: return K_foot_valve_Crane(D2, fd, 1) elif fitting == CRANE_BUTTERFLY_VALVE_CENTRIC: return K_butterfly_valve_Crane(D2, fd, 0) elif fitting == CRANE_BUTTERFLY_VALVE_DOUBLE_OFFSET: return K_butterfly_valve_Crane(D2, fd, 1) elif fitting == CRANE_BUTTERFLY_VALVE_TRIPLE_OFFSET: return K_butterfly_valve_Crane(D2, fd, 2) elif fitting == CRANE_PLUG_VALVE_STRAIGHT_THROUGH: return K_plug_valve_Crane(D1, D2, angle, fd, 0) elif fitting == CRANE_PLUG_VALVE_3_WAY_STRAIGHT_THROUGH: return K_plug_valve_Crane(D1, D2, angle, fd, 1) elif fitting == CRANE_PLUG_VALVE_3_WAY_90_DEG: return K_plug_valve_Crane(D1, D2, angle, fd, 2) else: raise ValueError("Unrecognized fitting") branch_converging_Crane_Fs = [1.74, 1.41, 1.0, 0.0] branch_converging_Crane_angles = [30.0, 45.0, 60.0, 90.0] def K_branch_converging_Crane(D_run, D_branch, Q_run, Q_branch, angle=90.0): r'''Returns the loss coefficient for the branch of a converging tee or wye according to the Crane method [1]_. .. math:: K_{branch} = C\left[1 + D\left(\frac{Q_{branch}}{Q_{comb}\cdot \beta_{branch}^2}\right)^2 - E\left(1 - \frac{Q_{branch}}{Q_{comb}} \right)^2 - \frac{F}{\beta_{branch}^2} \left(\frac{Q_{branch}} {Q_{comb}}\right)^2\right] .. math:: \beta_{branch} = \frac{D_{branch}}{D_{comb}} = \frac{D_{branch}}{D_{run}} In the above equation, D = 1, E = 2. See the notes for definitions of F and C. The run and combined diameter are assumed the same in this model. Parameters ---------- D_run : float Diameter of the straight-through inlet portion of the tee or wye [m] D_branch : float Diameter of the pipe attached at an angle to the straight-through, [m] Q_run : float Volumetric flow rate in the straight-through inlet of the tee or wye, [m^3/s] Q_branch : float Volumetric flow rate in the pipe attached at an angle to the straight- through, [m^3/s] angle : float, optional Angle the branch makes with the straight-through (tee=90, wye<90) [degrees] Returns ------- K : float Loss coefficient of branch with respect to the velocity and inside diameter of the combined flow outlet [-] Notes ----- F is linearly interpolated from the table of angles below. There is no cutoff to prevent angles from being larger or smaller than 30 or 90 degrees. +-----------+------+ | Angle [°] | | +===========+======+ | 30 | 1.74 | +-----------+------+ | 45 | 1.41 | +-----------+------+ | 60 | 1 | +-----------+------+ | 90 | 0 | +-----------+------+ If :math:`\beta_{branch}^2 \le 0.35`, C = 1 If :math:`\beta_{branch}^2 > 0.35` and :math:`Q_{branch}/Q_{comb} > 0.4`, C = 0.55. If neither of the above conditions are met: .. math:: C = 0.9\left(1 - \frac{Q_{branch}}{Q_{comb}}\right) Note that there is an error in the text of [1]_; the errata can be obtained here: http://www.flowoffluids.com/publications/tp-410-errata.aspx Examples -------- Example 7-35 of [1]_. A DN100 schedule 40 tee has 1135 liters/minute of water passing through the straight leg, and 380 liters/minute of water converging with it through a 90° branch. Calculate the loss coefficient in the branch. The calculated value there is -0.04026. >>> K_branch_converging_Crane(0.1023, 0.1023, 0.018917, 0.00633) -0.0404410851362 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' beta = (D_branch/D_run) beta2 = beta*beta Q_comb = Q_run + Q_branch Q_ratio = Q_branch/Q_comb if beta2 <= 0.35: C = 1. elif Q_ratio <= 0.4: C = 0.9*(1 - Q_ratio) else: C = 0.55 D, E = 1., 2. F = interp(angle, branch_converging_Crane_angles, branch_converging_Crane_Fs) K = C*(1. + D*(Q_ratio/beta2)**2 - E*(1. - Q_ratio)**2 - F/beta2*Q_ratio**2) return K run_converging_Crane_Fs = [1.74, 1.41, 1.0] run_converging_Crane_angles = [30.0, 45.0, 60.0] def K_run_converging_Crane(D_run, D_branch, Q_run, Q_branch, angle=90): r'''Returns the loss coefficient for the run of a converging tee or wye according to the Crane method [1]_. .. math:: K_{branch} = C\left[1 + D\left(\frac{Q_{branch}}{Q_{comb}\cdot \beta_{branch}^2}\right)^2 - E\left(1 - \frac{Q_{branch}}{Q_{comb}} \right)^2 - \frac{F}{\beta_{branch}^2} \left(\frac{Q_{branch}} {Q_{comb}}\right)^2\right] .. math:: \beta_{branch} = \frac{D_{branch}}{D_{comb}} = \frac{D_{branch}}{D_{run}} In the above equation, C=1, D=0, E=1. See the notes for definitions of F and also the special case of 90°. The run and combined diameter are assumed the same in this model. Parameters ---------- D_run : float Diameter of the straight-through inlet portion of the tee or wye [m] D_branch : float Diameter of the pipe attached at an angle to the straight-through, [m] Q_run : float Volumetric flow rate in the straight-through inlet of the tee or wye, [m^3/s] Q_branch : float Volumetric flow rate in the pipe attached at an angle to the straight- through, [m^3/s] angle : float, optional Angle the branch makes with the straight-through (tee=90, wye<90) [degrees] Returns ------- K : float Loss coefficient of run with respect to the velocity and inside diameter of the combined flow outlet [-] Notes ----- F is linearly interpolated from the table of angles below. There is no cutoff to prevent angles from being larger or smaller than 30 or 60 degrees. The switch to the special 90° happens at 75°. +-----------+------+ | Angle [°] | | +===========+======+ | 30 | 1.74 | +-----------+------+ | 45 | 1.41 | +-----------+------+ | 60 | 1 | +-----------+------+ For the special case of 90°, the formula used is as follows. .. math:: K_{run} = 1.55\left(\frac{Q_{branch}}{Q_{comb}} \right) - \left(\frac{Q_{branch}}{Q_{comb}}\right)^2 Examples -------- Example 7-35 of [1]_. A DN100 schedule 40 tee has 1135 liters/minute of water passing through the straight leg, and 380 liters/minute of water converging with it through a 90° branch. Calculate the loss coefficient in the run. The calculated value there is 0.03258. >>> K_run_converging_Crane(0.1023, 0.1023, 0.018917, 0.00633) 0.32575847854551254 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' beta = (D_branch/D_run) beta2 = beta*beta Q_comb = Q_run + Q_branch Q_ratio = Q_branch/Q_comb if angle < 75.0: C = 1.0 else: return 1.55*(Q_ratio) - Q_ratio*Q_ratio D, E = 0.0, 1.0 F = interp(angle, run_converging_Crane_angles, run_converging_Crane_Fs) K = C*(1. + D*(Q_ratio/beta2)**2 - E*(1. - Q_ratio)**2 - F/beta2*Q_ratio**2) return K def K_branch_diverging_Crane(D_run, D_branch, Q_run, Q_branch, angle=90): r'''Returns the loss coefficient for the branch of a diverging tee or wye according to the Crane method [1]_. .. math:: K_{branch} = G\left[1 + H\left(\frac{Q_{branch}}{Q_{comb} \beta_{branch}^2}\right)^2 - J\left(\frac{Q_{branch}}{Q_{comb} \beta_{branch}^2}\right)\cos\theta\right] .. math:: \beta_{branch} = \frac{D_{branch}}{D_{comb}} = \frac{D_{branch}}{D_{run}} See the notes for definitions of H, J, and G. The run and combined diameter are assumed the same in this model. Parameters ---------- D_run : float Diameter of the straight-through inlet portion of the tee or wye [m] D_branch : float Diameter of the pipe attached at an angle to the straight-through, [m] Q_run : float Volumetric flow rate in the straight-through outlet of the tee or wye, [m^3/s] Q_branch : float Volumetric flow rate in the pipe attached at an angle to the straight- through, [m^3/s] angle : float, optional Angle the branch makes with the straight-through (tee=90, wye<90) [degrees] Returns ------- K : float Loss coefficient of branch with respect to the velocity and inside diameter of the combined flow inlet [-] Notes ----- If :math:`\beta_{branch} = 1, \theta = 90^\circ`, H = 0.3 and J = 0. Otherwise H = 1 and J = 2. G is determined according to the following pseudocode: .. code-block:: python if angle < 75: if beta2 <= 0.35: if Q_ratio <= 0.4: G = 1.1 - 0.7*Q_ratio else: G = 0.85 else: if Q_ratio <= 0.6: G = 1.0 - 0.6*Q_ratio else: G = 0.6 else: if beta2 <= 2/3.: G = 1 else: G = 1 + 0.3*Q_ratio*Q_ratio Note that there are several errors in the text of [1]_; the errata can be obtained here: http://www.flowoffluids.com/publications/tp-410-errata.aspx Examples -------- Example 7-36 of [1]_. A DN150 schedule 80 wye has 1515 liters/minute of water exiting the straight leg, and 950 liters/minute of water exiting it through a 45° branch. Calculate the loss coefficient in the branch. The calculated value there is 0.4640. >>> K_branch_diverging_Crane(0.146, 0.146, 0.02525, 0.01583, angle=45) 0.4639895627496694 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' beta = (D_branch/D_run) beta2 = beta*beta Q_comb = Q_run + Q_branch Q_ratio = Q_branch/Q_comb if angle < 60 or beta <= 2/3.: H, J = 1., 2. else: H, J = 0.3, 0 if angle < 75: if beta2 <= 0.35: if Q_ratio <= 0.4: G = 1.1 - 0.7*Q_ratio else: G = 0.85 else: if Q_ratio <= 0.6: G = 1.0 - 0.6*Q_ratio else: G = 0.6 else: if beta2 <= 2/3.: G = 1 else: G = 1 + 0.3*Q_ratio*Q_ratio angle_rad = radians(angle) K_branch = G*(1 + H*(Q_ratio/beta2)**2 - J*(Q_ratio/beta2)*cos(angle_rad)) return K_branch def K_run_diverging_Crane(D_run, D_branch, Q_run, Q_branch, angle=90): r'''Returns the loss coefficient for the run of a converging tee or wye according to the Crane method [1]_. .. math:: K_{run} = M \left(\frac{Q_{branch}}{Q_{comb}}\right)^2 .. math:: \beta_{branch} = \frac{D_{branch}}{D_{comb}} = \frac{D_{branch}}{D_{run}} See the notes for the definition of M. The run and combined diameter are assumed the same in this model. Parameters ---------- D_run : float Diameter of the straight-through inlet portion of the tee or wye [m] D_branch : float Diameter of the pipe attached at an angle to the straight-through, [m] Q_run : float Volumetric flow rate in the straight-through outlet of the tee or wye, [m^3/s] Q_branch : float Volumetric flow rate in the pipe attached at an angle to the straight- through, [m^3/s] angle : float, optional Angle the branch makes with the straight-through (tee=90, wye<90) [degrees] Returns ------- K : float Loss coefficient of run with respect to the velocity and inside diameter of the combined flow inlet [-] Notes ----- M is calculated according to the following pseudocode: .. code-block:: python if beta*beta <= 0.4: M = 0.4 elif Q_branch/Q_comb <= 0.5: M = 2*(2*Q_branch/Q_comb - 1) else: M = 0.3*(2*Q_branch/Q_comb - 1) Examples -------- Example 7-36 of [1]_. A DN150 schedule 80 wye has 1515 liters/minute of water exiting the straight leg, and 950 liters/minute of water exiting it through a 45° branch. Calculate the loss coefficient in the branch. The calculated value there is -0.06809. >>> K_run_diverging_Crane(0.146, 0.146, 0.02525, 0.01583, angle=45) -0.06810067607153049 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' beta = (D_branch/D_run) beta2 = beta*beta Q_comb = Q_run + Q_branch Q_ratio = Q_branch/Q_comb if beta2 <= 0.4: M = 0.4 elif Q_ratio <= 0.5: M = 2.*(2.*Q_ratio - 1.) else: M = 0.3*(2.*Q_ratio - 1.) return M*Q_ratio*Q_ratio fluids-1.0.22/fluids/filters.pyi0000644000175000017500000000132514302004506016064 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( Optional, Union, ) def round_edge_grill( alpha: float, l: Optional[float] = ..., Dh: Optional[float] = ..., fd: Optional[float] = ... ) -> float: ... def round_edge_open_mesh(alpha: float, subtype: str = ..., angle: float = ...) -> float: ... def round_edge_screen(alpha: float, Re: float, angle: float = ...) -> float: ... def square_edge_grill( alpha: float, l: Optional[float] = ..., Dh: Optional[float] = ..., fd: Optional[float] = ... ) -> float: ... def square_edge_screen(alpha: float) -> float: ... __all__: List[str]fluids-1.0.22/fluids/compressible.py0000644000175000017500000022507714302004506016746 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2019, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains equations for modeling flow where density changes significantly during the process - compressible flow. Also included are equations for choked flow - the phenomenon where the velocity of a fluid reaches its speed of sound. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Compression Processes --------------------- .. autofunction:: isothermal_work_compression .. autofunction:: isentropic_work_compression .. autofunction:: isentropic_T_rise_compression .. autofunction:: isentropic_efficiency .. autofunction:: polytropic_exponent Compressible Flow ----------------- .. autofunction:: isothermal_gas Empirical Compressible Flow --------------------------- .. autofunction:: Panhandle_A .. autofunction:: Panhandle_B .. autofunction:: Weymouth .. autofunction:: Spitzglass_high .. autofunction:: Spitzglass_low .. autofunction:: Oliphant .. autofunction:: Fritzsche .. autofunction:: Muller .. autofunction:: IGT Critical Flow ------------- .. autofunction:: T_critical_flow .. autofunction:: P_critical_flow .. autofunction:: is_critical_flow .. autofunction:: P_isothermal_critical_flow .. autofunction:: P_upstream_isothermal_critical_flow Stagnation Point ---------------- .. autofunction:: stagnation_energy .. autofunction:: P_stagnation .. autofunction:: T_stagnation .. autofunction:: T_stagnation_ideal """ from __future__ import division from math import sqrt, log, pi, exp, isinf from fluids.constants import R from fluids.numerics import secant, newton, ridder, lambertw __all__ = ['Panhandle_A', 'Panhandle_B', 'Weymouth', 'Spitzglass_high', 'Spitzglass_low', 'Oliphant', 'Fritzsche', 'Muller', 'IGT', 'isothermal_gas', 'isothermal_work_compression', 'polytropic_exponent', 'isentropic_work_compression', 'isentropic_efficiency', 'isentropic_T_rise_compression', 'T_critical_flow', 'P_critical_flow', 'P_isothermal_critical_flow', 'is_critical_flow', 'stagnation_energy', 'P_stagnation', 'T_stagnation', 'T_stagnation_ideal'] def isothermal_work_compression(P1, P2, T, Z=1.0): r'''Calculates the work of compression or expansion of a gas going through an isothermal process. .. math:: W = zRT\ln\left(\frac{P_2}{P_1}\right) Parameters ---------- P1 : float Inlet pressure, [Pa] P2 : float Outlet pressure, [Pa] T : float Temperature of the gas going through an isothermal process, [K] Z : float Constant compressibility factor of the gas, [-] Returns ------- W : float Work performed per mole of gas compressed/expanded [J/mol] Notes ----- The full derivation with all forms is as follows: .. math:: W = \int_{P_1}^{P_2} V dP = zRT\int_{P_1}^{P_2} \frac{1}{P} dP .. math:: W = zRT\ln\left(\frac{P_2}{P_1}\right) = P_1 V_1 \ln\left(\frac{P_2} {P_1}\right) = P_2 V_2 \ln\left(\frac{P_2}{P_1}\right) The substitutions are according to the ideal gas law with compressibility: .. math: PV = ZRT The work of compression/expansion is the change in enthalpy of the gas. Returns negative values for expansion and positive values for compression. An average compressibility factor can be used where Z changes. For further accuracy, this expression can be used repeatedly with small changes in pressure and the work from each step summed. This is the best possible case for compression; all actual compresssors require more work to do the compression. By making the compression take a large number of stages and cooling the gas between stages, this can be approached reasonable closely. Integrally geared compressors are often used for this purpose. Examples -------- >>> isothermal_work_compression(1E5, 1E6, 300) 5743.427304244769 References ---------- .. [1] Couper, James R., W. Roy Penney, and James R. Fair. Chemical Process Equipment: Selection and Design. 2nd ed. Amsterdam ; Boston: Gulf Professional Publishing, 2009. ''' return Z*R*T*log(P2/P1) def isentropic_work_compression(T1, k, Z=1.0, P1=None, P2=None, W=None, eta=None): r'''Calculation function for dealing with compressing or expanding a gas going through an isentropic, adiabatic process assuming constant Cp and Cv. The polytropic model is the same equation; just provide `n` instead of `k` and use a polytropic efficiency for `eta` instead of a isentropic efficiency. Can calculate any of the following, given all the other inputs: * W, Work of compression * P2, Pressure after compression * P1, Pressure before compression * eta, isentropic efficiency of compression .. math:: W = \left(\frac{k}{k-1}\right)ZRT_1\left[\left(\frac{P_2}{P_1} \right)^{(k-1)/k}-1\right]/\eta_{isentropic} Parameters ---------- T1 : float Initial temperature of the gas, [K] k : float Isentropic exponent of the gas (Cp/Cv) or polytropic exponent `n` to use this as a polytropic model instead [-] Z : float, optional Constant compressibility factor of the gas, [-] P1 : float, optional Inlet pressure, [Pa] P2 : float, optional Outlet pressure, [Pa] W : float, optional Work performed per mole of gas compressed/expanded [J/mol] eta : float, optional Isentropic efficiency of the process or polytropic efficiency of the process to use this as a polytropic model instead [-] Returns ------- W, P1, P2, or eta : float The missing input which was solved for [base SI] Notes ----- For the same compression ratio, this is always of larger magnitude than the isothermal case. The full derivation is as follows: For constant-heat capacity "isentropic" fluid, .. math:: V = \frac{P_1^{1/k}V_1}{P^{1/k}} .. math:: W = \int_{P_1}^{P_2} V dP = \int_{P_1}^{P_2}\frac{P_1^{1/k}V_1} {P^{1/k}}dP .. math:: W = \frac{P_1^{1/k} V_1}{1 - \frac{1}{k}}\left[P_2^{1-1/k} - P_1^{1-1/k}\right] After performing the integration and substantial mathematical manipulation we can obtain: .. math:: W = \left(\frac{k}{k-1}\right) P_1 V_1 \left[\left(\frac{P_2}{P_1} \right)^{(k-1)/k}-1\right] Using PV = ZRT: .. math:: W = \left(\frac{k}{k-1}\right)ZRT_1\left[\left(\frac{P_2}{P_1} \right)^{(k-1)/k}-1\right] The work of compression/expansion is the change in enthalpy of the gas. Returns negative values for expansion and positive values for compression. An average compressibility factor should be used as Z changes. For further accuracy, this expression can be used repeatedly with small changes in pressure and new values of isentropic exponent, and the work from each step summed. For the polytropic case this is not necessary, as `eta` corrects for the simplification. Examples -------- >>> isentropic_work_compression(P1=1E5, P2=1E6, T1=300, k=1.4, eta=0.78) 10416.876986384483 References ---------- .. [1] Couper, James R., W. Roy Penney, and James R. Fair. Chemical Process Equipment: Selection and Design. 2nd ed. Amsterdam ; Boston: Gulf Professional Publishing, 2009. ''' if W is None and eta is not None and P1 is not None and P2 is not None: return k/(k - 1.0)*Z*R*T1*((P2/P1)**((k-1.)/k) - 1.0)/eta elif P1 is None and eta is not None and W is not None and P2 is not None: return P2*(1.0 + W*eta/(R*T1*Z) - W*eta/(R*T1*Z*k))**(-k/(k - 1.0)) elif P2 is None and eta is not None and W is not None and P1 is not None: return P1*(1.0 + W*eta/(R*T1*Z) - W*eta/(R*T1*Z*k))**(k/(k - 1.0)) elif eta is None and P1 is not None and P2 is not None and W is not None: return R*T1*Z*k*((P2/P1)**((k - 1.0)/k) - 1.0)/(W*(k - 1.0)) else: raise ValueError('Three of W, P1, P2, and eta must be specified.') def isentropic_T_rise_compression(T1, P1, P2, k, eta=1): r'''Calculates the increase in temperature of a fluid which is compressed or expanded under isentropic, adiabatic conditions assuming constant Cp and Cv. The polytropic model is the same equation; just provide `n` instead of `k` and use a polytropic efficienty for `eta` instead of a isentropic efficiency. .. math:: T_2 = T_1 + \frac{\Delta T_s}{\eta_s} = T_1 \left\{1 + \frac{1} {\eta_s}\left[\left(\frac{P_2}{P_1}\right)^{(k-1)/k}-1\right]\right\} Parameters ---------- T1 : float Initial temperature of gas [K] P1 : float Initial pressure of gas [Pa] P2 : float Final pressure of gas [Pa] k : float Isentropic exponent of the gas (Cp/Cv) or polytropic exponent `n` to use this as a polytropic model instead [-] eta : float Isentropic efficiency of the process or polytropic efficiency of the process to use this as a polytropic model instead [-] Returns ------- T2 : float Final temperature of gas [K] Notes ----- For the ideal case of `eta` = 1, the model simplifies to: .. math:: \frac{T_2}{T_1} = \left(\frac{P_2}{P_1}\right)^{(k-1)/k} Examples -------- >>> isentropic_T_rise_compression(286.8, 54050, 432400, 1.4) 519.5230938217768 References ---------- .. [1] Couper, James R., W. Roy Penney, and James R. Fair. Chemical Process Equipment: Selection and Design. 2nd ed. Amsterdam ; Boston: Gulf Professional Publishing, 2009. .. [2] GPSA. GPSA Engineering Data Book. 13th edition. Gas Processors Suppliers Association, Tulsa, OK, 2012. ''' dT = T1*((P2/P1)**((k - 1.0)/k) - 1.0)/eta return T1 + dT def isentropic_efficiency(P1, P2, k, eta_s=None, eta_p=None): r'''Calculates either isentropic or polytropic efficiency from the other type of efficiency. .. math:: \eta_s = \frac{(P_2/P_1)^{(k-1)/k}-1} {(P_2/P_1)^{\frac{k-1}{k\eta_p}}-1} .. math:: \eta_p = \frac{\left(k - 1\right) \ln{\left (\frac{P_{2}}{P_{1}} \right )}}{k \ln{\left (\frac{1}{\eta_{s}} \left(\eta_{s} + \left(\frac{P_{2}}{P_{1}}\right)^{\frac{1}{k} \left(k - 1\right)} - 1\right) \right )}} Parameters ---------- P1 : float Initial pressure of gas [Pa] P2 : float Final pressure of gas [Pa] k : float Isentropic exponent of the gas (Cp/Cv) [-] eta_s : float, optional Isentropic (adiabatic) efficiency of the process, [-] eta_p : float, optional Polytropic efficiency of the process, [-] Returns ------- eta_s or eta_p : float Isentropic or polytropic efficiency, depending on input, [-] Notes ----- The form for obtained `eta_p` from `eta_s` was derived with SymPy. Examples -------- >>> isentropic_efficiency(1E5, 1E6, 1.4, eta_p=0.78) 0.7027614191263858 References ---------- .. [1] Couper, James R., W. Roy Penney, and James R. Fair. Chemical Process Equipment: Selection and Design. 2nd ed. Amsterdam ; Boston: Gulf Professional Publishing, 2009. ''' if eta_s is None and eta_p is not None: return ((P2/P1)**((k-1.0)/k)-1.0)/((P2/P1)**((k-1.0)/(k*eta_p))-1.0) elif eta_p is None and eta_s is not None: return (k - 1.0)*log(P2/P1)/(k*log( (eta_s + (P2/P1)**((k - 1.0)/k) - 1.0)/eta_s)) else: raise ValueError('Either eta_s or eta_p is required') def polytropic_exponent(k, n=None, eta_p=None): r'''Calculates one of: * Polytropic exponent from polytropic efficiency * Polytropic efficiency from the polytropic exponent .. math:: n = \frac{k\eta_p}{1 - k(1-\eta_p)} .. math:: \eta_p = \frac{\left(\frac{n}{n-1}\right)}{\left(\frac{k}{k-1} \right)} = \frac{n(k-1)}{k(n-1)} Parameters ---------- k : float Isentropic exponent of the gas (Cp/Cv) [-] n : float, optional Polytropic exponent of the process [-] eta_p : float, optional Polytropic efficiency of the process, [-] Returns ------- n or eta_p : float Polytropic exponent or polytropic efficiency, depending on input, [-] Notes ----- Examples -------- >>> polytropic_exponent(1.4, eta_p=0.78) 1.5780346820809246 References ---------- .. [1] Couper, James R., W. Roy Penney, and James R. Fair. Chemical Process Equipment: Selection and Design. 2nd ed. Amsterdam ; Boston: Gulf Professional Publishing, 2009. ''' if n is None and eta_p is not None: return k*eta_p/(1.0 - k*(1.0 - eta_p)) elif eta_p is None and n is not None: return n*(k - 1.0)/(k*(n - 1.0)) else: raise ValueError('Either n or eta_p is required') def T_critical_flow(T, k): r'''Calculates critical flow temperature `Tcf` for a fluid with the given isentropic coefficient. `Tcf` is in a flow (with Ma=1) whose stagnation conditions are known. Normally used with converging/diverging nozzles. .. math:: \frac{T^*}{T_0} = \frac{2}{k+1} Parameters ---------- T : float Stagnation temperature of a fluid with Ma=1 [K] k : float Isentropic coefficient [] Returns ------- Tcf : float Critical flow temperature at Ma=1 [K] Notes ----- Assumes isentropic flow. Examples -------- Example 12.4 in [1]_: >>> T_critical_flow(473, 1.289) 413.2809086937528 References ---------- .. [1] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return T*2.0/(k + 1.0) def P_critical_flow(P, k): r'''Calculates critical flow pressure `Pcf` for a fluid with the given isentropic coefficient. `Pcf` is in a flow (with Ma=1) whose stagnation conditions are known. Normally used with converging/diverging nozzles. .. math:: \frac{P^*}{P_0} = \left(\frac{2}{k+1}\right)^{k/(k-1)} Parameters ---------- P : float Stagnation pressure of a fluid with Ma=1 [Pa] k : float Isentropic coefficient [] Returns ------- Pcf : float Critical flow pressure at Ma=1 [Pa] Notes ----- Assumes isentropic flow. Examples -------- Example 12.4 in [1]_: >>> P_critical_flow(1400000, 1.289) 766812.9022792266 References ---------- .. [1] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return P*(2.0/(k + 1.))**(k/(k - 1.0)) def P_isothermal_critical_flow(P, fd, D, L): r'''Calculates critical flow pressure `Pcf` for a fluid flowing isothermally and suffering pressure drop caused by a pipe's friction factor. .. math:: P_2 = P_{1} e^{\frac{1}{2 D} \left(D \left(\operatorname{LambertW} {\left (- e^{\frac{1}{D} \left(- D - L f_d\right)} \right )} + 1\right) + L f_d\right)} Parameters ---------- P : float Inlet pressure [Pa] fd : float Darcy friction factor for flow in pipe [-] D : float Diameter of pipe, [m] L : float Length of pipe, [m] Returns ------- Pcf : float Critical flow pressure of a compressible gas flowing from `P1` to `Pcf` in a tube of length L and friction factor `fd` [Pa] Notes ----- Assumes isothermal flow. Developed based on the `isothermal_gas` model, using SymPy. The isothermal gas model is solved for maximum mass flow rate; any pressure drop under it is impossible due to the formation of a shock wave. Examples -------- >>> P_isothermal_critical_flow(P=1E6, fd=0.00185, L=1000., D=0.5) 389699.73176 References ---------- .. [1] Wilkes, James O. Fluid Mechanics for Chemical Engineers with Microfluidics and CFD. 2 edition. Upper Saddle River, NJ: Prentice Hall, 2005. ''' # Correct branch of lambertw found by trial and error lambert_term = float((lambertw(-exp((-D - L*fd)/D), -1)).real) return P*exp((D*(lambert_term + 1.0) + L*fd)/(2.0*D)) def P_upstream_isothermal_critical_flow(P, fd, D, L): """Not part of the public API. Reverses `P_isothermal_critical_flow`. Examples -------- >>> P_upstream_isothermal_critical_flow(P=389699.7317645518, fd=0.00185, ... L=1000., D=0.5) 1000000.00000 """ lambertw_term = float(lambertw(-exp(-(fd*L+D)/D), -1).real) return exp(-0.5*(D*lambertw_term+fd*L+D)/D)*P def is_critical_flow(P1, P2, k): r'''Determines if a flow of a fluid driven by pressure gradient P1 - P2 is critical, for a fluid with the given isentropic coefficient. This function calculates critical flow pressure, and checks if this is larger than P2. If so, the flow is critical and choked. Parameters ---------- P1 : float Higher, source pressure [Pa] P2 : float Lower, downstream pressure [Pa] k : float Isentropic coefficient [] Returns ------- flowtype : bool True if the flow is choked; otherwise False Notes ----- Assumes isentropic flow. Uses P_critical_flow function. Examples -------- Examples 1-2 from API 520. >>> is_critical_flow(670E3, 532E3, 1.11) False >>> is_critical_flow(670E3, 101E3, 1.11) True References ---------- .. [1] API. 2014. API 520 - Part 1 Sizing, Selection, and Installation of Pressure-relieving Devices, Part I - Sizing and Selection, 9E. ''' Pcf = P_critical_flow(P1, k) return Pcf > P2 def stagnation_energy(V): r'''Calculates the increase in enthalpy `dH` which is provided by a fluid's velocity `V`. .. math:: \Delta H = \frac{V^2}{2} Parameters ---------- V : float Velocity [m/s] Returns ------- dH : float Incease in enthalpy [J/kg] Notes ----- The units work out. This term is pretty small, but not trivial. Examples -------- >>> stagnation_energy(125) 7812.5 References ---------- .. [1] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return 0.5*V*V def P_stagnation(P, T, Tst, k): r'''Calculates stagnation flow pressure `Pst` for a fluid with the given isentropic coefficient and specified stagnation temperature and normal temperature. Normally used with converging/diverging nozzles. .. math:: \frac{P_0}{P}=\left(\frac{T_0}{T}\right)^{\frac{k}{k-1}} Parameters ---------- P : float Normal pressure of a fluid [Pa] T : float Normal temperature of a fluid [K] Tst : float Stagnation temperature of a fluid moving at a certain velocity [K] k : float Isentropic coefficient [] Returns ------- Pst : float Stagnation pressure of a fluid moving at a certain velocity [Pa] Notes ----- Assumes isentropic flow. Examples -------- Example 12-1 in [1]_. >>> P_stagnation(54050., 255.7, 286.8, 1.4) 80772.80495900588 References ---------- .. [1] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return P*(Tst/T)**(k/(k - 1.0)) def T_stagnation(T, P, Pst, k): r'''Calculates stagnation flow temperature `Tst` for a fluid with the given isentropic coefficient and specified stagnation pressure and normal pressure. Normally used with converging/diverging nozzles. .. math:: T=T_0\left(\frac{P}{P_0}\right)^{\frac{k-1}{k}} Parameters ---------- T : float Normal temperature of a fluid [K] P : float Normal pressure of a fluid [Pa] Pst : float Stagnation pressure of a fluid moving at a certain velocity [Pa] k : float Isentropic coefficient [] Returns ------- Tst : float Stagnation temperature of a fluid moving at a certain velocity [K] Notes ----- Assumes isentropic flow. Examples -------- Example 12-1 in [1]_. >>> T_stagnation(286.8, 54050, 54050*8, 1.4) 519.5230938217768 References ---------- .. [1] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return T*(Pst/P)**((k - 1.0)/k) def T_stagnation_ideal(T, V, Cp): r'''Calculates the ideal stagnation temperature `Tst` calculated assuming the fluid has a constant heat capacity `Cp` and with a specified velocity `V` and temperature `T`. .. math:: T^* = T + \frac{V^2}{2C_p} Parameters ---------- T : float Tempearture [K] V : float Velocity [m/s] Cp : float Ideal heat capacity [J/kg/K] Returns ------- Tst : float Stagnation temperature [J/kg] Examples -------- Example 12-1 in [1]_. >>> T_stagnation_ideal(255.7, 250, 1005.) 286.79452736318405 References ---------- .. [1] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return T + 0.5*V*V/Cp def isothermal_gas_err_P1(P1, fd, rho, P2, L, D, m): return m - isothermal_gas(rho, fd, P1=P1, P2=P2, L=L, D=D) def isothermal_gas_err_P2(P2, rho, fd, P1, L, D, m): return m - isothermal_gas(rho, fd, P1=P1, P2=P2, L=L, D=D) def isothermal_gas_err_P2_basis(P1, P2, rho, fd, m, L, D): return abs(P2 - isothermal_gas(rho, fd, m=m, P1=P1, P2=None, L=L, D=D)) def isothermal_gas_err_D(D, m, rho, fd, P1, P2, L): return m - isothermal_gas(rho, fd, P1=P1, P2=P2, L=L, D=D) def isothermal_gas(rho, fd, P1=None, P2=None, L=None, D=None, m=None): r'''Calculation function for dealing with flow of a compressible gas in a pipeline for the complete isothermal flow equation. Can calculate any of the following, given all other inputs: * Mass flow rate * Upstream pressure (numerical) * Downstream pressure (analytical or numerical if an overflow occurs) * Diameter of pipe (numerical) * Length of pipe A variety of forms of this equation have been presented, differing in their use of the ideal gas law and choice of gas constant. The form here uses density explicitly, allowing for non-ideal values to be used. .. math:: \dot m^2 = \frac{\left(\frac{\pi D^2}{4}\right)^2 \rho_{avg} \left(P_1^2-P_2^2\right)}{P_1\left(f_d\frac{L}{D} + 2\ln\frac{P_1}{P_2} \right)} Parameters ---------- rho : float Average density of gas in pipe, [kg/m^3] fd : float Darcy friction factor for flow in pipe [-] P1 : float, optional Inlet pressure to pipe, [Pa] P2 : float, optional Outlet pressure from pipe, [Pa] L : float, optional Length of pipe, [m] D : float, optional Diameter of pipe, [m] m : float, optional Mass flow rate of gas through pipe, [kg/s] Returns ------- m, P1, P2, D, or L : float The missing input which was solved for [base SI] Notes ----- The solution for P2 has the following closed form, derived using Maple: .. math:: P_2={P_1 \left( {{ e}^{0.5\cdot{\frac {1}{{m}^{2}} \left( -C{m}^{2} +\text{ lambertW} \left(-{\frac {BP_1}{{m}^{2}}{{ e}^{-{\frac {-C{m}^{ 2}+BP_1}{{m}^{2}}}}}}\right){}{m}^{2}+BP_1 \right) }}} \right) ^{-1}} .. math:: B = \frac{\pi^2 D^4}{4^2} \rho_{avg} .. math:: C = f_d \frac{L}{D} A wide range of conditions are impossible due to choked flow. See `P_isothermal_critical_flow` for details. An exception is raised when they occur. The 2 multiplied by the logarithm is often shown as a power of the pressure ratio; this is only the case when the pressure ratio is raised to the power of 2 before its logarithm is taken. A number of limitations exist for this model: * Density dependence is that of an ideal gas. * If calculating the pressure drop, the average gas density cannot be known immediately; iteration must be used to correct this. * The friction factor depends on both the gas density and velocity, so it should be solved for iteratively as well. It changes throughout the pipe as the gas expands and velocity increases. * The model is not easily adapted to include elevation effects due to the acceleration term included in it. * As the gas expands, it will change temperature slightly, further altering the density and friction factor. There are many commercial packages which perform the actual direct integration of the flow, such as OLGA Dynamic Multiphase Flow Simulator, or ASPEN Hydraulics. This expression has also been presented with the ideal gas assumption directly incorporated into it [4]_ (note R is the specific gas constant, in units of J/kg/K): .. math:: \dot m^2 = \frac{\left(\frac{\pi D^2}{4}\right)^2 \left(P_1^2-P_2^2\right)}{RT\left(f_d\frac{L}{D} + 2\ln\frac{P_1}{P_2} \right)} Examples -------- >>> isothermal_gas(rho=11.3, fd=0.00185, P1=1E6, P2=9E5, L=1000, D=0.5) 145.4847572636031 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. .. [2] Kim, J. and Singh, N. "A Novel Equation for Isothermal Pipe Flow.". Chemical Engineering, June 2012, http://www.chemengonline.com/a-novel-equation-for-isothermal-pipe-flow/?printmode=1 .. [3] Wilkes, James O. Fluid Mechanics for Chemical Engineers with Microfluidics and CFD. 2 edition. Upper Saddle River, NJ: Prentice Hall, 2005. .. [4] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. ''' if m is None and P1 is not None and P2 is not None and L is not None and D is not None: Pcf = P_isothermal_critical_flow(P=P1, fd=fd, D=D, L=L) if P2 < Pcf: raise ValueError('Given outlet pressure is not physically possible ' # numba: delete 'due to the formation of choked flow at P2=%f, specified outlet pressure was %f' % (Pcf, P2)) # numba: delete # raise ValueError("Not possible") # numba: uncomment if P2 > P1: raise ValueError('Specified outlet pressure is larger than the ' 'inlet pressure; fluid will flow backwards.') return sqrt(0.0625*pi*pi*D**4*rho/(P1*(fd*L/D + 2.0*log(P1/P2)))*(P1*P1 - P2*P2)) elif L is None and P1 is not None and P2 is not None and D is not None and m is not None: return D*(pi*pi*D**4*rho*(P1*P1 - P2*P2) - 32.0*P1*m*m*log(P1/P2))/(16.0*P1*fd*m*m) elif P1 is None and L is not None and P2 is not None and D is not None and m is not None: Pcf = P_upstream_isothermal_critical_flow(P=P2, fd=fd, D=D, L=L) try: # Use the explicit solution for P2 with different P1 guesses; # newton doesn't like solving for m. P1 = secant(isothermal_gas_err_P2_basis, (P2+Pcf)/2., args=(P2, rho, fd, m, L, D)) if not (P2 <= P1): raise ValueError("Failed") return P1 except: try: return ridder(isothermal_gas_err_P1, a=P2, b=Pcf, args=(fd, rho, P2, L, D, m)) except: m_max = isothermal_gas(rho, fd, P1=Pcf, P2=P2, L=L, D=D) # numba: delete raise ValueError('The desired mass flow rate of %f kg/s cannot ' # numba: delete 'be achieved with the specified downstream pressure; the maximum flowrate is ' # numba: delete '%f kg/s at an upstream pressure of %f Pa' %(m, m_max, Pcf)) # numba: delete # raise ValueError("Failed") # numba: uncomment elif P2 is None and L is not None and P1 is not None and D is not None and m is not None: try: Pcf = P_isothermal_critical_flow(P=P1, fd=fd, D=D, L=L) m_max = isothermal_gas(rho, fd, P1=P1, P2=Pcf, L=L, D=D) if not (m <= m_max): raise ValueError("Failed") C = fd*L/D B = (pi/4*D**2)**2*rho arg = -B/m**2*P1*exp(-(-C*m**2+B*P1)/m**2) # Consider the two real branches of the lambertw function. # The k=-1 branch produces the higher P2 values; the k=0 branch is # physically impossible. lambert_ans = float(lambertw(arg, k=-1).real) # Large overflow problem here; also divide by zero problems! # Fail and try a numerical solution if it doesn't work. if isinf(lambert_ans): raise ValueError("Should not be infinity") P2 = P1/exp((-C*m**2+lambert_ans*m**2+B*P1)/m**2/2.) if not (P2 < P1): raise ValueError("Should not be the case") return P2 except: Pcf = P_isothermal_critical_flow(P=P1, fd=fd, D=D, L=L) try: return ridder(isothermal_gas_err_P2, a=Pcf, b=P1, args=(rho, fd, P1, L, D, m)) except: m_max = isothermal_gas(rho, fd, P1=P1, P2=Pcf, L=L, D=D) raise ValueError('The desired mass flow rate cannot be achieved ' # numba: delete 'with the specified upstream pressure of %f Pa; the maximum flowrate is %f ' # numba: delete 'kg/s at a downstream pressure of %f' %(P1, m_max, Pcf)) # numba: delete # raise ValueError("Failed") # numba: uncomment # A solver which respects its boundaries is required here. # ridder cuts the time down from 2 ms to 200 mircoseconds. # Is is believed Pcf and P1 will always bracked the root, however # leave the commented code for testing elif D is None and P2 is not None and P1 is not None and L is not None and m is not None: return secant(isothermal_gas_err_D, 0.1, args=(m, rho, fd, P1, P2, L)) else: raise ValueError('This function solves for either mass flow, upstream \ pressure, downstream pressure, diameter, or length; all other inputs \ must be provided.') def Panhandle_A(SG, Tavg, L=None, D=None, P1=None, P2=None, Q=None, Ts=288.7, Ps=101325., Zavg=1.0, E=0.92): r'''Calculation function for dealing with flow of a compressible gas in a pipeline with the Panhandle A formula. Can calculate any of the following, given all other inputs: * Flow rate * Upstream pressure * Downstream pressure * Diameter of pipe * Length of pipe A variety of different constants and expressions have been presented for the Panhandle A equation. Here, a new form is developed with all units in base SI, based on the work of [1]_. .. math:: Q = 158.02053 E \left(\frac{T_s}{P_s}\right)^{1.0788}\left[\frac{P_1^2 -P_2^2}{L \cdot {SG}^{0.8539} T_{avg}Z_{avg}}\right]^{0.5394}D^{2.6182} Parameters ---------- SG : float Specific gravity of fluid with respect to air at the reference temperature and pressure `Ts` and `Ps`, [-] Tavg : float Average temperature of the fluid in the pipeline, [K] L : float, optional Length of pipe, [m] D : float, optional Diameter of pipe, [m] P1 : float, optional Inlet pressure to pipe, [Pa] P2 : float, optional Outlet pressure from pipe, [Pa] Q : float, optional Flow rate of gas through pipe at `Ts` and `Ps`, [m^3/s] Ts : float, optional Reference temperature for the specific gravity of the gas, [K] Ps : float, optional Reference pressure for the specific gravity of the gas, [Pa] Zavg : float, optional Average compressibility factor for gas, [-] E : float, optional Pipeline efficiency, a correction factor between 0 and 1 Returns ------- Q, P1, P2, D, or L : float The missing input which was solved for [base SI] Notes ----- [1]_'s original constant was 4.5965E-3, and it has units of km (length), kPa, mm (diameter), and flowrate in m^3/day. The form in [2]_ has the same exponents as used here, units of mm (diameter), kPa, km (length), and flow in m^3/hour; its leading constant is 1.9152E-4. The GPSA [3]_ has a leading constant of 0.191, a bracketed power of 0.5392, a specific gravity power of 0.853, and otherwise the same constants. It is in units of mm (diameter) and kPa and m^3/day; length is stated to be in km, but according to the errata is in m. [4]_ has a leading constant of 1.198E7, a specific gravity of power of 0.8541, and a power of diameter which is under the root of 4.854 and is otherwise the same. It has units of kPa and m^3/day, but is otherwise in base SI units. [5]_ has a leading constant of 99.5211, but its reference correction has no exponent; other exponents are the same as here. It is entirely in base SI units. [6]_ has pressures in psi, diameter in inches, length in miles, Q in ft^3/day, T in degrees Rankine, and a constant of 435.87. Its reference condition power is 1.07881, and it has a specific gravity correction outside any other term with a power of 0.4604. Examples -------- >>> Panhandle_A(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15) 42.56082051195928 References ---------- .. [1] Menon, E. Shashi. Gas Pipeline Hydraulics. 1st edition. Boca Raton, FL: CRC Press, 2005. .. [2] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. .. [3] GPSA. GPSA Engineering Data Book. 13th edition. Gas Processors Suppliers Association, Tulsa, OK, 2012. .. [4] Campbell, John M. Gas Conditioning and Processing, Vol. 2: The Equipment Modules. 7th edition. Campbell Petroleum Series, 1992. .. [5] Coelho, Paulo M., and Carlos Pinho. "Considerations about Equations for Steady State Flow in Natural Gas Pipelines." Journal of the Brazilian Society of Mechanical Sciences and Engineering 29, no. 3 (September 2007): 262-73. doi:10.1590/S1678-58782007000300005. .. [6] Ikoku, Chi U. Natural Gas Production Engineering. Malabar, Fla: Krieger Pub Co, 1991. ''' c1 = 1.0788 c2 = 0.8539 c3 = 0.5394 c4 = 2.6182 c5 = 158.0205328706957220332831680508433862787 # 45965*10**(591/1250)/864 if Q is None and L is not None and D is not None and P1 is not None and P2 is not None: return c5*E*(Ts/Ps)**c1*((P1**2 - P2**2)/(L*SG**c2*Tavg*Zavg))**c3*D**c4 elif D is None and L is not None and Q is not None and P1 is not None and P2 is not None: return (Q*(Ts/Ps)**(-c1)*(SG**(-c2)*(P1**2 - P2**2)/(L*Tavg*Zavg))**(-c3)/(E*c5))**(1./c4) elif P1 is None and L is not None and Q is not None and D is not None and P2 is not None: return sqrt(L*SG**c2*Tavg*Zavg*(D**(-c4)*Q*(Ts/Ps)**(-c1)/(E*c5))**(1./c3) + P2**2) elif P2 is None and L is not None and Q is not None and D is not None and P1 is not None: return sqrt(-L*SG**c2*Tavg*Zavg*(D**(-c4)*Q*(Ts/Ps)**(-c1)/(E*c5))**(1./c3) + P1**2) elif L is None and P2 is not None and Q is not None and D is not None and P1 is not None: return SG**(-c2)*(D**(-c4)*Q*(Ts/Ps)**(-c1)/(E*c5))**(-1./c3)*(P1**2 - P2**2)/(Tavg*Zavg) else: raise ValueError('This function solves for either flow, upstream \ pressure, downstream pressure, diameter, or length; all other inputs \ must be provided.') def Panhandle_B(SG, Tavg, L=None, D=None, P1=None, P2=None, Q=None, Ts=288.7, Ps=101325., Zavg=1.0, E=0.92): r'''Calculation function for dealing with flow of a compressible gas in a pipeline with the Panhandle B formula. Can calculate any of the following, given all other inputs: * Flow rate * Upstream pressure * Downstream pressure * Diameter of pipe * Length of pipe A variety of different constants and expressions have been presented for the Panhandle B equation. Here, a new form is developed with all units in base SI, based on the work of [1]_. .. math:: Q = 152.88116 E \left(\frac{T_s}{P_s}\right)^{1.02}\left[\frac{P_1^2 -P_2^2}{L \cdot {SG}^{0.961} T_{avg}Z_{avg}}\right]^{0.51}D^{2.53} Parameters ---------- SG : float Specific gravity of fluid with respect to air at the reference temperature and pressure `Ts` and `Ps`, [-] Tavg : float Average temperature of the fluid in the pipeline, [K] L : float, optional Length of pipe, [m] D : float, optional Diameter of pipe, [m] P1 : float, optional Inlet pressure to pipe, [Pa] P2 : float, optional Outlet pressure from pipe, [Pa] Q : float, optional Flow rate of gas through pipe at `Ts` and `Ps`, [m^3/s] Ts : float, optional Reference temperature for the specific gravity of the gas, [K] Ps : float, optional Reference pressure for the specific gravity of the gas, [Pa] Zavg : float, optional Average compressibility factor for gas, [-] E : float, optional Pipeline efficiency, a correction factor between 0 and 1 Returns ------- Q, P1, P2, D, or L : float The missing input which was solved for [base SI] Notes ----- [1]_'s original constant was 1.002E-2, and it has units of km (length), kPa, mm (diameter), and flowrate in m^3/day. The form in [2]_ has the same exponents as used here, units of mm (diameter), kPa, km (length), and flow in m^3/hour; its leading constant is 4.1749E-4. The GPSA [3]_ has a leading constant of 0.339, and otherwise the same constants. It is in units of mm (diameter) and kPa and m^3/day; length is stated to be in km, but according to the errata is in m. [4]_ has a leading constant of 1.264E7, a diameter power of 4.961 which is also under the 0.51 power, and is otherwise the same. It has units of kPa and m^3/day, but is otherwise in base SI units. [5]_ has a leading constant of 135.8699, but its reference correction has no exponent and its specific gravity has a power of 0.9608; the other exponents are the same as here. It is entirely in base SI units. [6]_ has pressures in psi, diameter in inches, length in miles, Q in ft^3/day, T in degrees Rankine, and a constant of 737 with the exponents the same as here. Examples -------- >>> Panhandle_B(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15) 42.35366178004172 References ---------- .. [1] Menon, E. Shashi. Gas Pipeline Hydraulics. 1st edition. Boca Raton, FL: CRC Press, 2005. .. [2] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. .. [3] GPSA. GPSA Engineering Data Book. 13th edition. Gas Processors Suppliers Association, Tulsa, OK, 2012. .. [4] Campbell, John M. Gas Conditioning and Processing, Vol. 2: The Equipment Modules. 7th edition. Campbell Petroleum Series, 1992. .. [5] Coelho, Paulo M., and Carlos Pinho. "Considerations about Equations for Steady State Flow in Natural Gas Pipelines." Journal of the Brazilian Society of Mechanical Sciences and Engineering 29, no. 3 (September 2007): 262-73. doi:10.1590/S1678-58782007000300005. .. [6] Ikoku, Chi U. Natural Gas Production Engineering. Malabar, Fla: Krieger Pub Co, 1991. ''' c1 = 1.02 # reference condition power c2 = 0.961 # sg power c3 = 0.51 # main power c4 = 2.53 # diameter power c5 = 152.8811634298055458624385985866624419060 # 4175*10**(3/25)/36 if Q is None and L is not None and D is not None and P1 is not None and P2 is not None: return c5*E*(Ts/Ps)**c1*((P1**2 - P2**2)/(L*SG**c2*Tavg*Zavg))**c3*D**c4 elif D is None and L is not None and Q is not None and P1 is not None and P2 is not None: return (Q*(Ts/Ps)**(-c1)*(SG**(-c2)*(P1**2 - P2**2)/(L*Tavg*Zavg))**(-c3)/(E*c5))**(1./c4) elif P1 is None and L is not None and Q is not None and D is not None and P2 is not None: return sqrt(L*SG**c2*Tavg*Zavg*(D**(-c4)*Q*(Ts/Ps)**(-c1)/(E*c5))**(1./c3) + P2**2) elif P2 is None and L is not None and Q is not None and D is not None and P1 is not None: return sqrt(-L*SG**c2*Tavg*Zavg*(D**(-c4)*Q*(Ts/Ps)**(-c1)/(E*c5))**(1./c3) + P1**2) elif L is None and P2 is not None and Q is not None and D is not None and P1 is not None: return SG**(-c2)*(D**(-c4)*Q*(Ts/Ps)**(-c1)/(E*c5))**(-1./c3)*(P1**2 - P2**2)/(Tavg*Zavg) else: raise ValueError('This function solves for either flow, upstream \ pressure, downstream pressure, diameter, or length; all other inputs \ must be provided.') def Weymouth(SG, Tavg, L=None, D=None, P1=None, P2=None, Q=None, Ts=288.7, Ps=101325., Zavg=1.0, E=0.92): r'''Calculation function for dealing with flow of a compressible gas in a pipeline with the Weymouth formula. Can calculate any of the following, given all other inputs: * Flow rate * Upstream pressure * Downstream pressure * Diameter of pipe * Length of pipe A variety of different constants and expressions have been presented for the Weymouth equation. Here, a new form is developed with all units in base SI, based on the work of [1]_. .. math:: Q = 137.32958 E \frac{T_s}{P_s}\left[\frac{P_1^2 -P_2^2}{L \cdot {SG} \cdot T_{avg}Z_{avg}}\right]^{0.5}D^{2.667} Parameters ---------- SG : float Specific gravity of fluid with respect to air at the reference temperature and pressure `Ts` and `Ps`, [-] Tavg : float Average temperature of the fluid in the pipeline, [K] L : float, optional Length of pipe, [m] D : float, optional Diameter of pipe, [m] P1 : float, optional Inlet pressure to pipe, [Pa] P2 : float, optional Outlet pressure from pipe, [Pa] Q : float, optional Flow rate of gas through pipe at `Ts` and `Ps`, [m^3/s] Ts : float, optional Reference temperature for the specific gravity of the gas, [K] Ps : float, optional Reference pressure for the specific gravity of the gas, [Pa] Zavg : float, optional Average compressibility factor for gas, [-] E : float, optional Pipeline efficiency, a correction factor between 0 and 1 Returns ------- Q, P1, P2, D, or L : float The missing input which was solved for [base SI] Notes ----- [1]_'s original constant was 3.7435E-3, and it has units of km (length), kPa, mm (diameter), and flowrate in m^3/day. The form in [2]_ has the same exponents as used here, units of mm (diameter), kPa, km (length), and flow in m^3/hour; its leading constant is 1.5598E-4. The GPSA [3]_ has a leading constant of 0.1182, and otherwise the same constants. It is in units of mm (diameter) and kPa and m^3/day; length is stated to be in km, but according to the errata is in m. [4]_ has a leading constant of 1.162E7, a diameter power of 5.333 which is also under the 0.50 power, and is otherwise the same. It has units of kPa and m^3/day, but is otherwise in base SI units. [5]_ has a leading constant of 137.2364; the other exponents are the same as here. It is entirely in base SI units. [6]_ has pressures in psi, diameter in inches, length in miles, Q in ft^3/hour, T in degrees Rankine, and a constant of 18.062 with the exponents the same as here. Examples -------- >>> Weymouth(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15) 32.07729055913029 References ---------- .. [1] Menon, E. Shashi. Gas Pipeline Hydraulics. 1st edition. Boca Raton, FL: CRC Press, 2005. .. [2] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. .. [3] GPSA. GPSA Engineering Data Book. 13th edition. Gas Processors Suppliers Association, Tulsa, OK, 2012. .. [4] Campbell, John M. Gas Conditioning and Processing, Vol. 2: The Equipment Modules. 7th edition. Campbell Petroleum Series, 1992. .. [5] Coelho, Paulo M., and Carlos Pinho. "Considerations about Equations for Steady State Flow in Natural Gas Pipelines." Journal of the Brazilian Society of Mechanical Sciences and Engineering 29, no. 3 (September 2007): 262-73. doi:10.1590/S1678-58782007000300005. .. [6] Ikoku, Chi U. Natural Gas Production Engineering. Malabar, Fla: Krieger Pub Co, 1991. ''' c3 = 0.5 # main power c4 = 2.667 # diameter power c5 = 137.3295809942512546732179684618143090992 # 37435*10**(501/1000)/864 if Q is None and L is not None and D is not None and P1 is not None and P2 is not None: return c5*E*(Ts/Ps)*((P1**2 - P2**2)/(L*SG*Tavg*Zavg))**c3*D**c4 elif D is None and L is not None and Q is not None and P1 is not None and P2 is not None: return (Ps*Q*((P1**2 - P2**2)/(L*SG*Tavg*Zavg))**(-c3)/(E*Ts*c5))**(1./c4) elif P1 is None and L is not None and Q is not None and D is not None and P2 is not None: return sqrt(L*SG*Tavg*Zavg*(D**(-c4)*Ps*Q/(E*Ts*c5))**(1./c3) + P2**2) elif P2 is None and L is not None and Q is not None and D is not None and P1 is not None: return sqrt(-L*SG*Tavg*Zavg*(D**(-c4)*Ps*Q/(E*Ts*c5))**(1./c3) + P1**2) elif L is None and P2 is not None and Q is not None and D is not None and P1 is not None: return (D**(-c4)*Ps*Q/(E*Ts*c5))**(-1./c3)*(P1**2 - P2**2)/(SG*Tavg*Zavg) else: raise ValueError('This function solves for either flow, upstream \ pressure, downstream pressure, diameter, or length; all other inputs \ must be provided.') def _to_solve_Spitzglass_high(D, Q, SG, Tavg, L, P1, P2, Ts, Ps, Zavg, E): return Q - Spitzglass_high(SG=SG, Tavg=Tavg, L=L, D=D, P1=P1, P2=P2, Ts=Ts, Ps=Ps,Zavg=Zavg, E=E) def Spitzglass_high(SG, Tavg, L=None, D=None, P1=None, P2=None, Q=None, Ts=288.7, Ps=101325., Zavg=1.0, E=1.): r'''Calculation function for dealing with flow of a compressible gas in a pipeline with the Spitzglass (high pressure drop) formula. Can calculate any of the following, given all other inputs: * Flow rate * Upstream pressure * Downstream pressure * Diameter of pipe (numerical solution) * Length of pipe A variety of different constants and expressions have been presented for the Spitzglass (high pressure drop) formula. Here, the form as in [1]_ is used but with a more precise metric conversion from inches to m. .. math:: Q = 125.1060 E \left(\frac{T_s}{P_s}\right)\left[\frac{P_1^2 -P_2^2}{L \cdot {SG} T_{avg}Z_{avg} (1 + 0.09144/D + \frac{150}{127}D)} \right]^{0.5}D^{2.5} Parameters ---------- SG : float Specific gravity of fluid with respect to air at the reference temperature and pressure `Ts` and `Ps`, [-] Tavg : float Average temperature of the fluid in the pipeline, [K] L : float, optional Length of pipe, [m] D : float, optional Diameter of pipe, [m] P1 : float, optional Inlet pressure to pipe, [Pa] P2 : float, optional Outlet pressure from pipe, [Pa] Q : float, optional Flow rate of gas through pipe at `Ts` and `Ps`, [m^3/s] Ts : float, optional Reference temperature for the specific gravity of the gas, [K] Ps : float, optional Reference pressure for the specific gravity of the gas, [Pa] Zavg : float, optional Average compressibility factor for gas, [-] E : float, optional Pipeline efficiency, a correction factor between 0 and 1 Returns ------- Q, P1, P2, D, or L : float The missing input which was solved for [base SI] Notes ----- This equation is often presented without any correction for reference conditions for specific gravity. This model is also presented in [2]_ with a leading constant of 1.0815E-2, the same exponents as used here, units of mm (diameter), kPa, km (length), and flow in m^3/hour. Examples -------- >>> Spitzglass_high(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15) 29.42670246281681 References ---------- .. [1] Coelho, Paulo M., and Carlos Pinho. "Considerations about Equations for Steady State Flow in Natural Gas Pipelines." Journal of the Brazilian Society of Mechanical Sciences and Engineering 29, no. 3 (September 2007): 262-73. doi:10.1590/S1678-58782007000300005. .. [2] Menon, E. Shashi. Gas Pipeline Hydraulics. 1st edition. Boca Raton, FL: CRC Press, 2005. ''' c3 = 1.181102362204724409448818897637795275591 # 0.03/inch or 150/127 c4 = 0.09144 c5 = 125.1060 if Q is None and L is not None and D is not None and P1 is not None and P2 is not None: return (c5*E*Ts/Ps*D**2.5*sqrt((P1**2-P2**2) /(L*SG*Zavg*Tavg*(1 + c4/D + c3*D)))) elif D is None and L is not None and Q is not None and P1 is not None and P2 is not None: return secant(_to_solve_Spitzglass_high, 0.5, args=(Q, SG, Tavg, L, P1, P2, Ts, Ps, Zavg, E)) elif P1 is None and L is not None and Q is not None and D is not None and P2 is not None: return sqrt((D**6*E**2*P2**2*Ts**2*c5**2 + D**2*L*Ps**2*Q**2*SG*Tavg*Zavg*c3 + D*L*Ps**2*Q**2*SG*Tavg*Zavg + L*Ps**2*Q**2*SG*Tavg*Zavg*c4)/(D**6*E**2*Ts**2*c5**2)) elif P2 is None and L is not None and Q is not None and D is not None and P1 is not None: return sqrt((D**6*E**2*P1**2*Ts**2*c5**2 - D**2*L*Ps**2*Q**2*SG*Tavg*Zavg*c3 - D*L*Ps**2*Q**2*SG*Tavg*Zavg - L*Ps**2*Q**2*SG*Tavg*Zavg*c4)/(D**6*E**2*Ts**2*c5**2)) elif L is None and P2 is not None and Q is not None and D is not None and P1 is not None: return (D**6*E**2*Ts**2*c5**2*(P1**2 - P2**2) /(Ps**2*Q**2*SG*Tavg*Zavg*(D**2*c3 + D + c4))) else: raise ValueError('This function solves for either flow, upstream \ pressure, downstream pressure, diameter, or length; all other inputs \ must be provided.') def _to_solve_Spitzglass_low(D, Q, SG, Tavg, L, P1, P2, Ts, Ps, Zavg, E): return Q - Spitzglass_low(SG=SG, Tavg=Tavg, L=L, D=D, P1=P1, P2=P2, Ts=Ts, Ps=Ps, Zavg=Zavg, E=E) def Spitzglass_low(SG, Tavg, L=None, D=None, P1=None, P2=None, Q=None, Ts=288.7, Ps=101325., Zavg=1.0, E=1.): r'''Calculation function for dealing with flow of a compressible gas in a pipeline with the Spitzglass (low pressure drop) formula. Can calculate any of the following, given all other inputs: * Flow rate * Upstream pressure * Downstream pressure * Diameter of pipe (numerical solution) * Length of pipe A variety of different constants and expressions have been presented for the Spitzglass (low pressure drop) formula. Here, the form as in [1]_ is used but with a more precise metric conversion from inches to m. .. math:: Q = 125.1060 E \left(\frac{T_s}{P_s}\right)\left[\frac{2(P_1 -P_2)(P_s+1210)}{L \cdot {SG} \cdot T_{avg}Z_{avg} (1 + 0.09144/D + \frac{150}{127}D)}\right]^{0.5}D^{2.5} Parameters ---------- SG : float Specific gravity of fluid with respect to air at the reference temperature and pressure `Ts` and `Ps`, [-] Tavg : float Average temperature of the fluid in the pipeline, [K] L : float, optional Length of pipe, [m] D : float, optional Diameter of pipe, [m] P1 : float, optional Inlet pressure to pipe, [Pa] P2 : float, optional Outlet pressure from pipe, [Pa] Q : float, optional Flow rate of gas through pipe at `Ts` and `Ps`, [m^3/s] Ts : float, optional Reference temperature for the specific gravity of the gas, [K] Ps : float, optional Reference pressure for the specific gravity of the gas, [Pa] Zavg : float, optional Average compressibility factor for gas, [-] E : float, optional Pipeline efficiency, a correction factor between 0 and 1 Returns ------- Q, P1, P2, D, or L : float The missing input which was solved for [base SI] Notes ----- This equation is often presented without any correction for reference conditions for specific gravity. This model is also presented in [2]_ with a leading constant of 5.69E-2, the same exponents as used here, units of mm (diameter), kPa, km (length), and flow in m^3/hour. However, it is believed to contain a typo, and gives results <1/3 of the correct values. It is also present in [2]_ in imperial form; this is believed correct, but makes a slight assumption not done in [1]_. This model is present in [3]_ without reference corrections. The 1210 constant in [1]_ is an approximation necessary for the reference correction to function without a square of the pressure difference. The GPSA version is as follows, and matches this formulation very closely: .. math:: Q = 0.821 \left[\frac{(P_1-P_2)D^5}{L \cdot {SG} (1 + 91.44/D + 0.0018D)}\right]^{0.5} The model is also shown in [4]_, with diameter in inches, length in feet, flow in MMSCFD, pressure drop in inH2O, and a rounded leading constant of 0.09; this makes its predictions several percent higher than the model here. Examples -------- >>> Spitzglass_low(D=0.154051, P1=6720.3199, P2=0, L=54.864, SG=0.6, Tavg=288.7) 0.9488775242530617 References ---------- .. [1] Coelho, Paulo M., and Carlos Pinho. "Considerations about Equations for Steady State Flow in Natural Gas Pipelines." Journal of the Brazilian Society of Mechanical Sciences and Engineering 29, no. 3 (September 2007): 262-73. doi:10.1590/S1678-58782007000300005. .. [2] Menon, E. Shashi. Gas Pipeline Hydraulics. 1st edition. Boca Raton, FL: CRC Press, 2005. .. [3] GPSA. GPSA Engineering Data Book. 13th edition. Gas Processors Suppliers Association, Tulsa, OK, 2012. .. [4] PetroWiki. "Pressure Drop Evaluation along Pipelines" Accessed September 11, 2016. http://petrowiki.org/Pressure_drop_evaluation_along_pipelines#Spitzglass_equation_2. ''' c3 = 1.181102362204724409448818897637795275591 # 0.03/inch or 150/127 c4 = 0.09144 c5 = 125.1060 if Q is None and L is not None and D is not None and P1 is not None and P2 is not None: return c5*Ts/Ps*D**2.5*E*sqrt(((P1-P2)*2*(Ps+1210.))/(L*SG*Tavg*Zavg*(1 + c4/D + c3*D))) elif D is None and L is not None and Q is not None and P1 is not None and P2 is not None: return secant(_to_solve_Spitzglass_low, 0.5, args=(Q, SG, Tavg, L, P1, P2, Ts, Ps, Zavg, E)) elif P1 is None and L is not None and Q is not None and D is not None and P2 is not None: return 0.5*(2.0*D**6*E**2*P2*Ts**2*c5**2*(Ps + 1210.0) + D**2*L*Ps**2*Q**2*SG*Tavg*Zavg*c3 + D*L*Ps**2*Q**2*SG*Tavg*Zavg + L*Ps**2*Q**2*SG*Tavg*Zavg*c4)/(D**6*E**2*Ts**2*c5**2*(Ps + 1210.0)) elif P2 is None and L is not None and Q is not None and D is not None and P1 is not None: return 0.5*(2.0*D**6*E**2*P1*Ts**2*c5**2*(Ps + 1210.0) - D**2*L*Ps**2*Q**2*SG*Tavg*Zavg*c3 - D*L*Ps**2*Q**2*SG*Tavg*Zavg - L*Ps**2*Q**2*SG*Tavg*Zavg*c4)/(D**6*E**2*Ts**2*c5**2*(Ps + 1210.0)) elif L is None and P2 is not None and Q is not None and D is not None and P1 is not None: return 2.0*D**6*E**2*Ts**2*c5**2*(P1*Ps + 1210.0*P1 - P2*Ps - 1210.0*P2)/(Ps**2*Q**2*SG*Tavg*Zavg*(D**2*c3 + D + c4)) else: raise ValueError('This function solves for either flow, upstream \ pressure, downstream pressure, diameter, or length; all other inputs \ must be provided.') def _to_solve_Oliphant(D, Q, SG, Tavg, L, P1, P2, Ts, Ps, Zavg, E): return Q - Oliphant(SG=SG, Tavg=Tavg, L=L, D=D, P1=P1, P2=P2, Ts=Ts, Ps=Ps, Zavg=Zavg, E=E) def Oliphant(SG, Tavg, L=None, D=None, P1=None, P2=None, Q=None, Ts=288.7, Ps=101325., Zavg=1.0, E=0.92): r'''Calculation function for dealing with flow of a compressible gas in a pipeline with the Oliphant formula. Can calculate any of the following, given all other inputs: * Flow rate * Upstream pressure * Downstream pressure * Diameter of pipe (numerical solution) * Length of pipe This model is a more complete conversion to metric of the Imperial version presented in [1]_. .. math:: Q = 84.5872\left(D^{2.5} + 0.20915D^3\right)\frac{T_s}{P_s}\left(\frac {P_1^2 - P_2^2}{L\cdot {SG} \cdot T_{avg}}\right)^{0.5} Parameters ---------- SG : float Specific gravity of fluid with respect to air at the reference temperature and pressure `Ts` and `Ps`, [-] Tavg : float Average temperature of the fluid in the pipeline, [K] L : float, optional Length of pipe, [m] D : float, optional Diameter of pipe, [m] P1 : float, optional Inlet pressure to pipe, [Pa] P2 : float, optional Outlet pressure from pipe, [Pa] Q : float, optional Flow rate of gas through pipe at `Ts` and `Ps`, [m^3/s] Ts : float, optional Reference temperature for the specific gravity of the gas, [K] Ps : float, optional Reference pressure for the specific gravity of the gas, [Pa] Zavg : float, optional Average compressibility factor for gas, [-] E : float, optional Pipeline efficiency, a correction factor between 0 and 1 Returns ------- Q, P1, P2, D, or L : float The missing input which was solved for [base SI] Notes ----- Recommended in [1]_ for use between vacuum and 100 psi. The model is simplified by grouping constants here; however, it is presented in the imperial unit set inches (diameter), miles (length), psi, Rankine, and MMSCFD in [1]_: .. math:: Q = 42(24)\left(D^{2.5} + \frac{D^3}{30}\right)\left(\frac{14.4}{P_s} \right)\left(\frac{T_s}{520}\right)\left[\left(\frac{0.6}{SG}\right) \left(\frac{520}{T_{avg}}\right)\left(\frac{P_1^2 - P_2^2}{L}\right) \right]^{0.5} Examples -------- >>> Oliphant(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15) 28.851535408143057 References ---------- .. [1] GPSA. GPSA Engineering Data Book. 13th edition. Gas Processors Suppliers Association, Tulsa, OK, 2012. .. [2] F. N. Oliphant, "Production of Natural Gas," Report. USGS, 1902. ''' # c1 = 42*24*Q*foot**3/day*(mile)**0.5*9/5.*(5/9.)**0.5*psi*(1/psi)*14.4/520.*0.6**0.5*520**0.5/inch**2.5 c1 = 84.587176139918568651410168968141078948974609375000 c2 = 0.2091519350460528670065940559652517549694 # 1/(30.*0.0254**0.5) if Q is None and L is not None and D is not None and P1 is not None and P2 is not None: return c1*(D**2.5 + c2*D**3)*Ts/Ps*sqrt((P1**2-P2**2)/(L*SG*Tavg)) elif D is None and L is not None and Q is not None and P1 is not None and P2 is not None: return secant(_to_solve_Oliphant, 0.5, args=(Q, SG, Tavg, L, P1, P2, Ts, Ps, Zavg, E)) elif P1 is None and L is not None and Q is not None and D is not None and P2 is not None: return sqrt(L*Ps**2*Q**2*SG*Tavg/(Ts**2*c1**2*(D**3*c2 + D**2.5)**2) + P2**2) elif P2 is None and L is not None and Q is not None and D is not None and P1 is not None: return sqrt(-L*Ps**2*Q**2*SG*Tavg/(Ts**2*c1**2*(D**3*c2 + D**2.5)**2) + P1**2) elif L is None and P2 is not None and Q is not None and D is not None and P1 is not None: return Ts**2*c1**2*(P1**2 - P2**2)*(D**3*c2 + D**2.5)**2/(Ps**2*Q**2*SG*Tavg) else: raise ValueError('This function solves for either flow, upstream \ pressure, downstream pressure, diameter, or length; all other inputs \ must be provided.') def Fritzsche(SG, Tavg, L=None, D=None, P1=None, P2=None, Q=None, Ts=288.7, Ps=101325., Zavg=1.0, E=1.0): r'''Calculation function for dealing with flow of a compressible gas in a pipeline with the Fritzsche formula. Can calculate any of the following, given all other inputs: * Flow rate * Upstream pressure * Downstream pressure * Diameter of pipe * Length of pipe A variety of different constants and expressions have been presented for the Fritzsche formula. Here, the form as in [1]_ is used but with all inputs in base SI units. .. math:: Q = 93.500 \frac{T_s}{P_s}\left(\frac{P_1^2 - P_2^2} {L\cdot {SG}^{0.8587} \cdot T_{avg}}\right)^{0.538}D^{2.69} Parameters ---------- SG : float Specific gravity of fluid with respect to air at the reference temperature and pressure `Ts` and `Ps`, [-] Tavg : float Average temperature of the fluid in the pipeline, [K] L : float, optional Length of pipe, [m] D : float, optional Diameter of pipe, [m] P1 : float, optional Inlet pressure to pipe, [Pa] P2 : float, optional Outlet pressure from pipe, [Pa] Q : float, optional Flow rate of gas through pipe at `Ts` and `Ps`, [m^3/s] Ts : float, optional Reference temperature for the specific gravity of the gas, [K] Ps : float, optional Reference pressure for the specific gravity of the gas, [Pa] Zavg : float, optional Average compressibility factor for gas, [-] E : float, optional Pipeline efficiency, a correction factor between 0 and 1 Returns ------- Q, P1, P2, D, or L : float The missing input which was solved for [base SI] Notes ----- This model is also presented in [1]_ with a leading constant of 2.827, the same exponents as used here, units of mm (diameter), kPa, km (length), and flow in m^3/hour. This model is shown in base SI units in [2]_, and with a leading constant of 94.2565, a diameter power of 2.6911, main group power of 0.5382 and a specific gravity power of 0.858. The difference is very small. Examples -------- >>> Fritzsche(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, Tavg=277.15) 39.421535157535565 References ---------- .. [1] Menon, E. Shashi. Gas Pipeline Hydraulics. 1st edition. Boca Raton, FL: CRC Press, 2005. .. [2] Coelho, Paulo M., and Carlos Pinho. "Considerations about Equations for Steady State Flow in Natural Gas Pipelines." Journal of the Brazilian Society of Mechanical Sciences and Engineering 29, no. 3 (September 2007): 262-73. doi:10.1590/S1678-58782007000300005. ''' # Rational('2.827E-3')/(3600*24)*(1000)**Rational('2.69')*(1000)**Rational('0.538')*1000/(1000**2)**Rational('0.538') c5 = 93.50009798751128188757518688244137811221 # 14135*10**(57/125)/432 c2 = 0.8587 c3 = 0.538 c4 = 2.69 if Q is None and L is not None and D is not None and P1 is not None and P2 is not None: return c5*E*(Ts/Ps)*((P1**2 - P2**2)/(SG**c2*Tavg*L*Zavg))**c3*D**c4 elif D is None and L is not None and Q is not None and P1 is not None and P2 is not None: return (Ps*Q*(SG**(-c2)*(P1**2 - P2**2)/(L*Tavg*Zavg))**(-c3)/(E*Ts*c5))**(1./c4) elif P1 is None and L is not None and Q is not None and D is not None and P2 is not None: return sqrt(L*SG**c2*Tavg*Zavg*(D**(-c4)*Ps*Q/(E*Ts*c5))**(1./c3) + P2**2) elif P2 is None and L is not None and Q is not None and D is not None and P1 is not None: return sqrt(-L*SG**c2*Tavg*Zavg*(D**(-c4)*Ps*Q/(E*Ts*c5))**(1./c3) + P1**2) elif L is None and P2 is not None and Q is not None and D is not None and P1 is not None: return SG**(-c2)*(D**(-c4)*Ps*Q/(E*Ts*c5))**(-1./c3)*(P1**2 - P2**2)/(Tavg*Zavg) else: raise ValueError('This function solves for either flow, upstream pressure, downstream pressure, diameter, or length; all other inputs must be provided.') def Muller(SG, Tavg, mu, L=None, D=None, P1=None, P2=None, Q=None, Ts=288.7, Ps=101325., Zavg=1.0, E=1.0): r'''Calculation function for dealing with flow of a compressible gas in a pipeline with the Muller formula. Can calculate any of the following, given all other inputs: * Flow rate * Upstream pressure * Downstream pressure * Diameter of pipe * Length of pipe A variety of different constants and expressions have been presented for the Muller formula. Here, the form as in [1]_ is used but with all inputs in base SI units. .. math:: Q = 15.7743\frac{T_s}{P_s}E\left(\frac{P_1^2 - P_2^2}{L \cdot Z_{avg} \cdot T_{avg}}\right)^{0.575} \left(\frac{D^{2.725}}{\mu^{0.15} SG^{0.425}}\right) Parameters ---------- SG : float Specific gravity of fluid with respect to air at the reference temperature and pressure `Ts` and `Ps`, [-] Tavg : float Average temperature of the fluid in the pipeline, [K] mu : float Average viscosity of the fluid in the pipeline, [Pa*s] L : float, optional Length of pipe, [m] D : float, optional Diameter of pipe, [m] P1 : float, optional Inlet pressure to pipe, [Pa] P2 : float, optional Outlet pressure from pipe, [Pa] Q : float, optional Flow rate of gas through pipe at `Ts` and `Ps`, [m^3/s] Ts : float, optional Reference temperature for the specific gravity of the gas, [K] Ps : float, optional Reference pressure for the specific gravity of the gas, [Pa] Zavg : float, optional Average compressibility factor for gas, [-] E : float, optional Pipeline efficiency, a correction factor between 0 and 1 Returns ------- Q, P1, P2, D, or L : float The missing input which was solved for [base SI] Notes ----- This model is presented in [1]_ with a leading constant of 0.4937, the same exponents as used here, units of inches (diameter), psi, feet (length), Rankine, pound/(foot*second) for viscosity, and 1000 ft^3/hour. This model is also presented in [2]_ in both SI and imperial form. The SI form was incorrectly converted and yields much higher flow rates. The imperial version has a leading constant of 85.7368, the same powers as used here except with rounded values of powers of viscosity (0.2609) and specific gravity (0.7391) rearranged to be inside the bracketed group; its units are inches (diameter), psi, miles (length), Rankine, pound/(foot*second) for viscosity, and ft^3/day. This model is shown in base SI units in [3]_, and with a leading constant of 15.7650, a diameter power of 2.724, main group power of 0.5747, a specific gravity power of 0.74, and a viscosity power of 0.1494. Examples -------- >>> Muller(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, mu=1E-5, ... Tavg=277.15) 60.45796698148659 References ---------- .. [1] Mohitpour, Mo, Golshan, and Allan Murray. Pipeline Design and Construction: A Practical Approach. 3rd edition. New York: Amer Soc Mechanical Engineers, 2006. .. [2] Menon, E. Shashi. Gas Pipeline Hydraulics. 1st edition. Boca Raton, FL: CRC Press, 2005. .. [3] Coelho, Paulo M., and Carlos Pinho. "Considerations about Equations for Steady State Flow in Natural Gas Pipelines." Journal of the Brazilian Society of Mechanical Sciences and Engineering 29, no. 3 (September 2007): 262-73. doi:10.1590/S1678-58782007000300005. ''' # 1000*foot**3/hour*0.4937/inch**2.725*foot**0.575*(5/9.)**0.575*9/5.*(pound/foot)**0.15*psi*(1/psi**2)**0.575 c5 = 15.77439908642077352939746374951659525108 # 5642991*196133**(17/20)*2**(3/5)*3**(11/40)*5**(7/40)/30645781250 c2 = 0.575 # main power c3 = 2.725 # D power c4 = 0.425 # SG power c1 = 0.15 # mu power if Q is None and L is not None and D is not None and P1 is not None and P2 is not None: return c5*Ts/Ps*E*((P1**2-P2**2)/Tavg/L/Zavg)**c2*D**c3/SG**c4/mu**c1 elif D is None and L is not None and Q is not None and P1 is not None and P2 is not None: return (Ps*Q*SG**c4*mu**c1*((P1**2 - P2**2)/(L*Tavg*Zavg))**(-c2)/(E*Ts*c5))**(1./c3) elif P1 is None and L is not None and Q is not None and D is not None and P2 is not None: return sqrt(L*Tavg*Zavg*(D**(-c3)*Ps*Q*SG**c4*mu**c1/(E*Ts*c5))**(1/c2) + P2**2) elif P2 is None and L is not None and Q is not None and D is not None and P1 is not None: return sqrt(-L*Tavg*Zavg*(D**(-c3)*Ps*Q*SG**c4*mu**c1/(E*Ts*c5))**(1/c2) + P1**2) elif L is None and P2 is not None and Q is not None and D is not None and P1 is not None: return (D**(-c3)*Ps*Q*SG**c4*mu**c1/(E*Ts*c5))**(-1/c2)*(P1**2 - P2**2)/(Tavg*Zavg) else: raise ValueError('This function solves for either flow, upstream pressure, downstream pressure, diameter, or length; all other inputs must be provided.') def IGT(SG, Tavg, mu, L=None, D=None, P1=None, P2=None, Q=None, Ts=288.7, Ps=101325., Zavg=1.0, E=1.0): r'''Calculation function for dealing with flow of a compressible gas in a pipeline with the IGT formula. Can calculate any of the following, given all other inputs: * Flow rate * Upstream pressure * Downstream pressure * Diameter of pipe * Length of pipe A variety of different constants and expressions have been presented for the IGT formula. Here, the form as in [1]_ is used but with all inputs in base SI units. .. math:: Q = 24.6241\frac{T_s}{P_s}E\left(\frac{P_1^2 - P_2^2}{L \cdot Z_{avg} \cdot T_{avg}}\right)^{5/9} \left(\frac{D^{8/3}}{\mu^{1/9} SG^{4/9}}\right) Parameters ---------- SG : float Specific gravity of fluid with respect to air at the reference temperature and pressure `Ts` and `Ps`, [-] Tavg : float Average temperature of the fluid in the pipeline, [K] mu : float Average viscosity of the fluid in the pipeline, [Pa*s] L : float, optional Length of pipe, [m] D : float, optional Diameter of pipe, [m] P1 : float, optional Inlet pressure to pipe, [Pa] P2 : float, optional Outlet pressure from pipe, [Pa] Q : float, optional Flow rate of gas through pipe at `Ts` and `Ps`, [m^3/s] Ts : float, optional Reference temperature for the specific gravity of the gas, [K] Ps : float, optional Reference pressure for the specific gravity of the gas, [Pa] Zavg : float, optional Average compressibility factor for gas, [-] E : float, optional Pipeline efficiency, a correction factor between 0 and 1 Returns ------- Q, P1, P2, D, or L : float The missing input which was solved for [base SI] Notes ----- This model is presented in [1]_ with a leading constant of 0.6643, the same exponents as used here, units of inches (diameter), psi, feet (length), Rankine, pound/(foot*second) for viscosity, and 1000 ft^3/hour. This model is also presented in [2]_ in both SI and imperial form. Both forms are correct. The imperial version has a leading constant of 136.9, the same powers as used here except with rounded values of powers of viscosity (0.2) and specific gravity (0.8) rearranged to be inside the bracketed group; its units are inches (diameter), psi, miles (length), Rankine, pound/(foot*second) for viscosity, and ft^3/day. This model is shown in base SI units in [3]_, and with a leading constant of 24.6145, and the same powers as used here. Examples -------- >>> IGT(D=0.340, P1=90E5, P2=20E5, L=160E3, SG=0.693, mu=1E-5, Tavg=277.15) 48.92351786788815 References ---------- .. [1] Mohitpour, Mo, Golshan, and Allan Murray. Pipeline Design and Construction: A Practical Approach. 3rd edition. New York: Amer Soc Mechanical Engineers, 2006. .. [2] Menon, E. Shashi. Gas Pipeline Hydraulics. 1st edition. Boca Raton, FL: CRC Press, 2005. .. [3] Coelho, Paulo M., and Carlos Pinho. "Considerations about Equations for Steady State Flow in Natural Gas Pipelines." Journal of the Brazilian Society of Mechanical Sciences and Engineering 29, no. 3 (September 2007): 262-73. doi:10.1590/S1678-58782007000300005. ''' # 1000*foot**3/hour*0.6643/inch**(8/3.)*foot**(5/9.)*(5/9.)**(5/9.)*9/5.*(pound/foot)**(1/9.)*psi*(1/psi**2)**(5/9.) c5 = 24.62412451461407054875301709443930350550 # 1084707*196133**(8/9)*2**(1/9)*6**(1/3)/4377968750 c2 = 5/9. # main power c3 = 8/3. # D power c4 = 4/9. # SG power c1 = 1/9. # mu power if Q is None and L is not None and D is not None and P1 is not None and P2 is not None: return c5*Ts/Ps*E*((P1**2-P2**2)/Tavg/L/Zavg)**c2*D**c3/SG**c4/mu**c1 elif D is None and L is not None and Q is not None and P1 is not None and P2 is not None: return (Ps*Q*SG**c4*mu**c1*((P1**2 - P2**2)/(L*Tavg*Zavg))**(-c2)/(E*Ts*c5))**(1./c3) elif P1 is None and L is not None and Q is not None and D is not None and P2 is not None: return sqrt(L*Tavg*Zavg*(D**(-c3)*Ps*Q*SG**c4*mu**c1/(E*Ts*c5))**(1/c2) + P2**2) elif P2 is None and L is not None and Q is not None and D is not None and P1 is not None: return sqrt(-L*Tavg*Zavg*(D**(-c3)*Ps*Q*SG**c4*mu**c1/(E*Ts*c5))**(1/c2) + P1**2) elif L is None and P2 is not None and Q is not None and D is not None and P1 is not None: return (D**(-c3)*Ps*Q*SG**c4*mu**c1/(E*Ts*c5))**(-1/c2)*(P1**2 - P2**2)/(Tavg*Zavg) else: raise ValueError('This function solves for either flow, upstream pressure, downstream pressure, diameter, or length; all other inputs must be provided.') fluids-1.0.22/fluids/friction.py0000644000175000017500000045162014302004506016067 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2019, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains correlations for single-phase friction factor in a range of geometries. It also contains several tables of reported material roughnesses, and some basic functionality showing how to calculate single-phase pressure drop. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Friction Factor Interfaces -------------------------- .. autofunction:: friction_factor .. autofunction:: friction_factor_methods .. autofunction:: friction_factor_curved .. autofunction:: friction_factor_curved_methods .. autofunction:: helical_Re_crit Pipe Friction Factor Correlations --------------------------------- .. autofunction:: ft_Crane .. autofunction:: Colebrook .. autofunction:: Clamond .. autofunction:: friction_laminar .. autofunction:: Moody .. autofunction:: Blasius .. autofunction:: von_Karman .. autofunction:: Prandtl_von_Karman_Nikuradse .. autofunction:: Alshul_1952 .. autofunction:: Wood_1966 .. autofunction:: Churchill_1973 .. autofunction:: Eck_1973 .. autofunction:: Jain_1976 .. autofunction:: Swamee_Jain_1976 .. autofunction:: Churchill_1977 .. autofunction:: Chen_1979 .. autofunction:: Round_1980 .. autofunction:: Shacham_1980 .. autofunction:: Barr_1981 .. autofunction:: Zigrang_Sylvester_1 .. autofunction:: Zigrang_Sylvester_2 .. autofunction:: Haaland .. autofunction:: Serghides_1 .. autofunction:: Serghides_2 .. autofunction:: Tsal_1989 .. autofunction:: Manadilli_1997 .. autofunction:: Romeo_2002 .. autofunction:: Sonnad_Goudar_2006 .. autofunction:: Rao_Kumar_2007 .. autofunction:: Buzzelli_2008 .. autofunction:: Avci_Karagoz_2009 .. autofunction:: Papaevangelo_2010 .. autofunction:: Brkic_2011_1 .. autofunction:: Brkic_2011_2 .. autofunction:: Fang_2011 .. autodata:: LAMINAR_TRANSITION_PIPE Curved Pipe Friction Factor Correlations ---------------------------------------- .. autofunction:: helical_laminar_fd_White .. autofunction:: helical_laminar_fd_Mori_Nakayama .. autofunction:: helical_laminar_fd_Schmidt .. autofunction:: helical_turbulent_fd_Schmidt .. autofunction:: helical_turbulent_fd_Mori_Nakayama .. autofunction:: helical_turbulent_fd_Prasad .. autofunction:: helical_turbulent_fd_Czop .. autofunction:: helical_turbulent_fd_Guo .. autofunction:: helical_turbulent_fd_Ju .. autofunction:: helical_turbulent_fd_Srinivasan .. autofunction:: helical_turbulent_fd_Mandal_Nigam .. autofunction:: helical_transition_Re_Seth_Stahel .. autofunction:: helical_transition_Re_Ito .. autofunction:: helical_transition_Re_Kubair_Kuloor .. autofunction:: helical_transition_Re_Kutateladze_Borishanskii .. autofunction:: helical_transition_Re_Schmidt .. autofunction:: helical_transition_Re_Srinivasan Other Geometry Friction Factor Correlations ------------------------------------------- .. autofunction:: friction_plate_Martin_1999 .. autofunction:: friction_plate_Martin_VDI .. autofunction:: friction_plate_Kumar .. autofunction:: friction_plate_Muley_Manglik Experimental Friction Data -------------------------- .. autodata:: oregon_smooth_data Roughness --------- .. autofunction:: material_roughness .. autofunction:: nearest_material_roughness .. autofunction:: roughness_Farshad .. autodata:: HHR_roughness Pressure Drop Calculation ------------------------- .. autofunction:: one_phase_dP .. autofunction:: one_phase_dP_gravitational .. autofunction:: one_phase_dP_dz_acceleration .. autofunction:: one_phase_dP_acceleration Utilities --------- .. autofunction:: transmission_factor """ from __future__ import division from math import sqrt, log, log10, exp, cos, sin, tan, pi, radians, isinf from fluids.constants import inch, g from fluids.numerics import secant, lambertw from fluids.core import Dean, Reynolds __all__ = ['friction_factor', 'friction_factor_methods', 'friction_factor_curved', 'helical_Re_crit', 'friction_factor_curved_methods', 'Colebrook', 'Clamond', 'friction_laminar', 'one_phase_dP', 'one_phase_dP_gravitational', 'one_phase_dP_dz_acceleration', 'one_phase_dP_acceleration', 'transmission_factor', 'material_roughness', 'nearest_material_roughness', 'roughness_Farshad', '_Farshad_roughness', '_roughness', 'HHR_roughness', 'Moody', 'Alshul_1952', 'Wood_1966', 'Churchill_1973', 'Eck_1973', 'Jain_1976', 'Swamee_Jain_1976', 'Churchill_1977', 'Chen_1979', 'Round_1980', 'Shacham_1980', 'Barr_1981', 'Zigrang_Sylvester_1', 'Zigrang_Sylvester_2', 'Haaland', 'Serghides_1', 'Serghides_2', 'Tsal_1989', 'Manadilli_1997', 'Romeo_2002', 'Sonnad_Goudar_2006', 'Rao_Kumar_2007', 'Buzzelli_2008', 'Avci_Karagoz_2009', 'Papaevangelo_2010', 'Brkic_2011_1', 'Brkic_2011_2', 'Fang_2011', 'Blasius', 'von_Karman', 'Prandtl_von_Karman_Nikuradse', 'ft_Crane', 'helical_laminar_fd_White', 'helical_laminar_fd_Mori_Nakayama', 'helical_laminar_fd_Schmidt', 'helical_turbulent_fd_Schmidt', 'helical_turbulent_fd_Mori_Nakayama', 'helical_turbulent_fd_Prasad', 'helical_turbulent_fd_Czop', 'helical_turbulent_fd_Guo', 'helical_turbulent_fd_Ju', 'helical_turbulent_fd_Srinivasan', 'helical_turbulent_fd_Mandal_Nigam', 'helical_transition_Re_Seth_Stahel', 'helical_transition_Re_Ito', 'helical_transition_Re_Kubair_Kuloor', 'helical_transition_Re_Kutateladze_Borishanskii', 'helical_transition_Re_Schmidt', 'helical_transition_Re_Srinivasan', 'LAMINAR_TRANSITION_PIPE', 'oregon_smooth_data', 'friction_plate_Martin_1999', 'friction_plate_Martin_VDI', 'friction_plate_Kumar', 'friction_plate_Muley_Manglik'] fuzzy_match_fun = None def fuzzy_match(name, strings): global fuzzy_match_fun if fuzzy_match_fun is not None: return fuzzy_match_fun(name, strings) try: from fuzzywuzzy import process, fuzz fuzzy_match_fun = lambda name, strings: process.extract(name, strings, limit=10)[0][0] # extractOne is faster but less reliable #fuzzy_match_fun = lambda name, strings: process.extractOne(name, strings, scorer=fuzz.partial_ratio)[0] except ImportError: # pragma: no cover import difflib fuzzy_match_fun = lambda name, strings: difflib.get_close_matches(name, strings, n=1, cutoff=0)[0] return fuzzy_match_fun(name, strings) LAMINAR_TRANSITION_PIPE = 2040. '''Believed to be the most accurate result to date. Accurate to +/- 10. Avila, Kerstin, David Moxey, Alberto de Lozar, Marc Avila, Dwight Barkley, and Björn Hof. "The Onset of Turbulence in Pipe Flow." Science 333, no. 6039 (July 8, 2011): 192-196. doi:10.1126/science.1203223. ''' oregon_Res = [11.21, 20.22, 29.28, 43.19, 57.73, 64.58, 86.05, 113.3, 135.3, 157.5, 179.4, 206.4, 228.0, 270.9, 315.2, 358.9, 402.9, 450.2, 522.5, 583.1, 671.8, 789.8, 891.0, 1013.0, 1197.0, 1300.0, 1390.0, 1669.0, 1994.0, 2227.0, 2554.0, 2868.0, 2903.0, 2926.0, 2955.0, 2991.0, 2997.0, 3047.0, 3080.0, 3264.0, 3980.0, 4835.0, 5959.0, 8162.0, 10900.0, 13650.0, 18990.0, 29430.0, 40850.0, 59220.0, 84760.0, 120000.0, 176000.0, 237700.0, 298200.0, 467800.0, 587500.0, 824200.0, 1050000.0] oregon_fd_smooth = [5.537, 3.492, 2.329, 1.523, 1.173, 0.9863, 0.7826, 0.5709, 0.4815, 0.4182, 0.3655, 0.3237, 0.2884, 0.2433, 0.2077, 0.1834, 0.1656, 0.1475, 0.1245, 0.1126, 0.09917, 0.08501, 0.07722, 0.06707, 0.0588, 0.05328, 0.04815, 0.04304, 0.03739, 0.03405, 0.03091, 0.02804, 0.03182, 0.03846, 0.03363, 0.04124, 0.035, 0.03875, 0.04285, 0.0426, 0.03995, 0.03797, 0.0361, 0.03364, 0.03088, 0.02903, 0.0267, 0.02386, 0.02086, 0.02, 0.01805, 0.01686, 0.01594, 0.01511, 0.01462, 0.01365, 0.01313, 0.01244, 0.01198] oregon_smooth_data = (oregon_Res, oregon_fd_smooth) '''Holds a tuple of experimental results from the smooth pipe flow experiments presented in McKEON, B. J., C. J. SWANSON, M. V. ZAGAROLA, R. J. DONNELLY, and A. J. SMITS. "Friction Factors for Smooth Pipe Flow." Journal of Fluid Mechanics 511 (July 1, 2004): 41-44. doi:10.1017/S0022112004009796. ''' def friction_laminar(Re): r'''Calculates Darcy friction factor for laminar flow, as shown in [1]_ or anywhere else. .. math:: f_d = \frac{64}{Re} Parameters ---------- Re : float Reynolds number, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- For round pipes, this valid for :math:`Re \approx< 2040`. Results in [2]_ show that this theoretical solution calculates too low of friction factors from Re = 10 and up, with an average deviation of 4%. Examples -------- >>> friction_laminar(128) 0.5 References ---------- .. [1] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. .. [2] McKEON, B. J., C. J. SWANSON, M. V. ZAGAROLA, R. J. DONNELLY, and A. J. SMITS. "Friction Factors for Smooth Pipe Flow." Journal of Fluid Mechanics 511 (July 1, 2004): 41-44. doi:10.1017/S0022112004009796. ''' return 64./Re def Blasius(Re): r'''Calculates Darcy friction factor according to the Blasius formulation, originally presented in [1]_ and described more recently in [2]_. .. math:: f_d=\frac{0.3164}{Re^{0.25}} Parameters ---------- Re : float Reynolds number, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Developed for 3000 < Re < 200000. Examples -------- >>> Blasius(10000) 0.03164 References ---------- .. [1] Blasius, H."Das Aehnlichkeitsgesetz bei Reibungsvorgängen in Flüssigkeiten." In Mitteilungen über Forschungsarbeiten auf dem Gebiete des Ingenieurwesens, edited by Verein deutscher Ingenieure, 1-41. Berlin, Heidelberg: Springer Berlin Heidelberg, 1913. http://rd.springer.com/chapter/10.1007/978-3-662-02239-9_1. .. [2] Hager, W. H. "Blasius: A Life in Research and Education." In Experiments in Fluids, 566–571, 2003. ''' return 0.3164/sqrt(sqrt(Re)) def Colebrook(Re, eD, tol=None): r'''Calculates Darcy friction factor using the Colebrook equation originally published in [1]_. Normally, this function uses an exact solution to the Colebrook equation, derived with a CAS. A numerical can also be used. .. math:: \frac{1}{\sqrt{f}}=-2\log_{10}\left(\frac{\epsilon/D}{3.7} +\frac{2.51}{\text{Re}\sqrt{f}}\right) Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] tol : float, optional None for analytical solution (default); user specified value to use the numerical solution; 0 to use `mpmath` and provide a bit-correct exact solution to the maximum fidelity of the system's `float`; -1 to apply the Clamond solution where appropriate for greater speed (Re > 10), [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- The solution is as follows: .. math:: f_d = \frac{\ln(10)^2\cdot {3.7}^2\cdot{2.51}^2} {\left(\ln(10)\epsilon/D\cdot\text{Re} - 2\cdot 2.51\cdot 3.7\cdot \text{lambertW}\left[\ln(\sqrt{10})\sqrt{ 10^{\left(\frac{\epsilon \text{Re}}{2.51\cdot 3.7D}\right)} \cdot \text{Re}^2/{2.51}^2}\right]\right)} Some effort to optimize this function has been made. The `lambertw` function from scipy is used, and is defined to solve the specific function: .. math:: y = x\exp(x) \text{lambertW}(y) = x This is relatively slow despite its explicit form as it uses the mathematical function `lambertw` which is expensive to compute. For high relative roughness and Reynolds numbers, an OverflowError can be encountered in the solution of this equation. The numerical solution is then used. The numerical solution provides values which are generally within an rtol of 1E-12 to the analytical solution; however, due to the different rounding order, it is possible for them to be as different as rtol 1E-5 or higher. The 1E-5 accuracy regime has been tested and confirmed numerically for hundreds of thousand of points within the region 1E-12 < Re < 1E12 and 0 < eD < 0.1. The numerical solution attempts the secant method using `scipy`'s `newton` solver, and in the event of nonconvergence, attempts the `fsolve` solver as well. An initial guess is provided via the `Clamond` function. The numerical and analytical solution take similar amounts of time; the `mpmath` solution used when `tol=0` is approximately 45 times slower. This function takes approximately 8 us normally. Examples -------- >>> Colebrook(1E5, 1E-4) 0.018513866077471 References ---------- .. [1] Colebrook, C F."Turbulent Flow in Pipes, with Particular Reference to the Transition Region Between the Smooth and Rough Pipe Laws." Journal of the ICE 11, no. 4 (February 1, 1939): 133-156. doi:10.1680/ijoti.1939.13150. ''' if tol == -1: if Re > 10.0: return Clamond(Re, eD, False) else: tol = None elif tol == 0: # from sympy import LambertW, Rational, log, sqrt # Re = Rational(Re) # eD_Re = Rational(eD)*Re # sub = 1/Rational('6.3001')*10**(1/Rational('9.287')*eD_Re)*Re*Re # lambert_term = LambertW(log(sqrt(10))*sqrt(sub)) # den = log(10)*eD_Re - 18.574*lambert_term # return float(log(10)**2*Rational('3.7')**2*Rational('2.51')**2/(den*den)) try: from mpmath import mpf, log, mp, sqrt as sqrtmp from mpmath import lambertw as mp_lambertw except: raise ImportError('For exact solutions, the `mpmath` library is ' 'required') mp.dps = 50 Re = mpf(Re) eD_Re = mpf(eD)*Re sub = 1/mpf('6.3001')*10**(1/mpf('9.287')*eD_Re)*Re*Re lambert_term = mp_lambertw(log(sqrtmp(10))*sqrtmp(sub)) den = log(10)*eD_Re - 18.574*lambert_term return float(log(10)**2*mpf('3.7')**2*mpf('2.51')**2/(den*den)) if tol is None: try: eD_Re = eD*Re # 9.287 = 2.51*3.7; 6.3001 = 2.51**2 # xn = 1/6.3001 = 0.15872763924382155 # 1/9.287 = 0.10767739851405189 sub = 0.15872763924382155*10.0**(0.10767739851405189*eD_Re)*Re*Re if isinf(sub): # Can't continue, need numerical approach raise OverflowError # 1.15129... = log(sqrt(10)) lambert_term = float(lambertw(1.151292546497022950546806896454654633998870849609375*sqrt(sub)).real) # log(10) = 2.302585...; 2*2.51*3.7 = 18.574 # 457.28... = log(10)**2*3.7**2*2.51**2 den = 2.30258509299404590109361379290930926799774169921875*eD_Re - 18.574*lambert_term return 457.28006463294371997108100913465023040771484375/(den*den) except OverflowError: pass # Either user-specified tolerance, or an error in the analytical solution if tol is None: tol = 1e-12 try: fd_guess = Clamond(Re, eD) except ValueError: fd_guess = Blasius(Re) def err(x): # Convert the newton search domain to always positive f_12_inv = 1.0/sqrt(abs(x)) # 0.27027027027027023 = 1/3.7 return f_12_inv + 2.0*log10(eD*0.27027027027027023 + 2.51/Re*f_12_inv) fd = abs(secant(err, fd_guess, xtol=tol)) return fd def Clamond(Re, eD, fast=False): r"""Calculates Darcy friction factor using a solution accurate to almost machine precision. Recommended very strongly. For details of the algorithm, see [1]_. Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] fast : bool, optional If true, performs only one iteration, which gives roughly half the number of decimals of accuracy, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- This is a highly optimized function, 4 times faster than the solution using the LambertW function, and faster than many other approximations which are much less accurate. The code used here is only slightly modified than that in [1]_, for further performance improvements. For 10 < Re < 1E12, and 0 < eD < 0.01, this equation has been confirmed numerically to provide a solution to the Colebrook equation accurate to an rtol of 1E-9 or better - the same level of accuracy as the analytical solution to the Colebrook equation due to floating point precision. Comparing this to the numerical solution of the Colebrook equation, identical values are given accurate to an rtol of 1E-9 for 10 < Re < 1E100, and 0 < eD < 1 and beyond. However, for values of Re under 10, different answers from the `Colebrook` equation appear and then quickly a ValueError is raised. Examples -------- >>> Clamond(1E5, 1E-4) 0.01851386607747165 References ---------- .. [1] Clamond, Didier. "Efficient Resolution of the Colebrook Equation." Industrial & Engineering Chemistry Research 48, no. 7 (April 1, 2009): 3665-71. doi:10.1021/ie801626g. http://math.unice.fr/%7Edidierc/DidPublis/ICR_2009.pdf """ X1 = eD*Re*0.1239681863354175460160858261654858382699 # (log(10)/18.574).evalf(40) X2 = log(Re) - 0.7793974884556819406441139701653776731705 # log(log(10)/5.02).evalf(40) F = X2 - 0.2 X1F = X1 + F X1F1 = 1. + X1F E = (log(X1F) - 0.2)/(X1F1) F = F - (X1F1 + 0.5*E)*E*(X1F)/(X1F1 + E*(1. + (1.0/3.0)*E)) if not fast: X1F = X1 + F X1F1 = 1. + X1F E = (log(X1F) + F - X2)/(X1F1) b = (X1F1 + E*(1. + 1.0/3.0*E)) F = b/(b*F - ((X1F1 + 0.5*E)*E*(X1F))) return 1.325474527619599502640416597148504422899*(F*F) # ((0.5*log(10))**2).evalf(40) return 1.325474527619599502640416597148504422899/(F*F) # ((0.5*log(10))**2).evalf(40) def Moody(Re, eD): r'''Calculates Darcy friction factor using the method in Moody (1947) as shown in [1]_ and originally in [2]_. .. math:: f_f = 1.375\times 10^{-3}\left[1+\left(2\times10^4\frac{\epsilon}{D} + \frac{10^6}{Re}\right)^{1/3}\right] Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is Re >= 4E3 and Re <= 1E8; eD >= 0 < 0.01. Examples -------- >>> Moody(1E5, 1E-4) 0.01809185666808665 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Moody, L.F.: An approximate formula for pipe friction factors. Trans. Am. Soc. Mech. Eng. 69,1005-1006 (1947) ''' return 4*(1.375E-3*(1 + (2E4*eD + 1E6/Re)**(1/3.))) def Alshul_1952(Re, eD): r'''Calculates Darcy friction factor using the method in Alshul (1952) as shown in [1]_. .. math:: f_d = 0.11\left( \frac{68}{Re} + \frac{\epsilon}{D}\right)^{0.25} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- No range of validity specified for this equation. Examples -------- >>> Alshul_1952(1E5, 1E-4) 0.018382997825686878 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 ''' return 0.11*sqrt(sqrt(68/Re + eD)) def Wood_1966(Re, eD): r'''Calculates Darcy friction factor using the method in Wood (1966) [2]_ as shown in [1]_. .. math:: f_d = 0.094(\frac{\epsilon}{D})^{0.225} + 0.53(\frac{\epsilon}{D}) + 88(\frac{\epsilon}{D})^{0.4}Re^{-A_1} .. math:: A_1 = 1.62(\frac{\epsilon}{D})^{0.134} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 4E3 <= Re <= 5E7; 1E-5 <= eD <= 4E-2. Examples -------- >>> Wood_1966(1E5, 1E-4) 0.021587570560090762 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Wood, D.J.: An Explicit Friction Factor Relationship, vol. 60. Civil Engineering American Society of Civil Engineers (1966) ''' A1 = 1.62*eD**0.134 return 0.094*eD**0.225 + 0.53*eD +88*eD**0.4*Re**-A1 def Churchill_1973(Re, eD): r'''Calculates Darcy friction factor using the method in Churchill (1973) [2]_ as shown in [1]_ .. math:: \frac{1}{\sqrt{f_d}} = -2\log_{10}\left[\frac{\epsilon}{3.7D} + (\frac{7}{Re})^{0.9}\right] Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- No range of validity specified for this equation. Examples -------- >>> Churchill_1973(1E5, 1E-4) 0.01846708694482294 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Churchill, Stuart W. "Empirical Expressions for the Shear Stress in Turbulent Flow in Commercial Pipe." AIChE Journal 19, no. 2 (March 1, 1973): 375-76. doi:10.1002/aic.690190228. ''' return (-2*log10(eD/3.7 + (7./Re)**0.9))**-2 def Eck_1973(Re, eD): r'''Calculates Darcy friction factor using the method in Eck (1973) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_d}} = -2\log_{10}\left[\frac{\epsilon}{3.715D} + \frac{15}{Re}\right] Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- No range of validity specified for this equation. Examples -------- >>> Eck_1973(1E5, 1E-4) 0.01775666973488564 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Eck, B.: Technische Stromungslehre. Springer, New York (1973) ''' return (-2*log10(eD/3.715 + 15/Re))**-2 def Jain_1976(Re, eD): r'''Calculates Darcy friction factor using the method in Jain (1976) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_f}} = 2.28 - 4\log_{10}\left[ \frac{\epsilon}{D} + \left(\frac{29.843}{Re}\right)^{0.9}\right] Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 5E3 <= Re <= 1E7; 4E-5 <= eD <= 5E-2. Examples -------- >>> Jain_1976(1E5, 1E-4) 0.018436560312693327 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Jain, Akalank K."Accurate Explicit Equation for Friction Factor." Journal of the Hydraulics Division 102, no. 5 (May 1976): 674-77. ''' ff = (2.28-4*log10(eD+(29.843/Re)**0.9))**-2 return 4*ff def Swamee_Jain_1976(Re, eD): r'''Calculates Darcy friction factor using the method in Swamee and Jain (1976) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_f}} = -4\log_{10}\left[\left(\frac{6.97}{Re}\right)^{0.9} + (\frac{\epsilon}{3.7D})\right] Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 5E3 <= Re <= 1E8; 1E-6 <= eD <= 5E-2. Examples -------- >>> Swamee_Jain_1976(1E5, 1E-4) 0.018452424431901808 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Swamee, Prabhata K., and Akalank K. Jain."Explicit Equations for Pipe-Flow Problems." Journal of the Hydraulics Division 102, no. 5 (May 1976): 657-664. ''' ff = (-4*log10((6.97/Re)**0.9 + eD/3.7))**-2 return 4*ff def Churchill_1977(Re, eD): r'''Calculates Darcy friction factor using the method in Churchill and (1977) [2]_ as shown in [1]_. .. math:: f_f = 2\left[(\frac{8}{Re})^{12} + (A_2 + A_3)^{-1.5}\right]^{1/12} .. math:: A_2 = \left\{2.457\ln\left[(\frac{7}{Re})^{0.9} + 0.27\frac{\epsilon}{D}\right]\right\}^{16} .. math:: A_3 = \left( \frac{37530}{Re}\right)^{16} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- No range of validity specified for this equation. Examples -------- >>> Churchill_1977(1E5, 1E-4) 0.018462624566280075 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Churchill, S.W.: Friction factor equation spans all fluid flow regimes. Chem. Eng. J. 91, 91-92 (1977) ''' A3 = (37530/Re)**16 A2 = (2.457*log((7./Re)**0.9 + 0.27*eD))**16 ff = 2*((8/Re)**12 + 1/(A2+A3)**1.5)**(1/12.) return 4*ff def Chen_1979(Re, eD): r'''Calculates Darcy friction factor using the method in Chen (1979) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_f}} = -4\log_{10}\left[\frac{\epsilon}{3.7065D} -\frac{5.0452}{Re}\log_{10} A_4\right] .. math:: A_4 = \frac{(\epsilon/D)^{1.1098}}{2.8257} + \left(\frac{7.149}{Re}\right)^{0.8981} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 4E3 <= Re <= 4E8; 1E-7 <= eD <= 5E-2. Examples -------- >>> Chen_1979(1E5, 1E-4) 0.018552817507472126 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Chen, Ning Hsing. "An Explicit Equation for Friction Factor in Pipe." Industrial & Engineering Chemistry Fundamentals 18, no. 3 (August 1, 1979): 296-97. doi:10.1021/i160071a019. ''' A4 = eD**1.1098/2.8257 + (7.149/Re)**0.8981 ff = (-4*log10(eD/3.7065 - 5.0452/Re*log10(A4)))**-2 return 4*ff def Round_1980(Re, eD): r'''Calculates Darcy friction factor using the method in Round (1980) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_f}} = -3.6\log_{10}\left[\frac{Re}{0.135Re \frac{\epsilon}{D}+6.5}\right] Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 4E3 <= Re <= 4E8; 0 <= eD <= 5E-2. Examples -------- >>> Round_1980(1E5, 1E-4) 0.01831475391244354 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Round, G. F."An Explicit Approximation for the Friction Factor-Reynolds Number Relation for Rough and Smooth Pipes." The Canadian Journal of Chemical Engineering 58, no. 1 (February 1, 1980): 122-23. doi:10.1002/cjce.5450580119. ''' ff = (-3.6*log10(Re/(0.135*Re*eD+6.5)))**-2 return 4*ff def Shacham_1980(Re, eD): r'''Calculates Darcy friction factor using the method in Shacham (1980) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_f}} = -4\log_{10}\left[\frac{\epsilon}{3.7D} - \frac{5.02}{Re} \log_{10}\left(\frac{\epsilon}{3.7D} + \frac{14.5}{Re}\right)\right] Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 4E3 <= Re <= 4E8 Examples -------- >>> Shacham_1980(1E5, 1E-4) 0.01860641215097828 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Shacham, M. "Comments on: 'An Explicit Equation for Friction Factor in Pipe.'" Industrial & Engineering Chemistry Fundamentals 19, no. 2 (May 1, 1980): 228-228. doi:10.1021/i160074a019. ''' ff = (-4*log10(eD/3.7 - 5.02/Re*log10(eD/3.7 + 14.5/Re)))**-2 return 4*ff def Barr_1981(Re, eD): r'''Calculates Darcy friction factor using the method in Barr (1981) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_d}} = -2\log_{10}\left\{\frac{\epsilon}{3.7D} + \frac{4.518\log_{10}(\frac{Re}{7})}{Re\left[1+\frac{Re^{0.52}}{29} \left(\frac{\epsilon}{D}\right)^{0.7}\right]}\right\} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- No range of validity specified for this equation. Examples -------- >>> Barr_1981(1E5, 1E-4) 0.01849836032779929 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Barr, Dih, and Colebrook White."Technical Note. Solutions Of The Colebrook-White Function For Resistance To Uniform Turbulent Flow." ICE Proceedings 71, no. 2 (January 6, 1981): 529-35. doi:10.1680/iicep.1981.1895. ''' fd = (-2*log10(eD/3.7 + 4.518*log10(Re/7.)/(Re*(1+Re**0.52/29*eD**0.7))))**-2 return fd def Zigrang_Sylvester_1(Re, eD): r'''Calculates Darcy friction factor using the method in Zigrang and Sylvester (1982) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_f}} = -4\log_{10}\left[\frac{\epsilon}{3.7D} - \frac{5.02}{Re}\log_{10} A_5\right] A_5 = \frac{\epsilon}{3.7D} + \frac{13}{Re} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 4E3 <= Re <= 1E8; 4E-5 <= eD <= 5E-2. Examples -------- >>> Zigrang_Sylvester_1(1E5, 1E-4) 0.018646892425980794 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Zigrang, D. J., and N. D. Sylvester."Explicit Approximations to the Solution of Colebrook's Friction Factor Equation." AIChE Journal 28, no. 3 (May 1, 1982): 514-15. doi:10.1002/aic.690280323. ''' A5 = eD/3.7 + 13/Re ff = (-4*log10(eD/3.7 - 5.02/Re*log10(A5)))**-2 return 4*ff def Zigrang_Sylvester_2(Re, eD): r'''Calculates Darcy friction factor using the second method in Zigrang and Sylvester (1982) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_f}} = -4\log_{10}\left[\frac{\epsilon}{3.7D} - \frac{5.02}{Re}\log_{10} A_6\right] .. math:: A_6 = \frac{\epsilon}{3.7D} - \frac{5.02}{Re}\log_{10} A_5 .. math:: A_5 = \frac{\epsilon}{3.7D} + \frac{13}{Re} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 4E3 <= Re <= 1E8; 4E-5 <= eD <= 5E-2 Examples -------- >>> Zigrang_Sylvester_2(1E5, 1E-4) 0.01850021312358548 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Zigrang, D. J., and N. D. Sylvester."Explicit Approximations to the Solution of Colebrook's Friction Factor Equation." AIChE Journal 28, no. 3 (May 1, 1982): 514-15. doi:10.1002/aic.690280323. ''' A5 = eD/3.7 + 13/Re A6 = eD/3.7 - 5.02/Re*log10(A5) ff = (-4*log10(eD/3.7 - 5.02/Re*log10(A6)))**-2 return 4*ff def Haaland(Re, eD): r'''Calculates Darcy friction factor using the method in Haaland (1983) [2]_ as shown in [1]_. .. math:: f_f = \left(-1.8\log_{10}\left[\left(\frac{\epsilon/D}{3.7} \right)^{1.11} + \frac{6.9}{Re}\right]\right)^{-2} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 4E3 <= Re <= 1E8; 1E-6 <= eD <= 5E-2 Examples -------- >>> Haaland(1E5, 1E-4) 0.018265053014793857 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Haaland, S. E."Simple and Explicit Formulas for the Friction Factor in Turbulent Pipe Flow." Journal of Fluids Engineering 105, no. 1 (March 1, 1983): 89-90. doi:10.1115/1.3240948. ''' ff = (-3.6*log10(6.9/Re +(eD/3.7)**1.11))**-2 return 4*ff def Serghides_1(Re, eD): r'''Calculates Darcy friction factor using the method in Serghides (1984) [2]_ as shown in [1]_. .. math:: f=\left[A-\frac{(B-A)^2}{C-2B+A}\right]^{-2} .. math:: A=-2\log_{10}\left[\frac{\epsilon/D}{3.7}+\frac{12}{Re}\right] .. math:: B=-2\log_{10}\left[\frac{\epsilon/D}{3.7}+\frac{2.51A}{Re}\right] .. math:: C=-2\log_{10}\left[\frac{\epsilon/D}{3.7}+\frac{2.51B}{Re}\right] Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- No range of validity specified for this equation. Examples -------- >>> Serghides_1(1E5, 1E-4) 0.01851358983180063 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Serghides T.K (1984)."Estimate friction factor accurately" Chemical Engineering, Vol. 91(5), pp. 63-64. ''' A = -2*log10(eD/3.7 + 12/Re) B = -2*log10(eD/3.7 + 2.51*A/Re) C = -2*log10(eD/3.7 + 2.51*B/Re) return (A - (B-A)**2/(C-2*B + A))**-2 def Serghides_2(Re, eD): r'''Calculates Darcy friction factor using the method in Serghides (1984) [2]_ as shown in [1]_. .. math:: f_d = \left[ 4.781 - \frac{(A - 4.781)^2} {B-2A+4.781}\right]^{-2} .. math:: A=-2\log_{10}\left[\frac{\epsilon/D}{3.7}+\frac{12}{Re}\right] .. math:: B=-2\log_{10}\left[\frac{\epsilon/D}{3.7}+\frac{2.51A}{Re}\right] Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- No range of validity specified for this equation. Examples -------- >>> Serghides_2(1E5, 1E-4) 0.018486377560664482 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Serghides T.K (1984)."Estimate friction factor accurately" Chemical Engineering, Vol. 91(5), pp. 63-64. ''' A = -2*log10(eD/3.7 + 12/Re) B = -2*log10(eD/3.7 + 2.51*A/Re) return (4.781 - (A - 4.781)**2/(B - 2*A + 4.781))**-2 def Tsal_1989(Re, eD): r'''Calculates Darcy friction factor using the method in Tsal (1989) [2]_ as shown in [1]_. .. math:: A = 0.11(\frac{68}{Re} + \frac{\epsilon}{D})^{0.25} if :math:`A >= 0.018` then `fd = A`; if :math:`A < 0.018` then :math:`fd = 0.0028 + 0.85 A`. Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 4E3 <= Re <= 1E8; 0 <= eD <= 5E-2 Examples -------- >>> Tsal_1989(1E5, 1E-4) 0.018382997825686878 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Tsal, R.J.: Altshul-Tsal friction factor equation. Heat-Piping-Air Cond. 8, 30-45 (1989) ''' A = 0.11*sqrt(sqrt(68/Re + eD)) if A >= 0.018: return A else: return 0.0028 + 0.85*A def Manadilli_1997(Re, eD): r'''Calculates Darcy friction factor using the method in Manadilli (1997) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_d}} = -2\log_{10}\left[\frac{\epsilon}{3.7D} + \frac{95}{Re^{0.983}} - \frac{96.82}{Re}\right] Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 5.245E3 <= Re <= 1E8; 0 <= eD <= 5E-2 Examples -------- >>> Manadilli_1997(1E5, 1E-4) 0.01856964649724108 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Manadilli, G.: Replace implicit equations with signomial functions. Chem. Eng. 104, 129 (1997) ''' return (-2*log10(eD/3.7 + 95/Re**0.983 - 96.82/Re))**-2 def Romeo_2002(Re, eD): r'''Calculates Darcy friction factor using the method in Romeo (2002) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_d}} = -2\log_{10}\left\{\frac{\epsilon}{3.7065D}\times \frac{5.0272}{Re}\times\log_{10}\left[\frac{\epsilon}{3.827D} - \frac{4.567}{Re}\times\log_{10}\left(\frac{\epsilon}{7.7918D}^{0.9924} + \left(\frac{5.3326}{208.815+Re}\right)^{0.9345}\right)\right]\right\} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 3E3 <= Re <= 1.5E8; 0 <= eD <= 5E-2 Examples -------- >>> Romeo_2002(1E5, 1E-4) 0.018530291219676177 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Romeo, Eva, Carlos Royo, and Antonio Monzon."Improved Explicit Equations for Estimation of the Friction Factor in Rough and Smooth Pipes." Chemical Engineering Journal 86, no. 3 (April 28, 2002): 369-74. doi:10.1016/S1385-8947(01)00254-6. ''' fd = (-2*log10(eD/3.7065-5.0272/Re*log10(eD/3.827-4.567/Re*log10((eD/7.7918)**0.9924+(5.3326/(208.815+Re))**0.9345))))**-2 return fd def Sonnad_Goudar_2006(Re, eD): r'''Calculates Darcy friction factor using the method in Sonnad and Goudar (2006) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_d}} = 0.8686\ln\left(\frac{0.4587Re}{S^{S/(S+1)}}\right) .. math:: S = 0.1240\times\frac{\epsilon}{D}\times Re + \ln(0.4587Re) Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 4E3 <= Re <= 1E8; 1E-6 <= eD <= 5E-2 Examples -------- >>> Sonnad_Goudar_2006(1E5, 1E-4) 0.0185971269898162 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Travis, Quentin B., and Larry W. Mays."Relationship between Hazen-William and Colebrook-White Roughness Values." Journal of Hydraulic Engineering 133, no. 11 (November 2007): 1270-73. doi:10.1061/(ASCE)0733-9429(2007)133:11(1270). ''' S = 0.124*eD*Re + log(0.4587*Re) return (.8686*log(.4587*Re/S**(S/(S+1))))**-2 def Rao_Kumar_2007(Re, eD): r'''Calculates Darcy friction factor using the method in Rao and Kumar (2007) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_d}} = 2\log_{10}\left(\frac{(2\frac{\epsilon}{D})^{-1}} {\left(\frac{0.444 + 0.135Re}{Re}\right)\beta}\right) .. math:: \beta = 1 - 0.55\exp(-0.33\ln\left[\frac{Re}{6.5}\right]^2) Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- No range of validity specified for this equation. This equation is fit to original experimental friction factor data. Accordingly, this equation should not be used unless appropriate consideration is given. Examples -------- >>> Rao_Kumar_2007(1E5, 1E-4) 0.01197759334600925 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Rao, A.R., Kumar, B.: Friction factor for turbulent pipe flow. Division of Mechanical Sciences, Civil Engineering Indian Institute of Science Bangalore, India ID Code 9587 (2007) ''' beta = 1 - 0.55*exp(-0.33*(log(Re/6.5))**2) return (2*log10((2*eD)**-1/beta/((0.444+0.135*Re)/Re)))**-2 def Buzzelli_2008(Re, eD): r'''Calculates Darcy friction factor using the method in Buzzelli (2008) [2]_ as shown in [1]_. .. math:: \frac{1}{\sqrt{f_d}} = B_1 - \left[\frac{B_1 +2\log_{10}(\frac{B_2}{Re})} {1 + \frac{2.18}{B_2}}\right] .. math:: B_1 = \frac{0.774\ln(Re)-1.41}{1+1.32\sqrt{\frac{\epsilon}{D}}} .. math:: B_2 = \frac{\epsilon}{3.7D}Re+2.51\times B_1 Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- No range of validity specified for this equation. Examples -------- >>> Buzzelli_2008(1E5, 1E-4) 0.018513948401365277 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Buzzelli, D.: Calculating friction in one step. Mach. Des. 80, 54-55 (2008) ''' B1 = (.774*log(Re)-1.41)/(1.0 + 1.32*sqrt(eD)) B2 = eD/3.7*Re + 2.51*B1 return (B1- (B1+2*log10(B2/Re))/(1+2.18/B2))**-2 def Avci_Karagoz_2009(Re, eD): r'''Calculates Darcy friction factor using the method in Avci and Karagoz (2009) [2]_ as shown in [1]_. .. math:: f_D = \frac{6.4} {\left\{\ln(Re) - \ln\left[ 1 + 0.01Re\frac{\epsilon}{D}\left(1 + 10(\frac{\epsilon}{D})^{0.5} \right)\right]\right\}^{2.4}} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- No range of validity specified for this equation. Examples -------- >>> Avci_Karagoz_2009(1E5, 1E-4) 0.01857058061066499 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Avci, Atakan, and Irfan Karagoz."A Novel Explicit Equation for Friction Factor in Smooth and Rough Pipes." Journal of Fluids Engineering 131, no. 6 (2009): 061203. doi:10.1115/1.3129132. ''' return 6.4*(log(Re) - log(1 + 0.01*Re*eD*(1+10*sqrt(eD))))**-2.4 def Papaevangelo_2010(Re, eD): r'''Calculates Darcy friction factor using the method in Papaevangelo (2010) [2]_ as shown in [1]_. .. math:: f_D = \frac{0.2479 - 0.0000947(7-\ln Re)^4}{\left[\log_{10}\left (\frac{\epsilon}{3.615D} + \frac{7.366}{Re^{0.9142}}\right)\right]^2} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 1E4 <= Re <= 1E7; 1E-5 <= eD <= 1E-3 Examples -------- >>> Papaevangelo_2010(1E5, 1E-4) 0.015685600818488177 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Papaevangelou, G., Evangelides, C., Tzimopoulos, C.: A New Explicit Relation for the Friction Factor Coefficient in the Darcy-Weisbach Equation, pp. 166-172. Protection and Restoration of the Environment Corfu, Greece: University of Ioannina Greece and Stevens Institute of Technology New Jersey (2010) ''' return (0.2479-0.0000947*(7-log(Re))**4)/(log10(eD/3.615 + 7.366/Re**0.9142))**2 def Brkic_2011_1(Re, eD): r'''Calculates Darcy friction factor using the method in Brkic (2011) [2]_ as shown in [1]_. .. math:: f_d = [-2\log_{10}(10^{-0.4343\beta} + \frac{\epsilon}{3.71D})]^{-2} .. math:: \beta = \ln \frac{Re}{1.816\ln\left(\frac{1.1Re}{\ln(1+1.1Re)}\right)} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- No range of validity specified for this equation. Examples -------- >>> Brkic_2011_1(1E5, 1E-4) 0.01812455874141297 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Brkic, Dejan."Review of Explicit Approximations to the Colebrook Relation for Flow Friction." Journal of Petroleum Science and Engineering 77, no. 1 (April 2011): 34-48. doi:10.1016/j.petrol.2011.02.006. ''' beta = log(Re/(1.816*log(1.1*Re/log(1+1.1*Re)))) return (-2*log10(10**(-0.4343*beta)+eD/3.71))**-2 def Brkic_2011_2(Re, eD): r'''Calculates Darcy friction factor using the method in Brkic (2011) [2]_ as shown in [1]_. .. math:: f_d = [-2\log_{10}(\frac{2.18\beta}{Re}+ \frac{\epsilon}{3.71D})]^{-2} .. math:: \beta = \ln \frac{Re}{1.816\ln\left(\frac{1.1Re}{\ln(1+1.1Re)}\right)} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- No range of validity specified for this equation. Examples -------- >>> Brkic_2011_2(1E5, 1E-4) 0.018619745410688716 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Brkic, Dejan."Review of Explicit Approximations to the Colebrook Relation for Flow Friction." Journal of Petroleum Science and Engineering 77, no. 1 (April 2011): 34-48. doi:10.1016/j.petrol.2011.02.006. ''' beta = log(Re/(1.816*log(1.1*Re/log(1+1.1*Re)))) return (-2*log10(2.18*beta/Re + eD/3.71))**-2 def Fang_2011(Re, eD): r'''Calculates Darcy friction factor using the method in Fang (2011) [2]_ as shown in [1]_. .. math:: f_D = 1.613\left\{\ln\left[0.234\frac{\epsilon}{D}^{1.1007} - \frac{60.525}{Re^{1.1105}} + \frac{56.291}{Re^{1.0712}}\right]\right\}^{-2} Parameters ---------- Re : float Reynolds number, [-] eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Range is 3E3 <= Re <= 1E8; 0 <= eD <= 5E-2 Examples -------- >>> Fang_2011(1E5, 1E-4) 0.018481390682985432 References ---------- .. [1] Winning, H. and T. Coole. "Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes." Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7 .. [2] Fang, Xiande, Yu Xu, and Zhanru Zhou."New Correlations of Single-Phase Friction Factor for Turbulent Pipe Flow and Evaluation of Existing Single-Phase Friction Factor Correlations." Nuclear Engineering and Design, The International Conference on Structural Mechanics in Reactor Technology (SMiRT19) Special Section, 241, no. 3 (March 2011): 897-902. doi:10.1016/j.nucengdes.2010.12.019. ''' return log(0.234*eD**1.1007 - 60.525/Re**1.1105 + 56.291/Re**1.0712)**-2*1.613 def von_Karman(eD): r'''Calculates Darcy friction factor for rough pipes at infinite Reynolds number from the von Karman equation (as given in [1]_ and [2]_: .. math:: \frac{1}{\sqrt{f_d}} = -2 \log_{10} \left(\frac{\epsilon/D}{3.7}\right) Parameters ---------- eD : float Relative roughness, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- This case does not actually occur; Reynolds number is always finite. It is normally applied as a "limiting" value when a pipe's roughness is so high it has a friction factor curve effectively independent of Reynods number. Examples -------- >>> von_Karman(1E-4) 0.01197365149564789 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] McGovern, Jim. "Technical Note: Friction Factor Diagrams for Pipe Flow." Paper, October 3, 2011. http://arrow.dit.ie/engschmecart/28. ''' x = log10(eD/3.71) return 0.25/(x*x) def Prandtl_von_Karman_Nikuradse(Re): r'''Calculates Darcy friction factor for smooth pipes as a function of Reynolds number from the Prandtl-von Karman Nikuradse equation as given in [1]_ and [2]_: .. math:: \frac{1}{\sqrt{f}} = -2\log_{10}\left(\frac{2.51}{Re\sqrt{f}}\right) Parameters ---------- Re : float Reynolds number, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- This equation is often stated as follows; the correct constant is not 0.8, but 2log10(2.51) or approximately 0.7993474: .. math:: \frac{1}{\sqrt{f}}\approx 2\log_{10}(\text{Re}\sqrt{f})-0.8 This function is calculable for all Reynolds numbers between 1E151 and 1E-151. It is solved with the LambertW function from SciPy. The solution is: .. math:: f_d = \frac{\frac{1}{4}\log_{10}^2}{\left(\text{lambertW}\left(\frac{ \lb(10)Re}{2(2.51)}\right)\right)^2} Examples -------- >>> Prandtl_von_Karman_Nikuradse(1E7) 0.008102669430 References ---------- .. [1] Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012. .. [2] McGovern, Jim. "Technical Note: Friction Factor Diagrams for Pipe Flow." Paper, October 3, 2011. http://arrow.dit.ie/engschmecart/28. ''' # Good 1E150 to 1E-150 c1 = 1.151292546497022842008995727342182103801 # log(10)/2 c2 = 1.325474527619599502640416597148504422899 # log(10)**2/4 return c2/float(lambertw((c1*Re)/2.51).real)**2 # Values still in table at least to 2013 Crane_fts_nominal_Ds = [.015, .02, .025, .032, .04, .05, .065, .08, .1, .125, .15, .2, .25, .35, .4, .55, .6, .9] Crane_fts_Ds = [0.01576, 0.02096, 0.02664, 0.03508, 0.04094, 0.05248, 0.06268, 0.07792, 0.10226, 0.1282, 0.154, 0.20274, 0.25446, 0.33334, 0.381, 0.53994, 0.57504, 0.8759] Crane_fts = [.026, .024, .022, .021, .02, .019, .018, .017, .016, .015, .015, .014, .013, .013, .012, .012, .011, .011] def ft_Crane(D): r'''Calculates the Crane fully turbulent Darcy friction factor for flow in commercial pipe, as used in the Crane formulas for loss coefficients in various fittings. Note that this is **not generally applicable to loss due to friction in pipes**, as it does not take into account the roughness of various pipe materials. But for fittings in any type of pipe, this is the friction factor to use in the Crane [1]_ method to get their loss coefficients. Parameters ---------- D : float Pipe inner diameter, [m] Returns ------- fd : float Darcy Crane friction factor for fully turbulent flow, [-] Notes ----- There is confusion and uncertainty regarding the friction factor table given in Crane TP 410M [1]_. This function does not help: it implements a new way to obtain Crane friction factors, so that it can better be based in theory and give more precision (not accuracy) and trend better with diameters not tabulated in [1]_. The data in [1]_ was digitized, and nominal pipe diameters were converted to actual pipe diameters. An objective function was sought which would produce the exact same values as in [1]_ when rounded to the same decimal place. One was found fairly easily by using the standard `Colebrook` friction factor formula, and using the diameter-dependent roughness values calculated with the `roughness_Farshad` method for bare Carbon steel. A diameter-dependent Reynolds number was required to match the values; the :math:`\rho V/\mu` term is set to 7.5E6. The formula given in [1]_ is: .. math:: f_T = \frac{0.25}{\left[\log_{10}\left(\frac{\epsilon/D}{3.7}\right) \right]^2} However, this function does not match the rounded values in [1]_ well and it is not very clear which roughness to use. Using both the value for new commercial steel (.05 mm) or a diameter-dependent value (`roughness_Farshad`), values were found to be too high and too low respectively. That function is based in theory - the limit of the `Colebrook` equation when `Re` goes to infinity - but in the end real pipe flow is not infinity, and so a large error occurs from that use. The following plot shows all these options, and that the method implemented here matches perfectly the rounded values in [1]_. .. plot:: plots/ft_Crane_plot.py Examples -------- >>> ft_Crane(.1) 0.01628845962146481 Explicitly spelling out the function (note the exact same answer is not returned; it is accurate to 5-8 decimals however, for increased speed): >>> Di = 0.1 >>> Colebrook(7.5E6*Di, eD=roughness_Farshad(ID='Carbon steel, bare', D=Di)/Di) 0.0162884254312 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' fast = True if D < 1E-2: fast = False return Clamond(7.5E6*D, 3.4126825352925e-5*D**-1.0112, fast) fmethods = {'Moody': (4000.0, 100000000.0, 0.0, 1.0), 'Alshul_1952': (None, None, None, None), 'Wood_1966': (4000.0, 50000000.0, 1e-05, 0.04), 'Churchill_1973': (None, None, None, None), 'Eck_1973': (None, None, None, None), 'Jain_1976': (5000.0, 10000000.0, 4e-05, 0.05), 'Swamee_Jain_1976': (5000.0, 100000000.0, 1e-06, 0.05), 'Churchill_1977': (None, None, None, None), 'Chen_1979': (4000.0, 400000000.0, 1e-07, 0.05), 'Round_1980': (4000.0, 400000000.0, 0.0, 0.05), 'Shacham_1980': (4000.0, 400000000.0, None, None), 'Barr_1981': (None, None, None, None), 'Zigrang_Sylvester_1': (4000.0, 100000000.0, 4e-05, 0.05), 'Zigrang_Sylvester_2': (4000.0, 100000000.0, 4e-05, 0.05), 'Haaland': (4000.0, 100000000.0, 1e-06, 0.05), 'Serghides_1': (None, None, None, None), 'Serghides_2': (None, None, None, None), 'Tsal_1989': (4000.0, 100000000.0, 0.0, 0.05), 'Manadilli_1997': (5245.0, 100000000.0, 0.0, 0.05), 'Romeo_2002': (3000.0, 150000000.0, 0.0, 0.05), 'Sonnad_Goudar_2006': (4000.0, 100000000.0, 1e-06, 0.05), 'Rao_Kumar_2007': (None, None, None, None), 'Buzzelli_2008': (None, None, None, None), 'Avci_Karagoz_2009': (None, None, None, None), 'Papaevangelo_2010': (10000.0, 10000000.0, 1e-05, 0.001), 'Brkic_2011_1': (None, None, None, None), 'Brkic_2011_2': (None, None, None, None), 'Fang_2011': (3000.0, 100000000.0, 0.0, 0.05), 'Clamond': (0, None, 0.0, None), 'Colebrook': (0, None, 0.0, None)} def friction_factor_methods(Re, eD=0.0, check_ranges=True): r'''Returns a list of correlation names for calculating friction factor for internal pipe flow. Examples -------- >>> len(friction_factor_methods(Re=1E5, eD=1E-4)) 30 Parameters ---------- Re : float Reynolds number, [-] eD : float, optional Relative roughness of the wall, [-] check_ranges : bool, optional Whether to filter the list for correlations which claim to be valid for the given values, [-] Returns ------- methods : list List of methods which claim to be valid for the range of `Re` and `eD` given, [-] ''' if check_ranges: if Re < LAMINAR_TRANSITION_PIPE: return ['laminar'] methods = [] for n, (Re_min, Re_max, eD_min, eD_max) in fmethods.items(): if Re_min is not None and Re < Re_min: continue if Re_max is not None and Re > Re_max: continue if eD_min is not None and eD < eD_min: continue if eD_max is not None and eD > eD_max: continue methods.append(n) return methods else: return list(fmethods.keys()) + ['laminar'] def friction_factor(Re, eD=0.0, Method='Clamond', Darcy=True): r'''Calculates friction factor. Uses a specified method, or automatically picks one from the dictionary of available methods. 29 approximations are available as well as the direct solution, described in the table below. The default is to use the exact solution. For Re < 2040, [1]_ the laminar solution is always returned, regardless of selected method. Examples -------- >>> friction_factor(Re=1E5, eD=1E-4) 0.01851386607747165 >>> friction_factor(Re=2.9E5, eD=1E-5, Method='Serghides_2') 0.0146199041093456 Parameters ---------- Re : float Reynolds number, [-] eD : float, optional Relative roughness of the wall, [-] Returns ------- f : float Friction factor, [-] Other Parameters ---------------- Method : string, optional A string of the function name to use Darcy : bool, optional If False, will return fanning friction factor, 1/4 of the Darcy value See Also -------- Colebrook Clamond Notes ----- A table of the supposed limits of each correlation is as follows. Note that the spaces in the method names are placed by underscores in the actual function names and when provided as the `Method` argument. The default method is likely to be sufficient. +-------------------+------+------+----------------------+----------------------+ |Nice name |Re min|Re max|:math:`\epsilon/D` Min|:math:`\epsilon/D` Max| +===================+======+======+======================+======================+ |Clamond |0 |None |0 |None | +-------------------+------+------+----------------------+----------------------+ |Rao Kumar 2007 |None |None |None |None | +-------------------+------+------+----------------------+----------------------+ |Eck 1973 |None |None |None |None | +-------------------+------+------+----------------------+----------------------+ |Jain 1976 |5000 |1.0E+7|4.0E-5 |0.05 | +-------------------+------+------+----------------------+----------------------+ |Avci Karagoz 2009 |None |None |None |None | +-------------------+------+------+----------------------+----------------------+ |Swamee Jain 1976 |5000 |1.0E+8|1.0E-6 |0.05 | +-------------------+------+------+----------------------+----------------------+ |Churchill 1977 |None |None |None |None | +-------------------+------+------+----------------------+----------------------+ |Brkic 2011 1 |None |None |None |None | +-------------------+------+------+----------------------+----------------------+ |Chen 1979 |4000 |4.0E+8|1.0E-7 |0.05 | +-------------------+------+------+----------------------+----------------------+ |Round 1980 |4000 |4.0E+8|0 |0.05 | +-------------------+------+------+----------------------+----------------------+ |Papaevangelo 2010 |10000 |1.0E+7|1.0E-5 |0.001 | +-------------------+------+------+----------------------+----------------------+ |Fang 2011 |3000 |1.0E+8|0 |0.05 | +-------------------+------+------+----------------------+----------------------+ |Shacham 1980 |4000 |4.0E+8|None |None | +-------------------+------+------+----------------------+----------------------+ |Barr 1981 |None |None |None |None | +-------------------+------+------+----------------------+----------------------+ |Churchill 1973 |None |None |None |None | +-------------------+------+------+----------------------+----------------------+ |Moody |4000 |1.0E+8|0 |1 | +-------------------+------+------+----------------------+----------------------+ |Zigrang Sylvester 1|4000 |1.0E+8|4.0E-5 |0.05 | +-------------------+------+------+----------------------+----------------------+ |Zigrang Sylvester 2|4000 |1.0E+8|4.0E-5 |0.05 | +-------------------+------+------+----------------------+----------------------+ |Buzzelli 2008 |None |None |None |None | +-------------------+------+------+----------------------+----------------------+ |Haaland |4000 |1.0E+8|1.0E-6 |0.05 | +-------------------+------+------+----------------------+----------------------+ |Serghides 1 |None |None |None |None | +-------------------+------+------+----------------------+----------------------+ |Serghides 2 |None |None |None |None | +-------------------+------+------+----------------------+----------------------+ |Tsal 1989 |4000 |1.0E+8|0 |0.05 | +-------------------+------+------+----------------------+----------------------+ |Alshul 1952 |None |None |None |None | +-------------------+------+------+----------------------+----------------------+ |Wood 1966 |4000 |5.0E+7|1.0E-5 |0.04 | +-------------------+------+------+----------------------+----------------------+ |Manadilli 1997 |5245 |1.0E+8|0 |0.05 | +-------------------+------+------+----------------------+----------------------+ |Brkic 2011 2 |None |None |None |None | +-------------------+------+------+----------------------+----------------------+ |Romeo 2002 |3000 |1.5E+8|0 |0.05 | +-------------------+------+------+----------------------+----------------------+ |Sonnad Goudar 2006 |4000 |1.0E+8|1.0E-6 |0.05 | +-------------------+------+------+----------------------+----------------------+ References ---------- .. [1] Avila, Kerstin, David Moxey, Alberto de Lozar, Marc Avila, Dwight Barkley, and Björn Hof. "The Onset of Turbulence in Pipe Flow." Science 333, no. 6039 (July 8, 2011): 192-96. doi:10.1126/science.1203223. ''' if Method is None: Method = 'Clamond' if Re < LAMINAR_TRANSITION_PIPE or Method == 'laminar': f = friction_laminar(Re) elif Method == "Clamond": f = Clamond(Re, eD, False) elif Method == "Colebrook": f = Colebrook(Re, eD) elif Method == "Moody": f = Moody(Re, eD) elif Method == "Alshul_1952": f = Alshul_1952(Re, eD) elif Method == "Wood_1966": f = Wood_1966(Re, eD) elif Method == "Churchill_1973": f = Churchill_1973(Re, eD) elif Method == "Eck_1973": f = Eck_1973(Re, eD) elif Method == "Jain_1976": f = Jain_1976(Re, eD) elif Method == "Swamee_Jain_1976": f = Swamee_Jain_1976(Re, eD) elif Method == "Churchill_1977": f = Churchill_1977(Re, eD) elif Method == "Chen_1979": f = Chen_1979(Re, eD) elif Method == "Round_1980": f = Round_1980(Re, eD) elif Method == "Shacham_1980": f = Shacham_1980(Re, eD) elif Method == "Barr_1981": f = Barr_1981(Re, eD) elif Method == "Zigrang_Sylvester_1": f = Zigrang_Sylvester_1(Re, eD) elif Method == "Zigrang_Sylvester_2": f = Zigrang_Sylvester_2(Re, eD) elif Method == "Haaland": f = Haaland(Re, eD) elif Method == "Serghides_1": f = Serghides_1(Re, eD) elif Method == "Serghides_2": f = Serghides_2(Re, eD) elif Method == "Tsal_1989": f = Tsal_1989(Re, eD) elif Method == "Manadilli_1997": f = Manadilli_1997(Re, eD) elif Method == "Romeo_2002": f = Romeo_2002(Re, eD) elif Method == "Sonnad_Goudar_2006": f = Sonnad_Goudar_2006(Re, eD) elif Method == "Rao_Kumar_2007": f = Rao_Kumar_2007(Re, eD) elif Method == "Buzzelli_2008": f = Buzzelli_2008(Re, eD) elif Method == "Avci_Karagoz_2009": f = Avci_Karagoz_2009(Re, eD) elif Method == "Papaevangelo_2010": f = Papaevangelo_2010(Re, eD) elif Method == "Brkic_2011_1": f = Brkic_2011_1(Re, eD) elif Method == "Brkic_2011_2": f = Brkic_2011_2(Re, eD) elif Method == "Fang_2011": f = Fang_2011(Re, eD) else: raise ValueError("Method not recognized") if not Darcy: f *= 0.25 return f def helical_laminar_fd_White(Re, Di, Dc): r'''Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under laminar conditions, using the method of White [1]_ as shown in [2]_. .. math:: f_{curved} = f_{\text{straight,laminar}} \left[1 - \left(1-\left( \frac{11.6}{De}\right)^{0.45}\right)^{\frac{1}{0.45}}\right]^{-1} Parameters ---------- Re : float Reynolds number with `D=Di`, [-] Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Returns ------- fd : float Darcy friction factor for a curved pipe [-] Notes ----- The range of validity of this equation is :math:`11.6< De < 2000`, :math:`3.878\times 10^{-4}>> helical_laminar_fd_White(250, .02, .1) 0.4063281817830202 References ---------- .. [1] White, C. M. "Streamline Flow through Curved Pipes." Proceedings of the Royal Society of London A: Mathematical, Physical and Engineering Sciences 123, no. 792 (April 6, 1929): 645-63. doi:10.1098/rspa.1929.0089. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. .. [3] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' De = Dean(Re=Re, Di=Di, D=Dc) fd = friction_laminar(Re) if De < 11.6: return fd return fd/(1. - (1. - (11.6/De)**0.45)**(1./0.45)) # 1/.45 sometimes said to be 2.2 def helical_laminar_fd_Mori_Nakayama(Re, Di, Dc): r'''Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under laminar conditions, using the method of Mori and Nakayama [1]_ as shown in [2]_ and [3]_. .. math:: f_{curved} = f_{\text{straight,laminar}} \left(\frac{0.108\sqrt{De}} {1-3.253De^{-0.5}}\right) Parameters ---------- Re : float Reynolds number with `D=Di`, [-] Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Returns ------- fd : float Darcy friction factor for a curved pipe [-] Notes ----- The range of validity of this equation is :math:`100 < De < 2000`. The form of the equation means it yields nonsense results for De < 42.328; under that, the equation is modified to return the value at De=42.328, which is a multiplier of 1.405296 on the straight pipe friction factor. Examples -------- >>> helical_laminar_fd_Mori_Nakayama(250, .02, .1) 0.42224582857795434 References ---------- .. [1] Mori, Yasuo, and Wataru Nakayama. "Study on Forced Convective Heat Transfer in Curved Pipes : 1st Report, Laminar Region." Transactions of the Japan Society of Mechanical Engineers 30, no. 216 (1964): 977-88. doi:10.1299/kikai1938.30.977. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. .. [3] Pimenta, T. A., and J. B. L. M. Campos. "Friction Losses of Newtonian and Non-Newtonian Fluids Flowing in Laminar Regime in a Helical Coil." Experimental Thermal and Fluid Science 36 (January 2012): 194-204. doi:10.1016/j.expthermflusci.2011.09.013. ''' De = Dean(Re=Re, Di=Di, D=Dc) fd = friction_laminar(Re) if De < 42.328036: return fd*1.405296 return fd*(0.108*sqrt(De))/(1. - 3.253*1.0/sqrt(De)) def helical_laminar_fd_Schmidt(Re, Di, Dc): r'''Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under laminar conditions, using the method of Schmidt [1]_ as shown in [2]_ and [3]_. .. math:: f_{curved} = f_{\text{straight,laminar}} \left[1 + 0.14\left(\frac{D_i} {D_c}\right)^{0.97}Re^{\left[1 - 0.644\left(\frac{D_i}{D_c} \right)^{0.312}\right]}\right] Parameters ---------- Re : float Reynolds number with `D=Di`, [-] Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Returns ------- fd : float Darcy friction factor for a curved pipe [-] Notes ----- The range of validity of this equation is specified only for Re, :math:`100 < Re < Re_{critical}`. The form of the equation is such that as the curvature becomes negligible, straight tube result is obtained. Examples -------- >>> helical_laminar_fd_Schmidt(250, .02, .1) 0.47460725672835236 References ---------- .. [1] Schmidt, Eckehard F. "Wärmeübergang Und Druckverlust in Rohrschlangen." Chemie Ingenieur Technik 39, no. 13 (July 10, 1967): 781-89. doi:10.1002/cite.330391302. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. .. [3] Pimenta, T. A., and J. B. L. M. Campos. "Friction Losses of Newtonian and Non-Newtonian Fluids Flowing in Laminar Regime in a Helical Coil." Experimental Thermal and Fluid Science 36 (January 2012): 194-204. doi:10.1016/j.expthermflusci.2011.09.013. ''' fd = friction_laminar(Re) D_ratio = Di/Dc return fd*(1. + 0.14*D_ratio**0.97*Re**(1. - 0.644*D_ratio**0.312)) def helical_turbulent_fd_Srinivasan(Re, Di, Dc): r'''Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Srinivasan [1]_, as shown in [2]_ and [3]_. .. math:: f_d = \frac{0.336}{{\left[Re\sqrt{\frac{D_i}{D_c}}\right]^{0.2}}} Parameters ---------- Re : float Reynolds number with `D=Di`, [-] Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Returns ------- fd : float Darcy friction factor for a curved pipe [-] Notes ----- Valid for 0.01 < Di/Dc < 0.15, with no Reynolds number criteria given in [2]_ or [3]_. [2]_ recommends this method, using the transition criteria of Srinivasan as well. [3]_ recommends using either this method or the Ito method. This method did not make it into the popular review articles on curved flow. Examples -------- >>> helical_turbulent_fd_Srinivasan(1E4, 0.01, .02) 0.0570745212117107 References ---------- .. [1] Srinivasan, PS, SS Nandapurkar, and FA Holland. "Friction Factors for Coils." TRANSACTIONS OF THE INSTITUTION OF CHEMICAL ENGINEERS AND THE CHEMICAL ENGINEER 48, no. 4-6 (1970): T156 .. [2] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. .. [3] Rohsenow, Warren and James Hartnett and Young Cho. Handbook of Heat Transfer, 3E. New York: McGraw-Hill, 1998. ''' De = Dean(Re=Re, Di=Di, D=Dc) return 0.336*De**-0.2 def helical_turbulent_fd_Schmidt(Re, Di, Dc, roughness=0): r'''Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Schmidt [1]_, also shown in [2]_. For :math:`Re_{crit} < Re < 2.2\times 10^{4}`: .. math:: f_{curv} = f_{\text{str,turb}} \left[1 + \frac{2.88\times10^{4}}{Re} \left(\frac{D_i}{D_c}\right)^{0.62}\right] For :math:`2.2\times 10^{4} < Re < 1.5\times10^{5}`: .. math:: f_{curv} = f_{\text{str,turb}} \left[1 + 0.0823\left(1 + \frac{D_i} {D_c}\right)\left(\frac{D_i}{D_c}\right)^{0.53} Re^{0.25}\right] Parameters ---------- Re : float Reynolds number with `D=Di`, [-] Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] roughness : float, optional Roughness of pipe wall [m] Returns ------- fd : float Darcy friction factor for a curved pipe [-] Notes ----- Valid from the transition to turbulent flow up to :math:`Re=1.5\times 10^{5}`. At very low curvatures, converges on the straight pipe result. Examples -------- >>> helical_turbulent_fd_Schmidt(1E4, 0.01, .02) 0.08875550767040916 References ---------- .. [1] Schmidt, Eckehard F. "Wärmeübergang Und Druckverlust in Rohrschlangen." Chemie Ingenieur Technik 39, no. 13 (July 10, 1967): 781-89. doi:10.1002/cite.330391302. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. ''' fd = friction_factor(Re=Re, eD=roughness/Di) if Re < 2.2E4: return fd*(1. + 2.88E4/Re*(Di/Dc)**0.62) else: return fd*(1. + 0.0823*(1. + Di/Dc)*(Di/Dc)**0.53*sqrt(sqrt(Re))) def helical_turbulent_fd_Mori_Nakayama(Re, Di, Dc): r'''Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Mori and Nakayama [1]_, also shown in [2]_ and [3]_. .. math:: f_{curv} = 0.3\left(\frac{D_i}{D_c}\right)^{0.5} \left[Re\left(\frac{D_i}{D_c}\right)^2\right]^{-0.2}\left[1 + 0.112\left[Re\left(\frac{D_i}{D_c}\right)^2\right]^{-0.2}\right] Parameters ---------- Re : float Reynolds number with `D=Di`, [-] Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Returns ------- fd : float Darcy friction factor for a curved pipe [-] Notes ----- Valid from the transition to turbulent flow up to :math:`Re=6.5\times 10^{5}\sqrt{D_i/D_c}`. Does not use a straight pipe correlation, and so will not converge on the straight pipe result at very low curvature. Examples -------- >>> helical_turbulent_fd_Mori_Nakayama(1E4, 0.01, .2) 0.037311802071379796 References ---------- .. [1] Mori, Yasuo, and Wataru Nakayama. "Study of Forced Convective Heat Transfer in Curved Pipes (2nd Report, Turbulent Region)." International Journal of Heat and Mass Transfer 10, no. 1 (January 1, 1967): 37-59. doi:10.1016/0017-9310(67)90182-2. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. .. [3] Ali, Shaukat. "Pressure Drop Correlations for Flow through Regular Helical Coil Tubes." Fluid Dynamics Research 28, no. 4 (April 2001): 295-310. doi:10.1016/S0169-5983(00)00034-4. ''' term = (Re*(Di/Dc)**2)**-0.2 return 0.3*1.0/sqrt(Dc/Di)*term*(1. + 0.112*term) def helical_turbulent_fd_Prasad(Re, Di, Dc,roughness=0): r'''Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Prasad [1]_, also shown in [2]_. .. math:: f_{curv} = f_{\text{str,turb}}\left[1 + 0.18\left[Re\left(\frac{D_i} {D_c}\right)^2\right]^{0.25}\right] Parameters ---------- Re : float Reynolds number with `D=Di`, [-] Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] roughness : float, optional Roughness of pipe wall [m] Returns ------- fd : float Darcy friction factor for a curved pipe [-] Notes ----- No range of validity was specified, but the experiments used were with coil/tube diameter ratios of 17.24 and 34.9, hot water in the tube, and :math:`1780 < Re < 59500`. At very low curvatures, converges on the straight pipe result. Examples -------- >>> helical_turbulent_fd_Prasad(1E4, 0.01, .2) 0.043313098093994626 References ---------- .. [1] Prasad, B. V. S. S. S., D. H. Das, and A. K. Prabhakar. "Pressure Drop, Heat Transfer and Performance of a Helically Coiled Tubular Exchanger." Heat Recovery Systems and CHP 9, no. 3 (January 1, 1989): 249-56. doi:10.1016/0890-4332(89)90008-2. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. ''' fd = friction_factor(Re=Re, eD=roughness/Di) return fd*(1. + 0.18*sqrt(sqrt(Re*(Di/Dc)**2))) def helical_turbulent_fd_Czop (Re, Di, Dc): r'''Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Czop [1]_, also shown in [2]_. .. math:: f_{curv} = 0.096De^{-0.1517} Parameters ---------- Re : float Reynolds number with `D=Di`, [-] Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Returns ------- fd : float Darcy friction factor for a curved pipe [-] Notes ----- Valid for :math:`2\times10^4 < Re < 1.5\times10^{5}`. Does not use a straight pipe correlation, and so will not converge on the straight pipe result at very low curvature. Examples -------- >>> helical_turbulent_fd_Czop(1E4, 0.01, .2) 0.02979575250574106 References ---------- .. [1] Czop, V., D. Barbier, and S. Dong. "Pressure Drop, Void Fraction and Shear Stress Measurements in an Adiabatic Two-Phase Flow in a Coiled Tube." Nuclear Engineering and Design 149, no. 1 (September 1, 1994): 323-33. doi:10.1016/0029-5493(94)90298-4. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. ''' De = Dean(Re=Re, Di=Di, D=Dc) return 0.096*De**-0.1517 def helical_turbulent_fd_Guo(Re, Di, Dc): r'''Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Guo [1]_, also shown in [2]_. .. math:: f_{curv} = 0.638Re^{-0.15}\left(\frac{D_i}{D_c}\right)^{0.51} Parameters ---------- Re : float Reynolds number with `D=Di`, [-] Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Returns ------- fd : float Darcy friction factor for a curved pipe [-] Notes ----- Valid for :math:`2\times10^4 < Re < 1.5\times10^{5}`. Does not use a straight pipe correlation, and so will not converge on the straight pipe result at very low curvature. Examples -------- >>> helical_turbulent_fd_Guo(2E5, 0.01, .2) 0.022189161013253147 References ---------- .. [1] Guo, Liejin, Ziping Feng, and Xuejun Chen. "An Experimental Investigation of the Frictional Pressure Drop of Steam–water Two-Phase Flow in Helical Coils." International Journal of Heat and Mass Transfer 44, no. 14 (July 2001): 2601-10. doi:10.1016/S0017-9310(00)00312-4. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. ''' return 0.638*Re**-0.15*(Di/Dc)**0.51 def helical_turbulent_fd_Ju(Re, Di, Dc,roughness=0.0): r'''Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Ju et al. [1]_, also shown in [2]_. .. math:: f_{curv} = f_{\text{str,turb}}\left[1 +0.11Re^{0.23}\left(\frac{D_i} {D_c}\right)^{0.14}\right] Parameters ---------- Re : float Reynolds number with `D=Di`, [-] Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] roughness : float, optional Roughness of pipe wall [m] Returns ------- fd : float Darcy friction factor for a curved pipe [-] Notes ----- Claimed to be valid for all turbulent conditions with :math:`De>11.6`. At very low curvatures, converges on the straight pipe result. Examples -------- >>> helical_turbulent_fd_Ju(1E4, 0.01, .2) 0.04945959480770937 References ---------- .. [1] Ju, Huaiming, Zhiyong Huang, Yuanhui Xu, Bing Duan, and Yu Yu. "Hydraulic Performance of Small Bending Radius Helical Coil-Pipe." Journal of Nuclear Science and Technology 38, no. 10 (October 1, 2001): 826-31. doi:10.1080/18811248.2001.9715102. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. ''' fd = friction_factor(Re=Re, eD=roughness/Di) return fd*(1. + 0.11*Re**0.23*(Di/Dc)**0.14) def helical_turbulent_fd_Mandal_Nigam(Re, Di, Dc, roughness=0): r'''Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Mandal and Nigam [1]_, also shown in [2]_. .. math:: f_{curv} = f_{\text{str,turb}} [1 + 0.03{De}^{0.27}] Parameters ---------- Re : float Reynolds number with `D=Di`, [-] Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] roughness : float, optional Roughness of pipe wall [m] Returns ------- fd : float Darcy friction factor for a curved pipe [-] Notes ----- Claimed to be valid for all turbulent conditions with :math:`2500 < De < 15000`. At very low curvatures, converges on the straight pipe result. Examples -------- >>> helical_turbulent_fd_Mandal_Nigam(1E4, 0.01, .2) 0.03831658117115902 References ---------- .. [1] Mandal, Monisha Mridha, and K. D. P. Nigam. "Experimental Study on Pressure Drop and Heat Transfer of Turbulent Flow in Tube in Tube Helical Heat Exchanger." Industrial & Engineering Chemistry Research 48, no. 20 (October 21, 2009): 9318-24. doi:10.1021/ie9002393. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. ''' De = Dean(Re=Re, Di=Di, D=Dc) fd = friction_factor(Re=Re, eD=roughness/Di) return fd*(1. + 0.03*De**0.27) def helical_transition_Re_Seth_Stahel(Di, Dc): r'''Calculates the transition Reynolds number for flow inside a curved or helical coil between laminar and turbulent flow, using the method of [1]_. .. math:: Re_{crit} = 1900\left[1 + 8 \sqrt{\frac{D_i}{D_c}}\right] Parameters ---------- Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Returns ------- Re_crit : float Transition Reynolds number between laminar and turbulent [-] Notes ----- At very low curvatures, converges to Re = 1900. Examples -------- >>> helical_transition_Re_Seth_Stahel(1, 7.) 7645.0599897402535 References ---------- .. [1] Seth, K. K., and E. P. Stahel. "HEAT TRANSFER FROM HELICAL COILS IMMERSED IN AGITATED VESSELS." Industrial & Engineering Chemistry 61, no. 6 (June 1, 1969): 39-49. doi:10.1021/ie50714a007. ''' return 1900.*(1. + 8.*sqrt(Di/Dc)) def helical_transition_Re_Ito(Di, Dc): r'''Calculates the transition Reynolds number for flow inside a curved or helical coil between laminar and turbulent flow, using the method of [1]_, as shown in [2]_ and in [3]_. .. math:: Re_{crit} = 20000 \left(\frac{D_i}{D_c}\right)^{0.32} Parameters ---------- Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Returns ------- Re_crit : float Transition Reynolds number between laminar and turbulent [-] Notes ----- At very low curvatures, converges to Re = 0. Recommended for :math:`0.00116 < d_i/D_c < 0.067` Examples -------- >>> helical_transition_Re_Ito(1, 7.) 10729.972844697186 References ---------- .. [1] H. Ito. "Friction factors for turbulent flow in curved pipes." Journal Basic Engineering, Transactions of the ASME, 81 (1959): 123-134. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. .. [3] Mori, Yasuo, and Wataru Nakayama. "Study on Forced Convective Heat Transfer in Curved Pipes." International Journal of Heat and Mass Transfer 10, no. 5 (May 1, 1967): 681-95. doi:10.1016/0017-9310(67)90113-5. ''' return 2E4*(Di/Dc)**0.32 def helical_transition_Re_Kubair_Kuloor(Di, Dc): r'''Calculates the transition Reynolds number for flow inside a curved or helical coil between laminar and turbulent flow, using the method of [1]_, as shown in [2]_. .. math:: Re_{crit} = 12730 \left(\frac{D_i}{D_c}\right)^{0.2} Parameters ---------- Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Returns ------- Re_crit : float Transition Reynolds number between laminar and turbulent [-] Notes ----- At very low curvatures, converges to Re = 0. Recommended for :math:`0.0005 < d_i/D_c < 0.103` Examples -------- >>> helical_transition_Re_Kubair_Kuloor(1, 7.) 8625.986927588123 References ---------- .. [1] Kubair, Venugopala, and N. R. Kuloor. "Heat Transfer to Newtonian Fluids in Coiled Pipes in Laminar Flow." International Journal of Heat and Mass Transfer 9, no. 1 (January 1, 1966): 63-75. doi:10.1016/0017-9310(66)90057-3. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. ''' return 1.273E4*(Di/Dc)**0.2 def helical_transition_Re_Kutateladze_Borishanskii(Di, Dc): r'''Calculates the transition Reynolds number for flow inside a curved or helical coil between laminar and turbulent flow, using the method of [1]_, also shown in [2]_. .. math:: Re_{crit} = 2300 + 1.05\times 10^4 \left(\frac{D_i}{D_c}\right)^{0.3} Parameters ---------- Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Returns ------- Re_crit : float Transition Reynolds number between laminar and turbulent [-] Notes ----- At very low curvatures, converges to Re = 2300. Recommended for :math:`0.0417 < d_i/D_c < 0.1667` Examples -------- >>> helical_transition_Re_Kutateladze_Borishanskii(1, 7.) 7121.143774574058 References ---------- .. [1] Kutateladze, S. S, and V. M Borishanskiĭ. A Concise Encyclopedia of Heat Transfer. Oxford; New York: Pergamon Press, 1966. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. ''' return 2300. + 1.05E4*(Di/Dc)**0.4 def helical_transition_Re_Schmidt(Di, Dc): r'''Calculates the transition Reynolds number for flow inside a curved or helical coil between laminar and turbulent flow, using the method of [1]_, also shown in [2]_ and [3]_. Correlation recommended in [3]_. .. math:: Re_{crit} = 2300\left[1 + 8.6\left(\frac{D_i}{D_c}\right)^{0.45}\right] Parameters ---------- Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Returns ------- Re_crit : float Transition Reynolds number between laminar and turbulent [-] Notes ----- At very low curvatures, converges to Re = 2300. Recommended for :math:`d_i/D_c < 0.14` Examples -------- >>> helical_transition_Re_Schmidt(1, 7.) 10540.094061770815 References ---------- .. [1] Schmidt, Eckehard F. "Wärmeübergang Und Druckverlust in Rohrschlangen." Chemie Ingenieur Technik 39, no. 13 (July 10, 1967): 781-89. doi:10.1002/cite.330391302. .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. .. [3] Schlunder, Ernst U, and International Center for Heat and Mass Transfer. Heat Exchanger Design Handbook. Washington: Hemisphere Pub. Corp., 1983. ''' return 2300.*(1. + 8.6*(Di/Dc)**0.45) def helical_transition_Re_Srinivasan(Di, Dc): r'''Calculates the transition Reynolds number for flow inside a curved or helical coil between laminar and turbulent flow, using the method of [1]_, also shown in [2]_ and [3]_. Correlation recommended in [3]_. .. math:: Re_{crit} = 2100\left[1 + 12\left(\frac{D_i}{D_c}\right)^{0.5}\right] Parameters ---------- Di : float Inner diameter of the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Returns ------- Re_crit : float Transition Reynolds number between laminar and turbulent [-] Notes ----- At very low curvatures, converges to Re = 2100. Recommended for :math:`0.004 < d_i/D_c < 0.1`. Examples -------- >>> helical_transition_Re_Srinivasan(1, 7.) 11624.704719832524 References ---------- .. [1] Srinivasan, P. S., Nandapurkar, S. S., and Holland, F. A., "Pressure Drop and Heat Transfer in Coils", Chemical Engineering, 218, CE131-119, (1968). .. [2] El-Genk, Mohamed S., and Timothy M. Schriener. "A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes." Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693. .. [3] Rohsenow, Warren and James Hartnett and Young Cho. Handbook of Heat Transfer, 3E. New York: McGraw-Hill, 1998. ''' return 2100.*(1. + 12.*sqrt(Di/Dc)) curved_friction_laminar_methods = {'White': helical_laminar_fd_White, 'Mori Nakayama laminar': helical_laminar_fd_Mori_Nakayama, 'Schmidt laminar': helical_laminar_fd_Schmidt} # Format: 'key': (correlation, supports_roughness) curved_friction_turbulent_methods = {'Schmidt turbulent': (helical_turbulent_fd_Schmidt, True), 'Mori Nakayama turbulent': (helical_turbulent_fd_Mori_Nakayama, False), 'Prasad': (helical_turbulent_fd_Prasad, True), 'Czop': (helical_turbulent_fd_Czop, False), 'Guo': (helical_turbulent_fd_Guo, False), 'Ju': (helical_turbulent_fd_Ju, True), 'Mandel Nigam': (helical_turbulent_fd_Mandal_Nigam, True), 'Srinivasan turbulent': (helical_turbulent_fd_Srinivasan, False)} curved_friction_transition_methods = {'Seth Stahel': helical_transition_Re_Seth_Stahel, 'Ito': helical_transition_Re_Ito, 'Kubair Kuloor': helical_transition_Re_Kubair_Kuloor, 'Kutateladze Borishanskii': helical_transition_Re_Kutateladze_Borishanskii, 'Schmidt': helical_transition_Re_Schmidt, 'Srinivasan': helical_transition_Re_Srinivasan} _bad_curved_transition_method = '''Invalid method specified for transition Reynolds number; valid methods are %s''' % list(curved_friction_transition_methods.keys()) curved_friction_turbulent_methods_list = ['Schmidt turbulent', 'Mori Nakayama turbulent', 'Prasad', 'Czop', 'Guo', 'Ju', 'Mandel Nigam', 'Srinivasan turbulent'] curved_friction_laminar_methods_list = ['White', 'Mori Nakayama laminar', 'Schmidt laminar'] def helical_Re_crit(Di, Dc, Method='Schmidt'): r'''Calculates the transition Reynolds number for fluid flowing in a curved pipe or helical coil. Selects the appropriate regime by default. Optionally, a specific correlation can be specified with the `Method` keyword. The default correlations are those recommended in [1]_, and are believed to be the best publicly available. Examples -------- >>> helical_Re_crit(Di=0.02, Dc=0.5) 6946.792538856203 Parameters ---------- Di : float Inner diameter of the tube making up the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] Method : str, optional Critical Reynolds number transition criteria correlation; one of ['Seth Stahel', 'Ito', 'Kubair Kuloor', 'Kutateladze Borishanskii', 'Schmidt', 'Srinivasan']; the default is 'Schmidt'. Returns ------- Re_crit : float Reynolds number for critical transition between laminar and turbulent flow, [-] See Also -------- fluids.geometry.HelicalCoil helical_transition_Re_Schmidt helical_transition_Re_Srinivasan helical_transition_Re_Kutateladze_Borishanskii helical_transition_Re_Kubair_Kuloor helical_transition_Re_Ito helical_transition_Re_Seth_Stahel References ---------- .. [1] Schlunder, Ernst U, and International Center for Heat and Mass Transfer. Heat Exchanger Design Handbook. Washington: Hemisphere Pub. Corp., 1983. ''' if Method == 'Schmidt': Re_crit = helical_transition_Re_Schmidt(Di, Dc) elif Method == 'Seth Stahel': Re_crit = helical_transition_Re_Seth_Stahel(Di, Dc) elif Method == 'Ito': Re_crit = helical_transition_Re_Ito(Di, Dc) elif Method == 'Kubair Kuloor': Re_crit = helical_transition_Re_Kubair_Kuloor(Di, Dc) elif Method == 'Kutateladze Borishanskii': Re_crit = helical_transition_Re_Kutateladze_Borishanskii(Di, Dc) elif Method == 'Srinivasan': Re_crit = helical_transition_Re_Srinivasan(Di, Dc) else: raise ValueError(_bad_curved_transition_method) return Re_crit def friction_factor_curved_methods(Re, Di, Dc, roughness=0.0, check_ranges=True): r'''Returns a list of correlation names for calculating friction factor of fluid flowing in a curved pipe or helical coil, supporting both laminar and turbulent regimes. Examples -------- >>> friction_factor_curved_methods(Re=1E5, Di=0.02, Dc=0.5)[0] 'Schmidt turbulent' Parameters ---------- Re : float Reynolds number with `D=Di`, [-] Di : float Inner diameter of the tube making up the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] roughness : float, optional Roughness of pipe wall [m] check_ranges : bool, optional Whether or not to return only correlations suitable for the provided data, [-] Returns ------- methods : list List of methods in the regime the specified `Re` is in at the given `Di` and `Dc`. ''' Re_crit = helical_Re_crit(Di=Di, Dc=Dc, Method='Schmidt') turbulent = False if Re < Re_crit else True if check_ranges: if turbulent: return list(curved_friction_turbulent_methods_list) else: return list(curved_friction_laminar_methods_list) else: return curved_friction_turbulent_methods_list + curved_friction_laminar_methods_list def friction_factor_curved(Re, Di, Dc, roughness=0.0, Method=None, Rec_method='Schmidt', laminar_method='Schmidt laminar', turbulent_method='Schmidt turbulent', Darcy=True): r'''Calculates friction factor fluid flowing in a curved pipe or helical coil, supporting both laminar and turbulent regimes. Selects the appropriate regime by default, and has default correlation choices. Optionally, a specific correlation can be specified with the `Method` keyword. The default correlations are those recommended in [1]_, and are believed to be the best publicly available. Examples -------- >>> friction_factor_curved(Re=1E5, Di=0.02, Dc=0.5) 0.022961996738387523 Parameters ---------- Re : float Reynolds number with `D=Di`, [-] Di : float Inner diameter of the tube making up the coil, [m] Dc : float Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m] roughness : float, optional Roughness of pipe wall [m] Returns ------- f : float Friction factor, [-] Other Parameters ---------------- Method : string, optional A string of the function name to use, overriding the default turbulent/ laminar selection. Rec_method : str, optional Critical Reynolds number transition criteria; one of ['Seth Stahel', 'Ito', 'Kubair Kuloor', 'Kutateladze Borishanskii', 'Schmidt', 'Srinivasan']; the default is 'Schmidt'. laminar_method : str, optional Friction factor correlation for the laminar regime; one of ['White', 'Mori Nakayama laminar', 'Schmidt laminar']; the default is 'Schmidt laminar'. turbulent_method : str, optional Friction factor correlation for the turbulent regime; one of ['Guo', 'Ju', 'Schmidt turbulent', 'Prasad', 'Mandel Nigam', 'Mori Nakayama turbulent', 'Czop']; the default is 'Schmidt turbulent'. Darcy : bool, optional If False, will return fanning friction factor, 1/4 of the Darcy value See Also -------- fluids.geometry.HelicalCoil helical_turbulent_fd_Schmidt helical_turbulent_fd_Srinivasan helical_turbulent_fd_Mandal_Nigam helical_turbulent_fd_Ju helical_turbulent_fd_Guo helical_turbulent_fd_Czop helical_turbulent_fd_Prasad helical_turbulent_fd_Mori_Nakayama helical_laminar_fd_Schmidt helical_laminar_fd_Mori_Nakayama helical_laminar_fd_White helical_transition_Re_Schmidt helical_transition_Re_Srinivasan helical_transition_Re_Kutateladze_Borishanskii helical_transition_Re_Kubair_Kuloor helical_transition_Re_Ito helical_transition_Re_Seth_Stahel Notes ----- The range of accuracy of these correlations is much than that in a straight pipe. References ---------- .. [1] Schlunder, Ernst U, and International Center for Heat and Mass Transfer. Heat Exchanger Design Handbook. Washington: Hemisphere Pub. Corp., 1983. ''' Re_crit = helical_Re_crit(Di=Di, Dc=Dc, Method=Rec_method) turbulent = False if Re < Re_crit else True if Method is None: Method2 = turbulent_method if turbulent else laminar_method else: Method2 = Method # Use second variable to keep numba types happy # Laminar if Method2 == 'Schmidt laminar': f = helical_laminar_fd_Schmidt(Re, Di, Dc) elif Method2 == 'White': f = helical_laminar_fd_White(Re, Di, Dc) elif Method2 == 'Mori Nakayama laminar': f = helical_laminar_fd_Mori_Nakayama(Re, Di, Dc) # Turbulent with roughness support elif Method2 == 'Schmidt turbulent': f = helical_turbulent_fd_Schmidt(Re, Di, Dc, roughness) elif Method2 == 'Prasad': f = helical_turbulent_fd_Prasad(Re, Di, Dc, roughness) elif Method2 == 'Ju': f = helical_turbulent_fd_Ju(Re, Di, Dc, roughness) elif Method2 == 'Mandel Nigam': f = helical_turbulent_fd_Mandal_Nigam(Re, Di, Dc, roughness) # Turbulent without roughness support elif Method2 == 'Mori Nakayama turbulent': f = helical_turbulent_fd_Mori_Nakayama(Re, Di, Dc) elif Method2 == 'Czop': f = helical_turbulent_fd_Czop(Re, Di, Dc) elif Method2 == 'Guo': f = helical_turbulent_fd_Guo(Re, Di, Dc) elif Method2 == 'Srinivasan turbulent': f = helical_turbulent_fd_Srinivasan(Re, Di, Dc) else: raise ValueError('Invalid method for friction factor calculation') if not Darcy: f *= 0.25 return f ### Plate heat exchanger single phase def friction_plate_Martin_1999(Re, plate_enlargement_factor): r'''Calculates Darcy friction factor for single-phase flow in a Chevron-style plate heat exchanger according to [1]_. .. math:: \frac{1}{\sqrt{f_f}} = \frac{\cos \phi}{\sqrt{0.045\tan\phi + 0.09\sin\phi + f_0/\cos(\phi)}} + \frac{1-\cos\phi}{\sqrt{3.8f_1}} .. math:: f_0 = 16/Re \text{ for } Re < 2000 .. math:: f_0 = (1.56\ln Re - 3)^{-2} \text{ for } Re \ge 2000 .. math:: f_1 = \frac{149}{Re} + 0.9625 \text{ for } Re < 2000 .. math:: f_1 = \frac{9.75}{Re^{0.289}} \text{ for } Re \ge 2000 Parameters ---------- Re : float Reynolds number with respect to the hydraulic diameter of the channels, [-] plate_enlargement_factor : float The extra surface area multiplier as compared to a flat plate caused the corrugations, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Based on experimental data from Re from 200 - 10000 and enhancement factors calculated with chevron angles of 0 to 80 degrees. See `PlateExchanger` for further clarification on the definitions. The length the friction factor gets multiplied by is not the flow path length, but rather the straight path length from port to port as if there were no chevrons. Note there is a discontinuity at Re = 2000 for the transition from laminar to turbulent flow, although the literature suggests the transition is actually smooth. This was first developed in [2]_ and only minor modifications by the original author were made before its republication in [1]_. This formula is also suggested in [3]_ Examples -------- >>> friction_plate_Martin_1999(Re=20000, plate_enlargement_factor=1.15) 2.284018089834135 References ---------- .. [1] Martin, Holger. "Economic optimization of compact heat exchangers." EF-Conference on Compact Heat Exchangers and Enhancement Technology for the Process Industries, Banff, Canada, July 18-23, 1999, 1999. https://publikationen.bibliothek.kit.edu/1000034866. .. [2] Martin, Holger. "A Theoretical Approach to Predict the Performance of Chevron-Type Plate Heat Exchangers." Chemical Engineering and Processing: Process Intensification 35, no. 4 (January 1, 1996): 301-10. https://doi.org/10.1016/0255-2701(95)04129-X. .. [3] Shah, Ramesh K., and Dusan P. Sekulic. Fundamentals of Heat Exchanger Design. 1st edition. Hoboken, NJ: Wiley, 2002. ''' phi = plate_enlargement_factor if Re < 2000.: f0 = 16./Re f1 = 149./Re + 0.9625 else: f0 = (1.56*log(Re) - 3.0)**-2 f1 = 9.75*Re**-0.289 rhs = cos(phi)*1.0/sqrt(0.045*tan(phi) + 0.09*sin(phi) + f0/cos(phi)) rhs += (1. - cos(phi))*1.0/sqrt(3.8*f1) ff = rhs**-2. return ff*4.0 def friction_plate_Martin_VDI(Re, plate_enlargement_factor): r'''Calculates Darcy friction factor for single-phase flow in a Chevron-style plate heat exchanger according to [1]_. .. math:: \frac{1}{\sqrt{f_d}} = \frac{\cos \phi}{\sqrt{0.28\tan\phi + 0.36\sin\phi + f_0/\cos(\phi)}} + \frac{1-\cos\phi}{\sqrt{3.8f_1}} .. math:: f_0 = 64/Re \text{ for } Re < 2000 .. math:: f_0 = (1.56\ln Re - 3)^{-2} \text{ for } Re \ge 2000 .. math:: f_1 = \frac{597}{Re} + 3.85 \text{ for } Re < 2000 .. math:: f_1 = \frac{39}{Re^{0.289}} \text{ for } Re \ge 2000 Parameters ---------- Re : float Reynolds number with respect to the hydraulic diameter of the channels, [-] plate_enlargement_factor : float The extra surface area multiplier as compared to a flat plate caused the corrugations, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Based on experimental data from Re from 200 - 10000 and enhancement factors calculated with chevron angles of 0 to 80 degrees. See `PlateExchanger` for further clarification on the definitions. The length the friction factor gets multiplied by is not the flow path length, but rather the straight path length from port to port as if there were no chevrons. Note there is a discontinuity at Re = 2000 for the transition from laminar to turbulent flow, although the literature suggests the transition is actually smooth. This is a revision of the Martin's earlier model, adjusted to predidct higher friction factors. There are three parameters in this model, a, b and c; it is posisble to adjust them to better fit a know exchanger's pressure drop. See Also -------- friction_plate_Martin_1999 Examples -------- >>> friction_plate_Martin_VDI(Re=20000, plate_enlargement_factor=1.15) 2.702534119024076 References ---------- .. [1] Gesellschaft, V. D. I., ed. VDI Heat Atlas. 2nd edition. Berlin; New York:: Springer, 2010. ''' phi = plate_enlargement_factor if Re < 2000.: f0 = 64./Re f1 = 597./Re + 3.85 else: f0 = (1.8*log10(Re) - 1.5)**-2 f1 = 39.*Re**-0.289 a, b, c = 3.8, 0.28, 0.36 rhs = cos(phi)*1.0/sqrt(b*tan(phi) + c*sin(phi) + f0/cos(phi)) rhs += (1. - cos(phi))*1.0/sqrt(a*f1) return rhs**-2.0 Kumar_beta_list = [30.0, 45.0, 50.0, 60.0, 65.0] Kumar_fd_Res = [[10.0, 100.0], [15.0, 300.0], [20.0, 300.0], [40.0, 400.0], [50.0, 500.0]] Kumar_C2s = [[50.0, 19.40, 2.990], [47.0, 18.29, 1.441], [34.0, 11.25, 0.772], [24.0, 3.24, 0.760], [24.0, 2.80, 0.639]] # Is the second in the first row 0.589 (paper) or 0.598 (PHEWorks) # Believed to be the values from the paper, where this graph was # curve fit as the original did not contain and coefficients only a plot Kumar_Ps = [[1.0, 0.589, 0.183], [1.0, 0.652, 0.206], [1.0, 0.631, 0.161], [1.0, 0.457, 0.215], [1.0, 0.451, 0.213]] def friction_plate_Kumar(Re, chevron_angle): r'''Calculates Darcy friction factor for single-phase flow in a **well-designed** Chevron-style plate heat exchanger according to [1]_. The data is believed to have been developed by APV International Limited, since acquired by SPX Corporation. This uses a curve fit of that data published in [2]_. .. math:: f_f = \frac{C_2}{Re^p} C2 and p are coefficients looked up in a table, with varying ranges of Re validity and chevron angle validity. See the source for their exact values. Parameters ---------- Re : float Reynolds number with respect to the hydraulic diameter of the channels, [-] chevron_angle : float Angle of the plate corrugations with respect to the vertical axis (the direction of flow if the plates were straight), between 0 and 90. Many plate exchangers use two alternating patterns; use their average angle for that situation [degrees] Returns ------- fd : float Darcy friction factor [-] Notes ----- Data on graph from Re=0.1 to Re=10000, with chevron angles 30 to 65 degrees. See `PlateExchanger` for further clarification on the definitions. It is believed the constants used in this correlation were curve-fit to the actual graph in [1]_ by the author of [2]_ as there is no The length the friction factor gets multiplied by is not the flow path length, but rather the straight path length from port to port as if there were no chevrons. As the coefficients change, there are numerous small discontinuities, although the data on the graphs is continuous with sharp transitions of the slope. The author of [1]_ states clearly this correlation is "applicable only to well designed Chevron PHEs". Examples -------- >>> friction_plate_Kumar(Re=2000, chevron_angle=30) 2.9760669055634517 References ---------- .. [1] Kumar, H. "The plate heat exchanger: construction and design." In First U.K. National Conference on Heat Transfer: Held at the University of Leeds, 3-5 July 1984, Institute of Chemical Engineering Symposium Series, vol. 86, pp. 1275-1288. 1984. .. [2] Ayub, Zahid H. "Plate Heat Exchanger Literature Survey and New Heat Transfer and Pressure Drop Correlations for Refrigerant Evaporators." Heat Transfer Engineering 24, no. 5 (September 1, 2003): 3-16. doi:10.1080/01457630304056. ''' beta_list_len = len(Kumar_beta_list) for i in range(beta_list_len): if chevron_angle <= Kumar_beta_list[i]: C2_options, p_options, Re_ranges = Kumar_C2s[i], Kumar_Ps[i], Kumar_fd_Res[i] break elif i == beta_list_len-1: C2_options, p_options, Re_ranges = Kumar_C2s[-1], Kumar_Ps[-1], Kumar_fd_Res[-1] Re_len = len(Re_ranges) for j in range(Re_len): if Re <= Re_ranges[j]: C2, p = C2_options[j], p_options[j] break elif j == Re_len-1: C2, p = C2_options[-1], p_options[-1] # Originally in Fanning friction factor basis return 4.0*C2*Re**-p def friction_plate_Muley_Manglik(Re, chevron_angle, plate_enlargement_factor): r'''Calculates Darcy friction factor for single-phase flow in a Chevron-style plate heat exchanger according to [1]_, also shown and recommended in [2]_. .. math:: f_f = [2.917 - 0.1277\beta + 2.016\times10^{-3} \beta^2] \times[20.78 - 19.02\phi + 18.93\phi^2 - 5.341\phi^3] \times Re^{-[0.2 + 0.0577\sin[(\pi \beta/45)+2.1]]} Parameters ---------- Re : float Reynolds number with respect to the hydraulic diameter of the channels, [-] chevron_angle : float Angle of the plate corrugations with respect to the vertical axis (the direction of flow if the plates were straight), between 0 and 90. Many plate exchangers use two alternating patterns; use their average angle for that situation [degrees] plate_enlargement_factor : float The extra surface area multiplier as compared to a flat plate caused the corrugations, [-] Returns ------- fd : float Darcy friction factor [-] Notes ----- Based on experimental data of plate enacement factors up to 1.5, and valid for Re > 1000 and chevron angles from 30 to 60 degrees with sinusoidal shape. See `PlateExchanger` for further clarification on the definitions. The length the friction factor gets multiplied by is not the flow path length, but rather the straight path length from port to port as if there were no chevrons. This is a continuous model with no discontinuities. Examples -------- >>> friction_plate_Muley_Manglik(Re=2000, chevron_angle=45, plate_enlargement_factor=1.2) 1.0880870804075413 References ---------- .. [1] Muley, A., and R. M. Manglik. "Experimental Study of Turbulent Flow Heat Transfer and Pressure Drop in a Plate Heat Exchanger With Chevron Plates." Journal of Heat Transfer 121, no. 1 (February 1, 1999): 110-17. doi:10.1115/1.2825923. .. [2] Ayub, Zahid H. "Plate Heat Exchanger Literature Survey and New Heat Transfer and Pressure Drop Correlations for Refrigerant Evaporators." Heat Transfer Engineering 24, no. 5 (September 1, 2003): 3-16. doi:10.1080/01457630304056. ''' beta, phi = chevron_angle, plate_enlargement_factor # Beta is indeed chevron angle; with respect to angle of mvoement # Still might be worth another check t1 = (2.917 - 0.1277*beta + 2.016E-3*beta**2) t2 = (5.474 - 19.02*phi + 18.93*phi**2 - 5.341*phi**3) t3 = -(0.2 + 0.0577*sin(pi*beta/45. + 2.1)) # Equation returns fanning friction factor return 4*t1*t2*Re**t3 # Data from the Handbook of Hydraulic Resistance, 4E, in format (min, max, avg) # roughness in m; may have one, two, or three of the values. seamless_other_metals = {'Commercially smooth': (1.5E-6, 1.0E-5, None)} seamless_steel = {'New and unused': (2.0E-5, 1.0E-4, None), 'Cleaned, following years of use': (None, 4.0E-5, None), 'Bituminized': (None, 4.0E-5, None), 'Heating systems piping; either superheated steam pipes, or just water pipes of systems with deaerators and chemical treatment': (None, None, 1.0E-4), 'Following one year as a gas pipeline': (None, None, 1.2E-4), 'Following multiple year as a gas pipeline': (4.0E-5, 2.0E-4, None), 'Casings in gas wells, different conditions, several years of use': (6.0E-5, 2.2E-4, None), 'Heating systems, saturated steam ducts or water pipes (with minor water leakage < 0.5%, and balance water deaerated)': (None, None, 2.0E-4), 'Water heating system pipelines, any source': (None, None, 2.0E-4), 'Oil pipelines, intermediate operating conditions ': (None, None, 2.0E-4), 'Corroded, moderately ': (None, None, 4.0E-4), 'Scale, small depositions only ': (None, None, 4.0E-4), 'Condensate pipes in open systems or periodically operated steam pipelines': (None, None, 5.0E-4), 'Compressed air piping': (None, None, 8.0E-4), 'Following multiple years of operation, generally corroded or with small amounts of scale': (1.5E-4, 1.0E-3, None), 'Water heating piping without deaeration but with chemical treatment of water; leakage up to 3%; or condensate piping operated periodically': (None, None, 1.0E-3), 'Used water piping': (1.2E-3, 1.5E-3, None), 'Poor condition': (5.0E-3, None, None)} welded_steel = {'Good condition': (4.0E-5, 1.0E-4, None), 'New and covered with bitumen': (None, None, 5.0E-5), 'Used and covered with partially dissolved bitumen; corroded': (None, None, 1.0E-4), 'Used, suffering general corrosion': (None, None, 1.5E-4), 'Surface looks like new, 10 mm lacquer inside, even joints': (3.0E-4, 4.0E-4, None), 'Used Gas mains': (None, None, 5.0E-4), 'Double or simple transverse riveted joints; with or without lacquer; without corrosion': (6.0E-4, 7.0E-4, None), 'Lacquered inside but rusted': (9.5E-4, 1.0E-3, None), 'Gas mains, many years of use, with layered deposits': (None, None, 1.1E-3), 'Non-corroded and with double transverse riveted joints': (1.2E-3, 1.5E-3, None), 'Small deposits': (None, None, 1.5E-3), 'Heavily corroded and with double transverse riveted joints': (None, None, 2.0E-3), 'Appreciable deposits': (2.0E-3, 4.0E-3, None), 'Gas mains, many years of use, deposits of resin/naphthalene': (None, None, 2.4E-3), 'Poor condition': (5.0E-3, None, None)} riveted_steel = { 'Riveted laterally and longitudinally with one line; lacquered on the inside': (3.0E-4, 4.0E-4, None), 'Riveted laterally and longitudinally with two lines; with or without lacquer on the inside and without corrosion': (6.0E-4, 7.0E-4, None), 'Riveted laterally with one line and longitudinally with two lines; thickly lacquered or torred on the inside': (1.2E-3, 1.4E-3, None), 'Riveted longitudinally with six lines, after extensive use': (None, None, 2.0E-3), 'Riveted laterally with four line and longitudinally with six lines; overlapping joints inside': (None, None, 4.0E-3), 'Extremely poor surface; overlapping and uneven joints': (5.0E-3, None, None)} roofing_metal = {'Oiled': (1.5E-4, 1.1E-3, None), 'Not Oiled': (2.0E-5, 4.0E-5, None)} galvanized_steel_tube = {'Bright galvanization; new': (7.0E-5, 1.0E-4, None), 'Ordinary galvanization': (1.0E-4, 1.5E-4, None)} galvanized_steel_sheet = {'New': (None, None, 1.5E-4), 'Used previously for water': (None, None, 1.8E-4)} steel = {'Glass enamel coat': (1.0E-6, 1.0E-5, None), 'New': (2.5E-4, 1.0E-3, None)} cast_iron = {'New, bituminized': (1.0E-4, 1.5E-4, None), 'Coated with asphalt': (1.2E-4, 3.0E-4, None), 'Used water pipelines': (None, None, 1.4E-3), 'Used and corroded': (1.0E-3, 1.5E-3, None), 'Deposits visible': (1.0E-3, 1.5E-3, None), 'Substantial deposits': (2.0E-3, 4.0E-3, None), 'Cleaned after extensive use': (3.0E-4, 1.5E-3, None), 'Severely corroded': (None, 3.0E-3, None)} water_conduit_steel = { 'New, clean, seamless (without joints), well fitted': (1.5E-5, 4.0E-5, None), 'New, clean, welded lengthwise and well fitted': (1.2E-5, 3.0E-5, None), 'New, clean, welded lengthwise and well fitted, with transverse welded joints': (8.0E-5, 1.7E-4, None), 'New, clean, coated, bituminized when manufactured': (1.4E-5, 1.8E-5, None), 'New, clean, coated, bituminized when manufactured, with transverse welded joints': (2.0E-4, 6.0E-4, None), 'New, clean, coated, galvanized': (1.0E-4, 2.0E-4, None), 'New, clean, coated, roughly galvanized': (4.0E-4, 7.0E-4, None), 'New, clean, coated, bituminized, curved': (1.0E-4, 1.4E-3, None), 'Used, clean, slight corrosion': (1.0E-4, 3.0E-4, None), 'Used, clean, moderate corrosion or slight deposits': (3.0E-4, 7.0E-4, None), 'Used, clean, severe corrosion': (8.0E-4, 1.5E-3, None), 'Used, clean, previously cleaned of either deposits or rust': (1.5E-4, 2.0E-4, None)} water_conduit_steel_used = { 'Used, all welded, <2 years use, no deposits': (1.2E-4, 2.4E-4, None), 'Used, all welded, <20 years use, no deposits': (6.0E-4, 5.0E-3, None), 'Used, iron-bacterial corrosion': (3.0E-3, 4.0E-3, None), 'Used, heavy corrosion, or with incrustation (deposit 1.5 - 9 mm deep)': (3.0E-3, 5.0E-3, None), 'Used, heavy corrosion, or with incrustation (deposit 3 - 25 mm deep)': (6.0E-3, 6.5E-3, None), 'Used, inside coating, bituminized, < 2 years use': (1.0E-4, 3.5E-4, None)} steels = {'Seamless tubes made from brass, copper, lead, aluminum': seamless_other_metals, 'Seamless steel tubes': seamless_steel, 'Welded steel tubes': welded_steel, 'Riveted steel tubes': riveted_steel, 'Roofing steel sheets': roofing_metal, 'Galzanized steel tubes': galvanized_steel_tube, 'Galzanized sheet steel': galvanized_steel_sheet, 'Steel tubes': steel, 'Cast-iron tubes': cast_iron, 'Steel water conduits in generating stations': water_conduit_steel, 'Used steel water conduits in generating stations': water_conduit_steel_used} concrete_water_conduits = { 'New and finished with plater; excellent manufacture (joints aligned, prime coated and smoothed)': (5.0E-5, 1.5E-4, None), 'Used and corroded; with a wavy surface and wood framework': (1.0E-3, 4.0E-3, None), 'Old, poor fitting and manufacture; with an overgrown surface and deposits of sand and gravel': (1.0E-3, 4.0E-3, None), 'Very old; damaged surface, very overgrown': (5.0E-3, None, None), 'Water conduit, finished with smoothed plaster': (5.0E-3, None, None), 'New, very well manufactured, hand smoothed, prime-coated joints': (1.0E-4, 2.0E-4, None), 'Hand-smoothed cement finish and smoothed joints': (1.5E-4, 3.5E-4, None), 'Used, no deposits, moderately smooth, steel or wooden casing, joints prime coated but not smoothed': (3.0E-4, 6.0E-4, None), 'Used, prefabricated monoliths, cement plaster (wood floated), rough joints': (5.0E-4, 1.0E-3, None), 'Conduits for water, sprayed surface of concrete': (5.0E-4, 1.0E-3, None), 'Smoothed air-placed, either sprayed concrete or concrete on more concrete': (None, None, 5.0E-4), 'Brushed air-placed, either sprayed concrete or concrete on more concrete': (None, None, 2.3E-3), 'Non-smoothed air-placed, either sprayed concrete or concrete on more concrete': (3.0E-3, 6.0E-3, None), 'Smoothed air-placed, either sprayed concrete or concrete on more concrete': (6.0E-3, 1.7E-2, None)} concrete_reinforced_tubes = {'New': (2.5E-4, 3.4E-4, None), 'Nonprocessed': (2.5E-3, None, None)} asbestos_cement = {'New': (5.0E-5, 1.0E-4, None), 'Average': (6.0E-4, None, None)} cement_tubes = {'Smoothed': (3.0E-4, 8.0E-4, None), 'Non processed': (1.0E-3, 2.0E-3, None), 'Joints, non smoothed': (1.9E-3, 6.4E-3, None)} cement_mortar_channels = { 'Plaster, cement, smoothed joints and protrusions, and a casing': (5.0E-5, 2.2E-4, None), 'Steel trowled': (None, None, 5.0E-4)} cement_other = {'Plaster over a screen': (1.0E-2, 1.5E-2, None), 'Salt-glazed ceramic': (None, None, 1.4E-3), 'Slag-concrete': (None, None, 1.5E-3), 'Slag and alabaster-filling': (1.0E-3, 1.5E-3, None)} concretes = {'Concrete water conduits, no finish': concrete_water_conduits, 'Reinforced concrete tubes': concrete_reinforced_tubes, 'Asbestos cement tubes': asbestos_cement, 'Cement tubes': cement_tubes, 'Cement-mortar plaster channels': cement_mortar_channels, 'Other': cement_other} wood_tube = {'Boards, thoroughly dressed': (None, None, 1.5E-4), 'Boards, well dressed': (None, None, 3.0E-4), 'Boards, undressed but fitted': (None, None, 7.0E-4), 'Boards, undressed': (None, None, 1.0E-3), 'Staved': (None, None, 6.0E-4)} plywood_tube = {'Birch plywood, transverse grain, good quality': (None, None, 1.2E-4), 'Birch plywood, longitudal grain, good quality': (3.0E-5, 5.0E-5, None)} glass_tube = {'Glass': (1.5E-6, 1.0E-5, None)} wood_plywood_glass = {'Wood tubes': wood_tube, 'Plywood tubes': plywood_tube, 'Glass tubes': glass_tube} rock_channels = {'Blast-hewed, little jointing': (1.0E-1, 1.4E-1, None), 'Blast-hewed, substantial jointing': (1.3E-1, 5.0E-1, None), 'Roughly cut or very uneven surface': (5.0E-1, 1.5E+0, None)} unlined_tunnels = {'Rocks, gneiss, diameter 3-13.5 m': (3.0E-1, 7.0E-1, None), 'Rocks, granite, diameter 3-9 m': (2.0E-1, 7.0E-1, None), 'Shale, diameter, diameter 9-12 m': (2.5E-1, 6.5E-1, None), 'Shale, quartz, quartzile, diameter 7-10 m': (2.0E-1, 6.0E-1, None), 'Shale, sedimentary, diameter 4-7 m': (None, None, 4.0E-1), 'Shale, nephrite bearing, diameter 3-8 m': (None, None, 2.0E-1)} tunnels = {'Rough channels in rock': rock_channels, 'Unlined tunnels': unlined_tunnels} # Roughness, in m _roughness = {'Brass': .00000152, 'Lead': .00000152, 'Glass': .00000152, 'Steel': .00000152, 'Asphalted cast iron': .000122, 'Galvanized iron': .000152, 'Cast iron': .000259, 'Wood stave': .000183, 'Rough wood stave': .000914, 'Concrete': .000305, 'Rough concrete': .00305, 'Riveted steel': .000914, 'Rough riveted steel': .00914} # Create a more friendly data structure '''Holds a dict of tuples in format (min, max, average) roughness values in meters from the source Idelʹchik, I. E, and A. S Ginevskiĭ. Handbook of Hydraulic Resistance. Redding, CT: Begell House, 2007. ''' HHR_roughness = {} HHR_roughness_dicts = [tunnels, wood_plywood_glass, concretes, steels] HHR_roughness_categories = {} [HHR_roughness_categories.update(i) for i in HHR_roughness_dicts] for d in HHR_roughness_dicts: for k, v in d.items(): for name, values in v.items(): HHR_roughness[str(k)+', ' + name] = values # For searching only _all_roughness = HHR_roughness.copy() _all_roughness.update(_roughness) # Format : ID: (avg_roughness, coef A (inches), coef B (inches)) _Farshad_roughness = {'Plastic coated': (5E-6, 0.0002, -1.0098), 'Carbon steel, honed bare': (12.5E-6, 0.0005, -1.0101), 'Cr13, electropolished bare': (30E-6, 0.0012, -1.0086), 'Cement lining': (33E-6, 0.0014, -1.0105), 'Carbon steel, bare': (36E-6, 0.0014, -1.0112), 'Fiberglass lining': (38E-6, 0.0016, -1.0086), 'Cr13, bare': (55E-6, 0.0021, -1.0055) } try: if IS_NUMBA: # type: ignore _Farshad_roughness_keys = tuple(_Farshad_roughness.keys()) _Farshad_roughness_values = tuple(_Farshad_roughness.values()) except: pass def roughness_Farshad(ID=None, D=None, coeffs=None): r'''Calculates of retrieves the roughness of a pipe based on the work of [1]_. This function will return an average value for pipes of a given material, or if diameter is provided, will calculate one specifically for the pipe inner diameter according to the following expression with constants `A` and `B`: .. math:: \epsilon = A\cdot D^{B+1} Please not that `A` has units of inches, and `B` requires `D` to be in inches as well. The list of supported materials is as follows: * 'Plastic coated' * 'Carbon steel, honed bare' * 'Cr13, electropolished bare' * 'Cement lining' * 'Carbon steel, bare' * 'Fiberglass lining' * 'Cr13, bare' If `coeffs` and `D` are given, the custom coefficients for the equation as given by the user will be used and `ID` is not required. Parameters ---------- ID : str, optional Name of pipe material from above list D : float, optional Actual inner diameter of pipe, [m] coeffs : tuple, optional (A, B) Coefficients to use directly, instead of looking them up; they are actually dimensional, in the forms (inch^-B, -) but only coefficients with those dimensions are available [-] Returns ------- epsilon : float Roughness of pipe [m] Notes ----- The diameter-dependent form provides lower roughness values for larger diameters. The measurements were based on DIN 4768/1 (1987), using both a "Dektak ST Surface Profiler" and a "Hommel Tester T1000". Both instruments were found to be in agreement. A series of flow tests, in which pressure drop directly measured, were performed as well, with nitrogen gas as an operating fluid. The accuracy of the data from these tests is claimed to be within 1%. Using those results, the authors back-calculated what relative roughness values would be necessary to produce the observed pressure drops. The average difference between this back-calculated roughness and the measured roughness was 6.75%. For microchannels, this model will predict roughness much larger than the actual channel diameter. Examples -------- >>> roughness_Farshad('Cr13, bare', 0.05) 5.3141677781137006e-05 References ---------- .. [1] Farshad, Fred F., and Herman H. Rieke. "Surface Roughness Design Values for Modern Pipes." SPE Drilling & Completion 21, no. 3 (September 1, 2006): 212-215. doi:10.2118/89040-PA. ''' # Case 1, coeffs given; only run if ID is not given. if ID is None and coeffs is not None: A, B = coeffs return A*(D/inch)**(B + 1.0)*inch # Case 2, lookup parameters if ID in _Farshad_roughness: # numba: delete dat = _Farshad_roughness[ID] # numba: delete # try: # numba: uncomment # dat = _Farshad_roughness_values[_Farshad_roughness_keys.index(ID)] # numba: uncomment # except: # numba: uncomment # raise KeyError('ID was not in _Farshad_roughness.') # numba: uncomment if D is None: return dat[0] else: A, B = dat[1], dat[2] return A*(D/inch)**(B+1)*inch roughness_clean_names = set(_roughness.keys()) roughness_clean_names.update(_Farshad_roughness.keys()) def nearest_material_roughness(name, clean=None): r'''Searches through either a dict of clean pipe materials or used pipe materials and conditions and returns the ID of the nearest material. Search is performed with either the standard library's difflib or with the fuzzywuzzy module if available. Parameters ---------- name : str Search term for matching pipe materials clean : bool, optional If True, search only clean pipe database; if False, search only the dirty database; if None, search both Returns ------- ID : str String for lookup of roughness of a pipe, in either `roughness_clean_names` or `HHR_roughness` depending on if clean is True, [-] Examples -------- >>> nearest_material_roughness('condensate pipes', clean=False) # doctest: +SKIP 'Seamless steel tubes, Condensate pipes in open systems or periodically operated steam pipelines' References ---------- .. [1] Idelʹchik, I. E, and A. S Ginevskiĭ. Handbook of Hydraulic Resistance. Redding, CT: Begell House, 2007. ''' if clean is None: d = _all_roughness.keys() else: if clean: d = roughness_clean_names else: d = HHR_roughness.keys() return fuzzy_match(name, d) def material_roughness(ID, D=None, optimism=None): r'''Searches through either a dict of clean pipe materials or used pipe materials and conditions and returns the ID of the nearest material. Search is performed with either the standard library's difflib or with the fuzzywuzzy module if available. Parameters ---------- ID : str Search terms for matching pipe materials, [-] D : float, optional Diameter of desired pipe; used only if ID is in [2]_, [m] optimism : bool, optional For values in [1]_, a minimum, maximum, and average value is normally given; if True, returns the minimum roughness; if False, the maximum roughness; and if None, returns the average roughness. Most entries do not have all three values, so fallback logic to return the closest entry is used, [-] Returns ------- roughness : float Retrieved or calculated roughness, [m] Examples -------- >>> material_roughness('condensate pipes') # doctest: +SKIP 0.0005 References ---------- .. [1] Idelʹchik, I. E, and A. S Ginevskiĭ. Handbook of Hydraulic Resistance. Redding, CT: Begell House, 2007. .. [2] Farshad, Fred F., and Herman H. Rieke. "Surface Roughness Design Values for Modern Pipes." SPE Drilling & Completion 21, no. 3 (September 1, 2006): 212-215. doi:10.2118/89040-PA. ''' if ID in _Farshad_roughness: return roughness_Farshad(ID, D) elif ID in _roughness: return _roughness[ID] elif ID in HHR_roughness: minimum, maximum, avg = HHR_roughness[ID] if optimism is None: return avg if avg else (maximum if maximum else minimum) elif optimism is True: return minimum if minimum else (avg if avg else maximum) else: return maximum if maximum else (avg if avg else minimum) else: return material_roughness(nearest_material_roughness(ID, clean=False), D=D, optimism=optimism) def transmission_factor(fd=None, F=None): r'''Calculates either transmission factor from Darcy friction factor, or Darcy friction factor from the transmission factor. Raises an exception if neither input is given. Transmission factor is a term used in compressible gas flow in pipelines. .. math:: F = \frac{2}{\sqrt{f_d}} .. math:: f_d = \frac{4}{F^2} Parameters ---------- fd : float, optional Darcy friction factor, [-] F : float, optional Transmission factor, [-] Returns ------- fd or F : float Darcy friction factor or transmission factor [-] Examples -------- >>> transmission_factor(fd=0.0185) 14.704292441876154 >>> transmission_factor(F=20) 0.01 References ---------- .. [1] Menon, E. Shashi. Gas Pipeline Hydraulics. 1st edition. Boca Raton, FL: CRC Press, 2005. ''' if fd is not None: return 2./sqrt(fd) elif F is not None: return 4./(F*F) else: raise ValueError('Either Darcy friction factor or transmission factor is needed') def one_phase_dP(m, rho, mu, D, roughness=0.0, L=1.0, Method=None): r'''Calculates single-phase pressure drop. This is a wrapper around other methods. Parameters ---------- m : float Mass flow rate of fluid, [kg/s] rho : float Density of fluid, [kg/m^3] mu : float Viscosity of fluid, [Pa*s] D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe for use in calculating friction factor, [m] L : float, optional Length of pipe, [m] Method : string, optional A string of the function name to use Returns ------- dP : float Pressure drop of the single-phase flow, [Pa] Notes ----- Examples -------- >>> one_phase_dP(10.0, 1000, 1E-5, .1, L=1) 63.43447321097365 References ---------- .. [1] Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009. ''' D2 = D*D V = m/(0.25*pi*D2*rho) Re = Reynolds(V=V, rho=rho, mu=mu, D=D) fd = friction_factor(Re=Re, eD=roughness/D, Method=Method) dP = fd*L/D*(0.5*rho*V*V) return dP def one_phase_dP_acceleration(m, D, rho_o, rho_i, D_i=None): r'''This function handles calculation of one-phase fluid pressure drop due to acceleration for flow inside channels. This is a discrete calculation, providing the total differential in pressure for a given length and should be called as part of a segment solver routine. .. math:: - \left(\frac{\Delta P}{\Delta z}\right)_{acc} = 0.5\rho_i v_i^2 - 0.5\rho_o v_o^2 Parameters ---------- m : float Mass flow rate of fluid, [kg/s] D : float Diameter of pipe, [m] rho_o : float Fluid density out, [kg/m^3] rho_i : float Fluid density in, [kg/m^3] D_i : float Diameter of the entry of the pipe; provide this if the pipe changes diameter and then `D` is the diameter of the pipe exit, [m] Returns ------- dP : float Acceleration component of pressure drop for one-phase flow, [Pa] Notes ----- Examples -------- >>> one_phase_dP_acceleration(m=1, D=0.1, rho_o=827.1, rho_i=830) 0.06848310644876913 >>> one_phase_dP_acceleration(m=1, D=0.1, rho_o=827.1, rho_i=830, D_i=.05) -146.1640615999393 ''' if D_i is None: D_i = D A_i = pi/4*D_i**2 A_o = pi/4*D**2 Q_i = m/rho_i v_i = Q_i/A_i Q_o = m/rho_o v_o = Q_o/A_o rho_avg = 0.5*(rho_o + rho_i) return 0.5*rho_avg*(v_o**2 - v_i**2) # return 0.5*rho_o*v_o**2 - 0.5*rho_i*v_i**2 # G = m/(pi*D*D) # G_i = m/(pi*D_i*D_i) # return 8.0*(G*G/rho_o - G_i*G_i/rho_i) def one_phase_dP_dz_acceleration(m, D, rho, dv_dP, dP_dL, dA_dL): r'''This function handles calculation of one-phase fluid pressure drop due to acceleration for flow inside channels. This is a continuous calculation, providing the differential in pressure per unit length and should be called as part of an integration routine [1]_. .. math:: -\left(\frac{\partial P}{\partial L}\right)_{A} = G^2 \frac{\partial P}{\partial L}\left[\frac{\partial (1/\rho)}{\partial P} \right]- \frac{G^2}{\rho}\frac{1}{A}\frac{\partial A}{\partial L} Parameters ---------- m : float Mass flow rate of fluid, [kg/s] D : float Diameter of pipe, [m] rho : float Fluid density, [kg/m^3] dv_dP : float Derivative of mass specific volume of the fluid with respect to pressure, [m^3/(kg*Pa)] dP_dL : float Pressure drop per unit length of pipe, [Pa/m] dA_dL : float Change in area of pipe per unit length of pipe, [m^2/m] Returns ------- dP_dz : float Acceleration component of pressure drop for one-phase flow, [Pa/m] Notes ----- The value returned here is positive for pressure loss and negative for pressure increase. As `dP_dL` is not known, this equation is normally used in a more complicated way than this function provides; this method can be used to check the consistency of that routine. Examples -------- >>> one_phase_dP_dz_acceleration(m=1, D=0.1, rho=827.1, dv_dP=-1.1E-5, ... dP_dL=5E5, dA_dL=0.0001) 89162.89116373913 References ---------- .. [1] Shoham, Ovadia. Mechanistic Modeling of Gas-Liquid Two-Phase Flow in Pipes. Pap/Cdr edition. Richardson, TX: Society of Petroleum Engineers, 2006. ''' A = 0.25*pi*D*D G = m/A return -G*G*(dP_dL*dv_dP - dA_dL/(rho*A)) def one_phase_dP_gravitational(angle, rho, L=1.0, g=g): r'''This function handles calculation of one-phase liquid-gas pressure drop due to gravitation for flow inside channels. This is either a differential calculation for a segment with an infinitesimal difference in elevation `L` = 1 or a discrete calculation. .. math:: -\left(\frac{dP}{dz} \right)_{grav} = \rho g \sin \theta .. math:: -\left(\Delta P \right)_{grav} = L \rho g \sin \theta Parameters ---------- angle : float The angle of the pipe with respect to the horizontal, [degrees] rho : float Fluid density, [kg/m^3] L : float, optional Length of pipe, [m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- dP : float Gravitational component of pressure drop for one-phase flow, [Pa/m] or [Pa] Notes ----- Examples -------- >>> one_phase_dP_gravitational(angle=90, rho=2.6) 25.49729 >>> one_phase_dP_gravitational(angle=90, rho=2.6, L=4) 101.98916 ''' angle = radians(angle) return L*g*sin(angle)*rho fluids-1.0.22/fluids/mixing.py0000644000175000017500000003230114302004506015534 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains some basic functions for fluid mechanics mixing calculations. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Misc Functions -------------- .. autofunction:: size_tee .. autofunction:: COV_motionless_mixer .. autofunction:: K_motionless_mixer .. autofunction:: agitator_time_homogeneous .. autofunction:: Kp_helical_ribbon_Rieger .. autofunction:: time_helical_ribbon_Grenville """ from __future__ import division from fluids.constants import g from math import log, pi, sqrt __all__ = ['agitator_time_homogeneous', 'Kp_helical_ribbon_Rieger', 'time_helical_ribbon_Grenville', 'size_tee', 'COV_motionless_mixer', 'K_motionless_mixer'] max_Fo_for_turbulent = 1/1225. min_regime_constant_for_turbulent = 6370. def adjust_homogeneity(fraction): '''Base: 95% homogeneity''' multiplier = log(1-fraction)/log(0.05) return multiplier def agitator_time_homogeneous(N, P, T, H, mu, rho, D=None, homogeneity=.95): r'''Calculates time for a fluid mizing in a tank with an impeller to reach a specified level of homogeneity, according to [1]_. .. math:: N_p = \frac{Pg}{\rho N^3 D^5} .. math:: Re_{imp} = \frac{\rho D^2 N}{\mu} .. math:: \text{constant} = N_p^{1/3} Re_{imp} .. math:: Fo = 5.2/\text{constant} \text{for turbulent regime} .. math:: Fo = (183/\text{constant})^2 \text{for transition regime} Parameters ---------- N : float: Speed of impeller, [revolutions/s] P : float Actual power required to mix, ignoring mechanical inefficiencies [W] T : float Tank diameter, [m] H : float Tank height, [m] mu : float Mixture viscosity, [Pa*s] rho : float Mixture density, [kg/m^3] D : float, optional Impeller diameter [m] homogeneity : float, optional Fraction completion of mixing, [] Returns ------- t : float Time for specified degree of homogeneity [s] Notes ----- If impeller diameter is not specified, assumed to be 0.5 tank diameters. The first example is solved forward rather than backwards here. A rather different result is obtained, but is accurate. No check to see if the mixture if laminar is currently implemented. This would under predict the required time. Examples -------- >>> agitator_time_homogeneous(D=36*.0254, N=56/60., P=957., T=1.83, H=1.83, mu=0.018, rho=1020, homogeneity=.995) 15.143198226374668 >>> agitator_time_homogeneous(D=1, N=125/60., P=298., T=3, H=2.5, mu=.5, rho=980, homogeneity=.95) 67.7575069865228 References ---------- .. [1] Paul, Edward L, Victor A Atiemo-Obeng, and Suzanne M Kresta. Handbook of Industrial Mixing: Science and Practice. Hoboken, N.J.: Wiley-Interscience, 2004. ''' if not D: D = T*0.5 Np = P*g/rho/N**3/D**5 Re_imp = rho/mu*D**2*N regime_constant = Np**(1/3.)*Re_imp if regime_constant >= min_regime_constant_for_turbulent: Fo = (5.2/regime_constant) else: Fo = (183./regime_constant)**2 time = rho*T**1.5*sqrt(H)/mu*Fo multiplier = adjust_homogeneity(homogeneity) return time*multiplier def Kp_helical_ribbon_Rieger(D, h, nb, pitch, width, T): r'''Calculates product of power number and Reynolds number for a specified geometry for a heilical ribbon mixer in the laminar regime. One of several correlations listed in [1]_, it used more data than other listed correlations and was recommended. .. math:: K_p = 82.8\frac{h}{D}\left(\frac{c}{D}\right)^{-0.38} \left(\frac{p}{D}\right)^{-0.35} \left(\frac{w}{D}\right)^{0.20} n_b^{0.78} Parameters ---------- D : float Impeller diameter [m] h : float Ribbon mixer height, [m] nb : float: Number of blades, [-] pitch : float Height of one turn around a helix [m] width : float Width of one blade [m] T : float Tank diameter, [m] Returns ------- Kp : float Product of Power number and Reynolds number for laminar regime [] Notes ----- Example is from example 9-6 in [1]_. Confirmed. Examples -------- >>> Kp_helical_ribbon_Rieger(D=1.9, h=1.9, nb=2, pitch=1.9, width=.19, T=2) 357.39749163259256 References ---------- .. [1] Paul, Edward L, Victor A Atiemo-Obeng, and Suzanne M Kresta. Handbook of Industrial Mixing: Science and Practice. Hoboken, N.J.: Wiley-Interscience, 2004. .. [2] Rieger, F., V. Novak, and D. Havelkov (1988). The influence of the geometrical shape on the power requirements of ribbon impellers, Int. Chem. Eng., 28, 376-383. ''' c = 0.5*(T - D) return 82.8*h/D*(c/D)**-.38*(pitch/D)**-0.35*(width/D)**0.2*nb**0.78 def time_helical_ribbon_Grenville(Kp, N): r'''Calculates product of time required for mixing in a helical ribbon coil in the laminar regime according to the Grenville [2]_ method recommended in [1]_. .. math:: t = 896\times10^3K_p^{-1.69}/N Parameters ---------- Kp : float Product of power number and Reynolds number for laminar regime [] N : float Speed of impeller, [revolutions/s] Returns ------- t : float Time for homogeneity [s] Notes ----- Degree of homogeneity is not specified. Example is from example 9-6 in [1]_. Confirmed. Examples -------- >>> time_helical_ribbon_Grenville(357.4, 4/60.) 650.980654028894 References ---------- .. [1] Paul, Edward L, Victor A Atiemo-Obeng, and Suzanne M Kresta. Handbook of Industrial Mixing: Science and Practice. Hoboken, N.J.: Wiley-Interscience, 2004. .. [2] Grenville, R. K., T. M. Hutchinson, and R. W. Higbee (2001). Optimisation of helical ribbon geometry for blending in the laminar regime, presented at MIXING XVIII, NAMF. ''' return 896E3*Kp**-1.69/N ### Tee mixer def size_tee(Q1, Q2, D, D2, n=1, pipe_diameters=5): r'''Calculates CoV of an optimal or specified tee for mixing at a tee according to [1]_. Assumes turbulent flow. The smaller stream in injected into the main pipe, which continues straight. COV calculation is according to [2]_. Parameters ---------- Q1 : float Volumetric flow rate of larger stream [m^3/s] Q2 : float Volumetric flow rate of smaller stream [m^3/s] D : float Diameter of pipe after tee [m] D2 : float Diameter of mixing inlet, optional (optimally calculated if not specified) [m] n : float Number of jets, 1 to 4 [] pipe_diameters : float Number of diameters along tail pipe for CoV calculation, 0 to 5 [] Returns ------- CoV : float Standard deviation of dimensionless concentration [-] Notes ----- Not specified if this works for liquid also, though probably not. Example is from example Example 9-6 in [1]_. Low precision used in example. Examples -------- >>> size_tee(Q1=11.7, Q2=2.74, D=0.762, D2=None, n=1, pipe_diameters=5) 0.2940930233038544 References ---------- .. [1] Paul, Edward L, Victor A Atiemo-Obeng, and Suzanne M Kresta. Handbook of Industrial Mixing: Science and Practice. Hoboken, N.J.: Wiley-Interscience, 2004. .. [2] Giorges, Aklilu T. G., Larry J. Forney, and Xiaodong Wang. "Numerical Study of Multi-Jet Mixing." Chemical Engineering Research and Design, Fluid Flow, 79, no. 5 (July 2001): 515-22. doi:10.1205/02638760152424280. ''' V1 = Q1/(pi/4*D**2) # Cv = Q2/(Q1 + Q2) # COV0 = sqrt((1-Cv)/Cv) if D2 is None: D2 = (Q2/Q1)**(2/3.)*D V2 = Q2/(pi/4*D2**2) B = n**2*(D2/D)**2*(V2/V1)**2 if not n == 1 and not n == 2 and not n == 3 and not n ==4: raise ValueError('Only 1 or 4 side streams investigated') if n == 1: if B < 0.7: E = 1.33 else: E = 1/33. + 0.95*log(B/0.7) elif n == 2: if B < 0.8: E = 1.44 else: E = 1.44 + 0.95*log(B/0.8)**1.5 elif n == 3: if B < 0.8: E = 1.75 else: E = 1.75 + 0.95*log(B/0.8)**1.8 else: if B < 2: E = 1.97 else: E = 1.97 + 0.95*log(B/2.)**2 COV = sqrt(0.32/B**0.86*(pipe_diameters)**-E) return COV ### Commercial motionless mixers '''Data from: Paul, Edward L, Victor A Atiemo-Obeng, and Suzanne M Kresta. Handbook of Industrial Mixing: Science and Practice. Hoboken, N.J.: Wiley-Interscience, 2004.''' StatixMixers = {} StatixMixers['KMS'] = {'Name': 'KMS', 'Vendor': 'Chemineer', 'Description': 'Twisted ribbon. Alternating left and right twists.', 'KL': 6.9, 'KiL': 0.87, 'KT': 150, 'KiT': 0.5} StatixMixers['SMX'] = {'Name': 'SMX', 'Vendor': 'Koch-Glitsch', 'Description': 'Guide vanes 45 degrees to pipe axis. Adjacent elements rotated 90 degrees.', 'KL': 37.5, 'KiL': 0.63, 'KT': 500, 'KiT': 0.46} StatixMixers['SMXL'] = {'Name': 'SMXL', 'Vendor': 'Koch-Glitsch', 'Description': 'Similar to SMX, but intersection bars at 30 degrees to pipe axis.', 'KL': 7.8, 'KiL': 0.85, 'KT': 100, 'KiT': 0.87} StatixMixers['SMF'] = {'Name': 'SMF', 'Vendor': 'Koch-Glitsch', 'Description': 'Three guide vanes projecting from the tube wall in a way as to not contact. Designed for applications subject to plugging.', 'KL': 5.6, 'KiL': 0.83, 'KT': 130, 'KiT': 0.4} def COV_motionless_mixer(Ki, Q1, Q2, pipe_diameters): r'''Calculates CoV of a motionless mixer with a regression parameter in [1]_ and originally in [2]_. .. math:: \frac{CoV}{CoV_0} = K_i^{L/D} Parameters ---------- Ki : float Correlation parameter specific to a mixer's design, [-] Q1 : float Volumetric flow rate of larger stream [m^3/s] Q2 : float Volumetric flow rate of smaller stream [m^3/s] pipe_diameters : float Number of diameters along tail pipe for CoV calculation, 0 to 5 [] Returns ------- CoV : float Standard deviation of dimensionless concentration [-] Notes ----- Example 7-8.3.2 in [1]_, solved backwards. Examples -------- >>> COV_motionless_mixer(Ki=.33, Q1=11.7, Q2=2.74, pipe_diameters=4.74/.762) 0.0020900028665727685 References ---------- .. [1] Paul, Edward L, Victor A Atiemo-Obeng, and Suzanne M Kresta. Handbook of Industrial Mixing: Science and Practice. Hoboken, N.J.: Wiley-Interscience, 2004. .. [2] Streiff, F. A., S. Jaffer, and G. Schneider (1999). Design and application of motionless mixer technology, Proc. ISMIP3, Osaka, pp. 107-114. ''' Cv = Q2/(Q1 + Q2) COV0 = sqrt((1-Cv)/Cv) COVr = Ki**(pipe_diameters) COV = COV0*COVr return COV def K_motionless_mixer(K, L, D, fd): r'''Calculates loss coefficient of a motionless mixer with a regression parameter in [1]_ and originally in [2]_. .. math:: K = K_{L/T}f\frac{L}{D} Parameters ---------- K : float Correlation parameter specific to a mixer's design, [-] Also specific to laminar or turbulent regime. L : float Length of the motionless mixer [m] D : float Diameter of pipe [m] fd : float Darcy friction factor [-] Returns ------- K : float Loss coefficient of mixer [-] Notes ----- Related to example 7-8.3.2 in [1]_. Examples -------- >>> K_motionless_mixer(K=150, L=.762*5, D=.762, fd=.01) 7.5 References ---------- .. [1] Paul, Edward L, Victor A Atiemo-Obeng, and Suzanne M Kresta. Handbook of Industrial Mixing: Science and Practice. Hoboken, N.J.: Wiley-Interscience, 2004. .. [2] Streiff, F. A., S. Jaffer, and G. Schneider (1999). Design and application of motionless mixer technology, Proc. ISMIP3, Osaka, pp. 107-114. ''' return L/D*fd*K fluids-1.0.22/fluids/jet_pump.pyi0000644000175000017500000000155014302004506016237 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( Optional, Union, ) def liquid_jet_pump_ancillary( rhop: float, rhos: float, Kp: float, Ks: float, d_nozzle: Optional[float] = ..., d_mixing: Optional[float] = ..., Qp: Optional[float] = ..., Qs: Optional[float] = ..., P1: Optional[float] = ..., P2: Optional[int] = ... ) -> float: ... def vacuum_air_leakage_Coker_Worthington(P: float, P_atm: float = ..., conservative: bool = ...) -> float: ... def vacuum_air_leakage_HEI2633(V: float, P: float, P_atm: float = ...) -> float: ... def vacuum_air_leakage_Ryans_Croll(V: int, P: int, P_atm: float = ...) -> float: ... def vacuum_air_leakage_Seider(V: int, P: int, P_atm: float = ...) -> float: ... __all__: List[str]fluids-1.0.22/fluids/piping.py0000644000175000017500000020221414302004506015531 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains functions for looking up standard pipe sizes from different schedules. Similarly, there is a converter between gauge number thickness (and back). For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Pipe Schedules -------------- .. autofunction:: nearest_pipe Wire Gauge ---------- .. autofunction:: gauge_from_t .. autofunction:: t_from_gauge .. autodata:: wire_schedules Pipe Methods ------------ .. autofunction:: erosional_velocity """ from __future__ import division from fluids.constants import inch, lb, foot from math import sqrt __all__ = ['nearest_pipe', 'gauge_from_t', 't_from_gauge', 'wire_schedules', 'erosional_velocity'] # Schedules 5, 10, 20, 30, 40, 60, 80, 100, 120, 140, 160 from # ASME B36.10M - Welded and Seamless Wrought Steel Pipe # All schedule lists stored in mm, other than NPS. # i = inner diameter, o = outer diameter, and t = wall thickness in variable names NPS5 = [0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 30] S5i = [18, 23.4, 30.1, 38.9, 45, 57, 68.78, 84.68, 97.38, 110.08, 135.76, 162.76, 213.56, 266.2, 315.88, 347.68, 398.02, 448.62, 498.44, 549.44, 598.92, 749.3] S5o = [21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 101.6, 114.3, 141.3, 168.3, 219.1, 273, 323.8, 355.6, 406.4, 457, 508, 559, 610, 762] S5t = [1.65, 1.65, 1.65, 1.65, 1.65, 1.65, 2.11, 2.11, 2.11, 2.11, 2.77, 2.77, 2.77, 3.4, 3.96, 3.96, 4.19, 4.19, 4.78, 4.78, 5.54, 6.35] NPS10 = [0.125, 0.25, 0.375, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36] S10i = [7.82, 10.4, 13.8, 17.08, 22.48, 27.86, 36.66, 42.76, 54.76, 66.9, 82.8, 95.5, 108.2, 134.5, 161.5, 211.58, 264.62, 314.66, 342.9, 393.7, 444.3, 495.3, 546.3, 597.3, 644.16, 695.16, 746.16, 797.16, 848.16, 898.16] S10o = [10.3, 13.7, 17.1, 21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 101.6, 114.3, 141.3, 168.3, 219.1, 273, 323.8, 355.6, 406.4, 457, 508, 559, 610, 660, 711, 762, 813, 864, 914] S10t = [1.24, 1.65, 1.65, 2.11, 2.11, 2.77, 2.77, 2.77, 2.77, 3.05, 3.05, 3.05, 3.05, 3.4, 3.4, 3.76, 4.19, 4.57, 6.35, 6.35, 6.35, 6.35, 6.35, 6.35, 7.92, 7.92, 7.92, 7.92, 7.92, 7.92] NPS20 = [8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36] S20i = [206.4, 260.3, 311.1, 339.76, 390.56, 441.16, 488.94, 539.94, 590.94, 634.6, 685.6, 736.6, 787.6, 838.6, 888.6] S20o = [219.1, 273, 323.8, 355.6, 406.4, 457, 508, 559, 610, 660, 711, 762, 813, 864, 914] S20t = [6.35, 6.35, 6.35, 7.92, 7.92, 7.92, 9.53, 9.53, 9.53, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7] NPS30 = [0.125, 0.25, 0.375, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 8, 10, 12, 14, 16, 18, 20, 22, 24, 28, 30, 32, 34, 36] S30i = [7.4, 10, 13.4, 16.48, 21.88, 27.6, 36.26, 41.94, 53.94, 63.44, 79.34, 92.04, 104.74, 205.02, 257.4, 307.04, 336.54, 387.34, 434.74, 482.6, 533.6, 581.46, 679.24, 730.24, 781.24, 832.24, 882.24] S30o = [10.3, 13.7, 17.1, 21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 101.6, 114.3, 219.1, 273, 323.8, 355.6, 406.4, 457, 508, 559, 610, 711, 762, 813, 864, 914] S30t = [1.45, 1.85, 1.85, 2.41, 2.41, 2.9, 2.97, 3.18, 3.18, 4.78, 4.78, 4.78, 4.78, 7.04, 7.8, 8.38, 9.53, 9.53, 11.13, 12.7, 12.7, 14.27, 15.88, 15.88, 15.88, 15.88, 15.88] NPS40 = [0.125, 0.25, 0.375, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 24, 32, 34, 36] S40i = [6.84, 9.22, 12.48, 15.76, 20.96, 26.64, 35.08, 40.94, 52.48, 62.68, 77.92, 90.12, 102.26, 128.2, 154.08, 202.74, 254.46, 303.18, 333.34, 381, 428.46, 477.82, 575.04, 778.04, 829.04, 875.9] S40o = [10.3, 13.7, 17.1, 21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 101.6, 114.3, 141.3, 168.3, 219.1, 273, 323.8, 355.6, 406.4, 457, 508, 610, 813, 864, 914] S40t = [1.73, 2.24, 2.31, 2.77, 2.87, 3.38, 3.56, 3.68, 3.91, 5.16, 5.49, 5.74, 6.02, 6.55, 7.11, 8.18, 9.27, 10.31, 11.13, 12.7, 14.27, 15.09, 17.48, 17.48, 17.48, 19.05] NPS60 = [8, 10, 12, 14, 16, 18, 20, 22, 24] S60i = [198.48, 247.6, 295.26, 325.42, 373.08, 418.9, 466.76, 514.54, 560.78] S60o = [219.1, 273, 323.8, 355.6, 406.4, 457, 508, 559, 610] S60t = [10.31, 12.7, 14.27, 15.09, 16.66, 19.05, 20.62, 22.23, 24.61] NPS80 = [0.125, 0.25, 0.375, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24] S80i = [5.48, 7.66, 10.7, 13.84, 18.88, 24.3, 32.5, 38.14, 49.22, 58.98, 73.66, 85.44, 97.18, 122.24, 146.36, 193.7, 242.82, 288.84, 317.5, 363.52, 409.34, 455.62, 501.84, 548.08] S80o = [10.3, 13.7, 17.1, 21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 101.6, 114.3, 141.3, 168.3, 219.1, 273, 323.8, 355.6, 406.4, 457, 508, 559, 610] S80t = [2.41, 3.02, 3.2, 3.73, 3.91, 4.55, 4.85, 5.08, 5.54, 7.01, 7.62, 8.08, 8.56, 9.53, 10.97, 12.7, 15.09, 17.48, 19.05, 21.44, 23.83, 26.19, 28.58, 30.96] NPS100 = [8, 10, 12, 14, 16, 18, 20, 22, 24] S100i = [188.92, 236.48, 280.92, 307.94, 354.02, 398.28, 442.92, 489.14, 532.22] S100o = [219.1, 273, 323.8, 355.6, 406.4, 457, 508, 559, 610] S100t = [15.09, 18.26, 21.44, 23.83, 26.19, 29.36, 32.54, 34.93, 38.89] NPS120 = [4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24] S120i = [92.04, 115.9, 139.76, 182.58, 230.12, 273, 300.02, 344.48, 387.14, 431.8, 476.44, 517.96] S120o = [114.3, 141.3, 168.3, 219.1, 273, 323.8, 355.6, 406.4, 457, 508, 559, 610] S120t = [11.13, 12.7, 14.27, 18.26, 21.44, 25.4, 27.79, 30.96, 34.93, 38.1, 41.28, 46.02] NPS140 = [8, 10, 12, 14, 16, 18, 20, 22, 24] S140i = [177.86, 222.2, 266.64, 292.1, 333.34, 377.66, 419.1, 463.74, 505.26] S140o = [219.1, 273, 323.8, 355.6, 406.4, 457, 508, 559, 610] S140t = [20.62, 25.4, 28.58, 31.75, 36.53, 39.67, 44.45, 47.63, 52.37] NPS160 = [0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24] S160i = [11.74, 15.58, 20.7, 29.5, 34.02, 42.82, 53.94, 66.64, 87.32, 109.54, 131.78, 173.08, 215.84, 257.16, 284.18, 325.42, 366.52, 407.98, 451.04, 490.92] S160o = [21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 114.3, 141.3, 168.3, 219.1, 273, 323.8, 355.6, 406.4, 457, 508, 559, 610] S160t = [4.78, 5.56, 6.35, 6.35, 7.14, 8.74, 9.53, 11.13, 13.49, 15.88, 18.26, 23.01, 28.58, 33.32, 35.71, 40.49, 45.24, 50.01, 53.98, 59.54] # Schedules designated STD, XS, and XXS NPSSTD = [0.125, 0.25, 0.375, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48] STDi = [6.84, 9.22, 12.48, 15.76, 20.96, 26.64, 35.08, 40.94, 52.48, 62.68, 77.92, 90.12, 102.26, 128.2, 154.08, 202.74, 254.46, 304.74, 336.54, 387.34, 437.94, 488.94, 539.94, 590.94, 640.94, 691.94, 742.94, 793.94, 844.94, 894.94, 945.94, 996.94, 1047.94, 1098.94, 1148.94, 1199.94] STDo = [10.3, 13.7, 17.1, 21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 101.6, 114.3, 141.3, 168.3, 219.1, 273, 323.8, 355.6, 406.4, 457, 508, 559, 610, 660, 711, 762, 813, 864, 914, 965, 1016, 1067, 1118, 1168, 1219] STDt = [1.73, 2.24, 2.31, 2.77, 2.87, 3.38, 3.56, 3.68, 3.91, 5.16, 5.49, 5.74, 6.02, 6.55, 7.11, 8.18, 9.27, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53] NPSXS = [0.125, 0.25, 0.375, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48] XSi = [5.48, 7.66, 10.7, 13.84, 18.88, 24.3, 32.5, 38.14, 49.22, 58.98, 73.66, 85.44, 97.18, 122.24, 146.36, 193.7, 247.6, 298.4, 330.2, 381, 431.6, 482.6, 533.6, 584.6, 634.6, 685.6, 736.6, 787.6, 838.6, 888.6, 939.6, 990.6, 1041.6, 1092.6, 1142.6, 1193.6] XSo = [10.3, 13.7, 17.1, 21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 101.6, 114.3, 141.3, 168.3, 219.1, 273, 323.8, 355.6, 406.4, 457, 508, 559, 610, 660, 711, 762, 813, 864, 914, 965, 1016, 1067, 1118, 1168, 1219] XSt = [2.41, 3.02, 3.2, 3.73, 3.91, 4.55, 4.85, 5.08, 5.54, 7.01, 7.62, 8.08, 8.56, 9.53, 10.97, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7] NPSXXS = [0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 4, 5, 6, 8, 10, 12] XXSi = [6.36, 11.06, 15.22, 22.8, 28, 38.16, 44.96, 58.42, 80.06, 103.2, 124.4, 174.64, 222.2, 273] XXSo = [21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 114.3, 141.3, 168.3, 219.1, 273, 323.8] XXSt = [7.47, 7.82, 9.09, 9.7, 10.15, 11.07, 14.02, 15.24, 17.12, 19.05, 21.95, 22.23, 25.4, 25.4] NPSS5 = [0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 30] SS5DN = [15, 20, 25, 32, 40, 50, 65, 80, 90, 100, 125, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600, 750] SS5i = [18, 23.4, 30.1, 38.9, 45, 57, 68.78, 84.68, 97.38, 110.08, 135.76, 162.76, 213.56, 266.3, 315.98, 347.68, 398.02, 448.62, 498.44, 549.44, 598.92, 749.3] SS5o = [21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 101.6, 114.3, 141.3, 168.3, 219.1, 273.1, 323.9, 355.6, 406.4, 457, 508, 559, 610, 762] SS5t = [1.65, 1.65, 1.65, 1.65, 1.65, 1.65, 2.11, 2.11, 2.11, 2.11, 2.77, 2.77, 2.77, 3.4, 3.96, 3.96, 4.19, 4.19, 4.78, 4.78, 5.54, 6.35] # Schedules 10, 40 and 80 from ASME B36.19M - Stainless Steel Pipe NPSS10 = [0.125, 0.25, 0.375, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 30] SS10DN = [6, 8, 10, 15, 20, 25, 32, 40, 50, 65, 80, 90, 100, 125, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600, 750] SS10i = [7.82, 10.4, 13.8, 17.08, 22.48, 27.86, 36.66, 42.76, 54.76, 66.9, 82.8, 95.5, 108.2, 134.5, 161.5, 211.58, 264.72, 314.76, 346.04, 396.84, 447.44, 496.92, 547.92, 597.3, 746.16] SS10o = [10.3, 13.7, 17.1, 21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 101.6, 114.3, 141.3, 168.3, 219.1, 273.1, 323.9, 355.6, 406.4, 457, 508, 559, 610, 762] SS10t = [1.24, 1.65, 1.65, 2.11, 2.11, 2.77, 2.77, 2.77, 2.77, 3.05, 3.05, 3.05, 3.05, 3.4, 3.4, 3.76, 4.19, 4.57, 4.78, 4.78, 4.78, 5.54, 5.54, 6.35, 7.92] NPSS40 = [0.125, 0.25, 0.375, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 24] SS40DN = [6, 8, 10, 15, 20, 25, 32, 40, 50, 65, 80, 90, 100, 125, 150, 200, 250, 300, 350, 400, 450, 500, 600] SS40i = [6.84, 9.22, 12.48, 15.76, 20.96, 26.64, 35.08, 40.94, 52.48, 62.68, 77.92, 90.12, 102.26, 128.2, 154.08, 202.74, 254.56, 304.84, 336.54, 387.34, 437.94, 488.94, 590.94] SS40o = [10.3, 13.7, 17.1, 21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 101.6, 114.3, 141.3, 168.3, 219.1, 273.1, 323.9, 355.6, 406.4, 457, 508, 610] SS40t = [1.73, 2.24, 2.31, 2.77, 2.87, 3.38, 3.56, 3.68, 3.91, 5.16, 5.49, 5.74, 6.02, 6.55, 7.11, 8.18, 9.27, 9.53, 9.53, 9.53, 9.53, 9.53, 9.53] NPSS80 = [0.125, 0.25, 0.375, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 24] SS80DN = [6, 8, 10, 15, 20, 25, 32, 40, 50, 65, 80, 90, 100, 125, 150, 200, 250, 300, 350, 400, 450, 500, 600] SS80i = [5.48, 7.66, 10.7, 13.84, 18.88, 24.3, 32.5, 38.14, 49.22, 58.98, 73.66, 85.44, 97.18, 122.24, 146.36, 193.7, 247.7, 298.5, 330.2, 381, 431.6, 482.6, 584.6] SS80o = [10.3, 13.7, 17.1, 21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 101.6, 114.3, 141.3, 168.3, 219.1, 273.1, 323.9, 355.6, 406.4, 457, 508, 610] SS80t = [2.41, 3.02, 3.2, 3.73, 3.91, 4.55, 4.85, 5.08, 5.54, 7.01, 7.62, 8.08, 8.56, 9.53, 10.97, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7] # ABS; note the IPS units are the standard. These are converted from IPS. NPS_D1527 = [0.125, 0.25, 0.375, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12] S40i_D1527 = [6.8326, 9.2456, 12.5222, 15.7988, 20.9296, 26.6446, 33.528, 40.894, 52.5018, 62.7126, 77.9272, 90.1192, 102.2604, 128.1938, 154.051, 202.7174, 254.508, 303.2252] S40o_D1527 = S80o_D1527 = [10.287, 13.716, 17.145, 21.336, 26.67, 33.401, 40.64, 48.26, 60.325, 73.025, 88.9, 101.6, 114.3, 141.3002, 168.275, 219.075, 273.05, 323.85] S40t_D1527 = [1.7272, 2.2352, 2.3114, 2.7686, 2.8702, 3.3782, 3.556, 3.683, 3.9116, 5.1562, 5.4864, 5.7404, 6.0198, 6.5532, 7.112, 8.1788, 9.271, 10.3124] S80i_D1527 = [5.461, 7.6708, 10.7442, 13.8684, 18.8468, 24.3078, 30.9372, 38.1, 49.2506, 59.0042, 73.66, 85.4456, 97.1804, 122.2502, 146.3294, 193.675, 242.9256, 288.9504] S80t_D1527 = [2.413, 3.0226, 3.2004, 3.7338, 3.9116, 4.5466, 4.8514, 5.08, 5.5372, 7.0104, 7.62, 8.0772, 8.5598, 9.525, 10.9728, 12.7, 15.0622, 17.4498] # D2680 ABS and PVC; note the IPS units are the standard. These are converted from IPS. NPS_D2680 = [8, 10, 12, 15] SPVCo_D2680 = SABSo_D2680 = [239.014, 298.45, 357.378, 447.548] SPVCi_D2680 = SABSi_D2680 = [196.85, 247.65, 298.45, 374.65] SPVCt_D2680 = SABSt_D2680 = [21.082, 25.4, 29.464, 36.449] # AWWA C900 PVC # Standard does not specify if IPS or SI units are authoritative # SI units are used here. NPS_C900 = [4, 6, 8, 10, 12] SDR14o_C900 = SDR18o_C900 = SDR25o_C900 = [121.9, 175.3, 229.9, 281.9, 335.3] SDR25t_C900 = [4.88, 7.01, 9.19, 11.28, 13.41] SDR25i_C900 = [112.14, 161.28, 211.52, 259.34, 308.48] SDR18t_C900 = [6.78, 9.73, 12.78, 15.67, 18.62] SDR18i_C900 = [108.34, 155.84, 204.34, 250.56, 298.06] SDR14t_C900 = [8.71, 12.52, 16.41, 20.14, 23.95] SDR14i_C900 = [104.48, 150.26, 197.08, 241.62, 287.4] # AWWA C905 # Standard does not specify if IPS or SI units are authoritative # SI units are used here. NPS_C905 = [14, 16, 18, 20, 24, 30, 36, 42, 48] NPSCIDR14_C905 = [14, 16, 18] SCIDR14o_C905 = [388.6, 442.0, 495.3] SCIDR14i_C905 = [333.08, 378.86, 424.54] SCIDR14t_C905 = [27.76, 31.57, 35.38] NPSCIDR18_C905 = [14, 16, 18, 20, 24, 30] SCIDR18o_C905 = [388.6, 442.0, 495.3, 548.6, 655.3, 812.8] SCIDR18i_C905 = [345.42, 392.88, 440.28, 487.64, 582.5, 722.48] SCIDR18t_C905 = [21.59, 24.56, 27.51, 30.48, 36.4, 45.16] NPSCIDR21_C905 = [14, 16, 18, 20, 24, 30, 36] SCIDR21o_C905 = [388.6, 442.0, 495.3, 548.6, 655.3, 812.8, 972.8] SCIDR21i_C905 = [351.58, 399.9, 448.1, 496.32, 592.86, 735.38, 880.14] SCIDR21t_C905 = [18.51, 21.05, 23.6, 26.14, 31.22, 38.71, 46.33] NPSCIDR25_C905 = NPS_C905 SCIDR25o_C905 = [388.6, 442.0, 495.3, 548.6, 655.3, 812.8, 972.8, 1130.3, 1290.3] SCIDR25i_C905 = [357.52, 406.64, 455.68, 504.7, 602.88, 747.78, 894.98, 1039.88, 1187.08] SCIDR25t_C905 = [15.54, 17.68, 19.81, 21.95, 26.21, 32.51, 38.91, 45.21, 51.61] NPSCIDR325_C905 = NPS_C905 SCIDR325o_C905 = [388.6, 442.0, 495.3, 548.6, 655.3, 812.8, 972.8, 1130.3, 1290.3] SCIDR325i_C905 = [364.68, 414.82, 464.82, 514.82, 614.96, 762.76, 912.96, 1060.76, 1210.9] SCIDR325t_C905 = [11.96, 13.59, 15.24, 16.89, 20.17, 25.02, 29.92, 34.77, 39.7] NPSCIDR41_C905 = NPS_C905 SCIDR41o_C905 = [388.6, 442.0, 495.3, 548.6, 655.3, 812.8, 972.8, 1130.3, 1290.3] SCIDR41i_C905 = [369.66, 420.46, 471.12, 521.82, 623.34, 773.18, 925.36, 1075.18, 1227.36] SCIDR41t_C905 = [9.47, 10.77, 12.09, 13.39, 15.98, 19.81, 23.72, 27.56, 31.47] NPSCIDR51_C905 = [18, 20, 24, 30, 36, 42, 48] SCIDR51o_C905 = [495.3, 548.6, 655.3, 812.8, 972.8, 1130.3, 1290.3] SCIDR51i_C905 = [475.9, 527.06, 629.6, 780.94, 934.64, 1086.0, 1239.7] SCIDR51t_C905 = [9.7, 10.77, 12.85, 15.93, 19.08, 22.15, 25.3] NPSIPSDR21_C905 = NPSIPSDR26_C905 = NPSIPSDR325_C905 = NPSIPSDR41_C905 = [14, 16, 18, 20, 24, 30, 36] SIPSDR21o_C905 = SIPSDR26o_C905 = SIPSDR325o_C905 = SIPSDR41o_C905 = [355.6, 406.4, 457.2, 508.0, 609.6, 762.0, 914.4] SIPSDR21i_C905 = [321.76, 367.7, 413.66, 459.64, 551.54, 689.46, 827.32] SIPSDR21t_C905 = [16.92, 19.35, 21.77, 24.18, 29.03, 36.27, 43.54] SIPSDR26i_C905 = [328.26, 375.16, 422.04, 468.94, 562.72, 703.38, 844.04] SIPSDR26t_C905 = [13.67, 15.62, 17.58, 19.53, 23.44, 29.31, 35.18] SIPSDR325i_C905 = [333.76, 381.4, 429.06, 476.76, 572.1, 715.12, 858.12] SIPSDR325t_C905 = [10.92, 12.5, 14.07, 15.62, 18.75, 23.44, 28.14] SIPSDR41i_C905 = [338.28, 386.58, 434.9, 483.2, 579.88, 724.82, 869.8] SIPSDR41t_C905 = [8.66, 9.91, 11.15, 12.4, 14.86, 18.59, 22.3] # ASTM F679 ; note the IPS units are the standard. These are converted from IPS. NPS_F679 = [18, 21, 24, 27, 30, 36, 42, 48, 54, 60] SPS46o_F679 = SPS75o_F679 = SPS115o_F679 = [475.0054, 559.9938, 629.9962, 710.0062, 812.8, 972.82, 1130.3, 1290.32, 1462.024, 1564.894] SPS46t_F679 = [12.6746, 14.9352, 16.7894, 18.923, 21.6662, 25.9334, 30.1498, 34.417, 38.989, 41.7322] SPS46i_F679 = [449.6562, 530.1234, 596.4174, 672.1602, 769.4676, 920.9532, 1070.0004, 1221.486, 1384.046, 1481.4296] SPS75t_F679 = [14.8336, 17.5006, 19.685, 22.1996, 25.4, 30.4038, 35.3314, 40.3352, 45.6946, 48.9204] SPS75i_F679 = [445.3382, 524.9926, 590.6262, 665.607, 762.0, 912.0124, 1059.6372, 1209.6496, 1370.6348, 1467.0532] SPS115t_F679 = [17.0434, 20.0914, 22.5806, 25.4508, 29.1592, 34.8742, 40.5384, 46.2788, 52.4256, 56.134] SPS115i_F679 = [440.9186, 519.811, 584.835, 659.1046, 754.4816, 903.0716, 1049.2232, 1197.7624, 1357.1728, 1452.626] # ASTM D2665 PVC drain and vent pipe; note the IPS units are the standard. These are converted from IPS. NPS_D2665 = [1.25, 1.5, 2, 3, 4, 6, 8, 10, 12, 14, 16, 18, 20, 24] SPVCo_D2665 = [42.164, 48.26, 60.325, 88.9, 114.3, 168.275, 219.075, 273.05, 323.85, 355.6, 406.4, 457.2, 508.0, 609.6] SPVCt_D2665 = [3.556, 3.683, 3.9116, 5.4864, 6.0198, 7.112, 8.1788, 9.271, 10.3124, 10.922, 12.7, 14.2748, 15.0622, 17.4498] SPVCi_D2665 = [35.052, 40.894, 52.5018, 77.9272, 102.2604, 154.051, 202.7174, 254.508, 303.2252, 333.756, 381.0, 428.6504, 477.8756, 574.7004] # ASTM D1785 PVC schedules; note the IPS units are the standard. These are converted from IPS. NPS_D1785 = [0.125, 0.25, 0.375, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 24] S40o_D1785 = S80o_D1785 = [10.287, 13.716, 17.145, 21.336, 26.67, 33.401, 42.164, 48.26, 60.325, 73.025, 88.9, 101.6, 114.3, 141.3002, 168.275, 219.075, 273.05, 323.85, 355.6, 406.4, 457.2, 508.0, 609.6] S40i_D1785 = [6.8326, 9.2456, 12.5222, 15.7988, 20.9296, 26.6446, 35.052, 40.894, 52.5018, 62.7126, 77.9272, 90.1192, 102.2604, 128.1938, 154.051, 202.7174, 254.508, 303.2252, 333.4004, 381.0, 428.6504, 477.8756, 574.7004] S40t_D1785 = [1.7272, 2.2352, 2.3114, 2.7686, 2.8702, 3.3782, 3.556, 3.683, 3.9116, 5.1562, 5.4864, 5.7404, 6.0198, 6.5532, 7.112, 8.1788, 9.271, 10.3124, 11.0998, 12.7, 14.2748, 15.0622, 17.4498] S80i_D1785 = [5.461, 7.6708, 10.7442, 13.8684, 18.8468, 24.3078, 32.4612, 38.1, 49.2506, 59.0042, 73.66, 85.4456, 97.1804, 122.2502, 146.3294, 193.675, 242.9256, 288.9504, 317.5, 363.5756, 409.6004, 455.6252, 547.7256] S80t_D1785 = [2.413, 3.0226, 3.2004, 3.7338, 3.9116, 4.5466, 4.8514, 5.08, 5.5372, 7.0104, 7.62, 8.0772, 8.5598, 9.525, 10.9728, 12.7, 15.0622, 17.4498, 19.05, 21.4122, 23.7998, 26.1874, 30.9372] NPS120_D1785 = NPS_D1785[3:18] S120i_D1785 = [12.7, 18.034, 23.241, 31.242, 36.83, 47.625, 57.785, 71.12, 83.82, 92.1004, 115.9002, 139.7254, 182.6006, 230.2256, 273.05] S120t_D1785 = [4.318, 4.318, 5.08, 5.461, 5.715, 6.35, 7.62, 8.89, 8.89, 11.0998, 12.7, 14.2748, 18.2372, 21.4122, 25.4] S120o_D1785 = S80o_D1785[3:18] # ASTM D2241 NPS_D2241 = [0.125, 0.25, 0.375, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 24, 30, 36] o_D2241_complete = [10.287, 13.716, 17.145, 21.336, 26.67, 33.401, 42.164, 48.26, 60.325, 73.025, 88.9, 101.6, 114.3, 141.3002, 168.275, 219.075, 273.05, 323.85, 355.6, 406.4, 457.2, 508.0, 609.6, 762.0, 914.4] NPSDR64_D2241 = NPS_D2241[12:18] SDR64o_D2241 = o_D2241_complete[12:18] SDR64t_D2241 = [1.778, 2.2098, 2.6416, 3.429, 4.2672, 5.0546] SDR64i_D2241 = [110.744, 136.8806, 162.9918, 212.217, 264.5156, 313.7408] NPSDR41_D2241 = NPS_D2241[10:] SDR41o_D2241 = o_D2241_complete[10:] SDR41t_D2241 = [2.159, 2.4892, 2.794, 3.4544, 4.1148, 5.334, 6.6548, 7.8994, 8.6614, 9.906, 11.1506, 12.3952, 14.859, 18.5928, 22.3012] SDR41i_D2241 = [84.582, 96.6216, 108.712, 134.3914, 160.0454, 208.407, 259.7404, 308.0512, 338.2772, 386.588, 434.8988, 483.2096, 579.882, 724.8144, 869.7976] NPSDR325_D2241 = NPS_D2241[6:] SDR325o_D2241 = o_D2241_complete[6:] SDR325t_D2241 = [1.524, 1.524, 1.8542, 2.2352, 2.7432, 3.1242, 3.5052, 4.3434, 5.1816, 6.731, 8.4074, 9.9568, 10.922, 12.4968, 14.0716, 15.621, 18.7452, 23.4442, 28.1432] SDR325i_D2241 = [39.116, 45.212, 56.6166, 68.5546, 83.4136, 95.3516, 107.2896, 132.6134, 157.9118, 205.613, 256.2352, 303.9364, 333.756, 381.4064, 429.0568, 476.758, 572.1096, 715.1116, 858.1136] NPSDR26_D2241 = NPS_D2241[5:] SDR26o_D2241 = o_D2241_complete[5:] SDR26t_D2241 = [1.524, 1.6256, 1.8542, 2.3114, 2.794, 3.429, 3.9116, 4.3942, 5.4356, 6.477, 8.4328, 10.4902, 12.446, 13.6652, 15.621, 17.5768, 19.5326, 23.4442, 29.3116, 35.179] SDR26i_D2241 = [30.353, 38.9128, 44.5516, 55.7022, 67.437, 82.042, 93.7768, 105.5116, 130.429, 155.321, 202.2094, 252.0696, 298.958, 328.2696, 375.158, 422.0464, 468.9348, 562.7116, 703.3768, 844.042] NPSDR21_D2241 = NPS_D2241[4:] SDR21o_D2241 = o_D2241_complete[4:] SDR21t_D2241 = [1.524, 1.6002, 2.0066, 2.286, 2.8702, 3.4798, 4.2418, 4.826, 5.4356, 6.731, 8.0264, 10.414, 12.9794, 15.3924, 16.9164, 19.3548, 21.7678, 24.1808, 29.0322, 36.2712, 43.5356] SDR21i_D2241 = [23.622, 30.2006, 38.1508, 43.688, 54.5846, 66.0654, 80.4164, 91.948, 103.4288, 127.8382, 152.2222, 198.247, 247.0912, 293.0652, 321.7672, 367.6904, 413.6644, 459.6384, 551.5356, 689.4576, 827.3288] NPSDR17_D2241 = NPS_D2241[4:] SDR17o_D2241 = o_D2241_complete[4:] SDR17t_D2241 = [1.5748, 1.9558, 2.4892, 2.8448, 3.556, 4.2926, 5.2324, 5.969, 6.731, 8.3058, 9.906, 12.9032, 16.0528, 19.05, 20.9042, 23.9014, 26.8986, 29.8704, 35.8648, 44.831, 53.7972] SDR17i_D2241 = [23.5204, 29.4894, 37.1856, 42.5704, 53.213, 64.4398, 78.4352, 89.662, 100.838, 124.6886, 148.463, 193.2686, 240.9444, 285.75, 313.7916, 358.5972, 403.4028, 448.2592, 537.8704, 672.338, 806.8056] NPSDR135_D2241 = NPS_D2241[:15] SDR135o_D2241 = o_D2241_complete[:15] SDR135t_D2241 = [1.524, 1.524, 1.524, 1.5748, 1.9812, 2.4638, 3.1242, 3.5814, 4.4704, 5.4102, 6.5786, 7.5184, 8.4582, 10.4648, 12.4714] SDR135i_D2241 = [7.239, 10.668, 14.097, 18.1864, 22.7076, 28.4734, 35.9156, 41.0972, 51.3842, 62.2046, 75.7428, 86.5632, 97.3836, 120.3706, 143.3322] # D2241 in Copper tube sizes NPS_CTS_D2241 = [0.5, 0.75, 1, 1.25, 1.5, 2] o_CTS_D2241 = [15.875, 22.225, 28.575, 34.925, 41.275, 53.975] NPSDR21_D2241CTS = NPS_CTS_D2241[2:] SDR21o_D2241CTS = o_CTS_D2241[2:] SDR21t_D2241CTS = [1.524, 1.651, 1.9558, 2.5654] SDR21i_D2241CTS = [25.527, 31.623, 37.3634, 48.8442] NPSDR17_D2241CTS = NPS_CTS_D2241[1:] SDR17o_D2241CTS = o_CTS_D2241[1:] SDR17t_D2241CTS = [1.524, 1.6764, 2.0574, 2.4384, 3.175] SDR17i_D2241CTS = [19.177, 25.2222, 30.8102, 36.3982, 47.625] NPSDR135_D2241CTS = NPS_CTS_D2241 SDR135o_D2241CTS = o_CTS_D2241 SDR135t_D2241CTS = [1.524, 1.651, 2.1082, 2.5908, 3.048, 3.9878] SDR135i_D2241CTS = [12.827, 18.923, 24.3586, 29.7434, 35.179, 45.9994] NPSDR11_D2241CTS = NPS_CTS_D2241 SDR11o_D2241CTS = o_CTS_D2241 SDR11t_D2241CTS = [1.524, 2.032, 2.5908, 3.175, 3.7592, 4.9022] SDR11i_D2241CTS = [12.827, 18.161, 23.3934, 28.575, 33.7566, 44.1706] NPS_D2241PIP = [6, 8, 10, 12, 15, 18, 21, 24, 27] o_D2241PIP = [155.956, 207.264, 259.08, 310.896, 388.62, 475.0054, 559.9938, 629.9962, 710.0062] NPSDR81_D2241PIP = NPS_D2241PIP[:5] SDR81o_D2241PIP = o_D2241PIP[:5] SDR81t_D2241PIP = [1.9304, 2.5654, 3.2004, 3.8354, 4.8006] SDR81i_D2241PIP = [152.0952, 202.1332, 252.6792, 303.2252, 379.0188] NPSDR51_D2241PIP = NPS_D2241PIP SDR51o_D2241PIP = o_D2241PIP SDR51t_D2241PIP = [3.048, 4.064, 5.08, 6.096, 7.62, 9.2964, 10.9728, 12.3444, 13.9192] SDR51i_D2241PIP = [149.86, 199.136, 248.92, 298.704, 373.38, 456.4126, 538.0482, 605.3074, 682.1678] NPSDR41_D2241PIP = NPS_D2241PIP SDR41o_D2241PIP = o_D2241PIP SDR41t_D2241PIP = [3.81, 5.0546, 6.3246, 7.5946, 9.4742, 11.5824, 13.6652, 15.367, 17.3228] SDR41i_D2241PIP = [148.336, 197.1548, 246.4308, 295.7068, 369.6716, 451.8406, 532.6634, 599.2622, 675.3606] NPSDR35_D2241PIP = NPS_D2241PIP[4:] SDR35o_D2241PIP = o_D2241PIP[4:] SDR35t_D2241PIP = [11.0998, 13.5636, 16.002, 18.0086, 20.2946] SDR35i_D2241PIP = [366.4204, 447.8782, 527.9898, 593.979, 669.417] NPSDR325_D2241PIP = NPS_D2241PIP SDR325o_D2241PIP = o_D2241PIP SDR325t_D2241PIP = [4.8006, 6.3754, 7.9756, 9.5758, 11.9634, 14.605, 17.2212, 19.3802, 21.844] SDR325i_D2241PIP = [146.3548, 194.5132, 243.1288, 291.7444, 364.6932, 445.7954, 525.5514, 591.2358, 666.3182] NPSDR26_D2241PIP = NPS_D2241PIP[4:] SDR26o_D2241PIP = o_D2241PIP[4:] SDR26t_D2241PIP = [14.9352, 18.2626, 21.5392, 24.2316, 27.305] SDR26i_D2241PIP = [358.7496, 438.4802, 516.9154, 581.533, 655.3962] NPSDR21_D2241PIP = NPS_D2241PIP[4:5] SDR21o_D2241PIP = o_D2241PIP[4:5] SDR21t_D2241PIP = [18.4912] SDR21i_D2241PIP = [351.6376] # ASTM F441 IPS - has an independent SI and IPS data set NPS_F441 = [0.25, 0.375, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 8, 10, 12, 14, 16] DN_F441 = [8, 10, 15, 20, 25, 32, 40, 50, 65, 80, 90, 100, 125, 150, 200, 250, 300, 350, 400] S80o_F441IPS = S40o_F441IPS = [13.716, 17.145, 21.336, 26.67, 33.401, 42.164, 48.26, 60.325, 73.025, 88.9, 101.6, 114.3, 141.3002, 168.275, 219.075, 273.05, 323.85, 355.6, 406.4] S80o_F441SI = S40o_F441SI = [13.7, 17.1, 21.3, 26.7, 33.4, 42.2, 48.3, 60.3, 73, 88.9, 101.6, 114.3, 141.3, 168.3, 219.1, 273.1, 323.9, 355.6, 406.4] S40t_F441IPS = [2.2352, 2.3114, 2.7686, 2.8702, 3.3782, 3.556, 3.683, 3.9116, 5.1562, 5.4864, 5.7404, 6.0198, 6.5532, 7.112, 8.1788, 9.271, 10.3124, 11.0998, 12.7] S40t_F441SI = [2.24, 2.31, 2.77, 2.87, 3.38, 3.56, 3.68, 3.91, 5.16, 5.49, 5.74, 6.02, 6.55, 7.11, 8.18, 9.27, 10.31, 11.1, 12.7] S40i_F441IPS = [9.2456, 12.5222, 15.7988, 20.9296, 26.6446, 35.052, 40.894, 52.5018, 62.7126, 77.9272, 90.1192, 102.2604, 128.1938, 154.051, 202.7174, 254.508, 303.2252, 333.4004, 381.0] S40i_F441SI = [9.22, 12.48, 15.76, 20.96, 26.64, 35.08, 40.94, 52.48, 62.68, 77.92, 90.12, 102.26, 128.2, 154.08, 202.74, 254.56, 303.28, 333.4, 381.0] S80t_F441IPS = [3.0226, 3.2004, 3.7338, 3.9116, 4.5466, 4.8514, 5.08, 5.5372, 7.0104, 7.62, 8.0772, 8.5598, 9.525, 10.9728, 12.7, 15.0622, 17.4498, 19.05, 21.4122] S80t_F441SI = [3.02, 3.2, 3.73, 3.91, 4.55, 4.85, 5.08, 5.54, 7.01, 7.62, 8.08, 8.56, 9.52, 10.97, 12.7, 15.06, 17.45, 19.05, 21.14] S80i_F441IPS = [7.6708, 10.7442, 13.8684, 18.8468, 24.3078, 32.4612, 38.1, 49.2506, 59.0042, 73.66, 85.4456, 97.1804, 122.2502, 146.3294, 193.675, 242.9256, 288.9504, 317.5, 363.5756] S80i_F441SI = [7.66, 10.7, 13.84, 18.88, 24.3, 32.5, 38.14, 49.22, 58.98, 73.66, 85.44, 97.18, 122.26, 146.36, 193.7, 242.98, 289.0, 317.5, 364.12] # ASTM F2619 # Note size 26" is missing in the table but the size it should be is obvious. NPS_F2619 = [0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 42, 48, 54, 63, 65] o_F2619IPS = [21.336, 26.67, 33.401, 42.164, 48.26, 60.325, 73.025, 88.9, 114.3, 141.3002, 168.275, 219.075, 273.05, 323.85, 355.6, 406.4, 457.2, 508.0, 558.8, 609.6, 660.4, 711.2, 762.0, 812.8, 863.6, 914.4, 1066.8, 1219.2, 1371.6, 1600.2, 1651.0] o_F2619SI = [21.34, 26.67, 33.4, 42.16, 48.26, 60.33, 73.03, 88.9, 114.3, 141.3, 168.28, 219.08, 273.05, 323.85, 355.6, 406.4, 457.2, 508.0, 558.8, 609.6, 660.4, 711.2, 762.0, 812.8, 863.6, 914.4, 1066.8, 1219.2, 1371.6, 1600.2, 1651.0] NPSDR7_F2619 = NPS_F2619[:20] SDR7o_F2619IPS = o_F2619IPS[:20] SDR7o_F2619SI = o_F2619SI[:20] SDR7t_F2619IPS = [3.048, 3.81, 4.7752, 6.0198, 6.8834, 8.6106, 10.4394, 12.7, 16.3322, 20.193, 24.0284, 31.2928, 39.0144, 46.2534, 50.8, 58.0644, 65.3034, 72.5678, 79.8322, 87.0966] SDR7t_F2619SI = [3.05, 3.81, 4.78, 6.02, 6.88, 8.61, 10.43, 12.7, 16.33, 20.19, 24.03, 31.29, 39.01, 46.25, 50.8, 58.06, 65.3, 72.57, 79.83, 87.1] SDR7i_F2619IPS = [15.24, 19.05, 23.8506, 30.1244, 34.4932, 43.1038, 52.1462, 63.5, 81.6356, 100.9142, 120.2182, 156.4894, 195.0212, 231.3432, 254.0, 290.2712, 326.5932, 362.8644, 399.1356, 435.4068] SDR7i_F2619SI = [15.24, 19.05, 23.84, 30.12, 34.5, 43.11, 52.17, 63.5, 81.64, 100.92, 120.22, 156.5, 195.03, 231.35, 254.0, 290.28, 326.6, 362.86, 399.14, 435.4] NPSDR73_F2619 = NPS_F2619[:20] SDR73o_F2619IPS = o_F2619IPS[:20] SDR73o_F2619SI = o_F2619SI[:20] SDR73t_F2619IPS = [2.921, 3.6576, 4.572, 5.7658, 6.604, 8.255, 10.0076, 12.1666, 15.6464, 19.3548, 23.0632, 30.0228, 37.4142, 44.3738, 48.7172, 55.6768, 62.6364, 69.596, 76.5556, 83.5152] SDR73t_F2619SI = [2.92, 3.66, 4.57, 5.77, 6.6, 8.26, 10.0, 12.17, 15.65, 19.36, 23.06, 30.02, 37.41, 44.37, 48.72, 55.68, 62.64, 69.6, 76.56, 83.52] SDR73i_F2619IPS = [15.494, 19.3548, 24.257, 30.6324, 35.052, 43.815, 53.0098, 64.5668, 83.0072, 102.5906, 122.1486, 159.0294, 198.2216, 235.1024, 258.1656, 295.0464, 331.9272, 368.808, 405.6888, 442.5696] SDR73i_F2619SI = [15.5, 19.35, 24.26, 30.62, 35.06, 43.81, 53.03, 64.56, 83.0, 102.58, 122.16, 159.04, 198.23, 235.11, 258.16, 295.04, 331.92, 368.8, 405.68, 442.56] NPSDR9_F2619 = NPS_F2619[:23] SDR9o_F2619IPS = o_F2619IPS[:23] SDR9o_F2619SI = o_F2619SI[:23] SDR9t_F2619IPS = [2.3622, 2.9718, 3.7084, 4.6736, 5.3594, 6.7056, 8.1026, 9.8806, 12.7, 15.6972, 18.6944, 24.3332, 30.3276, 35.9918, 39.5224, 45.1612, 50.8, 56.4388, 62.0776, 67.7418, 73.3806, 79.0194, 84.6582] SDR9t_F2619SI = [2.36, 2.97, 3.71, 4.67, 5.36, 6.71, 8.1, 9.88, 12.7, 15.7, 18.69, 24.33, 30.33, 35.99, 39.52, 45.16, 50.8, 56.44, 62.08, 67.74, 73.38, 79.02, 84.66] SDR9i_F2619IPS = [16.6116, 20.7264, 25.9842, 32.8168, 37.5412, 46.9138, 56.8198, 69.1388, 88.9, 109.9058, 130.8862, 170.4086, 212.3948, 251.8664, 276.5552, 316.0776, 355.6, 395.1224, 434.6448, 474.1164, 513.6388, 553.1612, 592.6836] SDR9i_F2619SI = [16.62, 20.73, 25.98, 32.82, 37.54, 46.91, 56.83, 69.14, 88.9, 109.9, 130.9, 170.42, 212.39, 251.87, 276.56, 316.08, 355.6, 395.12, 434.64, 474.12, 513.64, 553.16, 592.68] NPSDR11_F2619 = NPS_F2619[:26] SDR11o_F2619IPS = o_F2619IPS[:26] SDR11o_F2619SI = o_F2619SI[:26] SDR11t_F2619IPS = [1.9304, 2.413, 3.048, 3.8354, 4.3942, 5.4864, 6.6294, 8.0772, 10.3886, 12.8524, 15.2908, 19.9136, 24.8158, 29.4386, 32.3342, 36.957, 41.5544, 46.1772, 50.8, 55.4228, 60.0456, 64.643, 69.2658, 73.8886, 78.5114, 83.1342] SDR11t_F2619SI = [1.93, 2.41, 3.05, 3.84, 4.39, 5.49, 6.63, 8.08, 10.39, 12.85, 15.29, 19.91, 24.82, 29.44, 32.33, 36.96, 41.55, 46.18, 50.8, 55.42, 60.05, 62.23, 69.27, 73.89, 78.51, 83.13] SDR11i_F2619IPS = [17.4752, 21.844, 27.305, 34.4932, 39.4716, 49.3522, 59.7662, 72.7456, 93.5228, 115.5954, 137.6934, 179.2478, 223.4184, 264.9728, 290.9316, 332.486, 374.0912, 415.6456, 457.2, 498.7544, 540.3088, 581.914, 623.4684, 665.0228, 706.5772, 748.1316] SDR11i_F2619SI = [17.48, 21.85, 27.3, 34.48, 39.48, 49.35, 59.77, 72.74, 93.52, 115.6, 137.7, 179.26, 223.41, 264.97, 290.94, 332.48, 374.1, 415.64, 457.2, 498.76, 540.3, 586.74, 623.46, 665.02, 706.58, 748.14] NPSDR135_F2619 = NPS_F2619[:27] SDR135o_F2619IPS = o_F2619IPS[:27] SDR135o_F2619SI = o_F2619SI[:27] SDR135t_F2619IPS = [1.5748, 1.9812, 2.4638, 3.1242, 3.5814, 4.4704, 5.4102, 6.5786, 8.4582, 10.4648, 12.4714, 16.2306, 20.2184, 23.9776, 26.3398, 30.099, 33.8582, 37.6174, 41.402, 45.1612, 48.9204, 52.6796, 56.4388, 60.198, 63.9826, 67.7418, 79.0194] SDR135t_F2619SI = [1.58, 1.98, 2.46, 3.12, 3.58, 4.47, 5.41, 6.58, 8.46, 10.47, 12.47, 16.23, 20.22, 23.98, 26.34, 30.1, 33.86, 37.62, 41.4, 45.16, 48.92, 52.68, 56.44, 60.2, 63.98, 67.74, 79.02] SDR135i_F2619IPS = [18.1864, 22.7076, 28.4734, 35.9156, 41.0972, 51.3842, 62.2046, 75.7428, 97.3836, 120.3706, 143.3322, 186.6138, 232.6132, 275.8948, 302.9204, 346.202, 389.4836, 432.7652, 475.996, 519.2776, 562.5592, 605.8408, 649.1224, 692.404, 735.6348, 778.9164, 908.7612] SDR135i_F2619SI = [18.18, 22.71, 28.48, 35.92, 41.1, 51.39, 62.21, 75.74, 97.38, 120.36, 143.34, 186.62, 232.61, 275.89, 302.92, 346.2, 389.48, 432.76, 476.0, 519.28, 562.56, 605.84, 649.12, 692.4, 735.64, 778.92, 908.76] NPSDR17_F2619 = NPS_F2619[5:29] SDR17o_F2619IPS = o_F2619IPS[5:29] SDR17o_F2619SI = o_F2619SI[5:29] SDR17t_F2619IPS = [3.556, 4.2926, 5.2324, 6.731, 8.3058, 9.906, 12.8778, 16.0528, 19.05, 20.9296, 23.9014, 26.8986, 29.8704, 32.8676, 35.8648, 38.8366, 41.8338, 44.831, 47.8028, 50.8, 53.7972, 62.7634, 71.7296, 80.6704] SDR17t_F2619SI = [3.56, 4.29, 5.23, 6.73, 8.31, 9.91, 12.88, 16.05, 19.05, 20.93, 23.9, 26.9, 29.87, 32.87, 35.86, 38.84, 41.83, 44.83, 47.8, 50.8, 53.8, 62.76, 71.73, 80.67] SDR17i_F2619IPS = [53.213, 64.4398, 78.4352, 100.838, 124.6886, 148.463, 193.3194, 240.9444, 285.75, 313.7408, 358.5972, 403.4028, 448.2592, 493.0648, 537.8704, 582.7268, 627.5324, 672.338, 717.1944, 762.0, 806.8056, 941.2732, 1075.7408, 1210.2592] SDR17i_F2619SI = [53.21, 64.45, 78.44, 100.84, 124.68, 148.46, 193.32, 240.95, 285.75, 313.74, 358.6, 403.4, 448.26, 493.06, 537.88, 582.72, 627.54, 672.34, 717.2, 762.0, 806.8, 941.28, 1075.74, 1210.26] NPSDR21_F2619 = NPS_F2619[6:] SDR21o_F2619IPS = o_F2619IPS[6:] SDR21o_F2619SI = o_F2619SI[6:] SDR21t_F2619IPS = [3.4798, 4.2418, 5.4356, 6.731, 8.001, 10.4394, 13.0048, 15.4178, 16.9418, 19.3548, 21.7678, 24.1808, 26.6192, 29.0322, 31.4452, 33.8582, 36.2966, 38.7096, 41.1226, 43.5356, 50.8, 58.0644, 65.3034, 76.2, 78.613] SDR21t_F2619SI = [3.48, 4.24, 5.44, 6.73, 8, 10.44, 13, 15.42, 16.94, 19.35, 21.77, 24.18, 26.62, 29.03, 31.45, 33.86, 36.3, 38.71, 41.12, 43.54, 50.8, 58.06, 65.3, 76.2, 78.61] SDR21i_F2619IPS = [66.0654, 80.4164, 103.4288, 127.8382, 152.273, 198.1962, 247.0404, 293.0144, 321.7164, 367.6904, 413.6644, 459.6384, 505.5616, 551.5356, 597.5096, 643.4836, 689.4068, 735.3808, 781.3548, 827.3288, 965.2, 1103.0712, 1240.9932, 1447.8, 1493.774] SDR21i_F2619SI = [66.07, 80.42, 103.42, 127.84, 152.28, 198.2, 247.05, 293.01, 321.72, 367.7, 413.66, 459.64, 505.56, 551.54, 597.5, 643.48, 689.4, 735.38, 781.36, 827.32, 965.2, 1103.08, 1241.0, 1447.8, 1493.78] NPSDR26_F2619 = NPS_F2619[8:] SDR26o_F2619IPS = o_F2619IPS[8:] SDR26o_F2619SI = o_F2619SI[8:] SDR26t_F2619IPS = [4.3942, 5.4356, 6.477, 8.4328, 10.4902, 12.446, 13.6652, 15.621, 17.5768, 19.5326, 21.4884, 23.4442, 25.4, 27.3558, 29.3116, 31.2674, 33.2232, 35.179, 41.021, 46.8884, 52.7558, 61.5442, 63.5] SDR26t_F2619SI = [4.39, 5.43, 6.48, 8.43, 10.49, 12.45, 13.67, 15.62, 17.58, 20.22, 21.49, 23.44, 25.4, 27.36, 29.31, 31.27, 33.22, 35.18, 41.02, 46.89, 52.76, 61.55, 63.5] SDR26i_F2619IPS = [105.5116, 130.429, 155.321, 202.2094, 252.0696, 298.958, 328.2696, 375.158, 422.0464, 468.9348, 515.8232, 562.7116, 609.6, 656.4884, 703.3768, 750.2652, 797.1536, 844.042, 984.758, 1125.4232, 1266.0884, 1477.1116, 1524.0] SDR26i_F2619SI = [105.52, 130.44, 155.32, 202.22, 252.07, 298.95, 328.26, 375.16, 422.04, 467.56, 515.82, 562.72, 609.6, 656.48, 703.38, 750.26, 797.16, 844.04, 984.76, 1125.42, 1266.08, 1477.1, 1524.0] NPSDR325_F2619 = NPS_F2619[8:] SDR325o_F2619IPS = o_F2619IPS[8:] SDR325o_F2619SI = o_F2619SI[8:] SDR325t_F2619IPS = [3.5052, 4.3434, 5.1816, 6.731, 8.4074, 9.9568, 10.9474, 12.4968, 14.0716, 15.621, 17.1958, 18.7452, 20.32, 21.8948, 23.4442, 25.019, 26.5684, 28.1432, 32.8168, 37.5158, 42.2148, 49.2252, 50.8] SDR325t_F2619SI = [3.51, 4.35, 5.18, 6.73, 8.41, 9.96, 10.95, 12.5, 14.07, 15.62, 17.2, 18.75, 20.32, 21.89, 23.44, 25.02, 26.57, 28.14, 32.82, 37.52, 42.21, 49.22, 50.8] SDR325i_F2619IPS = [107.2896, 132.6134, 157.9118, 205.613, 256.2352, 303.9364, 333.7052, 381.4064, 429.0568, 476.758, 524.4084, 572.1096, 619.76, 667.4104, 715.1116, 762.762, 810.4632, 858.1136, 1001.1664, 1144.1684, 1287.1704, 1501.7496, 1549.4] SDR325i_F2619SI = [107.28, 132.6, 157.92, 205.62, 256.23, 303.93, 333.7, 381.4, 429.06, 476.76, 524.4, 572.1, 619.76, 667.42, 715.12, 762.76, 810.46, 858.12, 1001.16, 1144.16, 1287.18, 1501.76, 1549.4] schedule_lookup = { '40': (NPS40, S40i, S40o, S40t), '5': (NPS5, S5i, S5o, S5t), '10': (NPS10, S10i, S10o, S10t), '20': (NPS20, S20i, S20o, S20t), '30': (NPS30, S30i, S30o, S30t), '60': (NPS60, S60i, S60o, S60t), '80': (NPS80, S80i, S80o, S80t), '100': (NPS100, S100i, S100o, S100t), '120': (NPS120, S120i, S120o, S120t), '140': (NPS140, S140i, S140o, S140t), '160': (NPS160, S160i, S160o, S160t), 'STD': (NPSSTD, STDi, STDo, STDt), 'XS': (NPSXS, XSi, XSo, XSt), 'XXS': (NPSXXS, XXSi, XXSo, XXSt), '5S': (NPSS5, SS5i, SS5o, SS5t), '10S': (NPSS10, SS10i, SS10o, SS10t), '40S': (NPSS40, SS40i, SS40o, SS40t), '80S': (NPSS80, SS80i, SS80o, SS80t), '40D1527': (NPS_D1527, S40i_D1527, S40o_D1527, S40t_D1527), '80D1527': (NPS_D1527, S80i_D1527, S80o_D1527, S80t_D1527), 'ABSD2680': (NPS_D2680, SABSi_D2680, SABSo_D2680, SABSt_D2680), 'PVCD2680': (NPS_D2680, SPVCi_D2680, SPVCo_D2680, SPVCt_D2680), 'DR25C900': (NPS_C900, SDR25i_C900, SDR25o_C900, SDR25t_C900), 'DR18C900': (NPS_C900, SDR18i_C900, SDR18o_C900, SDR18t_C900), 'DR14C900': (NPS_C900, SDR14i_C900, SDR14o_C900, SDR14t_C900), 'CIDR51C905': (NPSCIDR51_C905, SCIDR51i_C905, SCIDR51o_C905, SCIDR51t_C905), 'CIDR41C905': (NPSCIDR41_C905, SCIDR41i_C905, SCIDR41o_C905, SCIDR41t_C905), 'CIDR325C905': (NPSCIDR325_C905, SCIDR325i_C905, SCIDR325o_C905, SCIDR325t_C905), 'CIDR25C905': (NPSCIDR25_C905, SCIDR25i_C905, SCIDR25o_C905, SCIDR25t_C905), 'CIDR21C905': (NPSCIDR21_C905, SCIDR21i_C905, SCIDR21o_C905, SCIDR21t_C905), 'CIDR18C905': (NPSCIDR18_C905, SCIDR18i_C905, SCIDR18o_C905, SCIDR18t_C905), 'CIDR14C905': (NPSCIDR14_C905, SCIDR14i_C905, SCIDR14o_C905, SCIDR14t_C905), 'IPSDR21': (NPSIPSDR21_C905, SIPSDR21i_C905, SIPSDR21o_C905, SIPSDR21t_C905), 'IPSDR26': (NPSIPSDR26_C905, SIPSDR26i_C905, SIPSDR26o_C905, SIPSDR26t_C905), 'IPSDR325': (NPSIPSDR325_C905, SIPSDR325i_C905, SIPSDR325o_C905, SIPSDR325t_C905), 'IPSDR41': (NPSIPSDR41_C905, SIPSDR41i_C905, SIPSDR41o_C905, SIPSDR41t_C905), 'PS115F679': (NPS_F679, SPS115i_F679, SPS115o_F679, SPS115t_F679), 'PS75F679': (NPS_F679, SPS75i_F679, SPS75o_F679, SPS75t_F679), 'PS46F679': (NPS_F679, SPS46i_F679, SPS46o_F679, SPS46t_F679), 'PVCD2665': (NPS_D2665, SPVCi_D2665, SPVCo_D2665, SPVCt_D2665), '40D1785': (NPS_D1785, S40i_D1785, S40o_D1785, S40t_D1785), '80D1785': (NPS_D1785, S80i_D1785, S80o_D1785, S80t_D1785), '120D1785': (NPS120_D1785, S120i_D1785, S120o_D1785, S120t_D1785), 'DR135D2241': (NPSDR135_D2241, SDR135i_D2241, SDR135o_D2241, SDR135t_D2241), 'DR17D2241': (NPSDR17_D2241, SDR17i_D2241, SDR17o_D2241, SDR17t_D2241), 'DR21D2241': (NPSDR21_D2241, SDR21i_D2241, SDR21o_D2241, SDR21t_D2241), 'DR26D2241': (NPSDR26_D2241, SDR26i_D2241, SDR26o_D2241, SDR26t_D2241), 'DR325D2241': (NPSDR325_D2241, SDR325i_D2241, SDR325o_D2241, SDR325t_D2241), 'DR41D2241': (NPSDR41_D2241, SDR41i_D2241, SDR41o_D2241, SDR41t_D2241), 'DR64D2241': (NPSDR64_D2241, SDR64i_D2241, SDR64o_D2241, SDR64t_D2241), 'DR21D2241CTS': (NPSDR21_D2241CTS, SDR21i_D2241CTS, SDR21o_D2241CTS, SDR21t_D2241CTS), 'DR17D2241CTS': (NPSDR17_D2241CTS, SDR17i_D2241CTS, SDR17o_D2241CTS, SDR17t_D2241CTS), 'DR135D2241CTS': (NPSDR135_D2241CTS, SDR135i_D2241CTS, SDR135o_D2241CTS, SDR135t_D2241CTS), 'DR11D2241CTS': (NPSDR11_D2241CTS, SDR11i_D2241CTS, SDR11o_D2241CTS, SDR11t_D2241CTS), 'DR21D2241PIP': (NPSDR21_D2241PIP, SDR21i_D2241PIP, SDR21o_D2241PIP, SDR21t_D2241PIP), 'DR26D2241PIP': (NPSDR26_D2241PIP, SDR26i_D2241PIP, SDR26o_D2241PIP, SDR26t_D2241PIP), 'DR325D2241PIP': (NPSDR325_D2241PIP, SDR325i_D2241PIP, SDR325o_D2241PIP, SDR325t_D2241PIP), 'DR35D2241PIP': (NPSDR35_D2241PIP, SDR35i_D2241PIP, SDR35o_D2241PIP, SDR35t_D2241PIP), 'DR41D2241PIP': (NPSDR41_D2241PIP, SDR41i_D2241PIP, SDR41o_D2241PIP, SDR41t_D2241PIP), 'DR51D2241PIP': (NPSDR51_D2241PIP, SDR51i_D2241PIP, SDR51o_D2241PIP, SDR51t_D2241PIP), 'DR81D2241PIP': (NPSDR81_D2241PIP, SDR81i_D2241PIP, SDR81o_D2241PIP, SDR81t_D2241PIP), 'S40F441IPS': (NPS_F441, S40i_F441IPS, S40o_F441IPS, S40t_F441IPS), 'S80F441IPS': (NPS_F441, S80i_F441IPS, S80o_F441IPS, S80t_F441IPS), 'S40F441SI': (DN_F441, S40i_F441SI, S40o_F441SI, S40t_F441SI), 'S80F441SI': (DN_F441, S80i_F441SI, S80o_F441SI, S80t_F441SI), 'DR325F2619SI': (NPSDR325_F2619, SDR325i_F2619SI, SDR325o_F2619SI, SDR325t_F2619SI), 'DR26F2619SI': (NPSDR26_F2619, SDR26i_F2619SI, SDR26o_F2619SI, SDR26t_F2619SI), 'DR21F2619SI': (NPSDR21_F2619, SDR21i_F2619SI, SDR21o_F2619SI, SDR21t_F2619SI), 'DR17F2619SI': (NPSDR17_F2619, SDR17i_F2619SI, SDR17o_F2619SI, SDR17t_F2619SI), 'DR135F2619SI': (NPSDR135_F2619, SDR135i_F2619SI, SDR135o_F2619SI, SDR135t_F2619SI), 'DR11F2619SI': (NPSDR11_F2619, SDR11i_F2619SI, SDR11o_F2619SI, SDR11t_F2619SI), 'DR9F2619SI': (NPSDR9_F2619, SDR9i_F2619SI, SDR9o_F2619SI, SDR9t_F2619SI), 'DR73F2619SI': (NPSDR73_F2619, SDR73i_F2619SI, SDR73o_F2619SI, SDR73t_F2619SI), 'DR7F2619SI': (NPSDR7_F2619, SDR7i_F2619SI, SDR7o_F2619SI, SDR7t_F2619SI), 'DR325F2619IPS': (NPSDR325_F2619, SDR325i_F2619IPS, SDR325o_F2619IPS, SDR325t_F2619IPS), 'DR26F2619IPS': (NPSDR26_F2619, SDR26i_F2619IPS, SDR26o_F2619IPS, SDR26t_F2619IPS), 'DR21F2619IPS': (NPSDR21_F2619, SDR21i_F2619IPS, SDR21o_F2619IPS, SDR21t_F2619IPS), 'DR17F2619IPS': (NPSDR17_F2619, SDR17i_F2619IPS, SDR17o_F2619IPS, SDR17t_F2619IPS), 'DR135F2619IPS': (NPSDR135_F2619, SDR135i_F2619IPS, SDR135o_F2619IPS, SDR135t_F2619IPS), 'DR11F2619IPS': (NPSDR11_F2619, SDR11i_F2619IPS, SDR11o_F2619IPS, SDR11t_F2619IPS), 'DR9F2619IPS': (NPSDR9_F2619, SDR9i_F2619IPS, SDR9o_F2619IPS, SDR9t_F2619IPS), 'DR73F2619IPS': (NPSDR73_F2619, SDR73i_F2619IPS, SDR73o_F2619IPS, SDR73t_F2619IPS), 'DR7F2619IPS': (NPSDR7_F2619, SDR7i_F2619IPS, SDR7o_F2619IPS, SDR7t_F2619IPS), } def Di_lookup(Di, NPSes, Dis, Dos, ts): for i in range(len(Dis)): # Go up ascending list; once larger than specified, return if Dis[-1] < Di: return None if Dis[i] >= Di: _nps, _di, _do, _t = NPSes[i], Dis[i], Dos[i], ts[i] return (_nps, _di, _do, _t) raise ValueError('Di lookup failed') def Do_lookup(Do, NPSes, Dis, Dos, ts): for i in range(len(Dos)): # Go up ascending list; once larger than specified, return if Dos[-1] < Do: return None if Dos[i] >= Do: _nps, _di, _do, _t = NPSes[i], Dis[i], Dos[i], ts[i] return (_nps, _di, _do, _t) raise ValueError('Do lookup failed') def NPS_lookup(NPS, NPSes, Dis, Dos, ts): for i in range(len(NPSes)): # Go up ascending list; once larger than specified, return if NPSes[i] == NPS: _nps, _di, _do, _t = NPSes[i], Dis[i], Dos[i], ts[i] return (_nps, _di, _do, _t) raise ValueError('NPS not in list') def nearest_pipe(Do=None, Di=None, NPS=None, schedule='40'): r'''Searches for and finds the nearest standard pipe size to a given specification. Acceptable inputs are: - Nominal pipe size - Nominal pipe size and schedule - Outer diameter `Do` - Outer diameter `Do` and schedule - Inner diameter `Di` - Inner diameter `Di` and schedule Acceptable schedules are: '5', '10', '20', '30', '40', '60', '80', '100', '120', '140', '160', 'STD', 'XS', 'XXS', '5S', '10S', '40S', '80S', '40D1527', '80D1527', 'ABSD2680', 'PVCD2680', 'DR25C900', 'DR18C900', 'DR14C900', 'CIDR51C905', 'CIDR41C905', 'CIDR325C905', 'CIDR25C905', 'CIDR21C905', 'CIDR18C905', 'CIDR14C905', 'IPSDR21', 'IPSDR26', 'IPSDR325', 'IPSDR41', 'PS115F679', 'PS75F679', 'PS46F679', 'PVCD2665', '40D1785', '80D1785', '120D1785', 'DR135D2241', 'DR17D2241', 'DR21D2241', 'DR26D2241', 'DR325D2241', 'DR41D2241', 'DR64D2241', 'DR21D2241CTS', 'DR17D2241CTS', 'DR135D2241CTS', 'DR11D2241CTS', 'DR21D2241PIP', 'DR26D2241PIP', 'DR325D2241PIP', 'DR35D2241PIP', 'DR41D2241PIP', 'DR51D2241PIP', 'DR81D2241PIP', 'S40F441IPS', 'S80F441IPS', 'S40F441SI', 'S80F441SI' 'DR325F2619SI', 'DR26F2619SI', 'DR21F2619SI', 'DR17F2619SI', 'DR135F2619SI', 'DR11F2619SI', 'DR9F2619SI', 'DR73F2619SI', 'DR7F2619SI', 'DR325F2619IPS', 'DR26F2619IPS', 'DR21F2619IPS', 'DR17F2619IPS', 'DR135F2619IPS', 'DR11F2619IPS', 'DR9F2619IPS', 'DR73F2619IPS', 'DR7F2619IPS', Parameters ---------- Do : float Pipe outer diameter, [m] Di : float Pipe inner diameter, [m] NPS : float Nominal pipe size, [-] schedule : str String representing schedule size Returns ------- NPS : float Nominal pipe size, [-] Di : float Pipe inner diameter, [m] Do : float Pipe outer diameter, [m] t : float Pipe wall thickness, [m] Notes ----- Internal units within this function are mm. The imperial schedules are not quite identical to these value, but all rounding differences happen in the sub-0.1 mm level. Examples -------- >>> nearest_pipe(Di=0.021) (1, 0.02664, 0.0334, 0.0033799999999999998) >>> nearest_pipe(Do=.273, schedule='5S') (10, 0.26630000000000004, 0.2731, 0.0034) References ---------- .. [1] American National Standards Institute, and American Society of Mechanical Engineers. B36.10M-2004: Welded and Seamless Wrought Steel Pipe. New York: American Society of Mechanical Engineers, 2004. .. [2] American National Standards Institute, and American Society of Mechanical Engineers. B36-19M-2004: Stainless Steel Pipe. New York, N.Y.: American Society of Mechanical Engineers, 2004. .. [3] F17 Committee. "Specification for Acrylonitrile-Butadiene-Styrene (ABS) Plastic Pipe, Schedules 40 and 80." ASTM International. https://doi.org/10.1520/D1527-99R05. .. [4] F17 Committee. "Specification for Acrylonitrile-Butadiene-Styrene (ABS) and Poly(Vinyl Chloride) (PVC) Composite Sewer Piping." ASTM International. https://doi.org/10.1520/D2680-01R14. .. [5] AWWA-American Water Works Association. "AWWA C900-07 Polyvinyl Chloride (PVC) Pressure Pipe and Fabricated Fittings, 4 In. Through 12 In. (100 Mm Through 300 Mm), for Water Transmission and Distribution." .. [6] AWWA-American Water Works Association. "AWWA C905-97 Polyvinyl Chloride (PVC) Pressure Pipe and Fabricated Fittings, 14 in. Through 48 in. (350 Mm through 1,200 Mm), for Water Transmission and Distribution." .. [7] F17 Committee. "Specification for Poly(Vinyl Chloride) (PVC) Large-Diameter Plastic Gravity Sewer Pipe and Fittings." ASTM International. https://doi.org/10.1520/F0679-16. .. [8] F17 Committee. "Specification for Poly(Vinyl Chloride) (PVC) Plastic Drain, Waste, and Vent Pipe and Fittings." ASTM International. https://doi.org/10.1520/D2665-14. .. [9] F17 Committee. "Specification for Poly(Vinyl Chloride) (PVC) Plastic Pipe, Schedules 40, 80, and 120." ASTM International. https://doi.org/10.1520/D1785-15E01. .. [10] F17 Committee. "Specification for Chlorinated Poly(Vinyl Chloride) (CPVC) Plastic Pipe, Schedules 40 and 80." ASTM International. https://doi.org/10.1520/F0441_F0441M-15. .. [11] F17 Committee. "Specification for High-Density Polyethylene (PE) Line Pipe." ASTM International. https://doi.org/10.1520/F2619_F2619M-20. ''' if Di: Di *= 1E3 if Do: Do *= 1E3 if NPS: NPS = float(NPS) # If accidentally given an numerical schedule, convert it to a string schedule_type = type(schedule) if schedule_type in (int, float): schedule = str(int(schedule)) if schedule not in schedule_lookup: raise ValueError('Schedule not recognized') else: NPSes, Dis, Dos, ts = schedule_lookup[schedule] # Handle the three cases of different inputs if Di is not None: nums = Di_lookup(Di, NPSes, Dis, Dos, ts) elif Do is not None: nums = Do_lookup(Do, NPSes, Dis, Dos, ts) elif NPS is not None: nums = NPS_lookup(NPS, NPSes, Dis, Dos, ts) if nums is None: raise ValueError('Pipe input is larger than max of selected schedule') _nps, _di, _do, _t = nums return _nps, _di/1E3, _do/1E3, _t/1E3 ### Wire gauge schedules # Stub's Steel Wire Gage SSWG_integers = list(range(1, 81)) SSWG_inch = [0.227, 0.219, 0.212, 0.207, 0.204, 0.201, 0.199, 0.197, 0.194, 0.191, 0.188, 0.185, 0.182, 0.18, 0.178, 0.175, 0.172, 0.168, 0.164, 0.161, 0.157, 0.155, 0.153, 0.151, 0.148, 0.146, 0.143, 0.139, 0.134, 0.127, 0.12, 0.115, 0.112, 0.11, 0.108, 0.106, 0.103, 0.101, 0.099, 0.097, 0.095, 0.092, 0.088, 0.085, 0.081, 0.079, 0.077, 0.075, 0.072, 0.069, 0.066, 0.063, 0.058, 0.055, 0.05, 0.045, 0.042, 0.041, 0.04, 0.039, 0.038, 0.037, 0.036, 0.035, 0.033, 0.032, 0.031, 0.03, 0.029, 0.027, 0.026, 0.024, 0.023, 0.022, 0.02, 0.018, 0.016, 0.015, 0.014, 0.013] #SSWG_SI = [round(i*inch, 7) for i in SSWG_inch] # 7 decimals for equal conversion SSWG_SI = [0.0057658, 0.0055626, 0.0053848, 0.0052578, 0.0051816, 0.0051054, 0.0050546, 0.0050038, 0.0049276, 0.0048514, 0.0047752, 0.004699, 0.0046228, 0.004572, 0.0045212, 0.004445, 0.0043688, 0.0042672, 0.0041656, 0.0040894, 0.0039878, 0.003937, 0.0038862, 0.0038354, 0.0037592, 0.0037084, 0.0036322, 0.0035306, 0.0034036, 0.0032258, 0.003048, 0.002921, 0.0028448, 0.002794, 0.0027432, 0.0026924, 0.0026162, 0.0025654, 0.0025146, 0.0024638, 0.002413, 0.0023368, 0.0022352, 0.002159, 0.0020574, 0.0020066, 0.0019558, 0.001905, 0.0018288, 0.0017526, 0.0016764, 0.0016002, 0.0014732, 0.001397, 0.00127, 0.001143, 0.0010668, 0.0010414, 0.001016, 0.0009906, 0.0009652, 0.0009398, 0.0009144, 0.000889, 0.0008382, 0.0008128, 0.0007874, 0.000762, 0.0007366, 0.0006858, 0.0006604, 0.0006096, 0.0005842, 0.0005588, 0.000508, 0.0004572, 0.0004064, 0.000381, 0.0003556, 0.0003302] # British Standard Wire Gage (Imperial Wire Gage) BSWG_integers = [0.143, .167, 0.2, 0.25, 0.33, 0.5] + list(range(51)) BSWG_inch = [0.5, 0.464, 0.432, 0.4, 0.372, 0.348, 0.324, 0.3, 0.276, 0.252, 0.232, 0.212, 0.192, 0.176, 0.16, 0.144, 0.128, 0.116, 0.104, 0.092, 0.08, 0.072, 0.064, 0.056, 0.048, 0.04, 0.036, 0.032, 0.028, 0.024, 0.022, 0.02, 0.018, 0.0164, 0.0149, 0.0136, 0.0124, 0.0116, 0.0108, 0.01, 0.0092, 0.0084, 0.0076, 0.0068, 0.006, 0.0052, 0.0048, 0.0044, 0.004, 0.0036, 0.0032, 0.0028, 0.0024, 0.002, 0.0016, 0.0012, 0.001] #BSWG_SI = [round(i*inch,8) for i in BSWG_inch] # 8 decimals for equal conversion BSWG_SI = [0.0127, 0.0117856, 0.0109728, 0.01016, 0.0094488, 0.0088392, 0.0082296, 0.00762, 0.0070104, 0.0064008, 0.0058928, 0.0053848, 0.0048768, 0.0044704, 0.004064, 0.0036576, 0.0032512, 0.0029464, 0.0026416, 0.0023368, 0.002032, 0.0018288, 0.0016256, 0.0014224, 0.0012192, 0.001016, 0.0009144, 0.0008128, 0.0007112, 0.0006096, 0.0005588, 0.000508, 0.0004572, 0.00041656, 0.00037846, 0.00034544, 0.00031496, 0.00029464, 0.00027432, 0.000254, 0.00023368, 0.00021336, 0.00019304, 0.00017272, 0.0001524, 0.00013208, 0.00012192, 0.00011176, 0.0001016, 9.144e-05, 8.128e-05, 7.112e-05, 6.096e-05, 5.08e-05, 4.064e-05, 3.048e-05, 2.54e-05] # Music Wire Gauge MWG_integers = [45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 0.5, 0.33, 0.25, 0.2, 0.167] #MWG_integers = [.167, 0.2, 0.25, 0.33, 0.5] + list(range(46)) #MWG_inch = [0.004, 0.005, 0.006, 0.007, 0.008, 0.009, 0.01, 0.011, 0.012, # 0.013, 0.014, 0.016, 0.018, 0.02, 0.022, 0.024, 0.026, 0.029, # 0.031, 0.033, 0.035, 0.037, 0.039, 0.041, 0.043, 0.045, 0.047, # 0.049, 0.051, 0.055, 0.059, 0.063, 0.067, 0.071, 0.075, 0.08, # 0.085, 0.09, 0.095, 0.1, 0.106, 0.112, 0.118, 0.124, 0.13, 0.138, # 0.146, 0.154, 0.162, 0.17, 0.18] #MWG_SI = [round(i*inch,7) for i in MWG_inch] # 7 decimals for equal conversion # Scale gets bigger instead of smaller; reverse for convenience #MWG_integers.reverse() #MWG_inch.reverse() MWG_inch = [0.18, 0.17, 0.162, 0.154, 0.146, 0.138, 0.13, 0.124, 0.118, 0.112, 0.106, 0.1, 0.095, 0.09, 0.085, 0.08, 0.075, 0.071, 0.067, 0.063, 0.059, 0.055, 0.051, 0.049, 0.047, 0.045, 0.043, 0.041, 0.039, 0.037, 0.035, 0.033, 0.031, 0.029, 0.026, 0.024, 0.022, 0.02, 0.018, 0.016, 0.014, 0.013, 0.012, 0.011, 0.01, 0.009, 0.008, 0.007, 0.006, 0.005, 0.004] #MWG_SI.reverse() MWG_SI = [0.004572, 0.004318, 0.0041148, 0.0039116, 0.0037084, 0.0035052, 0.003302, 0.0031496, 0.0029972, 0.0028448, 0.0026924, 0.00254, 0.002413, 0.002286, 0.002159, 0.002032, 0.001905, 0.0018034, 0.0017018, 0.0016002, 0.0014986, 0.001397, 0.0012954, 0.0012446, 0.0011938, 0.001143, 0.0010922, 0.0010414, 0.0009906, 0.0009398, 0.000889, 0.0008382, 0.0007874, 0.0007366, 0.0006604, 0.0006096, 0.0005588, 0.000508, 0.0004572, 0.0004064, 0.0003556, 0.0003302, 0.0003048, 0.0002794, 0.000254, 0.0002286, 0.0002032, 0.0001778, 0.0001524, 0.000127, 0.0001016] # Steel Wire Gage -Also Washburn & Moen gage, American Steel gage; # Wire Co.gage; Roebling Wire Gages. SWG_integers = [0.143, .167, 0.2, 0.25, 0.33, 0.5] + list(range(51)) SWG_inch = [0.49, 0.4615, 0.4305, 0.3938, 0.3625, 0.331, 0.3065, 0.283, 0.2625, 0.2437, 0.2253, 0.207, 0.192, 0.177, 0.162, 0.1483, 0.135, 0.1205, 0.1055, 0.0915, 0.08, 0.072, 0.0625, 0.054, 0.0475, 0.041, 0.0348, 0.0318, 0.0286, 0.0258, 0.023, 0.0204, 0.0181, 0.0173, 0.0162, 0.015, 0.014, 0.0132, 0.0128, 0.0118, 0.0104, 0.0095, 0.009, 0.0085, 0.008, 0.0075, 0.007, 0.0066, 0.0062, 0.006, 0.0058, 0.0055, 0.0052, 0.005, 0.0048, 0.0046, 0.0044] #SWG_SI = [round(i*inch,8) for i in SWG_inch] # 8 decimals for equal conversion SWG_SI = [0.012446, 0.0117221, 0.0109347, 0.01000252, 0.0092075, 0.0084074, 0.0077851, 0.0071882, 0.0066675, 0.00618998, 0.00572262, 0.0052578, 0.0048768, 0.0044958, 0.0041148, 0.00376682, 0.003429, 0.0030607, 0.0026797, 0.0023241, 0.002032, 0.0018288, 0.0015875, 0.0013716, 0.0012065, 0.0010414, 0.00088392, 0.00080772, 0.00072644, 0.00065532, 0.0005842, 0.00051816, 0.00045974, 0.00043942, 0.00041148, 0.000381, 0.0003556, 0.00033528, 0.00032512, 0.00029972, 0.00026416, 0.0002413, 0.0002286, 0.0002159, 0.0002032, 0.0001905, 0.0001778, 0.00016764, 0.00015748, 0.0001524, 0.00014732, 0.0001397, 0.00013208, 0.000127, 0.00012192, 0.00011684, 0.00011176] # American Wire or Brown & Sharpe Gage AWG_integers = [.167, 0.2, 0.25, 0.33, 0.5] + list(range(51)) AWG_inch = [0.58, 0.5165, 0.46, 0.4096, 0.3648, 0.3249, 0.2893, 0.2576, 0.2294, 0.2043, 0.1819, 0.162, 0.1443, 0.1285, 0.1144, 0.1019, 0.0907, 0.0808, 0.072, 0.0641, 0.0571, 0.0508, 0.0453, 0.0403, 0.0359, 0.032, 0.0285, 0.0253, 0.0226, 0.0201, 0.0179, 0.0159, 0.0142, 0.0126, 0.0113, 0.01, 0.00893, 0.00795, 0.00708, 0.0063, 0.00561, 0.005, 0.00445, 0.00396, 0.00353, 0.00314, 0.0028, 0.00249, 0.00222, 0.00198, 0.00176, 0.00157, 0.0014, 0.00124, 0.00111, 0.00099] #AWG_SI = [round(i*inch,9) for i in AWG_inch] # 9 decimals for equal conversion AWG_SI = [0.014732, 0.0131191, 0.011684, 0.01040384, 0.00926592, 0.00825246, 0.00734822, 0.00654304, 0.00582676, 0.00518922, 0.00462026, 0.0041148, 0.00366522, 0.0032639, 0.00290576, 0.00258826, 0.00230378, 0.00205232, 0.0018288, 0.00162814, 0.00145034, 0.00129032, 0.00115062, 0.00102362, 0.00091186, 0.0008128, 0.0007239, 0.00064262, 0.00057404, 0.00051054, 0.00045466, 0.00040386, 0.00036068, 0.00032004, 0.00028702, 0.000254, 0.000226822, 0.00020193, 0.000179832, 0.00016002, 0.000142494, 0.000127, 0.00011303, 0.000100584, 8.9662e-05, 7.9756e-05, 7.112e-05, 6.3246e-05, 5.6388e-05, 5.0292e-05, 4.4704e-05, 3.9878e-05, 3.556e-05, 3.1496e-05, 2.8194e-05, 2.5146e-05] # Birmingham or Stub's Iron Wire Gage BWG_integers = [0.2, 0.25, 0.33, 0.5] + list(range(37)) BWG_inch = [0.5, 0.454, 0.425, 0.38, 0.34, 0.3, 0.284, 0.259, 0.238, 0.22, 0.203, 0.18, 0.165, 0.148, 0.134, 0.12, 0.109, 0.095, 0.083, 0.072, 0.065, 0.058, 0.049, 0.042, 0.035, 0.032, 0.028, 0.025, 0.022, 0.02, 0.018, 0.016, 0.014, 0.013, 0.012, 0.01, 0.009, 0.008, 0.007, 0.005, 0.004] #BWG_SI = [round(i*inch,6) for i in BWG_inch] BWG_SI = [0.0127, 0.011532, 0.010795, 0.009652, 0.008636, 0.00762, 0.007214, 0.006579, 0.006045, 0.005588, 0.005156, 0.004572, 0.004191, 0.003759, 0.003404, 0.003048, 0.002769, 0.002413, 0.002108, 0.001829, 0.001651, 0.001473, 0.001245, 0.001067, 0.000889, 0.000813, 0.000711, 0.000635, 0.000559, 0.000508, 0.000457, 0.000406, 0.000356, 0.00033, 0.000305, 0.000254, 0.000229, 0.000203, 0.000178, 0.000127, 0.000102] wire_schedules = {'BWG': (BWG_integers, BWG_inch, BWG_SI, True), 'AWG': (AWG_integers, AWG_inch, AWG_SI, True), 'SWG': (SWG_integers, SWG_inch, SWG_SI, True), 'MWG': (MWG_integers, MWG_inch, MWG_SI, False), 'BSWG': (BSWG_integers, BSWG_inch, BSWG_SI, True), 'SSWG': (SSWG_integers, SSWG_inch, SSWG_SI, True)} def gauge_from_t(t, SI=True, schedule='BWG'): r'''Looks up the gauge of a given wire thickness of given schedule. Values are all non-linear, and tabulated internally. Parameters ---------- t : float Thickness, [m] SI : bool, optional If False, requires that the thickness is given in inches not meters schedule : str Gauge schedule, one of 'BWG', 'AWG', 'SWG', 'MWG', 'BSWG', or 'SSWG' Returns ------- gauge : float-like Wire Gauge, [-] Notes ----- An internal variable, tol, is used in the selection of the wire gauge. If the next smaller wire gauge is within 10% of the difference between it and the previous wire gauge, the smaller wire gauge is selected. Accordingly, this function can return a gauge with a thickness smaller than desired in some circumstances. * Birmingham Wire Gauge (BWG) ranges from 0.2 (0.5 inch) to 36 (0.004 inch). * American Wire Gauge (AWG) ranges from 0.167 (0.58 inch) to 51 (0.00099 inch). These are used for electrical wires. * Steel Wire Gauge (SWG) ranges from 0.143 (0.49 inch) to 51 (0.0044 inch). Also called Washburn & Moen wire gauge, American Steel gauge, Wire Co. gauge, and Roebling wire gauge. * Music Wire Gauge (MWG) ranges from 0.167 (0.004 inch) to 46 (0.18 inch). Also called Piano Wire Gauge. * British Standard Wire Gage (BSWG) ranges from 0.143 (0.5 inch) to 51 (0.001 inch). Also called Imperial Wire Gage (IWG). * Stub's Steel Wire Gage (SSWG) ranges from 1 (0.227 inch) to 80 (0.013 inch) Examples -------- >>> gauge_from_t(.5, SI=False, schedule='BWG') 0.2 References ---------- .. [1] Oberg, Erik, Franklin D. Jones, and Henry H. Ryffel. Machinery's Handbook. Industrial Press, Incorporated, 2012. ''' tol = 0.1 # Handle units if SI: t_inch = round(t/inch, 9) # all schedules are in inches else: t_inch = t # Get the schedule try: sch_integers, sch_inch, sch_SI, decreasing = wire_schedules[schedule] except: raise ValueError('Wire gauge schedule not found') # Check if outside limits sch_max, sch_min = sch_inch[0], sch_inch[-1] if t_inch > sch_max: raise ValueError('Input thickness is above the largest in the selected schedule') # If given thickness is exactly in the index, be happy if t_inch in sch_inch: gauge = sch_integers[sch_inch.index(t_inch)] else: for i in range(len(sch_inch)): if sch_inch[i] >= t_inch: larger = sch_inch[i] else: break if larger == sch_min: gauge = sch_min # If t is under the lowest schedule, be happy else: smaller = sch_inch[i] if (t_inch - smaller) <= tol*(larger - smaller): gauge = sch_integers[i] else: gauge = sch_integers[i-1] return gauge def t_from_gauge(gauge, SI=True, schedule='BWG'): r'''Looks up the thickness of a given wire gauge of given schedule. Values are all non-linear, and tabulated internally. Parameters ---------- gauge : float-like Wire Gauge, [] SI : bool, optional If False, will return a thickness in inches not meters schedule : str Gauge schedule, one of 'BWG', 'AWG', 'SWG', 'MWG', 'BSWG', or 'SSWG' Returns ------- t : float Thickness, [m] Notes ----- * Birmingham Wire Gauge (BWG) ranges from 0.2 (0.5 inch) to 36 (0.004 inch). * American Wire Gauge (AWG) ranges from 0.167 (0.58 inch) to 51 (0.00099 inch). These are used for electrical wires. * Steel Wire Gauge (SWG) ranges from 0.143 (0.49 inch) to 51 (0.0044 inch). Also called Washburn & Moen wire gauge, American Steel gauge, Wire Co. gauge, and Roebling wire gauge. * Music Wire Gauge (MWG) ranges from 0.167 (0.004 inch) to 46 (0.18 inch). Also called Piano Wire Gauge. * British Standard Wire Gage (BSWG) ranges from 0.143 (0.5 inch) to 51 (0.001 inch). Also called Imperial Wire Gage (IWG). * Stub's Steel Wire Gage (SSWG) ranges from 1 (0.227 inch) to 80 (0.013 inch) Examples -------- >>> t_from_gauge(.2, False, 'BWG') 0.5 References ---------- .. [1] Oberg, Erik, Franklin D. Jones, and Henry H. Ryffel. Machinery's Handbook. Industrial Press, Incorporated, 2012. ''' try: sch_integers, sch_inch, sch_SI, decreasing = wire_schedules[schedule] except: raise ValueError("Wire gauge schedule not found; supported gauges are \ 'BWG', 'AWG', 'SWG', 'MWG', 'BSWG', and 'SSWG'.") try: i = sch_integers.index(gauge) except: raise ValueError('Input gauge not found in selected schedule') if SI: return sch_SI[i] # returns thickness in m else: return sch_inch[i] # returns thickness in inch def erosional_velocity(rho, C): r'''Calculate the erosional velocity according to the API RP 14E equation. .. math:: V_e = \frac{C}{\sqrt{\rho_m}} Parameters ---------- rho : float Bulk mass density of the overall fluid, [kg/m^3] C : float Erosional velocity factor; must be provided, [sqrt(lb/(ft*s^2))] Returns ------- V : float Erosional velocity, [m/s] Notes ----- Some suggested factors in [1]_ are: With solids, it is suggested the factor be determined from specific studies. For corrosive fluids in continuous service, C=100. For corrosive fluids in intermittent service, C=125. For non-corrosive fluids in continuous service, C=150-200. For non-corrosive fluids in intermittent service, C=250. For corrosive fluids with an inhibitor or a corrosion resistent alloy in continuous service, C=150-200; and for intermittent service, C=250. Examples -------- >>> erosional_velocity(1000, 100) 3.8576728004 References ---------- .. [1] "API RP 14E : Recommended Practice for Design and Installation of Offshore Production Platform Piping Systems." 5E, 2000 .. [2] Madani Sani, F., S. Huizinga, K. A. Esaklul, and S. Nesic. "Review of the API RP 14E Erosional Velocity Equation: Origin, Applications, Misuses, Limitations and Alternatives." Wear, 22nd International Conference on Wear of Materials, 426-427 (April 30, 2019): 620-36. https://doi.org/10.1016/j.wear.2019.01.119. ''' rho_lb_ft3 = rho/(lb/foot**3) v_ft_s = C/sqrt(rho_lb_ft3) v = v_ft_s*foot return v fluids-1.0.22/fluids/two_phase.pyi0000644000175000017500000001510314302004506016404 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( List, Optional, Tuple, Union, ) def Bankoff( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Baroczy_Chisholm( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Beggs_Brill( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, sigma: float, P: float, D: float, angle: float, roughness: float = ..., L: float = ..., g: float = ..., acceleration: bool = ... ) -> float: ... def Chen_Friedel( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, sigma: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Chisholm( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, D: float, roughness: float = ..., L: float = ..., rough_correction: bool = ... ) -> float: ... def Friedel( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, sigma: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Gronnerud( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Hwang_Kim( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, sigma: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Jung_Radermacher( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Kim_Mudawar( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, sigma: float, D: float, L: float = ... ) -> float: ... def Lockhart_Martinelli( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, D: float, L: float = ..., Re_c: float = ... ) -> float: ... def Lombardi_Pedrocchi( m: float, x: float, rhol: float, rhog: float, sigma: float, D: float, L: float = ... ) -> float: ... def Mandhane_Gregory_Aziz_regime( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, sigma: float, D: float ) -> Tuple[str, float, float]: ... def Mishima_Hibiki( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, sigma: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Muller_Steinhagen_Heck( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Taitel_Dukler_regime( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, D: float, angle: float, roughness: float = ..., g: float = ... ) -> Tuple[str, float, float, float, float]: ... def Theissing( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Tran( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, sigma: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Wang_Chiang_Lu( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Xu_Fang( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, sigma: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Yu_France( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def Zhang_Hibiki_Mishima( m: float, x: float, rhol: float, rhog: float, mul: float, mug: float, sigma: float, D: float, roughness: float = ..., L: float = ..., flowtype: str = ... ) -> float: ... def Zhang_Webb( m: float, x: float, rhol: float, mul: float, P: float, Pc: float, D: float, roughness: float = ..., L: float = ... ) -> float: ... def _Beggs_Brill_holdup(regime: int, lambda_L: float, Fr: float, angle: float, LV: float) -> float: ... def friction_factor_Kim_Mudawar(Re: float) -> float: ... def two_phase_dP( m: float, x: float, rhol: float, D: float, L: float = ..., rhog: Optional[float] = ..., mul: Optional[float] = ..., mug: Optional[float] = ..., sigma: Optional[float] = ..., P: Optional[float] = ..., Pc: Optional[float] = ..., roughness: float = ..., angle: Optional[float] = ..., Method: Optional[str] = ... ) -> float: ... def two_phase_dP_acceleration( m: float, D: float, xi: float, xo: float, alpha_i: float, alpha_o: float, rho_li: float, rho_gi: float, rho_lo: Optional[float] = ..., rho_go: Optional[float] = ... ) -> float: ... def two_phase_dP_dz_acceleration( m: float, D: float, x: float, rhol: float, rhog: float, dv_dP_l: float, dv_dP_g: float, dx_dP: float, dP_dL: float, dA_dL: float ) -> float: ... def two_phase_dP_dz_gravitational(angle: float, alpha: float, rhol: float, rhog: float, g: float = ...) -> float: ... def two_phase_dP_gravitational( angle: float, z: float, alpha_i: float, rho_li: float, rho_gi: float, alpha_o: Optional[float] = ..., rho_lo: Optional[float] = ..., rho_go: Optional[float] = ..., g: float = ... ) -> float: ... def two_phase_dP_methods( m: float, x: float, rhol: float, D: float, L: float = ..., rhog: Optional[float] = ..., mul: Optional[float] = ..., mug: Optional[float] = ..., sigma: Optional[float] = ..., P: Optional[float] = ..., Pc: Optional[float] = ..., roughness: float = ..., angle: float = ..., check_ranges: bool = ... ) -> List[str]: ... __all__: List[str]fluids-1.0.22/fluids/vectorized.py0000644000175000017500000000534114302004506016423 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2017, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from __future__ import division from fluids.numerics import numpy as np, FakePackage import fluids as normal_fluids '''Basic module which wraps all fluids functions with numpy's vectorize. All other object - dicts, classes, etc - are not wrapped. Supports star imports; so the same objects exported when importing from the main library will be imported from here. >>> from fluids.vectorized import * Inputs do not need to be numpy arrays; they can be any iterable: >>> fluids.vectorized.friction_factor(Re=[100, 1000, 10000], eD=0) array([ 0.64 , 0.064 , 0.03088295]) Note that because this needs to import fluids itself, fluids.vectorized needs to be imported separately; the following will cause an error: >>> import fluids >>> fluids.vectorized # Won't work, has not been imported yet The correct syntax is as follows: >>> import fluids.vectorized # Necessary >>> from fluids.vectorized import * # May be used without first importing fluids This module is lightweight! It takes approximately 3 ms to load, and increases ram usage by only 250 KB. ''' __all__ = [] __funcs = {} bad_names = set(('__file__', '__name__', '__package__', '__cached__')) if isinstance(np, FakePackage): pass else: import types for name in dir(normal_fluids): obj = getattr(normal_fluids, name) if isinstance(obj, types.FunctionType): obj = np.vectorize(obj) elif isinstance(obj, str): if name in bad_names: continue __all__.append(name) __funcs[name] = obj globals().update(__funcs) del __funcs fluids-1.0.22/fluids/control_valve.pyi0000644000175000017500000000612514302004506017274 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( Dict, Optional, Union, ) def FF_critical_pressure_ratio_l(Psat: float, Pc: float) -> float: ... def Reynolds_factor(FL: float, C: float, d: float, Rev: float, full_trim: bool = ...) -> float: ... def Reynolds_valve(nu: float, Q: float, D1: float, FL: float, Fd: float, C: float) -> float: ... def cavitation_index(P1: float, P2: float, Psat: float) -> float: ... def control_valve_choke_P_g(xT: float, gamma: float, P1: Optional[float] = ..., P2: Optional[float] = ...) -> float: ... def control_valve_choke_P_l( Psat: float, Pc: float, FL: float, P1: Optional[float] = ..., P2: Optional[float] = ..., disp: bool = ... ) -> float: ... def control_valve_noise_g_2011( m: float, P1: float, P2: float, T1: int, rho: float, gamma: float, MW: float, Kv: float, d: float, Di: float, t_pipe: float, Fd: float, FL: None, FLP: Optional[float] = ..., FP: Optional[float] = ..., rho_pipe: float = ..., c_pipe: float = ..., P_air: float = ..., rho_air: float = ..., c_air: float = ..., An: float = ..., Stp: float = ..., T2: None = ..., beta: float = ... ) -> float: ... def control_valve_noise_l_2015( m: int, P1: float, P2: float, Psat: float, rho: float, c: float, Kv: float, d: float, Di: float, FL: float, Fd: float, t_pipe: float, rho_pipe: float = ..., c_pipe: float = ..., rho_air: float = ..., c_air: float = ..., xFz: Optional[float] = ..., An: float = ... ) -> float: ... def is_choked_turbulent_g(x: float, Fgamma: float, xT: Optional[float] = ..., xTP: Optional[float] = ...) -> bool: ... def is_choked_turbulent_l( dP: float, P1: float, Psat: float, FF: float, FL: Optional[float] = ..., FLP: Optional[float] = ..., FP: Optional[float] = ... ) -> bool: ... def loss_coefficient_piping(d: float, D1: Optional[float] = ..., D2: Optional[float] = ...) -> float: ... def size_control_valve_g( T: float, MW: float, mu: float, gamma: float, Z: float, P1: float, P2: float, Q: float, D1: Optional[float] = ..., D2: Optional[float] = ..., d: Optional[float] = ..., FL: float = ..., Fd: float = ..., xT: float = ..., allow_choked: bool = ..., allow_laminar: bool = ..., full_output: bool = ... ) -> Union[float, Dict[str, Optional[Union[bool, float]]], Dict[str, Optional[Union[float, bool, str]]]]: ... def size_control_valve_l( rho: float, Psat: float, Pc: float, mu: float, P1: float, P2: float, Q: float, D1: Optional[float] = ..., D2: Optional[float] = ..., d: Optional[float] = ..., FL: float = ..., Fd: float = ..., allow_choked: bool = ..., allow_laminar: bool = ..., full_output: bool = ... ) -> Union[float, Dict[str, Optional[Union[bool, float]]], Dict[str, Optional[Union[float, bool, str]]]]: ... __all__: List[str]fluids-1.0.22/fluids/flow_meter.py0000644000175000017500000034042314302004506016413 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2018, 2019, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains correlations, standards, and solvers for orifice plates and other flow metering devices. Both permanent and measured pressure drop is included, and models work for both liquids and gases. A number of non-standard devices are included, as well as limited two-phase functionality. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Flow Meter Solvers ------------------ .. autofunction:: differential_pressure_meter_solver Flow Meter Interfaces --------------------- .. autofunction:: differential_pressure_meter_dP .. autofunction:: differential_pressure_meter_C_epsilon .. autofunction:: differential_pressure_meter_beta .. autofunction:: dP_orifice Orifice Plate Correlations -------------------------- .. autofunction:: C_Reader_Harris_Gallagher .. autofunction:: C_eccentric_orifice_ISO_15377_1998 .. autofunction:: C_quarter_circle_orifice_ISO_15377_1998 .. autofunction:: C_Miller_1996 .. autofunction:: orifice_expansibility .. autofunction:: orifice_expansibility_1989 .. autodata:: ISO_15377_CONICAL_ORIFICE_C Nozzle Flow Meters ------------------ .. autofunction:: C_long_radius_nozzle .. autofunction:: C_ISA_1932_nozzle .. autofunction:: C_venturi_nozzle .. autofunction:: nozzle_expansibility Venturi Tube Meters ------------------- .. autodata:: ROUGH_WELDED_CONVERGENT_VENTURI_TUBE_C .. autodata:: MACHINED_CONVERGENT_VENTURI_TUBE_C .. autodata:: AS_CAST_VENTURI_TUBE_C .. autofunction:: dP_venturi_tube .. autofunction:: C_Reader_Harris_Gallagher_wet_venturi_tube .. autofunction:: dP_Reader_Harris_Gallagher_wet_venturi_tube Cone Meters ----------- .. autodata:: CONE_METER_C .. autofunction:: diameter_ratio_cone_meter .. autofunction:: cone_meter_expansibility_Stewart .. autofunction:: dP_cone_meter Wedge Meters ------------ .. autofunction:: C_wedge_meter_ISO_5167_6_2017 .. autofunction:: C_wedge_meter_Miller .. autofunction:: diameter_ratio_wedge_meter .. autofunction:: dP_wedge_meter Flow Meter Utilities -------------------- .. autofunction:: discharge_coefficient_to_K .. autofunction:: K_to_discharge_coefficient .. autofunction:: velocity_of_approach_factor .. autofunction:: flow_coefficient .. autofunction:: flow_meter_discharge .. autodata:: all_meters """ from __future__ import division from math import sqrt, cos, sin, tan, atan, pi, radians, exp, acos, log10, log from fluids.friction import friction_factor from fluids.core import Froude_densimetric from fluids.numerics import interp, secant, brenth, NotBoundedError, implementation_optimize_tck, bisplev from fluids.constants import g, inch, inch_inv, pi_inv, root_two __all__ = ['C_Reader_Harris_Gallagher', 'differential_pressure_meter_solver', 'differential_pressure_meter_dP', 'flow_meter_discharge', 'orifice_expansibility', 'discharge_coefficient_to_K', 'K_to_discharge_coefficient', 'dP_orifice', 'velocity_of_approach_factor', 'flow_coefficient', 'nozzle_expansibility', 'C_long_radius_nozzle', 'C_ISA_1932_nozzle', 'C_venturi_nozzle', 'orifice_expansibility_1989', 'dP_venturi_tube', 'diameter_ratio_cone_meter', 'diameter_ratio_wedge_meter', 'cone_meter_expansibility_Stewart', 'dP_cone_meter', 'C_wedge_meter_Miller', 'C_wedge_meter_ISO_5167_6_2017', 'dP_wedge_meter', 'C_Reader_Harris_Gallagher_wet_venturi_tube', 'dP_Reader_Harris_Gallagher_wet_venturi_tube', 'differential_pressure_meter_C_epsilon', 'differential_pressure_meter_beta', 'C_eccentric_orifice_ISO_15377_1998', 'C_quarter_circle_orifice_ISO_15377_1998', 'C_Miller_1996', 'all_meters', ] CONCENTRIC_ORIFICE = 'orifice' # normal ECCENTRIC_ORIFICE = 'eccentric orifice' CONICAL_ORIFICE = 'conical orifice' SEGMENTAL_ORIFICE = 'segmental orifice' QUARTER_CIRCLE_ORIFICE = 'quarter circle orifice' CONDITIONING_4_HOLE_ORIFICE = 'Rosemount 4 hole self conditioing' ORIFICE_HOLE_TYPES = [CONCENTRIC_ORIFICE, ECCENTRIC_ORIFICE, CONICAL_ORIFICE, SEGMENTAL_ORIFICE, QUARTER_CIRCLE_ORIFICE] ORIFICE_CORNER_TAPS = 'corner' ORIFICE_FLANGE_TAPS = 'flange' ORIFICE_D_AND_D_2_TAPS = 'D and D/2' ORIFICE_PIPE_TAPS = 'pipe' # Not in ISO 5167 ORIFICE_VENA_CONTRACTA_TAPS = 'vena contracta' # Not in ISO 5167, normally segmental or eccentric orifices # Used by miller; modifier on taps TAPS_OPPOSITE = '180 degree' TAPS_SIDE = '90 degree' ISO_5167_ORIFICE = 'ISO 5167 orifice' ISO_15377_ECCENTRIC_ORIFICE = 'ISO 15377 eccentric orifice' ISO_15377_QUARTER_CIRCLE_ORIFICE = 'ISO 15377 quarter-circle orifice' ISO_15377_CONICAL_ORIFICE = 'ISO 15377 conical orifice' MILLER_ORIFICE = 'Miller orifice' MILLER_ECCENTRIC_ORIFICE = 'Miller eccentric orifice' MILLER_SEGMENTAL_ORIFICE = 'Miller segmental orifice' MILLER_CONICAL_ORIFICE = 'Miller conical orifice' MILLER_QUARTER_CIRCLE_ORIFICE = 'Miller quarter circle orifice' UNSPECIFIED_METER = 'unspecified meter' LONG_RADIUS_NOZZLE = 'long radius nozzle' ISA_1932_NOZZLE = 'ISA 1932 nozzle' VENTURI_NOZZLE = 'venuri nozzle' AS_CAST_VENTURI_TUBE = 'as cast convergent venturi tube' MACHINED_CONVERGENT_VENTURI_TUBE = 'machined convergent venturi tube' ROUGH_WELDED_CONVERGENT_VENTURI_TUBE = 'rough welded convergent venturi tube' HOLLINGSHEAD_ORIFICE = 'Hollingshead orifice' HOLLINGSHEAD_VENTURI_SMOOTH = 'Hollingshead venturi smooth' HOLLINGSHEAD_VENTURI_SHARP = 'Hollingshead venturi sharp' HOLLINGSHEAD_CONE = 'Hollingshead v cone' HOLLINGSHEAD_WEDGE = 'Hollingshead wedge' CONE_METER = 'cone meter' WEDGE_METER = 'wedge meter' __all__.extend(['ISO_5167_ORIFICE','ISO_15377_ECCENTRIC_ORIFICE', 'MILLER_ORIFICE', 'MILLER_ECCENTRIC_ORIFICE', 'MILLER_SEGMENTAL_ORIFICE', 'LONG_RADIUS_NOZZLE', 'ISA_1932_NOZZLE', 'VENTURI_NOZZLE', 'AS_CAST_VENTURI_TUBE', 'MACHINED_CONVERGENT_VENTURI_TUBE', 'ROUGH_WELDED_CONVERGENT_VENTURI_TUBE', 'CONE_METER', 'WEDGE_METER', 'ISO_15377_CONICAL_ORIFICE', 'MILLER_CONICAL_ORIFICE', 'MILLER_QUARTER_CIRCLE_ORIFICE', 'ISO_15377_QUARTER_CIRCLE_ORIFICE', 'UNSPECIFIED_METER', 'HOLLINGSHEAD_ORIFICE', 'HOLLINGSHEAD_CONE', 'HOLLINGSHEAD_WEDGE', 'HOLLINGSHEAD_VENTURI_SMOOTH', 'HOLLINGSHEAD_VENTURI_SHARP']) __all__.extend(['ORIFICE_CORNER_TAPS', 'ORIFICE_FLANGE_TAPS', 'ORIFICE_D_AND_D_2_TAPS', 'ORIFICE_PIPE_TAPS', 'ORIFICE_VENA_CONTRACTA_TAPS', 'TAPS_OPPOSITE', 'TAPS_SIDE']) __all__.extend(['CONCENTRIC_ORIFICE', 'ECCENTRIC_ORIFICE', 'CONICAL_ORIFICE', 'SEGMENTAL_ORIFICE', 'QUARTER_CIRCLE_ORIFICE']) def flow_meter_discharge(D, Do, P1, P2, rho, C, expansibility=1.0): r'''Calculates the flow rate of an orifice plate based on the geometry of the plate, measured pressures of the orifice, and the density of the fluid. .. math:: m = \left(\frac{\pi D_o^2}{4}\right) C \frac{\sqrt{2\Delta P \rho_1}} {\sqrt{1 - \beta^4}}\cdot \epsilon Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of orifice at flow conditions, [m] P1 : float Static pressure of fluid upstream of orifice at the cross-section of the pressure tap, [Pa] P2 : float Static pressure of fluid downstream of orifice at the cross-section of the pressure tap, [Pa] rho : float Density of fluid at `P1`, [kg/m^3] C : float Coefficient of discharge of the orifice, [-] expansibility : float, optional Expansibility factor (1 for incompressible fluids, less than 1 for real fluids), [-] Returns ------- m : float Mass flow rate of fluid, [kg/s] Notes ----- This is formula 1-12 in [1]_ and also [2]_. Examples -------- >>> flow_meter_discharge(D=0.0739, Do=0.0222, P1=1E5, P2=9.9E4, rho=1.1646, ... C=0.5988, expansibility=0.9975) 0.01120390943807026 References ---------- .. [1] American Society of Mechanical Engineers. Mfc-3M-2004 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2001. .. [2] ISO 5167-2:2003 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 2: Orifice Plates. ''' beta = Do/D beta2 = beta*beta return (0.25*pi*Do*Do)*C*expansibility*sqrt((2.0*rho*(P1 - P2))/(1.0 - beta2*beta2)) def orifice_expansibility(D, Do, P1, P2, k): r'''Calculates the expansibility factor for orifice plate calculations based on the geometry of the plate, measured pressures of the orifice, and the isentropic exponent of the fluid. .. math:: \epsilon = 1 - (0.351 + 0.256\beta^4 + 0.93\beta^8) \left[1-\left(\frac{P_2}{P_1}\right)^{1/\kappa}\right] Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of orifice at flow conditions, [m] P1 : float Static pressure of fluid upstream of orifice at the cross-section of the pressure tap, [Pa] P2 : float Static pressure of fluid downstream of orifice at the cross-section of the pressure tap, [Pa] k : float Isentropic exponent of fluid, [-] Returns ------- expansibility : float, optional Expansibility factor (1 for incompressible fluids, less than 1 for real fluids), [-] Notes ----- This formula was determined for the range of P2/P1 >= 0.80, and for fluids of air, steam, and natural gas. However, there is no objection to using it for other fluids. It is said in [1]_ that for liquids this should not be used. The result can be forced by setting `k` to a really high number like 1E20. Examples -------- >>> orifice_expansibility(D=0.0739, Do=0.0222, P1=1E5, P2=9.9E4, k=1.4) 0.9974739057343425 References ---------- .. [1] American Society of Mechanical Engineers. Mfc-3M-2004 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2001. .. [2] ISO 5167-2:2003 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 2: Orifice Plates. ''' beta = Do/D beta2 = beta*beta beta4 = beta2*beta2 return (1.0 - (0.351 + beta4*(0.93*beta4 + 0.256))*( 1.0 - (P2/P1)**(1./k))) def orifice_expansibility_1989(D, Do, P1, P2, k): r'''Calculates the expansibility factor for orifice plate calculations based on the geometry of the plate, measured pressures of the orifice, and the isentropic exponent of the fluid. .. math:: \epsilon = 1- (0.41 + 0.35\beta^4)\Delta P/\kappa/P_1 Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of orifice at flow conditions, [m] P1 : float Static pressure of fluid upstream of orifice at the cross-section of the pressure tap, [Pa] P2 : float Static pressure of fluid downstream of orifice at the cross-section of the pressure tap, [Pa] k : float Isentropic exponent of fluid, [-] Returns ------- expansibility : float Expansibility factor (1 for incompressible fluids, less than 1 for real fluids), [-] Notes ----- This formula was determined for the range of P2/P1 >= 0.75, and for fluids of air, steam, and natural gas. However, there is no objection to using it for other fluids. This is an older formula used to calculate expansibility factors for orifice plates. In this standard, an expansibility factor formula transformation in terms of the pressure after the orifice is presented as well. This is the more standard formulation in terms of the upstream conditions. The other formula is below for reference only: .. math:: \epsilon_2 = \sqrt{1 + \frac{\Delta P}{P_2}} - (0.41 + 0.35\beta^4) \frac{\Delta P}{\kappa P_2 \sqrt{1 + \frac{\Delta P}{P_2}}} [2]_ recommends this formulation for wedge meters as well. Examples -------- >>> orifice_expansibility_1989(D=0.0739, Do=0.0222, P1=1E5, P2=9.9E4, k=1.4) 0.9970510687411718 References ---------- .. [1] American Society of Mechanical Engineers. MFC-3M-1989 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2005. .. [2] Miller, Richard W. Flow Measurement Engineering Handbook. 3rd edition. New York: McGraw-Hill Education, 1996. ''' return 1.0 - (0.41 + 0.35*(Do/D)**4)*(P1 - P2)/(k*P1) def C_Reader_Harris_Gallagher(D, Do, rho, mu, m, taps='corner'): r'''Calculates the coefficient of discharge of the orifice based on the geometry of the plate, measured pressures of the orifice, mass flow rate through the orifice, and the density and viscosity of the fluid. .. math:: C = 0.5961 + 0.0261\beta^2 - 0.216\beta^8 + 0.000521\left(\frac{ 10^6\beta}{Re_D}\right)^{0.7}\\ + (0.0188 + 0.0063A)\beta^{3.5} \left(\frac{10^6}{Re_D}\right)^{0.3} \\ +(0.043 + 0.080\exp(-10L_1) -0.123\exp(-7L_1))(1-0.11A)\frac{\beta^4} {1-\beta^4} \\ - 0.031(M_2' - 0.8M_2'^{1.1})\beta^{1.3} .. math:: M_2' = \frac{2L_2'}{1-\beta} .. math:: A = \left(\frac{19000\beta}{Re_{D}}\right)^{0.8} .. math:: Re_D = \frac{\rho v D}{\mu} If D < 71.12 mm (2.8 in.) (Note this is a continuous addition; there is no discontinuity): .. math:: C += 0.11(0.75-\beta)\left(2.8-\frac{D}{0.0254}\right) If the orifice has corner taps: .. math:: L_1 = L_2' = 0 If the orifice has D and D/2 taps: .. math:: L_1 = 1 .. math:: L_2' = 0.47 If the orifice has Flange taps: .. math:: L_1 = L_2' = \frac{0.0254}{D} Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of orifice at flow conditions, [m] rho : float Density of fluid at `P1`, [kg/m^3] mu : float Viscosity of fluid at `P1`, [Pa*s] m : float Mass flow rate of fluid through the orifice, [kg/s] taps : str The orientation of the taps; one of 'corner', 'flange', 'D', or 'D/2', [-] Returns ------- C : float Coefficient of discharge of the orifice, [-] Notes ----- The following limits apply to the orifice plate standard [1]_: The measured pressure difference for the orifice plate should be under 250 kPa. There are roughness limits as well; the roughness should be under 6 micrometers, although there are many more conditions to that given in [1]_. For orifice plates with D and D/2 or corner pressure taps: * Orifice bore diameter muse be larger than 12.5 mm (0.5 inches) * Pipe diameter between 50 mm and 1 m (2 to 40 inches) * Beta between 0.1 and 0.75 inclusive * Reynolds number larger than 5000 (for :math:`0.10 \le \beta \le 0.56`) or for :math:`\beta \ge 0.56, Re_D \ge 16000\beta^2` For orifice plates with flange pressure taps: * Orifice bore diameter muse be larger than 12.5 mm (0.5 inches) * Pipe diameter between 50 mm and 1 m (2 to 40 inches) * Beta between 0.1 and 0.75 inclusive * Reynolds number larger than 5000 and also larger than :math:`170000\beta^2 D`. This is also presented in Crane's TP410 (2009) publication, whereas the 1999 and 1982 editions showed only a graph for discharge coefficients. Examples -------- >>> C_Reader_Harris_Gallagher(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, ... m=0.12, taps='flange') 0.5990326277163659 References ---------- .. [1] American Society of Mechanical Engineers. Mfc-3M-2004 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2001. .. [2] ISO 5167-2:2003 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 2: Orifice Plates. .. [3] Reader-Harris, M. J., "The Equation for the Expansibility Factor for Orifice Plates," Proceedings of FLOMEKO 1998, Lund, Sweden, 1998: 209-214. .. [4] Reader-Harris, Michael. Orifice Plates and Venturi Tubes. Springer, 2015. ''' A_pipe = 0.25*pi*D*D v = m/(A_pipe*rho) Re_D = rho*v*D/mu Re_D_inv = 1.0/Re_D beta = Do/D if taps == 'corner': L1, L2_prime = 0.0, 0.0 elif taps == 'flange': L1 = L2_prime = 0.0254/D elif taps == 'D' or taps == 'D/2' or taps == ORIFICE_D_AND_D_2_TAPS: L1 = 1.0 L2_prime = 0.47 else: raise ValueError('Unsupported tap location') beta2 = beta*beta beta4 = beta2*beta2 beta8 = beta4*beta4 A = 2648.5177066967326*(beta*Re_D_inv)**0.8 # 19000.0^0.8 = 2648.51.... M2_prime = 2.0*L2_prime/(1.0 - beta) # These two exps expnL1 = exp(-L1) expnL2 = expnL1*expnL1 expnL3 = expnL1*expnL2 delta_C_upstream = ((0.043 + expnL3*expnL2*expnL2*(0.080*expnL3 - 0.123)) *(1.0 - 0.11*A)*beta4/(1.0 - beta4)) # The max part is not in the ISO standard t1 = log10(3700.*Re_D_inv) if t1 < 0.0: t1 = 0.0 delta_C_downstream = (-0.031*(M2_prime - 0.8*M2_prime**1.1)*beta**1.3 *(1.0 + 8.0*t1)) # C_inf is discharge coefficient with corner taps for infinite Re # Cs, slope term, provides increase in discharge coefficient for lower # Reynolds numbers. x1 = 63.095734448019314*(Re_D_inv)**0.3 # 63.095... = (1e6)**0.3 x2 = 22.7 - 0.0047*Re_D t2 = x1 if x1 > x2 else x2 # max term is not in the ISO standard C_inf_C_s = (0.5961 + 0.0261*beta2 - 0.216*beta8 + 0.000521*(1E6*beta*Re_D_inv)**0.7 + (0.0188 + 0.0063*A)*beta2*beta*sqrt(beta)*( t2)) C = (C_inf_C_s + delta_C_upstream + delta_C_downstream) if D < 0.07112: # Limit is 2.8 inches, .1 inches smaller than the internal diameter of # a sched. 80 pipe. # Suggested to be required not becausue of any effect of small # diameters themselves, but because of edge radius differences. # max term is given in [4]_ Reader-Harris, Michael book # There is a check for t3 being negative and setting it to zero if so # in some sources but that only occurs when t3 is exactly the limit # (0.07112) so it is not needed t3 = (2.8 - D*inch_inv) delta_C_diameter = 0.011*(0.75 - beta)*t3 C += delta_C_diameter return C _Miller_1996_unsupported_type = "Supported orifice types are %s" %str( (CONCENTRIC_ORIFICE, SEGMENTAL_ORIFICE, ECCENTRIC_ORIFICE, CONICAL_ORIFICE, QUARTER_CIRCLE_ORIFICE)) _Miller_1996_unsupported_tap_concentric = "Supported taps for subtype '%s' are %s" %( CONCENTRIC_ORIFICE, (ORIFICE_CORNER_TAPS, ORIFICE_FLANGE_TAPS, ORIFICE_D_AND_D_2_TAPS, ORIFICE_PIPE_TAPS)) _Miller_1996_unsupported_tap_pos_eccentric = "Supported tap positions for subtype '%s' are %s" %( ECCENTRIC_ORIFICE, (TAPS_OPPOSITE, TAPS_SIDE)) _Miller_1996_unsupported_tap_eccentric = "Supported taps for subtype '%s' are %s" %( ECCENTRIC_ORIFICE, (ORIFICE_FLANGE_TAPS, ORIFICE_VENA_CONTRACTA_TAPS)) _Miller_1996_unsupported_tap_segmental = "Supported taps for subtype '%s' are %s" %( SEGMENTAL_ORIFICE, (ORIFICE_FLANGE_TAPS, ORIFICE_VENA_CONTRACTA_TAPS)) def C_Miller_1996(D, Do, rho, mu, m, subtype='orifice', taps=ORIFICE_CORNER_TAPS, tap_position=TAPS_OPPOSITE): r'''Calculates the coefficient of discharge of any of the orifice types supported by the Miller (1996) [1]_ correlation set. These correlations cover a wide range of industrial applications and sizes. Most of them are functions of `beta` ratio and Reynolds number. Unlike the ISO standards, these correlations do not come with well defined ranges of validity, so caution should be applied using there correlations. The base equation is as follows, and each orifice type and range has different values or correlations for :math:`C_{\infty}`, `b`, and `n`. .. math:: C = C_{\infty} + \frac{b}{{Re}_D^n} Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of orifice at flow conditions, [m] rho : float Density of fluid at `P1`, [kg/m^3] mu : float Viscosity of fluid at `P1`, [Pa*s] m : float Mass flow rate of fluid through the orifice, [kg/s] subtype : str, optional One of 'orifice', 'eccentric orifice', 'segmental orifice', 'conical orifice', or 'quarter circle orifice', [-] taps : str, optional The orientation of the taps; one of 'corner', 'flange', 'D and D/2', 'pipe', or 'vena contracta'; not all orifice subtypes support the all tap types [-] tap_position : str, optional The rotation of the taps, used **only for the eccentric orifice case** where the pressure profile is are not symmetric; '180 degree' for the normal case where the taps are opposite the orifice bore, and '90 degree' for the case where, normally for operational reasons, the taps are near the bore [-] Returns ------- C : float Coefficient of discharge of the orifice, [-] Notes ----- Many of the correlations transition at a pipe diameter of 100 mm to different equations, which will lead to discontinuous behavior. It should also be noted the author of these correlations developed a commercial flow meter rating software package, at [2]_. He passed away in 2014, but contributed massively to the field of flow measurement. The numerous equations for the different cases are as follows: For all **regular (concentric) orifices**, the `b` equation is as follows and n = 0.75: .. math:: b = 91.706\beta^{2.5} Regular (concentric) orifice, corner taps: .. math:: C_{\infty} = 0.5959 + 0.0312\beta^2.1 - 0.184\beta^8 Regular (concentric) orifice, flange taps, D > 58.4 mm: .. math:: C_{\infty} = 0.5959 + 0.0312\beta^{2.1} - 0.184\beta^8 + \frac{2.286\beta^4}{(D_{mm}(1.0 - \beta^4))} - \frac{0.856\beta^3}{D_{mm}} Regular (concentric) orifice, flange taps, D < 58.4 mm: .. math:: C_{\infty} = 0.5959 + 0.0312\beta^{2.1} - 0.184\beta^8 + \frac{0.039\beta^4}{(1.0 - \beta^4)} - \frac{0.856\beta^3}{D_{mm}} Regular (concentric) orifice, 'D and D/2' taps: .. math:: C_{\infty} = 0.5959 + 0.0312\beta^{2.1} - 0.184\beta^8 + \frac{0.039\beta^4}{(1.0 - \beta^4)} - 0.01584 Regular (concentric) orifice, 'pipe' taps: .. math:: C_{\infty} = 0.5959 + 0.461\beta^{2.1} + 0.48\beta^8 + \frac{0.039\beta^4}{(1.0 - \beta^4)} For the case of a **conical orifice**, there is no tap dependence and one equation (`b` = 0, `n` = 0): .. math:: C_{\infty} = 0.734 \text{ if } 250\beta \le Re \le 500\beta \text{ else } 0.730 For the case of a **quarter circle orifice**, corner and flange taps have the same dependence (`b` = 0, `n` = 0): .. math:: C_{\infty} = (0.7746 - 0.1334\beta^{2.1} + 1.4098\beta^8 + \frac{0.0675\beta^4}{(1 - \beta^4)} + 0.3865\beta^3) For all **segmental orifice** types, `b` = 0 and `n` = 0 Segmental orifice, 'flange' taps, D < 10 cm: .. math:: C_{\infty} = 0.6284 + 0.1462\beta^{2.1} - 0.8464\beta^8 + \frac{0.2603\beta^4}{(1-\beta^4)} - 0.2886\beta^3 Segmental orifice, 'flange' taps, D > 10 cm: .. math:: C_{\infty} = 0.6276 + 0.0828\beta^{2.1} + 0.2739\beta^8 - \frac{0.0934\beta^4}{(1-\beta^4)} - 0.1132\beta^3 Segmental orifice, 'vena contracta' taps, D < 10 cm: .. math:: C_{\infty} = 0.6261 + 0.1851\beta^{2.1} - 0.2879\beta^8 + \frac{0.1170\beta^4}{(1-\beta^4)} - 0.2845\beta^3 Segmental orifice, 'vena contracta' taps, D > 10 cm: .. math:: C_{\infty} = 0.6276 + 0.0828\beta^{2.1} + 0.2739\beta^8 - \frac{0.0934\beta^4}{(1-\beta^4)} - 0.1132\beta^3 For all **eccentric orifice** types, `n` = 0.75 and `b` is fit to a polynomial of `beta`. Eccentric orifice, 'flange' taps, 180 degree opposite taps, D < 10 cm: .. math:: C_{\infty} = 0.5917 + 0.3061\beta^{2.1} + .3406\beta^8 -\frac{.1019\beta^4}{(1-\beta^4)} - 0.2715\beta^3 .. math:: b = 7.3 - 15.7\beta + 170.8\beta^2 - 399.7\beta^3 + 332.2\beta^4 Eccentric orifice, 'flange' taps, 180 degree opposite taps, D > 10 cm: .. math:: C_{\infty} = 0.6016 + 0.3312\beta^{2.1} -1.5581\beta^8 + \frac{0.6510\beta^4}{(1-\beta^4)} - 0.7308\beta^3 .. math:: b = -139.7 + 1328.8\beta - 4228.2\beta^2 + 5691.9\beta^3 - 2710.4\beta^4 Eccentric orifice, 'flange' taps, 90 degree side taps, D < 10 cm: .. math:: C_{\infty} = 0.5866 + 0.3917\beta^{2.1} + .7586\beta^8 - \frac{.2273\beta^4}{(1-\beta^4)} - .3343\beta^3 .. math:: b = 69.1 - 469.4\beta + 1245.6\beta^2 -1287.5\beta^3 + 486.2\beta^4 Eccentric orifice, 'flange' taps, 90 degree side taps, D > 10 cm: .. math:: C_{\infty} = 0.6037 + 0.1598\beta^{2.1} -.2918\beta^8 + \frac{0.0244\beta^4}{(1-\beta^4)} - 0.0790\beta^3 .. math:: b = -103.2 + 898.3\beta - 2557.3\beta^2 + 2977.0\beta^3 - 1131.3\beta^4 Eccentric orifice, 'vena contracta' taps, 180 degree opposite taps, D < 10 cm: .. math:: C_{\infty} = 0.5925 + 0.3380\beta^{2.1} + 0.4016\beta^8 - \frac{.1046\beta^4}{(1-\beta^4)} - 0.3212\beta^3 .. math:: b = 23.3 -207.0\beta + 821.5\beta^2 -1388.6\beta^3 + 900.3\beta^4 Eccentric orifice, 'vena contracta' taps, 180 degree opposite taps, D > 10 cm: .. math:: C_{\infty} = 0.5922 + 0.3932\beta^{2.1} + .3412\beta^8 - \frac{.0569\beta^4}{(1-\beta^4)} - 0.4628\beta^3 .. math:: b = 55.7 - 471.4\beta + 1721.8\beta^2 - 2722.6\beta^3 + 1569.4\beta^4 Eccentric orifice, 'vena contracta' taps, 90 degree side taps, D < 10 cm: .. math:: C_{\infty} = 0.5875 + 0.3813\beta^{2.1} + 0.6898\beta^8 - \frac{0.1963\beta^4}{(1-\beta^4)} - 0.3366\beta^3 .. math:: b = -69.3 + 556.9\beta - 1332.2\beta^2 + 1303.7\beta^3 - 394.8\beta^4 Eccentric orifice, 'vena contracta' taps, 90 degree side taps, D > 10 cm: .. math:: C_{\infty} = 0.5949 + 0.4078\beta^{2.1} + 0.0547\beta^8 + \frac{0.0955\beta^4}{(1-\beta^4)} - 0.5608\beta^3 .. math:: b = 52.8 - 434.2\beta + 1571.2\beta^2 - 2460.9\beta^3 + 1420.2\beta^4 Examples -------- >>> C_Miller_1996(D=0.07391, Do=0.0222, rho=1.165, mu=1.85E-5, m=0.12, taps='flange', subtype='orifice') 0.599065557156788 References ---------- .. [1] Miller, Richard W. Flow Measurement Engineering Handbook. McGraw-Hill Education, 1996. .. [2] "RW Miller & Associates." Accessed April 13, 2020. http://rwmillerassociates.com/. ''' A_pipe = 0.25*pi*D*D v = m/(A_pipe*rho) Re = rho*v*D/mu D_mm = D*1000.0 beta = Do/D beta3 = beta*beta*beta beta4 = beta*beta3 beta8 = beta4*beta4 beta21 = beta**2.1 if subtype == MILLER_ORIFICE or subtype == CONCENTRIC_ORIFICE: b = 91.706*beta**2.5 n = 0.75 if taps == ORIFICE_CORNER_TAPS: C_inf = 0.5959 + 0.0312*beta21 - 0.184*beta8 elif taps == ORIFICE_FLANGE_TAPS: if D_mm >= 58.4: C_inf = 0.5959 + 0.0312*beta21 - 0.184*beta8 + 2.286*beta4/(D_mm*(1.0 - beta4)) - 0.856*beta3/D_mm else: C_inf = 0.5959 + 0.0312*beta21 - 0.184*beta8 + 0.039*beta4/(1.0 - beta4) - 0.856*beta3/D_mm elif taps == ORIFICE_D_AND_D_2_TAPS: C_inf = 0.5959 + 0.0312*beta21 - 0.184*beta8 + 0.039*beta4/(1.0 - beta4) - 0.01584 elif taps == ORIFICE_PIPE_TAPS: C_inf = 0.5959 + 0.461*beta21 + 0.48*beta8 + 0.039*beta4/(1.0 - beta4) else: raise ValueError(_Miller_1996_unsupported_tap_concentric) elif subtype == MILLER_ECCENTRIC_ORIFICE or subtype == ECCENTRIC_ORIFICE: if tap_position != TAPS_OPPOSITE and tap_position != TAPS_SIDE: raise ValueError(_Miller_1996_unsupported_tap_pos_eccentric) n = 0.75 if taps == ORIFICE_FLANGE_TAPS: if tap_position == TAPS_OPPOSITE: if D < 0.1: b = 7.3 - 15.7*beta + 170.8*beta**2 - 399.7*beta3 + 332.2*beta4 C_inf = 0.5917 + 0.3061*beta21 + .3406*beta8 -.1019*beta4/(1-beta4) - 0.2715*beta3 else: b = -139.7 + 1328.8*beta - 4228.2*beta**2 + 5691.9*beta3 - 2710.4*beta4 C_inf = 0.6016 + 0.3312*beta21 - 1.5581*beta8 + 0.6510*beta4/(1-beta4) - 0.7308*beta3 elif tap_position == TAPS_SIDE: if D < 0.1: b = 69.1 - 469.4*beta + 1245.6*beta**2 -1287.5*beta3 + 486.2*beta4 C_inf = 0.5866 + 0.3917*beta21 + 0.7586*beta8 -.2273*beta4/(1-beta4) - .3343*beta3 else: b = -103.2 + 898.3*beta - 2557.3*beta**2 + 2977.0*beta3 - 1131.3*beta4 C_inf = 0.6037 + 0.1598*beta21 - 0.2918*beta8 + 0.0244*beta4/(1-beta4) - 0.0790*beta3 elif taps == ORIFICE_VENA_CONTRACTA_TAPS: if tap_position == TAPS_OPPOSITE: if D < 0.1: b = 23.3 -207.0*beta + 821.5*beta**2 -1388.6*beta3 + 900.3*beta4 C_inf = 0.5925 + 0.3380*beta21 + 0.4016*beta8 -.1046*beta4/(1-beta4) - 0.3212*beta3 else: b = 55.7 - 471.4*beta + 1721.8*beta**2 - 2722.6*beta3 + 1569.4*beta4 C_inf = 0.5922 + 0.3932*beta21 + .3412*beta8 -.0569*beta4/(1-beta4) - 0.4628*beta3 elif tap_position == TAPS_SIDE: if D < 0.1: b = -69.3 + 556.9*beta - 1332.2*beta**2 + 1303.7*beta3 - 394.8*beta4 C_inf = 0.5875 + 0.3813*beta21 + 0.6898*beta8 -0.1963*beta4/(1-beta4) - 0.3366*beta3 else: b = 52.8 - 434.2*beta + 1571.2*beta**2 - 2460.9*beta3 + 1420.2*beta4 C_inf = 0.5949 + 0.4078*beta21 + 0.0547*beta8 +0.0955*beta4/(1-beta4) - 0.5608*beta3 else: raise ValueError(_Miller_1996_unsupported_tap_eccentric) elif subtype == MILLER_SEGMENTAL_ORIFICE or subtype == SEGMENTAL_ORIFICE: n = b = 0.0 if taps == ORIFICE_FLANGE_TAPS: if D < 0.1: C_inf = 0.6284 + 0.1462*beta21 - 0.8464*beta8 + 0.2603*beta4/(1-beta4) - 0.2886*beta3 else: C_inf = 0.6276 + 0.0828*beta21 + 0.2739*beta8 - 0.0934*beta4/(1-beta4) - 0.1132*beta3 elif taps == ORIFICE_VENA_CONTRACTA_TAPS: if D < 0.1: C_inf = 0.6261 + 0.1851*beta21 - 0.2879*beta8 + 0.1170*beta4/(1-beta4) - 0.2845*beta3 else: # Yes these are supposed to be the same as the flange, large set C_inf = 0.6276 + 0.0828*beta21 + 0.2739*beta8 - 0.0934*beta4/(1-beta4) - 0.1132*beta3 else: raise ValueError(_Miller_1996_unsupported_tap_segmental) elif subtype == MILLER_CONICAL_ORIFICE or subtype == CONICAL_ORIFICE: n = b = 0.0 if 250.0*beta <= Re <= 500.0*beta: C_inf = 0.734 else: C_inf = 0.730 elif subtype == MILLER_QUARTER_CIRCLE_ORIFICE or subtype == QUARTER_CIRCLE_ORIFICE: n = b = 0.0 C_inf = (0.7746 - 0.1334*beta21 + 1.4098*beta8 + 0.0675*beta4/(1.0 - beta4) + 0.3865*beta3) else: raise ValueError(_Miller_1996_unsupported_type) C = C_inf + b*Re**-n return C # Data from: Discharge Coefficient Performance of Venturi, Standard Concentric Orifice Plate, V-Cone, and Wedge Flow Meters at Small Reynolds Numbers orifice_std_Res_Hollingshead = [1.0, 5.0, 10.0, 20.0, 30.0, 40.0, 60.0, 80.0, 100.0, 200.0, 300.0, 500.0, 1000.0, 2000.0, 3000.0, 5000.0, 10000.0, 100000.0, 1000000.0, 10000000.0, 50000000.0 ] orifice_std_logRes_Hollingshead = [0.0, 1.6094379124341003, 2.302585092994046, 2.995732273553991, 3.4011973816621555, 3.6888794541139363, 4.0943445622221, 4.382026634673881, 4.605170185988092, 5.298317366548036, 5.703782474656201, 6.214608098422191, 6.907755278982137, 7.600902459542082, 8.006367567650246, 8.517193191416238, 9.210340371976184, 11.512925464970229, 13.815510557964274, 16.11809565095832, 17.72753356339242 ] orifice_std_betas_Hollingshead = [0.5, 0.6, 0.65, 0.7] orifice_std_beta_5_Hollingshead_Cs = [0.233, 0.478, 0.585, 0.654, 0.677, 0.688, 0.697, 0.700, 0.702, 0.699, 0.693, 0.684, 0.67, 0.648, 0.639, 0.632, 0.629, 0.619, 0.615, 0.614, 0.614 ] orifice_std_beta_6_Hollingshead_Cs = [0.212, 0.448, 0.568, 0.657, 0.689, 0.707, 0.721, 0.725, 0.727, 0.725, 0.719, 0.707, 0.688, 0.658, 0.642, 0.633, 0.624, 0.61, 0.605, 0.602, 0.595 ] orifice_std_beta_65_Hollingshead_Cs = [0.202, 0.425, 0.546, 0.648, 0.692, 0.715, 0.738, 0.748, 0.754, 0.764, 0.763, 0.755, 0.736, 0.685, 0.666, 0.656, 0.641, 0.622, 0.612, 0.61, 0.607 ] orifice_std_beta_7_Hollingshead_Cs = [0.191, 0.407, 0.532, 0.644, 0.696, 0.726, 0.756, 0.772, 0.781, 0.795, 0.796, 0.788, 0.765, 0.7, 0.67, 0.659, 0.646, 0.623, 0.616, 0.607, 0.604 ] orifice_std_Hollingshead_Cs = [orifice_std_beta_5_Hollingshead_Cs, orifice_std_beta_6_Hollingshead_Cs, orifice_std_beta_65_Hollingshead_Cs, orifice_std_beta_7_Hollingshead_Cs ] orifice_std_Hollingshead_tck = implementation_optimize_tck([ [0.5, 0.5, 0.5, 0.5, 0.7, 0.7, 0.7, 0.7], [0.0, 0.0, 0.0, 0.0, 2.302585092994046, 2.995732273553991, 3.4011973816621555, 3.6888794541139363, 4.0943445622221, 4.382026634673881, 4.605170185988092, 5.298317366548036, 5.703782474656201, 6.214608098422191, 6.907755278982137, 7.600902459542082, 8.006367567650246, 8.517193191416238, 9.210340371976184, 11.512925464970229, 13.815510557964274, 17.72753356339242, 17.72753356339242, 17.72753356339242, 17.72753356339242 ], [0.23300000000000026, 0.3040793845022822, 0.5397693379388018, 0.6509414325648643, 0.6761419937262648, 0.6901697401156808, 0.6972240707909276, 0.6996759572505151, 0.7040223363705952, 0.7008741587711967, 0.692665226515394, 0.6826387818678974, 0.6727930643166521, 0.6490542161859936, 0.6378780959698012, 0.6302027504736312, 0.6284904523610422, 0.616773266650063, 0.6144108030024114, 0.6137270770149181, 0.6140000000000004, 0.21722222222222212, 0.26754856063815036, 0.547178981607613, 0.6825835849471493, 0.6848255120880751, 0.712775784969247, 0.7066842545008245, 0.7020345744268808, 0.6931476737316041, 0.6710886785478944, 0.6501218695989138, 0.6257164975579488, 0.5888463567232898, 0.6237505336392806, 0.578149766754485, 0.5761890160080455, 0.5922303103985014, 0.5657790974864929, 0.6013376373672517, 0.5693593555949975, 0.5528888888888888, 0.206777777777778, 0.2644342350096853, 0.4630985572034346, 0.6306849522311501, 0.6899260188747366, 0.7092703879134302, 0.7331416654072416, 0.7403866219900521, 0.7531493636395633, 0.7685019053395048, 0.771007019842085, 0.7649533772965396, 0.7707020081746302, 0.6897832472092346, 0.6910618341373851, 0.6805763529796045, 0.6291884772151493, 0.6470904244660671, 0.5962879899497537, 0.6353096798316025, 0.6277777777777779, 0.19100000000000003, 0.23712276889270198, 0.44482842661392175, 0.6337225464930397, 0.6926462978136392, 0.7316874888663132, 0.7542057211530093, 0.77172737538752, 0.7876049778429112, 0.795143180926116, 0.7977570986094262, 0.7861445043222344, 0.777182818678971, 0.7057345800650827, 0.6626698628526632, 0.6600690433654985, 0.6323396431072075, 0.6212684034830293, 0.616281323630018, 0.603728515722033, 0.6040000000000001 ], 3, 3 ]) def C_eccentric_orifice_ISO_15377_1998(D, Do): r'''Calculates the coefficient of discharge of an eccentric orifice based on the geometry of the plate according to ISO 15377, first introduced in 1998 and also presented in the second 2007 edition. It also appears in BS 1042-1.2: 1989. .. math:: C = 0.9355 - 1.6889\beta + 3.0428\beta^2 - 1.7989\beta^3 This type of plate is normally used to avoid obstructing entrained gas, liquid, or sediment. Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of orifice at flow conditions, [m] Returns ------- C : float Coefficient of discharge of the eccentric orifice, [-] Notes ----- No correction for where the orifice bore is located is included. The following limits apply to the orifice plate standard [1]_: * Bore diameter above 50 mm. * Pipe diameter between 10 cm and 1 m. * Beta ratio between 0.46 and 0.84 * :math:`2\times 10^5 \beta^2 \le Re_D \le 10^6 \beta` The uncertainty of this equation for `C` is said to be 1% if `beta` is under 0.75, otherwise 2%. The `orifice_expansibility` function should be used with this method as well. Additional specifications are: * The thickness of the orifice should be between 0.005`D` and 0.02`D`. * Corner tappings should be used, with hole diameter between 3 and 10 mm. The angular orientation of the tappings matters because the flow meter is not symmetrical. The angle should ideally be at the top or bottom of the plate, opposite which side the bore is on - but this can cause issues with deposition if the taps are on the bottom or gas bubbles if the taps are on the taps. The taps are often placed 30 degrees away from the ideal position to counteract this effect, with under an extra 2% error. Some comparisons with CFD results can be found in [2]_. Examples -------- >>> C_eccentric_orifice_ISO_15377_1998(.2, .075) 0.6351923828125 References ---------- .. [1] TC 30/SC 2, ISO. ISO/TR 15377:1998, Measurement of Fluid Flow by Means of Pressure-Differential Devices - Guide for the Specification of Nozzles and Orifice Plates beyond the Scope of ISO 5167-1. .. [2] Yashvanth, S., Varadarajan Seshadri, and J. YogeshKumarK. "CFD Analysis of Flow through Single and Multi Stage Eccentric Orifice Plate Assemblies," 2017. ''' beta = Do/D C = beta*(beta*(3.0428 - 1.7989*beta) - 1.6889) + 0.9355 return C def C_quarter_circle_orifice_ISO_15377_1998(D, Do): r'''Calculates the coefficient of discharge of a quarter circle orifice based on the geometry of the plate according to ISO 15377, first introduced in 1998 and also presented in the second 2007 edition. It also appears in BS 1042-1.2: 1989. .. math:: C = 0.73823 + 0.3309\beta - 1.1615\beta^2 + 1.5084\beta^3 Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of orifice at flow conditions, [m] Returns ------- C : float Coefficient of discharge of the quarter circle orifice, [-] Notes ----- The discharge coefficient of this type of orifice plate remains constant down to a lower than normal `Re`, as occurs in highly viscous applications. The following limits apply to the orifice plate standard [1]_: * Bore diameter >= 1.5 cm * Pipe diameter <= 50 cm * Beta ratio between 0.245 and 0.6 * :math:`Re_d \le 10^5 \beta` There is also a table in [1]_ which lists increased minimum upstream pipe diameters for pipes of different roughnesses; the higher the roughness, the larger the pipe diameter required, and the table goes up to 20 cm for rusty cast iron. Corner taps should be used up to pipe diameters of 40 mm; for larger pipes, corner or flange taps can be used. No impact on the flow coefficient is included in the correlation. The recommended expansibility method for this type of orifice is :obj:`orifice_expansibility`. Examples -------- >>> C_quarter_circle_orifice_ISO_15377_1998(.2, .075) 0.77851484375000 References ---------- .. [1] TC 30/SC 2, ISO. ISO/TR 15377:1998, Measurement of Fluid Flow by Means of Pressure-Differential Devices - Guide for the Specification of Nozzles and Orifice Plates beyond the Scope of ISO 5167-1. ''' beta = Do/D C = beta*(beta*(1.5084*beta - 1.16158) + 0.3309) + 0.73823 return C def discharge_coefficient_to_K(D, Do, C): r'''Converts a discharge coefficient to a standard loss coefficient, for use in computation of the actual pressure drop of an orifice or other device. .. math:: K = \left[\frac{\sqrt{1-\beta^4(1-C^2)}}{C\beta^2} - 1\right]^2 Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of orifice at flow conditions, [m] C : float Coefficient of discharge of the orifice, [-] Returns ------- K : float Loss coefficient with respect to the velocity and density of the fluid just upstream of the orifice, [-] Notes ----- If expansibility is used in the orifice calculation, the result will not match with the specified pressure drop formula in [1]_; it can almost be matched by dividing the calculated mass flow by the expansibility factor and using that mass flow with the loss coefficient. Examples -------- >>> discharge_coefficient_to_K(D=0.07366, Do=0.05, C=0.61512) 5.2314291729754 References ---------- .. [1] American Society of Mechanical Engineers. Mfc-3M-2004 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2001. .. [2] ISO 5167-2:2003 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 2: Orifice Plates. ''' beta = Do/D beta2 = beta*beta beta4 = beta2*beta2 root_K = (sqrt(1.0 - beta4*(1.0 - C*C))/(C*beta2) - 1.0) return root_K*root_K def K_to_discharge_coefficient(D, Do, K): r'''Converts a standard loss coefficient to a discharge coefficient. .. math:: C = \sqrt{\frac{1}{2 \sqrt{K} \beta^{4} + K \beta^{4}} - \frac{\beta^{4}}{2 \sqrt{K} \beta^{4} + K \beta^{4}} } Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of orifice at flow conditions, [m] K : float Loss coefficient with respect to the velocity and density of the fluid just upstream of the orifice, [-] Returns ------- C : float Coefficient of discharge of the orifice, [-] Notes ----- If expansibility is used in the orifice calculation, the result will not match with the specified pressure drop formula in [1]_; it can almost be matched by dividing the calculated mass flow by the expansibility factor and using that mass flow with the loss coefficient. This expression was derived with SymPy, and checked numerically. There were three other, incorrect roots. Examples -------- >>> K_to_discharge_coefficient(D=0.07366, Do=0.05, K=5.2314291729754) 0.6151200000000001 References ---------- .. [1] American Society of Mechanical Engineers. Mfc-3M-2004 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2001. .. [2] ISO 5167-2:2003 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 2: Orifice Plates. ''' beta = Do/D beta2 = beta*beta beta4 = beta2*beta2 root_K = sqrt(K) return sqrt((1.0 - beta4)/((2.0*root_K + K)*beta4)) def dP_orifice(D, Do, P1, P2, C): r'''Calculates the non-recoverable pressure drop of an orifice plate based on the pressure drop and the geometry of the plate and the discharge coefficient. .. math:: \Delta\bar w = \frac{\sqrt{1-\beta^4(1-C^2)}-C\beta^2} {\sqrt{1-\beta^4(1-C^2)}+C\beta^2} (P_1 - P_2) Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of orifice at flow conditions, [m] P1 : float Static pressure of fluid upstream of orifice at the cross-section of the pressure tap, [Pa] P2 : float Static pressure of fluid downstream of orifice at the cross-section of the pressure tap, [Pa] C : float Coefficient of discharge of the orifice, [-] Returns ------- dP : float Non-recoverable pressure drop of the orifice plate, [Pa] Notes ----- This formula can be well approximated by: .. math:: \Delta\bar w = \left(1 - \beta^{1.9}\right)(P_1 - P_2) The recoverable pressure drop should be recovered by 6 pipe diameters downstream of the orifice plate. Examples -------- >>> dP_orifice(D=0.07366, Do=0.05, P1=200000.0, P2=183000.0, C=0.61512) 9069.474705745388 References ---------- .. [1] American Society of Mechanical Engineers. Mfc-3M-2004 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2001. .. [2] ISO 5167-2:2003 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 2: Orifice Plates. ''' beta = Do/D beta2 = beta*beta beta4 = beta2*beta2 dP = P1 - P2 delta_w = (sqrt(1.0 - beta4*(1.0 - C*C)) - C*beta2)/( sqrt(1.0 - beta4*(1.0 - C*C)) + C*beta2)*dP return delta_w def velocity_of_approach_factor(D, Do): r'''Calculates a factor for orifice plate design called the `velocity of approach`. .. math:: \text{Velocity of approach} = \frac{1}{\sqrt{1 - \beta^4}} Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of orifice at flow conditions, [m] Returns ------- velocity_of_approach : float Coefficient of discharge of the orifice, [-] Notes ----- Examples -------- >>> velocity_of_approach_factor(D=0.0739, Do=0.0222) 1.0040970074165514 References ---------- .. [1] American Society of Mechanical Engineers. Mfc-3M-2004 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2001. ''' return 1.0/sqrt(1.0 - (Do/D)**4) def flow_coefficient(D, Do, C): r'''Calculates a factor for differential pressure flow meter design called the `flow coefficient`. This should not be confused with the flow coefficient often used when discussing valves. .. math:: \text{Flow coefficient} = \frac{C}{\sqrt{1 - \beta^4}} Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of flow meter characteristic dimension at flow conditions, [m] C : float Coefficient of discharge of the flow meter, [-] Returns ------- flow_coefficient : float Differential pressure flow meter flow coefficient, [-] Notes ----- This measure is used not just for orifices but for other differential pressure flow meters [2]_. It is sometimes given the symbol K. It is also equal to the product of the diacharge coefficient and the velocity of approach factor [2]_. Examples -------- >>> flow_coefficient(D=0.0739, Do=0.0222, C=0.6) 0.6024582044499308 References ---------- .. [1] American Society of Mechanical Engineers. Mfc-3M-2004 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2001. .. [2] Miller, Richard W. Flow Measurement Engineering Handbook. 3rd edition. New York: McGraw-Hill Education, 1996. ''' return C*1.0/sqrt(1.0 - (Do/D)**4) def nozzle_expansibility(D, Do, P1, P2, k, beta=None): r'''Calculates the expansibility factor for a nozzle or venturi nozzle, based on the geometry of the plate, measured pressures of the orifice, and the isentropic exponent of the fluid. .. math:: \epsilon = \left\{\left(\frac{\kappa \tau^{2/\kappa}}{\kappa-1}\right) \left(\frac{1 - \beta^4}{1 - \beta^4 \tau^{2/\kappa}}\right) \left[\frac{1 - \tau^{(\kappa-1)/\kappa}}{1 - \tau} \right] \right\}^{0.5} Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of orifice of the venturi or nozzle, [m] P1 : float Static pressure of fluid upstream of orifice at the cross-section of the pressure tap, [Pa] P2 : float Static pressure of fluid downstream of orifice at the cross-section of the pressure tap, [Pa] k : float Isentropic exponent of fluid, [-] beta : float, optional Optional `beta` ratio, which is useful to specify for wedge meters or flow meters which have a different beta ratio calculation, [-] Returns ------- expansibility : float Expansibility factor (1 for incompressible fluids, less than 1 for real fluids), [-] Notes ----- This formula was determined for the range of P2/P1 >= 0.75. Mathematically the equation cannot be evaluated at `k` = 1, but if the limit of the equation is taken the following equation is obtained and is implemented: .. math:: \epsilon = \sqrt{\frac{- D^{4} P_{1} P_{2}^{2} \log{\left(\frac{P_{2}} {P_{1}} \right)} + Do^{4} P_{1} P_{2}^{2} \log{\left(\frac{P_{2}}{P_{1}} \right)}}{D^{4} P_{1}^{3} - D^{4} P_{1}^{2} P_{2} - Do^{4} P_{1} P_{2}^{2} + Do^{4} P_{2}^{3}}} Note also there is a small amount of floating-point error around the range of `k` ~1+1e-5 to ~1-1e-5, starting with 1e-7 and increasing to the point of giving values larger than 1 or zero in the `k` ~1+1e-12 to ~1-1e-12 range. Examples -------- >>> nozzle_expansibility(D=0.0739, Do=0.0222, P1=1E5, P2=9.9E4, k=1.4) 0.994570234456 References ---------- .. [1] American Society of Mechanical Engineers. Mfc-3M-2004 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2001. .. [2] ISO 5167-3:2003 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 3: Nozzles and Venturi Nozzles. ''' if beta is None: beta = Do/D beta2 = beta*beta beta4 = beta2*beta2 tau = P2/P1 if k == 1.0: '''Avoid a zero division error: from sympy import * D, Do, P1, P2, k = symbols('D, Do, P1, P2, k') beta = Do/D tau = P2/P1 term1 = k*tau**(2/k )/(k - 1) term2 = (1 - beta**4)/(1 - beta**4*tau**(2/k)) term3 = (1 - tau**((k - 1)/k))/(1 - tau) val= sqrt(term1*term2*term3) print(simplify(limit((term1*term2*term3), k, 1))) ''' limit_val = (P1*P2**2*(-D**4 + Do**4)*log(P2/P1)/(D**4*P1**3 - D**4*P1**2*P2 - Do**4*P1*P2**2 + Do**4*P2**3)) return sqrt(limit_val) term1 = k*tau**(2.0/k)/(k - 1.0) term2 = (1.0 - beta4)/(1.0 - beta4*tau**(2.0/k)) if tau == 1.0: '''Avoid a zero division error. Obtained with: from sympy import * tau, k = symbols('tau, k') expr = (1 - tau**((k - 1)/k))/(1 - tau) limit(expr, tau, 1) ''' term3 = (k - 1.0)/k else: # This form of the equation is mathematically equivalent but # does not have issues where k = `. term3 = (P1 - P2*(tau)**(-1.0/k))/(P1 - P2) # term3 = (1.0 - tau**((k - 1.0)/k))/(1.0 - tau) return sqrt(term1*term2*term3) def C_long_radius_nozzle(D, Do, rho, mu, m): r'''Calculates the coefficient of discharge of a long radius nozzle used for measuring flow rate of fluid, based on the geometry of the nozzle, mass flow rate through the nozzle, and the density and viscosity of the fluid. .. math:: C = 0.9965 - 0.00653\beta^{0.5} \left(\frac{10^6}{Re_D}\right)^{0.5} Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of long radius nozzle orifice at flow conditions, [m] rho : float Density of fluid at `P1`, [kg/m^3] mu : float Viscosity of fluid at `P1`, [Pa*s] m : float Mass flow rate of fluid through the nozzle, [kg/s] Returns ------- C : float Coefficient of discharge of the long radius nozzle orifice, [-] Notes ----- Examples -------- >>> C_long_radius_nozzle(D=0.07391, Do=0.0422, rho=1.2, mu=1.8E-5, m=0.1) 0.9805503704679863 References ---------- .. [1] American Society of Mechanical Engineers. Mfc-3M-2004 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2001. .. [2] ISO 5167-3:2003 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 3: Nozzles and Venturi Nozzles. ''' A_pipe = pi/4.*D*D v = m/(A_pipe*rho) Re_D = rho*v*D/mu beta = Do/D return 0.9965 - 0.00653*sqrt(beta)*sqrt(1E6/Re_D) def C_ISA_1932_nozzle(D, Do, rho, mu, m): r'''Calculates the coefficient of discharge of an ISA 1932 style nozzle used for measuring flow rate of fluid, based on the geometry of the nozzle, mass flow rate through the nozzle, and the density and viscosity of the fluid. .. math:: C = 0.9900 - 0.2262\beta^{4.1} - (0.00175\beta^2 - 0.0033\beta^{4.15}) \left(\frac{10^6}{Re_D}\right)^{1.15} Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of nozzle orifice at flow conditions, [m] rho : float Density of fluid at `P1`, [kg/m^3] mu : float Viscosity of fluid at `P1`, [Pa*s] m : float Mass flow rate of fluid through the nozzle, [kg/s] Returns ------- C : float Coefficient of discharge of the nozzle orifice, [-] Notes ----- Examples -------- >>> C_ISA_1932_nozzle(D=0.07391, Do=0.0422, rho=1.2, mu=1.8E-5, m=0.1) 0.9635849973250495 References ---------- .. [1] American Society of Mechanical Engineers. Mfc-3M-2004 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2001. .. [2] ISO 5167-3:2003 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 3: Nozzles and Venturi Nozzles. ''' A_pipe = pi/4.*D*D v = m/(A_pipe*rho) Re_D = rho*v*D/mu beta = Do/D C = (0.9900 - 0.2262*beta**4.1 - (0.00175*beta**2 - 0.0033*beta**4.15)*(1E6/Re_D)**1.15) return C def C_venturi_nozzle(D, Do): r'''Calculates the coefficient of discharge of an Venturi style nozzle used for measuring flow rate of fluid, based on the geometry of the nozzle. .. math:: C = 0.9858 - 0.196\beta^{4.5} Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of nozzle orifice at flow conditions, [m] Returns ------- C : float Coefficient of discharge of the nozzle orifice, [-] Notes ----- Examples -------- >>> C_venturi_nozzle(D=0.07391, Do=0.0422) 0.9698996454169576 References ---------- .. [1] American Society of Mechanical Engineers. Mfc-3M-2004 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2001. .. [2] ISO 5167-3:2003 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 3: Nozzles and Venturi Nozzles. ''' beta = Do/D return 0.9858 - 0.198*beta**4.5 # Relative pressure loss as a function of beta reatio for venturi nozzles # Venturi nozzles should be between 65 mm and 500 mm; there are high and low # loss ratios , with the high losses corresponding to small diameters, # low high losses corresponding to large diameters # Interpolation can be performed. venturi_tube_betas = [0.299160, 0.299470, 0.312390, 0.319010, 0.326580, 0.337290, 0.342020, 0.347060, 0.359030, 0.365960, 0.372580, 0.384870, 0.385810, 0.401250, 0.405350, 0.415740, 0.424250, 0.434010, 0.447880, 0.452590, 0.471810, 0.473090, 0.493540, 0.499240, 0.516530, 0.523800, 0.537630, 0.548060, 0.556840, 0.573890, 0.582350, 0.597820, 0.601560, 0.622650, 0.626490, 0.649480, 0.650990, 0.668700, 0.675870, 0.688550, 0.693180, 0.706180, 0.713330, 0.723510, 0.749540, 0.749650] venturi_tube_dP_high = [0.164534, 0.164504, 0.163591, 0.163508, 0.163439, 0.162652, 0.162224, 0.161866, 0.161238, 0.160786, 0.160295, 0.159280, 0.159193, 0.157776, 0.157467, 0.156517, 0.155323, 0.153835, 0.151862, 0.151154, 0.147840, 0.147613, 0.144052, 0.143050, 0.140107, 0.138981, 0.136794, 0.134737, 0.132847, 0.129303, 0.127637, 0.124758, 0.124006, 0.119269, 0.118449, 0.113605, 0.113269, 0.108995, 0.107109, 0.103688, 0.102529, 0.099567, 0.097791, 0.095055, 0.087681, 0.087648] venturi_tube_dP_low = [0.089232, 0.089218, 0.088671, 0.088435, 0.088206, 0.087853, 0.087655, 0.087404, 0.086693, 0.086241, 0.085813, 0.085142, 0.085102, 0.084446, 0.084202, 0.083301, 0.082470, 0.081650, 0.080582, 0.080213, 0.078509, 0.078378, 0.075989, 0.075226, 0.072700, 0.071598, 0.069562, 0.068128, 0.066986, 0.064658, 0.063298, 0.060872, 0.060378, 0.057879, 0.057403, 0.054091, 0.053879, 0.051726, 0.050931, 0.049362, 0.048675, 0.046522, 0.045381, 0.043840, 0.039913, 0.039896] #ratios_average = 0.5*(ratios_high + ratios_low) D_bound_venturi_tube = [0.065, 0.5] def dP_venturi_tube(D, Do, P1, P2): r'''Calculates the non-recoverable pressure drop of a venturi tube differential pressure meter based on the pressure drop and the geometry of the venturi meter. .. math:: \epsilon = \frac{\Delta\bar w }{\Delta P} The :math:`\epsilon` value is looked up in a table of values as a function of beta ratio and upstream pipe diameter (roughness impact). Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of venturi tube at flow conditions, [m] P1 : float Static pressure of fluid upstream of venturi tube at the cross-section of the pressure tap, [Pa] P2 : float Static pressure of fluid downstream of venturi tube at the cross-section of the pressure tap, [Pa] Returns ------- dP : float Non-recoverable pressure drop of the venturi tube, [Pa] Notes ----- The recoverable pressure drop should be recovered by 6 pipe diameters downstream of the venturi tube. Note there is some information on the effect of Reynolds number as well in [1]_ and [2]_, with a curve showing an increased pressure drop from 1E5-6E5 to with a decreasing multiplier from 1.75 to 1; the multiplier is 1 for higher Reynolds numbers. This is not currently included in this implementation. Examples -------- >>> dP_venturi_tube(D=0.07366, Do=0.05, P1=200000.0, P2=183000.0) 1788.5717754177406 References ---------- .. [1] American Society of Mechanical Engineers. Mfc-3M-2004 Measurement Of Fluid Flow In Pipes Using Orifice, Nozzle, And Venturi. ASME, 2001. .. [2] ISO 5167-4:2003 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 4: Venturi Tubes. ''' # Effect of Re is not currently included beta = Do/D epsilon_D65 = interp(beta, venturi_tube_betas, venturi_tube_dP_high) epsilon_D500 = interp(beta, venturi_tube_betas, venturi_tube_dP_low) epsilon = interp(D, D_bound_venturi_tube, [epsilon_D65, epsilon_D500]) return epsilon*(P1 - P2) def diameter_ratio_cone_meter(D, Dc): r'''Calculates the diameter ratio `beta` used to characterize a cone flow meter. .. math:: \beta = \sqrt{1 - \frac{d_c^2}{D^2}} Parameters ---------- D : float Upstream internal pipe diameter, [m] Dc : float Diameter of the largest end of the cone meter, [m] Returns ------- beta : float Cone meter diameter ratio, [-] Notes ----- A mathematically equivalent formula often written is: .. math:: \beta = \frac{\sqrt{D^2 - d_c^2}}{D} Examples -------- >>> diameter_ratio_cone_meter(D=0.2575, Dc=0.184) 0.6995709873957624 References ---------- .. [1] Hollingshead, Colter. "Discharge Coefficient Performance of Venturi, Standard Concentric Orifice Plate, V-Cone, and Wedge Flow Meters at Small Reynolds Numbers." May 1, 2011. https://digitalcommons.usu.edu/etd/869. ''' D_ratio = Dc/D return sqrt(1.0 - D_ratio*D_ratio) def cone_meter_expansibility_Stewart(D, Dc, P1, P2, k): r'''Calculates the expansibility factor for a cone flow meter, based on the geometry of the cone meter, measured pressures of the orifice, and the isentropic exponent of the fluid. Developed in [1]_, also shown in [2]_. .. math:: \epsilon = 1 - (0.649 + 0.696\beta^4) \frac{\Delta P}{\kappa P_1} Parameters ---------- D : float Upstream internal pipe diameter, [m] Dc : float Diameter of the largest end of the cone meter, [m] P1 : float Static pressure of fluid upstream of cone meter at the cross-section of the pressure tap, [Pa] P2 : float Static pressure of fluid at the end of the center of the cone pressure tap, [Pa] k : float Isentropic exponent of fluid, [-] Returns ------- expansibility : float Expansibility factor (1 for incompressible fluids, less than 1 for real fluids), [-] Notes ----- This formula was determined for the range of P2/P1 >= 0.75; the only gas used to determine the formula is air. Examples -------- >>> cone_meter_expansibility_Stewart(D=1, Dc=0.9, P1=1E6, P2=8.5E5, k=1.2) 0.9157343 References ---------- .. [1] Stewart, D. G., M. Reader-Harris, and NEL Dr RJW Peters. "Derivation of an Expansibility Factor for the V-Cone Meter." In Flow Measurement International Conference, Peebles, Scotland, UK, 2001. .. [2] ISO 5167-5:2016 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 5: Cone meters. ''' dP = P1 - P2 beta = diameter_ratio_cone_meter(D, Dc) beta *= beta beta *= beta return 1.0 - (0.649 + 0.696*beta)*dP/(k*P1) def dP_cone_meter(D, Dc, P1, P2): r'''Calculates the non-recoverable pressure drop of a cone meter based on the measured pressures before and at the cone end, and the geometry of the cone meter according to [1]_. .. math:: \Delta \bar \omega = (1.09 - 0.813\beta)\Delta P Parameters ---------- D : float Upstream internal pipe diameter, [m] Dc : float Diameter of the largest end of the cone meter, [m] P1 : float Static pressure of fluid upstream of cone meter at the cross-section of the pressure tap, [Pa] P2 : float Static pressure of fluid at the end of the center of the cone pressure tap, [Pa] Returns ------- dP : float Non-recoverable pressure drop of the orifice plate, [Pa] Notes ----- The recoverable pressure drop should be recovered by 6 pipe diameters downstream of the cone meter. Examples -------- >>> dP_cone_meter(1, .7, 1E6, 9.5E5) 25470.093437973323 References ---------- .. [1] ISO 5167-5:2016 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 5: Cone meters. ''' dP = P1 - P2 beta = diameter_ratio_cone_meter(D, Dc) return (1.09 - 0.813*beta)*dP def diameter_ratio_wedge_meter(D, H): r'''Calculates the diameter ratio `beta` used to characterize a wedge flow meter as given in [1]_ and [2]_. .. math:: \beta = \left(\frac{1}{\pi}\left\{\arccos\left[1 - \frac{2H}{D} \right] - 2 \left[1 - \frac{2H}{D} \right]\left(\frac{H}{D} - \left[\frac{H}{D}\right]^2 \right)^{0.5}\right\}\right)^{0.5} Parameters ---------- D : float Upstream internal pipe diameter, [m] H : float Portion of the diameter of the clear segment of the pipe up to the wedge blocking flow; the height of the pipe up to the wedge, [m] Returns ------- beta : float Wedge meter diameter ratio, [-] Notes ----- Examples -------- >>> diameter_ratio_wedge_meter(D=0.2027, H=0.0608) 0.5022531424646643 References ---------- .. [1] Hollingshead, Colter. "Discharge Coefficient Performance of Venturi, Standard Concentric Orifice Plate, V-Cone, and Wedge Flow Meters at Small Reynolds Numbers." May 1, 2011. https://digitalcommons.usu.edu/etd/869. .. [2] IntraWedge WEDGE FLOW METER Type: IWM. January 2011. http://www.intra-automation.com/download.php?file=pdf/products/technical_information/en/ti_iwm_en.pdf ''' H_D = H/D t0 = 1.0 - 2.0*H_D t1 = acos(t0) t2 = t0 + t0 t3 = sqrt(H_D - H_D*H_D) t4 = t1 - t2*t3 return sqrt(pi_inv*t4) def C_wedge_meter_Miller(D, H): r'''Calculates the coefficient of discharge of an wedge flow meter used for measuring flow rate of fluid, based on the geometry of the differential pressure flow meter. For half-inch lines: .. math:: C = 0.7883 + 0.107(1 - \beta^2) For 1 to 1.5 inch lines: .. math:: C = 0.6143 + 0.718(1 - \beta^2) For 1.5 to 24 inch lines: .. math:: C = 0.5433 + 0.2453(1 - \beta^2) Parameters ---------- D : float Upstream internal pipe diameter, [m] H : float Portion of the diameter of the clear segment of the pipe up to the wedge blocking flow; the height of the pipe up to the wedge, [m] Returns ------- C : float Coefficient of discharge of the wedge flow meter, [-] Notes ----- There is an ISO standard being developed to cover wedge meters as of 2018. Wedge meters can have varying angles; 60 and 90 degree wedge meters have been reported. Tap locations 1 or 2 diameters (upstream and downstream), and 2D upstream/1D downstream have been used. Some wedges are sharp; some are smooth. [2]_ gives some experimental values. Examples -------- >>> C_wedge_meter_Miller(D=0.1524, H=0.3*0.1524) 0.7267069372687651 References ---------- .. [1] Miller, Richard W. Flow Measurement Engineering Handbook. 3rd edition. New York: McGraw-Hill Education, 1996. .. [2] Seshadri, V., S. N. Singh, and S. Bhargava. "Effect of Wedge Shape and Pressure Tap Locations on the Characteristics of a Wedge Flowmeter." IJEMS Vol.01(5), October 1994. ''' beta = diameter_ratio_wedge_meter(D, H) beta *= beta if D <= 0.7*inch: # suggested limit 0.5 inch for this equation C = 0.7883 + 0.107*(1.0 - beta) elif D <= 1.4*inch: # Suggested limit is under 1.5 inches C = 0.6143 + 0.718*(1.0 - beta) else: C = 0.5433 + 0.2453*(1.0 - beta) return C def C_wedge_meter_ISO_5167_6_2017(D, H): r'''Calculates the coefficient of discharge of an wedge flow meter used for measuring flow rate of fluid, based on the geometry of the differential pressure flow meter according to the ISO 5167-6 standard (draft 2017). .. math:: C = 0.77 - 0.09\beta Parameters ---------- D : float Upstream internal pipe diameter, [m] H : float Portion of the diameter of the clear segment of the pipe up to the wedge blocking flow; the height of the pipe up to the wedge, [m] Returns ------- C : float Coefficient of discharge of the wedge flow meter, [-] Notes ----- This standard applies for wedge meters in line sizes between 50 and 600 mm; and height ratios between 0.2 and 0.6. The range of allowable Reynolds numbers is large; between 1E4 and 9E6. The uncertainty of the flow coefficient is approximately 4%. Usually a 10:1 span of flow can be measured accurately. The discharge and entry length of the meters must be at least half a pipe diameter. The wedge angle must be 90 degrees, plus or minus two degrees. The orientation of the wedge meter does not change the accuracy of this model. There should be a straight run of 10 pipe diameters before the wedge meter inlet, and two of the same pipe diameters after it. Examples -------- >>> C_wedge_meter_ISO_5167_6_2017(D=0.1524, H=0.3*0.1524) 0.724792059539853 References ---------- .. [1] ISO/DIS 5167-6 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 6: Wedge Meters. ''' beta = diameter_ratio_wedge_meter(D, H) return 0.77 - 0.09*beta def dP_wedge_meter(D, H, P1, P2): r'''Calculates the non-recoverable pressure drop of a wedge meter based on the measured pressures before and at the wedge meter, and the geometry of the wedge meter according to [1]_. .. math:: \Delta \bar \omega = (1.09 - 0.79\beta)\Delta P Parameters ---------- D : float Upstream internal pipe diameter, [m] H : float Portion of the diameter of the clear segment of the pipe up to the wedge blocking flow; the height of the pipe up to the wedge, [m] P1 : float Static pressure of fluid upstream of wedge meter at the cross-section of the pressure tap, [Pa] P2 : float Static pressure of fluid at the end of the wedge meter pressure tap, [ Pa] Returns ------- dP : float Non-recoverable pressure drop of the wedge meter, [Pa] Notes ----- The recoverable pressure drop should be recovered by 5 pipe diameters downstream of the wedge meter. Examples -------- >>> dP_wedge_meter(1, .7, 1E6, 9.5E5) 20344.849697483587 References ---------- .. [1] ISO/DIS 5167-6 - Measurement of Fluid Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits Running Full -- Part 6: Wedge Meters. ''' dP = P1 - P2 beta = diameter_ratio_wedge_meter(D, H) return (1.09 - 0.79*beta)*dP def C_Reader_Harris_Gallagher_wet_venturi_tube(mg, ml, rhog, rhol, D, Do, H=1): r'''Calculates the coefficient of discharge of the wet gas venturi tube based on the geometry of the tube, mass flow rates of liquid and vapor through the tube, the density of the liquid and gas phases, and an adjustable coefficient `H`. .. math:: C = 1 - 0.0463\exp(-0.05Fr_{gas, th}) \cdot \min\left(1, \sqrt{\frac{X}{0.016}}\right) .. math:: Fr_{gas, th} = \frac{Fr_{\text{gas, densionetric }}}{\beta^{2.5}} .. math:: \phi = \sqrt{1 + C_{Ch} X + X^2} .. math:: C_{Ch} = \left(\frac{\rho_l}{\rho_{1,g}}\right)^n + \left(\frac{\rho_{1, g}}{\rho_{l}}\right)^n .. math:: n = \max\left[0.583 - 0.18\beta^2 - 0.578\exp\left(\frac{-0.8 Fr_{\text{gas, densiometric}}}{H}\right),0.392 - 0.18\beta^2 \right] .. math:: X = \left(\frac{m_l}{m_g}\right) \sqrt{\frac{\rho_{1,g}}{\rho_l}} .. math:: {Fr_{\text{gas, densiometric}}} = \frac{v_{gas}}{\sqrt{gD}} \sqrt{\frac{\rho_{1,g}}{\rho_l - \rho_{1,g}}} = \frac{4m_g}{\rho_{1,g} \pi D^2 \sqrt{gD}} \sqrt{\frac{\rho_{1,g}}{\rho_l - \rho_{1,g}}} Parameters ---------- mg : float Mass flow rate of gas through the venturi tube, [kg/s] ml : float Mass flow rate of liquid through the venturi tube, [kg/s] rhog : float Density of gas at `P1`, [kg/m^3] rhol : float Density of liquid at `P1`, [kg/m^3] D : float Upstream internal pipe diameter, [m] Do : float Diameter of venturi tube at flow conditions, [m] H : float, optional A surface-tension effect coefficient used to adjust for different fluids, (1 for a hydrocarbon liquid, 1.35 for water, 0.79 for water in steam) [-] Returns ------- C : float Coefficient of discharge of the wet gas venturi tube flow meter (includes flow rate of gas ONLY), [-] Notes ----- This model has more error than single phase differential pressure meters. The model was first published in [1]_, and became ISO 11583 later. The limits of this correlation according to [2]_ are as follows: .. math:: 0.4 \le \beta \le 0.75 .. math:: 0 < X \le 0.3 .. math:: Fr_{gas, th} > 3 .. math:: \frac{\rho_g}{\rho_l} > 0.02 .. math:: D \ge 50 \text{ mm} Examples -------- >>> C_Reader_Harris_Gallagher_wet_venturi_tube(mg=5.31926, ml=5.31926/2, ... rhog=50.0, rhol=800., D=.1, Do=.06, H=1) 0.9754210845876333 References ---------- .. [1] Reader-harris, Michael, and Tuv Nel. An Improved Model for Venturi-Tube Over-Reading in Wet Gas, 2009. .. [2] ISO/TR 11583:2012 Measurement of Wet Gas Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits. ''' V = 4.0*mg/(rhog*pi*D*D) Frg = Froude_densimetric(V, L=D, rho1=rhol, rho2=rhog, heavy=False) beta = Do/D beta2 = beta*beta Fr_gas_th = Frg/(beta2*sqrt(beta)) n = max(0.583 - 0.18*beta2 - 0.578*exp(-0.8*Frg/H), 0.392 - 0.18*beta2) t0 = rhog/rhol t1 = (t0)**n C_Ch = t1 + 1.0/t1 X = ml/mg*sqrt(t0) # OF = sqrt(1.0 + X*(C_Ch + X)) C = 1.0 - 0.0463*exp(-0.05*Fr_gas_th)*min(1.0, sqrt(X/0.016)) return C def dP_Reader_Harris_Gallagher_wet_venturi_tube(D, Do, P1, P2, ml, mg, rhol, rhog, H=1.0): r'''Calculates the non-recoverable pressure drop of a wet gas venturi nozzle based on the pressure drop and the geometry of the venturi nozzle, the mass flow rates of liquid and gas through it, the densities of the vapor and liquid phase, and an adjustable coefficient `H`. .. math:: Y = \frac{\Delta \bar \omega}{\Delta P} - 0.0896 - 0.48\beta^9 .. math:: Y_{max} = 0.61\exp\left[-11\frac{\rho_{1,g}}{\rho_l} - 0.045 \frac{Fr_{gas}}{H}\right] .. math:: \frac{Y}{Y_{max}} = 1 - \exp\left[-35 X^{0.75} \exp \left( \frac{-0.28Fr_{gas}}{H}\right)\right] .. math:: X = \left(\frac{m_l}{m_g}\right) \sqrt{\frac{\rho_{1,g}}{\rho_l}} .. math:: {Fr_{\text{gas, densiometric}}} = \frac{v_{gas}}{\sqrt{gD}} \sqrt{\frac{\rho_{1,g}}{\rho_l - \rho_{1,g}}} = \frac{4m_g}{\rho_{1,g} \pi D^2 \sqrt{gD}} \sqrt{\frac{\rho_{1,g}}{\rho_l - \rho_{1,g}}} Parameters ---------- D : float Upstream internal pipe diameter, [m] Do : float Diameter of venturi tube at flow conditions, [m] P1 : float Static pressure of fluid upstream of venturi tube at the cross-section of the pressure tap, [Pa] P2 : float Static pressure of fluid downstream of venturi tube at the cross- section of the pressure tap, [Pa] ml : float Mass flow rate of liquid through the venturi tube, [kg/s] mg : float Mass flow rate of gas through the venturi tube, [kg/s] rhol : float Density of liquid at `P1`, [kg/m^3] rhog : float Density of gas at `P1`, [kg/m^3] H : float, optional A surface-tension effect coefficient used to adjust for different fluids, (1 for a hydrocarbon liquid, 1.35 for water, 0.79 for water in steam) [-] Returns ------- C : float Coefficient of discharge of the wet gas venturi tube flow meter (includes flow rate of gas ONLY), [-] Notes ----- The model was first published in [1]_, and became ISO 11583 later. Examples -------- >>> dP_Reader_Harris_Gallagher_wet_venturi_tube(D=.1, Do=.06, H=1, ... P1=6E6, P2=6E6-5E4, ml=5.31926/2, mg=5.31926, rhog=50.0, rhol=800.,) 16957.43843129572 References ---------- .. [1] Reader-harris, Michael, and Tuv Nel. An Improved Model for Venturi-Tube Over-Reading in Wet Gas, 2009. .. [2] ISO/TR 11583:2012 Measurement of Wet Gas Flow by Means of Pressure Differential Devices Inserted in Circular Cross-Section Conduits. ''' dP = P1 - P2 beta = Do/D X = ml/mg*sqrt(rhog/rhol) V = 4*mg/(rhog*pi*D*D) Frg = Froude_densimetric(V, L=D, rho1=rhol, rho2=rhog, heavy=False) Y_ratio = 1.0 - exp(-35.0*X**0.75*exp(-0.28*Frg/H)) Y_max = 0.61*exp(-11.0*rhog/rhol - 0.045*Frg/H) Y = Y_max*Y_ratio rhs = -0.0896 - 0.48*beta**9 dw = dP*(Y - rhs) return dw # Venturi tube loss coefficients as a function of Re as_cast_convergent_venturi_Res = [4E5, 6E4, 1E5, 1.5E5] as_cast_convergent_venturi_Cs = [0.957, 0.966, 0.976, 0.982] machined_convergent_venturi_Res = [5E4, 1E5, 2E5, 3E5, 7.5E5, # 5E5 to 1E6 1.5E6, # 1E6 to 2E6 5E6] # 2E6 to 1E8 machined_convergent_venturi_Cs = [0.970, 0.977, 0.992, 0.998, 0.995, 1.000, 1.010] rough_welded_convergent_venturi_Res = [4E4, 6E4, 1E5] rough_welded_convergent_venturi_Cs = [0.96, 0.97, 0.98] as_cast_convergent_entrance_machined_venturi_Res = [1E4, 6E4, 1E5, 1.5E5, 3.5E5, # 2E5 to 5E5 3.2E6] # 5E5 to 3.2E6 as_cast_convergent_entrance_machined_venturi_Cs = [0.963, 0.978, 0.98, 0.987, 0.992, 0.995] venturi_Res_Hollingshead = [1.0, 5.0, 10.0, 20.0, 30.0, 40.0, 60.0, 80.0, 100.0, 200.0, 300.0, 500.0, 1000.0, 2000.0, 3000.0, 5000.0, 10000.0, 30000.0, 50000.0, 75000.0, 100000.0, 1000000.0, 10000000.0, 50000000.0] venturi_logRes_Hollingshead = [0.0, 1.6094379124341003, 2.302585092994046, 2.995732273553991, 3.4011973816621555, 3.6888794541139363, 4.0943445622221, 4.382026634673881, 4.605170185988092, 5.298317366548036, 5.703782474656201, 6.214608098422191, 6.907755278982137, 7.600902459542082, 8.006367567650246, 8.517193191416238, 9.210340371976184, 10.308952660644293, 10.819778284410283, 11.225243392518447, 11.512925464970229, 13.815510557964274, 16.11809565095832, 17.72753356339242] venturi_smooth_Cs_Hollingshead = [0.163, 0.336, 0.432, 0.515, 0.586, 0.625, 0.679, 0.705, 0.727, 0.803, 0.841, 0.881, 0.921, 0.937, 0.944, 0.954, 0.961, 0.967, 0.967, 0.97, 0.971, 0.973, 0.974, 0.975] venturi_sharp_Cs_Hollingshead = [0.146, 0.3, 0.401, 0.498, 0.554, 0.596, 0.65, 0.688, 0.715, 0.801, 0.841, 0.884, 0.914, 0.94, 0.947, 0.944, 0.952, 0.959, 0.962, 0.963, 0.965, 0.967, 0.967, 0.967] CONE_METER_C = 0.82 '''Constant loss coefficient for flow cone meters''' ROUGH_WELDED_CONVERGENT_VENTURI_TUBE_C = 0.985 '''Constant loss coefficient for rough-welded convergent venturi tubes''' MACHINED_CONVERGENT_VENTURI_TUBE_C = 0.995 '''Constant loss coefficient for machined convergent venturi tubes''' AS_CAST_VENTURI_TUBE_C = 0.984 '''Constant loss coefficient for as-cast venturi tubes''' ISO_15377_CONICAL_ORIFICE_C = 0.734 '''Constant loss coefficient for conical orifice plates according to ISO 15377''' cone_Res_Hollingshead = [1.0, 5.0, 10.0, 20.0, 30.0, 40.0, 60.0, 80.0, 100.0, 150.0, 200.0, 300.0, 500.0, 1000.0, 2000.0, 3000.0, 4000.0, 5000.0, 7500.0, 10000.0, 20000.0, 30000.0, 100000.0, 1000000.0, 10000000.0, 50000000.0 ] cone_logRes_Hollingshead = [0.0, 1.6094379124341003, 2.302585092994046, 2.995732273553991, 3.4011973816621555, 3.6888794541139363, 4.0943445622221, 4.382026634673881, 4.605170185988092, 5.0106352940962555, 5.298317366548036, 5.703782474656201, 6.214608098422191, 6.907755278982137, 7.600902459542082, 8.006367567650246, 8.294049640102028, 8.517193191416238, 8.922658299524402, 9.210340371976184, 9.903487552536127, 10.308952660644293, 11.512925464970229, 13.815510557964274, 16.11809565095832, 17.72753356339242 ] cone_betas_Hollingshead = [0.6611, 0.6995, 0.8203] cone_beta_6611_Hollingshead_Cs = [0.066, 0.147, 0.207, 0.289, 0.349, 0.396, 0.462, 0.506, 0.537, 0.588, 0.622, 0.661, 0.7, 0.727, 0.75, 0.759, 0.763, 0.765, 0.767, 0.773, 0.778, 0.789, 0.804, 0.803, 0.805, 0.802 ] cone_beta_6995_Hollingshead_Cs = [0.067, 0.15, 0.21, 0.292, 0.35, 0.394, 0.458, 0.502, 0.533, 0.584, 0.615, 0.645, 0.682, 0.721, 0.742, 0.75, 0.755, 0.757, 0.763, 0.766, 0.774, 0.781, 0.792, 0.792, 0.79, 0.787 ] cone_beta_8203_Hollingshead_Cs = [0.057, 0.128, 0.182, 0.253, 0.303, 0.343, 0.4, 0.44, 0.472, 0.526, 0.557, 0.605, 0.644, 0.685, 0.705, 0.714, 0.721, 0.722, 0.724, 0.723, 0.725, 0.731, 0.73, 0.73, 0.741, 0.734 ] cone_Hollingshead_Cs = [cone_beta_6611_Hollingshead_Cs, cone_beta_6995_Hollingshead_Cs, cone_beta_8203_Hollingshead_Cs ] cone_Hollingshead_tck = implementation_optimize_tck([ [0.6611, 0.6611, 0.6611, 0.8203, 0.8203, 0.8203], [0.0, 0.0, 0.0, 0.0, 2.302585092994046, 2.995732273553991, 3.4011973816621555, 3.6888794541139363, 4.0943445622221, 4.382026634673881, 4.605170185988092, 5.0106352940962555, 5.298317366548036, 5.703782474656201, 6.214608098422191, 6.907755278982137, 7.600902459542082, 8.006367567650246, 8.294049640102028, 8.517193191416238, 8.922658299524402, 9.210340371976184, 9.903487552536127, 10.308952660644293, 11.512925464970229, 13.815510557964274, 17.72753356339242, 17.72753356339242, 17.72753356339242, 17.72753356339242 ], [0.06600000000000003, 0.09181180887944293, 0.1406341453010674, 0.27319769866300025, 0.34177839953532274, 0.4025880076725502, 0.4563149328810349, 0.5035445307357295, 0.5458473693359689, 0.583175639128474, 0.628052124545805, 0.6647198135005781, 0.7091524396786245, 0.7254729823419331, 0.7487816963926843, 0.7588145502817809, 0.7628692532631826, 0.7660482147214834, 0.7644188319583379, 0.7782644144006241, 0.7721508139116487, 0.7994728794028244, 0.8076742194714519, 0.7986221420822799, 0.8086240532850298, 0.802, 0.07016232064017663, 0.1059162635703894, 0.1489681838592814, 0.28830815748629207, 0.35405213706957395, 0.40339795504063664, 0.4544570323055189, 0.5034637712201067, 0.5448190156693709, 0.5840164245031125, 0.6211559598098063, 0.6218648844980823, 0.6621745760710729, 0.7282379546292953, 0.7340030734801267, 0.7396324865779599, 0.7489736798953754, 0.7480726412914717, 0.7671564751169978, 0.756853660688892, 0.7787029642272745, 0.7742381131312691, 0.7887584162443445, 0.7857610450218329, 0.7697076645551957, 0.7718300910596032, 0.05700000000000002, 0.07612544859943549, 0.12401733415778271, 0.24037452209595875, 0.29662463502593156, 0.34859536586855205, 0.39480085719322505, 0.43661601622480606, 0.48091259102454764, 0.5240691286186233, 0.5590609288020619, 0.6144556048716696, 0.6471713640567137, 0.6904158809061184, 0.7032590252050219, 0.712177974557301, 0.7221845303680273, 0.721505707129694, 0.7249822376264551, 0.7218890085289907, 0.7221848475768714, 0.7371751354515526, 0.7252385062304629, 0.7278943803933404, 0.7496546607029086, 0.7340000000000001 ], 2, 3 ]) wedge_Res_Hollingshead = [1.0, 5.0, 10.0, 20.0, 30.0, 40.0, 60.0, 80.0, 100.0, 200.0, 300.0, 400.0, 500.0, 5000.0, 1.00E+04, 1.00E+05, 1.00E+06, 5.00E+07] wedge_logRes_Hollingshead = [0.0, 1.6094379124341003, 2.302585092994046, 2.995732273553991, 3.4011973816621555, 3.6888794541139363, 4.0943445622221, 4.382026634673881, 4.605170185988092, 5.298317366548036, 5.703782474656201, 5.991464547107982, 6.214608098422191, 8.517193191416238, 9.210340371976184, 11.512925464970229, 13.815510557964274, 17.72753356339242 ] wedge_beta_5023_Hollingshead = [0.145, 0.318, 0.432, 0.551, 0.61, 0.641, 0.674, 0.69, 0.699, 0.716, 0.721, 0.725, 0.73, 0.729, 0.732, 0.732, 0.731, 0.733] wedge_beta_611_Hollingshead = [0.127, 0.28, 0.384, 0.503, 0.567, 0.606, 0.645, 0.663, 0.672, 0.688, 0.694, 0.7, 0.705, 0.7, 0.702, 0.695, 0.699, 0.705] wedge_betas_Hollingshead = [.5023, .611] wedge_Hollingshead_Cs = [wedge_beta_5023_Hollingshead, wedge_beta_611_Hollingshead] wedge_Hollingshead_tck = implementation_optimize_tck([ [0.5023, 0.5023, 0.611, 0.611], [0.0, 0.0, 0.0, 0.0, 2.302585092994046, 2.995732273553991, 3.4011973816621555, 3.6888794541139363, 4.0943445622221, 4.382026634673881, 4.605170185988092, 5.298317366548036, 5.703782474656201, 5.991464547107982, 6.214608098422191, 8.517193191416238, 9.210340371976184, 11.512925464970229, 17.72753356339242, 17.72753356339242, 17.72753356339242, 17.72753356339242 ], [0.14500000000000005, 0.18231832425722, 0.3339917130006919, 0.5379467710226973, 0.6077700659940896, 0.6459542943925077, 0.6729757007770231, 0.6896405007576225, 0.7054863114589583, 0.7155740600632635, 0.7205446407610863, 0.7239576816068966, 0.7483627568160166, 0.7232963355919931, 0.7366325320490953, 0.7264222143567053, 0.7339605394126009, 0.7330000000000001, 0.1270000000000001, 0.16939873865132285, 0.2828494933525669, 0.4889107009077842, 0.5623120043524101, 0.6133092379676948, 0.6437092394687915, 0.6629923366662017, 0.6782934366011034, 0.687302374134782, 0.6927470053128909, 0.6993992364234898, 0.7221204483546849, 0.6947577293284015, 0.7063701306810815, 0.6781614534359871, 0.7185326811948407, 0.7050000000000001 ], 1, 3 ]) beta_simple_meters = frozenset([ISO_5167_ORIFICE, ISO_15377_ECCENTRIC_ORIFICE, ISO_15377_CONICAL_ORIFICE, ISO_15377_QUARTER_CIRCLE_ORIFICE, MILLER_ORIFICE, MILLER_ECCENTRIC_ORIFICE, MILLER_SEGMENTAL_ORIFICE, MILLER_CONICAL_ORIFICE, MILLER_QUARTER_CIRCLE_ORIFICE, CONCENTRIC_ORIFICE, ECCENTRIC_ORIFICE, CONICAL_ORIFICE, SEGMENTAL_ORIFICE, QUARTER_CIRCLE_ORIFICE, UNSPECIFIED_METER, HOLLINGSHEAD_VENTURI_SHARP, HOLLINGSHEAD_VENTURI_SMOOTH, HOLLINGSHEAD_ORIFICE, LONG_RADIUS_NOZZLE, ISA_1932_NOZZLE, VENTURI_NOZZLE, AS_CAST_VENTURI_TUBE, MACHINED_CONVERGENT_VENTURI_TUBE, ROUGH_WELDED_CONVERGENT_VENTURI_TUBE]) all_meters = frozenset(list(beta_simple_meters) + [CONE_METER, WEDGE_METER, HOLLINGSHEAD_CONE, HOLLINGSHEAD_WEDGE]) '''Set of string inputs representing all of the different supported flow meters and their correlations. ''' _unsupported_meter_msg = "Supported meter types are %s" % all_meters def differential_pressure_meter_beta(D, D2, meter_type): r'''Calculates the beta ratio of a differential pressure meter. Parameters ---------- D : float Upstream internal pipe diameter, [m] D2 : float Diameter of orifice, or venturi meter orifice, or flow tube orifice, or cone meter end diameter, or wedge meter fluid flow height, [m] meter_type : str One of {'conical orifice', 'orifice', 'machined convergent venturi tube', 'ISO 5167 orifice', 'Miller quarter circle orifice', 'Hollingshead venturi sharp', 'segmental orifice', 'Miller conical orifice', 'Miller segmental orifice', 'quarter circle orifice', 'Hollingshead v cone', 'wedge meter', 'eccentric orifice', 'venuri nozzle', 'rough welded convergent venturi tube', 'ISA 1932 nozzle', 'ISO 15377 quarter-circle orifice', 'Hollingshead venturi smooth', 'Hollingshead orifice', 'cone meter', 'Hollingshead wedge', 'Miller orifice', 'long radius nozzle', 'ISO 15377 conical orifice', 'unspecified meter', 'as cast convergent venturi tube', 'Miller eccentric orifice', 'ISO 15377 eccentric orifice'}, [-] Returns ------- beta : float Differential pressure meter diameter ratio, [-] Notes ----- Examples -------- >>> differential_pressure_meter_beta(D=0.2575, D2=0.184, ... meter_type='cone meter') 0.6995709873957624 ''' if meter_type in beta_simple_meters: beta = D2/D elif meter_type == CONE_METER or meter_type == HOLLINGSHEAD_CONE: beta = diameter_ratio_cone_meter(D=D, Dc=D2) elif meter_type == WEDGE_METER or meter_type == HOLLINGSHEAD_WEDGE: beta = diameter_ratio_wedge_meter(D=D, H=D2) else: raise ValueError(_unsupported_meter_msg) return beta _meter_type_to_corr_default = { CONCENTRIC_ORIFICE: ISO_5167_ORIFICE, ECCENTRIC_ORIFICE: ISO_15377_ECCENTRIC_ORIFICE, CONICAL_ORIFICE: ISO_15377_CONICAL_ORIFICE, QUARTER_CIRCLE_ORIFICE: ISO_15377_QUARTER_CIRCLE_ORIFICE, SEGMENTAL_ORIFICE: MILLER_SEGMENTAL_ORIFICE, } def differential_pressure_meter_C_epsilon(D, D2, m, P1, P2, rho, mu, k, meter_type, taps=None, tap_position=None, C_specified=None, epsilon_specified=None): r'''Calculates the discharge coefficient and expansibility of a flow meter given the mass flow rate, the upstream pressure, the second pressure value, and the orifice diameter for a differential pressure flow meter based on the geometry of the meter, measured pressures of the meter, and the density, viscosity, and isentropic exponent of the fluid. Parameters ---------- D : float Upstream internal pipe diameter, [m] D2 : float Diameter of orifice, or venturi meter orifice, or flow tube orifice, or cone meter end diameter, or wedge meter fluid flow height, [m] m : float Mass flow rate of fluid through the flow meter, [kg/s] P1 : float Static pressure of fluid upstream of differential pressure meter at the cross-section of the pressure tap, [Pa] P2 : float Static pressure of fluid downstream of differential pressure meter or at the prescribed location (varies by type of meter) [Pa] rho : float Density of fluid at `P1`, [kg/m^3] mu : float Viscosity of fluid at `P1`, [Pa*s] k : float Isentropic exponent of fluid, [-] meter_type : str One of {'conical orifice', 'orifice', 'machined convergent venturi tube', 'ISO 5167 orifice', 'Miller quarter circle orifice', 'Hollingshead venturi sharp', 'segmental orifice', 'Miller conical orifice', 'Miller segmental orifice', 'quarter circle orifice', 'Hollingshead v cone', 'wedge meter', 'eccentric orifice', 'venuri nozzle', 'rough welded convergent venturi tube', 'ISA 1932 nozzle', 'ISO 15377 quarter-circle orifice', 'Hollingshead venturi smooth', 'Hollingshead orifice', 'cone meter', 'Hollingshead wedge', 'Miller orifice', 'long radius nozzle', 'ISO 15377 conical orifice', 'unspecified meter', 'as cast convergent venturi tube', 'Miller eccentric orifice', 'ISO 15377 eccentric orifice'}, [-] taps : str, optional The orientation of the taps; one of 'corner', 'flange', 'D', or 'D/2'; applies for orifice meters only, [-] tap_position : str, optional The rotation of the taps, used **only for the eccentric orifice case** where the pressure profile is are not symmetric; '180 degree' for the normal case where the taps are opposite the orifice bore, and '90 degree' for the case where, normally for operational reasons, the taps are near the bore [-] C_specified : float, optional If specified, the correlation for the meter type is not used - this value is returned for `C` epsilon_specified : float, optional If specified, the correlation for the fluid expansibility is not used - this value is returned for :math:`\epsilon`, [-] Returns ------- C : float Coefficient of discharge of the specified flow meter type at the specified conditions, [-] expansibility : float Expansibility factor (1 for incompressible fluids, less than 1 for real fluids), [-] Notes ----- This function should be called by an outer loop when solving for a variable. The latest ISO formulations for `expansibility` are used with the Miller correlations. Examples -------- >>> differential_pressure_meter_C_epsilon(D=0.07366, D2=0.05, P1=200000.0, ... P2=183000.0, rho=999.1, mu=0.0011, k=1.33, m=7.702338035732168, ... meter_type='ISO 5167 orifice', taps='D') (0.6151252900244296, 0.9711026966676307) ''' # # Translate default meter type to implementation specific correlation if meter_type == CONCENTRIC_ORIFICE: meter_type = ISO_5167_ORIFICE elif meter_type == ECCENTRIC_ORIFICE: meter_type = ISO_15377_ECCENTRIC_ORIFICE elif meter_type == CONICAL_ORIFICE: meter_type = ISO_15377_CONICAL_ORIFICE elif meter_type == QUARTER_CIRCLE_ORIFICE: meter_type = ISO_15377_QUARTER_CIRCLE_ORIFICE elif meter_type == SEGMENTAL_ORIFICE: meter_type = MILLER_SEGMENTAL_ORIFICE if meter_type == ISO_5167_ORIFICE: C = C_Reader_Harris_Gallagher(D, D2, rho, mu, m, taps) epsilon = orifice_expansibility(D, D2, P1, P2, k) elif meter_type == ISO_15377_ECCENTRIC_ORIFICE: C = C_eccentric_orifice_ISO_15377_1998(D, D2) epsilon = orifice_expansibility(D, D2, P1, P2, k) elif meter_type == ISO_15377_QUARTER_CIRCLE_ORIFICE: C = C_quarter_circle_orifice_ISO_15377_1998(D, D2) epsilon = orifice_expansibility(D, D2, P1, P2, k) elif meter_type == ISO_15377_CONICAL_ORIFICE: C = ISO_15377_CONICAL_ORIFICE_C # Average of concentric square edge orifice and ISA 1932 nozzles epsilon = 0.5*(orifice_expansibility(D, D2, P1, P2, k) + nozzle_expansibility(D=D, Do=D2, P1=P1, P2=P2, k=k)) elif meter_type in (MILLER_ORIFICE, MILLER_ECCENTRIC_ORIFICE, MILLER_SEGMENTAL_ORIFICE, MILLER_QUARTER_CIRCLE_ORIFICE): C = C_Miller_1996(D, D2, rho, mu, m, subtype=meter_type, taps=taps, tap_position=tap_position) epsilon = orifice_expansibility(D, D2, P1, P2, k) elif meter_type == MILLER_CONICAL_ORIFICE: C = C_Miller_1996(D, D2, rho, mu, m, subtype=meter_type, taps=taps, tap_position=tap_position) epsilon = 0.5*(orifice_expansibility(D, D2, P1, P2, k) + nozzle_expansibility(D=D, Do=D2, P1=P1, P2=P2, k=k)) elif meter_type == LONG_RADIUS_NOZZLE: epsilon = nozzle_expansibility(D=D, Do=D2, P1=P1, P2=P2, k=k) C = C_long_radius_nozzle(D=D, Do=D2, rho=rho, mu=mu, m=m) elif meter_type == ISA_1932_NOZZLE: epsilon = nozzle_expansibility(D=D, Do=D2, P1=P1, P2=P2, k=k) C = C_ISA_1932_nozzle(D=D, Do=D2, rho=rho, mu=mu, m=m) elif meter_type == VENTURI_NOZZLE: epsilon = nozzle_expansibility(D=D, Do=D2, P1=P1, P2=P2, k=k) C = C_venturi_nozzle(D=D, Do=D2) elif meter_type == AS_CAST_VENTURI_TUBE: epsilon = nozzle_expansibility(D=D, Do=D2, P1=P1, P2=P2, k=k) C = AS_CAST_VENTURI_TUBE_C elif meter_type == MACHINED_CONVERGENT_VENTURI_TUBE: epsilon = nozzle_expansibility(D=D, Do=D2, P1=P1, P2=P2, k=k) C = MACHINED_CONVERGENT_VENTURI_TUBE_C elif meter_type == ROUGH_WELDED_CONVERGENT_VENTURI_TUBE: epsilon = nozzle_expansibility(D=D, Do=D2, P1=P1, P2=P2, k=k) C = ROUGH_WELDED_CONVERGENT_VENTURI_TUBE_C elif meter_type == CONE_METER: epsilon = cone_meter_expansibility_Stewart(D=D, Dc=D2, P1=P1, P2=P2, k=k) C = CONE_METER_C elif meter_type == WEDGE_METER: beta = diameter_ratio_wedge_meter(D=D, H=D2) epsilon = nozzle_expansibility(D=D, Do=D2, P1=P1, P2=P1, k=k, beta=beta) C = C_wedge_meter_ISO_5167_6_2017(D=D, H=D2) elif meter_type == HOLLINGSHEAD_ORIFICE: v = m/((0.25*pi*D*D)*rho) Re_D = rho*v*D/mu C = float(bisplev(D2/D, log(Re_D), orifice_std_Hollingshead_tck)) epsilon = orifice_expansibility(D, D2, P1, P2, k) elif meter_type == HOLLINGSHEAD_VENTURI_SMOOTH: v = m/((0.25*pi*D*D)*rho) Re_D = rho*v*D/mu C = interp(log(Re_D), venturi_logRes_Hollingshead, venturi_smooth_Cs_Hollingshead, extrapolate=True) epsilon = nozzle_expansibility(D=D, Do=D2, P1=P1, P2=P2, k=k) elif meter_type == HOLLINGSHEAD_VENTURI_SHARP: v = m/((0.25*pi*D*D)*rho) Re_D = rho*v*D/mu C = interp(log(Re_D), venturi_logRes_Hollingshead, venturi_sharp_Cs_Hollingshead, extrapolate=True) epsilon = nozzle_expansibility(D=D, Do=D2, P1=P1, P2=P2, k=k) elif meter_type == HOLLINGSHEAD_CONE: v = m/((0.25*pi*D*D)*rho) Re_D = rho*v*D/mu beta = diameter_ratio_cone_meter(D, D2) C = float(bisplev(beta, log(Re_D), cone_Hollingshead_tck)) epsilon = cone_meter_expansibility_Stewart(D=D, Dc=D2, P1=P1, P2=P2, k=k) elif meter_type == HOLLINGSHEAD_WEDGE: v = m/((0.25*pi*D*D)*rho) Re_D = rho*v*D/mu beta = diameter_ratio_wedge_meter(D=D, H=D2) C = float(bisplev(beta, log(Re_D), wedge_Hollingshead_tck)) epsilon = nozzle_expansibility(D=D, Do=D2, P1=P1, P2=P1, k=k, beta=beta) elif meter_type == UNSPECIFIED_METER: epsilon = orifice_expansibility(D, D2, P1, P2, k) # Default to orifice type expansibility if C_specified is None: raise ValueError("For unspecified meter type, C_specified is required") else: raise ValueError(_unsupported_meter_msg) if C_specified is not None: C = C_specified if epsilon_specified is not None: epsilon = epsilon_specified return C, epsilon def err_dp_meter_solver_m(m_D, D, D2, P1, P2, rho, mu, k, meter_type, taps, tap_position, C_specified, epsilon_specified): m = m_D*D C, epsilon = differential_pressure_meter_C_epsilon(D, D2, m, P1, P2, rho, mu, k, meter_type, taps=taps, tap_position=tap_position, C_specified=C_specified, epsilon_specified=epsilon_specified) m_calc = flow_meter_discharge(D=D, Do=D2, P1=P1, P2=P2, rho=rho, C=C, expansibility=epsilon) err = m - m_calc return err def err_dp_meter_solver_P2(P2, D, D2, m, P1, rho, mu, k, meter_type, taps, tap_position, C_specified, epsilon_specified): C, epsilon = differential_pressure_meter_C_epsilon(D, D2, m, P1, P2, rho, mu, k, meter_type, taps=taps, tap_position=tap_position, C_specified=C_specified, epsilon_specified=epsilon_specified) m_calc = flow_meter_discharge(D=D, Do=D2, P1=P1, P2=P2, rho=rho, C=C, expansibility=epsilon) return m - m_calc def err_dp_meter_solver_D2(D2, D, m, P1, P2, rho, mu, k, meter_type, taps, tap_position, C_specified, epsilon_specified): C, epsilon = differential_pressure_meter_C_epsilon(D, D2, m, P1, P2, rho, mu, k, meter_type, taps=taps, tap_position=tap_position, C_specified=C_specified, epsilon_specified=epsilon_specified) m_calc = flow_meter_discharge(D=D, Do=D2, P1=P1, P2=P2, rho=rho, C=C, expansibility=epsilon) return m - m_calc def err_dp_meter_solver_P1(P1, D, D2, m, P2, rho, mu, k, meter_type, taps, tap_position, C_specified, epsilon_specified): C, epsilon = differential_pressure_meter_C_epsilon(D, D2, m, P1, P2, rho, mu, k, meter_type, taps=taps, tap_position=tap_position, C_specified=C_specified, epsilon_specified=epsilon_specified) m_calc = flow_meter_discharge(D=D, Do=D2, P1=P1, P2=P2, rho=rho, C=C, expansibility=epsilon) return m - m_calc def differential_pressure_meter_solver(D, rho, mu, k=None, D2=None, P1=None, P2=None, m=None, meter_type=ISO_5167_ORIFICE, taps=None, tap_position=None, C_specified=None, epsilon_specified=None): r'''Calculates either the mass flow rate, the upstream pressure, the second pressure value, or the orifice diameter for a differential pressure flow meter based on the geometry of the meter, measured pressures of the meter, and the density, viscosity, and isentropic exponent of the fluid. This solves an equation iteratively to obtain the correct flow rate. Parameters ---------- D : float Upstream internal pipe diameter, [m] rho : float Density of fluid at `P1`, [kg/m^3] mu : float Viscosity of fluid at `P1`, [Pa*s] k : float, optional Isentropic exponent of fluid; required unless `epsilon_specified` is specified , [-] D2 : float, optional Diameter of orifice, or venturi meter orifice, or flow tube orifice, or cone meter end diameter, or wedge meter fluid flow height, [m] P1 : float, optional Static pressure of fluid upstream of differential pressure meter at the cross-section of the pressure tap, [Pa] P2 : float, optional Static pressure of fluid downstream of differential pressure meter or at the prescribed location (varies by type of meter) [Pa] m : float, optional Mass flow rate of fluid through the flow meter, [kg/s] meter_type : str One of {'conical orifice', 'orifice', 'machined convergent venturi tube', 'ISO 5167 orifice', 'Miller quarter circle orifice', 'Hollingshead venturi sharp', 'segmental orifice', 'Miller conical orifice', 'Miller segmental orifice', 'quarter circle orifice', 'Hollingshead v cone', 'wedge meter', 'eccentric orifice', 'venuri nozzle', 'rough welded convergent venturi tube', 'ISA 1932 nozzle', 'ISO 15377 quarter-circle orifice', 'Hollingshead venturi smooth', 'Hollingshead orifice', 'cone meter', 'Hollingshead wedge', 'Miller orifice', 'long radius nozzle', 'ISO 15377 conical orifice', 'unspecified meter', 'as cast convergent venturi tube', 'Miller eccentric orifice', 'ISO 15377 eccentric orifice'}, [-] taps : str, optional The orientation of the taps; one of 'corner', 'flange', 'D', or 'D/2'; applies for orifice meters only, [-] tap_position : str, optional The rotation of the taps, used **only for the eccentric orifice case** where the pressure profile is are not symmetric; '180 degree' for the normal case where the taps are opposite the orifice bore, and '90 degree' for the case where, normally for operational reasons, the taps are near the bore [-] C_specified : float, optional If specified, the correlation for the meter type is not used - this value is used for `C` epsilon_specified : float, optional If specified, the correlation for the fluid expansibility is not used - this value is used for :math:`\epsilon`. Many publications recommend this be set to 1 for incompressible fluids [-] Returns ------- ans : float One of `m`, the mass flow rate of the fluid; `P1`, the pressure upstream of the flow meter; `P2`, the second pressure tap's value; and `D2`, the diameter of the measuring device; units of respectively, kg/s, Pa, Pa, or m Notes ----- See the appropriate functions for the documentation for the formulas and references used in each method. The solvers make some assumptions about the range of values answers may be in. Note that the solver for the upstream pressure uses the provided values of density, viscosity and isentropic exponent; whereas these values all depend on pressure (albeit to a small extent). An outer loop should be added with pressure-dependent values calculated in it for maximum accuracy. It would be possible to solve for the upstream pipe diameter, but there is no use for that functionality. If a meter has already been calibrated to have a known `C`, this may be provided and it will be used in place of calculating one. Examples -------- >>> differential_pressure_meter_solver(D=0.07366, D2=0.05, P1=200000.0, ... P2=183000.0, rho=999.1, mu=0.0011, k=1.33, ... meter_type='ISO 5167 orifice', taps='D') 7.702338035732167 >>> differential_pressure_meter_solver(D=0.07366, m=7.702338, P1=200000.0, ... P2=183000.0, rho=999.1, mu=0.0011, k=1.33, ... meter_type='ISO 5167 orifice', taps='D') 0.04999999990831885 ''' if k is None and epsilon_specified is not None: k = 1.4 if m is None and D is not None and D2 is not None and P1 is not None and P2 is not None: # Initialize via analytical formulas C_guess = 0.7 D4 = D*D D4 *= D4 D24 = D2*D2 D24 *= D24 m_guess = root_two*pi*C_guess*D2*D2*sqrt(D4*rho*(P1 - P2)/(D4 - D24))*0.25 m_D_guess = m_guess/D # Diameter to mass flow ratio # m_D_guess = 40 # if rho < 100.0: # m_D_guess *= 1e-2 return secant(err_dp_meter_solver_m, m_D_guess, args=(D, D2, P1, P2, rho, mu, k, meter_type, taps, tap_position, C_specified, epsilon_specified), low=1e-40)*D elif D2 is None and D is not None and m is not None and P1 is not None and P2 is not None: args = (D, m, P1, P2, rho, mu, k, meter_type, taps, tap_position, C_specified, epsilon_specified) try: return brenth(err_dp_meter_solver_D2, D*(1-1E-9), D*5E-3, args=args) except: try: return secant(err_dp_meter_solver_D2, D*.3, args=args, high=D, low=D*1e-10) except: return secant(err_dp_meter_solver_D2, D*.75, args=args, high=D, low=D*1e-10) elif P2 is None and D is not None and D2 is not None and m is not None and P1 is not None: args = (D, D2, m, P1, rho, mu, k, meter_type, taps, tap_position, C_specified, epsilon_specified) try: return brenth(err_dp_meter_solver_P2, P1*(1-1E-9), P1*0.5, args=args) except: return secant(err_dp_meter_solver_P2, P1*0.5, low=P1*1e-10, args=args, high=P1, bisection=True) elif P1 is None and D is not None and D2 is not None and m is not None and P2 is not None: args = (D, D2, m, P2, rho, mu, k, meter_type, taps, tap_position, C_specified, epsilon_specified) try: return brenth(err_dp_meter_solver_P1, P2*(1+1E-9), P2*1.4, args=args) except: return secant(err_dp_meter_solver_P1, P2*1.5, args=args, low=P2, bisection=True) else: raise ValueError('Solver is capable of solving for one of P1, P2, D2, or m only.') # Set of orifice types that get their dP calculated with `dP_orifice`. _dP_orifice_set = set([ISO_5167_ORIFICE, ISO_15377_ECCENTRIC_ORIFICE, ISO_15377_CONICAL_ORIFICE, ISO_15377_QUARTER_CIRCLE_ORIFICE, MILLER_ORIFICE, MILLER_ECCENTRIC_ORIFICE, MILLER_SEGMENTAL_ORIFICE, MILLER_CONICAL_ORIFICE, MILLER_QUARTER_CIRCLE_ORIFICE, HOLLINGSHEAD_ORIFICE, CONCENTRIC_ORIFICE, ECCENTRIC_ORIFICE, CONICAL_ORIFICE, SEGMENTAL_ORIFICE, QUARTER_CIRCLE_ORIFICE]) _missing_C_msg = "Parameter C is required for this orifice type" def differential_pressure_meter_dP(D, D2, P1, P2, C=None, meter_type=ISO_5167_ORIFICE): r'''Calculates the non-recoverable pressure drop of a differential pressure flow meter based on the geometry of the meter, measured pressures of the meter, and for most models the meter discharge coefficient. Parameters ---------- D : float Upstream internal pipe diameter, [m] D2 : float Diameter of orifice, or venturi meter orifice, or flow tube orifice, or cone meter end diameter, or wedge meter fluid flow height, [m] P1 : float Static pressure of fluid upstream of differential pressure meter at the cross-section of the pressure tap, [Pa] P2 : float Static pressure of fluid downstream of differential pressure meter or at the prescribed location (varies by type of meter) [Pa] C : float, optional Coefficient of discharge (used only in orifice plates, and venturi nozzles), [-] meter_type : str One of {'conical orifice', 'orifice', 'machined convergent venturi tube', 'ISO 5167 orifice', 'Miller quarter circle orifice', 'Hollingshead venturi sharp', 'segmental orifice', 'Miller conical orifice', 'Miller segmental orifice', 'quarter circle orifice', 'Hollingshead v cone', 'wedge meter', 'eccentric orifice', 'venuri nozzle', 'rough welded convergent venturi tube', 'ISA 1932 nozzle', 'ISO 15377 quarter-circle orifice', 'Hollingshead venturi smooth', 'Hollingshead orifice', 'cone meter', 'Hollingshead wedge', 'Miller orifice', 'long radius nozzle', 'ISO 15377 conical orifice', 'unspecified meter', 'as cast convergent venturi tube', 'Miller eccentric orifice', 'ISO 15377 eccentric orifice'}, [-] Returns ------- dP : float Non-recoverable pressure drop of the differential pressure flow meter, [Pa] Notes ----- See the appropriate functions for the documentation for the formulas and references used in each method. Wedge meters, and venturi nozzles do not have standard formulas available for pressure drop computation. Examples -------- >>> differential_pressure_meter_dP(D=0.07366, D2=0.05, P1=200000.0, ... P2=183000.0, meter_type='as cast convergent venturi tube') 1788.5717754177406 ''' if meter_type in _dP_orifice_set: if C is None: raise ValueError(_missing_C_msg) dP = dP_orifice(D=D, Do=D2, P1=P1, P2=P2, C=C) elif meter_type == LONG_RADIUS_NOZZLE: if C is None: raise ValueError(_missing_C_msg) dP = dP_orifice(D=D, Do=D2, P1=P1, P2=P2, C=C) elif meter_type == ISA_1932_NOZZLE: if C is None: raise ValueError(_missing_C_msg) dP = dP_orifice(D=D, Do=D2, P1=P1, P2=P2, C=C) elif meter_type == VENTURI_NOZZLE: raise NotImplementedError("Venturi meter does not have an implemented pressure drop correlation") elif (meter_type == AS_CAST_VENTURI_TUBE or meter_type == MACHINED_CONVERGENT_VENTURI_TUBE or meter_type == ROUGH_WELDED_CONVERGENT_VENTURI_TUBE or meter_type == HOLLINGSHEAD_VENTURI_SMOOTH or meter_type == HOLLINGSHEAD_VENTURI_SHARP): dP = dP_venturi_tube(D=D, Do=D2, P1=P1, P2=P2) elif meter_type == CONE_METER or meter_type == HOLLINGSHEAD_CONE: dP = dP_cone_meter(D=D, Dc=D2, P1=P1, P2=P2) elif meter_type == WEDGE_METER or meter_type == HOLLINGSHEAD_WEDGE: dP = dP_wedge_meter(D=D, H=D2, P1=P1, P2=P2) else: raise ValueError(_unsupported_meter_msg) return dP fluids-1.0.22/fluids/open_flow.pyi0000644000175000017500000000174314302004506016410 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import Union def C_Chezy_to_n_Manning(C: float, Rh: float) -> float: ... def Q_weir_V_Shen(h1: float, angle: int = ...) -> float: ... def Q_weir_rectangular_Kindsvater_Carter(h1: float, h2: float, b: float) -> float: ... def Q_weir_rectangular_SIA(h1: float, h2: float, b: float, b1: float) -> float: ... def Q_weir_rectangular_full_Ackers(h1: float, h2: float, b: float) -> float: ... def Q_weir_rectangular_full_Kindsvater_Carter(h1: float, h2: float, b: float) -> float: ... def Q_weir_rectangular_full_Rehbock(h1: float, h2: float, b: float) -> float: ... def Q_weir_rectangular_full_SIA(h1: float, h2: float, b: float) -> float: ... def V_Chezy(Rh: float, S: float, C: float) -> float: ... def V_Manning(Rh: float, S: float, n: float) -> float: ... def n_Manning_to_C_Chezy(n: float, Rh: float) -> float: ... __all__: List[str]fluids-1.0.22/fluids/__init__.py0000644000175000017500000001324614302004506016007 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2019, 2020, 2021 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ import os global vectorized, numba, units, numba_vectorized from . import numerics from . import constants if not numerics.is_micropython: from . import atmosphere from . import compressible from . import core from . import friction from . import filters from . import fittings from . import flow_meter from . import geometry from . import mixing from . import open_flow from . import packed_bed from . import piping from . import pump from . import safety_valve from . import packed_tower from . import two_phase_voidage from . import two_phase from . import drag from . import saltation from . import separator from . import particle_size_distribution from . import jet_pump from . import control_valve from .atmosphere import * from .compressible import * from .control_valve import * from .core import * from .filters import * from .fittings import * from .flow_meter import * from .friction import * from .geometry import * from .mixing import * from .open_flow import * from .particle_size_distribution import * from .packed_bed import * from .piping import * from .pump import * from .safety_valve import * from .packed_tower import * from .two_phase import * from .two_phase_voidage import * from .drag import * from .saltation import * from .separator import * from .jet_pump import * __all__ = ['atmosphere', 'compressible', 'control_valve', 'core', 'filters', 'fittings', 'friction', 'geometry', 'mixing', 'open_flow', 'packed_bed', 'piping', 'pump', 'safety_valve', 'packed_tower', 'two_phase', 'two_phase_voidage', 'drag', 'saltation', 'separator', 'flow_meter', 'particle_size_distribution', 'jet_pump'] __all__.extend(atmosphere.__all__) __all__.extend(compressible.__all__) __all__.extend(control_valve.__all__) __all__.extend(core.__all__) __all__.extend(filters.__all__) __all__.extend(fittings.__all__) __all__.extend(friction.__all__) __all__.extend(geometry.__all__) __all__.extend(mixing.__all__) __all__.extend(open_flow.__all__) __all__.extend(flow_meter.__all__) __all__.extend(packed_bed.__all__) __all__.extend(piping.__all__) __all__.extend(pump.__all__) __all__.extend(safety_valve.__all__) __all__.extend(packed_tower.__all__) __all__.extend(two_phase.__all__) __all__.extend(two_phase_voidage.__all__) __all__.extend(drag.__all__) __all__.extend(saltation.__all__) __all__.extend(separator.__all__) __all__.extend(particle_size_distribution.__all__) __all__.extend(jet_pump.__all__) submodules = [atmosphere, compressible, core, friction, filters, fittings, flow_meter, geometry, mixing, open_flow, packed_bed, piping, pump, safety_valve, packed_tower, two_phase_voidage, two_phase, drag, saltation, separator, particle_size_distribution, jet_pump, control_valve] if numerics.PY37: def __getattr__(name): global vectorized, numba, units, numba_vectorized if name == 'vectorized': import fluids.vectorized as vectorized return vectorized if name == 'numba': import fluids.numba as numba return numba if name == 'units': import fluids.units as units return units if name == 'numba_vectorized': import fluids.numba_vectorized as numba_vectorized return numba_vectorized raise AttributeError("module %s has no attribute %s" %(__name__, name)) else: from . import vectorized def all_submodules(): import fluids.optional import fluids.optional.irradiance import fluids.optional.spa import fluids.nrlmsise00.nrlmsise_00_data import fluids.nrlmsise00.nrlmsise_00 import fluids.nrlmsise00.nrlmsise_00_header return submodules + [fluids.optional, fluids.optional.irradiance, fluids.optional.spa, fluids.nrlmsise00.nrlmsise_00_data, fluids.nrlmsise00.nrlmsise_00, fluids.nrlmsise00.nrlmsise_00_header] def load_types(): from fluids.typing_utils import type_module for m in submodules: type_module(m) __version__ = '1.0.22' try: fluids_dir = os.path.dirname(__file__) fluids_data_dir = os.path.join(fluids_dir, 'data') except: pass fluids-1.0.22/fluids/numerics/0000755000175000017500000000000014302004506015515 5ustar nileshnileshfluids-1.0.22/fluids/numerics/special.py0000644000175000017500000000742614302004506017520 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2021 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicensse, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from __future__ import division from math import (sin, exp, pi, fabs, copysign, log, isinf, acos, cos, sin, atan2, asinh, sqrt, gamma) from cmath import sqrt as csqrt, log as clog try: from math import log1p except: log1p = log __all__ = ['py_hypot', 'py_cacos', 'py_catan', 'py_catanh', 'trunc_exp', 'trunc_log'] DBL_MAX = 1.7976931348623157e+308 CM_LARGE_DOUBLE = DBL_MAX/4. CM_SQRT_LARGE_DOUBLE = sqrt(CM_LARGE_DOUBLE) DBL_MIN = 2.2250738585072013830902327173324040642192159804623318306e-308 CM_SQRT_DBL_MIN = sqrt(DBL_MIN) def py_hypot(x, y): x = fabs(x) y = fabs(y) if x < y: x, y = y, x if x == 0.0: return 0.0 yx = y/x return x*sqrt(1.0 + yx*yx) def py_cacos(z): # After CPython https://github.com/python/cpython/blob/e9e7d284c434768333fdfb53a3663eae74cb995a/Modules/cmathmodule.c#L237 # Without the special cases # Implemented only because micropython is missing this function s1 = csqrt(1. - z.real - z.imag*1.0j) s2 = csqrt(1. + z.real + z.imag*1.0j) r = 2.*atan2(s1.real, s2.real) + asinh(s2.real*s1.imag - s2.imag*s1.real)*1.0j return r def py_catan(x): # Implemented only because micropython is missing this function return 0.5j*(clog(1.0 - 1.0j*x) - clog(1.0 + 1.0j*x)) def py_catanh(z): # Does not contain special values if z.real < 0.0: # works res = py_catanh(-z.real + z.imag*1j) return -res.real +res.imag*1j ay = fabs(z.imag) if (z.real > CM_SQRT_LARGE_DOUBLE or ay > CM_SQRT_LARGE_DOUBLE): h = py_hypot(z.real/2., z.imag/2.) real = z.real/4./h/h imag = -copysign(pi/2., -z.imag) elif (z.real == 1. and ay < CM_SQRT_DBL_MIN): if (ay == 0.): real = inf imag = z.imag else: real = -log(sqrt(ay)/sqrt(py_hypot(ay, 2.))) imag = copysign(atan2(2., -ay)/2, z.imag) else: real = log1p(4.*z.real/((1-z.real)*(1-z.real) + ay*ay))/4. imag = -atan2(-2.*z.imag, (1-z.real)*(1+z.real) - ay*ay)/2. return real + imag*1.0j def trunc_exp(x, trunc=1.7976931348622732e+308): # maximum value occurs at 709.782712893384 exactly try: return exp(x) except: # Really exp(709.7) 1.6549840276802644e+308 return trunc def trunc_log(x, trunc=-744.4400719213812): # 5e-324 is the smallest floating point number above zero and its log is -744.4400719213812 if x == 0.0: return trunc return log(x) # try: # return log(x) # except ValueError as e: # if x == 0: # return trunc # else: # raise e fluids-1.0.22/fluids/numerics/__init__.py0000644000175000017500000066445614302004506017653 0ustar nileshnilesh# -*- coding: utf-8 -*- # type: ignore """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2018, 2019, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicensse, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from __future__ import division from math import (sin, exp, pi, fabs, copysign, log, isinf, acos, cos, sin, atan2, asinh, sqrt, gamma) from cmath import sqrt as csqrt, log as clog import sys from fluids.numerics.arrays import (solve as py_solve, inv, dot, norm2, inner_product, eye, array_as_tridiagonals, tridiagonals_as_array, solve_tridiagonal, subset_matrix) from fluids.numerics.special import (py_hypot, py_cacos, py_catan, py_catanh, trunc_exp, trunc_log) __all__ = ['isclose', 'horner', 'horner_and_der', 'horner_and_der2', 'horner_and_der3', 'quadratic_from_f_ders', 'chebval', 'interp', 'linspace', 'logspace', 'cumsum', 'diff', 'basic_damping', 'is_poly_negative', 'is_poly_positive', 'implementation_optimize_tck', 'tck_interp2d_linear', 'bisect', 'ridder', 'brenth', 'newton', 'secant', 'halley', 'one_sided_secant', 'splev', 'bisplev', 'derivative', 'jacobian', 'hessian', 'normalize', 'oscillation_checker', 'IS_PYPY', 'roots_cubic', 'roots_quartic', 'newton_system', 'broyden2', 'basic_damping', 'solve_2_direct', 'solve_3_direct', 'solve_4_direct', 'sincos', 'horner_and_der4', 'lambertw', 'ellipe', 'gamma', 'gammaincc', 'erf', 'i1', 'i0', 'k1', 'k0', 'iv', 'mean', 'polylog2', 'roots_quadratic', 'numpy', 'nquad', 'catanh', 'factorial', 'polyint_over_x', 'horner_log', 'polyint', 'zeros', 'full', 'chebder', 'chebint', 'exp_cheb', 'polyder', 'make_damp_initial', 'quadratic_from_points', 'OscillationError', 'UnconvergedError', 'caching_decorator', 'NoSolutionError', 'SamePointError', 'NotBoundedError', 'damping_maintain_sign', 'oscillation_checking_wrapper', 'trunc_exp', 'trunc_log', 'fit_integral_linear_extrapolation', 'fit_integral_over_T_linear_extrapolation', 'poly_fit_integral_value', 'poly_fit_integral_over_T_value', 'evaluate_linear_fits', 'evaluate_linear_fits_d', 'evaluate_linear_fits_d2', 'best_bounding_bounds', 'newton_minimize', 'array_as_tridiagonals', 'tridiagonals_as_array', 'solve_tridiagonal', 'subset_matrix', 'assert_close', 'assert_close1d', 'assert_close2d', 'assert_close3d', 'assert_close4d', 'translate_bound_func', 'translate_bound_jac', 'translate_bound_f_jac', 'curve_fit', 'quad', 'quad_adaptive', 'stable_poly_to_unstable', 'std', 'min_max_ratios', 'detect_outlier_normal', 'max_abs_error', 'max_abs_rel_error', 'max_squared_error', 'max_squared_rel_error', 'mean_abs_error', 'mean_abs_rel_error', 'mean_squared_error', 'mean_squared_rel_error', # Complex number math missing in micropython 'cacos', 'catan', 'deflate_cubic_real_roots', 'fit_minimization_targets', 'root', 'minimize', 'fsolve', 'differential_evolution', 'lmder', 'lmfit', 'horner_backwards', 'exp_horner_backwards', 'horner_backwards_ln_tau', 'exp_horner_backwards_ln_tau', 'exp_horner_backwards_ln_tau_and_der', 'exp_horner_backwards_ln_tau_and_der2', 'exp_poly_ln_tau_coeffs2', 'exp_poly_ln_tau_coeffs3', 'exp_horner_backwards_and_der', 'exp_horner_backwards_and_der2', 'exp_horner_backwards_and_der3', 'horner_backwards_ln_tau_and_der', 'horner_backwards_ln_tau_and_der2', 'horner_backwards_ln_tau_and_der3', 'horner_domain', 'polynomial_offset_scale', 'horner_stable', 'horner_stable_and_der', 'horner_stable_and_der2', 'horner_stable_and_der3', 'horner_stable_and_der4', 'exp_horner_stable', 'exp_horner_stable_and_der', 'exp_horner_stable_and_der2', 'exp_horner_stable_and_der3', 'exp_cheb_and_der', 'exp_cheb_and_der2', 'exp_cheb_and_der3', 'chebval_ln_tau', 'chebval_ln_tau_and_der', 'chebval_ln_tau_and_der2', 'chebval_ln_tau_and_der3', 'horner_stable_ln_tau', 'horner_stable_ln_tau_and_der', 'horner_stable_ln_tau_and_der2', 'horner_stable_ln_tau_and_der3', 'exp_cheb_ln_tau', 'exp_cheb_ln_tau_and_der', 'exp_cheb_ln_tau_and_der2', 'exp_horner_stable_ln_tau', 'exp_horner_stable_ln_tau_and_der', 'exp_horner_stable_ln_tau_and_der2', ] from fluids.numerics import doubledouble from fluids.numerics.doubledouble import * __all__.extend(doubledouble.__all__) __numba_additional_funcs__ = ['py_bisplev', 'py_splev', 'binary_search', 'py_lambertw', '_lambertw_err', 'newton_err', 'norm2', 'py_solve', 'func_35_splev', 'func_40_splev', 'quad_adaptive', 'fixed_quad_Gauss_Kronrod', 'halley_compat_numba', ] nan = float("nan") inf = float("inf") SKIP_DEPENDENCIES = False # for testing class FakePackage(object): pkg = None def __getattr__(self, name): raise ImportError('%s in not installed and required by this feature' %(self.pkg)) def __init__(self, pkg): self.pkg = pkg version_components = sys.version.split('.') PY_MAJOR, PY_MINOR = int(version_components[0]), int(version_components[1]) PY37 = (PY_MAJOR, PY_MINOR) >= (3, 7) try: # The right way imports the platform module which costs to ms to load! # implementation = platform.python_implementation() IS_PYPY = 'PyPy' in sys.version except AttributeError: IS_PYPY = False # Hacks for numba - allow the module to run in different ways try: IS_PYPY = FORCE_PYPY except: pass try: array_if_needed except: array_if_needed = lambda x: x try: is_micropython = sys.implementation.name == 'micropython' if is_micropython: IS_PYPY = True except: is_micropython = False try: is_ironpython = sys.implementation.name == 'ironpython' if is_ironpython: IS_PYPY = True except: is_ironpython = False if is_micropython: hypot = py_hypot def sincos(x): return sin(x), cos(x) try: if IS_PYPY: def sincos(x): # fast implementation based of cephes and go PI4A = 7.85398125648498535156e-1 PI4B = 3.77489470793079817668e-8 PI4C = 2.69515142907905952645e-15 M4PI = 1.273239544735162542821171882678754627704620361328125 #// 4/pi sinSign, cosSign = False, False if x < 0: x = -x sinSign = True j = int(x * M4PI) y = float(j) if j&1 == 1: j += 1 y += 1 j &= 7 if j > 3: j -= 4 sinSign, cosSign = not sinSign, not cosSign if j > 1: cosSign = not cosSign z = ((x - y*PI4A) - y*PI4B) - y*PI4C zz = z * z cos = 1.0 - 0.5*zz + zz*zz*((((((-1.13585365213876817300E-11*zz)+2.08757008419747316778E-9) *zz+-2.75573141792967388112E-7)*zz+2.48015872888517045348E-5) *zz+-1.38888888888730564116E-3)*zz+4.16666666666665929218E-2) sin = z + z*zz*((((((1.58962301576546568060E-10*zz)+-2.50507477628578072866E-8)*zz+2.75573136213857245213E-6) *zz+-1.98412698295895385996E-4)*zz+8.33333333332211858878E-3)*zz+-1.66666666666666307295E-1) if j == 1 or j == 2: sin, cos = cos, sin if cosSign : cos = -cos if sinSign: sin = -sin return sin, cos except: pass try: from cmath import acos as cacos, atan as catan, atanh as catanh, isclose as cisclose except: cacos = py_cacos catan = py_catan catanh = py_catanh _wraps = None def my_wraps(): global _wraps if _wraps is not None: return _wraps from functools import wraps _wraps = wraps return _wraps #IS_PYPY = True # for testing if not SKIP_DEPENDENCIES: try: # Regardless of actual interpreter, fall back to pure python implementations # if scipy and numpy are not available. import numpy np = numpy except ImportError: # Allow a fake numpy to be imported, but will raise an excption on any use numpy = FakePackage('numpy') IS_PYPY = True else: numpy = FakePackage('numpy') IS_PYPY = True IS_PYPY_OR_SKIP_DEPENDENCIES = IS_PYPY or SKIP_DEPENDENCIES np = numpy try: scalar_types = (float, int, np.float64, np.float32, np.float16, np.float128, np.int8, np.int16, np.int32, np.int64) except: scalar_types = (float, int) #IS_PYPY = True try: from sys import float_info epsilon = float_info.epsilon except: # Probably micropython epsilon = 2.220446049250313e-16 one_epsilon_larger = 1.0 + epsilon one_epsilon_smaller = 1.0 - epsilon zero_epsilon_smaller = 0.0 - epsilon one_10_epsilon_larger = 1.0 + epsilon*10.0 one_10_epsilon_smaller = 1.0 - epsilon*10.0 one_100_epsilon_larger = 1.0 + epsilon*100.0 one_100_epsilon_smaller = 1.0 - epsilon*100.0 one_1000_epsilon_larger = 1.0 + epsilon*1000.0 one_1000_epsilon_smaller = 1.0 - epsilon*1000.0 _iter = 100 _xtol = 1e-12 _rtol = epsilon*2.0 third = 1.0/3.0 sixth = 1.0/6.0 ninth = 1.0/9.0 twelfth = 1.0/12.0 two_thirds = 2.0/3.0 four_thirds = 4.0/3.0 root_three = 1.7320508075688772 # sqrt(3.0) one_27 = 1.0/27.0 complex_factor = 0.8660254037844386j # (sqrt(3)*0.5j) def roots_quadratic(a, b, c): if a == 0.0: return (-c/b, ) D = b*b - 4.0*a*c a_inv_2 = 0.5/a if D < 0.0: D = sqrt(-D) x1 = (-b + D*1.0j)*a_inv_2 x2 = (-b - D*1.0j)*a_inv_2 else: D = sqrt(D) x1 = (D - b)*a_inv_2 x2 = -(b + D)*a_inv_2 return (x1, x2) def roots_cubic_a1(b, c, d): # Output from mathematica t1 = b*b t2 = t1*b t4 = c*b t9 = c*c t16 = d*d t19 = csqrt(12.0*t9*c + 12.0*t2*d - 54.0*t4*d - 3.0*t1*t9 + 81.0*t16) t22 = (-8.0*t2 + 36.0*t4 - 108.0*d + 12.0*t19)**third root1 = t22*sixth - 6.0*(c*third - t1*ninth)/t22 - b*third t28 = (c*third - t1*ninth)/t22 t101 = -t22*twelfth + 3.0*t28 - b*third t102 = root_three*(t22*sixth + 6.0*t28) root2 = t101 + 0.5j*t102 root3 = t101 - 0.5j*t102 return [root1, root2, root3] def roots_cubic_a2(a, b, c, d): # Output from maple t2 = a*a t3 = d*d t10 = c*c t14 = b*b t15 = t14*b t20 = csqrt(-18.0*a*b*c*d + 4.0*a*t10*c + 4.0*t15*d - t14*t10 + 27.0*t2*t3) t31 = (36.0*c*b*a + 12.0*root_three*t20*a - 108.0*d*t2 - 8.0*t15)**third t32 = 1.0/a root1 = t31*t32*sixth - two_thirds*(3.0*a*c - t14)*t32/t31 - b*t32*third t33 = t31*t32 t40 = (3.0*a*c - t14)*t32/t31 t50 = -t33*twelfth + t40*third - b*t32*third t51 = 0.5j*root_three *(t33*sixth + two_thirds*t40) root2 = t50 + t51 root3 = t50 - t51 return [root1, root2, root3] def roots_cubic(a, b, c, d): r'''Cubic equation solver based on a variety of sources, algorithms, and numerical tools. It seems evident after some work that no analytical solution using floating points will ever have high-precision results for all cases of inputs. Some other solvers, such as NumPy's roots which uses eigenvalues derived using some BLAS, seem to provide bang-on answers for all values coefficients. However, they can be quite slow - and where possible there is still a need for analytical solutions to obtain 15-35x speed, such as when using PyPy. A particular focus of this routine is where a=1, b is a small number in the range -10 to 10 - a common occurrence in cubic equations of state. Parameters ---------- a : float Coefficient of x^3, [-] b : float Coefficient of x^2, [-] c : float Coefficient of x, [-] d : float Added coefficient, [-] Returns ------- roots : tuple(float) The evaluated roots of the polynomial, 1 value when a and b are zero, two values when a is zero, and three otherwise, [-] Notes ----- For maximum speed, provide Python floats. Compare the speed with numpy via: %timeit roots_cubic(1.0, 100.0, 1000.0, 10.0) %timeit np.roots([1.0, 100.0, 1000.0, 10.0]) %timeit roots_cubic(1.0, 2.0, 3.0, 4.0) %timeit np.roots([1.0, 2.0, 3.0, 4.0]) The speed is ~15-35 times faster; or using PyPy, 240-370 times faster. Examples -------- >>> roots_cubic(1.0, 100.0, 1000.0, 10.0) (-0.0100100190, -88.731288, -11.25870159) References ---------- .. [1] "Solving Cubic Equations." Accessed January 5, 2019. http://www.1728.org/cubic2.htm. ''' ''' Notes ----- Known issue is inputs that look like 1, -0.999999999978168, 1.698247818501352e-11, -8.47396642608142e-17 Errors grown unbound, starting when b is -.99999 and close to 1. ''' if a == 0.0: if b == 0.0: return (-d/c, ) D = c*c - 4.0*b*d b_inv_2 = 0.5/b if D < 0.0: D = sqrt(-D) x1 = (-c + D*1.0j)*b_inv_2 x2 = (-c - D*1.0j)*b_inv_2 else: D = sqrt(D) x1 = (D - c)*b_inv_2 x2 = -(c + D)*b_inv_2 return (x1, x2) a_inv = 1.0/a a_inv2 = a_inv*a_inv bb = b*b '''Herbie modifications for f: c*a_inv - b_a*b_a*third ''' b_a = b*a_inv b_a2 = b_a*b_a f = c*a_inv - b_a2*third # f = (3.0*c*a_inv - bb*a_inv2)*third g = ((2.0*(bb*b) * a_inv2*a_inv) - (9.0*b*c)*(a_inv2) + (27.0*d*a_inv))*one_27 # g = (((2.0/(a/b))/((a/b) * (a/b)) + d*27.0/a) - (9.0/a*b)*c/a)/27.0 h = (0.25*(g*g) + (f*f*f)*one_27) # print(f, g, h) '''h has no savings on precision - 0.4 error to 0.2. ''' # print(f, g, h, 'f, g, h') if h == 0.0 and g == 0.0 and f == 0.0: if d/a >= 0.0: x = -((d*a_inv)**(third)) else: x = (-d*a_inv)**(third) return (x, x, x) elif h > 0.0: # Happy with these formulas - double doubles should be fast. # No complex numbers are needed here. # print('basic') # 1 real root, 2 imag root_h = sqrt(h) R = -0.5*g + root_h # It is possible to save one of the power of thirds! if R >= 0.0: S = R**third else: S = -((-R)**third) T = -(0.5*g) - root_h if T >= 0.0: U = (T**(third)) else: U = -(((-T)**(third))) SU = S + U b_3a = b*(third*a_inv) t1 = -0.5*SU - b_3a t2 = (S - U)*complex_factor x1 = SU - b_3a # x1 is OK actually in some tests? the issue is x2, x3? x2 = t1 + t2 x3 = t1 - t2 else: # elif h <= 0.0: t2 = a*a t3 = d*d t10 = c*c t14 = b*b t15 = t14*b '''This method is inaccurate when choice_term is too small; but still more accurate than the other method. ''' choice_term = -18.0*a*b*c*d + 4.0*a*t10*c + 4.0*t15*d - t14*t10 + 27.0*t2*t3 if (abs(choice_term) > 1e-12 or abs(b + 1.0) < 1e-7): # print('mine') t32 = 1.0/a t20 = csqrt(choice_term) t31 = (36.0*c*b*a + 12.0*root_three*t20*a - 108.0*d*t2 - 8.0*t15)**third t33 = t31*t32 t32_t31 = t32/t31 x1 = (t33*sixth - two_thirds*(3.0*a*c - t14)*t32_t31 - b*t32*third).real t40 = (3.0*a*c - t14)*t32_t31 t50 = -t33*twelfth + t40*third - b*t32*third t51 = 0.5j*root_three*(t33*sixth + two_thirds*t40) x2 = (t50 + t51).real x3 = (t50 - t51).real else: # print('other') # 3 real roots # example is going in here i = sqrt(((g*g)*0.25) - h) j = i**third # There was a saving for j but it was very weird with if statements! '''Clamied nothing saved for k. ''' k = acos(-0.5*g/i) # L = -j # N, M = sincos(k*third) # N *= root_three k_third = k*third M = cos(k_third) N = root_three*sin(k_third) P = -b_a*third # Direct formula for x1 x1 = 2.0*j*M + P x2 = P - j*(M + N) x3 = P - j*(M - N) return (x1, x2, x3) def roots_quartic(a, b, c, d, e): # There is no divide by zero check. A should be 1 for best numerical results # Multiple order of magnitude differences still can cause problems # Like [1, 0.0016525874561771799, 106.8665062954208, 0.0032802613917246727, 0.16036091315844248] x0 = 1.0/a x1 = b*x0 x2 = -x1*0.25 x3 = c*x0 x4 = b*b*x0*x0 x5 = -two_thirds*x3 + 0.25*x4 x6 = x3 - 0.375*x4 x6_2 = x6*x6 x7 = x6_2*x6 x8 = d*x0 x9 = x1*(-0.5*x3 + 0.125*x4) x10 = (x8 + x9)*(x8 + x9) x11 = e*x0 x12 = x1*(x1*(-0.0625*x3 + 0.01171875*x4) + 0.25*x8) # 0.01171875 = 3/256 x13 = x6*(x11 - x12) x14 = -.125*x10 + x13*third - x7/108.0 x15 = 2.0*(x14 + 0.0j)**(third) x16 = csqrt(-x15 + x5) x17 = 0.5*x16 x18 = -x17 + x2 x19 = -four_thirds*x3 x20 = 0.5*x4 x21 = x15 + x19 + x20 x22 = 2.0*x8 + 2.0*x9 x23 = x22/x16 x24 = csqrt(x21 + x23)*0.5 x25 = -x11 + x12 - twelfth*x6_2 x27 = (0.0625*x10 - x13*sixth + x7/216.0 + csqrt(0.25*x14*x14 + one_27*x25*x25*x25))**(third) x28 = 2.0*x27 x29 = two_thirds*x25/(x27) x30 = csqrt(x28 - x29 + x5) x31 = 0.5*x30 x32 = x2 - x31 x33 = x19 + x20 - x28 + x29 x34 = x22/x30 x35 = csqrt(x33 + x34)*0.5 x36 = x17 + x2 x37 = csqrt(x21 - x23)*0.5 x38 = x2 + x31 x39 = csqrt(x33 - x34)*0.5 return ((x32 - x35), (x32 + x35), (x38 - x39), (x38 + x39)) def mean(data): # Much faster than the statistics.mean module return sum(data)/len(data) def detect_outlier_normal(data, cutoff=3): std_val = std(data) mean_val = mean(data) low = mean_val - std_val*cutoff high = mean_val + std_val*cutoff outlier_idxs = [] for i, p in enumerate(data): if p < low or p > high: outlier_idxs.append(i) return outlier_idxs def linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None): """Port of numpy's linspace to pure python. Does not support dtype, and returns lists of floats. """ num = int(num) start = start * 1. stop = stop * 1. if num <= 0: return [] if endpoint: if num == 1: return [start] step = (stop-start)/float((num-1)) if num == 1: step = nan y = [start] for _ in range(num-2): y.append(y[-1] + step) y.append(stop) else: step = (stop-start)/float(num) if num == 1: step = nan y = [start] for _ in range(num-1): y.append(y[-1] + step) if retstep: return y, step else: return y def logspace(start, stop, num=50, endpoint=True, base=10.0, dtype=None): y = linspace(start, stop, num=num, endpoint=endpoint) for i in range(len(y)): y[i] = base**y[i] # return [base**yi for yi in y] return y def product(l): # Helper in some functions tot = 1.0 for i in l: tot *= i return tot def cumsum(a): # Does not support multiple dimensions base = a[0] sums = [base] for v in a[1:]: base = base + v sums.append(base) return sums def diff(a, n=1, axis=-1): if n == 0: return a if n < 0: raise ValueError( "order must be non-negative but got %s" %(n)) # nd = 1 # hardcode diffs = [] for i in range(1, len(a)): delta = a[i] - a[i-1] diffs.append(delta) if n > 1: return diff(diffs, n-1) return diffs central_diff_weights_precomputed = { (1, 3): [-0.5, 0.0, 0.5], (1, 5): [0.08333333333333333, -0.6666666666666666, 0.0, 0.6666666666666666, -0.08333333333333333], (1, 7): [-0.016666666666666666, 0.15, -0.75, 0.0, 0.75, -0.15, 0.016666666666666666], (1, 9): [0.0035714285714285713, -0.0380952380952381, 0.2, -0.8, 0.0, 0.8, -0.2, 0.0380952380952381, -0.0035714285714285713], (1, 11): [-0.0007936507936507937, 0.00992063492063492, -0.05952380952380952, 0.23809523809523808, -0.8333333333333334, 0.0, 0.8333333333333334, -0.23809523809523808, 0.05952380952380952, -0.00992063492063492, 0.0007936507936507937], (1, 13): [0.00018037518037518038, -0.0025974025974025974, 0.017857142857142856, -0.07936507936507936, 0.26785714285714285, -0.8571428571428571, 0.0, 0.8571428571428571, -0.26785714285714285, 0.07936507936507936, -0.017857142857142856, 0.0025974025974025974, -0.00018037518037518038], (1, 15): [-4.1625041625041625e-05, 0.0006798756798756799, -0.005303030303030303, 0.026515151515151516, -0.09722222222222222, 0.2916666666666667, -0.875, 0.0, 0.875, -0.2916666666666667, 0.09722222222222222, -0.026515151515151516, 0.005303030303030303, -0.0006798756798756799, 4.1625041625041625e-05], (1, 17): [9.712509712509713e-06, -0.0001776001776001776, 0.001554001554001554, -0.008702408702408702, 0.03535353535353535, -0.11313131313131314, 0.3111111111111111, -0.8888888888888888, 0.0, 0.8888888888888888, -0.3111111111111111, 0.11313131313131314, -0.03535353535353535, 0.008702408702408702, -0.001554001554001554, 0.0001776001776001776, -9.712509712509713e-06], (1, 19): [-2.285296402943462e-06, 4.6277252159605104e-05, -0.00044955044955044955, 0.002797202797202797, -0.012587412587412588, 0.044055944055944055, -0.12727272727272726, 0.32727272727272727, -0.9, 0.0, 0.9, -0.32727272727272727, 0.12727272727272726, -0.044055944055944055, 0.012587412587412588, -0.002797202797202797, 0.00044955044955044955, -4.6277252159605104e-05, 2.285296402943462e-06], (2, 3): [1.0, -2.0, 1.0], (2, 5): [-0.08333333333333333, 1.3333333333333333, -2.5, 1.3333333333333333, -0.08333333333333333], (2, 7): [0.011111111111111112, -0.15, 1.5, -2.7222222222222223, 1.5, -0.15, 0.011111111111111112], (2, 9): [-0.0017857142857142857, 0.025396825396825397, -0.2, 1.6, -2.8472222222222223, 1.6, -0.2, 0.025396825396825397, -0.0017857142857142857], (2, 11): [0.00031746031746031746, -0.00496031746031746, 0.03968253968253968, -0.23809523809523808, 1.6666666666666667, -2.9272222222222224, 1.6666666666666667, -0.23809523809523808, 0.03968253968253968, -0.00496031746031746, 0.00031746031746031746], (2, 13): [-6.012506012506013e-05, 0.001038961038961039, -0.008928571428571428, 0.05291005291005291, -0.26785714285714285, 1.7142857142857142, -2.9827777777777778, 1.7142857142857142, -0.26785714285714285, 0.05291005291005291, -0.008928571428571428, 0.001038961038961039, -6.012506012506013e-05], (2, 15): [1.1892869035726179e-05, -0.00022662522662522663, 0.0021212121212121214, -0.013257575757575758, 0.06481481481481481, -0.2916666666666667, 1.75, -3.02359410430839, 1.75, -0.2916666666666667, 0.06481481481481481, -0.013257575757575758, 0.0021212121212121214, -0.00022662522662522663, 1.1892869035726179e-05], (2, 17): [-2.428127428127428e-06, 5.074290788576503e-05, -0.000518000518000518, 0.003480963480963481, -0.017676767676767676, 0.07542087542087542, -0.3111111111111111, 1.7777777777777777, -3.05484410430839, 1.7777777777777777, -0.3111111111111111, 0.07542087542087542, -0.017676767676767676, 0.003480963480963481, -0.000518000518000518, 5.074290788576503e-05, -2.428127428127428e-06], (2, 19): [5.078436450985471e-07, -1.1569313039901276e-05, 0.00012844298558584272, -0.0009324009324009324, 0.005034965034965035, -0.022027972027972027, 0.08484848484848485, -0.32727272727272727, 1.8, -3.0795354623330815, 1.8, -0.32727272727272727, 0.08484848484848485, -0.022027972027972027, 0.005034965034965035, -0.0009324009324009324, 0.00012844298558584272, -1.1569313039901276e-05, 5.078436450985471e-07], (3, 5): [-0.5, 1.0, 0.0, -1.0, 0.5], (3, 7): [0.125, -1.0, 1.625, 0.0, -1.625, 1.0, -0.125], (3, 9): [-0.029166666666666667, 0.30000000000000004, -1.4083333333333332, 2.033333333333333, 0.0, -2.033333333333333, 1.4083333333333332, -0.30000000000000004, 0.029166666666666667], # (3, 11): [0.006779100529100529, -0.08339947089947089, 0.48303571428571435, -1.7337301587301588, 2.3180555555555555, # 0.0, -2.3180555555555555, 1.7337301587301588, -0.48303571428571435, 0.08339947089947089, # -0.006779100529100529], # (3, 13): [-0.0015839947089947089, 0.02261904761904762, -0.1530952380952381, 0.6572751322751322, -1.9950892857142857, # 2.527142857142857, 0.0, -2.527142857142857, 1.9950892857142857, -0.6572751322751322, 0.1530952380952381, # -0.02261904761904762, 0.0015839947089947089], # (3, 15): [0.0003724747474747475, -0.006053691678691679, 0.04682990620490621, -0.2305699855699856, 0.8170667989417989, # -2.2081448412698412, 2.6869345238095237, 0.0, -2.6869345238095237, 2.2081448412698412, -0.8170667989417989, # 0.2305699855699856, -0.04682990620490621, 0.006053691678691679, -0.0003724747474747475], # (3, 17): [-8.810006131434702e-05, 0.0016058756058756059, -0.013982697196982911, 0.07766492766492766, # -0.31074104136604136, 0.9613746993746994, -2.384521164021164, 2.81291761148904, 0.0, -2.81291761148904, # 2.384521164021164, -0.9613746993746994, 0.31074104136604136, -0.07766492766492766, 0.013982697196982911, # -0.0016058756058756059, 8.810006131434702e-05], # (3, 19): [2.0943672729387014e-05, -0.00042319882498453924, 0.00409817266067266, -0.025376055161769447, # 0.11326917130488559, -0.3904945471195471, 1.0909741462241462, -2.532634817563389, 2.9147457482993198, 0.0, # -2.9147457482993198, 2.532634817563389, -1.0909741462241462, 0.3904945471195471, -0.11326917130488559, # 0.025376055161769447, -0.00409817266067266, 0.00042319882498453924, -2.0943672729387014e-05], # (4, 5): [1.0, -4.0, 6.0, -4.0, 1.0], # (4, 7): [-0.16666666666666666, 2.0, -6.5, 9.333333333333334, -6.5, 2.0, -0.16666666666666666], # (4, 9): [0.029166666666666667, -0.4, 2.8166666666666664, -8.133333333333333, 11.375, -8.133333333333333, # 2.8166666666666664, -0.4, 0.029166666666666667], # (4, 11): [-0.005423280423280424, 0.08339947089947089, -0.644047619047619, 3.4674603174603176, -9.272222222222222, # 12.741666666666665, -9.272222222222222, 3.4674603174603176, -0.644047619047619, 0.08339947089947089, # -0.005423280423280424], # (4, 13): [0.0010559964726631393, -0.018095238095238095, 0.1530952380952381, -0.8763668430335096, 3.9901785714285714, # -10.108571428571429, 13.717407407407407, -10.108571428571429, 3.9901785714285714, -0.8763668430335096, # 0.1530952380952381, -0.018095238095238095, 0.0010559964726631393], # (5, 7): [-0.5, 2.0, -2.5, 0.0, 2.5, -2.0, 0.5], # (5, 9): [0.16666666666666669, -1.5, 4.333333333333333, -4.833333333333334, 0.0, 4.833333333333334, -4.333333333333333, # 1.5, -0.16666666666666669], # (5, 11): [-0.04513888888888889, 0.5277777777777778, -2.71875, 6.5, -6.729166666666667, 0.0, 6.729166666666667, -6.5, # 2.71875, -0.5277777777777778, 0.04513888888888889], # (5, 13): [0.011491402116402117, -0.16005291005291006, 1.033399470899471, -3.9828042328042326, 8.39608134920635, # -8.246031746031747, 0.0, 8.246031746031747, -8.39608134920635, 3.9828042328042326, -1.033399470899471, # 0.16005291005291006, -0.011491402116402117] } def deflate_cubic_real_roots(b, c, d, x0): F = b + x0 G = -d/x0 D = F*F - 4.0*G # if D < 0.0: # D = (-D)**0.5 # x1 = (-F + D*1.0j)*0.5 # x2 = (-F - D*1.0j)*0.5 # else: if D < 0.0: return (0.0, 0.0) D = sqrt(D) x1 = 0.5*(D - F)#(D - c)*0.5 x2 = 0.5*(-F - D) #-(c + D)*0.5 return x1, x2 def central_diff_weights(points, divisions=1): # Check the cache if (divisions, points) in central_diff_weights_precomputed: return central_diff_weights_precomputed[(divisions, points)] if points < divisions + 1: raise ValueError("Points < divisions + 1, cannot compute") if points % 2 == 0: raise ValueError("Odd number of points required") ho = points >> 1 x = [[xi] for xi in range(-ho, ho+1)] X = [] for xi in x: line = [1.0] + [xi[0]**k for k in range(1, points)] X.append(line) factor = product(range(1, divisions + 1)) # from scipy.linalg import inv from sympy import Matrix # The above coefficients were generated from a routine which used Fractions # Additional coefficients cannot reliable be computed with numpy or floating # point numbers - the error is too great # sympy must be used for reliability inverted = [[float(j) for j in i] for i in Matrix(X).inv().tolist()] w = [i*factor for i in inverted[divisions]] # w = [i*factor for i in (inv(X)[divisions]).tolist()] central_diff_weights_precomputed[(divisions, points)] = w return w def derivative(func, x0, dx=1.0, n=1, args=(), order=3, scalar=True, lower_limit=None, upper_limit=None, kwargs={}): """Reimplementation of SciPy's derivative function, with more cached coefficients and without using numpy. If new coefficients not cached are needed, they are only calculated once and are remembered. Support for vector value functions has also been added. """ if order < n + 1: raise ValueError if order % 2 == 0: raise ValueError weights = central_diff_weights(order, n) ho = order >> 1 denominator = 1.0/product([dx]*n) if scalar: max_x = x0 + (order - 1 - ho)*dx if upper_limit is not None and max_x > upper_limit: x0 -= (max_x - x0) min_x = x0 + -ho*dx if lower_limit is not None and min_x < lower_limit: x0 += (x0 - min_x) tot = 0.0 for k in range(order): if weights[k] != 0.0: tot += weights[k]*func(x0 + (k - ho)*dx, *args, **kwargs) return tot*denominator else: numerators = None for k in range(order): f = func(x0 + (k - ho)*dx, *args, **kwargs) if numerators is None: N = len(f) numerators = [0.0]*N for i in range(N): numerators[i] += weights[k]*f[i] return [num*denominator for num in numerators] kronrod_weights = { # 2: [0.1979797979797974, 0.4909090909090922, 0.6222222222222221, 0.4909090909090904, 0.1979797979797974], # 3: [0.10465622602646653, 0.2684880898683364, 0.4013974147759613, 0.45091653865847436, 0.40139741477596186, 0.26848808986833306, 0.10465622602646701], # 4: [0.06297737366547282, 0.17005360533572325, 0.26679834045228396, 0.3269491896014517, 0.3464429818901376, 0.32694918960145064, 0.2667983404522837, # 0.17005360533572333, 0.06297737366547272 # ], # 5: [0.042582036751078814, 0.11523331662247298, 0.1868007965564952, 0.2410403392286488, 0.27284980191255903, 0.28298741785749215, 0.2728498019125575, # 0.24104033922864848, 0.1868007965564929, 0.11523331662247287, 0.04258203675108158 # ], # 6: [0.03039615411981852, 0.08369444044690531, 0.1373206046344473, 0.1810719943231391, 0.21320965227196226, 0.23377086411699666, 0.2410725801734652, # 0.23377086411699363, 0.21320965227196081, 0.1810719943231382, 0.13732060463444687, 0.08369444044690623, 0.030396154119819826 # ], # 7: [0.02293532201053038, 0.0630920926299766, 0.10479001032225017, 0.14065325971552478, 0.16900472663927035, 0.19035057806478545, 0.2044329400753001, # 0.20948214108472712, 0.2044329400752992, 0.1903505780647853, 0.16900472663926686, 0.14065325971552592, 0.10479001032225005, 0.06309209262997834, # 0.022935322010529363 # ], # 8: [0.017822383320711625, 0.04943939500213785, 0.08248229893135677, 0.11164637082684088, 0.13626310925517557, 0.15665260616818655, 0.17207060855521186, # 0.18140002506803385, 0.18444640574468968, 0.1814000250680349, 0.1720706085552107, 0.1566526061681889, 0.13626310925517285, 0.11164637082683933, # 0.08248229893135825, 0.04943939500213947, 0.017822383320710476 # ], # 9: [0.014304775643840032, 0.03963189516026222, 0.0665181559402729, 0.09079068168872734, 0.11178913468441762, 0.13000140685534053, 0.14523958838436735, # 0.15641352778848416, 0.16286282744011463, 0.16489601282834765, 0.16286282744011538, 0.15641352778848497, 0.14523958838436518, # 0.13000140685534053, 0.11178913468441844, 0.09079068168872709, 0.0665181559402743, 0.03963189516026152, 0.01430477564383906 # ], 10: [0.011694638867371172, 0.03255816230796458, 0.05475589657435185, 0.07503967481091954, 0.09312545458369915, 0.10938715880229993, 0.12349197626206619, 0.1347092173114735, 0.1427759385770589, 0.14773910490133732, 0.1494455540029151, 0.14773910490133846, 0.14277593857705978, 0.13470921731147467, 0.1234919762620664, 0.10938715880229763, 0.09312545458369788, 0.0750396748109198, 0.05475589657435227, 0.03255816230796462, 0.01169463886737192 ], # 11: [0.009765441045959541, 0.02715655468210335, 0.045829378564428196, 0.06309742475037379, 0.07866457193222803, 0.092953098596902, 0.1058720744813897, # 0.11673950246104702, 0.12515879910031777, 0.13128068422980624, 0.13519357279988428, 0.1365777947111174, 0.13519357279988467, 0.1312806842298052, # 0.12515879910031882, 0.11673950246104742, 0.10587207448139022, 0.09295309859690085, 0.07866457193222773, 0.06309742475037532, # 0.04582937856442653, 0.027156554682104143, 0.009765441045960747 # ], # 12: [0.008257711433166826, 0.023036084038981483, 0.03891523046929862, 0.053697017607756393, 0.06725090705084145, 0.07992027533360162, # 0.09154946829504902, 0.1016497322790617, 0.11002260497764366, 0.11671205350175794, 0.12162630352394828, 0.12458416453615645, # 0.12555689390547403, 0.12458416453615662, 0.12162630352394885, 0.11671205350175637, 0.11002260497764366, 0.10164973227906021, # 0.09154946829504902, 0.07992027533360205, 0.06725090705084015, 0.05369701760775601, 0.038915230469299136, 0.023036084038982187, # 0.008257711433168356 # ], # 13: [0.007087846351247695, 0.019753746382707126, 0.03344358998955114, 0.046279017973829016, 0.05811521042311424, 0.06930363324778273, # 0.0798059621694777, 0.08916844187754189, 0.09714173487607722, 0.10383060116904075, 0.10926635109528536, 0.11321025917152877, 0.1154887990912863, # 0.11620961236306047, 0.11548879909128668, 0.11321025917152944, 0.10926635109528575, 0.10383060116903994, 0.09714173487607768, # 0.08916844187754075, 0.0798059621694761, 0.06930363324778134, 0.05811521042311445, 0.0462790179738303, 0.033443589989552346, # 0.019753746382705984, 0.007087846351248617 # ], # 14: [0.006139558686377161, 0.01714845890993743, 0.02904870126150814, 0.04025059487268863, 0.050691543260464045, 0.06066712586674275, # 0.07010297900274666, 0.0786557972496211, 0.08618376286946026, 0.09273683001785471, 0.09826492647210357, 0.1026166273213988, 0.10573163984176341, # 0.10762642111411824, 0.10827006650642954, 0.10762642111411819, 0.10573163984176337, 0.10261662732139956, 0.09826492647210401, # 0.09273683001785424, 0.08618376286945752, 0.07865579724962145, 0.07010297900274708, 0.060667125866742444, 0.050691543260465384, # 0.040250594872688804, 0.029048701261508613, 0.01714845890993556, 0.00613955868637814 # ], # 15: [0.005377479872922721, 0.015007947329316597, 0.02546084732671451, 0.03534636079137684, 0.044589751324763977, 0.053481524690928775, # 0.06200956780067099, 0.06985412131872938, 0.07684968075772279, 0.08308050282313152, 0.08856444305621097, 0.09312659817082411, # 0.09664272698362378, 0.09917359872179198, 0.10076984552387584, 0.10133000701479176, 0.10076984552387498, 0.09917359872179111, # 0.09664272698362311, 0.09312659817082504, 0.08856444305621132, 0.08308050282313374, 0.07684968075772115, 0.06985412131872824, # 0.06200956780067089, 0.05348152469092814, 0.04458975132476507, 0.03534636079137597, 0.0254608473267153, 0.01500794732931606, # 0.005377479872923303 # ], # 16: [0.0047427770492463476, 0.01325793068809046, 0.022498859440048875, 0.031260543647380616, 0.03951295120242179, 0.04750621597640688, # 0.055205633095423194, 0.062358806011834494, 0.06886299519153054, 0.07476982388560004, 0.08005394126371923, 0.08459580379259089, # 0.08833750257911316, 0.0912920328281922, 0.09343867406092181, 0.09472840124723077, 0.09515421608049866, 0.09472840124722949, # 0.09343867406092161, 0.09129203282819215, 0.08833750257911213, 0.0845958037925905, 0.08005394126371795, 0.07476982388559944, # 0.06886299519153126, 0.062358806011835174, 0.05520563309542224, 0.047506215976407244, 0.03951295120242178, 0.031260543647380366, # 0.02249885944004935, 0.013257930688091162, 0.0047427770492472505 # ], # 17: [0.00421897579377578, 0.011785837562288765, 0.020022233953294232, 0.027856722457863144, 0.035249746751878815, 0.04244263020500057, # 0.04943614182396047, 0.055994044530093004, 0.06200091526823072, 0.06752801671813287, 0.07258989011419156, 0.07705622304620212, # 0.08083667844081736, 0.08397257199123528, 0.08649053220565191, 0.08830878229760371, 0.08936184586778975, 0.08969642194398147, # 0.08936184586778813, 0.08830878229760494, 0.08649053220565157, 0.0839725719912349, 0.08083667844081745, 0.07705622304620285, # 0.07258989011419015, 0.06752801671813129, 0.06200091526822982, 0.05599404453009317, 0.04943614182395916, 0.042442630205000643, # 0.03524974675187985, 0.027856722457863275, 0.020022233953294787, 0.011785837562289191, 0.004218975793776932 # ], # 18: [0.00377351012843988, 0.010554430567545547, 0.01793337620570976, 0.024964402753740674, 0.03163401984884463, 0.0381537583251753, # 0.044509195165090054, 0.0505075715021042, 0.056072390382993734, 0.061253565791358926, 0.06603995819281894, 0.07033745002422243, # 0.07409702738131525, 0.0773320701646388, 0.08003001949509578, 0.08214399978333053, 0.08365485143716135, 0.08456933354407732, # 0.08487813861267707, 0.08456933354407585, 0.08365485143716228, 0.08214399978332948, 0.08003001949509637, 0.07733207016463836, # 0.07409702738131455, 0.07033745002422402, 0.06603995819281755, 0.06125356579135898, 0.05607239038299394, 0.05050757150210246, # 0.044509195165090026, 0.03815375832517691, 0.031634019848844154, 0.024964402753740036, 0.017933376205711227, 0.01055443056754483, # 0.0037735101284401234 # ], # 19: [0.0033981531196335965, 0.009499205461711157, 0.016153414369089493, 0.02250869575220442, 0.028544238117114772, 0.03446235286288065, # 0.04027002324951411, 0.04578597308792263, 0.05092622550624418, 0.05575220103348164, 0.060277411503209075, 0.0644023522619292, # 0.06805978049813398, 0.07128142476493002, 0.07408407453373855, 0.07640286193981659, 0.07818691068574178, 0.07946568358535473, # 0.08026621602085142, 0.08054560329299826, 0.08026621602085034, 0.07946568358535418, 0.07818691068574216, 0.07640286193981571, # 0.07408407453373904, 0.07128142476492985, 0.06805978049813312, 0.06440235226192832, 0.06027741150320817, 0.055752201033481275, # 0.05092622550624404, 0.04578597308792251, 0.04027002324951481, 0.03446235286288103, 0.028544238117114873, 0.02250869575220419, # 0.016153414369091356, 0.009499205461710144, 0.0033981531196347167 # ], # 87: [0.00016881480210456692, 0.00047314868570756235, 0.0008076859860306628, 0.0011322615841296547, 0.00144806597820222, 0.0017668191481724435, 0.0020903160499537304, 0.002411576726915393, 0.0027285063230227296, 0.0030454007869937876, 0.0033639128646212944, 0.0036808253607571195, 0.003994559817314871, 0.004307345076427869, 0.004620335406184352, 0.004931600306915534, 0.00523996592505234, 0.005546814695915935, 0.00585298027614558, 0.006157129826902876, 0.006458347449208747, 0.0067575841722384, 0.007055469839437327, 0.007351002065619594, 0.007643435225722091, 0.007933469441304792, 0.008221599308725454, 0.008507026852701362, 0.008789124673244655, 0.009068433903060025, 0.00934535574073612, 0.00961922899522448, 0.009889512165959614, 0.010156639610742505, 0.01042094604150296, 0.010681867318519509, 0.010938926800718108, 0.011192484212786687, 0.011442825936038695, 0.011689459907180238, 0.01193196007256122, 0.012170632572570447, 0.01240572822845446, 0.012636810511622156, 0.012863493923529042, 0.013086045502712524, 0.013304689821902624, 0.013519034459386238, 0.013728727196381123, 0.013934006347263819, 0.014135077241799326, 0.0143315833864912, 0.01452320041557479, 0.01471014561481331, 0.014892610489607272, 0.015070268437801156, 0.01524281878982064, 0.015410463680651272, 0.01557338508816692, 0.015731281717590702, 0.01588387332676284, 0.016031351508057137, 0.01617389219804666, 0.016311215832305204, 0.016443059955062258, 0.016569609315104587, 0.016691036698090543, 0.016807081400707274, 0.01691749655723537, 0.017022463108090843, 0.017122153135412682, 0.017216322428248873, 0.017304737826468557, 0.017387579005841453, 0.0174650194618558, 0.017536829459282623, 0.017602787871331006, 0.01766307528646667, 0.017717868485658792, 0.017766950435146724, 0.017810110503721263, 0.01784753209761472, 0.017879396979083733, 0.017905499199739466, 0.017925637157192337, 0.017939998782076135, 0.017948772394930045, 0.017951761607250333, 0.01794877239493056, 0.017939998782076676, 0.01792563715719179, 0.017905499199739282, 0.017879396979084167, 0.017847532097614346, 0.01781011050372197, 0.017766950435146787, 0.017717868485658865, 0.01766307528646623, 0.017602787871330267, 0.017536829459281828, 0.01746501946185603, 0.01738757900584135, 0.017304737826468315, 0.017216322428249966, 0.01712215313541374, 0.017022463108090982, 0.016917496557235175, 0.016807081400708086, 0.016691036698090224, 0.016569609315104577, 0.016443059955061293, 0.016311215832305943, 0.016173892198046793, 0.01603135150805684, 0.015883873326762922, 0.0157312817175899, 0.015573385088166592, 0.015410463680651668, 0.015242818789820901, 0.015070268437801513, 0.01489261048960673, 0.014710145614813493, 0.014523200415575395, 0.014331583386491533, 0.01413507724179865, 0.013934006347263444, 0.013728727196380418, 0.013519034459385928, 0.01330468982190219, 0.013086045502712456, 0.01286349392352816, 0.012636810511621802, 0.012405728228453924, 0.012170632572569789, 0.011931960072561447, 0.011689459907180488, 0.011442825936038951, 0.011192484212786695, 0.010938926800718342, 0.010681867318518458, 0.010420946041502708, 0.01015663961074195, 0.009889512165958998, 0.009619228995224303, 0.009345355740736385, 0.009068433903060022, 0.00878912467324535, 0.008507026852701478, 0.008221599308725935, 0.007933469441304955, 0.00764343522572274, 0.007351002065619289, 0.007055469839437192, 0.006757584172238039, 0.006458347449209268, 0.0061571298269029575, 0.005852980276145424, 0.00554681469591638, 0.005239965925052114, 0.004931600306916382, 0.00462033540618409, 0.004307345076429006, 0.003994559817315303, 0.0036808253607556987, 0.00336391286462138, 0.0030454007869938063, 0.0027285063230224034, 0.0024115767269154683, 0.0020903160499540895, 0.0017668191481723982, 0.0014480659782023144, 0.0011322615841305992, 0.000807685986030332, 0.0004731486857077167, 0.00016881480210494433], # 300: [1.431338551855931e-05, 4.012227180120215e-05, 6.850298129947514e-05, 9.605899747347381e-05, 0.00012290072040166636, 0.0001500289025800392, 0.00017760205103018156, 0.0002050376837370814, 0.00023216802273282316, 0.00025936376117528543, 0.000286770923337297, 0.0003141263938546069, 0.0003413064333028032, 0.0003685059563224142, 0.0003958282766766556, 0.00042311960183710317, 0.00045029066797970557, 0.00047746412489335334, 0.0005047156371897132, 0.0005319422306222964, 0.0005590766158027022, 0.0005862043554606536, 0.0006133833418229676, 0.0006405386949363323, 0.0006676176085674061, 0.0006946838416537453, 0.0007217832962185991, 0.0007488584417973781, 0.0007758664924472269, 0.0008028571692832445, 0.0008298678975835217, 0.0008568527124189767, 0.0008837760635199613, 0.0009106780294555469, 0.0009375898032692981, 0.0009644735729342993, 0.000991299201423038, 0.0010180998154806211, 0.001044901876521459, 0.0010716735696885908, 0.0010983889275928184, 0.0011250758736232511, 0.0011517571804946123, 0.00117840559504653, 0.0012049984403109213, 0.0012315596269869425, 0.0012581089880280057, 0.0012846228351818792, 0.0013110811414252545, 0.00133750464674385, 0.001363910797264291, 0.0013902787534588901, 0.0014165906596462637, 0.0014428646992844724, 0.0014691163496578206, 0.0014953270906152946, 0.001521480872306304, 0.0015475937814626148, 0.00157367964899441, 0.0015997218734369169, 0.0016257059263124127, 0.001651646149529894, 0.001677554980842586, 0.001703417427928488, 0.0017292202586412138, 0.0017549763445420545, 0.0017806969321644153, 0.0018063683949693567, 0.0018319786165106394, 0.001857539215647843, 0.0018830604109505785, 0.0019085297473710398, 0.0019339360773297323, 0.001959289942067989, 0.0019846006657902662, 0.002009856807725714, 0.002035048068429775, 0.0020601840541859453, 0.0020852733053521944, 0.00211030526669342, 0.002135270386619155, 0.002160177454021052, 0.0021850343177347107, 0.002209831201507028, 0.0022345592175448837, 0.0022592264352258922, 0.002283840089667751, 0.002308391094568184, 0.0023328711548821417, 0.0023572877027127443, 0.002381647425556331, 0.00240594185202409, 0.002430163219323544, 0.002454318391951272, 0.002478413566344175, 0.0025024408222929406, 0.0025263928773852835, 0.00255027608798504, 0.0025740962081959693, 0.0025978458144661396, 0.0026215180600127255, 0.0026451188441838666, 0.0026686535209823115, 0.0026921151165751785, 0.0027154971809750543, 0.0027388052007325915, 0.0027620441665595044, 0.0027852075136901313, 0.002808289155056237, 0.002831294202880455, 0.0028542273168385085, 0.002877082305828928, 0.002899853416015445, 0.0029225454189358694, 0.002945162671626956, 0.002967699325674426, 0.0029901499343276, 0.0030125189580153013, 0.003034810476250164, 0.0030570189560660717, 0.0030791392346825115, 0.00310117548753865, 0.0031231315389228563, 0.0031450021472680554, 0.0031667824132465515, 0.003188476250471062, 0.003210087247886691, 0.0032316104340022714, 0.0032530411546735326, 0.0032743830823033305, 0.003295639588282603, 0.003316805952230262, 0.003337877748850066, 0.0033588584277646333, 0.003379751158776646, 0.003400551455680898, 0.0034212551073882925, 0.0034418653572642383, 0.0034623851879040167, 0.0034828103321097002, 0.0035031367798385575, 0.0035233675830591412, 0.0035435055501479742, 0.0035635466192892535, 0.0035834869696225067, 0.0036033294751299954, 0.003623076781728268, 0.0036427250207152315, 0.003662270549687044, 0.0036817160767749556, 0.0037010640961099225, 0.0037203109210253195, 0.003739453077859395, 0.0037584931198988143, 0.003777433399208016, 0.003796270401119918, 0.003815000811903878, 0.003833627040006793, 0.003852151304287865, 0.0038705702529859497, 0.003888880724274518, 0.003907084990886804, 0.003925185146571497, 0.003943177994202738, 0.003961060516554395, 0.00397883485897057, 0.00399650299750876, 0.004014061882142001, 0.004031508633574408, 0.0040488452773837025, 0.004066073678737227, 0.004083190927833456, 0.0041001942772090185, 0.004117085639660952, 0.004133866775714363, 0.004150534909511804, 0.004167087419841768, 0.00418352611313258, 0.004199852651012914, 0.004216064385826003, 0.004232158817490263, 0.0042481376519647165, 0.004264002457277361, 0.004279750708703243, 0.004295380022593513, 0.004310892009868351, 0.004326288149837712, 0.004341566035873309, 0.004356723396447817, 0.004371761752443555, 0.004386682498963286, 0.004401483343036293, 0.0044161621212866105, 0.004430720269180384, 0.004445159101775619, 0.004459476435677051, 0.004473670212010881, 0.004487741785091177, 0.0045016923937820415, 0.004515519960510983, 0.0045292225275432845, 0.0045428013719821725, 0.004556257660061908, 0.004569589416572178, 0.004582794781821561, 0.004595874959351039, 0.004608831046059929, 0.004621661165914976, 0.004634363554417776, 0.00464693934491508, 0.00465938956802471, 0.004671712443956493, 0.004683906300772354, 0.0046959722047512755, 0.004707911123050588, 0.0047197213694184096, 0.004731401362055238, 0.004742952103059206, 0.004754374498742801, 0.004765666953897418, 0.004776827974631882, 0.004787858501534513, 0.004798759382490675, 0.004809529111038303, 0.004820166279139213, 0.004830671768345388, 0.004841046370347547, 0.004851288665314363, 0.004861397329170941, 0.004871373186717853, 0.004881216975513267, 0.0048909273604094364, 0.004900503099558432, 0.004909944963118174, 0.0049192536364175265, 0.004928427867200543, 0.004937466494252367, 0.004946370235033431, 0.0049551397243954, 0.004963773791329307, 0.004972271353793974, 0.004980633078343443, 0.004988859550960298, 0.004996949680372135, 0.005004902462380824, 0.005012718514281037, 0.0050203983746564115, 0.005027941030594458, 0.00503534555452279, 0.005042612515983653, 0.005049742407509773, 0.005056734293288795, 0.0050635873212702565, 0.0050703020146247325, 0.005076878821053563, 0.0050833168806995, 0.005089615416040483, 0.005095774905126578, 0.005101795751935285, 0.0051076771715272175, 0.0051134184600114575, 0.005119020051454203, 0.0051244823071031915, 0.005129804516003444, 0.005134986047095221, 0.005140027291483333, 0.005144928568571508, 0.005149689240552303, 0.0051543087484908, 0.005158787441443115, 0.005163125597752833, 0.005167322652015288, 0.0051713781168029205, 0.005175292299931676, 0.005179065439366613, 0.0051826970414525384, 0.005186186689737414, 0.005189534651502356, 0.005192741124918436, 0.005195805687514126, 0.005198727993361184, 0.005201508269816953, 0.0052041466757448375, 0.005206642859375407, 0.005208996544935003, 0.00521120792036838, 0.00521327710562835, 0.005215203819244274, 0.005216987855309183, 0.005218629362770544, 0.005220128422976571, 0.005221484824432338, 0.005222698430884936, 0.005223769352611614, 0.005224697632566832, 0.005225483128989441, 0.005226125775143653, 0.005226625642871415, 0.005226982736856913, 0.005227196984904545, 0.005227268389736952, 0.005227196984904609, 0.005226982736857298, 0.005226625642871094, 0.005226125775143343, 0.005225483128989314, 0.005224697632566667, 0.005223769352611394, 0.005222698430885047, 0.005221484824432276, 0.005220128422976045, 0.005218629362770703, 0.005216987855309369, 0.005215203819244113, 0.005213277105628448, 0.005211207920368179, 0.005208996544935323, 0.005206642859375223, 0.005204146675744738, 0.005201508269816841, 0.005198727993361313, 0.005195805687514172, 0.0051927411249182535, 0.00518953465150263, 0.005186186689737238, 0.0051826970414525254, 0.0051790654393667, 0.005175292299931799, 0.005171378116803026, 0.005167322652015363, 0.005163125597752643, 0.005158787441443411, 0.00515430874849076, 0.005149689240552316, 0.005144928568571719, 0.005140027291483478, 0.00513498604709535, 0.005129804516003328, 0.0051244823071030276, 0.005119020051454297, 0.005113418460011166, 0.005107677171526961, 0.005101795751935227, 0.005095774905126261, 0.005089615416040522, 0.005083316880699735, 0.005076878821053743, 0.005070302014624845, 0.0050635873212700805, 0.0050567342932884085, 0.005049742407509847, 0.00504261251598381, 0.005035345554522823, 0.005027941030594158, 0.005020398374656165, 0.005012718514281176, 0.005004902462380897, 0.00499694968037226, 0.0049888595509603095, 0.004980633078343566, 0.004972271353793644, 0.004963773791329042, 0.004955139724395721, 0.004946370235034016, 0.004937466494252536, 0.004928427867200534, 0.004919253636417707, 0.004909944963118104, 0.004900503099558809, 0.0048909273604097105, 0.0048812169755131024, 0.004871373186717716, 0.004861397329170951, 0.004851288665314311, 0.004841046370347232, 0.004830671768345188, 0.004820166279138959, 0.004809529111038251, 0.004798759382490338, 0.0047878585015345716, 0.004776827974631735, 0.004765666953897307, 0.0047543744987427914, 0.004742952103059202, 0.0047314013620551616, 0.004719721369418516, 0.004707911123050433, 0.004695972204750941, 0.0046839063007723, 0.004671712443956289, 0.004659389568024603, 0.004646939344914928, 0.004634363554417283, 0.00462166116591521, 0.004608831046059741, 0.004595874959351329, 0.004582794781821686, 0.004569589416571941, 0.004556257660061593, 0.004542801371981853, 0.0045292225275430625, 0.0045155199605110725, 0.004501692393782684, 0.004487741785091521, 0.0044736702120110345, 0.0044594764356769125, 0.004445159101775285, 0.0044307202691803455, 0.004416162121286692, 0.004401483343036429, 0.004386682498963625, 0.004371761752443638, 0.004356723396447825, 0.004341566035873333, 0.004326288149837637, 0.004310892009868086, 0.00429538002259381, 0.0042797507087033665, 0.004264002457277777, 0.004248137651964907, 0.004232158817490341, 0.004216064385826206, 0.004199852651012641, 0.004183526113132338, 0.004167087419841528, 0.004150534909512119, 0.004133866775714176, 0.004117085639661458, 0.0041001942772092145, 0.00408319092783341, 0.004066073678737072, 0.004048845277383841, 0.004031508633574328, 0.004014061882142042, 0.003996502997508904, 0.003978834858970341, 0.00396106051655424, 0.003943177994202945, 0.003925185146572065, 0.003907084990886625, 0.0038888807242744516, 0.003870570252985675, 0.0038521513042880833, 0.003833627040007188, 0.0038150008119035845, 0.0037962704011200703, 0.003777433399207321, 0.003758493119898556, 0.003739453077858988, 0.0037203109210250346, 0.0037010640961101984, 0.0036817160767748554, 0.0036622705496868126, 0.00364272502071535, 0.0036230767817284986, 0.003603329475130338, 0.0035834869696225024, 0.0035635466192891576, 0.00354350555014782, 0.0035233675830593134, 0.0035031367798384993, 0.003482810332109164, 0.003462385187904296, 0.003441865357264365, 0.0034212551073889708, 0.003400551455680581, 0.0033797511587767763, 0.003358858427764282, 0.003337877748850245, 0.0033168059522300543, 0.00329563958828269, 0.0032743830823032723, 0.0032530411546732876, 0.003231610434001921, 0.0032100872478863954, 0.003188476250471022, 0.0031667824132466152, 0.0031450021472676755, 0.003123131538923296, 0.003101175487538483, 0.003079139234681824, 0.0030570189560658587, 0.0030348104762501467, 0.003012518958015103, 0.0029901499343269566, 0.0029676993256746486, 0.0029451626716272246, 0.0029225454189359683, 0.002899853416015462, 0.0028770823058289967, 0.0028542273168381985, 0.0028312942028804098, 0.002808289155056215, 0.00278520751368993, 0.0027620441665596666, 0.002738805200732458, 0.002715497180975006, 0.0026921151165756846, 0.0026686535209825175, 0.0026451188441835257, 0.0026215180600122068, 0.002597845814466621, 0.0025740962081962533, 0.0025502760879849754, 0.00252639287738533, 0.002502440822293173, 0.0024784135663443014, 0.002454318391950843, 0.0024301632193235606, 0.0024059418520241804, 0.0023816474255563412, 0.0023572877027127643, 0.002332871154882404, 0.0023083910945681076, 0.002283840089667744, 0.0022592264352261303, 0.0022345592175454193, 0.002209831201507626, 0.0021850343177344657, 0.0021601774540208397, 0.0021352703866189507, 0.0021103052666933977, 0.0020852733053521146, 0.002060184054186014, 0.002035048068429977, 0.002009856807725957, 0.0019846006657902758, 0.00195928994206817, 0.0019339360773296312, 0.0019085297473711007, 0.0018830604109507608, 0.0018575392156482725, 0.0018319786165107877, 0.0018063683949691585, 0.00178069693216468, 0.0017549763445423654, 0.0017292202586409347, 0.0017034174279280823, 0.0016775549808421297, 0.001651646149530077, 0.00162570592631277, 0.0015997218734367048, 0.001573679648994387, 0.0015475937814620998, 0.0015214808723062155, 0.0014953270906152233, 0.0014691163496581476, 0.0014428646992844813, 0.0014165906596466105, 0.0013902787534589855, 0.0013639107972643685, 0.0013375046467437846, 0.0013110811414257816, 0.0012846228351825408, 0.0012581089880279953, 0.0012315596269869729, 0.001204998440311574, 0.001178405595046257, 0.0011517571804948782, 0.0011250758736229627, 0.001098388927592197, 0.001071673569688066, 0.0010449018765211608, 0.0010180998154806183, 0.0009912992014234517, 0.0009644735729341865, 0.0009375898032692254, 0.000910678029455875, 0.0008837760635201092, 0.0008568527124191105, 0.0008298678975834106, 0.0008028571692830543, 0.0007758664924465403, 0.0007488584417971681, 0.000721783296218569, 0.0006946838416533995, 0.0006676176085676541, 0.000640538694936538, 0.0006133833418229547, 0.0005862043554614876, 0.000559076615802472, 0.0005319422306224783, 0.0005047156371895406, 0.0004774641248931814, 0.0004502906679796702, 0.00042311960183722124, 0.00039582827667671103, 0.00036850595632271756, 0.00034130643330288764, 0.0003141263938549482, 0.0002867709233374423, 0.0002593637611755845, 0.0002321680227330003, 0.00020503768373677231, 0.00017760205102980336, 0.00015002890258022111, 0.00012290072040175952, 9.605899747384604e-05, 6.850298129895686e-05, 4.012227180096977e-05, 1.4313385518582305e-05], } kronrod_points = { # 2: [-0.9258200997725493, -0.5773502691896243, 4.440892098500626e-16, 0.5773502691896262, 0.9258200997725514], # 3: [-0.9604912687080189, -0.7745966692414805, -0.4342437493468012, 5.551115123125783e-16, 0.43424374934680354, 0.7745966692414835, 0.9604912687080203], # 4: [-0.9765602507375716, -0.8611363115940519, -0.6402862174963088, -0.3399810435848555, -3.3306690738754696e-16, 0.3399810435848566, 0.6402862174963104, # 0.8611363115940526, 0.9765602507375731 # ], # 5: [-0.9840853600948419, -0.9061798459386637, -0.7541667265708493, -0.5384693101056838, -0.2796304131617827, -5.551115123125783e-16, 0.2796304131617834, # 0.5384693101056831, 0.7541667265708492, 0.9061798459386639, 0.9840853600948425 # ], # 6: [-0.9887032026126787, -0.9324695142031516, -0.821373340865027, -0.6612093864662647, -0.4631182124753035, -0.23861918608319632, - # 2.220446049250313e-16, 0.23861918608319654, 0.4631182124753045, 0.6612093864662645, 0.821373340865028, 0.9324695142031519, 0.9887032026126789 # ], # 7: [-0.9914553711208121, -0.949107912342757, -0.8648644233597671, -0.7415311855993938, -0.5860872354676903, -0.40584515137739663, -0.20778495500789784, # 3.3306690738754696e-16, 0.20778495500789873, 0.40584515137739796, 0.5860872354676913, 0.7415311855993948, 0.8648644233597691, # 0.9491079123427586, 0.9914553711208126 # ], # 8: [-0.9933798758817153, -0.9602898564975361, -0.8941209068474557, -0.7966664774136257, -0.6723540709451575, -0.5255324099163289, -0.3607010979281312, - # 0.18343464249564911, 4.440892098500626e-16, 0.1834346424956501, 0.3607010979281319, 0.5255324099163294, 0.6723540709451585, 0.7966664774136267, # 0.8941209068474564, 0.9602898564975363, 0.9933798758817162 # ], # 9: [-0.9946781606773386, -0.9681602395076251, -0.9149635072496775, -0.8360311073266354, -0.7344867651839325, -0.6133714327005891, -0.475462479112459, - # 0.3242534234038089, -0.16422356361498636, 3.3306690738754696e-16, 0.16422356361498702, 0.3242534234038096, 0.4754624791124603, # 0.613371432700591, 0.7344867651839341, 0.8360311073266359, 0.914963507249678, 0.9681602395076261, 0.9946781606773403 # ], 10: [-0.9956571630258076, -0.9739065285171714, -0.9301574913557086, -0.8650633666889832, -0.7808177265864168, -0.679409568299023, -0.562757134668605, - 0.4333953941292482, -0.29439286270146015, -0.14887433898163127, 2.220446049250313e-16, 0.1488743389816316, 0.2943928627014607, 0.43339539412924755, 0.5627571346686051, 0.6794095682990244, 0.7808177265864169, 0.8650633666889844, 0.9301574913557082, 0.9739065285171717, 0.9956571630258081 ], # 11: [-0.9963696138895425, -0.9782286581460574, -0.9416771085780676, -0.8870625997680958, -0.8160574566562212, -0.7301520055740492, -0.6305995201619655, - # 0.5190961292068118, -0.39794414095237773, -0.26954315595234524, -0.13611300079936217, -4.440892098500626e-16, 0.13611300079936206, # 0.2695431559523449, 0.39794414095237773, 0.5190961292068117, 0.6305995201619654, 0.7301520055740492, 0.816057456656221, 0.8870625997680953, # 0.9416771085780679, 0.978228658146057, 0.9963696138895426 # ], # 12: [-0.9969339225295953, -0.9815606342467201, -0.950537795943121, -0.9041172563704741, -0.8435581241611524, -0.7699026741943046, -0.6840598954700551, - # 0.5873179542866177, -0.4813394504781564, -0.3678314989981798, -0.24850574832046946, -0.12523340851146914, -3.3306690738754696e-16, # 0.1252334085114689, 0.24850574832046957, 0.36783149899818013, 0.4813394504781572, 0.5873179542866174, 0.6840598954700562, 0.7699026741943048, # 0.8435581241611532, 0.9041172563704747, 0.9505377959431213, 0.9815606342467192, 0.9969339225295955 # ], # 13: [-0.9973661769948244, -0.984183054718588, -0.95755246838608, -0.9175983992229771, -0.8653331602663435, -0.8015780907333098, -0.7269488493206314, - # 0.64234933944034, -0.5490799579565359, -0.4484927510364468, -0.34183246302180625, -0.23045831595513466, -0.11597108974493386, - # 3.3306690738754696e-16, 0.11597108974493409, 0.2304583159551351, 0.3418324630218067, 0.44849275103644715, 0.5490799579565372, # 0.6423493394403403, 0.726948849320632, 0.80157809073331, 0.8653331602663444, 0.917598399222978, 0.9575524683860812, 0.9841830547185881, # 0.9973661769948249 # ], # 14: [-0.9977205937565432, -0.9862838086968115, -0.9631583382788527, -0.9284348836635736, -0.8829146632520561, -0.8272013150697641, -0.7617567525622055, - # 0.6872929048116849, -0.6047893659409216, -0.5152486363581534, -0.41965589764297806, -0.31911236892788875, -0.21483591853348383, - # 0.108054948707343, 5.551115123125783e-16, 0.10805494870734478, 0.21483591853348527, 0.3191123689278901, 0.41965589764297917, 0.5152486363581541, # 0.6047893659409218, 0.6872929048116857, 0.7617567525622057, 0.8272013150697651, 0.8829146632520571, 0.9284348836635736, 0.9631583382788532, # 0.9862838086968123, 0.9977205937565431 # ], # 15: [-0.9980022986933965, -0.9879925180204847, -0.9677390756791384, -0.937273392400706, -0.8972645323440815, -0.8482065834104267, -0.7904185014424661, - # 0.7244177313601698, -0.6509967412974171, -0.5709721726085399, -0.48508186364023964, -0.3941513470775635, -0.2991800071531687, - # 0.20119409399743393, -0.1011420669187173, 1.1102230246251565e-16, 0.10114206691871763, 0.20119409399743426, 0.2991800071531686, # 0.3941513470775634, 0.48508186364023986, 0.570972172608539, 0.6509967412974169, 0.7244177313601701, 0.7904185014424661, 0.8482065834104272, # 0.897264532344082, 0.937273392400706, 0.9677390756791392, 0.9879925180204855, 0.9980022986933971 # ], # 16: [-0.9982392741454447, -0.9894009349916497, -0.9715059509693929, -0.9445750230732326, -0.9091576670123429, -0.8656312023878314, -0.8142402870624446, - # 0.7554044083550029, -0.6897411066817623, -0.6178762444026438, -0.5404076763521388, -0.45801677765722726, -0.37148378087841594, - # 0.28160355077925914, -0.18916857901808393, -0.09501250983763732, -2.220446049250313e-16, 0.0950125098376372, 0.18916857901808315, # 0.2816035507792588, 0.3714837808784164, 0.45801677765722737, 0.5404076763521395, 0.6178762444026438, 0.6897411066817624, 0.7554044083550031, # 0.8142402870624446, 0.8656312023878316, 0.9091576670123429, 0.9445750230732325, 0.9715059509693925, 0.9894009349916499, 0.9982392741454444 # ], # 17: [-0.998432970606058, -0.9905754753144171, -0.9746592569674308, -0.9506755217687672, -0.9190961368038919, -0.8802391537269854, -0.8342740928501335, - # 0.7815140038968009, -0.722472287372409, -0.6576711592166902, -0.587569212334035, -0.5126905370864765, -0.43368729520979854, -0.3512317634538762, - # 0.2659465074516818, -0.17848418149584755, -0.08958563942522657, 0.0, 0.0895856394252269, 0.17848418149584822, 0.26594650745168247, # 0.3512317634538764, 0.43368729520979965, 0.5126905370864772, 0.5875692123340355, 0.6576711592166908, 0.7224722873724099, 0.7815140038968015, # 0.8342740928501343, 0.8802391537269859, 0.9190961368038917, 0.9506755217687678, 0.974659256967431, 0.9905754753144174, 0.9984329706060581 # ], # 18: [-0.998599165412682, -0.9915651684209306, -0.9773103807748602, -0.9558239495713969, -0.927504501573343, -0.8926024664975549, -0.8512493734337165, - # 0.8037049589725229, -0.7503804817033572, -0.6916870430603526, -0.6280037548638335, -0.5597708310739471, -0.48750904258507766, - # 0.4117511614628424, -0.3330234227914082, -0.2518862256915051, -0.16893682806654864, -0.08477501304173507, 0.0, 0.0847750130417354, # 0.1689368280665493, 0.2518862256915053, 0.33302342279140795, 0.41175116146284263, 0.48750904258507877, 0.5597708310739478, 0.6280037548638338, # 0.6916870430603532, 0.7503804817033577, 0.803704958972523, 0.8512493734337176, 0.8926024664975558, 0.9275045015733433, 0.9558239495713977, # 0.977310380774861, 0.9915651684209309, 0.9985991654126828 # ], # 19: [-0.9987380120803147, -0.9924068438435842, -0.9795723007892643, -0.9602081521348296, -0.9346640001655193, -0.903155903614818, -0.865773542685335, - # 0.822714656537143, -0.7743288590095345, -0.7209661773352292, -0.6629230657449079, -0.6005453046616815, -0.5342756325305535, - # 0.46457074137596144, -0.3918512308715205, -0.3165640999636299, -0.23922492831824171, -0.16035864564022484, -0.0804519227440117, - # 3.3306690738754696e-16, 0.08045192274401136, 0.16035864564022517, 0.23922492831824105, 0.31656409996363, 0.3918512308715202, 0.464570741375961, # 0.5342756325305533, 0.6005453046616811, 0.6629230657449078, 0.7209661773352294, 0.7743288590095347, 0.8227146565371429, 0.8657735426853352, # 0.9031559036148178, 0.9346640001655193, 0.9602081521348299, 0.9795723007892634, 0.9924068438435844, 0.9987380120803145 # ], # 87: [-0.9999373393176647, -0.999622350432484, -0.998981834567236, -0.9980107215629824, -0.9967203521912877, -0.9951134581379919, -0.9931850143689511, -0.9909336501109647, -0.9883633935160456, -0.985476606068421, -0.9822719826624027, -0.978749341003817, -0.9749114465404709, -0.9707605197472842, -0.9662966427216388, -0.961520436936073, -0.9564344462027763, -0.9510410013893145, -0.945341012434413, -0.9393357199742063, -0.9330277577952324, -0.9264196798912376, -0.9195130155009865, -0.9123095290941232, -0.9048120659287133, -0.8970234547675697, -0.8889457425315686, -0.8805811598520423, -0.8719328161808033, -0.8630038376297071, -0.8537967282834917, -0.8443141443970357, -0.8345594815785893, -0.8245361702557805, -0.8142471292361737, -0.8036954080581786, -0.7928846943811525, -0.7818187205454386, -0.7705007861856665, -0.7589343057213496, -0.7471232552715923, -0.735071660505314, -0.7227831721000328, -0.7102615427114733, -0.6975110271436125, -0.6845359314028241, -0.6713402293006723, -0.6579279856713498, -0.6443037198655162, -0.6304720018972505, -0.6164371014898609, -0.6022033695423357, -0.5877755725413023, -0.5731585255345304, -0.5583567669734248, -0.5433749073022942, -0.5282179401678413, -0.5128909045194527, -0.49739858004223114, -0.4817458096226672, -0.4659377920214407, -0.449979767165285, -0.43387672799250576, -0.417633722072869, -0.4012561295371335, -0.3847493668670974, -0.3681186117187589, -0.3513690879260418, -0.33450633184746614, -0.3175359108501159, -0.30046315821599157, -0.28329344500409226, -0.266032437514764, -0.24868582730667765, -0.2312590736832678, -0.21375766534010188, -0.19618737131686093, -0.17855397985304466, -0.16086304622927927, -0.14312014673100815, -0.12533112522788015, -0.10750183850894302, -0.08963790744155298, -0.07174496550149989, -0.05382890297085785, -0.03589561662680141, -0.017950762293751588, 0.0, 0.017950762293751477, 0.03589561662680074, 0.05382890297085752, 0.071744965501499, 0.08963790744155298, 0.10750183850894268, 0.1253311252278798, 0.14312014673100815, 0.16086304622927938, 0.17855397985304444, 0.19618737131686126, 0.21375766534010154, 0.23125907368326792, 0.2486858273066771, 0.2660324375147639, 0.28329344500409204, 0.30046315821599134, 0.3175359108501157, 0.3345063318474658, 0.3513690879260414, 0.3681186117187585, 0.38474936686709693, 0.4012561295371332, 0.4176337220728691, 0.4338767279925052, 0.4499797671652843, 0.46593779202144003, 0.4817458096226668, 0.49739858004223125, 0.5128909045194523, 0.5282179401678414, 0.5433749073022933, 0.5583567669734248, 0.5731585255345304, 0.5877755725413025, 0.6022033695423353, 0.6164371014898609, 0.6304720018972505, 0.6443037198655157, 0.6579279856713494, 0.671340229300672, 0.6845359314028239, 0.6975110271436127, 0.7102615427114729, 0.7227831721000324, 0.7350716605053138, 0.7471232552715918, 0.7589343057213493, 0.7705007861856658, 0.7818187205454378, 0.7928846943811524, 0.8036954080581777, 0.8142471292361735, 0.8245361702557805, 0.8345594815785895, 0.8443141443970352, 0.8537967282834915, 0.8630038376297067, 0.8719328161808031, 0.8805811598520419, 0.8889457425315681, 0.8970234547675693, 0.9048120659287131, 0.9123095290941229, 0.9195130155009866, 0.9264196798912372, 0.933027757795232, 0.9393357199742057, 0.9453410124344126, 0.9510410013893136, 0.9564344462027765, 0.9615204369360731, 0.9662966427216388, 0.9707605197472843, 0.9749114465404707, 0.9787493410038163, 0.9822719826624021, 0.9854766060684204, 0.988363393516045, 0.9909336501109646, 0.9931850143689511, 0.995113458137992, 0.9967203521912877, 0.9980107215629823, 0.998981834567236, 0.9996223504324843, 0.9999373393176647], # 300: [-0.9999946872996457, -0.9999679782184366, -0.9999136584901585, -0.9998312829844194, -0.9997217884834974, -0.9995853734488863, -0.9994215723741114, -0.9992302218632736, -0.9990116062590783, -0.9987658603530949, -0.9984928023779717, -0.9981923380734435, -0.9978646126899144, -0.9975097171758793, -0.9971275560703853, -0.996718072051, -0.9962813600745217, -0.9958174891208241, -0.9953264031603122, -0.9948080667630033, -0.9942625517027517, -0.9936899152742682, -0.9930901239339065, -0.9924631568471005, -0.9918090737598455, -0.9911279255509896, -0.990419693459469, -0.9896843673150096, -0.9889220003217568, -0.9881326399103605, -0.9873162780530513, -0.9864729129322606, -0.9856025942467834, -0.9847053677808956, -0.9837812338860811, -0.9828301976412723, -0.9818523070673794, -0.9808476074619001, -0.9798161060814252, -0.9787578139322586, -0.9776727785275657, -0.9765610454590224, -0.9754226279104833, -0.9742575421410374, -0.9730658359415845, -0.9718475557430342, -0.9706027199771077, -0.9693313496680812, -0.9680334934315086, -0.9667091989287729, -0.9653584893488589, -0.9639813901171553, -0.9625779510657028, -0.9611482213733913, -0.9596922286202931, -0.9582100023531643, -0.9567015939075111, -0.9551670541938286, -0.9536064149019075, -0.9520197094793031, -0.9504069909786793, -0.9487683122037178, -0.9471037087320028, -0.9454132177338136, -0.9436968941399522, -0.9419547927700981, -0.9401869529103559, -0.9383934153067652, -0.9365742368903639, -0.9347294745903799, -0.9328591712533739, -0.9309633710773335, -0.929042133086303, -0.9270955163900743, -0.9251235672708156, -0.9231263332721165, -0.9211038755812251, -0.9190562555418369, -0.9169835227643917, -0.9148857280450582, -0.9127629347867887, -0.9106152066064295, -0.9084425963487075, -0.9062451579796027, -0.9040229571561673, -0.901776059796223, -0.8995045218950815, -0.8972084005137191, -0.894887763590253, -0.8925426793619207, -0.8901732068988839, -0.8877794062884896, -0.8853613477675033, -0.8829191019031915, -0.8804527307710444, -0.8779622974209855, -0.8754478743981893, -0.8729095346039717, -0.8703473430544713, -0.8677613657021737, -0.8651516774038297, -0.8625183533931811, -0.8598614615661291, -0.8571810707206511, -0.8544772580226088, -0.8517501010316768, -0.848999670465588, -0.846226037913026, -0.8434292828416308, -0.8406094851262689, -0.8377667182508701, -0.8349010565417854, -0.832012581756866, -0.8291013760716741, -0.8261675156824684, -0.8232110776015575, -0.8202321458616895, -0.8172308049213011, -0.8142071336364427, -0.8111612116546523, -0.8080931252649417, -0.8050029611877987, -0.8018908008875274, -0.7987567265968607, -0.7956008268394583, -0.7924231905743322, -0.7892239018232119, -0.786003045354458, -0.7827607119020659, -0.7794969926375797, -0.7762119740898052, -0.7729057435134399, -0.7695783938260492, -0.7662300183834612, -0.7628607061714925, -0.7594705468820133, -0.7560596355871452, -0.752628067796661, -0.7491759349034655, -0.7457033289874226, -0.7422103472441275, -0.7386970873050263, -0.7351636429201902, -0.7316101085081914, -0.7280365833550897, -0.7244431671799338, -0.7208299560399418, -0.7171970466429054, -0.7135445403305545, -0.709872538873781, -0.706181140586744, -0.7024704444166954, -0.6987405537245666, -0.69499157229575, -0.6912236006508845, -0.6874367399265875, -0.6836310954649563, -0.679806773027049, -0.675963875289201, -0.6721025055269298, -0.6682227710239814, -0.6643247794768312, -0.6604086356663699, -0.6564744449561277, -0.6525223165305882, -0.6485523599800562, -0.6445646821384352, -0.640559390405937, -0.6365365958255456, -0.632496409838541, -0.6284389412798634, -0.6243642995346044, -0.6202725974607572, -0.6161639483065122, -0.612038462855417, -0.6078962524251541, -0.6037374316440418, -0.5995621155219637, -0.5953704167381737, -0.591162448490157, -0.5869383271307362, -0.5826981693851709, -0.5784420897750377, -0.5741702033243279, -0.569882628063465, -0.5655794823857194, -0.5612608826011143, -0.5569269455063359, -0.552577790761474, -0.5482135383794409, -0.5438343064043345, -0.539440213351214, -0.5350313804609139, -0.5306079293166595, -0.5261699796417558, -0.5217176516148028, -0.5172510680075144, -0.512770351923185, -0.5082756247089657, -0.5037670081516556, -0.4992446265030859, -0.4947086043354987, -0.49015906456404057, -0.48559613052787265, -0.4810199279073166, -0.47643058269160643, -0.4718282193075505, -0.4672129625903425, -0.4625849395963533, -0.4579442776790468, -0.45329110272009054, -0.4486255409938984, -0.4439477208796667, -0.43925777104156594, -0.4345558187588534, -0.4298419916878913, -0.42511641947672607, -0.42037923204598227, -0.415630558014791, -0.4108705263637342, -0.4060992679550248, -0.40131691391079194, -0.3965235941318921, -0.39171943886495786, -0.38690458013101003, -0.3820791501980705, -0.3772432801901535, -0.37239710156135253, -0.36754074743549325, -0.36267435117025193, -0.3577980450538263, -0.35291196168878125, -0.3480162352451315, -0.34311100011337237, -0.338196389686529, -0.3332725376562593, -0.3283395791815773, -0.323397649628395, -0.31844688343484195, -0.31348741532192625, -0.30851938137992496, -0.3035429178922302, -0.29855816028200666, -0.29356524423952535, -0.28856430672807254, -0.28355548489008364, -0.27853891507336437, -0.27351473387703384, -0.26848307907865343, -0.2634440886207914, -0.258397899715193, -0.25334464980911076, -0.24828447743519133, -0.2432175212767862, -0.23814391934859436, -0.23306380988500508, -0.22797733211414206, -0.22288462540037246, -0.21778582850010708, -0.21268108037361766, -0.20757052088450112, -0.2024542900179942, -0.1973325272107358, -0.19220537208739352, -0.18707296508667115, -0.1819354467541754, -0.17679295714507726, -0.17164563648674025, -0.16649362573227822, -0.1613370659268425, -0.15617609768225016, -0.15101086176667544, -0.14584149958664194, -0.1406681526257254, -0.13549096199033794, -0.13031006892741814, -0.12512561523562193, -0.1199377427755659, -0.11474659308606205, -0.10955230783063419, -0.10435502913854622, -0.09915489918583553, -0.09395205988140298, -0.08874665324306696, -0.0835388216689601, -0.07832870758870736, -0.07311645321890214, -0.06790220086927956, -0.06268609314491269, -0.05746827266700372, -0.0522488818973752, -0.04702806337524312, -0.04180595985053315, -0.03658271407386193, -0.03135846868977743, -0.026133366404510694, -0.020907550050621282, -0.01568116244584883, -0.010454346354956456, -0.0052272445887175945, 0.0, 0.0052272445887177055, 0.0104543463549569, 0.01568116244584905, 0.020907550050621393, 0.026133366404511027, 0.03135846868977776, 0.036582714073862044, 0.04180595985053359, 0.04702806337524368, 0.052248881897375865, 0.057468272667004605, 0.06268609314491314, 0.0679022008692799, 0.07311645321890248, 0.07832870758870769, 0.08353882166896032, 0.08874665324306752, 0.09395205988140376, 0.09915489918583587, 0.10435502913854666, 0.10955230783063508, 0.1147465930860625, 0.11993774277556657, 0.12512561523562216, 0.13031006892741892, 0.13549096199033805, 0.14066815262572618, 0.14584149958664216, 0.1510108617666761, 0.15617609768225016, 0.16133706592684272, 0.16649362573227855, 0.17164563648674003, 0.17679295714507792, 0.18193544675417572, 0.18707296508667137, 0.1922053720873934, 0.19733252721073624, 0.2024542900179942, 0.20757052088450112, 0.21268108037361744, 0.21778582850010697, 0.22288462540037235, 0.22797733211414206, 0.23306380988500508, 0.23814391934859414, 0.2432175212767861, 0.24828447743519155, 0.25334464980911076, 0.2583978997151932, 0.2634440886207915, 0.2684830790786531, 0.27351473387703407, 0.27853891507336426, 0.2835554848900833, 0.2885643067280719, 0.29356524423952524, 0.2985581602820062, 0.30354291789222965, 0.30851938137992485, 0.3134874153219265, 0.31844688343484184, 0.323397649628395, 0.3283395791815772, 0.33327253765625897, 0.33819638968652843, 0.3431110001133719, 0.34801623524513126, 0.3529119616887808, 0.3577980450538262, 0.3626743511702518, 0.36754074743549336, 0.37239710156135264, 0.3772432801901534, 0.38207915019807037, 0.3869045801310097, 0.39171943886495786, 0.3965235941318921, 0.4013169139107917, 0.4060992679550246, 0.410870526363734, 0.4156305580147909, 0.4203792320459817, 0.42511641947672574, 0.42984199168789106, 0.43455581875885274, 0.4392577710415656, 0.44394772087966616, 0.44862554099389795, 0.45329110272008966, 0.45794427767904666, 0.46258493959635283, 0.4672129625903423, 0.4718282193075505, 0.4764305826916061, 0.4810199279073162, 0.4855961305278721, 0.49015906456404, 0.4947086043354981, 0.49924462650308543, 0.5037670081516556, 0.508275624708965, 0.5127703519231843, 0.517251068007514, 0.5217176516148028, 0.5261699796417558, 0.5306079293166588, 0.5350313804609135, 0.5394402133512137, 0.5438343064043343, 0.5482135383794404, 0.5525777907614735, 0.5569269455063353, 0.5612608826011143, 0.5655794823857192, 0.5698826280634648, 0.5741702033243274, 0.578442089775038, 0.5826981693851705, 0.5869383271307357, 0.5911624484901564, 0.5953704167381735, 0.5995621155219635, 0.6037374316440416, 0.6078962524251535, 0.6120384628554165, 0.6161639483065119, 0.6202725974607567, 0.6243642995346039, 0.6284389412798628, 0.6324964098385406, 0.6365365958255453, 0.6405593904059368, 0.6445646821384348, 0.6485523599800556, 0.6525223165305876, 0.6564744449561274, 0.6604086356663694, 0.6643247794768309, 0.6682227710239813, 0.6721025055269294, 0.6759638752892005, 0.6798067730270486, 0.6836310954649557, 0.687436739926587, 0.6912236006508838, 0.69499157229575, 0.6987405537245661, 0.7024704444166952, 0.706181140586744, 0.7098725388737805, 0.713544540330554, 0.7171970466429054, 0.7208299560399416, 0.7244431671799337, 0.7280365833550895, 0.7316101085081913, 0.7351636429201899, 0.7386970873050263, 0.742210347244127, 0.7457033289874225, 0.7491759349034652, 0.752628067796661, 0.7560596355871447, 0.7594705468820128, 0.7628607061714925, 0.7662300183834609, 0.7695783938260488, 0.7729057435134394, 0.7762119740898051, 0.77949699263758, 0.7827607119020656, 0.7860030453544584, 0.7892239018232124, 0.7924231905743324, 0.7956008268394587, 0.7987567265968609, 0.8018908008875274, 0.8050029611877982, 0.8080931252649417, 0.8111612116546523, 0.8142071336364427, 0.8172308049213008, 0.8202321458616895, 0.8232110776015571, 0.826167515682468, 0.8291013760716742, 0.8320125817568655, 0.8349010565417858, 0.8377667182508699, 0.8406094851262688, 0.8434292828416307, 0.846226037913026, 0.848999670465588, 0.8517501010316768, 0.8544772580226087, 0.8571810707206517, 0.859861461566129, 0.8625183533931813, 0.8651516774038295, 0.8677613657021737, 0.870347343054471, 0.8729095346039718, 0.8754478743981893, 0.8779622974209857, 0.8804527307710446, 0.8829191019031915, 0.8853613477675031, 0.88777940628849, 0.890173206898884, 0.8925426793619202, 0.8948877635902533, 0.8972084005137192, 0.8995045218950817, 0.9017760597962232, 0.9040229571561679, 0.9062451579796031, 0.9084425963487072, 0.9106152066064294, 0.9127629347867888, 0.9148857280450583, 0.9169835227643919, 0.9190562555418367, 0.9211038755812248, 0.9231263332721162, 0.9251235672708154, 0.927095516390074, 0.9290421330863031, 0.9309633710773336, 0.932859171253374, 0.93472947459038, 0.9365742368903638, 0.9383934153067653, 0.940186952910356, 0.9419547927700982, 0.9436968941399521, 0.9454132177338137, 0.9471037087320029, 0.948768312203718, 0.9504069909786793, 0.9520197094793031, 0.9536064149019075, 0.9551670541938287, 0.9567015939075112, 0.9582100023531646, 0.9596922286202932, 0.9611482213733913, 0.9625779510657029, 0.9639813901171553, 0.965358489348859, 0.9667091989287728, 0.9680334934315088, 0.9693313496680812, 0.9706027199771078, 0.9718475557430342, 0.9730658359415845, 0.9742575421410374, 0.9754226279104833, 0.9765610454590226, 0.9776727785275656, 0.9787578139322587, 0.9798161060814253, 0.9808476074619004, 0.9818523070673794, 0.9828301976412724, 0.9837812338860812, 0.9847053677808958, 0.9856025942467834, 0.9864729129322606, 0.9873162780530514, 0.9881326399103604, 0.9889220003217569, 0.9896843673150097, 0.9904196934594691, 0.9911279255509898, 0.9918090737598456, 0.9924631568471006, 0.9930901239339065, 0.9936899152742682, 0.9942625517027519, 0.9948080667630034, 0.9953264031603122, 0.9958174891208242, 0.9962813600745218, 0.9967180720510002, 0.9971275560703854, 0.9975097171758793, 0.9978646126899146, 0.9981923380734435, 0.9984928023779718, 0.998765860353095, 0.9990116062590781, 0.9992302218632736, 0.9994215723741117, 0.9995853734488863, 0.9997217884834975, 0.9998312829844194, 0.9999136584901583, 0.9999679782184367, 0.9999946872996458], } legendre_weights = { # 2: [1.0, 1.0], # 3: [0.5555555555555557, 0.8888888888888888, 0.5555555555555557], # 4: [0.3478548451374537, 0.6521451548625462, 0.6521451548625462, 0.3478548451374537], # 5: [0.23692688505618942, 0.4786286704993662, 0.568888888888889, 0.4786286704993662, 0.23692688505618942], # 6: [0.17132449237916975, 0.36076157304813894, 0.46791393457269137, 0.46791393457269137, 0.36076157304813894, 0.17132449237916975], # 7: [0.12948496616887065, 0.2797053914892766, 0.3818300505051183, 0.41795918367346896, 0.3818300505051183, 0.2797053914892766, 0.12948496616887065], # 8: [0.10122853629037669, 0.22238103445337434, 0.31370664587788705, 0.36268378337836177, 0.36268378337836177, 0.31370664587788705, 0.22238103445337434, # 0.10122853629037669 # ], # 9: [0.08127438836157472, 0.18064816069485712, 0.26061069640293566, 0.3123470770400028, 0.33023935500125967, 0.3123470770400028, 0.26061069640293566, # 0.18064816069485712, 0.08127438836157472 # ], 10: [0.06667134430868807, 0.14945134915058036, 0.219086362515982, 0.2692667193099965, 0.295524224714753, 0.295524224714753, 0.2692667193099965, 0.219086362515982, 0.14945134915058036, 0.06667134430868807 ], # 11: [0.055668567116173164, 0.1255803694649047, 0.18629021092773443, 0.23319376459199068, 0.26280454451024676, 0.2729250867779009, 0.26280454451024676, # 0.23319376459199068, 0.18629021092773443, 0.1255803694649047, 0.055668567116173164 # ], # 12: [0.04717533638651202, 0.10693932599531888, 0.1600783285433461, 0.20316742672306565, 0.23349253653835464, 0.2491470458134027, 0.2491470458134027, # 0.23349253653835464, 0.20316742672306565, 0.1600783285433461, 0.10693932599531888, 0.04717533638651202 # ], # 13: [0.04048400476531588, 0.0921214998377286, 0.13887351021978736, 0.17814598076194552, 0.20781604753688857, 0.22628318026289715, 0.2325515532308739, # 0.22628318026289715, 0.20781604753688857, 0.17814598076194552, 0.13887351021978736, 0.0921214998377286, 0.04048400476531588 # ], # 14: [0.035119460331752374, 0.0801580871597603, 0.12151857068790296, 0.1572031671581934, 0.18553839747793763, 0.20519846372129555, 0.21526385346315766, # 0.21526385346315766, 0.20519846372129555, 0.18553839747793763, 0.1572031671581934, 0.12151857068790296, 0.0801580871597603, # 0.035119460331752374 # ], # 15: [0.030753241996118647, 0.07036604748810807, 0.10715922046717177, 0.1395706779261539, 0.16626920581699378, 0.18616100001556188, 0.19843148532711125, # 0.2025782419255609, 0.19843148532711125, 0.18616100001556188, 0.16626920581699378, 0.1395706779261539, 0.10715922046717177, 0.07036604748810807, # 0.030753241996118647 # ], # 16: [0.027152459411754037, 0.062253523938647706, 0.09515851168249259, 0.12462897125553403, 0.14959598881657676, 0.16915651939500262, 0.1826034150449236, # 0.18945061045506859, 0.18945061045506859, 0.1826034150449236, 0.16915651939500262, 0.14959598881657676, 0.12462897125553403, # 0.09515851168249259, 0.062253523938647706, 0.027152459411754037 # ], # 17: [0.02414830286854952, 0.0554595293739866, 0.08503614831717908, 0.11188384719340365, 0.13513636846852523, 0.15404576107681012, 0.16800410215644995, # 0.17656270536699253, 0.17944647035620653, 0.17656270536699253, 0.16800410215644995, 0.15404576107681012, 0.13513636846852523, # 0.11188384719340365, 0.08503614831717908, 0.0554595293739866, 0.02414830286854952 # ], # 18: [0.02161601352648413, 0.04971454889496922, 0.07642573025488925, 0.10094204410628699, 0.12255520671147836, 0.14064291467065063, 0.15468467512626521, # 0.16427648374583273, 0.16914238296314363, 0.16914238296314363, 0.16427648374583273, 0.15468467512626521, 0.14064291467065063, # 0.12255520671147836, 0.10094204410628699, 0.07642573025488925, 0.04971454889496922, 0.02161601352648413 # ], # 19: [0.01946178822972761, 0.04481422676569981, 0.06904454273764107, 0.09149002162244985, 0.11156664554733375, 0.1287539625393362, 0.14260670217360638, # 0.15276604206585945, 0.15896884339395415, 0.16105444984878345, 0.15896884339395415, 0.15276604206585945, 0.14260670217360638, # 0.1287539625393362, 0.11156664554733375, 0.09149002162244985, 0.06904454273764107, 0.04481422676569981, 0.01946178822972761 # ], # 87: [0.0009691097381757348, 0.0022546907537549384, 0.003539271655388117, 0.004819456238501684, 0.00609346204763528, 0.007359623648817653, 0.008616302838488783, 0.009861877713702014, 0.011094741940560695, 0.012313306030048123, 0.013515999118245947, 0.0147012708872398, 0.015867593518826113, 0.017013463643001287, 0.0181374042653544, 0.01923796666535654, 0.020313732260655384, 0.021363314433802724, 0.022385360318485367, 0.02337855254266003, 0.024341610926167583, 0.025273294130557043, 0.026172401258933563, 0.027037773403735973, 0.02786829514042919, 0.028662895965176235, 0.02942055167462312, 0.03014028568601895, 0.030821170295962166, 0.031462327876150824, 0.032062932004589706, 0.03262220853080143, 0.03313943657366203, 0.03361394945057692, 0.034045135536799345, 0.03443243905378225, 0.03477536078554787, 0.03507345872215154, 0.03532634862941022, 0.03553370454416061, 0.035695259194409426, 0.03581080434383377, 0.03588019106018702, 0.03590332990726553, 0.03588019106018702, 0.03581080434383377, 0.035695259194409426, 0.03553370454416061, 0.03532634862941022, 0.03507345872215154, 0.03477536078554787, 0.03443243905378225, 0.034045135536799345, 0.03361394945057692, 0.03313943657366203, 0.03262220853080143, 0.032062932004589706, 0.031462327876150824, 0.030821170295962166, 0.03014028568601895, 0.02942055167462312, 0.028662895965176235, 0.02786829514042919, 0.027037773403735973, 0.026172401258933563, 0.025273294130557043, 0.024341610926167583, 0.02337855254266003, 0.022385360318485367, 0.021363314433802724, 0.020313732260655384, 0.01923796666535654, 0.0181374042653544, 0.017013463643001287, 0.015867593518826113, 0.0147012708872398, 0.013515999118245947, 0.012313306030048123, 0.011094741940560695, 0.009861877713702014, 0.008616302838488783, 0.007359623648817653, 0.00609346204763528, 0.004819456238501684, 0.003539271655388117, 0.0022546907537549384, 0.0009691097381757348], # 300: [8.217779368318766e-05, 0.000191285544654933, 0.00030053396541231163, 0.0004097635734033533, 0.0005189512134602094, 0.0006280829779724268, 0.0007371464159049574, 0.0008461294290789873, 0.0009550200344351969, 0.0010638062980465963, 0.001172476313703897, 0.001281018195428937, 0.0013894200749916825, 0.0014976701014677357, 0.0016057564416445678, 0.0017136672808561744, 0.0018213908240185923, 0.0019289152967680268, 0.0020362289466670158, 0.0021433200444213973, 0.002250176885138956, 0.002356787789583519, 0.002463141105430975, 0.0025692252085409055, 0.002675028504212449, 0.002780539428452415, 0.0028857464492311412, 0.0029906380677445906, 0.0030952028196669814, 0.0031994292764019384, 0.003303306046330757, 0.003406821776058694, 0.0035099651516518333, 0.0036127248998770794, 0.0037150897894316927, 0.0038170486321696183, 0.003918590284326712, 0.004019703647735881, 0.004120377671042578, 0.004220601350909488, 0.004320363733222272, 0.0044196539142855205, 0.004518461042012614, 0.004616774317114607, 0.004714582994277626, 0.004811876383340857, 0.004908643850461695, 0.005004874819279474, 0.0051005587720714925, 0.0051956852509013034, 0.005290243858763116, 0.0053842242607182395, 0.0054776161850220466, 0.005570409424251355, 0.005662593836414576, 0.005754159346065033, 0.005845095945399296, 0.005935393695350927, 0.006025042726679271, 0.006114033241045046, 0.006202355512083302, 0.0062899998864659286, 0.00637695678495604, 0.006463216703456925, 0.006548770214047811, 0.006633607966017162, 0.006717720686882713, 0.0068010991834066194, 0.006883734342598478, 0.0069656171327117265, 0.00704673860423293, 0.007127089890856632, 0.007206662210456636, 0.0072854468660452166, 0.007363435246723478, 0.00744061882862333, 0.007516989175837821, 0.00759253794134379, 0.007667256867914979, 0.007741137789022482, 0.007814172629730136, 0.007886353407574561, 0.007957672233438363, 0.008028121312413226, 0.008097692944651201, 0.008166379526205846, 0.008234173549864183, 0.008301067605967079, 0.008367054383218206, 0.008432126669483946, 0.00849627735258214, 0.00855949942105765, 0.0086217859649506, 0.00868313017655067, 0.008743525351140993, 0.008802964887731923, 0.008861442289781127, 0.008918951165904783, 0.008975485230575371, 0.009031038304809223, 0.009085604316841996, 0.009139177302791153, 0.009191751407309061, 0.009243320884222412, 0.009293880097160322, 0.009343423520170318, 0.00939194573832249, 0.009439441448300992, 0.009485905458984029, 0.009531332692011101, 0.009575718182337876, 0.009619057078779164, 0.009661344644538864, 0.009702576257727958, 0.009742747411869234, 0.00978185371639035, 0.00981989089710335, 0.009856854796671895, 0.009892741375065664, 0.009927546710002122, 0.009961266997374775, 0.009993898551669387, 0.010025437806366347, 0.01005588131433098, 0.01008522574818994, 0.010113467900694973, 0.010140604685073598, 0.010166633135366204, 0.010191550406750467, 0.010215353775852252, 0.010238040641043068, 0.010259608522724598, 0.010280055063599757, 0.010299378028930195, 0.010317575306780569, 0.010334644908249447, 0.010350584967686661, 0.010365393742897078, 0.010379069615331337, 0.010391611090262378, 0.010403016796949039, 0.01041328548878585, 0.010422416043439223, 0.010430407462970154, 0.010437258873943282, 0.01044296952752239, 0.010447538799552137, 0.010450966190626462, 0.010453251326142981, 0.010454393956344087, 0.010454393956344087, 0.010453251326142981, 0.010450966190626462, 0.010447538799552137, 0.01044296952752239, 0.010437258873943282, 0.010430407462970154, 0.010422416043439223, 0.01041328548878585, 0.010403016796949039, 0.010391611090262378, 0.010379069615331337, 0.010365393742897078, 0.010350584967686661, 0.010334644908249447, 0.010317575306780569, 0.010299378028930195, 0.010280055063599757, 0.010259608522724598, 0.010238040641043068, 0.010215353775852252, 0.010191550406750467, 0.010166633135366204, 0.010140604685073598, 0.010113467900694973, 0.01008522574818994, 0.01005588131433098, 0.010025437806366347, 0.009993898551669387, 0.009961266997374775, 0.009927546710002122, 0.009892741375065664, 0.009856854796671895, 0.00981989089710335, 0.00978185371639035, 0.009742747411869234, 0.009702576257727958, 0.009661344644538864, 0.009619057078779164, 0.009575718182337876, 0.009531332692011101, 0.009485905458984029, 0.009439441448300992, 0.00939194573832249, 0.009343423520170318, 0.009293880097160322, 0.009243320884222412, 0.009191751407309061, 0.009139177302791153, 0.009085604316841996, 0.009031038304809223, 0.008975485230575371, 0.008918951165904783, 0.008861442289781127, 0.008802964887731923, 0.008743525351140993, 0.00868313017655067, 0.0086217859649506, 0.00855949942105765, 0.00849627735258214, 0.008432126669483946, 0.008367054383218206, 0.008301067605967079, 0.008234173549864183, 0.008166379526205846, 0.008097692944651201, 0.008028121312413226, 0.007957672233438363, 0.007886353407574561, 0.007814172629730136, 0.007741137789022482, 0.007667256867914979, 0.00759253794134379, 0.007516989175837821, 0.00744061882862333, 0.007363435246723478, 0.0072854468660452166, 0.007206662210456636, 0.007127089890856632, 0.00704673860423293, 0.0069656171327117265, 0.006883734342598478, 0.0068010991834066194, 0.006717720686882713, 0.006633607966017162, 0.006548770214047811, 0.006463216703456925, 0.00637695678495604, 0.0062899998864659286, 0.006202355512083302, 0.006114033241045046, 0.006025042726679271, 0.005935393695350927, 0.005845095945399296, 0.005754159346065033, 0.005662593836414576, 0.005570409424251355, 0.0054776161850220466, 0.0053842242607182395, 0.005290243858763116, 0.0051956852509013034, 0.0051005587720714925, 0.005004874819279474, 0.004908643850461695, 0.004811876383340857, 0.004714582994277626, 0.004616774317114607, 0.004518461042012614, 0.0044196539142855205, 0.004320363733222272, 0.004220601350909488, 0.004120377671042578, 0.004019703647735881, 0.003918590284326712, 0.0038170486321696183, 0.0037150897894316927, 0.0036127248998770794, 0.0035099651516518333, 0.003406821776058694, 0.003303306046330757, 0.0031994292764019384, 0.0030952028196669814, 0.0029906380677445906, 0.0028857464492311412, 0.002780539428452415, 0.002675028504212449, 0.0025692252085409055, 0.002463141105430975, 0.002356787789583519, 0.002250176885138956, 0.0021433200444213973, 0.0020362289466670158, 0.0019289152967680268, 0.0018213908240185923, 0.0017136672808561744, 0.0016057564416445678, 0.0014976701014677357, 0.0013894200749916825, 0.001281018195428937, 0.001172476313703897, 0.0010638062980465963, 0.0009550200344351969, 0.0008461294290789873, 0.0007371464159049574, 0.0006280829779724268, 0.0005189512134602094, 0.0004097635734033533, 0.00030053396541231163, 0.000191285544654933, 8.217779368318766e-05], } #legendre_points = { # 2: [-0.5773502691896257, 0.5773502691896257], # 3: [-0.7745966692414834, 0.0, 0.7745966692414834], # 4: [-0.8611363115940526, -0.33998104358485626, 0.33998104358485626, 0.8611363115940526], # 5: [-0.906179845938664, -0.5384693101056831, 0.0, 0.5384693101056831, 0.906179845938664], # 6: [-0.932469514203152, -0.6612093864662645, -0.23861918608319693, 0.23861918608319693, 0.6612093864662645, 0.932469514203152], # 7: [-0.9491079123427585, -0.7415311855993945, -0.4058451513773972, 0.0, 0.4058451513773972, 0.7415311855993945, 0.9491079123427585], # 8: [-0.9602898564975362, -0.7966664774136267, -0.525532409916329, -0.18343464249564978, 0.18343464249564978, 0.525532409916329, 0.7966664774136267, # 0.9602898564975362 # ], # 9: [-0.9681602395076261, -0.8360311073266358, -0.6133714327005904, -0.3242534234038089, 0.0, 0.3242534234038089, 0.6133714327005904, 0.8360311073266358, # 0.9681602395076261 # ], # 10: [-0.9739065285171717, -0.8650633666889845, -0.6794095682990244, -0.4333953941292472, -0.14887433898163122, 0.14887433898163122, 0.4333953941292472, # 0.6794095682990244, 0.8650633666889845, 0.9739065285171717 # ], # 11: [-0.978228658146057, -0.8870625997680953, -0.7301520055740494, -0.5190961292068118, -0.26954315595234496, 0.0, 0.26954315595234496, # 0.5190961292068118, 0.7301520055740494, 0.8870625997680953, 0.978228658146057 # ], # 12: [-0.9815606342467192, -0.9041172563704748, -0.7699026741943047, -0.5873179542866175, -0.3678314989981802, -0.1252334085114689, 0.1252334085114689, # 0.3678314989981802, 0.5873179542866175, 0.7699026741943047, 0.9041172563704748, 0.9815606342467192 # ], # 13: [-0.9841830547185881, -0.9175983992229779, -0.8015780907333099, -0.6423493394403402, -0.4484927510364468, -0.23045831595513477, 0.0, # 0.23045831595513477, 0.4484927510364468, 0.6423493394403402, 0.8015780907333099, 0.9175983992229779, 0.9841830547185881 # ], # 14: [-0.9862838086968123, -0.9284348836635735, -0.827201315069765, -0.6872929048116855, -0.5152486363581541, -0.31911236892788974, -0.10805494870734367, # 0.10805494870734367, 0.31911236892788974, 0.5152486363581541, 0.6872929048116855, 0.827201315069765, 0.9284348836635735, 0.9862838086968123 # ], # 15: [-0.9879925180204854, -0.937273392400706, -0.8482065834104272, -0.7244177313601701, -0.5709721726085388, -0.3941513470775634, -0.20119409399743451, # 0.0, 0.20119409399743451, 0.3941513470775634, 0.5709721726085388, 0.7244177313601701, 0.8482065834104272, 0.937273392400706, 0.9879925180204854 # ], # 16: [-0.9894009349916499, -0.9445750230732326, -0.8656312023878318, -0.755404408355003, -0.6178762444026438, -0.45801677765722737, -0.2816035507792589, - # 0.09501250983763745, 0.09501250983763745, 0.2816035507792589, 0.45801677765722737, 0.6178762444026438, 0.755404408355003, 0.8656312023878318, # 0.9445750230732326, 0.9894009349916499 # ], # 17: [-0.9905754753144174, -0.9506755217687678, -0.8802391537269859, -0.7815140038968014, -0.6576711592166908, -0.5126905370864769, -0.3512317634538763, - # 0.17848418149584785, 0.0, 0.17848418149584785, 0.3512317634538763, 0.5126905370864769, 0.6576711592166908, 0.7815140038968014, # 0.8802391537269859, 0.9506755217687678, 0.9905754753144174 # ], # 18: [-0.9915651684209309, -0.9558239495713978, -0.8926024664975557, -0.8037049589725231, -0.6916870430603532, -0.5597708310739475, -0.41175116146284263, - # 0.2518862256915055, -0.08477501304173529, 0.08477501304173529, 0.2518862256915055, 0.41175116146284263, 0.5597708310739475, 0.6916870430603532, # 0.8037049589725231, 0.8926024664975557, 0.9558239495713978, 0.9915651684209309 # ], # 19: [-0.9924068438435844, -0.96020815213483, -0.9031559036148179, -0.8227146565371428, -0.7209661773352294, -0.600545304661681, -0.46457074137596094, - # 0.31656409996362983, -0.1603586456402254, 0.0, 0.1603586456402254, 0.31656409996362983, 0.46457074137596094, 0.600545304661681, # 0.7209661773352294, 0.8227146565371428, 0.9031559036148179, 0.96020815213483, 0.9924068438435844 # ], ## 87: [-0.9996223504324843, -0.9980107215629823, -0.995113458137992, -0.9909336501109646, -0.9854766060684204, -0.9787493410038163, -0.9707605197472843, -0.9615204369360731, -0.9510410013893136, -0.9393357199742057, -0.9264196798912372, -0.9123095290941229, -0.8970234547675694, -0.8805811598520419, -0.8630038376297066, -0.8443141443970352, -0.8245361702557805, -0.8036954080581777, -0.7818187205454378, -0.7589343057213493, -0.7350716605053138, -0.7102615427114729, -0.6845359314028236, -0.6579279856713494, -0.6304720018972505, -0.6022033695423352, -0.5731585255345304, -0.5433749073022933, -0.5128909045194523, -0.4817458096226668, -0.44997976716528437, -0.4176337220728691, -0.3847493668670969, -0.3513690879260413, -0.31753591085011573, -0.28329344500409187, -0.24868582730667713, -0.2137576653401016, -0.17855397985304422, -0.14312014673100815, -0.10750183850894277, -0.07174496550149943, -0.035895616626800894, 0.0, 0.035895616626800894, 0.07174496550149943, 0.10750183850894277, 0.14312014673100815, 0.17855397985304422, 0.2137576653401016, 0.24868582730667713, 0.28329344500409187, 0.31753591085011573, 0.3513690879260413, 0.3847493668670969, 0.4176337220728691, 0.44997976716528437, 0.4817458096226668, 0.5128909045194523, 0.5433749073022933, 0.5731585255345304, 0.6022033695423352, 0.6304720018972505, 0.6579279856713494, 0.6845359314028236, 0.7102615427114729, 0.7350716605053138, 0.7589343057213493, 0.7818187205454378, 0.8036954080581777, 0.8245361702557805, 0.8443141443970352, 0.8630038376297066, 0.8805811598520419, 0.8970234547675694, 0.9123095290941229, 0.9264196798912372, 0.9393357199742057, 0.9510410013893136, 0.9615204369360731, 0.9707605197472843, 0.9787493410038163, 0.9854766060684204, 0.9909336501109646, 0.995113458137992, 0.9980107215629823, 0.9996223504324843], ## 300: [-0.9999679782184367, -0.9998312829844194, -0.9995853734488863, -0.9992302218632736, -0.998765860353095, -0.9981923380734435, -0.9975097171758793, -0.9967180720510002, -0.9958174891208242, -0.9948080667630034, -0.9936899152742682, -0.9924631568471006, -0.9911279255509899, -0.9896843673150097, -0.9881326399103604, -0.9864729129322606, -0.9847053677808957, -0.9828301976412724, -0.9808476074619004, -0.9787578139322587, -0.9765610454590226, -0.9742575421410374, -0.9718475557430343, -0.9693313496680812, -0.9667091989287728, -0.9639813901171553, -0.9611482213733913, -0.9582100023531646, -0.9551670541938287, -0.9520197094793031, -0.948768312203718, -0.9454132177338137, -0.9419547927700982, -0.9383934153067653, -0.93472947459038, -0.9309633710773336, -0.927095516390074, -0.9231263332721162, -0.9190562555418367, -0.9148857280450583, -0.9106152066064294, -0.9062451579796031, -0.9017760597962232, -0.8972084005137192, -0.8925426793619202, -0.88777940628849, -0.8829191019031915, -0.8779622974209857, -0.8729095346039718, -0.8677613657021737, -0.8625183533931814, -0.8571810707206516, -0.8517501010316768, -0.846226037913026, -0.8406094851262689, -0.8349010565417858, -0.8291013760716742, -0.8232110776015571, -0.817230804921301, -0.8111612116546523, -0.8050029611877982, -0.7987567265968609, -0.7924231905743324, -0.7860030453544584, -0.77949699263758, -0.7729057435134394, -0.7662300183834609, -0.7594705468820128, -0.752628067796661, -0.7457033289874226, -0.7386970873050261, -0.7316101085081913, -0.7244431671799336, -0.7171970466429053, -0.7098725388737805, -0.7024704444166952, -0.6949915722957499, -0.6874367399265869, -0.6798067730270485, -0.6721025055269295, -0.664324779476831, -0.6564744449561274, -0.6485523599800557, -0.6405593904059368, -0.6324964098385406, -0.6243642995346039, -0.6161639483065119, -0.6078962524251537, -0.5995621155219635, -0.5911624484901564, -0.5826981693851706, -0.5741702033243276, -0.5655794823857192, -0.5569269455063353, -0.5482135383794405, -0.5394402133512136, -0.530607929316659, -0.5217176516148028, -0.5127703519231844, -0.5037670081516558, -0.4947086043354983, -0.4855961305278722, -0.4764305826916062, -0.4672129625903424, -0.45794427767904683, -0.44862554099389806, -0.43925777104156566, -0.42984199168789095, -0.4203792320459818, -0.410870526363734, -0.40131691391079155, -0.3917194388649578, -0.38207915019807054, -0.37239710156135264, -0.36267435117025176, -0.35291196168878075, -0.34311100011337214, -0.333272537656259, -0.32339764962839507, -0.3134874153219266, -0.3035429178922298, -0.29356524423952524, -0.2835554848900835, -0.27351473387703407, -0.26344408862079155, -0.25334464980911087, -0.24321752127678611, -0.233063809885005, -0.22288462540037263, -0.21268108037361766, -0.2024542900179944, -0.19220537208739363, -0.18193544675417583, -0.17164563648674022, -0.16133706592684258, -0.15101086176667575, -0.140668152625726, -0.1303100689274186, -0.1199377427755664, -0.10955230783063467, -0.0991548991858358, -0.08874665324306741, -0.07832870758870747, -0.0679022008692799, -0.057468272667004265, -0.0470280633752434, -0.03658271407386212, -0.02613336640451104, -0.015681162445849026, -0.005227244588717748, 0.005227244588717748, 0.015681162445849026, 0.02613336640451104, 0.03658271407386212, 0.0470280633752434, 0.057468272667004265, 0.0679022008692799, 0.07832870758870747, 0.08874665324306741, 0.0991548991858358, 0.10955230783063467, 0.1199377427755664, 0.1303100689274186, 0.140668152625726, 0.15101086176667575, 0.16133706592684258, 0.17164563648674022, 0.18193544675417583, 0.19220537208739363, 0.2024542900179944, 0.21268108037361766, 0.22288462540037263, 0.233063809885005, 0.24321752127678611, 0.25334464980911087, 0.26344408862079155, 0.27351473387703407, 0.2835554848900835, 0.29356524423952524, 0.3035429178922298, 0.3134874153219266, 0.32339764962839507, 0.333272537656259, 0.34311100011337214, 0.35291196168878075, 0.36267435117025176, 0.37239710156135264, 0.38207915019807054, 0.3917194388649578, 0.40131691391079155, 0.410870526363734, 0.4203792320459818, 0.42984199168789095, 0.43925777104156566, 0.44862554099389806, 0.45794427767904683, 0.4672129625903424, 0.4764305826916062, 0.4855961305278722, 0.4947086043354983, 0.5037670081516558, 0.5127703519231844, 0.5217176516148028, 0.530607929316659, 0.5394402133512136, 0.5482135383794405, 0.5569269455063353, 0.5655794823857192, 0.5741702033243276, 0.5826981693851706, 0.5911624484901564, 0.5995621155219635, 0.6078962524251537, 0.6161639483065119, 0.6243642995346039, 0.6324964098385406, 0.6405593904059368, 0.6485523599800557, 0.6564744449561274, 0.664324779476831, 0.6721025055269295, 0.6798067730270485, 0.6874367399265869, 0.6949915722957499, 0.7024704444166952, 0.7098725388737805, 0.7171970466429053, 0.7244431671799336, 0.7316101085081913, 0.7386970873050261, 0.7457033289874226, 0.752628067796661, 0.7594705468820128, 0.7662300183834609, 0.7729057435134394, 0.77949699263758, 0.7860030453544584, 0.7924231905743324, 0.7987567265968609, 0.8050029611877982, 0.8111612116546523, 0.817230804921301, 0.8232110776015571, 0.8291013760716742, 0.8349010565417858, 0.8406094851262689, 0.846226037913026, 0.8517501010316768, 0.8571810707206516, 0.8625183533931814, 0.8677613657021737, 0.8729095346039718, 0.8779622974209857, 0.8829191019031915, 0.88777940628849, 0.8925426793619202, 0.8972084005137192, 0.9017760597962232, 0.9062451579796031, 0.9106152066064294, 0.9148857280450583, 0.9190562555418367, 0.9231263332721162, 0.927095516390074, 0.9309633710773336, 0.93472947459038, 0.9383934153067653, 0.9419547927700982, 0.9454132177338137, 0.948768312203718, 0.9520197094793031, 0.9551670541938287, 0.9582100023531646, 0.9611482213733913, 0.9639813901171553, 0.9667091989287728, 0.9693313496680812, 0.9718475557430343, 0.9742575421410374, 0.9765610454590226, 0.9787578139322587, 0.9808476074619004, 0.9828301976412724, 0.9847053677808957, 0.9864729129322606, 0.9881326399103604, 0.9896843673150097, 0.9911279255509899, 0.9924631568471006, 0.9936899152742682, 0.9948080667630034, 0.9958174891208242, 0.9967180720510002, 0.9975097171758793, 0.9981923380734435, 0.998765860353095, 0.9992302218632736, 0.9995853734488863, 0.9998312829844194, 0.9999679782184367], #} def jacobian(f, x0, scalar=True, perturbation=1e-9, zero_offset=1e-7, args=(), **kwargs): """def test_fun(x): # test case - 2 inputs, 3 outputs - should work fine x2 = x[0]*x[0] return np.array([x2*exp(x[1]), x2*sin(x[1]), x2*cos(x[1])]) def easy_fun(x): x = x[0] return 5*x*x - 3*x - 100 """ # For scalar - returns list, size of input variables # For vector - returns list of list - size of input variables * output variables # Could add backwards/complex, multiple evaluations, detection of poor condition # types and limits base = f(x0, *args, **kwargs) if not scalar: base = list(base) # copy the base point x = list(x0) nx = len(x0) gradient = [] for i in range(nx): delta = x0[i]*(perturbation) if delta == 0: delta = zero_offset x[i] += delta point = f(x, *args, **kwargs) if scalar: dy = (point - base)/delta gradient.append(dy) else: delta_inv = 1.0/delta dys = [delta_inv*(p - b) for p, b in zip(point, base)] gradient.append(dys) x[i] -= delta if not scalar: # Transpose to be in standard form return list(map(list, zip(*gradient))) return gradient def hessian(f, x0, scalar=True, perturbation=1e-9, zero_offset=1e-7, full=True, args=(), **kwargs): # Takes n**2/2 + 3*n/2 + 1 function evaluations! Can still be quite fast. # For scalar - returns list[list], size of input variables # For vector - returns list of list of list - size of input variables * input variables * output variables # Could add backwards/complex, multiple evaluations, detection of poor condition # types and limits, jacobian as output, fevals base = f(x0, *args, **kwargs) nx = len(x0) if not isinstance(base, (float, int, complex)): try: ny = len(base) except: ny = 1 else: ny = 1 deltas = [] for i in range(nx): delta = x0[i]*(perturbation) if delta == 0.0: delta = zero_offset deltas.append(delta) deltas_inv = [1.0/di for di in deltas] x_perturb = list(x0) fs_perturb_i = [] for i in range(nx): x_perturb[i] += deltas[i] f_perturb_i = f(x_perturb, *args, **kwargs) fs_perturb_i.append(f_perturb_i) x_perturb[i] -= deltas[i] if full: hessian = [[None]*nx for _ in range(nx)] else: hessian = [] for i in range(nx): if not full: row = [] f_perturb_i = fs_perturb_i[i] x_perturb[i] += deltas[i] for j in range(i+1): f_perturb_j = fs_perturb_i[j] x_perturb[j] += deltas[j] f_perturb_ij = f(x_perturb, *args, **kwargs) if scalar: dii0 = (f_perturb_i - base)*deltas_inv[i] dii1 = (f_perturb_ij - f_perturb_j)*deltas_inv[i] dij = (dii1 - dii0)*deltas_inv[j] else: # dii0s = [(fi - bi)*deltas_inv[i] for fi, bi in zip(f_perturb_i, base)] # dii1s = [(fij - fj)*deltas_inv[i] for fij, fj in zip(f_perturb_ij, f_perturb_j)] # dij = [(di1 - di0)*deltas_inv[j] for di1, di0 in zip(dii1s, dii0s)] # Saves a good amount of time dij = [((f_perturb_ij[m] - f_perturb_j[m]) - (f_perturb_i[m] - base[m]))*deltas_inv[j]*deltas_inv[i] for m in range(ny)] if not full: row.append(dij) else: hessian[i][j] = hessian[j][i] = dij x_perturb[j] -= deltas[j] if not full: hessian.append(row) x_perturb[i] -= deltas[i] return hessian def stable_poly_to_unstable(coeffs, low, high): if high != low: # Handle the case of no transformation, no limits my_poly = Polynomial([-0.5*(high + low)*2.0/(high - low), 2.0/(high - low)]) coeffs = horner(coeffs, my_poly).coef[::-1].tolist() return coeffs def horner_backwards(x, coeffs): return horner(coeffs, x) def exp_horner_backwards(x, coeffs): return exp(horner(coeffs, x)) def exp_horner_backwards_and_der(x, coeffs): poly_val, poly_der = horner_and_der(coeffs, x) val = exp(poly_val) der = poly_der*val return val, der def exp_horner_backwards_and_der2(x, coeffs): poly_val, poly_der, poly_der2 = horner_and_der2(coeffs, x) val = exp(poly_val) der = poly_der*val der2 = (poly_der*poly_der + poly_der2)*val return val, der, der2 def exp_horner_backwards_and_der3(x, coeffs): poly_val, poly_der, poly_der2, poly_der3 = horner_and_der3(coeffs, x) val = exp(poly_val) der = poly_der*val der2 = (poly_der*poly_der + poly_der2)*val der3 = (poly_der*poly_der*poly_der + 3.0*poly_der*poly_der2 + poly_der3)*val return val, der, der2, der3 def horner_backwards_ln_tau(T, Tc, coeffs): if T >= Tc: return 0.0 lntau = log(1.0 - T/Tc) return horner(coeffs, lntau) def horner_backwards_ln_tau_and_der(T, Tc, coeffs): if T >= Tc: return 0.0, 0.0 lntau = log(1.0 - T/Tc) val, poly_der = horner_and_der(coeffs, lntau) der = -poly_der/(Tc*(-T/Tc + 1)) return val, der def horner_backwards_ln_tau_and_der2(T, Tc, coeffs): if T >= Tc: return 0.0, 0.0, 0.0 lntau = log(1.0 - T/Tc) val, poly_der, poly_der2 = horner_and_der2(coeffs, lntau) der = -poly_der/(Tc*(-T/Tc + 1)) der2 = (-poly_der + poly_der2)/(Tc**2*(T/Tc - 1)**2) return val, der, der2 def horner_backwards_ln_tau_and_der3(T, Tc, coeffs): if T >= Tc: return 0.0, 0.0, 0.0, 00 lntau = log(1.0 - T/Tc) val, poly_der, poly_der2, poly_der3 = horner_and_der3(coeffs, lntau) der = -poly_der/(Tc*(-T/Tc + 1)) der2 = (-poly_der + poly_der2)/(Tc**2*(T/Tc - 1)**2) der3 = (2.0*poly_der - 3.0*poly_der2 + poly_der3)/(Tc**3*(T/Tc - 1)**3) return val, der, der2, der3 def exp_horner_backwards_ln_tau(T, Tc, coeffs): # This formulation has the nice property of being linear-linear when plotted # for surface tension if T >= Tc: return 0.0 # No matter what the polynomial term does to it, as tau goes to 1, x goes to a large negative value # So long as the polynomial has the right derivative at the end (and a reasonable constant) it will always converge to 0. lntau = log(1.0 - T/Tc) # Guarantee it is larger than 0 with the exp # This is a linear plot as well because both variables are transformed into a log basis. return exp(horner(coeffs, lntau)) def exp_horner_backwards_ln_tau_and_der(T, Tc, coeffs): if T >= Tc: return 0.0 tau = 1.0 - T/Tc lntau = log(tau) poly_val, poly_der_val = horner_and_der(coeffs, lntau) val = exp(poly_val) return val, -val*poly_der_val/(Tc*tau) def exp_horner_backwards_ln_tau_and_der2(T, Tc, coeffs): if T >= Tc: return 0.0 tau = 1.0 - T/Tc lntau = log(tau) poly_val, poly_val_der, poly_val_der2 = horner_and_der2(coeffs, lntau) val = exp(poly_val) der = -val*poly_val_der/(Tc*tau) der2 = (poly_val_der*poly_val_der - poly_val_der + poly_val_der2)*val/(Tc*Tc*(tau*tau)) return val, der, der2 def exp_poly_ln_tau_coeffs2(T, Tc, val, der): ''' from sympy import * T, Tc, T0, T1, T2, sigma0, sigma1, sigma2 = symbols('T, Tc, T0, T1, T2, sigma0, sigma1, sigma2') val, der = symbols('val, der') from sympy.abc import a, b, c from fluids.numerics import horner coeffs = [a, b] lntau = log(1 - T/Tc) sigma = exp(horner(coeffs, lntau)) d0 = diff(sigma, T) Eq0 = Eq(sigma,val) Eq1 = Eq(d0, der) s = solve([Eq0, Eq1], [a, b]) ''' c0 = der*(T - Tc)/val c1 = (-T*der*log((-T + Tc)/Tc) + Tc*der*log((-T + Tc)/Tc) + val*log(val))/val return [c0, c1] def exp_poly_ln_tau_coeffs3(T, Tc, val, der, der2): ''' from sympy import * T, Tc, T0, T1, T2, sigma0, sigma1, sigma2 = symbols('T, Tc, T0, T1, T2, sigma0, sigma1, sigma2') val, der, der2 = symbols('val, der, der2') from sympy.abc import a, b, c from fluids.numerics import horner coeffs = [a, b, c] lntau = log(1 - T/Tc) sigma = exp(horner(coeffs, lntau)) d0 = diff(sigma, T) Eq0 = Eq(sigma,val) Eq1 = Eq(d0, der) Eq2 = Eq(diff(d0, T), der2) # s = solve([Eq0, Eq1], [a, b]) s = solve([Eq0, Eq1, Eq2], [a, b, c]) ''' return [(-T**2*der**2 + T**2*der2*val + 2*T*Tc*der**2 - 2*T*Tc*der2*val + T*der*val - Tc**2*der**2 + Tc**2*der2*val - Tc*der*val)/(2*val**2), (T**2*der**2*log((-T + Tc)/Tc) - T**2*der2*val*log((-T + Tc)/Tc) - 2*T*Tc*der**2*log((-T + Tc)/Tc) + 2*T*Tc*der2*val*log((-T + Tc)/Tc) - T*der*val*log((-T + Tc)/Tc) + T*der*val + Tc**2*der**2*log((-T + Tc)/Tc) - Tc**2*der2*val*log((-T + Tc)/Tc) + Tc*der*val*log((-T + Tc)/Tc) - Tc*der*val)/val**2, (-T**2*der**2*log((-T + Tc)/Tc)**2 + T**2*der2*val*log((-T + Tc)/Tc)**2 + 2*T*Tc*der**2*log((-T + Tc)/Tc)**2 - 2*T*Tc*der2*val*log((-T + Tc)/Tc)**2 + T*der*val*log((-T + Tc)/Tc)**2 - 2*T*der*val*log((-T + Tc)/Tc) - Tc**2*der**2*log((-T + Tc)/Tc)**2 + Tc**2*der2*val*log((-T + Tc)/Tc)**2 - Tc*der*val*log((-T + Tc)/Tc)**2 + 2*Tc*der*val*log((-T + Tc)/Tc) + 2*val**2*log(val))/(2*val**2)] def horner_domain(x, coeffs, xmin, xmax): r'''Evaluates a polynomial defined by coefficienfs `coeffs` and domain (`xmin`, `xmax`) which maps the input variable into the window (-1, 1) where the polynomial can be evaluated most acccurately. The evaluation uses horner's method. Note that the coefficients are reversed compared to the common form; the first value is the coefficient of the highest-powered x term, and the last value in `coeffs` is the constant offset value. Parameters ---------- x : float Point at which to evaluate the polynomial, [-] coeffs : iterable[float] Coefficients of polynomial, [-] xmin : float Low value, [-] xmax : float High value, [-] Returns ------- val : float The evaluated value of the polynomial, [-] Notes ----- ''' range_inv = 1.0/(xmax - xmin) off = (-xmax - xmin)*range_inv scl = 2.0*range_inv x = off + scl*x tot = 0.0 for c in coeffs: tot = tot*x + c return tot def polynomial_offset_scale(xmin, xmax): range_inv = 1.0/(xmax - xmin) offset = (-xmax - xmin)*range_inv scale = 2.0*range_inv return offset, scale def horner_stable(x, coeffs, offset, scale): x = offset + scale*x tot = 0.0 for c in coeffs: tot = tot*x + c return tot def horner_stable_and_der(x, coeffs, offset, scale): x = offset + scale*x f = 0.0 der = 0.0 for a in coeffs: der = x*der + f f = x*f + a return (f, der*scale) def horner_stable_and_der2(x, coeffs, offset, scale): x = offset + scale*x f, der, der2 = 0.0, 0.0, 0.0 for a in coeffs: der2 = x*der2 + der der = x*der + f f = x*f + a return (f, der*scale, scale*scale*(der2 + der2)) def horner_stable_and_der3(x, coeffs, offset, scale): x = offset + scale*x f, der, der2, der3 = 0.0, 0.0, 0.0, 0.0 for a in coeffs: der3 = x*der3 + der2 der2 = x*der2 + der der = x*der + f f = x*f + a scale2 = scale*scale return (f, der*scale, scale2*(der2 + der2), scale2*scale*der3*6.0) def horner_stable_and_der4(x, coeffs, offset, scale): x = offset + scale*x f, der, der2, der3, der4 = 0.0, 0.0, 0.0, 0.0, 0.0 for a in coeffs: der4 = x*der4 + der3 der3 = x*der3 + der2 der2 = x*der2 + der der = x*der + f f = x*f + a scale2 = scale*scale return (f, der*scale, scale2*(der2 + der2), scale2*scale*der3*6.0, scale2*scale2*der4*24.0) def horner_stable_ln_tau(T, Tc, coeffs, offset, scale): if T >= Tc: return 0.0 lntau = log(1.0 - T/Tc) return horner_stable(lntau, coeffs, offset, scale) def horner_stable_ln_tau_and_der(T, Tc, coeffs, offset, scale): if T >= Tc: return 0.0, 0.0 lntau = log(1.0 - T/Tc) val, poly_der = horner_stable_and_der(lntau, coeffs, offset, scale) der = -poly_der/(Tc*(-T/Tc + 1)) return val, der def horner_stable_ln_tau_and_der2(T, Tc, coeffs, offset, scale): if T >= Tc: return 0.0, 0.0, 0.0 lntau = log(1.0 - T/Tc) val, poly_der, poly_der2 = horner_stable_and_der2(lntau, coeffs, offset, scale) der = -poly_der/(Tc*(-T/Tc + 1)) der2 = (-poly_der + poly_der2)/(Tc**2*(T/Tc - 1)**2) return val, der, der2 def horner_stable_ln_tau_and_der3(T, Tc, coeffs, offset, scale): if T >= Tc: return 0.0, 0.0, 0.0, 00 lntau = log(1.0 - T/Tc) val, poly_der, poly_der2, poly_der3 = horner_stable_and_der3(lntau, coeffs, offset, scale) der = -poly_der/(Tc*(-T/Tc + 1)) der2 = (-poly_der + poly_der2)/(Tc**2*(T/Tc - 1)**2) der3 = (2.0*poly_der - 3.0*poly_der2 + poly_der3)/(Tc**3*(T/Tc - 1)**3) return val, der, der2, der3 def exp_horner_stable(x, coeffs, offset, scale): return trunc_exp(horner_stable(x, coeffs, offset, scale)) def exp_horner_stable_and_der(x, coeffs, offset, scale): poly_val, poly_der = horner_stable_and_der(x, coeffs, offset, scale) val = exp(poly_val) der = poly_der*val return val, der def exp_horner_stable_and_der2(x, coeffs, offset, scale): poly_val, poly_der, poly_der2 = horner_stable_and_der2(x, coeffs, offset, scale) val = exp(poly_val) der = poly_der*val der2 = (poly_der*poly_der + poly_der2)*val return val, der, der2 def exp_horner_stable_and_der3(x, coeffs, offset, scale): poly_val, poly_der, poly_der2, poly_der3 = horner_stable_and_der3(x, coeffs, offset, scale) val = exp(poly_val) der = poly_der*val der2 = (poly_der*poly_der + poly_der2)*val der3 = (poly_der*poly_der*poly_der + 3.0*poly_der*poly_der2 + poly_der3)*val return val, der, der2, der3 def exp_horner_stable_ln_tau(T, Tc, coeffs, offset, scale): if T >= Tc: return 0.0 lntau = log(1.0 - T/Tc) return exp(horner_stable(lntau, coeffs, offset, scale)) def exp_horner_stable_ln_tau_and_der(T, Tc, coeffs, offset, scale): if T >= Tc: return 0.0, 0.0 tau = 1.0 - T/Tc lntau = log(tau) poly_val, poly_der_val = horner_stable_and_der(lntau, coeffs, offset, scale) val = exp(poly_val) return val, -val*poly_der_val/(Tc*tau) def exp_horner_stable_ln_tau_and_der2(T, Tc, coeffs, offset, scale): if T >= Tc: return 0.0, 0.0, 0.0 tau = 1.0 - T/Tc lntau = log(tau) poly_val, poly_val_der, poly_val_der2 = horner_stable_and_der2(lntau, coeffs, offset, scale) val = exp(poly_val) der = -val*poly_val_der/(Tc*tau) der2 = (poly_val_der*poly_val_der - poly_val_der + poly_val_der2)*val/(Tc*Tc*(tau*tau)) return val, der, der2 def exp_cheb(x, coeffs, offset, scale): y = chebval(x, coeffs, offset, scale) return trunc_exp(y) def exp_cheb_and_der(x, coeffs, der_coeffs, offset, scale): poly_val = chebval(x, coeffs, offset, scale) poly_der = chebval(x, der_coeffs, offset, scale) val = exp(poly_val) der = poly_der*val return val, der def exp_cheb_and_der2(x, coeffs, der_coeffs, der2_coeffs, offset, scale): poly_val = chebval(x, coeffs, offset, scale) poly_der = chebval(x, der_coeffs, offset, scale) poly_der2 = chebval(x, der2_coeffs, offset, scale) val = exp(poly_val) der = poly_der*val der2 = (poly_der*poly_der + poly_der2)*val return val, der, der2 def exp_cheb_and_der3(x, coeffs, der_coeffs, der2_coeffs, der3_coeffs, offset, scale): poly_val = chebval(x, coeffs, offset, scale) poly_der = chebval(x, der_coeffs, offset, scale) poly_der2 = chebval(x, der2_coeffs, offset, scale) poly_der3 = chebval(x, der3_coeffs, offset, scale) val = exp(poly_val) der = poly_der*val der2 = (poly_der*poly_der + poly_der2)*val der3 = (poly_der*poly_der*poly_der + 3.0*poly_der*poly_der2 + poly_der3)*val return val, der, der2, der3 def exp_cheb_ln_tau(T, Tc, coeffs, offset, scale): if T >= Tc: return 0.0 lntau = log(1.0 - T/Tc) y = chebval(lntau, coeffs, offset, scale) return trunc_exp(y) def exp_cheb_ln_tau_and_der(T, Tc, coeffs, der_coeffs, offset, scale): if T >= Tc: return 0.0, 0.0 tau = 1.0 - T/Tc lntau = log(tau) poly_val = chebval(lntau, coeffs, offset, scale) poly_der_val = chebval(lntau, der_coeffs, offset, scale) val = exp(poly_val) return val, -val*poly_der_val/(Tc*tau) def exp_cheb_ln_tau_and_der2(T, Tc, coeffs, der_coeffs, der2_coeffs, offset, scale): if T >= Tc: return 0.0, 0.0, 0.0 tau = 1.0 - T/Tc lntau = log(tau) poly_val = chebval(lntau, coeffs, offset, scale) poly_val_der = chebval(lntau, der_coeffs, offset, scale) poly_val_der2 = chebval(lntau, der2_coeffs, offset, scale) val = exp(poly_val) der = -val*poly_val_der/(Tc*tau) der2 = (poly_val_der*poly_val_der - poly_val_der + poly_val_der2)*val/(Tc*Tc*(tau*tau)) return val, der, der2 def chebval_ln_tau(T, Tc, coeffs, offset, scale): if T >= Tc: return 0.0 lntau = log(1.0 - T/Tc) poly_val = chebval(lntau, coeffs, offset, scale) return poly_val def chebval_ln_tau_and_der(T, Tc, coeffs, der_coeffs, offset, scale): if T >= Tc: return 0.0, 0.0 lntau = log(1.0 - T/Tc) val = chebval(lntau, coeffs, offset, scale) poly_der = chebval(lntau, der_coeffs, offset, scale) der = -poly_der/(Tc*(-T/Tc + 1)) return val, der def chebval_ln_tau_and_der2(T, Tc, coeffs, der_coeffs, der2_coeffs, offset, scale): if T >= Tc: return 0.0, 0.0, 0.0 lntau = log(1.0 - T/Tc) val = chebval(lntau, coeffs, offset, scale) poly_der = chebval(lntau, der_coeffs, offset, scale) poly_der2 = chebval(lntau, der2_coeffs, offset, scale) der = -poly_der/(Tc*(-T/Tc + 1)) der2 = (-poly_der + poly_der2)/(Tc**2*(T/Tc - 1)**2) return val, der, der2 def chebval_ln_tau_and_der3(T, Tc, coeffs, der_coeffs, der2_coeffs, der3_coeffs, offset, scale): if T >= Tc: return 0.0, 0.0, 0.0, 00 lntau = log(1.0 - T/Tc) val = chebval(lntau, coeffs, offset, scale) poly_der = chebval(lntau, der_coeffs, offset, scale) poly_der2 = chebval(lntau, der2_coeffs, offset, scale) poly_der3 = chebval(lntau, der3_coeffs, offset, scale) der = -poly_der/(Tc*(-T/Tc + 1)) der2 = (-poly_der + poly_der2)/(Tc**2*(T/Tc - 1)**2) der3 = (2.0*poly_der - 3.0*poly_der2 + poly_der3)/(Tc**3*(T/Tc - 1)**3) return val, der, der2, der3 def horner(coeffs, x): r'''Evaluates a polynomial defined by coefficienfs `coeffs` at a specified scalar `x` value, using the horner method. This is the most efficient formula to evaluate a polynomial (assuming non-zero coefficients for all terms). This has been added to the `fluids` library because of the need to frequently evaluate polynomials; and `NumPy`'s polyval is actually quite slow for scalar values. Note that the coefficients are reversed compared to the common form; the first value is the coefficient of the highest-powered x term, and the last value in `coeffs` is the constant offset value. Parameters ---------- coeffs : iterable[float] Coefficients of polynomial, [-] x : float Point at which to evaluate the polynomial, [-] Returns ------- val : float The evaluated value of the polynomial, [-] Notes ----- For maximum speed, provide a list of Python floats and `x` should also be of type `float` to avoid either `NumPy` types or slow python ints. Compare the speed with numpy via: >>> coeffs = np.random.uniform(0, 1, size=15) >>> coeffs_list = coeffs.tolist() %timeit np.polyval(coeffs, 10.0) `np.polyval` takes on the order of 15 us; `horner`, 1 us. Examples -------- >>> horner([1.0, 3.0], 2.0) 5.0 >>> horner([21.24288737657324, -31.326919865992743, 23.490607246508382, -14.318875366457021, 6.993092901276407, -2.6446094897570775, 0.7629439408284319, -0.16825320656035953, 0.02866101768198035, -0.0038190069303978003, 0.0004027586707189051, -3.394447111198843e-05, 2.302586717011523e-06, -1.2627393196517083e-07, 5.607585274731649e-09, -2.013760843818914e-10, 5.819957519561292e-12, -1.3414794055766234e-13, 2.430101267966631e-15, -3.381444175898971e-17, 3.4861255675373234e-19, -2.5070616549039004e-21, 1.122234904781319e-23, -2.3532795334141448e-26], 300.0) 1.9900667478569642e+58 References ---------- .. [1] "Horner’s Method." Wikipedia, October 6, 2018. https://en.wikipedia.org/w/index.php?title=Horner%27s_method&oldid=862709437. ''' tot = 0.0 for c in coeffs: tot = tot*x + c return tot def horner_and_der(coeffs, x): # Coefficients in same order as for horner f = 0.0 der = 0.0 for a in coeffs: der = x*der + f f = x*f + a return (f, der) def horner_and_der2(coeffs, x): # Coefficients in same order as for horner f, der, der2 = 0.0, 0.0, 0.0 for a in coeffs: der2 = x*der2 + der der = x*der + f f = x*f + a return (f, der, der2 + der2) def horner_and_der3(coeffs, x): # Coefficients in same order as for horner # Tested f, der, der2, der3 = 0.0, 0.0, 0.0, 0.0 for a in coeffs: der3 = x*der3 + der2 der2 = x*der2 + der der = x*der + f f = x*f + a return (f, der, der2 + der2, der3*6.0) def horner_and_der4(coeffs, x): # Coefficients in same order as for horner # Tested f, der, der2, der3, der4 = 0.0, 0.0, 0.0, 0.0, 0.0 for a in coeffs: der4 = x*der4 + der3 der3 = x*der3 + der2 der2 = x*der2 + der der = x*der + f f = x*f + a return (f, der, der2 + der2, der3*6.0, der4*24.0) def quadratic_from_points(x0, x1, x2, f0, f1, f2): ''' from sympy import * f, a, b, c, x, x0, x1, x2, f0, f1, f2 = symbols('f, a, b, c, x, x0, x1, x2, f0, f1, f2') func = a*x**2 + b*x + c Eq0 = Eq(func.subs(x, x0), f0) Eq1 = Eq(func.subs(x, x1), f1) Eq2 = Eq(func.subs(x, x2), f2) sln = solve([Eq0, Eq1, Eq2], [a, b, c]) cse([sln[a], sln[b], sln[c]], optimizations='basic', symbols=utilities.iterables.numbered_symbols(prefix='v')) ''' v0 = -x2 v1 = f0*(v0 + x1) v2 = f2*(x0 - x1) v3 = f1*(v0 + x0) v4 = x2*x2 v5 = x0*x0 v6 = x1*x1 v7 = 1.0/(v4*x0 + v5*x1 + v6*x2 - (v4*x1 + v5*x2 + v6*x0)) v8 = -v4 a = v7*(v1 + v2 - v3) b = -v7*(f0*(v6 + v8) - f1*(v5 + v8) + f2*(v5 - v6)) c = v7*(v1*x1*x2 + v2*x0*x1 - v3*x0*x2) return (a, b, c) def quadratic_from_f_ders(x, v, d1, d2): '''from sympy import * f, a, b, c, x, v, d1, d2 = symbols('f, a, b, c, x, v, d1, d2') f0 = a*x**2 + b*x + c f1 = diff(f0, x) f2 = diff(f0, x, 2) solve([Eq(f0, v), Eq(f1, d1), Eq(f2, d2)], [a, b, c]) ''' a = d2*0.5 b = d1 - d2*x c = -d1*x + d2*x*x*0.5 + v return [a, b, c] def is_poly_positive(poly, domain=None, rand_pts=10, j_tol=1e-12, root_perturb=1e-12): # Returns True if positive everywhere in the specified domain (or globally) if domain is None: # 1e-100 to 1e100 pts = logspace(-100, 100, rand_pts//2) pts += [-i for i in pts] else: pts = linspace(domain[0], domain[1], rand_pts) for p in pts: if horner(poly, p) < 0.0: return False roots = np.roots(poly) for root in roots: r = root.real if abs(root.imag/r) < j_tol: if (domain is not None) and (r < domain[0] or r > domain[1]): continue eps_high, eps_low = r*(1.0 + root_perturb), r*(1.0 - root_perturb) if horner(poly, eps_high) < 0: return False if horner(poly, eps_low) < 0: return False return True def is_poly_negative(poly, domain=None, rand_pts=10, j_tol=1e-12, root_perturb=1e-12): # Returns True if negative everywhere in the specified domain (or globally) poly = [-i for i in poly]# Changes the sign of all polynomial calculated values return is_poly_positive(poly, domain=domain, rand_pts=rand_pts, j_tol=j_tol, root_perturb=root_perturb) def min_max_ratios(actual, calculated): '''Given known and calculated data, compare the two and provide two numbers describing how far away from the known data the calculated data is. The numbers are the ratio of the lowest relative calc, and the highest relative calc. ''' min_ratio = max_ratio = 1.0 for i in range(len(actual)): if actual[i] == 0.0: r = 1.0 if calculated[i] == actual[i] else 10.0 else: r = calculated[i]/actual[i] if r < min_ratio: min_ratio = r elif r > max_ratio: max_ratio = r return min_ratio, max_ratio def std(data): '''Fast implementation of numpy's std function for 1d inputs only, with double precision only always. ''' tot = 0.0 N = len(data) for i in range(N): tot += data[i] mean = tot/N tot = 0.0 for i in range(N): v = (data[i] - mean) tot += v*v return sqrt(tot/N) def polyder(c, m=1, scl=1, axis=0): """not quite a copy of numpy's version because this was faster to implement.""" cnt = m if cnt == 0: return c n = len(c) if cnt >= n: c = c[:1]*0 else: for i in range(cnt): # normally only happens once n = n - 1 der = [0.0]*n for j in range(n, 0, -1): der[j - 1] = j*c[j] c = der return c def polyint(coeffs): """not quite a copy of numpy's version because this was faster to implement. Tried out a bunch of optimizations, and this hits a good balance between CPython and pypy speed.""" # return ([0.0] + [c/(i+1) for i, c in enumerate(coeffs[::-1])])[::-1] N = len(coeffs) out = [0.0]*(N+1) for i in range(N): out[i] = coeffs[i]/(N-i) return out def polyint_over_x(coeffs): N = len(coeffs) log_coef = coeffs[-1] Nm1 = N - 1 poly_terms = [0.0]*N for i in range(Nm1): poly_terms[i] = coeffs[i]/(Nm1-i) return poly_terms, log_coef # N = len(coeffs) # log_coef = coeffs[-1] # Nm1 = N - 1 # poly_terms = [coeffs[Nm1-i]/i for i in range(N-1, 0, -1)] # poly_terms.append(0.0) # return poly_terms, log_coef # coeffs = coeffs[::-1] # log_coef = coeffs[0] # poly_terms = [0.0] # for i in range(1, len(coeffs)): # poly_terms.append(coeffs[i]/i) # return list(reversed(poly_terms)), log_coef # def horner_log(coeffs, log_coeff, x): """Technically possible to save one addition of the last term of coeffs is removed but benchmarks said nothing was saved.""" tot = 0.0 for c in coeffs: tot = tot*x + c return tot + log_coeff*log(x) def fit_integral_linear_extrapolation(T1, T2, int_coeffs, Tmin, Tmax, Tmin_value, Tmax_value, Tmin_slope, Tmax_slope): # Order T1, T2 so T2 is always larger for simplicity flip = T1 > T2 if flip: T1, T2 = T2, T1 tot = 0.0 if T1 < Tmin: T2_low = T2 if T2 < Tmin else Tmin x1 = Tmin_value - Tmin_slope*Tmin tot += T2_low*(0.5*Tmin_slope*T2_low + x1) - T1*(0.5*Tmin_slope*T1 + x1) if (Tmin <= T1 <= Tmax) or (Tmin <= T2 <= Tmax) or (T1 <= Tmin and T2 >= Tmax): T1_mid = T1 if T1 > Tmin else Tmin T2_mid = T2 if T2 < Tmax else Tmax tot += (horner(int_coeffs, T2_mid) - horner(int_coeffs, T1_mid)) if T2 > Tmax: T1_high = T1 if T1 > Tmax else Tmax x1 = Tmax_value - Tmax_slope*Tmax tot += T2*(0.5*Tmax_slope*T2 + x1) - T1_high*(0.5*Tmax_slope*T1_high + x1) if flip: return -tot return tot def poly_fit_integral_value(T, int_coeffs, Tmin, Tmax, Tmin_value, Tmax_value, Tmin_slope, Tmax_slope): # Can still save 1 horner evaluation (all of them for height T), but will be VERY messy. if T < Tmin: x1 = Tmin_value - Tmin_slope*Tmin tot = T*(0.5*Tmin_slope*T + x1) return tot if (Tmin <= T <= Tmax): tot1 = horner(int_coeffs, T) - horner(int_coeffs, Tmin) x1 = Tmin_value - Tmin_slope*Tmin tot = Tmin*(0.5*Tmin_slope*Tmin + x1) return tot + tot1 else: x1 = Tmin_value - Tmin_slope*Tmin tot = Tmin*(0.5*Tmin_slope*Tmin + x1) tot1 = horner(int_coeffs, Tmax) - horner(int_coeffs, Tmin) x1 = Tmax_value - Tmax_slope*Tmax tot2 = T*(0.5*Tmax_slope*T + x1) - Tmax*(0.5*Tmax_slope*Tmax + x1) return tot1 + tot + tot2 def fit_integral_over_T_linear_extrapolation(T1, T2, T_int_T_coeffs, poly_fit_log_coeff, Tmin, Tmax, Tmin_value, Tmax_value, Tmin_slope, Tmax_slope): # Order T1, T2 so T2 is always larger for simplicity flip = T1 > T2 if flip: T1, T2 = T2, T1 tot = 0.0 if T1 < Tmin: T2_low = T2 if T2 < Tmin else Tmin x1 = Tmin_value - Tmin_slope*Tmin tot += (Tmin_slope*T2_low + x1*log(T2_low)) - (Tmin_slope*T1 + x1*log(T1)) if (Tmin <= T1 <= Tmax) or (Tmin <= T2 <= Tmax) or (T1 <= Tmin and T2 >= Tmax): T1_mid = T1 if T1 > Tmin else Tmin T2_mid = T2 if T2 < Tmax else Tmax tot += (horner_log(T_int_T_coeffs, poly_fit_log_coeff, T2_mid) - horner_log(T_int_T_coeffs, poly_fit_log_coeff, T1_mid)) if T2 > Tmax: T1_high = T1 if T1 > Tmax else Tmax x1 = Tmax_value - Tmax_slope*Tmax tot += (Tmax_slope*T2 + x1*log(T2)) - (Tmax_slope*T1_high + x1*log(T1_high)) if flip: return -tot return tot def poly_fit_integral_over_T_value(T, T_int_T_coeffs, poly_fit_log_coeff, Tmin, Tmax, Tmin_value, Tmax_value, Tmin_slope, Tmax_slope): if T < Tmin: x1 = Tmin_value - Tmin_slope*Tmin tot = (Tmin_slope*T + x1*log(T)) return tot if (Tmin <= T <= Tmax): tot1 = (horner_log(T_int_T_coeffs, poly_fit_log_coeff, T) - horner_log(T_int_T_coeffs, poly_fit_log_coeff, Tmin)) x1 = Tmin_value - Tmin_slope*Tmin tot = (Tmin_slope*Tmin + x1*log(Tmin)) return tot + tot1 else: x1 = Tmin_value - Tmin_slope*Tmin tot = (Tmin_slope*Tmin + x1*log(Tmin)) tot1 = (horner_log(T_int_T_coeffs, poly_fit_log_coeff, Tmax) - horner_log(T_int_T_coeffs, poly_fit_log_coeff, Tmin)) x2 = Tmax_value -Tmax*Tmax_slope tot2 = (-Tmax_slope*(Tmax - T) + x2*log(T) - x2*log(Tmax)) return tot1 + tot + tot2 def evaluate_linear_fits(data, x): calc = [] low_limits, high_limits, coeffs = data[0], data[3], data[6] for i in range(len(data[0])): if x < low_limits[i]: v = (x - low_limits[i])*data[1][i] + data[2][i] elif x > high_limits[i]: v = (x - high_limits[i])*data[4][i] + data[5][i] else: v = 0.0 for c in coeffs[i]: v = v*x + c # v = horner(coeffs[i], x) calc.append(v) return calc def evaluate_linear_fits_d(data, x): calc = [] low_limits, high_limits, dcoeffs = data[0], data[3], data[7] for i in range(len(data[0])): if x < low_limits[i]: dv = data[1][i] elif x > high_limits[i]: dv = data[4][i] else: dv = 0.0 for c in dcoeffs[i]: dv = dv*x + c calc.append(dv) return calc def evaluate_linear_fits_d2(data, x): calc = [] low_limits, high_limits, d2coeffs = data[0], data[3], data[8] for i in range(len(data[0])): d2v = 0.0 if low_limits[i] < x < high_limits[i]: for c in d2coeffs[i]: d2v = d2v*x + c calc.append(d2v) return calc def chebval(x, c, offset=0.0, scale=1.0): # Pure Python implementation of numpy.polynomial.chebyshev.chebval # This routine is faster in CPython as well as PyPy # Approxximately 2 adds and a multiply per coefficient x = offset + scale*x len_c = len(c) if len_c == 1: c0, c1 = c[0], 0.0 elif len_c == 2: c0, c1 = c[0], c[1] else: x2 = 2.0*x c0, c1 = c[-2], c[-1] for i in range(3, len_c + 1): c0_prev = c0 c0 = c[-i] - c1 c1 = c0_prev + c1*x2 return c0 + c1*x def chebder(c, m=1, scl=1.0): """not quite a copy of numpy's version because this was faster to implement. This does not evaluate the value of a cheb series at a point; it returns a new chebyshev seriese to be evaluated by chebval. """ c = list(c) cnt = int(m) if cnt == 0: return c n = len(c) if cnt >= n: c = [] else: for i in range(cnt): n = n - 1 if scl != 1.0: for j in range(len(c)): c[j] *= scl der = [0.0 for _ in range(n)] for j in range(n, 2, -1): der[j - 1] = (j + j)*c[j] c[j - 2] += (j*c[j])/(j - 2.0) if n > 1: der[1] = 4.0*c[2] der[0] = c[1] c = der return c def chebint(c, m=1, lbnd=0, scl=1): # k=[], is used by numpy to provide integration constants cnt = int(m) # the order of integration if cnt < 0: raise ValueError("Negative integration error not allowed") # if len(k) > cnt: # raise ValueError("Size of integration constants not consistent with order of integration") if cnt == 0: return c # k = list(k) + [0]*(cnt - len(k)) n = len(c) c2 = [0.0]*n # Make a copy of c for i in range(n): c2[i] = c[i] c = c2 for i in range(cnt): n = len(c) for o in range(n): c[o] *= scl if n == 1 and c[0] == 0: pass # c[0] += k[i] else: tmp = [0.0]*(n+1) tmp[1] = c[0] if n > 1: tmp[2] = c[1]/4 for j in range(2, n): cval = c[j] tmp[j + 1] = cval/(2.0*(j + 1.0)) tmp[j - 1] -= cval/(2.0*(j - 1.0)) # Scale is handled separately # tmp[0] += k[i] - chebval(lbnd, tmp) tmp[0] -= chebval(lbnd, tmp) c = tmp return c def binary_search(key, arr, size=None): if size is None: size = len(arr) imin = 0 imax = size if key > arr[size - 1]: return size while imin < imax: imid = imin + ((imax - imin) >> 1) if key >= arr[imid]: imin = imid + 1 else: imax = imid return imin - 1 def isclose(a, b, rel_tol=1e-9, abs_tol=0.0): """Pure python and therefore slow version of the standard library isclose. Works on older versions of python though! Hasn't been unit tested, but has been tested. manual unit testing: from math import isclose as isclose2 from random import uniform for i in range(10000000): a = uniform(-1, 1) b = uniform(-1, 1) rel_tol = uniform(0, 1) abs_tol = uniform(0, .001) ans1 = isclose(a, b, rel_tol, abs_tol) ans2 = isclose2(a, b, rel_tol=rel_tol, abs_tol=abs_tol) try: assert ans1 == ans2 except: print(a, b, rel_tol, abs_tol) """ if (rel_tol < 0.0 or abs_tol < 0.0 ): raise ValueError('Negative tolerances') if ((a.real == b.real) and (a.imag == b.imag)): return True if (isinf(a.real) or isinf(a.imag) or isinf(b.real) or isinf(b.imag)): return False diff = abs(a - b) return (((diff <= rel_tol*abs(b)) or (diff <= rel_tol*abs(a))) or (diff <= abs_tol)) try: from math import isclose except ImportError: pass def assert_close(a, b, rtol=1e-7, atol=0.0): if a is b: # Nice to handle None return True if __debug__: # Do not run these branches in -O, -OO mode try: try: assert isclose(a, b, rel_tol=rtol, abs_tol=atol) return except: assert cisclose(a, b, rel_tol=rtol, abs_tol=atol) return except: pass from numpy.testing import assert_allclose return assert_allclose(a, b, rtol=rtol, atol=atol) def assert_close1d(a, b, rtol=1e-7, atol=0.0): N = len(a) if N != len(b): raise ValueError("Variables are not the same length: %d, %d" %(N, len(b))) for i in range(N): assert_close(a[i], b[i], rtol=rtol, atol=atol) def assert_close2d(a, b, rtol=1e-7, atol=0.0): # N = len(a) # if N != len(b): # raise ValueError("Variables are not the same length: %d, %d" %(N, len(b))) # for i in range(N): # assert_close1d(a[i], b[i], rtol=rtol, atol=atol) N = len(a) if N != len(b): raise ValueError("Variables are not the same length: %d, %d" %(N, len(b))) if not __debug__: # Do not run these branches in -O, -OO mode from numpy.testing import assert_allclose return assert_allclose(a, b, rtol=rtol, atol=atol) for i in range(N): a0, b0 = a[i], b[i] N0 = len(a0) if N0 != len(b0): raise ValueError("Variables are not the same length: %d, %d" %(N0, len(b0))) for j in range(N0): # assert_close(a0[j], b0[j], rtol=rtol, atol=atol) good = True a1, b1 = a0[j], b0[j] if a1 is b1: # Nice to handle None pass else: try: try: good = isclose(a1, b1, rel_tol=rtol, abs_tol=atol) except: good = cisclose(a1, b1, rel_tol=rtol, abs_tol=atol) except: pass if not good: from numpy.testing import assert_allclose return assert_allclose(a1, b1, rtol=rtol, atol=atol) def assert_close3d(a, b, rtol=1e-7, atol=0.0): N = len(a) if N != len(b): raise ValueError("Variables are not the same length: %d, %d" %(N, len(b))) for i in range(N): assert_close2d(a[i], b[i], rtol=rtol, atol=atol) def assert_close4d(a, b, rtol=1e-7, atol=0.0): N = len(a) if N != len(b): raise ValueError("Variables are not the same length: %d, %d" %(N, len(b))) # for i in range(N): # assert_close3d(a[i], b[i], rtol=rtol, atol=atol) for i in range(N): a0, b0 = a[i], b[i] N0 = len(a0) if N0 != len(b0): raise ValueError("Variables are not the same length: %d, %d" %(N0, len(b0))) for j in range(N0): assert_close2d(a0[j], b0[j], rtol=rtol, atol=atol) def zeros(shape, dtype=float, fill_value=0.0): if dtype is float: zero = float(fill_value) elif dtype is int: zero = int(fill_value) else: raise ValueError("dtype is not supported") t = type(shape) if t is int: return [zero]*shape if t is tuple: l = len(shape) if l == 1: return [zero]*shape[0] elif l == 2: s1 = shape[1] return [[zero]*s1 for _ in range(shape[0])] elif l == 3: s1 = shape[1] s2 = shape[2] return [[[zero]*s2 for _ in range(s1)] for _ in range(shape[0])] elif l == 4: s1 = shape[1] s2 = shape[2] s3 = shape[3] return [[[[zero]*s3 for _ in range(s2)] for _ in range(s1)] for _ in range(shape[0])] raise ValueError("Shape not implemented") def full(shape, fill_value, dtype=float): return zeros(shape, dtype, fill_value) def interp(x, dx, dy, left=None, right=None, extrapolate=False): """One-dimensional linear interpolation routine inspired/ reimplemented from NumPy for extra speed for scalar values (and also numpy). Returns the one-dimensional piecewise linear interpolant to a function with a given value at discrete data-points. Parameters ---------- x : float X-coordinate of the interpolated values, [-] dx : list[float] X-coordinates of the data points, must be increasing, [-] dy : list[float] Y-coordinates of the data points; same length as `dx`, [-] left : float, optional Value to return for `x < dx[0]`, default is `dy[0]`, [-] right : float, optional Value to return for `x > dx[-1]`, default is `dy[-1]`, [-] extrapolate : bool, optional If True, for the cases of `left` and/or `right` not given, a linear extrapolation will be performed outside of bounds, [-] Returns ------- y : float The interpolated value, [-] Notes ----- This function is "unsafe" in that it assumes the x-coordinates are increasing. It also does not check for nan's, that `dx` and `dy` are the same length, and that `x` is scalar. Performance is 40-50% of that of NumPy under CPython. Examples -------- >>> interp(2.5, [1, 2, 3], [3, 2, 0]) 1.0 """ lendx = len(dx) j = binary_search(x, dx, lendx) if (j == -1): if left is not None: return left elif extrapolate: j = 0 return (dy[j + 1] - dy[j])/(dx[j + 1] - dx[j])*(x - dx[j]) + dy[j] else: return dy[0] elif (j == lendx - 1): return dy[j] elif (j == lendx): if right is not None: return right elif extrapolate: j = -2 return (dy[j + 1] - dy[j])/(dx[j + 1] - dx[j])*(x - dx[j]) + dy[j] else: return dy[-1] else: return (dy[j + 1] - dy[j])/(dx[j + 1] - dx[j])*(x - dx[j]) + dy[j] def interp2d_linear(x, y, xs, ys, vals): # Same as RectBivariateSpline, s=0, kx=1, ky=1 (and better performance) if y < ys[0]: i0, i1 = 0, 1 y_dat = ys[i0], ys[i1] elif y > ys[-1]: i0, i1 = -2, -1 else: for i in range(len(ys)): if ys[i] >= y: i0, i1 = i-1, i break y_low, y_high = ys[i0], ys[i1] v_low = interp(x, xs, vals[i0], extrapolate=True) v_high = interp(x, xs, vals[i1], extrapolate=True) return v_low + (y-y_low)/(y_high-y_low)*(v_high-v_low) try: _array = np.array Polynomial = np.polynomial.Polynomial except: pass def implementation_optimize_tck(tck, force_numpy=False): """Converts 1-d or 2-d splines calculated with SciPy's `splrep` or. `bisplrep` to a format for fastest computation - lists in PyPy, and numpy arrays otherwise. Only implemented for 3 and 5 length `tck`s. """ if IS_PYPY_OR_SKIP_DEPENDENCIES and not force_numpy: return tuple(tck) else: size = len(tck) if size == 3: return (_array(tck[0]), _array(tck[1]), tck[2]) elif size == 5: return (_array(tck[0]), _array(tck[1]), _array(tck[2]), tck[3], tck[4]) else: raise NotImplementedError def tck_interp2d_linear(x, y, z, kx=1, ky=1): if kx != 1 or ky != 1: raise ValueError("Only linear formulations are currently implemented") # copy is not a method of lists in python 2 x = list(x) x.insert(0, x[0]) x.append(x[-1]) y = list(y) y.insert(0, y[0]) y.append(y[-1]) # c needs to be transposed, and made 1d c = [z[j][i] for i in range(len(z[0])) for j in range(len(z))] tck = [x, y, c, 1, 1] return implementation_optimize_tck(tck) def caching_decorator(f, full=False): from functools import wraps cache = {} info_cache = {} wraps = my_wraps() @wraps(f) def wrapper(x, *args, **kwargs): has_info = 'info' in kwargs if x in cache: if 'info' in kwargs: kwargs['info'][:] = info_cache[x] return cache[x] err = f(x, *args, **kwargs) cache[x] = err if has_info: info_cache[x] = list(kwargs['info']) return err if full: return wrapper, cache, info_cache return wrapper def translate_bound_func(func, bounds=None, low=None, high=None): if bounds is not None: low = [i[0] for i in bounds] high = [i[1] for i in bounds] def new_f(x, *args, **kwargs): """Function for a solver to call when using the bounded variables.""" x = [float(i) for i in x] for i in range(len(x)): x[i] = (low[i] + (high[i] - low[i])/(1.0 + exp(-x[i]))) # Return the actual results return func(x, *args, **kwargs) def translate_into(x): x = [float(i) for i in x] for i in range(len(x)): x[i] = -log((high[i] - x[i])/(x[i] - low[i])) return x def translate_outof(x): x = [float(i) for i in x] for i in range(len(x)): x[i] = (low[i] + (high[i] - low[i])/(1.0 + exp(-x[i]))) return x return new_f, translate_into, translate_outof def translate_bound_jac(jac, bounds=None, low=None, high=None): if bounds is not None: low = [i[0] for i in bounds] high = [i[1] for i in bounds] def new_j(x): x_base = [float(i) for i in x] N = len(x) for i in range(N): x_base[i] = (low[i] + (high[i] - low[i])/(1.0 + exp(-x[i]))) jac_base = jac(x_base) try: jac_base = [i for i in jac_base] for i in range(N): v = (high[i] - low[i])*exp(-x[i])*jac_base[i] v *= (1.0 + exp(-x[i]))**-2 jac_base[i] = v return jac_base except: raise NotImplementedError("Fail") def translate_into(x): x = [float(i) for i in x] for i in range(len(x)): x[i] = -log((high[i] - x[i])/(x[i] - low[i])) return x def translate_outof(x): x = [float(i) for i in x] for i in range(len(x)): x[i] = (low[i] + (high[i] - low[i])/(1.0 + exp(-x[i]))) return x return new_j, translate_into, translate_outof def translate_bound_f_jac(f, jac, bounds=None, low=None, high=None, inplace_jac=False, as_np=False): if bounds is not None: low = [i[0] for i in bounds] high = [i[1] for i in bounds] exp_terms = [0.0]*len(low) def new_f_j(x, *args): x_base = [i for i in x] N = len(x) for i in range(N): exp_terms[i] = ei = trunc_exp(-x[i]) x_base[i] = (low[i] + (high[i] - low[i])/(1.0 + ei)) if jac is True: f_base, jac_base = f(x_base, *args) else: f_base = f(x_base, *args) jac_base = jac(x_base, *args) try: if type(jac_base[0]) is list or (isinstance(jac_base, np.ndarray) and len(jac_base.shape) == 2): if not inplace_jac: jac_base = [[j for j in i] for i in jac_base] for i in range(len(jac_base)): for j in range(len(jac_base[i])): # Checked numerically t = (1.0 + exp_terms[j]) jac_base[i][j] = (high[j] - low[j])*exp_terms[j]*jac_base[i][j]/(t*t) else: if not inplace_jac: jac_base = [i for i in jac_base] for i in range(N): t = (1.0 + exp_terms[i]) jac_base[i] = (high[i] - low[i])*exp_terms[i]*jac_base[i]/(t*t) if as_np: jac_base = np.array(jac_base) return f_base, jac_base except: raise NotImplementedError("Fail") def translate_into(x): #x = [float(i) for i in x] for i in range(len(x)): x[i] = -trunc_log((high[i] - x[i])/(x[i] - low[i])) return x def translate_outof(x): #x = [float(i) for i in x] for i in range(len(x)): x[i] = (low[i] + (high[i] - low[i])/(1.0 + trunc_exp(-x[i]))) return x return new_f_j, translate_into, translate_outof class OscillationError(Exception): """Error raised when a derivative-based method is not converging.""" class UnconvergedError(Exception): """Error raised when maxiter has been reached in an optimization problem.""" def __repr__(self): return ('UnconvergedError("Failed to converge; maxiter (%d) reached, value=%g, error %g)"' %(self.maxiter, self.point, self.err)) def __init__(self, message, iterations=None, err=None, point=None): super(UnconvergedError, self).__init__(message) self.point = point self.iterations = iterations self.err = err class SamePointError(UnconvergedError): """Error raised when two trial points in a root finding problem have the same error.""" def __repr__(self): return 'TODO' def __init__(self, message, iterations=None, err=None, q1=None, p1=None, q0=None, p0=None): super(UnconvergedError, self).__init__(message) self.q1 = q1 self.p1 = p1 self.q0 = q0 self.p0 = p0 self.iterations = iterations self.err = err class NoSolutionError(Exception): """Error raised when detected that there is no actual solution to a problem.""" class NotBoundedError(Exception): """Error raised when a bisection type algorithm fails because its initial bounds do not bound the solution.""" class DiscontinuityError(Exception): """Error raised when a bisection type algorithm fails because there is a discontinuity.""" def damping_maintain_sign(x, step, damping=1.0, factor=0.5): """Damping function which will maintain the sign of the variable being manipulated. If the step puts it at the other sign, the distance between `x` and `step` will be shortened by the multiple of `factor`; i.e. if factor is `x`, the new value of `x` will be 0 exactly. The provided `damping` is applied as well. Parameters ---------- x : float Previous value in iteration, [-] step : float Change in `x`, [-] damping : float, optional The damping factor to be applied always, [-] factor : float, optional If the calculated step changes sign, this factor will be used instead of the step, [-] Returns ------- x_new : float The new value in the iteration, [-] Notes ----- Examples -------- >>> damping_maintain_sign(100, -200, factor=.5) 50.0 """ if isinstance(x, list): return [damping_maintain_sign(x[i], step[i], damping, factor) for i in range(len(x))] positive = x > 0.0 step_x = x + step if (positive and step_x < 0) or (not positive and step_x > 0.0): # print('damping') step = -factor*x return x + step*damping def make_damp_initial(steps=5, damping=1.0, *args): steps_holder = [steps] def damping_func(x, step, damping=damping, *args): if steps_holder[0] <= 0: # Do not dampen at all if isinstance(x, list): return [xi + dxi for xi, dxi in zip(x, step)] return x + step else: steps_holder[0] -= 1 if isinstance(x, list): return [xi + dxi*damping for xi, dxi in zip(x, step)] return x + step*damping return damping_func def make_max_step_initial(max_step, steps=5, *args): steps_holder = [steps] def damping_func(x, step, *args): if steps_holder[0] <= 0: # Do not dampen at all if isinstance(x, list): return [xi + dxi for xi, dxi in zip(x, step)] return x + step else: steps_holder[0] -= 1 if isinstance(x, list): next = [] for i in range(len(x)): the_step = step[i] if abs(the_step) > max_step: next.append(x[i] + copysign(max_step[i], the_step)) else: next.append(x[i] + the_step) return next the_step = step if abs(the_step) > max_step: return x + copysign(max_step, the_step) return x + the_step return damping_func def oscillation_checking_wrapper(f, minimum_progress=0.3, both_sides=False, full=True, good_err=None): checker = oscillation_checker(minimum_progress=minimum_progress, both_sides=both_sides, good_err=good_err) wraps = my_wraps() @wraps(f) def wrapper(x, *args, **kwargs): err_test = err = f(x, *args, **kwargs) if not isinstance(err, (float, int, complex)): err_test = err[0] try: oscillating = checker(x, err_test) except: oscillating = False # Zero division error probably if oscillating: raise OscillationError("Oscillating") return err if full: return wrapper, checker return wrapper class oscillation_checker(object): def __init__(self, minimum_progress=0.3, both_sides=False, good_err=None): self.minimum_progress = minimum_progress self.both_sides = both_sides self.xs_neg = [] self.xs_pos = [] self.ys_neg = [] self.ys_pos = [] # Provide a number that if the error is under this, no longer be able to return False # For example, near phase boundaries newton could be bisecting as it overshoots # each step, but is still converging fine self.good_err = good_err def clear(self): self.xs_neg = [] self.xs_pos = [] self.ys_neg = [] self.ys_pos = [] def is_solve_oscilating(self, x, y): if y == 0.0: return False xs_neg, xs_pos, ys_neg, ys_pos = self.xs_neg, self.xs_pos, self.ys_neg, self.ys_pos minimum_progress = self.minimum_progress if y < 0.0: xs_neg.append(x) ys_neg.append(y) else: xs_pos.append(x) ys_pos.append(y) if len(xs_pos) > 1 and len(xs_neg) > 1: if y < 0: dy_cur = y - ys_neg[-2] dy_other = ys_pos[-1] - ys_pos[-2] gain_neg = abs(dy_cur/y) gain_pos = abs(dy_other/ys_pos[-1]) else: dy_cur = y - ys_pos[-2] dy_other = ys_neg[-1] - ys_neg[-2] gain_pos = abs(dy_cur/y) gain_neg = abs(dy_other/ys_neg[-1]) # print(gain_pos, gain_neg, y) if self.both_sides: if gain_pos < minimum_progress and gain_neg < minimum_progress: if self.good_err is not None and min(abs(ys_neg[-1]), abs(ys_pos[-1])) < self.good_err: return False return True else: if gain_pos < minimum_progress or gain_neg < minimum_progress: if self.good_err is not None and min(abs(ys_neg[-1]), abs(ys_pos[-1])) < self.good_err: return False return True return False __call__ = is_solve_oscilating def best_bounding_bounds(low, high, f=None, xs_pos=None, ys_pos=None, xs_neg=None, ys_neg=None, fa=None, fb=None): r'''Given: 1) A presumed bracketing interval such as very far out limits on physical bounds 2) A history of a non-bounded search algorithm which did not converge Find the best bracketing points which get the algorithm as close to the solution as possible. Parameters ---------- low : float Low bracketing interval (`f` has opposite sign at `low` than `high`), [-] high : float High bracketing interval (`f` has opposite sign at `high` than `low`), [-] f : callable, optional 1D function to be solved, [-] xs_pos : list[float] Unsorted list of `x` values of points with positive `y` values previously evaluated, [-] ys_pos : list[float] Unsorted list of `y` values of points with positive `y` values previously evaluated, [-] xs_neg : list[float] Unsorted list of `x` values of points with negative `y` values previously evaluated, [-] ys_neg : list[float] Unsorted list of `y` values of points with negative `y` values previously evaluated, [-] fa : float, optional Value of function at `low`, used instead of recalculating if provided, [-] fb : float, optional Value of function at `high`, used instead of recalculating if provided, [-] Returns ------- low : float Low bracketing interval (`f` has opposite sign at `low` than `high`), [-] high : float High bracketing interval (`f` has opposite sign at `high` than `low`), [-] fa : float Value of function at `low`, [-] fb : float, optional Value of function at `high`, [-] Notes ----- Negative and/or positive history values can be omitted, but both the `x` and `y` lists should be skipped if so. More work could be done to handle better the case if the bounds not bracketing the root but the function history doing so. ''' if fa is None: fa = f(low) if fb is None: fb = f(high) if ys_pos: y_min_pos = min(ys_pos) x_min_pos = xs_pos[ys_pos.index(y_min_pos)] if fa > 0: if y_min_pos < fa: fa, low = y_min_pos, x_min_pos else: if y_min_pos < fb: fb, high = y_min_pos, x_min_pos if ys_neg: y_min_neg = max(ys_neg) x_min_neg = xs_neg[ys_neg.index(y_min_neg)] if fa < 0: if y_min_neg > fa: fa, low = y_min_neg, x_min_neg else: if y_min_pos > fb: fb, high = y_min_neg, x_min_neg if fa*fb > 0: raise ValueError("Bounds and previous history do not contain bracketing points") return low, high, fa, fb def bisect(f, a, b, args=(), xtol=1e-12, rtol=2.220446049250313e-16, maxiter=100, ytol=None): """Port of SciPy's C bisect routine.""" fa = f(a, *args) fb = f(b, *args) if fa*fb > 0.0: raise ValueError("f(a) and f(b) must have different signs") elif fa == 0.0: return a elif fb == 0.0: return b dm = b - a # iterations = 0.0 for i in range(maxiter): dm *= 0.5 xm = a + dm fm = f(xm, *args) if fm*fa >= 0.0: a = xm abs_dm = fabs(dm) if fm == 0.0: return xm elif ytol is not None: if (abs_dm < (xtol + rtol*abs_dm)) and abs(fm) < ytol: return xm elif (abs_dm < (xtol + rtol*abs_dm)): return xm # elif gap_detection: # dy_dx = abs((fm - fa)/(a-b)) # if dy_dx > dy_dx_limit: # raise DiscontinuityError("Discontinuity detected") raise UnconvergedError("Failed to converge after %d iterations" %maxiter) def ridder(f, a, b, args=(), xtol=_xtol, rtol=_rtol, maxiter=_iter, full_output=False, disp=True): a_abs, b_abs = fabs(a), fabs(b) tol = xtol + rtol*(a_abs if a_abs < b_abs else b_abs) fa = f(a, *args) fb = f(b, *args) if fa*fb > 0.0: raise ValueError("f(a) and f(b) must have different signs") elif fa == 0.0: return a elif fb == 0.0: return b for i in range(maxiter): dm = 0.5*(b - a) xm = a + dm fm = f(xm, *args) dn = copysign(1.0/sqrt(fm*fm - fa*fb), fb - fa)*fm*dm dn_abs, dm_abs_tol = fabs(dn), fabs(dm) - 0.5*tol xn = xm - copysign((dn_abs if dn_abs < dm_abs_tol else dm_abs_tol), dn) fn = f(xn, *args) if (fn*fm < 0.0): a = xn fa = fn b = xm fb = fm elif (fn*fa < 0.0): b = xn fb = fn else: a = xn fa = fn tol = xtol + rtol*xn if (fn == 0.0 or fabs(b - a) < tol): return xn raise UnconvergedError("Failed to converge after %d iterations" %maxiter) # numba: delete # raise UnconvergedError("Failed to converge") # numba: uncomment def brenth(f, xa, xb, args=(), xtol=1e-12, rtol=4.440892098500626e-16, maxiter=100, ytol=None, full_output=False, disp=True, q=False, fa=None, fb=None, kwargs={}): xpre = xa xcur = xb xblk = 0.0 fblk = 0.0 spre = 0.0 scur = 0.0 if fa is None: fpre = f(xpre, *args, **kwargs) else: fpre = fa if fb is None: fcur = f(xcur, *args, **kwargs) else: fcur = fb if fpre*fcur > 0.0: raise NotBoundedError("f(a) and f(b) must have different signs") elif fpre == 0.0: return xa elif fcur == 0.0: return xb for i in range(maxiter): if fpre*fcur < 0.0: xblk = xpre fblk = fpre spre = scur = xcur - xpre # Breaks a bunch of tests # if fpre == fcur: # raise UnconvergedError("Failed to converge - reached equal points after %d iterations" %i) if abs(fblk) < abs(fcur): xpre = xcur xcur = xblk xblk = xpre fpre = fcur fcur = fblk fblk = fpre delta = 0.5*(xtol + rtol*abs(xcur)) sbis = 0.5*(xblk - xcur) if ytol is not None: if fcur == 0.0 or (abs(sbis) < delta) and abs(fcur) < ytol: return xcur else: if fcur == 0.0 or (abs(sbis) < delta): return xcur if (abs(spre) > delta and abs(fcur) < abs(fpre)): if xpre == xblk: # interpolate stry = -fcur*(xcur - xpre)/(fcur - fpre) else: # extrapolate dpre = (fpre - fcur)/(xpre - xcur) dblk = (fblk - fcur)/(xblk - xcur) if q: stry = -fcur*(fblk*dblk - fpre*dpre)/(dblk*dpre*(fblk - fpre)) else: stry = -fcur*(fblk - fpre)/(fblk*dpre - fpre*dblk) if (abs(stry + stry) < min(abs(spre), 3.0*abs(sbis) - delta)): # accept step spre = scur scur = stry else: # bisect spre = sbis scur = sbis else: # bisect spre = sbis scur = sbis xpre = xcur fpre = fcur if abs(scur) > delta: xcur += scur else: if sbis > 0.0: xcur += delta else: xcur -= delta fcur = f(xcur, *args, **kwargs) raise UnconvergedError("Failed to converge after %d iterations" %maxiter) def secant(func, x0, args=(), maxiter=100, low=None, high=None, damping=1.0, xtol=1.48e-8, ytol=None, x1=None, require_eval=False, f0=None, f1=None, bisection=False, same_tol=1.0, kwargs={}, require_xtol=True): p0 = 1.0*x0 # Logic to take a small step to calculate the approximate derivative if x1 is not None: p1 = x1 else: if x0 >= 0.0: p1 = x0*1.0001 + 1e-4 else: p1 = x0*1.0001 - 1e-4 # May need to truncate p1 if low is not None and p1 < low: p1 = low if high is not None and p1 > high: p1 = high # Are we already converged on either point? Do not consider checking xtol # if so. if f0 is None: q0 = func(p0, *args, **kwargs) else: q0 = f0 if (ytol is not None and abs(q0) < ytol and not require_xtol) or q0 == 0.0: return p0 if f1 is None: q1 = func(p1, *args, **kwargs) else: q1 = f1 if (ytol is not None and abs(q1) < ytol and not require_xtol) or q1 == 0.0: return p1 if bisection: a, b = None, None if q1 < 0.0: a = p1 else: b = p1 if q0 < 0.0: a = p0 else: b = p0 for i in range(maxiter): # Calculate new point, and truncate if necessary if q1 != q0: p = p1 - q1*(p1 - p0)/(q1 - q0)*damping else: p = p1 if low is not None and p < low: p = low if high is not None and p > high: p = high # After computing new point if bisection and a is not None and b is not None: if not (a < p < b) or (b < p < a): p = 0.5*(a + b) # Check the exit conditions if ytol is not None and xtol is not None: # Meet both tolerance - new value is under ytol, and old value if abs(q1) < ytol and (not require_xtol or abs(p0 - p1) <= abs(xtol*p0)): # if abs(p0 - p1) <= abs(xtol*p0) and abs(q1) < ytol: if require_eval: return p1 return p elif xtol is not None: if abs(p0 - p1) <= abs(xtol*p0) and not (p0 == p1 and (p0 == low or p0 == high)): if require_eval: return p1 return p elif ytol is not None: if abs(q1) < ytol: if require_eval: return p1 return p # Check to quit after convergence check - may meet criteria if q1 == q0: # Are we close enough? Run the checks again if xtol is not None: xtol *= same_tol if ytol is not None: ytol *= same_tol if ytol is not None and xtol is not None: # Meet both tolerance - new value is under ytol, and old value if abs(p0 - p1) <= abs(xtol * p0) and abs(q1) < ytol: return p elif xtol is not None: if abs(p0 - p1) <= abs(xtol * p0) and not (p0 == p1 and (p0 == low or p0 == high)): return p elif ytol is not None: if abs(q1) < ytol: return p # Cannot proceed, raise an error raise SamePointError("Convergence failed - previous points are the same", q1=q1, p1=p1, q0=q0, p0=p0) # Swap the points around p0 = p1 q0 = q1 p1 = p q1 = func(p1, *args, **kwargs) if q1 == 0.0: return p1 if bisection: if q1 < 0.0: a = p1 else: b = p1 raise UnconvergedError("Failed to converge", iterations=i, point=p, err=q1) # start with 0.99 and try taking powers of two off of 1 line_search_factors = [] remove = 0.01 for i in range(7): line_search_factors.append(1-remove) remove*= 2 # once under 0.36, jump to 0.1 and go down by orders of magnitude to 1e-10 tmp = [] remove = 1e-10 for i in range(10): tmp.append(remove) remove *= 10 tmp.sort(reverse=True) line_search_factors.extend(tmp) line_search_factors_low_prec = line_search_factors[3:] newton_line_search_factors = [1.0] + line_search_factors newton_line_search_factors_disabled = [1.0] def one_sided_secant(f, x0, x_flat, args=tuple(), maxiter=100, xtol=1.48e-8, ytol=None, require_xtol=True, damping=1.0, x1=None, y_flat=None, max_quadratic_iter=7, low_prec_ls_iter=3, y0=None, y1=None, kwargs={}): if x1 is None: if x0 >= 0.0: x1 = x0*1.0001 + 1e-4 else: x1 = x0*1.0001 - 1e-4 if y0 is None: y0 = f(x0, *args, **kwargs) # print(f'Start point: x={x0}, y={y0}') if y1 is None: y1 = f(x1, *args, **kwargs) # print(f'Start point: x={x1}, y={y1}') flat_higher_than_x = x_flat > x0 # this is the flat value - all other y values that are flat must be this number # we only need to calculate it if not provided if y_flat is None: y_flat = f(x_flat, *args, **kwargs) if y0 == y_flat: raise ValueError("The initial y value is the same as the value in the zero-derivative region") if y0 == y1: raise ValueError("The initial points have the same value, cannot start the search") if y1 == y_flat: raise ValueError("The second point is also flat, cannot start the search") # store some other points for higher order steps x2 = x3 = y2 = y3 = None for i in range(maxiter): # # guess the new value based on the two points has_step = False if x2 is not None and i < max_quadratic_iter: try: # print('Points for quadratic', [x0, x1, x2], [y0, y1, y2]) a, b, c = quadratic_from_points(x0, x1, x2, y0, y1, y2) # print('Quadratic coefficients', (a, b, c)) sln = roots_quadratic(a, b, c) # print('Quadratic solutions', sln) if sln[0].imag == 0: if len(sln) == 2: a_step = (sln[0] - x1) another_step = (sln[1] - x1) # use the closest one if abs(a_step) < abs(another_step): # print('Using quadratic solution', sln[0]) step = a_step else: # print('Using quadratic solution', sln[1]) step = another_step else: # only got a single step # print('Using quadratic solution', sln[0]) step = (sln[0] - x1) has_step = True # print(f'Quadratic desired point: x={x1 + step}') except: # print('Quadratic had a numerical error') pass # secant can always work if not has_step: step = - y1*(x1 - x0)/(y1 - y0)*damping # print(f'Secant desired point: x={x1 + step}') force_line_search = x_flat <= (x1 + step) if flat_higher_than_x else x_flat >= (x1 + step) if not force_line_search: x = x1 + step y = f(x, *args, **kwargs) # print(f'Iteration: x={x}, y={y}, flat={y==y_flat}') if y == y_flat: x_flat = x else: pass # print(f'Secant desired point lower than flat point: x={x1 + step}, x_flat={x_flat}') if force_line_search or y == y_flat: # If the step is too big (overshoots the known flat point), recalculate it to be the limit if flat_higher_than_x: if x_flat <= (x0 + step): step = x_flat - x0 else: if x_flat >= (x0 + step): step = x_flat - x0 # Must use linesearch to find a x that gives a working y for line_search_factor in (line_search_factors if i > low_prec_ls_iter else line_search_factors_low_prec): x = x0 + step*line_search_factor y = f(x, *args, **kwargs) # print(f'Line search: x={x}, y={y}, flat={y==y_flat}, x_flat={x_flat}') if y != y_flat: break else: x_flat = x if y == y_flat: raise ValueError("The line search has finished and no point to continue with was found") # Check if we converged, but note this really requires a ytol as the xtol doesn't work well with lsearch if ytol is not None and xtol is not None: # Meet both tolerance - new value is under ytol, and old value if abs(y) < ytol and (abs(x - x0) <= abs(xtol*x)): return x elif xtol is not None: if abs(x - x0) <= abs(xtol*x): return x elif ytol is not None: if abs(y) < ytol: return x # change the points around, forgetting about one of the values x0, x1, x2, x3 = x, x0, x1, x2 y0, y1, y2, y3 = y, y0, y1, y2 raise UnconvergedError("Failed to converge", iterations=i, point=x, err=y) def halley_compat_numba(func, x, *args): a, b = func(x, *args) return a, b, 0.0 def newton(func, x0, fprime=None, args=(), tol=None, maxiter=100, fprime2=None, low=None, high=None, damping=1.0, ytol=None, xtol=1.48e-8, require_eval=False, damping_func=None, bisection=False, gap_detection=False, dy_dx_limit=1e100, max_bound_hits=4, kwargs={}): """Newton's method designed to be mostly compatible with SciPy's implementation, with a few features added and others now implemented. 1) No tracking of how many iterations have progressed. 2) No ability to return a RootResults object 3) No warnings on some cases of bad input (low tolerance, no iterations) 4) Ability to accept True for either fprime or fprime2, which means that they are included in the return value of func 5) No handling for inf or nan! 6) Special handling for functions which need to ensure an evaluation at the final point 7) Damping as a constant or a fraction 8) Ability to perform bisection, optionally specifying a maximum range 9) Ability to specify minimum and maximum iteration values 10) Ability to specify a tolerance in the `y` direction 11) Ability to pass in keyword arguments as well as positional arguments From scipy, with some modifications! https://github.com/scipy/scipy/blob/v1.1.0/scipy/optimize/zeros.py#L66-L206 """ if tol is not None: xtol = tol p0 = 1.0*x0 # p1 = p0 = 1.0*x0 # fval0 = None if bisection: a, b = None, None fa, fb = None, None fprime2_included = fprime2 == True fprime_included = fprime == True if fprime2_included: func2 = func hit_low, hit_high = 0, 0 for it in range(maxiter): # if fprime2_included: # numba: uncomment # fval, fder, fder2 = func(p0, *args) # numba: uncomment # else: # numba: uncomment # fval, fder = func(p0, *args) # numba: uncomment # fder2 = 0.0 # numba: uncomment if fprime2_included: # numba: DELETE fval, fder, fder2 = func2(p0, *args, **kwargs) # numba: DELETE elif fprime_included: # numba: DELETE fval, fder = func(p0, *args, **kwargs) elif fprime2 is not None: #numba: DELETE fval = func(p0, *args, **kwargs) #numba: DELETE fder = fprime(p0, *args, **kwargs) #numba: DELETE fder2 = fprime2(p0, *args, **kwargs) #numba: DELETE else: #numba: DELETE fval = func(p0, *args, **kwargs) #numba: DELETE fder = fprime(p0, *args, **kwargs) #numba: DELETE if fval == 0.0: return p0 # Cannot continue or already finished elif fder == 0.0: if ytol is None or abs(fval) < ytol: return p0 else: raise UnconvergedError("Derivative became zero; maxiter (%d) reached, value=%f " %(maxiter, p0)) if bisection: if fval < 0.0: a = p0 fa = fval else: b = p0 # b always has positive value of error fb = fval fder_inv = 1.0/fder # Compute the next point step = fval*fder_inv if damping_func is not None: if fprime2 is not None: step = step/(1.0 - 0.5*step*fder2*fder_inv) p = damping_func(p0, -step, damping) # variable, derivative, damping_factor elif fprime2 is None: p = p0 - step*damping else: p = p0 - step/(1.0 - 0.5*step*fder2*fder_inv)*damping if bisection and a is not None and b is not None: if (not (a < p < b) and not (b < p < a)): # if p < 0.0: # if p < a: # print('bisecting') p = 0.5*(a + b) # else: # if p > b: # p = 0.5*(a + b) if gap_detection: # Change in function value required to get goal in worst case dy_dx = abs((fa- fb)/(a-b)) if dy_dx > dy_dx_limit: #or dy_dx > abs(fder)*10: raise DiscontinuityError("Discontinuity detected") if low is not None and p < low: hit_low += 1 if p0 == low and hit_low > max_bound_hits: if abs(fval) < ytol: return low else: raise UnconvergedError("Failed to converge; maxiter (%d) reached, value=%f " % (maxiter, p)) # Stuck - not going to converge, hammering the boundary. Check ytol p = low if high is not None and p > high: hit_high += 1 if p0 == high and hit_high > max_bound_hits: if abs(fval) < ytol: return high else: raise UnconvergedError("Failed to converge; maxiter (%d) reached, value=%f " % (maxiter, p)) p = high # p0 is last point (fval at that point), p is new if ytol is not None and xtol is not None: # Meet both tolerance - new value is under ytol, and old value if abs(p - p0) < abs(xtol*p) and abs(fval) < ytol: if require_eval: return p0 return p elif xtol is not None: if abs(p - p0) < abs(xtol*p): if require_eval: return p0 return p elif ytol is not None: if abs(fval) < ytol: if require_eval: return p0 return p # fval0, fval1 = fval, fval0 # p0, p1 = p, p0 # need a history of fval also p0 = p # else: # return secant(func, x0, args=args, maxiter=maxiter, low=low, high=high, # damping=damping, # xtol=xtol, ytol=ytol, kwargs=kwargs) # raise UnconvergedError("Failed to converge; maxiter (%d) reached, value=%f " %(maxiter, p)) def halley(func, x0, args=(), maxiter=100, low=None, high=None, damping=1.0, ytol=None, xtol=1.48e-8, require_eval=False, damping_func=None, bisection=False, max_bound_hits=4, kwargs={}, max_2nd_ratio=1.5): p0 = 1.0*x0 if bisection: a, b = None, None fa, fb = None, None hit_low, hit_high = 0, 0 for it in range(maxiter): fval, fder, fder2 = func(p0, *args) if fval == 0.0: return p0 # Cannot continue or already finished elif fder == 0.0: if ytol is None or abs(fval) < ytol: return p0 else: raise UnconvergedError("Derivative became zero; maxiter (%d) reached, value=%f " %(maxiter, p0)) if bisection: if fval < 0.0: a = p0 fa = fval else: b = p0 # b always has positive value of error fb = fval fder_inv = 1.0/fder # Compute the next point step = fval*fder_inv skipped_halley = False if damping_func is not None: step = step/(1.0 - 0.5*step*fder2*fder_inv) p = damping_func(p0, -step, damping) else: step2 = step/(1.0 - 0.5*step*fder2*fder_inv)*damping if max_2nd_ratio is not None and abs(1.0-step2/step) > max_2nd_ratio: skipped_halley = True p = p0 - step else: p = p0 - step2 if bisection and a is not None and b is not None: if (not (a < p < b) and not (b < p < a)): p = 0.5*(a + b) if low is not None and p < low: hit_low += 1 if p0 == low and hit_low > max_bound_hits: if abs(fval) < ytol: return low else: raise UnconvergedError("Failed to converge; maxiter (%d) reached, value=%f " % (maxiter, p)) # Stuck - not going to converge, hammering the boundary. Check ytol p = low if high is not None and p > high: hit_high += 1 if p0 == high and hit_high > max_bound_hits: if abs(fval) < ytol: return high else: raise UnconvergedError("Failed to converge; maxiter (%d) reached, value=%f " % (maxiter, p)) p = high # p0 is last point (fval at that point), p is new if not skipped_halley: if ytol is not None and xtol is not None: # Meet both tolerance - new value is under ytol, and old value if abs(p - p0) < abs(xtol*p) and abs(fval) < ytol: if require_eval: return p0 return p elif xtol is not None: if abs(p - p0) < abs(xtol*p): if require_eval: return p0 return p elif ytol is not None: if abs(fval) < ytol: if require_eval: return p0 return p p0 = p raise UnconvergedError("Failed to converge; maxiter (%d) reached, value=%f " %(maxiter, p)) def newton_err(F): err = sum([abs(i) for i in F]) return err def basic_damping(x, dx, damping, *args): N = len(x) x2 = [0.0]*N for i in range(N): x2[i] = x[i] + dx[i]*damping return x2 def solve_2_direct(mat, vec): ab = mat[0] cd = mat[1] a, b = ab[0], ab[1] c, d = cd[0], cd[1] e, f = vec[0], vec[1] x0 = 1.0/(a*d - b*c) sln = [0.0]*2 sln[0] = x0*(-b*f + d*e) sln[1] = x0*(a*f - c*e) return sln def solve_3_direct(mat, vec): a, b, c = mat[0] d, e, f = mat[1] g, h, i = mat[2] j, k, l = vec x0 = a*e x1 = -b*d + x0 x2 = a*i - c*g x3 = a*f - c*d x4 = a*h - b*g x5 = x1*x2 - x3*x4 x6 = 1.0/x5 x7 = b*x3 - c*x1 x8 = 1.0/x1 x9 = d*x4 - g*x1 x10 = j*x8 x11 = a*k x12 = a*l ans = [0.0]*3 ans[0] = x6*(-k*x8*(b*x5 + x4*x7) + l*x7 + x10*(x0*x5 + x7*x9)/a) ans[1] = x6*(-x10*(d*x5 + x3*x9) + x11*x2 - x12*x3) ans[2] = x6*(j*x9 + x1*x12 - x11*x4) return ans def solve_4_direct(mat, vec): a, b, c, d = mat[0] e, f, g, h = mat[1] i, j, k, l = mat[2] m, n, o, p = mat[3] q, r, s, t = vec x0 = a*f x1 = -b*e + x0 x2 = x1*(a*k - c*i) x3 = a*g - c*e x4 = a*j - b*i x5 = x2 - x3*x4 x6 = a*h - d*e x7 = a*n - b*m x8 = x1*(a*p - d*m) - x6*x7 x9 = x1*(a*l - d*i) - x4*x6 x10 = x1*(a*o - c*m) - x3*x7 x11 = -x10*x9 + x5*x8 x12 = 1.0/x11 x13 = -b*x3 + c*x1 x14 = x13*x9 x15 = x5*(-b*x6 + d*x1) x16 = -x14 + x15 x17 = 1.0/x5 x18 = s*x17 x19 = x10*x4 - x5*x7 x20 = 1.0/x1 x21 = x17*x20 x22 = e*x4 - i*x1 x23 = x5*(e*x7 - m*x1) x24 = x10*x22 x25 = x23 - x24 x26 = q*x17 x27 = x20*x26 x28 = x3*x9 x29 = x5*x6 x30 = a*t x31 = -x28 + x29 x32 = a*r x33 = a*s*x1 x34 = x1*x30 x35 = -x23 + x24 ans = [0.0]*4 ans[0] = x12*(-r*x21*(-x11*(-b*x5 + x13*x4) + x16*x19) + t*(x14 - x15) - x18*(-x10*x16 + x11*x13) - x27*(-x11*(x0*x5 - x13*x22) + x16*x25)/a) ans[1] = x12*(-a*x18*(-x10*x31 + x11*x3) - x21*x32*(-x11*x2 + x19*x31) - x27*(x11*(e*x5 + x22*x3) + x25*x31) + x30*(x28 - x29)) ans[2] = x12*(-x17*x32*(x11*x4 + x19*x9) + x26*(x11*x22 + x35*x9) + x33*x8 - x34*x9) ans[3] = x12*(-q*x35 - x10*x33 + x19*x32 + x34*x5) return ans def newton_system(f, x0, jac, xtol=None, ytol=None, maxiter=100, damping=1.0, args=(), damping_func=None, solve_func=py_solve, line_search=False): # numba: delete # args=(), damping_func=None, solve_func=np.linalg.solve, line_search=False): # numba: uncomment jac_also = True if jac == True else False if jac_also: fcur, j = f(x0, *args) else: # numba: delete fcur = f(x0, *args) # numba: delete err0 = 0.0 for v in fcur: err0 += abs(v) if xtol is None and (ytol is not None and err0 < ytol): return x0, 0 else: x = x0 if not jac_also: # numba: delete j = jac(x, *args) # numba: delete factors = newton_line_search_factors if line_search else newton_line_search_factors_disabled iteration = 1 while iteration < maxiter: dx = solve_func(j, [-v for v in fcur]) # numba: delete # dx = solve_func(j, -fcur) # numba: uncomment for factor in factors: mult = factor*damping if damping_func is None: # xnew = x + dx*mult # numba: uncomment xnew = [xi + dxi*mult for xi, dxi in zip(x, dx)] # numba: delete else: xnew = damping_func(x, dx, damping*factor, *args) # try: if jac_also: fnew, jnew = f(xnew, *args) else: # numba: delete fnew = f(xnew, *args) # numba: delete # except: # print(f'Line search calculation with point failed') # continue err_new = 0.0 for v in fnew: err_new += abs(v) # print(f'Line search with error={err_new}, factor {mult}' ) if err_new < err0: break if line_search and err_new > err0: raise ValueError("Completed line search without reducing the objective function error, cannot proceed") fcur = fnew j = jnew err0 = err_new x = xnew iteration += 1 if xtol is not None: if (norm2(fcur) < xtol) and (ytol is None or err0 < ytol): break elif ytol is not None: if err0 < ytol: break if not jac_also: # numba: delete j = jac(x, *args) # numba: delete if xtol is not None and norm2(fcur) > xtol: raise UnconvergedError("Failed to converge") # raise UnconvergedError("Failed to converge; maxiter (%d) reached, value=%s" %(maxiter, x)) if ytol is not None: err0 = 0.0 for v in fcur: err0 += abs(v) if err0 > ytol: # raise UnconvergedError("Failed to converge; maxiter (%d) reached, value=%s" %(maxiter, x)) raise UnconvergedError("Failed to converge") return x, iteration def newton_minimize(f, x0, jac, hess, xtol=None, ytol=None, maxiter=100, damping=1.0, args=(), damping_func=None): jac_also = True if jac == True else False hess_also = True if hess == True else False def err(F): err = sum([abs(i) for i in F]) return err if hess_also: fcur, j, h = f(x0, *args) elif jac_also: fcur, j = f(x0, *args) h = hess(x0, *args) else: fcur = f(x0, *args) j = jac(x0, *args) h = hess(x0, *args) iter = 0 x = x0 while iter < maxiter: dx = py_solve(h, [-v for v in j]) if damping_func is None: x = [xi + dxi*damping for xi, dxi in zip(x, dx)] else: x = damping_func(x, dx, damping) if hess_also: fcur, j, h = f(x, *args) elif jac_also: fcur, j = f(x, *args) h = hess(x, *args) else: fcur = f(x, *args) j = jac(x, *args) h = hess(x, *args) iter += 1 if xtol is not None and norm2(j) < xtol: break if ytol is not None and err(j) < ytol: break if xtol is not None and norm2(j) > xtol: raise UnconvergedError("Failed to converge; maxiter (%d) reached, value=%s " %(maxiter, x)) if ytol is not None and err(j) > ytol: raise UnconvergedError("Failed to converge; maxiter (%d) reached, value=%s " %(maxiter, x)) return x, iter def broyden2(xs, fun, jac, xtol=1e-7, maxiter=100, jac_has_fun=False, skip_J=False, args=()): iter = 0 if skip_J: fcur = fun(xs, *args) N = len(fcur) J = eye(N) elif jac_has_fun: fcur, J = jac(xs, *args) J = inv(J) else: fcur = fun(xs, *args) J = inv(jac(xs, *args)) N = len(fcur) eqns = range(N) err = 0.0 for fi in fcur: err += abs(fi) while err > xtol and iter < maxiter: s = dot(J, fcur) xs = [xs[i] - s[i] for i in eqns] fnew = fun(xs, *args) z = [fnew[i] - fcur[i] for i in eqns] u = dot(J, z) d = [-i for i in s] dmu = [d[i]-u[i] for i in eqns] dmu_d = inner_product(dmu, d) den_inv = 1.0/inner_product(d, u) factor = den_inv*dmu_d J_delta = [[factor*j for j in row] for row in J] for i in eqns: for j in eqns: J[i][j] += J_delta[i][j] fcur = fnew iter += 1 err = 0.0 for fi in fcur: err += abs(fi) return xs, iter def normalize(values): r'''Simple function which normalizes a series of values to be from 0 to 1, and for their sum to add to 1. .. math:: x = \frac{x}{sum_i x_i} Parameters ---------- values : array-like array of values Returns ------- fractions : array-like Array of values from 0 to 1 Notes ----- Does not work on negative values, or handle the case where the sum is zero. Examples -------- >>> normalize([3, 2, 1]) [0.5, 0.3333333333333333, 0.16666666666666666] ''' tot_inv = 1.0/sum(values) return [i*tot_inv for i in values] # NOTE: the first value of each array is used; it is only the indexes that # are adjusted for fortran def func_35_splev(arg, t, l, l1, k2, nk1): # minus 1 index if arg >= t[l-1] or l1 == k2: arg, t, l, l1, nk1, leave = func_40_splev(arg, t, l, l1, nk1) # Always leaves here return arg, t, l, l1, k2, nk1 l1 = l l = l - 1 arg, t, l, l1, k2, nk1 = func_35_splev(arg, t, l, l1, k2, nk1) return arg, t, l, l1, k2, nk1 def func_40_splev(arg, t, l, l1, nk1): if arg < t[l1-1] or l == nk1: # minus 1 index return arg, t, l, l1, nk1, 1 l = l1 l1 = l + 1 arg, t, l, l1, nk1, leave = func_40_splev(arg, t, l, l1, nk1) return arg, t, l, l1, nk1, leave def py_splev(x, tck, ext=0, t=None, c=None, k=None): """Evaluate a B-spline using a pure-python port of FITPACK's splev. This is not fully featured in that it does not support calculating derivatives. Takes the knots and coefficients of a B-spline tuple, and returns the value of the smoothing polynomial. Parameters ---------- x : float or list[float] An point or array of points at which to calculate and return the value of the spline, [-] tck : 3-tuple Ssequence of length 3 returned by `splrep` containing the knots, coefficients, and degree of the spline, [-] ext : int, optional, default 0 If `x` is not within the range of the spline, this handles the calculation of the results. * For ext=0, extrapolate the value * For ext=1, return 0 as the value * For ext=2, raise a ValueError on that point and fail to return values * For ext=3, return the boundary value as the value Returns ------- y : list The array of calculated values; the spline function evaluated at the points in `x`, [-] Notes ----- The speed of this for a scalar value in CPython is approximately 15% slower than SciPy's FITPACK interface. In PyPy, this is 10-20 times faster than using it (benchmarked on PyPy 6). There could be more bugs in this port. """ e = ext if tck is not None: t, c, k = tck x = [x] # if isinstance(x, (float, int, complex)): # x = [x] m = 1#len(x) n = len(t) y = [] # output array k1 = k + 1 k2 = k1 + 1 nk1 = n - k1 tb = t[k1-1] # -1 to get right index te = t[nk1 ] # -1 to get right index; + 1 - 1 l = k1 l1 = l + 1 for i in range(0, m): # m is only 1 # i only used in loop for 1 arg = x[i] if arg < tb or arg > te: if e == 0: arg, t, l, l1, k2, nk1 = func_35_splev(arg, t, l, l1, k2, nk1) elif e == 1: y.append(0.0) continue elif e == 2: raise ValueError("X value not in domain; set `ext` to 0 to " "extrapolate") elif e == 3: if arg < tb: arg = tb else: arg = te arg, t, l, l1, k2, nk1 = func_35_splev(arg, t, l, l1, k2, nk1) else: arg, t, l, l1, k2, nk1 = func_35_splev(arg, t, l, l1, k2, nk1) # Local arrays used in fpbspl and to carry its result h = [0.0]*20 hh = [0.0]*19 fpbspl(t, n, k, arg, l, h, hh) sp = 0.0E0 ll = l - k1 for j in range(0, k1): ll = ll + 1 sp = sp + c[ll-1]*h[j] # -1 to get right index y.append(sp) return y[0] # if len(y) == 1: # return y[0] # return y def py_bisplev(x, y, tck, dx=0, dy=0): """Evaluate a bivariate B-spline or its derivatives. For scalars, returns a float; for other inputs, mimics the formats of SciPy's `bisplev`. Parameters ---------- x : float or list[float] x value (rank 1), [-] y : float or list[float] y value (rank 1), [-] tck : tuple(list, list, list, int, int) Tuple of knot locations, coefficients, and the degree of the spline, [tx, ty, c, kx, ky], [-] dx : int, optional Order of partial derivative with respect to `x`, [-] dy : int, optional Order of partial derivative with respect to `y`, [-] Returns ------- values : float or list[list[float]] Calculated values from spline or their derivatives; according to the same format as SciPy's `bisplev`, [-] Notes ----- Use `bisplrep` to generate the `tck` representation; there is no Python port of it. """ tx, ty, c, kx, ky = tck if isinstance(x, (float, int)): x = [x] if isinstance(y, (float, int)): y = [y] z = [[cy_bispev(tx, ty, c, kx, ky, [xi], [yi])[0] for yi in y] for xi in x] if len(x) == len(y) == 1: return z[0][0] return z def fpbspl(t, n, k, x, l, h, hh): """subroutine fpbspl evaluates the (k+1) non-zero b-splines of degree k at t(l) <= x < t(l+1) using the stable recurrence relation of de boor and cox. All arrays are 1d! Optimized the assignment and order and so on. """ h[0] = 1.0 for j in range(1, k + 1): hh[0:j] = h[0:j] h[0] = 0.0 for i in range(j): li = l+i f = hh[i]/(t[li] - t[li - j]) h[i] = h[i] + f*(t[li] - x) h[i + 1] = f*(x - t[li - j]) def init_w(t, k, x, lx, w): tb = t[k] n = len(t) m = len(x) h = [0]*6 hh = [0]*5 te = t[n - k - 1] l1 = k + 1 l2 = l1 + 1 for i in range(m): arg = x[i] if arg < tb: arg = tb if arg > te: arg = te while not (arg < t[l1] or l1 == (n - k - 1)): l1 = l2 l2 = l1 + 1 fpbspl(t, n, k, arg, l1, h, hh) lx[i] = l1 - k - 1 for j in range(k + 1): w[i][j] = h[j] def cy_bispev(tx, ty, c, kx, ky, x, y): """Possible optimization: Do not evaluate derivatives, ever.""" nx = len(tx) ny = len(ty) mx = len(x) my = len(y) kx1 = kx + 1 ky1 = ky + 1 nkx1 = nx - kx1 nky1 = ny - ky1 wx = [[0.0]*kx1]*mx wy = [[0.0]*ky1]*my lx = [0]*mx ly = [0]*my size_z = mx*my z = [0.0]*size_z init_w(tx, kx, x, lx, wx) init_w(ty, ky, y, ly, wy) for j in range(my): for i in range(mx): sp = 0.0 err = 0.0 for i1 in range(kx1): for j1 in range(ky1): l2 = lx[i]*nky1 + ly[j] + i1*nky1 + j1 a = c[l2]*wx[i][i1]*wy[j][j1] - err tmp = sp + a err = (tmp - sp) - a sp = tmp z[j*mx + i] += sp return z p_0_70 = array_if_needed([0.06184590404457956, -0.7460693871557973, 2.2435704485433376, -2.1944070385048526, 0.3382265629285811, 0.2791966558569478]) q_0_07 = array_if_needed([-0.005308735283483908, 0.1823421262956287, -1.2364596896290079, 2.9897802200092296, -2.9365321202088004, 1.0]) p_07_099 = array_if_needed([7543860.817140365, -10254250.429758755, -4186383.973408412, 7724476.972409749, -3130743.609030545, 600806.068543299, -62981.15051292659, 3696.7937385473397, -114.06795167646395, 1.4406337969700391]) q_07_099 = array_if_needed([-1262997.3422452002, 10684514.56076485, -16931658.916668657, 10275996.02842749, -3079141.9506451315, 511164.4690136096, -49254.56172495263, 2738.0399260270983, -81.36790509581284, 1.0]) p_099_1 = array_if_needed([8.548256176424551e+34, 1.8485781239087334e+35, -2.1706889553798647e+34, 8.318563643438321e+32, -1.559802348661511e+31, 1.698939241177209e+29, -1.180285031647229e+27, 5.531049937687143e+24, -1.8085903366375877e+22, 4.203276811951035e+19, -6.98211620300421e+16, 82281997048841.92, -67157299796.61345, 36084814.54808544, -11478.108105137717, 1.6370226052761176]) q_099_1 = array_if_needed([-1.9763570499484274e+35, 1.4813997374958851e+35, -1.4773854824041134e+34, 5.38853721252814e+32, -9.882387315028929e+30, 1.0635231532999732e+29, -7.334629044071992e+26, 3.420655574477631e+24, -1.1147787784365177e+22, 2.584530363912858e+19, -4.285376337404043e+16, 50430830490687.56, -41115254924.43107, 22072284.971253656, -7015.799744041691, 1.0]) def polylog2(x): r'''Simple function to calculate PolyLog(2, x) from ranges 0 <= x <= 1, with relative error guaranteed to be < 1E-7 from 0 to 0.99999. This is a Pade approximation, with three coefficient sets with splits at 0.7 and 0.99. An exception is raised if x is under 0 or above 1. Parameters ---------- x : float Value to evaluate PolyLog(2, x) T Returns ------- y : float Evaluated result Notes ----- Efficient (2-4 microseconds). No implementation of this function exists in SciPy. Derived with mpmath's pade approximation. Required for the entropy integral of :obj:`thermo.heat_capacity.Zabransky_quasi_polynomial`. Examples -------- >>> polylog2(0.5) 0.5822405264516294 ''' if 0 <= x <= 0.7: p = p_0_70 q = q_0_07 offset = 0.26 elif 0.7 < x <= 0.99: p = p_07_099 q = q_07_099 offset = 0.95 elif 0.99 < x <= 1: p = p_099_1 q = q_099_1 offset = 0.999 else: raise ValueError('Approximation is valid between 0 and 1 only.') x = x - offset return horner(p, x)/horner(q, x) def max_abs_error(data, calc): max_err = 0.0 N = len(data) for i in range(N): diff = abs(data[i] - calc[i]) if diff > max_err: max_err = diff return max_err def max_abs_rel_error(data, calc): max_err = 0.0 N = len(data) for i in range(N): diff = abs((data[i] - calc[i])/data[i]) if diff > max_err: max_err = diff return max_err def max_squared_error(data, calc): max_err = 0.0 N = len(data) for i in range(N): diff = abs(data[i] - calc[i]) diff *= diff if diff > max_err: max_err = diff return max_err def max_squared_rel_error(data, calc): max_err = 0.0 N = len(data) for i in range(N): diff = abs((data[i] - calc[i])/data[i]) diff *= diff if diff > max_err: max_err = diff return max_err def mean_abs_error(data, calc): mean_err = 0.0 N = len(data) for i in range(N): mean_err += abs(data[i] - calc[i]) return mean_err/N def mean_abs_rel_error(data, calc): mean_err = 0.0 N = len(data) for i in range(N): if data[i] == 0.0: if calc[i] == 0.0: pass else: mean_err += 1.0 else: mean_err += abs((data[i] - calc[i])/data[i]) return mean_err/N def mean_squared_error(data, calc): mean_err = 0.0 N = len(data) for i in range(N): err = abs(data[i] - calc[i]) mean_err += err*err return mean_err/N def mean_squared_rel_error(data, calc): mean_err = 0.0 N = len(data) for i in range(N): err = abs((data[i] - calc[i])/data[i]) mean_err += err*err return mean_err/N global sp_root sp_root = None def root(*args, **kwargs): global sp_root if sp_root is None: from scipy.optimize import root as sp_root return sp_root(*args, **kwargs) global sp_minimize sp_minimize = None def minimize(*args, **kwargs): global sp_minimize if sp_minimize is None: from scipy.optimize import minimize as sp_minimize return sp_minimize(*args, **kwargs) global sp_fsolve sp_fsolve = None def fsolve(*args, **kwargs): global sp_fsolve if sp_fsolve is None: from scipy.optimize import fsolve as sp_fsolve return sp_fsolve(*args, **kwargs) global sp_curve_fit sp_curve_fit = None def curve_fit(*args, **kwargs): global sp_curve_fit if sp_curve_fit is None: from scipy.optimize import curve_fit as sp_curve_fit return sp_curve_fit(*args, **kwargs) global sp_leastsq sp_leastsq = None def leastsq(*args, **kwargs): global sp_leastsq if sp_leastsq is None: from scipy.optimize import leastsq as sp_leastsq return sp_leastsq(*args, **kwargs) global sp_differential_evolution sp_differential_evolution = None def differential_evolution(*args, **kwargs): global sp_differential_evolution if sp_differential_evolution is None: from scipy.optimize import differential_evolution as sp_differential_evolution return sp_differential_evolution(*args, **kwargs) global sp_lmder sp_lmder = None def lmder(*args, **kwargs): global sp_lmder if sp_lmder is None: from scipy.optimize._minpack import _lmder as sp_lmder return sp_lmder(*args, **kwargs) global sp_lmfit sp_lmfit = None def lmfit(*args, **kwargs): global sp_lmfit if sp_lmfit is None: from scipy.optimize._minpack import _lmfit as sp_lmfit return sp_lmfit(*args, **kwargs) def fixed_quad_Gauss_Kronrod(f, a, b, k_points, k_weights, l_weights, args): ''' Note: This type of function cannot be fast in numba right now, the function call is too slow! https://numba.pydata.org/numba-doc/dev/user/faq.html#can-i-pass-a-function-as-an-argument-to-a-jitted-function ''' val_gauss_kronrod = val_gauss_legendre = 0.0 diff = b - a fact = 0.5*diff N = len(k_points) # center = N//2 # sp = [0.0]*N # fx_gk = [0.0]*N # fx_gl = [0.0]*center k = 0 for i in range(N): x0 = 0.5*(1.0 - k_points[i]) x1 = 0.5*(1.0 + k_points[i]) # sp[i] = x = a*x0 + b*x1 # fx_gk[i] = y = f(x, *args) val_gauss_kronrod += fact*y*k_weights[i] if i%2: # fx_gl[k] = y val_gauss_legendre += fact*y*l_weights[k] k += 1 return val_gauss_kronrod, val_gauss_kronrod-val_gauss_legendre def quad_adaptive(f, a, b, args=(), kronrod_points=array_if_needed(kronrod_points[10]), kronrod_weights=array_if_needed(kronrod_weights[10]), legendre_weights=array_if_needed(legendre_weights[10]), epsrel=1.49e-8, epsabs=1.49e-8, depth=0, points=None): # Disregard `points` for now area, err_abs = fixed_quad_Gauss_Kronrod(f, a, b, kronrod_points, kronrod_weights, legendre_weights, args) # Match behavior, documented at https://www.johndcook.com/blog/2012/03/20/scipy-integration/ #and with a good test case at https://www.johndcook.com/blog/2012/03/20/scipy-integration/ if (abs(err_abs) < epsabs or (area == 0.0 or abs(err_abs/area) < epsrel)) or depth > 6: # print((a, b), area, abs(err_abs), epsabs, abs(err_abs/area), epsrel, depth) return area, err_abs mid = a + (b-a)*0.5 area_A, err_abs_A = quad_adaptive(f, a, mid, args, kronrod_points, kronrod_weights, legendre_weights, epsrel=epsrel, epsabs=epsabs*0.5, depth=depth+1) area_B, err_abs_B = quad_adaptive(f, mid, b, args, kronrod_points, kronrod_weights, legendre_weights, epsrel=epsrel, epsabs=epsabs*0.5, depth=depth+1) return area_A + area_B, abs(err_abs_A) + abs(err_abs_B) global sp_quad sp_quad = None def lazy_quad(f, a, b, args=(), epsrel=1.49e-08, epsabs=1.49e-8, **kwargs): global sp_quad if not IS_PYPY: if sp_quad is None: from scipy.integrate import quad as sp_quad return sp_quad(f, a, b, args, epsrel=epsrel, epsabs=epsabs, **kwargs) else: return quad_adaptive(f, a, b, args=args, epsrel=epsrel, epsabs=epsabs) # n = 300 # return fixed_quad_Gauss_Kronrod(f, a, b, kronrod_points[n], kronrod_weights[n], legendre_weights[n], args) def _call_nquad(x, func, range_funcs, epsrel, epsabs, *args): return nquad(func, range_funcs, args=(x,) +args , epsrel=epsrel, epsabs=epsabs) def nquad(func, ranges, args=(), epsrel=1.48e-8, epsabs=1.48e-8): my_low, my_high = ranges[-1](*args) if len(ranges) == 1: return quad_adaptive(func, my_low, my_high, args=args, epsrel=epsrel, epsabs=epsabs) # return quad_adaptive(_call_nquad, my_low, my_high, args=(func, ranges[:-1], epsrel, epsabs) +args, epsrel=epsrel, epsabs=epsabs) def dblquad(func, a, b, hfun, gfun, args=(), epsrel=1.48e-12, epsabs=1.48e-15): """Nominally working, but trying to use it has exposed the expected bugs in `quad_adaptive`.""" def inner_func(y, *args): full_args = (y,)+args quad_fluids = quad_adaptive(func, hfun(y, *args), gfun(y, *args), args=full_args, epsrel=epsrel, epsabs=epsabs)[0] # from scipy.integrate import quad as quad2 # quad_sp = quad2(func, hfun(y), gfun(y), args=full_args, epsrel=epsrel, epsabs=epsabs)[0] # print(quad_fluids, quad_sp, hfun(y), gfun(y), full_args, ) return quad_fluids # return quad(func, hfun(y), gfun(y), args=(y,)+args, epsrel=epsrel, epsabs=epsabs)[0] return quad_adaptive(inner_func, a, b, args=args, epsrel=epsrel, epsabs=epsabs) if IS_PYPY: quad = quad_adaptive else: quad = lazy_quad fit_minimization_targets = {'MeanAbsErr': mean_abs_error, 'MeanRelErr': mean_abs_rel_error, 'MeanSquareErr': mean_squared_error, 'MeanSquareRelErr': mean_squared_rel_error, 'MaxAbsErr': max_abs_error, 'MaxRelErr': max_abs_rel_error, 'MaxSquareErr': max_squared_error, 'MaxSquareRelErr': max_squared_rel_error, } def py_factorial(n): if n < 0: raise ValueError("Positive values only") factorial = 1 for i in range(2, n + 1): factorial *= i return factorial try: from math import factorial except: factorial = py_factorial # interp, horner, derivative methods (and maybe newton?) should always be used. if not IS_PYPY: def splev(*args, **kwargs): from scipy.interpolate import splev return splev(*args, **kwargs) def bisplev(*args, **kwargs): from scipy.interpolate import bisplev return bisplev(*args, **kwargs) else: splev, bisplev = py_splev, py_bisplev # Try out mpmath for special functions anyway has_scipy = False if not SKIP_DEPENDENCIES and not is_micropython and not is_ironpython: has_scipy = True # try: # import scipy # has_scipy = True # except ImportError: # has_scipy = False else: has_scipy = False erf = None try: from math import erf except ImportError: # python 2.6 or other implementations? pass def _lambertw_err(x, y): return x*exp(x) - y def py_lambertw(y, k=0): """For x > 0, the is always only one real solution For -1/e < x < 0, two real solutions. Besides compatibility with scipy, the result should have a complex part because micropython doesn't support .real on floats """ # Works for real inputs only, two main branches if k == 0: # Branches dead at -1 # -1 is hard limit for real in this branch # 700 is safe upper limit for exp # Input should be between -1 and +BIGNUMBER return brenth(_lambertw_err, -1.0, 700.0, (y,)) + 0.0j elif k == -1: # Input should be between 0 and -1/e # not a big input range! return brenth(_lambertw_err, -700.0, -1.0, (y,)) + 0.0j else: raise ValueError("Other branches not supported") #has_scipy = False if IS_PYPY: lambertw = py_lambertw if has_scipy: if not IS_PYPY: def lambertw(*args, **kwargs): from scipy.special import lambertw return lambertw(*args, **kwargs) def ellipe(m): from scipy.special import ellipe return ellipe(m) def gammaincc(*args, **kwargs): from scipy.special import gammaincc return gammaincc(*args, **kwargs) def i1(*args, **kwargs): from scipy.special import i1 return i1(*args, **kwargs) def i0(*args, **kwargs): from scipy.special import i0 return i0(*args, **kwargs) def k1(*args, **kwargs): from scipy.special import k1 return k1(*args, **kwargs) def k0(*args, **kwargs): from scipy.special import k0 return k0(*args, **kwargs) def iv(*args, **kwargs): from scipy.special import iv return iv(*args, **kwargs) def hyp2f1(*args, **kwargs): from scipy.special import hyp2f1 return hyp2f1(*args, **kwargs) def ellipkinc(phi, m): from scipy.special import ellipkinc return ellipkinc(phi, m) def ellipeinc(phi, m): from scipy.special import ellipeinc return ellipeinc(phi, m) if erf is None: def erf(*args, **kwargs): from scipy.special import erf return erf(*args, **kwargs) # from scipy.special import lambertw, ellipe, gammaincc # fluids # from scipy.special import i1, i0, k1, k0, iv # ht # from scipy.special import hyp2f1 # if erf is None: # from scipy.special import erf else: lambertw = py_lambertw # scipy is not available... fall back to mpmath as a Pure-Python implementation # However, lazy load all functions # from mpmath import lambertw # Same branches as scipy, supports .real # Figured out this definition from test_precompute_gammainc.py in scipy if erf is None: def erf(*args, **kwargs): import mpmath return mpmath.erf(*args, **kwargs) def gammaincc(a, x): import mpmath return mpmath.gammainc(a, a=x, regularized=True) def ellipe(*args, **kwargs): import mpmath return mpmath.ellipe(*args, **kwargs) def gammaincc(a, x): import mpmath return mpmath.gammainc(a, a=x, regularized=True) def iv(*args, **kwargs): import mpmath return mpmath.besseli(*args, **kwargs) def hyp2f1(*args, **kwargs): import mpmath return mpmath.hyp2f1(*args, **kwargs) def iv(*args, **kwargs): import mpmath return mpmath.besseli(*args, **kwargs) def i1(x): import mpmath return mpmath.mpmath.besseli(1, x) def i0(x): import mpmath return mpmath.mpmath.besseli(0, x) def k1(x): import mpmath return mpmath.mpmath.besselk(1, x) def k0(x): import mpmath return mpmath.mpmath.besselk(0, x) def ellipkinc(phi, m): import mpmath return mpmath.mpmath.ellipf(phi, m) def ellipeinc(phi, m): import mpmath return mpmath.ellipe.ellipeinc(phi, m) try: if FORCE_PYPY: lambertw = py_lambertw from scipy.special import ellipe, gammaincc, gamma, ellipkinc, ellipeinc # fluids from scipy.special import i1, i0, k1, k0, iv # ht from scipy.special import hyp2f1 if erf is None: from scipy.special import erf except: pass fluids-1.0.22/fluids/numerics/doubledouble.py0000644000175000017500000003022414302004506020535 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2021 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicensse, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from __future__ import division from math import sqrt as msqrt, log as mlog __all__ = ['add_dd', 'mul_noerrors_dd', 'mul_dd', 'div_dd', 'sqrt_dd', 'square_dd', 'mul_imag_dd', 'mul_imag_noerrors_dd', 'sqrt_imag_dd', 'add_imag_dd', 'imag_inv_dd', 'div_imag_dd', 'cbrt_imag_dd', 'cbrt_dd', 'cube_dd', 'cbrt_explicit_dd', 'eq_dd', 'neq_dd', 'lt_dd', 'gt_dd', 'le_dd', 'ge_dd', 'intpow_dd', 'exp_dd', 'log_dd', 'pow_dd'] third = 1/3.0 def eq_dd(r0, e0, r1, e1): '''Return True if two numbers are equal, False otherwise. ''' return r0 == r1 and e0 == e1 def neq_dd(r0, e0, r1, e1): '''Return False if two numbers are equal, True otherwise. ''' return r0 != r1 or e0 != e1 def lt_dd(r0, e0, r1, e1): '''Return True if first number is less than second number, otherwise False. ''' return r0 < r1 or (r0 == r1 and e0 < e1) def le_dd(r0, e0, r1, e1): '''Return True if first number is less than or equal to second number, otherwise False. ''' return r0 < r1 or (r0 == r1 and e0 <= e1) def gt_dd(r0, e0, r1, e1): '''Return True if first number is larger than second number, otherwise False. ''' return r0 > r1 or (r0 == r1 and e0 > e1) def ge_dd(r0, e0, r1, e1): '''Return True if first number is larger or equal to the second number, otherwise False. ''' return r0 > r1 or (r0 == r1 and e0 >= e1) def add_dd(x0, y0, x1, y1): '''Add two floating point doule doubles. args: first number main, first number small... ''' r = x0 + x1 t = r - x0 e = (x0 - (r - t)) + (x1 - t) e += y0 + y1 r2 = r + e e = e - (r2 - r) return r2, e def mul_noerrors_dd(x0, x1): '''Multiply two floating point numbers which were previously only doubles, and return ther ''' u = x0*134217729.0 v = x1*134217729.0 s = u - (u - x0) t = v - (v - x1) f = x0 - s g = x1 - t r = x0*x1 e = ((s*t - r) + s*g + f*t) + f*g return r, e def mul_dd(x0, y0, x1, y1): u = x0*134217729.0 v = x1*134217729.0 s = u - (u - x0) t = v - (v - x1) f = x0 - s g = x1 - t r = x0*x1 e = ((s*t - r) + s*g + f*t) + f*g e += x0*y1 + y0*x1 r0 = r + e e = e - (r0 - r) return r0, e def div_dd(x0, y0, x1, y1): # Creating a 1/x operation would save 1 add, one multiply only! r = x0/x1 u = r*134217729.0 v = x1*134217729.0 s2 = u - (u - r) t = v - (v - x1) f = r - s2 g = x1 - t s = r*x1 f = ((s2*t - s) + s2*g + f*t) + f*g e = (x0 - s - f + y0 - r*y1)/x1 r0 = r + e e = e - (r0 - r) return r0, e def sqrt_dd(x, y): if x == 0.0: return (0.0, 0.0) r = msqrt(x) u = r*134217729.0 s2 = u - (u - r) f2 = r - s2 s = r*r f = ((s2*s2 - s) + 2.0*s2*f2) + f2*f2 e = (x - s - f + y)*0.5/r r0 = r + e e = e - (r0 - r) return r0, e def square_dd(x0, y0): # main part, second part - as fast as possible u = x0*134217729.0 s = u - (u - x0) f = x0 - s r = x0*x0 e = ((s*s - r) + 2.0*s*f) + f*f + 2.0*x0*y0 r0 = r + e e = e - (r0 - r) return r0, e def intpow_dd(r, e, n): '''Compute and return the integer power of a double-double number `r` and `e` to the `n`. (r+e)^n. ''' br, be = r, e i = abs(n) rr, re = 1.0, 0.0 while True: if i & 1 == 1: rr, re = mul_dd(rr, re, br, be) if i <= 1: break i >>= 1 br, be = mul_dd(br, be, br, be) if n < 0: return div_dd(1.0, 0.0, rr, re) return rr, re dd_exp_coeffs = (156, 12012, 600600, 21621600, 588107520, 12350257920, 201132771840, 2514159648000, 23465490048000, 154872234316800, 647647525324800, 1295295050649600) def exp_dd(r, e): n = int(round(r)) xr, xe = add_dd(r, e, -n, 0) ur, ue = add_dd(xr, xe, dd_exp_coeffs[0], 0) for i in range(1, 12): ur, ue = mul_dd(xr, xe, ur, ue) ur, ue = add_dd(ur, ue, dd_exp_coeffs[i], 0) vr, ve = add_dd(xr, xe, -dd_exp_coeffs[0], 0) f = 1.0 for i in range(1, 12): vr, ve = mul_dd(xr, xe, vr, ve) vr, ve = add_dd(vr, ve, f*dd_exp_coeffs[i], 0) f *= -1.0 outr, oute = intpow_dd(2.718281828459045, 1.4456468917292502e-16, n) outr, oute = mul_dd(outr, oute, ur, ue) outr, oute = div_dd(outr, oute, vr, ve) return outr, oute def log_dd(r, e): '''Compute the log. ''' rr, re = mlog(r), 0.0 ur, ue = exp_dd(rr, re) tmpr, tmpe = add_dd(ur, ue, -r, -e) denr, dene = add_dd(ur, ue, r, e) tmpr, tmpe = div_dd(tmpr, tmpe, denr, dene) tmpr, tmpe = mul_dd(2.0, 0.0, tmpr, tmpe) return add_dd(rr, re, -tmpr, -tmpe) def pow_dd(r, e, nr, ne): '''Compute the power''' if ne == 0.0 and (nr %1) == 0: return intpow_dd(r, e, nr) tmpr, tmpe = log_dd(r, e) tmpr, tmpe = mul_dd(tmpr, tmpe, nr, ne) return exp_dd(tmpr, tmpe) def mul_imag_dd(xrr, xre, xcr, xce, yrr, yre, ycr, yce): # TODO Make one for one number having zero complex number zrr, zre = mul_dd(xrr, xre, yrr, yre) wrr, wre = mul_dd(xcr, xce, ycr, yce) zrr, zre = add_dd(zrr, zre, -wrr, -wre) zcr, zce = mul_dd(xrr, xre, ycr, yce) wrr, wre = mul_dd(xcr, xce, yrr, yre) zcr, zce = add_dd(zcr, zce, wrr, wre) return zrr, zre, zcr, zce def mul_imag_noerrors_dd(xrr, xcr, yrr, ycr): zrr, zre = mul_noerrors_dd(xrr, yrr) wrr, wre = mul_noerrors_dd(xcr, -ycr) zrr, zre = add_dd(zrr, zre, wrr, wre) zcr, zce = mul_noerrors_dd(xrr, ycr) wrr, wre = mul_noerrors_dd(xcr, yrr) zcr, zce = add_dd(zcr, zce, wrr, wre) return zrr, zre, zcr, zce def sqrt_imag_dd(xrr, xre, xcr, xce): if xcr == 0.0: if xrr > 0.0: zrr, zre = sqrt_dd(xrr, xre) return zrr, zre, 0.0, 0.0 zrr, zre = sqrt_dd(-xrr, -xre) return 0.0, 0.0, zrr, zre # 2 square, 3 add, 3 sqrt xrr2, xre2 = square_dd(xrr, xre) xcr2, xce2 = square_dd(xcr, xce) wr, we = add_dd(xrr2, xre2, xcr2, xce2) wr, we = sqrt_dd(wr, we) zrr, zre = add_dd(wr, we, xrr, xre) zrr *= 0.5 zre *= 0.5 # checks out zrr, zre = sqrt_dd(zrr, zre) # real part of answer zcr, zce = add_dd(wr, we, -xrr, -xre) zcr *= 0.5 zce *= 0.5 # checks out zcr, zce = sqrt_dd(zcr, zce) # real part of answer return (zrr, zre, zcr, zce) def add_imag_dd(xrr, xre, xcr, xce, yrr, yre, ycr, yce): zrr, zre = add_dd(xrr, xre, yrr, yre) zcr, zce = add_dd(xcr, xce, ycr, yce) return zrr, zre, zcr, zce def imag_inv_dd(xrr, xre, xcr, xce): cr2, ce2 = square_dd(xrr, xre) wr, we = square_dd(xcr, xce) wr, we = add_dd(cr2, ce2, wr, we) xrr, xre = div_dd(xrr, xre, wr, we) xcr, xce = div_dd(xcr, xce, wr, we) return xrr, xre, -xcr, -xce def div_imag_dd(xrr, xre, xcr, xce, yrr, yre, ycr, yce): # TODO try to make one for the case the numerator has no complex number # as that is used. cr2, ce2 = square_dd(yrr, yre) wr, we = square_dd(ycr, yce) wr, we = add_dd(cr2, ce2, wr, we) nlr, nle = mul_dd(xrr, xre, yrr, yre) cr2, ce2 = mul_dd(xcr, xce, ycr, yce) nlr, nle = add_dd(nlr, nle, cr2, ce2) nrr, nre = mul_dd(xcr, xce, yrr, yre) cr2, ce2 = mul_dd(xrr, xre, ycr, yce) nrr, nre = add_dd(nrr, nre, -cr2, -ce2) xrr, xre = div_dd(nlr, nle, wr, we) xcr, xce = div_dd(nrr, nre, wr, we) return xrr, xre, xcr, xce def cbrt_imag_dd(xrr, xre, xcr, xce): # start off at the double precision solution y_guess = (xrr + xcr*1.0j)**(-1.0/3.) yr, yc = y_guess.real, y_guess.imag # one newton iteration t0rr, t0re, t0cr, t0ce = mul_imag_noerrors_dd(yr, yc, yr, yc) # have y*y t0rr, t0re, t0cr, t0ce = mul_imag_dd(t0rr, t0re, t0cr, t0ce, yr, 0.0, yc, 0.0) # have y*y*y t0rr, t0re, t0cr, t0ce = mul_imag_dd(t0rr, t0re, t0cr, t0ce, xrr, xre, xcr, xce) # have x*y*y*y # here, we flip the signs on the complex bits # add do an add to the real bits t0rr, t0re = add_dd(1.0, 0.0, -t0rr, -t0re) # t0rr, t0re, t0cr, t0ce = add_imag_dd(1.0, 0.0, 0.0, 0.0, -t0rr, -t0re, -t0cr, -t0ce) # have 1-x*y*y*y ; should be able to optimize this t0rr, t0re, t0cr, t0ce = mul_imag_dd(yr, 0.0, yc, 0.0, t0rr, t0re, -t0cr, -t0ce) # have y*(1-x*y*y*y) t0rr, t0re, t0cr, t0ce = mul_imag_dd(t0rr, t0re, t0cr, t0ce, 0.3333333333333333, 1.850371707708594e-17, 0.0, 0.0) # have third_dd*y*(1-x*y*y*y); should be able to optimize this t0rr, t0re, t0cr, t0ce = add_imag_dd(yr, 0.0, yc, 0.0, t0rr, t0re, t0cr, t0ce) # have y return imag_inv_dd(t0rr, t0re, t0cr, t0ce) def cbrt_dd(xr, xe): # http://web.mit.edu/tabbott/Public/quaddouble-debian/qd-2.3.4-old/docs/qd.pdf yr = (xr**(-1.0/3.)) ye = 0.0 w0r, w0e = cube_dd(yr, ye) # w0r, w0e = mul_dd(w0r, w0e, yr, ye) w0r, w0e = mul_dd(w0r, w0e, xr, xe) w0r, w0e = add_dd(1.0, 0.0, -w0r, -w0e) w0r, w0e = mul_dd(w0r, w0e, yr, ye) yr, ye = add_dd(yr, ye, w0r, w0e) # Do it again, most of the time probably don't need this? Turn it off on EOS? w0r, w0e = cube_dd(yr, ye) w0r, w0e = mul_dd(w0r, w0e, xr, xe) w0r, w0e = add_dd(1.0, 0.0, -w0r, -w0e) w0r, w0e = mul_dd(w0r, w0e, yr, ye) yr, ye = add_dd(yr, ye, third*w0r, third*w0e) return div_dd(1.0, 0.0, yr, ye) def cube_dd(x0, y0): # main part, second part - as fast as possible u = x0*134217729.0 s = u - (u - x0) f = x0 - s r = x0*x0 e = ((s*s - r) + 2.0*s*f) + f*f + 2.0*x0*y0 r0 = r + e e0 = e - (r0 - r) v = r0*134217729.0 t = v - (v - r0) g = r0 - t r = x0*r0 e = ((s*t - r) + s*g + f*t) + f*g + x0*e0 + y0*r0 r0 = r + e e = e - (r0 - r) return r0, e def cbrt_explicit_dd(xr, xe): # http://web.mit.edu/tabbott/Public/quaddouble-debian/qd-2.3.4-old/docs/qd.pdf yr = (xr**(-1.0/3.)) ye = 0.0 # w0r, w0e = cube_dd(yr, ye) # Couple of things commented out at the start since ye is zero # Cannot seem to make ot work good. u = yr*134217729.0 s = u - (u - yr) f = yr - s r = yr*yr w0e = ((s*s - r) + 2.0*s*f) + f*f + 2.0*yr*ye w0r = r + w0e e0 = w0e - (w0r - r) v = w0r*134217729.0 t = v - (v - w0r) g = w0r - t r = yr*w0r w0e = ((s*t - r) + s*g + f*t) + f*g + yr*e0 + ye*w0r w0r = r + w0e w0e = w0e - (w0r - r) w0r, w0e = mul_dd(w0r, w0e, xr, xe) w0r, w0e = add_dd(1.0, 0.0, -w0r, -w0e) w0r, w0e = mul_dd(w0r, w0e, yr, ye) yr, ye = add_dd(yr, ye, w0r, w0e) # Do it again, most of the time probably don't need this? Turn it off on EOS? u = yr*134217729.0 s = u - (u - yr) f = yr - s r = yr*yr w0e = ((s*s - r) + 2.0*s*f) + f*f + 2.0*yr*ye w0r = r + w0e e0 = w0e - (w0r - r) v = w0r*134217729.0 t = v - (v - w0r) g = w0r - t r = yr*w0r w0e = ((s*t - r) + s*g + f*t) + f*g + yr*e0 + ye*w0r w0r = r + w0e w0e = w0e - (w0r - r) w0r, w0e = mul_dd(w0r, w0e, xr, xe) w0r, w0e = add_dd(1.0, 0.0, -w0r, -w0e) w0r, w0e = mul_dd(w0r, w0e, yr, ye) yr, ye = add_dd(yr, ye, third*w0r, third*w0e) return div_dd(1.0, 0.0, yr, ye) fluids-1.0.22/fluids/numerics/arrays.py0000644000175000017500000004106014302004506017371 0ustar nileshnilesh# -*- coding: utf-8 -*- # type: ignore """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2019 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from __future__ import division from math import sin, exp, pi, fabs, copysign, log, isinf, acos, cos, sin, sqrt import sys REQUIRE_DEPENDENCIES = False if not REQUIRE_DEPENDENCIES: IS_PYPY = True else: try: # The right way imports the platform module which costs to ms to load! # implementation = platform.python_implementation() IS_PYPY = 'PyPy' in sys.version except AttributeError: IS_PYPY = False #IS_PYPY = True # for testing #if not IS_PYPY and not REQUIRE_DEPENDENCIES: # try: # import numpy as np # except ImportError: # np = None __all__ = ['dot', 'inv', 'det', 'solve', 'norm2', 'inner_product', 'eye', 'array_as_tridiagonals', 'solve_tridiagonal', 'subset_matrix'] primitive_containers = frozenset([list, tuple]) def det(matrix): """Seem sto work fine. >> from sympy import * >> from sympy.abc import * >> Matrix([[a, b], [c, d]]).det() a*d - b*c >> Matrix([[a, b, c], [d, e, f], [g, h, i]]).det() a*e*i - a*f*h - b*d*i + b*f*g + c*d*h - c*e*g A few terms can be slightly factored out of the 3x dim. >> Matrix([[a, b, c, d], [e, f, g, h], [i, j, k, l], [m, n, o, p]]).det() a*f*k*p - a*f*l*o - a*g*j*p + a*g*l*n + a*h*j*o - a*h*k*n - b*e*k*p + b*e*l*o + b*g*i*p - b*g*l*m - b*h*i*o + b*h*k*m + c*e*j*p - c*e*l*n - c*f*i*p + c*f*l*m + c*h*i*n - c*h*j*m - d*e*j*o + d*e*k*n + d*f*i*o - d*f*k*m - d*g*i*n + d*g*j*m 72 mult vs ~48 in cse'd version' Commented out - takes a few seconds >> #Matrix([[a, b, c, d, e], [f, g, h, i, j], [k, l, m, n, o], [p, q, r, s, t], [u, v, w, x, y]]).det() 260 multiplies with cse; 480 without it. """ size = len(matrix) if size == 1: return matrix[0] elif size == 2: (a, b), (c, d) = matrix return a*d - c*b elif size == 3: (a, b, c), (d, e, f), (g, h, i) = matrix return a*(e*i - h*f) - d*(b*i - h*c) + g*(b*f - e*c) elif size == 4: (a, b, c, d), (e, f, g, h), (i, j, k, l), (m, n, o, p) = matrix return (a*f*k*p - a*f*l*o - a*g*j*p + a*g*l*n + a*h*j*o - a*h*k*n - b*e*k*p + b*e*l*o + b*g*i*p - b*g*l*m - b*h*i*o + b*h*k*m + c*e*j*p - c*e*l*n - c*f*i*p + c*f*l*m + c*h*i*n - c*h*j*m - d*e*j*o + d*e*k*n + d*f*i*o - d*f*k*m - d*g*i*n + d*g*j*m) elif size == 5: (a, b, c, d, e), (f, g, h, i, j), (k, l, m, n, o), (p, q, r, s, t), (u, v, w, x, y) = matrix x0 = s*y x1 = a*g*m x2 = t*w x3 = a*g*n x4 = r*x x5 = a*g*o x6 = t*x x7 = a*h*l x8 = q*y x9 = a*h*n x10 = s*v x11 = a*h*o x12 = r*y x13 = a*i*l x14 = t*v x15 = a*i*m x16 = q*w x17 = a*i*o x18 = s*w x19 = a*j*l x20 = q*x x21 = a*j*m x22 = r*v x23 = a*j*n x24 = b*f*m x25 = b*f*n x26 = b*f*o x27 = b*h*k x28 = t*u x29 = b*h*n x30 = p*x x31 = b*h*o x32 = b*i*k x33 = p*y x34 = b*i*m x35 = r*u x36 = b*i*o x37 = b*j*k x38 = s*u x39 = b*j*m x40 = p*w x41 = b*j*n x42 = c*f*l x43 = c*f*n x44 = c*f*o x45 = c*g*k x46 = c*g*n x47 = c*g*o x48 = c*i*k x49 = c*i*l x50 = p*v x51 = c*i*o x52 = c*j*k x53 = c*j*l x54 = q*u x55 = c*j*n x56 = d*f*l x57 = d*f*m x58 = d*f*o x59 = d*g*k x60 = d*g*m x61 = d*g*o x62 = d*h*k x63 = d*h*l x64 = d*h*o x65 = d*j*k x66 = d*j*l x67 = d*j*m x68 = e*f*l x69 = e*f*m x70 = e*f*n x71 = e*g*k x72 = e*g*m x73 = e*g*n x74 = e*h*k x75 = e*h*l x76 = e*h*n x77 = e*i*k x78 = e*i*l x79 = e*i*m return (x0*x1 - x0*x24 + x0*x27 + x0*x42 - x0*x45 - x0*x7 - x1*x6 + x10*x11 - x10*x21 - x10*x44 + x10*x52 + x10*x69 - x10*x74 - x11*x20 + x12*x13 + x12*x25 - x12*x3 - x12*x32 - x12*x56 + x12*x59 - x13*x2 + x14*x15 + x14*x43 - x14*x48 - x14*x57 + x14*x62 - x14*x9 - x15*x8 + x16*x17 - x16*x23 - x16*x58 + x16*x65 + x16*x70 - x16*x77 - x17*x22 + x18*x19 + x18*x26 - x18*x37 - x18*x5 - x18*x68 + x18*x71 - x19*x4 - x2*x25 + x2*x3 + x2*x32 + x2*x56 - x2*x59 + x20*x21 + x20*x44 - x20*x52 - x20*x69 + x20*x74 + x22*x23 + x22*x58 - x22*x65 - x22*x70 + x22*x77 + x24*x6 - x26*x4 - x27*x6 + x28*x29 - x28*x34 - x28*x46 + x28*x49 + x28*x60 - x28*x63 - x29*x33 + x30*x31 - x30*x39 - x30*x47 + x30*x53 + x30*x72 - x30*x75 - x31*x38 + x33*x34 + x33*x46 - x33*x49 - x33*x60 + x33*x63 + x35*x36 - x35*x41 - x35*x61 + x35*x66 + x35*x73 - x35*x78 - x36*x40 + x37*x4 + x38*x39 + x38*x47 - x38*x53 - x38*x72 + x38*x75 + x4*x5 + x4*x68 - x4*x71 + x40*x41 + x40*x61 - x40*x66 - x40*x73 + x40*x78 - x42*x6 - x43*x8 + x45*x6 + x48*x8 + x50*x51 - x50*x55 - x50*x64 + x50*x67 + x50*x76 - x50*x79 - x51*x54 + x54*x55 + x54*x64 - x54*x67 - x54*x76 + x54*x79 + x57*x8 + x6*x7 - x62*x8 + x8*x9) else: # TODO algorithm? import numpy as np return float(np.linalg.det(matrix)) def inv(matrix): """5 has way too many multiplies. >> from sympy import * >> from sympy.abc import * >> Matrix([a]).inv() Matrix([[1/a]]) >> cse(Matrix([[a, b], [c, d]]).inv()) Matrix([ [1/a + b*c/(a**2*(d - b*c/a)), -b/(a*(d - b*c/a))], [ -c/(a*(d - b*c/a)), 1/(d - b*c/a)]]) >> m_3 = Matrix([[a, b, c], [d, e, f], [g, h, i]]) >> #cse(m_3.inv()) >> m_4 = Matrix([[a, b, c, d], [e, f, g, h], [i, j, k, l], [m, n, o, p]]) >> cse(m_4.inv()) # Note: for 3, 4 - forgot to generate code using optimizations='basic' """ size = len(matrix) if size == 1: try: return [1.0/matrix[0]] except: return [1.0/matrix[0][0]] elif size == 2: try: (a, b), (c, d) = matrix x0 = 1.0/a x1 = b*x0 x2 = 1.0/(d - c*x1) x3 = c*x2 return [[x0 + b*x3*x0*x0, -x1*x2], [-x0*x3, x2]] except: import numpy as np return np.linalg.inv(matrix).tolist() elif size == 3: (a, b, c), (d, e, f), (g, h, i) = matrix x0 = 1./a x1 = b*d x2 = e - x0*x1 x3 = 1./x2 x4 = b*g x5 = h - x0*x4 x6 = x0*x3 x7 = d*x6 x8 = -g*x0 + x5*x7 x9 = c*d x10 = f - x0*x9 x11 = b*x6 x12 = c*x0 - x10*x11 x13 = a*e x14 = -x1 + x13 x15 = 1./(-a*f*h - c*e*g + f*x4 + h*x9 - i*x1 + i*x13) x16 = x14*x15 x17 = x12*x16 x18 = x14*x15*x3 x19 = x18*x5 x20 = x10*x18 return [[x0 - x17*x8 + x1*x3*x0*x0, -x11 + x12*x19, -x17], [-x20*x8 - x7, x10*x16*x5*x2**-2 + x3, -x20], [ x16*x8, -x19, x16]] elif size == 4: (a, b, c, d), (e, f, g, h), (i, j, k, l), (m, n, o, p) = matrix x0 = 1./a x1 = b*e x2 = f - x0*x1 x3 = 1./x2 x4 = i*x0 x5 = -b*x4 + j x6 = x0*x3 x7 = e*x6 x8 = -x4 + x5*x7 x9 = c*x0 x10 = -e*x9 + g x11 = b*x6 x12 = -x10*x11 + x9 x13 = a*f x14 = -x1 + x13 x15 = k*x13 x16 = b*g*i x17 = c*e*j x18 = a*g*j x19 = k*x1 x20 = c*f*i x21 = x15 + x16 + x17 - x18 - x19 - x20 x22 = 1/x21 x23 = x14*x22 x24 = x12*x23 x25 = m*x0 x26 = -b*x25 + n x27 = x26*x3 x28 = -m*x9 + o - x10*x27 x29 = x23*x8 x30 = -x25 + x26*x7 - x28*x29 x31 = d*x0 x32 = -e*x31 + h x33 = x3*x32 x34 = -i*x31 + l - x33*x5 x35 = -x11*x32 - x24*x34 + x31 x36 = a*n x37 = g*l x38 = h*o x39 = l*o x40 = b*m x41 = h*k x42 = c*l x43 = f*m x44 = c*h x45 = i*n x46 = d*k x47 = e*n x48 = d*o x49 = d*g x50 = j*m x51 = 1.0/(a*j*x38 - b*i*x38 - e*j*x48 + f*i*x48 + p*x15 + p*x16 + p*x17 - p*x18 - p*x19 - p*x20 + x1*x39 - x13*x39 + x36*x37 - x36*x41 - x37*x40 + x40*x41 + x42*x43 - x42*x47 - x43*x46 + x44*x45 - x44*x50 - x45*x49 + x46*x47 + x49*x50) x52 = x21*x51 x53 = x35*x52 x54 = x14*x22*x3 x55 = x5*x54 x56 = -x27 + x28*x55 x57 = x52*x56 x58 = x14*x51 x59 = x28*x58 x60 = x10*x54 x61 = x33 - x34*x60 x62 = x52*x61 x63 = x34*x58 return [[x0 - x24*x8 - x30*x53 + x1*x3*x0*x0, -x11 + x12*x55 - x35*x57, -x24 + x35*x59, -x53], [-x30*x62 - x60*x8 - x7, x10*x23*x5*x2**-2 + x3 - x56*x62, x59*x61 - x60, -x62], [x29 - x30*x63, -x55 - x56*x63, x14*x14*x22*x28*x34*x51 + x23, -x63], [x30*x52, x57, -x59, x52]] else: return inv_lu(matrix) # TODO algorithm? # import numpy as np # return np.linalg.inv(matrix).tolist() def shape(value): '''Find and return the shape of an array, whether it is a numpy array or a list-of-lists or other combination of iterators. Parameters ---------- value : various Input array, [-] Returns ------- shape : tuple(int, dimension) Dimensions of array, [-] Notes ----- It is assumed the shape is consistent - not something like [[1.1, 2.2], [2.4]] Examples -------- >>> shape([]) (0,) >>> shape([1.1, 2.2, 5.5]) (3,) >>> shape([[1.1, 2.2, 5.5], [2.0, 1.1, 1.5]]) (2, 3) >>> shape([[[1.1,], [2.0], [1.1]]]) (1, 3, 1) >>> shape(['110-54-3']) (1,) ''' try: return value.shape except: pass dims = [len(value)] try: # Except this block to handle the case of no value iter_value = value[0] for i in range(10): # try: if type(iter_value) in primitive_containers: dims.append(len(iter_value)) iter_value = iter_value[0] else: break # except: # break except: pass return tuple(dims) # try: # try: # new_shape = (len(value), len(value[0]), len(value[0][0])) # except: # new_shape = (len(value), len(value[0])) # except: # new_shape = (len(value),) # return new_shape def eye(N): mat = [] for i in range(N): r = [0.0]*N r[i] = 1.0 mat.append(r) return mat def dot(a, b): try: ab = [sum([ri*bi for ri, bi in zip(row, b)]) for row in a] except: ab = [sum([ai*bi for ai, bi in zip(a, b)])] return ab def inner_product(a, b): tot = 0.0 for i in range(len(a)): tot += a[i]*b[i] return tot def inplace_LU(A, ipivot, N): Np1 = N+1 for j in range(1, Np1): for i in range(1, j): tot = A[i][j] for k in range(1, i): tot -= A[i][k]*A[k][j] A[i][j] = tot apiv = 0.0 for i in range(j, Np1): tot = A[i][j] for k in range(1, j): tot -= A[i][k]*A[k][j] A[i][j] = tot if apiv < abs(A[i][j]): apiv, ipiv = abs(A[i][j]), i if apiv == 0: raise ValueError("Singular matrix") ipivot[j] = ipiv if ipiv != j: for k in range(1, Np1): t = A[ipiv][k] A[ipiv][k] = A[j][k] A[j][k] = t Ajjinv = 1.0/A[j][j] for i in range(j+1, Np1): A[i][j] *= Ajjinv return None def solve_from_lu(A, pivots, b, N): Np1 = N + 1 # Note- list call is very slow faster to replace with [i for i in row] b = [0.0] + [i for i in b] #list(b) for i in range(1, Np1): tot = b[pivots[i]] b[pivots[i]] = b[i] for j in range(1, i): tot -= A[i][j]*b[j] b[i] = tot for i in range(N, 0, -1): tot = b[i] for j in range(i+1, Np1): tot -= A[i][j]*b[j] b[i] = tot/A[i][i] return b def solve_LU_decomposition(A, b): N = len(b) A_copy = [[0.0]*(N+1)] for row in A: # Note- list call is very slow faster to replace with [i for i in row] r = [0.0] + [i for i in row] # r = list(row) # r.insert(0, 0.0) A_copy.append(r) pivots = [0.0]*(N+1) inplace_LU(A_copy, pivots, N) return solve_from_lu(A_copy, pivots, b, N)[1:] def inv_lu(a): N = len(a) Np1 = N + 1 A_copy = [[0.0]*Np1] for row in a: # Note- list call is very slow faster to replace with [i for i in row] r = list(row) r.insert(0, 0.0) A_copy.append(r) a = A_copy ainv = [[0.0]*N for i in range(N)] pivots = [0]*Np1 inplace_LU(a, pivots, N) for j in range(N): b = [0.0]*N b[j] = 1.0 b = solve_from_lu(a, pivots, b, N)[1:] for i in range(N): ainv[i][j] = b[i] return ainv def solve(a, b): if len(a) > 4: if IS_PYPY or np is None: return solve_LU_decomposition(a, b) import numpy as np return np.linalg.solve(a, b).tolist() else: return dot(inv(a), b) def norm2(arr): tot = 0.0 for i in arr: tot += i*i return sqrt(tot) def array_as_tridiagonals(arr): row_last = arr[0] a, b, c = [], [row_last[0]], [] for i in range(1, len(row_last)): row = arr[i] b.append(row[i]) c.append(row_last[i]) a.append(row[i-1]) row_last = row return a, b, c def tridiagonals_as_array(a, b, c, zero=0.0): N = len(b) arr = [[zero]*N for _ in range(N)] row_last = arr[0] row_last[0] = b[0] for i in range(1, N): row = arr[i] row[i] = b[i] # set the middle row back row[i-1] = a[i-1] row_last[i] = c[i-1] row_last = row return arr def solve_tridiagonal(a, b, c, d): b, d = [i for i in b], [i for i in d] N = len(d) for i in range(N - 1): m = a[i]/b[i] b[i+1] -= m*c[i] d[i+1] -= m*d[i] b[-1] = d[-1]/b[-1] for i in range(N-2, -1, -1): b[i] = (d[i] - c[i]*b[i+1])/b[i] return b def subset_matrix(whole, subset): if type(subset) is slice: subset = range(subset.start, subset.stop, subset.step) # N = len(subset) # new = [[None]*N for i in range(N)] # for ni, i in enumerate(subset): # for nj,j in enumerate(subset): # new[ni][nj] = whole[i][j] new = [] for i in subset: whole_i = whole[i] # r = [whole_i[j] for j in subset] # new.append(r) new.append([whole_i[j] for j in subset]) # r = [] # for j in subset: # r.append(whole_i[j]) return new fluids-1.0.22/fluids/compressible.pyi0000644000175000017500000001311514302004506017103 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( Optional, Union, ) def Fritzsche( SG: float, Tavg: float, L: Optional[float] = ..., D: Optional[float] = ..., P1: Optional[float] = ..., P2: Optional[float] = ..., Q: Optional[float] = ..., Ts: float = ..., Ps: float = ..., Zavg: float = ..., E: float = ... ) -> float: ... def IGT( SG: float, Tavg: float, mu: float, L: Optional[float] = ..., D: Optional[float] = ..., P1: Optional[float] = ..., P2: Optional[float] = ..., Q: Optional[float] = ..., Ts: float = ..., Ps: float = ..., Zavg: float = ..., E: float = ... ) -> float: ... def Muller( SG: float, Tavg: float, mu: float, L: Optional[float] = ..., D: Optional[float] = ..., P1: Optional[float] = ..., P2: Optional[float] = ..., Q: Optional[float] = ..., Ts: float = ..., Ps: float = ..., Zavg: float = ..., E: float = ... ) -> float: ... def Oliphant( SG: float, Tavg: float, L: Optional[float] = ..., D: Optional[float] = ..., P1: Optional[float] = ..., P2: Optional[float] = ..., Q: Optional[float] = ..., Ts: float = ..., Ps: float = ..., Zavg: float = ..., E: float = ... ) -> float: ... def P_critical_flow(P: float, k: float) -> float: ... def P_isothermal_critical_flow(P: float, fd: float, D: float, L: float) -> float: ... def P_stagnation(P: float, T: float, Tst: float, k: float) -> float: ... def P_upstream_isothermal_critical_flow(P: float, fd: float, D: float, L: float) -> float: ... def Panhandle_A( SG: float, Tavg: float, L: Optional[float] = ..., D: Optional[float] = ..., P1: Optional[float] = ..., P2: Optional[float] = ..., Q: Optional[float] = ..., Ts: float = ..., Ps: float = ..., Zavg: float = ..., E: float = ... ) -> float: ... def Panhandle_B( SG: float, Tavg: float, L: Optional[float] = ..., D: Optional[float] = ..., P1: Optional[float] = ..., P2: Optional[float] = ..., Q: Optional[float] = ..., Ts: float = ..., Ps: float = ..., Zavg: float = ..., E: float = ... ) -> float: ... def Spitzglass_high( SG: float, Tavg: float, L: Optional[float] = ..., D: Optional[float] = ..., P1: Optional[float] = ..., P2: Optional[float] = ..., Q: Optional[float] = ..., Ts: float = ..., Ps: float = ..., Zavg: float = ..., E: float = ... ) -> float: ... def Spitzglass_low( SG: float, Tavg: float, L: Optional[float] = ..., D: Optional[float] = ..., P1: Optional[float] = ..., P2: Optional[float] = ..., Q: Optional[float] = ..., Ts: float = ..., Ps: float = ..., Zavg: float = ..., E: float = ... ) -> float: ... def T_critical_flow(T: float, k: float) -> float: ... def T_stagnation(T: float, P: float, Pst: float, k: float) -> float: ... def T_stagnation_ideal(T: float, V: float, Cp: float) -> float: ... def Weymouth( SG: float, Tavg: float, L: Optional[float] = ..., D: Optional[float] = ..., P1: Optional[float] = ..., P2: Optional[float] = ..., Q: Optional[float] = ..., Ts: float = ..., Ps: float = ..., Zavg: float = ..., E: float = ... ) -> float: ... def _to_solve_Oliphant( D: float, Q: float, SG: float, Tavg: float, L: float, P1: float, P2: float, Ts: float, Ps: float, Zavg: float, E: float ) -> float: ... def _to_solve_Spitzglass_high( D: float, Q: float, SG: float, Tavg: float, L: float, P1: float, P2: float, Ts: float, Ps: float, Zavg: float, E: float ) -> float: ... def _to_solve_Spitzglass_low( D: float, Q: float, SG: float, Tavg: float, L: float, P1: float, P2: float, Ts: float, Ps: float, Zavg: float, E: float ) -> float: ... def is_critical_flow(P1: float, P2: float, k: float) -> bool: ... def isentropic_T_rise_compression( T1: float, P1: float, P2: float, k: float, eta: float = ... ) -> float: ... def isentropic_efficiency( P1: float, P2: float, k: float, eta_s: Optional[float] = ..., eta_p: Optional[float] = ... ) -> float: ... def isentropic_work_compression( T1: Optional[float], k: float, Z: float = ..., P1: Optional[float] = ..., P2: Optional[float] = ..., W: Optional[float] = ..., eta: Optional[float] = ... ) -> float: ... def isothermal_gas( rho: float, fd: float, P1: Optional[float] = ..., P2: Optional[float] = ..., L: Optional[float] = ..., D: Optional[float] = ..., m: Optional[float] = ... ) -> float: ... def isothermal_gas_err_D(D: float, m: float, rho: float, fd: float, P1: float, P2: float, L: float) -> float: ... def isothermal_gas_err_P1( P1: float, fd: float, rho: float, P2: float, L: float, D: float, m: float ) -> float: ... def isothermal_gas_err_P2( P2: float, rho: float, fd: float, P1: float, L: float, D: float, m: float ) -> float: ... def isothermal_gas_err_P2_basis( P1: float, P2: float, rho: float, fd: float, m: float, L: float, D: float ) -> float: ... def isothermal_work_compression(P1: float, P2: float, T: float, Z: float = ...) -> float: ... def polytropic_exponent(k: float, n: Optional[float] = ..., eta_p: Optional[float] = ...) -> float: ... def stagnation_energy(V: float) -> float: ... __all__: List[str]fluids-1.0.22/fluids/packed_tower.py0000644000175000017500000006504414302004506016722 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains correlations and functions for calculating pressure drop from packings and demisters; separation efficiency of demisters; demister pressure drop; and demister geometry. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Packing Pressure Drop --------------------- .. autofunction:: fluids.packed_tower.Robbins .. autofunction:: fluids.packed_tower.Stichlmair_dry .. autofunction:: fluids.packed_tower.Stichlmair_wet Packing Flooding ---------------- .. autofunction:: fluids.packed_tower.Stichlmair_flood Demister Pressure Drop ---------------------- .. autofunction:: fluids.packed_tower.dP_demister_dry_Setekleiv_Svendsen .. autofunction:: fluids.packed_tower.dP_demister_dry_Setekleiv_Svendsen_lit .. autofunction:: fluids.packed_tower.dP_demister_wet_ElDessouky Demister Separation Efficiency ------------------------------ .. autofunction:: fluids.packed_tower.separation_demister_ElDessouky Demister Geometry ----------------- .. autofunction:: fluids.packed_tower.voidage_experimental .. autofunction:: fluids.packed_tower.specific_area_mesh """ from __future__ import division from math import log, sqrt from fluids.constants import g, pi from fluids.numerics import secant, newton_system, solve_2_direct, numpy as np __all__ = ['voidage_experimental', 'specific_area_mesh', 'Stichlmair_dry', 'Stichlmair_wet', 'Stichlmair_flood', 'Robbins', 'dP_demister_dry_Setekleiv_Svendsen_lit', 'dP_demister_dry_Setekleiv_Svendsen', 'dP_demister_wet_ElDessouky', 'separation_demister_ElDessouky'] ### Demister def dP_demister_dry_Setekleiv_Svendsen(S, voidage, vs, rho, mu, L=1.0): r'''Calculates dry pressure drop across a demister, using the correlation in [1]_. This model is for dry demisters with no holdup only. .. math:: \frac{\Delta P \epsilon^2}{\rho_f v^2} = 10.29 - \frac{565} {69.6SL - (SL)^2 - 779} - \frac{74.9}{160.9 - 4.85SL} + 45.33\left( \frac{\mu_f \epsilon S^2 L}{\rho_f v}\right)^{0.75} Parameters ---------- S : float Specific area of the demister, normally ~250-1000 [m^2/m^3] voidage : float Voidage of bed of the demister material, normally ~0.98 [] vs : float Superficial velocity of fluid, Q/A [m/s] rho : float Density of fluid [kg/m^3] mu : float Viscosity of fluid [Pa*s] L : float, optional Length of the demister [m] Returns ------- dP : float Pressure drop across a dry demister [Pa] Notes ----- Useful at startup and in modeling. Dry pressure drop is normally negligible compared to wet pressure drop. Coefficients obtained by evolutionary programming and may not fit data outside of the limits of the variables. Examples -------- >>> dP_demister_dry_Setekleiv_Svendsen(S=250, voidage=.983, vs=1.2, rho=10, mu=3E-5, L=1) 320.3280788941329 References ---------- .. [1] Setekleiv, A. Eddie, and Hallvard F. Svendsen. "Dry Pressure Drop in Spiral Wound Wire Mesh Pads at Low and Elevated Pressures." Chemical Engineering Research and Design 109 (May 2016): 141-149. doi:10.1016/j.cherd.2016.01.019. ''' term = 10.29 - 565./(69.6*S*L - (S*L)**2 - 779) - 74.9/(160.9 - 4.85*S*L) right = term + 45.33*(mu*voidage*S**2*L/rho/vs)**0.75 return right*rho*vs**2/voidage**2 def dP_demister_dry_Setekleiv_Svendsen_lit(S, voidage, vs, rho, mu, L=1.0): r'''Calculates dry pressure drop across a demister, using the correlation in [1]_. This model is for dry demisters with no holdup only. Developed with literature data included as well as their own experimental data. .. math:: \frac{\Delta P \epsilon^2}{\rho_f v^2} = 7.3 - \frac{320} {69.6SL - (SL)^2 - 779} - \frac{52.4}{161 - 4.85SL} + 27.2\left( \frac{\mu_f \epsilon S^2 L}{\rho_f v}\right)^{0.75} Parameters ---------- S : float Specific area of the demister, normally ~250-1000 [m^2/m^3] voidage : float Voidage of bed of the demister material, normally ~0.98 [] vs : float Superficial velocity of fluid, Q/A [m/s] rho : float Density of fluid [kg/m^3] mu : float Viscosity of fluid [Pa*s] L : float, optional Length of the demister [m] Returns ------- dP : float Pressure drop across a dry demister [Pa] Notes ----- Useful at startup and in modeling. Dry pressure drop is normally negligible compared to wet pressure drop. Coefficients obtained by evolutionary programming and may not fit data outside of the limits of the variables. Examples -------- >>> dP_demister_dry_Setekleiv_Svendsen_lit(S=250, voidage=.983, vs=1.2, rho=10, mu=3E-5, L=1.0) 209.083848658307 References ---------- .. [1] Setekleiv, A. Eddie, and Hallvard F. Svendsen. "Dry Pressure Drop in Spiral Wound Wire Mesh Pads at Low and Elevated Pressures." Chemical Engineering Research and Design 109 (May 2016): 141-149. doi:10.1016/j.cherd.2016.01.019. ''' term = 7.3 - 320./(69.6*S*L - (S*L)**2 - 779) - 52.4/(161 - 4.85*S*L) right = term + 27.2*(mu*voidage*S**2*L/rho/vs)**0.75 return right*rho*vs**2/voidage**2 def dP_demister_wet_ElDessouky(vs, voidage, d_wire, L=1.0): r'''Calculates wet pressure drop across a demister, using the correlation in [1]_. Uses only their own experimental data. .. math:: \frac{\Delta P}{L} = 0.002357(1-\epsilon)^{0.375798}(V)^{0.81317} (d_w)^{-1.56114147} Parameters ---------- vs : float Superficial velocity of fluid, Q/A [m/s] voidage : float Voidage of bed of the demister material, normally ~0.98 [] d_wire : float Diameter of mesh wire,[m] L : float, optional Length of the demister [m] Returns ------- dP : float Pressure drop across a dry demister [Pa] Notes ----- No dependency on the liquid properties is included here. Because of the exponential nature of the correlation, the limiting pressure drop as V is lowered is 0 Pa. A dry pressure drop correlation should be compared with results from this at low velocities, and the larger of the two pressure drops used. The correlation in [1]_ was presented as follows, with wire diameter in units of mm, density in kg/m^3, V in m/s, and dP in Pa/m. .. math:: \Delta P = 3.88178(\rho_{mesh})^{0.375798}(V)^{0.81317} (d_w)^{-1.56114147} Here, the correlation is converted to base SI units and to use voidage; not all demisters are stainless steel as in [1]_. A density of 7999 kg/m^3 was used in the conversion. In [1]_, V ranged from 0.98-7.5 m/s, rho from 80.317-208.16 kg/m^3, depth from 100 to 200 mm, wire diameter of 0.2mm to 0.32 mm, and particle diameter from 1 to 5 mm. Examples -------- >>> dP_demister_wet_ElDessouky(6, 0.978, 0.00032) 688.9216420105029 References ---------- .. [1] El-Dessouky, Hisham T, Imad M Alatiqi, Hisham M Ettouney, and Noura S Al-Deffeeri. "Performance of Wire Mesh Mist Eliminator." Chemical Engineering and Processing: Process Intensification 39, no. 2 (March 2000): 129-39. doi:10.1016/S0255-2701(99)00033-1. ''' return L*0.002356999643727531*(1-voidage)**0.375798*vs**0.81317*d_wire**-1.56114147 def separation_demister_ElDessouky(vs, voidage, d_wire, d_drop): r'''Calculates droplet removal by a demister as a fraction from 0 to 1, using the correlation in [1]_. Uses only their own experimental data. .. math:: \eta = 0.85835(d_w)^{-0.28264}(1-\epsilon)^{0.099625}(V)^{0.106878} (d_p)^{0.383197} Parameters ---------- vs : float Superficial velocity of fluid, Q/A [m/s] voidage : float Voidage of bed of the demister material, normally ~0.98 [] d_wire : float Diameter of mesh wire,[m] d_drop : float Drop diameter, [m] Returns ------- eta : float Fraction droplets removed by mass [-] Notes ----- No dependency on the liquid properties is included here. Because of the exponential nature of the correlation, for smaller diameters separation quickly lowers. This correlation can predict a separation larger than 1 for higher velocities, lower voidages, lower wire diameters, and large droplet sizes. This function truncates these larger values to 1. The correlation in [1]_ was presented as follows, with wire diameter in units of mm, density in kg/m^3, V in m/s, separation in %, and particle diameter in mm. .. math:: \eta = 17.5047(d_w)^{-0.28264}(\rho_{mesh})^{0.099625}(V)^{0.106878} (d_p)^{0.383197} Here, the correlation is converted to base SI units and to use voidage; not all demisters are stainless steel as in [1]_. A density of 7999 kg/m^3 was used in the conversion. In [1]_, V ranged from 0.98-7.5 m/s, rho from 80.317-208.16 kg/m^3, depth from 100 to 200 mm, wire diameter of 0.2 mm to 0.32 mm, and particle diameter from 1 to 5 mm. Examples -------- >>> separation_demister_ElDessouky(1.35, 0.974, 0.0002, 0.005) 0.8982892997640582 References ---------- .. [1] El-Dessouky, Hisham T, Imad M Alatiqi, Hisham M Ettouney, and Noura S Al-Deffeeri. "Performance of Wire Mesh Mist Eliminator." Chemical Engineering and Processing: Process Intensification 39, no. 2 (March 2000): 129-39. doi:10.1016/S0255-2701(99)00033-1. ''' eta = 0.858352355761947*d_wire**-0.28264*(1-voidage)**0.099625*vs**0.106878*d_drop**0.383197 return min(eta, 1.0) def voidage_experimental(m, rho, D, H): r'''Calculates voidage of a bed or mesh given an experimental weight and fixed density, diameter, and height, as shown in [1]_. The formula is also self-evident. .. math:: \epsilon = 1 - \frac{\frac{m_{mesh}}{\frac{\pi}{4}d_{column}^2 L_{mesh}}}{\rho_{material}} Parameters ---------- m : float Mass of mesh or bed particles weighted, [kg] rho : float Density of solid particles or mesh [kg/m^3] D : float Diameter of the cylindrical bed [m] H : float Height of the demister or bed [m] Returns ------- voidage : float Voidage of bed of the material [] Notes ----- Should be trusted over manufacturer data. Examples -------- >>> voidage_experimental(m=126, rho=8000, D=1, H=1) 0.9799464771704212 References ---------- .. [1] Helsør, T., and H. Svendsen. "Experimental Characterization of Pressure Drop in Dry Demisters at Low and Elevated Pressures." Chemical Engineering Research and Design 85, no. 3 (2007): 377-85. doi:10.1205/cherd06048. ''' return 1 - m/(pi/4*D**2*H)/rho def specific_area_mesh(voidage, d): r'''Calculates the specific area of a wire mesh, as used in demisters or filters. Shown in [1]_, and also self-evident and non-empirical. Makes the ideal assumption that wires never touch. .. math:: S = \frac{4(1-\epsilon)}{d_{wire}} Parameters ---------- voidage : float Voidage of the mesh [] d : float Diameter of the wires making the mesh, [m] Returns ------- S : float Specific area of the mesh [m^2/m^3] Notes ----- Should be preferred over manufacturer data. Can also be used to show that manufacturer's data is inconsistent with their claimed voidage and wire diameter. Examples -------- >>> specific_area_mesh(voidage=.934, d=3e-4) 879.9999999999994 References ---------- .. [1] Helsør, T., and H. Svendsen. "Experimental Characterization of Pressure Drop in Dry Demisters at Low and Elevated Pressures." Chemical Engineering Research and Design 85, no. 3 (2007): 377-85. doi:10.1205/cherd06048. ''' return 4*(1-voidage)/d ### Packing def Stichlmair_dry(Vg, rhog, mug, voidage, specific_area, C1, C2, C3, H=1.): r'''Calculates dry pressure drop across a packed column, using the Stichlmair [1]_ correlation. Uses three regressed constants for each type of packing, and voidage and specific area. Pressure drop is given by: .. math:: \Delta P_{dry} = \frac{3}{4} f_0 \frac{1-\epsilon}{\epsilon^{4.65}} \rho_G \frac{H}{d_p}V_g^2 .. math:: f_0 = \frac{C_1}{Re_g} + \frac{C_2}{Re_g^{0.5}} + C_3 .. math:: d_p = \frac{6(1-\epsilon)}{a} Parameters ---------- Vg : float Superficial velocity of gas, Q/A [m/s] rhog : float Density of gas [kg/m^3] mug : float Viscosity of gas [Pa*s] voidage : float Voidage of bed of packing material [] specific_area : float Specific area of the packing material [m^2/m^3] C1 : float Packing-specific constant [] C2 : float Packing-specific constant [] C3 : float Packing-specific constant [] H : float, optional Height of packing [m] Returns ------- dP_dry : float Pressure drop across dry packing [Pa] Notes ----- This model is used by most process simulation tools. If H is not provided, it defaults to 1. If Z is not provided, it defaults to 1. Examples -------- >>> Stichlmair_dry(Vg=0.4, rhog=5., mug=5E-5, voidage=0.68, ... specific_area=260., C1=32., C2=7.0, C3=1.0) 236.80904286559885 References ---------- .. [1] Stichlmair, J., J. L. Bravo, and J. R. Fair. "General Model for Prediction of Pressure Drop and Capacity of Countercurrent Gas/liquid Packed Columns." Gas Separation & Purification 3, no. 1 (March 1989): 19-28. doi:10.1016/0950-4214(89)80016-7. ''' dp = 6*(1-voidage)/specific_area Re = Vg*rhog*dp/mug f0 = C1/Re + C2/sqrt(Re) + C3 return 3/4.*f0*(1-voidage)/voidage**4.65*rhog*H/dp*Vg**2 def _Stichlmair_wet_err(dP_irr, h0, c1, dP_dry, H, voidage, c): hT = h0*(1.0 + 20.0*dP_irr*dP_irr*c1) err = dP_dry/H*((1-voidage+hT)/(1.0 - voidage))**((2.0 + c)/3.)*(voidage/(voidage-hT))**4.65 -dP_irr/H return err def Stichlmair_wet(Vg, Vl, rhog, rhol, mug, voidage, specific_area, C1, C2, C3, H=1.0): r'''Calculates dry pressure drop across a packed column, using the Stichlmair [1]_ correlation. Uses three regressed constants for each type of packing, and voidage and specific area. This model is for irrigated columns only. Pressure drop is given by: .. math:: \frac{\Delta P_{irr}}{H} = \frac{\Delta P_{dry}}{H}\left(\frac {1-\epsilon + h_T}{1-\epsilon}\right)^{(2+c)/3} \left(\frac{\epsilon}{\epsilon-h_T}\right)^{4.65} .. math:: h_T = h_0\left[1 + 20\left(\frac{\Delta Pirr}{H\rho_L g}\right)^2\right] .. math:: Fr_L = \frac{V_L^2 a}{g \epsilon^{4.65}} .. math:: h_0 = 0.555 Fr_L^{1/3} .. math:: c = \frac{-C_1/Re_g - C_2/(2Re_g^{0.5})}{f_0} .. math:: \Delta P_{dry} = \frac{3}{4} f_0 \frac{1-\epsilon}{\epsilon^{4.65}} \rho_G \frac{H}{d_p}V_g^2 .. math:: f_0 = \frac{C_1}{Re_g} + \frac{C_2}{Re_g^{0.5}} + C_3 .. math:: d_p = \frac{6(1-\epsilon)}{a} Parameters ---------- Vg : float Superficial velocity of gas, Q/A [m/s] Vl : float Superficial velocity of liquid, Q/A [m/s] rhog : float Density of gas [kg/m^3] rhol : float Density of liquid [kg/m^3] mug : float Viscosity of gas [Pa*s] voidage : float Voidage of bed of packing material [] specific_area : float Specific area of the packing material [m^2/m^3] C1 : float Packing-specific constant [] C2 : float Packing-specific constant [] C3 : float Packing-specific constant [] H : float, optional Height of packing [m] Returns ------- dP : float Pressure drop across irrigated packing [Pa] Notes ----- This model is used by most process simulation tools. If H is not provided, it defaults to 1. If Z is not provided, it defaults to 1. A numerical solver is used and needed by this model. Its initial guess is the dry pressure drop. Convergence problems may occur. The model as described in [1]_ appears to have a typo, and could not match the example. As described in [2]_, however, the model works. Examples -------- Example is from [1]_, matches. >>> Stichlmair_wet(Vg=0.4, Vl = 5E-3, rhog=5., rhol=1200., mug=5E-5, ... voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.) 539.876823725352 References ---------- .. [1] Stichlmair, J., J. L. Bravo, and J. R. Fair. "General Model for Prediction of Pressure Drop and Capacity of Countercurrent Gas/liquid Packed Columns." Gas Separation & Purification 3, no. 1 (March 1989): 19-28. doi:10.1016/0950-4214(89)80016-7. .. [2] Piche, Simon R., Faical Larachi, and Bernard P. A. Grandjean. "Improving the Prediction of Irrigated Pressure Drop in Packed Absorption Towers." The Canadian Journal of Chemical Engineering 79, no. 4 (August 1, 2001): 584-94. doi:10.1002/cjce.5450790417. ''' dp = 6.0*(1.0 - voidage)/specific_area Re = Vg*rhog*dp/mug f0 = C1/Re + C2/sqrt(Re) + C3 dP_dry = 3/4.*f0*(1-voidage)/voidage**4.65*rhog*H/dp*Vg*Vg c = (-C1/Re - C2/(2*sqrt(Re)))/f0 Frl = Vl**2*specific_area/(g*voidage**4.65) h0 = 0.555*Frl**(1/3.) c1 = 1.0/(H*rhol*g) c1 *= c1 return secant(_Stichlmair_wet_err, dP_dry, args=(h0, c1, dP_dry, H, voidage, c)) def _Stichlmair_flood_f(inputs, Vl, rhog, rhol, mug, voidage, specific_area, C1, C2, C3, H): """Internal function which calculates the errors of the two Stichlmair objective functions, and their jacobian.""" Vg, dP_irr = float(inputs[0]), float(inputs[1]) dp = 6.0*(1.0 - voidage)/specific_area Re = Vg*rhog*dp/mug f0 = C1/Re + C2/sqrt(Re) + C3 dP_dry = 0.75*f0*(1.0 - voidage)/voidage**4.65*rhog*H/dp*Vg*Vg c = (-C1/Re - 0.5*C2*1.0/sqrt(Re))/f0 Frl = Vl*Vl*specific_area/(g*voidage**4.65) h0 = 0.555*Frl**(1/3.) hT = h0*(1.0 + 20.0*(dP_irr/H/rhol/g)**2) err1 = dP_dry/H*((1.0 - voidage + hT)/(1.0 - voidage))**((2.0 + c)/3.)*(voidage/(voidage-hT))**4.65 - dP_irr/H term = (dP_irr/(rhol*g*H))**2 err2 = (1./term - 40.0*((2.0+c)/3.)*h0/(1.0 - voidage + h0*(1.0 + 20.0*term)) - 186.0*h0/(voidage - h0*(1.0 + 20.0*term))) return err1, err2 def _Stichlmair_flood_f_and_jac(inputs, Vl, rhog, rhol, mug, voidage, specific_area, C1, C2, C3, H): """Internal function which calculates the errors of the two Stichlmair objective functions, and their jacobian. Derived using SymPy on the main flooding function. """ Vg, dP_irr = inputs[0], inputs[1] x0 = 1.0/H x1 = Vg*Vg x2 = voidage**(-4.65) x3 = specific_area*x2 x4 = Vl*Vl*x3/g x5 = x4**0.333333333333333 x6 = dP_irr*dP_irr x7 = H*H x8 = 1.0/x7 x9 = g*g x10 = 1.0/x9 x11 = rhol*rhol x12 = 1.0/x11 x13 = x5*(20.0*x10*x12*x6*x8 + 1.0) x14 = 0.555*x13 x15 = (voidage/(voidage - x14))**4.65 x16 = 1.0/Vg x17 = 1.0/rhog x18 = voidage - 1.0 x19 = 1.0/x18 x20 = C1*mug*specific_area*x16*x17*x19 x21 = 2.44948974278318*C2 x22 = Vg*rhog/(mug*specific_area) x23 = x21*1.0/sqrt(-x18*x22) x24 = 6.0*C3 - x20 + x23 x25 = 1.0 - voidage x26 = x14 + x25 x27 = -x19*x26 x28 = 2.0*C1*mug*specific_area*x16*x17/x25 + x21*1.0/sqrt(x22*x25) x29 = 1.0/x24 x30 = x28*x29 x31 = x27**(-0.166666666666667*x30 + 0.666666666666667) x32 = x11*x7*x9 x33 = 200.0*voidage x34 = 111.0*x13 x35 = x33 - x34 x36 = 1.0/x35 x37 = -x33 + x34 + 200.0 x38 = 1.0/x37 x39 = 2.0*x20 x40 = -4.0*x20 + x23 + x29*(-x23 + x39)*(x23 - x39) x41 = dP_irr*rhog*specific_area*x0*x1*x10*x12*x15*x2*x24*x31 x42 = dP_irr*x10*x12*x4**0.666666666666667*x8 F1, F2, dF1_dVg, dF2_dVg, dF1_dP_irr, dF2_dP_irr = ( -dP_irr*x0 + 0.0208333333333333*rhog*specific_area*x1*x15*x2*x24*x31, x32/x6 - 20646.0*x36*x5 - x38*x5*(2960.0 - 740.0*x28*x29), 0.00173611111111111*Vg*rhog*x15*x3*x31*(144.0*C3 - 12.0*x20 + 18.0*x23 + x40*log(x27)), x0*(430.125*x36*x41*x5 - 15.4166666666667*x38*x41*x5*(x30 - 4.0) - 1.0), -1.85*x16*x29*x40*x5/x26, 3285600.0*x42*(-x30 + 4.0)*x38*x38- 91668240.0*x42*x36*x36 - 2.0*x32/(dP_irr*x6)) err = [0.0]*2 err[0] = F1 err[1] = F2 jac = [[dF1_dVg, dF2_dVg], [dF1_dP_irr, dF2_dP_irr]]# numba: delete # jac = np.array([[dF1_dVg, dF2_dVg], [dF1_dP_irr, dF2_dP_irr]]) # numba: uncomment return err, jac def Stichlmair_flood(Vl, rhog, rhol, mug, voidage, specific_area, C1, C2, C3, H=1.0): r'''Calculates gas rate for flooding of a packed column, using the Stichlmair [1]_ correlation. Uses three regressed constants for each type of packing, and voidage and specific area. Pressure drop is given by: .. math:: \frac{\Delta P_{irr}}{H} = \frac{\Delta P_{dry}}{H}\left(\frac {1-\epsilon + h_T}{1-\epsilon}\right)^{(2+c)/3} \left(\frac{\epsilon}{\epsilon-h_T}\right)^{4.65} .. math:: h_T = h_0\left[1 + 20\left(\frac{\Delta Pirr}{H\rho_L g}\right)^2\right] .. math:: Fr_L = \frac{V_L^2 a}{g \epsilon^{4.65}} .. math:: h_0 = 0.555 Fr_L^{1/3} .. math:: c = \frac{-C_1/Re_g - C_2/(2Re_g^{0.5})}{f_0} .. math:: \Delta P_{dry} = \frac{3}{4} f_0 \frac{1-\epsilon}{\epsilon^{4.65}} \rho_G \frac{H}{d_p}V_g^2 .. math:: f_0 = \frac{C_1}{Re_g} + \frac{C_2}{Re_g^{0.5}} + C_3 .. math:: d_p = \frac{6(1-\epsilon)}{a} Parameters ---------- Vl : float Superficial velocity of liquid, Q/A [m/s] rhog : float Density of gas [kg/m^3] rhol : float Density of liquid [kg/m^3] mug : float Viscosity of gas [Pa*s] voidage : float Voidage of bed of packing material [] specific_area : float Specific area of the packing material [m^2/m^3] C1 : float Packing-specific constant [] C2 : float Packing-specific constant [] C3 : float Packing-specific constant [] H : float, optional Height of packing [m] Returns ------- Vg : float Superficial velocity of gas, Q/A [m/s] Notes ----- A numerical solver is used to solve this model. Examples -------- Example is from [1]_, matches. >>> Stichlmair_flood(Vl = 5E-3, rhog=5., rhol=1200., mug=5E-5, ... voidage=0.68, specific_area=260., C1=32., C2=7., C3=1.) 0.6394323542746928 References ---------- .. [1] Stichlmair, J., J. L. Bravo, and J. R. Fair. "General Model for Prediction of Pressure Drop and Capacity of Countercurrent Gas/liquid Packed Columns." Gas Separation & Purification 3, no. 1 (March 1989): 19-28. doi:10.1016/0950-4214(89)80016-7. ''' guess = [0.0]*2 guess[0] = Vl*100.0 guess[1] = 1000.0 return newton_system(_Stichlmair_flood_f_and_jac, x0=guess, jac=True, args=(Vl, rhog, rhol, mug, voidage, specific_area, C1, C2, C3, H), ytol=1e-11, solve_func=solve_2_direct)[0][0] def Robbins(L, G, rhol, rhog, mul, H=1.0, Fpd=24.0): r'''Calculates pressure drop across a packed column, using the Robbins equation. Pressure drop is given by: .. math:: \Delta P = C_3 G_f^2 10^{C_4L_f}+0.4[L_f/20000]^{0.1}[C_3G_f^210^{C_4L_f}]^4 .. math:: G_f=G[0.075/\rho_g]^{0.5}[F_{pd}/20]^{0.5}=986F_s[F_{pd}/20]^{0.5} .. math:: L_f=L[62.4/\rho_L][F_{pd}/20]^{0.5}\mu^{0.1} .. math:: F_s=V_s\rho_g^{0.5} Parameters ---------- L : float Specific liquid mass flow rate [kg/s/m^2] G : float Specific gas mass flow rate [kg/s/m^2] rhol : float Density of liquid [kg/m^3] rhog : float Density of gas [kg/m^3] mul : float Viscosity of liquid [Pa*s] H : float Height of packing [m] Fpd : float Robbins packing factor (tabulated for packings) [1/ft] Returns ------- dP : float Pressure drop across packing [Pa] Notes ----- Perry's displayed equation has a typo in a superscript. This model is based on the example in Perry's. Examples -------- >>> Robbins(L=12.2, G=2.03, rhol=1000., rhog=1.1853, mul=0.001, H=2.0, Fpd=24.0) 619.6624593438102 References ---------- .. [1] Robbins [Chem. Eng. Progr., p. 87 (May 1991) Improved Pressure Drop Prediction with a New Correlation. ''' # Convert SI units to imperial for use in correlation L = L*737.33812 # kg/s/m^2 to lb/hr/ft^2 G = G*737.33812 # kg/s/m^2 to lb/hr/ft^2 rhol = rhol*0.062427961 # kg/m^3 to lb/ft^3 rhog = rhog*0.062427961 # kg/m^3 to lb/ft^3 mul = mul*1000.0 # Pa*s to cP C3 = 7.4E-8 C4 = 2.7E-5 Fpd_root_term = sqrt(.05*Fpd) Lf = L*(62.4/rhol)*Fpd_root_term*mul**0.1 Gf = G*sqrt(0.075/rhog)*Fpd_root_term Gf2 = Gf*Gf C4LF_10_GF2_C3 = C3*Gf2*10.0**(C4*Lf) C4LF_10_GF2_C3_2 = C4LF_10_GF2_C3*C4LF_10_GF2_C3 dP = C4LF_10_GF2_C3 + 0.4*(5e-5*Lf)**0.1*(C4LF_10_GF2_C3_2*C4LF_10_GF2_C3_2) return dP*817.22083*H # in. H2O to Pa/m fluids-1.0.22/fluids/pump.pyi0000644000175000017500000000204514302004506015375 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( Any, Optional, Union, ) def CSA_motor_efficiency(P: float, closed: bool = ..., poles: int = ..., high_efficiency: bool = ...) -> float: ... def Corripio_motor_efficiency(P: float) -> float: ... def Corripio_pump_efficiency(Q: float) -> float: ... def VFD_efficiency(P: float, load: float = ...) -> float: ... def current_ideal(P: float, V: float, phase: int = ..., PF: float = ...) -> float: ... def motor_efficiency_underloaded(P: float, load: float = ...) -> float: ... def motor_round_size(P: float) -> float: ... def specific_diameter(Q: float, H: float, D: float) -> float: ... def specific_speed(Q: float, H: float, n: float = ...) -> float: ... def speed_synchronous(f: float, poles: int = ..., phase: int = ...) -> float: ... class CountryPower: def __init__(self, country: str, voltage: Any, freq: float, plugs: Optional[Any] = ...) -> None: ... __all__: List[str]fluids-1.0.22/fluids/control_valve.py0000644000175000017500000016532714302004506017135 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2019, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains equations for modeling control valves subject to gas or liquid flow. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Sizing Functions ---------------- .. autofunction:: size_control_valve_l .. autofunction:: size_control_valve_g Intermediary Sizing Calculations -------------------------------- .. autofunction:: FF_critical_pressure_ratio_l .. autofunction:: is_choked_turbulent_l .. autofunction:: is_choked_turbulent_g .. autofunction:: Reynolds_valve .. autofunction:: Reynolds_factor .. autofunction:: loss_coefficient_piping .. autofunction:: control_valve_choke_P_l .. autofunction:: control_valve_choke_P_g .. autofunction:: convert_flow_coefficient .. autofunction:: cavitation_index Representative Control Valve Curves ----------------------------------- .. autofunction:: Cv_char_linear .. autofunction:: Cv_char_quick_opening .. autofunction:: Cv_char_equal_percentage Noise Generated by Control Valves --------------------------------- .. autofunction:: control_valve_noise_l_2015 .. autofunction:: control_valve_noise_g_2011 """ from __future__ import division from math import sqrt, log10, exp, pi, log from fluids.constants import R, psi, gallon, minute, ln_10, ln_10_inv from fluids.numerics import interp, implementation_optimize_tck, splev from fluids.fittings import Cv_to_Kv, Kv_to_Cv __all__ = ['size_control_valve_l', 'size_control_valve_g', 'cavitation_index', 'FF_critical_pressure_ratio_l', 'is_choked_turbulent_l', 'is_choked_turbulent_g', 'Reynolds_valve', 'loss_coefficient_piping', 'Reynolds_factor', 'Cv_char_quick_opening', 'Cv_char_linear', 'Cv_char_equal_percentage', 'convert_flow_coefficient', 'control_valve_choke_P_l', 'control_valve_choke_P_g', 'control_valve_noise_l_2015', 'control_valve_noise_g_2011'] N1 = 0.1 # m^3/hr, kPa N2 = 1.6E-3 # mm N4 = 7.07E-2 # m^3/hr, m^2/s N5 = 1.8E-3 # mm N6 = 3.16 # kg/hr, kPa, kg/m^3 N7 = 4.82 # m^3/hr kPa K N8 = 1.10 # kPa kg/hr K #N9 = 2.60E1 # m^3/hr kPa K at 15 deg C N9 = 2.46E1 # m^3/hr kPa K at 0 deg C N18 = 8.65E-1 # mm N19 = 2.5 # mm #N22 = 1.84E1 # m^3/hr kPa K at 15 deg C N27 = 7.75E-1 # kg/hr kPa K at 0 deg C N32 = 1.4E2 # mm rho0 = 999.10329075702327 # Water at 288.15 K def cavitation_index(P1, P2, Psat): r'''Calculates the cavitation index of a valve with upstream and downstream absolute pressures `P1` and `P2` for a fluid with a vapor pressure `Psat`. .. math:: \sigma = \frac{P_1 - P_{sat}}{P_1 - P_2} Parameters ---------- P1 : float Absolute pressure upstream of the valve [Pa] P2 : float Absolute pressure downstream of the valve [Pa] Psat : float Saturation pressure of the liquid at inlet temperature [Pa] Returns ------- sigma : float Cavitation index of the valve [-] Notes ----- Larger values are safer. Models for adjusting cavitation indexes provided by the manufacturer to the user's conditions are available, making use of scaling the pressure differences and size differences. Values can be calculated for incipient cavitation, constant cavitation, maximum vibration cavitation, incipient damage, and choking cavitation. Has also been defined as: .. math:: \sigma = \frac{P_2 - P_{sat}}{P_1 - P_2} Another definition and notation series is: .. math:: K = xF = \frac{1}{\sigma} = \frac{P_1 - P_2}{P_1 - P_{sat}} Examples -------- >>> cavitation_index(1E6, 8E5, 2E5) 4.0 References ---------- .. [1] ISA. "RP75.23 Considerations for Evaluating Control Valve Cavitation." 1995. ''' return (P1 - Psat)/(P1 - P2) def FF_critical_pressure_ratio_l(Psat, Pc): r'''Calculates FF, the liquid critical pressure ratio factor, for use in IEC 60534 liquid valve sizing calculations. .. math:: F_F = 0.96 - 0.28\sqrt{\frac{P_{sat}}{P_c}} Parameters ---------- Psat : float Saturation pressure of the liquid at inlet temperature [Pa] Pc : float Critical pressure of the liquid [Pa] Returns ------- FF : float Liquid critical pressure ratio factor [-] Examples -------- From [1]_, matching example. >>> FF_critical_pressure_ratio_l(70100.0, 22120000.0) 0.9442375225233299 References ---------- .. [1] IEC 60534-2-1 / ISA-75.01.01-2007 ''' return 0.96 - 0.28*sqrt(Psat/Pc) def control_valve_choke_P_l(Psat, Pc, FL, P1=None, P2=None, disp=True): r'''Calculates either the upstream or downstream pressure at which choked flow though a liquid control valve occurs, given either a set upstream or downstream pressure. Implements an analytical solution of the needed equations from the full function :py:func:`~.size_control_valve_l`. For some pressures, no choked flow is possible; for choked flow to occur the direction if flow must be reversed. If `disp` is True, an exception will be raised for these conditions. .. math:: P_1 = \frac{F_{F} F_{L}^{2} P_{sat} - P_{2}}{F_{L}^{2} - 1} .. math:: P_2 = F_{F} F_{L}^{2} P_{sat} - F_{L}^{2} P_{1} + P_{1} Parameters ---------- Psat : float Saturation pressure of the liquid at inlet temperature [Pa] Pc : float Critical pressure of the liquid [Pa] FL : float, optional Liquid pressure recovery factor of a control valve without attached fittings [-] P1 : float, optional Absolute pressure upstream of the valve [Pa] P2 : float, optional Absolute pressure downstream of the valve [Pa] disp : bool, optional Whether or not to raise an exception on flow reversal, [-] Returns ------- P_choke : float Pressure at which a choke occurs in the liquid valve [Pa] Notes ----- Extremely cheap to compute. Examples -------- >>> control_valve_choke_P_l(69682.89291024722, 22048320.0, 0.6, 680000.0) 458887.5306077305 >>> control_valve_choke_P_l(69682.89291024722, 22048320.0, 0.6, P2=458887.5306077305) 680000.0 ''' FF = 0.96 - 0.28*sqrt(Psat/Pc) #FF_critical_pressure_ratio_l(Psat=Psat, Pc=Pc) Pmin_absolute = FF*Psat if P2 is None: ans = P2 = FF*FL*FL*Psat - FL*FL*P1 + P1 elif P1 is None: ans = P1 = (FF*FL*FL*Psat - P2)/(FL*FL - 1.0) else: raise ValueError('Either P1 or P2 needs to be specified') if P2 > P1 and disp: raise ValueError('Specified P1 is too low for choking to occur ' 'at any downstream pressure; minimum ' 'upstream pressure for choking to be possible ' 'is %g Pa.' %Pmin_absolute) return ans def control_valve_choke_P_g(xT, gamma, P1=None, P2=None): r'''Calculates either the upstream or downstream pressure at which choked flow though a gas control valve occurs, given either a set upstream or downstream pressure. Implements an analytical solution of the needed equations from the full function :py:func:`~.size_control_valve_g`. A singularity arises as `xT` goes to 1 and `gamma` goes to 1.4. .. math:: P_1 = - \frac{7 P_{2}}{5 \gamma x_T - 7} .. math:: P_2 = \frac{P_{1}}{7} \left(- 5 \gamma x_T + 7\right) Parameters ---------- xT : float, optional Pressure difference ratio factor of a valve without fittings at choked flow [-] gamma : float Specific heat capacity ratio [-] P1 : float, optional Absolute pressure upstream of the valve [Pa] P2 : float, optional Absolute pressure downstream of the valve [Pa] Returns ------- P_choke : float Pressure at which a choke occurs in the gas valve [Pa] Notes ----- Extremely cheap to compute. Examples -------- >>> control_valve_choke_P_g(1.0, 1.3, 1E5) 7142.857142857143 >>> control_valve_choke_P_g(1.0, 1.3, P2=7142.857142857143) 100000.0 ''' if P2 is None: ans = P2 = P1*(-5.0*gamma*xT + 7.0)/7.0 elif P1 is None: ans = P1 = -7.0*P2/(5.0*gamma*xT - 7.0) else: raise ValueError('Either P1 or P2 needs to be specified') return ans def is_choked_turbulent_l(dP, P1, Psat, FF, FL=None, FLP=None, FP=None): r'''Calculates if a liquid flow in IEC 60534 calculations is critical or not, for use in IEC 60534 liquid valve sizing calculations. Either FL may be provided or FLP and FP, depending on the calculation process. .. math:: \Delta P > F_L^2(P_1 - F_F P_{sat}) .. math:: \Delta P >= \left(\frac{F_{LP}}{F_P}\right)^2(P_1 - F_F P_{sat}) Parameters ---------- dP : float Differential pressure across the valve, with reducer/expanders [Pa] P1 : float Pressure of the fluid before the valve and reducers/expanders [Pa] Psat : float Saturation pressure of the fluid at inlet temperature [Pa] FF : float Liquid critical pressure ratio factor [-] FL : float, optional Liquid pressure recovery factor of a control valve without attached fittings [-] FLP : float, optional Combined liquid pressure recovery factor with piping geometry factor, for a control valve with attached fittings [-] FP : float, optional Piping geometry factor [-] Returns ------- choked : bool Whether or not the flow is choked [-] Examples -------- >>> is_choked_turbulent_l(460.0, 680.0, 70.1, 0.94, 0.9) False >>> is_choked_turbulent_l(460.0, 680.0, 70.1, 0.94, 0.6) True References ---------- .. [1] IEC 60534-2-1 / ISA-75.01.01-2007 ''' if FLP and FP: return dP >= FLP*FLP/(FP*FP)*(P1-FF*Psat) elif FL: return dP >= FL*FL*(P1-FF*Psat) else: raise ValueError('Either (FLP and FP) or FL is needed') def is_choked_turbulent_g(x, Fgamma, xT=None, xTP=None): r'''Calculates if a gas flow in IEC 60534 calculations is critical or not, for use in IEC 60534 gas valve sizing calculations. Either xT or xTP must be provided, depending on the calculation process. .. math:: x \ge F_\gamma x_T .. math:: x \ge F_\gamma x_{TP} Parameters ---------- x : float Differential pressure over inlet pressure, [-] Fgamma : float Specific heat ratio factor [-] xT : float, optional Pressure difference ratio factor of a valve without fittings at choked flow [-] xTP : float Pressure difference ratio factor of a valve with fittings at choked flow [-] Returns ------- choked : bool Whether or not the flow is choked [-] Examples -------- Example 3, compressible flow, non-choked with attached fittings: >>> is_choked_turbulent_g(0.544, 0.929, 0.6) False >>> is_choked_turbulent_g(0.544, 0.929, xTP=0.625) False References ---------- .. [1] IEC 60534-2-1 / ISA-75.01.01-2007 ''' if xT: return x >= Fgamma*xT elif xTP: return x >= Fgamma*xTP else: raise ValueError('Either xT or xTP is needed') def Reynolds_valve(nu, Q, D1, FL, Fd, C): r'''Calculates Reynolds number of a control valve for a liquid or gas flowing through it at a specified Q, for a specified D1, FL, Fd, C, and with kinematic viscosity `nu` according to IEC 60534 calculations. .. math:: Re_v = \frac{N_4 F_d Q}{\nu \sqrt{C F_L}}\left(\frac{F_L^2 C^2} {N_2D^4} +1\right)^{1/4} Parameters ---------- nu : float Kinematic viscosity, [m^2/s] Q : float Volumetric flow rate of the fluid [m^3/s] D1 : float Diameter of the pipe before the valve [m] FL : float, optional Liquid pressure recovery factor of a control valve without attached fittings [] Fd : float Valve style modifier [-] C : float Metric Kv valve flow coefficient (flow rate of water at a pressure drop of 1 bar) [m^3/hr] Returns ------- Rev : float Valve reynolds number [-] Examples -------- >>> Reynolds_valve(3.26e-07, 360, 150.0, 0.9, 0.46, 165) 2966984.7525455453 References ---------- .. [1] IEC 60534-2-1 / ISA-75.01.01-2007 ''' return N4*Fd*Q/nu*1.0/sqrt(C*FL)*sqrt(sqrt(FL*FL*C*C/N2*D1**-4.0 + 1.0)) def loss_coefficient_piping(d, D1=None, D2=None): r'''Calculates the sum of loss coefficients from possible inlet/outlet reducers/expanders around a control valve according to IEC 60534 calculations. .. math:: \Sigma \xi = \xi_1 + \xi_2 + \xi_{B1} - \xi_{B2} .. math:: \xi_1 = 0.5\left[1 -\left(\frac{d}{D_1}\right)^2\right]^2 .. math:: \xi_2 = 1.0\left[1 -\left(\frac{d}{D_2}\right)^2\right]^2 .. math:: \xi_{B1} = 1 - \left(\frac{d}{D_1}\right)^4 .. math:: \xi_{B2} = 1 - \left(\frac{d}{D_2}\right)^4 Parameters ---------- d : float Diameter of the valve [m] D1 : float Diameter of the pipe before the valve [m] D2 : float Diameter of the pipe after the valve [m] Returns ------- loss : float Sum of the four loss coefficients [-] Examples -------- In example 3, non-choked compressible flow with fittings: >>> loss_coefficient_piping(0.05, 0.08, 0.1) 0.6580810546875 References ---------- .. [1] IEC 60534-2-1 / ISA-75.01.01-2007 ''' loss = 0. if D1: dr = d/D1 dr2 = dr*dr loss += 1. - dr2*dr2 # Inlet flow energy loss += 0.5*(1. - dr2)*(1.0 - dr2) # Inlet reducer if D2: dr = d/D2 dr2 = dr*dr loss += 1.0*(1. - dr2)*(1.0 - dr2) # Outlet reducer (expander) loss -= 1. - dr2*dr2 # Outlet flow energy return loss def Reynolds_factor(FL, C, d, Rev, full_trim=True): r'''Calculates the Reynolds number factor `FR` for a valve with a Reynolds number `Rev`, diameter `d`, flow coefficient `C`, liquid pressure recovery factor `FL`, and with either full or reduced trim, all according to IEC 60534 calculations. If full trim: .. math:: F_{R,1a} = 1 + \left(\frac{0.33F_L^{0.5}}{n_1^{0.25}}\right)\log_{10} \left(\frac{Re_v}{10000}\right) .. math:: F_{R,2} = \min(\frac{0.026}{F_L}\sqrt{n_1 Re_v},\; 1) .. math:: n_1 = \frac{N_2}{\left(\frac{C}{d^2}\right)^2} .. math:: F_R = F_{R,2} \text{ if Rev < 10 else } \min(F_{R,1a}, F_{R,2}) Otherwise : .. math:: F_{R,3a} = 1 + \left(\frac{0.33F_L^{0.5}}{n_2^{0.25}}\right)\log_{10} \left(\frac{Re_v}{10000}\right) .. math:: F_{R,4} = \frac{0.026}{F_L}\sqrt{n_2 Re_v} .. math:: n_2 = 1 + N_{32}\left(\frac{C}{d}\right)^{2/3} .. math:: F_R = F_{R,4} \text{ if Rev < 10 else } \min(F_{R,3a}, F_{R,4}) Parameters ---------- FL : float Liquid pressure recovery factor of a control valve without attached fittings [] C : float Metric Kv valve flow coefficient (flow rate of water at a pressure drop of 1 bar) [m^3/hr] d : float Diameter of the valve [m] Rev : float Valve reynolds number [-] full_trim : bool Whether or not the valve has full trim Returns ------- FR : float Reynolds number factor for laminar or transitional flow [] Examples -------- In Example 4, compressible flow with small flow trim sized for gas flow (Cv in the problem was converted to Kv here to make FR match with N32, N2): >>> Reynolds_factor(FL=0.98, C=0.015483, d=15., Rev=1202., full_trim=False) 0.7148753122302025 References ---------- .. [1] IEC 60534-2-1 / ISA-75.01.01-2007 ''' if full_trim: n1 = N2/(min(C/(d*d), 0.04))**2 # C/d**2 must not exceed 0.04 FR_1a = 1.0 + (0.33*sqrt(FL))/sqrt(sqrt(n1))*log10(Rev/10000.) FR_2 = 0.026/FL*sqrt(n1*Rev) if Rev < 10.0: FR = FR_2 else: FR = min(FR_2, FR_1a) else: n2 = 1 + N32*(C/d**2)**(2/3.) FR_3a = 1 + (0.33*sqrt(FL))/sqrt(sqrt(n2))*log10(Rev/10000.) FR_4 = min(0.026/FL*sqrt(n2*Rev), 1) if Rev < 10: FR = FR_4 else: FR = min(FR_3a, FR_4) return FR def size_control_valve_l(rho, Psat, Pc, mu, P1, P2, Q, D1=None, D2=None, d=None, FL=0.9, Fd=1, allow_choked=True, allow_laminar=True, full_output=False): r'''Calculates flow coefficient of a control valve passing a liquid according to IEC 60534. Uses a large number of inputs in SI units. Note the return value is not standard SI. All parameters are required. This sizing model does not officially apply to liquid mixtures, slurries, non-Newtonian fluids, or liquid-solid conveyance systems. For details of the calculations, consult [1]_. Parameters ---------- rho : float Density of the liquid at the inlet [kg/m^3] Psat : float Saturation pressure of the fluid at inlet temperature [Pa] Pc : float Critical pressure of the fluid [Pa] mu : float Viscosity of the fluid [Pa*s] P1 : float Inlet pressure of the fluid before valves and reducers [Pa] P2 : float Outlet pressure of the fluid after valves and reducers [Pa] Q : float Volumetric flow rate of the fluid [m^3/s] D1 : float, optional Diameter of the pipe before the valve [m] D2 : float, optional Diameter of the pipe after the valve [m] d : float, optional Diameter of the valve [m] FL : float, optional Liquid pressure recovery factor of a control valve without attached fittings (normally 0.8-0.9 at full open and decreasing as opened further to below 0.5; use default very cautiously!) [] Fd : float, optional Valve style modifier (0.1 to 1; varies tremendously depending on the type of valve and position; do not use the default at all!) [] allow_choked : bool, optional Overrides the automatic transition into the choked regime if this is False and returns as if choked flow does not exist allow_laminar : bool, optional Overrides the automatic transition into the laminar regime if this is False and returns as if laminar flow does not exist full_output : bool, optional If True, returns intermediate calculation values as well as Kv in the form of a dictionary containing 'Kv', 'Rev', 'choked', 'FL', 'FLP', 'FR', 'FP', and 'laminar'. Some may be None if they are not used in the calculation. Returns ------- Kv : float Metric Kv valve flow coefficient (flow rate of water at a pressure drop of 1 bar) [m^3/hr] Notes ----- It is possible to use this model without any diameters specified; in that case, turbulent flow is assumed. Choked flow can still be modeled. This is not recommended. All three diameters need to be None for this to work. `FL` and `Fd` are not used by the models when the diameters are not specified. Examples -------- From [1]_, matching example 1 for a globe, parabolic plug, flow-to-open valve. >>> size_control_valve_l(rho=965.4, Psat=70.1E3, Pc=22120E3, mu=3.1472E-4, ... P1=680E3, P2=220E3, Q=0.1, D1=0.15, D2=0.15, d=0.15, ... FL=0.9, Fd=0.46) 164.9954763704956 From [1]_, matching example 2 for a ball, segmented ball, flow-to-open valve. >>> size_control_valve_l(rho=965.4, Psat=70.1E3, Pc=22120E3, mu=3.1472E-4, ... P1=680E3, P2=220E3, Q=0.1, D1=0.1, D2=0.1, d=0.1, ... FL=0.6, Fd=0.98) 238.05817216710483 References ---------- .. [1] IEC 60534-2-1 / ISA-75.01.01-2007 ''' if full_output: ans = {'FLP': None, 'FP': None, 'FR': None} # Pa to kPa, according to constants in standard P1, P2, Psat, Pc = P1/1000., P2/1000., Psat/1000., Pc/1000. Q = Q*3600. # m^3/s to m^3/hr, according to constants in standard nu = mu/rho # kinematic viscosity used in standard MAX_C_POSSIBLE = 1E40 # Quit iterations if C reaches this high dP = P1 - P2 FF = FF_critical_pressure_ratio_l(Psat=Psat, Pc=Pc) choked = is_choked_turbulent_l(dP=dP, P1=P1, Psat=Psat, FF=FF, FL=FL) if choked and allow_choked: # Choked flow, equation 3 C = Q/N1/FL*sqrt(rho/rho0/(P1 - FF*Psat)) else: # non-choked flow, eq 1 C = Q/N1*sqrt(rho/rho0/dP) if D1 is None and D2 is None and d is None: # Assume turbulent if no diameters are provided, no other calculations Rev = 1e5 else: # m to mm, according to constants in standard D1, D2, d = D1*1000., D2*1000., d*1000. Rev = Reynolds_valve(nu=nu, Q=Q, D1=D1, FL=FL, Fd=Fd, C=C) # normal calculation path if (Rev > 10000 or not allow_laminar) and (D1 != d or D2 != d): # liquid, using Fp and FLP FP = 1.0 Ci = C MAX_ITER = 20 def iterate_piping_turbulent_l(Ci, iterations): loss = loss_coefficient_piping(d, D1, D2) FP = 1.0/sqrt(1 + loss/N2*(Ci/d**2)**2) if d > D1: loss_upstream = 0.0 else: loss_upstream = loss_coefficient_piping(d, D1) FLP = FL*1.0/sqrt(1 + FL**2/N2*loss_upstream*(Ci/d**2)**2) choked = is_choked_turbulent_l(dP, P1, Psat, FF, FLP=FLP, FP=FP) if choked: # Choked flow with piping, equation 4 C = Q/N1/FLP*sqrt(rho/rho0/(P1-FF*Psat)) else: # Non-Choked flow with piping, equation 5 C = Q/N1/FP*sqrt(rho/rho0/dP) if Ci/C < 0.99 and iterations < MAX_ITER and Ci < MAX_C_POSSIBLE: C = iterate_piping_turbulent_l(C, iterations+1) if MAX_ITER == iterations or Ci >= MAX_C_POSSIBLE: ans['warning'] = 'Not converged in inner loop' if full_output: ans['FLP'] = FLP ans['FP'] = FP return C C = iterate_piping_turbulent_l(Ci, 0) elif Rev <= 10000 and allow_laminar: # Laminar def iterate_piping_laminar_l(C): Ci = 1.3*C Rev = Reynolds_valve(nu=nu, Q=Q, D1=D1, FL=FL, Fd=Fd, C=Ci) if Ci/d**2 > 0.016*N18: FR = Reynolds_factor(FL=FL, C=Ci, d=d, Rev=Rev, full_trim=False) else: FR = Reynolds_factor(FL=FL, C=Ci, d=d, Rev=Rev, full_trim=True) if C/FR >= Ci: Ci = iterate_piping_laminar_l(Ci) # pragma: no cover if full_output: ans['Rev'] = Rev ans['FR'] = FR return Ci C = iterate_piping_laminar_l(C) if full_output: ans['FF'] = FF ans['choked'] = choked ans['Kv'] = C ans['laminar'] = Rev <= 10000 # For the laminar case this is already set and needs to not be overwritten if 'Rev' not in ans: ans['Rev'] = Rev return ans else: # return C, choked, laminar, FF, FR, Rev, FP, FLP, warning return C def size_control_valve_g(T, MW, mu, gamma, Z, P1, P2, Q, D1=None, D2=None, d=None, FL=0.9, Fd=1, xT=0.7, allow_choked=True, allow_laminar=True, full_output=False): r'''Calculates flow coefficient of a control valve passing a gas according to IEC 60534. Uses a large number of inputs in SI units. Note the return value is not standard SI. All parameters are required. For details of the calculations, consult [1]_. Note the inlet gas flow conditions. Parameters ---------- T : float Temperature of the gas at the inlet [K] MW : float Molecular weight of the gas [g/mol] mu : float Viscosity of the fluid at inlet conditions [Pa*s] gamma : float Specific heat capacity ratio [-] Z : float Compressibility factor at inlet conditions, [-] P1 : float Inlet pressure of the gas before valves and reducers [Pa] P2 : float Outlet pressure of the gas after valves and reducers [Pa] Q : float Volumetric flow rate of the gas at *273.15 K* and 1 atm specifically [m^3/s] D1 : float, optional Diameter of the pipe before the valve [m] D2 : float, optional Diameter of the pipe after the valve [m] d : float, optional Diameter of the valve [m] FL : float, optional Liquid pressure recovery factor of a control valve without attached fittings (normally 0.8-0.9 at full open and decreasing as opened further to below 0.5; use default very cautiously!) [] Fd : float, optional Valve style modifier (0.1 to 1; varies tremendously depending on the type of valve and position; do not use the default at all!) [] xT : float, optional Pressure difference ratio factor of a valve without fittings at choked flow (increasing to 0.9 or higher as the valve is closed further and decreasing to 0.1 or lower as the valve is opened further; use default very cautiously!) [-] allow_choked : bool, optional Overrides the automatic transition into the choked regime if this is False and returns as if choked flow does not exist allow_laminar : bool, optional Overrides the automatic transition into the laminar regime if this is False and returns as if laminar flow does not exist full_output : bool, optional If True, returns intermediate calculation values as well as Kv in the form of a dictionary containing 'Kv', 'Rev', 'choked', 'Y', 'FR', 'FP', 'xTP', and 'laminar'. Some may be None if they are not used in the calculation. Returns ------- Kv : float Metric Kv valve flow coefficient (flow rate of water at a pressure drop of 1 bar) [m^3/hr] Notes ----- It is possible to use this model without any diameters specified; in that case, turbulent flow is assumed. Choked flow can still be modeled. This is not recommended. All three diameters need to be None for this to work. `FL` and `Fd` are not used by the models when the diameters are not specified, but `xT` definitely is used by the model. When this model does not converge, the result is normally because of the specified delta P being less than that caused by the piping diameter changes. Examples -------- From [1]_, matching example 3 for non-choked gas flow with attached fittings and a rotary, eccentric plug, flow-to-open control valve: >>> size_control_valve_g(T=433., MW=44.01, mu=1.4665E-4, gamma=1.30, ... Z=0.988, P1=680E3, P2=310E3, Q=38/36., D1=0.08, D2=0.1, d=0.05, ... FL=0.85, Fd=0.42, xT=0.60) 72.5866454539105 From [1]_, roughly matching example 4 for a small flow trim sized tapered needle plug valve. Difference is 3% and explained by the difference in algorithms used. >>> size_control_valve_g(T=320., MW=39.95, mu=5.625E-5, gamma=1.67, Z=1.0, ... P1=2.8E5, P2=1.3E5, Q=0.46/3600., D1=0.015, D2=0.015, d=0.015, FL=0.98, ... Fd=0.07, xT=0.8) 0.016498765335995726 References ---------- .. [1] IEC 60534-2-1 / ISA-75.01.01-2007 ''' MAX_C_POSSIBLE = 1E40 # Quit iterations if C reaches this high # Pa to kPa, according to constants in standard P1, P2 = P1*1e-3, P2*1e-3 Q = Q*3600. # m^3/s to m^3/hr, according to constants in standard # Convert dynamic viscosity to kinematic viscosity Vm = Z*R*T/(P1*1000) rho = MW*1e-3/Vm nu = mu/rho # kinematic viscosity used in standard dP = P1 - P2 Fgamma = gamma/1.40 x = dP/P1 Y = max(1 - x/(3*Fgamma*xT), 2/3.) choked = is_choked_turbulent_g(x, Fgamma, xT) if choked and allow_choked: # Choked, and flow coefficient from eq 14a C = Q/(N9*P1*Y)*sqrt(MW*T*Z/xT/Fgamma) else: # Non-choked, and flow coefficient from eq 8a C = Q/(N9*P1*Y)*sqrt(MW*T*Z/x) if full_output: # numba: delete ans = {'FP': None, 'xTP': None, 'FR': None, 'choked': choked, 'Y': Y} # numba: delete if D1 is None and D2 is None and d is None: # Assume turbulent if no diameters are provided, no other calculations Rev = 1e5 if full_output: ans['Rev'] = None # numba: delete else: # m to mm, according to constants in standard D1, D2, d = D1*1000., D2*1000., d*1000. # Convert diameters to mm which is used in the standard Rev = Reynolds_valve(nu=nu, Q=Q, D1=D1, FL=FL, Fd=Fd, C=C) if full_output: ans['Rev'] = Rev # numba: delete if (Rev > 10000 or not allow_laminar) and (D1 != d or D2 != d): # gas, using xTP and FLP FP = 1. MAX_ITER = 20 def iterate_piping_coef_g(Ci, iterations): loss = loss_coefficient_piping(d, D1, D2) FP = 1.0/sqrt(1. + loss/N2*(Ci/d**2)**2) loss_upstream = loss_coefficient_piping(d, D1) xTP = xT/FP**2/(1 + xT*loss_upstream/N5*(Ci/d**2)**2) choked = is_choked_turbulent_g(x, Fgamma, xTP=xTP) if choked: # Choked flow with piping, equation 17a C = Q/(N9*FP*P1*Y)*sqrt(MW*T*Z/xTP/Fgamma) else: # Non-choked flow with piping, equation 11a C = Q/(N9*FP*P1*Y)*sqrt(MW*T*Z/x) if Ci/C < 0.99 and iterations < MAX_ITER and Ci < MAX_C_POSSIBLE: C = iterate_piping_coef_g(C, iterations+1) if full_output: # numba: delete ans['xTP'] = xTP # numba: delete ans['FP'] = FP # numba: delete ans['choked'] = choked # numba: delete if MAX_ITER == iterations or Ci >= MAX_C_POSSIBLE: # numba: delete ans['warning'] = 'Not converged in inner loop' # numba: delete return C # def err_piping_coeff(Ci): # loss = loss_coefficient_piping(d, D1, D2) # FP = (1. + loss/N2*(Ci/d**2)**2)**-0.5 # loss_upstream = loss_coefficient_piping(d, D1) # xTP = xT/FP**2/(1 + xT*loss_upstream/N5*(Ci/d**2)**2) # choked = is_choked_turbulent_g(x, Fgamma, xTP=xTP) # if choked: # # Choked flow with piping, equation 17a # C = Q/(N9*FP*P1*Y)*(MW*T*Z/xTP/Fgamma)**0.5 # else: # # Non-choked flow with piping, equation 11a # C = Q/(N9*FP*P1*Y)*(MW*T*Z/x)**0.5 # return C - Ci # import matplotlib.pyplot as plt # from fluids.numerics import linspace # Cs = linspace(C/50, C*50, 5000) # errs = [err_piping_coeff(C_test) for C_test in Cs] # plt.plot(Cs, errs) # plt.show() C = iterate_piping_coef_g(C, 0) elif Rev <= 10000 and allow_laminar: # Laminar; def iterate_piping_laminar_g(C): Ci = 1.3*C Rev = Reynolds_valve(nu=nu, Q=Q, D1=D1, FL=FL, Fd=Fd, C=Ci) if Ci/d**2 > 0.016*N18: FR = Reynolds_factor(FL=FL, C=Ci, d=d, Rev=Rev, full_trim=False) else: FR = Reynolds_factor(FL=FL, C=Ci, d=d, Rev=Rev, full_trim=True) if C/FR >= Ci: Ci = iterate_piping_laminar_g(Ci) if full_output: # numba: delete ans['FR'] = FR # numba: delete ans['Rev'] = Rev # numba: delete return Ci C = iterate_piping_laminar_g(C) if full_output: # numba: delete ans['Kv'] = C # numba: delete ans['laminar'] = Rev <= 10000 # numba: delete ans['choked'] = choked # numba: delete return ans # numba: delete return C # Valve data from Emerson Valve Handbook 5E # Quick opening valve data, spline fit, and interpolating function opening_quick = [0.0, 0.0136, 0.02184, 0.03256, 0.04575, 0.06221, 0.07459, 0.0878, 0.10757, 0.12654, 0.14301, 0.16032, 0.18009, 0.18999, 0.20233, 0.23105, 0.25483, 0.28925, 0.32365, 0.36541, 0.42188, 0.46608, 0.53319, 0.61501, 0.7034, 0.78033, 0.84415, 0.91944, 1.000] frac_CV_quick = [0.0, 0.04984, 0.07582, 0.12044, 0.16614, 0.21707, 0.26998, 0.32808, 0.39353, 0.46516, 0.52125, 0.58356, 0.64798, 0.68845, 0.72277, 0.76565, 0.79399, 0.82459, 0.84589, 0.86732, 0.88078, 0.89399, 0.90867, 0.92053, 0.93973, 0.95872, 0.96817, 0.98611, 1.0] opening_quick_tck = implementation_optimize_tck([[0.0, 0.0, 0.0, 0.0, 0.02184, 0.03256, 0.04575, 0.06221, 0.07459, 0.0878, 0.10757, 0.12654, 0.14301, 0.16032, 0.18009, 0.18999, 0.20233, 0.23105, 0.25483, 0.28925, 0.32365, 0.36541, 0.42188, 0.46608, 0.53319, 0.61501, 0.7034, 0.78033, 0.84415, 1.0, 1.0, 1.0, 1.0], [-3.2479258181113327e-19, 0.037650956835178835, 0.054616164261637117, 0.12657862552611354, 0.17115105822542115, 0.2075233903194021, 0.27084055195333684, 0.34208963001568016, 0.38730839943796663, 0.4656002247400036, 0.5196995880922897, 0.5907033063634928, 0.6304293931726886, 0.6953064258075168, 0.7382935002453699, 0.7631579537132379, 0.7997961180795559, 0.8262370617883222, 0.8471954722933543, 0.873096858463145, 0.8776128736976467, 0.897647305294458, 0.9105672165523071, 0.9192771703370824, 0.9377349743236904, 0.9603716623033031, 0.9688863605959851, 0.9980062718267431, 1.0, 0.0, 0.0, 0.0, 0.0], 3]) Cv_char_quick_opening = lambda opening: float(splev(opening, opening_quick_tck)) opening_linear = [0., 1.0] frac_CV_linear = [0, 1] Cv_char_linear = lambda opening: interp(opening, opening_linear, frac_CV_linear) # Equal opening valve data, spline fit, and interpolating function opening_equal = [0.0, 0.05523, 0.09287, 0.15341, 0.18942, 0.22379, 0.25816, 0.29582, 0.33348, 0.34985, 0.3826, 0.45794, 0.49235, 0.51365, 0.54479, 0.57594, 0.60218, 0.62843, 0.77628, 0.796, 0.83298, 0.86995, 0.90936, 0.95368, 1.00] frac_CV_equal = [0.0, 0.00845, 0.01339, 0.01877, 0.02579, 0.0349, 0.04189, 0.05528, 0.07079, 0.07533, 0.09074, 0.13444, 0.15833, 0.17353, 0.20159, 0.23388, 0.26819, 0.30461, 0.60113, 0.64588, 0.72583, 0.80788, 0.87519, 0.94999, 1.] opening_equal_tck = implementation_optimize_tck([[0.0, 0.0, 0.0, 0.0, 0.09287, 0.15341, 0.18942, 0.22379, 0.25816, 0.29582, 0.33348, 0.34985, 0.3826, 0.45794, 0.49235, 0.51365, 0.54479, 0.57594, 0.60218, 0.62843, 0.77628, 0.796, 0.83298, 0.86995, 0.90936, 1.0, 1.0, 1.0, 1.0], [1.3522591106779132e-19, 0.004087873896711868, 0.014374150571122216, 0.016455484312674015, 0.024946845435605228, 0.03592972456181881, 0.040710119644626126, 0.054518468768197687, 0.06976905178508139, 0.07587146190282387, 0.0985485829020452, 0.1238160142641967, 0.15558350087382017, 0.17487348629353283, 0.20157507610951217, 0.22995771158118564, 0.2683886931491415, 0.3574766835730407, 0.5027678906008036, 0.659729970241158, 0.7233389559355903, 0.8155475382785987, 0.8983628328699896, 0.9871204658597236, 1.0, 0.0, 0.0, 0.0, 0.0], 3]) Cv_char_equal_percentage = lambda opening: float(splev(opening, opening_equal_tck)) def convert_flow_coefficient(flow_coefficient, old_scale, new_scale): """Convert from one flow coefficient scale to another; supports the `Kv` `Cv`, and `Av` scales. Other scales are `Qn` and `Cg`, but clear definitions have yet to be found. Parameters ---------- flow_coefficient : float Value of the flow coefficient to be converted, expressed in the original scale. old_scale : str String specifying the original scale; one of 'Av', 'Cv', or 'Kv', [-] new_scale : str String specifying the new scale; one of 'Av', 'Cv', or 'Kv', [-] Returns ------- converted_flow_coefficient : float Flow coefficient converted to the specified scale. Notes ----- `Qn` is a scale based on a flow of air in units of L/minute as air travels through a valve and loses one bar of pressure (initially 7 bar absolute, to 6 bar absolute). No consistent conversion factors have been found and those from theory do not match what have been found. Some uses of `Qn` use its flow rate as in normal (STP reference conditions) flow rate of air; others use something like the 7 bar absolute condition. Examples -------- >>> convert_flow_coefficient(10, 'Kv', 'Av') 0.0002776532068951358 """ # Convert from `old_scale` to Kv if old_scale == 'Cv': Kv = Cv_to_Kv(flow_coefficient) elif old_scale == 'Kv': Kv = flow_coefficient elif old_scale == 'Av': Cv = flow_coefficient/(sqrt(rho0/psi)*gallon/minute) Kv = Cv_to_Kv(Cv) else: raise NotImplementedError("Supported scales are 'Cv', 'Kv', and 'Av'") if new_scale == 'Cv': ans = Kv_to_Cv(Kv) elif new_scale == 'Kv': ans = Kv elif new_scale == 'Av': Cv = Kv_to_Cv(Kv) ans = Cv*(sqrt(rho0/psi)*gallon/minute) else: raise NotImplementedError("Supported scales are 'Cv', 'Kv', and 'Av'") return ans # Third octave center frequency fi Hz fis_l_2015 = [12.5, 16.0, 20.0, 25.0, 31.5, 40.0, 50.0, 63.0, 80.0, 100.0, 125.0, 160.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 20000.0] #fis_l_2015_inv = [1.0/fi for fi in fis_l_2015] #fis_l_2015_1_5 = [fi**1.5 for fi in fis_l_2015] #fis_l_2015_n1_5 = [fi**-1.5 for fi in fis_l_2015] fis_l_2015_inv = [0.08, 0.0625, 0.049999999999999996, 0.04000000000000001, 0.031746031746031744, 0.025, 0.02, 0.01587301587301587, 0.012499999999999999, 0.010000000000000002, 0.008, 0.00625, 0.005, 0.003999999999999999, 0.003174603174603174, 0.0025000000000000005, 0.002, 0.0015873015873015873, 0.00125, 0.0009999999999999998, 0.0008, 0.0006250000000000001, 0.0005, 0.0004, 0.0003174603174603174, 0.00024999999999999995, 0.0002, 0.00015873015873015873, 0.000125, 0.0001, 8e-05, 6.249999999999999e-05, 5e-05] fis_l_2015_1_5 = [44.19417382415922, 64.0, 89.44271909999159, 125.0, 176.79331152506873, 252.98221281347034, 353.5533905932738, 500.04699779120756, 715.5417527999327, 1000.0, 1397.5424859373686, 2023.8577025077627, 2828.42712474619, 3952.847075210474, 5590.695395029137, 8000.0, 11180.339887498949, 15812.874501494027, 22627.41699796952, 31622.776601683792, 44194.17382415922, 64000.0, 89442.71909999159, 125000.0, 176793.3115250687, 252982.21281347034, 353553.39059327374, 500046.9977912076, 715541.7527999327, 1000000.0, 1397542.4859373686, 2023857.7025077627, 2828427.12474619] fis_l_2015_n1_5 = [0.02262741699796952, 0.015625, 0.011180339887498947, 0.008000000000000002, 0.00565632258015713, 0.003952847075210475, 0.00282842712474619, 0.001999812026503847, 0.0013975424859373684, 0.0010000000000000002, 0.0007155417527999327, 0.0004941058844013093, 0.00035355339059327376, 0.0002529822128134703, 0.00017886862533936855, 0.00012500000000000003, 8.944271909999159e-05, 6.323960895949173e-05, 4.419417382415922e-05, 3.162277660168379e-05, 2.2627416997969522e-05, 1.5625000000000004e-05, 1.1180339887498949e-05, 8.000000000000001e-06, 5.6563225801571285e-06, 3.9528470752104736e-06, 2.8284271247461903e-06, 1.9998120265038475e-06, 1.3975424859373686e-06, 1.0000000000000002e-06, 7.155417527999328e-07, 4.941058844013092e-07, 3.535533905932738e-07] fis_l_2015_3 = [1953.125, 4096.0, 8000.0, 15625.0, 31255.875, 64000.0, 125000.0, 250047.0, 512000.0, 1000000.0, 1953125.0, 4096000.0, 8000000.0, 15625000.0, 31255875.0, 64000000.0, 125000000.0, 250047000.0, 512000000.0, 1000000000.0, 1953125000.0, 4096000000.0, 8000000000.0, 15625000000.0, 31255875000.0, 64000000000.0, 125000000000.0, 250047000000.0, 512000000000.0, 1000000000000.0, 1953125000000.0, 4096000000000.0, 8000000000000.0] fis_l_2015_17 = [73.2397784872531, 111.43047210190387, 162.83621261476173, 237.95674233948478, 352.4746934040807, 529.0564156396547, 773.1237367774792, 1145.1936574895758, 1718.9093656438004, 2511.88643150958, 3670.6841971500585, 5584.753005453414, 8161.143093473476, 11926.088141608398, 17665.581651081215, 26515.632138719888, 38747.97468870842, 57395.64411646984, 86149.54298230256, 125892.54117941669, 183970.00582889825, 279900.6909294791, 409026.07302542904, 597720.3123687729, 885376.3998122095, 1328929.6319483411, 1941999.0242893337, 2876596.4096988947, 4317705.1125554005, 6309573.44480193, 9220341.829177868, 14028265.297730776, 20499864.602104142] #fis_l_2015_inv, fis_l_2015_1_5, fis_l_2015_17, fis_l_2015_n1_5, fis_l_2015_3 = [], [], [], [], [] #for fi in fis_l_2015: # fi_rt_inv = 1.0/sqrt(fi) # fis_l_2015_inv.append(fi_rt_inv*fi_rt_inv) # fis_l_2015_1_5.append(fi*fi*fi_rt_inv) # fis_l_2015_n1_5.append(fi_rt_inv*fi_rt_inv*fi_rt_inv) # fis_l_2015_3.append(fi*fi*fi) # fis_l_2015_17.append(fi**1.7) fis_length = 33 # dLa(fi), dB A_weights_l_2015 = [-63.4, -56.7, -50.5, -44.7, -39.4, -34.6, -30.2, -26.2, -22.5, -19.1, -16.1, -13.4, -10.9, -8.6, -6.6, -4.8, -3.2, -1.9, -0.8, 0.0, 0.6, 1.0, 1.2, 1.3, 1.2, 1.0, 0.5, -0.1, -1.1, -2.5, -4.3, -6.6, -9.3] def control_valve_noise_l_2015(m, P1, P2, Psat, rho, c, Kv, d, Di, FL, Fd, t_pipe, rho_pipe=7800.0, c_pipe=5000.0, rho_air=1.2, c_air=343.0, xFz=None, An=-4.6): r'''Calculates the sound made by a liquid flowing through a control valve according to the standard IEC 60534-8-4 (2015) [1]_. Parameters ---------- m : float Mass flow rate of liquid through the control valve, [kg/s] P1 : float Inlet pressure of the fluid before valves and reducers [Pa] P2 : float Outlet pressure of the fluid after valves and reducers [Pa] Psat : float Saturation pressure of the fluid at inlet temperature [Pa] rho : float Density of the liquid at the inlet [kg/m^3] c : float Speed of sound of the liquid at the inlet conditions [m/s] Kv : float Metric Kv valve flow coefficient (flow rate of water at a pressure drop of 1 bar) [m^3/hr] d : float Diameter of the valve [m] Di : float Internal diameter of the pipe before and after the valve [m] FL : float, optional Liquid pressure recovery factor of a control valve without attached fittings (normally 0.8-0.9 at full open and decreasing as opened further to below 0.5) [-] Fd : float, optional Valve style modifier [-] t_pipe : float Wall thickness of the pipe after the valve, [m] rho_pipe : float, optional Density of the pipe wall material at flowing conditions, [kg/m^3] c_pipe : float, optional Speed of sound of the pipe wall material at flowing conditions, [m/s] rho_air : float, optional Density of the air surrounding the valve and pipe wall, [kg/m^3] c_air : float, optional Speed of sound of the air surrounding the valve and pipe wall, [m/s] xFz : float, optional If specified, this value `xFz` is used instead of estimated; the calculation is sensitive to this value, [-] An : float, optional Valve correction factor for acoustic efficiency Returns ------- LpAe1m : float A weighted sound pressure level 1 m from the pipe wall, 1 m distance dowstream of the valve (at reference sound pressure level 2E-5), [dB] Notes ----- For formulas see [1]_. This takes on the order of 100 us to compute. This model can also tell if noise is being produced in a valve just due to turbulent flow, or cavitation. For values of `An`, see [1]_; it is normally -4.6 for global valves, -4.3 for butterfly valves, and -4.0 for expanders. This model was checked against three examples in [1]_; they match to all given decimals. A formula is given in [1]_ for multihole trim valves to estimate `xFz` as well; this is not implemented here and `xFz` must be calculated by the user separately. The formula is .. math:: x_{Fz} = \left(4.5 + 1650\frac{N_0d_H^2}{F_L}\right)^{-1/2} Where `N0` is the number of open channels and `dH` is the multihole trim hole diameter. Examples -------- >>> control_valve_noise_l_2015(m=40, P1=1E6, P2=6.5E5, Psat=2.32E3, ... rho=997, c=1400, Kv=77.848, d=0.1, Di=0.1071, FL=0.92, Fd=0.42, ... t_pipe=0.0036, rho_pipe=7800.0, c_pipe=5000.0,rho_air=1.293, ... c_air=343.0, An=-4.6) 81.58200097996 References ---------- .. [1] IEC 60534-8-4 : Industrial-Process Control Valves - Part 8-4: Noise Considerations - Prediction of Noise Generated by Hydrodynamic Flow. (2015) ''' # Convert Kv to Cv as C N34 = 1.17 # for Cv - conversion constant but not to many decimals N14 = 0.0046 C = Kv_to_Cv(Kv) xF = (P1-P2)/(P1-Psat) dPc = min(P1-P2, FL*FL*(P1 - Psat)) if xFz is None: xFz = 0.9*1.0/sqrt(1.0 + 3.0*Fd*sqrt(C/(N34*FL))) xFzp1 = xFz*sqrt(sqrt(sqrt((6E5/P1)))) Dj = N14*Fd*sqrt(C*FL) Uvc = sqrt(2.0*dPc/rho)/FL Wm = 0.5*m*Uvc*Uvc*FL*FL cavitating = xF > xFzp1 eta_turb = 10.0**An*Uvc/c x0 = xF - xFzp1 x1 = xF/xFzp1 x2 = x1*x1 x1 = x2*x2*x1 if cavitating: eta_cav = 0.32*eta_turb*sqrt((P1 - P2)/(dPc*xFzp1))*exp(5.0*xFzp1)*sqrt((1.0 - xFzp1)/(1.0 - xF))*(x1)*x0*sqrt(x0) Wa = (eta_turb+eta_cav)*Wm else: Wa = eta_turb*Wm Lpi = 10.0*log10(3.2E9*Wa*rho*c/(Di*Di)) Stp = 0.036*FL*FL*C*Fd**0.75/(N34*xFzp1*sqrt(xFzp1)*d*d)*(1.0/(P1 - Psat))**0.57 f_p_turb = Stp*Uvc/Dj if cavitating: x3 = ((1.0 - xF)/(1.0 - xFzp1)) x4 = xFzp1/xF f_p_cav = 6.0*f_p_turb*x3*x3*x4*x4*sqrt(x4) f_p_cav_inv = 1.0/f_p_cav f_p_cav_inv_1_5 = f_p_cav_inv*sqrt(f_p_cav_inv) f_p_cav_inv_1_5_1_4 = 0.25*f_p_cav_inv_1_5 f_p_cav_1_5 = 1.0/f_p_cav_inv_1_5 eta_denom = 1.0/(eta_turb + eta_cav) t1 = eta_turb*eta_denom t2 = eta_cav*eta_denom fr = c_pipe/(pi*Di) fr_inv = 1.0/fr TL_fr = -10.0 - 10.0*log10(c_pipe*rho_pipe*t_pipe/(c_air*rho_air*Di)) t3 = - 10.0*log10((Di + 2.0*t_pipe + 2.0)/(Di + 2.0*t_pipe)) # F_cavs = [] # F_turbs = [] # LPis = [] # TL_fis = [] # L_pe1m_fis = [] LpAe1m_sum = 0.0 f_p_turb_inv = 1.0/f_p_turb f_p_turb_inv3 = f_p_turb_inv*f_p_turb_inv*f_p_turb_inv fr_inv_1_5 = fr_inv*sqrt(fr_inv) a_factor = ln_10_inv for i in range(fis_length): # for fi, fi_inv, fi_1_5, fi_1_5_inv, A in zip(fis_l_2015, fis_l_2015_inv, fis_l_2015_1_5, fis_l_2015_n1_5, A_weights_l_2015): # fi_inv = 1.0/fi # fi_turb_ratio = fis_l_2015[i]*f_p_turb_inv # fi_turb_ratio = fi*f_p_turb_inv F_turb = -.8 - log(0.25*f_p_turb_inv3*fis_l_2015_3[i] + fis_l_2015_inv[i]*f_p_turb)*a_factor # F_turbs.append(F_turb) if cavitating: # fi_cav_ratio = fi_1_5*f_p_cav_inv_1_5# (fi*f_p_cav_inv)**1.5 # F_cav = -.9 - log10(f_p_cav_inv_1_5_1_4*fis_l_2015_1_5[i] + fis_l_2015_n1_5[i]*f_p_cav_1_5) # 1.0/fi_cav_ratio, fi_1_5_inv*f_p_cav_1_5 F_cav_fact = 0.12589254117941673/(f_p_cav_inv_1_5_1_4*fis_l_2015_1_5[i] + fis_l_2015_n1_5[i]*f_p_cav_1_5) # 0.1258925411794167310 = 10**(-0.9) # 4.3429448190325175*log(x) -> 10*log10(x) LPif = (Lpi + 4.3429448190325175*log(t1*exp(ln_10*F_turb) + t2*F_cav_fact)) # Should be able to save 1 power in the above function somehow, combine the tow terms in exponent else: LPif = Lpi + F_turb*10.0 # LPis.append(LPif) # -8.685889638065035 = -20*log10(x) TL_fi = TL_fr - 8.685889638065035*log(fr*fis_l_2015_inv[i] + fis_l_2015_1_5[i]*fr_inv_1_5) # (fi*fr_inv)**1.5 # TL_fis.append(TL_fi) L_pe1m_fi = LPif + TL_fi + t3 # L_pe1m_fis.append(L_pe1m_fi) LpAe1m_sum += exp(0.23025850929940458*(L_pe1m_fi + A_weights_l_2015[i])) LpAe1m = 4.3429448190325175*log(LpAe1m_sum) return LpAe1m def control_valve_noise_g_2011(m, P1, P2, T1, rho, gamma, MW, Kv, d, Di, t_pipe, Fd, FL, FLP=None, FP=None, rho_pipe=7800.0, c_pipe=5000.0, P_air=101325.0, rho_air=1.2, c_air=343.0, An=-3.8, Stp=0.2, T2=None, beta=0.93): r'''Calculates the sound made by a gas flowing through a control valve according to the standard IEC 60534-8-3 (2011) [1]_. Parameters ---------- m : float Mass flow rate of gas through the control valve, [kg/s] P1 : float Inlet pressure of the gas before valves and reducers [Pa] P2 : float Outlet pressure of the gas after valves and reducers [Pa] T1 : float Inlet gas temperature, [K] rho : float Density of the gas at the inlet [kg/m^3] gamma : float Specific heat capacity ratio [-] MW : float Molecular weight of the gas [g/mol] Kv : float Metric Kv valve flow coefficient (flow rate of water at a pressure drop of 1 bar) [m^3/hr] d : float Diameter of the valve [m] Di : float Internal diameter of the pipe before and after the valve [m] t_pipe : float Wall thickness of the pipe after the valve, [m] Fd : float Valve style modifier (0.1 to 1; varies tremendously depending on the type of valve and position; do not use the default at all!) [-] FL : float Liquid pressure recovery factor of a control valve without attached fittings (normally 0.8-0.9 at full open and decreasing as opened further to below 0.5; use default very cautiously!) [-] FLP : float, optional Combined liquid pressure recovery factor with piping geometry factor, for a control valve with attached fittings [-] FP : float, optional Piping geometry factor [-] rho_pipe : float, optional Density of the pipe wall material at flowing conditions, [kg/m^3] c_pipe : float, optional Speed of sound of the pipe wall material at flowing conditions, [m/s] P_air : float, optional Pressure of the air surrounding the valve and pipe wall, [Pa] rho_air : float, optional Density of the air surrounding the valve and pipe wall, [kg/m^3] c_air : float, optional Speed of sound of the air surrounding the valve and pipe wall, [m/s] An : float, optional Valve correction factor for acoustic efficiency, [-] Stp : float, optional Strouhal number at the peak `fp`; between 0.1 and 0.3 typically, [-] T2 : float, optional Outlet gas temperature; assumed `T1` if not provided (a PH flash should be used to obtain this if possible), [K] beta : float, optional Valve outlet / expander inlet contraction coefficient, [-] Returns ------- LpAe1m : float A-weighted sound pressure level 1 m from the pipe wall, 1 m distance dowstream of the valve (at reference sound pressure level 2E-5), [dB] Notes ----- For formulas see [1]_. This takes on the order of 100 us to compute. For values of `An`, see [1]_. This model was checked against six examples in [1]_; they match to all given decimals. Several additional formulas are given for multihole trim valves, control valves with two or more fixed area stages, and multipath, multistage trim valves. Examples -------- >>> control_valve_noise_g_2011(m=2.22, P1=1E6, P2=7.2E5, T1=450, rho=5.3, ... gamma=1.22, MW=19.8, Kv=77.85, d=0.1, Di=0.2031, FL=None, FLP=0.792, ... FP=0.98, Fd=0.296, t_pipe=0.008, rho_pipe=8000.0, c_pipe=5000.0, ... rho_air=1.293, c_air=343.0, An=-3.8, Stp=0.2) 91.67702674629604 References ---------- .. [1] IEC 60534-8-3 : Industrial-Process Control Valves - Part 8-3: Noise Considerations - Control Valve Aerodynamic Noise Prediction Method." ''' k = gamma # alias C = Kv_to_Cv(Kv) N14 = 4.6E-3 N16 = 4.89E4 fs = 1.0 # structural loss factor reference frequency, Hz P_air_std = 101325.0 if T2 is None: T2 = T1 x = (P1 - P2)/P1 # FLP/FP when fittings attached FL_term = FLP/FP if FP is not None else FL P_vc = P1*(1.0 - x/FL_term**2) x_vcc = 1.0 - (2.0/(k + 1.0))**(k/(k - 1.0)) # mostly matches xc = FL_term**2*x_vcc alpha = (1.0 - x_vcc)/(1.0 - xc) xB = 1.0 - 1.0/alpha*(1.0/k)**((k/(k - 1.0))) xCE = 1.0 - 1.0/(22.0*alpha) # Regime determination check - should be ordered or won't work # assert xc < x_vcc # assert x_vcc < xB # assert xB < xCE if x <= xc: regime = 1 elif xc < x <= x_vcc: regime = 2 elif x_vcc < x <= xB: regime = 3 elif xB < x <= xCE: regime = 4 else: regime = 5 # print('regime', regime) Dj = N14*Fd*sqrt(C*(FL_term)) Mj5 = sqrt(2.0/(k - 1.0)*( 22.0**((k-1.0)/k) - 1.0 )) if regime == 1: Mvc = sqrt((2.0/(k-1.0)) *((1.0 - x/FL_term**2)**((1.0 - k)/k) - 1.0)) # Not match elif regime == 2 or regime == 3 or regime == 4: Mj = sqrt((2.0/(k-1.0))*((1.0/(alpha*(1.0-x)))**((k - 1.0)/k) - 1.0)) # Not match Mj = min(Mj, Mj5) # elif regime == 5: # pass if regime == 1: Tvc = T1*(1.0 - x/(FL_term)**2)**((k - 1.0)/k) cvc = sqrt(k*P1/rho*(1 - x/(FL_term)**2)**((k-1.0)/k)) Wm = 0.5*m*(Mvc*cvc)**2 else: Tvcc = 2.0*T1/(k + 1.0) cvcc = sqrt(2.0*k*P1/(k+1.0)/rho) Wm = 0.5*m*cvcc*cvcc # print('Wm', Wm) if regime == 1: fp = Stp*Mvc*cvc/Dj elif regime == 2 or regime == 3: fp = Stp*Mj*cvcc/Dj elif regime == 4: fp = 1.4*Stp*cvcc/Dj/sqrt(Mj*Mj - 1.0) elif regime == 5: fp = 1.4*Stp*cvcc/Dj/sqrt(Mj5*Mj5 - 1.0) fp_inv = 1.0/fp # print('fp', fp) if regime == 1: eta = 10.0**An*FL_term**2*(Mvc)**3 elif regime == 2: eta = 10.0**An*x/x_vcc*Mj**(6.6*FL_term*FL_term) elif regime == 3: eta = 10.0**An*Mj**(6.6*FL_term*FL_term) elif regime == 4: eta = 0.5*10.0**An*Mj*Mj*(sqrt(2.0))**(6.6*FL_term*FL_term) elif regime == 5: eta = 0.5*10.0**An*Mj5*Mj5*(sqrt(2.0))**(6.6*FL_term*FL_term) # print('eta', eta) Wa = eta*Wm rho2 = rho*(P2/P1) # Speed of sound c2 = sqrt(k*R*T2/(MW/1000.)) Mo = 4.0*m/(pi*d*d*rho2*c2) M2 = 4.0*m/(pi*Di*Di*rho2*c2) # print('M2', M2) Lg = 16.0*log10(1.0/(1.0 - min(M2, 0.3))) # dB if M2 > 0.3: Up = 4.0*m/(pi*rho2*Di*Di) UR = Up*Di*Di/(beta*d*d) WmR = 0.5*m*UR*UR*( (1.0 - d*d/(Di*Di))**2 + 0.2) fpR = Stp*UR/d MR = UR/c2 # Value listed in appendix here is wrong, "based on another # earlier standard. Calculation thereon is wrong". Assumed # correct, matches spreadsheet to three decimals. eta_R = 10**An*MR**3 WaR = eta_R*WmR L_piR = 10.0*log10((3.2E9)*WaR*rho2*c2/(Di*Di)) + Lg # print('Up', Up) # print('UR', UR) # print('WmR', WmR) # print('fpR', fpR) # print('MR', MR) # print('eta_R', eta_R, eta_R/8.8E-4) # print('WaR', WaR) # print('L_piR', L_piR) L_pi = 10.0*log10((3.2E9)*Wa*rho2*c2/(Di*Di)) + Lg # print('L_pi', L_pi) fr = c_pipe/(pi*Di) fo = 0.25*fr*(c2/c_air) fg = sqrt(3)*c_air**2/(pi*t_pipe*c_pipe) if d > 0.15: dTL = 0.0 elif 0.05 <= d <= 0.15: dTL = -16660.0*d**3 + 6370.0*d**2 - 813.0*d + 35.8 else: dTL = 9.0 # print(dTL, 'dTL') P_air_ratio = P_air/P_air_std LpAe1m_sum = 0.0 # LPis = [] # LPIRs = [] # L_pe1m_fis = [] for fi, A_weight in zip(fis_l_2015, A_weights_l_2015): # This gets adjusted when Ma > 0.3 fi_turb_ratio = fi*fp_inv t1 = 1.0 + (0.5*fi_turb_ratio)**2.5 t2 = 1.0 + (0.5/fi_turb_ratio)**1.7 # Formula forgot to use log10, but log10 is needed for the numbers Lpif = L_pi - 8.0 - 10.0*log10(t1*t2) # print(Lpif, 'Lpif') # LPis.append(Lpif) if M2 > 0.3: fiR_turb_ratio = fi/fpR t1 = 1.0 + (0.5*fiR_turb_ratio)**2.5 t2 = 1.0 + (0.5/fiR_turb_ratio)**1.7 # Again, log10 is missing LpiRf = L_piR - 8.0 - 10.0*log10(t1*t2) # LPIRs.append(LpiRf) LpiSf = 10.0*log10( 10**(0.1*Lpif) + 10.0**(0.1*LpiRf) ) if fi < fo: Gx = (fo/fr)**(2.0/3.0)*(fi/fo)**4.0 if fo < fg: Gy = (fo/fg) else: Gy = 1.0 else: if fi < fr: Gx = sqrt(fi/fr) else: Gx = 1.0 if fi < fg: Gy = fi/fg else: Gy = 1.0 eta_s = sqrt(0.01/fi) # print('eta_s', eta_s) # up to eta_s is good den = (rho2*c2 + 2.0*pi*t_pipe*fi*rho_pipe*eta_s)/(415.0*Gy) + 1.0 TL_fi = 10.0*log10(8.25E-7*(c2/(t_pipe*fi))**2*Gx/den*P_air_ratio) - dTL # Formula forgot to use log10, but log10 is needed for the numbers if M2 > 0.3: term = LpiSf else: term = Lpif L_pe1m_fi = term + TL_fi - 10.0*log10((Di + 2.0*t_pipe + 2.0)/(Di + 2.0*t_pipe)) # L_pe1m_fis.append(L_pe1m_fi) # print(L_pe1m_fi) LpAe1m_sum += 10.0**(0.1*(L_pe1m_fi + A_weight)) LpAe1m = 10.0*log10(LpAe1m_sum) return LpAe1m fluids-1.0.22/fluids/numba_vectorized.py0000644000175000017500000000324114302004506017602 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2020, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from __future__ import division import sys import importlib.util import types import numpy as np import fluids as normal_fluids import numba import fluids.numba __all__ = [] __funcs = {} numerics = fluids.numba.numerics #replaced, NUMERICS_SUBMOD = fluids.numba.create_numerics(replaced, vec=True) normal = normal_fluids replaced = fluids.numba.numerics_dict.copy() fluids.numba.transform_complete(replaced, __funcs, __all__, normal, vec=True) globals().update(__funcs) globals().update(replaced) fluids-1.0.22/fluids/separator.py0000644000175000017500000003216014302004506016244 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains functionality for calculating rating and designing vapor-liquid separators. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Functions --------- .. autofunction :: v_Sounders_Brown .. autofunction :: K_separator_Watkins .. autofunction :: K_separator_demister_York .. autofunction :: K_Sounders_Brown_theoretical """ from __future__ import division from math import log, exp, sqrt from fluids.constants import g, foot, psi from fluids.numerics import splev, implementation_optimize_tck __all__ = ['v_Sounders_Brown', 'K_separator_Watkins', 'K_separator_demister_York', 'K_Sounders_Brown_theoretical'] # 92 points taken from a 2172x3212 page scan, after dewarping the scan, # digitization with Engauge Digitizer, and extensive checking; every 5th point # it produced was selected plus the last point. The initial value is adjusted # to be the lower limit of the graph. tck_Watkins = implementation_optimize_tck([[-5.115995809754082, -5.115995809754082, -5.115995809754082, -5.115995809754082, -4.160106231099973, -3.209113630523477, -1.2175106961204154, 0.4587657198189318, 1.1197669427405068, 1.6925908552310418, 1.6925908552310418, 1.6925908552310418, 1.6925908552310418], [-1.4404286048266364, -1.2375168139385286, -0.9072614905522024, -0.7662335745829165, -0.944537665617708, -1.957339717378027, -3.002614318094637, -3.5936804378352956, -3.8779153181940553, 0.0, 0.0, 0.0, 0.0], 3]) def K_separator_Watkins(x, rhol, rhog, horizontal=False, method='spline'): r'''Calculates the Sounders-Brown `K` factor as used in determining maximum allowable gas velocity in a two-phase separator in either a horizontal or vertical orientation. This function approximates a graph published in [1]_ to determine `K` as used in the following equation: .. math:: v_{max} = K_{SB}\sqrt{\frac{\rho_l-\rho_g}{\rho_g}} The graph has `K_{SB}` on its y-axis, and the following as its x-axis: .. math:: \frac{m_l}{m_g}\sqrt{\rho_g/\rho_l} = \frac{(1-x)}{x}\sqrt{\rho_g/\rho_l} Cubic spline interpolation is the default method of retrieving a value from the graph, which was digitized with Engauge-Digitizer. Also supported are two published curve fits to the graph. The first is that of Blackwell (1984) [2]_, as follows: .. math:: K_{SB} = \exp(-1.942936 -0.814894X -0.179390 X^2 -0.0123790 X^3 + 0.000386235 X^4 + 0.000259550 X^5) X = \ln\left[\frac{(1-x)}{x}\sqrt{\rho_g/\rho_l}\right] The second is that of Branan (1999), as follows: .. math:: K_{SB} = \exp(-1.877478097 -0.81145804597X -0.1870744085 X^2 -0.0145228667 X^3 -0.00101148518 X^4) X = \ln\left[\frac{(1-x)}{x}\sqrt{\rho_g/\rho_l}\right] Parameters ---------- x : float Quality of fluid entering separator, [-] rhol : float Density of liquid phase [kg/m^3] rhog : float Density of gas phase [kg/m^3] horizontal : bool, optional Whether to use the vertical or horizontal value; horizontal is 1.25 higher method : str One of 'spline, 'blackwell', or 'branan' Returns ------- K : float Sounders Brown horizontal or vertical `K` factor for two-phase separator design only, [m/s] Notes ----- Both the 'branan' and 'blackwell' models are used frequently. However, the spline is much more accurate. No limits checking is enforced. However, the x-axis spans only 0.006 to 5.4, and the function should not be used outside those limits. Examples -------- >>> K_separator_Watkins(0.88, 985.4, 1.3, horizontal=True) 0.07951613600476297 References ---------- .. [1] Watkins (1967). Sizing Separators and Accumulators, Hydrocarbon Processing, November 1967. .. [2] Blackwell, W. Wayne. Chemical Process Design on a Programmable Calculator. New York: Mcgraw-Hill, 1984. .. [3] Branan, Carl R. Pocket Guide to Chemical Engineering. 1st edition. Houston, Tex: Gulf Professional Publishing, 1999. ''' factor = (1. - x)/x*sqrt(rhog/rhol) if method == 'spline': K = exp(float(splev(log(factor), tck_Watkins))) elif method == 'blackwell': X = log(factor) A = -1.877478097 B = -0.81145804597 C = -0.1870744085 D = -0.0145228667 E = -0.00101148518 K = exp(A + X*(B + X*(C + X*(D + E*X)))) elif method == 'branan': X = log(factor) A = -1.942936 B = -0.814894 C = -0.179390 D = -0.0123790 E = 0.000386235 F = 0.000259550 K = exp(A + X*(B + X*(C + X*(D + X*(E + F*X))))) else: raise ValueError("Only methods 'spline', 'branan', and 'blackwell' are supported.") K *= foot # Converts units of ft/s to m/s; the graph and all fits are in ft/s if horizontal: K *= 1.25 # Watkins recommends a factor of 1.25 for horizontal separators over vertical separators return K def K_separator_demister_York(P, horizontal=False): r'''Calculates the Sounders Brown `K` factor as used in determining maximum permissible gas velocity in a two-phase separator in either a horizontal or vertical orientation, *with a demister*. This function is a curve fit to [1]_ published in [2]_ and is widely used. For 1 < P < 15 psia: .. math:: K = 0.1821 + 0.0029P + 0.0460\ln P For 15 <= P <= 40 psia: .. math:: K = 0.35 For P < 5500 psia: .. math:: K = 0.430 - 0.023\ln P In the above equations, P is in units of psia. Parameters ---------- P : float Pressure of separator, [Pa] horizontal : bool, optional Whether to use the vertical or horizontal value; horizontal is 1.25 times higher, [-] Returns ------- K : float Sounders Brown Horizontal or vertical `K` factor for two-phase separator design with a demister, [m/s] Notes ----- If the input pressure is under 1 psia, 1 psia is used. If the input pressure is over 5500 psia, 5500 psia is used. Examples -------- >>> K_separator_demister_York(975*psi) 0.08281536035331669 References ---------- .. [2] Otto H. York Company, "Mist Elimination in Gas Treatment Plants and Refineries," Engineering, Parsippany, NJ. .. [1] Svrcek, W. Y., and W. D. Monnery. "Design Two-Phase Separators within the Right Limits" Chemical Engineering Progress, (October 1, 1993): 53-60. ''' P = P/psi # Correlation in terms of psia if P < 15: if P < 1: P = 1 # Prevent negative K values, but as a consequence be # optimistic for K values; limit is 0.185 ft/s but real values # should probably be lower K = 0.1821 + 0.0029*P + 0.0460*log(P) elif P < 40: K = 0.35 else: if P > 5500: P = 5500 # Do not allow for lower K values above 5500 psia, as # the limit is stated to be 5500 K = 0.430 - 0.023*log(P) K *= foot # Converts units of ft/s to m/s; the graph and all fits are in ft/s if horizontal: # Watkins recommends a factor of 1.25 for horizontal separators over # vertical separators as well K *= 1.25 return K def v_Sounders_Brown(K, rhol, rhog): r'''Calculates the maximum allowable vapor velocity in a two-phase separator to permit separation between entrained droplets and the gas using an empirical `K` factor, named after Sounders and Brown [1]_. This is a simplifying expression for terminal velocity and drag on particles. .. math:: v_{max} = K_{SB} \sqrt{\frac{\rho_l-\rho_g}{\rho_g}} Parameters ---------- K : float Sounders Brown `K` factor for two-phase separator design, [m/s] rhol : float Density of liquid phase [kg/m^3] rhog : float Density of gas phase [kg/m^3] Returns ------- v_max : float Maximum allowable vapor velocity in a two-phase separator to permit separation between entrained droplets and the gas, [m/s] Notes ----- The Sounders Brown K factor is related to the terminal velocity as shown in the following expression. .. math:: v_{term} = v_{max} = \sqrt{\frac{4 g d_p (\rho_p-\rho_f)}{3 C_D \rho_f }} v_{term} = \sqrt{\frac{(\rho_p-\rho_f)}{\rho_f}} \sqrt{\frac{4 g d_p}{3 C_D}} v_{term} = K_{SB} \sqrt{\frac{4 g d_p}{3 C_D}} Note this form corresponds to the Newton's law range (Re > 500), but in reality droplets are normally in the intermediate or Stoke's law region [2]_. For this reason using the drag coefficient expression directly is cleaner, but identical results can be found with the Sounders Brown equation. Examples -------- >>> v_Sounders_Brown(K=0.08, rhol=985.4, rhog=1.3) 2.2010906387516167 References ---------- .. [1] Souders, Mott., and George Granger. Brown. "Design of Fractionating Columns I. Entrainment and Capacity." Industrial & Engineering Chemistry 26, no. 1 (January 1, 1934): 98-103. https://doi.org/10.1021/ie50289a025. .. [2] Vasude, Gael D. Ulrich and Palligarnai T. Chemical Engineering Process Design and Economics : A Practical Guide. 2nd edition. Durham, N.H: Process Publishing, 2004. ''' return K*sqrt((rhol - rhog)/rhog) def K_Sounders_Brown_theoretical(D, Cd, g=g): r'''Converts a known drag coefficient into a Sounders-Brown `K` factor for two-phase separator design. This factor is the traditional way for separator diameters to be obtained although it is unnecessary and the theoretical drag coefficient method can be used instead. .. math:: K_{SB} = \sqrt{\frac{(\rho_p-\rho_f)}{\rho_f}} = \sqrt{\frac{4 g d_p}{3 C_D}} Parameters ---------- D : float Design diameter of the droplets, [m] Cd : float Drag coefficient [-] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- K : float Sounders Brown `K` factor for two-phase separator design, [m/s] Notes ----- Drag coefficient is a function of velocity; so iteration is needed to obtain the most correct answer. The following example shows the use of iteration to obtain the final velocity: >>> from fluids import * >>> V = 2.0 >>> D = 150E-6 >>> rho = 1.3 >>> rhol = 700. >>> mu = 1E-5 >>> for i in range(10): ... Re = Reynolds(V=V, rho=rho, mu=mu, D=D) ... Cd = drag_sphere(Re) ... K = K_Sounders_Brown_theoretical(D=D, Cd=Cd) ... V = v_Sounders_Brown(K, rhol=rhol, rhog=rho) ... print('%.14f' %V) 0.76093307417658 0.56242939340131 0.50732895050696 0.48957142095508 0.48356021946899 0.48149076033622 0.48077414934614 0.48052549959141 0.48043916249756 0.48040917690193 The use of Sounders-Brown constants can be replaced as follows (the v_terminal method includes its own solver for terminal velocity): >>> from fluids.drag import v_terminal >>> v_terminal(D=D, rhop=rhol, rho=rho, mu=mu) 0.4803932186998 Examples -------- >>> K_Sounders_Brown_theoretical(D=150E-6, Cd=0.5) 0.06263114241333939 References ---------- .. [1] Svrcek, W. Y., and W. D. Monnery. "Design Two-Phase Separators within the Right Limits" Chemical Engineering Progress, (October 1, 1993): 53-60. ''' return sqrt((4.0/3.0)*g*D/(Cd)) fluids-1.0.22/fluids/friction.pyi0000644000175000017500000001301014302004506016223 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( List, Optional, Set, Tuple, Union, ) def Alshul_1952(Re: float, eD: float) -> float: ... def Avci_Karagoz_2009(Re: float, eD: float) -> float: ... def Barr_1981(Re: float, eD: float) -> float: ... def Blasius(Re: float) -> float: ... def Brkic_2011_1(Re: float, eD: float) -> float: ... def Brkic_2011_2(Re: float, eD: float) -> float: ... def Buzzelli_2008(Re: float, eD: float) -> float: ... def Chen_1979(Re: float, eD: float) -> float: ... def Churchill_1973(Re: float, eD: float) -> float: ... def Churchill_1977(Re: float, eD: float) -> float: ... def Clamond(Re: float, eD: float, fast: bool = ...) -> float: ... def Colebrook(Re: float, eD: float, tol: Optional[int] = ...) -> float: ... def Eck_1973(Re: float, eD: float) -> float: ... def Fang_2011(Re: float, eD: float) -> float: ... def Haaland(Re: float, eD: float) -> float: ... def Jain_1976(Re: float, eD: float) -> float: ... def Manadilli_1997(Re: float, eD: float) -> float: ... def Moody(Re: float, eD: float) -> float: ... def Papaevangelo_2010(Re: float, eD: float) -> float: ... def Prandtl_von_Karman_Nikuradse(Re: float) -> float: ... def Rao_Kumar_2007(Re: float, eD: float) -> float: ... def Romeo_2002(Re: float, eD: float) -> float: ... def Round_1980(Re: float, eD: float) -> float: ... def Serghides_1(Re: float, eD: float) -> float: ... def Serghides_2(Re: float, eD: float) -> float: ... def Shacham_1980(Re: float, eD: float) -> float: ... def Sonnad_Goudar_2006(Re: float, eD: float) -> float: ... def Swamee_Jain_1976(Re: float, eD: float) -> float: ... def Tsal_1989(Re: float, eD: float) -> float: ... def Wood_1966(Re: float, eD: float) -> float: ... def Zigrang_Sylvester_1(Re: float, eD: float) -> float: ... def Zigrang_Sylvester_2(Re: float, eD: float) -> float: ... def friction_factor( Re: float, eD: float = ..., Method: Optional[str] = ..., Darcy: bool = ... ) -> float: ... def friction_factor_curved( Re: float, Di: float, Dc: float, roughness: float = ..., Method: Optional[str] = ..., Rec_method: str = ..., laminar_method: str = ..., turbulent_method: str = ..., Darcy: bool = ... ) -> float: ... def friction_factor_curved_methods( Re: float, Di: float, Dc: float, roughness: float = ..., check_ranges: bool = ... ) -> List[str]: ... def friction_factor_methods(Re: float, eD: float = ..., check_ranges: bool = ...) -> List[str]: ... def friction_laminar(Re: float) -> float: ... def friction_plate_Kumar(Re: float, chevron_angle: float) -> float: ... def friction_plate_Martin_1999(Re: float, plate_enlargement_factor: float) -> float: ... def friction_plate_Martin_VDI(Re: float, plate_enlargement_factor: float) -> float: ... def friction_plate_Muley_Manglik(Re: float, chevron_angle: float, plate_enlargement_factor: float) -> float: ... def ft_Crane(D: float) -> float: ... def fuzzy_match(name: str, strings: Set[str]) -> str: ... def helical_Re_crit(Di: float, Dc: float, Method: str = ...) -> float: ... def helical_laminar_fd_Mori_Nakayama(Re: float, Di: float, Dc: float) -> float: ... def helical_laminar_fd_Schmidt(Re: float, Di: float, Dc: float) -> float: ... def helical_laminar_fd_White(Re: float, Di: float, Dc: float) -> float: ... def helical_transition_Re_Ito(Di: float, Dc: float) -> float: ... def helical_transition_Re_Kubair_Kuloor(Di: float, Dc: float) -> float: ... def helical_transition_Re_Kutateladze_Borishanskii(Di: float, Dc: float) -> float: ... def helical_transition_Re_Schmidt(Di: float, Dc: float) -> float: ... def helical_transition_Re_Seth_Stahel(Di: float, Dc: float) -> float: ... def helical_transition_Re_Srinivasan(Di: float, Dc: float) -> float: ... def helical_turbulent_fd_Czop(Re: float, Di: float, Dc: float) -> float: ... def helical_turbulent_fd_Guo(Re: float, Di: float, Dc: float) -> float: ... def helical_turbulent_fd_Ju(Re: float, Di: float, Dc: float, roughness: float = ...) -> float: ... def helical_turbulent_fd_Mandal_Nigam( Re: float, Di: float, Dc: float, roughness: float = ... ) -> float: ... def helical_turbulent_fd_Mori_Nakayama(Re: float, Di: float, Dc: float) -> float: ... def helical_turbulent_fd_Prasad( Re: float, Di: float, Dc: float, roughness: float = ... ) -> float: ... def helical_turbulent_fd_Schmidt( Re: float, Di: float, Dc: float, roughness: float = ... ) -> float: ... def helical_turbulent_fd_Srinivasan(Re: float, Di: float, Dc: float) -> float: ... def material_roughness(ID: str, D: Optional[float] = ..., optimism: Optional[bool] = ...) -> float: ... def nearest_material_roughness(name: str, clean: Optional[bool] = ...) -> str: ... def one_phase_dP( m: float, rho: float, mu: float, D: float, roughness: float = ..., L: float = ..., Method: None = ... ) -> float: ... def one_phase_dP_dz_acceleration(m: float, D: float, rho: float, dv_dP: float, dP_dL: float, dA_dL: float) -> float: ... def one_phase_dP_gravitational(angle: float, rho: float, L: float = ..., g: float = ...) -> float: ... def roughness_Farshad( ID: Optional[str] = ..., D: Optional[float] = ..., coeffs: Optional[Tuple[float, float]] = ... ) -> float: ... def transmission_factor(fd: Optional[float] = ..., F: Optional[float] = ...) -> float: ... def von_Karman(eD: float) -> float: ... __all__: List[str]fluids-1.0.22/fluids/packed_tower.pyi0000644000175000017500000000377514302004506017076 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( List, Tuple, Union, ) def Robbins(L: float, G: float, rhol: float, rhog: float, mul: float, H: float = ..., Fpd: float = ...) -> float: ... def Stichlmair_dry( Vg: float, rhog: float, mug: float, voidage: float, specific_area: float, C1: float, C2: float, C3: float, H: float = ... ) -> float: ... def Stichlmair_flood( Vl: float, rhog: float, rhol: float, mug: float, voidage: float, specific_area: float, C1: float, C2: float, C3: float, H: float = ... ) -> float: ... def Stichlmair_wet( Vg: float, Vl: float, rhog: float, rhol: float, mug: float, voidage: float, specific_area: float, C1: float, C2: float, C3: float, H: float = ... ) -> float: ... def _Stichlmair_flood_f_and_jac( inputs: List[float], Vl: float, rhog: float, rhol: float, mug: float, voidage: float, specific_area: float, C1: float, C2: float, C3: float, H: float ) -> Tuple[List[float], List[List[float]]]: ... def _Stichlmair_wet_err(dP_irr: float, h0: float, c1: float, dP_dry: float, H: float, voidage: float, c: float) -> float: ... def dP_demister_dry_Setekleiv_Svendsen( S: float, voidage: float, vs: float, rho: float, mu: float, L: float = ... ) -> float: ... def dP_demister_dry_Setekleiv_Svendsen_lit( S: float, voidage: float, vs: float, rho: float, mu: float, L: float = ... ) -> float: ... def dP_demister_wet_ElDessouky(vs: float, voidage: float, d_wire: float, L: float = ...) -> float: ... def separation_demister_ElDessouky(vs: float, voidage: float, d_wire: float, d_drop: float) -> float: ... def specific_area_mesh(voidage: float, d: float) -> float: ... def voidage_experimental(m: float, rho: float, D: float, H: float) -> float: ... __all__: List[str]fluids-1.0.22/fluids/core.pyi0000644000175000017500000001224214302004506015344 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( Optional, Union, ) def Archimedes(L: float, rhof: float, rhop: float, mu: float, g: float = ...) -> float: ... def Bejan_L(dP: float, L: float, mu: float, alpha: float) -> float: ... def Bejan_p(dP: float, K: float, mu: float, alpha: float) -> float: ... def Biot(h: float, L: float, k: float) -> float: ... def Boiling(G: float, q: float, Hvap: float) -> float: ... def Bond(rhol: float, rhog: float, sigma: float, L: float) -> float: ... def C2F(C: float) -> float: ... def C2K(C: float) -> float: ... def C2R(C: float) -> float: ... def Capillary(V: float, mu: float, sigma: float) -> float: ... def Cavitation(P: float, Psat: float, rho: float, V: float) -> float: ... def Confinement(D: float, rhol: float, rhog: float, sigma: float, g: float = ...) -> float: ... def Dean(Re: float, Di: float, D: float) -> float: ... def Drag(F: float, A: float, V: float, rho: float) -> float: ... def Eckert(V: float, Cp: float, dT: float) -> float: ... def Euler(dP: float, rho: float, V: float) -> float: ... def F2C(F: float) -> float: ... def F2K(F: float) -> float: ... def F2R(F: float) -> float: ... def Fourier_heat( t: float, L: float, rho: Optional[float] = ..., Cp: Optional[float] = ..., k: Optional[float] = ..., alpha: Optional[float] = ... ) -> float: ... def Fourier_mass(t: float, L: float, D: float) -> float: ... def Froude(V: float, L: float, g: float = ..., squared: bool = ...) -> float: ... def Froude_densimetric( V: float, L: float, rho1: float, rho2: float, heavy: bool = ..., g: float = ... ) -> float: ... def Graetz_heat( V: float, D: float, x: float, rho: Optional[float] = ..., Cp: Optional[float] = ..., k: Optional[float] = ..., alpha: Optional[float] = ... ) -> float: ... def Grashof( L: float, beta: float, T1: float, T2: float = ..., rho: Optional[float] = ..., mu: Optional[float] = ..., nu: Optional[float] = ..., g: float = ... ) -> float: ... def Hagen(Re: float, fd: float) -> float: ... def Jakob(Cp: float, Hvap: float, Te: float) -> float: ... def K2C(K: float) -> float: ... def K2F(K: float) -> float: ... def K2R(K: float) -> float: ... def K_from_L_equiv(L_D: float, fd: float = ...) -> float: ... def K_from_f(fd: float, L: float, D: float) -> float: ... def Knudsen(path: float, L: float) -> float: ... def L_equiv_from_K(K: float, fd: float = ...) -> float: ... def L_from_K(K: float, D: float, fd: float = ...) -> float: ... def Lewis( D: Optional[float] = ..., alpha: Optional[float] = ..., Cp: Optional[float] = ..., k: Optional[float] = ..., rho: Optional[float] = ... ) -> float: ... def Mach(V: float, c: float) -> float: ... def Morton(rhol: float, rhog: float, mul: float, sigma: float, g: float = ...) -> float: ... def Nusselt(h: float, L: float, k: float) -> float: ... def Ohnesorge(L: float, rho: float, mu: float, sigma: float) -> float: ... def P_from_head(head: float, rho: float, g: float = ...) -> float: ... def Peclet_heat( V: float, L: float, rho: Optional[float] = ..., Cp: Optional[float] = ..., k: Optional[float] = ..., alpha: Optional[float] = ... ) -> float: ... def Peclet_mass(V: float, L: float, D: float) -> float: ... def Power_number(P: float, L: float, N: float, rho: float) -> float: ... def Prandtl( Cp: Optional[float] = ..., k: Optional[float] = ..., mu: Optional[float] = ..., nu: Optional[float] = ..., rho: Optional[float] = ..., alpha: Optional[float] = ... ) -> float: ... def R2C(Ra: float) -> float: ... def R2F(Ra: float) -> float: ... def R2K(Ra: float) -> float: ... def Rayleigh(Pr: float, Gr: float) -> float: ... def Reynolds( V: float, D: float, rho: Optional[float] = ..., mu: Optional[float] = ..., nu: Optional[float] = ... ) -> float: ... def Schmidt(D: float, mu: Optional[float] = ..., nu: Optional[float] = ..., rho: Optional[float] = ...) -> float: ... def Sherwood(K: float, L: float, D: float) -> float: ... def Stanton(h: float, V: float, rho: float, Cp: float) -> float: ... def Stokes_number(V: float, Dp: float, D: float, rhop: float, mu: float) -> float: ... def Strouhal(f: float, L: float, V: float) -> float: ... def Suratman(L: float, rho: float, mu: float, sigma: float) -> float: ... def Weber(V: float, L: float, rho: float, sigma: float) -> float: ... def c_ideal_gas(T: float, k: float, MW: float) -> float: ... def dP_from_K(K: float, rho: float, V: float) -> float: ... def f_from_K(K: float, L: float, D: float) -> float: ... def gravity(latitude: float, H: float) -> float: ... def head_from_K(K: float, V: float, g: float = ...) -> float: ... def head_from_P(P: float, rho: float, g: float = ...) -> float: ... def nu_mu_converter(rho: float, mu: Optional[float] = ..., nu: Optional[float] = ...) -> float: ... def relative_roughness(D: float, roughness: float = ...) -> float: ... def thermal_diffusivity(k: float, rho: float, Cp: float) -> float: ... __all__: List[str]fluids-1.0.22/fluids/core.py0000644000175000017500000023071514302004506015202 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, 2017, 2018, 2019, 2020 Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains basic fluid mechanics and engineering calculations which have been found useful by the author. The main functionality is calculating dimensionless numbers, interconverting different forms of loss coefficients, and converting temperature units. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Dimensionless Numbers --------------------- .. autofunction:: Archimedes .. autofunction:: Bejan_L .. autofunction:: Bejan_p .. autofunction:: Biot .. autofunction:: Boiling .. autofunction:: Bond .. autofunction:: Capillary .. autofunction:: Cavitation .. autofunction:: Confinement .. autofunction:: Dean .. autofunction:: Drag .. autofunction:: Eckert .. autofunction:: Euler .. autofunction:: Fourier_heat .. autofunction:: Fourier_mass .. autofunction:: Froude .. autofunction:: Froude_densimetric .. autofunction:: Graetz_heat .. autofunction:: Grashof .. autofunction:: Hagen .. autofunction:: Jakob .. autofunction:: Knudsen .. autofunction:: Lewis .. autofunction:: Mach .. autofunction:: Morton .. autofunction:: Nusselt .. autofunction:: Ohnesorge .. autofunction:: Peclet_heat .. autofunction:: Peclet_mass .. autofunction:: Power_number .. autofunction:: Prandtl .. autofunction:: Rayleigh .. autofunction:: relative_roughness .. autofunction:: Reynolds .. autofunction:: Schmidt .. autofunction:: Sherwood .. autofunction:: Stanton .. autofunction:: Stokes_number .. autofunction:: Strouhal .. autofunction:: Suratman .. autofunction:: Weber Loss Coefficient Converters --------------------------- .. autofunction:: K_from_f .. autofunction:: K_from_L_equiv .. autofunction:: L_equiv_from_K .. autofunction:: L_from_K .. autofunction:: dP_from_K .. autofunction:: head_from_K .. autofunction:: head_from_P .. autofunction:: f_from_K .. autofunction:: P_from_head Temperature Conversions ----------------------- These functions used to be part of SciPy, but were removed in favor of a slower function `convert_temperature` which removes code duplication but doesn't have the same convenience or easy to remember signature. .. autofunction:: C2K .. autofunction:: K2C .. autofunction:: F2C .. autofunction:: C2F .. autofunction:: F2K .. autofunction:: K2F .. autofunction:: C2R .. autofunction:: K2R .. autofunction:: F2R .. autofunction:: R2C .. autofunction:: R2K .. autofunction:: R2F Miscellaneous Functions ----------------------- .. autofunction:: thermal_diffusivity .. autofunction:: c_ideal_gas .. autofunction:: nu_mu_converter .. autofunction:: gravity """ from __future__ import division ''' Additional copyright: The functions C2K, K2C, F2C, C2F, F2K, K2F, C2R, K2R, F2R, R2C, R2K, R2F were deprecated from scipy but are still wanted by fluids Taken from scipy/constants/constants.py as in commit https://github.com/scipy/scipy/commit/4b7d325cd50e8828b06d628e69426a18283dc5b5 Also from https://github.com/scipy/scipy/pull/5292 by Gillu13 (Gilles Aouizerate) They are copyright individual contributors to SciPy, under the BSD 3-Clause The license of scipy is as follows: Copyright (c) 2001-2002 Enthought, Inc. 2003-2019, SciPy Developers. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ''' from math import sqrt, sin, exp, pi, fabs, copysign from fluids.constants import g, R import sys __all__ = ['Reynolds', 'Prandtl', 'Grashof', 'Nusselt', 'Sherwood', 'Rayleigh', 'Schmidt', 'Peclet_heat', 'Peclet_mass', 'Fourier_heat', 'Fourier_mass', 'Graetz_heat', 'Lewis', 'Weber', 'Mach', 'Knudsen', 'Bond', 'Dean', 'Morton', 'Froude', 'Froude_densimetric', 'Strouhal', 'Biot', 'Stanton', 'Euler', 'Cavitation', 'Eckert', 'Jakob', 'Power_number', 'Stokes_number', 'Drag', 'Capillary', 'Bejan_L', 'Bejan_p', 'Boiling', 'Confinement', 'Archimedes', 'Ohnesorge', 'Suratman', 'Hagen', 'thermal_diffusivity', 'c_ideal_gas', 'relative_roughness', 'nu_mu_converter', 'gravity', 'K_from_f', 'K_from_L_equiv', 'L_equiv_from_K', 'L_from_K', 'dP_from_K', 'head_from_K', 'head_from_P', 'f_from_K', 'P_from_head', 'Eotvos', 'C2K', 'K2C', 'F2C', 'C2F', 'F2K', 'K2F', 'C2R', 'K2R', 'F2R', 'R2C', 'R2K', 'R2F', 'PY3', ] version_components = sys.version.split('.') PY_MAJOR, PY_MINOR = int(version_components[0]), int(version_components[1]) PY3 = PY_MAJOR >= 3 ### Not quite dimensionless groups def thermal_diffusivity(k, rho, Cp): r'''Calculates thermal diffusivity or `alpha` for a fluid with the given parameters. .. math:: \alpha = \frac{k}{\rho Cp} Parameters ---------- k : float Thermal conductivity, [W/m/K] rho : float Density, [kg/m^3] Cp : float Heat capacity, [J/kg/K] Returns ------- alpha : float Thermal diffusivity, [m^2/s] Notes ----- Examples -------- >>> thermal_diffusivity(k=0.02, rho=1., Cp=1000.) 2e-05 References ---------- .. [1] Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984. ''' return k/(rho*Cp) ### Ideal gas fluid properties def c_ideal_gas(T, k, MW): r'''Calculates speed of sound `c` in an ideal gas at temperature T. .. math:: c = \sqrt{kR_{specific}T} Parameters ---------- T : float Temperature of fluid, [K] k : float Isentropic exponent of fluid, [-] MW : float Molecular weight of fluid, [g/mol] Returns ------- c : float Speed of sound in fluid, [m/s] Notes ----- Used in compressible flow calculations. Note that the gas constant used is the specific gas constant: .. math:: R_{specific} = R\frac{1000}{MW} Examples -------- >>> c_ideal_gas(T=303, k=1.4, MW=28.96) 348.9820953185441 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' Rspecific = R*1000./MW return sqrt(k*Rspecific*T) ### Dimensionless groups with documentation def Reynolds(V, D, rho=None, mu=None, nu=None): r'''Calculates Reynolds number or `Re` for a fluid with the given properties for the specified velocity and diameter. .. math:: Re = \frac{D \cdot V}{\nu} = \frac{\rho V D}{\mu} Inputs either of any of the following sets: * V, D, density `rho` and dynamic viscosity `mu` * V, D, and kinematic viscosity `nu` Parameters ---------- V : float Velocity [m/s] D : float Diameter [m] rho : float, optional Density, [kg/m^3] mu : float, optional Dynamic viscosity, [Pa*s] nu : float, optional Kinematic viscosity, [m^2/s] Returns ------- Re : float Reynolds number [] Notes ----- .. math:: Re = \frac{\text{Momentum}}{\text{Viscosity}} An error is raised if none of the required input sets are provided. Examples -------- >>> Reynolds(2.5, 0.25, 1.1613, 1.9E-5) 38200.65789473684 >>> Reynolds(2.5, 0.25, nu=1.636e-05) 38202.93398533008 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' if rho is not None and mu is not None: nu = mu/rho elif nu is None: raise ValueError('Either density and viscosity, or dynamic viscosity, \ is needed') return V*D/nu def Peclet_heat(V, L, rho=None, Cp=None, k=None, alpha=None): r'''Calculates heat transfer Peclet number or `Pe` for a specified velocity `V`, characteristic length `L`, and specified properties for the given fluid. .. math:: Pe = \frac{VL\rho C_p}{k} = \frac{LV}{\alpha} Inputs either of any of the following sets: * V, L, density `rho`, heat capacity `Cp`, and thermal conductivity `k` * V, L, and thermal diffusivity `alpha` Parameters ---------- V : float Velocity [m/s] L : float Characteristic length [m] rho : float, optional Density, [kg/m^3] Cp : float, optional Heat capacity, [J/kg/K] k : float, optional Thermal conductivity, [W/m/K] alpha : float, optional Thermal diffusivity, [m^2/s] Returns ------- Pe : float Peclet number (heat) [] Notes ----- .. math:: Pe = \frac{\text{Bulk heat transfer}}{\text{Conduction heat transfer}} An error is raised if none of the required input sets are provided. Examples -------- >>> Peclet_heat(1.5, 2, 1000., 4000., 0.6) 20000000.0 >>> Peclet_heat(1.5, 2, alpha=1E-7) 30000000.0 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' if rho is not None and Cp is not None and k is not None: alpha = k/(rho*Cp) elif alpha is None: raise ValueError('Either heat capacity and thermal conductivity and\ density, or thermal diffusivity is needed') return V*L/alpha def Peclet_mass(V, L, D): r'''Calculates mass transfer Peclet number or `Pe` for a specified velocity `V`, characteristic length `L`, and diffusion coefficient `D`. .. math:: Pe = \frac{L V}{D} Parameters ---------- V : float Velocity [m/s] L : float Characteristic length [m] D : float Diffusivity of a species, [m^2/s] Returns ------- Pe : float Peclet number (mass) [] Notes ----- .. math:: Pe = \frac{\text{Advective transport rate}}{\text{Diffusive transport rate}} Examples -------- >>> Peclet_mass(1.5, 2, 1E-9) 3000000000.0 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. ''' return V*L/D def Fourier_heat(t, L, rho=None, Cp=None, k=None, alpha=None): r'''Calculates heat transfer Fourier number or `Fo` for a specified time `t`, characteristic length `L`, and specified properties for the given fluid. .. math:: Fo = \frac{k t}{C_p \rho L^2} = \frac{\alpha t}{L^2} Inputs either of any of the following sets: * t, L, density `rho`, heat capacity `Cp`, and thermal conductivity `k` * t, L, and thermal diffusivity `alpha` Parameters ---------- t : float time [s] L : float Characteristic length [m] rho : float, optional Density, [kg/m^3] Cp : float, optional Heat capacity, [J/kg/K] k : float, optional Thermal conductivity, [W/m/K] alpha : float, optional Thermal diffusivity, [m^2/s] Returns ------- Fo : float Fourier number (heat) [] Notes ----- .. math:: Fo = \frac{\text{Heat conduction rate}} {\text{Rate of thermal energy storage in a solid}} An error is raised if none of the required input sets are provided. Examples -------- >>> Fourier_heat(t=1.5, L=2, rho=1000., Cp=4000., k=0.6) 5.625e-08 >>> Fourier_heat(1.5, 2, alpha=1E-7) 3.75e-08 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' if rho is not None and Cp is not None and k is not None: alpha = k/(rho*Cp) elif alpha is None: raise ValueError('Either heat capacity and thermal conductivity and \ density, or thermal diffusivity is needed') return t*alpha/(L*L) def Fourier_mass(t, L, D): r'''Calculates mass transfer Fourier number or `Fo` for a specified time `t`, characteristic length `L`, and diffusion coefficient `D`. .. math:: Fo = \frac{D t}{L^2} Parameters ---------- t : float time [s] L : float Characteristic length [m] D : float Diffusivity of a species, [m^2/s] Returns ------- Fo : float Fourier number (mass) [] Notes ----- .. math:: Fo = \frac{\text{Diffusive transport rate}}{\text{Storage rate}} Examples -------- >>> Fourier_mass(t=1.5, L=2, D=1E-9) 3.7500000000000005e-10 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. ''' return t*D/(L*L) def Graetz_heat(V, D, x, rho=None, Cp=None, k=None, alpha=None): r'''Calculates Graetz number or `Gz` for a specified velocity `V`, diameter `D`, axial distance `x`, and specified properties for the given fluid. .. math:: Gz = \frac{VD^2\cdot C_p \rho}{x\cdot k} = \frac{VD^2}{x \alpha} Inputs either of any of the following sets: * V, D, x, density `rho`, heat capacity `Cp`, and thermal conductivity `k` * V, D, x, and thermal diffusivity `alpha` Parameters ---------- V : float Velocity, [m/s] D : float Diameter [m] x : float Axial distance [m] rho : float, optional Density, [kg/m^3] Cp : float, optional Heat capacity, [J/kg/K] k : float, optional Thermal conductivity, [W/m/K] alpha : float, optional Thermal diffusivity, [m^2/s] Returns ------- Gz : float Graetz number [] Notes ----- .. math:: Gz = \frac{\text{Time for radial heat diffusion in a fluid by conduction}} {\text{Time taken by fluid to reach distance x}} .. math:: Gz = \frac{D}{x}RePr An error is raised if none of the required input sets are provided. Examples -------- >>> Graetz_heat(1.5, 0.25, 5, 800., 2200., 0.6) 55000.0 >>> Graetz_heat(1.5, 0.25, 5, alpha=1E-7) 187500.0 References ---------- .. [1] Bergman, Theodore L., Adrienne S. Lavine, Frank P. Incropera, and David P. DeWitt. Introduction to Heat Transfer. 6E. Hoboken, NJ: Wiley, 2011. ''' if rho is not None and Cp is not None and k is not None: alpha = k/(rho*Cp) elif alpha is None: raise ValueError('Either heat capacity and thermal conductivity and\ density, or thermal diffusivity is needed') return V*D*D/(x*alpha) def Schmidt(D, mu=None, nu=None, rho=None): r'''Calculates Schmidt number or `Sc` for a fluid with the given parameters. .. math:: Sc = \frac{\mu}{D\rho} = \frac{\nu}{D} Inputs can be any of the following sets: * Diffusivity, dynamic viscosity, and density * Diffusivity and kinematic viscosity Parameters ---------- D : float Diffusivity of a species, [m^2/s] mu : float, optional Dynamic viscosity, [Pa*s] nu : float, optional Kinematic viscosity, [m^2/s] rho : float, optional Density, [kg/m^3] Returns ------- Sc : float Schmidt number [] Notes ----- .. math:: Sc =\frac{\text{kinematic viscosity}}{\text{molecular diffusivity}} = \frac{\text{viscous diffusivity}}{\text{species diffusivity}} An error is raised if none of the required input sets are provided. Examples -------- >>> Schmidt(D=2E-6, mu=4.61E-6, rho=800) 0.00288125 >>> Schmidt(D=1E-9, nu=6E-7) 599.9999999999999 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' if rho is not None and mu is not None: return mu/(rho*D) elif nu is not None: return nu/D else: raise ValueError('Insufficient information provided for Schmidt number calculation') def Lewis(D=None, alpha=None, Cp=None, k=None, rho=None): r'''Calculates Lewis number or `Le` for a fluid with the given parameters. .. math:: Le = \frac{k}{\rho C_p D} = \frac{\alpha}{D} Inputs can be either of the following sets: * Diffusivity and Thermal diffusivity * Diffusivity, heat capacity, thermal conductivity, and density Parameters ---------- D : float Diffusivity of a species, [m^2/s] alpha : float, optional Thermal diffusivity, [m^2/s] Cp : float, optional Heat capacity, [J/kg/K] k : float, optional Thermal conductivity, [W/m/K] rho : float, optional Density, [kg/m^3] Returns ------- Le : float Lewis number [] Notes ----- .. math:: Le=\frac{\text{Thermal diffusivity}}{\text{Mass diffusivity}} = \frac{Sc}{Pr} An error is raised if none of the required input sets are provided. Examples -------- >>> Lewis(D=22.6E-6, alpha=19.1E-6) 0.8451327433628318 >>> Lewis(D=22.6E-6, rho=800., k=.2, Cp=2200) 0.00502815768302494 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. .. [3] Gesellschaft, V. D. I., ed. VDI Heat Atlas. 2nd edition. Berlin; New York:: Springer, 2010. ''' if k is not None and Cp is not None and rho is not None: alpha = k/(rho*Cp) elif alpha is None: raise ValueError('Insufficient information provided for Le calculation') return alpha/D def Weber(V, L, rho, sigma): r'''Calculates Weber number, `We`, for a fluid with the given density, surface tension, velocity, and geometric parameter (usually diameter of bubble). .. math:: We = \frac{V^2 L\rho}{\sigma} Parameters ---------- V : float Velocity of fluid, [m/s] L : float Characteristic length, typically bubble diameter [m] rho : float Density of fluid, [kg/m^3] sigma : float Surface tension, [N/m] Returns ------- We : float Weber number [] Notes ----- Used in bubble calculations. .. math:: We = \frac{\text{inertial force}}{\text{surface tension force}} Examples -------- >>> Weber(V=0.18, L=0.001, rho=900., sigma=0.01) 2.916 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. .. [3] Gesellschaft, V. D. I., ed. VDI Heat Atlas. 2nd edition. Berlin; New York:: Springer, 2010. ''' return V*V*L*rho/sigma def Mach(V, c): r'''Calculates Mach number or `Ma` for a fluid of velocity `V` with speed of sound `c`. .. math:: Ma = \frac{V}{c} Parameters ---------- V : float Velocity of fluid, [m/s] c : float Speed of sound in fluid, [m/s] Returns ------- Ma : float Mach number [] Notes ----- Used in compressible flow calculations. .. math:: Ma = \frac{\text{fluid velocity}}{\text{sonic velocity}} Examples -------- >>> Mach(33., 330) 0.1 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return V/c def Confinement(D, rhol, rhog, sigma, g=g): r'''Calculates Confinement number or `Co` for a fluid in a channel of diameter `D` with liquid and gas densities `rhol` and `rhog` and surface tension `sigma`, under the influence of gravitational force `g`. .. math:: \text{Co}=\frac{\left[\frac{\sigma}{g(\rho_l-\rho_g)}\right]^{0.5}}{D} Parameters ---------- D : float Diameter of channel, [m] rhol : float Density of liquid phase, [kg/m^3] rhog : float Density of gas phase, [kg/m^3] sigma : float Surface tension between liquid-gas phase, [N/m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- Co : float Confinement number [-] Notes ----- Used in two-phase pressure drop and heat transfer correlations. First used in [1]_ according to [3]_. .. math:: \text{Co} = \frac{\frac{\text{surface tension force}} {\text{buoyancy force}}}{\text{Channel area}} Examples -------- >>> Confinement(0.001, 1077, 76.5, 4.27E-3) 0.6596978265315191 References ---------- .. [1] Cornwell, Keith, and Peter A. Kew. "Boiling in Small Parallel Channels." In Energy Efficiency in Process Technology, edited by Dr P. A. Pilavachi, 624-638. Springer Netherlands, 1993. doi:10.1007/978-94-011-1454-7_56. .. [2] Kandlikar, Satish G. Heat Transfer and Fluid Flow in Minichannels and Microchannels. Elsevier, 2006. .. [3] Tran, T. N, M. -C Chyu, M. W Wambsganss, and D. M France. Two-Phase Pressure Drop of Refrigerants during Flow Boiling in Small Channels: An Experimental Investigation and Correlation Development." International Journal of Multiphase Flow 26, no. 11 (November 1, 2000): 1739-54. doi:10.1016/S0301-9322(99)00119-6. ''' return sqrt(sigma/(g*(rhol-rhog)))/D def Morton(rhol, rhog, mul, sigma, g=g): r'''Calculates Morton number or `Mo` for a liquid and vapor with the specified properties, under the influence of gravitational force `g`. .. math:: Mo = \frac{g \mu_l^4(\rho_l - \rho_g)}{\rho_l^2 \sigma^3} Parameters ---------- rhol : float Density of liquid phase, [kg/m^3] rhog : float Density of gas phase, [kg/m^3] mul : float Viscosity of liquid phase, [Pa*s] sigma : float Surface tension between liquid-gas phase, [N/m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- Mo : float Morton number, [-] Notes ----- Used in modeling bubbles in liquid. Examples -------- >>> Morton(1077.0, 76.5, 4.27E-3, 0.023) 2.311183104430743e-07 References ---------- .. [1] Kunes, Josef. Dimensionless Physical Quantities in Science and Engineering. Elsevier, 2012. .. [2] Yan, Xiaokang, Kaixin Zheng, Yan Jia, Zhenyong Miao, Lijun Wang, Yijun Cao, and Jiongtian Liu. “Drag Coefficient Prediction of a Single Bubble Rising in Liquids.†Industrial & Engineering Chemistry Research, April 2, 2018. https://doi.org/10.1021/acs.iecr.7b04743. ''' mul2 = mul*mul return g*mul2*mul2*(rhol - rhog)/(rhol*rhol*sigma*sigma*sigma) def Knudsen(path, L): r'''Calculates Knudsen number or `Kn` for a fluid with mean free path `path` and for a characteristic length `L`. .. math:: Kn = \frac{\lambda}{L} Parameters ---------- path : float Mean free path between molecular collisions, [m] L : float Characteristic length, [m] Returns ------- Kn : float Knudsen number [] Notes ----- Used in mass transfer calculations. .. math:: Kn = \frac{\text{Mean free path length}}{\text{Characteristic length}} Examples -------- >>> Knudsen(1e-10, .001) 1e-07 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return path/L def Prandtl(Cp=None, k=None, mu=None, nu=None, rho=None, alpha=None): r'''Calculates Prandtl number or `Pr` for a fluid with the given parameters. .. math:: Pr = \frac{C_p \mu}{k} = \frac{\nu}{\alpha} = \frac{C_p \rho \nu}{k} Inputs can be any of the following sets: * Heat capacity, dynamic viscosity, and thermal conductivity * Thermal diffusivity and kinematic viscosity * Heat capacity, kinematic viscosity, thermal conductivity, and density Parameters ---------- Cp : float Heat capacity, [J/kg/K] k : float Thermal conductivity, [W/m/K] mu : float, optional Dynamic viscosity, [Pa*s] nu : float, optional Kinematic viscosity, [m^2/s] rho : float Density, [kg/m^3] alpha : float Thermal diffusivity, [m^2/s] Returns ------- Pr : float Prandtl number [] Notes ----- .. math:: Pr=\frac{\text{kinematic viscosity}}{\text{thermal diffusivity}} = \frac{\text{momentum diffusivity}}{\text{thermal diffusivity}} An error is raised if none of the required input sets are provided. Examples -------- >>> Prandtl(Cp=1637., k=0.010, mu=4.61E-6) 0.754657 >>> Prandtl(Cp=1637., k=0.010, nu=6.4E-7, rho=7.1) 0.7438528 >>> Prandtl(nu=6.3E-7, alpha=9E-7) 0.7000000000000001 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. .. [3] Gesellschaft, V. D. I., ed. VDI Heat Atlas. 2nd edition. Berlin; New York:: Springer, 2010. ''' if k is not None and Cp is not None and mu is not None: return Cp*mu/k elif nu is not None and rho is not None and Cp is not None and k is not None: return nu*rho*Cp/k elif nu is not None and alpha is not None: return nu/alpha else: raise ValueError('Insufficient information provided for Pr calculation') def Grashof(L, beta, T1, T2=0, rho=None, mu=None, nu=None, g=g): r'''Calculates Grashof number or `Gr` for a fluid with the given properties, temperature difference, and characteristic length. .. math:: Gr = \frac{g\beta (T_s-T_\infty)L^3}{\nu^2} = \frac{g\beta (T_s-T_\infty)L^3\rho^2}{\mu^2} Inputs either of any of the following sets: * L, beta, T1 and T2, and density `rho` and kinematic viscosity `mu` * L, beta, T1 and T2, and dynamic viscosity `nu` Parameters ---------- L : float Characteristic length [m] beta : float Volumetric thermal expansion coefficient [1/K] T1 : float Temperature 1, usually a film temperature [K] T2 : float, optional Temperature 2, usually a bulk temperature (or 0 if only a difference is provided to the function) [K] rho : float, optional Density, [kg/m^3] mu : float, optional Dynamic viscosity, [Pa*s] nu : float, optional Kinematic viscosity, [m^2/s] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- Gr : float Grashof number [] Notes ----- .. math:: Gr = \frac{\text{Buoyancy forces}}{\text{Viscous forces}} An error is raised if none of the required input sets are provided. Used in free convection problems only. Examples -------- Example 4 of [1]_, p. 1-21 (matches): >>> Grashof(L=0.9144, beta=0.000933, T1=178.2, rho=1.1613, mu=1.9E-5) 4656936556.178915 >>> Grashof(L=0.9144, beta=0.000933, T1=378.2, T2=200, nu=1.636e-05) 4657491516.530312 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' if rho is not None and mu is not None: nu = mu/rho elif nu is None: raise ValueError('Either density and viscosity, or dynamic viscosity, \ is needed') return g*beta*abs(T2-T1)*L*L*L/(nu*nu) def Bond(rhol, rhog, sigma, L): r'''Calculates Bond number, `Bo` also known as Eotvos number, for a fluid with the given liquid and gas densities, surface tension, and geometric parameter (usually length). .. math:: Bo = \frac{g(\rho_l-\rho_g)L^2}{\sigma} Parameters ---------- rhol : float Density of liquid, [kg/m^3] rhog : float Density of gas, [kg/m^3] sigma : float Surface tension, [N/m] L : float Characteristic length, [m] Returns ------- Bo : float Bond number [] Examples -------- >>> Bond(1000., 1.2, .0589, 2) 665187.2339558573 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. ''' return (g*(rhol-rhog)*L*L/sigma) Eotvos = Bond def Rayleigh(Pr, Gr): r'''Calculates Rayleigh number or `Ra` using Prandtl number `Pr` and Grashof number `Gr` for a fluid with the given properties, temperature difference, and characteristic length used to calculate `Gr` and `Pr`. .. math:: Ra = PrGr Parameters ---------- Pr : float Prandtl number [] Gr : float Grashof number [] Returns ------- Ra : float Rayleigh number [] Notes ----- Used in free convection problems only. Examples -------- >>> Rayleigh(1.2, 4.6E9) 5520000000.0 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return Pr*Gr def Froude(V, L, g=g, squared=False): r'''Calculates Froude number `Fr` for velocity `V` and geometric length `L`. If desired, gravity can be specified as well. Normally the function returns the result of the equation below; Froude number is also often said to be defined as the square of the equation below. .. math:: Fr = \frac{V}{\sqrt{gL}} Parameters ---------- V : float Velocity of the particle or fluid, [m/s] L : float Characteristic length, no typical definition [m] g : float, optional Acceleration due to gravity, [m/s^2] squared : bool, optional Whether to return the squared form of Froude number Returns ------- Fr : float Froude number, [-] Notes ----- Many alternate definitions including density ratios have been used. .. math:: Fr = \frac{\text{Inertial Force}}{\text{Gravity Force}} Examples -------- >>> Froude(1.83, L=2., g=1.63) 1.0135432593877318 >>> Froude(1.83, L=2., squared=True) 0.17074638128208924 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' Fr = V/sqrt(L*g) if squared: Fr *= Fr return Fr def Froude_densimetric(V, L, rho1, rho2, heavy=True, g=g): r'''Calculates the densimetric Froude number :math:`Fr_{den}` for velocity `V` geometric length `L`, heavier fluid density `rho1`, and lighter fluid density `rho2`. If desired, gravity can be specified as well. Depending on the application, this dimensionless number may be defined with the heavy phase or the light phase density in the numerator of the square root. For some applications, both need to be calculated. The default is to calculate with the heavy liquid ensity on top; set `heavy` to False to reverse this. .. math:: Fr = \frac{V}{\sqrt{gL}} \sqrt{\frac{\rho_\text{(1 or 2)}} {\rho_1 - \rho_2}} Parameters ---------- V : float Velocity of the specified phase, [m/s] L : float Characteristic length, no typical definition [m] rho1 : float Density of the heavier phase, [kg/m^3] rho2 : float Density of the lighter phase, [kg/m^3] heavy : bool, optional Whether or not the density used in the numerator is the heavy phase or the light phase, [-] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- Fr_den : float Densimetric Froude number, [-] Notes ----- Many alternate definitions including density ratios have been used. .. math:: Fr = \frac{\text{Inertial Force}}{\text{Gravity Force}} Where the gravity force is reduced by the relative densities of one fluid in another. Note that an Exception will be raised if rho1 > rho2, as the square root becomes negative. Examples -------- >>> Froude_densimetric(1.83, L=2., rho1=800, rho2=1.2, g=9.81) 0.4134543386272418 >>> Froude_densimetric(1.83, L=2., rho1=800, rho2=1.2, g=9.81, heavy=False) 0.016013017679205096 References ---------- .. [1] Hall, A, G Stobie, and R Steven. "Further Evaluation of the Performance of Horizontally Installed Orifice Plate and Cone Differential Pressure Meters with Wet Gas Flows." In International SouthEast Asia Hydrocarbon Flow Measurement Workshop, KualaLumpur, Malaysia, 2008. ''' if heavy: rho3 = rho1 else: rho3 = rho2 return V/(sqrt(g*L))*sqrt(rho3/(rho1 - rho2)) def Strouhal(f, L, V): r'''Calculates Strouhal number `St` for a characteristic frequency `f`, characteristic length `L`, and velocity `V`. .. math:: St = \frac{fL}{V} Parameters ---------- f : float Characteristic frequency, usually that of vortex shedding, [Hz] L : float Characteristic length, [m] V : float Velocity of the fluid, [m/s] Returns ------- St : float Strouhal number, [-] Notes ----- Sometimes abbreviated to S or Sr. .. math:: St = \frac{\text{Characteristic flow time}} {\text{Period of oscillation}} Examples -------- >>> Strouhal(8, 2., 4.) 4.0 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return f*L/V def Nusselt(h, L, k): r'''Calculates Nusselt number `Nu` for a heat transfer coefficient `h`, characteristic length `L`, and thermal conductivity `k`. .. math:: Nu = \frac{hL}{k} Parameters ---------- h : float Heat transfer coefficient, [W/m^2/K] L : float Characteristic length, no typical definition [m] k : float Thermal conductivity of fluid [W/m/K] Returns ------- Nu : float Nusselt number, [-] Notes ----- Do not confuse k, the thermal conductivity of the fluid, with that of within a solid object associated with! .. math:: Nu = \frac{\text{Convective heat transfer}} {\text{Conductive heat transfer}} Examples -------- >>> Nusselt(1000., 1.2, 300.) 4.0 >>> Nusselt(10000., .01, 4000.) 0.025 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Bergman, Theodore L., Adrienne S. Lavine, Frank P. Incropera, and David P. DeWitt. Introduction to Heat Transfer. 6E. Hoboken, NJ: Wiley, 2011. ''' return h*L/k def Sherwood(K, L, D): r'''Calculates Sherwood number `Sh` for a mass transfer coefficient `K`, characteristic length `L`, and diffusivity `D`. .. math:: Sh = \frac{KL}{D} Parameters ---------- K : float Mass transfer coefficient, [m/s] L : float Characteristic length, no typical definition [m] D : float Diffusivity of a species [m/s^2] Returns ------- Sh : float Sherwood number, [-] Notes ----- .. math:: Sh = \frac{\text{Mass transfer by convection}} {\text{Mass transfer by diffusion}} = \frac{K}{D/L} Examples -------- >>> Sherwood(1000., 1.2, 300.) 4.0 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. ''' return K*L/D def Biot(h, L, k): r'''Calculates Biot number `Br` for heat transfer coefficient `h`, geometric length `L`, and thermal conductivity `k`. .. math:: Bi=\frac{hL}{k} Parameters ---------- h : float Heat transfer coefficient, [W/m^2/K] L : float Characteristic length, no typical definition [m] k : float Thermal conductivity, within the object [W/m/K] Returns ------- Bi : float Biot number, [-] Notes ----- Do not confuse k, the thermal conductivity within the object, with that of the medium h is calculated with! .. math:: Bi = \frac{\text{Surface thermal resistance}} {\text{Internal thermal resistance}} Examples -------- >>> Biot(1000., 1.2, 300.) 4.0 >>> Biot(10000., .01, 4000.) 0.025 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return h*L/k def Stanton(h, V, rho, Cp): r'''Calculates Stanton number or `St` for a specified heat transfer coefficient `h`, velocity `V`, density `rho`, and heat capacity `Cp` [1]_ [2]_. .. math:: St = \frac{h}{V\rho Cp} Parameters ---------- h : float Heat transfer coefficient, [W/m^2/K] V : float Velocity, [m/s] rho : float Density, [kg/m^3] Cp : float Heat capacity, [J/kg/K] Returns ------- St : float Stanton number [] Notes ----- .. math:: St = \frac{\text{Heat transfer coefficient}}{\text{Thermal capacity}} Examples -------- >>> Stanton(5000, 5, 800, 2000.) 0.000625 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Bergman, Theodore L., Adrienne S. Lavine, Frank P. Incropera, and David P. DeWitt. Introduction to Heat Transfer. 6E. Hoboken, NJ: Wiley, 2011. ''' return h/(V*rho*Cp) def Euler(dP, rho, V): r'''Calculates Euler number or `Eu` for a fluid of velocity `V` and density `rho` experiencing a pressure drop `dP`. .. math:: Eu = \frac{\Delta P}{\rho V^2} Parameters ---------- dP : float Pressure drop experience by the fluid, [Pa] rho : float Density of the fluid, [kg/m^3] V : float Velocity of fluid, [m/s] Returns ------- Eu : float Euler number [] Notes ----- Used in pressure drop calculations. Rarely, this number is divided by two. Named after Leonhard Euler applied calculus to fluid dynamics. .. math:: Eu = \frac{\text{Pressure drop}}{2\cdot \text{velocity head}} Examples -------- >>> Euler(1E5, 1000., 4) 6.25 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return dP/(rho*V*V) def Cavitation(P, Psat, rho, V): r'''Calculates Cavitation number or `Ca` for a fluid of velocity `V` with a pressure `P`, vapor pressure `Psat`, and density `rho`. .. math:: Ca = \sigma_c = \sigma = \frac{P-P_{sat}}{\frac{1}{2}\rho V^2} Parameters ---------- P : float Internal pressure of the fluid, [Pa] Psat : float Vapor pressure of the fluid, [Pa] rho : float Density of the fluid, [kg/m^3] V : float Velocity of fluid, [m/s] Returns ------- Ca : float Cavitation number [] Notes ----- Used in determining if a flow through a restriction will cavitate. Sometimes, the multiplication by 2 will be omitted; .. math:: Ca = \frac{\text{Pressure - Vapor pressure}} {\text{Inertial pressure}} Examples -------- >>> Cavitation(2E5, 1E4, 1000, 10) 3.8 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return (P-Psat)/(0.5*rho*V*V) def Eckert(V, Cp, dT): r'''Calculates Eckert number or `Ec` for a fluid of velocity `V` with a heat capacity `Cp`, between two temperature given as `dT`. .. math:: Ec = \frac{V^2}{C_p \Delta T} Parameters ---------- V : float Velocity of fluid, [m/s] Cp : float Heat capacity of the fluid, [J/kg/K] dT : float Temperature difference, [K] Returns ------- Ec : float Eckert number [] Notes ----- Used in certain heat transfer calculations. Fairly rare. .. math:: Ec = \frac{\text{Kinetic energy} }{ \text{Enthalpy difference}} Examples -------- >>> Eckert(10, 2000., 25.) 0.002 References ---------- .. [1] Goldstein, Richard J. ECKERT NUMBER. Thermopedia. Hemisphere, 2011. 10.1615/AtoZ.e.eckert_number ''' return V*V/(Cp*dT) def Jakob(Cp, Hvap, Te): r'''Calculates Jakob number or `Ja` for a boiling fluid with sensible heat capacity `Cp`, enthalpy of vaporization `Hvap`, and boiling at `Te` degrees above its saturation boiling point. .. math:: Ja = \frac{C_{P}\Delta T_e}{\Delta H_{vap}} Parameters ---------- Cp : float Heat capacity of the fluid, [J/kg/K] Hvap : float Enthalpy of vaporization of the fluid at its saturation temperature [J/kg] Te : float Temperature difference above the fluid's saturation boiling temperature, [K] Returns ------- Ja : float Jakob number [] Notes ----- Used in boiling heat transfer analysis. Fairly rare. .. math:: Ja = \frac{\Delta \text{Sensible heat}}{\Delta \text{Latent heat}} Examples -------- >>> Jakob(4000., 2E6, 10.) 0.02 References ---------- .. [1] Bergman, Theodore L., Adrienne S. Lavine, Frank P. Incropera, and David P. DeWitt. Introduction to Heat Transfer. 6E. Hoboken, NJ: Wiley, 2011. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return Cp*Te/Hvap def Power_number(P, L, N, rho): r'''Calculates power number, `Po`, for an agitator applying a specified power `P` with a characteristic length `L`, rotational speed `N`, to a fluid with a specified density `rho`. .. math:: Po = \frac{P}{\rho N^3 D^5} Parameters ---------- P : float Power applied, [W] L : float Characteristic length, typically agitator diameter [m] N : float Speed [revolutions/second] rho : float Density of fluid, [kg/m^3] Returns ------- Po : float Power number [] Notes ----- Used in mixing calculations. .. math:: Po = \frac{\text{Power}}{\text{Rotational inertia}} Examples -------- >>> Power_number(P=180, L=0.01, N=2.5, rho=800.) 144000000.0 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return P/(rho*N*N*N*L**5) def Drag(F, A, V, rho): r'''Calculates drag coefficient `Cd` for a given drag force `F`, projected area `A`, characteristic velocity `V`, and density `rho`. .. math:: C_D = \frac{F_d}{A\cdot\frac{1}{2}\rho V^2} Parameters ---------- F : float Drag force, [N] A : float Projected area, [m^2] V : float Characteristic velocity, [m/s] rho : float Density, [kg/m^3] Returns ------- Cd : float Drag coefficient, [-] Notes ----- Used in flow around objects, or objects flowing within a fluid. .. math:: C_D = \frac{\text{Drag forces}}{\text{Projected area}\cdot \text{Velocity head}} Examples -------- >>> Drag(1000, 0.0001, 5, 2000) 400.0 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return F/(0.5*A*rho*V*V) def Stokes_number(V, Dp, D, rhop, mu): r'''Calculates Stokes Number for a given characteristic velocity `V`, particle diameter `Dp`, characteristic diameter `D`, particle density `rhop`, and fluid viscosity `mu`. .. math:: \text{Stk} = \frac{\rho_p V D_p^2}{18\mu_f D} Parameters ---------- V : float Characteristic velocity (often superficial), [m/s] Dp : float Particle diameter, [m] D : float Characteristic diameter (ex demister wire diameter or cyclone diameter), [m] rhop : float Particle density, [kg/m^3] mu : float Fluid viscosity, [Pa*s] Returns ------- Stk : float Stokes numer, [-] Notes ----- Used in droplet impaction or collection studies. Examples -------- >>> Stokes_number(V=0.9, Dp=1E-5, D=1E-3, rhop=1000, mu=1E-5) 0.5 References ---------- .. [1] Rhodes, Martin J. Introduction to Particle Technology. Wiley, 2013. .. [2] Al-Dughaither, Abdullah S., Ahmed A. Ibrahim, and Waheed A. Al-Masry. "Investigating Droplet Separation Efficiency in Wire-Mesh Mist Eliminators in Bubble Column." Journal of Saudi Chemical Society 14, no. 4 (October 1, 2010): 331-39. https://doi.org/10.1016/j.jscs.2010.04.001. ''' return rhop*V*(Dp*Dp)/(18.0*mu*D) def Capillary(V, mu, sigma): r'''Calculates Capillary number `Ca` for a characteristic velocity `V`, viscosity `mu`, and surface tension `sigma`. .. math:: Ca = \frac{V \mu}{\sigma} Parameters ---------- V : float Characteristic velocity, [m/s] mu : float Dynamic viscosity, [Pa*s] sigma : float Surface tension, [N/m] Returns ------- Ca : float Capillary number, [-] Notes ----- Used in porous media calculations and film flow calculations. Surface tension may gas-liquid, or liquid-liquid. .. math:: Ca = \frac{\text{Viscous forces}} {\text{Surface forces}} Examples -------- >>> Capillary(1.2, 0.01, .1) 0.12 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Kundu, Pijush K., Ira M. Cohen, and David R. Dowling. Fluid Mechanics. Academic Press, 2012. ''' return V*mu/sigma def Archimedes(L, rhof, rhop, mu, g=g): r'''Calculates Archimedes number, `Ar`, for a fluid and particle with the given densities, characteristic length, viscosity, and gravity (usually diameter of particle). .. math:: Ar = \frac{L^3 \rho_f(\rho_p-\rho_f)g}{\mu^2} Parameters ---------- L : float Characteristic length, typically particle diameter [m] rhof : float Density of fluid, [kg/m^3] rhop : float Density of particle, [kg/m^3] mu : float Viscosity of fluid, [N/m] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- Ar : float Archimedes number [] Notes ----- Used in fluid-particle interaction calculations. .. math:: Ar = \frac{\text{Gravitational force}}{\text{Viscous force}} Examples -------- >>> Archimedes(0.002, 2., 3000, 1E-3) 470.4053872 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return L*L*L*rhof*(rhop-rhof)*g/(mu*mu) def Ohnesorge(L, rho, mu, sigma): r'''Calculates Ohnesorge number, `Oh`, for a fluid with the given characteristic length, density, viscosity, and surface tension. .. math:: \text{Oh} = \frac{\mu}{\sqrt{\rho \sigma L }} Parameters ---------- L : float Characteristic length [m] rho : float Density of fluid, [kg/m^3] mu : float Viscosity of fluid, [Pa*s] sigma : float Surface tension, [N/m] Returns ------- Oh : float Ohnesorge number [] Notes ----- Often used in spray calculations. Sometimes given the symbol Z. .. math:: Oh = \frac{\sqrt{\text{We}}}{\text{Re}}= \frac{\text{viscous forces}} {\sqrt{\text{Inertia}\cdot\text{Surface tension}} } Examples -------- >>> Ohnesorge(1E-4, 1000., 1E-3, 1E-1) 0.01 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. ''' return mu/sqrt(L*rho*sigma) def Suratman(L, rho, mu, sigma): r'''Calculates Suratman number, `Su`, for a fluid with the given characteristic length, density, viscosity, and surface tension. .. math:: \text{Su} = \frac{\rho\sigma L}{\mu^2} Parameters ---------- L : float Characteristic length [m] rho : float Density of fluid, [kg/m^3] mu : float Viscosity of fluid, [Pa*s] sigma : float Surface tension, [N/m] Returns ------- Su : float Suratman number [] Notes ----- Also known as Laplace number. Used in two-phase flow, especially the bubbly-slug regime. No confusion regarding the definition of this group has been observed. .. math:: \text{Su} = \frac{\text{Re}^2}{\text{We}} =\frac{\text{Inertia}\cdot \text{Surface tension} }{\text{(viscous forces)}^2} The oldest reference to this group found by the author is in 1963, from [2]_. Examples -------- >>> Suratman(1E-4, 1000., 1E-3, 1E-1) 10000.0 References ---------- .. [1] Sen, Nilava. "Suratman Number in Bubble-to-Slug Flow Pattern Transition under Microgravity." Acta Astronautica 65, no. 3-4 (August 2009): 423-28. doi:10.1016/j.actaastro.2009.02.013. .. [2] Catchpole, John P., and George. Fulford. "DIMENSIONLESS GROUPS." Industrial & Engineering Chemistry 58, no. 3 (March 1, 1966): 46-60. doi:10.1021/ie50675a012. ''' return rho*sigma*L/(mu*mu) def Hagen(Re, fd): r'''Calculates Hagen number, `Hg`, for a fluid with the given Reynolds number and friction factor. .. math:: \text{Hg} = \frac{f_d}{2} Re^2 = \frac{1}{\rho} \frac{\Delta P}{\Delta z} \frac{D^3}{\nu^2} = \frac{\rho\Delta P D^3}{\mu^2 \Delta z} Parameters ---------- Re : float Reynolds number [-] fd : float, optional Darcy friction factor, [-] Returns ------- Hg : float Hagen number, [-] Notes ----- Introduced in [1]_; further use of it is mostly of the correlations introduced in [1]_. Notable for use use in correlations, because it does not have any dependence on velocity. This expression is useful when designing backwards with a pressure drop spec already known. Examples -------- Example from [3]_: >>> Hagen(Re=2610, fd=1.935235) 6591507.17175 References ---------- .. [1] Martin, Holger. "The Generalized Lévêque Equation and Its Practical Use for the Prediction of Heat and Mass Transfer Rates from Pressure Drop." Chemical Engineering Science, Jean-Claude Charpentier Festschrift Issue, 57, no. 16 (August 1, 2002): 3217-23. https://doi.org/10.1016/S0009-2509(02)00194-X. .. [2] Shah, Ramesh K., and Dusan P. Sekulic. Fundamentals of Heat Exchanger Design. 1st edition. Hoboken, NJ: Wiley, 2002. .. [3] Gesellschaft, V. D. I., ed. VDI Heat Atlas. 2nd edition. Berlin; New York:: Springer, 2010. ''' return 0.5*fd*Re*Re def Bejan_L(dP, L, mu, alpha): r'''Calculates Bejan number of a length or `Be_L` for a fluid with the given parameters flowing over a characteristic length `L` and experiencing a pressure drop `dP`. .. math:: Be_L = \frac{\Delta P L^2}{\mu \alpha} Parameters ---------- dP : float Pressure drop, [Pa] L : float Characteristic length, [m] mu : float, optional Dynamic viscosity, [Pa*s] alpha : float Thermal diffusivity, [m^2/s] Returns ------- Be_L : float Bejan number with respect to length [] Notes ----- Termed a dimensionless number by someone in 1988. Examples -------- >>> Bejan_L(1E4, 1, 1E-3, 1E-6) 10000000000000.0 References ---------- .. [1] Awad, M. M. "The Science and the History of the Two Bejan Numbers." International Journal of Heat and Mass Transfer 94 (March 2016): 101-3. doi:10.1016/j.ijheatmasstransfer.2015.11.073. .. [2] Bejan, Adrian. Convection Heat Transfer. 4E. Hoboken, New Jersey: Wiley, 2013. ''' return dP*L*L/(alpha*mu) def Bejan_p(dP, K, mu, alpha): r'''Calculates Bejan number of a permeability or `Be_p` for a fluid with the given parameters and a permeability `K` experiencing a pressure drop `dP`. .. math:: Be_p = \frac{\Delta P K}{\mu \alpha} Parameters ---------- dP : float Pressure drop, [Pa] K : float Permeability, [m^2] mu : float, optional Dynamic viscosity, [Pa*s] alpha : float Thermal diffusivity, [m^2/s] Returns ------- Be_p : float Bejan number with respect to pore characteristics [] Notes ----- Termed a dimensionless number by someone in 1988. Examples -------- >>> Bejan_p(1E4, 1, 1E-3, 1E-6) 10000000000000.0 References ---------- .. [1] Awad, M. M. "The Science and the History of the Two Bejan Numbers." International Journal of Heat and Mass Transfer 94 (March 2016): 101-3. doi:10.1016/j.ijheatmasstransfer.2015.11.073. .. [2] Bejan, Adrian. Convection Heat Transfer. 4E. Hoboken, New Jersey: Wiley, 2013. ''' return dP*K/(alpha*mu) def Boiling(G, q, Hvap): r'''Calculates Boiling number or `Bg` using heat flux, two-phase mass flux, and heat of vaporization of the fluid flowing. Used in two-phase heat transfer calculations. .. math:: \text{Bg} = \frac{q}{G_{tp} \Delta H_{vap}} Parameters ---------- G : float Two-phase mass flux in a channel (combined liquid and vapor) [kg/m^2/s] q : float Heat flux [W/m^2] Hvap : float Heat of vaporization of the fluid [J/kg] Returns ------- Bg : float Boiling number [-] Notes ----- Most often uses the symbol `Bo` instead of `Bg`, but this conflicts with Bond number. .. math:: \text{Bg} = \frac{\text{mass liquid evaporated / area heat transfer surface}}{\text{mass flow rate fluid / flow cross sectional area}} First defined in [4]_, though not named. Examples -------- >>> Boiling(300, 3000, 800000) 1.25e-05 References ---------- .. [1] Winterton, Richard H.S. BOILING NUMBER. Thermopedia. Hemisphere, 2011. 10.1615/AtoZ.b.boiling_number .. [2] Collier, John G., and John R. Thome. Convective Boiling and Condensation. 3rd edition. Clarendon Press, 1996. .. [3] Stephan, Karl. Heat Transfer in Condensation and Boiling. Translated by C. V. Green.. 1992 edition. Berlin; New York: Springer, 2013. .. [4] W. F. Davidson, P. H. Hardie, C. G. R. Humphreys, A. A. Markson, A. R. Mumford and T. Ravese "Studies of heat transmission through boiler tubing at pressures from 500 to 3300 pounds" Trans. ASME, Vol. 65, 9, February 1943, pp. 553-591. ''' return q/(G*Hvap) def Dean(Re, Di, D): r'''Calculates Dean number, `De`, for a fluid with the Reynolds number `Re`, inner diameter `Di`, and a secondary diameter `D`. `D` may be the diameter of curvature, the diameter of a spiral, or some other dimension. .. math:: \text{De} = \sqrt{\frac{D_i}{D}} \text{Re} = \sqrt{\frac{D_i}{D}} \frac{\rho v D}{\mu} Parameters ---------- Re : float Reynolds number [] Di : float Inner diameter [] D : float Diameter of curvature or outer spiral or other dimension [] Returns ------- De : float Dean number [-] Notes ----- Used in flow in curved geometry. .. math:: \text{De} = \frac{\sqrt{\text{centripetal forces}\cdot \text{inertial forces}}}{\text{viscous forces}} Examples -------- >>> Dean(10000, 0.1, 0.4) 5000.0 References ---------- .. [1] Catchpole, John P., and George. Fulford. "DIMENSIONLESS GROUPS." Industrial & Engineering Chemistry 58, no. 3 (March 1, 1966): 46-60. doi:10.1021/ie50675a012. ''' return sqrt(Di/D)*Re def relative_roughness(D, roughness=1.52e-06): r'''Calculates relative roughness `eD` using a diameter and the roughness of the material of the wall. Default roughness is that of steel. .. math:: eD=\frac{\epsilon}{D} Parameters ---------- D : float Diameter of pipe, [m] roughness : float, optional Roughness of pipe wall [m] Returns ------- eD : float Relative Roughness, [-] Examples -------- >>> relative_roughness(0.5, 1E-4) 0.0002 References ---------- .. [1] Green, Don, and Robert Perry. Perry's Chemical Engineers' Handbook, Eighth Edition. McGraw-Hill Professional, 2007. .. [2] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' return roughness/D ### Misc utilities def nu_mu_converter(rho, mu=None, nu=None): r'''Calculates either kinematic or dynamic viscosity, depending on inputs. Used when one type of viscosity is known as well as density, to obtain the other type. Raises an error if both types of viscosity or neither type of viscosity is provided. .. math:: \nu = \frac{\mu}{\rho} .. math:: \mu = \nu\rho Parameters ---------- rho : float Density, [kg/m^3] mu : float, optional Dynamic viscosity, [Pa*s] nu : float, optional Kinematic viscosity, [m^2/s] Returns ------- mu or nu : float Dynamic viscosity, Pa*s or Kinematic viscosity, m^2/s Examples -------- >>> nu_mu_converter(998., nu=1.0E-6) 0.000998 References ---------- .. [1] Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006. ''' if (nu is not None and mu is not None) or rho is None or (nu is None and mu is None): raise ValueError('Inputs must be rho and one of mu and nu.') if mu is not None: return mu/rho else: return nu*rho def gravity(latitude, H): r'''Calculates local acceleration due to gravity `g` according to [1]_. Uses latitude and height to calculate `g`. .. math:: g = 9.780356(1 + 0.0052885\sin^2\phi - 0.0000059^22\phi) - 3.086\times 10^{-6} H Parameters ---------- latitude : float Degrees, [degrees] H : float Height above earth's surface [m] Returns ------- g : float Acceleration due to gravity, [m/s^2] Notes ----- Better models, such as EGM2008 exist. Examples -------- >>> gravity(55, 1E4) 9.784151976863571 References ---------- .. [1] Haynes, W.M., Thomas J. Bruno, and David R. Lide. CRC Handbook of Chemistry and Physics. [Boca Raton, FL]: CRC press, 2014. ''' lat = latitude*pi/180 g = 9.780356*(1+0.0052885*sin(lat)**2 -0.0000059*sin(2*lat)**2)-3.086E-6*H return g ### Friction loss conversion functions def K_from_f(fd, L, D): r'''Calculates loss coefficient, K, for a given section of pipe at a specified friction factor. .. math:: K = f_dL/D Parameters ---------- fd : float friction factor of pipe, [] L : float Length of pipe, [m] D : float Inner diameter of pipe, [m] Returns ------- K : float Loss coefficient, [] Notes ----- For fittings with a specified L/D ratio, use D = 1 and set L to specified L/D ratio. Examples -------- >>> K_from_f(fd=0.018, L=100., D=.3) 6.0 ''' return fd*L/D def f_from_K(K, L, D): r'''Calculates friction factor, `fd`, from a loss coefficient, K, for a given section of pipe. .. math:: f_d = \frac{K D}{L} Parameters ---------- K : float Loss coefficient, [] L : float Length of pipe, [m] D : float Inner diameter of pipe, [m] Returns ------- fd : float Darcy friction factor of pipe, [-] Notes ----- This can be useful to blend fittings at specific locations in a pipe into a pressure drop which is evenly distributed along a pipe. Examples -------- >>> f_from_K(K=0.6, L=100., D=.3) 0.0018 ''' return K*D/L def K_from_L_equiv(L_D, fd=0.015): r'''Calculates loss coefficient, for a given equivalent length (L/D). .. math:: K = f_d \frac{L}{D} Parameters ---------- L_D : float Length over diameter, [] fd : float, optional Darcy friction factor, [-] Returns ------- K : float Loss coefficient, [] Notes ----- Almost identical to `K_from_f`, but with a default friction factor for fully turbulent flow in steel pipes. Examples -------- >>> K_from_L_equiv(240) 3.5999999999999996 ''' return fd*L_D def L_equiv_from_K(K, fd=0.015): r'''Calculates equivalent length of pipe (L/D), for a given loss coefficient. .. math:: \frac{L}{D} = \frac{K}{f_d} Parameters ---------- K : float Loss coefficient, [-] fd : float, optional Darcy friction factor, [-] Returns ------- L_D : float Length over diameter, [-] Notes ----- Assumes a default friction factor for fully turbulent flow in steel pipes. Examples -------- >>> L_equiv_from_K(3.6) 240.00000000000003 ''' return K/fd def L_from_K(K, D, fd=0.015): r'''Calculates the length of straight pipe at a specified friction factor required to produce a given loss coefficient `K`. .. math:: L = \frac{K D}{f_d} Parameters ---------- K : float Loss coefficient, [] D : float Inner diameter of pipe, [m] fd : float friction factor of pipe, [] Returns ------- L : float Length of pipe, [m] Examples -------- >>> L_from_K(K=6, D=.3, fd=0.018) 100.0 ''' return K*D/fd def dP_from_K(K, rho, V): r'''Calculates pressure drop, for a given loss coefficient, at a specified density and velocity. .. math:: dP = 0.5K\rho V^2 Parameters ---------- K : float Loss coefficient, [] rho : float Density of fluid, [kg/m^3] V : float Velocity of fluid in pipe, [m/s] Returns ------- dP : float Pressure drop, [Pa] Notes ----- Loss coefficient `K` is usually the sum of several factors, including the friction factor. Examples -------- >>> dP_from_K(K=10, rho=1000, V=3) 45000.0 ''' return K*0.5*rho*V*V def head_from_K(K, V, g=g): r'''Calculates head loss, for a given loss coefficient, at a specified velocity. .. math:: \text{head} = \frac{K V^2}{2g} Parameters ---------- K : float Loss coefficient, [] V : float Velocity of fluid in pipe, [m/s] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- head : float Head loss, [m] Notes ----- Loss coefficient `K` is usually the sum of several factors, including the friction factor. Examples -------- >>> head_from_K(K=10, V=1.5) 1.1471807396001694 ''' return K*0.5*V*V/g def head_from_P(P, rho, g=g): r'''Calculates head for a fluid of specified density at specified pressure. .. math:: \text{head} = {P\over{\rho g}} Parameters ---------- P : float Pressure fluid in pipe, [Pa] rho : float Density of fluid, [kg/m^3] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- head : float Head, [m] Notes ----- By definition. Head varies with location, inversely proportional to the increase in gravitational constant. Examples -------- >>> head_from_P(P=98066.5, rho=1000) 10.000000000000002 ''' return P/rho/g def P_from_head(head, rho, g=g): r'''Calculates head for a fluid of specified density at specified pressure. .. math:: P = \rho g \cdot \text{head} Parameters ---------- head : float Head, [m] rho : float Density of fluid, [kg/m^3] g : float, optional Acceleration due to gravity, [m/s^2] Returns ------- P : float Pressure fluid in pipe, [Pa] Notes ----- Examples -------- >>> P_from_head(head=5., rho=800.) 39226.6 ''' return head*rho*g ### Synonyms alpha = thermal_diffusivity # synonym for thermal diffusivity Pr = Prandtl # Synonym # temperature in kelvin zero_Celsius = 273.15 degree_Fahrenheit = 1.0/1.8 # only for differences def C2K(C): """Convert Celsius to Kelvin. Parameters ---------- C : float Celsius temperature to be converted, [degC] Returns ------- K : float Equivalent Kelvin temperature, [K] Notes ----- Computes ``K = C + zero_Celsius`` where `zero_Celsius` = 273.15, i.e., (the absolute value of) temperature "absolute zero" as measured in Celsius. Examples -------- >>> C2K(-40) 233.14999999999998 """ return C + zero_Celsius def K2C(K): """Convert Kelvin to Celsius. Parameters ---------- K : float Kelvin temperature to be converted. Returns ------- C : float Equivalent Celsius temperature. Notes ----- Computes ``C = K - zero_Celsius`` where `zero_Celsius` = 273.15, i.e., (the absolute value of) temperature "absolute zero" as measured in Celsius. Examples -------- >>> K2C(233.15) -39.99999999999997 """ return K - zero_Celsius def F2C(F): """Convert Fahrenheit to Celsius. Parameters ---------- F : float Fahrenheit temperature to be converted. Returns ------- C : float Equivalent Celsius temperature. Notes ----- Computes ``C = (F - 32) / 1.8``. Examples -------- >>> F2C(-40.0) -40.0 """ return (F - 32.0) / 1.8 def C2F(C): """Convert Celsius to Fahrenheit. Parameters ---------- C : float Celsius temperature to be converted. Returns ------- F : float Equivalent Fahrenheit temperature. Notes ----- Computes ``F = 1.8 * C + 32``. Examples -------- >>> C2F(-40.0) -40.0 """ return 1.8*C + 32.0 def F2K(F): """Convert Fahrenheit to Kelvin. Parameters ---------- F : float Fahrenheit temperature to be converted. Returns ------- K : float Equivalent Kelvin temperature. Notes ----- Computes ``K = (F - 32)/1.8 + zero_Celsius`` where `zero_Celsius` = 273.15, i.e., (the absolute value of) temperature "absolute zero" as measured in Celsius. Examples -------- >>> F2K(-40) 233.14999999999998 """ return (F - 32.0)/1.8 + zero_Celsius def K2F(K): """Convert Kelvin to Fahrenheit. Parameters ---------- K : float Kelvin temperature to be converted. Returns ------- F : float Equivalent Fahrenheit temperature. Notes ----- Computes ``F = 1.8 * (K - zero_Celsius) + 32`` where `zero_Celsius` = 273.15, i.e., (the absolute value of) temperature "absolute zero" as measured in Celsius. Examples -------- >>> K2F(233.15) -39.99999999999996 """ return 1.8*(K - zero_Celsius) + 32.0 def C2R(C): """Convert Celsius to Rankine. Parameters ---------- C : float Celsius temperature to be converted. Returns ------- Ra : float Equivalent Rankine temperature. Notes ----- Computes ``Ra = 1.8 * (C + zero_Celsius)`` where `zero_Celsius` = 273.15, i.e., (the absolute value of) temperature "absolute zero" as measured in Celsius. Examples -------- >>> C2R(-40) 419.66999999999996 """ return 1.8 * (C + zero_Celsius) def K2R(K): """Convert Kelvin to Rankine. Parameters ---------- K : float Kelvin temperature to be converted. Returns ------- Ra : float Equivalent Rankine temperature. Notes ----- Computes ``Ra = 1.8 * K``. Examples -------- >>> K2R(273.15) 491.66999999999996 """ return 1.8 * K def F2R(F): """Convert Fahrenheit to Rankine. Parameters ---------- F : float Fahrenheit temperature to be converted. Returns ------- Ra : float Equivalent Rankine temperature. Notes ----- Computes ``Ra = F - 32 + 1.8 * zero_Celsius`` where `zero_Celsius` = 273.15, i.e., (the absolute value of) temperature "absolute zero" as measured in Celsius. Examples -------- >>> F2R(100) 559.67 """ return F - 32.0 + 1.8 * zero_Celsius def R2C(Ra): """Convert Rankine to Celsius. Parameters ---------- Ra : float Rankine temperature to be converted. Returns ------- C : float Equivalent Celsius temperature. Notes ----- Computes ``C = Ra / 1.8 - zero_Celsius`` where `zero_Celsius` = 273.15, i.e., (the absolute value of) temperature "absolute zero" as measured in Celsius. Examples -------- >>> R2C(459.67) -17.777777777777743 """ return Ra / 1.8 - zero_Celsius def R2K(Ra): """Convert Rankine to Kelvin. Parameters ---------- Ra : float Rankine temperature to be converted. Returns ------- K : float Equivalent Kelvin temperature. Notes ----- Computes ``K = Ra / 1.8``. Examples -------- >>> R2K(491.67) 273.15 """ return Ra / 1.8 def R2F(Ra): """Convert Rankine to Fahrenheit. Parameters ---------- Ra : float Rankine temperature to be converted. Returns ------- F : float Equivalent Fahrenheit temperature. Notes ----- Computes ``F = Ra + 32 - 1.8 * zero_Celsius`` where `zero_Celsius` = 273.15, i.e., (the absolute value of) temperature "absolute zero" as measured in Celsius. Examples -------- >>> R2F(491.67) 32.00000000000006 """ return Ra - 1.8*zero_Celsius + 32.0 def Engauge_2d_parser(lines, flat=False): """Not exposed function to read a 2D file generated by engauge-digitizer; for curve fitting.""" z_values = [] x_lists = [] y_lists = [] working_xs = [] working_ys = [] new_curve = True for line in lines: if line.strip() == '': new_curve = True elif new_curve: z = float(line.split(',')[1]) z_values.append(z) if working_xs and working_ys: x_lists.append(working_xs) y_lists.append(working_ys) working_xs = [] working_ys = [] new_curve = False else: x, y = [float(i) for i in line.strip().split(',')] working_xs.append(x) working_ys.append(y) x_lists.append(working_xs) y_lists.append(working_ys) if flat: all_zs = [] all_xs = [] all_ys = [] for z, xs, ys in zip(z_values, x_lists, y_lists): for x, y in zip(xs, ys): all_zs.append(z) all_xs.append(x) all_ys.append(y) return all_zs, all_xs, all_ys return z_values, x_lists, y_lists fluids-1.0.22/fluids/two_phase_voidage.pyi0000644000175000017500000001212314302004506020101 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import ( List, Optional, Union, ) def Armand(x: float, rhol: float, rhog: float) -> float: ... def Baroczy(x: float, rhol: float, rhog: float, mul: float, mug: float) -> float: ... def Beattie_Whalley(x: float, mul: float, mug: float, rhol: float, rhog: float) -> float: ... def Chisholm_Armand(x: float, rhol: float, rhog: float) -> float: ... def Chisholm_voidage(x: float, rhol: float, rhog: float) -> float: ... def Cicchitti(x: float, mul: float, mug: float) -> float: ... def Dix(x: float, rhol: float, rhog: float, sigma: float, m: float, D: float, g: float = ...) -> float: ... def Domanski_Didion(x: float, rhol: float, rhog: float, mul: float, mug: float) -> float: ... def Duckler(x: float, mul: float, mug: float, rhol: float, rhog: float) -> float: ... def Fauske(x: float, rhol: float, rhog: float) -> float: ... def Fourar_Bories(x: float, mul: float, mug: float, rhol: float, rhog: float) -> float: ... def Graham( x: float, rhol: float, rhog: float, mul: float, mug: float, m: float, D: float, g: float = ... ) -> float: ... def Gregory_Scott(x: float, rhol: float, rhog: float) -> float: ... def Guzhov(x: float, rhol: float, rhog: float, m: float, D: float) -> float: ... def Harms( x: float, rhol: float, rhog: float, mul: float, mug: float, m: float, D: float ) -> float: ... def Huq_Loth(x: float, rhol: float, rhog: float) -> float: ... def Kawahara(x: float, rhol: float, rhog: float, D: float) -> float: ... def Kopte_Newell_Chato( x: float, rhol: float, rhog: float, mul: float, mug: float, m: float, D: float, g: float = ... ) -> float: ... def Lin_Kwok(x: float, mul: float, mug: float) -> float: ... def Lockhart_Martinelli_Xtt( x: float, rhol: float, rhog: float, mul: float, mug: float, pow_x: float = ..., pow_rho: float = ..., pow_mu: float = ..., n: Optional[float] = ... ) -> float: ... def McAdams(x: float, mul: float, mug: float) -> float: ... def Nicklin_Wilkes_Davidson(x: float, rhol: float, rhog: float, m: float, D: float, g: float = ...) -> float: ... def Nishino_Yamazaki(x: float, rhol: float, rhog: float) -> float: ... def Rouhani_1(x: float, rhol: float, rhog: float, sigma: float, m: float, D: float, g: float = ...) -> float: ... def Rouhani_2(x: float, rhol: float, rhog: float, sigma: float, m: float, D: float, g: float = ...) -> float: ... def Smith(x: float, rhol: float, rhog: float) -> float: ... def Steiner(x: float, rhol: float, rhog: float, sigma: float, m: float, D: float, g: float = ...) -> float: ... def Sun_Duffey_Peng( x: float, rhol: float, rhog: float, sigma: float, m: float, D: float, P: float, Pc: float, g: float = ... ) -> float: ... def Tandon_Varma_Gupta( x: float, rhol: float, rhog: float, mul: float, mug: float, m: float, D: float ) -> float: ... def Thom(x: float, rhol: float, rhog: float, mul: float, mug: float) -> float: ... def Turner_Wallis(x: float, rhol: float, rhog: float, mul: float, mug: float) -> float: ... def Woldesemayat_Ghajar( x: float, rhol: float, rhog: float, sigma: float, m: float, D: float, P: float, angle: float = ..., g: float = ... ) -> float: ... def Xu_Fang_voidage(x: float, rhol: float, rhog: float, m: float, D: float, g: float = ...) -> float: ... def Yashar( x: float, rhol: float, rhog: float, mul: float, mug: float, m: float, D: float, g: float = ... ) -> float: ... def Zivi(x: float, rhol: float, rhog: float) -> float: ... def density_two_phase(alpha: float, rhol: float, rhog: float) -> float: ... def gas_liquid_viscosity( x: float, mul: float, mug: float, rhol: Optional[float] = ..., rhog: Optional[float] = ..., Method: Optional[str] = ... ) -> float: ... def gas_liquid_viscosity_methods( rhol: Optional[float] = ..., rhog: Optional[float] = ..., check_ranges: bool = ... ) -> List[str]: ... def homogeneous(x: float, rhol: float, rhog: float) -> float: ... def liquid_gas_voidage( x: float, rhol: float, rhog: float, D: Optional[float] = ..., m: Optional[float] = ..., mul: Optional[float] = ..., mug: Optional[float] = ..., sigma: Optional[float] = ..., P: Optional[float] = ..., Pc: Optional[float] = ..., angle: int = ..., g: float = ..., Method: Optional[str] = ... ) -> float: ... def liquid_gas_voidage_methods( x: float, rhol: float, rhog: float, D: Optional[float] = ..., m: Optional[float] = ..., mul: Optional[float] = ..., mug: Optional[float] = ..., sigma: Optional[float] = ..., P: Optional[float] = ..., Pc: Optional[float] = ..., angle: float = ..., g: float = ..., check_ranges: bool = ... ) -> List[str]: ... def two_phase_voidage_experimental(rho_lg: float, rhol: float, rhog: float) -> float: ... __all__: List[str]fluids-1.0.22/fluids/safety_valve.pyi0000644000175000017500000000162114302004506017103 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List from typing import Union def API520_A_g( m: float, T: float, Z: float, MW: float, k: float, P1: float, P2: float = ..., Kd: float = ..., Kb: float = ..., Kc: float = ... ) -> float: ... def API520_A_steam(m: float, T: float, P1: float, Kd: float = ..., Kb: float = ..., Kc: float = ...) -> float: ... def API520_B(Pset: float, Pback: float, overpressure: float = ...) -> float: ... def API520_C(k: float) -> float: ... def API520_F2(k: float, P1: float, P2: float) -> float: ... def API520_Kv(Re: float) -> float: ... def API520_N(P1: float) -> float: ... def API520_SH(T1: float, P1: float) -> float: ... def API520_W(Pset: float, Pback: float) -> float: ... def API520_round_size(A: float) -> float: ... __all__: List[str]fluids-1.0.22/fluids/saltation.pyi0000644000175000017500000000152014302004506016407 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List def Geldart_Ling(mp: float, rhog: float, D: float, mug: float) -> float: ... def Matsumoto_1974(mp: float, rhop: float, dp: float, rhog: float, D: float, Vterminal: float = ...) -> float: ... def Matsumoto_1975(mp: float, rhop: float, dp: float, rhog: float, D: float, Vterminal: float = ...) -> float: ... def Matsumoto_1977(mp: float, rhop: float, dp: float, rhog: float, D: float, Vterminal: float = ...) -> float: ... def Rizk(mp: float, dp: float, rhog: float, D: float) -> float: ... def Schade(mp: float, rhop: float, dp: float, rhog: float, D: float) -> float: ... def Weber_saltation(mp: float, rhop: float, dp: float, rhog: float, D: float, Vterminal: float = ...) -> float: ... __all__: List[str]fluids-1.0.22/fluids/numba.py0000644000175000017500000007122414302004506015352 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2020, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from __future__ import division import sys import importlib.util import re import types import inspect import string import numpy as np import fluids as normal_fluids import numba from numba import int32, float32, int64, float64 from numba.experimental import jitclass from numba import cfunc import linecache import numba.types from math import pi import fluids.optional.spa import ctypes from numba.extending import get_cython_function_address from numba.extending import overload caching = True extra_args_std = {'nogil': True, 'fastmath': True} extra_args_vec = {} __all__ = [] __funcs = {} no_conv_data_names = set(['__builtins__', 'fmethods']) try: import scipy.special as sc name_to_numba_signatures = { 'expi': [(float64,)], 'ellipe': [(float64,)], 'iv': [(float64, float64,)], 'gamma': [(float64,)], 'gammainc': [(float64, float64,)], 'gammaincc': [(float64, float64,)], 'i0': [(float64,)], 'i1': [(float64,)], 'k0': [(float64,)], 'k1': [(float64,)], 'hyp2f1': [(float64, float64, float64, float64,)], 'ellipkinc': [(float64, float64,)], 'ellipeinc': [(float64, float64,)], 'erf': [(float64,)], } name_and_types_to_pointer = { ('expi', float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', '__pyx_fuse_1expi')), ('ellipe', float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', 'ellipe')), ('iv', float64, float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', '__pyx_fuse_1iv')), ('gamma', float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', '__pyx_fuse_1gamma')), ('gammainc', float64, float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', 'gammainc')), ('gammaincc', float64, float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', 'gammaincc')), ('i0', float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', 'i0')), ('i1', float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', 'i1')), ('k0', float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', 'k0')), ('k1', float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', 'k1')), ('hyp2f1', float64, float64, float64, float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double, ctypes.c_double, ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', '__pyx_fuse_1hyp2f1')), ('ellipkinc', float64, float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', 'ellipkinc')), ('ellipeinc', float64, float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', 'ellipeinc')), ('erf', float64): ctypes.CFUNCTYPE(ctypes.c_double, ctypes.c_double)(get_cython_function_address('scipy.special.cython_special', '__pyx_fuse_1erf')), } def select_kernel(name, signature): f2 = name_and_types_to_pointer[(name, *signature)] second_lambda = lambda *args: lambda *args: f2(*args) return second_lambda def add_scipy_special_overloads(): for name, sigs in name_to_numba_signatures.items(): sig = sigs[0] # Sig is a tuple of arguments func = getattr(sc, name) overload(func)(select_kernel(name, sigs[0])) add_scipy_special_overloads() except: pass def numba_exec_cacheable(source, lcs=None, gbls=None, cache_name='cache-safe'): filepath = "" % cache_name lines = [line + '\n' for line in source.splitlines()] linecache.cache[filepath] = (len(source), None, lines, filepath) if lcs is None: lcs = {} if gbls is None: gbls = globals() exec(compile(source, filepath, 'exec'), gbls, lcs) return lcs, gbls # Some unfotrunate code duplication @numba.njit(cache=caching, **extra_args_std) def fpbspl(t, n, k, x, l, h, hh): h[0] = 1.0 for j in range(1, k + 1): hh[0:j] = h[0:j] h[0] = 0.0 for i in range(j): li = l+i f = hh[i]/(t[li] - t[li - j]) h[i] = h[i] + f*(t[li] - x) h[i + 1] = f*(x - t[li - j]) return h, hh @numba.njit(cache=caching, **extra_args_std) def init_w(t, k, x, lx, w): tb = t[k] n = len(t) m = len(x) h = np.zeros(6, dtype=np.float64)#([0]*6 ) hh = np.zeros(5, dtype=np.float64)##np.array([0]*5) te = t[n - k - 1] l1 = k + 1 l2 = l1 + 1 for i in range(m): arg = x[i] if arg < tb: arg = tb if arg > te: arg = te while not (arg < t[l1] or l1 == (n - k - 1)): l1 = l2 l2 = l1 + 1 h, hh = fpbspl(t, n, k, arg, l1, h, hh) lx[i] = l1 - k - 1 for j in range(k + 1): w[i][j] = h[j] return w @numba.njit(cache=caching, **extra_args_std) def cy_bispev(tx, ty, c, kx, ky, x, y): nx = len(tx) ny = len(ty) mx = 1 # hardcode to one point my = 1 # hardcode to one point kx1 = kx + 1 ky1 = ky + 1 nkx1 = nx - kx1 nky1 = ny - ky1 wx = np.zeros((mx, kx1)) wy = np.zeros((my, ky1)) lx = np.zeros(mx, dtype=np.int32) ly = np.zeros(my, dtype=np.int32) size_z = mx*my z = [0.0]*size_z wx = init_w(tx, kx, x, lx, wx) wy = init_w(ty, ky, y, ly, wy) for j in range(my): for i in range(mx): sp = 0.0 err = 0.0 for i1 in range(kx1): for j1 in range(ky1): l2 = lx[i]*nky1 + ly[j] + i1*nky1 + j1 a = c[l2]*wx[i][i1]*wy[j][j1] - err tmp = sp + a err = (tmp - sp) - a sp = tmp z[j*mx + i] += sp return z @numba.njit(cache=caching, **extra_args_std) def normalize(values): tot_inv = 1.0/sum(values) return np.array([i*tot_inv for i in values]) @numba.njit(cache=caching, **extra_args_std) def bisplev(x, y, tck, dx=0, dy=0): tx, ty, c, kx, ky = tck return cy_bispev(tx, ty, c, kx, ky, np.array([x]), np.array([y]))[0] @numba.njit(cache=caching, **extra_args_std) def combinations(pool, r): n = len(pool) # indices = tuple(list(range(r))) indices = np.arange(r) empty = not (n and (0 < r <= n)) if not empty: # yield [pool[i] for i in indices] # yield (pool[i] for i in indices) yield np.array([pool[i] for i in indices]) while not empty: i = r - 1 while i >= 0 and indices[i] == i + n - r: i -= 1 if i < 0: empty = True else: indices[i] += 1 for j in range(i + 1, r): indices[j] = indices[j - 1] + 1 result = np.array([pool[i] for i in indices]) yield result to_set_num = ['bisplev', 'cy_bispev', 'init_w', 'fpbspl'] def infer_dictionary_types(d): if not d: raise ValueError("Empty dictionary cannot infer") keys = list(d.keys()) type_keys = type(keys[0]) for k in keys: if type(k) != type_keys: raise ValueError("Inconsistent key types in dictionary") values = list(d.values()) type_values = type(values[0]) for v in values: if type(v) != type_values: raise ValueError("Inconsistent value types in dictionary") return numba.typeof(keys[0]), numba.typeof(values[0]) def numba_dict(d): key_type, value_type = infer_dictionary_types(d) new = numba.typed.Dict.empty(key_type=key_type, value_type=value_type) for k, v in d.items(): new[k] = v return new def return_value_numpy(source): ret = re.search(r'return +\[', source) if ret: start_return, start_bracket = ret.regs[-1] enclosing = 1 for i, v in enumerate(source[start_bracket:]): if v == '[': enclosing += 1 if v == ']': enclosing -= 1 if not enclosing: break return source[:start_bracket-1] + 'np.array([%s)' %source[start_bracket:i+start_bracket+1] return source # Magic to make a lists into arrays list_mult_expr = r'\[ *([+-]?([0-9]+([.][0-9]*)?|[.][0-9]+)) *\] *\* *([a-zA-Z0-9_]+)' numpy_not_list_expr = r'np.full((\4,), \1)' match_prange = r'range\( *([a-zA-Z0-9_]+) *\) *: *# * (numba|NUMBA) *: *(prange|PRANGE)' sub_prange = r'prange(\1):' def transform_lists_to_arrays(module, to_change, __funcs, vec=False, cache_blacklist=set([])): if vec: conv_fun = numba.vectorize extra_args = extra_args_vec else: conv_fun = numba.njit extra_args = extra_args_std for s in to_change: func = s.split('.')[-1] mod = '.'.join(s.split('.')[:-1]) fake_mod = __funcs[mod] try: real_mod = getattr(module, mod) except: real_mod = module for s in mod.split('.'): real_mod = getattr(real_mod, s) orig_func = getattr(real_mod, func) source = inspect.getsource(orig_func) source = remove_for_numba(source) # do before anything else if type(orig_func) is not type: source = return_value_numpy(source) source = re.sub(list_mult_expr, numpy_not_list_expr, source) parallel = 'prange' in source source = re.sub(match_prange, sub_prange, source) # if 'roughness_Farshad' in source: # print(source) # print(parallel, 'hi', extra_args) numba_exec_cacheable(source, fake_mod.__dict__, fake_mod.__dict__) new_func = fake_mod.__dict__[func] do_cache = caching and func not in cache_blacklist if type(orig_func) is type: obj = new_func else: if vec: obj = conv_fun(cache=do_cache, **extra_args)(new_func) else: obj = conv_fun(cache=do_cache, parallel=parallel, **extra_args)(new_func) # if 'Wilke_large' in source: # print(id(obj), 'id') __funcs[func] = obj fake_mod.__dict__[func] = obj obj.__doc__ = '' #set_signatures = {'Clamond': [numba.float64(numba.float64, numba.float64, numba.boolean), # numba.float64(numba.float64, numba.float64, numba.optional(numba.boolean)) # ] # } set_signatures = {} remove_comment_line = re.compile(r'''r?(['"])\1\1(.*?)\1{3}''', re.DOTALL) def remove_for_numba(source): source = re.sub(r'''.*# ?(numba|NUMBA) ?: *(DELETE|delete|comment|COMMENT).*''', '', source) source = re.sub(r'''#(.*)# ?(numba|NUMBA) ?: *(UNCOMMENT|uncomment).*''', r'\1', source) return source def remove_branch(source, branch): source = re.sub(remove_comment_line, '', source) ret = re.search(r'if +%s *' %branch, source) if ret: start_return, start_bracket = ret.regs[-1] enclosing_square = enclosing_curley = enclosing_round = 0 required_line_start = source[0:start_return].replace('\r', '\n').replace('\n\n','\n').split('\n')[-1] required_spacing = 4 search_txt = source[start_bracket:] # print(search_txt) for i, v in enumerate(search_txt): if v == '[': enclosing_square += 1 if v == ']': enclosing_square -= 1 if v == '{': enclosing_curley += 1 if v == '}': enclosing_curley -= 1 if v == '(': enclosing_round += 1 if v == ')': enclosing_round -= 1 if enclosing_round == 0 and enclosing_square == 0 and enclosing_curley == 0: if (search_txt[i:i+len(required_line_start)+1] == '\n' + required_line_start): # print([True, search_txt[i:i+len(required_line_start)+2]]) if (search_txt[i+len(required_line_start)+1] in string.ascii_letters): end_idx = i break return source[:start_return] + search_txt[end_idx:] return source numtypes = {float, int, complex} settypes = {set, frozenset} def transform_dataypes_module(SUBMOD): module_constants_changed_type = {} for arr_name in SUBMOD.__dict__: if arr_name in no_conv_data_names: continue obj = getattr(SUBMOD, arr_name) obj_type = type(obj) if obj_type is list and obj: # Assume all elements have the same general type r = obj[0] r_type = type(r) if r_type in numtypes: arr = np.array(obj) if arr.dtype.char != 'O': module_constants_changed_type[arr_name] = arr elif r_type is list and r and type(r[0]) in numtypes: if len(set([len(r) for r in obj])) == 1: # All same size - nice numpy array arr = np.array(obj) if arr.dtype.char != 'O': module_constants_changed_type[arr_name] = arr else: # Tuple of different size numpy arrays module_constants_changed_type[arr_name] = tuple([np.array(v) for v in obj]) elif obj_type in settypes: module_constants_changed_type[arr_name] = tuple(obj) # elif obj_type is dict: # try: # print('starting', arr_name) # infer_dictionary_types(obj) # module_constants_changed_type[arr_name] = numba_dict(obj) # except: # print(arr_name, 'failed') # pass return module_constants_changed_type #nopython = set(['Clamond']) skip = set([]) total_skip = set([]) skip_cache = set(['secant', 'brenth', 'py_solve']) bad_names = set(('__file__', '__name__', '__package__', '__cached__', 'solve')) from fluids.numerics import SamePointError, UnconvergedError, NotBoundedError def create_numerics(replaced, vec=False): cache_unsuported = set(['brenth', 'newton_system', 'quad', 'quad_adaptive', 'fixed_quad_Gauss_Kronrod', 'py_lambertw', 'secant', 'lambertw', 'ridder', 'bisect']) # cache_unsuported = set([]) # if vec: # conv_fun = numba.vectorize # else: # Not part of the public API - do not need to worry about the stricter # numba.vectorize interface! conv_fun = numba.njit NUMERICS_SUBMOD_COPY = importlib.util.find_spec('fluids.numerics') NUMERICS_SUBMOD = importlib.util.module_from_spec(NUMERICS_SUBMOD_COPY) NUMERICS_SUBMOD.IS_NUMBA = True NUMERICS_SUBMOD.FORCE_PYPY = True NUMERICS_SUBMOD.numba = numba NUMERICS_SUBMOD.jitclass = jitclass NUMERICS_SUBMOD.njit = numba.njit NUMERICS_SUBMOD.jit = numba.jit NUMERICS_SUBMOD.array_if_needed = np.array NUMERICS_SUBMOD.sum = np.sum NUMERICS_SUBMOD_COPY.loader.exec_module(NUMERICS_SUBMOD) NUMERICS_SUBMOD.zeros = np.zeros NUMERICS_SUBMOD.full = np.full # So long as the other modules are using the system numerics and being updated with the correct numerics methods later # numba wants to make sure these are the same same_classes = ['OscillationError', 'UnconvergedError', 'SamePointError', 'NoSolutionError', 'NotBoundedError', 'DiscontinuityError'] for s in same_classes: setattr(NUMERICS_SUBMOD, s, getattr(normal_fluids.numerics, s)) names = list(NUMERICS_SUBMOD.__all__) try: names += NUMERICS_SUBMOD.__numba_additional_funcs__ except: pass NUMERICS_SUBMOD.py_solve = np.linalg.solve bad_names = set(['tck_interp2d_linear', 'implementation_optimize_tck', 'py_solve']) bad_names.update(to_set_num) solvers = ['secant', 'brenth', 'newton', 'halley', 'ridder', 'newton_system', 'solve_2_direct', 'solve_3_direct', 'solve_4_direct', 'basic_damping', 'bisect'] # for s in solvers: source = inspect.getsource(getattr(NUMERICS_SUBMOD, s)) source = source.replace(', kwargs={}', '').replace(', **kwargs', '').replace(', kwargs=kwargs', '') source = source.replace('iterations=i, point=p, err=q1', '') source = source.replace(', q1=q1, p1=p1, q0=q0, p0=p0', '') source = source.replace('%d iterations" %maxiter', '"') source = source.replace('ytol=None', 'ytol=1e100') source = source.replace(', value=%s" %(maxiter, x)', '"') source = re.sub(r'''UnconvergedError\(.*''', '''UnconvergedError("Failed to converge")''', source) # Gotta keep errors all one one line source = remove_for_numba(source) source = re.sub(list_mult_expr, numpy_not_list_expr, source) # if any(i in s for i in ('bisect', 'solve_2_direct', 'basic_damping')): # print(source) numba_exec_cacheable(source, NUMERICS_SUBMOD.__dict__, NUMERICS_SUBMOD.__dict__) # numerics_forceobj = set(solvers) # Force the sovlers to compile in object mode # numerics_forceobj = [] for name in names: if name not in bad_names: obj = getattr(NUMERICS_SUBMOD, name) if isinstance(obj, types.FunctionType): do_cache = caching and name not in cache_unsuported # forceobj = name in numerics_forceobj # forceobj = False # cache=not forceobj # cache=name not in skip_cache obj = conv_fun(cache=do_cache, **extra_args_std)(obj) NUMERICS_SUBMOD.__dict__[name] = obj replaced[name] = obj # globals()[name] = objs for name in to_set_num: NUMERICS_SUBMOD.__dict__[name] = globals()[name] replaced['bisplev'] = replaced['py_bisplev'] = NUMERICS_SUBMOD.__dict__['bisplev'] = bisplev # replaced['lambertw'] = NUMERICS_SUBMOD.__dict__['lambertw'] = NUMERICS_SUBMOD.__dict__['py_lambertw'] for s in ('ellipe', 'gammaincc', 'gamma', 'i1', 'i0', 'k1', 'k0', 'iv', 'hyp2f1', 'erf', 'ellipkinc', 'ellipeinc'): replaced[s] = NUMERICS_SUBMOD.__dict__[s] module_constants_changed_type = transform_dataypes_module(NUMERICS_SUBMOD) NUMERICS_SUBMOD.__dict__.update(module_constants_changed_type) NUMERICS_SUBMOD.normalize = normalize replaced['normalize'] = normalize for k, v in NUMERICS_SUBMOD.fit_minimization_targets.items(): NUMERICS_SUBMOD.fit_minimization_targets[k] = replaced[v.__name__] return replaced, NUMERICS_SUBMOD replaced = {'sum': np.sum, 'combinations': combinations, 'np': np} replaced, NUMERICS_SUBMOD = create_numerics(replaced, vec=False) numerics_dict = replaced numerics = NUMERICS_SUBMOD #old_numerics = sys.modules['fluids.numerics'] #sys.modules['fluids.numerics'] = numerics normal = normal_fluids def transform_module(normal, __funcs, replaced, vec=False, blacklist=frozenset([]), cache_blacklist=set([])): new_mods = [] if vec: conv_fun = numba.vectorize extra_args = extra_args_vec else: conv_fun = numba.njit extra_args = extra_args_std # Run module-by-module. Expensive, as we need to create module copies try: all_submodules = normal.all_submodules() except: all_submodules = normal.submodules for mod in all_submodules: #print(all_submodules, mod) SUBMOD_COPY = importlib.util.find_spec(mod.__name__) SUBMOD = importlib.util.module_from_spec(SUBMOD_COPY) SUBMOD.IS_NUMBA = True SUBMOD.numba = numba SUBMOD.jitclass = jitclass SUBMOD.njit = numba.njit SUBMOD.jit = numba.jit SUBMOD.prange = numba.prange if vec: SUBMOD.IS_NUMBA_VEC = True SUBMOD_COPY.loader.exec_module(SUBMOD) SUBMOD.np = np SUBMOD.sum = np.sum SUBMOD.__dict__.update(replaced) new_mods.append(SUBMOD) mod_split_names = mod.__name__.split('.') __funcs[mod_split_names[-1]] = SUBMOD # fluids.numba.optional.spa __funcs['.'.join(mod_split_names[:-1])] = SUBMOD # set fluids.optional.spa fluids.numba.spa __funcs['.'.join(mod_split_names[-2:])] = SUBMOD # set 'optional.spa' in the dict too try: names = set(SUBMOD.__all__) except: names = set() for mod_obj_name in dir(SUBMOD): obj = getattr(SUBMOD, mod_obj_name) if (isinstance(obj, types.FunctionType) and mod_obj_name != '__getattr__' and not mod_obj_name.startswith('_load') and obj.__module__ == SUBMOD.__name__): names.add(mod_obj_name) # try: # names += SUBMOD.__numba_additional_funcs__ # except: # pass numba_funcs = [] funcs = [] for name in names: obj = getattr(SUBMOD, name) if isinstance(obj, types.FunctionType): if name not in total_skip and name not in blacklist: SUBMOD.__dict__[name] = obj = conv_fun(cache=(caching and name not in cache_blacklist), **extra_args)(obj) numba_funcs.append(obj) else: funcs.append(obj) __funcs[name] = obj module_constants_changed_type = transform_dataypes_module(SUBMOD) SUBMOD.__dict__.update(module_constants_changed_type) __funcs.update(module_constants_changed_type) # if not vec: # for t in numba_funcs: # #if normal.__name__ == 'chemicals': # # if 'iapws' not in all_submodules[-1].__name__: # # print(new_objs, t) # # 1/0 # t.py_func.__globals__.update(SUBMOD.__dict__) # for t in funcs: # t.__globals__.update(SUBMOD.__dict__) # Do our best to allow functions to be found if '__file__' in __funcs: del __funcs['__file__'] if '__file__' in replaced: del replaced['__file__'] for mod in new_mods: mod.__dict__.update(__funcs) return new_mods def transform_complete(replaced, __funcs, __all__, normal, vec=False): cache_blacklist = set(['Stichlmair_flood', 'airmass', 'Spitzglass_high', '_to_solve_Spitzglass_high', '_to_solve_Spitzglass_low', 'Spitzglass_low', 'Oliphant', '_to_solve_Oliphant', 'P_isothermal_critical_flow', 'P_upstream_isothermal_critical_flow', 'isothermal_gas_err_P1', 'isothermal_gas_err_P2', 'isothermal_gas_err_P2_basis', 'isothermal_gas_err_D', 'isothermal_gas', 'v_terminal', 'differential_pressure_meter_solver', 'err_dp_meter_solver_P1', 'err_dp_meter_solver_D2', 'err_dp_meter_solver_P2', 'err_dp_meter_solver_m', 'V_horiz_spherical', 'V_horiz_torispherical', 'Prandtl_von_Karman_Nikuradse', 'plate_enlargement_factor', 'Stichlmair_wet', 'V_from_h', 'SA_partial_horiz_spherical_head', '_SA_partial_horiz_spherical_head_to_int', '_SA_partial_horiz_ellipsoidal_head_to_int', '_SA_partial_horiz_ellipsoidal_head_limits', 'SA_partial_horiz_ellipsoidal_head', '_SA_partial_horiz_guppy_head_to_int', 'SA_partial_horiz_guppy_head', 'SA_partial_horiz_torispherical_head', 'SA_from_h', 'V_tank']) # cache_blacklist = set([]) if vec: conv_fun = numba.vectorize extra_args = extra_args_vec else: conv_fun = numba.njit extra_args = extra_args_std new_mods = transform_module(normal, __funcs, replaced, vec=vec, cache_blacklist=cache_blacklist) to_change = ['packed_tower._Stichlmair_flood_f_and_jac', 'packed_tower.Stichlmair_flood', 'compressible.isothermal_gas', 'fittings.Darby3K', 'fittings.Hooper2K', 'geometry.SA_partial_horiz_torispherical_head', 'optional.spa.solar_position', 'optional.spa.longitude_obliquity_nutation', 'optional.spa.transit_sunrise_sunset', 'fittings.bend_rounded_Crane', 'geometry.tank_from_two_specs_err', 'friction.roughness_Farshad', ] transform_lists_to_arrays(normal_fluids, to_change, __funcs, vec=vec, cache_blacklist=cache_blacklist) # AvailableMethods will be removed in the future in favor of non-numba only # calls to method functions to_change = {} # to_change['friction.roughness_Farshad'] = 'ID in _Farshad_roughness' for s, bad_branch in to_change.items(): mod, func = s.split('.') source = inspect.getsource(getattr(getattr(normal_fluids, mod), func)) fake_mod = __funcs[mod] source = remove_branch(source, bad_branch) source = remove_for_numba(source) numba_exec_cacheable(source, fake_mod.__dict__, fake_mod.__dict__) new_func = fake_mod.__dict__[func] obj = conv_fun(cache=caching, **extra_args)(new_func) __funcs[func] = obj obj.__doc__ = '' # Do some classes by hand PlateExchanger_spec = [(k, float64) for k in ('pitch', 'beta', 'gamma', 'a', 'amplitude', 'wavelength', 'b', 'chevron_angle', 'inclination_angle', 'plate_corrugation_aspect_ratio', 'plate_enlargement_factor', 'D_eq', 'D_hydraulic', 'width', 'length', 'thickness', 'd_port', 'plates', 'length_port', 'A_plate_surface', 'A_heat_transfer', 'A_channel_flow', 'channels', 'channels_per_fluid')] PlateExchanger_spec.append(('chevron_angles', numba.types.UniTuple(float64, 2))) HelicalCoil_spec = [(k, float64) for k in ('Do', 'Dt', 'Di', 'Do_total', 'N', 'pitch', 'H', 'H_total', 'tube_circumference', 'tube_length', 'surface_area', 'helix_angle', 'curvature', 'total_inlet_area', 'total_volume', 'inner_surface_area', 'inlet_area', 'inner_volume', 'annulus_area', 'annulus_volume')] ATMOSPHERE_1976_spec = [(k, float64) for k in ('Z', 'dT', 'H', 'T_layer', 'T_increase', 'P_layer', 'H_layer', 'H_above_layer', 'T', 'P', 'rho', 'v_sonic', 'mu', 'k', 'g', 'R')] # # No string support # PlateExchanger = jitclass(PlateExchanger_spec)(getattr(__funcs['geometry'], 'PlateExchanger')) # __funcs['PlateExchanger'] = __funcs['geometry'].PlateExchanger = PlateExchanger HelicalCoil = jitclass(HelicalCoil_spec)(getattr(__funcs['geometry'], 'HelicalCoil')) __funcs['HelicalCoil'] = __funcs['geometry'].HelicalCoil = HelicalCoil ATMOSPHERE_1976 = jitclass(ATMOSPHERE_1976_spec)(getattr(__funcs['atmosphere'], 'ATMOSPHERE_1976')) __funcs['ATMOSPHERE_1976'] = __funcs['atmosphere'].ATMOSPHERE_1976 = ATMOSPHERE_1976 # Not needed __funcs['friction'].Colebrook = __funcs['Colebrook'] = __funcs['Clamond'] # Works but 50% slower #__funcs['geometry']._V_horiz_spherical_toint = __funcs['_V_horiz_spherical_toint'] = cfunc("float64(float64, float64, float64, float64)")(normal_fluids.geometry._V_horiz_spherical_toint) for mod in new_mods: mod.__dict__.update(__funcs) try: __all__.extend(mod.__all__) except AttributeError: pass transform_complete(replaced, __funcs, __all__, normal, vec=False) numbafied_fluids_functions = __funcs globals().update(__funcs) globals().update(replaced) #sys.modules['fluids.numerics'] = old_numerics fluids-1.0.22/fluids/safety_valve.py0000644000175000017500000005504114302004506016737 0ustar nileshnilesh# -*- coding: utf-8 -*- """Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, Caleb Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This module contains functions for sizing and rating pressure relief valves. At present, this consists of several functions from API 520. For reporting bugs, adding feature requests, or submitting pull requests, please use the `GitHub issue tracker `_ or contact the author at Caleb.Andrew.Bell@gmail.com. .. contents:: :local: Interfaces ---------- .. autofunction:: API520_A_g .. autofunction:: API520_A_steam Functions and Data ------------------ .. autofunction:: API520_round_size .. autofunction:: API520_C .. autofunction:: API520_F2 .. autofunction:: API520_Kv .. autofunction:: API520_N .. autofunction:: API520_SH .. autofunction:: API520_B .. autofunction:: API520_W .. autodata:: API526_letters .. autodata:: API526_A_sq_inch .. autodata:: API526_A """ from __future__ import division from math import exp, sqrt from fluids.constants import inch, atm from fluids.compressible import is_critical_flow from fluids.numerics import interp, tck_interp2d_linear, bisplev __all__ = ['API526_A_sq_inch', 'API526_letters', 'API526_A', 'API520_round_size', 'API520_C', 'API520_F2', 'API520_Kv', 'API520_N', 'API520_SH', 'API520_B', 'API520_W', 'API520_A_g', 'API520_A_steam'] API526_A_sq_inch = [0.110, 0.196, 0.307, 0.503, 0.785, 1.287, 1.838, 2.853, 3.60, 4.34, 6.38, 11.05, 16.00, 26.00] # square inches '''list: Nominal relief area in for different valve sizes in API 520, [in^2]''' API526_letters = ['D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'R','T'] '''list: Letter size designations for different valve sizes in API 520''' inch2 = inch*inch API526_A = [i*inch2 for i in API526_A_sq_inch] '''list: Nominal relief area in for different valve sizes in API 520, [m^2]''' del inch2 def API520_round_size(A): r'''Rounds up the area from an API 520 calculation to an API526 standard valve area. The returned area is always larger or equal to the input area. Parameters ---------- A : float Minimum discharge area [m^2] Returns ------- area : float Actual discharge area [m^2] Notes ----- To obtain the letter designation of an input area, lookup the area with the following: API526_letters[API526_A.index(area)] An exception is raised if the required relief area is larger than any of the API 526 sizes. Examples -------- From [1]_, checked with many points on Table 8. >>> API520_round_size(1E-4) 0.00012645136 >>> API526_letters[API526_A.index(API520_round_size(1E-4))] 'E' References ---------- .. [1] API Standard 526. ''' for area in API526_A: if area >= A: return area raise ValueError('Required relief area is larger than can be provided with one valve') def API520_C(k): r'''Calculates coefficient C for use in API 520 critical flow relief valve sizing. .. math:: C = 0.03948\sqrt{k\left(\frac{2}{k+1}\right)^\frac{k+1}{k-1}} Parameters ---------- k : float Isentropic coefficient or ideal gas heat capacity ratio [-] Returns ------- C : float Coefficient `C` [-] Notes ----- If C cannot be established, assume a coefficient of 0.0239, the highest value possible for C. Although not dimensional, C varies with the units used. If k is exactly equal to 1, the expression is undefined, and the formula must be simplified as follows from an application of L'Hopital's rule. .. math:: C = 0.03948\sqrt{\frac{1}{e}} Examples -------- From [1]_, checked with many points on Table 8. >>> API520_C(1.35) 0.02669419967057233 References ---------- .. [1] API Standard 520, Part 1 - Sizing and Selection. ''' if k != 1: return 0.03948*sqrt(k*(2./(k+1.))**((k+1.)/(k-1.))) else: return 0.03948*sqrt(1./exp(1)) def API520_F2(k, P1, P2): r'''Calculates coefficient F2 for subcritical flow for use in API 520 subcritical flow relief valve sizing. .. math:: F_2 = \sqrt{\left(\frac{k}{k-1}\right)r^\frac{2}{k} \left[\frac{1-r^\frac{k-1}{k}}{1-r}\right]} .. math:: r = \frac{P_2}{P_1} Parameters ---------- k : float Isentropic coefficient or ideal gas heat capacity ratio [-] P1 : float Upstream relieving pressure; the set pressure plus the allowable overpressure, plus atmospheric pressure, [Pa] P2 : float Built-up backpressure; the increase in pressure during flow at the outlet of a pressure-relief device after it opens, [Pa] Returns ------- F2 : float Subcritical flow coefficient `F2` [-] Notes ----- F2 is completely dimensionless. Examples -------- From [1]_ example 2, matches. >>> API520_F2(1.8, 1E6, 7E5) 0.8600724121105563 References ---------- .. [1] API Standard 520, Part 1 - Sizing and Selection. ''' r = P2/P1 return sqrt(k/(k-1)*r**(2./k) * ((1-r**((k-1.)/k))/(1.-r))) def API520_Kv(Re): r'''Calculates correction due to viscosity for liquid flow for use in API 520 relief valve sizing. .. math:: K_v = \left(0.9935 + \frac{2.878}{Re^{0.5}} + \frac{342.75} {Re^{1.5}}\right)^{-1} Parameters ---------- Re : float Reynolds number for flow out the valve [-] Returns ------- Kv : float Correction due to viscosity [-] Notes ----- Reynolds number in the standard is defined as follows, with Q in L/min, G1 as specific gravity, mu in centipoise, and area in mm^2: .. math:: Re = \frac{Q(18800G_1)}{\mu \sqrt{A}} It is unclear how this expression was derived with a constant of 18800; the following code demonstrates what the constant should be: >>> from scipy.constants import * >>> liter/minute*1000./(0.001*(milli**2)**0.5) 16666.666666666668 Examples -------- From [1]_, checked with example 5. >>> API520_Kv(100) 0.6157445891444229 References ---------- .. [1] API Standard 520, Part 1 - Sizing and Selection. ''' return (0.9935 + 2.878/sqrt(Re) + 342.75/Re**1.5)**-1.0 def API520_N(P1): r'''Calculates correction due to steam pressure for steam flow for use in API 520 relief valve sizing. For pressures below 10339 kPa, the correction factor is 1. .. math:: K_N = \frac{0.02764P_1-1000}{0.03324P_1-1061} Parameters ---------- P1 : float Upstream relieving pressure; the set pressure plus the allowable overpressure, plus atmospheric pressure, [Pa] Returns ------- KN : float Correction due to steam temperature [-] Notes ----- Although not dimensional, KN varies with the units used. For temperatures above 922 K or 22057 kPa, KN is not defined. Internally, units of kPa are used to match the equation in the standard. Examples -------- >>> API520_N(10500e3) 0.9969100255 References ---------- .. [1] API Standard 520, Part 1 - Sizing and Selection. ''' P1 = P1*1e-3 # Pa to kPa if P1 <= 10339.0: KN = 1.0 else: KN = (0.02764*P1 - 1000.)/(0.03324*P1 - 1061.0) return KN _KSH_psigs = [15, 20, 40, 60, 80, 100, 120, 140, 160, 180, 200, 220, 240, 260, 280, 300, 350, 400, 500, 600, 800, 1000, 1250, 1500, 1750, 2000, 2500, 3000] _KSH_tempFs = [300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200] # _KSH_psigs converted from psig to Pa _KSH_Pa = [204746.3593975254, 239220.14586336722, 377115.29172673443, 515010.4375901016, 652905.5834534689, 790800.7293168361, 928695.8751802032, 1066591.0210435705, 1204486.1669069377, 1342381.312770305, 1480276.4586336722, 1618171.6044970395, 1756066.7503604065, 1893961.8962237737, 2031857.042087141, 2169752.187950508, 2514490.0526089263, 2859227.9172673444, 3548703.64658418, 4238179.375901016, 5617130.834534689, 6996082.29316836, 8719771.616460452, 10443460.939752541, 12167150.263044631, 13890839.58633672, 17338218.232920904, 20785596.879505083] # _KSH_tempFs converted from F to K _KSH_tempKs = [422.03888888888889, 477.59444444444443, 533.14999999999998, 588.70555555555552, 644.26111111111106, 699.81666666666661, 755.37222222222226, 810.92777777777769, 866.48333333333335, 922.03888888888889] _KSH_factors = [[1, 0.98, 0.93, 0.88, 0.84, 0.8, 0.77, 0.74, 0.72, 0.7], [1, 0.98, 0.93, 0.88, 0.84, 0.8, 0.77, 0.74, 0.72, 0.7], [1, 0.99, 0.93, 0.88, 0.84, 0.81, 0.77, 0.74, 0.72, 0.7], [1, 0.99, 0.93, 0.88, 0.84, 0.81, 0.77, 0.75, 0.72, 0.7], [1, 0.99, 0.93, 0.88, 0.84, 0.81, 0.77, 0.75, 0.72, 0.7], [1, 0.99, 0.94, 0.89, 0.84, 0.81, 0.77, 0.75, 0.72, 0.7], [1, 0.99, 0.94, 0.89, 0.84, 0.81, 0.78, 0.75, 0.72, 0.7], [1, 0.99, 0.94, 0.89, 0.85, 0.81, 0.78, 0.75, 0.72, 0.7], [1, 0.99, 0.94, 0.89, 0.85, 0.81, 0.78, 0.75, 0.72, 0.7], [1, 0.99, 0.94, 0.89, 0.85, 0.81, 0.78, 0.75, 0.72, 0.7], [1, 0.99, 0.95, 0.89, 0.85, 0.81, 0.78, 0.75, 0.72, 0.7], [1, 0.99, 0.95, 0.89, 0.85, 0.81, 0.78, 0.75, 0.72, 0.7], [1, 1, 0.95, 0.9, 0.85, 0.81, 0.78, 0.75, 0.72, 0.7], [1, 1, 0.95, 0.9, 0.85, 0.81, 0.78, 0.75, 0.72, 0.7], [1, 1, 0.96, 0.9, 0.85, 0.81, 0.78, 0.75, 0.72, 0.7], [1, 1, 0.96, 0.9, 0.85, 0.81, 0.78, 0.75, 0.72, 0.7], [1, 1, 0.96, 0.9, 0.86, 0.82, 0.78, 0.75, 0.72, 0.7], [1, 1, 0.96, 0.91, 0.86, 0.82, 0.78, 0.75, 0.72, 0.7], [1, 1, 0.96, 0.92, 0.86, 0.82, 0.78, 0.75, 0.73, 0.7], [1, 1, 0.97, 0.92, 0.87, 0.82, 0.79, 0.75, 0.73, 0.7], [1, 1, 1, 0.95, 0.88, 0.83, 0.79, 0.76, 0.73, 0.7], [1, 1, 1, 0.96, 0.89, 0.84, 0.78, 0.76, 0.73, 0.71], [1, 1, 1, 0.97, 0.91, 0.85, 0.8, 0.77, 0.74, 0.71], [1, 1, 1, 1, 0.93, 0.86, 0.81, 0.77, 0.74, 0.71], [1, 1, 1, 1, 0.94, 0.86, 0.81, 0.77, 0.73, 0.7], [1, 1, 1, 1, 0.95, 0.86, 0.8, 0.76, 0.72, 0.69], [1, 1, 1, 1, 0.95, 0.85, 0.78, 0.73, 0.69, 0.66], [1, 1, 1, 1, 1, 0.82, 0.74, 0.69, 0.65, 0.62]] API520_KSH_tck = tck_interp2d_linear(_KSH_tempKs, _KSH_Pa, _KSH_factors) def API520_SH(T1, P1): r'''Calculates correction due to steam superheat for steam flow for use in API 520 relief valve sizing. 2D interpolation among a table with 28 pressures and 10 temperatures is performed. Parameters ---------- T1 : float Temperature of the fluid entering the valve [K] P1 : float Upstream relieving pressure; the set pressure plus the allowable overpressure, plus atmospheric pressure, [Pa] Returns ------- KSH : float Correction due to steam superheat [-] Notes ----- For P above 20679 kPag, use the critical flow model. Superheat cannot be above 649 degrees Celsius. If T1 is above 149 degrees Celsius, returns 1. Examples -------- Custom example from table 9: >>> API520_SH(593+273.15, 1066.325E3) 0.7201800000000002 References ---------- .. [1] API Standard 520, Part 1 - Sizing and Selection. ''' if P1 > 20780325.0: # 20679E3+atm raise ValueError('For P above 20679 kPag, use the critical flow model') if T1 > 922.15: raise ValueError('Superheat cannot be above 649 degrees Celcius') if T1 < 422.15: return 1. # No superheat under 15 psig return float(bisplev(T1, P1, API520_KSH_tck)) # Kw, for liquids. Applicable for all overpressures. Kw_x = [15., 16.5493, 17.3367, 18.124, 18.8235, 19.5231, 20.1351, 20.8344, 21.4463, 22.0581, 22.9321, 23.5439, 24.1556, 24.7674, 25.0296, 25.6414, 26.2533, 26.8651, 27.7393, 28.3511, 28.9629, 29.6623, 29.9245, 30.5363, 31.2357, 31.8475, 32.7217, 33.3336, 34.0329, 34.6448, 34.8196, 35.4315, 36.1308, 36.7428, 37.7042, 38.3162, 39.0154, 39.7148, 40.3266, 40.9384, 41.6378, 42.7742, 43.386, 43.9978, 44.6098, 45.2216, 45.921, 46.5329, 47.7567, 48.3685, 49.0679, 49.6797, 50.] Kw_y = [1, 0.996283, 0.992565, 0.987918, 0.982342, 0.976766, 0.97119, 0.964684, 0.958178, 0.951673, 0.942379, 0.935874, 0.928439, 0.921933, 0.919145, 0.912639, 0.906134, 0.899628, 0.891264, 0.884758, 0.878253, 0.871747, 0.868959, 0.862454, 0.855948, 0.849442, 0.841078, 0.834572, 0.828067, 0.821561, 0.819703, 0.814126, 0.806691, 0.801115, 0.790892, 0.785316, 0.777881, 0.771375, 0.76487, 0.758364, 0.751859, 0.740706, 0.734201, 0.727695, 0.722119, 0.715613, 0.709108, 0.702602, 0.69052, 0.684015, 0.677509, 0.671004, 0.666357] def API520_W(Pset, Pback): r'''Calculates capacity correction due to backpressure on balanced spring-loaded PRVs in liquid service. For pilot operated valves, this is always 1. Applicable up to 50% of the percent gauge backpressure, For use in API 520 relief valve sizing. 1D interpolation among a table with 53 backpressures is performed. Parameters ---------- Pset : float Set pressure for relief [Pa] Pback : float Backpressure, [Pa] Returns ------- KW : float Correction due to liquid backpressure [-] Notes ----- If the calculated gauge backpressure is less than 15%, a value of 1 is returned. Examples -------- Custom example from figure 31: >>> API520_W(1E6, 3E5) # 22% overpressure 0.9511471848008564 References ---------- .. [1] API Standard 520, Part 1 - Sizing and Selection. ''' gauge_backpressure = (Pback-atm)/(Pset-atm)*100.0 # in percent if gauge_backpressure < 15.0: return 1.0 return interp(gauge_backpressure, Kw_x, Kw_y) # Kb Backpressure correction factor, for gases Kb_16_over_x = [37.6478, 38.1735, 38.6991, 39.2904, 39.8817, 40.4731, 40.9987, 41.59, 42.1156, 42.707, 43.2326, 43.8239, 44.4152, 44.9409, 45.5322, 46.0578, 46.6491, 47.2405, 47.7661, 48.3574, 48.883, 49.4744, 50.0] Kb_16_over_y = [0.998106, 0.994318, 0.99053, 0.985795, 0.982008, 0.97822, 0.973485, 0.96875, 0.964962, 0.961174, 0.956439, 0.951705, 0.947917, 0.943182, 0.939394, 0.935606, 0.930871, 0.926136, 0.921402, 0.918561, 0.913826, 0.910038, 0.90625] Kb_10_over_x = [30.0263, 30.6176, 31.1432, 31.6689, 32.1945, 32.6544, 33.18, 33.7057, 34.1656, 34.6255, 35.0854, 35.5453, 36.0053, 36.4652, 36.9251, 37.385, 37.8449, 38.2392, 38.6334, 39.0276, 39.4875, 39.9474, 40.4074, 40.8016, 41.1958, 41.59, 42.0499, 42.4442, 42.8384, 43.2326, 43.6925, 44.0867, 44.4809, 44.8752, 45.2694, 45.6636, 46.0578, 46.452, 46.8463, 47.2405, 47.6347, 48.0289, 48.4231, 48.883, 49.2773, 49.6715] Kb_10_over_y = [0.998106, 0.995265, 0.99053, 0.985795, 0.981061, 0.975379, 0.969697, 0.963068, 0.957386, 0.950758, 0.945076, 0.938447, 0.930871, 0.925189, 0.918561, 0.910985, 0.904356, 0.897727, 0.891098, 0.883523, 0.876894, 0.870265, 0.862689, 0.856061, 0.848485, 0.840909, 0.83428, 0.827652, 0.820076, 0.8125, 0.805871, 0.798295, 0.79072, 0.783144, 0.775568, 0.768939, 0.762311, 0.754735, 0.747159, 0.739583, 0.732008, 0.724432, 0.716856, 0.70928, 0.701705, 0.695076] def API520_B(Pset, Pback, overpressure=0.1): r'''Calculates capacity correction due to backpressure on balanced spring-loaded PRVs in vapor service. For pilot operated valves, this is always 1. Applicable up to 50% of the percent gauge backpressure, For use in API 520 relief valve sizing. 1D interpolation among a table with 53 backpressures is performed. Parameters ---------- Pset : float Set pressure for relief [Pa] Pback : float Backpressure, [Pa] overpressure : float, optional The maximum fraction overpressure; one of 0.1, 0.16, or 0.21, [-] Returns ------- Kb : float Correction due to vapor backpressure [-] Notes ----- If the calculated gauge backpressure is less than 30%, 38%, or 50% for overpressures of 0.1, 0.16, or 0.21, a value of 1 is returned. Percent gauge backpressure must be under 50%. Examples -------- Custom examples from figure 30: >>> API520_B(1E6, 5E5) 0.7929945420944432 References ---------- .. [1] API Standard 520, Part 1 - Sizing and Selection. ''' gauge_backpressure = (Pback-atm)/(Pset-atm)*100.0 # in percent if overpressure not in (0.1, 0.16, 0.21): raise ValueError('Only overpressure of 10%, 16%, or 21% are permitted') if (overpressure == 0.1 and gauge_backpressure < 30.0) or ( overpressure == 0.16 and gauge_backpressure < 38.0) or ( overpressure == 0.21 and gauge_backpressure <= 50.0): return 1.0 elif gauge_backpressure > 50.0: raise ValueError('Gauge pressure must be < 50%') if overpressure == 0.16: Kb = interp(gauge_backpressure, Kb_16_over_x, Kb_16_over_y) elif overpressure == 0.1: Kb = interp(gauge_backpressure, Kb_10_over_x, Kb_10_over_y) return Kb def API520_A_g(m, T, Z, MW, k, P1, P2=101325, Kd=0.975, Kb=1, Kc=1): r'''Calculates required relief valve area for an API 520 valve passing a gas or a vapor, at either critical or sub-critical flow. For critical flow: .. math:: A = \frac{m}{CK_dP_1K_bK_c}\sqrt{\frac{TZ}{M}} For sub-critical flow: .. math:: A = \frac{17.9m}{F_2K_dK_c}\sqrt{\frac{TZ}{MP_1(P_1-P_2)}} Parameters ---------- m : float Mass flow rate of vapor through the valve, [kg/s] T : float Temperature of vapor entering the valve, [K] Z : float Compressibility factor of the vapor, [-] MW : float Molecular weight of the vapor, [g/mol] k : float Isentropic coefficient or ideal gas heat capacity ratio [-] P1 : float Upstream relieving pressure; the set pressure plus the allowable overpressure, plus atmospheric pressure, [Pa] P2 : float, optional Built-up backpressure; the increase in pressure during flow at the outlet of a pressure-relief device after it opens, [Pa] Kd : float, optional The effective coefficient of discharge, from the manufacturer or for preliminary sizing, using 0.975 normally or 0.62 when used with a rupture disc as described in [1]_, [] Kb : float, optional Correction due to vapor backpressure [-] Kc : float, optional Combination correction factor for installation with a ruture disk upstream of the PRV, [] Returns ------- A : float Minimum area for relief valve according to [1]_, [m^2] Notes ----- Units are interlally kg/hr, kPa, and mm^2 to match [1]_. Examples -------- Example 1 from [1]_ for critical flow, matches: >>> API520_A_g(m=24270/3600., T=348., Z=0.90, MW=51., k=1.11, P1=670E3, Kb=1, Kc=1) 0.0036990460646834414 Example 2 from [1]_ for sub-critical flow, matches: >>> API520_A_g(m=24270/3600., T=348., Z=0.90, MW=51., k=1.11, P1=670E3, P2=532E3, Kd=0.975, Kb=1, Kc=1) 0.004248358775943481 The mass flux in (kg/(s*m^2)) can be found by dividing the specified mass flow by the calculated area: >>> (24270/3600.)/API520_A_g(m=24270/3600., T=348., Z=0.90, MW=51., k=1.11, P1=670E3, Kb=1, Kc=1) 1822.541960488834 References ---------- .. [1] API Standard 520, Part 1 - Sizing and Selection. ''' P1, P2 = P1/1000., P2/1000. # Pa to Kpa in the standard m = m*3600. # kg/s to kg/hr if is_critical_flow(P1, P2, k): C = API520_C(k) A = m/(C*Kd*Kb*Kc*P1)*sqrt(T*Z/MW) else: F2 = API520_F2(k, P1, P2) A = 17.9*m/(F2*Kd*Kc)*sqrt(T*Z/(MW*P1*(P1-P2))) return A*0.001**2 # convert mm^2 to m^2 def API520_A_steam(m, T, P1, Kd=0.975, Kb=1, Kc=1): r'''Calculates required relief valve area for an API 520 valve passing a steam, at either saturation or superheat but not partially condensed. .. math:: A = \frac{190.5m}{P_1 K_d K_b K_c K_N K_{SH}} Parameters ---------- m : float Mass flow rate of steam through the valve, [kg/s] T : float Temperature of steam entering the valve, [K] P1 : float Upstream relieving pressure; the set pressure plus the allowable overpressure, plus atmospheric pressure, [Pa] Kd : float, optional The effective coefficient of discharge, from the manufacturer or for preliminary sizing, using 0.975 normally or 0.62 when used with a rupture disc as described in [1]_, [] Kb : float, optional Correction due to vapor backpressure [-] Kc : float, optional Combination correction factor for installation with a rupture disk upstream of the PRV, [] Returns ------- A : float Minimum area for relief valve according to [1]_, [m^2] Notes ----- Units are interlally kg/hr, kPa, and mm^2 to match [1]_. With the provided temperature and pressure, the KN coefficient is calculated with the function API520_N; as is the superheat correction KSH, with the function API520_SH. Examples -------- Example 4 from [1]_, matches: >>> API520_A_steam(m=69615/3600., T=592.5, P1=12236E3, Kd=0.975, Kb=1, Kc=1) 0.0011034712423692733 References ---------- .. [1] API Standard 520, Part 1 - Sizing and Selection. ''' KN = API520_N(P1) KSH = API520_SH(T, P1) P1 = P1/1000. # Pa to kPa m = m*3600. # kg/s to kg/hr A = 190.5*m/(P1*Kd*Kb*Kc*KN*KSH) return A*0.001**2 # convert mm^2 to m^2 fluids-1.0.22/fluids/py.typed0000644000175000017500000000000214302004506015357 0ustar nileshnilesh fluids-1.0.22/fluids/separator.pyi0000644000175000017500000000076714302004506016425 0ustar nileshnilesh# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py! from __future__ import annotations from typing import List def K_Sounders_Brown_theoretical(D: float, Cd: float, g: float = ...) -> float: ... def K_separator_Watkins(x: float, rhol: float, rhog: float, horizontal: bool = ..., method: str = ...) -> float: ... def K_separator_demister_York(P: float, horizontal: bool = ...) -> float: ... def v_Sounders_Brown(K: float, rhol: float, rhog: float) -> float: ... __all__: List[str]fluids-1.0.22/SECURITY.md0000644000175000017500000000073414302004506014177 0ustar nileshnilesh# Security Policy This project doesn't really do anything that could be a security issue. It is simply a library. Using it is left to the user. ## Supported Versions The development of fluids is linear at this time; upgrade fluids to the latest version to obtain any security fixes, in the event that there ever are any. ## Reporting a Vulnerability If you believe there is a security vulnerability in this project, please email the author at Caleb.Andrew.Bell@gmail.com fluids-1.0.22/py.typed0000644000175000017500000000000214302004506014071 0ustar nileshnilesh